diff --git a/NEWS b/NEWS index f9fc1ea4..efe016a0 100644 --- a/NEWS +++ b/NEWS @@ -3,6 +3,7 @@ User visible changes for UPX ================================================================== Changes in 3.04 (XX XXX 2008): + * new format vmlinuz/armel for Debian NSLU2 (etc.) linux kernel * bvmlinuz boot protocol 2.08 for 386 Linux kernel * Extended ABI version 4 for armel-eabi ARM Linux ELF diff --git a/src/conf.h b/src/conf.h index 579db698..cb83c5b4 100644 --- a/src/conf.h +++ b/src/conf.h @@ -459,6 +459,7 @@ private: #define UPX_F_VMLINUX_ARMEL 28 #define UPX_F_MACH_i386 29 #define UPX_F_LINUX_ELF32_MIPSEL 30 +#define UPX_F_VMLINUZ_ARMEL 31 #define UPX_F_PLAIN_TEXT 127 diff --git a/src/p_vmlinz.cpp b/src/p_vmlinz.cpp index 51d55b8c..804b39d4 100644 --- a/src/p_vmlinz.cpp +++ b/src/p_vmlinz.cpp @@ -711,6 +711,358 @@ void PackVmlinuzI386::unpack(OutputFile *fo) } +PackVmlinuzARMEL::PackVmlinuzARMEL(InputFile *f) : + super(f), setup_size(0), filter_len(0) +{ + bele = &N_BELE_RTP::le_policy; +} + +const int *PackVmlinuzARMEL::getCompressionMethods(int method, int level) const +{ + return Packer::getDefaultCompressionMethods_le32(method, level); +} + +const int *PackVmlinuzARMEL::getFilters() const +{ + static const int f50[] = { 0x50, FT_END }; + return f50; +} + +int PackVmlinuzARMEL::getStrategy(Filter &/*ft*/) +{ + // If user specified the filter, then use it (-2==filter_strategy). + // Else try the first two filters, and pick the better (2==filter_strategy). + return (opt->no_filter ? -3 : ((opt->filter > 0) ? -2 : 2)); +} + +bool PackVmlinuzARMEL::canPack() +{ + return readFileHeader() == getFormat(); +} + +int PackVmlinuzARMEL::readFileHeader() +{ + unsigned int hdr[8]; + + fi->readx(&hdr, sizeof(hdr)); + for (int j=0; j < 8; ++j) { + if (0xe1a00000!=get_te32(&hdr[j])) { + return 0; + } + } + return UPX_F_VMLINUZ_ARMEL; +} + +int PackVmlinuzARMEL::decompressKernel() +{ + // read whole kernel image + obuf.alloc(file_size); + fi->seek(0, SEEK_SET); + fi->readx(obuf, file_size); + + //checkAlreadyPacked(obuf + setup_size, UPX_MIN(file_size - setup_size, (off_t)1024)); + + // Find head.S: + // bl decompress_kernel # 0xeb...... + // b call_kernel # 0xea...... + //LC0: .word LC0 # self! + unsigned decompress_kernel = 0; + unsigned caller1 = 0; + unsigned caller2 = 0; + unsigned got_start = 0; + unsigned got_end = 0; + for (unsigned j = 0; j < 0x400; j+=4) { + unsigned w; + if (j!=get_te32(j + obuf)) { + continue; + } + if (0xea000000!=(0xff000000& get_te32(-4+ j + obuf)) + || 0xeb000000!=(0xff000000&(w= get_te32(-8+ j + obuf))) ) { + continue; + } + caller1 = -8 + j; + decompress_kernel = ((0x00ffffff & w)<<2) + 8+ caller1; + for (unsigned k = 12; k<=128; k+=4) { + w = get_te32(j - k + obuf); + if (0xeb000000==(0xff000000 & w) + && decompress_kernel==(((0x00ffffff & w)<<2) + 8+ j - k) ) { + caller2 = j - k; + break; + } + } + got_start = get_te32(5*4 + j + obuf); + got_end = get_te32(6*4 + j + obuf); + break; + } + if (0==decompress_kernel) { + return 0; + } + + // Find first subroutine that is called by decompress_kernel, + // which we will consider to be the start of the gunzip module + // and the end of the non-gunzip modules. + for (unsigned j = decompress_kernel; j < (unsigned)file_size; j+=4) { + unsigned w = get_te32(j + obuf); + if (0xeb800000==(0xff800000 & w)) { + setup_size = 8+ ((0xff000000 | w)<<2) + j; + // Move the GlobalOffsetTable. + for (unsigned k = got_start; k < got_end; k+=4) { + w = get_te32(k + obuf); + // FIXME: must relocate w + set_te32(k - got_start + setup_size + obuf, w); + } + setup_size += got_end - got_start; + set_te32(&obuf[caller1], 0xeb000000 | + (0x00ffffff & ((setup_size - (8+ caller1))>>2)) ); + set_te32(&obuf[caller2], 0xeb000000 | + (0x00ffffff & ((setup_size - (8+ caller2))>>2)) ); + break; + } + } + + for (int gzoff = 0; gzoff < 0x4000; gzoff+=4) { + // find gzip header (2 bytes magic + 1 byte method "deflated") + int off = find(obuf + gzoff, file_size - gzoff, "\x1F\x8B\x08", 3); + if (off < 0 || 0!=(3u & off)) + break; // not found, or not word-aligned + gzoff += off; + const int gzlen = file_size - gzoff; + if (gzlen < 256) + break; + // check gzip flag byte + unsigned char flags = obuf[gzoff + 3]; + if ((flags & 0xe0) != 0) // reserved bits set + continue; + //printf("found gzip header at offset %d\n", gzoff); + + // try to decompress + int klen; + int fd; + off_t fd_pos; + for (;;) + { + klen = -1; + fd = -1; + fd_pos = -1; + // open + fi->seek(gzoff, SEEK_SET); + fd = dup(fi->getFd()); + if (fd < 0) + break; + gzFile zf = gzdopen(fd, "rb"); + if (zf == NULL) + break; + // estimate gzip-decompressed kernel size & alloc buffer + if (ibuf.getSize() == 0) + ibuf.alloc(gzlen * 3); + // decompress + klen = gzread(zf, ibuf, ibuf.getSize()); + fd_pos = lseek(fd, 0, SEEK_CUR); + gzclose(zf); + fd = -1; + if (klen != (int)ibuf.getSize()) + break; + // realloc and try again + unsigned const s = ibuf.getSize(); + ibuf.dealloc(); + ibuf.alloc(3 * s / 2); + } + if (fd >= 0) + (void) close(fd); + if (klen <= 0) + continue; + + if (klen <= gzlen) + continue; + + if (opt->force > 0) + return klen; + + // some checks + if (fd_pos != file_size) { + //printf("fd_pos: %ld, file_size: %ld\n", (long)fd_pos, (long)file_size); + } + + //head_ok: + + // FIXME: more checks for special magic bytes in ibuf ??? + // FIXME: more checks for kernel architecture ??? + + return klen; + } + + return 0; +} + +void PackVmlinuzARMEL::readKernel() +{ + int klen = decompressKernel(); + if (klen <= 0) + throwCantPack("kernel decompression failed"); + //OutputFile::dump("kernel.img", ibuf, klen); + + // copy the setup boot code + setup_buf.alloc(setup_size); + memcpy(setup_buf, obuf, setup_size); + //OutputFile::dump("setup.img", setup_buf, setup_size); + + obuf.dealloc(); + obuf.allocForCompression(klen); + + ph.u_len = klen; + ph.filter = 0; +} + +Linker* PackVmlinuzARMEL::newLinker() const +{ + return new ElfLinkerArmLE; +} + +static const +#include "stub/arm-linux.kernel.vmlinux.h" +static const +#include "stub/armel-linux.kernel.vmlinuz-head.h" + +void PackVmlinuzARMEL::buildLoader(const Filter *ft) +{ + // prepare loader; same as vmlinux (with 'x') + initLoader(stub_arm_linux_kernel_vmlinux, sizeof(stub_arm_linux_kernel_vmlinux)); + addLoader("LINUX000", NULL); + if (ft->id) { + assert(ft->calls > 0); + addLoader("LINUX010", NULL); + } + addLoader("LINUX020", NULL); + if (ft->id) { + addFilter32(ft->id); + } + addLoader("LINUX030", NULL); + if (ph.method == M_NRV2E_8) addLoader("NRV2E", NULL); + else if (ph.method == M_NRV2B_8) addLoader("NRV2B", NULL); + else if (ph.method == M_NRV2D_8) addLoader("NRV2D", NULL); + else if (M_IS_LZMA(ph.method)) addLoader("LZMA_ELF00,LZMA_DEC10,LZMA_DEC30", NULL); + else throwBadLoader(); + addLoader("IDENTSTR,UPX1HEAD", NULL); + + // To debug (2008-09-14): + // Build gdb-6.8-21.fc9.src.rpm; ./configure --target=arm-none-elf; make + // Contains the fix for http://bugzilla.redhat.com/show_bug.cgi?id=436037 + // Install qemu-0.9.1-6.fc9.i386.rpm + // qemu-system-arm -s -S -kernel -nographic + // (gdb) target remote localhost:1234 + // A very small boot loader runs at pc=0x0; the kernel is at 0x10000 (64KiB). +} + +void PackVmlinuzARMEL::defineDecompressorSymbols() +{ + super::defineDecompressorSymbols(); + linker->defineSymbol( "COMPRESSED_LENGTH", ph.c_len); + linker->defineSymbol("UNCOMPRESSED_LENGTH", ph.u_len); + linker->defineSymbol("METHOD", ph.method); +} + +unsigned PackVmlinuzARMEL::write_vmlinuz_head(OutputFile *const fo) +{ // First word from vmlinuz-head.S + fo->write(&stub_armel_linux_kernel_vmlinuz_head[0], 4); + + // Second word + LE32 tmp_u32; + unsigned const t = (0xff000000 & + get_te32(&stub_armel_linux_kernel_vmlinuz_head[4])) + | (0x00ffffff & (0u - 1 + ((3+ ph.c_len)>>2))); + tmp_u32 = t; + fo->write((void const *)&tmp_u32, 4); + + return sizeof(stub_armel_linux_kernel_vmlinuz_head); +} + +void PackVmlinuzARMEL::pack(OutputFile *fo) +{ + readKernel(); + + // prepare filter + Filter ft(ph.level); + ft.buf_len = ph.u_len; + ft.addvalue = 0; + + // compress + upx_compress_config_t cconf; cconf.reset(); + // limit stack size needed for runtime decompression + cconf.conf_lzma.max_num_probs = 1846 + (768 << 5); // ushort: 52,844 byte stack + compressWithFilters(&ft, 512, &cconf, getStrategy(ft)); + + const unsigned lsize = getLoaderSize(); + + defineDecompressorSymbols(); + defineFilterSymbols(&ft); + relocateLoader(); + + MemBuffer loader(lsize); + memcpy(loader, getLoader(), lsize); + patchPackHeader(loader, lsize); + +// boot_sect_t * const bs = (boot_sect_t *) ((unsigned char *) setup_buf); +// bs->sys_size = ALIGN_UP(lsize + ph.c_len, 16u) / 16; +// bs->payload_length = ph.c_len; + + fo->write(setup_buf, setup_buf.getSize()); + write_vmlinuz_head(fo); + fo->write(obuf, ph.c_len); + unsigned const zero = 0; + fo->write((void const *)&zero, 3u & (0u - ph.c_len)); + fo->write(loader, lsize); +#if 0 + printf("%-13s: setup : %8ld bytes\n", getName(), (long) setup_buf.getSize()); + printf("%-13s: loader : %8ld bytes\n", getName(), (long) lsize); + printf("%-13s: compressed : %8ld bytes\n", getName(), (long) ph.c_len); +#endif + + // verify + verifyOverlappingDecompression(); + + // finally check the compression ratio + if (!checkFinalCompressionRatio(fo)) + throwNotCompressible(); +} + +int PackVmlinuzARMEL::canUnpack() +{ + if (readFileHeader() != getFormat()) + return false; + fi->seek(setup_size, SEEK_SET); + return readPackHeader(1024) ? 1 : -1; +} + +void PackVmlinuzARMEL::unpack(OutputFile *fo) +{ + // no uncompression support for this format, so that + // it is possible to remove the original deflate code (>10 KiB) + + // FIXME: but we could write the uncompressed "vmlinux" image + + ibuf.alloc(ph.c_len); + obuf.allocForUncompression(ph.u_len); + + fi->seek(setup_size + ph.buf_offset + ph.getPackHeaderSize(), SEEK_SET); + fi->readx(ibuf, ph.c_len); + + // decompress + decompress(ibuf, obuf); + + // unfilter + Filter ft(ph.level); + ft.init(ph.filter, 0); + ft.cto = (unsigned char) ph.filter_cto; + ft.unfilter(obuf, ph.u_len); + + // write decompressed file + if (fo) + { + throwCantUnpack("build a new kernel instead :-)"); + //fo->write(obuf, ph.u_len); + } +} + /* vi:ts=4:et */ diff --git a/src/p_vmlinz.h b/src/p_vmlinz.h index 44467d1a..f2ed12d0 100644 --- a/src/p_vmlinz.h +++ b/src/p_vmlinz.h @@ -150,6 +150,52 @@ protected: }; +/************************************************************************* +// vmlinuz/armel (gzip compressed Linux kernel image) +**************************************************************************/ + +class PackVmlinuzARMEL : public Packer +{ + typedef Packer super; +public: + PackVmlinuzARMEL(InputFile *f); + virtual int getVersion() const { return 13; } + virtual int getFormat() const { return UPX_F_VMLINUZ_ARMEL; } + virtual const char *getName() const { return "vmlinuz/armel"; } + virtual const char *getFullName(const options_t *) const { return "armel-linux.kernel.vmlinuz"; } + virtual const int *getCompressionMethods(int method, int level) const; + virtual const int *getFilters() const; + virtual int getStrategy(Filter &); + + virtual void pack(OutputFile *fo); + virtual void unpack(OutputFile *fo); + + virtual bool canPack(); + virtual int canUnpack(); + +protected: + virtual int readFileHeader(); + virtual int decompressKernel(); + virtual void readKernel(); + + virtual void buildLoader(const Filter *ft); + virtual unsigned write_vmlinuz_head(OutputFile *const fo); + virtual void defineDecompressorSymbols(); + virtual Linker* newLinker() const; + +// virtual upx_byte *getLoader() const; +// virtual int getLoaderSize() const; + + + MemBuffer setup_buf; + int setup_size; +// unsigned physical_start; +// unsigned page_offset; +// unsigned config_physical_align; + unsigned filter_len; +}; + + #endif /* already included */ diff --git a/src/packer_c.cpp b/src/packer_c.cpp index c7c84eaf..dc98cc64 100644 --- a/src/packer_c.cpp +++ b/src/packer_c.cpp @@ -212,6 +212,7 @@ const char *Packer::getDecompressorSections() const || UPX_F_LINUX_ELFPPC32 ==ph.format || UPX_F_LINUX_ELF32_ARMEB==ph.format || UPX_F_BSD_ELF_i386 ==ph.format + || UPX_F_VMLINUZ_ARMEL ==ph.format || UPX_F_VMLINUX_ARMEL ==ph.format || UPX_F_VMLINUX_ARMEB ==ph.format || UPX_F_VMLINUX_PPC32 ==ph.format @@ -250,6 +251,7 @@ void Packer::defineDecompressorSymbols() || UPX_F_LINUX_ELFPPC32 ==ph.format || UPX_F_LINUX_ELF32_ARMEB==ph.format || UPX_F_BSD_ELF_i386 ==ph.format + || UPX_F_VMLINUZ_ARMEL ==ph.format || UPX_F_VMLINUX_ARMEL ==ph.format || UPX_F_VMLINUX_ARMEB ==ph.format || UPX_F_VMLINUX_PPC32 ==ph.format diff --git a/src/packmast.cpp b/src/packmast.cpp index c4914f55..f78ef1e0 100644 --- a/src/packmast.cpp +++ b/src/packmast.cpp @@ -206,6 +206,8 @@ Packer* PackMaster::visitAllPackers(visit_func_t func, InputFile *f, const optio return p; if ((p = func(new PackBvmlinuzI386(f), user)) != NULL) return p; + if ((p = func(new PackVmlinuzARMEL(f), user)) != NULL) + return p; #if 0 if ((p = func(new PackElks8086(f), user)) != NULL) return p; diff --git a/src/stub/Makefile b/src/stub/Makefile index 4462d61e..7d0e7a78 100644 --- a/src/stub/Makefile +++ b/src/stub/Makefile @@ -60,6 +60,8 @@ STUBS += armeb-linux.elf-entry.h STUBS += armeb-linux.elf-fold.h STUBS += armeb-linux.kernel.vmlinux.h STUBS += armeb-linux.kernel.vmlinux-head.h +STUBS += armel-linux.kernel.vmlinuz.h +STUBS += armel-linux.kernel.vmlinuz-head.h STUBS += arm.v4a-wince.pe.h STUBS += arm.v4t-wince.pe.h STUBS += i086-dos16.com.h @@ -801,6 +803,29 @@ i386-linux.kernel.vmlinux-head.h : $(srcdir)/src/$$T.S $(call tc,bin2h) tmp/$T.bin $@ +# /*********************************************************************** +# // armel-linux.kernel.vmlinuz +# // armel-linux.kernel.vmlinuz-head +# ************************************************************************/ +# +armel-linux.kernel.vmlinu%.h : tc_list = armel-linux.kernel default +armel-linux.kernel.vmlinu%.h : tc_bfdname = elf32-littlearm + +tc.armel-linux.kernel.gcc = arm-linux-gcc-4.1.0 -march=armv5 -nostdinc -MMD -MT $@ +tc.armel-linux.kernel.gcc += -fno-exceptions -fno-asynchronous-unwind-tables +tc.armel-linux.kernel.gcc += -Wall -W -Wcast-align -Wcast-qual -Wstrict-prototypes -Wwrite-strings -Werror + +armel-linux.kernel.vmlinu%.h : $(srcdir)/src/$$T.S + $(call tc,gcc) -c -x assembler-with-cpp $< -o tmp/$T.bin + $(call tc,f-embed_objinfo,tmp/$T.bin) + $(call tc,bin2h-c) tmp/$T.bin $@ + +armel-linux.kernel.vmlinuz-head.h : $(srcdir)/src/$$T.S + $(call tc,gcc) -c -x assembler-with-cpp $< -o tmp/$T.o + $(call tc,objcopy) --output-target binary --only-section .text tmp/$T.o tmp/$T.bin + $(call tc,bin2h) tmp/$T.bin $@ + + # /*********************************************************************** # // i386-win32.pe # ************************************************************************/ diff --git a/src/stub/armel-linux.kernel.vmlinuz-head.h b/src/stub/armel-linux.kernel.vmlinuz-head.h new file mode 100644 index 00000000..4995e2f6 --- /dev/null +++ b/src/stub/armel-linux.kernel.vmlinuz-head.h @@ -0,0 +1,40 @@ +/* armel-linux.kernel.vmlinuz-head.h + created from armel-linux.kernel.vmlinuz-head.bin, 8 (0x8) bytes + + This file is part of the UPX executable compressor. + + Copyright (C) 1996-2008 Markus Franz Xaver Johannes Oberhumer + Copyright (C) 1996-2008 Laszlo Molnar + Copyright (C) 2000-2008 John F. Reiser + All Rights Reserved. + + UPX and the UCL library are free software; you can redistribute them + and/or modify them under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of + the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; see the file COPYING. + If not, write to the Free Software Foundation, Inc., + 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + + Markus F.X.J. Oberhumer Laszlo Molnar + + + John F. Reiser + + */ + + +#define STUB_ARMEL_LINUX_KERNEL_VMLINUZ_HEAD_SIZE 8 +#define STUB_ARMEL_LINUX_KERNEL_VMLINUZ_HEAD_ADLER32 0x17bb0637 +#define STUB_ARMEL_LINUX_KERNEL_VMLINUZ_HEAD_CRC32 0xccc03eaa + +unsigned char stub_armel_linux_kernel_vmlinuz_head[8] = { +/* 0x0000 */ 14,192,160,225,254,255,255,235 +}; diff --git a/src/stub/armel-linux.kernel.vmlinuz.h b/src/stub/armel-linux.kernel.vmlinuz.h new file mode 100644 index 00000000..8c5b341b --- /dev/null +++ b/src/stub/armel-linux.kernel.vmlinuz.h @@ -0,0 +1,1140 @@ +/* armel-linux.kernel.vmlinuz.h + created from armel-linux.kernel.vmlinuz.bin, 17614 (0x44ce) bytes + + This file is part of the UPX executable compressor. + + Copyright (C) 1996-2008 Markus Franz Xaver Johannes Oberhumer + Copyright (C) 1996-2008 Laszlo Molnar + Copyright (C) 2000-2008 John F. Reiser + All Rights Reserved. + + UPX and the UCL library are free software; you can redistribute them + and/or modify them under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of + the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; see the file COPYING. + If not, write to the Free Software Foundation, Inc., + 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + + Markus F.X.J. Oberhumer Laszlo Molnar + + + John F. Reiser + + */ + + +#define STUB_ARMEL_LINUX_KERNEL_VMLINUZ_SIZE 17614 +#define STUB_ARMEL_LINUX_KERNEL_VMLINUZ_ADLER32 0xc2d05c42 +#define STUB_ARMEL_LINUX_KERNEL_VMLINUZ_CRC32 0xe788b8ee + +unsigned char stub_armel_linux_kernel_vmlinuz[17614] = { +/* 0x0000 */ 127, 69, 76, 70, 1, 1, 1, 97, 0, 0, 0, 0, 0, 0, 0, 0, +/* 0x0010 */ 1, 0, 40, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +/* 0x0020 */ 224, 23, 0, 0, 0, 0, 0, 0, 52, 0, 0, 0, 0, 0, 40, 0, +/* 0x0030 */ 35, 0, 32, 0, 0, 0,160,225, 0, 0,160,225, 0, 0,160,225, +/* 0x0040 */ 0, 0,160,225, 0, 0,160,225, 0, 0,160,225, 0, 0,160,225, +/* 0x0050 */ 0, 0,160,225, 0, 0,160,225, 0, 0,160,225, 0, 0,160,225, +/* 0x0060 */ 0, 0,160,225, 0, 0,160,225, 0, 0,160,225, 0, 0,160,225, +/* 0x0070 */ 0, 0,160,225, 0, 16,129,224, 62, 64, 45,233, 0, 80,224,227, +/* 0x0080 */ 2, 65,160,227, 24, 0, 0,234, 26, 0,189,232, 1, 0, 64,224, +/* 0x0090 */ 3, 32, 66,224, 0, 32,132,229, 48,128,189,232, 4, 64,148,224, +/* 0x00a0 */ 14,240,160, 17, 1, 64,208,228, 4, 64,164,224, 4, 76,176,225, +/* 0x00b0 */ 14,240,160,225, 1, 16,160,227, 14,192,160,225, 9, 0, 0,235, +/* 0x00c0 */ 1, 16,177,224, 9, 0, 0,235, 17, 0, 0, 58, 12,240,160,225, +/* 0x00d0 */ 1, 48,208,228, 1, 48,194,228, 9, 0, 0,235, 22, 0, 0, 42, +/* 0x00e0 */ 15, 0, 0,235, 3, 48, 81,226, 0, 16,160,227, 34, 0, 0, 58, +/* 0x00f0 */ 1, 80,208,228, 3, 84,133,225, 5, 80,240,225, 4, 0, 0, 10, +/* 0x0100 */ 9, 0, 0,235, 1, 16,177,224, 9, 0, 0,235, 1, 16,177,224, +/* 0x0110 */ 41, 0, 0, 26, 15, 0, 0,235, 2, 16,129,226, 13, 12,117,227, +/* 0x0120 */ 1, 16,129, 50, 5, 48,210,231, 1, 16, 81,226, 1, 48,194,228, +/* 0x0130 */ 43, 0, 0, 42, 24, 0, 0,234,252, 64, 45,233, 0,112,129,224, +/* 0x0140 */ 0, 80,224,227, 2, 65,160,227, 64, 0, 0,234, 24, 0,189,232, +/* 0x0150 */ 7, 0, 64,224, 3, 32, 66,224, 0, 32,132,229,240,128,189,232, +/* 0x0160 */ 1, 64,208,228, 4, 64,164,224, 4, 76,176,225, 14,240,160,225, +/* 0x0170 */ 1, 48,208,228, 1, 48,194,228, 4, 64,148,224, 58, 0, 0, 11, +/* 0x0180 */ 62, 0, 0, 42, 1, 16,160,227, 73, 0, 0,234, 1, 16, 65,226, +/* 0x0190 */ 4, 64,148,224, 58, 0, 0, 11, 1, 16,177,224, 4, 64,148,224, +/* 0x01a0 */ 58, 0, 0, 11, 1, 16,177,224, 4, 64,148,224, 58, 0, 0, 11, +/* 0x01b0 */ 69, 0, 0, 58, 3, 48, 81,226, 0, 16,160,227, 88, 0, 0, 58, +/* 0x01c0 */ 1, 80,208,228, 3, 84,133,225, 5, 80,240,225, 53, 0, 0, 10, +/* 0x01d0 */ 197, 80,176,225, 90, 0, 0,234, 4, 64,148,224, 58, 0, 0, 11, +/* 0x01e0 */ 1, 16,177,224, 4, 64,148,224, 58, 0, 0, 11, 1, 16,177,224, +/* 0x01f0 */ 103, 0, 0, 26, 1, 16,160,227, 4, 64,148,224, 58, 0, 0, 11, +/* 0x0200 */ 1, 16,177,224, 4, 64,148,224, 58, 0, 0, 11, 96, 0, 0, 58, +/* 0x0210 */ 2, 16,129,226, 1, 16,129,226, 5, 12,117,227, 1, 16,129, 50, +/* 0x0220 */ 0, 48,210,229, 5, 48,210,231, 1, 48,194,228, 1, 16, 81,226, +/* 0x0230 */ 107, 0, 0, 26, 64, 0, 0,234,252, 64, 45,233, 0,112,129,224, +/* 0x0240 */ 0, 80,224,227, 2, 65,160,227,128, 0, 0,234, 24, 0,189,232, +/* 0x0250 */ 7, 0, 64,224, 3, 32, 66,224, 0, 32,132,229,240,128,189,232, +/* 0x0260 */ 1, 64,208,228, 4, 64,164,224, 4, 76,176,225, 14,240,160,225, +/* 0x0270 */ 1, 48,208,228, 1, 48,194,228, 4, 64,148,224,122, 0, 0, 11, +/* 0x0280 */ 126, 0, 0, 42, 1, 16,160,227,137, 0, 0,234, 1, 16, 65,226, +/* 0x0290 */ 4, 64,148,224,122, 0, 0, 11, 1, 16,161,224, 4, 64,148,224, +/* 0x02a0 */ 122, 0, 0, 11, 1, 16,161,224, 4, 64,148,224,122, 0, 0, 11, +/* 0x02b0 */ 133, 0, 0, 58, 3, 48, 81,226, 0, 16,160,227,153, 0, 0, 58, +/* 0x02c0 */ 1, 80,208,228, 3, 84,133,225, 5, 80,240,225,117, 0, 0, 10, +/* 0x02d0 */ 197, 80,176,225,168, 0, 0, 42,156, 0, 0,234, 4, 64,148,224, +/* 0x02e0 */ 122, 0, 0, 11,168, 0, 0, 42, 1, 16,160,227, 4, 64,148,224, +/* 0x02f0 */ 122, 0, 0, 11,168, 0, 0, 42, 4, 64,148,224,122, 0, 0, 11, +/* 0x0300 */ 1, 16,161,224, 4, 64,148,224,122, 0, 0, 11,160, 0, 0, 58, +/* 0x0310 */ 4, 16,129,226,172, 0, 0,234, 4, 64,148,224,122, 0, 0, 11, +/* 0x0320 */ 1, 16,161,224, 2, 16,129,226, 5, 12,117,227, 1, 16,129, 50, +/* 0x0330 */ 1, 48,130,224, 1, 48, 83,229, 5, 48,210,231, 1, 48,194,228, +/* 0x0340 */ 1, 16, 81,226,176, 0, 0, 26,128, 0, 0,234, 0,192,221,229, +/* 0x0350 */ 14, 0, 92,227,254,255,255, 26, 0, 72, 45,233, 0,176,208,229, +/* 0x0360 */ 6,204,160,227,171,177,160,225, 28,203,160,225, 13,176,160,225, +/* 0x0370 */ 58,205,140,226, 12,208, 77,224, 0,192,147,229, 8, 48,141,229, +/* 0x0380 */ 4,192,141,229, 0, 32,141,229, 12, 48,141,226, 0,192,160,227, +/* 0x0390 */ 4,192,131,228, 11, 0, 83,225, 15, 0, 0, 26, 12, 48,141,226, +/* 0x03a0 */ 2, 32, 65,226, 0, 16,160,225, 1,192,209,228, 7,192, 12,226, +/* 0x03b0 */ 18,192,205,229, 1,192,209,228, 44, 2,160,225, 17, 0,205,229, +/* 0x03c0 */ 15,192, 12,226, 16,192,205,229, 16, 0,141,226, 33, 0, 0,235, +/* 0x03d0 */ 11,208,160,225, 0,136,189,232,240, 79, 45,233, 48,208, 77,226, +/* 0x03e0 */ 0, 48,141,229, 0, 48,208,229, 2, 80,208,229, 1,224,208,229, +/* 0x03f0 */ 0,192,157,229, 20, 48,141,229, 92, 48,157,229, 0, 64,160,227, +/* 0x0400 */ 0, 64,140,229, 0, 64,131,229, 20,192,157,229, 1, 48,208,229, +/* 0x0410 */ 3, 48,140,224, 3,204,160,227, 28,195,160,225, 1, 48,160,227, +/* 0x0420 */ 19,238,160,225, 19, 53,160,225,115,206,140,226, 1, 48, 67,226, +/* 0x0430 */ 1,224, 78,226, 4, 0,128,226, 6,192,140,226, 4, 16,141,229, +/* 0x0440 */ 12, 48,141,229, 16,224,141,229, 8, 0,141,229, 31, 0, 0,234, +/* 0x0450 */ 8, 0,157,229, 1, 27,160,227,176, 16,131,225, 12, 0, 84,225, +/* 0x0460 */ 132, 48,160,225, 1, 64,132,226, 28, 0, 0, 26, 4, 48,157,229, +/* 0x0470 */ 0, 96,160,227, 2,144,131,224, 3,224,160,225, 6, 32,160,225, +/* 0x0480 */ 4, 80,157,229, 9, 48,101,224, 3, 0, 82,225, 1,224,142,226, +/* 0x0490 */ 73, 2, 0, 10, 5, 48,210,231, 1, 32,130,226, 5, 0, 82,227, +/* 0x04a0 */ 6,100,131,225, 40, 0, 0, 26, 0,176,160,227, 1,192,160,227, +/* 0x04b0 */ 11,112,160,225, 0, 0,224,227, 44,192,141,229, 24,176,141,229, +/* 0x04c0 */ 28,192,141,229, 32,192,141,229, 36,192,141,229, 57, 2, 0,234, +/* 0x04d0 */ 255,132,224,227, 8, 0, 80,225, 68, 0, 0,138, 9, 0, 94,225, +/* 0x04e0 */ 73, 2, 0, 10, 1, 48,222,228, 0, 4,160,225, 6,100,131,225, +/* 0x04f0 */ 12, 16,157,229, 24, 32,157,229, 1,160, 11,224, 2, 18,160,225, +/* 0x0500 */ 1, 48,138,224,131, 80,160,225, 8, 48,157,229,181,192,147,225, +/* 0x0510 */ 160, 53,160,225,156, 3, 4,224, 4, 0, 86,225,185, 0, 0, 42, +/* 0x0520 */ 20, 0,157,229, 8, 48, 96,226, 87, 51,160,225, 16, 16,157,229, +/* 0x0530 */ 1, 32, 11,224, 18, 48,131,224, 8, 0,157,229, 6, 44,160,227, +/* 0x0540 */ 147, 2, 34,224, 24, 16,157,229, 2, 59,108,226, 6, 0, 81,227, +/* 0x0550 */ 195, 50,140,224,230,142,130,226,181, 48,128,225, 12,128,136,226, +/* 0x0560 */ 4, 0,160,209, 1, 16,160,211,164, 0, 0,218, 44, 32,157,229, +/* 0x0570 */ 84, 80,157,229, 11, 48, 98,224, 3,112,213,231, 4, 0,160,225, +/* 0x0580 */ 1, 16,160,227,135,112,160,225, 1, 92, 7,226,129,160,160,225, +/* 0x0590 */ 133, 48,136,224, 10, 48,131,224, 1, 4, 80,227, 2, 76,131,226, +/* 0x05a0 */ 1,192,129,226,119, 0, 0, 42, 9, 0, 94,225, 0, 4,160,225, +/* 0x05b0 */ 73, 2, 0, 10, 1, 48,222,228, 6,100,131,225,176, 48,212,225, +/* 0x05c0 */ 160, 37,160,225, 12, 16,129,224,147, 2, 12,224, 2, 43, 99,226, +/* 0x05d0 */ 12, 0, 86,225,194, 34,131,224,163, 50, 67,224,135, 0, 0, 42, +/* 0x05e0 */ 0, 0, 85,227, 12, 0,160,225,176, 32,196,225, 10, 16,160,225, +/* 0x05f0 */ 140, 0, 0, 10, 12, 0,160,225,164, 0, 0,234, 0, 0, 85,227, +/* 0x0600 */ 176, 48,196,225, 6, 96,108,224, 0, 0,108,224,164, 0, 0, 10, +/* 0x0610 */ 255, 0, 81,227,168, 0, 0,202,105, 0, 0,234, 1, 4, 80,227, +/* 0x0620 */ 3, 16,129,224,151, 0, 0, 42, 9, 0, 94,225, 0, 4,160,225, +/* 0x0630 */ 73, 2, 0, 10, 1, 48,222,228, 6,100,131,225,180, 48,152,225, +/* 0x0640 */ 160, 37,160,225,147, 2, 12,224, 2, 43, 99,226, 12, 0, 86,225, +/* 0x0650 */ 163, 82, 67,224,194, 50,131,224,180, 48,136, 49,180, 80,136, 33, +/* 0x0660 */ 0, 0,108,224, 4, 16,160, 49, 12, 0,160, 49, 6, 96,108, 32, +/* 0x0670 */ 255, 0, 81,227,129, 64,160,225, 1, 48,129,226,143, 0, 0,218, +/* 0x0680 */ 24,192,157,229,255,112, 1,226, 3, 0, 92,227, 84, 16,157,229, +/* 0x0690 */ 0, 32,160,211, 11,112,193,231, 1,176,139,226, 24, 32,141,213, +/* 0x06a0 */ 57, 2, 0,218, 24, 48,157,229, 9, 0, 83,227, 24, 80,157,197, +/* 0x06b0 */ 3, 48, 67,210, 6, 80, 69,194, 24, 48,141,213, 24, 80,141,197, +/* 0x06c0 */ 57, 2, 0,234,172, 50, 76,224, 0, 32,100,224, 8,192,157,229, +/* 0x06d0 */ 8, 0, 82,225,181, 48,140,225, 6, 96,100,224,197, 0, 0,138, +/* 0x06e0 */ 9, 0, 94,225, 73, 2, 0, 10, 1, 48,222,228, 2, 36,160,225, +/* 0x06f0 */ 6,100,131,225, 8, 0,157,229, 24, 48,157,229,131,112,128,224, +/* 0x0700 */ 6, 13,135,226,176,192,208,225,162, 53,160,225,156, 3, 4,224, +/* 0x0710 */ 4, 0, 86,225,225, 0, 0, 42, 24, 32,157,229, 8, 80,157,229, +/* 0x0720 */ 6, 0, 82,227, 2, 59,108,226,102, 30,133,226, 3, 32,160,195, +/* 0x0730 */ 32, 80,157,229, 0, 32,160,211,195, 50,140,224, 24, 32,141,229, +/* 0x0740 */ 28,192,157,229, 44, 32,157,229, 36, 80,141,229, 4, 16,129,226, +/* 0x0750 */ 4, 80,160,225, 32,192,141,229, 28, 32,141,229,176, 48,192,225, +/* 0x0760 */ 98, 1, 0,234, 2, 32,100,224,172, 50, 76,224, 8, 0, 82,225, +/* 0x0770 */ 176, 48,192,225, 6, 96,100,224,236, 0, 0,138, 9, 0, 94,225, +/* 0x0780 */ 73, 2, 0, 10, 1, 48,222,228, 2, 36,160,225, 6,100,131,225, +/* 0x0790 */ 102, 95,135,226,176,192,213,225,162, 53,160,225,156, 3, 4,224, +/* 0x07a0 */ 4, 0, 86,225, 26, 1, 0, 42, 2, 59,108,226,195, 50,140,224, +/* 0x07b0 */ 8, 0, 84,225,176, 48,197,225,252, 0, 0,138, 9, 0, 94,225, +/* 0x07c0 */ 73, 2, 0, 10, 1, 48,222,228, 4, 68,160,225, 6,100,131,225, +/* 0x07d0 */ 8, 80,157,229,129, 48,133,224,138, 48,131,224, 30, 30,131,226, +/* 0x07e0 */ 176,192,209,225,164, 53,160,225,156, 3, 2,224, 2, 0, 86,225, +/* 0x07f0 */ 6, 96, 98, 32,172, 50, 76, 32, 4, 80, 98, 32, 50, 1, 0, 42, +/* 0x0800 */ 2, 59,108,226,195, 50,140,224, 0, 0, 91,227,176, 48,193,225, +/* 0x0810 */ 73, 2, 0, 10, 44,192,157,229, 24, 16,157,229, 84, 0,157,229, +/* 0x0820 */ 11, 48,108,224, 3,112,208,231, 6, 0, 81,227, 11, 16,160,195, +/* 0x0830 */ 9, 16,160,211, 24, 16,141,229, 11,112,192,231, 2, 0,160,225, +/* 0x0840 */ 1,176,139,226, 57, 2, 0,234, 2, 32,100,224,172, 50, 76,224, +/* 0x0850 */ 8, 0, 82,225,176, 48,197,225, 6, 96,100,224, 37, 1, 0,138, +/* 0x0860 */ 9, 0, 94,225, 73, 2, 0, 10, 1, 48,222,228, 2, 36,160,225, +/* 0x0870 */ 6,100,131,225, 27, 30,135,226,176,192,209,225,162, 53,160,225, +/* 0x0880 */ 156, 3, 4,224, 4, 0, 86,225, 52, 1, 0, 42, 44, 80,157,229, +/* 0x0890 */ 2, 59,108,226, 28, 32,157,229,195, 50,140,224, 28, 80,141,229, +/* 0x08a0 */ 4, 80,160,225, 44, 32,141,229,176, 48,193,225, 90, 1, 0,234, +/* 0x08b0 */ 2, 32,100,224,172, 50, 76,224, 8, 0, 82,225,176, 48,193,225, +/* 0x08c0 */ 6, 96,100,224, 63, 1, 0,138, 9, 0, 94,225, 73, 2, 0, 10, +/* 0x08d0 */ 1, 48,222,228, 2, 36,160,225, 6,100,131,225,114, 31,135,226, +/* 0x08e0 */ 176,192,209,225,162, 53,160,225,156, 3, 4,224, 4, 0, 86,225, +/* 0x08f0 */ 78, 1, 0, 42, 2, 59,108,226, 32, 32,157,229,195, 50,140,224, +/* 0x0900 */ 44, 0,157,229, 28,192,157,229, 4, 80,160,225, 32,192,141,229, +/* 0x0910 */ 28, 0,141,229, 49, 1, 0,234,172, 50, 76,224,176, 48,193,225, +/* 0x0920 */ 44,192,157,229, 32, 16,141,226, 10, 0,145,232, 2, 80,100,224, +/* 0x0930 */ 28, 32,157,229, 36, 16,141,229, 32, 32,141,229, 28,192,141,229, +/* 0x0940 */ 44, 48,141,229, 6, 96,100,224, 24, 32,157,229, 8, 0,157,229, +/* 0x0950 */ 6, 0, 82,227, 11, 32,160,195, 8, 32,160,211,166, 30,128,226, +/* 0x0960 */ 24, 32,141,229, 8, 16,129,226,255,116,224,227, 7, 0, 85,225, +/* 0x0970 */ 106, 1, 0,138, 9, 0, 94,225, 73, 2, 0, 10, 1, 48,222,228, +/* 0x0980 */ 5, 84,160,225, 6,100,131,225,176,192,209,225,165, 53,160,225, +/* 0x0990 */ 156, 3, 4,224, 4, 0, 86,225,120, 1, 0, 42, 10, 34,129,224, +/* 0x09a0 */ 2, 59,108,226,195, 50,140,224, 4, 80,130,226, 4, 0,160,225, +/* 0x09b0 */ 3,160,160,227, 0,128,160,227,176, 48,193,225,152, 1, 0,234, +/* 0x09c0 */ 5, 32,100,224,172, 50, 76,224, 7, 0, 82,225, 6, 96,100,224, +/* 0x09d0 */ 176, 48,193,225,131, 1, 0,138, 9, 0, 94,225, 73, 2, 0, 10, +/* 0x09e0 */ 1, 48,222,228, 2, 36,160,225, 6,100,131,225,178,192,209,225, +/* 0x09f0 */ 162, 53,160,225,156, 3, 4,224, 4, 0, 86,225,145, 1, 0, 42, +/* 0x0a00 */ 10, 34,129,224, 2, 59,108,226,195, 50,140,224, 65, 95,130,226, +/* 0x0a10 */ 4, 0,160,225, 3,160,160,227, 8,128,160,227,178, 48,193,225, +/* 0x0a20 */ 152, 1, 0,234,172, 50, 76,224,178, 48,193,225, 6, 96,100,224, +/* 0x0a30 */ 2, 0,100,224,129, 95,129,226, 8,160,160,227, 16,128,160,227, +/* 0x0a40 */ 10,112,160,225, 1, 16,160,227, 1, 48,129,226, 1, 4, 80,227, +/* 0x0a50 */ 129, 64,160,225, 3, 16,129,224,164, 1, 0, 42, 9, 0, 94,225, +/* 0x0a60 */ 0, 4,160,225, 73, 2, 0, 10, 1, 48,222,228, 6,100,131,225, +/* 0x0a70 */ 180, 48,149,225,160, 37,160,225,147, 2, 12,224, 2, 43, 99,226, +/* 0x0a80 */ 12, 0, 86,225,194, 34,131,224,163, 50, 67,224, 0, 0,108,224, +/* 0x0a90 */ 4, 16,160, 49, 12, 0,160, 49,180, 32,133, 49, 6, 96,108, 32, +/* 0x0aa0 */ 180, 48,133, 33, 1,112, 87,226,154, 1, 0, 26, 1, 32,160,227, +/* 0x0ab0 */ 18, 58, 65,224, 24, 80,157,229, 8, 48,131,224, 3, 0, 85,227, +/* 0x0ac0 */ 40, 48,141,229, 36, 2, 0,202, 8,192,157,229, 3, 0, 83,227, +/* 0x0ad0 */ 3, 48,160,163,131, 51,140,224, 54, 94,131,226, 2,112,160,225, +/* 0x0ae0 */ 6,128,160,227, 1, 48,135,226, 1, 4, 80,227,135, 64,160,225, +/* 0x0af0 */ 3,112,135,224,203, 1, 0, 42, 9, 0, 94,225, 0, 4,160,225, +/* 0x0b00 */ 73, 2, 0, 10, 1, 48,222,228, 6,100,131,225,180, 48,149,225, +/* 0x0b10 */ 160, 37,160,225,147, 2, 12,224, 2, 43, 99,226, 12, 0, 86,225, +/* 0x0b20 */ 194, 34,131,224,163, 50, 67,224, 0, 0,108,224, 4,112,160, 49, +/* 0x0b30 */ 12, 0,160, 49,180, 32,133, 49, 6, 96,108, 32,180, 48,133, 33, +/* 0x0b40 */ 1,128, 88,226,193, 1, 0, 26, 64, 32, 71,226, 3, 0, 82,227, +/* 0x0b50 */ 2, 80,160,209, 30, 2, 0,218,194, 64,160,225, 13, 0, 82,227, +/* 0x0b60 */ 1, 48, 2,226, 1,112, 68,226, 2,192,131,227, 5, 64, 68,194, +/* 0x0b70 */ 8, 32,160,193,237, 1, 0,202, 28, 87,160,225, 8, 16,157,229, +/* 0x0b80 */ 133, 48,129,224,130, 48, 67,224, 85, 78,131,226, 14, 64,132,226, +/* 0x0b90 */ 1, 2, 0,234, 1, 4, 80,227, 1, 32,130,226,245, 1, 0, 42, +/* 0x0ba0 */ 9, 0, 94,225, 0, 4,160,225, 73, 2, 0, 10, 1, 48,222,228, +/* 0x0bb0 */ 6,100,131,225,160, 0,160,225, 0, 0, 86,225,140,192,160,225, +/* 0x0bc0 */ 6, 96, 96, 32, 1,192,140, 35, 4, 0, 82,225,237, 1, 0, 26, +/* 0x0bd0 */ 8, 32,157,229, 25, 77,130,226, 4, 64,132,226, 12, 82,160,225, +/* 0x0be0 */ 4,112,160,227, 1,160,160,227, 10,128,160,225, 1, 4, 80,227, +/* 0x0bf0 */ 136, 16,160,225, 1,192,136,226, 12, 2, 0, 42, 9, 0, 94,225, +/* 0x0c00 */ 0, 4,160,225, 73, 2, 0, 10, 1, 48,222,228, 6,100,131,225, +/* 0x0c10 */ 177, 48,148,225,160, 37,160,225, 12,128,136,224,147, 2, 12,224, +/* 0x0c20 */ 2, 43, 99,226, 12, 0, 86,225,194, 34,131,224,163, 50, 67,224, +/* 0x0c30 */ 10, 80,133, 33, 1,128,160, 49, 12, 0,160, 49,177, 32,132, 49, +/* 0x0c40 */ 177, 48,132, 33, 6, 96,108, 32, 0, 0,108, 32, 1,112, 87,226, +/* 0x0c50 */ 138,160,160,225, 3, 2, 0, 26, 1, 80,149,226, 44, 80,141,229, +/* 0x0c60 */ 60, 2, 0, 10, 24, 48,157,229, 7, 48,131,226, 24, 48,141,229, +/* 0x0c70 */ 44, 80,157,229, 11, 0, 85,225, 73, 2, 0,138, 40,192,157,229, +/* 0x0c80 */ 84, 16,157,229, 11, 48,101,224, 2, 32,140,226, 3, 64,129,224, +/* 0x0c90 */ 11,192,129,224, 1, 32, 82,226, 88, 80,157,229, 0, 48,160, 3, +/* 0x0ca0 */ 1, 48,160, 19, 1,176,139,226, 5, 0, 91,225, 0, 48,160, 35, +/* 0x0cb0 */ 1, 48, 3, 50, 1,112,212,228, 0, 0, 83,227, 1,112,204,228, +/* 0x0cc0 */ 45, 2, 0, 26, 88,192,157,229, 12, 0, 91,225, 60, 0, 0, 58, +/* 0x0cd0 */ 1, 4, 80,227, 65, 2, 0, 42, 9, 0, 94,225, 73, 2, 0, 10, +/* 0x0ce0 */ 1,224,142,226, 4, 0,157,229, 0, 16,157,229, 92, 32,157,229, +/* 0x0cf0 */ 14, 48, 96,224, 0, 0,160,227, 0, 48,129,229, 0,176,130,229, +/* 0x0d00 */ 74, 2, 0,234, 1, 0,160,227, 48,208,141,226,240,143,189,232, +/* 0x0d10 */ 240, 79, 45,233, 48,208, 77,226, 0, 48,141,229, 0, 48,208,229, +/* 0x0d20 */ 2, 80,208,229, 1,224,208,229, 0,192,157,229, 20, 48,141,229, +/* 0x0d30 */ 92, 48,157,229, 0, 64,160,227, 0, 64,140,229, 0, 64,131,229, +/* 0x0d40 */ 20,192,157,229, 1, 48,208,229, 3, 48,140,224, 3,204,160,227, +/* 0x0d50 */ 28,195,160,225, 1, 48,160,227, 19,238,160,225, 19, 53,160,225, +/* 0x0d60 */ 115,206,140,226, 1, 48, 67,226, 1,224, 78,226, 4, 0,128,226, +/* 0x0d70 */ 6,192,140,226, 4, 16,141,229, 12, 48,141,229, 16,224,141,229, +/* 0x0d80 */ 8, 0,141,229, 31, 0, 0,234, 8, 0,157,229, 1, 27,160,227, +/* 0x0d90 */ 176, 16,131,225, 12, 0, 84,225,132, 48,160,225, 1, 64,132,226, +/* 0x0da0 */ 28, 0, 0, 26, 4, 48,157,229, 0, 96,160,227, 2,144,131,224, +/* 0x0db0 */ 3,224,160,225, 6, 32,160,225, 4, 80,157,229, 9, 48,101,224, +/* 0x0dc0 */ 3, 0, 82,225, 1,224,142,226, 73, 2, 0, 10, 5, 48,210,231, +/* 0x0dd0 */ 1, 32,130,226, 5, 0, 82,227, 6,100,131,225, 40, 0, 0, 26, +/* 0x0de0 */ 0,176,160,227, 1,192,160,227, 11,112,160,225, 0, 0,224,227, +/* 0x0df0 */ 44,192,141,229, 24,176,141,229, 28,192,141,229, 32,192,141,229, +/* 0x0e00 */ 36,192,141,229, 57, 2, 0,234,255,132,224,227, 8, 0, 80,225, +/* 0x0e10 */ 68, 0, 0,138, 9, 0, 94,225, 73, 2, 0, 10, 1, 48,222,228, +/* 0x0e20 */ 0, 4,160,225, 6,100,131,225, 12, 16,157,229, 24, 32,157,229, +/* 0x0e30 */ 1,160, 11,224, 2, 18,160,225, 1, 48,138,224,131, 80,160,225, +/* 0x0e40 */ 8, 48,157,229,181,192,147,225,160, 53,160,225,156, 3, 4,224, +/* 0x0e50 */ 4, 0, 86,225,185, 0, 0, 42, 20, 0,157,229, 8, 48, 96,226, +/* 0x0e60 */ 87, 51,160,225, 16, 16,157,229, 1, 32, 11,224, 18, 48,131,224, +/* 0x0e70 */ 8, 0,157,229, 6, 44,160,227,147, 2, 34,224, 24, 16,157,229, +/* 0x0e80 */ 2, 59,108,226, 6, 0, 81,227,195, 50,140,224,230,142,130,226, +/* 0x0e90 */ 181, 48,128,225, 12,128,136,226, 4, 0,160,209, 1, 16,160,211, +/* 0x0ea0 */ 164, 0, 0,218, 44, 32,157,229, 84, 80,157,229, 11, 48, 98,224, +/* 0x0eb0 */ 3,112,213,231, 4, 0,160,225, 1, 16,160,227,135,112,160,225, +/* 0x0ec0 */ 1, 92, 7,226,129,160,160,225,133, 48,136,224, 10, 48,131,224, +/* 0x0ed0 */ 1, 4, 80,227, 2, 76,131,226, 1,192,129,226,119, 0, 0, 42, +/* 0x0ee0 */ 9, 0, 94,225, 0, 4,160,225, 73, 2, 0, 10, 1, 48,222,228, +/* 0x0ef0 */ 6,100,131,225,176, 48,212,225,160, 37,160,225, 12, 16,129,224, +/* 0x0f00 */ 147, 2, 12,224, 2, 43, 99,226, 12, 0, 86,225,194, 34,131,224, +/* 0x0f10 */ 163, 50, 67,224,135, 0, 0, 42, 0, 0, 85,227, 12, 0,160,225, +/* 0x0f20 */ 176, 32,196,225, 10, 16,160,225,140, 0, 0, 10, 12, 0,160,225, +/* 0x0f30 */ 164, 0, 0,234, 0, 0, 85,227,176, 48,196,225, 6, 96,108,224, +/* 0x0f40 */ 0, 0,108,224,164, 0, 0, 10,255, 0, 81,227,168, 0, 0,202, +/* 0x0f50 */ 105, 0, 0,234, 1, 4, 80,227, 3, 16,129,224,151, 0, 0, 42, +/* 0x0f60 */ 9, 0, 94,225, 0, 4,160,225, 73, 2, 0, 10, 1, 48,222,228, +/* 0x0f70 */ 6,100,131,225,180, 48,152,225,160, 37,160,225,147, 2, 12,224, +/* 0x0f80 */ 2, 43, 99,226, 12, 0, 86,225,163, 82, 67,224,194, 50,131,224, +/* 0x0f90 */ 180, 48,136, 49,180, 80,136, 33, 0, 0,108,224, 4, 16,160, 49, +/* 0x0fa0 */ 12, 0,160, 49, 6, 96,108, 32,255, 0, 81,227,129, 64,160,225, +/* 0x0fb0 */ 1, 48,129,226,143, 0, 0,218, 24,192,157,229,255,112, 1,226, +/* 0x0fc0 */ 3, 0, 92,227, 84, 16,157,229, 0, 32,160,211, 11,112,193,231, +/* 0x0fd0 */ 1,176,139,226, 24, 32,141,213, 57, 2, 0,218, 24, 48,157,229, +/* 0x0fe0 */ 9, 0, 83,227, 24, 80,157,197, 3, 48, 67,210, 6, 80, 69,194, +/* 0x0ff0 */ 24, 48,141,213, 24, 80,141,197, 57, 2, 0,234,172, 50, 76,224, +/* 0x1000 */ 0, 32,100,224, 8,192,157,229, 8, 0, 82,225,181, 48,140,225, +/* 0x1010 */ 6, 96,100,224,197, 0, 0,138, 9, 0, 94,225, 73, 2, 0, 10, +/* 0x1020 */ 1, 48,222,228, 2, 36,160,225, 6,100,131,225, 8, 0,157,229, +/* 0x1030 */ 24, 48,157,229,131,112,128,224, 6, 13,135,226,176,192,208,225, +/* 0x1040 */ 162, 53,160,225,156, 3, 4,224, 4, 0, 86,225,225, 0, 0, 42, +/* 0x1050 */ 24, 32,157,229, 8, 80,157,229, 6, 0, 82,227, 2, 59,108,226, +/* 0x1060 */ 102, 30,133,226, 3, 32,160,195, 32, 80,157,229, 0, 32,160,211, +/* 0x1070 */ 195, 50,140,224, 24, 32,141,229, 28,192,157,229, 44, 32,157,229, +/* 0x1080 */ 36, 80,141,229, 4, 16,129,226, 4, 80,160,225, 32,192,141,229, +/* 0x1090 */ 28, 32,141,229,176, 48,192,225, 98, 1, 0,234, 2, 32,100,224, +/* 0x10a0 */ 172, 50, 76,224, 8, 0, 82,225,176, 48,192,225, 6, 96,100,224, +/* 0x10b0 */ 236, 0, 0,138, 9, 0, 94,225, 73, 2, 0, 10, 1, 48,222,228, +/* 0x10c0 */ 2, 36,160,225, 6,100,131,225,102, 95,135,226,176,192,213,225, +/* 0x10d0 */ 162, 53,160,225,156, 3, 4,224, 4, 0, 86,225, 26, 1, 0, 42, +/* 0x10e0 */ 2, 59,108,226,195, 50,140,224, 8, 0, 84,225,176, 48,197,225, +/* 0x10f0 */ 252, 0, 0,138, 9, 0, 94,225, 73, 2, 0, 10, 1, 48,222,228, +/* 0x1100 */ 4, 68,160,225, 6,100,131,225, 8, 80,157,229,129, 48,133,224, +/* 0x1110 */ 138, 48,131,224, 30, 30,131,226,176,192,209,225,164, 53,160,225, +/* 0x1120 */ 156, 3, 2,224, 2, 0, 86,225, 6, 96, 98, 32,172, 50, 76, 32, +/* 0x1130 */ 4, 80, 98, 32, 50, 1, 0, 42, 2, 59,108,226,195, 50,140,224, +/* 0x1140 */ 0, 0, 91,227,176, 48,193,225, 73, 2, 0, 10, 44,192,157,229, +/* 0x1150 */ 24, 16,157,229, 84, 0,157,229, 11, 48,108,224, 3,112,208,231, +/* 0x1160 */ 6, 0, 81,227, 11, 16,160,195, 9, 16,160,211, 24, 16,141,229, +/* 0x1170 */ 11,112,192,231, 2, 0,160,225, 1,176,139,226, 57, 2, 0,234, +/* 0x1180 */ 2, 32,100,224,172, 50, 76,224, 8, 0, 82,225,176, 48,197,225, +/* 0x1190 */ 6, 96,100,224, 37, 1, 0,138, 9, 0, 94,225, 73, 2, 0, 10, +/* 0x11a0 */ 1, 48,222,228, 2, 36,160,225, 6,100,131,225, 27, 30,135,226, +/* 0x11b0 */ 176,192,209,225,162, 53,160,225,156, 3, 4,224, 4, 0, 86,225, +/* 0x11c0 */ 52, 1, 0, 42, 44, 80,157,229, 2, 59,108,226, 28, 32,157,229, +/* 0x11d0 */ 195, 50,140,224, 28, 80,141,229, 4, 80,160,225, 44, 32,141,229, +/* 0x11e0 */ 176, 48,193,225, 90, 1, 0,234, 2, 32,100,224,172, 50, 76,224, +/* 0x11f0 */ 8, 0, 82,225,176, 48,193,225, 6, 96,100,224, 63, 1, 0,138, +/* 0x1200 */ 9, 0, 94,225, 73, 2, 0, 10, 1, 48,222,228, 2, 36,160,225, +/* 0x1210 */ 6,100,131,225,114, 31,135,226,176,192,209,225,162, 53,160,225, +/* 0x1220 */ 156, 3, 4,224, 4, 0, 86,225, 78, 1, 0, 42, 2, 59,108,226, +/* 0x1230 */ 32, 32,157,229,195, 50,140,224, 44, 0,157,229, 28,192,157,229, +/* 0x1240 */ 4, 80,160,225, 32,192,141,229, 28, 0,141,229, 49, 1, 0,234, +/* 0x1250 */ 172, 50, 76,224,176, 48,193,225, 44,192,157,229, 32, 16,141,226, +/* 0x1260 */ 10, 0,145,232, 2, 80,100,224, 28, 32,157,229, 36, 16,141,229, +/* 0x1270 */ 32, 32,141,229, 28,192,141,229, 44, 48,141,229, 6, 96,100,224, +/* 0x1280 */ 24, 32,157,229, 8, 0,157,229, 6, 0, 82,227, 11, 32,160,195, +/* 0x1290 */ 8, 32,160,211,166, 30,128,226, 24, 32,141,229, 8, 16,129,226, +/* 0x12a0 */ 255,116,224,227, 7, 0, 85,225,106, 1, 0,138, 9, 0, 94,225, +/* 0x12b0 */ 73, 2, 0, 10, 1, 48,222,228, 5, 84,160,225, 6,100,131,225, +/* 0x12c0 */ 176,192,209,225,165, 53,160,225,156, 3, 4,224, 4, 0, 86,225, +/* 0x12d0 */ 120, 1, 0, 42, 10, 34,129,224, 2, 59,108,226,195, 50,140,224, +/* 0x12e0 */ 4, 80,130,226, 4, 0,160,225, 3,160,160,227, 0,128,160,227, +/* 0x12f0 */ 176, 48,193,225,152, 1, 0,234, 5, 32,100,224,172, 50, 76,224, +/* 0x1300 */ 7, 0, 82,225, 6, 96,100,224,176, 48,193,225,131, 1, 0,138, +/* 0x1310 */ 9, 0, 94,225, 73, 2, 0, 10, 1, 48,222,228, 2, 36,160,225, +/* 0x1320 */ 6,100,131,225,178,192,209,225,162, 53,160,225,156, 3, 4,224, +/* 0x1330 */ 4, 0, 86,225,145, 1, 0, 42, 10, 34,129,224, 2, 59,108,226, +/* 0x1340 */ 195, 50,140,224, 65, 95,130,226, 4, 0,160,225, 3,160,160,227, +/* 0x1350 */ 8,128,160,227,178, 48,193,225,152, 1, 0,234,172, 50, 76,224, +/* 0x1360 */ 178, 48,193,225, 6, 96,100,224, 2, 0,100,224,129, 95,129,226, +/* 0x1370 */ 8,160,160,227, 16,128,160,227, 10,112,160,225, 1, 16,160,227, +/* 0x1380 */ 1, 48,129,226, 1, 4, 80,227,129, 64,160,225, 3, 16,129,224, +/* 0x1390 */ 164, 1, 0, 42, 9, 0, 94,225, 0, 4,160,225, 73, 2, 0, 10, +/* 0x13a0 */ 1, 48,222,228, 6,100,131,225,180, 48,149,225,160, 37,160,225, +/* 0x13b0 */ 147, 2, 12,224, 2, 43, 99,226, 12, 0, 86,225,194, 34,131,224, +/* 0x13c0 */ 163, 50, 67,224, 0, 0,108,224, 4, 16,160, 49, 12, 0,160, 49, +/* 0x13d0 */ 180, 32,133, 49, 6, 96,108, 32,180, 48,133, 33, 1,112, 87,226, +/* 0x13e0 */ 154, 1, 0, 26, 1, 32,160,227, 18, 58, 65,224, 24, 80,157,229, +/* 0x13f0 */ 8, 48,131,224, 3, 0, 85,227, 40, 48,141,229, 36, 2, 0,202, +/* 0x1400 */ 8,192,157,229, 3, 0, 83,227, 3, 48,160,163,131, 51,140,224, +/* 0x1410 */ 54, 94,131,226, 2,112,160,225, 6,128,160,227, 1, 48,135,226, +/* 0x1420 */ 1, 4, 80,227,135, 64,160,225, 3,112,135,224,203, 1, 0, 42, +/* 0x1430 */ 9, 0, 94,225, 0, 4,160,225, 73, 2, 0, 10, 1, 48,222,228, +/* 0x1440 */ 6,100,131,225,180, 48,149,225,160, 37,160,225,147, 2, 12,224, +/* 0x1450 */ 2, 43, 99,226, 12, 0, 86,225,194, 34,131,224,163, 50, 67,224, +/* 0x1460 */ 0, 0,108,224, 4,112,160, 49, 12, 0,160, 49,180, 32,133, 49, +/* 0x1470 */ 6, 96,108, 32,180, 48,133, 33, 1,128, 88,226,193, 1, 0, 26, +/* 0x1480 */ 64, 32, 71,226, 3, 0, 82,227, 2, 80,160,209, 30, 2, 0,218, +/* 0x1490 */ 194, 64,160,225, 13, 0, 82,227, 1, 48, 2,226, 1,112, 68,226, +/* 0x14a0 */ 2,192,131,227, 5, 64, 68,194, 8, 32,160,193,237, 1, 0,202, +/* 0x14b0 */ 28, 87,160,225, 8, 16,157,229,133, 48,129,224,130, 48, 67,224, +/* 0x14c0 */ 85, 78,131,226, 14, 64,132,226, 1, 2, 0,234, 1, 4, 80,227, +/* 0x14d0 */ 1, 32,130,226,245, 1, 0, 42, 9, 0, 94,225, 0, 4,160,225, +/* 0x14e0 */ 73, 2, 0, 10, 1, 48,222,228, 6,100,131,225,160, 0,160,225, +/* 0x14f0 */ 0, 0, 86,225,140,192,160,225, 6, 96, 96, 32, 1,192,140, 35, +/* 0x1500 */ 4, 0, 82,225,237, 1, 0, 26, 8, 32,157,229, 25, 77,130,226, +/* 0x1510 */ 4, 64,132,226, 12, 82,160,225, 4,112,160,227, 1,160,160,227, +/* 0x1520 */ 10,128,160,225, 1, 4, 80,227,136, 16,160,225, 1,192,136,226, +/* 0x1530 */ 12, 2, 0, 42, 9, 0, 94,225, 0, 4,160,225, 73, 2, 0, 10, +/* 0x1540 */ 1, 48,222,228, 6,100,131,225,177, 48,148,225,160, 37,160,225, +/* 0x1550 */ 12,128,136,224,147, 2, 12,224, 2, 43, 99,226, 12, 0, 86,225, +/* 0x1560 */ 194, 34,131,224,163, 50, 67,224, 10, 80,133, 33, 1,128,160, 49, +/* 0x1570 */ 12, 0,160, 49,177, 32,132, 49,177, 48,132, 33, 6, 96,108, 32, +/* 0x1580 */ 0, 0,108, 32, 1,112, 87,226,138,160,160,225, 3, 2, 0, 26, +/* 0x1590 */ 1, 80,149,226, 44, 80,141,229, 60, 2, 0, 10, 24, 48,157,229, +/* 0x15a0 */ 7, 48,131,226, 24, 48,141,229, 44, 80,157,229, 11, 0, 85,225, +/* 0x15b0 */ 73, 2, 0,138, 40,192,157,229, 84, 16,157,229, 11, 48,101,224, +/* 0x15c0 */ 2, 32,140,226, 3, 64,129,224, 11,192,129,224, 1, 32, 82,226, +/* 0x15d0 */ 88, 80,157,229, 0, 48,160, 3, 1, 48,160, 19, 1,176,139,226, +/* 0x15e0 */ 5, 0, 91,225, 0, 48,160, 35, 1, 48, 3, 50, 1,112,212,228, +/* 0x15f0 */ 0, 0, 83,227, 1,112,204,228, 45, 2, 0, 26, 88,192,157,229, +/* 0x1600 */ 12, 0, 91,225, 60, 0, 0, 58, 1, 4, 80,227, 65, 2, 0, 42, +/* 0x1610 */ 9, 0, 94,225, 73, 2, 0, 10, 1,224,142,226, 4, 0,157,229, +/* 0x1620 */ 0, 16,157,229, 92, 32,157,229, 14, 48, 96,224, 0, 0,160,227, +/* 0x1630 */ 0, 48,129,229, 0,176,130,229, 74, 2, 0,234, 1, 0,160,227, +/* 0x1640 */ 48,208,141,226,240,143,189,232,255, 48, 3,226, 80, 0, 83,227, +/* 0x1650 */ 81, 0, 83,227, 14,240,160, 17, 33, 17,176,225, 0, 0, 80, 19, +/* 0x1660 */ 14,240,160, 1, 1, 16, 65,226, 1, 33,144,231, 15, 52, 2,226, +/* 0x1670 */ 11, 4, 83,227, 12, 0, 0, 26,255, 52, 2,226, 1, 32, 66,224, +/* 0x1680 */ 255, 36,194,227, 3, 32,130,225, 1, 33,128,231, 0, 0, 81,227, +/* 0x1690 */ 2, 0, 0, 26, 14,240,160,225, 85, 80, 88, 33,161,216,208,213, +/* 0x16a0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +/* 0x16b0 */ 0, 0, 0, 0, 0, 0, 0, 45,102,105,108,101, 32,102,111,114, +/* 0x16c0 */ 109, 97,116, 32,101,108,102, 51, 50, 45,108,105,116,116,108,101, +/* 0x16d0 */ 97,114,109, 10, 10, 83,101, 99,116,105,111,110,115, 58, 10, 73, +/* 0x16e0 */ 100,120, 32, 78, 97,109,101, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x16f0 */ 32, 83,105,122,101, 32, 32, 32, 32, 32, 32, 86, 77, 65, 32, 32, +/* 0x1700 */ 32, 32, 32, 32, 32, 76, 77, 65, 32, 32, 32, 32, 32, 32, 32, 70, +/* 0x1710 */ 105,108,101, 32,111,102,102, 32, 32, 65,108,103,110, 32, 32, 70, +/* 0x1720 */ 108, 97,103,115, 10, 32, 32, 48, 32, 76, 73, 78, 85, 90, 86, 71, +/* 0x1730 */ 65, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, +/* 0x1740 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, +/* 0x1750 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 51, 52, 32, 32, 50, +/* 0x1760 */ 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, +/* 0x1770 */ 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 49, 32, 76, 73, 78, 85, +/* 0x1780 */ 90, 48, 48, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x1790 */ 48, 52, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, +/* 0x17a0 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 51, 52, +/* 0x17b0 */ 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, +/* 0x17c0 */ 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 50, 32, 76, +/* 0x17d0 */ 73, 78, 85, 90, 48, 48, 49, 32, 32, 32, 32, 32, 32, 48, 48, 48, +/* 0x17e0 */ 48, 48, 48, 48, 52, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, +/* 0x17f0 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, +/* 0x1800 */ 48, 51, 56, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, +/* 0x1810 */ 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, +/* 0x1820 */ 51, 32, 76, 73, 78, 85, 90, 48, 48, 53, 32, 32, 32, 32, 32, 32, +/* 0x1830 */ 48, 48, 48, 48, 48, 48, 48, 52, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x1840 */ 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, +/* 0x1850 */ 48, 48, 48, 48, 51, 99, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, +/* 0x1860 */ 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, +/* 0x1870 */ 10, 32, 32, 52, 32, 76, 73, 78, 85, 90, 48, 49, 48, 32, 32, 32, +/* 0x1880 */ 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, 32, 32, 48, 48, 48, +/* 0x1890 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, +/* 0x18a0 */ 32, 48, 48, 48, 48, 48, 48, 52, 48, 32, 32, 50, 42, 42, 48, 32, +/* 0x18b0 */ 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, +/* 0x18c0 */ 78, 76, 89, 10, 32, 32, 53, 32, 76, 73, 78, 85, 90, 49, 48, 49, +/* 0x18d0 */ 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, 32, 32, +/* 0x18e0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x18f0 */ 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 52, 52, 32, 32, 50, 42, +/* 0x1900 */ 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, +/* 0x1910 */ 65, 68, 79, 78, 76, 89, 10, 32, 32, 54, 32, 76, 73, 78, 85, 90, +/* 0x1920 */ 49, 49, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x1930 */ 52, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x1940 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 52, 56, 32, +/* 0x1950 */ 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, +/* 0x1960 */ 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 55, 32, 76, 73, +/* 0x1970 */ 78, 85, 90, 49, 50, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, +/* 0x1980 */ 48, 48, 48, 52, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x1990 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x19a0 */ 52, 99, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, +/* 0x19b0 */ 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 56, +/* 0x19c0 */ 32, 76, 73, 78, 85, 90, 49, 51, 48, 32, 32, 32, 32, 32, 32, 48, +/* 0x19d0 */ 48, 48, 48, 48, 48, 48, 52, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x19e0 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x19f0 */ 48, 48, 48, 53, 48, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, +/* 0x1a00 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x1a10 */ 32, 32, 57, 32, 76, 73, 78, 85, 90, 49, 52, 48, 32, 32, 32, 32, +/* 0x1a20 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, 32, 32, 48, 48, 48, 48, +/* 0x1a30 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x1a40 */ 48, 48, 48, 48, 48, 48, 53, 52, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x1a50 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x1a60 */ 76, 89, 10, 32, 49, 48, 32, 76, 73, 78, 85, 90, 49, 52, 49, 32, +/* 0x1a70 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, 32, 32, 48, +/* 0x1a80 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x1a90 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 53, 56, 32, 32, 50, 42, 42, +/* 0x1aa0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x1ab0 */ 68, 79, 78, 76, 89, 10, 32, 49, 49, 32, 76, 73, 78, 85, 90, 49, +/* 0x1ac0 */ 52, 53, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, +/* 0x1ad0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x1ae0 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 53, 99, 32, 32, +/* 0x1af0 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x1b00 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 49, 50, 32, 76, 73, 78, +/* 0x1b10 */ 85, 90, 49, 53, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x1b20 */ 48, 48, 52, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x1b30 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 54, +/* 0x1b40 */ 48, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x1b50 */ 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 49, 51, 32, +/* 0x1b60 */ 76, 90, 67, 65, 76, 76, 84, 49, 32, 32, 32, 32, 32, 32, 48, 48, +/* 0x1b70 */ 48, 48, 48, 48, 48, 52, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x1b80 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x1b90 */ 48, 48, 54, 52, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, +/* 0x1ba0 */ 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, +/* 0x1bb0 */ 49, 52, 32, 76, 90, 67, 75, 76, 76, 84, 49, 32, 32, 32, 32, 32, +/* 0x1bc0 */ 32, 48, 48, 48, 48, 48, 48, 48, 52, 32, 32, 48, 48, 48, 48, 48, +/* 0x1bd0 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x1be0 */ 48, 48, 48, 48, 48, 54, 56, 32, 32, 50, 42, 42, 48, 32, 32, 67, +/* 0x1bf0 */ 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, +/* 0x1c00 */ 89, 10, 32, 49, 53, 32, 76, 90, 73, 77, 65, 71, 69, 48, 32, 32, +/* 0x1c10 */ 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, 32, 32, 48, 48, +/* 0x1c20 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x1c30 */ 32, 32, 48, 48, 48, 48, 48, 48, 54, 99, 32, 32, 50, 42, 42, 48, +/* 0x1c40 */ 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, +/* 0x1c50 */ 79, 78, 76, 89, 10, 32, 49, 54, 32, 76, 90, 67, 85, 84, 80, 79, +/* 0x1c60 */ 73, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 50,100, 99, 32, +/* 0x1c70 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, +/* 0x1c80 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 55, 48, 32, 32, 50, +/* 0x1c90 */ 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, +/* 0x1ca0 */ 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, +/* 0x1cb0 */ 49, 55, 32, 76, 90, 77, 65, 95, 69, 76, 70, 48, 48, 32, 32, 32, +/* 0x1cc0 */ 32, 48, 48, 48, 48, 48, 48, 56, 99, 32, 32, 48, 48, 48, 48, 48, +/* 0x1cd0 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x1ce0 */ 48, 48, 48, 48, 51, 52, 99, 32, 32, 50, 42, 42, 48, 32, 32, 67, +/* 0x1cf0 */ 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, +/* 0x1d00 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 49, 56, 32, 76, 90, 77, +/* 0x1d10 */ 65, 95, 68, 69, 67, 49, 48, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x1d20 */ 57, 51, 56, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x1d30 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 51,100, +/* 0x1d40 */ 56, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x1d50 */ 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x1d60 */ 76, 89, 10, 32, 49, 57, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, +/* 0x1d70 */ 48, 32, 32, 32, 32, 48, 48, 48, 48, 48, 57, 51, 56, 32, 32, 48, +/* 0x1d80 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x1d90 */ 48, 32, 32, 48, 48, 48, 48, 48,100, 49, 48, 32, 32, 50, 42, 42, +/* 0x1da0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, +/* 0x1db0 */ 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 50, 48, +/* 0x1dc0 */ 32, 76, 90, 77, 65, 95, 68, 69, 67, 51, 48, 32, 32, 32, 32, 48, +/* 0x1dd0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x1de0 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x1df0 */ 48, 49, 54, 52, 56, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, +/* 0x1e00 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x1e10 */ 32, 50, 49, 32, 99,116,111,107, 51, 50, 46, 48, 48, 32, 32, 32, +/* 0x1e20 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, 32, 32, 48, 48, 48, 48, +/* 0x1e30 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x1e40 */ 48, 48, 48, 48, 49, 54, 52, 56, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x1e50 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x1e60 */ 76, 89, 10, 32, 50, 50, 32, 99,116,111,107, 51, 50, 46, 53, 48, +/* 0x1e70 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, 32, 32, 48, +/* 0x1e80 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x1e90 */ 48, 32, 32, 48, 48, 48, 48, 49, 54, 52, 99, 32, 32, 50, 42, 42, +/* 0x1ea0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x1eb0 */ 68, 79, 78, 76, 89, 10, 32, 50, 51, 32, 99,116,111,107, 51, 50, +/* 0x1ec0 */ 46, 53, 49, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, +/* 0x1ed0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x1ee0 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 54, 53, 48, 32, 32, +/* 0x1ef0 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x1f00 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 50, 52, 32, 99,116,111, +/* 0x1f10 */ 107, 51, 50, 46, 49, 48, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x1f20 */ 48, 52, 52, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x1f30 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 54, 53, +/* 0x1f40 */ 52, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x1f50 */ 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x1f60 */ 76, 89, 10, 32, 50, 53, 32, 85, 80, 88, 49, 72, 69, 65, 68, 32, +/* 0x1f70 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 50, 48, 32, 32, 48, +/* 0x1f80 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x1f90 */ 48, 32, 32, 48, 48, 48, 48, 49, 54, 57, 56, 32, 32, 50, 42, 42, +/* 0x1fa0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x1fb0 */ 68, 79, 78, 76, 89, 10, 83, 89, 77, 66, 79, 76, 32, 84, 65, 66, +/* 0x1fc0 */ 76, 69, 58, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, +/* 0x1fd0 */ 32, 32,100, 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 9, 48, 48, +/* 0x1fe0 */ 48, 48, 48, 48, 48, 48, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, +/* 0x1ff0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, +/* 0x2000 */ 32, 76, 90, 77, 65, 95, 69, 76, 70, 48, 48, 9, 48, 48, 48, 48, +/* 0x2010 */ 48, 48, 48, 48, 32, 76, 90, 77, 65, 95, 69, 76, 70, 48, 48, 10, +/* 0x2020 */ 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, +/* 0x2030 */ 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 9, 48, 48, 48, 48, +/* 0x2040 */ 48, 48, 48, 48, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, +/* 0x2050 */ 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, +/* 0x2060 */ 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 9, 48, 48, 48, 48, +/* 0x2070 */ 48, 48, 48, 48, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, +/* 0x2080 */ 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, +/* 0x2090 */ 32, 76, 90, 77, 65, 95, 68, 69, 67, 51, 48, 9, 48, 48, 48, 48, +/* 0x20a0 */ 48, 48, 48, 48, 32, 76, 90, 77, 65, 95, 68, 69, 67, 51, 48, 10, +/* 0x20b0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, +/* 0x20c0 */ 32, 99,116,111,107, 51, 50, 46, 49, 48, 9, 48, 48, 48, 48, 48, +/* 0x20d0 */ 48, 48, 48, 32, 99,116,111,107, 51, 50, 46, 49, 48, 10, 48, 48, +/* 0x20e0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x20f0 */ 73, 78, 85, 90, 86, 71, 65, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x2100 */ 32, 76, 73, 78, 85, 90, 86, 71, 65, 10, 48, 48, 48, 48, 48, 48, +/* 0x2110 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 73, 78, 85, 90, +/* 0x2120 */ 48, 48, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 73, 78, +/* 0x2130 */ 85, 90, 48, 48, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x2140 */ 32, 32, 32, 32,100, 32, 32, 76, 73, 78, 85, 90, 48, 48, 49, 9, +/* 0x2150 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 73, 78, 85, 90, 48, 48, +/* 0x2160 */ 49, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x2170 */ 100, 32, 32, 76, 73, 78, 85, 90, 48, 48, 53, 9, 48, 48, 48, 48, +/* 0x2180 */ 48, 48, 48, 48, 32, 76, 73, 78, 85, 90, 48, 48, 53, 10, 48, 48, +/* 0x2190 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x21a0 */ 73, 78, 85, 90, 48, 49, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x21b0 */ 32, 76, 73, 78, 85, 90, 48, 49, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x21c0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 73, 78, 85, 90, +/* 0x21d0 */ 49, 48, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 73, 78, +/* 0x21e0 */ 85, 90, 49, 48, 49, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x21f0 */ 32, 32, 32, 32,100, 32, 32, 76, 73, 78, 85, 90, 49, 49, 48, 9, +/* 0x2200 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 73, 78, 85, 90, 49, 49, +/* 0x2210 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x2220 */ 100, 32, 32, 76, 73, 78, 85, 90, 49, 50, 48, 9, 48, 48, 48, 48, +/* 0x2230 */ 48, 48, 48, 48, 32, 76, 73, 78, 85, 90, 49, 50, 48, 10, 48, 48, +/* 0x2240 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x2250 */ 73, 78, 85, 90, 49, 51, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x2260 */ 32, 76, 73, 78, 85, 90, 49, 51, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x2270 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 73, 78, 85, 90, +/* 0x2280 */ 49, 52, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 73, 78, +/* 0x2290 */ 85, 90, 49, 52, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x22a0 */ 32, 32, 32, 32,100, 32, 32, 76, 73, 78, 85, 90, 49, 52, 49, 9, +/* 0x22b0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 73, 78, 85, 90, 49, 52, +/* 0x22c0 */ 49, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x22d0 */ 100, 32, 32, 76, 73, 78, 85, 90, 49, 52, 53, 9, 48, 48, 48, 48, +/* 0x22e0 */ 48, 48, 48, 48, 32, 76, 73, 78, 85, 90, 49, 52, 53, 10, 48, 48, +/* 0x22f0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x2300 */ 73, 78, 85, 90, 49, 53, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x2310 */ 32, 76, 73, 78, 85, 90, 49, 53, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x2320 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 90, 67, 65, 76, +/* 0x2330 */ 76, 84, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 90, 67, +/* 0x2340 */ 65, 76, 76, 84, 49, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x2350 */ 32, 32, 32, 32,100, 32, 32, 76, 90, 67, 75, 76, 76, 84, 49, 9, +/* 0x2360 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 90, 67, 75, 76, 76, 84, +/* 0x2370 */ 49, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x2380 */ 100, 32, 32, 76, 90, 73, 77, 65, 71, 69, 48, 9, 48, 48, 48, 48, +/* 0x2390 */ 48, 48, 48, 48, 32, 76, 90, 73, 77, 65, 71, 69, 48, 10, 48, 48, +/* 0x23a0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 99, +/* 0x23b0 */ 116,111,107, 51, 50, 46, 48, 48, 9, 48, 48, 48, 48, 48, 48, 48, +/* 0x23c0 */ 48, 32, 99,116,111,107, 51, 50, 46, 48, 48, 10, 48, 48, 48, 48, +/* 0x23d0 */ 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 99,116,111, +/* 0x23e0 */ 107, 51, 50, 46, 53, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, +/* 0x23f0 */ 99,116,111,107, 51, 50, 46, 53, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x2400 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 99,116,111,107, 51, +/* 0x2410 */ 50, 46, 53, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 99,116, +/* 0x2420 */ 111,107, 51, 50, 46, 53, 49, 10, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x2430 */ 32,108, 32, 32, 32, 32,100, 32, 32, 85, 80, 88, 49, 72, 69, 65, +/* 0x2440 */ 68, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 85, 80, 88, 49, 72, +/* 0x2450 */ 69, 65, 68, 10, 48, 48, 48, 48, 48, 48, 48, 52, 32,103, 32, 32, +/* 0x2460 */ 32, 32, 32, 70, 32, 76, 90, 67, 85, 84, 80, 79, 73, 9, 48, 48, +/* 0x2470 */ 48, 48, 48, 48, 99, 52, 32,117, 99,108, 95,110,114,118, 50, 98, +/* 0x2480 */ 95,100,101, 99,111,109,112,114,101,115,115, 95, 56, 10, 48, 48, +/* 0x2490 */ 48, 48, 48, 48, 99, 56, 32,103, 32, 32, 32, 32, 32, 70, 32, 76, +/* 0x24a0 */ 90, 67, 85, 84, 80, 79, 73, 9, 48, 48, 48, 48, 48, 49, 48, 48, +/* 0x24b0 */ 32,117, 99,108, 95,110,114,118, 50,100, 95,100,101, 99,111,109, +/* 0x24c0 */ 112,114,101,115,115, 95, 56, 10, 48, 48, 48, 48, 48, 49, 99, 56, +/* 0x24d0 */ 32,103, 32, 32, 32, 32, 32, 70, 32, 76, 90, 67, 85, 84, 80, 79, +/* 0x24e0 */ 73, 9, 48, 48, 48, 48, 48, 49, 49, 52, 32,117, 99,108, 95,110, +/* 0x24f0 */ 114,118, 50,101, 95,100,101, 99,111,109,112,114,101,115,115, 95, +/* 0x2500 */ 56, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, +/* 0x2510 */ 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 76, 90, 67, 85, 84, +/* 0x2520 */ 80, 79, 73, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, +/* 0x2530 */ 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x2540 */ 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 49, 52, 32, +/* 0x2550 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x2560 */ 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, +/* 0x2570 */ 48, 52, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x2580 */ 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, +/* 0x2590 */ 48, 48, 48, 48, 48, 53, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x25a0 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, +/* 0x25b0 */ 79, 73, 10, 48, 48, 48, 48, 48, 48, 53, 56, 32, 82, 95, 65, 82, +/* 0x25c0 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x25d0 */ 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, 48, 54, 56, 32, +/* 0x25e0 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x25f0 */ 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, +/* 0x2600 */ 48, 54, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x2610 */ 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, +/* 0x2620 */ 48, 48, 48, 48, 48, 55, 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x2630 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, +/* 0x2640 */ 79, 73, 10, 48, 48, 48, 48, 48, 48, 55, 99, 32, 82, 95, 65, 82, +/* 0x2650 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x2660 */ 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, 48, 56, 99, 32, +/* 0x2670 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x2680 */ 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, +/* 0x2690 */ 48, 57, 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x26a0 */ 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, +/* 0x26b0 */ 48, 48, 48, 48, 48, 57, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x26c0 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, +/* 0x26d0 */ 79, 73, 10, 48, 48, 48, 48, 48, 48, 97, 48, 32, 82, 95, 65, 82, +/* 0x26e0 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x26f0 */ 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, 48, 97, 52, 32, +/* 0x2700 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x2710 */ 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, +/* 0x2720 */ 48, 99, 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x2730 */ 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, +/* 0x2740 */ 48, 48, 48, 48, 48, 99, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x2750 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, +/* 0x2760 */ 79, 73, 10, 48, 48, 48, 48, 48, 48,100, 56, 32, 82, 95, 65, 82, +/* 0x2770 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x2780 */ 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, 49, 48, 99, 32, +/* 0x2790 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x27a0 */ 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, +/* 0x27b0 */ 49, 49, 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x27c0 */ 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, +/* 0x27d0 */ 48, 48, 48, 48, 49, 49, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x27e0 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, +/* 0x27f0 */ 79, 73, 10, 48, 48, 48, 48, 48, 49, 50, 52, 32, 82, 95, 65, 82, +/* 0x2800 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x2810 */ 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, 49, 51, 48, 32, +/* 0x2820 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x2830 */ 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, +/* 0x2840 */ 49, 51, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x2850 */ 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, +/* 0x2860 */ 48, 48, 48, 48, 49, 52, 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x2870 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, +/* 0x2880 */ 79, 73, 10, 48, 48, 48, 48, 48, 49, 52, 99, 32, 82, 95, 65, 82, +/* 0x2890 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x28a0 */ 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, 49, 53, 99, 32, +/* 0x28b0 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x28c0 */ 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, +/* 0x28d0 */ 49, 54, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x28e0 */ 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, +/* 0x28f0 */ 48, 48, 48, 48, 49, 54, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x2900 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, +/* 0x2910 */ 79, 73, 10, 48, 48, 48, 48, 48, 49, 55, 56, 32, 82, 95, 65, 82, +/* 0x2920 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x2930 */ 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, 49, 56, 48, 32, +/* 0x2940 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x2950 */ 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, +/* 0x2960 */ 49, 56, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x2970 */ 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, +/* 0x2980 */ 48, 48, 48, 48, 49, 57, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x2990 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, +/* 0x29a0 */ 79, 73, 10, 48, 48, 48, 48, 48, 49, 57, 99, 32, 82, 95, 65, 82, +/* 0x29b0 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x29c0 */ 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, 49, 99, 48, 32, +/* 0x29d0 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x29e0 */ 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, +/* 0x29f0 */ 49, 99, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x2a00 */ 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, +/* 0x2a10 */ 48, 48, 48, 48, 49,100, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x2a20 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, +/* 0x2a30 */ 79, 73, 10, 48, 48, 48, 48, 48, 50, 48, 99, 32, 82, 95, 65, 82, +/* 0x2a40 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x2a50 */ 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, 50, 49, 48, 32, +/* 0x2a60 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x2a70 */ 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, +/* 0x2a80 */ 50, 49, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x2a90 */ 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, +/* 0x2aa0 */ 48, 48, 48, 48, 50, 50, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x2ab0 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, +/* 0x2ac0 */ 79, 73, 10, 48, 48, 48, 48, 48, 50, 51, 48, 32, 82, 95, 65, 82, +/* 0x2ad0 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x2ae0 */ 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, 50, 51, 99, 32, +/* 0x2af0 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x2b00 */ 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, +/* 0x2b10 */ 50, 52, 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x2b20 */ 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, +/* 0x2b30 */ 48, 48, 48, 48, 50, 52, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x2b40 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, +/* 0x2b50 */ 79, 73, 10, 48, 48, 48, 48, 48, 50, 53, 99, 32, 82, 95, 65, 82, +/* 0x2b60 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x2b70 */ 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, 50, 54, 52, 32, +/* 0x2b80 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x2b90 */ 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, +/* 0x2ba0 */ 50, 54, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x2bb0 */ 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, +/* 0x2bc0 */ 48, 48, 48, 48, 50, 55, 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x2bd0 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, +/* 0x2be0 */ 79, 73, 10, 48, 48, 48, 48, 48, 50, 55, 52, 32, 82, 95, 65, 82, +/* 0x2bf0 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x2c00 */ 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, 50, 56, 48, 32, +/* 0x2c10 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x2c20 */ 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, +/* 0x2c30 */ 50, 56, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x2c40 */ 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, +/* 0x2c50 */ 48, 48, 48, 48, 50, 56, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x2c60 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, +/* 0x2c70 */ 79, 73, 10, 48, 48, 48, 48, 48, 50, 57, 56, 32, 82, 95, 65, 82, +/* 0x2c80 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x2c90 */ 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, 50, 57, 99, 32, +/* 0x2ca0 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x2cb0 */ 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, +/* 0x2cc0 */ 50, 97, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x2cd0 */ 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 48, +/* 0x2ce0 */ 48, 48, 48, 48, 50, 97, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x2cf0 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 67, 85, 84, 80, +/* 0x2d00 */ 79, 73, 10, 48, 48, 48, 48, 48, 50,100, 52, 32, 82, 95, 65, 82, +/* 0x2d10 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x2d20 */ 67, 85, 84, 80, 79, 73, 10, 48, 48, 48, 48, 48, 50,100, 56, 32, +/* 0x2d30 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x2d40 */ 32, 32, 76, 90, 67, 85, 84, 80, 79, 73, 10, 10, 82, 69, 76, 79, +/* 0x2d50 */ 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, +/* 0x2d60 */ 79, 82, 32, 91, 76, 90, 77, 65, 95, 69, 76, 70, 48, 48, 93, 58, +/* 0x2d70 */ 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, +/* 0x2d80 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, +/* 0x2d90 */ 69, 10, 48, 48, 48, 48, 48, 48, 48, 56, 32, 82, 95, 65, 82, 77, +/* 0x2da0 */ 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, +/* 0x2db0 */ 65, 95, 68, 69, 67, 51, 48, 10, 48, 48, 48, 48, 48, 48, 52, 99, +/* 0x2dc0 */ 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, +/* 0x2dd0 */ 32, 32, 32, 76, 90, 77, 65, 95, 69, 76, 70, 48, 48, 10, 48, 48, +/* 0x2de0 */ 48, 48, 48, 48, 56, 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, +/* 0x2df0 */ 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 69, 76, +/* 0x2e00 */ 70, 48, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, +/* 0x2e10 */ 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 76, 90, 77, +/* 0x2e20 */ 65, 95, 68, 69, 67, 49, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, +/* 0x2e30 */ 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x2e40 */ 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, +/* 0x2e50 */ 48, 55, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x2e60 */ 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, +/* 0x2e70 */ 10, 48, 48, 48, 48, 48, 48, 57, 48, 32, 82, 95, 65, 82, 77, 95, +/* 0x2e80 */ 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, +/* 0x2e90 */ 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 48, 98, 56, 32, +/* 0x2ea0 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x2eb0 */ 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, +/* 0x2ec0 */ 48, 48, 48, 99, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, +/* 0x2ed0 */ 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, +/* 0x2ee0 */ 49, 48, 10, 48, 48, 48, 48, 48, 48,102, 52, 32, 82, 95, 65, 82, +/* 0x2ef0 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x2f00 */ 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 49, 48, +/* 0x2f10 */ 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, +/* 0x2f20 */ 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, +/* 0x2f30 */ 48, 48, 48, 48, 49, 48, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x2f40 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, +/* 0x2f50 */ 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 49, 52, 52, 32, 82, 95, +/* 0x2f60 */ 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x2f70 */ 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, +/* 0x2f80 */ 49, 57, 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x2f90 */ 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, +/* 0x2fa0 */ 10, 48, 48, 48, 48, 48, 49, 99, 99, 32, 82, 95, 65, 82, 77, 95, +/* 0x2fb0 */ 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, +/* 0x2fc0 */ 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 49,100, 56, 32, +/* 0x2fd0 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x2fe0 */ 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, +/* 0x2ff0 */ 48, 48, 50, 48, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, +/* 0x3000 */ 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, +/* 0x3010 */ 49, 48, 10, 48, 48, 48, 48, 48, 50, 49, 56, 32, 82, 95, 65, 82, +/* 0x3020 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x3030 */ 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 50, 50, +/* 0x3040 */ 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, +/* 0x3050 */ 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, +/* 0x3060 */ 48, 48, 48, 48, 50, 51, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x3070 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, +/* 0x3080 */ 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 50, 51, 99, 32, 82, 95, +/* 0x3090 */ 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x30a0 */ 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, +/* 0x30b0 */ 50, 52, 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x30c0 */ 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, +/* 0x30d0 */ 10, 48, 48, 48, 48, 48, 50, 52, 99, 32, 82, 95, 65, 82, 77, 95, +/* 0x30e0 */ 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, +/* 0x30f0 */ 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 50, 53, 56, 32, +/* 0x3100 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x3110 */ 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, +/* 0x3120 */ 48, 48, 50, 97, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, +/* 0x3130 */ 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, +/* 0x3140 */ 49, 48, 10, 48, 48, 48, 48, 48, 50, 99, 56, 32, 82, 95, 65, 82, +/* 0x3150 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x3160 */ 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 50,101, +/* 0x3170 */ 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, +/* 0x3180 */ 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, +/* 0x3190 */ 48, 48, 48, 48, 51, 48, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x31a0 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, +/* 0x31b0 */ 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 51, 48, 99, 32, 82, 95, +/* 0x31c0 */ 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x31d0 */ 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, +/* 0x31e0 */ 51, 51, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x31f0 */ 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, +/* 0x3200 */ 10, 48, 48, 48, 48, 48, 51, 56, 56, 32, 82, 95, 65, 82, 77, 95, +/* 0x3210 */ 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, +/* 0x3220 */ 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 51, 97, 48, 32, +/* 0x3230 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x3240 */ 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, +/* 0x3250 */ 48, 48, 51, 97, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, +/* 0x3260 */ 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, +/* 0x3270 */ 49, 48, 10, 48, 48, 48, 48, 48, 51, 99, 99, 32, 82, 95, 65, 82, +/* 0x3280 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x3290 */ 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 51,101, +/* 0x32a0 */ 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, +/* 0x32b0 */ 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, +/* 0x32c0 */ 48, 48, 48, 48, 51,101, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x32d0 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, +/* 0x32e0 */ 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 52, 50, 52, 32, 82, 95, +/* 0x32f0 */ 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x3300 */ 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, +/* 0x3310 */ 52, 51, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x3320 */ 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, +/* 0x3330 */ 10, 48, 48, 48, 48, 48, 52, 54, 99, 32, 82, 95, 65, 82, 77, 95, +/* 0x3340 */ 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, +/* 0x3350 */ 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 52, 56, 52, 32, +/* 0x3360 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x3370 */ 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, +/* 0x3380 */ 48, 48, 52, 56, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, +/* 0x3390 */ 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, +/* 0x33a0 */ 49, 48, 10, 48, 48, 48, 48, 48, 52, 98, 48, 32, 82, 95, 65, 82, +/* 0x33b0 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x33c0 */ 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 52,100, +/* 0x33d0 */ 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, +/* 0x33e0 */ 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, +/* 0x33f0 */ 48, 48, 48, 48, 52,101, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x3400 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, +/* 0x3410 */ 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 52,102, 52, 32, 82, 95, +/* 0x3420 */ 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x3430 */ 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, +/* 0x3440 */ 53, 49, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x3450 */ 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, +/* 0x3460 */ 10, 48, 48, 48, 48, 48, 53, 51, 99, 32, 82, 95, 65, 82, 77, 95, +/* 0x3470 */ 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, +/* 0x3480 */ 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 53, 57, 56, 32, +/* 0x3490 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x34a0 */ 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, +/* 0x34b0 */ 48, 48, 53, 97, 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, +/* 0x34c0 */ 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, +/* 0x34d0 */ 49, 48, 10, 48, 48, 48, 48, 48, 53, 99, 48, 32, 82, 95, 65, 82, +/* 0x34e0 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x34f0 */ 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 53,101, +/* 0x3500 */ 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, +/* 0x3510 */ 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, +/* 0x3520 */ 48, 48, 48, 48, 53,102, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x3530 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, +/* 0x3540 */ 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 54, 48, 52, 32, 82, 95, +/* 0x3550 */ 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x3560 */ 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, +/* 0x3570 */ 54, 50, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x3580 */ 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, +/* 0x3590 */ 10, 48, 48, 48, 48, 48, 54, 52, 56, 32, 82, 95, 65, 82, 77, 95, +/* 0x35a0 */ 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, +/* 0x35b0 */ 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 54, 56, 48, 32, +/* 0x35c0 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x35d0 */ 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, +/* 0x35e0 */ 48, 48, 54, 56, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, +/* 0x35f0 */ 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, +/* 0x3600 */ 49, 48, 10, 48, 48, 48, 48, 48, 54,100, 48, 32, 82, 95, 65, 82, +/* 0x3610 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x3620 */ 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 54,101, +/* 0x3630 */ 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, +/* 0x3640 */ 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, +/* 0x3650 */ 48, 48, 48, 48, 55, 49, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x3660 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, +/* 0x3670 */ 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 55, 50, 56, 32, 82, 95, +/* 0x3680 */ 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x3690 */ 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, +/* 0x36a0 */ 55, 54, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x36b0 */ 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, +/* 0x36c0 */ 10, 48, 48, 48, 48, 48, 55, 55, 99, 32, 82, 95, 65, 82, 77, 95, +/* 0x36d0 */ 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, +/* 0x36e0 */ 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 55, 57, 99, 32, +/* 0x36f0 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x3700 */ 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, +/* 0x3710 */ 48, 48, 55, 98, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, +/* 0x3720 */ 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, +/* 0x3730 */ 49, 48, 10, 48, 48, 48, 48, 48, 55, 99, 52, 32, 82, 95, 65, 82, +/* 0x3740 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x3750 */ 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 55,100, +/* 0x3760 */ 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, +/* 0x3770 */ 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, +/* 0x3780 */ 48, 48, 48, 48, 55,102, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x3790 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, +/* 0x37a0 */ 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 56, 50, 48, 32, 82, 95, +/* 0x37b0 */ 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x37c0 */ 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, +/* 0x37d0 */ 56, 50, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x37e0 */ 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, +/* 0x37f0 */ 10, 48, 48, 48, 48, 48, 56, 55, 99, 32, 82, 95, 65, 82, 77, 95, +/* 0x3800 */ 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, +/* 0x3810 */ 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 56, 56, 56, 32, +/* 0x3820 */ 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, +/* 0x3830 */ 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, +/* 0x3840 */ 48, 48, 56, 97, 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, +/* 0x3850 */ 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, +/* 0x3860 */ 49, 48, 10, 48, 48, 48, 48, 48, 56,101, 56, 32, 82, 95, 65, 82, +/* 0x3870 */ 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, +/* 0x3880 */ 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 56,102, +/* 0x3890 */ 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, +/* 0x38a0 */ 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, +/* 0x38b0 */ 48, 48, 48, 48, 56,102, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, +/* 0x38c0 */ 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, +/* 0x38d0 */ 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 57, 48, 52, 32, 82, 95, +/* 0x38e0 */ 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x38f0 */ 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, +/* 0x3900 */ 57, 50, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, +/* 0x3910 */ 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, +/* 0x3920 */ 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, +/* 0x3930 */ 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 76, 90, 77, 65, 95, 68, +/* 0x3940 */ 69, 67, 50, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, +/* 0x3950 */ 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x3960 */ 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 55, 52, +/* 0x3970 */ 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, +/* 0x3980 */ 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, +/* 0x3990 */ 48, 48, 48, 48, 57, 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, +/* 0x39a0 */ 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, +/* 0x39b0 */ 67, 50, 48, 10, 48, 48, 48, 48, 48, 48, 98, 56, 32, 82, 95, 65, +/* 0x39c0 */ 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, +/* 0x39d0 */ 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x39e0 */ 99, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, +/* 0x39f0 */ 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, +/* 0x3a00 */ 48, 48, 48, 48, 48, 48,102, 52, 32, 82, 95, 65, 82, 77, 95, 80, +/* 0x3a10 */ 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, +/* 0x3a20 */ 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 49, 48, 48, 32, 82, +/* 0x3a30 */ 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, +/* 0x3a40 */ 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, +/* 0x3a50 */ 48, 49, 48, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, +/* 0x3a60 */ 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, +/* 0x3a70 */ 48, 10, 48, 48, 48, 48, 48, 49, 52, 52, 32, 82, 95, 65, 82, 77, +/* 0x3a80 */ 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, +/* 0x3a90 */ 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 49, 57, 48, +/* 0x3aa0 */ 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, +/* 0x3ab0 */ 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, +/* 0x3ac0 */ 48, 48, 48, 49, 99, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, +/* 0x3ad0 */ 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, +/* 0x3ae0 */ 67, 50, 48, 10, 48, 48, 48, 48, 48, 49,100, 56, 32, 82, 95, 65, +/* 0x3af0 */ 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, +/* 0x3b00 */ 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 50, +/* 0x3b10 */ 48, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, +/* 0x3b20 */ 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, +/* 0x3b30 */ 48, 48, 48, 48, 48, 50, 49, 56, 32, 82, 95, 65, 82, 77, 95, 80, +/* 0x3b40 */ 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, +/* 0x3b50 */ 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 50, 50, 48, 32, 82, +/* 0x3b60 */ 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, +/* 0x3b70 */ 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, +/* 0x3b80 */ 48, 50, 51, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, +/* 0x3b90 */ 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, +/* 0x3ba0 */ 48, 10, 48, 48, 48, 48, 48, 50, 51, 99, 32, 82, 95, 65, 82, 77, +/* 0x3bb0 */ 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, +/* 0x3bc0 */ 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 50, 52, 48, +/* 0x3bd0 */ 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, +/* 0x3be0 */ 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, +/* 0x3bf0 */ 48, 48, 48, 50, 52, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, +/* 0x3c00 */ 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, +/* 0x3c10 */ 67, 50, 48, 10, 48, 48, 48, 48, 48, 50, 53, 56, 32, 82, 95, 65, +/* 0x3c20 */ 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, +/* 0x3c30 */ 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 50, +/* 0x3c40 */ 97, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, +/* 0x3c50 */ 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, +/* 0x3c60 */ 48, 48, 48, 48, 48, 50, 99, 56, 32, 82, 95, 65, 82, 77, 95, 80, +/* 0x3c70 */ 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, +/* 0x3c80 */ 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 50,101, 56, 32, 82, +/* 0x3c90 */ 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, +/* 0x3ca0 */ 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, +/* 0x3cb0 */ 48, 51, 48, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, +/* 0x3cc0 */ 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, +/* 0x3cd0 */ 48, 10, 48, 48, 48, 48, 48, 51, 48, 99, 32, 82, 95, 65, 82, 77, +/* 0x3ce0 */ 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, +/* 0x3cf0 */ 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 51, 51, 99, +/* 0x3d00 */ 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, +/* 0x3d10 */ 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, +/* 0x3d20 */ 48, 48, 48, 51, 56, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, +/* 0x3d30 */ 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, +/* 0x3d40 */ 67, 50, 48, 10, 48, 48, 48, 48, 48, 51, 97, 48, 32, 82, 95, 65, +/* 0x3d50 */ 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, +/* 0x3d60 */ 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 51, +/* 0x3d70 */ 97, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, +/* 0x3d80 */ 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, +/* 0x3d90 */ 48, 48, 48, 48, 48, 51, 99, 99, 32, 82, 95, 65, 82, 77, 95, 80, +/* 0x3da0 */ 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, +/* 0x3db0 */ 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 51,101, 48, 32, 82, +/* 0x3dc0 */ 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, +/* 0x3dd0 */ 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, +/* 0x3de0 */ 48, 51,101, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, +/* 0x3df0 */ 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, +/* 0x3e00 */ 48, 10, 48, 48, 48, 48, 48, 52, 50, 52, 32, 82, 95, 65, 82, 77, +/* 0x3e10 */ 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, +/* 0x3e20 */ 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 52, 51, 56, +/* 0x3e30 */ 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, +/* 0x3e40 */ 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, +/* 0x3e50 */ 48, 48, 48, 52, 54, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, +/* 0x3e60 */ 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, +/* 0x3e70 */ 67, 50, 48, 10, 48, 48, 48, 48, 48, 52, 56, 52, 32, 82, 95, 65, +/* 0x3e80 */ 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, +/* 0x3e90 */ 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 52, +/* 0x3ea0 */ 56, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, +/* 0x3eb0 */ 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, +/* 0x3ec0 */ 48, 48, 48, 48, 48, 52, 98, 48, 32, 82, 95, 65, 82, 77, 95, 80, +/* 0x3ed0 */ 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, +/* 0x3ee0 */ 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 52,100, 52, 32, 82, +/* 0x3ef0 */ 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, +/* 0x3f00 */ 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, +/* 0x3f10 */ 48, 52,101, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, +/* 0x3f20 */ 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, +/* 0x3f30 */ 48, 10, 48, 48, 48, 48, 48, 52,102, 52, 32, 82, 95, 65, 82, 77, +/* 0x3f40 */ 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, +/* 0x3f50 */ 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 53, 49, 56, +/* 0x3f60 */ 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, +/* 0x3f70 */ 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, +/* 0x3f80 */ 48, 48, 48, 53, 51, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, +/* 0x3f90 */ 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, +/* 0x3fa0 */ 67, 50, 48, 10, 48, 48, 48, 48, 48, 53, 57, 56, 32, 82, 95, 65, +/* 0x3fb0 */ 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, +/* 0x3fc0 */ 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 53, +/* 0x3fd0 */ 97, 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, +/* 0x3fe0 */ 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, +/* 0x3ff0 */ 48, 48, 48, 48, 48, 53, 99, 48, 32, 82, 95, 65, 82, 77, 95, 80, +/* 0x4000 */ 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, +/* 0x4010 */ 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 53,101, 52, 32, 82, +/* 0x4020 */ 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, +/* 0x4030 */ 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, +/* 0x4040 */ 48, 53,102, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, +/* 0x4050 */ 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, +/* 0x4060 */ 48, 10, 48, 48, 48, 48, 48, 54, 48, 52, 32, 82, 95, 65, 82, 77, +/* 0x4070 */ 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, +/* 0x4080 */ 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 54, 50, 52, +/* 0x4090 */ 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, +/* 0x40a0 */ 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, +/* 0x40b0 */ 48, 48, 48, 54, 52, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, +/* 0x40c0 */ 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, +/* 0x40d0 */ 67, 50, 48, 10, 48, 48, 48, 48, 48, 54, 56, 48, 32, 82, 95, 65, +/* 0x40e0 */ 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, +/* 0x40f0 */ 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 54, +/* 0x4100 */ 56, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, +/* 0x4110 */ 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, +/* 0x4120 */ 48, 48, 48, 48, 48, 54,100, 48, 32, 82, 95, 65, 82, 77, 95, 80, +/* 0x4130 */ 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, +/* 0x4140 */ 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 54,101, 99, 32, 82, +/* 0x4150 */ 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, +/* 0x4160 */ 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, +/* 0x4170 */ 48, 55, 49, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, +/* 0x4180 */ 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, +/* 0x4190 */ 48, 10, 48, 48, 48, 48, 48, 55, 50, 56, 32, 82, 95, 65, 82, 77, +/* 0x41a0 */ 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, +/* 0x41b0 */ 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 55, 54, 99, +/* 0x41c0 */ 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, +/* 0x41d0 */ 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, +/* 0x41e0 */ 48, 48, 48, 55, 55, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, +/* 0x41f0 */ 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, +/* 0x4200 */ 67, 50, 48, 10, 48, 48, 48, 48, 48, 55, 57, 99, 32, 82, 95, 65, +/* 0x4210 */ 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, +/* 0x4220 */ 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 55, +/* 0x4230 */ 98, 56, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, +/* 0x4240 */ 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, +/* 0x4250 */ 48, 48, 48, 48, 48, 55, 99, 52, 32, 82, 95, 65, 82, 77, 95, 80, +/* 0x4260 */ 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, +/* 0x4270 */ 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 55,100, 48, 32, 82, +/* 0x4280 */ 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, +/* 0x4290 */ 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, +/* 0x42a0 */ 48, 55,102, 52, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, +/* 0x42b0 */ 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, +/* 0x42c0 */ 48, 10, 48, 48, 48, 48, 48, 56, 50, 48, 32, 82, 95, 65, 82, 77, +/* 0x42d0 */ 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, +/* 0x42e0 */ 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 56, 50, 99, +/* 0x42f0 */ 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, +/* 0x4300 */ 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, +/* 0x4310 */ 48, 48, 48, 56, 55, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, +/* 0x4320 */ 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, +/* 0x4330 */ 67, 50, 48, 10, 48, 48, 48, 48, 48, 56, 56, 56, 32, 82, 95, 65, +/* 0x4340 */ 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, +/* 0x4350 */ 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 56, +/* 0x4360 */ 97, 48, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, +/* 0x4370 */ 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, +/* 0x4380 */ 48, 48, 48, 48, 48, 56,101, 56, 32, 82, 95, 65, 82, 77, 95, 80, +/* 0x4390 */ 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, +/* 0x43a0 */ 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 56,102, 52, 32, 82, +/* 0x43b0 */ 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, +/* 0x43c0 */ 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, +/* 0x43d0 */ 48, 56,102, 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, +/* 0x43e0 */ 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, +/* 0x43f0 */ 48, 10, 48, 48, 48, 48, 48, 57, 48, 52, 32, 82, 95, 65, 82, 77, +/* 0x4400 */ 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 76, 90, 77, +/* 0x4410 */ 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 57, 50, 56, +/* 0x4420 */ 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, +/* 0x4430 */ 32, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 10, 82, +/* 0x4440 */ 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, +/* 0x4450 */ 83, 32, 70, 79, 82, 32, 91, 99,116,111,107, 51, 50, 46, 49, 48, +/* 0x4460 */ 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, +/* 0x4470 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, +/* 0x4480 */ 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 50, 48, 32, 82, 95, 65, +/* 0x4490 */ 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, 32, 32, 32, 32, 99, +/* 0x44a0 */ 116,111,107, 51, 50, 46, 49, 48, 10, 48, 48, 48, 48, 48, 48, 51, +/* 0x44b0 */ 99, 32, 82, 95, 65, 82, 77, 95, 80, 67, 50, 52, 32, 32, 32, 32, +/* 0x44c0 */ 32, 32, 32, 32, 99,116,111,107, 51, 50, 46, 49, 48, 10 +}; diff --git a/src/stub/tmp/armel-linux.kernel.vmlinuz.bin.dump b/src/stub/tmp/armel-linux.kernel.vmlinuz.bin.dump new file mode 100644 index 00000000..8cbf114a --- /dev/null +++ b/src/stub/tmp/armel-linux.kernel.vmlinuz.bin.dump @@ -0,0 +1,283 @@ +file format elf32-littlearm + +Sections: +Idx Name Size VMA LMA File off Algn Flags + 0 LINUZVGA 00000000 00000000 00000000 00000034 2**0 CONTENTS, READONLY + 1 LINUZ000 00000004 00000000 00000000 00000034 2**0 CONTENTS, READONLY + 2 LINUZ001 00000004 00000000 00000000 00000038 2**0 CONTENTS, READONLY + 3 LINUZ005 00000004 00000000 00000000 0000003c 2**0 CONTENTS, READONLY + 4 LINUZ010 00000004 00000000 00000000 00000040 2**0 CONTENTS, READONLY + 5 LINUZ101 00000004 00000000 00000000 00000044 2**0 CONTENTS, READONLY + 6 LINUZ110 00000004 00000000 00000000 00000048 2**0 CONTENTS, READONLY + 7 LINUZ120 00000004 00000000 00000000 0000004c 2**0 CONTENTS, READONLY + 8 LINUZ130 00000004 00000000 00000000 00000050 2**0 CONTENTS, READONLY + 9 LINUZ140 00000004 00000000 00000000 00000054 2**0 CONTENTS, READONLY + 10 LINUZ141 00000004 00000000 00000000 00000058 2**0 CONTENTS, READONLY + 11 LINUZ145 00000004 00000000 00000000 0000005c 2**0 CONTENTS, READONLY + 12 LINUZ150 00000004 00000000 00000000 00000060 2**0 CONTENTS, READONLY + 13 LZCALLT1 00000004 00000000 00000000 00000064 2**0 CONTENTS, READONLY + 14 LZCKLLT1 00000004 00000000 00000000 00000068 2**0 CONTENTS, READONLY + 15 LZIMAGE0 00000004 00000000 00000000 0000006c 2**0 CONTENTS, READONLY + 16 LZCUTPOI 000002dc 00000000 00000000 00000070 2**0 CONTENTS, RELOC, READONLY + 17 LZMA_ELF00 0000008c 00000000 00000000 0000034c 2**0 CONTENTS, RELOC, READONLY + 18 LZMA_DEC10 00000938 00000000 00000000 000003d8 2**0 CONTENTS, RELOC, READONLY + 19 LZMA_DEC20 00000938 00000000 00000000 00000d10 2**0 CONTENTS, RELOC, READONLY + 20 LZMA_DEC30 00000000 00000000 00000000 00001648 2**0 CONTENTS, READONLY + 21 ctok32.00 00000004 00000000 00000000 00001648 2**0 CONTENTS, READONLY + 22 ctok32.50 00000004 00000000 00000000 0000164c 2**0 CONTENTS, READONLY + 23 ctok32.51 00000004 00000000 00000000 00001650 2**0 CONTENTS, READONLY + 24 ctok32.10 00000044 00000000 00000000 00001654 2**0 CONTENTS, RELOC, READONLY + 25 UPX1HEAD 00000020 00000000 00000000 00001698 2**0 CONTENTS, READONLY +SYMBOL TABLE: +00000000 l d LZCUTPOI 00000000 LZCUTPOI +00000000 l d LZMA_ELF00 00000000 LZMA_ELF00 +00000000 l d LZMA_DEC10 00000000 LZMA_DEC10 +00000000 l d LZMA_DEC20 00000000 LZMA_DEC20 +00000000 l d LZMA_DEC30 00000000 LZMA_DEC30 +00000000 l d ctok32.10 00000000 ctok32.10 +00000000 l d LINUZVGA 00000000 LINUZVGA +00000000 l d LINUZ000 00000000 LINUZ000 +00000000 l d LINUZ001 00000000 LINUZ001 +00000000 l d LINUZ005 00000000 LINUZ005 +00000000 l d LINUZ010 00000000 LINUZ010 +00000000 l d LINUZ101 00000000 LINUZ101 +00000000 l d LINUZ110 00000000 LINUZ110 +00000000 l d LINUZ120 00000000 LINUZ120 +00000000 l d LINUZ130 00000000 LINUZ130 +00000000 l d LINUZ140 00000000 LINUZ140 +00000000 l d LINUZ141 00000000 LINUZ141 +00000000 l d LINUZ145 00000000 LINUZ145 +00000000 l d LINUZ150 00000000 LINUZ150 +00000000 l d LZCALLT1 00000000 LZCALLT1 +00000000 l d LZCKLLT1 00000000 LZCKLLT1 +00000000 l d LZIMAGE0 00000000 LZIMAGE0 +00000000 l d ctok32.00 00000000 ctok32.00 +00000000 l d ctok32.50 00000000 ctok32.50 +00000000 l d ctok32.51 00000000 ctok32.51 +00000000 l d UPX1HEAD 00000000 UPX1HEAD +00000004 g F LZCUTPOI 000000c4 ucl_nrv2b_decompress_8 +000000c8 g F LZCUTPOI 00000100 ucl_nrv2d_decompress_8 +000001c8 g F LZCUTPOI 00000114 ucl_nrv2e_decompress_8 + +RELOCATION RECORDS FOR [LZCUTPOI]: +OFFSET TYPE VALUE +00000014 R_ARM_PC24 LZCUTPOI +0000004c R_ARM_PC24 LZCUTPOI +00000054 R_ARM_PC24 LZCUTPOI +00000058 R_ARM_PC24 LZCUTPOI +00000068 R_ARM_PC24 LZCUTPOI +0000006c R_ARM_PC24 LZCUTPOI +00000070 R_ARM_PC24 LZCUTPOI +0000007c R_ARM_PC24 LZCUTPOI +0000008c R_ARM_PC24 LZCUTPOI +00000090 R_ARM_PC24 LZCUTPOI +00000098 R_ARM_PC24 LZCUTPOI +000000a0 R_ARM_PC24 LZCUTPOI +000000a4 R_ARM_PC24 LZCUTPOI +000000c0 R_ARM_PC24 LZCUTPOI +000000c4 R_ARM_PC24 LZCUTPOI +000000d8 R_ARM_PC24 LZCUTPOI +0000010c R_ARM_PC24 LZCUTPOI +00000110 R_ARM_PC24 LZCUTPOI +00000118 R_ARM_PC24 LZCUTPOI +00000124 R_ARM_PC24 LZCUTPOI +00000130 R_ARM_PC24 LZCUTPOI +0000013c R_ARM_PC24 LZCUTPOI +00000140 R_ARM_PC24 LZCUTPOI +0000014c R_ARM_PC24 LZCUTPOI +0000015c R_ARM_PC24 LZCUTPOI +00000164 R_ARM_PC24 LZCUTPOI +0000016c R_ARM_PC24 LZCUTPOI +00000178 R_ARM_PC24 LZCUTPOI +00000180 R_ARM_PC24 LZCUTPOI +0000018c R_ARM_PC24 LZCUTPOI +00000198 R_ARM_PC24 LZCUTPOI +0000019c R_ARM_PC24 LZCUTPOI +000001c0 R_ARM_PC24 LZCUTPOI +000001c4 R_ARM_PC24 LZCUTPOI +000001d8 R_ARM_PC24 LZCUTPOI +0000020c R_ARM_PC24 LZCUTPOI +00000210 R_ARM_PC24 LZCUTPOI +00000218 R_ARM_PC24 LZCUTPOI +00000224 R_ARM_PC24 LZCUTPOI +00000230 R_ARM_PC24 LZCUTPOI +0000023c R_ARM_PC24 LZCUTPOI +00000240 R_ARM_PC24 LZCUTPOI +0000024c R_ARM_PC24 LZCUTPOI +0000025c R_ARM_PC24 LZCUTPOI +00000264 R_ARM_PC24 LZCUTPOI +00000268 R_ARM_PC24 LZCUTPOI +00000270 R_ARM_PC24 LZCUTPOI +00000274 R_ARM_PC24 LZCUTPOI +00000280 R_ARM_PC24 LZCUTPOI +00000284 R_ARM_PC24 LZCUTPOI +0000028c R_ARM_PC24 LZCUTPOI +00000298 R_ARM_PC24 LZCUTPOI +0000029c R_ARM_PC24 LZCUTPOI +000002a4 R_ARM_PC24 LZCUTPOI +000002ac R_ARM_PC24 LZCUTPOI +000002d4 R_ARM_PC24 LZCUTPOI +000002d8 R_ARM_PC24 LZCUTPOI + +RELOCATION RECORDS FOR [LZMA_ELF00]: +OFFSET TYPE VALUE +00000008 R_ARM_PC24 LZMA_DEC30 +0000004c R_ARM_PC24 LZMA_ELF00 +00000080 R_ARM_PC24 LZMA_ELF00 + +RELOCATION RECORDS FOR [LZMA_DEC10]: +OFFSET TYPE VALUE +00000074 R_ARM_PC24 LZMA_DEC10 +00000090 R_ARM_PC24 LZMA_DEC10 +000000b8 R_ARM_PC24 LZMA_DEC10 +000000cc R_ARM_PC24 LZMA_DEC10 +000000f4 R_ARM_PC24 LZMA_DEC10 +00000100 R_ARM_PC24 LZMA_DEC10 +00000108 R_ARM_PC24 LZMA_DEC10 +00000144 R_ARM_PC24 LZMA_DEC10 +00000190 R_ARM_PC24 LZMA_DEC10 +000001cc R_ARM_PC24 LZMA_DEC10 +000001d8 R_ARM_PC24 LZMA_DEC10 +00000204 R_ARM_PC24 LZMA_DEC10 +00000218 R_ARM_PC24 LZMA_DEC10 +00000220 R_ARM_PC24 LZMA_DEC10 +00000234 R_ARM_PC24 LZMA_DEC10 +0000023c R_ARM_PC24 LZMA_DEC10 +00000240 R_ARM_PC24 LZMA_DEC10 +0000024c R_ARM_PC24 LZMA_DEC10 +00000258 R_ARM_PC24 LZMA_DEC10 +000002a4 R_ARM_PC24 LZMA_DEC10 +000002c8 R_ARM_PC24 LZMA_DEC10 +000002e8 R_ARM_PC24 LZMA_DEC10 +00000304 R_ARM_PC24 LZMA_DEC10 +0000030c R_ARM_PC24 LZMA_DEC10 +0000033c R_ARM_PC24 LZMA_DEC10 +00000388 R_ARM_PC24 LZMA_DEC10 +000003a0 R_ARM_PC24 LZMA_DEC10 +000003a8 R_ARM_PC24 LZMA_DEC10 +000003cc R_ARM_PC24 LZMA_DEC10 +000003e0 R_ARM_PC24 LZMA_DEC10 +000003e8 R_ARM_PC24 LZMA_DEC10 +00000424 R_ARM_PC24 LZMA_DEC10 +00000438 R_ARM_PC24 LZMA_DEC10 +0000046c R_ARM_PC24 LZMA_DEC10 +00000484 R_ARM_PC24 LZMA_DEC10 +0000048c R_ARM_PC24 LZMA_DEC10 +000004b0 R_ARM_PC24 LZMA_DEC10 +000004d4 R_ARM_PC24 LZMA_DEC10 +000004ec R_ARM_PC24 LZMA_DEC10 +000004f4 R_ARM_PC24 LZMA_DEC10 +00000518 R_ARM_PC24 LZMA_DEC10 +0000053c R_ARM_PC24 LZMA_DEC10 +00000598 R_ARM_PC24 LZMA_DEC10 +000005a0 R_ARM_PC24 LZMA_DEC10 +000005c0 R_ARM_PC24 LZMA_DEC10 +000005e4 R_ARM_PC24 LZMA_DEC10 +000005fc R_ARM_PC24 LZMA_DEC10 +00000604 R_ARM_PC24 LZMA_DEC10 +00000624 R_ARM_PC24 LZMA_DEC10 +00000648 R_ARM_PC24 LZMA_DEC10 +00000680 R_ARM_PC24 LZMA_DEC10 +0000068c R_ARM_PC24 LZMA_DEC10 +000006d0 R_ARM_PC24 LZMA_DEC10 +000006ec R_ARM_PC24 LZMA_DEC10 +0000071c R_ARM_PC24 LZMA_DEC10 +00000728 R_ARM_PC24 LZMA_DEC10 +0000076c R_ARM_PC24 LZMA_DEC10 +0000077c R_ARM_PC24 LZMA_DEC10 +0000079c R_ARM_PC24 LZMA_DEC10 +000007b8 R_ARM_PC24 LZMA_DEC10 +000007c4 R_ARM_PC24 LZMA_DEC10 +000007d0 R_ARM_PC24 LZMA_DEC10 +000007f4 R_ARM_PC24 LZMA_DEC10 +00000820 R_ARM_PC24 LZMA_DEC10 +0000082c R_ARM_PC24 LZMA_DEC10 +0000087c R_ARM_PC24 LZMA_DEC10 +00000888 R_ARM_PC24 LZMA_DEC10 +000008a0 R_ARM_PC24 LZMA_DEC10 +000008e8 R_ARM_PC24 LZMA_DEC10 +000008f4 R_ARM_PC24 LZMA_DEC10 +000008fc R_ARM_PC24 LZMA_DEC10 +00000904 R_ARM_PC24 LZMA_DEC10 +00000928 R_ARM_PC24 LZMA_DEC10 + +RELOCATION RECORDS FOR [LZMA_DEC20]: +OFFSET TYPE VALUE +00000074 R_ARM_PC24 LZMA_DEC20 +00000090 R_ARM_PC24 LZMA_DEC20 +000000b8 R_ARM_PC24 LZMA_DEC20 +000000cc R_ARM_PC24 LZMA_DEC20 +000000f4 R_ARM_PC24 LZMA_DEC20 +00000100 R_ARM_PC24 LZMA_DEC20 +00000108 R_ARM_PC24 LZMA_DEC20 +00000144 R_ARM_PC24 LZMA_DEC20 +00000190 R_ARM_PC24 LZMA_DEC20 +000001cc R_ARM_PC24 LZMA_DEC20 +000001d8 R_ARM_PC24 LZMA_DEC20 +00000204 R_ARM_PC24 LZMA_DEC20 +00000218 R_ARM_PC24 LZMA_DEC20 +00000220 R_ARM_PC24 LZMA_DEC20 +00000234 R_ARM_PC24 LZMA_DEC20 +0000023c R_ARM_PC24 LZMA_DEC20 +00000240 R_ARM_PC24 LZMA_DEC20 +0000024c R_ARM_PC24 LZMA_DEC20 +00000258 R_ARM_PC24 LZMA_DEC20 +000002a4 R_ARM_PC24 LZMA_DEC20 +000002c8 R_ARM_PC24 LZMA_DEC20 +000002e8 R_ARM_PC24 LZMA_DEC20 +00000304 R_ARM_PC24 LZMA_DEC20 +0000030c R_ARM_PC24 LZMA_DEC20 +0000033c R_ARM_PC24 LZMA_DEC20 +00000388 R_ARM_PC24 LZMA_DEC20 +000003a0 R_ARM_PC24 LZMA_DEC20 +000003a8 R_ARM_PC24 LZMA_DEC20 +000003cc R_ARM_PC24 LZMA_DEC20 +000003e0 R_ARM_PC24 LZMA_DEC20 +000003e8 R_ARM_PC24 LZMA_DEC20 +00000424 R_ARM_PC24 LZMA_DEC20 +00000438 R_ARM_PC24 LZMA_DEC20 +0000046c R_ARM_PC24 LZMA_DEC20 +00000484 R_ARM_PC24 LZMA_DEC20 +0000048c R_ARM_PC24 LZMA_DEC20 +000004b0 R_ARM_PC24 LZMA_DEC20 +000004d4 R_ARM_PC24 LZMA_DEC20 +000004ec R_ARM_PC24 LZMA_DEC20 +000004f4 R_ARM_PC24 LZMA_DEC20 +00000518 R_ARM_PC24 LZMA_DEC20 +0000053c R_ARM_PC24 LZMA_DEC20 +00000598 R_ARM_PC24 LZMA_DEC20 +000005a0 R_ARM_PC24 LZMA_DEC20 +000005c0 R_ARM_PC24 LZMA_DEC20 +000005e4 R_ARM_PC24 LZMA_DEC20 +000005fc R_ARM_PC24 LZMA_DEC20 +00000604 R_ARM_PC24 LZMA_DEC20 +00000624 R_ARM_PC24 LZMA_DEC20 +00000648 R_ARM_PC24 LZMA_DEC20 +00000680 R_ARM_PC24 LZMA_DEC20 +0000068c R_ARM_PC24 LZMA_DEC20 +000006d0 R_ARM_PC24 LZMA_DEC20 +000006ec R_ARM_PC24 LZMA_DEC20 +0000071c R_ARM_PC24 LZMA_DEC20 +00000728 R_ARM_PC24 LZMA_DEC20 +0000076c R_ARM_PC24 LZMA_DEC20 +0000077c R_ARM_PC24 LZMA_DEC20 +0000079c R_ARM_PC24 LZMA_DEC20 +000007b8 R_ARM_PC24 LZMA_DEC20 +000007c4 R_ARM_PC24 LZMA_DEC20 +000007d0 R_ARM_PC24 LZMA_DEC20 +000007f4 R_ARM_PC24 LZMA_DEC20 +00000820 R_ARM_PC24 LZMA_DEC20 +0000082c R_ARM_PC24 LZMA_DEC20 +0000087c R_ARM_PC24 LZMA_DEC20 +00000888 R_ARM_PC24 LZMA_DEC20 +000008a0 R_ARM_PC24 LZMA_DEC20 +000008e8 R_ARM_PC24 LZMA_DEC20 +000008f4 R_ARM_PC24 LZMA_DEC20 +000008fc R_ARM_PC24 LZMA_DEC20 +00000904 R_ARM_PC24 LZMA_DEC20 +00000928 R_ARM_PC24 LZMA_DEC20 + +RELOCATION RECORDS FOR [ctok32.10]: +OFFSET TYPE VALUE +00000020 R_ARM_PC24 ctok32.10 +0000003c R_ARM_PC24 ctok32.10