From 366defd12be2eb202aa24e420675ae85aae1d5d0 Mon Sep 17 00:00:00 2001 From: Apple Date: Tue, 16 Jul 2002 22:10:13 +0000 Subject: [PATCH] BootX-45.tar.gz --- bootx.tproj/Makefile.preamble | 6 - bootx.tproj/ci.subproj/ci.c | 595 +-- bootx.tproj/ci.subproj/ci_io.c | 6 +- bootx.tproj/ci.subproj/sl_words.c | 101 +- bootx.tproj/fs.subproj/ext2fs.c | 110 +- bootx.tproj/fs.subproj/fs.c | 23 - bootx.tproj/fs.subproj/hfs.c | 152 +- bootx.tproj/fs.subproj/net.c | 6 +- bootx.tproj/fs.subproj/ufs.c | 107 +- bootx.tproj/fs.subproj/ufs_byteorder.h | 20 +- bootx.tproj/include.subproj/ci.h | 279 +- bootx.tproj/include.subproj/fs.h | 1 - bootx.tproj/include.subproj/libclite.h | 6 +- bootx.tproj/include.subproj/sl.h | 49 +- bootx.tproj/include.subproj/sl_words.h | 11 +- bootx.tproj/libclite.subproj/mem.c | 7 +- bootx.tproj/libclite.subproj/prf.c | 4 +- bootx.tproj/libclite.subproj/printf.c | 4 +- bootx.tproj/libclite.subproj/sprintf.c | 6 +- bootx.tproj/sl.subproj/GetSymbolFromPEF.h | 216 - bootx.tproj/sl.subproj/Makefile | 6 +- bootx.tproj/sl.subproj/PB.project | 10 +- bootx.tproj/sl.subproj/PEFSupport.c | 453 -- bootx.tproj/sl.subproj/appleboot.h | 165 + bootx.tproj/sl.subproj/bad_system.h | 95 - bootx.tproj/sl.subproj/clut.h | 134 +- bootx.tproj/sl.subproj/display.c | 580 +- bootx.tproj/sl.subproj/drivers.c | 51 +- bootx.tproj/sl.subproj/failedboot.h | 165 + bootx.tproj/sl.subproj/happy_foot.h | 46 - bootx.tproj/sl.subproj/happy_mac.h | 69 - bootx.tproj/sl.subproj/images.h | 5920 --------------------- bootx.tproj/sl.subproj/main.c | 190 +- bootx.tproj/sl.subproj/netboot.h | 613 +++ macho-to-xcoff.tproj/macho-to-xcoff.c | 24 +- 35 files changed, 1693 insertions(+), 8537 deletions(-) delete mode 100644 bootx.tproj/sl.subproj/GetSymbolFromPEF.h delete mode 100644 bootx.tproj/sl.subproj/PEFSupport.c create mode 100644 bootx.tproj/sl.subproj/appleboot.h delete mode 100644 bootx.tproj/sl.subproj/bad_system.h create mode 100644 bootx.tproj/sl.subproj/failedboot.h delete mode 100644 bootx.tproj/sl.subproj/happy_foot.h delete mode 100644 bootx.tproj/sl.subproj/happy_mac.h delete mode 100644 bootx.tproj/sl.subproj/images.h create mode 100644 bootx.tproj/sl.subproj/netboot.h diff --git a/bootx.tproj/Makefile.preamble b/bootx.tproj/Makefile.preamble index ca750ab..adaff0b 100644 --- a/bootx.tproj/Makefile.preamble +++ b/bootx.tproj/Makefile.preamble @@ -40,12 +40,6 @@ # OTHER_YFLAGS, LOCAL_YFLAGS: additional flags passed to yacc # OTHER_LFLAGS, LOCAL_LFLAGS: additional flags passed to lex -ifeq "teflon" "$(RC_OS)" - OTHER_CFLAGS=-DkMacOSXServer=1 -else - OTHER_CFLAGS=-DkMacOSXServer=0 -endif - # These variables provide hooks enabling you to add behavior at almost every # stage of the make: # diff --git a/bootx.tproj/ci.subproj/ci.c b/bootx.tproj/ci.subproj/ci.c index 564260d..596e571 100644 --- a/bootx.tproj/ci.subproj/ci.c +++ b/bootx.tproj/ci.subproj/ci.c @@ -22,7 +22,7 @@ /* * ci.c - Functions for accessing Open Firmware's Client Interface * - * Copyright (c) 1998-2000 Apple Computer, Inc. + * Copyright (c) 1998-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ @@ -202,8 +202,8 @@ CICell PackageToPath(CICell phandle, char *buf, long buflen) length = ciArgs.args.packageToPath.length; } else { - ret = CallMethod_3_1(SLWordsIH, "slw_pwd", phandle, - (CICell)buf, buflen, &length); + ret = CallMethod(3, 1, SLWordsIH, "slw_pwd", phandle, + (CICell)buf, buflen, &length); if (ret != 0) return kCIError; buf[length] = '\0'; @@ -425,224 +425,39 @@ CICell Seek(CICell ihandle, long long position) // Other Device Method Invocation -// Lots of CallMethod_n_m functions... -// n is number of args, m is number of returns. - -long CallMethod_0_0(CICell iHandle, char *method) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "call-method"; - ciArgs.nArgs = 2; - ciArgs.nReturns = 1; - ciArgs.args.callMethod_0_0.iHandle = iHandle; - ciArgs.args.callMethod_0_0.method = method; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.callMethod_0_0.catchResult != 0) return kCICatch; - - return kCINoError; -} - -long CallMethod_0_1(CICell iHandle, char *method, CICell *ret1) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "call-method"; - ciArgs.nArgs = 2; - ciArgs.nReturns = 2; - ciArgs.args.callMethod_0_1.iHandle = iHandle; - ciArgs.args.callMethod_0_1.method = method; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.callMethod_0_1.catchResult != 0) return kCICatch; - - *ret1 = ciArgs.args.callMethod_0_1.return1; - - return kCINoError; -} - -long CallMethod_1_0(CICell iHandle, char *method, CICell arg1) +// Call the specified method on the given iHandle with the listed arguments. +long CallMethod(long args, long rets, CICell iHandle, const char *method, ...) { - CIArgs ciArgs; - long ret; - - ciArgs.service = "call-method"; - ciArgs.nArgs = 3; - ciArgs.nReturns = 1; - ciArgs.args.callMethod_1_0.iHandle = iHandle; - ciArgs.args.callMethod_1_0.method = method; - ciArgs.args.callMethod_1_0.arg1 = arg1; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.callMethod_1_0.catchResult != 0) return kCICatch; + va_list argList; + CIArgs ciArgs; + long ret, cnt, error = kCINoError; - return kCINoError; -} - -long CallMethod_1_1(CICell iHandle, char *method, CICell arg1, CICell *ret1) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "call-method"; - ciArgs.nArgs = 3; - ciArgs.nReturns = 2; - ciArgs.args.callMethod_1_1.iHandle = iHandle; - ciArgs.args.callMethod_1_1.method = method; - ciArgs.args.callMethod_1_1.arg1 = arg1; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.callMethod_1_0.catchResult != 0) return kCICatch; - - *ret1 = ciArgs.args.callMethod_1_1.return1; - - return kCINoError; -} - -long CallMethod_2_0(CICell iHandle, char *method, - CICell arg1, CICell arg2) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "call-method"; - ciArgs.nArgs = 4; - ciArgs.nReturns = 1; - ciArgs.args.callMethod_2_0.iHandle = iHandle; - ciArgs.args.callMethod_2_0.method = method; - ciArgs.args.callMethod_2_0.arg1 = arg1; - ciArgs.args.callMethod_2_0.arg2 = arg2; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.callMethod_2_0.catchResult != 0) return kCICatch; - - return kCINoError; -} - -long CallMethod_3_0(CICell iHandle, char *method, - CICell arg1, CICell arg2, CICell arg3) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "call-method"; - ciArgs.nArgs = 5; - ciArgs.nReturns = 1; - ciArgs.args.callMethod_3_0.iHandle = iHandle; - ciArgs.args.callMethod_3_0.method = method; - ciArgs.args.callMethod_3_0.arg1 = arg1; - ciArgs.args.callMethod_3_0.arg2 = arg2; - ciArgs.args.callMethod_3_0.arg3 = arg3; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.callMethod_3_0.catchResult != 0) return kCICatch; - - return kCINoError; -} - -long CallMethod_3_1(CICell iHandle, char *method, - CICell arg1, CICell arg2, CICell arg3, CICell *ret1) -{ - CIArgs ciArgs; - long ret; + va_start(argList, method); ciArgs.service = "call-method"; - ciArgs.nArgs = 5; - ciArgs.nReturns = 2; - ciArgs.args.callMethod_3_1.iHandle = iHandle; - ciArgs.args.callMethod_3_1.method = method; - ciArgs.args.callMethod_3_1.arg1 = arg1; - ciArgs.args.callMethod_3_1.arg2 = arg2; - ciArgs.args.callMethod_3_1.arg3 = arg3; + ciArgs.nArgs = args + 2; + ciArgs.nReturns = rets + 1; + ciArgs.args.callMethod.iHandle = iHandle; + ciArgs.args.callMethod.method = method; - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.callMethod_3_1.catchResult != 0) return kCICatch; - - *ret1 = ciArgs.args.callMethod_3_1.return1; - - return kCINoError; -} - -long CallMethod_4_0(CICell iHandle, char *method, - CICell arg1, CICell arg2, CICell arg3, CICell arg4) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "call-method"; - ciArgs.nArgs = 6; - ciArgs.nReturns = 1; - ciArgs.args.callMethod_4_0.iHandle = iHandle; - ciArgs.args.callMethod_4_0.method = method; - ciArgs.args.callMethod_4_0.arg1 = arg1; - ciArgs.args.callMethod_4_0.arg2 = arg2; - ciArgs.args.callMethod_4_0.arg3 = arg3; - ciArgs.args.callMethod_4_0.arg4 = arg4; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.callMethod_4_0.catchResult != 0) return kCICatch; - - return kCINoError; -} - -long CallMethod_5_0(CICell iHandle, char *method, CICell arg1, CICell arg2, - CICell arg3, CICell arg4, CICell arg5) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "call-method"; - ciArgs.nArgs = 7; - ciArgs.nReturns = 1; - ciArgs.args.callMethod_5_0.iHandle = iHandle; - ciArgs.args.callMethod_5_0.method = method; - ciArgs.args.callMethod_5_0.arg1 = arg1; - ciArgs.args.callMethod_5_0.arg2 = arg2; - ciArgs.args.callMethod_5_0.arg3 = arg3; - ciArgs.args.callMethod_5_0.arg4 = arg4; - ciArgs.args.callMethod_5_0.arg5 = arg5; + for (cnt = 0; cnt < args; cnt++) { + ciArgs.args.callMethod.cells[args - cnt - 1] = va_arg(argList, CICell); + } ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.callMethod_5_0.catchResult != 0) return kCICatch; + if (ret != 0) error = kCIError; + else if (ciArgs.args.callMethod.cells[args] != 0) error = kCICatch; - return kCINoError; -} - -long CallMethod_6_0(CICell iHandle, char *method, CICell arg1, CICell arg2, - CICell arg3, CICell arg4, CICell arg5, CICell arg6) -{ - CIArgs ciArgs; - long ret; + if (error == kCINoError) { + for (cnt = 0; cnt < rets; cnt++) { + *(va_arg(argList, CICell *)) = + ciArgs.args.callMethod.cells[args + rets - cnt]; + } + } - ciArgs.service = "call-method"; - ciArgs.nArgs = 8; - ciArgs.nReturns = 1; - ciArgs.args.callMethod_6_0.iHandle = iHandle; - ciArgs.args.callMethod_6_0.method = method; - ciArgs.args.callMethod_6_0.arg1 = arg1; - ciArgs.args.callMethod_6_0.arg2 = arg2; - ciArgs.args.callMethod_6_0.arg3 = arg3; - ciArgs.args.callMethod_6_0.arg4 = arg4; - ciArgs.args.callMethod_6_0.arg5 = arg5; - ciArgs.args.callMethod_6_0.arg6 = arg6; + va_end(argList); - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.callMethod_6_0.catchResult != 0) return kCICatch; - - return kCINoError; + return error; } @@ -674,15 +489,15 @@ CICell Claim(CICell virt, CICell size, CICell align) if ((gMMUIH == 0) || (gMMUIH == 0)) return kCIError; // Get the physical memory - ret = CallMethod_3_1(gMemoryIH, "claim", virt, size, 0, &baseaddr); + ret = CallMethod(3, 1, gMemoryIH, "claim", virt, size, 0, &baseaddr); if ((ret != kCINoError) || (virt != baseaddr)) return kCIError; // Get the logical memory - ret = CallMethod_3_1(gMMUIH, "claim", virt, size, 0, &baseaddr); + ret = CallMethod(3, 1, gMMUIH, "claim", virt, size, 0, &baseaddr); if ((ret != kCINoError) || (virt != baseaddr)) return kCIError; // Map them together. - ret = CallMethod_4_0(gMMUIH, "map", virt, virt, size, 0); + ret = CallMethod(4, 0, gMMUIH, "map", virt, virt, size, 0); if (ret != kCINoError) return kCIError; } @@ -761,344 +576,36 @@ void Quiesce(void) // User Interface -// Lots of Interpret_n_m fundtions... -// n is number of args, m is number of returns. - -long Interpret_0_0(char *forthString) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "interpret"; - ciArgs.nArgs = 1; - ciArgs.nReturns = 1; - ciArgs.args.interpret_0_0.forth = forthString; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_0_0.catchResult != 0) return kCICatch; - - return kCINoError; -} - -long Interpret_1_0(char *forthString, CICell arg1) +// Interpret the given forth string with the listed arguments. +long Interpret(long args, long rets, const char *forthString, ...) { - CIArgs ciArgs; - long ret; - - ciArgs.service = "interpret"; - ciArgs.nArgs = 2; - ciArgs.nReturns = 1; - ciArgs.args.interpret_1_0.forth = forthString; - ciArgs.args.interpret_1_0.arg1 = arg1; + va_list argList; + CIArgs ciArgs; + long ret, cnt, error = kCINoError; - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_1_0.catchResult != 0) return kCICatch; - - return kCINoError; -} - -long Interpret_1_1(char *forthString, CICell arg1, CICell *ret1) -{ - CIArgs ciArgs; - long ret; + va_start(argList, forthString); ciArgs.service = "interpret"; - ciArgs.nArgs = 2; - ciArgs.nReturns = 2; - ciArgs.args.interpret_1_1.forth = forthString; - ciArgs.args.interpret_1_1.arg1 = arg1; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_1_1.catchResult != 0) return kCICatch; + ciArgs.nArgs = args + 1; + ciArgs.nReturns = rets + 1; + ciArgs.args.interpret.forth = forthString; - *ret1 = ciArgs.args.interpret_1_1.return1; - - return kCINoError; -} - -long Interpret_2_1(char *forthString, CICell arg1, CICell arg2, CICell *ret1) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "interpret"; - ciArgs.nArgs = 3; - ciArgs.nReturns = 2; - ciArgs.args.interpret_2_1.forth = forthString; - ciArgs.args.interpret_2_1.arg1 = arg1; - ciArgs.args.interpret_2_1.arg2 = arg2; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_2_1.catchResult != 0) return kCICatch; - - *ret1 = ciArgs.args.interpret_2_1.return1; - - return kCINoError; -} - -long Interpret_3_1(char *forthString, CICell arg1, CICell arg2, CICell arg3, - CICell *ret1) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "interpret"; - ciArgs.nArgs = 4; - ciArgs.nReturns = 2; - ciArgs.args.interpret_3_1.forth = forthString; - ciArgs.args.interpret_3_1.arg1 = arg1; - ciArgs.args.interpret_3_1.arg2 = arg2; - ciArgs.args.interpret_3_1.arg3 = arg3; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_3_1.catchResult != 0) return kCICatch; - - *ret1 = ciArgs.args.interpret_3_1.return1; - - return kCINoError; -} - -long Interpret_3_2(char *forthString, CICell arg1, CICell arg2, CICell arg3, - CICell *ret1, CICell *ret2) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "interpret"; - ciArgs.nArgs = 4; - ciArgs.nReturns = 3; - ciArgs.args.interpret_3_2.forth = forthString; - ciArgs.args.interpret_3_2.arg1 = arg1; - ciArgs.args.interpret_3_2.arg2 = arg2; - ciArgs.args.interpret_3_2.arg3 = arg3; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_3_2.catchResult != 0) return kCICatch; - - *ret1 = ciArgs.args.interpret_3_2.return1; - *ret2 = ciArgs.args.interpret_3_2.return2; - - return kCINoError; -} - -long Interpret_4_0(char *forthString, CICell arg1, CICell arg2, CICell arg3, - CICell arg4) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "interpret"; - ciArgs.nArgs = 5; - ciArgs.nReturns = 1; - ciArgs.args.interpret_4_0.forth = forthString; - ciArgs.args.interpret_4_0.arg1 = arg1; - ciArgs.args.interpret_4_0.arg2 = arg2; - ciArgs.args.interpret_4_0.arg3 = arg3; - ciArgs.args.interpret_4_0.arg4 = arg4; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_4_0.catchResult != 0) return kCICatch; - - return kCINoError; -} - -long Interpret_0_1(char *forthString, CICell *ret1) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "interpret"; - ciArgs.nArgs = 1; - ciArgs.nReturns = 2; - ciArgs.args.interpret_0_1.forth = forthString; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_0_1.catchResult != 0) return kCICatch; - - *ret1 = ciArgs.args.interpret_0_1.return1; - - return kCINoError; -} - -long Interpret_0_2(char *forthString, CICell *ret1, CICell *ret2) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "interpret"; - ciArgs.nArgs = 1; - ciArgs.nReturns = 3; - ciArgs.args.interpret_0_2.forth = forthString; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_0_2.catchResult != 0) return kCICatch; - - *ret1 = ciArgs.args.interpret_0_2.return1; - *ret2 = ciArgs.args.interpret_0_2.return2; - - return kCINoError; -} - -long Interpret_0_3(char *forthString, CICell *ret1, CICell *ret2, CICell *ret3) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "interpret"; - ciArgs.nArgs = 1; - ciArgs.nReturns = 4; - ciArgs.args.interpret_0_3.forth = forthString; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_0_3.catchResult != 0) return kCICatch; - - *ret1 = ciArgs.args.interpret_0_3.return1; - *ret2 = ciArgs.args.interpret_0_3.return2; - *ret3 = ciArgs.args.interpret_0_3.return3; - - return kCINoError; -} - -long Interpret_1_3(char *forthString, CICell arg1, CICell *ret1, CICell *ret2, - CICell *ret3) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "interpret"; - ciArgs.nArgs = 2; - ciArgs.nReturns = 4; - ciArgs.args.interpret_1_3.forth = forthString; - ciArgs.args.interpret_1_3.arg1 = arg1; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_1_3.catchResult != 0) return kCICatch; - - *ret1 = ciArgs.args.interpret_1_3.return1; - *ret2 = ciArgs.args.interpret_1_3.return2; - *ret3 = ciArgs.args.interpret_1_3.return3; - - return kCINoError; -} - -long Interpret_2_3(char *forthString, CICell arg1, CICell arg2, CICell *ret1, - CICell *ret2, CICell *ret3) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "interpret"; - ciArgs.nArgs = 3; - ciArgs.nReturns = 4; - ciArgs.args.interpret_2_3.forth = forthString; - ciArgs.args.interpret_2_3.arg1 = arg1; - ciArgs.args.interpret_2_3.arg2 = arg2; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_2_3.catchResult != 0) return kCICatch; - - *ret1 = ciArgs.args.interpret_2_3.return1; - *ret2 = ciArgs.args.interpret_2_3.return2; - *ret3 = ciArgs.args.interpret_2_3.return3; - - return kCINoError; -} - -long Interpret_2_4(char *forthString, CICell arg1, CICell arg2, CICell *ret1, - CICell *ret2, CICell *ret3, CICell *ret4) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "interpret"; - ciArgs.nArgs = 3; - ciArgs.nReturns = 5; - ciArgs.args.interpret_2_4.forth = forthString; - ciArgs.args.interpret_2_4.arg1 = arg1; - ciArgs.args.interpret_2_4.arg2 = arg2; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_2_4.catchResult != 0) return kCICatch; - - *ret1 = ciArgs.args.interpret_2_4.return1; - *ret2 = ciArgs.args.interpret_2_4.return2; - *ret3 = ciArgs.args.interpret_2_4.return3; - *ret4 = ciArgs.args.interpret_2_4.return4; - - return kCINoError; -} - -long Interpret_2_0(char *forthString, CICell arg1, CICell arg2) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "interpret"; - ciArgs.nArgs = 3; - ciArgs.nReturns = 1; - ciArgs.args.interpret_2_0.forth = forthString; - ciArgs.args.interpret_2_0.arg1 = arg1; - ciArgs.args.interpret_2_0.arg2 = arg2; - - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_2_0.catchResult != 0) return kCICatch; - - return kCINoError; -} - -long Interpret_2_2(char *forthString, CICell arg1, CICell arg2, CICell *ret1, - CICell *ret2) -{ - CIArgs ciArgs; - long ret; - - ciArgs.service = "interpret"; - ciArgs.nArgs = 3; - ciArgs.nReturns = 3; - ciArgs.args.interpret_2_2.forth = forthString; - ciArgs.args.interpret_2_2.arg1 = arg1; - ciArgs.args.interpret_2_2.arg2 = arg2; + for (cnt = 0; cnt < args; cnt++) { + ciArgs.args.interpret.cells[args - cnt - 1] = va_arg(argList, CICell); + } ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_2_2.catchResult != 0) return kCICatch; - - *ret1 = ciArgs.args.interpret_2_2.return1; - *ret2 = ciArgs.args.interpret_2_2.return2; + if (ret != 0) error = kCIError; + else if (ciArgs.args.interpret.cells[args] != 0) error = kCICatch; - return kCINoError; -} - -long Interpret_3_0(char *forthString, CICell arg1, CICell arg2, CICell arg3) -{ - CIArgs ciArgs; - int ret; - - ciArgs.service = "interpret"; - ciArgs.nArgs = 4; - ciArgs.nReturns = 1; - ciArgs.args.interpret_3_0.forth = forthString; - ciArgs.args.interpret_3_0.arg1 = arg1; - ciArgs.args.interpret_3_0.arg2 = arg2; - ciArgs.args.interpret_3_0.arg3 = arg3; + if (error == kCINoError) { + for (cnt = 0; cnt < rets; cnt++) { + *(va_arg(argList, CICell *)) = + ciArgs.args.interpret.cells[args + rets - cnt]; + } + } - ret = CallCI(&ciArgs); - if (ret != 0) return kCIError; - if (ciArgs.args.interpret_3_0.catchResult != 0) return kCICatch; + va_end(argList); - return kCINoError; + return error; } diff --git a/bootx.tproj/ci.subproj/ci_io.c b/bootx.tproj/ci.subproj/ci_io.c index 8e39804..2b75b2c 100644 --- a/bootx.tproj/ci.subproj/ci_io.c +++ b/bootx.tproj/ci.subproj/ci_io.c @@ -22,7 +22,7 @@ /* * ci_io.c - Primitive OF based IO function for libclite. * - * Copyright (c) 1998-2000 Apple Computer, Inc. + * Copyright (c) 1998-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ @@ -33,6 +33,6 @@ void putchar(int ch) { - if ((ch == '\r') || (ch == '\n')) CallMethod_0_0(SLWordsIH, "slw_cr"); - else CallMethod_1_0(SLWordsIH, "slw_emit", ch); + if ((ch == '\r') || (ch == '\n')) CallMethod(0, 0, SLWordsIH, "slw_cr"); + else CallMethod(1, 0, SLWordsIH, "slw_emit", ch); } diff --git a/bootx.tproj/ci.subproj/sl_words.c b/bootx.tproj/ci.subproj/sl_words.c index b259a8d..d99a3d9 100644 --- a/bootx.tproj/ci.subproj/sl_words.c +++ b/bootx.tproj/ci.subproj/sl_words.c @@ -22,7 +22,7 @@ /* * sl_words.c - Forth and C code for the sl_words package. * - * Copyright (c) 1998-2000 Apple Computer, Inc. + * Copyright (c) 1998-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ @@ -38,14 +38,11 @@ extern const char *gControl2Source[]; CICell SLWordsIH = 0; -long InitSLWords(long ofVers) +long InitSLWords(void) { long result, cnt; - result = Interpret_1_1 - ( - " drop" - + result = Interpret(0, 1, " hex" " unselect-dev" @@ -97,13 +94,13 @@ long InitSLWords(long ofVers) " ;" // Set up the spin cursor stuff. - " 0 value spinType" " 0 value screenIH" " 0 value cursorAddr" " 0 value cursorX" " 0 value cursorY" " 0 value cursorW" " 0 value cursorH" + " 0 value cursorFrames" " 0 value cursorPixelSize" " 0 value cursorStage" " 0 value cursorTime" @@ -115,40 +112,23 @@ long InitSLWords(long ofVers) " get-msecs dup cursorTime - cursorDelay >= if" " to cursorTime" " slw_update_keymap" - " spinType 0= if" - " cursorStage 1+ 3 mod dup to cursorStage" - " cursorW * cursorH * cursorAddr +" - " cursorX cursorY cursorW cursorH" - " \" draw-rectangle\" screenIH $call-method" - " else" - " cursorStage 1+ 6 mod dup to cursorStage" - " dup 3 > if 6 swap - then dup >r" - " 1+ cursorW * cursorPixelSize * cursorAddr +" - " cursorX cursorY cursorW cursorH r> 1+ -" - " \" draw-rectangle\" screenIH $call-method" - " then" + " cursorStage 1+ cursorFrames mod dup to cursorStage" + " cursorW cursorH * cursorPixelSize * * cursorAddr +" + " cursorX cursorY cursorW cursorH" + " \" draw-rectangle\" screenIH $call-method" " else" " drop" " then" " then" " ;" - // slw_spin_init ( screenIH cursorAddr cursorX cursorY cursorW cursorH --) + // slw_spin_init ( screenIH cursorAddr cursorX cursorY cursorW cursorH--) " : slw_spin_init" - " to cursorH to cursorW" - " to cursorY to cursorX" + " dup FFFF and to cursorH 10 >> drop" + " dup FFFF and to cursorW 10 >> to cursorPixelSize" + " dup FFFF and to cursorY 10 >> d# 1000 swap / to cursorDelay" + " dup FFFF and to cursorX 10 >> to cursorFrames" " to cursorAddr to screenIH" - " d# 111 to cursorDelay" - " ['] slw_spin to spin" - " ;" - - // slw_spin_init2 ( screenIH cursorAddr cursorX cursorY cursorW cursorH--) - " : slw_spin_init2" - " 1 to spinType" - " to cursorH dup FFFF and to cursorW 10 >> to cursorPixelSize" - " to cursorY to cursorX" - " to cursorAddr to screenIH" - " d# 50 to cursorDelay" " ['] slw_spin to spin" " ;" @@ -169,14 +149,13 @@ long InitSLWords(long ofVers) " 0 0 \" sl_words\" $open-package" - , ofVers, &SLWordsIH); + , &SLWordsIH); if (result != kCINoError) return result; if (SLWordsIH == 0) return kCIError; if (gOFVersion < kOFVersion3x) { - result = Interpret_1_0 - ( + result = Interpret(1, 0, " dev /packages/obp-tftp" " ['] load C + l!" , kLoadSize); @@ -184,8 +163,7 @@ long InitSLWords(long ofVers) } if (gOFVersion < kOFVersion3x) { - result = Interpret_1_0 - ( + result = Interpret(1, 0, " dev /packages/mac-parts" " \" lame\" device-name" " dev /packages" @@ -197,7 +175,7 @@ long InitSLWords(long ofVers) if (gOFVersion < kOFVersion2x) { for(cnt = 0; gControl2Source[cnt] != '\0'; cnt++) { - result = Interpret_0_0(gControl2Source[cnt]); + result = Interpret(0, 0, gControl2Source[cnt]); if (result == kCIError) return kCIError; if (result == kCICatch) return kCINoError; } @@ -213,19 +191,18 @@ long InitSLWords(long ofVers) #if SL_DEBUG void InitDebugWords(void) { - Interpret_0_0 - ( + Interpret(0, 0, // .sc ( -- ) " : .sc ?state-valid ci-regs 4+ l@ l@ dup 0= \" Bad Stack\" (abort\")" " cr .\" Stack Trace\"" - " begin dup while dup 8 + l@ cr u. l@ repeat drop ;" + " begin dup while dup 8 + l@ cr u. l@ repeat drop ;" ); } #endif void SetOutputLevel(long level) { - CallMethod_1_0(SLWordsIH, "slw_set_output_level", level); + CallMethod(1, 0, SLWordsIH, "slw_set_output_level", level); } @@ -234,8 +211,8 @@ char *InitKeyMap(CICell keyboardIH) long ret; char *keyMap; - ret = CallMethod_1_1(SLWordsIH, "slw_init_keymap", - keyboardIH, (CICell *)&keyMap); + ret = CallMethod(1, 1, SLWordsIH, "slw_init_keymap", + keyboardIH, (CICell *)&keyMap); if (ret != kCINoError) return NULL; return keyMap; @@ -243,38 +220,38 @@ char *InitKeyMap(CICell keyboardIH) void UpdateKeyMap(void) { - CallMethod_0_0(SLWordsIH, "slw_update_keymap"); + CallMethod(0, 0, SLWordsIH, "slw_update_keymap"); } -void SpinInit(long spinType, CICell screenIH, char *cursorAddr, - long cursorX, long cursorY, long cursorW, long cursorH, - long pixelSize) +void SpinInit(CICell screenIH, char *cursorAddr, + long cursorX, long cursorY, + long cursorW, long cursorH, + long frames, long fps, + long pixelSize, long spare) { - if (spinType == 0) { - CallMethod_6_0(SLWordsIH, "slw_spin_init", - screenIH, (long)cursorAddr, - cursorX, cursorY, cursorW, cursorH); - } else { - CallMethod_6_0(SLWordsIH, "slw_spin_init2", - screenIH, (long)cursorAddr, - cursorX, cursorY, cursorW | pixelSize << 16, cursorH); - } + CallMethod(6, 0, SLWordsIH, "slw_spin_init", + screenIH, (long)cursorAddr, + cursorX | (frames << 16), + cursorY | (fps << 16), + cursorW | (pixelSize << 16), + cursorH | (spare << 16)); } void Spin(void) { - CallMethod_0_0(SLWordsIH, "slw_spin"); + CallMethod(0, 0, SLWordsIH, "slw_spin"); } + long GetPackageProperty(CICell phandle, char *propName, char **propAddr, long *propLen) { long ret, nameLen = strlen(propName); - ret = Interpret_3_2("get-package-property if 0 0 then", - phandle, nameLen, (CICell)propName, - (CICell *)propLen, (CICell *)propAddr); + ret = Interpret(3, 2, "get-package-property if 0 0 then", + (CICell)propName, nameLen, phandle, + (CICell *)propAddr, (CICell *)propLen); if ((ret != kCINoError) || (*propAddr == NULL)) return -1; return 0; diff --git a/bootx.tproj/fs.subproj/ext2fs.c b/bootx.tproj/fs.subproj/ext2fs.c index ca3172e..7b3ae3e 100644 --- a/bootx.tproj/fs.subproj/ext2fs.c +++ b/bootx.tproj/fs.subproj/ext2fs.c @@ -22,15 +22,12 @@ /* * ext2.c - File System Module for Ext2. * - * Copyright (c) 1999-2000 Apple Computer, Inc. + * Copyright (c) 1999-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ #include -#include - -#include #include "ext2fs.h" #include "ext2fs_dinode.h" @@ -43,11 +40,11 @@ typedef struct ext2fs_dinode Inode, *InodePtr; static long HowMany(long bufferSize, long unitSize); static char *ReadBlock(long blockNum, long blockOffset, long length, char *buffer, long cache); -static long ReadInode(long inodeNum, InodePtr inode); +static long ReadInode(long inodeNum, InodePtr inode, long *flags, long *time); static long ResolvePathToInode(char *filePath, long *flags, InodePtr fileInode, InodePtr dirInode); static long ReadDirEntry(InodePtr dirInode, long *fileInodeNum, - long *dirIndex, char **name, long *flags, long *time); + long *dirIndex, char **name); static long FindFileInDir(char *fileName, long *flags, InodePtr fileInode, InodePtr dirInode); static char *ReadFileBlock(InodePtr fileInode, long blockNum, long blockOffset, @@ -59,6 +56,7 @@ static CICell gCurrentIH; static char gFSBuf[SBSIZE * 2]; static struct m_ext2fs *gFS; static long gBlockSize; +static long gBlockSizeOld; static char *gTempBlock; static char gTempName[EXT2FS_MAXNAMLEN + 1]; static char gTempName2[EXT2FS_MAXNAMLEN + 1]; @@ -87,10 +85,13 @@ long Ext2InitPartition(CICell ih) // Calculate the block size and set up the block cache. gBlockSize = 1024 << gFS->e2fs.e2fs_log_bsize; - if (gTempBlock != 0) free(gTempBlock); - gTempBlock = malloc(gBlockSize); + if (gBlockSizeOld <= gBlockSize) { + gTempBlock = AllocateBootXMemory(gBlockSize); + } CacheInit(ih, gBlockSize); + gBlockSizeOld = gBlockSize; + gCurrentIH = ih; gdPerBlock = gBlockSize / sizeof(struct ext2_gd); @@ -106,7 +107,7 @@ long Ext2InitPartition(CICell ih) gFS->e2fs_ngdb = HowMany(gFS->e2fs_ncg, gdPerBlock); gFS->e2fs_ipb = gFS->e2fs_bsize / EXT2_DINODE_SIZE; gFS->e2fs_itpg = gFS->e2fs.e2fs_ipg / gFS->e2fs_ipb; - gFS->e2fs_gd = malloc(gFS->e2fs_ngdb * gFS->e2fs_bsize); + gFS->e2fs_gd = AllocateBootXMemory(gFS->e2fs_ngdb * gFS->e2fs_bsize); // Read the summary information from disk. for (cnt = 0; cnt < gFS->e2fs_ngdb; cnt++) { @@ -117,7 +118,7 @@ long Ext2InitPartition(CICell ih) } // Read the Root Inode - ReadInode(EXT2_ROOTINO, &gRootInode); + ReadInode(EXT2_ROOTINO, &gRootInode, 0, 0); return 0; } @@ -135,7 +136,9 @@ long Ext2LoadFile(CICell ih, char *filePath) if (*filePath == '\\') filePath++; if (*filePath == '\\') filePath++; ret = ResolvePathToInode(filePath, &flags, &gFileInode, &gRootInode); - if ((ret == -1) || (flags != kFlatFileType)) return -1; + if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat)) return -1; + + if (flags & (kOwnerNotRoot | kPermGroupWrite | kPermOtherWrite)) return -1; ret = ReadFile(&gFileInode, &length); if (ret != 0) return -1; @@ -147,20 +150,23 @@ long Ext2LoadFile(CICell ih, char *filePath) long Ext2GetDirEntry(CICell ih, char *dirPath, long *dirIndex, char **name, long *flags, long *time) { - long ret, fileInodeNum, dirFlags; + long ret, fileInodeNum, dirFlags; + Inode tmpInode; if (Ext2InitPartition(ih) == -1) return -1; // Skip a leading '\' if present if (dirPath[0] == '\\') dirPath++; ret = ResolvePathToInode(dirPath, &dirFlags, &gFileInode, &gRootInode); - if ((ret == -1) || (dirFlags != kDirectoryFileType)) return -1; + if ((ret == -1) || ((dirFlags & kFileTypeMask) != kFileTypeDirectory)) + return -1; - do { - ret = ReadDirEntry(&gFileInode, &fileInodeNum, dirIndex, name, flags,time); - } while ((ret != -1) && (*flags == kUnknownFileType)); + ret = ReadDirEntry(&gFileInode, &fileInodeNum, dirIndex, name); + if (ret != 0) return ret; - return ret; + ReadInode(fileInodeNum, &tmpInode, flags, time); + + return 0; } // Private functions @@ -191,7 +197,7 @@ static char *ReadBlock(long blockNum, long blockOffset, long length, } -static long ReadInode(long inodeNum, InodePtr inode) +static long ReadInode(long inodeNum, InodePtr inode, long *flags, long *time) { long blockNum = ino_to_fsba(gFS, inodeNum); long blockOffset = ino_to_fsbo(gFS, inodeNum) * sizeof(Inode); @@ -199,6 +205,21 @@ static long ReadInode(long inodeNum, InodePtr inode) ReadBlock(blockNum, blockOffset, sizeof(Inode), (char *)inode, 1); e2fs_i_bswap(inode, inode); + if (time != 0) *time = inode->e2di_mtime; + + if (flags != 0) { + switch (inode->e2di_mode & EXT2_IFMT) { + case EXT2_IFREG: *flags = kFileTypeFlat; break; + case EXT2_IFDIR: *flags = kFileTypeDirectory; break; + case EXT2_IFLNK: *flags = kFileTypeLink; break; + default : *flags = kFileTypeUnknown; break; + } + + *flags |= inode->e2di_mode & kPermMask; + + if (inode->e2di_uid != 0) *flags |= kOwnerNotRoot; + } + return 0; } @@ -230,7 +251,7 @@ static long ResolvePathToInode(char *filePath, long *flags, ret = FindFileInDir(gTempName, flags, fileInode, dirInode); if (ret == -1) return -1; - if ((*restPath != '\0') && (*flags == kDirectoryFileType)) + if ((*restPath != '\0') && ((*flags & kFileTypeMask) == kFileTypeDirectory)) ret = ResolvePathToInode(restPath, flags, fileInode, fileInode); return ret; @@ -238,39 +259,34 @@ static long ResolvePathToInode(char *filePath, long *flags, static long ReadDirEntry(InodePtr dirInode, long *fileInodeNum, - long *dirIndex, char **name, long *flags, long *time) + long *dirIndex, char **name) { struct ext2fs_direct *dir; char *buffer; - long offset, index = *dirIndex; + long offset, index; long blockNum, inodeNum; - Inode tmpInode; - offset = index % gBlockSize; - blockNum = index / gBlockSize; - - buffer = ReadFileBlock(dirInode, blockNum, 0, gBlockSize, 0, 1); - if (buffer == 0) return -1; - - dir = (struct ext2fs_direct *)(buffer + offset); - inodeNum = bswap32(dir->e2d_ino); - if (inodeNum == 0) return -1; + while (1) { + index = *dirIndex; + + offset = index % gBlockSize; + blockNum = index / gBlockSize; + + buffer = ReadFileBlock(dirInode, blockNum, 0, gBlockSize, 0, 1); + if (buffer == 0) return -1; + + dir = (struct ext2fs_direct *)(buffer + offset); + *dirIndex += bswap16(dir->e2d_reclen); + + inodeNum = bswap32(dir->e2d_ino); + if (inodeNum != 0) break; + + if (offset != 0) return -1; + } - *dirIndex += bswap16(dir->e2d_reclen); *fileInodeNum = inodeNum; *name = strncpy(gTempName2, dir->e2d_name, dir->e2d_namlen); - ReadInode(inodeNum, &tmpInode); - - *time = tmpInode.e2di_mtime; - - switch (tmpInode.e2di_mode & EXT2_IFMT) { - case EXT2_IFREG: *flags = kFlatFileType; break; - case EXT2_IFDIR: *flags = kDirectoryFileType; break; - case EXT2_IFLNK: *flags = kLinkFileType; break; - default : *flags = kUnknownFileType; break; - } - return 0; } @@ -278,19 +294,17 @@ static long ReadDirEntry(InodePtr dirInode, long *fileInodeNum, static long FindFileInDir(char *fileName, long *flags, InodePtr fileInode, InodePtr dirInode) { - long ret, inodeNum, time, index = 0; + long ret, inodeNum, index = 0; char *name; while (1) { - ret = ReadDirEntry(dirInode, &inodeNum, &index, &name, flags, &time); + ret = ReadDirEntry(dirInode, &inodeNum, &index, &name); if (ret == -1) return -1; - if (*flags == kUnknownFileType) continue; - if (strcmp(fileName, name) == 0) break; } - ReadInode(inodeNum, fileInode); + ReadInode(inodeNum, fileInode, flags, 0); return 0; } diff --git a/bootx.tproj/fs.subproj/fs.c b/bootx.tproj/fs.subproj/fs.c index 9a236fc..8f8f02a 100644 --- a/bootx.tproj/fs.subproj/fs.c +++ b/bootx.tproj/fs.subproj/fs.c @@ -79,29 +79,6 @@ long LoadFile(char *fileSpec) return length; } -long CopyFile(char *fileSpec, char **addr, long *length) -{ - long len; - char *file; - - len = LoadFile(fileSpec); - if (len == -1) return -1; - - file = malloc(len + 2); - if (file == NULL) return -1; - - strncpy(file, (char *)kLoadAddr, len); - - // Just to make sure. - file[len] = '\0'; - file[len + 1] = '\0'; - - *addr = file; - *length = len; - - return 0; -} - long GetFileInfo(char *dirSpec, char *name, long *flags, long *time) { long ret, index = 0; diff --git a/bootx.tproj/fs.subproj/hfs.c b/bootx.tproj/fs.subproj/hfs.c index e85e499..ea65af4 100644 --- a/bootx.tproj/fs.subproj/hfs.c +++ b/bootx.tproj/fs.subproj/hfs.c @@ -22,28 +22,13 @@ /* * hfs.c - File System Module for HFS and HFS+. * - * Copyright (c) 1999-2000 Apple Computer, Inc. + * Copyright (c) 1999-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ #include - -#if kMacOSXServer -#define _LONG_LONG -#include -#include -#include -#include -#define kBTIndexNode kIndexNode -#define BTHeaderRec HeaderRec -#define GetNodeType(node) (node->type) -#else -#define GetNodeType(node) (node->kind) -#include -#endif - - +#include #define kBlockSize (0x200) @@ -66,6 +51,7 @@ static char gLinkTemp[64]; static long ReadFile(void *file, long *length); +static long GetCatalogEntryInfo(void *entry, long *flags, long *time); static long ResolvePathToCatalogEntry(char *filePath, long *flags, void *entry, long dirID, long *dirIndex); @@ -194,7 +180,10 @@ long HFSLoadFile(CICell ih, char *filePath) } result = ResolvePathToCatalogEntry(filePath, &flags, entry, dirID, 0); - if ((result == -1) || (flags != kFlatFileType)) return -1; + if ((result == -1) || ((flags & kFileTypeMask) != kFileTypeFlat)) return -1; + + // Check file owner and permissions. + if (flags & (kOwnerNotRoot | kPermGroupWrite | kPermOtherWrite)) return -1; result = ReadFile(entry, &length); if (result == -1) return -1; @@ -227,12 +216,12 @@ long HFSGetDirEntry(CICell ih, char *dirPath, long *dirIndex, char **name, if (*dirIndex == 0) { ResolvePathToCatalogEntry(dirPath, &dirFlags, entry, dirID, dirIndex); if (*dirIndex == 0) *dirIndex = -1; - if (dirFlags != kUnknownFileType) return -1; + if ((dirFlags & kFileTypeMask) != kFileTypeUnknown) return -1; } GetCatalogEntry(dirIndex, name, flags, time); if (*dirIndex == 0) *dirIndex = -1; - if (*flags == kUnknownFileType) return -1; + if ((*flags & kFileTypeMask) == kFileTypeUnknown) return -1; return 0; } @@ -268,18 +257,62 @@ static long ReadFile(void *file, long *length) return 0; } +static long GetCatalogEntryInfo(void *entry, long *flags, long *time) +{ + long tmpTime; + + // Get information about the file. + switch (*(short *)entry) { + case kHFSFolderRecord : + *flags = kFileTypeDirectory; + tmpTime = ((HFSCatalogFolder *)entry)->modifyDate; + break; + + case kHFSPlusFolderRecord : + *flags = kFileTypeDirectory | + (((HFSPlusCatalogFolder *)entry)->bsdInfo.fileMode & kPermMask); + if (((HFSPlusCatalogFolder *)entry)->bsdInfo.ownerID != 0) + *flags |= kOwnerNotRoot; + tmpTime = ((HFSPlusCatalogFolder *)entry)->contentModDate; + break; + + case kHFSFileRecord : + *flags = kFileTypeFlat; + tmpTime = ((HFSCatalogFile *)entry)->modifyDate; + break; + + case kHFSPlusFileRecord : + *flags = kFileTypeFlat | + (((HFSPlusCatalogFile *)entry)->bsdInfo.fileMode & kPermMask); + if (((HFSPlusCatalogFile *)entry)->bsdInfo.ownerID != 0) + *flags |= kOwnerNotRoot; + tmpTime = ((HFSPlusCatalogFile *)entry)->contentModDate; + break; + + case kHFSFileThreadRecord : + case kHFSPlusFileThreadRecord : + case kHFSFolderThreadRecord : + case kHFSPlusFolderThreadRecord : + *flags = kFileTypeUnknown; + tmpTime = 0; + break; + } + + if (time != 0) { + // Convert base time from 1904 to 1970. + *time = tmpTime - 2082844800; + } + + return 0; +} + static long ResolvePathToCatalogEntry(char *filePath, long *flags, void *entry, long dirID, long *dirIndex) { char *restPath; long result, cnt, subFolderID, tmpDirIndex; - HFSCatalogFolder *hfsFolder; - HFSPlusCatalogFolder *hfsPlusFolder; HFSPlusCatalogFile *hfsPlusFile; - hfsFolder = (HFSCatalogFolder *)entry; - hfsPlusFolder = (HFSPlusCatalogFolder *)entry; - // Copy the file name to gTempStr cnt = 0; while ((filePath[cnt] != '\\') && (filePath[cnt] != '\0')) cnt++; @@ -295,31 +328,18 @@ static long ResolvePathToCatalogEntry(char *filePath, long *flags, result = ReadCatalogEntry(gTempStr, dirID, entry, dirIndex); if (result == -1) return -1; - if (gIsHFSPlus) { - if (hfsPlusFolder->recordType == kHFSPlusFolderRecord) { - *flags = kDirectoryFileType; - subFolderID = hfsPlusFolder->folderID; - } else if (hfsPlusFolder->recordType == kHFSPlusFileRecord) { - *flags = kFlatFileType; - } else if (hfsPlusFolder->recordType == kHFSPlusFolderThreadRecord) { - *flags = kUnknownFileType; - } else return -1; - } else { - if (hfsFolder->recordType == kHFSFolderRecord) { - *flags = kDirectoryFileType; - subFolderID = hfsFolder->folderID; - } else if (hfsFolder->recordType == kHFSFileRecord) { - *flags = kFlatFileType; - } else if (hfsFolder->recordType == kHFSFolderThreadRecord) { - *flags = kUnknownFileType; - } else return -1; + GetCatalogEntryInfo(entry, flags, 0); + + if ((*flags & kFileTypeMask) == kFileTypeDirectory) { + if (gIsHFSPlus) subFolderID = ((HFSPlusCatalogFolder *)entry)->folderID; + else subFolderID = ((HFSCatalogFolder *)entry)->folderID; } - if (*flags == kDirectoryFileType) + if ((*flags & kFileTypeMask) == kFileTypeDirectory) result = ResolvePathToCatalogEntry(restPath, flags, entry, subFolderID, dirIndex); - if (gIsHFSPlus && (*flags == kFlatFileType)) { + if (gIsHFSPlus && ((*flags & kFileTypeMask) == kFileTypeFlat)) { hfsPlusFile = (HFSPlusCatalogFile *)entry; if ((hfsPlusFile->userInfo.fdType == kHardLinkFileType) && (hfsPlusFile->userInfo.fdCreator == kHFSPlusCreator)) { @@ -336,9 +356,9 @@ static long ResolvePathToCatalogEntry(char *filePath, long *flags, static long GetCatalogEntry(long *dirIndex, char **name, long *flags, long *time) { - long extentSize, nodeSize, curNode, index, tmpTime; + long extentSize, nodeSize, curNode, index; void *extent; - char *nodeBuf, *testKey, *recordData; + char *nodeBuf, *testKey, *entry; BTNodeDescriptor *node; if (gIsHFSPlus) { @@ -359,41 +379,9 @@ static long GetCatalogEntry(long *dirIndex, char **name, // Read the BTree node and get the record for index. ReadExtent(extent, extentSize, kHFSCatalogFileID, curNode * nodeSize, nodeSize, nodeBuf, 1); - GetBTreeRecord(index, nodeBuf, nodeSize, &testKey, &recordData); - - // Get the kind of file. - switch (*(short *)recordData) { - case kHFSFolderRecord : - *flags = kDirectoryFileType; - tmpTime = ((HFSCatalogFolder *)recordData)->modifyDate; - break; - - case kHFSPlusFolderRecord : - *flags = kDirectoryFileType; - tmpTime = ((HFSPlusCatalogFolder *)recordData)->contentModDate; - break; - - case kHFSFileRecord : - *flags = kFlatFileType; - tmpTime = ((HFSCatalogFile *)recordData)->modifyDate; - break; - - case kHFSPlusFileRecord : - *flags = kFlatFileType; - tmpTime = ((HFSPlusCatalogFile *)recordData)->contentModDate; - break; - - case kHFSFileThreadRecord : - case kHFSPlusFileThreadRecord : - case kHFSFolderThreadRecord : - case kHFSPlusFolderThreadRecord : - *flags = kUnknownFileType; - tmpTime = 0; - break; - } + GetBTreeRecord(index, nodeBuf, nodeSize, &testKey, &entry); - // Convert base time from 1904 to 1970. - *time = tmpTime - 2082844800; + GetCatalogEntryInfo(entry, flags, time); // Get the file name. if (gIsHFSPlus) { @@ -550,7 +538,7 @@ static long ReadBTreeEntry(long btree, void *key, char *entry, long *dirIndex) } // Found the closest key... Recurse on it if this is an index node. - if (GetNodeType(node) == kBTIndexNode) { + if (node->kind == kBTIndexNode) { curNode = *((long *)recordData); } else break; } diff --git a/bootx.tproj/fs.subproj/net.c b/bootx.tproj/fs.subproj/net.c index 161a057..5ef461b 100644 --- a/bootx.tproj/fs.subproj/net.c +++ b/bootx.tproj/fs.subproj/net.c @@ -22,7 +22,7 @@ /* * net.c - File System Module for wrapping TFTP. * - * Copyright (c) 1999-2000 Apple Computer, Inc. + * Copyright (c) 1999-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ @@ -42,7 +42,7 @@ CICell NetInitPartition(char *devSpec) { NetPartInfoPtr net; - net = (NetPartInfoPtr)malloc(sizeof(NetPartInfo)); + net = (NetPartInfoPtr)AllocateBootXMemory(sizeof(NetPartInfo)); if (net == 0) return 0; strcpy(net->devSpec, devSpec); @@ -72,7 +72,7 @@ long NetLoadFile(CICell ih, char *filePath) triesLeft = 10; do { - ret = CallMethod_1_1(netIH, "load", kLoadAddr, &length); + ret = CallMethod(1, 1, netIH, "load", kLoadAddr, &length); if (gOFVersion < kOFVersion3x) { if (length == 0) ret = -1; } diff --git a/bootx.tproj/fs.subproj/ufs.c b/bootx.tproj/fs.subproj/ufs.c index 76d1741..a7bf89f 100644 --- a/bootx.tproj/fs.subproj/ufs.c +++ b/bootx.tproj/fs.subproj/ufs.c @@ -22,12 +22,13 @@ /* * ufs.c - File System Module for UFS. * - * Copyright (c) 1998-2000 Apple Computer, Inc. + * Copyright (c) 1998-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ #include + #include "ufs_byteorder.h" typedef struct dinode Inode, *InodePtr; @@ -36,11 +37,11 @@ typedef struct dinode Inode, *InodePtr; static char *ReadBlock(long fragNum, long fragOffset, long length, char *buffer, long cache); -static long ReadInode(long inodeNum, InodePtr inode); +static long ReadInode(long inodeNum, InodePtr inode, long *flags, long *time); static long ResolvePathToInode(char *filePath, long *flags, InodePtr fileInode, InodePtr dirInode); static long ReadDirEntry(InodePtr dirInode, long *fileInodeNum, - long *dirIndex, char **name, long *flags, long *time); + long *dirIndex, char **name); static long FindFileInDir(char *fileName, long *flags, InodePtr fileInode, InodePtr dirInode); static char *ReadFileBlock(InodePtr fileInode, long fragNum, long blockOffset, @@ -57,6 +58,7 @@ static char gDLBuf[8192]; static char gFSBuf[SBSIZE]; static struct fs *gFS; static long gBlockSize; +static long gBlockSizeOld; static long gFragSize; static long gFragsPerBlock; static char *gTempBlock; @@ -117,14 +119,19 @@ long UFSInitPartition(CICell ih) gBlockSize = gFS->fs_bsize; gFragSize = gFS->fs_fsize; gFragsPerBlock = gBlockSize / gFragSize; - if (gTempBlock != 0) free(gTempBlock); - gTempBlock = malloc(gBlockSize); + + if (gBlockSizeOld <= gBlockSize) { + gTempBlock = AllocateBootXMemory(gBlockSize); + } + CacheInit(ih, gBlockSize); + gBlockSizeOld = gBlockSize; + gCurrentIH = ih; // Read the Root Inode - ReadInode(ROOTINO, &gRootInode); + ReadInode(ROOTINO, &gRootInode, 0, 0); return 0; } @@ -142,7 +149,9 @@ long UFSLoadFile(CICell ih, char *filePath) if (*filePath == '\\') filePath++; if (*filePath == '\\') filePath++; ret = ResolvePathToInode(filePath, &flags, &gFileInode, &gRootInode); - if ((ret == -1) || (flags != kFlatFileType)) return -1; + if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat)) return -1; + + if (flags & (kOwnerNotRoot | kPermGroupWrite | kPermOtherWrite)) return -1; ret = ReadFile(&gFileInode, &length); if (ret == -1) return -1; @@ -154,7 +163,8 @@ long UFSLoadFile(CICell ih, char *filePath) long UFSGetDirEntry(CICell ih, char *dirPath, long *dirIndex, char **name, long *flags, long *time) { - long ret, fileInodeNum, dirFlags; + long ret, fileInodeNum, dirFlags; + Inode tmpInode; if (UFSInitPartition(ih) == -1) return -1; @@ -162,14 +172,15 @@ long UFSGetDirEntry(CICell ih, char *dirPath, long *dirIndex, if (*dirPath == '\\') dirPath++; if (*dirPath == '\\') dirPath++; ret = ResolvePathToInode(dirPath, &dirFlags, &gFileInode, &gRootInode); - if ((ret == -1) || (dirFlags != kDirectoryFileType)) return -1; + if ((ret == -1) || ((dirFlags & kFileTypeMask) != kFileTypeDirectory)) + return -1; - do { - ret = ReadDirEntry(&gFileInode, &fileInodeNum, dirIndex, - name, flags, time); - } while ((ret != -1) && (*flags == kUnknownFileType)); + ret = ReadDirEntry(&gFileInode, &fileInodeNum, dirIndex, name); + if (ret != 0) return ret; - return ret; + ReadInode(fileInodeNum, &tmpInode, flags, time); + + return 0; } // Private functions @@ -200,13 +211,28 @@ static char *ReadBlock(long fragNum, long blockOffset, long length, } -static long ReadInode(long inodeNum, InodePtr inode) +static long ReadInode(long inodeNum, InodePtr inode, long *flags, long *time) { long fragNum = ino_to_fsba(gFS, inodeNum); long blockOffset = ino_to_fsbo(gFS, inodeNum) * sizeof(Inode); ReadBlock(fragNum, blockOffset, sizeof(Inode), (char *)inode, 1); + if (time != 0) *time = inode->di_mtime; + + if (flags != 0) { + switch (inode->di_mode & IFMT) { + case IFREG: *flags = kFileTypeFlat; break; + case IFDIR: *flags = kFileTypeDirectory; break; + case IFLNK: *flags = kFileTypeLink; break; + default : *flags = kFileTypeUnknown; break; + } + + *flags |= inode->di_mode & kPermMask; + + if (inode->di_uid != 0) *flags |= kOwnerNotRoot; + } + return 0; } @@ -238,7 +264,7 @@ static long ResolvePathToInode(char *filePath, long *flags, ret = FindFileInDir(gTempName, flags, fileInode, dirInode); if (ret == -1) return -1; - if ((*restPath != '\0') && (*flags == kDirectoryFileType)) + if ((*restPath != '\0') && ((*flags & kFileTypeMask) == kFileTypeDirectory)) ret = ResolvePathToInode(restPath, flags, fileInode, fileInode); return ret; @@ -246,38 +272,33 @@ static long ResolvePathToInode(char *filePath, long *flags, static long ReadDirEntry(InodePtr dirInode, long *fileInodeNum, - long *dirIndex, char **name, long *flags, long *time) + long *dirIndex, char **name) { struct direct *dir; char *buffer; - long index = *dirIndex; + long index; long dirBlockNum, dirBlockOffset; - Inode tmpInode; - - dirBlockOffset = index % DIRBLKSIZ; - dirBlockNum = index / DIRBLKSIZ; - buffer = ReadFileBlock(dirInode, dirBlockNum, 0, DIRBLKSIZ, 0, 1); - if (buffer == 0) return -1; - - dir = (struct direct *)(buffer + dirBlockOffset); - if (dir->d_ino == 0) return -1; + while (1) { + index = *dirIndex; + + dirBlockOffset = index % DIRBLKSIZ; + dirBlockNum = index / DIRBLKSIZ; + + buffer = ReadFileBlock(dirInode, dirBlockNum, 0, DIRBLKSIZ, 0, 1); + if (buffer == 0) return -1; + + dir = (struct direct *)(buffer + dirBlockOffset); + *dirIndex += dir->d_reclen; + + if (dir->d_ino != 0) break; + + if (dirBlockOffset != 0) return -1; + } - *dirIndex += dir->d_reclen; *fileInodeNum = dir->d_ino; *name = strncpy(gTempName2, dir->d_name, dir->d_namlen); - ReadInode(dir->d_ino, &tmpInode); - - *time = tmpInode.di_mtime; - - switch (tmpInode.di_mode & IFMT) { - case IFREG: *flags = kFlatFileType; break; - case IFDIR: *flags = kDirectoryFileType; break; - case IFLNK: *flags = kLinkFileType; break; - default : *flags = kUnknownFileType; break; - } - return 0; } @@ -285,19 +306,17 @@ static long ReadDirEntry(InodePtr dirInode, long *fileInodeNum, static long FindFileInDir(char *fileName, long *flags, InodePtr fileInode, InodePtr dirInode) { - long ret, inodeNum, time, index = 0; + long ret, inodeNum, index = 0; char *name; while (1) { - ret = ReadDirEntry(dirInode, &inodeNum, &index, &name, flags, &time); + ret = ReadDirEntry(dirInode, &inodeNum, &index, &name); if (ret == -1) return -1; - if (*flags == kUnknownFileType) continue; - if (strcmp(fileName, name) == 0) break; } - ReadInode(inodeNum, fileInode); + ReadInode(inodeNum, fileInode, flags, 0); return 0; } diff --git a/bootx.tproj/fs.subproj/ufs_byteorder.h b/bootx.tproj/fs.subproj/ufs_byteorder.h index 3bb6134..47154a5 100644 --- a/bootx.tproj/fs.subproj/ufs_byteorder.h +++ b/bootx.tproj/fs.subproj/ufs_byteorder.h @@ -33,20 +33,20 @@ /* * ufs_byteorder.h - Externs for endian swapping UFS disk structures. * - * Copyright (c) 1998-2000 Apple Computer, Inc. + * Copyright (c) 1998-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include void byte_swap_ints(int *array, int count); void byte_swap_shorts(short *array, int count); diff --git a/bootx.tproj/include.subproj/ci.h b/bootx.tproj/include.subproj/ci.h index 8922e68..b9d6f1d 100644 --- a/bootx.tproj/include.subproj/ci.h +++ b/bootx.tproj/include.subproj/ci.h @@ -22,7 +22,7 @@ /* * ci.h - Headers for the OF Client Interface Library * - * Copyright (c) 1998-2000 Apple Computer, Inc. + * Copyright (c) 1998-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ @@ -42,232 +42,26 @@ struct CIArgs { CICell nReturns; union { - struct { // nArgs=1, nReturns=1 - char *forth; - CICell catchResult; - } interpret_0_0; - - struct { // nArgs=2, nReturns=1 - char *forth; - CICell arg1; - CICell catchResult; - } interpret_1_0; - - struct { // nArgs=2, nReturns=2 - char *forth; - CICell arg1; - CICell catchResult; - CICell return1; - } interpret_1_1; - - struct { // nArgs=3, nReturns=2 - char *forth; - CICell arg1; - CICell arg2; - CICell catchResult; - CICell return1; - } interpret_2_1; - - struct { // nArgs=4, nReturns=2 - char *forth; - CICell arg1; - CICell arg2; - CICell arg3; - CICell catchResult; - CICell return1; - } interpret_3_1; - - struct { // nArgs=4, nReturns=3 - char *forth; - CICell arg1; - CICell arg2; - CICell arg3; - CICell catchResult; - CICell return1; - CICell return2; - } interpret_3_2; - - struct { // nArgs=5, nReturns=1 - char *forth; - CICell arg1; - CICell arg2; - CICell arg3; - CICell arg4; - CICell catchResult; - } interpret_4_0; - - struct { // nArgs=1, nReturns=2 - char *forth; - CICell catchResult; - CICell return1; - } interpret_0_1; - - struct { // nArgs=1, nReturns=3 - char *forth; - CICell catchResult; - CICell return1; - CICell return2; - } interpret_0_2; - - struct { // nArgs=1, nReturns=4 - char *forth; - CICell catchResult; - CICell return1; - CICell return2; - CICell return3; - } interpret_0_3; - - struct { // nArgs=2, nReturns=4 - char *forth; - CICell arg1; - CICell catchResult; - CICell return1; - CICell return2; - CICell return3; - } interpret_1_3; - - struct { // nArgs=3, nReturns=4 - char *forth; - CICell arg1; - CICell arg2; - CICell catchResult; - CICell return1; - CICell return2; - CICell return3; - } interpret_2_3; - - struct { // nArgs=3, nReturns=5 - char *forth; - CICell arg1; - CICell arg2; - CICell catchResult; - CICell return1; - CICell return2; - CICell return3; - CICell return4; - } interpret_2_4; - - struct { // nArgs=3, nReturns=1 - char *forth; - CICell arg1; - CICell arg2; - CICell catchResult; - } interpret_2_0; - - struct { // nArgs=3, nReturns=3 - char *forth; - CICell arg1; - CICell arg2; - CICell catchResult; - CICell return1; - CICell return2; - } interpret_2_2; - - struct { // nArgs=4, nReturns=1 - char *forth; - CICell arg1; - CICell arg2; - CICell arg3; - CICell catchResult; - } interpret_3_0; - - struct { // nArgs=2, nReturns=1 - char *method; - CICell iHandle; - CICell catchResult; - } callMethod_0_0; - - struct { // nArgs=2, nReturns=2 - char *method; - CICell iHandle; - CICell catchResult; - CICell return1; - } callMethod_0_1; - - struct { // nArgs=3, nReturns=1 - char *method; - CICell iHandle; - CICell arg1; - CICell catchResult; - } callMethod_1_0; - - struct { // nArgs=3, nReturns=2 - char *method; - CICell iHandle; - CICell arg1; - CICell catchResult; - CICell return1; - } callMethod_1_1; - - struct { // nArgs=4, nReturns=1 - char *method; - CICell iHandle; - CICell arg2; - CICell arg1; - CICell catchResult; - } callMethod_2_0; - - struct { // nArgs=5, nReturns=1 - char *method; - CICell iHandle; - CICell arg3; - CICell arg2; - CICell arg1; - CICell catchResult; - } callMethod_3_0; - - struct { // nArgs=5, nReturns=2 - char *method; - CICell iHandle; - CICell arg3; - CICell arg2; - CICell arg1; - CICell catchResult; - CICell return1; - } callMethod_3_1; - - struct { // nArgs=6, nReturns=1 - char *method; - CICell iHandle; - CICell arg4; - CICell arg3; - CICell arg2; - CICell arg1; - CICell catchResult; - } callMethod_4_0; - - struct { // nArgs=7, nReturns=1 - char *method; - CICell iHandle; - CICell arg5; - CICell arg4; - CICell arg3; - CICell arg2; - CICell arg1; - CICell catchResult; - } callMethod_5_0; - - struct { // nArgs=8, nReturns=1 - char *method; - CICell iHandle; - CICell arg6; - CICell arg5; - CICell arg4; - CICell arg3; - CICell arg2; - CICell arg1; - CICell catchResult; - } callMethod_6_0; - + struct { // nArgs=1 + args, nReturns=1 + rets + const char *forth; + CICell cells[6 + 1 + 6]; + } interpret; + + struct { // nArgs=2 + args, nReturns=1 + rets + const char *method; + CICell iHandle; + CICell cells[6 + 1 + 6]; + } callMethod; + struct { // nArgs=1, nReturns=1 ( device-specifier -- ihandle ) char *devSpec; // IN parameter CICell ihandle; // RETURN value } open; - + struct { // nArgs=1, nReturns=0 ( ihandle -- ) CICell ihandle; // IN parameter } close; - + struct { // nArgs=3, nReturns=1 ( ihandle addr length -- actual ) CICell ihandle; CICell addr; @@ -380,7 +174,6 @@ typedef long (*ClientInterfacePtr)(CIArgs *args); // ci.c long InitCI(ClientInterfacePtr ciPtr); - long CallCI(CIArgs *ciArgsPtr); // Device Tree @@ -404,22 +197,7 @@ CICell Write(CICell ihandle, long addr, long length); CICell Seek(CICell ihandle, long long position); // Call Method -long CallMethod_0_0(CICell ihandle, char *method); -long CallMethod_0_1(CICell ihandle, char *method, CICell *ret1); -long CallMethod_1_0(CICell ihandle, char *method, CICell arg1); -long CallMethod_1_1(CICell iHandle, char *method, CICell arg1, CICell *ret1); -long CallMethod_2_0(CICell ihandle, char *method, - CICell arg1, CICell arg2); -long CallMethod_3_0(CICell ihandle, char *method, - CICell arg1, CICell arg2, CICell arg3); -long CallMethod_3_1(CICell ihandle, char *method, - CICell arg1, CICell arg2, CICell arg3, CICell *ret1); -long CallMethod_4_0(CICell ihandle, char *method, - CICell arg1, CICell arg2, CICell arg3, CICell arg4); -long CallMethod_5_0(CICell ihandle, char *method, CICell arg1, CICell arg2, - CICell arg3, CICell arg4, CICell arg5); -long CallMethod_6_0(CICell ihandle, char *method, CICell arg1, CICell arg2, - CICell arg3, CICell arg4, CICell arg5, CICell arg6); +long CallMethod(long args, long rets, CICell iHandle, const char *method, ...); // Memory CICell Claim(CICell virt, CICell size, CICell align); @@ -431,30 +209,7 @@ void Enter(void); void Exit(void); void Quiesce(void); -// Interpret_n_m -long Interpret_0_0(char *forthString); -long Interpret_1_0(char *forthString, CICell arg1); -long Interpret_1_1(char *forthString, CICell arg1, CICell *ret1); -long Interpret_2_1(char *forthString, CICell arg1, CICell arg2, CICell *ret1); -long Interpret_3_1(char *forthString, CICell arg1, CICell arg2, CICell arg3, - CICell *ret1); -long Interpret_3_2(char *forthString, CICell arg1, CICell arg2, CICell arg3, - CICell *ret1, CICell *ret2); -long Interpret_4_0(char *forthString, CICell arg1, CICell arg2, CICell arg3, - CICell arg4); -long Interpret_0_1(char *forthString, CICell *ret1); -long Interpret_0_2(char *forthString, CICell *ret1, CICell *ret2); -long Interpret_0_3(char *forthString, CICell *ret1, - CICell *ret2, CICell *ret3); -long Interpret_1_3(char *forthString, CICell arg1, CICell *ret1, CICell *ret2, - CICell *ret3); -long Interpret_2_3(char *forthString, CICell arg1, CICell arg2, CICell *ret1, - CICell *ret2, CICell *ret3); -long Interpret_2_4(char *forthString, CICell arg1, CICell arg2, CICell *ret1, - CICell *ret2, CICell *ret3, CICell *ret4); -long Interpret_2_0(char *forthString, CICell arg1, CICell arg2); -long Interpret_2_2(char *forthString, CICell arg1, CICell arg2, CICell *ret1, - CICell *ret2); -long Interpret_3_0(char *forthString, CICell arg1, CICell arg2, CICell arg3); +// Interpret +long Interpret(long args, long rets, const char *forthString, ...); #endif /* ! _BOOTX_CI_H_ */ diff --git a/bootx.tproj/include.subproj/fs.h b/bootx.tproj/include.subproj/fs.h index 01dbb70..6bf8120 100644 --- a/bootx.tproj/include.subproj/fs.h +++ b/bootx.tproj/include.subproj/fs.h @@ -32,7 +32,6 @@ // Externs for fs.c extern long LoadFile(char *fileSpec); -extern long CopyFile(char *fileSpec, char **addr, long *length); extern long GetFileInfo(char *dirSpec, char *name, long *flags, long *time); extern long GetDirEntry(char *dirSpec, long *dirIndex, char **name, long *flags, long *time); diff --git a/bootx.tproj/include.subproj/libclite.h b/bootx.tproj/include.subproj/libclite.h index bd1daeb..6ab2c43 100644 --- a/bootx.tproj/include.subproj/libclite.h +++ b/bootx.tproj/include.subproj/libclite.h @@ -24,7 +24,7 @@ * * Ported from i386's libsa and libsaio * - * Copyright (c) 1998-2000 Apple Computer, Inc. + * Copyright (c) 1998-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ @@ -32,7 +32,7 @@ #ifndef _BOOTX_LIBCLITE_H_ #define _BOOTX_LIBCLITE_H_ -#include +#include #include #include @@ -41,7 +41,7 @@ extern void putchar(int ch); // prf.c -extern void prf(char *fmt, unsigned int *adx, void (*putfn_p)(), +extern void prf(const char *fmt, unsigned int *adx, void (*putfn_p)(), void *putfn_arg); // printf.c diff --git a/bootx.tproj/include.subproj/sl.h b/bootx.tproj/include.subproj/sl.h index ecaba85..2a89cf1 100644 --- a/bootx.tproj/include.subproj/sl.h +++ b/bootx.tproj/include.subproj/sl.h @@ -22,7 +22,7 @@ /* * sl.h - Headers for configuring the Secondary Loader * - * Copyright (c) 1998-2000 Apple Computer, Inc. + * Copyright (c) 1998-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ @@ -32,10 +32,6 @@ #define kFailToBoot (1) -#if ! defined(kMacOSXServer) -#define kMacOSXServer (0) -#endif - /* Memory Map... Assumes 32 MB @@ -53,7 +49,7 @@ Open Firmware Version 1x, 2x 3x Logical Address 00000000 - 00003FFF : Exception Vectors -00004000 - 013FFFFF : Kernal Image, Boot Struct and Drivers +00004000 - 013FFFFF : Kernel Image, Boot Struct and Drivers 01400000 - 01BFFFFF : File Load Area 01C00000 - 01CFFFFF : Secondary Loader Image 01D00000 - 01DFFFFF : Malloc Area @@ -105,12 +101,24 @@ enum { kBlockDeviceType }; -// File Type +// File Permissions and Types enum { - kUnknownFileType = 0, - kFlatFileType, - kDirectoryFileType, - kLinkFileType + kPermOtherExecute = 1 << 0, + kPermOtherWrite = 1 << 1, + kPermOtherRead = 1 << 2, + kPermGroupExecute = 1 << 3, + kPermGroupWrite = 1 << 4, + kPermGroupRead = 1 << 5, + kPermOwnerExecute = 1 << 6, + kPermOwnerWrite = 1 << 7, + kPermOwnerRead = 1 << 8, + kPermMask = 0x1FF, + kOwnerNotRoot = 1 << 9, + kFileTypeUnknown = 0x0 << 16, + kFileTypeFlat = 0x1 << 16, + kFileTypeDirectory = 0x2 << 16, + kFileTypeLink = 0x3 << 16, + kFileTypeMask = 0x3 << 16 }; // Key Numbers @@ -122,8 +130,15 @@ enum { // Mac OS X Booter Signature 'MOSX' #define kMacOSXSignature (0x4D4F5358) +// Boot Modes +enum { + kBootModeNormal = 0, + kBootModeSafe, + kBootModeSecure +}; -#include +#include +#include #include #include @@ -141,6 +156,7 @@ extern long gBootArgsSize; extern long gSymbolTableAddr; extern long gSymbolTableSize; +extern long gBootMode; extern long gBootDeviceType; extern long gBootFileType; extern char gBootDevice[256]; @@ -187,9 +203,8 @@ extern CICell SearchForNodeMatching(CICell ph, long top, char *value); // Externs for display.c extern long InitDisplays(void); -extern long LoadDisplayDrivers(void); -extern long DrawSplashScreen(void); -extern long DrawBrokenSystemFolder(void); +extern long DrawSplashScreen(long stage); +extern long DrawFailedBootPicture(void); extern void GetMainScreenPH(Boot_Video_Ptr video); // Externs for drivers.c @@ -199,8 +214,4 @@ extern long LoadDrivers(char *dirPath); extern long InitConfig(void); extern long ParseConfigFile(char *addr); -// Externs for PEFSupport.c -extern unsigned long GetSymbolFromPEF(char *name, char *pef, - void *desc, long descSize); - #endif /* ! _BOOTX_SL_H_ */ diff --git a/bootx.tproj/include.subproj/sl_words.h b/bootx.tproj/include.subproj/sl_words.h index ee2766b..2359484 100644 --- a/bootx.tproj/include.subproj/sl_words.h +++ b/bootx.tproj/include.subproj/sl_words.h @@ -41,7 +41,7 @@ extern CICell SLWordsIH; // 1 - OF stdout only // 2 - SLW's emit and cr. // 3 - ??? -extern long InitSLWords(long ofVers); +extern long InitSLWords(void); // Suported words. @@ -68,11 +68,12 @@ extern char *InitKeyMap(CICell keyboardIH); extern void UpdateKeyMap(void); // slw_spin_init ( screenIH cursorAddr cursorX cursorY cursorW cursorH --) -// slw_spin_init2 ( screenIH cursorAddr cursorX cursorY cursorW cursorH --) // Sets up the wait cursor. -extern void SpinInit(long spinType, CICell screenIH, char *cursorAddr, - long cursorX, long cursorY, long cursorW, long cursorH, - long pixelSize); +extern void SpinInit(CICell screenIH, char *cursorAddr, + long cursorX, long cursorY, + long cursorW, long cursorH, + long frames, long fps, + long pixelSize, long spare); // slw_spin ( -- ) // Spins the wait cursor. diff --git a/bootx.tproj/libclite.subproj/mem.c b/bootx.tproj/libclite.subproj/mem.c index 8f06ab2..0a48b4a 100644 --- a/bootx.tproj/libclite.subproj/mem.c +++ b/bootx.tproj/libclite.subproj/mem.c @@ -22,7 +22,7 @@ /* * mem.c - Standard memory functions. * - * Copyright (c) 1998-2000 Apple Computer, Inc. + * Copyright (c) 1998-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ @@ -33,8 +33,9 @@ void *memcpy(void *dst, const void *src, size_t len) { - char *s = src, *d = dst; - int pos = 0, dir = 1; + const char *s = src; + char *d = dst; + int pos = 0, dir = 1; if (d > s) { dir = -1; diff --git a/bootx.tproj/libclite.subproj/prf.c b/bootx.tproj/libclite.subproj/prf.c index b61effc..9ce8b34 100644 --- a/bootx.tproj/libclite.subproj/prf.c +++ b/bootx.tproj/libclite.subproj/prf.c @@ -38,7 +38,7 @@ /* * prf.c - Helpers for the printf function. * - * Copyright (c) 1998-2000 Apple Computer, Inc. + * Copyright (c) 1998-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ @@ -95,7 +95,7 @@ printn(n, b, flag, minwidth, putfn_p, putfn_arg) } void prf( - char *fmt, + const char *fmt, unsigned int *adx, void (*putfn_p)(), void *putfn_arg diff --git a/bootx.tproj/libclite.subproj/printf.c b/bootx.tproj/libclite.subproj/printf.c index 926cc27..df2ccee 100644 --- a/bootx.tproj/libclite.subproj/printf.c +++ b/bootx.tproj/libclite.subproj/printf.c @@ -22,7 +22,7 @@ /* * printf.c - printf * - * Copyright (c) 1998-2000 Apple Computer, Inc. + * Copyright (c) 1998-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ @@ -33,7 +33,7 @@ int printf(const char *format, ...) { va_list ap; va_start(ap, format); - prf(format, ap, putchar, 0); + prf(format, (unsigned int *)ap, putchar, 0); va_end(ap); return 0; } diff --git a/bootx.tproj/libclite.subproj/sprintf.c b/bootx.tproj/libclite.subproj/sprintf.c index f995f5f..1824890 100644 --- a/bootx.tproj/libclite.subproj/sprintf.c +++ b/bootx.tproj/libclite.subproj/sprintf.c @@ -26,7 +26,7 @@ /* * sprintf.c - sprintf and helper functions. * - * Copyright (c) 1998-2000 Apple Computer, Inc. + * Copyright (c) 1998-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ @@ -61,7 +61,7 @@ int sprintf(char *str, const char *fmt, ...) va_start(ap, fmt); pi.str = str; pi.last_str = 0; - prf(fmt, ap, sputc, &pi); + prf(fmt, (unsigned int *)ap, sputc, &pi); *pi.str = '\0'; va_end(ap); return 0; @@ -73,7 +73,7 @@ int slvprintf(char *str, int len, const char *fmt, va_list ap ) struct putc_info pi; pi.str = str; pi.last_str = str + len - 1; - prf(fmt, ap, sputc, &pi); + prf(fmt, (unsigned int *)ap, sputc, &pi); *pi.str = '\0'; return (pi.str - str); } diff --git a/bootx.tproj/sl.subproj/GetSymbolFromPEF.h b/bootx.tproj/sl.subproj/GetSymbolFromPEF.h deleted file mode 100644 index 78dcf24..0000000 --- a/bootx.tproj/sl.subproj/GetSymbolFromPEF.h +++ /dev/null @@ -1,216 +0,0 @@ -/* - * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. - * - * @APPLE_LICENSE_HEADER_START@ - * - * The contents of this file constitute Original Code as defined in and - * are subject to the Apple Public Source License Version 1.1 (the - * "License"). You may not use this file except in compliance with the - * License. Please obtain a copy of the License at - * http://www.apple.com/publicsource and read it before using this file. - * - * This Original Code and all software distributed under the License are - * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER - * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, - * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the - * License for the specific language governing rights and limitations - * under the License. - * - * @APPLE_LICENSE_HEADER_END@ - */ -/* - File: GetSymbolFromPEF.h - - Contains: xxx put contents here xxx - - Written by: Jeffrey Robbin - - Copyright: © 1994 by Apple Computer, Inc., all rights reserved. - - Change History (most recent first): - - <2> 9/20/94 TS Dump the globals! - <1> 9/6/94 TS first checked in - -*/ - -#ifndef __GETSYMBOLFROMPEF__ -#define __GETSYMBOLFROMPEF__ - -//#include - -#pragma options align=mac68k - -#include - -#define NewPtrSys(a) malloc(a) -#define DisposePtr(a) free(a) - -/* - Container information -*/ - -struct ContainerHeader { /* File/container header layout: */ - unsigned long magicCookie; /* PEF container magic cookie */ - unsigned long containerID; /* 'peff' */ - unsigned long architectureID; /* 'pwpc' | 'm68k' */ - unsigned long versionNumber; /* format version number */ - unsigned long dateTimeStamp; /* date/time stamp (Mac format) */ - unsigned long oldDefVersion; /* old definition version number */ - unsigned long oldImpVersion; /* old implementation version number */ - unsigned long currentVersion; /* current version number */ - short nbrOfSections; /* nbr of sections (rel. 1) */ - short loadableSections; /* nbr of loadable sectionsfor execution */ - /* (= nbr of 1st non-loadable section) */ - LogicalAddress memoryAddress; /* location this container was last loaded */ -}; -typedef struct ContainerHeader ContainerHeader, *ContainerHeaderPtr; - -#define kMagic1 'joy!' -#define kMagic2 'peff' - - -/* - Section information -*/ - -struct SectionHeader { /* Section header layout: */ - long sectionName; /* section name (str tbl container offset) */ - unsigned long sectionAddress; /* preferred base address for the section */ - long execSize; /* execution (byte) size including 0 init) */ - long initSize; /* init (byte) size before 0 init */ - long rawSize; /* raw data size (bytes) */ - long containerOffset; /* container offest to section's raw data */ - unsigned char regionKind; /* section/region classification */ - unsigned char shareKind; /* sharing classification */ - unsigned char alignment; /* log 2 alignment */ - unsigned char reserved; /* */ -}; -typedef struct SectionHeader SectionHeader, *SectionHeaderPtr; - - /* regionKind section classification: */ - /* loadable sections */ -#define kCodeSection 0U /* code section */ -#define kDataSection 1U /* data section */ -#define kPIDataSection 2U /* "pattern" initialized data */ -#define kConstantSection 3U /* read-only data */ -#define kExecDataSection 6U /* "self modifying" code (!?) */ - /* non-loadable sections */ -#define kLoaderSection 4U /* loader */ -#define kDebugSection 5U /* debugging info */ -#define kExceptionSection 7U /* exception data */ -#define kTracebackSection 8U /* traceback data */ - - -/* - Loader Information -*/ - -struct LoaderHeader { /* Loader raw data section header layout: */ - long entrySection; /* entry point section number */ - long entryOffset; /* entry point descr. ldr section offset */ - long initSection; /* init routine section number */ - long initOffset; /* init routine descr. ldr section offset */ - long termSection; /* term routine section number */ - long termOffset; /* term routine descr. ldr section offset */ - long nbrImportIDs; /* nbr of import container id entries */ - long nbrImportSyms; /* nbr of import symbol table entries */ - long nbrRelocSects; /* nbr of relocation sections (headers) */ - long relocsOffset; /* reloc. instructions ldr section offset */ - long strTblOffset; /* string table ldr section offset */ - long slotTblOffset; /* hash slot table ldr section offset */ - long hashSlotTblSz; /* log 2 of nbr of hash slot entries */ - long nbrExportSyms; /* nbr of export symbol table entries */ -}; -typedef struct LoaderHeader LoaderHeader, *LoaderHeaderPtr; - -struct LoaderHashSlotEntry { /* Loader export hash slot table entry layout: */ - unsigned long slotEntry; /* chain count (0:13), chain index (14:31) */ -}; -typedef struct LoaderHashSlotEntry LoaderHashSlotEntry, *LoaderHashSlotEntryPtr; - -struct LoaderExportChainEntry { /* Loader export hash chain tbl entry layout: */ - union { - unsigned long _hashWord; /* name length and hash value */ - struct { - unsigned short _nameLength; /* name length is top half of hash word */ - unsigned short doNotUseThis; /* this field should never be accessed! */ - } _h_h; - } _h; -}; -typedef struct LoaderExportChainEntry LoaderExportChainEntry, *LoaderExportChainEntryPtr; - -struct ExportSymbolEntry { /* Loader export symbol table entry layout: */ - unsigned long class_and_name; /* symClass (0:7), nameOffset (8:31) */ - long address; /* ldr section offset to exported symbol */ - short sectionNumber; /* section nbr that this export belongs to */ -}; -typedef struct ExportSymbolEntry ExportSymbolEntry, *ExportSymbolEntryPtr; - - - -/* - Unpacking Information -*/ - - /* "pattern" initialized data opcodes: */ -#define kZero 0U /* zero (clear) bytes */ -#define kBlock 1U /* block transfer bytes */ -#define kRepeat 2U /* repeat block xfer bytes */ -#define kRepeatBlock 3U /* repeat block xfer with contant prefix */ -#define kRepeatZero 4U /* repeat block xfer with contant prefix 0 */ - -#define kOpcodeShift 0x05U /* shift to access opcode */ -#define kFirstOperandMask 0x1FU /* mask to access 1st operand (count) */ - -#define PIOP(x) (unsigned char)((x) >> kOpcodeShift) /* extract opcode */ -#define PICNT(x) (long)((x) & kFirstOperandMask) /* extract 1st operand (count) */ - -/* The following macros are used for extracting count value operands from pidata... */ - -#define kCountShift 0x07UL /* value shift to concat count bytes */ -#define kCountMask 0x7FUL /* mask to extract count bits from a byte */ - -#define IS_LAST_PICNT_BYTE(x) (((x) & 0x80U) == 0) /* true if last count byte */ - -#define CONCAT_PICNT(value, x) (((value)< 9/20/96 MRN Changed "" to <> on including Types.h, Errors.h and Memory.h - that was breaking MW. - <2> 9/20/94 TS Dump the globals! - <1> 9/6/94 TS first checked in - - - File: GetSymbolFromPEF.c - Written by: Jeffrey Robbin - Copyright: © 1994, 1996 by Apple Computer, Inc., all rights reserved. - - Change History (most recent first): - - <6> 9/20/96 MRN Changed <> to "" on including GetSymbolFromPEF.h that was - breaking MW. - <5> 3/7/96 MRN Minor adjustments to build with the latest version of - SuperMarioLatestBuild name revision of MasterInterfaces. - <4> 10/13/94 JF Changed CFM error enums-- from 'cfragXXXErr' to 'fragXXX' - <3> 10/11/94 TS Move to new CFM error codes - <2> 9/16/94 TS Switch to pascal strings in SymbolCompare function - <1> 9/6/94 TS first checked in - -*/ - -typedef unsigned char Boolean; -typedef unsigned char *Ptr; -typedef char *StringPtr; - -typedef long OSErr; - -typedef unsigned long OSStatus; -typedef unsigned long ByteCount; -typedef unsigned long LogicalAddress; - -#define nil (void *)0 -#define false (0) -#define true (1) -#define noErr (0) - -#include "GetSymbolFromPEF.h" -//#include -//#include -//#include - - -unsigned char PEFGetNextByte (unsigned char** rawBuffer, long* rawBufferRemaining) -{ - *rawBufferRemaining = *rawBufferRemaining - 1; - return *(*rawBuffer)++; -} - - -unsigned long PEFGetCount(unsigned char** rawBuffer, long* rawBufferRemaining) -{ - register unsigned char b; - register unsigned long value = 0UL; - - /* Scan the count value. All required bytes MUST be present... */ - - b = PEFGetNextByte(rawBuffer, rawBufferRemaining); - if (!IS_LAST_PICNT_BYTE(b)) { /* if 1st byte is not that last... */ - value = CONCAT_PICNT(value, b); /* ...init value using 1st byte */ - - b = PEFGetNextByte(rawBuffer, rawBufferRemaining); - if (!IS_LAST_PICNT_BYTE(b)) { /* if 2nd byte is not the last... */ - value = CONCAT_PICNT(value, b); /* ...add in 2nd byte */ - - b = PEFGetNextByte(rawBuffer, rawBufferRemaining); - if (!IS_LAST_PICNT_BYTE(b)) { /* if 3rd byte is not the last... */ - value = CONCAT_PICNT(value, b); /* ...add in 3rd byte */ - - b = PEFGetNextByte(rawBuffer, rawBufferRemaining); - if (!IS_LAST_PICNT_BYTE(b)) { /* if 4th byte is not the last... */ - value = CONCAT_PICNT(value, b); /* ...add in 4th byte */ - - /* 5th byte is definitly last! */ - b = PEFGetNextByte(rawBuffer, rawBufferRemaining); - } - } - } - } - - value = CONCAT_PICNT(value, b); /* add in "last" byte (whichever one) */ - - return (value); -} - - -void MemSet (unsigned char* theBuffer, long theValue, long theCount) -{ - while (theCount-- > 0) - *theBuffer++ = theValue; -} - - -// UnpackPiData expands a compressed section into memory. - -OSErr UnpackPiData (LogicalAddress thePEFPtr, - SectionHeaderPtr sectionHeaderPtr, - LogicalAddress* theData) -{ - long cntX, cnt, rpt, dcnt, delta; - unsigned char op, b; - unsigned char* unpackBuffer; - unsigned char* originalUnpackBuffer; - unsigned char* endUnpackBuffer; - unsigned char* oldRawBuffer; - long oldRawBufferRemaining; - unsigned char* rawBuffer; - long rawBufferRemaining; - - // Verify incoming section is packed. - if (sectionHeaderPtr->regionKind != kPIDataSection) - return (paramErr); - - - // Allocate memory to unpack into - originalUnpackBuffer = (unsigned char*)NewPtrSys(sectionHeaderPtr->initSize); - if (originalUnpackBuffer == nil) - return memFullErr; - - unpackBuffer = originalUnpackBuffer; - endUnpackBuffer = unpackBuffer + sectionHeaderPtr->initSize; - rawBuffer = (unsigned char*)((unsigned long)thePEFPtr + sectionHeaderPtr->containerOffset); - rawBufferRemaining = sectionHeaderPtr->rawSize; - - - /* Expand the pidata instructions. EOF will terminate processing through the setjmp */ - /* on pidData_jmpbuf above... */ - - while (rawBufferRemaining > 0) { - - /* The first byte of each instruction contains the opcode and a count. If the count */ - /* is 0, the count starts in the next byte... */ - - /* Pick up the opcode and first count operand... */ - - b = PEFGetNextByte(&rawBuffer, &rawBufferRemaining); - - op = PIOP(b); - cnt = PICNT(b); - - if (cnt == 0) - cnt = PEFGetCount(&rawBuffer, &rawBufferRemaining); - - /* Unpack the data as a function of the opcode... */ - - switch (op) { - case kZero: /* zero out cnt bytes...*/ - if (unpackBuffer + cnt > endUnpackBuffer) - goto Error; - MemSet(unpackBuffer, 0, cnt); - unpackBuffer += cnt; - break; - - case kBlock: /* copy cnt bytes...*/ - if (unpackBuffer + cnt > endUnpackBuffer) - goto Error; - while (--cnt >= 0) - *unpackBuffer++ = PEFGetNextByte(&rawBuffer, &rawBufferRemaining); - break; - - case kRepeat: /* copy cnt bytes rpt times...*/ - rpt = PEFGetCount(&rawBuffer, &rawBufferRemaining) + 1; - - if (cnt == 1) - { - if (unpackBuffer + rpt > endUnpackBuffer) - goto Error; - b = PEFGetNextByte(&rawBuffer, &rawBufferRemaining); - MemSet(unpackBuffer, b, rpt); - unpackBuffer += rpt; - } - else - { - oldRawBufferRemaining = rawBufferRemaining; - oldRawBuffer = rawBuffer; - while (--rpt >= 0) { - if (unpackBuffer + cnt > endUnpackBuffer) - goto Error; - rawBufferRemaining = oldRawBufferRemaining; - rawBuffer = oldRawBuffer; - cntX = cnt; - while (--cntX >= 0) - *unpackBuffer++ = PEFGetNextByte(&rawBuffer, &rawBufferRemaining); - } - } - break; - - case kRepeatZero: /* copy cnt 0's and dcnt bytes rpt times*/ - dcnt = PEFGetCount(&rawBuffer, &rawBufferRemaining); /* ...then copy cnt more 0's */ - rpt = PEFGetCount(&rawBuffer, &rawBufferRemaining); - - goto rptPart1; /* jump into loop to copy 0's first... */ - - while (--rpt >= 0) { - if (unpackBuffer + dcnt > endUnpackBuffer) - goto Error; - cntX = dcnt; /* cnt repeating parts follow each other*/ - while (--cntX >= 0) - *unpackBuffer++ = PEFGetNextByte(&rawBuffer, &rawBufferRemaining); -rptPart1: /* non-repeating part is always 0's... */ - if (unpackBuffer + cnt > endUnpackBuffer) - goto Error; - MemSet(unpackBuffer, 0, cnt); - unpackBuffer += cnt; - } - - break; - - case kRepeatBlock: /* copy cnt repeating bytes and dcnt */ - dcnt = PEFGetCount(&rawBuffer, &rawBufferRemaining); /* non-repating bytes rcnt times... */ - rpt = PEFGetCount(&rawBuffer, &rawBufferRemaining); /* ...then copy cnt repeating bytes */ - - oldRawBufferRemaining = rawBufferRemaining; - oldRawBuffer = rawBuffer; - delta = 0; /* the repeating part and each non-rep */ - - goto rptPart2; /* jump into loop to copy rptng part 1st*/ - - while (--rpt >= 0) { - if (unpackBuffer + dcnt > endUnpackBuffer) - goto Error; - - rawBuffer = oldRawBuffer + cnt + delta; - rawBufferRemaining = oldRawBufferRemaining - (cnt + delta); - cntX = dcnt; - while (--cntX >= 0) - *unpackBuffer++ = PEFGetNextByte(&rawBuffer, &rawBufferRemaining); - delta += dcnt; -rptPart2: - if (unpackBuffer + cnt > endUnpackBuffer) - goto Error; - rawBuffer = oldRawBuffer; - rawBufferRemaining = oldRawBufferRemaining; - cntX = cnt; - while (--cntX >= 0) - *unpackBuffer++ = PEFGetNextByte(&rawBuffer, &rawBufferRemaining); - } - - rawBuffer = oldRawBuffer + cnt + delta; - rawBufferRemaining = oldRawBufferRemaining - (cnt + delta); - break; - - default: - goto Error; - } /* switch */ - } /* for */ - - *theData = originalUnpackBuffer; - - return noErr; - -Error: - if (unpackBuffer) - DisposePtr((Ptr)originalUnpackBuffer); - - *theData = nil; - - return paramErr; -} - - - - -// GetSymbolFromPEF will extract from a PEF container the data associated -// with a given symbol name. It requires that the PEF file have been previously -// loaded into memory. - -OSStatus GetSymbolFromPEF ( StringPtr theSymbolName, - LogicalAddress thePEFPtr, - LogicalAddress theSymbolPtr, - ByteCount theSymbolSize) -{ - ContainerHeaderPtr containerHeaderPtr; // Pointer to the Container Header - SectionHeaderPtr loaderSectionPtr; // Pointer to the Loader Section Header - SectionHeaderPtr exportSectionPtr; // Pointer to the Section Header with the symbol - short currentSection; - Boolean foundSection; - Boolean foundSymbol; - long numExportSymbols; - LoaderHeaderPtr loaderHeaderPtr; - ExportSymbolEntryPtr exportSymbolEntryPtr; - LoaderExportChainEntryPtr exportChainEntryPtr; - StringPtr exportSymbolName; - LogicalAddress expandedDataPtr; - unsigned char* sourceDataPtr; - unsigned char* destDataPtr; - - - containerHeaderPtr = (ContainerHeaderPtr)thePEFPtr; - - // Does the magic cookie match? - if (containerHeaderPtr->magicCookie != 'Joy!') - return cfragFragmentFormatErr; - - // Is this a known PEF container format? - if (containerHeaderPtr->containerID != 'peff') - return cfragFragmentFormatErr; - - // Validate parameters - if (theSymbolPtr == nil) - return paramErr; - - - // Find the loader section. - foundSection = false; - for (currentSection = 0; currentSection < containerHeaderPtr->nbrOfSections; currentSection++) - { - loaderSectionPtr = (SectionHeaderPtr)( (unsigned long)containerHeaderPtr + - sizeof(ContainerHeader) + - (sizeof(SectionHeader) * currentSection)); - if (loaderSectionPtr->regionKind == kLoaderSection) - { - foundSection = true; - break; - } - } - - if (foundSection == false) - return cfragNoSectionErr; - - // Get the number of export symbols. - loaderHeaderPtr = (LoaderHeaderPtr)((unsigned long)thePEFPtr + loaderSectionPtr->containerOffset); - numExportSymbols = loaderHeaderPtr->nbrExportSyms; - - // Start at the first exported symbol. - exportSymbolEntryPtr = (ExportSymbolEntryPtr)( (unsigned long)loaderHeaderPtr + - loaderHeaderPtr->slotTblOffset + - (sizeof(LoaderHashSlotEntry) * (1<hashSlotTblSz)) + - (sizeof(LoaderExportChainEntry) * numExportSymbols)); - - exportChainEntryPtr = (LoaderExportChainEntryPtr)( (unsigned long)loaderHeaderPtr + - loaderHeaderPtr->slotTblOffset + - (sizeof(LoaderHashSlotEntry) * (1<hashSlotTblSz))); - - foundSymbol = false; - while (numExportSymbols-- > 0) - { - exportSymbolName = (StringPtr)( (unsigned long)loaderHeaderPtr + - loaderHeaderPtr->strTblOffset + - (exportSymbolEntryPtr->class_and_name & 0x00FFFFFF)); - if (SymbolCompare(theSymbolName, exportSymbolName, exportChainEntryPtr->_h._h_h._nameLength)) - { - foundSymbol = true; - break; - } - exportSymbolEntryPtr = (ExportSymbolEntryPtr)(((int)exportSymbolEntryPtr) + 10); - exportChainEntryPtr++; - } - - if (foundSymbol == false) - return cfragNoSymbolErr; - - - // Found the symbol, so... let's go get the data! - - exportSectionPtr = (SectionHeaderPtr)( (unsigned long)containerHeaderPtr + - sizeof(ContainerHeader) + - (sizeof(SectionHeader) * exportSymbolEntryPtr->sectionNumber)); - - expandedDataPtr = nil; - - switch (exportSectionPtr -> regionKind) - { - case kPIDataSection: - - // Expand the data! (Not yet... :) - - if (UnpackPiData (thePEFPtr, exportSectionPtr, &expandedDataPtr) != noErr) - return cfragFragmentCorruptErr; - - sourceDataPtr = (unsigned char*)((unsigned long)expandedDataPtr + - exportSymbolEntryPtr->address); - break; - - default: - sourceDataPtr = (unsigned char*)((unsigned long)thePEFPtr + - exportSectionPtr->containerOffset + - exportSymbolEntryPtr->address); - break; - } - - - // Copy the data! - - destDataPtr = (unsigned char*)theSymbolPtr; - - - while (theSymbolSize-- > 0) - *destDataPtr++ = *sourceDataPtr++; - - - // Cleanup any expanded data - - if (expandedDataPtr != nil) - DisposePtr((Ptr)expandedDataPtr); - - return noErr; -} - - -// -// SymbolCompare -// -// theExportSymbol is NOT null-terminated, so use theExportSymbolLength. -// -Boolean SymbolCompare ( StringPtr theLookedForSymbol, - StringPtr theExportSymbol, - unsigned long theExportSymbolLength) -{ - unsigned char* p1 = (unsigned char*)theLookedForSymbol; - unsigned char* p2 = (unsigned char*)theExportSymbol; - - // Same length? - // (skip over p string len byte) - if ( theExportSymbolLength != *p1++ ) - return false; - - while ( theExportSymbolLength-- != 0 ) - { - if ( *p1++ != *p2++ ) - return false; - } - - return true; -} diff --git a/bootx.tproj/sl.subproj/appleboot.h b/bootx.tproj/sl.subproj/appleboot.h new file mode 100644 index 0000000..8d77fa2 --- /dev/null +++ b/bootx.tproj/sl.subproj/appleboot.h @@ -0,0 +1,165 @@ +/* + * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. + * + * @APPLE_LICENSE_HEADER_START@ + * + * The contents of this file constitute Original Code as defined in and + * are subject to the Apple Public Source License Version 1.1 (the + * "License"). You may not use this file except in compliance with the + * License. Please obtain a copy of the License at + * http://www.apple.com/publicsource and read it before using this file. + * + * This Original Code and all software distributed under the License are + * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the + * License for the specific language governing rights and limitations + * under the License. + * + * @APPLE_LICENSE_HEADER_END@ + */ +/* + * appleboot.h - Apple logo shown durring boot + * + * Copyright (c) 2002 Apple Computer, Inc. + * + * DRI: Josh de Cesare + */ + +#define kAppleBootWidth (128) +#define kAppleBootHeight (128) +#define kAppleBootOffset (0) +#define kAppleBootFrames (1) +#define kAppleBootFPS (0) + +const unsigned char gAppleBootPict[] = { + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x17,0x34,0x47,0x50,0x50,0x50,0x13,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0x20,0x40,0x50,0x50,0x50,0x50,0x50,0x50,0x13,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1a,0x42,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0xfa,0x0a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x07,0x34,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x43,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0e,0x43,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x36,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x14,0x4a,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x20,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x12,0x4b,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4d,0x0b,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0b,0x48,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0xf9,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0x3e,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x2f,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x48,0x06,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x15,0x4f,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x27,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x3f,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x45,0xf7,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1d,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x19,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x40,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x2f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x15,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x3b,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x34,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x3f,0x07,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0xf7,0x47,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0xf9,0x07,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x14,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x36,0xf7,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x24,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4d,0x28,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x33,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x3f,0x14,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x3a,0x50,0x50,0x50,0x50,0x50,0x50,0x41,0x1f,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x3a,0x50,0x50,0x50,0x48,0x35,0x17,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x15,0x33,0x27,0x15,0xf7,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x08,0x0e,0x13,0x14,0x12,0x0d,0x06,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x0b,0x12,0x17,0x19,0x15,0x11,0x08,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x11,0x26,0x39,0x44,0x4c,0x4f,0x50,0x50,0x4f,0x4d,0x4a,0x3f,0x31,0x19,0xf7,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0b,0x1c,0x2e,0xf9,0x46,0x4d,0x50,0x50,0x50,0x50,0x4f,0x4b,0x42,0x34,0x1f,0x0a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0xf7,0x21,0x3f,0x4f,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x47,0x2d,0x0d,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0d,0x25,0x3d,0xfa,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4c,0x37,0x15,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x25,0x45,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4d,0x39,0x19,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x09,0x21,0xf9,0x4d,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0xf9,0x15,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x17,0x42,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x42,0x27,0x0e,0x02,0x01,0x01,0x01,0x02,0x0b,0x1f,0x38,0x4b,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x33,0x06,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0x2e,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4d,0x43,0x3a,0x37,0x3a,0x42,0x4d,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x42,0x0e,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0xf9,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x48,0x13,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0d,0x45,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4b,0x12,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x48,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x48,0x0b,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0c,0x48,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x3d,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x07,0x42,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x21,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x37,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x42,0x12,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x22,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x34,0xf7,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0b,0x4b,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x2c,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x36,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x29,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x11,0x4f,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x2e,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x36,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x3a,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0b,0xfa,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x46,0x08,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x26,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4e,0x15,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x40,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x31,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0e,0x4e,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x49,0x08,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x25,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x29,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x39,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4c,0x0a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0xf7,0x47,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x3a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x4f,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x22,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1d,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x12,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x29,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4b,0x07,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x36,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x42,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0xf9,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x3e,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x42,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x3c,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x46,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x3b,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x48,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0xf9,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x48,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x3f,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x46,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x48,0xf7,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x43,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4e,0x0e,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x3f,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x1c,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x3a,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x33,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x34,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x46,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x2c,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x19,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1f,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x3a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x15,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4e,0x11,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0xfa,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x37,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x42,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4f,0x15,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x37,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x42,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x25,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x2c,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x13,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4e,0x15,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0xf7,0x47,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x48,0x0b,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x37,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x44,0x0a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1f,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x44,0x0d,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0xfa,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x48,0x17,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x3a,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4f,0x2c,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1f,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x41,0x19,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x07,0x4a,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x44,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x33,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x36,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x14,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x3f,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4d,0x0b,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1e,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x3c,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x44,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x20,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x20,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4a,0x07,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x43,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x30,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1c,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4d,0x0e,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x3e,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x36,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x14,0x4f,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4d,0x0e,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x32,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x33,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x07,0x47,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4b,0x0b,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1c,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x26,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x37,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x41,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x08,0x48,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4e,0x13,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x19,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x2d,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x2e,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x3f,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf9,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4a,0x0d,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x09,0x46,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4e,0x19,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x11,0x4b,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x25,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x17,0x4d,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x2e,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1b,0x4d,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x31,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x17,0x4a,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4d,0x44,0x3b,0x34,0x2e,0x2c,0x2e,0x35,0x3e,0x4a,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x2e,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0e,0x41,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4a,0x37,0x1f,0x0c,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x06,0x15,0x2d,0x41,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4a,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0xf7,0x2e,0xfa,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x4f,0xf9,0x1e,0x07,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x14,0x31,0x48,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x37,0x0c,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0d,0x2f,0x45,0x4f,0x50,0x50,0x50,0x50,0x50,0x4f,0x43,0x2e,0x11,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x07,0x1f,0x3c,0x4c,0x50,0x50,0x50,0x50,0x4f,0x46,0x33,0x13,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x12,0x1f,0x26,0x28,0x26,0x1e,0x10,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x09,0x16,0x1e,0x1f,0x1c,0x11,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01 +}; diff --git a/bootx.tproj/sl.subproj/bad_system.h b/bootx.tproj/sl.subproj/bad_system.h deleted file mode 100644 index 5a1b500..0000000 --- a/bootx.tproj/sl.subproj/bad_system.h +++ /dev/null @@ -1,95 +0,0 @@ -/* - * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. - * - * @APPLE_LICENSE_HEADER_START@ - * - * The contents of this file constitute Original Code as defined in and - * are subject to the Apple Public Source License Version 1.1 (the - * "License"). You may not use this file except in compliance with the - * License. Please obtain a copy of the License at - * http://www.apple.com/publicsource and read it before using this file. - * - * This Original Code and all software distributed under the License are - * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER - * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, - * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the - * License for the specific language governing rights and limitations - * under the License. - * - * @APPLE_LICENSE_HEADER_END@ - */ -/* - * bad_system.h - Broken System Folder Icon. - * - * Copyright (c) 1998-2000 Apple Computer, Inc. - * - * DRI: Josh de Cesare - */ - -static char gBrokenSystemFolderIcon[ 32 * 32 ] = { - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xff,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xff,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xff,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xff,0x80,0x80, - 0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x80, - 0xff,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xff,0x80, - 0x80,0x80,0x80,0x80,0xff,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xff, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x80,0x80, - 0x80,0x80,0x80,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff, - 0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xff,0x80,0x80, - 0x80,0x80,0x80,0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xf7,0xff, - 0xff,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0x00,0xff,0xff,0xff,0x80,0x80,0x80, - 0x80,0x80,0xff,0xff,0xff,0xff,0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xff, - 0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xff,0xf7,0xf7,0xff,0x80,0x80,0x80, - 0x80,0x80,0xff,0xf7,0xfc,0xf7,0xf7,0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xf7,0xff, - 0xff,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xff,0xf7,0xfc,0xff,0x80,0x80,0x80, - 0x80,0x80,0xff,0xff,0xf7,0xff,0xf7,0xff,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xff, - 0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xff,0xf7,0xfc,0x00,0xff,0x80,0x80, - 0x80,0x80,0x80,0xff,0x00,0xf7,0xf7,0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xf7,0xff, - 0xff,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xff,0xf7,0xfc,0xff,0x80,0x80,0x80, - 0x80,0x80,0xff,0x00,0xfc,0x00,0xf7,0xff,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xff, - 0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xff,0xf7,0xfc,0x00,0xff,0x80,0x80, - 0x80,0x80,0x80,0xff,0x00,0xf7,0xf7,0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xf7,0xff, - 0xff,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xff,0xf7,0xfc,0xff,0x80,0x80,0x80, - 0x80,0x80,0xff,0x00,0xfc,0x00,0xf7,0xff,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xff, - 0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xff,0xf7,0xfc,0x00,0xff,0x80,0x80, - 0x80,0x80,0x80,0xff,0x00,0xf7,0xf7,0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xf7,0xff, - 0xff,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xff,0xf7,0xf7,0xff,0x80,0x80,0x80, - 0x80,0x80,0xff,0x00,0xf7,0x00,0xf7,0xff,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xff, - 0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xff,0xf7,0xf7,0xf7,0xff,0x80,0x80, - 0x80,0x80,0x80,0xff,0xf7,0xf7,0xf7,0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xf7,0xff, - 0xff,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xff,0xf7,0xff,0xf7,0xff,0x80,0x80, - 0x80,0x80,0x80,0xff,0xf7,0xf7,0xf7,0xff,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xff, - 0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xff,0xf7,0xfc,0xf7,0xff,0x80,0x80, - 0x80,0x80,0x80,0xff,0xff,0xff,0xf7,0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xf7,0xff, - 0xff,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xff,0xf7,0xf7,0xff,0x80,0x80,0x80, - 0x80,0x80,0xff,0xf7,0xf7,0xf7,0xf7,0xff,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xff, - 0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xf7,0xff,0xff,0x80,0x80,0x80,0x80, - 0x80,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xf7,0xff, - 0xff,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0x00,0xff,0xff,0x80,0x80,0x80,0x80, - 0x80,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xff, - 0xff,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xff,0x80,0x80,0x80,0x80,0x80, - 0xff,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0x00,0xf7,0xf7,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0x80, - 0x80,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff -}; diff --git a/bootx.tproj/sl.subproj/clut.h b/bootx.tproj/sl.subproj/clut.h index 805d08e..867b03b 100644 --- a/bootx.tproj/sl.subproj/clut.h +++ b/bootx.tproj/sl.subproj/clut.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. + * Copyright (c) 2002 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * @@ -20,76 +20,76 @@ * @APPLE_LICENSE_HEADER_END@ */ /* - * clut.h - Default Mac OS 7 System CLUT. + * clut.h - Custom CLUT for xnu console and boot graphics * - * Copyright (c) 1999-2000 Apple Computer, Inc. + * Copyright (c) 1999-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ const unsigned char gClut[] = { - 0xFF,0xFF,0xFF, 0xFF,0xFF,0xCC, 0xFF,0xFF,0x99, 0xFF,0xFF,0x66, - 0xFF,0xFF,0x33, 0xFF,0xFF,0x00, 0xFF,0xCC,0xFF, 0xFF,0xCC,0xCC, - 0xFF,0xCC,0x99, 0xFF,0xCC,0x66, 0xFF,0xCC,0x33, 0xFF,0xCC,0x00, - 0xFF,0x99,0xFF, 0xFF,0x99,0xCC, 0xFF,0x99,0x99, 0xFF,0x99,0x66, - 0xFF,0x99,0x33, 0xFF,0x99,0x00, 0xFF,0x66,0xFF, 0xFF,0x66,0xCC, - 0xFF,0x66,0x99, 0xFF,0x66,0x66, 0xFF,0x66,0x33, 0xFF,0x66,0x00, - 0xFF,0x33,0xFF, 0xFF,0x33,0xCC, 0xFF,0x33,0x99, 0xFF,0x33,0x66, - 0xFF,0x33,0x33, 0xFF,0x33,0x00, 0xFF,0x00,0xFF, 0xFF,0x00,0xCC, - 0xFF,0x00,0x99, 0xFF,0x00,0x66, 0xFF,0x00,0x33, 0xFF,0x00,0x00, - 0xCC,0xFF,0xFF, 0xCC,0xFF,0xCC, 0xCC,0xFF,0x99, 0xCC,0xFF,0x66, - 0xCC,0xFF,0x33, 0xCC,0xFF,0x00, 0xCC,0xCC,0xFF, 0xCC,0xCC,0xCC, - 0xCC,0xCC,0x99, 0xCC,0xCC,0x66, 0xCC,0xCC,0x33, 0xCC,0xCC,0x00, - 0xCC,0x99,0xFF, 0xCC,0x99,0xCC, 0xCC,0x99,0x99, 0xCC,0x99,0x66, - 0xCC,0x99,0x33, 0xCC,0x99,0x00, 0xCC,0x66,0xFF, 0xCC,0x66,0xCC, - 0xCC,0x66,0x99, 0xCC,0x66,0x66, 0xCC,0x66,0x33, 0xCC,0x66,0x00, - 0xCC,0x33,0xFF, 0xCC,0x33,0xCC, 0xCC,0x33,0x99, 0xCC,0x33,0x66, - 0xCC,0x33,0x33, 0xCC,0x33,0x00, 0xCC,0x00,0xFF, 0xCC,0x00,0xCC, - 0xCC,0x00,0x99, 0xCC,0x00,0x66, 0xCC,0x00,0x33, 0xCC,0x00,0x00, - 0x99,0xFF,0xFF, 0x99,0xFF,0xCC, 0x99,0xFF,0x99, 0x99,0xFF,0x66, - 0x99,0xFF,0x33, 0x99,0xFF,0x00, 0x99,0xCC,0xFF, 0x99,0xCC,0xCC, - 0x99,0xCC,0x99, 0x99,0xCC,0x66, 0x99,0xCC,0x33, 0x99,0xCC,0x00, - 0x99,0x99,0xFF, 0x99,0x99,0xCC, 0x99,0x99,0x99, 0x99,0x99,0x66, - 0x99,0x99,0x33, 0x99,0x99,0x00, 0x99,0x66,0xFF, 0x99,0x66,0xCC, - 0x99,0x66,0x99, 0x99,0x66,0x66, 0x99,0x66,0x33, 0x99,0x66,0x00, - 0x99,0x33,0xFF, 0x99,0x33,0xCC, 0x99,0x33,0x99, 0x99,0x33,0x66, - 0x99,0x33,0x33, 0x99,0x33,0x00, 0x99,0x00,0xFF, 0x99,0x00,0xCC, - 0x99,0x00,0x99, 0x99,0x00,0x66, 0x99,0x00,0x33, 0x99,0x00,0x00, - 0x66,0xFF,0xFF, 0x66,0xFF,0xCC, 0x66,0xFF,0x99, 0x66,0xFF,0x66, - 0x66,0xFF,0x33, 0x66,0xFF,0x00, 0x66,0xCC,0xFF, 0x66,0xCC,0xCC, - 0x66,0xCC,0x99, 0x66,0xCC,0x66, 0x66,0xCC,0x33, 0x66,0xCC,0x00, - 0x66,0x99,0xFF, 0x66,0x99,0xCC, 0x66,0x99,0x99, 0x66,0x99,0x66, - 0x66,0x99,0x33, 0x66,0x99,0x00, 0x66,0x66,0xFF, 0x66,0x66,0xCC, - 0x66,0x66,0x99, 0x66,0x66,0x66, 0x66,0x66,0x33, 0x66,0x66,0x00, - 0x66,0x33,0xFF, 0x66,0x33,0xCC, 0x66,0x33,0x99, 0x66,0x33,0x66, - 0x66,0x33,0x33, 0x66,0x33,0x00, 0x66,0x00,0xFF, 0x66,0x00,0xCC, - 0x66,0x00,0x99, 0x66,0x00,0x66, 0x66,0x00,0x33, 0x66,0x00,0x00, - 0x33,0xFF,0xFF, 0x33,0xFF,0xCC, 0x33,0xFF,0x99, 0x33,0xFF,0x66, - 0x33,0xFF,0x33, 0x33,0xFF,0x00, 0x33,0xCC,0xFF, 0x33,0xCC,0xCC, - 0x33,0xCC,0x99, 0x33,0xCC,0x66, 0x33,0xCC,0x33, 0x33,0xCC,0x00, - 0x33,0x99,0xFF, 0x33,0x99,0xCC, 0x33,0x99,0x99, 0x33,0x99,0x66, - 0x33,0x99,0x33, 0x33,0x99,0x00, 0x33,0x66,0xFF, 0x33,0x66,0xCC, - 0x33,0x66,0x99, 0x33,0x66,0x66, 0x33,0x66,0x33, 0x33,0x66,0x00, - 0x33,0x33,0xFF, 0x33,0x33,0xCC, 0x33,0x33,0x99, 0x33,0x33,0x66, - 0x33,0x33,0x33, 0x33,0x33,0x00, 0x33,0x00,0xFF, 0x33,0x00,0xCC, - 0x33,0x00,0x99, 0x33,0x00,0x66, 0x33,0x00,0x33, 0x33,0x00,0x00, - 0x00,0xFF,0xFF, 0x00,0xFF,0xCC, 0x00,0xFF,0x99, 0x00,0xFF,0x66, - 0x00,0xFF,0x33, 0x00,0xFF,0x00, 0x00,0xCC,0xFF, 0x00,0xCC,0xCC, - 0x00,0xCC,0x99, 0x00,0xCC,0x66, 0x00,0xCC,0x33, 0x00,0xCC,0x00, - 0x00,0x99,0xFF, 0x00,0x99,0xCC, 0x00,0x99,0x99, 0x00,0x99,0x66, - 0x00,0x99,0x33, 0x00,0x99,0x00, 0x00,0x66,0xFF, 0x00,0x66,0xCC, - 0x00,0x66,0x99, 0x00,0x66,0x66, 0x00,0x66,0x33, 0x00,0x66,0x00, - 0x00,0x33,0xFF, 0x00,0x33,0xCC, 0x00,0x33,0x99, 0x00,0x33,0x66, - 0x00,0x33,0x33, 0x00,0x33,0x00, 0x00,0x00,0xFF, 0x00,0x00,0xCC, - 0x00,0x00,0x99, 0x00,0x00,0x66, 0x00,0x00,0x33, 0xEE,0x00,0x00, - 0xDD,0x00,0x00, 0xBB,0x00,0x00, 0xAA,0x00,0x00, 0x88,0x00,0x00, - 0x77,0x00,0x00, 0x55,0x00,0x00, 0x44,0x00,0x00, 0x22,0x00,0x00, - 0x11,0x00,0x00, 0x00,0xEE,0x00, 0x00,0xDD,0x00, 0x00,0xBB,0x00, - 0x00,0xAA,0x00, 0x00,0x88,0x00, 0x00,0x77,0x00, 0x00,0x55,0x00, - 0x00,0x44,0x00, 0x00,0x22,0x00, 0x00,0x11,0x00, 0x00,0x00,0xEE, - 0x00,0x00,0xDD, 0x00,0x00,0xBB, 0x00,0x00,0xAA, 0x00,0x00,0x88, - 0x00,0x00,0x77, 0x00,0x00,0x55, 0x00,0x00,0x44, 0x00,0x00,0x22, - 0x00,0x00,0x11, 0xEE,0xEE,0xEE, 0xDD,0xDD,0xDD, 0xBB,0xBB,0xBB, - 0xAA,0xAA,0xAA, 0x88,0x88,0x88, 0x77,0x77,0x77, 0x55,0x55,0x55, - 0x44,0x44,0x44, 0x22,0x22,0x22, 0x11,0x11,0x11, 0x00,0x00,0x00 + 0xff,0xff,0xff, 0xbf,0xbf,0xbf, 0xbe,0xbe,0xbe, 0xbd,0xbd,0xbd, + 0xbc,0xbc,0xbc, 0xff,0xff,0x00, 0xba,0xba,0xba, 0xb9,0xb9,0xb9, + 0xb8,0xb8,0xb8, 0xb7,0xb7,0xb7, 0xb6,0xb6,0xb6, 0xb5,0xb5,0xb5, + 0xb4,0xb4,0xb4, 0xb3,0xb3,0xb3, 0xb2,0xb2,0xb2, 0x00,0x00,0x00, + 0xb1,0xb1,0xb1, 0xb0,0xb0,0xb0, 0xaf,0xaf,0xaf, 0xae,0xae,0xae, + 0xad,0xad,0xad, 0xac,0xac,0xac, 0xab,0xab,0xab, 0xaa,0xaa,0xaa, + 0xff,0x00,0xff, 0xa9,0xa9,0xa9, 0xa8,0xa8,0xa8, 0xa7,0xa7,0xa7, + 0xa6,0xa6,0xa6, 0xa5,0xa5,0xa5, 0xa4,0xa4,0xa4, 0xa3,0xa3,0xa3, + 0xa2,0xa2,0xa2, 0xa1,0xa1,0xa1, 0xa0,0xa0,0xa0, 0xff,0x00,0x00, + 0x9f,0x9f,0x9f, 0x9e,0x9e,0x9e, 0x9d,0x9d,0x9d, 0x9c,0x9c,0x9c, + 0x9b,0x9b,0x9b, 0x9a,0x9a,0x9a, 0xcc,0xcc,0xff, 0xcc,0xcc,0xcc, + 0x99,0x99,0x99, 0x98,0x98,0x98, 0x97,0x97,0x97, 0x96,0x96,0x96, + 0x95,0x95,0x95, 0x94,0x94,0x94, 0x93,0x93,0x93, 0x92,0x92,0x92, + 0x91,0x91,0x91, 0x90,0x90,0x90, 0x8f,0x8f,0x8f, 0x8e,0x8e,0x8e, + 0x8d,0x8d,0x8d, 0x8c,0x8c,0x8c, 0x8b,0x8b,0x8b, 0x8a,0x8a,0x8a, + 0x89,0x89,0x89, 0x87,0x87,0x87, 0x86,0x86,0x86, 0x85,0x85,0x85, + 0x84,0x84,0x84, 0x83,0x83,0x83, 0x82,0x82,0x82, 0x81,0x81,0x81, + 0x80,0x80,0x80, 0x7f,0x7f,0x7f, 0x7e,0x7e,0x7e, 0x7d,0x7d,0x7d, + 0x7c,0x7c,0x7c, 0x7b,0x7b,0x7b, 0x7a,0x7a,0x7a, 0x79,0x79,0x79, + 0x78,0x78,0x78, 0x76,0x76,0x76, 0x75,0x75,0x75, 0x74,0x74,0x74, + 0x73,0x73,0x73, 0x72,0x72,0x72, 0x71,0x71,0x71, 0x70,0x70,0x70, + 0x6f,0x6f,0x6f, 0x6e,0x6e,0x6e, 0x6d,0x6d,0x6d, 0x6c,0x6c,0x6c, + 0x6b,0x6b,0x6b, 0x6a,0x6a,0x6a, 0x69,0x69,0x69, 0x68,0x68,0x68, + 0x67,0x67,0x67, 0x66,0x66,0x66, 0x64,0x64,0x64, 0x63,0x63,0x63, + 0x62,0x62,0x62, 0x61,0x61,0x61, 0x60,0x60,0x60, 0x5f,0x5f,0x5f, + 0x5e,0x5e,0x5e, 0x5d,0x5d,0x5d, 0x5c,0x5c,0x5c, 0x5b,0x5b,0x5b, + 0x5a,0x5a,0x5a, 0x59,0x59,0x59, 0x58,0x58,0x58, 0x57,0x57,0x57, + 0x56,0x56,0x56, 0x54,0x54,0x54, 0x53,0x53,0x53, 0x52,0x52,0x52, + 0x51,0x51,0x51, 0x50,0x50,0x50, 0x4f,0x4f,0x4f, 0x4e,0x4e,0x4e, + 0x4d,0x4d,0x4d, 0x4c,0x4c,0x4c, 0x4b,0x4b,0x4b, 0x4a,0x4a,0x4a, + 0x49,0x49,0x49, 0x48,0x48,0x48, 0x47,0x47,0x47, 0x46,0x46,0x46, + 0x45,0x45,0x45, 0x43,0x43,0x43, 0x42,0x42,0x42, 0x41,0x41,0x41, + 0x40,0x40,0x40, 0x3f,0x3f,0x3f, 0x3e,0x3e,0x3e, 0x3d,0x3d,0x3d, + 0x3c,0x3c,0x3c, 0x3b,0x3b,0x3b, 0x3a,0x3a,0x3a, 0x39,0x39,0x39, + 0x38,0x38,0x38, 0x37,0x37,0x37, 0x36,0x36,0x36, 0x35,0x35,0x35, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x00,0xff,0xff, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x00,0xff,0x00, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x00,0x00,0xff, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0xdd,0x00,0x00, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x00,0xbb,0x00, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0xbb,0xbb,0xbb, + 0x65,0x65,0x65, 0x88,0x88,0x88, 0x77,0x77,0x77, 0x55,0x55,0x55, + 0x44,0x44,0x44, 0x22,0x22,0x22, 0x65,0x65,0x65, 0x00,0x00,0x00 }; diff --git a/bootx.tproj/sl.subproj/display.c b/bootx.tproj/sl.subproj/display.c index 000f2d6..a4bc44b 100644 --- a/bootx.tproj/sl.subproj/display.c +++ b/bootx.tproj/sl.subproj/display.c @@ -20,9 +20,9 @@ * @APPLE_LICENSE_HEADER_END@ */ /* - * display.c - Functions to manage and find displays. + * display.c - Functions to manage and find display. * - * Copyright (c) 1998-2000 Apple Computer, Inc. + * Copyright (c) 1998-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ @@ -30,15 +30,9 @@ #include #include "clut.h" - -#include "bad_system.h" - -#if kMacOSXServer -#include "images.h" -#else -#include "happy_mac.h" -#include "happy_foot.h" -#endif +#include "appleboot.h" +#include "failedboot.h" +#include "netboot.h" struct DisplayInfo { CICell screenPH; @@ -53,67 +47,21 @@ struct DisplayInfo { typedef struct DisplayInfo DisplayInfo, *DisplayInfoPtr; -// The Driver Description -enum { - kInitialDriverDescriptor = 0, - kVersionOneDriverDescriptor = 1, - kTheDescriptionSignature = 'mtej', - kDriverDescriptionSignature = 'pdes' -}; - -struct DriverType { - unsigned char nameInfoStr[32]; // Driver Name/Info String - unsigned long version; // Driver Version Number - really NumVersion -}; -typedef struct DriverType DriverType; - -struct DriverDescription { - unsigned long driverDescSignature; // Signature field of this structure - unsigned long driverDescVersion; // Version of this data structure - DriverType driverType; // Type of Driver - char otherStuff[512]; -}; -typedef struct DriverDescription DriverDescription; - -#define kNumNetDrivers (7) - -char *gNetDriverFileNames[kNumNetDrivers] = { - "ATYRagePro_ndrv", - "Spinnaker_ndrv", - "ATYLT-G_ndrv", - "ATYLTPro_ndrv", - "chips65550_ndrv", - "control_ndrv", - "ATYRage_ndrv" -}; - -char *gNetDriverMatchNames[kNumNetDrivers] = { - "ATY,mach64_3DUPro", - "ATY,mach64", - "ATY,264LT-G", - "ATY,RageLTPro", - "chips65550", - "control", - "ATY,mach64_3DU" -}; static long FindDisplays(void); static long OpenDisplays(void); -static void DumpDisplaysInfo(void); static long OpenDisplay(long displayNum); static long InitDisplay(long displayNum); -static long NetLoadDrivers(void); -static long LoadDisplayDriver(char *fileSpec); static long LookUpCLUTIndex(long index, long depth); -#if 0 -static long DiskLoadDrivers(void); -#endif - static long gNumDisplays; static long gMainDisplayNum; static DisplayInfo gDisplays[16]; +static unsigned char *gAppleBoot; +static unsigned char *gNetBoot; +static unsigned char *gFailedBoot; + // Public Functions long InitDisplays(void) @@ -125,208 +73,159 @@ long InitDisplays(void) } -long LoadDisplayDrivers(void) -{ - long ret; - - // Don't bother if there are no displays. - if (gNumDisplays == 0) return 0; - - ret = NetLoadDrivers(); - -#if 0 - switch (gBootFileType) { - case kNetworkDeviceType : - ret = NetLoadDrivers(); - break; - - case kBlockDeviceType : - ret = DiskLoadDrivers(); - break; - - case kUnknownDeviceType : - ret = 0; - } -#endif - - return ret; -} - - -long DrawSplashScreen(void) +long DrawSplashScreen(long stage) { DisplayInfoPtr display; - unsigned char *happyMac, *happyFoot; - short *happyMac16, *happyFoot16; - long *happyMac32, *happyFoot32; + short *appleBoot16, *netBoot16; + long *appleBoot32, *netBoot32; long cnt, x, y, pixelSize; if (gMainDisplayNum == -1) return 0; display = &gDisplays[gMainDisplayNum]; - // Make sure the boot display is marked. - SetProp(display->screenPH, "AAPL,boot-display", NULL, 0); - -#if kMacOSXServer - x = (display->width - BIG_WIDTH) / 2; - y = ((display->height - BIG_HEIGHT)) / 2 + BIG_DY; - - CallMethod_5_0(display->screenIH, "draw-rectangle", (long)bigImage, - x, y, BIG_WIDTH, BIG_HEIGHT); - - x = (display->width - SPIN_WIDTH) / 2; - y = ((display->height - SPIN_WIDTH) / 2) + 28; - - // Set up the spin cursor. - SpinInit(0, display->screenIH, waitCursors, - x, y, SPIN_WIDTH, SPIN_WIDTH); - - // Do a spin to start things off. - Spin(); - -#else - - switch (display->depth) { - case 16 : - happyMac16 = malloc(kHappyMacWidth * kHappyMacHeight * 2); - for (cnt = 0; cnt < (kHappyMacWidth * kHappyMacHeight); cnt++) - happyMac16[cnt] = LookUpCLUTIndex(gHappyMacIcon[cnt], 16); - happyMac = (char *)happyMac16; - break; - - case 32 : - happyMac32 = malloc(kHappyMacWidth * kHappyMacHeight * 4); - for (cnt = 0; cnt < (kHappyMacWidth * kHappyMacHeight); cnt++) - happyMac32[cnt] = LookUpCLUTIndex(gHappyMacIcon[cnt], 32); - happyMac = (char *)happyMac32; - break; - - default : - happyMac = gHappyMacIcon; - break; - } - - x = (display->width - kHappyMacWidth) / 2; - y = (display->height - kHappyMacHeight) / 2; - - CallMethod_5_0(display->screenIH, "draw-rectangle", (long)happyMac, - x, y, kHappyMacWidth, kHappyMacHeight); - - if (gBootFileType != kNetworkDeviceType) { - SpinInit(0, 0, NULL, 0, 0, 0, 0, 0); - } else { - Interpret_1_0("ms", 1000); + switch (stage) { + case 0 : + // Make sure the boot display is marked. + SetProp(display->screenPH, "AAPL,boot-display", NULL, 0); switch (display->depth) { case 16 : - pixelSize = 2; - happyFoot16 = malloc(kHappyFootWidth * kHappyFootHeight * 2); - for (cnt = 0; cnt < (kHappyFootWidth * kHappyFootHeight); cnt++) - happyFoot16[cnt] = LookUpCLUTIndex(gHappyFootPict[cnt], 16); - happyFoot = (char *)happyFoot16; + appleBoot16 = + AllocateBootXMemory(kAppleBootWidth * kAppleBootHeight * 2); + for (cnt = 0; cnt < (kAppleBootWidth * kAppleBootHeight); cnt++) + appleBoot16[cnt] = LookUpCLUTIndex(gAppleBootPict[cnt], 16); + gAppleBoot = (char *)appleBoot16; break; case 32 : - pixelSize = 4; - happyFoot32 = malloc(kHappyFootWidth * kHappyFootHeight * 4); - for (cnt = 0; cnt < (kHappyFootWidth * kHappyFootHeight); cnt++) - happyFoot32[cnt] = LookUpCLUTIndex(gHappyFootPict[cnt], 32); - happyFoot = (char *)happyFoot32; + appleBoot32 = + AllocateBootXMemory(kAppleBootWidth * kAppleBootHeight * 4); + for (cnt = 0; cnt < (kAppleBootWidth * kAppleBootHeight); cnt++) + appleBoot32[cnt] = LookUpCLUTIndex(gAppleBootPict[cnt], 32); + gAppleBoot = (char *)appleBoot32; break; default : - pixelSize = 1; - happyFoot = gHappyFootPict; + gAppleBoot = (unsigned char *)gAppleBootPict; break; } - for (cnt = 0; cnt < kHappyFootHeight - 1; cnt++) { + x = (display->width - kAppleBootWidth) / 2; + y = (display->height - kAppleBootHeight) / 2 + kAppleBootOffset; + + CallMethod(5, 0, display->screenIH, "draw-rectangle", (long)gAppleBoot, + x, y, kAppleBootWidth, kAppleBootHeight); + + if (gBootFileType != kNetworkDeviceType) { + SpinInit(0, 0, NULL, 0, 0, 0, 0, 0, 0, 0); + } else { + switch (display->depth) { + case 16 : + pixelSize = 2; + netBoot16 = + AllocateBootXMemory(kNetBootWidth * kNetBootHeight * kNetBootFrames * 2); + for (cnt = 0; cnt < (kNetBootWidth * kNetBootHeight * kNetBootFrames); cnt++) + netBoot16[cnt] = LookUpCLUTIndex(gNetBootPict[cnt], 16); + gNetBoot = (char *)netBoot16; + break; + + case 32 : + pixelSize = 4; + netBoot32 = + AllocateBootXMemory(kNetBootWidth * kNetBootHeight * kNetBootFrames * 4); + for (cnt = 0; cnt < (kNetBootWidth * kNetBootHeight * kNetBootFrames); cnt++) + netBoot32[cnt] = LookUpCLUTIndex(gNetBootPict[cnt], 32); + gNetBoot = (char *)netBoot32; + break; + + default : + pixelSize = 1; + gNetBoot = (unsigned char *)gNetBootPict; + break; + } - CallMethod_5_0(display->screenIH, "draw-rectangle", (long)happyMac, - x, y - cnt, kHappyMacWidth, kHappyMacHeight); + x = (display->width - kNetBootWidth) / 2; + y = (display->height - kNetBootHeight) / 2 + kNetBootOffset; - CallMethod_5_0(display->screenIH, "draw-rectangle", - (long)happyFoot + pixelSize * - kHappyFootWidth * (kHappyFootHeight - cnt - 1), - x + 6, y + kHappyMacHeight - 1 - cnt, - kHappyFootWidth, cnt + 1); + CallMethod(5, 0, display->screenIH, "draw-rectangle", (long)gNetBoot, + x, y, kNetBootWidth, kNetBootHeight); - CallMethod_5_0(display->screenIH, "draw-rectangle", - (long)happyFoot + pixelSize * - kHappyFootWidth * (kHappyFootHeight - cnt - 1), - x + 15, y + kHappyMacHeight - 1 - cnt, - kHappyFootWidth, cnt + 1); + // Set up the spin cursor. + SpinInit(display->screenIH, gNetBoot, + x, y, + kNetBootWidth, kNetBootHeight, + kNetBootFrames, kNetBootFPS, pixelSize, 0); + } + break; + + case 1 : + x = (display->width - kAppleBootWidth) / 2; + y = (display->height - kAppleBootHeight) / 2 + kAppleBootOffset; + + CallMethod(5, 0, display->screenIH, "draw-rectangle", (long)gAppleBoot, + x, y, kAppleBootWidth, kAppleBootHeight); + + if (gBootFileType == kNetworkDeviceType) { + x = (display->width - kNetBootWidth) / 2; + y = (display->height - kNetBootHeight) / 2 + kNetBootOffset; - Interpret_1_0("ms", 75); + // Erase the netboot picture with 75% grey. + CallMethod(5, 0, display->screenIH, "fill-rectangle", + LookUpCLUTIndex(0x01, display->depth), + x, y, kNetBootWidth, kNetBootHeight); } + break; - // Set up the spin cursor. - SpinInit(1, display->screenIH, happyFoot, - x + 15, y + kHappyMacHeight - kHappyFootHeight + 1, - kHappyFootWidth, kHappyFootHeight, pixelSize); + default : + return -1; + break; } -#endif return 0; } -long DrawBrokenSystemFolder(void) +long DrawFailedBootPicture(void) { long cnt; - unsigned char *iconPtr, tmpIcon[1024]; - short *icon16; - long *icon32; + short *failedBoot16; + long *failedBoot32, posX, posY; DisplayInfoPtr display = &gDisplays[gMainDisplayNum]; - long x, y; - -#if kMacOSXServer - // Set the screen to Medium Blue - CallMethod_5_0(display->screenIH, "fill-rectangle", 128, 0, 0, - display->width, display->height); - - // Use the default icon. - iconPtr = gBrokenSystemFolderIcon; -#else - // Set the screen to Medium Grey - CallMethod_5_0(display->screenIH, "fill-rectangle", - LookUpCLUTIndex(0xF9, display->depth), - 0, 0, display->width, display->height); - - // Convert the default icon. - for (cnt = 0; cnt < 1024; cnt++) { - tmpIcon[cnt] = gBrokenSystemFolderIcon[cnt]; - if (tmpIcon[cnt] == 0x80) tmpIcon[cnt] = 0xF9; - } - iconPtr = tmpIcon; -#endif - switch (display->depth) { case 16 : - icon16 = malloc(32 * 32 * 2); + failedBoot16 = AllocateBootXMemory(32 * 32 * 2); for (cnt = 0; cnt < (32 * 32); cnt++) - icon16[cnt] = LookUpCLUTIndex(iconPtr[cnt], 16); - iconPtr = (char *)icon16; + failedBoot16[cnt] = LookUpCLUTIndex(gFailedBootPict[cnt], 16); + gFailedBoot = (char *)failedBoot16; break; case 32 : - icon32 = malloc(32 * 32 * 4); + failedBoot32 = AllocateBootXMemory(32 * 32 * 4); for (cnt = 0; cnt < (32 * 32); cnt++) - icon32[cnt] = LookUpCLUTIndex(iconPtr[cnt], 32); - iconPtr = (char *)icon32; + failedBoot32[cnt] = LookUpCLUTIndex(gFailedBootPict[cnt], 32); + gFailedBoot = (char *)failedBoot32; break; default : + gFailedBoot = (unsigned char *)gFailedBootPict; break; } - // Draw the broken system folder. - x = (display->width - 32) / 2; - y = ((display->height - 32)) / 2; - CallMethod_5_0(display->screenIH, "draw-rectangle", - (long)iconPtr, x, y, 32, 32); + // Erase the newboot picture with 75% grey. + posX = (display->width - kNetBootWidth) / 2; + posY = (display->height - kNetBootHeight) / 2 + kNetBootOffset; + CallMethod(5, 0, display->screenIH, "fill-rectangle", + LookUpCLUTIndex(0x01, display->depth), + posX, posY, kNetBootWidth, kNetBootHeight); + + // Draw the failed boot picture. + posX = (display->width - kFailedBootWidth) / 2; + posY = ((display->height - kFailedBootHeight)) / 2 + kFailedBootOffset; + CallMethod(5, 0, display->screenIH, "draw-rectangle", + (long)gFailedBoot, posX, posY, + kFailedBootWidth, kFailedBootHeight); return 0; } @@ -335,6 +234,7 @@ long DrawBrokenSystemFolder(void) void GetMainScreenPH(Boot_Video_Ptr video) { DisplayInfoPtr display; + long address, size; if (gMainDisplayNum == -1) { // No display, set it to zero. @@ -352,8 +252,24 @@ void GetMainScreenPH(Boot_Video_Ptr video) video->v_height = display->height; video->v_depth = display->depth; } + + // Allocate memory and a range for the CLUT. + size = 256 * 3; + address = AllocateKernelMemory(size); + AllocateMemoryRange("BootCLUT", address, size); + bcopy((char *)gClut, (char *)address, size); + + // Allocate memory and a range for the failed boot picture. + size = 32 + kFailedBootWidth * kFailedBootHeight; + address = AllocateKernelMemory(size); + AllocateMemoryRange("Pict-FailedBoot", address, size); + ((long *)address)[0] = kFailedBootWidth; + ((long *)address)[1] = kFailedBootHeight; + ((long *)address)[2] = kFailedBootOffset; + bcopy((char *)gFailedBootPict, (char *)(address + 32), size - 32); } + // Private Functions static long FindDisplays(void) @@ -411,45 +327,12 @@ static long OpenDisplays(void) return 0; } -static void DumpDisplaysInfo(void) -{ - long cnt, length; - char tmpStr[512]; - - printf("gNumDisplays: %x, gMainDisplayNum: %x\n", - gNumDisplays, gMainDisplayNum); - - for (cnt = 0; cnt < gNumDisplays; cnt++) { - printf("Display: %x, screenPH: %x, screenIH: %x\n", - cnt, gDisplays[cnt].screenPH, gDisplays[cnt].screenIH); - - if (gDisplays[cnt].screenPH) { - length = PackageToPath(gDisplays[cnt].screenPH, tmpStr, 511); - tmpStr[length] = '\0'; - printf("PHandle Path: %s\n", tmpStr); - } - - if (gDisplays[cnt].screenIH) { - length = InstanceToPath(gDisplays[cnt].screenIH, tmpStr, 511); - tmpStr[length] = '\0'; - printf("IHandle Path: %s\n", tmpStr); - } - - printf("address = %x\n", gDisplays[cnt].address); - printf("linebytes = %x\n", gDisplays[cnt].linebytes); - printf("width = %x\n", gDisplays[cnt].width); - printf("height = %x\n", gDisplays[cnt].height); - printf("depth = %x\n", gDisplays[cnt].depth); - printf("\n"); - } -} - static long OpenDisplay(long displayNum) { - char screenPath[258]; - CICell screenIH; - long ret; + char screenPath[258], displayType[32]; + CICell screenPH, screenIH; + long ret, size; // Only try to open a screen once. if (gDisplays[displayNum].triedToOpen) { @@ -458,29 +341,38 @@ static long OpenDisplay(long displayNum) gDisplays[displayNum].triedToOpen = -1; } + screenPH = gDisplays[displayNum].screenPH; + // Try to use mac-boot's ihandle. - Interpret_0_1("\" _screen-ihandle\" $find if execute else 0 then", - &screenIH); - if ((screenIH != 0) && - (InstanceToPackage(screenIH) != gDisplays[displayNum].screenPH)) { + Interpret(0, 1, "\" _screen-ihandle\" $find if execute else 0 then", + &screenIH); + if ((screenIH != 0) && (InstanceToPackage(screenIH) != screenPH)) { screenIH = 0; } // Try to use stdout as the screen's ihandle - if ((screenIH == 0) && (gStdOutPH == gDisplays[displayNum].screenPH)) { + if ((screenIH == 0) && (gStdOutPH == screenPH)) { screenIH = gStdOutIH; } // Try to open the display. if (screenIH == 0) { screenPath[255] = '\0'; - ret = PackageToPath(gDisplays[displayNum].screenPH, screenPath, 255); + ret = PackageToPath(screenPH, screenPath, 255); if (ret != -1) { strcat(screenPath, ":0"); screenIH = Open(screenPath); } } + // Find out what type of display is attached. + size = GetProp(screenPH, "display-type", displayType, 31); + if (size != -1) { + displayType[size] = '\0'; + // If the display-type is NONE, don't use the display. + if (!strcmp(displayType, "NONE")) screenIH = 0; + } + // Save the ihandle for later use. gDisplays[displayNum].screenIH = screenIH; @@ -505,10 +397,10 @@ static long InitDisplay(long displayNum) GetProp(screenPH, "linebytes", (char *)&(display->linebytes), 4); // Replace some of the drivers words. - Interpret_3_1( - " to active-package" - " value rowbytes" + Interpret(3, 1, " value depthbytes" + " value rowbytes" + " to active-package" " frame-buffer-adr value this-frame-buffer-adr" " : rect-setup" // ( adr|index x y w h -- w adr|index xy-adr h ) @@ -549,130 +441,15 @@ static long InitDisplay(long displayNum) , display->screenPH, display->linebytes, display->depth / 8, &display->address); - // Set the CLUT for 8 bit displays + // Set the CLUT for 8 bit displays. if (display->depth == 8) { - CallMethod_3_0(screenIH, "set-colors", (long)gClut, 0, 256); - } - -#if kMacOSXServer - // Set the screen to Medium Blue - CallMethod_5_0(screenIH, "fill-rectangle", 128, 0, 0, - display->width, display->height); -#else - // Set the screen to Medium Grey - CallMethod_5_0(screenIH, "fill-rectangle", - LookUpCLUTIndex(0xF9, display->depth), - 0, 0, display->width, display->height); -#endif - - return 0; -} - - -static long NetLoadDrivers(void) -{ - long ret, cnt, curDisplay; - CICell screenPH; - char fileSpec[512]; - - for (cnt = 0; cnt < kNumNetDrivers; cnt++) { - - // See if there is a display for this driver. - for (curDisplay = 0; curDisplay < gNumDisplays; curDisplay++) { - screenPH = gDisplays[curDisplay].screenPH; - if (MatchThis(screenPH, gNetDriverMatchNames[cnt]) == 0) break; - } - - if (curDisplay == gNumDisplays) continue; - - sprintf(fileSpec, "%s%sDrivers\\ppc\\IONDRV.config\\%s", - gRootDir, - (gBootFileType == kNetworkDeviceType) ? "" : "private\\", - gNetDriverFileNames[cnt]); - - ret = LoadDisplayDriver(fileSpec); - } - - return 0; -} - -static long LoadDisplayDriver(char *fileSpec) -{ - char *pef, *currentPef, *buffer; - long pefLen, currentPefLen, ndrvUsed; - long curDisplay; - char descripName[] = " TheDriverDescription"; - long err; - DriverDescription descrip; - DriverDescription curDesc; - char matchName[40]; - unsigned long newVersion; - unsigned long curVersion; - CICell screenPH; - - pefLen = LoadFile(fileSpec); - if (pefLen == -1) return -1; - if (pefLen == 0) return 0; - - pef = (char *)kLoadAddr; - - descripName[0] = strlen(descripName + 1); - err = GetSymbolFromPEF(descripName, pef, &descrip, sizeof(descrip)); - if(err != 0) { - printf("\nGetSymbolFromPEF returns %d\n",err); - return -1; - } - if((descrip.driverDescSignature != kTheDescriptionSignature) || - (descrip.driverDescVersion != kInitialDriverDescriptor)) - return 0; - - strncpy(matchName, descrip.driverType.nameInfoStr + 1, - descrip.driverType.nameInfoStr[0]); - newVersion = descrip.driverType.version; - - if((newVersion & 0xffff) == 0x8000) // final stage, release rev - newVersion |= 0xff; - - ndrvUsed = 0; - buffer = (char *)malloc(pefLen); - if (buffer == NULL) { - printf("No space for the NDRV\n"); - return -1; - } - bcopy(pef, buffer, pefLen); - - for (curDisplay = 0; curDisplay < gNumDisplays; curDisplay++) { - screenPH = gDisplays[curDisplay].screenPH; - - if (MatchThis(screenPH, matchName) != 0) continue; - - err = GetPackageProperty(screenPH, "driver,AAPL,MacOS,PowerPC", - ¤tPef, ¤tPefLen); - - if (err == 0) { - err = GetSymbolFromPEF(descripName,currentPef,&curDesc,sizeof(curDesc)); - if (err != 0) { - if((curDesc.driverDescSignature == kTheDescriptionSignature) && - (curDesc.driverDescVersion == kInitialDriverDescriptor)) { - curVersion = curDesc.driverType.version; - if((curVersion & 0xffff) == 0x8000) // final stage, release rev - curVersion |= 0xff; - - if( newVersion <= curVersion) - pefLen = 0; - } - } - } - - if(pefLen == 0) continue; - - printf("Installing patch driver\n"); - - SetProp(screenPH, "driver,AAPL,MacOS,PowerPC", buffer, pefLen); - ndrvUsed = 1; + CallMethod(3, 0, screenIH, "set-colors", (long)gClut, 0, 256); } - if (ndrvUsed == 0) free(buffer); + // Set the screen to 75% grey. + CallMethod(5, 0, screenIH, "fill-rectangle", + LookUpCLUTIndex(0x01, display->depth), + 0, 0, display->width, display->height); return 0; } @@ -703,27 +480,40 @@ static long LookUpCLUTIndex(long index, long depth) return result; } + #if 0 -static long DiskLoadDrivers(void) +static void DumpDisplaysInfo(void); + +static void DumpDisplaysInfo(void) { - long ret, flags, index, time; - char dirSpec[512], *name; + long cnt, length; + char tmpStr[512]; - index = 0; - while (1) { - sprintf(dirSpec, "%sprivate\\Drivers\\ppc\\IONDRV.config\\", gRootDir); - - ret = GetDirEntry(dirSpec, &index, &name, &flags, &time); - if (ret == -1) break; + printf("gNumDisplays: %x, gMainDisplayNum: %x\n", + gNumDisplays, gMainDisplayNum); + + for (cnt = 0; cnt < gNumDisplays; cnt++) { + printf("Display: %x, screenPH: %x, screenIH: %x\n", + cnt, gDisplays[cnt].screenPH, gDisplays[cnt].screenIH); - if (flags != kFlatFileType) continue; + if (gDisplays[cnt].screenPH) { + length = PackageToPath(gDisplays[cnt].screenPH, tmpStr, 511); + tmpStr[length] = '\0'; + printf("PHandle Path: %s\n", tmpStr); + } - strcat(dirSpec, name); - ret = LoadDisplayDriver(dirSpec); + if (gDisplays[cnt].screenIH) { + length = InstanceToPath(gDisplays[cnt].screenIH, tmpStr, 511); + tmpStr[length] = '\0'; + printf("IHandle Path: %s\n", tmpStr); + } - if (ret == -1) return -1; + printf("address = %x\n", gDisplays[cnt].address); + printf("linebytes = %x\n", gDisplays[cnt].linebytes); + printf("width = %x\n", gDisplays[cnt].width); + printf("height = %x\n", gDisplays[cnt].height); + printf("depth = %x\n", gDisplays[cnt].depth); + printf("\n"); } - - return 0; } #endif diff --git a/bootx.tproj/sl.subproj/drivers.c b/bootx.tproj/sl.subproj/drivers.c index b14c028..a3bdf12 100644 --- a/bootx.tproj/sl.subproj/drivers.c +++ b/bootx.tproj/sl.subproj/drivers.c @@ -101,10 +101,15 @@ struct DriversPackage { }; typedef struct DriversPackage DriversPackage; +enum { + kCFBundleType2, + kCFBundleType3 +}; + static long FileLoadDrivers(char *dirSpec, long plugin); static long NetLoadDrivers(char *dirSpec); static long LoadDriverMKext(char *fileSpec); -static long LoadDriverPList(char *dirSpec, char *name); +static long LoadDriverPList(char *dirSpec, char *name, long bundleType); static long LoadMatchedModules(void); static long MatchPersonalities(void); static long MatchLibraries(void); @@ -132,6 +137,8 @@ static TagPtr gPersonalityHead, gPersonalityTail; static char gExtensionsSpec[4096]; static char gDriverSpec[4096]; static char gFileSpec[4096]; +static char gTempSpec[4096]; +static char gFileName[4096]; // Public Functions @@ -160,14 +167,15 @@ long LoadDrivers(char *dirSpec) static long FileLoadDrivers(char *dirSpec, long plugin) { - long ret, length, index, flags, time, time2; - char *name; + long ret, length, index, flags, time, time2, bundleType; + char *name; if (!plugin) { ret = GetFileInfo(dirSpec, "Extensions.mkext", &flags, &time); - if ((ret == 0) && (flags == kFlatFileType)) { + if ((ret == 0) && ((flags & kFileTypeMask) == kFileTypeFlat)) { ret = GetFileInfo(dirSpec, "Extensions", &flags, &time2); - if ((ret != 0) || (flags != kDirectoryFileType) || (time > time2)) { + if ((ret != 0) || ((flags & kFileTypeMask) != kFileTypeDirectory) || + (((gBootMode & kBootModeSafe) == 0) && (time > time2))) { sprintf(gDriverSpec, "%sExtensions.mkext", dirSpec); printf("LoadDrivers: Loading from [%s]\n", gDriverSpec); if (LoadDriverMKext(gDriverSpec) == 0) return 0; @@ -185,22 +193,34 @@ static long FileLoadDrivers(char *dirSpec, long plugin) if (ret == -1) break; // Make sure this is a directory. - if (flags != kDirectoryFileType) continue; + if ((flags & kFileTypeMask ) != kFileTypeDirectory) continue; // Make sure this is a kext. length = strlen(name); if (strcmp(name + length - 5, ".kext")) continue; - if (!plugin) - sprintf(gDriverSpec, "%s\\%s\\Contents\\PlugIns", dirSpec, name); + // Save the file name. + strcpy(gFileName, name); + + // Determine the bundle type. + sprintf(gTempSpec, "%s\\%s", dirSpec, gFileName); + ret = GetFileInfo(gTempSpec, "Contents", &flags, &time); + if (ret == 0) bundleType = kCFBundleType2; + else bundleType = kCFBundleType3; - ret = LoadDriverPList(dirSpec, name); + if (!plugin) { + sprintf(gDriverSpec, "%s\\%s\\%sPlugIns", dirSpec, gFileName, + (bundleType == kCFBundleType2) ? "Contents\\" : ""); + } + + ret = LoadDriverPList(dirSpec, gFileName, bundleType); if (ret != 0) { printf("LoadDrivers: failed\n"); } - if (!plugin) + if (!plugin) { ret = FileLoadDrivers(gDriverSpec, 1); + } } return 0; @@ -265,7 +285,7 @@ static long LoadDriverMKext(char *fileSpec) } -static long LoadDriverPList(char *dirSpec, char *name) +static long LoadDriverPList(char *dirSpec, char *name, long bundleType) { long length, ret, driverPathLength; char *buffer; @@ -273,15 +293,20 @@ static long LoadDriverPList(char *dirSpec, char *name) TagPtr personalities; char *tmpDriverPath; + // Reset the malloc zone. + malloc_init((char *)kMallocAddr, kMallocSize); + // Save the driver path. - sprintf(gFileSpec, "%s\\%s\\Contents\\MacOS\\", dirSpec, name); + sprintf(gFileSpec, "%s\\%s\\%s", dirSpec, name, + (bundleType == kCFBundleType2) ? "Contents\\MacOS\\" : ""); driverPathLength = strlen(gFileSpec); tmpDriverPath = malloc(driverPathLength + 1); if (tmpDriverPath == 0) return -1; strcpy(tmpDriverPath, gFileSpec); // Construct the file spec. - sprintf(gFileSpec, "%s\\%s\\Contents\\Info.plist", dirSpec, name); + sprintf(gFileSpec, "%s\\%s\\%sInfo.plist", dirSpec, name, + (bundleType == kCFBundleType2) ? "Contents\\" : ""); length = LoadFile(gFileSpec); if (length == -1) { diff --git a/bootx.tproj/sl.subproj/failedboot.h b/bootx.tproj/sl.subproj/failedboot.h new file mode 100644 index 0000000..51142fd --- /dev/null +++ b/bootx.tproj/sl.subproj/failedboot.h @@ -0,0 +1,165 @@ +/* + * Copyright (c) 2002 Apple Computer, Inc. All rights reserved. + * + * @APPLE_LICENSE_HEADER_START@ + * + * The contents of this file constitute Original Code as defined in and + * are subject to the Apple Public Source License Version 1.1 (the + * "License"). You may not use this file except in compliance with the + * License. Please obtain a copy of the License at + * http://www.apple.com/publicsource and read it before using this file. + * + * This Original Code and all software distributed under the License are + * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the + * License for the specific language governing rights and limitations + * under the License. + * + * @APPLE_LICENSE_HEADER_END@ + */ +/* + * failed_boot.h - Picture used to show that the system has failed to boot + * + * Copyright (c) 2002 Apple Computer, Inc. + * + * DRI: Josh de Cesare + */ + +#define kFailedBootWidth (128) +#define kFailedBootHeight (128) +#define kFailedBootOffset (0) +#define kFailedBootFrames (1) +#define kFailedBootFPS (0) + +const unsigned char gFailedBootPict[] = { + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x0d,0x16,0x1e,0x26,0x2d,0x32,0x35,0x38,0x39,0x38,0x35,0x32,0x2d,0x26,0x1e,0x16,0x0d,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0c,0x1a,0x26,0x33,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x33,0x26,0x1a,0x0c,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0x1a,0x29,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x29,0x1a,0x0a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x21,0x33,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x33,0x21,0x10,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0e,0x22,0x36,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x36,0x22,0x0e,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0x1f,0x34,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x34,0x1f,0x0a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x16,0x2e,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2e,0x16,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x09,0x20,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x20,0x09,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x28,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x28,0x10,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x14,0x30,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x30,0x14,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x17,0x34,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x34,0x17,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x19,0x36,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2f,0x24,0x1a,0x12,0x0b,0x06,0x03,0x01,0x03,0x06,0x0b,0x12,0x1a,0x24,0x2f,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x36,0x19,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x17,0x36,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x29,0x1b,0x0d,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0d,0x1b,0x29,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x36,0x17,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x14,0x34,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x35,0x22,0x11,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x11,0x22,0x35,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x34,0x14,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x30,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x24,0x10,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x24,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x30,0x10,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x09,0x28,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x34,0x15,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x15,0x2c,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x28,0x09,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x20,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x29,0x0b,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x09,0x21,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x20,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x16,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x26,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1a,0x34,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x16,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0x2e,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x36,0x22,0x09,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x15,0x32,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2e,0x0a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1f,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x29,0x09,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x14,0x32,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0e,0x34,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x22,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x15,0x34,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x34,0x0e,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x22,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x29,0x0b,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1a,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x22,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x36,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x25,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x21,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x36,0x10,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x21,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2e,0x2c,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x37,0x24,0x0a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x09,0x2c,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x21,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0x33,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x15,0x0a,0x27,0x37,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2c,0x06,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x15,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x33,0x0a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1a,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x24,0x01,0x01,0x02,0x25,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x37,0x21,0xf7,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x24,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x1a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x29,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x35,0x10,0x01,0x01,0x01,0x0c,0x2c,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2c,0x0b,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x35,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x29,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0c,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x22,0x01,0x01,0x01,0x01,0x01,0xf7,0x21,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x24,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x22,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x0c,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1a,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x11,0x01,0x01,0x01,0x01,0x01,0x01,0x07,0x2c,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x28,0x0b,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x11,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x1a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x26,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x29,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0x25,0x37,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x27,0xf7,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x29,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x26,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x33,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x1b,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0x26,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x36,0x21,0x08,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1b,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x33,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0d,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x0d,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0c,0x29,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2c,0x0a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0d,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x0d,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x16,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x24,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x24,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x2f,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x16,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1e,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x24,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0x2d,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x29,0x0c,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x24,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x1e,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x26,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x1a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x08,0x21,0x37,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x26,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1a,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x26,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x2d,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x12,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0xf7,0x27,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x37,0x22,0x09,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x12,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2d,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x32,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x0b,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x0b,0x28,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x29,0x07,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0b,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x32,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x35,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x06,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x25,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x37,0x21,0xf7,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x06,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x35,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0b,0x2c,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2c,0x0c,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x06,0x21,0x37,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x24,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x06,0x2c,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x37,0x27,0x0a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x35,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x06,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0x24,0x37,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x28,0x06,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x06,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x35,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x32,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x0b,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0x25,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x37,0x21,0x07,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0b,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x32,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x2d,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x12,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0c,0x29,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2c,0x0b,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x12,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2d,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x26,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x1a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x22,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x24,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1a,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x26,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1e,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x24,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x09,0x29,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x28,0x0c,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x24,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x1e,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x16,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x09,0x22,0x37,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x26,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x2f,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x16,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0d,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x0d,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x26,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x37,0x22,0x09,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0d,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x0d,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x33,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x1b,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x0b,0x29,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2d,0x08,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1b,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x33,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x26,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x29,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x22,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x21,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x29,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x26,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1a,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x11,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0b,0x2c,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x29,0x0c,0x01,0x01,0x01,0x01,0x01,0x11,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x1a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0c,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x22,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x07,0x21,0x37,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x25,0x03,0x01,0x01,0x01,0x01,0x22,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x0c,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x29,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x35,0x10,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x06,0x29,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x37,0x26,0x0a,0x01,0x01,0x10,0x35,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x29,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1a,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x24,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0b,0x25,0x37,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x28,0x07,0x01,0x24,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x1a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0x33,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x15,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x24,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x37,0x21,0x19,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x33,0x0a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x21,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2c,0x09,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0c,0x2c,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x36,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x21,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x36,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x21,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x22,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x36,0x10,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x22,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x1a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x09,0x29,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x22,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0e,0x34,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x34,0x15,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0x22,0x37,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x34,0x0e,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1f,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x32,0x14,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0x26,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0x2e,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x32,0x15,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0b,0x2c,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2e,0x0a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x16,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x34,0x1a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x22,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x16,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x20,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x21,0x09,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0x2e,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x20,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x09,0x28,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2c,0x15,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x15,0x2e,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x28,0x09,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x30,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x24,0x10,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x24,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x30,0x10,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x14,0x34,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x35,0x22,0x11,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x11,0x22,0x35,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x34,0x14,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x17,0x36,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x29,0x1b,0x0d,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0d,0x1b,0x29,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x36,0x17,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x19,0x36,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2f,0x24,0x1a,0x12,0x0b,0x06,0x03,0x01,0x03,0x06,0x0b,0x12,0x1a,0x24,0x2f,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x36,0x19,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x17,0x34,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x34,0x17,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x14,0x30,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x30,0x14,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x28,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x28,0x10,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x09,0x20,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x20,0x09,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x16,0x2e,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x2e,0x16,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0x1f,0x34,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x34,0x1f,0x0a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0e,0x22,0x36,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x36,0x22,0x0e,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x21,0x33,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x33,0x21,0x10,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0a,0x1a,0x29,0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x38,0x29,0x1a,0x0a,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0c,0x1a,0x26,0x33,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x33,0x26,0x1a,0x0c,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x0d,0x16,0x1e,0x26,0x2d,0x32,0x35,0x38,0x39,0x38,0x35,0x32,0x2d,0x26,0x1e,0x16,0x0d,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01 +}; diff --git a/bootx.tproj/sl.subproj/happy_foot.h b/bootx.tproj/sl.subproj/happy_foot.h deleted file mode 100644 index cdb710f..0000000 --- a/bootx.tproj/sl.subproj/happy_foot.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. - * - * @APPLE_LICENSE_HEADER_START@ - * - * The contents of this file constitute Original Code as defined in and - * are subject to the Apple Public Source License Version 1.1 (the - * "License"). You may not use this file except in compliance with the - * License. Please obtain a copy of the License at - * http://www.apple.com/publicsource and read it before using this file. - * - * This Original Code and all software distributed under the License are - * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER - * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, - * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the - * License for the specific language governing rights and limitations - * under the License. - * - * @APPLE_LICENSE_HEADER_END@ - */ -/* - * happy_foot.h - Icon for the happy mac's little foot. - * - * Copyright (c) 1999-2000 Apple Computer, Inc. - * - * DRI: Josh de Cesare - */ - -#define kHappyFootWidth (10) -#define kHappyFootHeight (12) - -unsigned char gHappyFootPict[] = { - 0xF9,0xF9,0xF9,0xFF,0xFB,0xFB,0xFF,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0xFB,0xFB,0xFF,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0xFA,0xFB,0xFF,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0xFA,0xFA,0xFF,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0xF9,0xFA,0xFF,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0xF9,0xF9,0xFF,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xFF,0xFB,0xF9,0xF9,0xFB,0xFF,0xF9,0xF9, - 0xF9,0xFF,0x2B,0x2B,0xFB,0xFB,0xF9,0xF9,0xFF,0xF9, - 0xF9,0xFF,0x2B,0x2B,0x2B,0x2B,0xF9,0xF9,0xFF,0xF9, - 0xF9,0xF9,0xFF,0x2B,0x2B,0x2B,0x2B,0xFF,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0xFF,0xFF,0xFF,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9 -}; diff --git a/bootx.tproj/sl.subproj/happy_mac.h b/bootx.tproj/sl.subproj/happy_mac.h deleted file mode 100644 index f7f9982..0000000 --- a/bootx.tproj/sl.subproj/happy_mac.h +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. - * - * @APPLE_LICENSE_HEADER_START@ - * - * The contents of this file constitute Original Code as defined in and - * are subject to the Apple Public Source License Version 1.1 (the - * "License"). You may not use this file except in compliance with the - * License. Please obtain a copy of the License at - * http://www.apple.com/publicsource and read it before using this file. - * - * This Original Code and all software distributed under the License are - * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER - * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, - * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the - * License for the specific language governing rights and limitations - * under the License. - * - * @APPLE_LICENSE_HEADER_END@ - */ -/* - * happy_mac.h - Icon for the happy mac. - * - * Copyright (c) 1999-2000 Apple Computer, Inc. - * - * DRI: Josh de Cesare - */ - -#define kHappyMacWidth (32) -#define kHappyMacHeight (34) - -unsigned char gHappyMacIcon[] = { - 0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xF9,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xF9,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0x2B,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,0x2B,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0xFC,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0xFA,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0xFC,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0xFA,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0xFC,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0xFA,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0xFC,0x2A,0x2A,0x2A,0x2A,0xFF,0x2A,0x2A,0x2A,0xFF,0x2A,0x2A,0x2A,0xFF,0x2A,0x2A,0x2A,0x2A,0xFA,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0xFC,0x2A,0x2A,0x2A,0x2A,0xFF,0x2A,0x2A,0x2A,0xFF,0x2A,0x2A,0x2A,0xFF,0x2A,0x2A,0x2A,0x2A,0xFA,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0xFC,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0xFF,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0xFA,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0xFC,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0xFF,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0xFA,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0xFC,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0xFF,0xFF,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0xFA,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0xFC,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0xFA,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0xFC,0x2A,0x2A,0x2A,0x2A,0x2A,0xFF,0x2A,0x2A,0x2A,0x2A,0xFF,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0xFA,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0xFC,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0xFF,0xFF,0xFF,0xFF,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0xFA,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0xFC,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0xFA,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0xFC,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0xFA,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0x2B,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0x2B,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0xE3,0xE3,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x2B,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0xD8,0xD8,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0x2B,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xFF,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0xFF,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xF9,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xF9,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xF9,0xFF,0xFB,0xFB,0xFB,0xFB,0xFB,0xFB,0xFC,0xFC,0xFC,0xFC,0xFC,0xFD,0xFD,0xFD,0xFD,0xFD,0xFD,0xFD,0xFD,0xFD,0xFF,0xFF,0xF9,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xF9,0xFF,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFB,0xFB,0xFC,0xFC,0xFC,0xFC,0xFD,0xFD,0xFD,0xFD,0xFD,0xFD,0xFF,0xFF,0xF9,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xF9,0xFF,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xFA,0xFA,0xFA,0xFB,0xFB,0xFC,0xFC,0xFC,0xFC,0xFD,0xFD,0xFD,0xFF,0xFF,0xF9,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xF9,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xF9,0xF9,0xF9,0xF9,0xF9, - 0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9 -}; - diff --git a/bootx.tproj/sl.subproj/images.h b/bootx.tproj/sl.subproj/images.h deleted file mode 100644 index af3963e..0000000 --- a/bootx.tproj/sl.subproj/images.h +++ /dev/null @@ -1,5920 +0,0 @@ -/* - * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. - * - * @APPLE_LICENSE_HEADER_START@ - * - * The contents of this file constitute Original Code as defined in and - * are subject to the Apple Public Source License Version 1.1 (the - * "License"). You may not use this file except in compliance with the - * License. Please obtain a copy of the License at - * http://www.apple.com/publicsource and read it before using this file. - * - * This Original Code and all software distributed under the License are - * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER - * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, - * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the - * License for the specific language governing rights and limitations - * under the License. - * - * @APPLE_LICENSE_HEADER_END@ - */ -/* - * images.h - Graphics for Mac OS X Server. - * - * Copyright (c) 1998-2000 Apple Computer, Inc. - * - * DRI: Josh de Cesare - */ - -#define SPIN_WIDTH 16 - -#define BIG_WIDTH 353 -#define BIG_HEIGHT 264 -#define BIG_DY 0 - -static char waitCursors[ 3 * SPIN_WIDTH * SPIN_WIDTH ] = { - - 0xf9,0xf9,0x56,0xf9,0xfa,0x2c,0x32,0x2d,0x57,0x51,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xfa,0x56,0x56,0x2c,0x5e,0x58,0x5f,0x58,0x7d,0x52,0x57,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0x33,0x3a,0x34,0x5f,0x59,0x83,0x52,0x7c,0x76,0x76,0x7b,0x5d,0x56, - 0xf9,0x56,0x0f,0x39,0x33,0x3a,0x34,0x59,0x58,0x58,0x52,0x76,0x4b,0x75,0x7b,0x56, - 0xf9,0x0e,0x15,0x0f,0x39,0x34,0x5e,0x59,0x83,0x7c,0x7c,0x4b,0x75,0x6f,0x7b,0x56, - 0x56,0x39,0x0e,0x14,0x0e,0x39,0x33,0x57,0x57,0x7c,0x4b,0x6f,0x4a,0x75,0x6e,0xa6, - 0x32,0x38,0x3f,0x39,0x39,0x0e,0x5d,0x81,0x81,0x57,0x75,0x6f,0x75,0x6e,0x75,0xa6, - 0x31,0x3e,0x38,0x3e,0x38,0x38,0x7b,0x81,0x56,0x56,0x75,0x74,0x6e,0x74,0x74,0xa5, - 0x38,0x3f,0x63,0x63,0x69,0x62,0x81,0x7b,0x56,0x56,0xa5,0x99,0x9f,0x99,0x9f,0xa6, - 0x31,0x69,0x62,0x68,0x62,0x8d,0x5c,0x5c,0x56,0xa5,0xc2,0xc2,0x98,0xc3,0x98,0xac, - 0x5c,0x62,0x69,0x68,0x8c,0x62,0x86,0x7f,0x7f,0x79,0xa4,0xc2,0xc9,0x9e,0xc9,0xac, - 0x56,0x62,0x62,0x8c,0x62,0x85,0x5b,0x7e,0x78,0x7f,0x9d,0xc8,0x9e,0xc8,0xc9,0x81, - 0xf9,0x81,0x8c,0x62,0x8c,0x85,0x85,0x7e,0x7f,0x79,0xa3,0x9d,0xa4,0xc8,0xac,0x56, - 0xf9,0xf9,0x80,0x86,0x5b,0x85,0x5a,0x7e,0x54,0x7f,0x79,0xa3,0x9d,0xd0,0x56,0xf9, - 0xf9,0xf9,0x56,0x81,0x86,0x5b,0x85,0x7e,0x7e,0x78,0xa3,0xa4,0xac,0x56,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xab,0xa5,0x80,0x80,0xab,0xac,0x81,0x56,0xf9,0x56,0xf9, - - 0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x2c,0x2c,0x2d,0x2c,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xfa,0x56,0x56,0x08,0x09,0x09,0x2d,0x2d,0x58,0x52,0x7b,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x07,0x33,0x33,0x09,0x09,0x2d,0x2e,0x52,0x7d,0x7d,0xa7,0x7b,0x5d,0x56, - 0xf9,0x56,0x39,0x3a,0x33,0x0f,0x08,0x09,0x2d,0x58,0x76,0xa7,0xa1,0xa0,0x81,0x56, - 0xf9,0x39,0x64,0x3a,0x3a,0x33,0x0f,0x09,0x58,0x7c,0xa7,0xa1,0xa1,0xa0,0xa6,0x7b, - 0x56,0x6a,0x64,0x64,0x3a,0x3a,0x0f,0x2c,0x2d,0x7d,0xa1,0xa0,0x9a,0xa0,0x99,0xac, - 0x32,0x64,0x6a,0x6a,0x6a,0x40,0x5d,0x81,0x81,0x7b,0xa1,0x9a,0xa0,0x75,0x9f,0xa6, - 0x32,0x69,0x63,0x6a,0x64,0x6a,0x7b,0x81,0x56,0x56,0x75,0x74,0x6e,0x74,0x6e,0x9f, - 0x5c,0x63,0x69,0x63,0x69,0x62,0x81,0x7b,0x56,0x56,0x74,0x6d,0x74,0x6e,0x74,0x9f, - 0x31,0x62,0x3e,0x3e,0x37,0x3d,0x55,0x5c,0x50,0xa5,0x73,0x73,0x6d,0x73,0x49,0xa5, - 0x5c,0x37,0x3e,0x37,0x3d,0x30,0x5b,0x85,0xd4,0xa4,0xa4,0x97,0x97,0x6d,0x73,0xac, - 0x56,0x37,0x36,0x37,0x30,0x36,0x5a,0x85,0xaa,0xce,0x9d,0x9e,0x73,0x73,0x74,0x81, - 0xf9,0x81,0x37,0x30,0x36,0x5b,0x85,0xa9,0xd4,0xce,0xce,0x9e,0xa4,0x9e,0xac,0x56, - 0xf9,0xf9,0x5c,0x36,0x30,0x61,0x7f,0xa9,0xa9,0xce,0xc8,0xa4,0x9e,0xd0,0x56,0xf9, - 0xf9,0xf9,0x56,0x81,0x86,0x5b,0x85,0xaa,0xd4,0xaa,0xcf,0xcf,0xd6,0x56,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0x7b,0xac,0xab,0xab,0xab,0xd0,0xac,0x81,0x56,0xf9,0x56,0xf9, - - 0xf9,0xf9,0x56,0xf9,0xfa,0x2c,0x2c,0x2c,0x2c,0x2c,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xfa,0x56,0x56,0x33,0x5e,0x34,0x2d,0x27,0x2d,0x26,0x50,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x32,0x65,0x65,0x58,0x5e,0x2e,0x2d,0x27,0x2d,0x51,0x76,0x7b,0x5d,0x56, - 0xf9,0x56,0x5e,0x65,0x5f,0x5e,0x34,0x34,0x27,0x27,0x27,0x76,0x75,0x76,0x81,0x56, - 0x56,0x39,0x6a,0x64,0x6b,0x65,0x5f,0x34,0x2d,0x27,0x51,0x75,0xa0,0xa0,0xa6,0x56, - 0xf9,0x64,0x39,0x64,0x64,0x65,0x5e,0x33,0x26,0x51,0x75,0x9a,0x9a,0xc4,0xa0,0xac, - 0x32,0x39,0x3f,0x3f,0x64,0x40,0x5d,0x81,0x81,0x57,0xa0,0xa0,0xca,0xa0,0xca,0xa6, - 0xf7,0x38,0x14,0x38,0x38,0x38,0x7b,0x81,0x56,0x56,0xa0,0xc4,0xc3,0xc4,0x9f,0xca, - 0x32,0x13,0x14,0x13,0x13,0x13,0x81,0x7b,0x56,0x56,0x9f,0x9f,0x9f,0x9f,0xc3,0xca, - 0xf7,0x13,0x0d,0x13,0x13,0x3d,0x5c,0x5c,0x50,0x80,0x6d,0x97,0x98,0x9e,0x98,0xac, - 0x81,0x13,0x3d,0x37,0x61,0x61,0x8c,0xaa,0xaa,0x72,0x73,0x73,0x97,0x73,0x9e,0xac, - 0x56,0x37,0x37,0x61,0x61,0x86,0xaa,0xaa,0xa3,0x79,0x72,0x72,0x6c,0x73,0x9e,0x81, - 0xf9,0x5d,0x62,0x61,0x8c,0x8c,0xb1,0xaa,0xaa,0x7f,0x79,0x4e,0x73,0x73,0xac,0x56, - 0xf9,0xf9,0x80,0x86,0x86,0xb0,0xaa,0xaa,0xa3,0xa3,0x78,0x78,0x72,0xac,0x56,0xf9, - 0xf9,0xf9,0x56,0x81,0xb1,0xaa,0xb0,0xaa,0xaa,0x7f,0xa3,0xa4,0xac,0x56,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x87,0xac,0xab,0xab,0xac,0xa5,0x81,0x56,0xf9,0x56,0xf9 -}; - -static unsigned char bigImage[ BIG_WIDTH * BIG_HEIGHT ] = { - -0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf6,0x2b,0x2b, - 0x2b,0xf6,0x2b,0x2b,0xf6,0x2b,0x2b,0xf6,0x2b,0xf6,0xf6,0xf6,0x2b,0xf6,0x2b,0xf6, - 0x2b,0xf6,0x2b,0x2b,0x2b,0x2b,0xf6,0xf6,0x2b,0x2b,0x2b,0xf6,0x2b,0x2b,0x2b,0x2b, - 0x2b,0x2b,0x2b,0x2b,0xf6,0x2b,0x2b,0xf6,0x2b,0xf6,0x2b,0xf6,0x2b,0x2b,0xf6,0xf6, - 0x2b,0x2b,0xf6,0x2b,0x2b,0xf6,0xf6,0x2b,0x2b,0xf6,0x2b,0x2b,0x2b,0xf6,0x2b,0x2b, - 0xf6,0x2b,0x2b,0xf6,0x2b,0xf6,0xf6,0xf6,0x2b,0xf6,0x2b,0xf6,0x2b,0xf6,0x2b,0x2b, - 0x2b,0x2b,0xf6,0xf6,0x2b,0x2b,0x2b,0x2b,0xf6,0x2b,0x2b,0xf6,0x2b,0xf6,0x2b,0x2b, - 0xf6,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b, - 0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0xf7,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b, - 0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0xf6,0x2b,0xf6,0x2b,0xf6,0x2b, - 0x2b,0xf6,0x2b,0xf6,0xf6,0x2b,0xf6,0xf6,0x2b,0x2b,0xf6,0x2b,0x2b,0x2b,0x2b,0x2b, - 0xf6,0xf6,0x2b,0x2b,0x2b,0x2b,0xf6,0x2b,0x2b,0xf6,0x2b,0xf6,0x2b,0xf6,0x2b,0x2b, - 0xf6,0x2b,0xf6,0x2b,0x2b,0x2b,0xf6,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0xf6,0x2b,0x2b, - 0xf6,0x2b,0xf6,0x2b,0xf6,0x2b,0x2b,0xf6,0xf6,0x2b,0x2b,0xf6,0x2b,0x2b,0xf6,0xf6, - 0x2b,0x2b,0xf6,0x2b,0x2b,0x2b,0xf6,0x2b,0x2b,0xf6,0x2b,0x2b,0xf6,0x2b,0xf6,0xf6, - 0xf6,0x2b,0xf6,0x2b,0xf6,0x2b,0xf6,0x2b,0x2b,0x2b,0x2b,0xf6,0xf6,0x2b,0x2b,0x2b, - 0x2b,0xf6,0x2b,0x2b,0xf6,0x2b,0xf6,0x2b,0xf6,0x2b,0x2b,0xf6,0xf6,0x2b,0x2b,0x2b, - 0x2b,0xf6,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0xf6,0x2b,0x2b,0xf6,0x2b,0x2b,0xf6,0xf6, - 0x2b,0x2b,0xf6,0xf6,0x2b,0x2b,0xf6,0x2b,0x2b,0xf6,0x2b,0x2b,0xf6,0x2b,0x2b,0x2b, - 0xf6,0x2b,0x2b,0xf6,0x2b,0x2b,0xf6,0x2b,0xf6,0xf6,0x2b,0xf6,0xf6,0x2b,0x2b,0xf6, - 0x2b,0x2b,0x2b,0x2b,0x2b,0xf6,0xf6,0x2b,0x2b,0x2b,0x2b,0xf6,0x2b,0x2b,0xf6,0x2b, - 0xf6,0x2b,0xf6,0x2b,0xf9,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x81,0xfa,0xfa, - 0xfa,0x81,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0x56, - 0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa, - 0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xfa,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9, - 0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0x81,0xfa,0xf9,0x81,0xf9, - 0xfa,0xfa,0x81,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0x56,0xf8,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa, - 0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfc,0xff,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0x81,0xf9,0xfa,0x81, - 0xfa,0xf9,0x81,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56, - 0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xfa,0x56,0x56, - 0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xfa,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0xf6,0x56,0xfa,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0x56, - 0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56, - 0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0x81,0xfa,0xfa,0x81,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf8,0x56,0xf9,0x56,0x56,0x56, - 0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0xfa,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfc,0xff,0xff,0x80,0x80,0x80,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0x2b,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa, - 0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0x81,0xfa,0xfa,0xfa,0x81,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0x56,0x56, - 0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56, - 0xfa,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfc,0xff,0xff,0x80,0xfb,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0x2b,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0x81,0xfa,0xfa,0xfa,0xfa,0x81,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa, - 0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xfa,0xfc,0xff,0xff,0xaa,0x80,0x80, - 0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0xf6,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0x81,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56, - 0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0xfa,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0x81,0xfb, - 0xaa,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0xf6,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0x81,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0x56, - 0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xfa,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56, - 0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xfa,0x56,0xfa,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xfa, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9, - 0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfc,0xff,0xff,0xaa, - 0xfb,0x80,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0xf6,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xfa,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0x56, - 0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xfa, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0x56,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xfa,0x81,0xf9,0xfa,0xfa,0xfa,0x81,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x81,0xf9,0xf9,0x81,0xf9,0xf9,0x81,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56, - 0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa,0x56, - 0x56,0xfa,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xfa, - 0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0xfc,0xff,0xff, - 0xfb,0x80,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0x81, - 0xfa,0x81,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56, - 0xfa,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xfc,0xff, - 0xff,0xfb,0xaa,0xfb,0x80,0x80,0xaa,0x81,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9, - 0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa, - 0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfc, - 0xff,0xff,0xfb,0xfb,0xaa,0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0x56,0xfa,0xfa,0xf9,0x56,0xf9, - 0xf9,0x56,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0x81,0xfa,0xfa,0x81,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xfa,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xfa,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xfa,0xf9, - 0xfc,0xff,0xff,0xab,0xab,0xfb,0xfb,0xaa,0xfb,0x80,0xaa,0x80,0xfb,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0x56,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0x81, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0x81,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x81,0xf9,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa, - 0x56,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56,0xf9,0xfa,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xfc,0xff,0xff,0xab,0xfb,0xfb,0xaa,0xfb,0x80,0xaa,0x81,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0x56,0xfa, - 0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56, - 0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xfc,0xff,0xff,0xab,0xfb,0xaa,0xfb,0xfb,0xaa,0x81,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0x81,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xfa,0xfb,0xff,0xff,0xab,0xab,0xfb,0xaa,0xfb,0x80,0xfb,0x80,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xfa, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0x81,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0x81,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56, - 0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9, - 0xfa,0x56,0xf9,0x56,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xfb,0xaa,0xfb,0xaa,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xfa,0x81,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xfa,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xfa,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0x56, - 0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xfa,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xfc,0xff,0xff,0xab,0xfb,0xab,0xfb,0xaa,0xfb,0xfb,0x80, - 0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56, - 0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xfa,0xfa,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xfb,0x80,0xaa, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56, - 0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xab,0xfb,0xfb, - 0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0x2b,0xfa,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9, - 0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0xf9,0x56,0xf9, - 0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0x2b,0xf5,0x00,0xf8,0x56,0x56,0xfa, - 0xfa,0x56,0x56,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xfa,0x56,0xf9,0x56,0x56,0x56,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xab, - 0x80,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0xf6,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56, - 0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf7,0xf5,0x00,0x00,0x00,0xf8,0xf9,0xf9, - 0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9, - 0x56,0xfa,0x56,0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xfa,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb, - 0xaa,0xfb,0xfb,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0x2b,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56, - 0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xfa,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0x56,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xfa,0x81,0xfa,0x81,0xf9,0xf9,0xf9,0xfa,0xf9,0x81,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xfa,0x56,0xfa,0xf9,0xfa,0xf9,0xf6,0x00,0x00,0x00,0x00,0x00,0x56,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xfa,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0xf9, - 0xf9,0x56,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab, - 0xfb,0xfb,0xaa,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0x2b,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0x56,0x56,0x56, - 0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56, - 0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf6,0x00,0x00,0x00,0x00,0x00,0x00,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0x56,0x56,0xf9,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xfc, - 0xab,0xab,0xfb,0xfb,0xaa,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x2b, - 0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfc,0xff,0xff,0xfc, - 0xab,0xab,0xfb,0xab,0x80,0xfb,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xfa,0x81,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf5,0x00,0x00,0x00,0x00,0x00,0x00, - 0xf9,0x81,0xfa,0x81,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9, - 0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xfc,0xff,0xff, - 0xab,0xfc,0xab,0xfb,0xaa,0xfb,0xfb,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9, - 0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf8,0x00,0x00,0x00,0x00,0x00,0x00, - 0xf7,0x81,0x81,0xfb,0x81,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xfa,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa, - 0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfc,0xff, - 0xff,0xfc,0xab,0xab,0xfb,0xfb,0xaa,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xf9,0x81,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x2b,0x00,0x00,0x00,0x00,0x00, - 0xf7,0x81,0x81,0xfb,0x81,0x81,0x81,0x81,0xfa,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xfc, - 0xff,0xff,0xab,0xfc,0xab,0xab,0xfb,0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf6,0x00,0x00,0x00,0x00, - 0xf7,0x81,0x81,0x81,0x81,0xfb,0x81,0x81,0xf9,0xfa,0xfa,0xf9,0x56,0xfa,0xf9,0xfa, - 0x56,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0x56, - 0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xfb,0xff,0xff,0xfc,0xab,0xab,0xfb,0xaa,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xfa,0x56,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x81, - 0xfa,0xfa,0x81,0x81,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xfa,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0x56,0x56,0xf8,0xf8,0xf8,0xf8,0xf9,0xfa,0xf9,0xf9,0xf6,0x00,0x00,0x2b, - 0xf9,0x81,0x81,0xfb,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0x56,0xfa,0xfa,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xfc,0xff,0xff,0xfc,0xab,0xfb,0xab,0xfb,0xfb,0x80,0x80,0xaa,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0x56,0x56, - 0xf9,0x56,0xf8,0xf6,0x00,0x00,0x00,0x00,0x00,0x00,0x2b,0xf8,0xf9,0xf9,0x56,0xf9, - 0xfa,0xfa,0xf8,0xf6,0x00,0x00,0x00,0x00,0x00,0x00,0x2b,0xf9,0xf9,0xf9,0xfa,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xfb,0xaa,0xfb,0xfb,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0x81,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56, - 0x56,0xfa,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf8,0xf6,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf5,0xf6,0xf7, - 0x2b,0xf6,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2b,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa, - 0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0xfa, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xfc,0xff,0xff,0xab,0xab,0xab,0xab,0xfb,0x80,0xaa,0x80,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56, - 0xfa,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0x81,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf6, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xfa,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56, - 0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xfc,0xfc,0xab,0xfb,0xaa,0xfb,0xfb,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x81,0xfa,0x81,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xfa,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xfa,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xf6,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9, - 0xfa,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xfb,0xab,0xfb,0xfb,0xaa,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa, - 0x56,0x56,0x56,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xfa, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf5,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xf7,0xf9,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xab,0xab,0xfb,0xfb,0xaa,0x80, - 0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0x81,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x2b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x56,0xfb,0x81,0x81,0xfa,0x81,0xfa,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xfa,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0xfc,0xff,0xff,0xfc,0xab,0xab,0xab,0xfb,0xfb, - 0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0x2b,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0x81, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x81,0x81,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x56,0xfb,0xfb,0x81,0x81,0x81,0x81,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xfa,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xfa,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa, - 0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfc,0xff,0xff,0xab,0xfc,0xfb,0xaa,0xfb, - 0xaa,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0x2b,0xf9,0xfa,0xfa,0x81,0xfa,0xf9,0xfa,0x81,0xf9,0xfa,0xfa,0xfa,0x81,0xfa, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x81,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0x56, - 0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xfa, - 0xf9,0x56,0x56,0xf7,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x2b,0xfc,0xfb,0xfb,0x81,0xfb,0x81,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xfa,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0x56,0xfa,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb, - 0xab,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0x2b,0x81,0x81,0xfa,0xfa,0xfa,0xfa,0xfa,0x81,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xfa,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x2b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xfb,0xfc,0xfc,0xfb,0xfb,0xfb,0x81,0xf9,0xfa,0xfa,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56, - 0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0x56,0xfa,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfc,0xff,0xff,0xab,0xfc,0xab, - 0xfb,0xfb,0xfb,0xaa,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0x2b,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa, - 0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0x56,0x56,0xf9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xf6,0xfc,0xfc,0xfc,0xfb,0xfb,0x81,0x81,0xfa,0xfa,0xfa,0xf9,0x56, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xfa,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfc,0xff,0xff,0xab,0xab, - 0xab,0xab,0xfb,0xaa,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0x2b,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9, - 0xf9,0xfa,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0x81,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0xfa,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xf8,0xfc,0xfc,0xfc,0xfb,0xfb,0x81,0xfa,0xfa,0xfa,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfc,0xff,0xff,0xfc, - 0xfc,0xfb,0xaa,0xfb,0xfb,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xfa,0xfa,0xfa,0x81,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9, - 0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x81, - 0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xfa,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x56,0xfc,0xfc,0xfc,0xfb,0x81,0x81,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xfa, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xfc,0xff,0xff, - 0xfc,0xab,0xab,0xab,0xfb,0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf8,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xfa, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0x56,0xf9,0xf9,0xfa,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x56,0xfc,0xfc,0xfb,0x81,0x81,0x81,0xfa,0xfa,0xf9, - 0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9, - 0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfc,0xff, - 0xff,0xab,0xfc,0xab,0xfb,0xfb,0xaa,0x80,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0xfc,0xfc,0xfb,0xfb,0xfb,0x81,0xfa,0xfa, - 0xfa,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfb, - 0xff,0xff,0xab,0xab,0xfb,0xab,0xfb,0xfb,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa, - 0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xfa,0xfa,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0xfa,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xfa,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xfa,0xf9,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf6,0xfc,0xfc,0xfb,0xfb,0x81,0xfa,0xfa, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0x56,0xf9, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xfc,0xff,0xff,0xfc,0xfc,0xab,0xaa,0xfb,0xaa,0x80,0xaa,0xfb,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9, - 0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x81,0x81,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0xfc,0xfb,0xfb,0x81,0xfa, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xfb,0xfb,0xfb,0xfb,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xfa,0xf9,0xf9,0x81, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xfa,0x56,0x81,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf6,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2b,0xfc,0xfb,0x81,0x81, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xfa,0x56,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xfa,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xaa,0xfb,0x80,0x80,0x80,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xfa,0xf9, - 0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9, - 0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0x81,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0x2b,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x56,0xfb,0xfb, - 0x81,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56, - 0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xfb,0xaa,0xfb,0xaa,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x81,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0xf9,0x56,0x56,0xfa, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf8,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf5,0xfa, - 0xfb,0x81,0x81,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0xfa,0x56,0xfc,0xff,0xff,0xfc,0xab,0xfb,0xab,0xab,0x80,0xfb,0x80,0xfb, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xfa,0xf9,0xfa,0xfa,0xfa,0x81,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x56,0x81,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xfb,0xff,0xff,0xab,0xfc,0xab,0xab,0xfb,0xfb,0xaa,0xfb, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xfa,0x56,0x56,0x56,0x56,0x56,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xf9, - 0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xfa, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf6,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xf5,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0x56,0x56,0xf9,0xf9,0xfa, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0x56,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xfb,0xaa,0x80, - 0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xfa,0x81,0x81,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56, - 0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xfa,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xab,0xfb,0xfb, - 0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0x2b,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0xf5,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xf7,0x81,0x81,0xfa,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xfa,0x56,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xfc,0xfc,0xab,0xfb,0xfb, - 0xaa,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0x2b,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xfa, - 0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x81,0xfb,0x81,0xfa,0x81,0x81,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xfa,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xab,0xab,0xfb, - 0xaa,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0x2b,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0xfa, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa, - 0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xfa,0xf5,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0xfc,0xfb,0xfb,0xfb,0x81,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56, - 0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfb,0xff,0xff,0xfc,0xab,0xfb, - 0xab,0xfb,0xaa,0xfb,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0x2b,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xfa,0x56,0x56,0x56,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xfa,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xf5,0xfc,0xfc,0xfc,0xfb,0x81,0xfa,0xfa,0xf9,0xf9, - 0xfa,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xfa, - 0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xfc,0xff,0xff,0xac,0xab, - 0xab,0xfb,0xfb,0xfb,0xaa,0x80,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0x2b,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa, - 0x81,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf7,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfa,0xfc,0xfc,0xfb,0x81,0x81,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0xfa, - 0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xfc,0xff,0xff,0xfc, - 0xab,0xfb,0xab,0xaa,0x80,0xfb,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xfa,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0x81,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0x56,0xfa,0x56,0x56,0x56,0x56,0xf9, - 0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf6,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0xac,0xfc,0xfc,0xfb,0xfb,0x81,0x81,0x81, - 0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9, - 0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xfc,0xff,0xff, - 0xab,0xfc,0xab,0xab,0xfb,0xfb,0xfb,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa, - 0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0x81,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf5,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf6,0xfc,0xfc,0xfc,0xfc,0xfb,0x81,0x81,0x81, - 0xfa,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xfa,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0xfc,0xff, - 0xff,0xfc,0xab,0xab,0xfb,0xfb,0xaa,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0x56, - 0xf9,0xfa,0xfa,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0x81, - 0xfa,0x81,0x81,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0x56, - 0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf6,0xfc,0xac,0xfc,0xfc,0xfc,0x81,0x81,0xfa, - 0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56, - 0x56,0x56,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa, - 0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xfc, - 0xff,0xff,0xab,0xfc,0xab,0xab,0xfb,0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56, - 0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9, - 0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf5,0x00,0x00,0x00,0x00,0x00,0x00,0xf5,0xf8,0x81,0xfa,0x81,0xfa,0xf8, - 0xf5,0x00,0x00,0x00,0x00,0x00,0x00,0x2b,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0x81,0x81, - 0x81,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9, - 0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56, - 0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xfb,0xff,0xff,0xfc,0xab,0xab,0xfb,0xab,0x80,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xfa,0xfa,0x81,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xf7,0xf6,0x00,0xf5,0x2b,0xfa,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xf9,0x2b,0xf5,0x00,0x2b,0xf9,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0x81,0x81, - 0x81,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xfa,0x56,0xf9, - 0x56,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xaa,0xfb,0xfb,0x80,0xaa,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0x81,0x81,0x81,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc, - 0xfb,0xfb,0xfc,0xfb,0xfb,0xfc,0xfb,0xfb,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0x81, - 0x81,0x81,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa, - 0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xfb,0xaa,0x80,0xfb,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xfa,0xf9,0x81,0xfa,0xf9,0xf9,0xf9,0x81,0xfa,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0xfa,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0x81,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfb, - 0xfb,0xfb,0x81,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0x81, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xfa,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0xfa,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9, - 0xf9,0x56,0x56,0xfc,0xff,0xff,0xab,0xfc,0xab,0xab,0xfb,0xfb,0xaa,0x80,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56, - 0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x56, - 0xf9,0xf9,0x56,0xf8,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xfa,0xfa,0x81,0x81,0xfb,0xfb,0xfb,0xfb, - 0x81,0x81,0x81,0xfb,0xfb,0x81,0x81,0x81,0x81,0xfb,0x81,0xfb,0xfb,0x81,0x81,0xfb, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9, - 0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xfc,0xab,0xfb,0xab,0x80,0xfb,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa, - 0xf9,0xf9,0xf9,0xf9,0x81,0xfa,0x81,0x81,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0x81,0xfb,0x81,0x81, - 0x81,0x81,0xfb,0x81,0x81,0x81,0xfa,0xfa,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81, - 0x81,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9, - 0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xab,0xfb,0xaa,0xfb,0xfb,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9, - 0xf9,0xf9,0xf9,0x81,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x81, - 0xfa,0xf9,0xfa,0xfa,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xfa,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0x81,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xab,0xaa,0x80, - 0xaa,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xf9,0x81,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9, - 0x56,0x56,0xfa,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56, - 0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xfa, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xfa,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xac,0xfc,0xab,0xfb,0xfb,0xfb, - 0xfb,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0x2b,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0x56,0xf9, - 0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56, - 0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xfa,0x81,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xfa,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0x56,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xfa,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xaa,0xfb, - 0xaa,0x80,0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0x2b,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xfa, - 0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56,0xfa,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xfa, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0x56,0xfa,0xfa,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9, - 0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0x56, - 0xfa,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb, - 0xfb,0xfb,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0x2b,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0x56,0xf9,0xf9, - 0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xfa, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xfa,0xfc,0xff,0xff,0xab,0xfc,0xab, - 0xfb,0xaa,0xfb,0xaa,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0x2b,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa, - 0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0x81,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0xfa,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xfc,0xab, - 0xab,0xfb,0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0x2b,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xfa,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xfa,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xfa,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xfa, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xfa,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfc,0xff,0xff,0xab, - 0xfc,0xfc,0xaa,0xfb,0xfb,0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xfa,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0x56, - 0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xfa, - 0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56, - 0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0x56, - 0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0x56, - 0x56,0xfa,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xfa, - 0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xfa,0xf9,0xfa,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0xfc,0xff,0xff, - 0xfc,0xab,0xab,0xab,0xfb,0xfb,0xaa,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xfa,0x81,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56, - 0xfa,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xfc,0xff, - 0xff,0xab,0xfc,0xab,0xfb,0xfb,0xaa,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0x81,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9, - 0x56,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xfa,0xf9,0x56,0x56, - 0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa, - 0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfa, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfc, - 0xff,0xff,0xab,0xab,0xfb,0xab,0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xfa,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xfa,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xfa,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xfa,0xf9, - 0xfc,0xff,0xff,0xfc,0xfc,0xab,0xaa,0xfb,0xaa,0xfb,0xaa,0x80,0xfb,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0x81,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xf9,0x56,0x56,0xf9,0x56,0xfa,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x00, - 0x00,0x00,0x00,0x00,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9,0xf9, - 0xf8,0x00,0x00,0x00,0x00,0xf5,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0x81,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x2b,0xf5,0x00,0x00,0xf5,0xf6,0xf8,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0x56,0x2b,0xf6,0x00,0x00,0xf6,0x2b, - 0xf8,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x00,0x00,0xf6, - 0xf6,0x2b,0xf6,0xf6,0xf6,0xf8,0x56,0xf9,0xf9,0xf5,0xf5,0xf6,0xf6,0xf6,0xf6,0xf5, - 0x00,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x2b,0xf6,0x00, - 0x00,0xf6,0xf7,0xf8,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56, - 0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xfa,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xab,0x80,0xfb,0x80,0xfb,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf8,0xf7,0x00,0x00,0x00,0x2b,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0xf7,0x00,0x00,0x00,0xf7,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0x81, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xf6,0x00,0xf5,0x2b,0xf8,0xf8,0xf7,0xf6,0x00,0xf6,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf7,0x00,0x2b,0xf7,0xf8,0xf7,0xf6, - 0x00,0x00,0x2b,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x2b, - 0x00,0x00,0x00,0x00,0x2b,0xf7,0xf9,0x56,0xf9,0xf9,0x56,0x2b,0x00,0x00,0x00,0xf6, - 0xf7,0xf8,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x2b,0x00,0x2b,0xf7, - 0xf8,0xf7,0xf6,0x00,0x00,0x2b,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56, - 0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xfb,0xfb,0xaa,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf7,0x00,0x00,0xf5,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf6,0x00,0x00,0xf7,0xfa,0xfa,0xf9,0xf9,0xfa,0x81,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0x56,0xf8,0x00,0x00,0xf7,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf8,0x00,0x00, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf7,0x00,0x56,0xf9,0xf9,0x56,0xfa, - 0xf9,0x2b,0x00,0xf6,0xfa,0xfa,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0x2b,0x00,0x00,0xf5,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0x00,0x00,0x2b, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf7,0xf5,0xf8,0x56, - 0x56,0xf9,0xf9,0xfa,0x2b,0x00,0xf6,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xfa,0xfb,0xff,0xff,0xab,0xab,0xab,0xab,0xfb,0xaa,0x81,0xfb,0x80,0xfb, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9, - 0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf8,0x00,0x00,0x00,0xfa,0x81,0x81,0x81,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x00,0x00,0x00,0xf7,0xfa,0x81,0xfa,0x81,0xfa,0x81,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0x56,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0xf5,0x00,0xf7,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0x56, - 0x00,0xf5,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf5,0x2b,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xf5,0xf5,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0x00,0x00,0x00,0xfa,0x81,0x81,0x81,0x81,0xfa,0xf9,0xf8,0x00,0xf6, - 0xf9,0xfa,0xfa,0x81,0x81,0x81,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x00,0x2b,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf5,0xf5,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9, - 0xfa,0x56,0xf9,0x56,0xfc,0xff,0xff,0xfc,0xfc,0xfb,0xaa,0xfb,0xfb,0xfb,0x80,0xaa, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf7,0xfa,0x81, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0x81,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0x56,0x56,0xfa,0x56,0xf9,0xf7,0xf5,0x00,0x00,0x56,0xfc,0xfb,0x81,0xfa,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf7,0x00,0x00,0x00,0xf7,0x81,0xfb,0xfb,0xfb,0x81,0x81,0xfa,0xfa, - 0xf9,0xf9,0x81,0xfa,0x81,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0xf5,0x00,0xf6,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfb,0x81,0x81, - 0x81,0xf7,0x00,0xf5,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0x2b,0x00,0x56,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xf8,0x00,0x81,0xfb,0x81,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0x56, - 0xf9,0xfa,0xf9,0xfa,0x2b,0x00,0x00,0xf8,0xfb,0xfb,0xfb,0x81,0xfa,0xf9,0x2b,0x00, - 0xf9,0x81,0xfb,0xfb,0xfc,0xfb,0x81,0x81,0xfa,0xf9,0xf9,0xf9,0xf9,0x2b,0x00,0x56, - 0xf9,0xfa,0xfa,0xfa,0xfa,0x81,0x81,0xf7,0x00,0x81,0x81,0xfb,0xfa,0xfa,0xf9,0x56, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0x56, - 0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xfa,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xab,0x80,0xaa,0xfb, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xfa,0x81,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x2b,0xf7,0xf5,0x00,0x2b,0xfc,0xfc,0x81,0x81,0xf9, - 0xf9,0xf9,0xf9,0x56,0x2b,0x2b,0x00,0x00,0xf8,0xfb,0xfc,0xfc,0xfb,0x81,0x81,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf6,0x00,0x00,0x56,0xf9,0xfa,0xfa,0x81,0x81,0xfb,0x81,0x81, - 0xfa,0xfa,0x81,0xf5,0x00,0x2b,0x81,0x81,0xf9,0xf9,0x56,0xf6,0x00,0x56,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xfa,0x81,0xfa,0x00,0xfb,0xfb,0x81,0xfa,0xfa,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf5,0x00,0xf5,0xfb,0xfc,0xfc,0x81,0x81,0xf9,0x00, - 0xf8,0xfa,0x81,0x81,0xfb,0xfb,0xfb,0x81,0x81,0x81,0xfa,0xfa,0xf9,0xf9,0xf6,0x00, - 0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0x00,0x81,0xfb,0xfb,0x81,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xfc,0xff,0xff,0xab,0xab,0xfc,0xab,0xfb,0xfb,0x80, - 0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0x81,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf7,0xf7,0x2b,0x00,0xf5,0xfc,0xfc,0xfc,0x81, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf5,0xf8,0x00,0x00,0xf8,0xfb,0xac,0xfc,0xfc,0xfb,0x81, - 0x81,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf8,0x00,0x00,0x2b,0xf9,0xf9,0x81,0xfb,0x81,0xfb,0xfb,0x81, - 0xfa,0xfa,0x81,0xfa,0xf7,0x00,0x00,0xfa,0x81,0xfa,0xf9,0xf9,0xf5,0x00,0x56,0xf9, - 0xfa,0x81,0xfa,0x81,0xfa,0xfa,0x81,0xf8,0x81,0xfb,0xfb,0x81,0x81,0xfa,0xfa,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf7,0x00,0x00,0x56,0xac,0xfc,0xfb,0xfa,0xf7, - 0xf5,0x56,0xfa,0x81,0x81,0xfb,0xfc,0xfb,0x81,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf5, - 0x00,0xf9,0xf9,0xfa,0xfa,0x81,0xfa,0x81,0x81,0x81,0xf8,0xfb,0xfb,0xfb,0x81,0xfa, - 0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xaa,0xfb, - 0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0x2b,0xfa,0xfa,0xf9,0x81,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x81,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf7,0xf7,0xf8,0x00,0x00,0x81,0xac,0xfc, - 0xfb,0xfa,0xf9,0xf9,0x56,0xf8,0xf5,0xfa,0x00,0x00,0xf8,0xfc,0xac,0xac,0xfc,0xfb, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0x81,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0x2b,0x00,0x00,0x56,0xf9,0x81,0xfb,0xfb,0xfb,0x81,0x81, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0x00,0x00,0xf7,0x81,0x81,0x81,0xfa,0x00,0x00,0xf8, - 0xfa,0xfa,0x81,0xfa,0x81,0x81,0xfa,0xfa,0xfa,0x81,0x81,0xfb,0x81,0x81,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf5,0x00,0xf5,0xfc,0xfc,0xfb,0x81, - 0x00,0xf7,0xf9,0xfa,0x81,0xfb,0xfc,0xfb,0xfb,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0x56, - 0x00,0x00,0xf8,0xf9,0xfa,0x81,0x81,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0x81,0xfb,0xfb, - 0x81,0xfa,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56,0xfc,0xff,0xff,0xfc,0xab,0xfb,0xab,0xfb, - 0xaa,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0x2b,0xfa,0x56,0x56,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0x81,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf7,0xf8,0xf9,0x00,0x00,0xf8,0xfc, - 0xfc,0xfc,0x81,0xf9,0xf9,0x56,0x2b,0x2b,0xf9,0x00,0x00,0xf8,0xfc,0xac,0xfc,0xfc, - 0xfb,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0x81,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0x56,0x56,0x56,0xf9,0x56,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x00,0x00,0xf5,0xf9,0xfa,0x81,0xfb,0xfb,0x81,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf6,0x00,0xf5,0xfb,0xfb,0x81,0xfa,0x00,0x00, - 0xf5,0xfa,0x81,0x81,0x81,0x81,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0x81,0xfb,0x81,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf7,0x00,0x00,0x56,0xfc,0xfb, - 0xf8,0xf5,0x56,0xf9,0xfa,0xfa,0xfb,0x81,0x81,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0x56, - 0xf9,0x00,0x00,0xf5,0x81,0xfb,0xfb,0x81,0xfa,0x81,0xf9,0x56,0xf9,0xf9,0xfa,0x81, - 0x81,0xfa,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xfa,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xfa,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xab, - 0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0x2b,0xf9,0x56,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x2b,0xf8,0xf9,0xf5,0x00,0xf6, - 0xfc,0xac,0xfc,0x81,0xf9,0x56,0x56,0xf6,0xf8,0x56,0x00,0x00,0xf8,0xfc,0xac,0xfc, - 0xfb,0x81,0xfa,0xf9,0xfa,0xf8,0x2b,0xf5,0x00,0xf5,0x2b,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xf9,0x56,0x2b,0xf6,0xf6,0xf5,0xf5,0x2b,0x56,0x56,0x56,0xf9,0xfa, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf8,0x00,0x00,0xf6,0xfa,0x81,0xfc,0xfb,0xfb,0x81, - 0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf7,0x00,0x00,0xf9,0xfc,0xfb,0xfa,0xf6, - 0x00,0x00,0x2b,0xfa,0x81,0x81,0x81,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xfa,0x81,0xf9, - 0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf5,0x00,0xf5,0xfc, - 0xfc,0xf5,0xf7,0xf9,0xf9,0xfa,0xfa,0xfb,0x81,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf6,0x00,0x00,0xf7,0xfa,0xfb,0x81,0x81,0xfa,0xf9,0x56,0xf9,0xf9,0xfa, - 0xfa,0x81,0xfa,0xf9,0xf9,0x56,0x2b,0xf6,0xf6,0xf5,0x2b,0xf7,0xf9,0x56,0x56,0x56, - 0xf9,0xfa,0x56,0x56,0x2b,0x56,0xf9,0x56,0x2b,0x00,0xf5,0xf7,0xf6,0x00,0x00,0x00, - 0x00,0xf5,0xf7,0x56,0xf9,0x56,0xf6,0x00,0x00,0x00,0x00,0xf8,0xf9,0xf9,0x56,0x56, - 0xf7,0xf6,0xf6,0xf5,0xf6,0xf7,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x2b,0xf9, - 0xf9,0x56,0x2b,0x00,0xf5,0xf8,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab, - 0xfb,0xfb,0xaa,0xfb,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0x2b,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa, - 0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf6,0xf8,0xf9,0xf7,0x00, - 0x00,0xfb,0xfc,0xfb,0x81,0xfa,0xf9,0x56,0x00,0x56,0xf9,0x00,0x00,0x56,0xfb,0xfc, - 0xfc,0xfb,0x81,0xfa,0xfa,0xf6,0xf6,0xf8,0xfa,0x56,0xf5,0x00,0xf7,0xf9,0xfa,0xfa, - 0xfa,0xf9,0x56,0x56,0xf7,0xf5,0x2b,0xf9,0xf9,0xfa,0x2b,0x00,0x00,0x56,0x56,0xf9, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x2b,0x00,0x00,0xf7,0xfa,0x81,0xfc,0xfb,0xfb, - 0x81,0x81,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf7,0x00,0x00,0xf8,0xfb,0xfb,0x81, - 0xf8,0x00,0x00,0x00,0xf6,0xfa,0x81,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf7,0x00,0x00, - 0x56,0x56,0xf5,0xfa,0xfa,0xfa,0x81,0x81,0xfb,0xfa,0xfa,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0x56,0x56,0xf7,0x00,0x00,0x00,0xf6,0xfa,0x81,0xfa,0xfa,0xf9,0x56,0xf9,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf8,0x00,0x2b,0x56,0x56,0x56,0xf8,0x00,0x2b,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x2b,0x00,0xf9,0x56,0x00,0x00,0x00,0x00,0x00,0xfa,0xf7,0x00, - 0x00,0xf6,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x00,0xf5,0x56,0xf9,0xf9,0xf9,0xf8, - 0x00,0x2b,0xf9,0xfa,0x56,0xf7,0x00,0x2b,0xf9,0x56,0x56,0x56,0x56,0x56,0x2b,0x00, - 0xf9,0x56,0x00,0x00,0x00,0x00,0x00,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xfc, - 0xab,0xab,0xfb,0x80,0xfb,0x80,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf6,0xf8,0xf9,0x56, - 0x00,0x00,0xf9,0xfc,0xfc,0xfb,0xfa,0xfa,0xf8,0xf6,0xf9,0xfa,0x00,0x00,0xf8,0xfc, - 0xfc,0xfc,0xfb,0x81,0xf9,0x00,0xf6,0xf9,0xfa,0xf9,0xfa,0xf8,0x00,0xf6,0xfa,0x81, - 0xfa,0xf9,0xf9,0xf9,0xf7,0x00,0x2b,0x56,0xf9,0xf9,0xf9,0xf9,0xf6,0x00,0xf7,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf6,0x00,0x00,0x56,0x81,0xfb,0xfc,0xfc, - 0x81,0x81,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf8,0x00,0x00,0x2b,0xfc,0xfc, - 0xfb,0xfa,0xf5,0x00,0x00,0x00,0x00,0xf8,0xfa,0x81,0xfa,0xfa,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x00, - 0x00,0xf5,0xf5,0xf8,0x81,0x81,0xfa,0x81,0x81,0xfa,0xfa,0xfa,0xf9,0xf9,0x56,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x00,0x00,0x00,0x00,0x00,0xf8,0xfa,0xfa,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf7,0x00,0xf7,0xf9,0xfa,0xf9,0xf9,0xf9,0xf7,0x00,0x2b, - 0xf9,0xfa,0xf9,0x56,0xf5,0x00,0x00,0xf9,0xf6,0xf7,0xf7,0x00,0x00,0xf5,0xf9,0xfa, - 0x00,0x00,0xf6,0xfa,0xfa,0x81,0xfa,0xf9,0xfa,0xf9,0x00,0xf8,0xf9,0xf9,0xf9,0xf7, - 0x00,0xf7,0xf9,0xf9,0x56,0xf9,0xfa,0xf7,0x00,0x2b,0xfa,0xf9,0xf9,0x56,0xf5,0x00, - 0x00,0xf9,0xf6,0xf7,0xf7,0x00,0x00,0xf5,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfc,0xff,0xff,0xfc, - 0xab,0xab,0xfb,0xaa,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0x81,0xf9,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf6,0xf8,0xf9, - 0xf9,0xf5,0x00,0x2b,0xfc,0xfb,0xfb,0xfa,0xfa,0x2b,0x2b,0xf9,0xfa,0x00,0x00,0x56, - 0xfb,0xac,0xac,0xfb,0x81,0xf6,0x00,0xf8,0xfa,0xfa,0x81,0x81,0x56,0x00,0x00,0x81, - 0x81,0x81,0xfa,0xfa,0x56,0x00,0xf6,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf8,0x00,0xf7, - 0xfa,0xfa,0x81,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0x00,0x00,0x00,0x56,0x81,0xfc,0xfc, - 0xfb,0x81,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x00,0x00,0xf6,0xfb, - 0xfc,0xfb,0x81,0x56,0xf5,0x00,0x00,0x00,0x00,0xf5,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9, - 0xf7,0x00,0x00,0x00,0xfb,0xfb,0xfb,0x81,0x81,0x81,0xfa,0xfa,0xfa,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf5,0x00,0x00,0x00,0x00,0xf5,0x56,0xfa,0x56, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x00,0xf6,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x00, - 0x00,0xf9,0xfa,0xf9,0xf8,0x2b,0x00,0x00,0x2b,0xf8,0xfa,0xfa,0xf8,0x00,0xf8,0xfa, - 0x81,0x2b,0x00,0xf5,0x81,0x81,0x81,0xfa,0xfa,0xfa,0x56,0xf5,0xf9,0x81,0xfa,0xfa, - 0xf5,0xf6,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf5,0x00,0xf9,0xfa,0xfa,0x56,0x2b, - 0x00,0x00,0x2b,0xf8,0xf9,0xfa,0xf7,0xf5,0xf8,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfc,0xff,0xff, - 0xfc,0xab,0xfb,0xab,0xfb,0xaa,0xfb,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf6,0xf8, - 0xfa,0xfa,0xf7,0x00,0xf5,0xfc,0xfc,0xfb,0x81,0xfa,0xf5,0xf8,0xf9,0xf9,0xf5,0x00, - 0xf8,0xfb,0xfc,0xfc,0xfb,0xf8,0x00,0xf5,0xfa,0x81,0x81,0x81,0x81,0xf9,0x00,0x00, - 0x81,0xfb,0x81,0xfa,0x81,0xf6,0x00,0xf8,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0x81,0x2b, - 0xf9,0xfa,0x81,0x81,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x00,0x00,0x00,0xf9,0x81,0xfc, - 0xfc,0xfc,0x81,0x81,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x00,0x00,0xf5, - 0xfb,0xfc,0xfc,0xfb,0x81,0xf9,0xf6,0x00,0x00,0x00,0x00,0x00,0x2b,0xf9,0xfa,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf5,0x00,0x00,0xfc,0xfc,0xfb,0xfc,0x81,0xfa,0xf9,0xfa,0xfa,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf5,0x00,0x00,0x00,0x00,0x00,0x2b, - 0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x2b,0x00,0xf7,0xf9,0xf9,0xfa,0xfa,0xfa,0x81,0x81, - 0xf6,0x00,0x2b,0xfa,0xfa,0xfa,0xf9,0x00,0x00,0xf5,0xfa,0xfa,0xfa,0xfa,0x81,0x81, - 0x81,0xfb,0x56,0x00,0x00,0x81,0xfb,0xfb,0xfb,0xfa,0x81,0xf7,0x2b,0xfa,0x81,0x81, - 0xf7,0x00,0x56,0x81,0xfa,0xf9,0xfa,0xfa,0x81,0xfa,0xf6,0x00,0xf7,0xfa,0xfa,0xfa, - 0xf9,0x00,0x00,0xf5,0xfa,0xfa,0x81,0xfa,0xfa,0x81,0xfb,0xfb,0xfb,0x81,0xfa,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfc,0xff, - 0xff,0xab,0xfc,0xab,0xfb,0xfb,0xfb,0x80,0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xf9,0x81,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf6, - 0x56,0xfa,0xfa,0xf8,0x00,0x00,0xfa,0xfc,0xfb,0xfb,0xf9,0xf5,0xf9,0xfa,0xfa,0xf6, - 0x00,0x2b,0xfb,0xfc,0xfb,0xfb,0xf5,0x00,0x2b,0x81,0x81,0x81,0x81,0xfb,0xf9,0x00, - 0x00,0xfb,0xfb,0xfb,0x81,0xf9,0x00,0x00,0x56,0x56,0xf9,0x81,0xfa,0xfa,0x81,0x81, - 0xfa,0x81,0x81,0xfb,0xfb,0xfa,0xfa,0xf9,0x56,0x56,0x56,0x00,0x00,0x00,0xf9,0xfb, - 0xfc,0xfc,0xfb,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x00,0x00, - 0x00,0xfb,0xfc,0xfc,0xfb,0x81,0xfa,0x81,0xf8,0xf5,0x00,0x00,0x00,0x00,0xf6,0xfa, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf6,0x00,0x00,0x56,0xfc,0xfc,0xfc,0x81,0xfa,0x81,0xfa,0xf9,0x56, - 0xf9,0xf9,0xfa,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0xf5,0x00,0x00,0x00, - 0x00,0xf6,0xfa,0xf9,0xf9,0xf9,0x56,0x00,0x00,0xf9,0xfa,0xfa,0xfa,0x81,0x81,0xfa, - 0xfa,0xf6,0x00,0xf5,0x81,0x81,0x81,0xfa,0x00,0x00,0x2b,0xfa,0x81,0x81,0x81,0x81, - 0x81,0xfb,0xfc,0xfb,0x00,0x00,0x56,0xfc,0xfc,0xfb,0x81,0xfa,0xf5,0xf7,0xf9,0xfa, - 0xfa,0x00,0x00,0x81,0x81,0xfa,0xfa,0x81,0x81,0x81,0xfa,0xf6,0x00,0xf5,0x81,0x81, - 0xfa,0xfa,0x00,0x00,0x2b,0xfa,0xfb,0xfb,0x81,0x81,0xfb,0x81,0xfb,0xfb,0x81,0xfa, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfc, - 0xff,0xff,0xab,0xab,0xab,0xab,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xfa,0xf9,0xf9,0xfa,0x81,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0x81,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0x56,0xfa,0xf9,0xf9,0xfa, - 0xf5,0xf9,0xf9,0xf9,0xfa,0x00,0x00,0xf8,0xfb,0xfb,0xfb,0xf7,0x2b,0xfa,0xf9,0xfa, - 0xf6,0x00,0xf6,0xfb,0xfc,0xfc,0xfb,0x00,0x00,0xf9,0x81,0x81,0xfb,0xfb,0xfb,0xf9, - 0x00,0x00,0xfb,0xfb,0xfc,0xfb,0xf8,0x00,0xf6,0xf9,0xf9,0x81,0x81,0x81,0x81,0x81, - 0xfa,0xf9,0xfa,0x81,0x81,0x81,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0x00,0x00,0x00,0x56, - 0xfc,0xfc,0xfc,0xfb,0x81,0xf9,0x56,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x00, - 0x00,0xf5,0xfb,0xfc,0xfc,0xfb,0x81,0xfa,0xfa,0x81,0x81,0xf7,0x00,0x00,0x00,0x00, - 0x2b,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf5,0x00,0x00,0xf5,0xfc,0xac,0xfc,0xfb,0x81,0xfa,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xfb,0x81,0xf7,0x00, - 0x00,0x00,0x00,0x2b,0xfa,0x81,0xfa,0xf7,0x00,0xf5,0xf9,0xf9,0xfa,0x81,0x81,0x81, - 0xf9,0xf7,0x00,0x00,0x00,0x81,0xfb,0x81,0xfa,0x00,0x00,0xf8,0x81,0xfb,0xfc,0xfb, - 0xfb,0x81,0xfb,0xfc,0xfb,0xf6,0x00,0xf7,0xfb,0xfc,0xfb,0xfb,0xfa,0xf5,0xf9,0xfa, - 0x81,0xf8,0x00,0xf5,0x81,0x81,0xfa,0x81,0xfb,0x81,0xf9,0xf7,0x00,0x00,0x00,0x81, - 0x81,0x81,0xfa,0x00,0x00,0xf7,0x81,0xfc,0xfb,0xfb,0xfb,0x81,0xfb,0xfb,0xfb,0x81, - 0x81,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0xfa,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xfb,0xff,0xff,0xfc,0xfc,0xab,0xfb,0xab,0x80,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0x56,0x56, - 0xf9,0x00,0xf9,0xfa,0x81,0xfa,0xf6,0x00,0xf6,0xfc,0xfb,0xfb,0xf6,0x56,0xfa,0xf9, - 0xfa,0xf6,0x00,0xf6,0xfb,0xfc,0xfc,0xfb,0xfa,0xfa,0x81,0x81,0xfb,0xfb,0xfb,0xfb, - 0x56,0x00,0x00,0x81,0xfb,0xfc,0xfb,0xf6,0x00,0x2b,0x56,0xfa,0x81,0x81,0x81,0x81, - 0xfa,0xf9,0xf9,0xfa,0x81,0x81,0x81,0xfa,0x81,0xf9,0x56,0x56,0xf9,0x00,0x00,0x00, - 0xf9,0xfc,0xfc,0xfc,0xfb,0x81,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf8, - 0x00,0x00,0xf6,0xfb,0xfc,0xfc,0xfc,0x81,0xfa,0xfa,0xfa,0xfb,0xfc,0xfa,0xf5,0x00, - 0x00,0x00,0xf9,0xfb,0x81,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf7,0xf5,0xf6,0x00,0x00,0x56,0xac,0xfc,0xfb,0x81,0xfa,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x81,0x81,0xfc, - 0xfa,0xf5,0x00,0x00,0x00,0xf9,0x81,0xfa,0x2b,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xf5,0xfb,0xfb,0xfb,0x81,0x00,0x00,0x56,0xfb,0xfc,0xfc, - 0xfb,0xfb,0x81,0x81,0xfb,0x81,0xf7,0x00,0xf5,0xfb,0xfc,0xfc,0x81,0xf7,0x2b,0xf9, - 0xf9,0xfa,0xf7,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf5, - 0x81,0xfc,0xfb,0x81,0x00,0x00,0xf9,0xfb,0xfc,0xfc,0xfb,0x81,0x81,0x81,0xfb,0xfb, - 0x81,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xfa, - 0x56,0xfc,0xff,0xff,0xfc,0xab,0xfb,0xaa,0xfb,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0x81,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x00,0xf9,0xfa,0xfa,0xfa,0xf8,0x00,0x00,0x81,0xfc,0xfb,0x00,0x81,0xf9, - 0xfa,0xfa,0xf6,0x00,0xf6,0xfb,0xfb,0xfc,0xfb,0xfb,0x81,0x81,0x81,0xfb,0xfc,0xfc, - 0x81,0x56,0x00,0x00,0x81,0xfb,0xfc,0xfb,0xf5,0x00,0xf7,0xf9,0xfa,0x81,0x81,0x81, - 0xfa,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0x56,0xfa,0xf6,0x00, - 0x00,0xf9,0xfc,0xfc,0xfc,0xfb,0x81,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf8,0x00,0x00,0xf6,0x81,0xfc,0xfc,0xfc,0x81,0xfa,0xfa,0xfa,0x81,0xfb,0xfc,0x81, - 0xf5,0x00,0x00,0xf8,0xfb,0x81,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xfa,0xf9,0xf9,0xf9,0x56,0xf5,0xf7,0xf9,0xf5,0x00,0xf5,0xfc,0xfc,0xfb,0x81,0xf9, - 0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x81, - 0x81,0xfb,0x81,0xf5,0x00,0x00,0xf8,0xfb,0x81,0xf5,0x00,0x2b,0xfa,0x81,0x81,0xfb, - 0xfb,0x81,0xfa,0xf9,0xf9,0xfa,0x81,0xfb,0xfc,0xfb,0xfb,0x00,0x00,0x56,0xfb,0xfc, - 0xfc,0xfb,0xfb,0x81,0x81,0xfa,0xfa,0x56,0x00,0x00,0xfa,0xfc,0xfc,0x81,0x2b,0xf8, - 0xf9,0xfa,0xfa,0xf6,0x00,0xf7,0xfa,0x81,0x81,0xfb,0x81,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xfa,0x81,0xfc,0xfb,0xfb,0x00,0x00,0x56,0xfb,0xfc,0xfc,0xfb,0x81,0xfa,0x81,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xfb,0xaa,0x81,0x80,0xaa,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0x56,0x56,0xfa,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0x81,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xf9,0x00,0xf9,0xfa,0xfa,0xfa,0x56,0x00,0x00,0x56,0xfb,0xf9,0x2b,0x81, - 0xfa,0xfa,0xfa,0xf6,0x00,0xf6,0x81,0xfb,0xfb,0xfb,0x81,0x81,0x81,0x81,0xfb,0xfc, - 0xfb,0x56,0xf5,0x00,0x00,0x81,0xfb,0xfc,0xfc,0x00,0x00,0xf7,0xfa,0x81,0xfb,0xfb, - 0x81,0xfa,0xfa,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x2b, - 0x00,0x00,0xf8,0xfc,0xfc,0xac,0xfc,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf8,0x00,0x00,0xf8,0x81,0xfc,0xfc,0xfc,0xfb,0xfa,0xf9,0xf9,0xfa,0xfa,0x81, - 0xfb,0x81,0x00,0x00,0xf5,0xfc,0xfb,0x81,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf7,0x00,0xf9,0xf9,0xf7,0x00,0x00,0x56,0xac,0xfb,0x81, - 0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa, - 0xfa,0xfa,0x81,0xfc,0x81,0x00,0x00,0xf5,0xac,0xfc,0x00,0x00,0xf7,0xfa,0x81,0xfb, - 0xfb,0x81,0x81,0x81,0xfa,0xfa,0xfa,0x81,0xfb,0xfb,0xfc,0xfb,0x00,0x00,0x56,0x81, - 0xfb,0xfc,0xfb,0x81,0xfa,0xf9,0xfa,0xf9,0xfa,0xf5,0x00,0xf8,0xfc,0xfb,0xfb,0xf5, - 0xfa,0xfa,0xfa,0xfa,0x00,0x00,0xf8,0x81,0x81,0xfb,0xfb,0xfb,0x81,0xfa,0xfa,0xfa, - 0xfa,0x81,0xfb,0xfc,0xfb,0xfb,0x00,0x00,0x56,0x81,0xfc,0xfc,0xfb,0x81,0x81,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xfc,0xff,0xff,0xab,0xab,0xab,0xab,0xfb,0xfb,0xaa,0x81,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0x81, - 0xf9,0xf9,0x81,0xf9,0x00,0xf9,0xfa,0x81,0xfa,0xfa,0x00,0x00,0x2b,0xfb,0xf7,0xf8, - 0x81,0xfa,0xfa,0xfa,0xf6,0x00,0x2b,0xfb,0xfb,0xfc,0xfc,0x81,0xfa,0x81,0x81,0xfb, - 0xf9,0xf6,0x2b,0xf7,0x00,0x00,0xfa,0xfb,0xfb,0xfb,0x00,0x00,0xf7,0x81,0x81,0xfc, - 0xfb,0x81,0x81,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0x56,0xf9,0xf9,0xf9, - 0xf7,0x00,0x00,0xf7,0xfc,0xac,0xfc,0xfb,0xfa,0xfa,0xfa,0x56,0x56,0xfa,0x56,0x56, - 0x56,0xf9,0x2b,0x00,0x00,0x56,0x81,0xfc,0xfc,0xfc,0x81,0xf9,0xf9,0x56,0xf9,0xf9, - 0xfa,0x81,0xfb,0xf7,0x00,0x00,0xac,0xfc,0xfc,0x81,0xfa,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0x56,0x56,0xf5,0xf7,0xf9,0xf9,0xf9,0xf5,0x00,0xf5,0xfc,0xfc, - 0xfb,0x81,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xfb,0xfb,0x2b,0x00,0x00,0xac,0xfc,0x00,0x00,0xf8,0x81,0xfb, - 0xfc,0xfc,0xfb,0x81,0x81,0xfa,0xfa,0xfa,0x81,0xfb,0xfb,0xfc,0xfb,0x00,0x00,0xf9, - 0xfb,0xfc,0xfb,0xfb,0x81,0xfa,0xf9,0xf9,0xf9,0xf9,0xf6,0x00,0x2b,0xfb,0xfb,0x56, - 0x2b,0xfa,0xf9,0xfa,0xfa,0x00,0x00,0xf7,0xfb,0xfb,0xfc,0xfc,0xfb,0x81,0x81,0x81, - 0xfa,0xfa,0x81,0xfb,0xfc,0xfb,0xfb,0x00,0x00,0x56,0xfb,0xfc,0xfc,0xfb,0x81,0xfa, - 0xf9,0x56,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xfa,0xf9,0xfc,0xff,0xff,0xfc,0xfc,0xab,0xfb,0xaa,0xfb,0x80,0xfb,0x80, - 0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xf5,0xfa,0xfa,0x81,0xfa,0xfa,0x2b,0x00,0xf5,0xfb,0xf6, - 0x81,0xfb,0x81,0x81,0x81,0xf6,0x00,0xf6,0x81,0xfb,0xfc,0xfb,0xfb,0x81,0xfb,0xfa, - 0x2b,0xf6,0x56,0x81,0x56,0x00,0x00,0x81,0xfb,0xfc,0xfc,0xf5,0x00,0x2b,0x81,0xfb, - 0xfb,0xfb,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0x00,0x00,0xf5,0xfb,0xfc,0xac,0xfb,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf6,0x00,0x00,0x81,0xfb,0xfc,0xfc,0xfa,0x81,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xf8,0x00,0x00,0xac,0xac,0xfc,0xfb,0x81,0xfa,0xf9,0x56,0x56, - 0xf9,0xf9,0xfa,0xfa,0xf9,0x56,0xf7,0x00,0x56,0x56,0xf9,0xfa,0xf8,0x00,0x00,0x56, - 0xfc,0xfb,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf8,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0x56,0x00,0x00,0xfc,0xac,0x00,0x00,0xf7,0xfb, - 0xfc,0xfc,0xfc,0xfb,0x81,0x81,0xfa,0xfa,0xfa,0x81,0xfb,0xfb,0xfb,0x81,0x00,0x00, - 0x56,0x81,0xfb,0xfc,0xfb,0x81,0xfa,0xfa,0x56,0x56,0x56,0xf7,0x00,0xf5,0xfc,0xfc, - 0xf7,0x56,0x81,0xfa,0xf9,0xfa,0x00,0x00,0xf7,0x81,0xfb,0xfb,0xfc,0xfb,0x81,0x81, - 0xfa,0xfa,0x81,0x81,0x81,0xfb,0xfb,0x81,0x00,0x00,0x56,0x81,0xfb,0xfb,0xfb,0xfa, - 0xfa,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xfb,0xab,0xfb,0xaa,0xfb,0xaa, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0x81,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x81,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xf8,0xf6,0xfa,0xfa,0xfa,0x81,0xfa,0xf8,0x00,0x00,0xf8, - 0xf5,0xfc,0xfb,0x81,0x81,0xfa,0xf6,0x00,0xf6,0x81,0xfb,0xfc,0xfb,0xfb,0x81,0x56, - 0x00,0xf8,0x81,0xfa,0x81,0x56,0x00,0x00,0x81,0xfc,0xfc,0xfb,0xf6,0x00,0xf6,0x81, - 0xfc,0xfb,0xfb,0x81,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x2b,0x00,0x00,0x81,0xfc,0xfc,0xfb,0xfa,0xfa,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0x00,0x00,0x2b,0xfa,0xfb,0xfc,0xfa,0x56,0x81,0xfa,0xf9,0xfa, - 0x56,0x56,0xfa,0xf9,0xf9,0x56,0x00,0xf5,0xfc,0xfc,0xfc,0xfb,0xfa,0xfa,0xf9,0x56, - 0xf9,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf5,0x2b,0x56,0xf9,0xfa,0x81,0x81,0xf5,0x00, - 0xf5,0xfb,0xfc,0xfb,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf8,0xf7,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x00,0xf5,0xfc,0xac,0x2b,0x00,0xf6, - 0xfb,0xfb,0xfc,0xfb,0xfb,0x81,0xfa,0xfa,0xfa,0xfa,0x81,0xfa,0x81,0x81,0xfa,0x00, - 0x00,0x56,0x81,0xfb,0xfb,0x81,0x81,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x00,0x00,0xf9, - 0xfb,0xf5,0x81,0x81,0xfa,0xf9,0x81,0xf6,0x00,0xf6,0x81,0xfb,0xfc,0xfc,0xfb,0x81, - 0xfa,0x81,0x81,0xfa,0xfa,0x81,0x81,0x81,0xfa,0x00,0x00,0x56,0x81,0xfb,0xfb,0xfb, - 0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xfc,0xff,0xff,0xab,0xab,0xab,0xfb,0xfb,0xfb,0x80, - 0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6, - 0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9, - 0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf8,0xf6,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0x00,0x00, - 0x00,0xf8,0xfc,0xfb,0xfb,0x81,0xfa,0xf6,0x00,0xf6,0xfb,0xfb,0xfc,0xfb,0x81,0xf8, - 0x00,0xf8,0xfa,0xfa,0xfa,0xfa,0xf8,0x00,0x00,0xfb,0xfc,0xfc,0xfc,0xf8,0x00,0xf5, - 0x81,0xfb,0xfc,0xfb,0x81,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf8,0x00,0x00,0xf8,0xfc,0xfc,0xfb,0x81,0xfa,0x56,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x2b,0x00,0x00,0x56,0xfa,0xfb,0xfb,0xfa,0xf6,0x81,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf8,0x00,0xf6,0xfb,0xfc,0xfc,0xfb,0x81,0xfa,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf7,0x00,0xf9,0xf9,0xf9,0x81,0x81,0x81,0xf8, - 0x00,0x00,0x56,0xfc,0x81,0x81,0xfa,0xfa,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf8,0xf5, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf8,0x00,0xf6,0xfb,0xfc,0xf7,0x00, - 0x00,0xfb,0xfc,0xfb,0xfb,0x81,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0x00,0x00,0x56,0xfb,0xfb,0xfb,0x81,0x81,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf5,0x00, - 0xf8,0xf9,0x2b,0xfb,0xfb,0xfa,0xfa,0x81,0x2b,0x00,0x00,0xfa,0xfb,0xfc,0xfb,0x81, - 0x81,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0x00,0x00,0x56,0x81,0xfb,0xfb, - 0xfb,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9, - 0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xfc,0xab,0xab,0xfb,0xaa, - 0xfb,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0x2b,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9, - 0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0x81,0x56,0xf6,0x81,0xfa,0xfa,0x81,0xfa,0x81,0xf5, - 0x00,0x00,0xf9,0xfc,0xfc,0xfb,0xfb,0x81,0xf6,0x00,0xf6,0xfb,0xfb,0xfc,0xfc,0xf9, - 0x00,0xf6,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0x00,0x00,0xfb,0xfc,0xfc,0xfb,0x56,0x00, - 0x00,0x56,0xfb,0xfb,0xfb,0x81,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x2b,0x00,0xf5,0xfb,0xfc,0xfb,0xfa,0x81,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf5,0x00,0x2b,0xfa,0xfa,0xfb,0xfc,0x56,0xf6,0x81,0xfa, - 0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf8,0x00,0xf8,0x81,0xfb,0xac,0xfb,0x81,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf5,0x2b,0xf9,0xf9,0xf9,0x81,0x81,0x81, - 0xfa,0xf5,0x00,0xf5,0xfb,0xfb,0xfb,0x81,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x2b, - 0xf5,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56,0xf7,0x00,0xf7,0x81,0xfc,0xf9, - 0x00,0x00,0x56,0xfc,0xfb,0xfb,0x81,0x81,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0xf9, - 0xf9,0x00,0x00,0x56,0xfb,0xfb,0xfb,0xfb,0x81,0xf9,0x56,0x56,0x56,0x56,0x56,0x2b, - 0x00,0xf6,0xf8,0xf9,0xfb,0xfb,0x81,0xfa,0x81,0xf8,0x00,0x00,0xf8,0xfb,0xfc,0xfb, - 0x81,0x81,0xfa,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0x00,0x00,0x56,0x81,0xfb, - 0xfc,0xfb,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xfa,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xab,0xab,0xfb,0xaa,0xfb, - 0x81,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0x2b,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xfa,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0x81,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf8,0xf6,0xfa,0x81,0xfa,0xfb,0x81,0xfa, - 0xf7,0x00,0x00,0xfb,0xfc,0xac,0xfb,0x81,0x81,0xf6,0x00,0x00,0x81,0xfb,0xfc,0xfb, - 0x2b,0x00,0xf7,0xfa,0xfa,0xfa,0xfa,0xfb,0xf7,0x00,0x00,0xfb,0xfb,0xfc,0xfb,0x81, - 0xf5,0x00,0x2b,0xfb,0xfb,0xfb,0x81,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf5,0x00,0xf8,0xfc,0xfc,0x81,0xfa,0xf9, - 0xf9,0xf9,0xfa,0x56,0xf9,0xf7,0x00,0xf5,0xf9,0xf9,0x81,0xfc,0xfc,0x56,0x00,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x2b,0x00,0xf9,0x81,0xfb,0xfb,0xfb,0x81, - 0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x2b,0x00,0x56,0xf9,0xf9,0xfa,0x81,0x81, - 0x81,0xfa,0xf7,0x00,0x00,0x56,0xfc,0xfb,0x81,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56, - 0xf7,0x00,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf6,0xf5,0xf9,0x81,0xfb, - 0xfb,0xf5,0x00,0x00,0xfb,0xfb,0xfc,0xfb,0xfa,0xf9,0x56,0xf9,0x56,0xf7,0xf9,0x56, - 0x56,0xf9,0x00,0x00,0x56,0x81,0xfb,0xfc,0x81,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xf8,0x00,0x00,0x00,0xfb,0xfb,0xfb,0x81,0xfa,0x81,0xf9,0xf5,0x00,0xf5,0xfb,0xfc, - 0xfb,0x81,0xfa,0xf9,0x56,0xf9,0xf9,0xf8,0x56,0x56,0x56,0xf9,0x00,0x00,0x56,0x81, - 0xfb,0xfc,0xfb,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0x56, - 0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfc,0xff,0xff,0xfc,0xfc,0xab,0xab, - 0xfb,0xaa,0xfb,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0x2b,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xfa,0xfa,0x81,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf7,0xf5,0xfa,0xfa,0x81,0xfb,0xfa, - 0xf9,0x56,0x00,0x2b,0x81,0xfc,0xac,0xfc,0xfb,0x81,0xf6,0x00,0x00,0x81,0xfc,0xfc, - 0xfb,0x00,0x00,0xf7,0x81,0x81,0xfb,0x81,0xfa,0xf5,0x00,0x00,0x81,0xfb,0xfc,0xfb, - 0xfa,0x56,0x00,0x00,0x56,0xfb,0xfb,0x81,0xfa,0xfa,0xf9,0x56,0xf7,0xfa,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x00,0x00,0xf9,0xfb,0x81,0x81, - 0xfa,0xf9,0xf9,0xf9,0x56,0xf8,0x00,0x00,0xf8,0xf9,0xfa,0xfb,0xfc,0xfb,0xf8,0x00, - 0xf7,0xfa,0xf9,0xfa,0xfa,0x56,0xf9,0xf9,0x56,0x00,0x2b,0xfa,0xfa,0xfb,0xfb,0xfb, - 0xfb,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0xf5,0xf5,0x56,0xfa,0xfa,0xfa,0x81, - 0x81,0xfa,0xfa,0x56,0x00,0x00,0xf5,0xfc,0xfc,0x81,0xfa,0xfa,0xf9,0x56,0x56,0xf9, - 0xfa,0xf7,0x00,0x2b,0xf9,0xfa,0xfa,0xfa,0xf9,0x56,0xf9,0xf8,0x00,0xf7,0xfa,0xfa, - 0xfb,0xfb,0x56,0x00,0x00,0xf6,0xfb,0xfc,0x81,0xf9,0xf9,0x56,0x56,0x2b,0x2b,0xfa, - 0x56,0xf9,0xf9,0x00,0x00,0xf8,0x81,0xfb,0xfc,0x81,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xfa,0x00,0x00,0x2b,0xfb,0xfc,0xfb,0xfb,0x81,0xfa,0xfa,0xf7,0x00,0x00,0xf6, - 0xfb,0xfb,0xfb,0xfa,0xf9,0xf9,0xf9,0xf7,0xf6,0x56,0xf9,0xfa,0xf9,0x00,0x00,0xf8, - 0x81,0xfb,0xfb,0x81,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfc,0xff,0xff,0xab,0xab,0xfb, - 0xfb,0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0x2b,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0x2b,0x00,0xfa,0xfa,0x81,0xfb, - 0xfa,0xfa,0xf9,0xf5,0xf8,0x81,0xfc,0xac,0xfb,0xfb,0x81,0xf6,0x00,0x00,0xfb,0xfc, - 0xfc,0xfc,0xf5,0x00,0x00,0x56,0x81,0x81,0xf8,0xf6,0x56,0x00,0x00,0xf8,0x56,0xf7, - 0xfb,0x81,0xfa,0x2b,0x00,0xf5,0x56,0xfc,0xfb,0xfa,0xf9,0xf8,0xf5,0xf7,0x56,0xf9, - 0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf5,0x00,0x56,0xfc, - 0x81,0xfa,0xf9,0xf9,0x56,0xf7,0x00,0x00,0x56,0xf9,0xf9,0xfa,0xfb,0xfc,0xfb,0xf9, - 0x00,0x00,0xf7,0xfa,0xfa,0x81,0xf9,0xf9,0x56,0xf5,0xf6,0xfa,0xfa,0x81,0xfb,0xfb, - 0xfb,0x81,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf6,0x00,0x2b,0xf9,0xfa,0xfa,0xfa, - 0x81,0x81,0xfa,0xf9,0xf9,0x00,0x00,0x00,0xf7,0xfb,0xfb,0x81,0xfa,0xf9,0x56,0x56, - 0xf9,0xf9,0xf8,0x00,0x00,0xf8,0x81,0xfa,0xfa,0xf9,0xf9,0x56,0xf5,0xf6,0xfa,0xfa, - 0x81,0x81,0xfb,0xfb,0xf6,0x00,0x00,0xf5,0x56,0xfa,0xfa,0xf9,0xf8,0xf6,0xf5,0x56, - 0xf9,0x56,0xf9,0xf9,0x00,0x00,0x56,0xfb,0xfc,0xfc,0x81,0x81,0xfa,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf6,0x00,0xf8,0xfc,0xfc,0xfc,0xfb,0xfa,0xfa,0xfa,0xf9,0xf5,0x00, - 0x00,0xf5,0x56,0xfa,0xfa,0xf9,0xf7,0xf6,0xf5,0x56,0x56,0xf9,0xf9,0x56,0x00,0x00, - 0xf9,0xfb,0xfb,0xfb,0xfb,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xab, - 0xab,0xab,0xfb,0xaa,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0xf8,0x00,0x00,0xf7,0x56,0x81, - 0xfb,0x81,0x81,0x81,0x2b,0xfa,0xfb,0xfb,0xac,0xfb,0xf9,0xf7,0x00,0x00,0x00,0x2b, - 0xfa,0xfb,0xfb,0xf8,0x00,0x00,0x00,0x00,0x00,0x2b,0x81,0xfa,0xf6,0x00,0x00,0xf6, - 0xfb,0xfb,0x81,0xfa,0xfa,0x2b,0x00,0x00,0xf6,0xf8,0xf7,0x2b,0x00,0xf7,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xfa,0xfa,0x2b,0x00, - 0xf5,0xf8,0x56,0xf8,0xf7,0xf6,0x00,0xf6,0xf8,0x56,0xf9,0xfa,0x81,0xfc,0xfb,0x81, - 0x81,0xf7,0x00,0x00,0xf6,0x56,0x56,0xf8,0x2b,0xf5,0x2b,0xf9,0xf9,0xfa,0x81,0x81, - 0xfb,0xfb,0xfa,0xf9,0xf9,0x56,0x56,0xf8,0xf8,0xf5,0x00,0x00,0xf5,0xf8,0xfa,0x81, - 0x81,0x81,0xfa,0xf9,0xf8,0x2b,0x00,0x00,0x00,0x00,0xf7,0xfb,0x81,0xfa,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0x2b,0x00,0x00,0xf6,0xf8,0x56,0x56,0x2b,0x00,0x2b,0xf9,0x56, - 0xf9,0x81,0x81,0xfb,0x81,0xfa,0x2b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf6,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf7,0x00,0x00,0x2b,0xfa,0xfb,0xfb,0xfb,0x81,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf7,0x00,0x81,0xfb,0xfc,0xfc,0xfb,0x81,0xfa,0xf9,0xf9,0x56, - 0x2b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf6,0x56,0xf9,0xf9,0xf9,0xf9,0xf7,0x00, - 0x00,0x2b,0xfa,0xfb,0xfc,0x81,0x81,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xfc,0xff,0xff,0xab, - 0xfc,0xab,0xfb,0xab,0x80,0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0xf9, - 0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0x00,0x00,0xf5,0xf6,0x00,0x00, - 0xf8,0x81,0x81,0xfa,0xfa,0xf9,0xfa,0x81,0xfb,0xfc,0xf9,0x00,0xf6,0xf6,0xf6,0xf6, - 0xf6,0x00,0x56,0xfc,0x81,0xf7,0xf5,0x00,0x2b,0xfa,0xfc,0xfb,0x81,0xf9,0x2b,0xf7, - 0xfb,0xfb,0xfc,0xfb,0xfa,0xfa,0xfa,0xf9,0x2b,0xf5,0x00,0xf5,0x2b,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x81, - 0xf9,0xf7,0xf6,0x00,0x00,0xf5,0x2b,0xf8,0xf9,0xfa,0xf9,0xfa,0xfb,0xfb,0xfb,0xfb, - 0x81,0xfa,0xf9,0x56,0xf7,0xf6,0x00,0x00,0xf5,0x2b,0x56,0xfa,0xf9,0xf9,0xf9,0x81, - 0x81,0x81,0x81,0xf9,0xf9,0x56,0x56,0xfa,0xf5,0x00,0xf6,0xf6,0xf6,0xf5,0x00,0xf6, - 0xfb,0x81,0x81,0xfa,0xf8,0x00,0xf5,0xf6,0xf6,0xf6,0xf5,0x00,0x00,0x81,0x81,0x81, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf7,0xf6,0x00,0x00,0xf5,0x2b,0xf8,0xf9,0xf9, - 0xf9,0x81,0x81,0x81,0x81,0xfa,0xfa,0x81,0xf9,0x2b,0xf5,0x00,0xf5,0x2b,0xf8,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf5,0xf5,0xf6,0xf6,0xf6,0x00,0xf6,0xfa,0xfb,0xfa,0xf9,0xf9, - 0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf6,0x81,0xfb,0xfb,0xfc,0xfb,0x81,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xf9,0x2b,0xf5,0x00,0xf5,0x2b,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xf5,0x00, - 0xf6,0xf6,0xf6,0x00,0xf6,0xfa,0xfb,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56,0xf9,0xf9, - 0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9, - 0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfc,0xff,0xff, - 0xfc,0xab,0xfb,0xaa,0xfb,0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x81,0xfa,0x81,0xf9,0xfa,0xfa,0x81,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa, - 0x81,0xfb,0xfb,0x81,0x81,0x81,0xf9,0xfa,0x81,0x81,0xfb,0x81,0xfa,0x81,0xf9,0xf9, - 0x81,0xfb,0xfc,0xac,0xfc,0xfc,0xfb,0xfb,0x81,0xfc,0xfc,0xfc,0xfb,0xfb,0x81,0x81, - 0xfb,0xfb,0xfc,0xfc,0x81,0x81,0xfa,0xfa,0x81,0x81,0xfb,0xfb,0xfb,0xfb,0x81,0xfa, - 0xfa,0x81,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xfa, - 0xfa,0x81,0xfb,0xfb,0xfb,0x81,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0x81,0x81,0xfb, - 0x81,0xfa,0xfa,0xf9,0xf9,0xfa,0x81,0x81,0xfb,0x81,0xfa,0xfa,0xf9,0xf9,0x81,0xfa, - 0x81,0x81,0x81,0x81,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa, - 0x81,0xfb,0xfb,0x81,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x81,0xfb,0xac,0xac,0xfc,0xfb, - 0x81,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xfa,0x81,0xfb,0x81,0x81,0x81,0xfa,0xf9, - 0xfa,0x81,0x81,0x81,0x81,0x81,0xfa,0xfa,0xfa,0xfa,0xfb,0xfb,0xfc,0xfb,0xfb,0x81, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0x81,0x81,0xfc,0xfc,0xfb,0x81,0xfa, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0x81,0x81,0xfb,0xfb,0xfb,0xfa,0xfa,0x56, - 0xf9,0xf9,0xf9,0x81,0x81,0xfc,0xfc,0xfc,0xfb,0x81,0x81,0x81,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xfa,0x81,0xfb,0xfc,0xfb,0x81,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfb,0xff, - 0xff,0xab,0xfc,0xab,0xfb,0xab,0xaa,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0x81, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0x81,0x81,0xfc,0xfb,0x81,0xfb,0x81,0xfa,0xfa,0x81,0x81,0x81,0xfa,0xfa,0xfa,0xf9, - 0xfa,0x81,0xfb,0xfc,0xfc,0xac,0xfc,0xfb,0x81,0xfb,0xfc,0xfc,0xfc,0xfc,0xfb,0x81, - 0x81,0x81,0xfb,0xfc,0xfc,0xfb,0x81,0xfa,0xfa,0x81,0x81,0x81,0xfc,0xfb,0xfb,0x81, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xfb,0x81,0x81,0x81,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0x81,0x81,0xfb, - 0x81,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0x81,0xfb,0x81,0x81,0x81,0x81,0xfa,0xfa,0xfa, - 0xfa,0x81,0x81,0x81,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa, - 0x81,0xfb,0xfc,0xfb,0x81,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfb,0xfb,0xfc,0xfc,0xfc, - 0xfc,0x81,0xfa,0xf9,0xf9,0xf9,0x56,0xfa,0xfa,0xf9,0x81,0x81,0xfb,0x81,0x81,0xfa, - 0xfa,0x81,0xfa,0xfa,0x81,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfb,0xfb,0xfb,0xfc,0xfc, - 0xfb,0xfb,0xfb,0x81,0x81,0xfa,0xfa,0x81,0xf9,0xfa,0xfa,0x81,0xfc,0xfb,0xfb,0xfb, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x81,0xfb,0xfb,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xfa,0xfb,0xfb,0xfc,0xfc,0xfb,0xfb,0xfb,0x81,0x81,0xfa,0x81, - 0xfa,0xfa,0xfa,0x81,0xfa,0x81,0xfc,0xfc,0xfb,0x81,0xfa,0xf9,0xfa,0x56,0xf9,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfc, - 0xff,0xff,0xab,0xab,0xab,0xfb,0xfb,0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xfa,0xf9,0x56,0xfa,0xf9,0x56, - 0x56,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa, - 0x81,0x81,0xfb,0xfb,0xfb,0xfb,0x81,0x81,0xfa,0x81,0x81,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xfa,0x81,0xfb,0xfc,0xfc,0xac,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfb, - 0xfb,0x81,0x81,0xfb,0xfb,0xfb,0xfb,0x81,0xfa,0xf9,0xfa,0xf9,0x81,0xfb,0xfb,0xfb, - 0x81,0x81,0x81,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9, - 0xf9,0x56,0xf9,0xfa,0xfa,0x81,0x81,0x81,0x81,0x81,0xfa,0xfb,0x81,0x81,0xfb,0x81, - 0x81,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xfa,0x81,0x81,0x81,0x81,0x81,0xfb,0x81,0x81, - 0x81,0xfa,0x81,0xfa,0xfa,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xfb,0xfc,0xfb,0xfb,0x81,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0x81,0xfb,0xfc,0xfc, - 0xfc,0xfb,0x81,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0x81,0xfb,0xfb,0xfb,0x81, - 0x81,0x81,0x81,0xfa,0x81,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0x81,0xfb,0xfc, - 0xfc,0xfb,0xfb,0xfb,0x81,0x81,0x81,0xfa,0xfa,0xf9,0xfa,0xfa,0x81,0xfb,0xfb,0xfb, - 0x81,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfb,0xfb,0x81,0xfa, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x81,0xfb,0xfb,0xfb,0xfb,0xfb,0x81,0x81,0x81, - 0x81,0x81,0xfa,0xfa,0xfa,0xfa,0xfb,0xfb,0xfc,0x81,0xfa,0xfa,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0xfa,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xfa,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xfc,0xff,0xff,0xfc,0xab,0xfb,0xab,0xab,0x80,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0x81,0x81,0xfb,0xfc,0xfb,0xfb,0xfb,0x81,0xf9,0x81,0xfa,0xfa,0x81,0xfa,0xfa, - 0xfa,0xf9,0xfa,0x81,0x81,0xfb,0xfc,0xfc,0xfb,0x81,0xfb,0xfb,0x81,0xfb,0xfb,0xfb, - 0xfb,0x81,0xfa,0x81,0x81,0xfa,0x81,0xfa,0x81,0x81,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xfb,0x81,0x81,0x81,0x81,0xfa,0xfa,0xfa,0xfa,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0x81,0x81,0x81,0x81,0xfa,0x81,0x81, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xfa,0xfa,0x81,0xfb,0x81,0x81,0x81, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xfa,0x81,0xfb,0xfb,0xfb,0x81,0xfb,0x81,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0x81,0xfb, - 0xfb,0xfc,0xfb,0x81,0x81,0xfa,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0x81, - 0x81,0x81,0xfb,0xfa,0x81,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xfa,0x81, - 0xfb,0x81,0xfb,0xfc,0xfb,0x81,0x81,0x81,0xfa,0xfa,0xf9,0xfa,0xfa,0x81,0xfb,0xfc, - 0x81,0x81,0xfa,0xfa,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0x81,0x81,0xfb,0xfb,0xfb,0xfb,0xfb, - 0x81,0x81,0xf9,0xf9,0xf9,0xfa,0xfa,0x81,0xfb,0x81,0x81,0x81,0x81,0xfa,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfc,0xff,0xff,0xfc,0xab,0xfc,0xaa,0xfb,0xfb,0xfb,0x80,0x80,0xfb,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xfa,0x56,0x56,0xfa, - 0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0x81,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0x81,0x81,0x81,0x81,0x81,0xfa,0xf9,0x81,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xfa,0xfa,0x81,0xfb,0xfb,0x81,0x81,0x81,0x81,0xfa,0xfa,0x81,0x81, - 0x81,0x81,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0x81,0xfa,0x56,0xf9,0xf9,0xfa,0xf9,0xfa, - 0x81,0x81,0x81,0xfa,0x81,0xfa,0xf9,0xfa,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x81,0x81,0xfa,0xfa,0x81,0xfa,0xfa, - 0x81,0xf9,0xfa,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xfa,0xfa,0xfa,0x81, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0x81,0x81,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x81,0x81, - 0x81,0x81,0x81,0x81,0xfa,0xfa,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9, - 0x81,0x81,0x81,0xfa,0xfa,0xfa,0x81,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xfa,0x81,0xfa,0xfa,0x81,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0x56,0xf9,0xfa,0xfa,0x81, - 0x81,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0xfa,0x81,0xfa,0x81,0x81,0x81,0xfa, - 0x81,0x81,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0x81,0x81,0xfa,0xf9,0x56, - 0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xfa,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xfa,0x56,0x56,0xf9, - 0xf9,0x56,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xfb,0xaa,0x80,0xfb,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xfa,0x81,0xfa,0xfa,0x81,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0x81,0x81,0x81,0xfa,0xfa,0xfa,0xfa, - 0x81,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xfa,0x81,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xfa, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xfa,0xf9,0xfb,0xff,0xff,0xfc,0xab,0xab,0xab,0xfb,0xfb,0xaa,0x80,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xfa, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0x81,0xfa,0x81,0xfa,0xf9,0xfa, - 0xfa,0xfa,0xfa,0x81,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0x81,0x81,0xf9,0xf9,0xfa, - 0xf9,0x81,0xf9,0xfa,0xfa,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xfa, - 0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0x56,0x56,0xf9,0x56,0xfa,0x56,0xf9,0xf9,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa, - 0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xab,0x80,0xfb,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xfa,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56, - 0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0x56,0xfb,0xff,0xff,0xfc,0xab,0xfb,0xaa,0xfb,0xfb,0xaa,0x80, - 0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xfa,0x81,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0x81,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xac,0xab,0xab,0xfb,0xab,0x80,0xfb, - 0x80,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b, - 0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0x81,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xfb,0xaa, - 0xfb,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0xf6,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xfa,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xfb,0xab,0xab, - 0xfb,0x80,0xab,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0x2b,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0x81,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0x56, - 0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfb,0xff,0xff,0xab,0xfc,0xab,0xab, - 0x81,0xaa,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0x2b,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0x81,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0xfa,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0x56, - 0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfc,0xff,0xff,0xfc,0xab,0xab, - 0xfb,0xfb,0xfb,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0x2b,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xfa,0xfa,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9, - 0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xfc,0xff,0xff,0xab,0xfc, - 0xab,0xab,0xfb,0xaa,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0x2b,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xfc,0xff,0xff,0xfc, - 0xab,0xfb,0xaa,0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0x56, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xfa,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0xfc,0xff,0xff, - 0xfc,0xab,0xab,0xfb,0xfb,0xaa,0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9, - 0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa, - 0xf9,0xf9,0xfa,0x81,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0x81,0xfa,0xf9,0xf9,0x81, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9, - 0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56, - 0x56,0xf9,0xfa,0xfa,0xf9,0xfa,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xfa,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xfa,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9, - 0xfa,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xfc,0xff, - 0xff,0xab,0xfc,0xab,0xfb,0xaa,0xfb,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xfa,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56, - 0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56, - 0x56,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0xfa, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xfb, - 0xff,0xff,0xab,0xab,0xab,0xfb,0xfb,0xfb,0xfb,0x80,0x80,0xfb,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0x81,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0x56, - 0x56,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xfa, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xfa,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xfc,0xff,0xff,0xac,0xfb,0xab,0xab,0xfb,0xaa,0xaa,0xfb,0xaa,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xfa,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xaa,0xfb,0x81,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0x56,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xfa,0xfa,0xfa,0x81, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56, - 0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0x56, - 0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9, - 0x56,0x56,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xfb,0xaa,0xfb,0x80,0xfb,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9, - 0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0x56,0xfa,0xfa,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0xfa,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa, - 0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xfc,0xff,0xff,0xfc,0xab,0xab,0xab,0xfb,0xfb,0x80,0xfb,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xfa,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xfb,0xab,0x80,0xaa,0xfb, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0x56,0xf9, - 0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x81,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xaa,0x80,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56, - 0x56,0xfa,0xf9,0x56,0x56,0xfa,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xfa,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xab,0xfb,0xaa, - 0x81,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0x81,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56, - 0xfa,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xfa,0x56, - 0xf9,0x56,0x56,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xfa,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xfb,0xaa, - 0x81,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0xf6,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa, - 0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56, - 0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0xf9,0x56, - 0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xfa,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xfa,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9, - 0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xfa,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xfa, - 0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xfc,0xff,0xff,0xfc,0xfc,0xab,0xaa,0xfb, - 0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0x2b,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xfa, - 0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xfa,0xfa,0x81,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xfa,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xab,0xab,0xfb, - 0xfb,0xaa,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0xf6,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0x56,0xfa,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xfb, - 0xab,0xfb,0xfb,0xaa,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0x2b,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xfa,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa, - 0x56,0xfa,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9, - 0xfa,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9, - 0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xfa,0x56, - 0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfc,0xff,0xff,0xac,0xab, - 0xab,0xfb,0xaa,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0xf6,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xfa,0x81,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa, - 0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9, - 0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56, - 0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0xfa,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0x56,0x56,0xfa,0x56,0x56,0xfa,0xf9, - 0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfc,0xff,0xff,0xfc, - 0xab,0xfb,0xab,0xfb,0xfb,0xaa,0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0x56,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56, - 0xfa,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0xf9,0xfc,0xff,0xff, - 0xab,0xfc,0xab,0xab,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xfa,0xf9,0xf9, - 0x56,0x56,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0x56,0xf9,0xfa, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56, - 0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0x56, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xfa,0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xfc,0xff, - 0xff,0xfc,0xab,0xab,0xfb,0xfb,0x80,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x81,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x81,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xfa,0xf9,0x56,0xfa,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xfa, - 0xfa,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0xfc, - 0xff,0xff,0xab,0xfc,0xab,0xfb,0xaa,0xfb,0xaa,0x80,0x80,0xfb,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xfa,0x56, - 0xf9,0xfa,0x56,0x56,0xfa,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xab,0x80,0xfb,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xfa, - 0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x81,0xf9,0xfa,0xf9, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa, - 0x81,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xfa,0xf9,0x56,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56, - 0x56,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xfc,0xff,0xff,0xab,0xab,0xfb,0xab,0xfb,0xfb,0xfb,0x80,0xaa,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56, - 0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfc,0xff,0xff,0xfc,0xfc,0xab,0xfb,0xaa,0xfb,0xaa,0x80,0x81,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xfa,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0x81,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0x81,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xfa, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xfa, - 0x56,0x56,0xf9,0xfb,0xff,0xff,0xab,0xab,0xab,0xfb,0xfb,0xaa,0x81,0x80,0x80,0xfb, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xfa,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xfa,0x81,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xfa,0xfa,0xfa,0x81,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0x56,0xfa,0x56,0xf9,0x56,0x56,0xf9, - 0xfa,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9, - 0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xfa,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0x56,0xfa, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xfc,0xfc,0xaa,0xfb,0xfb,0xfb,0xab,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa, - 0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xfa,0xf9,0xfc,0xff,0xff,0xab,0xab,0xab,0xfb,0xab,0x80,0xaa,0x80, - 0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0x56, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0x81,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xfb,0xfb,0xfb, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xfa,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xfa,0x81,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xfa,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xfb,0xff,0xff,0xac,0xfc,0xab,0xab,0xfb,0xaa, - 0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0x2b,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xfa,0x56,0xf9, - 0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xfa,0x81,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0xfa,0xfa,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xfa,0xfa,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xfa,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfc,0xff,0xff,0xab,0xab,0xab,0xfb,0xaa, - 0xfb,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0xf6,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfc,0xff,0xff,0xab,0xfc,0xfb,0xab, - 0xfb,0x81,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0xf6,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab, - 0xfb,0xfb,0xaa,0x81,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0x2b,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xfa, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56, - 0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfc,0xff,0xff,0xac,0xab, - 0xab,0xab,0xfb,0xfb,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa, - 0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x81,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xfb,0xff,0xff,0xab, - 0xfc,0xfb,0xaa,0xfb,0xaa,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0xf6,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0x56,0x56, - 0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56, - 0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xfa,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfc,0xff,0xff, - 0xab,0xfc,0xab,0xab,0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xfa,0xfa,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x81,0x81,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x81,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xfa,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xfa,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56,0xfc,0xff, - 0xff,0xfc,0xab,0xab,0xfb,0xfb,0xaa,0xfb,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56, - 0x56,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0xfa,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0x81,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0x81,0xf9, - 0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xfa,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfc, - 0xff,0xff,0xab,0xfc,0xab,0xab,0xfb,0x80,0xfb,0x80,0x81,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xfa, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0x81, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0x81,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9, - 0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xfa,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xfa,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56, - 0xf9,0x56,0x56,0xfa,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9, - 0xfc,0xff,0xff,0xfc,0xfc,0xab,0xfb,0xaa,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56, - 0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56, - 0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xfc,0xff,0xff,0xab,0xab,0xfb,0xab,0xfb,0xfb,0xfb,0x80,0x80,0xfb,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x81,0xfa, - 0xfa,0x81,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xfa,0xf9,0x81,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xaa,0xfb,0xaa,0x80,0xfb,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xfa,0x56,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56, - 0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xfa, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56, - 0xf9,0xfa,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xac,0xfc,0xab,0xfb,0xfb,0xaa,0x81,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0x81,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9, - 0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xfa,0xfc,0xff,0xff,0xab,0xab,0xab,0xaa,0xfb,0xfb,0xfb,0xaa,0xfb, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xfa,0x81,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xfa, - 0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xfa,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xfb,0xff,0xff,0xfc,0xfb,0xab,0xfb,0xab,0x80,0xaa,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0x81,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xfa,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0x56, - 0xf9,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xab,0xfc,0xfb,0xfb,0xfb,0xfb, - 0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfc,0xff,0xff,0xfc,0xab,0xab,0xab,0xfb,0xaa, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0x2b,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0x81,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0x81, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xfa,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfc,0xff,0xff,0xfc,0xab,0xfb,0xaa,0xfb, - 0xfb,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0x2b,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xfa,0xf9,0x56, - 0xfa,0x56,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xfa,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xfa,0x81,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56, - 0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xab, - 0xfb,0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0xf6,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xf9,0x81,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xfa, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56, - 0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xfa,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab, - 0xfb,0xfb,0xaa,0x80,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0x2b,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xfa,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xfa,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x81,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0x81,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0x56,0x56,0xfa,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa, - 0xf9,0x56,0xfa,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9,0xfa,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xab,0xfc, - 0xab,0xab,0xfb,0xfb,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9, - 0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0x81,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56, - 0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xfc,0xff,0xff,0xfc, - 0xfc,0xab,0xfb,0xfb,0xaa,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xfa,0xf9,0x56,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa, - 0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfc,0xff,0xff, - 0xab,0xab,0xab,0xfb,0xaa,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0xf9,0xfa,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0x81,0xf9,0x56, - 0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56, - 0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xfa,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xfc,0xff, - 0xff,0xfc,0xab,0xfb,0xab,0xfb,0xfb,0xaa,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0x81,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0x81,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0x56,0xfa,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56, - 0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfc, - 0xff,0xff,0xac,0xab,0xab,0xfb,0xaa,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x81, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xfa,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56, - 0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xfc,0xff,0xff,0xfc,0xab,0xfb,0xab,0xfb,0xaa,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0x81,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xf9, - 0xfa,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xab,0xfb,0xfb,0xfb,0x80,0xaa,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0x81,0x81,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9, - 0x56,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xfb,0xaa,0x80,0xfb,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa, - 0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0x81,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xfa,0xfc,0xff,0xff,0xab,0xfc,0xab,0xab,0xfb,0xfb,0xaa,0x80,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xfa, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xfb,0xff,0xff,0xfc,0xfc,0xab,0xfb,0xaa,0x80,0xfb,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x81, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0x81,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0x81,0xf9,0xfa,0xfa,0xf9,0x56, - 0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0xfa,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xab,0xfb,0xab,0xfb,0xab,0x80,0xaa, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0x56, - 0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0x81, - 0x81,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xf9,0x81,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0x81,0xfa,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xfa,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xfa, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa, - 0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xfb,0x80,0xfb, - 0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa, - 0x81,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0x81,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56, - 0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xac,0xfc,0xab,0xab,0xfb,0xaa, - 0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0xf6,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9, - 0xf9,0x81,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56, - 0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xfa, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfc,0xff,0xff,0xab,0xab,0xfb,0xaa,0xfb, - 0xfb,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0x2b,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0x81,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xfa,0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0xf9,0x56,0x56,0xfa,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0x56,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb, - 0xab,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0x2b,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xfa, - 0xfa,0xfa,0x81,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf8, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56, - 0x56,0xfa,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xfb,0xff,0xff,0xfc,0xab,0xab, - 0xfb,0xfb,0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0x2b,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x81,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa, - 0x56,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xfc,0xff,0xff,0xac,0xfc, - 0xab,0xab,0xfb,0xaa,0xfb,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0x2b,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0x56,0xf9,0xfa,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfc,0xff,0xff,0xab, - 0xab,0xfb,0xaa,0xfb,0xfb,0x80,0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9, - 0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff, - 0xab,0xfc,0xab,0xab,0xfb,0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xfa,0x81,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfc,0xff, - 0xff,0xfc,0xab,0xfb,0xfb,0xaa,0xaa,0x81,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xfa,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xfa, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xfa,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56, - 0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56, - 0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfb, - 0xff,0xff,0xac,0xab,0xab,0xfb,0xfb,0xfb,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xfa,0xfa, - 0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xfa, - 0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0xfa,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xfc,0xff,0xff,0xab,0xfc,0xab,0xab,0xfb,0xaa,0xfb,0x81,0x80,0xfb,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0xf9,0xfa,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0x81,0x81,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xaa,0xfb,0xfb,0x80,0xaa,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xfa,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0x56,0x56,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xfa, - 0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xfa, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xfa,0x81,0xfa,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xfa, - 0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa, - 0x56,0x56,0xfc,0xff,0xff,0xac,0xab,0xfb,0xab,0xfb,0x80,0xaa,0x80,0x81,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0x56,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0x56, - 0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56, - 0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xab,0xfb,0xfb,0x80,0x80,0xfb, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xf9,0xf9, - 0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0x56,0xfa,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0x81,0x81,0xfa,0x81,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9, - 0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0x56,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9, - 0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xfa,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0xf9,0xfa,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xaa,0xfb,0xfb,0x80,0xab,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x81,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0x81,0xfa,0xfa,0x56, - 0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xfb,0xfb,0xaa,0x80, - 0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xfa,0x81,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa, - 0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xfa,0x81,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xfa,0xf9,0x56, - 0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xfa, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56, - 0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0x56, - 0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xfb,0xff,0xff,0xab,0xfc,0xab,0xfb,0xaa,0xaa,0x81, - 0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xfa,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0x56,0x56, - 0x56,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xfa, - 0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfc,0xff,0xff,0xab,0xab,0xab,0xfb,0xfb,0xfb, - 0x80,0xaa,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0xf6,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0xfa,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xfa, - 0x81,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xfa,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9, - 0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xfc,0xff,0xff,0xfc,0xfb,0xab,0xab,0xfb, - 0xaa,0xfb,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0x2b,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xfa,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0xfa,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xfa, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xfc,0xff,0xff,0xac,0xab,0xab,0xfb, - 0xab,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0x2b,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x81,0xfa,0xf9, - 0x81,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9,0xff,0xff,0xff,0xff,0xf9,0xfa,0x56,0xff,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xff,0xf9,0xf9,0x56,0xff,0xff,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xff,0xff,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xff,0xff,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0x56,0x56,0xf9,0xff,0xff, - 0xff,0xff,0xf9,0xf9,0xf9,0xf9,0xf9,0xff,0xff,0xff,0xff,0x56,0xf9,0xf9,0x56,0x56, - 0xff,0xff,0xff,0xf9,0xfa,0x56,0xff,0xff,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xff,0xff, - 0xff,0xff,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9, - 0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xfa, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab, - 0xfb,0xfb,0xfb,0xaa,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0xf6,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x81,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56, - 0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xff,0xff,0xf9,0x56,0xf9,0xf9,0x56,0xff,0xff, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0xfa,0xff,0xff,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xff,0xff, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xff,0xff,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0x56,0xf9,0xff,0xff, - 0xf9,0xf9,0xff,0xff,0x56,0xf9,0xf9,0xff,0xff,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xfa,0xff,0xff,0xf9,0xf9,0xff,0xff,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xff,0xff, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xab,0xab, - 0xab,0xab,0xfb,0xaa,0x81,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0x56,0x56,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xfa,0x56,0x56,0xfa,0xf9,0x56,0x56, - 0xfa,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0x81,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xff,0xff,0x56,0xf9,0x56,0x56,0xff,0xff, - 0xff,0xff,0xff,0xf9,0x56,0xff,0xff,0xff,0xff,0xf9,0x56,0xf9,0xff,0xff,0xf9,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x56,0xff,0xff,0x56,0x56,0xff,0xff,0x56,0xff,0xff, - 0xf9,0xf9,0x56,0x56,0xff,0xff,0xff,0xf9,0xff,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xff, - 0xff,0xff,0xfa,0xfa,0xfa,0xf9,0xff,0xff,0xff,0xf9,0xf9,0xf9,0xff,0xff,0xff,0xff, - 0xfa,0xf9,0xfa,0xfa,0xff,0xff,0xff,0xff,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xff,0xff, - 0x56,0xf9,0x56,0x56,0xff,0xff,0xf9,0xf9,0xff,0xff,0xf9,0x56,0xf9,0x56,0x56,0xfa, - 0x56,0x56,0xfa,0x56,0xff,0xff,0xf9,0xff,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xff, - 0xff,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xff,0xff,0xff,0xff,0xf9,0xf9,0xf9,0xff,0xff, - 0xf9,0xff,0xff,0xff,0xff,0x56,0xf9,0x56,0xff,0xff,0xf9,0xf9,0xff,0xff,0xff,0xff, - 0x56,0x56,0x56,0xff,0xff,0x56,0xff,0xff,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xfa,0x56,0x56, - 0xfa,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xfc, - 0xfc,0xfb,0xaa,0xfb,0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0xf6,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xff,0xff,0xff,0xf9,0xfa,0xf9,0x56, - 0xff,0xff,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xff,0xff,0xf9,0x56,0xff,0xff,0xff, - 0xff,0xff,0xf9,0xff,0xff,0xfa,0xf9,0x56,0xff,0xff,0x56,0xf9,0xff,0xff,0xff,0xf9, - 0xff,0xff,0x56,0x56,0xff,0xff,0xfa,0xf9,0xff,0xff,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9, - 0xff,0xff,0xff,0xf9,0xf9,0xf9,0xf9,0xff,0xff,0xff,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xff,0xff,0xf9,0xfa,0xff,0xff,0xf9,0xfa,0xff,0xfa,0x81,0xfa,0xfa,0xf9,0xfa,0xff, - 0xff,0xf9,0xf9,0xf9,0xf9,0xff,0xff,0xf9,0x56,0xff,0xff,0xff,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xff,0xff,0xff,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0xff,0xff,0xff,0x56,0xf9,0x56,0xf9,0xff,0xff,0xf9,0x56,0xff,0xff,0x56,0x56,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xfa,0xf9,0xfa,0xff,0xff,0xf9,0xff,0xff,0xf9,0x56, - 0xff,0xff,0x56,0xfa,0xff,0xff,0xff,0xff,0xff,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfc,0xff,0xff, - 0xfc,0xab,0xab,0xfb,0xfb,0xaa,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x81,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0x56,0xf9, - 0xf9,0x56,0xfa,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xff,0xff,0xff,0x56,0x56, - 0xf9,0xff,0xff,0x56,0x56,0xfa,0xf9,0xff,0xff,0xff,0xff,0xff,0xf9,0x56,0xff,0xff, - 0xf9,0x56,0x56,0xfa,0xff,0xff,0x56,0xf9,0xfa,0xff,0xff,0xf9,0x56,0xff,0xff,0xf9, - 0x56,0xff,0xff,0xf9,0xf9,0xff,0xff,0x56,0x56,0xff,0xff,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xff,0xfa,0xff,0xff,0xfa,0xfa,0xff,0xfa,0xff,0xff,0xfa,0xfa,0xfa,0xff,0xff, - 0xff,0xff,0xff,0xf9,0xfa,0xff,0xff,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xff,0xff,0x56,0xfa,0xfa,0xf9,0xff,0xff,0x56,0x56,0xf9,0xff,0xff,0xff,0xfa,0x56, - 0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xff,0xff,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56, - 0x56,0xf9,0xff,0xff,0xff,0x56,0x56,0x56,0xff,0xff,0xf9,0xf9,0xff,0xff,0xf9,0x56, - 0xff,0xff,0xfa,0xf9,0xfa,0xf9,0xff,0xff,0xf9,0xf9,0xff,0xf9,0x56,0xff,0xff,0x56, - 0xf9,0xff,0xff,0xf9,0xf9,0xff,0xff,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56, - 0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xfc,0xff, - 0xff,0xab,0xab,0xfc,0xab,0xfb,0xfb,0xaa,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0x81,0xfa,0xfa,0x81,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xff,0xff,0xff, - 0xf9,0xf9,0xff,0xff,0xf9,0xf9,0xf9,0xff,0xff,0xf9,0xf9,0xff,0xff,0xf9,0x56,0xff, - 0xff,0xf9,0x56,0xf9,0xf9,0xff,0xff,0x56,0xf9,0xf9,0xff,0xff,0x56,0xf9,0xff,0xff, - 0x56,0xf9,0xff,0xff,0xfa,0x56,0xff,0xff,0x56,0xfa,0xff,0xff,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xff,0xfa,0xff,0xff,0xf9,0xfa,0xff,0xf9,0xff,0xff,0xf9,0xfa,0xff,0xff, - 0xf9,0xfa,0xff,0xff,0xf9,0xfa,0xff,0xff,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa, - 0xfa,0xff,0xff,0xfa,0xfa,0xf9,0xf9,0xff,0xff,0xfa,0xf9,0xf9,0xf9,0xff,0xff,0xff, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xff,0xff,0xff,0xff,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xfa,0x56,0xff,0xff,0xff,0xfa,0xfa,0xff,0xff,0xff,0xff,0xff,0xff,0xf9, - 0x56,0xff,0xff,0x56,0x56,0x56,0x56,0xff,0xff,0xf9,0xff,0xff,0xfa,0x56,0xff,0xff, - 0xff,0xff,0xff,0xff,0x56,0x56,0xff,0xff,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xfc, - 0xff,0xff,0xfc,0xab,0xab,0xfb,0xaa,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xff, - 0xff,0x56,0x56,0xff,0xff,0xf9,0xf9,0x56,0xff,0xff,0xf9,0xf9,0xff,0xff,0xf9,0xfa, - 0xff,0xff,0x56,0x56,0xf9,0xf9,0xff,0xff,0xf9,0xf9,0x56,0xff,0xff,0x56,0x56,0xff, - 0xff,0xf9,0xfa,0xff,0xff,0xf9,0xf9,0xff,0xff,0x56,0xf9,0xff,0xff,0xfa,0x56,0xf9, - 0xfa,0xfa,0xf9,0xff,0xf9,0xf9,0xff,0xff,0xff,0xf9,0xf9,0xff,0xff,0xf9,0xf9,0xff, - 0xff,0xf9,0xfa,0xff,0xff,0xf9,0xfa,0xff,0xff,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xff,0xff,0xfa,0xf9,0x56,0xf9,0xff,0xff,0xf9,0xf9,0xf9,0xf9,0xfa,0xff, - 0xff,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xff,0x56,0xff,0xff,0x56,0xf9,0xf9,0xf9, - 0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xff,0xff,0xf9,0x56,0xff,0xff,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xff,0xff,0x56,0x56,0xf9,0x56,0xf9,0xff,0xff,0xff,0x56,0xfa,0xf9,0xff, - 0xff,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xff,0xff,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xfc,0xff,0xff,0xfc,0xab,0xfb,0xab,0xfb,0xfb,0xaa,0xfb,0xaa,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56,0xf9, - 0xfa,0xf9,0xf9,0x81,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xff,0xff,0x56,0x56,0xff,0xff,0x56,0x56,0x56,0xff,0xff,0x56,0xff,0xff,0xff,0xf9, - 0x56,0xff,0xff,0x56,0xf9,0xfa,0x56,0xff,0xff,0x56,0x56,0xf9,0xff,0xff,0xf9,0xf9, - 0xff,0xff,0xf9,0xf9,0xff,0xff,0xfa,0x56,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0x56, - 0x56,0xfa,0xfa,0xf9,0xff,0xfa,0xfa,0xff,0xff,0xff,0xfa,0xfa,0xff,0xff,0xfa,0xfa, - 0xff,0xff,0xfa,0xff,0xff,0xff,0xfa,0xfa,0xff,0xff,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xff,0xff,0xf9,0xfa,0xff,0xff,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xff,0xff,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xff,0xff,0xf9,0xf9,0xff,0xff,0xfa,0x56, - 0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xff,0xff,0xfa,0x56,0xff,0xff,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xff,0xff,0xf9,0xf9,0xf9,0xfa,0xf9,0xff,0xff,0xff,0xf9,0xf9,0x56, - 0xff,0xff,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xff,0xff,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa, - 0x56,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xfc,0xff,0xff,0xab,0xab,0xab,0xfb,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0xf9,0xfa,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xfa,0xf9,0x56, - 0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xfa,0x81,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xff,0xff, - 0xff,0xff,0x56,0xf9,0xf9,0xf9,0xff,0xff,0xff,0x56,0x56,0xff,0xff,0x56,0xff,0xff, - 0x56,0x56,0xff,0xff,0x56,0xfa,0x56,0x56,0xfa,0xff,0xff,0xff,0xf9,0xff,0xff,0x56, - 0xf9,0xff,0xff,0xfa,0xf9,0xff,0xff,0xf9,0xf9,0xf9,0xff,0xff,0xf9,0xff,0xff,0xf9, - 0xf9,0xf9,0xfa,0x56,0xf9,0xff,0x81,0xf9,0xf9,0xff,0xfa,0xfa,0xf9,0xff,0xff,0xfa, - 0xf9,0xf9,0xff,0xff,0xfa,0xff,0xff,0xfa,0xfa,0xfa,0xff,0xff,0xff,0xff,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xff,0xff,0xff,0xff,0xf9,0xf9,0xfa,0xf9,0xff,0xff, - 0xff,0xff,0x56,0xfa,0x56,0x56,0xfa,0xf9,0xff,0xff,0xf9,0xfa,0xf9,0xff,0xff,0xff, - 0x56,0xfa,0xf9,0x56,0xf9,0xff,0xff,0xff,0xff,0xf9,0xf9,0xf9,0xf9,0xff,0xff,0xff, - 0xff,0xff,0x56,0x56,0xff,0xff,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xff,0xf9,0x56,0xf9, - 0x56,0xf9,0xff,0xff,0xff,0xff,0xff,0xf9,0xf9,0xff,0xff,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xfa,0x56, - 0x56,0xfa,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0xfa,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0x56, - 0x56,0xfa,0xfc,0xff,0xff,0xfc,0xfc,0xab,0xab,0xfb,0x80,0xfb,0x80,0xfb,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xff,0xff, - 0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0x81,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xfa,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0x56, - 0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa, - 0x56,0x56,0xf9,0xfc,0xff,0xff,0xab,0xab,0xfb,0xab,0xfb,0xaa,0xfb,0x80,0x80,0xfb, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0x81,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xff,0xff,0xff,0xff, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56, - 0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xfc,0xab,0xfb,0xab,0x81,0xaa,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9, - 0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0x81,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0x81,0xfa,0x81,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xfa,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa, - 0xfa,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xab,0xfb,0xab,0xfb,0xaa,0xfb,0x80, - 0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xfa,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xfa,0x56,0xfa,0xf9,0x56, - 0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0x81,0x81,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa, - 0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0xfa,0x56,0xfa,0xf9,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xfb,0xfb,0x80, - 0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x81,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xfb,0xff,0xff,0xac,0xfc,0xab,0xab,0xaa,0xfb, - 0xaa,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0xf6,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa, - 0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56, - 0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xf9,0x81,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xab,0xab,0xfb,0xfb, - 0x80,0xfb,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0x2b,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x81,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0x56, - 0x56,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0x81,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xfa,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb, - 0xaa,0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0x2b,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56, - 0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0x81,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0x81,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xfa,0xf9,0xfa,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xfa,0x56,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfc,0xff,0xff,0xfc,0xab,0xab, - 0xfb,0xfb,0xfb,0x80,0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0x2b,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xfa,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xfa, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa, - 0xf9,0xfa,0xfa,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xfc,0xff,0xff,0xfc,0xab, - 0xab,0xab,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0xf6,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xfa,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xfa,0x56,0xfc,0xff,0xff,0xab, - 0xfb,0xab,0xfb,0xab,0x81,0xaa,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x81,0x81,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xfa,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xfa, - 0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa, - 0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xfc,0xff,0xff, - 0xfc,0xab,0xfb,0xab,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xfa, - 0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0x81,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfc,0xff, - 0xff,0xab,0xfc,0xab,0xfb,0xfb,0xfb,0x80,0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xfa,0xf9, - 0xfa,0xf9,0x56,0xfa,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xfa,0x56, - 0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0x81,0x81,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xfa,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56, - 0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xfc, - 0xff,0xff,0xab,0xab,0xab,0xab,0xaa,0xfb,0xaa,0x80,0x81,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56, - 0xfc,0xff,0xff,0xfc,0xfc,0xab,0xfb,0xfb,0x80,0xfb,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xfa,0x81,0x81,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xfa,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xfc,0xff,0xff,0xab,0xab,0xfb,0xab,0xfb,0xaa,0xfb,0x80,0xaa,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xfa,0x56,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0x81,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0x56,0xf9, - 0xfa,0x56,0xfb,0xff,0xff,0xfc,0xab,0xab,0xfb,0xaa,0xfb,0x80,0xaa,0xfa,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0x56,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0x81,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0x81,0xfa,0xfa,0x81,0x81, - 0xf9,0xf9,0x81,0xfa,0xfa,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xfc,0xff,0xff,0xac,0xfc,0xab,0xfb,0xfb,0xfb,0xfb,0x80,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0x56, - 0xfa,0x56,0xf9,0x56,0x56,0x56,0xfa,0xfa,0x56,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xfa,0x81,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56, - 0x56,0xfa,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xfa,0x56,0xf9,0x56,0x56,0x56, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xfa,0xf9,0xfa,0x81,0xfa,0xfa,0xfa,0xfa,0xfa,0x81,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56,0xfa,0x56,0xfa,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xfa, - 0x56,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xfa,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xfa,0x56,0x56,0xfc,0xff,0xff,0xab,0xab,0xab,0xab,0xab,0x80,0xaa,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0x81,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xfb,0xab,0xfb,0xfb,0xfb,0xfb,0x80, - 0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9, - 0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56, - 0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0x81,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0x81,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0x56, - 0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xfa,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xab,0xab,0xab,0xfb,0xaa,0xaa,0x80, - 0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56, - 0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xfa,0xfa,0xfa,0x81,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xfa,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfc,0xff,0xff,0xfc,0xfc,0xab,0xfb,0xfb,0xfb, - 0xaa,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0x2b,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa, - 0xf9,0x56,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab,0xab,0xab, - 0x80,0xfb,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0x2b,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9, - 0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0x81,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xfa,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0x56, - 0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xfa, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb, - 0xfb,0xfb,0xfb,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0x2b,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9, - 0xfa,0xfa,0xfa,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xfc,0xab,0xab, - 0xfb,0xaa,0xaa,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0x2b,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56, - 0x56,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xfa,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9, - 0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xfa,0xf9, - 0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0xfa,0x56,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xfc, - 0xab,0xfb,0xfb,0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0xf6,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x81,0xfa,0x81,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xfa,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0x81,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0xfa,0x56,0x56,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56,0xfa, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfb,0xff,0xff,0xfc, - 0xab,0xfb,0xab,0xaa,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xfa,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xfa,0x56,0xfc,0xff,0xff, - 0xab,0xfc,0xab,0xab,0xfb,0xfb,0x80,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0x56,0xfa,0x56, - 0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56, - 0xfa,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xfa, - 0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56, - 0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfc,0xff, - 0xff,0xfc,0xab,0xab,0xfb,0xfb,0xaa,0xfb,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9, - 0x56,0x56,0xfa,0x56,0x56,0xf9,0xfa,0xfa,0xf9,0x56,0x81,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xfa,0x56,0x56, - 0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0x56, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xfa,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfc, - 0xff,0xff,0xab,0xfc,0xab,0xfb,0xfb,0x80,0xaa,0x80,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0x81,0xf9,0xfa,0x81,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xfa, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa, - 0x81,0x81,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xfa,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xfa,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xfa, - 0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xfa,0xf9, - 0xfc,0xff,0xff,0xfc,0xab,0xab,0xab,0xaa,0xfb,0xfb,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0xf9,0x56,0x56,0x56, - 0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9, - 0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0xfa,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa, - 0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xfb,0xfb,0xaa,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xfa, - 0xf9,0x56,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xaa,0xfb,0x80,0xfb,0x80,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xf6,0x56,0x56,0xf9,0xfa, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xfa,0x81,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xfa,0xf9,0x56, - 0xf9,0x56,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xfb,0xaa,0xfb,0x80,0xaa,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xf9, - 0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x81,0xfa, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0x56,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xfa,0x81,0x81,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xfa,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xfa, - 0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xaa,0xfb,0xfb,0x80,0xfb,0x80, - 0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0xfa,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa, - 0xfa,0xfa,0x81,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xfa,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0x81, - 0xfa,0xfa,0xfa,0x81,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf8,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xfa,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xfb,0xaa,0xfb,0xaa, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b,0x56, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa, - 0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xfa,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0x56,0xf9,0xf9,0xfa, - 0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0xfa,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xfa, - 0x81,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0xfa,0x56,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0xfa,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0x56,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xfc,0xff,0xff,0xfc,0xab,0xab,0xfb,0xaa,0xfb,0x80, - 0x80,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x2b, - 0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xfa,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0x81,0x81,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56, - 0x56,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa, - 0xf9,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb,0xfb,0xfb, - 0xfb,0xaa,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff, - 0x2b,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xf9,0x81,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0x56,0xfa,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0x81,0xfa,0x81, - 0xfa,0xfa,0x81,0xf9,0xfa,0xf9,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xf8,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0x56,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0x56,0xf9, - 0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0x56, - 0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56, - 0xf9,0x56,0xfa,0xf9,0x56,0xfa,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xfa,0xf9,0xfa,0xf9,0xf9,0xfa,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xfc,0xff,0xff,0xfc,0xab,0xab,0xab,0xfb, - 0xaa,0x80,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xff,0x2b,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xfa,0x56,0xf9,0xf9,0xfa,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0x81,0xfa,0xf9,0xfa,0xf9,0xf9,0x81,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xfa,0xf9,0x56, - 0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0x56,0x56,0xfa,0xf9, - 0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xfa, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfa,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0x56,0xfa,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xfc,0xff,0xff,0xab,0xfc,0xab,0xfb, - 0xaa,0xfb,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xff,0xf6,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0x56,0x56, - 0x56,0x56,0xf9,0xfa,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xfa,0xfa,0xf9,0xfa,0x81,0xfa,0xf9,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0xf9,0xfa,0xfa,0xf9,0xf9,0x81, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56, - 0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0xfa,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0x56,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0x56,0xfa,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xfc,0xff,0xff,0xfc,0xab,0xab, - 0xfb,0xfb,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xff,0x2b,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0xfa,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xf9,0x81,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0xf9,0xfa,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xfa,0x56,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0x56, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0x56,0x56, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0xf9,0x56,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9, - 0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0x56,0x56,0x56,0x56,0x56,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfc,0xff,0xff,0xab,0xfc, - 0xab,0xab,0xfb,0xfb,0xfb,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xff,0x2b,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0xfa, - 0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0x81,0xfa,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa, - 0xfa,0xfa,0xf9,0xf9,0x56,0x56,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xfa,0x56,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56, - 0x56,0x56,0x56,0xfa,0x56,0xf9,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0x56,0xf9,0x56, - 0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xfa,0xfa,0x81,0xfa, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0x56,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0xfa,0xf9, - 0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56, - 0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xfa, - 0xfa,0x56,0x56,0x56,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9, - 0xf9,0x56,0x56,0xfa,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0x56,0xfa,0x56,0xf9,0x56, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xfa,0xf9, - 0xf9,0xf9,0x56,0xfa,0xf9,0x56,0x56,0x56,0x56,0xf9,0xf9,0x56,0xfb,0xff,0xff,0xfc, - 0xab,0xab,0xfb,0xaa,0xfb,0x80,0xaa,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xff,0x2b,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0xfa,0xf9,0xfa,0x56,0x56,0x56,0xf9,0x56,0x56, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xfa,0xf9,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9, - 0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0x56, - 0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9, - 0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0x56,0x56, - 0xf9,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0x56,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9, - 0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56, - 0xfa,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9, - 0xf9,0x56,0xf9,0x56,0x56,0x56,0xf9,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9, - 0xf9,0x56,0x56,0x56,0xf9,0x56,0x56,0xf9,0x56,0xf9,0xfa,0x56,0x56,0xf9,0xf9,0x56, - 0xf9,0xf9,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9,0xfa,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0x56,0xf9,0xf9,0x56,0x56,0xf9,0xf9,0xf9,0xf9,0x56,0xf9,0xf9,0xf9, - 0xf9,0x56,0x56,0xf9,0x56,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0x56,0xf9,0x56,0x56,0xf9, - 0xf9,0xf9,0xf9,0x56,0x56,0xfa,0xf9,0xf9,0x56,0xf9,0xfa,0xf9,0x56,0xf9,0xf9,0x56, - 0x56,0xf9,0x56,0xf9,0xf9,0x56,0x56,0x56,0xf9,0x56,0xf9,0xf9,0x56,0xfc,0xff,0xff, - 0xab,0xab,0xfb,0xab,0xfb,0xfb,0xaa,0xfb,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xff,0xf9,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfc,0xfb,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfc,0xfb,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xac,0xfc,0xac,0xfc,0xac,0xfc,0xac,0xfc,0xfc,0xfc,0xfc,0xac, - 0xac,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfc,0xfc,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfc,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xac,0xac, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xac,0xfc,0xfc,0xfc,0xfc,0xfb,0xfc,0xfb, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfb,0xfc,0xfb,0xfc,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfc,0xfc,0xfb,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfb,0xfc,0xfc,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfc,0xfb, - 0xfc,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfc,0xfb,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xff, - 0xff,0xfc,0xfc,0xab,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xfc,0xab,0xfb,0xab,0xfb,0x80,0x81,0x80,0xaa,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xab,0xfb,0xab,0xfb,0xaa,0xfb,0xaa,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0xaa, - 0x81,0xaa,0xfb,0xfb,0xfb,0xab,0xab,0xab,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc, - 0xab,0xfc,0xab,0xfc,0xab,0xfc,0xfc,0xab,0xab,0xfc,0xfc,0xab,0xfc,0xab,0xfc,0xab, - 0xab,0xfc,0xfc,0xab,0xab,0xfc,0xfc,0xab,0xfc,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc, - 0xac,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xac,0xab,0xfc,0xab, - 0xfc,0xab,0xfc,0xab,0xab,0xfc,0xfc,0xab,0xab,0xfc,0xfc,0xab,0xfc,0xfc,0xab,0xfc, - 0xab,0xfc,0xfc,0xab,0xab,0xfc,0xfc,0xab,0xab,0xfc,0xfc,0xab,0xfc,0xab,0xfc,0xab, - 0xfc,0xab,0xfc,0xab,0xab,0xfc,0xfc,0xab,0xfc,0xab,0xfc,0xac,0xab,0xfc,0xab,0xfc, - 0xab,0xfc,0xfc,0xab,0xab,0xac,0xfc,0xab,0xfc,0xab,0xab,0xfc,0xab,0xfc,0xab,0xfc, - 0xac,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xac,0xab,0xab,0xfc, - 0xac,0xab,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xac,0xab,0xfc,0xab,0xfc,0xfc,0xab,0xfc, - 0xab,0xfc,0xab,0xfc,0xac,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xac,0xab,0xab,0xfc, - 0xac,0xab,0xab,0xfc,0xac,0xab,0xfc,0xac,0xab,0xab,0xfc,0xab,0xab,0xfc,0xac,0xab, - 0xab,0xfc,0xfc,0xab,0xfc,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xac,0xab,0xab,0xfc, - 0xfc,0xab,0xfc,0xab,0xab,0xfc,0xab,0xfc,0xac,0xab,0xfc,0xab,0xfc,0xfc,0xab,0xfc, - 0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xab,0xfc,0xfc,0xab,0xfc,0xab,0xfc, - 0xab,0xfc,0xac,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xac,0xab,0xab,0xfc,0xac,0xab, - 0xab,0xfc,0xac,0xab,0xfc,0xac,0xab,0xab,0xfc,0xab,0xab,0xfc,0xac,0xab,0xab,0xfc, - 0xfc,0xab,0xfc,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xac,0xab,0xab,0xfc,0xfc,0xab, - 0xfc,0xab,0xab,0xfc,0xab,0xfc,0xac,0xab,0xfc,0xab,0xfc,0xfc,0xab,0xfc,0xab,0xfc, - 0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xab,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc, - 0xab,0xfc,0xab,0xfc,0xfb,0xab,0xfb,0xfb,0x80,0x80,0xaa,0x81,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb, - 0x80,0xfb,0xfb,0x80,0xaa,0xfb,0xab,0xfb,0xfb,0xab,0xab,0xfb,0xab,0xfc,0xab,0xfc, - 0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xab,0xfc,0xab,0xfc,0xab,0xab,0xab,0xfc,0xab, - 0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xab,0xfc,0xab,0xfc,0xfc,0xab, - 0xab,0xab,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xfc,0xab,0xab,0xfc,0xfc,0xab, - 0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xab,0xab,0xab,0xfc, - 0xab,0xfc,0xab,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xab,0xfc,0xab,0xfc, - 0xab,0xab,0xfc,0xab,0xfc,0xab,0xab,0xab,0xfc,0xab,0xfc,0xab,0xab,0xfc,0xab,0xfc, - 0xab,0xfc,0xab,0xab,0xfc,0xab,0xfb,0xab,0xfc,0xab,0xfc,0xfc,0xab,0xfc,0xfc,0xab, - 0xab,0xab,0xab,0xfc,0xab,0xfc,0xab,0xab,0xfc,0xab,0xfc,0xab,0xab,0xfc,0xab,0xfc, - 0xab,0xab,0xfc,0xfc,0xab,0xfc,0xfc,0xab,0xab,0xfc,0xab,0xfb,0xab,0xab,0xab,0xfc, - 0xab,0xfc,0xfc,0xab,0xab,0xab,0xab,0xfc,0xab,0xfc,0xfc,0xab,0xab,0xfc,0xab,0xfc, - 0xab,0xfc,0xab,0xfc,0xab,0xab,0xfc,0xab,0xab,0xfc,0xfc,0xab,0xfc,0xab,0xfb,0xab, - 0xfc,0xab,0xfc,0xab,0xab,0xab,0xab,0xab,0xfc,0xab,0xfc,0xab,0xab,0xfc,0xab,0xfc, - 0xab,0xab,0xfb,0xab,0xfc,0xab,0xfc,0xab,0xab,0xfc,0xab,0xfb,0xab,0xfc,0xab,0xfc, - 0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xab,0xab,0xfc,0xab,0xfc, - 0xfc,0xab,0xab,0xab,0xab,0xfc,0xab,0xfc,0xfc,0xab,0xab,0xfc,0xab,0xfc,0xab,0xfc, - 0xab,0xfc,0xab,0xab,0xfc,0xab,0xab,0xfc,0xfc,0xab,0xfc,0xab,0xfb,0xab,0xfc,0xab, - 0xfc,0xab,0xab,0xab,0xab,0xab,0xfc,0xab,0xfc,0xab,0xab,0xfc,0xab,0xfc,0xab,0xab, - 0xfb,0xab,0xfc,0xab,0xfc,0xab,0xab,0xfc,0xab,0xfb,0xab,0xfc,0xab,0xfc,0xab,0xfc, - 0xab,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc,0xfc,0xfc,0xab,0xfc,0xab,0xfc,0xab,0xfc, - 0xab,0xab,0xfc,0xab,0xab,0xab,0xfb,0xfb,0xaa,0xfb,0xfb,0x80,0x80,0xfb,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xaa,0x80,0xfb,0xfb,0xaa,0xfb,0xfb,0xaa,0xfb,0xab,0xab,0xab,0xab,0xab, - 0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xfb,0xab,0xab,0xab,0xfb,0xab,0xab,0xfb, - 0xab,0xab,0xab,0xfb,0xab,0xab,0xfb,0xab,0xab,0xab,0xab,0xfb,0xab,0xab,0xab,0xab, - 0xab,0xfb,0xab,0xfb,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xfb,0xab,0xab,0xab, - 0xab,0xab,0xab,0xfc,0xab,0xab,0xfb,0xab,0xab,0xab,0xab,0xfb,0xab,0xfc,0xab,0xfb, - 0xab,0xab,0xab,0xab,0xfb,0xab,0xab,0xab,0xfb,0xab,0xab,0xab,0xfb,0xab,0xab,0xfb, - 0xab,0xfb,0xab,0xab,0xfb,0xab,0xab,0xfb,0xfc,0xab,0xab,0xab,0xfb,0xab,0xab,0xfb, - 0xab,0xab,0xab,0xfb,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab, - 0xab,0xfb,0xab,0xfb,0xab,0xab,0xab,0xab,0xfb,0xab,0xab,0xfc,0xab,0xab,0xab,0xab, - 0xfb,0xab,0xab,0xfb,0xab,0xab,0xab,0xab,0xfb,0xab,0xab,0xab,0xab,0xfc,0xab,0xfb, - 0xab,0xab,0xab,0xab,0xab,0xfb,0xab,0xfb,0xab,0xab,0xab,0xab,0xfb,0xab,0xab,0xfb, - 0xab,0xab,0xab,0xfb,0xab,0xfb,0xab,0xab,0xab,0xfb,0xab,0xab,0xab,0xab,0xab,0xab, - 0xab,0xab,0xab,0xfb,0xab,0xfc,0xab,0xfb,0xab,0xab,0xfb,0xab,0xfb,0xab,0xab,0xab, - 0xab,0xab,0xab,0xab,0xfb,0xab,0xab,0xab,0xfb,0xab,0xab,0xab,0xab,0xab,0xab,0xab, - 0xab,0xab,0xab,0xfb,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xfc,0xab,0xfb,0xab,0xab, - 0xab,0xab,0xab,0xfb,0xab,0xfb,0xab,0xab,0xab,0xab,0xfb,0xab,0xab,0xfb,0xab,0xab, - 0xab,0xfb,0xab,0xfb,0xab,0xab,0xab,0xfb,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab, - 0xab,0xfb,0xab,0xfc,0xab,0xfb,0xab,0xab,0xfb,0xab,0xfb,0xab,0xab,0xab,0xab,0xab, - 0xab,0xab,0xfb,0xab,0xab,0xab,0xfb,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab, - 0xab,0xfb,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab, - 0xab,0xab,0xfb,0xab,0xfb,0xab,0xaa,0xfb,0x80,0xfb,0xaa,0x80,0xfb,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xfb,0x80,0xfb,0x80,0xfb,0xaa,0x80,0xfb,0xfb,0xaa,0xfb,0xaa,0xfb,0xfb,0xfb,0xab, - 0xfb,0xfb,0xfb,0xab,0xfb,0xfb,0xfb,0xab,0xfb,0xab,0xfb,0xab,0xfb,0xab,0xfb,0xab, - 0xaa,0xfb,0xfb,0xab,0xaa,0xab,0xfb,0xab,0xaa,0xfb,0xfb,0xfb,0xab,0xab,0xfb,0xab, - 0xfb,0xfb,0xab,0xfb,0xab,0xab,0xfb,0xab,0xfb,0xfb,0xfb,0xab,0xfb,0xaa,0xfb,0xfb, - 0xaa,0xfb,0xfb,0xfb,0xaa,0xab,0xfb,0xab,0xaa,0xfb,0xfb,0xab,0xaa,0xfb,0xab,0xfb, - 0xab,0xab,0xfb,0xab,0xfb,0xab,0xfb,0xab,0xfb,0xaa,0xfb,0xab,0xfb,0xab,0xfb,0xab, - 0xaa,0xab,0xfb,0xab,0xfb,0xaa,0xfb,0xfb,0xab,0xaa,0xfb,0xab,0xfb,0xaa,0xfb,0xfb, - 0xab,0xab,0xfb,0xab,0xaa,0xfb,0xfb,0xfb,0xab,0xfb,0xfb,0xab,0xfb,0xfb,0xfb,0xfb, - 0xaa,0xfb,0xab,0xfb,0xab,0xab,0xfb,0xfb,0xfb,0xab,0xfb,0xfb,0xaa,0xfb,0xfb,0xab, - 0xfb,0xab,0xfb,0xab,0xaa,0xab,0xfb,0xab,0xfb,0xab,0xfb,0xfb,0xaa,0xfb,0xfb,0xab, - 0xaa,0xab,0xfb,0xab,0xfb,0xfb,0xab,0xfb,0xab,0xab,0xfb,0xab,0xfb,0xab,0xfb,0xab, - 0xaa,0xfb,0xfb,0xab,0xaa,0xab,0xfb,0xfb,0xab,0xfb,0xab,0xfb,0xaa,0xfb,0xfb,0xfb, - 0xab,0xfb,0xfb,0xab,0xaa,0xfb,0xab,0xfb,0xab,0xfb,0xab,0xab,0xfb,0xab,0xfb,0xab, - 0xfb,0xfb,0xfb,0xab,0xfb,0xab,0xfb,0xab,0xfb,0xab,0xfb,0xfb,0xab,0xfb,0xfb,0xfb, - 0xab,0xfb,0xfb,0xfb,0xab,0xab,0xfb,0xfb,0xab,0xfb,0xfb,0xfb,0xfb,0xab,0xaa,0xab, - 0xfb,0xab,0xfb,0xfb,0xab,0xfb,0xab,0xab,0xfb,0xab,0xfb,0xab,0xfb,0xab,0xaa,0xfb, - 0xfb,0xab,0xaa,0xab,0xfb,0xfb,0xab,0xfb,0xab,0xfb,0xaa,0xfb,0xfb,0xfb,0xab,0xfb, - 0xfb,0xab,0xaa,0xfb,0xab,0xfb,0xab,0xfb,0xab,0xab,0xfb,0xab,0xfb,0xab,0xfb,0xfb, - 0xfb,0xab,0xfb,0xab,0xfb,0xab,0xfb,0xab,0xfb,0xfb,0xab,0xfb,0xfb,0xfb,0xab,0xfb, - 0xfb,0xfb,0xab,0xab,0xfb,0xfb,0xab,0xfb,0xfb,0xfb,0xaa,0xfb,0xfb,0xfb,0xab,0xfb, - 0xfb,0xab,0xfb,0xab,0xfb,0xab,0xfb,0xfb,0x80,0xab,0x80,0x80,0x81,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0xfb,0xaa,0xfb,0xfb,0xfb,0xfb,0xaa,0xfb, - 0xfb,0xab,0xaa,0xfb,0xfb,0xab,0xaa,0xfb,0xfb,0xaa,0xfb,0xfb,0xfb,0xaa,0xfb,0xfb, - 0xfb,0xfb,0xab,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xaa,0xfb,0xab,0xfb,0xfb, - 0xfb,0xfb,0xaa,0xfb,0xfb,0xaa,0xfb,0xfb,0xfb,0xab,0xaa,0xfb,0xfb,0xab,0xfb,0xab, - 0xfb,0xfb,0xfb,0xaa,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xab,0xfb,0xfb,0xfb,0xab,0xfb, - 0xaa,0xfb,0xfb,0xfb,0xfb,0xaa,0xfb,0xfb,0xfb,0xab,0xfb,0xfb,0xfb,0xaa,0xfb,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xab,0xfb,0xab,0xfb,0xab,0xfb,0xfb,0xfb,0xab,0xfb,0xab, - 0xfb,0xab,0x81,0xfb,0xfb,0xfb,0xfb,0xaa,0xfb,0xfb,0xaa,0xfb,0xfb,0xfb,0xaa,0xab, - 0xfb,0xfb,0xfb,0xfb,0xaa,0xfb,0xfb,0xfb,0xaa,0xab,0xfb,0xaa,0xfb,0xfb,0xab,0xfb, - 0xfb,0xaa,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xaa,0xfb,0xaa,0xfb,0xfb,0xab,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xaa,0xfb,0xaa,0xfb,0xfb,0xfb,0xfb,0xaa,0xfb,0xfb, - 0xfb,0xfb,0xab,0xfb,0xfb,0xfb,0xfb,0xaa,0xfb,0xfb,0xaa,0xfb,0xab,0xfb,0xfb,0xaa, - 0xfb,0xfb,0xab,0xfb,0xfb,0xfb,0xfb,0xfb,0xaa,0xfb,0xfb,0xfb,0xfb,0xab,0xfb,0xfb, - 0xaa,0xfb,0xaa,0xfb,0xfb,0xab,0xfb,0xfb,0xaa,0xfb,0xfb,0xaa,0xfb,0xab,0xfb,0xaa, - 0xfb,0xab,0xfb,0xaa,0xfb,0xaa,0xfb,0xfb,0xfb,0xaa,0xfb,0xaa,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xaa,0xfb,0xaa,0xfb,0xfb,0xfb,0xfb,0xaa,0xfb,0xfb,0xfb,0xfb, - 0xab,0xfb,0xfb,0xfb,0xfb,0xaa,0xfb,0xfb,0xaa,0xfb,0xab,0xfb,0xfb,0xaa,0xfb,0xfb, - 0xab,0xfb,0xfb,0xfb,0xfb,0xfb,0xaa,0xfb,0xfb,0xfb,0xfb,0xab,0xfb,0xfb,0xaa,0xfb, - 0xaa,0xfb,0xfb,0xab,0xfb,0xfb,0xaa,0xfb,0xfb,0xaa,0xfb,0xab,0xfb,0xaa,0xfb,0xab, - 0xfb,0xaa,0xfb,0xaa,0xfb,0xfb,0xfb,0xaa,0xfb,0xaa,0xfb,0xfb,0xfb,0xaa,0xfb,0xfb, - 0xaa,0xfb,0xfb,0xaa,0xfb,0xaa,0x81,0xfb,0xaa,0xfb,0x80,0xfb,0x80,0xaa,0x80,0xfb, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xfb,0x80,0xfb,0x80,0xaa,0x80,0xfb,0x80,0xaa,0x80,0xaa,0xfb, - 0x80,0xfb,0x80,0xfb,0xaa,0xfb,0x80,0xfb,0xaa,0xfb,0xfb,0xfb,0xaa,0x80,0xfb,0xfb, - 0xaa,0xfb,0xaa,0x80,0xfb,0xaa,0xfb,0xfb,0xaa,0xfb,0xaa,0xfb,0xfb,0xaa,0x80,0xfb, - 0xaa,0xfb,0xaa,0xfb,0xaa,0xfb,0x80,0xfb,0xaa,0xfb,0x80,0xfb,0xaa,0xfb,0x80,0xfb, - 0xaa,0xfb,0xaa,0xfb,0xfb,0xaa,0xfb,0xfb,0xaa,0xfb,0xaa,0x80,0xfb,0xaa,0xfb,0x80, - 0xfb,0xfb,0xaa,0xfb,0xaa,0x80,0xfb,0xaa,0xfb,0xaa,0x80,0xfb,0xaa,0xfb,0xfb,0xaa, - 0xfb,0xaa,0x81,0xaa,0xfb,0xaa,0x80,0xfb,0xaa,0xfb,0x80,0xfb,0xaa,0xfb,0x80,0xfb, - 0x80,0xaa,0xfb,0xaa,0xfb,0xaa,0xfb,0xaa,0xfb,0xfb,0xaa,0xfb,0xaa,0xfb,0xab,0x80, - 0xfb,0xaa,0xfb,0xaa,0xfb,0xfb,0xfb,0xaa,0x80,0xfb,0x80,0xfb,0xfb,0xaa,0xfb,0x80, - 0xfb,0xaa,0xfb,0x81,0xaa,0xfb,0xaa,0xfb,0xaa,0x80,0xfb,0xfb,0xfb,0xaa,0xfb,0x80, - 0xfb,0xaa,0xfb,0xfb,0xaa,0xfb,0xaa,0x80,0xfb,0xfb,0xaa,0xfb,0xaa,0xfb,0x80,0xab, - 0x80,0xaa,0xfb,0x80,0xfb,0xaa,0xfb,0xfb,0xaa,0xfb,0xaa,0xfb,0x80,0xfb,0xfb,0xfb, - 0xaa,0xfb,0xaa,0x80,0xfb,0xaa,0xfb,0xaa,0xfb,0xfb,0xfb,0xaa,0x80,0xaa,0x81,0xaa, - 0xfb,0xfb,0x80,0xfb,0xfb,0xaa,0x81,0xaa,0xfb,0xfb,0x80,0xaa,0xfb,0xfb,0x80,0xfb, - 0xaa,0xfb,0x80,0xfb,0xaa,0xfb,0xfb,0xfb,0xaa,0x80,0xfb,0xfb,0xfb,0xaa,0xfb,0xaa, - 0xfb,0xfb,0xaa,0xfb,0xaa,0x80,0xfb,0xfb,0xaa,0xfb,0xaa,0xfb,0x80,0xab,0x80,0xaa, - 0xfb,0x80,0xfb,0xaa,0xfb,0xfb,0xaa,0xfb,0xaa,0xfb,0x80,0xfb,0xfb,0xfb,0xaa,0xfb, - 0xaa,0x80,0xfb,0xaa,0xfb,0xaa,0xfb,0xfb,0xfb,0xaa,0x80,0xaa,0x81,0xaa,0xfb,0xfb, - 0x80,0xfb,0xfb,0xaa,0x81,0xaa,0xfb,0xfb,0x80,0xaa,0xfb,0xfb,0x80,0xfb,0xaa,0xfb, - 0x80,0xfb,0xaa,0xfb,0xfb,0xfb,0xaa,0x80,0xfb,0xfb,0xfb,0xaa,0xfb,0xaa,0xfb,0xfb, - 0xaa,0xfb,0xaa,0xfb,0xfb,0xfb,0xfb,0xaa,0xfb,0x80,0x80,0xfb,0x80,0xfb,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x81,0xfb,0x80,0xaa,0x81,0xfb,0xfb, - 0xfb,0xaa,0xfb,0xaa,0xfb,0x80,0xaa,0xfb,0xfb,0x80,0xfb,0xaa,0x80,0xfb,0xaa,0xfb, - 0xaa,0x80,0x80,0xfb,0xfb,0xaa,0x81,0xfb,0xaa,0x80,0xfb,0x80,0xfb,0x80,0xfb,0xfb, - 0xaa,0x80,0xfb,0xfb,0x80,0xfb,0xaa,0xfb,0xfb,0x80,0xfb,0xaa,0xfb,0x80,0xaa,0xfb, - 0xfb,0x80,0xfb,0x80,0xfb,0xaa,0x80,0xfb,0xaa,0x80,0x80,0xfb,0xfb,0xaa,0x81,0xfb, - 0xaa,0x80,0xfb,0xfb,0x80,0xfb,0xfb,0xaa,0xfb,0x80,0xfb,0xfb,0xaa,0x81,0xaa,0x80, - 0xfb,0x80,0xfb,0xaa,0xfb,0x80,0xfb,0xfb,0xfb,0x80,0xfb,0xaa,0xfb,0x80,0xaa,0xfb, - 0xaa,0xfb,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xfb,0xaa,0x81,0xfb,0x80,0x80, - 0xfb,0xaa,0x81,0xfb,0x80,0xaa,0x80,0xaa,0xfb,0xfb,0xaa,0xfb,0xfb,0xaa,0x81,0xfb, - 0xaa,0xfb,0x80,0xfb,0xaa,0x81,0x80,0xfb,0x80,0xfb,0xfb,0xaa,0xfb,0xaa,0x81,0xfb, - 0xaa,0xfb,0x80,0xfb,0xaa,0x80,0xfb,0xfb,0xfb,0xaa,0x80,0xfb,0xfb,0x80,0xaa,0xfb, - 0x80,0xfb,0xfb,0xfb,0xaa,0xfb,0xfb,0x80,0xaa,0x81,0x80,0xfb,0xfb,0xaa,0xfb,0x80, - 0xaa,0x81,0x80,0xfb,0xfb,0xaa,0x81,0xfb,0x80,0xaa,0x80,0xaa,0xfb,0xfb,0xfb,0xaa, - 0xfb,0x80,0xaa,0xfb,0xaa,0x80,0xfb,0xaa,0xfb,0x80,0xaa,0xfb,0xfb,0x80,0xfb,0xaa, - 0xfb,0x80,0xaa,0xfb,0xfb,0x80,0xfb,0xaa,0x80,0xfb,0xaa,0xfb,0xaa,0x80,0xfb,0xfb, - 0x80,0xfb,0xaa,0x80,0xfb,0xfb,0xfb,0xaa,0x80,0xfb,0xfb,0x80,0xaa,0xfb,0x80,0xfb, - 0xfb,0xfb,0xaa,0xfb,0xfb,0x80,0xaa,0x81,0x80,0xfb,0xfb,0xaa,0xfb,0x80,0xaa,0x81, - 0x80,0xfb,0xfb,0xaa,0x81,0xfb,0x80,0xaa,0x80,0xaa,0xfb,0xfb,0xfb,0xaa,0xfb,0x80, - 0xaa,0xfb,0xaa,0x80,0xfb,0xaa,0xfb,0x80,0xaa,0xfb,0xfb,0x80,0xfb,0xaa,0xfb,0x80, - 0xaa,0xfb,0xfb,0x80,0xfb,0xaa,0x80,0xfb,0xaa,0xfb,0xaa,0x80,0xfb,0x80,0xfb,0x80, - 0xfb,0x80,0xfb,0x80,0xfb,0x80,0xaa,0x80,0xfb,0x80,0xfb,0xaa,0x80,0x80,0x80,0xfb, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0xaa,0x81,0x80,0x80, - 0xaa,0x80,0x80,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xaa,0x80,0xfb,0x80,0xfb,0x80, - 0xfb,0x80,0xfb,0xfb,0xaa,0x80,0x80,0x80,0xaa,0x80,0xfb,0x80,0xaa,0xfb,0x80,0xaa, - 0x80,0xfb,0x80,0xaa,0x80,0xfb,0x80,0x80,0xfb,0x80,0xaa,0x80,0xfb,0x80,0xfb,0x80, - 0xfb,0x80,0xaa,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xfb,0xfb,0xaa,0x80,0x80,0xfb, - 0x80,0xfb,0x80,0xaa,0x80,0xfb,0x80,0x80,0xfb,0x80,0xfb,0x80,0x80,0xfb,0x80,0x81, - 0xfb,0xaa,0x80,0x80,0xfb,0x80,0xfb,0x80,0xaa,0x80,0xaa,0x80,0xfb,0x80,0xfb,0x80, - 0xfb,0x80,0x80,0x80,0xab,0x80,0xaa,0x80,0xfb,0xaa,0x80,0x80,0xfb,0x80,0x80,0xfb, - 0xaa,0x80,0x81,0xaa,0x80,0xfb,0x80,0xfb,0xfb,0x80,0x80,0x80,0xfb,0x80,0x80,0x80, - 0xab,0x80,0x80,0xfb,0xaa,0x80,0xfb,0xaa,0x80,0xfb,0x80,0x80,0xfb,0x80,0x80,0x80, - 0xaa,0x80,0xfb,0x80,0xaa,0x80,0xfb,0x80,0xaa,0x80,0x80,0xfb,0x80,0x80,0xfb,0x80, - 0xfb,0xaa,0x80,0x80,0xaa,0x80,0x80,0x80,0xfb,0x80,0xfb,0xaa,0x81,0x80,0x80,0x80, - 0xab,0x80,0xfb,0xaa,0xfb,0x80,0x80,0xaa,0x80,0xfb,0x80,0xfb,0xfb,0x80,0x80,0x80, - 0xfb,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xaa,0x80, - 0xfb,0x80,0xfb,0x80,0xfb,0x80,0xaa,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80, - 0xfb,0x80,0xaa,0x80,0xfb,0x80,0xaa,0x80,0x80,0xfb,0x80,0x80,0xfb,0x80,0xfb,0xaa, - 0x80,0x80,0xaa,0x80,0x80,0x80,0xfb,0x80,0xfb,0xaa,0x81,0x80,0x80,0x80,0xab,0x80, - 0xfb,0xaa,0xfb,0x80,0x80,0xaa,0x80,0xfb,0x80,0xfb,0xfb,0x80,0x80,0x80,0xfb,0x80, - 0xfb,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xaa,0x80,0xfb,0x80, - 0xfb,0x80,0xfb,0x80,0xaa,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xfb,0xaa, - 0x80,0xaa,0x81,0xaa,0x80,0xfb,0xaa,0xfb,0x80,0xfb,0xaa,0x80,0x80,0xfb,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80, - 0xfb,0x80,0xfb,0x80,0xfb,0x80,0xaa,0x80,0xfb,0x80,0x80,0x80,0xfb,0x80,0xaa,0x80, - 0xfb,0x80,0x80,0x80,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0x80,0x80,0xfb,0x80,0x80, - 0x80,0xfb,0x80,0x80,0x80,0xfb,0x80,0xaa,0x81,0x80,0x80,0x80,0xfb,0x80,0xaa,0x80, - 0xfb,0x80,0x80,0x81,0x80,0xaa,0x80,0x80,0x80,0x80,0xaa,0x80,0x80,0x80,0xfb,0x80, - 0x80,0xaa,0x80,0xfb,0x80,0xfb,0x80,0xaa,0x81,0x80,0x80,0xaa,0x80,0xfb,0x80,0xaa, - 0x80,0x80,0x80,0xfb,0x80,0x80,0xaa,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0x80,0x80, - 0xfb,0x80,0xaa,0x81,0x80,0x80,0xfb,0x80,0xfb,0x80,0x80,0xfb,0x80,0xaa,0x80,0xfb, - 0x80,0xfb,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0xaa,0x80,0xfb,0x80,0x80,0xaa,0x81, - 0x80,0x80,0xfb,0x80,0x80,0xfb,0x80,0x80,0x80,0xfb,0x80,0xaa,0x81,0x80,0x80,0xfb, - 0x80,0xfb,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0xfb,0x80,0xfb,0x80,0xfb,0xaa,0x80, - 0xfb,0x80,0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xaa,0x80,0x80,0x80,0x80,0xaa,0x81, - 0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0xfb,0x80,0xfb,0x80,0x80,0x80,0xaa,0x80,0xfb, - 0x80,0x80,0xaa,0x80,0xfb,0x80,0x80,0xaa,0x80,0x80,0x80,0xaa,0x81,0x80,0xaa,0xfa, - 0xfb,0x80,0xaa,0x80,0xfb,0x80,0x80,0x80,0xfb,0x80,0xaa,0x80,0xfb,0x80,0x80,0x80, - 0xaa,0x80,0x80,0xfb,0x80,0x80,0x80,0xfb,0x80,0xfb,0x80,0xfb,0xaa,0x80,0xfb,0x80, - 0x80,0xfb,0x80,0xfb,0x80,0xfb,0x80,0xaa,0x80,0x80,0x80,0x80,0xaa,0x81,0x80,0x80, - 0xfb,0x80,0x80,0x80,0x80,0xfb,0x80,0xfb,0x80,0x80,0x80,0xaa,0x80,0xfb,0x80,0x80, - 0xaa,0x80,0xfb,0x80,0x80,0xaa,0x80,0x80,0x80,0xaa,0x81,0x80,0xaa,0xfa,0xfb,0x80, - 0xaa,0x80,0xfb,0x80,0x80,0x80,0xfb,0x80,0xaa,0x80,0xfb,0x80,0x80,0x80,0xaa,0x80, - 0x80,0x81,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80, - 0xfb,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0xfb,0x80,0xfb,0x80,0x80,0x80,0xfb,0x80, - 0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80, - 0x80,0x80,0xfb,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb, - 0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80, - 0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0xfb,0x80,0x80, - 0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0xfb, - 0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0xfb,0x80,0xfb,0x80, - 0x80,0xfb,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80, - 0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0xfb,0x80,0xfb,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0xfb,0x80,0xfb,0x80,0x80,0xfb, - 0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0xfb, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfb,0x80, - 0xfb,0x80,0x80,0xfb,0x80,0x80,0x80,0xfb,0x80,0xfb,0x80,0x80,0xfb,0x80,0x80,0x80, - 0x80,0xfb,0x80,0x80,0x80,0x80,0x80,0x80, - -}; - - diff --git a/bootx.tproj/sl.subproj/main.c b/bootx.tproj/sl.subproj/main.c index c0ba230..b1d194a 100644 --- a/bootx.tproj/sl.subproj/main.c +++ b/bootx.tproj/sl.subproj/main.c @@ -22,7 +22,7 @@ /* * main.c - Main functions for BootX. * - * Copyright (c) 1998-2000 Apple Computer, Inc. + * Copyright (c) 1998-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ @@ -59,6 +59,7 @@ long gSymbolTableSize; long gBootSourceNumber = -1; long gBootSourceNumberMax; +long gBootMode = kBootModeNormal; long gBootDeviceType; long gBootFileType; char gBootDevice[256]; @@ -109,7 +110,7 @@ static void Main(ClientInterfacePtr ciPtr) ret = GetBootPaths(); if (ret != 0) FailToBoot(1); - DrawSplashScreen(); + DrawSplashScreen(0); while (ret == 0) { ret = LoadFile(gBootFile); @@ -120,33 +121,27 @@ static void Main(ClientInterfacePtr ciPtr) } ret = DecodeKernel(); - if (ret != 0) FailToBoot(4); + if (ret != 0) FailToBoot(3); ret = LoadDrivers(gRootDir); - if (ret != 0) FailToBoot(5); - -#if 0 - ret = LoadDisplayDrivers(); - if (ret != 0) FailToBoot(6); -#endif - + if (ret != 0) FailToBoot(4); + + DrawSplashScreen(1); + ret = SetUpBootArgs(); - if (ret != 0) FailToBoot(7); + if (ret != 0) FailToBoot(5); ret = CallKernel(); - FailToBoot(8); + FailToBoot(6); } static long InitEverything(ClientInterfacePtr ciPtr) { - long ret, mem_base, mem_base2, size; + long ret, mem_base, mem_base2, size; CICell keyboardPH; - char name[32]; -#if 0 - char defaultBootDevice[256]; -#endif + char name[32], securityMode[33]; // Init the OF Client Interface. ret = InitCI(ciPtr); @@ -157,7 +152,7 @@ static long InitEverything(ClientInterfacePtr ciPtr) if (gOFVersion == 0) return -1; // Init the SL Words package. - ret = InitSLWords(gOFVersion); + ret = InitSLWords(); if (ret != 0) return -1; // Get the phandle for /options @@ -210,29 +205,21 @@ static long InitEverything(ClientInterfacePtr ciPtr) if (gKeyMap == NULL) return -1; UpdateKeyMap(); -#if 0 - // On OF 3.x, if the Option key was pressed, - // set the default boot device and reboot. - if (gOFVersion >= kOFVersion3x) { - if (TestForKey(kOptKey)) { - size = GetProp(gOptionsPH, "default-boot-device", defaultBootDevice,255); - if (size == -1) { - Interpret_0_0("set-default boot-device"); - } else { - defaultBootDevice[size] = '\0'; - SetProp(gOptionsPH, "boot-device", defaultBootDevice, size); - SetProp(gOptionsPH, "boot-file", 0, 0); - } - Interpret_0_0("reset-all"); - } + // Test for Secure Boot Mode. + size = GetProp(gOptionsPH, "security-mode", securityMode, 32); + if (size != -1) { + securityMode[size] = '\0'; + if (strcmp(securityMode, "none")) gBootMode |= kBootModeSecure; } -#endif #if kFailToBoot // 'cmd-s' or 'cmd-v' is pressed set outputLevel to kOutputLevelFull - if (TestForKey(kCommandKey) && (TestForKey('s') || TestForKey('v'))) + if (((gBootMode & kBootModeSecure) == 0) && TestForKey(kCommandKey) && + (TestForKey('s') || TestForKey('v'))) { SetOutputLevel(kOutputLevelFull); - else SetOutputLevel(kOutputLevelOff); + } else { + SetOutputLevel(kOutputLevelOff); + } #else SetOutputLevel(kOutputLevelFull); #endif @@ -240,12 +227,16 @@ static long InitEverything(ClientInterfacePtr ciPtr) // printf now works. printf("\n\nMac OS X Loader\n"); - mem_base = Claim(kMallocAddr, kMallocSize, 0); - if (mem_base == 0) { + // Test for Safe Boot Mode. + if (((gBootMode & kBootModeSecure) == 0) && TestForKey(kShiftKey)) { + gBootMode |= kBootModeSafe; + } + + if (Claim(kMallocAddr, kMallocSize, 0) == 0) { printf("Claim for malloc failed.\n"); return -1; } - malloc_init((char *)mem_base, kMallocSize); + malloc_init((char *)kMallocAddr, kMallocSize); // malloc now works. @@ -273,29 +264,29 @@ static long InitEverything(ClientInterfacePtr ciPtr) } // Unmap the old xcoff stack. - CallMethod_2_0(gMMUIH, "unmap", 0x00380000, 0x00080000); + CallMethod(2, 0, gMMUIH, "unmap", 0x00380000, 0x00080000); // Grap the physical memory then the logical. - CallMethod_3_1(gMemoryIH, "claim", - kImageAddr1Phys, kImageSize1, 0, &mem_base); - CallMethod_3_1(gMMUIH, "claim", - kImageAddr1, kImageSize1, 0, &mem_base2); + CallMethod(3, 1, gMemoryIH, "claim", + kImageAddr1Phys, kImageSize1, 0, &mem_base); + CallMethod(3, 1, gMMUIH, "claim", + kImageAddr1, kImageSize1, 0, &mem_base2); if ((mem_base == 0) || (mem_base2 == 0)) { printf("Claim for Image Area failed.\n"); return -1; } // Map them together. - CallMethod_4_0(gMMUIH, "map", - kImageAddr1Phys, kImageAddr1, kImageSize1, 0); + CallMethod(4, 0, gMMUIH, "map", + kImageAddr1Phys, kImageAddr1, kImageSize1, 0); } bzero((char *)kImageAddr, kImageSize); - // Malloc some space for the Vector Save area. - gVectorSaveAddr = malloc(kVectorSize); + // Allocate some space for the Vector Save area. + gVectorSaveAddr = AllocateBootXMemory(kVectorSize); if (gVectorSaveAddr == 0) { - printf("Malloc for Vector Save Area failed.\n"); + printf("Allocation for the Vector Save Area failed.\n"); return -1; } @@ -325,10 +316,10 @@ static long SetUpBootArgs(void) { boot_args_ptr args; CICell memoryPH; - long secure = 0, sym = 0, graphicsBoot = 1; + long graphicsBoot = 1; long ret, cnt, mem_size, size, dash; - long aKey, sKey, vKey, yKey, shiftKey, keyPos; - char ofBootArgs[128], *ofArgs, tc, keyStr[8], securityMode[33]; + long sKey, vKey, keyPos; + char ofBootArgs[128], *ofArgs, tc, keyStr[8]; // Save file system cache statistics. SetProp(gChosenPH, "BootXCacheHits", (char *)&gCacheHits, 4); @@ -348,34 +339,19 @@ static long SetUpBootArgs(void) args->Version = kBootArgsVersion; args->machineType = 0; - // Get the security-mode. - size = GetProp(gOptionsPH, "security-mode", securityMode, 32); - if (size != -1) { - securityMode[size] = '\0'; - if (strcmp(securityMode, "none")) secure = 1; - } - - // Check the Keyboard for 'a', 'cmd-s', 'cmd-v', 'y' and shift + // Check the Keyboard for 'cmd-s' and 'cmd-v' UpdateKeyMap(); - if (!secure) { - aKey = TestForKey('a'); + if ((gBootMode & kBootModeSecure) == 0) { sKey = TestForKey(kCommandKey) && TestForKey('s'); vKey = TestForKey(kCommandKey) && TestForKey('v'); - yKey = TestForKey('y'); } else { - aKey = 0; sKey = 0; vKey = 0; - yKey = 0; } - shiftKey = TestForKey(kShiftKey); // if 'cmd-s' or 'cmd-v' was pressed do a text boot. if (sKey || vKey) graphicsBoot = 0; - // if 'y' key was pressed send the symbols; - if (yKey) sym = 1; - // Create the command line. if (gOFVersion < kOFVersion3x) { ofBootArgs[0] = ' '; @@ -415,63 +391,42 @@ static long SetUpBootArgs(void) // Do special stuff if in a dash arg. if (dash) { - if (tc == 'a') { - ofArgs++; - aKey = 0; - } - else if (tc == 's') { + if (tc == 's') { graphicsBoot = 0; ofArgs++; sKey = 0; - } - else if (tc == 'v') { + } else if (tc == 'v') { graphicsBoot = 0; ofArgs++; vKey = 0; - } - else if (tc == 'x') { - ofArgs++; - shiftKey = 0; - } - else if (tc == 'y') { - sym = 1; - ofArgs++; - yKey = 0; - } - else { + } else { // Check for exiting dash arg if (isspace(tc)) dash = 0; - // Copy any non 'a', 's', 'v', 'x' or 'y' + // Copy any non 's' or 'v' ofArgs++; } } else { // Not a dash arg so just copy it. ofArgs++; - } + } } } - // Add any pressed keys (a, s, v, y, shift) to the command line + // Add any pressed keys (s, v, shift) to the command line keyPos = 0; - if (aKey || sKey || vKey || yKey || shiftKey) { + if (sKey || vKey || (gBootMode & kBootModeSafe)) { keyStr[keyPos++] = '-'; - if (aKey) keyStr[keyPos++] = 'a'; if (sKey) keyStr[keyPos++] = 's'; if (vKey) keyStr[keyPos++] = 'v'; - if (yKey) keyStr[keyPos++] = 'y'; - if (shiftKey) keyStr[keyPos++] = 'x'; + if (gBootMode & kBootModeSafe) keyStr[keyPos++] = 'x'; keyStr[keyPos++] = ' '; } keyStr[keyPos++] = '\0'; - // Send symbols? - if (!sym && !yKey) gSymbolTableAddr = 0; - - sprintf(args->CommandLine, "%s%s symtab=%d", - keyStr, ofBootArgs, gSymbolTableAddr); + sprintf(args->CommandLine, "%s%s", keyStr, ofBootArgs); // Get the memory info memoryPH = FindDevice("/memory"); @@ -492,7 +447,7 @@ static long SetUpBootArgs(void) // Get the video info GetMainScreenPH(&args->Video); - args->Video.v_display = graphicsBoot; + args->Video.v_display = graphicsBoot; // Add the DeviceTree to the memory-map. // The actuall address and size must be filled in later. @@ -557,7 +512,7 @@ static long CallKernel(void) static void FailToBoot(long num) { #if kFailToBoot - DrawBrokenSystemFolder(); + DrawFailedBootPicture(); while (1); num = 0; #else @@ -571,13 +526,13 @@ static long InitMemoryMap(void) { long result; - result = Interpret_0_1( - " dev /chosen" - " new-device" - " \" memory-map\" device-name" - " active-package" - " device-end" - , &gMemoryMapPH); + result = Interpret(0, 1, + " dev /chosen" + " new-device" + " \" memory-map\" device-name" + " active-package" + " device-end" + , &gMemoryMapPH); return result; } @@ -701,7 +656,13 @@ static long GetBootPaths(void) gBootSourceNumber = 0; gBootFileType = gBootDeviceType; if (gBootFileType == kNetworkDeviceType) gBootSourceNumberMax = 1; - else gBootSourceNumberMax = 4; + else { + if (gOFVersion < kOFVersion3x) { + gBootSourceNumberMax = 4; + } else { + gBootSourceNumberMax = 6; + } + } } if (gBootFileType == kNetworkDeviceType) { @@ -794,14 +755,9 @@ static long GetBootPaths(void) strncpy(gBootFile, gBootDevice + cnt + 1, cnt2 - cnt - 1); partNum = atoi(gBootFile); - if (gBootSourceNumber > 1) { - // Adjust the partition number to the root partition - if (gOFVersion < kOFVersion3x) { - partNum += 1; - } else { - partNum += 2; - } - } + // Adjust the partition number. + // Pass 0 & 1, no offset. Pass 2 & 3, offset 1, Pass 4 & 5, offset 2. + partNum += gBootSourceNumber / 2; // Construct the boot-file strncpy(gBootFile, gBootDevice, cnt + 1); diff --git a/bootx.tproj/sl.subproj/netboot.h b/bootx.tproj/sl.subproj/netboot.h new file mode 100644 index 0000000..74c9248 --- /dev/null +++ b/bootx.tproj/sl.subproj/netboot.h @@ -0,0 +1,613 @@ +/* + * Copyright (c) 2002 Apple Computer, Inc. All rights reserved. + * + * @APPLE_LICENSE_HEADER_START@ + * + * The contents of this file constitute Original Code as defined in and + * are subject to the Apple Public Source License Version 1.1 (the + * "License"). You may not use this file except in compliance with the + * License. Please obtain a copy of the License at + * http://www.apple.com/publicsource and read it before using this file. + * + * This Original Code and all software distributed under the License are + * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the + * License for the specific language governing rights and limitations + * under the License. + * + * @APPLE_LICENSE_HEADER_END@ + */ +/* + * netboot.h - Pictures used to show progress when net booting + * + * Copyright (c) 2002 Apple Computer, Inc. + * + * DRI: Josh de Cesare + */ + +#define kNetBootWidth (32) +#define kNetBootHeight (32) +#define kNetBootOffset (200) +#define kNetBootFrames (18) +#define kNetBootFPS (10) + +const unsigned char gNetBootPict[] = { + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x10,0x2f,0x40,0x4c,0x54,0x54,0x4c,0x41,0x30,0x11,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x01,0x22,0x4f,0x63,0x66,0x63,0x5c,0x56,0x54,0x56,0x5a,0x8c,0x8c,0x4e,0x24,0x2b,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x0c,0x51,0x68,0x60,0x42,0x2d,0x31,0x4b,0x58,0x54,0x54,0x53,0x53,0x55,0x5a,0x5f,0x4b,0x0a,0x2b,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x25,0x60,0x45,0x31,0x0e,0x19,0x1e,0x01,0x2b,0x27,0x5c,0x53,0x54,0x54,0x54,0x53,0x53,0x5d,0x5a,0x21,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x01,0x19,0x50,0x28,0x2b,0xf7,0x32,0x16,0x27,0x57,0x2c,0x3d,0x5a,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x5c,0x46,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x45,0x16,0x01,0x0b,0x47,0x5c,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x4f,0x07,0x27,0x0e,0x01,0x01,0x01,0x01, + 0x01,0x01,0x02,0x01,0x34,0x28,0x01,0xf7,0xf7,0x01,0x01,0x04,0x01,0x01,0x46,0x5b,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x55,0x50,0x64,0x36,0x01,0x01,0x01,0x01, + 0x01,0x03,0x01,0x24,0x69,0x4d,0x01,0x02,0x04,0x04,0x04,0x02,0x01,0x1e,0x53,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x58,0x5b,0x2e,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x50,0x61,0x3b,0x01,0x03,0x04,0xf7,0xf7,0x01,0x16,0x61,0x56,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x59,0x31,0x02,0x02,0x02,0x01, + 0x01,0x01,0x1b,0x8c,0x8c,0x32,0x2b,0xf7,0x04,0x01,0x2b,0x2b,0x3b,0x5d,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x56,0x0c,0x48,0x1c,0x01,0x01, + 0x02,0x01,0x3a,0x5d,0x57,0x50,0x03,0x01,0x03,0x1d,0x39,0x1c,0x51,0x5a,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0x47,0x01,0x13,0x30,0x01,0x01, + 0x01,0x03,0x49,0x5a,0x53,0x5a,0x32,0x01,0x01,0x62,0x67,0x3e,0x2d,0x55,0x58,0x56,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x55,0x5d,0x2f,0x01,0x01,0x04,0x08,0x01, + 0x01,0x07,0x52,0x58,0x53,0x54,0x5d,0x31,0x2b,0x20,0x10,0x50,0x46,0x20,0x38,0x51,0x56,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x4f,0x03,0x01,0x04,0x04,0x09,0x02, + 0x02,0x0a,0x56,0x56,0x54,0x54,0x56,0x5c,0x4d,0x36,0x12,0x0e,0x62,0x5a,0x49,0x59,0x5e,0x56,0x53,0x54,0x54,0x54,0x54,0x53,0x5b,0x3f,0x01,0x03,0x04,0x04,0x0a,0x02, + 0x03,0x0b,0x58,0x55,0x53,0x54,0x54,0x53,0x58,0x8c,0x5f,0x2d,0x32,0x1c,0x01,0x10,0x30,0x56,0x5e,0x56,0x53,0x53,0x54,0x53,0x5b,0x41,0x2b,0x01,0x01,0xf7,0x0c,0x02, + 0x03,0x09,0x53,0x5f,0x58,0x54,0x54,0x54,0x53,0x53,0x55,0x8c,0x51,0x01,0x01,0x01,0x2b,0x27,0x3f,0x57,0x5e,0x57,0x53,0x54,0x53,0x5b,0x19,0x27,0x1c,0x01,0x0c,0x03, + 0x03,0x0c,0x36,0x34,0x4e,0x54,0x56,0x54,0x54,0x54,0x53,0x5d,0x28,0x2b,0xf7,0xf7,0xf7,0x01,0x2b,0x10,0x3e,0x56,0x58,0x53,0x54,0x56,0x58,0x65,0x30,0x01,0x0d,0x03, + 0xf7,0x06,0x40,0x2f,0x0b,0x4c,0x58,0x53,0x54,0x54,0x53,0x5d,0x28,0x2b,0xf7,0x04,0x04,0x04,0xf7,0x01,0x2b,0x01,0x4f,0x58,0x53,0x53,0x55,0x5a,0x45,0xf7,0x0b,0x02, + 0x04,0x0a,0x11,0x39,0x3d,0x59,0x53,0x54,0x54,0x54,0x54,0x56,0x5c,0x0d,0x2b,0xf7,0x04,0x04,0x04,0xf7,0x01,0x1a,0x58,0x56,0x54,0x54,0x53,0x5a,0x4c,0x0c,0x07,0x02, + 0x02,0x0b,0x12,0x03,0x09,0x55,0x58,0x53,0x54,0x54,0x54,0x53,0x5b,0xfa,0x08,0x01,0x04,0x04,0x04,0x01,0x01,0x4f,0x5b,0x53,0x54,0x54,0x53,0x5d,0x3e,0x07,0x07,0x02, + 0x01,0x06,0x14,0x12,0x2b,0x17,0x5b,0x55,0x53,0x54,0x54,0x54,0x53,0x8c,0x51,0x01,0x02,0x04,0xf7,0x2b,0x17,0x5b,0x53,0x54,0x54,0x54,0x53,0x8c,0x32,0x06,0x04,0x01, + 0x01,0x04,0x0b,0x1b,0x04,0x01,0x54,0x58,0x56,0x54,0x54,0x54,0x53,0x58,0x4e,0x02,0x02,0x04,0x2b,0x39,0x5d,0x56,0x54,0x54,0x54,0x53,0x5b,0x4e,0x0d,0x07,0x02,0x01, + 0x01,0x02,0x07,0x13,0x13,0x2e,0x5d,0x58,0xfa,0x54,0x54,0x54,0x53,0x58,0x4e,0x04,0x01,0x2b,0x0c,0x5c,0x59,0x53,0x54,0x54,0x53,0x58,0x5a,0x1e,0x08,0x06,0x01,0x01, + 0x01,0x01,0x04,0x0a,0x12,0x33,0x8c,0x4a,0x22,0x54,0x56,0x54,0x53,0x5a,0x4a,0x01,0x2b,0x11,0x55,0x5a,0x53,0x54,0x54,0x53,0x58,0x5c,0x2d,0x0a,0x09,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0c,0x11,0x32,0x46,0x50,0x57,0x53,0x54,0x53,0x5a,0x4a,0x2b,0x1d,0x5b,0x5a,0x53,0x54,0x53,0x53,0x5b,0x59,0x2f,0x0b,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x10,0x12,0x29,0x52,0x5c,0x58,0x53,0x53,0x58,0x4d,0x01,0x50,0x5c,0x53,0x53,0x53,0x58,0x5c,0x4e,0x22,0x0e,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x38,0x50,0x5b,0x5b,0x58,0x59,0x4e,0x51,0x58,0x58,0x5b,0x5b,0x51,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x5b,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x50,0x57,0x56,0x4e,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x01,0x24,0x4e,0x5f,0x60,0x62,0x5f,0x5f,0x60,0x8c,0x5b,0x8c,0x8c,0x4e,0x24,0x2b,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x0b,0x4b,0x63,0x5f,0x56,0x54,0x41,0x2c,0x1a,0x24,0x50,0x5a,0x53,0x55,0x5a,0x5f,0x4b,0x0a,0x2b,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x2b,0x20,0x62,0x67,0x59,0x26,0x13,0x04,0x06,0x1a,0x29,0x01,0x2b,0x36,0x5b,0x53,0x53,0x53,0x5d,0x5a,0x1a,0x2b,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x2b,0x22,0x57,0x27,0x20,0x09,0x01,0x2b,0x22,0x4e,0xf7,0x29,0x5a,0x2c,0xf9,0x5a,0x53,0x54,0x54,0x53,0x5a,0x5d,0x1c,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x0e,0x2f,0x06,0x01,0x2b,0x01,0xf7,0x01,0x10,0x32,0x15,0x2b,0x08,0x46,0x5b,0x53,0x54,0x54,0x54,0x54,0x53,0x5a,0x56,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x4b,0x29,0x45,0x52,0x01,0x02,0x04,0xf7,0x01,0x01,0x04,0x01,0x01,0x46,0x5b,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x5a,0x33,0x01,0x01,0x01,0x01, + 0x01,0x03,0x01,0x28,0x59,0x54,0x5e,0x55,0x08,0x01,0x04,0x04,0x04,0xf7,0x02,0x01,0x1e,0x53,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x55,0x63,0x25,0x2b,0x01,0x01, + 0x01,0x01,0x04,0x51,0x5a,0x55,0x5a,0x40,0x2b,0x03,0x04,0x04,0xf7,0xf7,0x01,0x16,0x61,0x56,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5a,0x4e,0x01,0x01,0x01, + 0x01,0x01,0x0a,0x56,0x56,0x53,0x58,0x50,0x06,0x01,0xf7,0x04,0x01,0x2b,0x2b,0x3b,0x5d,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x55,0x5b,0x0e,0x01,0x01, + 0x01,0x02,0x1d,0x57,0x56,0x54,0x53,0x8c,0x3c,0x2b,0x01,0x03,0x1d,0x39,0x1c,0x51,0x5a,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5a,0x4b,0x07,0x03,0x01, + 0x01,0x03,0x4d,0x5c,0x53,0x54,0x54,0x56,0x56,0x27,0x01,0x01,0x62,0x67,0x3e,0x2d,0x55,0x58,0x56,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5e,0x30,0x2b,0x07,0x01, + 0x02,0x06,0x4e,0x5b,0x53,0x54,0x54,0x53,0x56,0x5e,0x31,0x2b,0x20,0x10,0x50,0x46,0x20,0x38,0x51,0x56,0x53,0x54,0x54,0x54,0x54,0x54,0x56,0x55,0xf7,0x01,0x08,0x02, + 0x02,0x10,0x31,0x4b,0x58,0x53,0x54,0x54,0x53,0x55,0x5c,0x4d,0x36,0x12,0x0e,0x62,0x5a,0x49,0x59,0x5e,0x56,0x53,0x54,0x54,0x54,0x53,0x5a,0x47,0x01,0x03,0x0b,0x02, + 0x03,0x10,0x46,0x2e,0x5b,0x53,0x53,0x54,0x54,0x54,0x53,0x58,0x8c,0x5f,0x2d,0x32,0x1c,0x01,0x10,0x30,0x56,0x5e,0x56,0x53,0x53,0x53,0x5b,0x43,0x2b,0x01,0x0c,0x03, + 0xf7,0x09,0x1c,0x4c,0x58,0x5c,0x58,0x56,0x54,0x54,0x54,0x53,0x53,0x55,0x8c,0x51,0x01,0x01,0x01,0x2b,0x27,0x3f,0x57,0x5e,0x57,0x53,0x56,0x57,0x11,0x26,0x0c,0x03, + 0xf7,0x0c,0x0c,0x2f,0x3c,0x34,0x55,0x51,0x55,0x54,0x54,0x54,0x54,0x53,0x5d,0x28,0x2b,0xf7,0xf7,0xf7,0x01,0x2b,0x0d,0x3f,0x56,0x57,0x53,0x55,0x8c,0x50,0xf7,0x02, + 0xf7,0x08,0x31,0x54,0x5d,0x14,0x06,0x3f,0x58,0x54,0x54,0x54,0x54,0x53,0x5d,0x28,0x2b,0xf7,0x04,0x04,0x04,0xf7,0x01,0x2b,0x09,0x54,0x56,0x53,0x5e,0xf9,0x01,0x02, + 0x03,0xf7,0x29,0x61,0x2e,0x38,0x3a,0x52,0x56,0x54,0x54,0x54,0x54,0x54,0x56,0x5c,0x0d,0x2b,0xf7,0x04,0x04,0x04,0xf7,0x01,0x27,0x5a,0x56,0x53,0x5c,0x21,0x02,0x02, + 0x02,0x08,0x1b,0x21,0x2b,0x07,0x19,0x5d,0x57,0x53,0x54,0x54,0x54,0x54,0x53,0x5b,0xfa,0x08,0x01,0x04,0x04,0xf7,0x01,0x01,0x57,0x58,0x53,0x5a,0x50,0x0c,0xf7,0x02, + 0x01,0x06,0x12,0x0c,0x01,0x01,0x2b,0x24,0x5c,0x55,0x54,0x54,0x54,0x54,0x54,0x53,0x8c,0x51,0x01,0x02,0xf7,0x02,0x2b,0x2f,0x5b,0x53,0x53,0x8c,0x31,0xf7,0xf7,0x01, + 0x01,0x04,0x0c,0x19,0x14,0x0c,0x2b,0x2b,0xfa,0x58,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x4e,0x02,0x02,0x01,0x01,0x42,0x5d,0x53,0x53,0x5b,0x4e,0x0d,0x07,0x02,0x01, + 0x01,0x02,0x07,0x0d,0x2d,0x60,0x1f,0x06,0x53,0x58,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x4d,0x03,0x01,0x2b,0x26,0x5e,0x55,0x53,0x58,0x5a,0x1e,0x08,0x06,0x01,0x01, + 0x01,0x01,0x04,0x0b,0x0d,0x33,0x60,0x41,0x55,0x59,0x35,0x37,0x58,0x54,0x54,0x53,0x59,0x48,0x01,0x2b,0x2e,0x8c,0x55,0x53,0x58,0x5c,0x2d,0x0a,0x09,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0d,0x10,0x31,0x57,0x8c,0x47,0x2f,0x53,0x56,0x54,0x54,0x53,0x5b,0x42,0x2b,0x3b,0x60,0x55,0x53,0x5b,0x59,0x2f,0x0b,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x11,0x12,0x26,0x4f,0x5d,0x5d,0x56,0x53,0x53,0x54,0x53,0x5a,0x3c,0x0e,0x5b,0x57,0x58,0x5c,0x4e,0x22,0x0e,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x38,0x50,0x5b,0x5b,0x58,0x56,0x56,0x56,0x57,0x56,0x5c,0x5b,0x51,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x56,0x52,0x4f,0x41,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1d,0x1c,0x16,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x4e,0x56,0x56,0x50,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x01,0x24,0x4e,0x5d,0x5e,0x5f,0x8c,0x5c,0x8c,0x60,0x65,0x63,0x5d,0x4e,0x24,0x2b,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x0b,0x4a,0x61,0x8c,0x5b,0x5c,0x47,0x46,0x49,0x31,0x27,0x29,0x48,0x60,0x5c,0x5f,0x4b,0x0a,0x2b,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x2b,0x1b,0x8c,0x66,0x57,0xfa,0x4c,0x28,0x03,0x08,0x01,0x08,0x1b,0x1b,0x2b,0x14,0x53,0x55,0x5d,0x5a,0x1a,0x2b,0x02,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x2b,0x1b,0x5d,0x4d,0x37,0x01,0x2b,0x01,0x01,0x02,0x2b,0x34,0x56,0x02,0x36,0xfa,0x0b,0x40,0x59,0x53,0x5a,0x5d,0x1a,0x2b,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x11,0x5b,0x5e,0x1f,0x0b,0x40,0x0d,0x01,0xf7,0x04,0x01,0x09,0x2f,0x13,0x2b,0x16,0x49,0x56,0x54,0x54,0x53,0x5a,0x5a,0x0b,0x01,0x02,0x01,0x01, + 0x01,0x01,0x02,0x01,0x30,0x5f,0x4e,0x40,0x59,0x65,0x39,0x01,0x02,0x04,0xf7,0x01,0x01,0x04,0x01,0x01,0x47,0x5b,0x53,0x54,0x54,0x53,0x5d,0x4c,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x21,0x4f,0x54,0x53,0x58,0x55,0x5c,0x40,0x01,0x02,0x04,0x04,0x04,0xf7,0x02,0x01,0x1e,0x53,0x56,0x54,0x54,0x54,0x54,0x53,0x5f,0x25,0x2b,0x02,0x01, + 0x01,0x02,0x01,0x39,0x5d,0x54,0x54,0x54,0x53,0x8c,0x30,0x2b,0xf7,0x04,0x04,0xf7,0xf7,0x01,0x16,0x61,0x56,0x53,0x54,0x54,0x54,0x54,0x53,0x5a,0x4d,0x01,0x01,0x01, + 0x01,0x02,0x09,0x3d,0x1f,0x51,0x56,0x54,0x53,0x58,0x50,0xf7,0x01,0xf7,0x04,0x01,0x2b,0x2b,0x3b,0x5d,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x8c,0x1a,0x01,0x01, + 0x01,0x06,0x08,0x35,0x3f,0x59,0x53,0x54,0x54,0x53,0x5e,0x3c,0x2b,0x01,0x03,0x1d,0x39,0x1c,0x51,0x5a,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x8c,0x38,0x2b,0x01, + 0x02,0x0b,0x2b,0x1d,0x66,0x53,0x54,0x54,0x54,0x54,0x56,0x56,0x27,0x01,0x01,0x62,0x67,0x3e,0x2d,0x55,0x58,0x56,0x53,0x54,0x54,0x54,0x54,0x53,0x5a,0x4b,0x01,0x01, + 0x03,0xf7,0x20,0x54,0x4c,0x58,0x53,0x54,0x54,0x54,0x53,0x56,0x5e,0x31,0x2b,0x20,0x10,0x50,0x46,0x20,0x38,0x51,0x56,0x53,0x54,0x54,0x54,0x53,0x5a,0xfa,0x02,0x01, + 0x04,0x09,0x09,0x55,0x26,0xfa,0x58,0x53,0x54,0x54,0x54,0x53,0x55,0x5c,0x4d,0x36,0x12,0x0e,0x62,0x5a,0x49,0x59,0x5e,0x56,0x53,0x54,0x54,0x53,0x5d,0x3c,0x01,0x02, + 0xf7,0x0c,0x2e,0x5b,0x3e,0x2d,0x5c,0x53,0x53,0x54,0x54,0x54,0x54,0x53,0x58,0x8c,0x5f,0x2d,0x32,0x1c,0x01,0x10,0x30,0x56,0x5e,0x55,0x53,0x53,0x5d,0x34,0x01,0x02, + 0xf7,0x07,0x33,0x42,0x1b,0x50,0x58,0x5d,0x5a,0x56,0x56,0x54,0x54,0x54,0x53,0x53,0x55,0x8c,0x51,0x01,0x01,0x01,0x2b,0x27,0x41,0x59,0x5b,0x53,0x58,0x4e,0xf7,0x02, + 0xf7,0x0d,0x22,0x24,0x06,0x3e,0x39,0x29,0x48,0x59,0x4e,0x55,0x54,0x54,0x54,0x54,0x53,0x5d,0x28,0x2b,0xf7,0xf7,0xf7,0x01,0x2b,0x17,0x4c,0x57,0x5a,0x4c,0xf7,0x02, + 0x04,0x09,0x39,0x2c,0x36,0x51,0x5c,0x24,0x2b,0x14,0x44,0x58,0x54,0x54,0x54,0x54,0x53,0x5d,0x28,0x2b,0xf7,0x04,0x04,0x04,0x04,0x2b,0x01,0x50,0x5f,0x3b,0x01,0x02, + 0x04,0xf7,0x2c,0x8c,0x55,0x5c,0x39,0x45,0x37,0x3e,0x51,0x56,0x54,0x54,0x54,0x54,0x54,0x56,0x5c,0x0d,0x2b,0xf7,0x04,0x04,0xf7,0x01,0x22,0x5d,0x8c,0x21,0x02,0x02, + 0x02,0x08,0x0e,0x52,0x5d,0x2c,0x2b,0x0e,0x13,0x44,0x60,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0xfa,0x08,0x01,0x04,0xf7,0x01,0x2b,0x51,0x8c,0x4f,0x0c,0xf7,0x02, + 0x01,0x06,0x0a,0x3a,0x4d,0x2b,0x01,0x01,0x01,0x04,0x4e,0x59,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x8c,0x51,0x01,0x02,0x03,0x01,0x32,0x5c,0x8c,0x31,0xf7,0xf7,0x01, + 0x01,0x04,0x0a,0x13,0x56,0x1a,0x2b,0x01,0x01,0x2b,0x1a,0x5b,0x55,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x4d,0x03,0x02,0x2b,0x2c,0x63,0x5b,0x4d,0x0d,0x07,0x02,0x01, + 0x01,0x02,0x07,0x0c,0x27,0x52,0x46,0x4a,0x0e,0x2b,0x29,0x5a,0x56,0x56,0x56,0x54,0x54,0x54,0x53,0x59,0x4a,0x01,0x2b,0x13,0x59,0x5b,0x59,0x1e,0x08,0x06,0x01,0x01, + 0x01,0x01,0x04,0x0b,0x0d,0x34,0x61,0x60,0x56,0x24,0x4e,0x58,0x5a,0x32,0x42,0x57,0x54,0x54,0x53,0x5c,0x39,0x2b,0x1b,0x5a,0x5c,0x5b,0x2d,0x0a,0x09,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0d,0x10,0x2f,0x58,0x5d,0x54,0x53,0x59,0x36,0x2d,0x52,0x56,0x54,0x54,0x53,0x5d,0x1c,0x0d,0x5f,0x8c,0x59,0x2f,0x0b,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x11,0x12,0x24,0x4f,0x8c,0x58,0x54,0x4f,0x57,0x56,0x53,0x54,0x54,0x53,0x5a,0x25,0xf9,0x65,0x4d,0x22,0x0e,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x37,0x50,0x5b,0x5d,0x5a,0x56,0x56,0x56,0x56,0x58,0x5b,0x5f,0x53,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x57,0x52,0x4c,0x41,0x2f,0x1a,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x11,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x4f,0x56,0x56,0x4e,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x01,0x24,0x4e,0x8c,0x5d,0x5b,0x57,0x59,0x5e,0x8c,0x5f,0x64,0x64,0x52,0x22,0x2b,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x0b,0x4a,0x61,0x5a,0x59,0x5e,0x5d,0x5f,0x54,0x3a,0x4a,0xfa,0x3c,0x37,0x55,0x6c,0x4c,0x09,0x2b,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x20,0x5a,0x5d,0x56,0x5c,0xfa,0x30,0x2f,0x28,0x11,0x01,0x08,0x01,0x11,0x22,0x01,0x1f,0x60,0x5c,0x1a,0x2b,0x02,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x02,0x01,0x14,0x4e,0x59,0x59,0x3f,0x17,0x01,0x01,0x2b,0x01,0x01,0x02,0x01,0x33,0x41,0x13,0x42,0xf7,0x16,0x60,0x5d,0x1a,0x2b,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x02,0x06,0x01,0x22,0x5c,0x58,0x3f,0x1b,0x4c,0x57,0x0d,0x01,0xf7,0x04,0x01,0x0e,0x35,0x0d,0x0d,0x3f,0x3e,0x54,0x5a,0x5a,0x0b,0x01,0x02,0x01,0x01, + 0x01,0x01,0x01,0x01,0x26,0x49,0x2f,0x55,0x54,0x4c,0x5d,0x5a,0x5f,0x38,0x01,0x03,0x04,0xf7,0x01,0x01,0x07,0x2b,0x03,0x51,0x58,0x53,0x5d,0x4c,0x01,0x01,0x01,0x01, + 0x01,0x01,0x04,0x07,0x2b,0x30,0x63,0x55,0x54,0x57,0x53,0x53,0x5c,0x3f,0x01,0x03,0x04,0x04,0x04,0xf7,0x02,0x01,0x1f,0x54,0x56,0x54,0x53,0x5f,0x25,0x2b,0x02,0x01, + 0x01,0x03,0x07,0x06,0x2b,0x3b,0xf9,0x4f,0x56,0x53,0x54,0x53,0x8c,0x30,0x2b,0xf7,0x04,0x04,0xf7,0xf7,0x01,0x17,0x5e,0x55,0x54,0x54,0x53,0x5a,0x4d,0x01,0x01,0x01, + 0x01,0x04,0x08,0x01,0x0c,0x40,0x16,0x50,0x58,0x53,0x54,0x53,0x58,0x50,0xf7,0x01,0xf7,0x04,0x01,0x2b,0x2b,0x3b,0x8c,0x53,0x54,0x54,0x54,0x53,0x8c,0x1a,0x01,0x01, + 0x01,0x07,0x08,0x02,0x01,0x34,0x57,0x57,0x53,0x54,0x54,0x54,0x53,0x5e,0x3c,0x2b,0x01,0x03,0x1d,0x39,0x1c,0x51,0x5a,0x53,0x54,0x54,0x54,0x53,0x8c,0x39,0x2b,0x01, + 0x02,0x09,0x01,0x01,0x01,0xf9,0x63,0x53,0x54,0x54,0x54,0x54,0x54,0x56,0x56,0x27,0x01,0x01,0x62,0x67,0x3e,0x2d,0x55,0x58,0x56,0x53,0x54,0x53,0x5a,0x48,0x01,0x01, + 0x01,0x0e,0x22,0x2b,0x37,0x5a,0x38,0x5b,0x56,0x54,0x54,0x54,0x54,0x53,0x56,0x5e,0x31,0x2b,0x20,0x10,0x50,0x46,0x20,0x37,0x53,0x56,0x53,0x53,0x58,0x51,0x03,0x01, + 0x02,0x0c,0x60,0x16,0x07,0x5d,0x24,0x2e,0x5b,0x53,0x54,0x54,0x54,0x54,0x53,0x55,0x5c,0x4d,0x36,0x12,0x0e,0x62,0x5a,0x49,0x59,0x5d,0x55,0x53,0x56,0x57,0x08,0x01, + 0x03,0x09,0x5e,0x3f,0x36,0x5d,0x50,0x0e,0x4b,0x58,0x53,0x53,0x54,0x54,0x54,0x54,0x53,0x58,0x8c,0x5f,0x2d,0x32,0x1c,0x01,0x11,0x39,0x5d,0x58,0x55,0x57,0x08,0x01, + 0x03,0x08,0x59,0x35,0x35,0x35,0x11,0x50,0x51,0x5a,0x5c,0x5a,0x56,0x56,0x54,0x54,0x54,0x53,0x53,0x55,0x8c,0x51,0x01,0x01,0x01,0x01,0x39,0x57,0x5f,0x51,0x07,0x02, + 0x03,0x09,0xfa,0x5c,0x20,0x1c,0x09,0x19,0x57,0x1f,0x2f,0x48,0x59,0x4e,0x55,0x54,0x54,0x54,0x54,0x53,0x5d,0x28,0x2b,0xf7,0xf7,0x02,0x2b,0x12,0x53,0x4d,0xf7,0x02, + 0xf7,0x04,0xf9,0x62,0x47,0x1b,0x38,0x46,0x5e,0x58,0x1d,0x2b,0x14,0x44,0x58,0x54,0x54,0x54,0x54,0x53,0x5d,0x28,0x2b,0xf7,0x04,0x04,0xf7,0x2b,0x0b,0x3d,0x03,0x02, + 0x04,0x06,0x25,0x5b,0x5a,0x51,0x4e,0x5e,0x54,0x33,0x4f,0x33,0x3e,0x51,0x56,0x54,0x54,0x54,0x54,0x54,0x56,0x5c,0x0c,0x2b,0xf7,0x04,0xf7,0x01,0x3c,0x2d,0x02,0x02, + 0x02,0x08,0x10,0x51,0x58,0x56,0x5b,0x46,0x04,0x2b,0x1d,0x12,0x45,0x5f,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0x4c,0x0b,0x02,0xf7,0x01,0x02,0x52,0x10,0x04,0x02, + 0x01,0x06,0x0a,0x33,0x8c,0x5a,0x46,0x01,0x01,0x04,0x01,0x01,0xf7,0x52,0x58,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x60,0x43,0x01,0x01,0x01,0x4c,0x39,0xf7,0xf7,0x01, + 0x01,0x04,0x0a,0x12,0x4e,0x5c,0x5a,0x0b,0x2b,0x01,0x01,0x06,0x2b,0x1d,0x8c,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x5c,0x34,0x01,0x2b,0x3c,0x8c,0x0c,0x07,0x02,0x01, + 0x01,0x02,0x08,0x0b,0x21,0x59,0x5e,0x48,0x1b,0x38,0x13,0x2b,0x2b,0x31,0x5c,0x53,0x56,0x56,0x53,0x54,0x54,0x53,0x5e,0x24,0x2b,0x27,0x62,0x1e,0x08,0x06,0x01,0x01, + 0x01,0x01,0x04,0x0b,0x0e,0x30,0x5b,0x5b,0x5c,0x5e,0x5b,0x2c,0x19,0x56,0x57,0x8c,0x31,0x45,0x59,0x53,0x54,0x56,0x57,0x01,0x1d,0x66,0x30,0x0a,0x09,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0d,0x10,0x2f,0x59,0x5a,0x52,0x58,0x56,0x45,0x57,0x57,0x2c,0x32,0x53,0x56,0x54,0x53,0x5a,0x46,0x06,0x5d,0x34,0x0b,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x11,0x12,0x24,0x4f,0x5c,0x58,0x56,0x57,0x56,0x53,0x45,0x5b,0x56,0x53,0x53,0x53,0x5a,0x52,0x30,0x28,0x0d,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x38,0x50,0x5b,0x5b,0x58,0x58,0x5a,0x55,0x56,0x58,0x5b,0x5b,0x51,0x39,0x1d,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x4f,0x56,0x56,0x4f,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x01,0x24,0x4e,0x8c,0x8c,0x5a,0x58,0x57,0x57,0x57,0x8c,0x61,0x5e,0x50,0x26,0x01,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x0b,0x4c,0x5f,0x5a,0x55,0x58,0x58,0x5d,0x5d,0x5d,0x5f,0x51,0xfa,0x5c,0x5c,0x5d,0x4e,0x15,0x2b,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x26,0x63,0x62,0x53,0x53,0x53,0x49,0x50,0x22,0x14,0x2c,0x27,0x10,0x0b,0x1d,0x10,0x1d,0x1a,0xf9,0x27,0x2b,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x02,0x02,0x0d,0x2d,0x1c,0x22,0x53,0x58,0x56,0x2f,0x2b,0x08,0x04,0x2b,0x01,0x01,0x01,0x01,0x29,0x2c,0x21,0x01,0x1f,0x20,0x2b,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x06,0x02,0x07,0x1f,0x12,0x4e,0x58,0x52,0x39,0x39,0x5c,0x5b,0x0b,0x01,0xf7,0x02,0x01,0x30,0x36,0x14,0x45,0x1d,0x55,0x10,0x01,0x02,0x01,0x01, + 0x01,0x01,0x01,0x06,0x06,0x01,0x0e,0x43,0x50,0xfa,0x56,0x51,0x56,0x5c,0x55,0x5e,0x38,0x01,0x03,0x04,0xf7,0x01,0x07,0x01,0x03,0x44,0x61,0x4c,0x01,0x01,0x01,0x01, + 0x01,0x01,0x06,0x07,0x03,0xf7,0x2b,0x1d,0x59,0x58,0x56,0x54,0x54,0x53,0x53,0x5d,0x3f,0x01,0x03,0x04,0x04,0xf7,0x02,0x03,0x2b,0x38,0x5d,0x5f,0x25,0x2b,0x02,0x01, + 0x01,0x03,0x07,0xf7,0x04,0x02,0x01,0xf9,0x36,0x1d,0x5b,0x54,0x54,0x54,0x53,0x8c,0x30,0x2b,0xf7,0x04,0x04,0xf7,0xf7,0x01,0x21,0x54,0x56,0x5a,0x4d,0x01,0x01,0x01, + 0x01,0x04,0x08,0x03,0x04,0x01,0x09,0x43,0x30,0x28,0x5a,0x54,0x54,0x54,0x53,0x58,0x50,0xf7,0x01,0xf7,0x04,0x01,0x2b,0x01,0x40,0x8c,0x53,0x53,0x8c,0x1a,0x01,0x01, + 0x01,0x07,0x08,0x04,0x04,0xf7,0x2b,0x04,0x5a,0x5c,0x53,0x54,0x54,0x54,0x54,0x53,0x5e,0x3c,0x2b,0x01,0x03,0x1d,0x38,0x1b,0x50,0x58,0x53,0x53,0x8c,0x39,0x2b,0x01, + 0x02,0x09,0x07,0x01,0x01,0x03,0x11,0x2e,0x5a,0x5b,0x53,0x54,0x54,0x54,0x54,0x54,0x56,0x56,0x27,0x01,0x01,0x62,0x68,0x3d,0x30,0x57,0x58,0x53,0x5a,0x48,0x01,0x01, + 0x03,0x0b,0x01,0x1a,0x30,0x2b,0x2f,0x64,0x49,0x2e,0x5e,0x53,0x54,0x54,0x54,0x54,0x53,0x56,0x5e,0x31,0x2b,0x20,0x10,0x50,0x43,0x26,0x47,0x55,0x58,0x51,0x03,0x01, + 0x03,0x14,0x13,0x3c,0x65,0x20,0x2b,0x41,0x5e,0x19,0x2e,0x5b,0x53,0x54,0x54,0x54,0x54,0x53,0x55,0x5c,0x4d,0x36,0x12,0x0e,0x61,0x55,0x4d,0x5c,0x57,0x56,0x08,0x01, + 0x03,0x11,0x43,0x45,0x8c,0x3a,0x3d,0x58,0x5a,0xfa,0x0c,0x4b,0x58,0x53,0x53,0x54,0x54,0x54,0x54,0x53,0x58,0x8c,0x5f,0x2d,0x31,0x16,0xf7,0x3b,0x61,0x5a,0x07,0x01, + 0x03,0x0a,0x55,0x5b,0x5a,0x21,0x26,0x5a,0x01,0x19,0x53,0x50,0x5a,0x5c,0x5a,0x56,0x56,0x54,0x54,0x54,0x53,0x53,0x55,0x5e,0x4d,0x01,0x2b,0x01,0x45,0x55,0x08,0x01, + 0x04,0x07,0x4b,0x5a,0x57,0x57,0x16,0x37,0x09,0x12,0x14,0x5b,0x1f,0x2f,0x48,0x59,0x4e,0x55,0x54,0x54,0x54,0x54,0x53,0x5d,0x26,0x01,0xf7,0x02,0x2b,0x1a,0x10,0x01, + 0xf7,0x04,0x3d,0x5c,0x53,0x5b,0x48,0x0d,0x2d,0x3d,0x45,0x8c,0x58,0x1d,0x2b,0x14,0x44,0x58,0x54,0x54,0x54,0x54,0x53,0x5c,0x25,0x2b,0xf7,0x04,0x02,0xf7,0x0b,0x02, + 0x04,0x06,0x25,0x5c,0x53,0x53,0x5a,0x53,0x46,0x51,0x62,0x54,0x33,0x4f,0x33,0x3e,0x51,0x56,0x54,0x54,0x54,0x54,0x53,0x58,0x50,0x01,0x01,0xf7,0x02,0x10,0x0a,0x02, + 0x02,0x08,0x10,0x51,0x58,0x53,0x53,0x56,0x59,0x62,0x3f,0x01,0x2b,0x1d,0x12,0x45,0x5f,0x53,0x54,0x54,0x54,0x54,0x54,0x55,0x5d,0x37,0x01,0x01,0x06,0x13,0x06,0x02, + 0x01,0x06,0x0a,0x33,0x8c,0x53,0x54,0x56,0x55,0x20,0x01,0x01,0x06,0x01,0x01,0xf7,0x52,0x58,0x53,0x54,0x54,0x54,0x54,0x53,0x58,0x55,0x02,0x01,0x11,0x11,0xf7,0x01, + 0x01,0x04,0x0a,0x12,0x4e,0x5b,0x53,0x56,0x5b,0x15,0x2b,0x01,0x01,0x02,0x06,0x2b,0x1d,0x8c,0x53,0x56,0x54,0x54,0x54,0x53,0x5c,0x44,0x2b,0x06,0x16,0x0a,0x02,0x01, + 0x01,0x02,0x08,0x0b,0x21,0x59,0x58,0x53,0x59,0x50,0x09,0x10,0x1f,0x01,0x01,0x2b,0x31,0x5c,0x56,0x53,0x54,0x54,0x54,0x53,0x5e,0x27,0x01,0x19,0x10,0xf7,0x01,0x01, + 0x01,0x01,0x04,0x0b,0x0e,0x30,0x5b,0x58,0x53,0x58,0x55,0x56,0x5f,0xfa,0x0e,0x16,0x58,0x5a,0x59,0x2d,0x49,0x57,0x54,0x53,0x8c,0x1b,0x10,0x15,0x08,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0d,0x10,0x2f,0x59,0x59,0x53,0x56,0x56,0x54,0x5d,0xfa,0x44,0x5c,0x51,0x25,0x41,0x58,0x53,0x53,0x5b,0x58,0x1d,0x13,0x0a,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x11,0x12,0x24,0x4f,0x5c,0x58,0x53,0x53,0x53,0x57,0x56,0x56,0x4f,0x4b,0x5a,0x55,0x58,0x5c,0x4e,0x21,0x12,0x0d,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x38,0x50,0x5b,0x5b,0x58,0x58,0x56,0x56,0x58,0x5c,0x5b,0x5b,0x51,0x36,0x16,0x0e,0x0e,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x4f,0x56,0x56,0x4f,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x01,0x24,0x4e,0x8c,0x8c,0x5a,0x58,0x56,0x56,0x58,0x5c,0x5d,0x8c,0x4e,0x24,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x0c,0x4d,0x63,0x8c,0x58,0x53,0x53,0x56,0x5b,0x5a,0x5d,0x5d,0x5c,0x5c,0x8c,0x67,0x51,0x12,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x25,0x61,0x8c,0x4d,0x4b,0xfa,0x55,0x56,0x4f,0x3e,0x4b,0x1d,0x21,0x3f,0x42,0x1f,0x31,0x49,0x2d,0x04,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x02,0x02,0x07,0x1f,0x1c,0x04,0x04,0x2b,0x35,0x5b,0x55,0x57,0x2d,0x2b,0x07,0x01,0x2b,0x01,0x01,0x01,0x02,0x16,0x2e,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x06,0x03,0x01,0x2b,0x08,0x42,0x43,0x27,0x52,0x58,0x4f,0x37,0x3e,0x5d,0x57,0x09,0x01,0xf7,0x01,0x19,0x47,0x1c,0x41,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x06,0xf7,0x04,0x04,0xf7,0x01,0x01,0x48,0x5c,0x53,0x54,0x51,0x57,0x5c,0x55,0x5e,0x38,0x01,0x03,0xf7,0x01,0x1b,0x0d,0x24,0x42,0x01,0x01,0x01,0x01, + 0x01,0x01,0x06,0x07,0x03,0x04,0x04,0x04,0x01,0x01,0x4d,0x4f,0x58,0x56,0x54,0x54,0x53,0x53,0x5d,0x3f,0x01,0x03,0x04,0x04,0x01,0x03,0x2b,0x3a,0x32,0x2b,0x01,0x01, + 0x01,0x03,0x07,0xf7,0x04,0x04,0x04,0x04,0x01,0x1c,0x43,0x30,0x1b,0x5c,0x53,0x54,0x54,0x53,0x8c,0x30,0x2b,0xf7,0x04,0x04,0xf7,0x01,0x03,0x47,0x54,0x01,0x01,0x01, + 0x01,0x03,0x08,0x03,0x04,0x04,0x04,0x04,0x01,0x12,0x48,0x30,0x28,0x5b,0x53,0x54,0x54,0x53,0x58,0x50,0xf7,0x01,0xf7,0x04,0x01,0x2b,0x22,0x5f,0x5d,0x1a,0x01,0x01, + 0x01,0x08,0x04,0x01,0xf7,0x02,0x02,0xf7,0xf7,0x2b,0x03,0x5b,0x5d,0x53,0x54,0x54,0x54,0x54,0x53,0x5e,0x3c,0x2b,0x01,0x03,0x1f,0x1c,0x34,0x8c,0x5d,0x39,0x2b,0x01, + 0x02,0x07,0x10,0x03,0x01,0x03,0x06,0x01,0xf7,0x1b,0x30,0x5a,0x5b,0x53,0x54,0x54,0x54,0x54,0x54,0x56,0x56,0x27,0x01,0x03,0x63,0x5d,0x30,0x59,0x5d,0x48,0x01,0x01, + 0x02,0x03,0x45,0x4a,0x2b,0x36,0x4b,0x01,0x2b,0x38,0x66,0x49,0x2e,0x5e,0x53,0x54,0x54,0x54,0x54,0x53,0x56,0x5e,0x31,0x2b,0x1e,0x25,0x49,0x34,0x53,0x53,0x03,0x01, + 0x02,0x09,0x5a,0x60,0x0b,0x4e,0x61,0x4c,0x0c,0x2b,0x42,0x5e,0x19,0x2e,0x5b,0x53,0x54,0x54,0x54,0x54,0x53,0x55,0x5c,0x4d,0x35,0x08,0x3e,0x52,0x4f,0x8c,0x07,0x01, + 0x03,0x0b,0x57,0x5b,0x3f,0x50,0x58,0x4e,0x2e,0x45,0x59,0x5a,0xfa,0x0c,0x4b,0x58,0x53,0x53,0x54,0x54,0x54,0x54,0x53,0x58,0x5f,0x54,0x2e,0x25,0x1b,0xfa,0x0b,0x01, + 0x03,0x09,0x53,0x57,0x58,0x54,0x58,0x4c,0x01,0x35,0x5c,0x01,0x19,0x53,0x50,0x5a,0x5c,0x5a,0x56,0x56,0x54,0x54,0x54,0x53,0x53,0x58,0x59,0x09,0x2b,0x0a,0x0d,0x03, + 0x03,0x09,0x4a,0x5a,0x53,0x54,0x53,0x5d,0x44,0x06,0x3e,0x09,0x12,0x14,0x5b,0x1f,0x2f,0x48,0x59,0x4e,0x55,0x54,0x54,0x54,0x53,0x5c,0x47,0x01,0x03,0x04,0x0d,0x03, + 0xf7,0x04,0x3d,0x5c,0x53,0x54,0x54,0x53,0x5e,0x3b,0x0a,0x2e,0x3d,0x45,0x8c,0x58,0x1d,0x2b,0x14,0x44,0x58,0x54,0x54,0x54,0x53,0x5c,0x3f,0x2b,0x02,0x0b,0x0d,0x02, + 0x04,0x06,0x25,0x5c,0x53,0x54,0x54,0x54,0x53,0x5b,0x52,0x46,0x50,0x62,0x54,0x33,0x4f,0x33,0x3e,0x51,0x56,0x54,0x54,0x54,0x54,0x56,0x59,0x08,0x01,0x10,0x09,0x02, + 0x02,0x08,0x10,0x51,0x58,0x53,0x54,0x54,0x54,0x53,0x56,0x5a,0x64,0x3f,0x01,0x2b,0x1d,0x12,0x45,0x5f,0x53,0x54,0x54,0x54,0x54,0x53,0x5b,0x42,0x02,0x11,0x06,0x02, + 0x01,0x06,0x0a,0x33,0x8c,0x53,0x54,0x54,0x54,0x54,0x56,0x54,0x1e,0x01,0x01,0x06,0x01,0x01,0xf7,0x52,0x58,0x53,0x54,0x54,0x54,0x53,0x58,0x53,0x0d,0x0c,0x06,0x01, + 0x01,0x04,0x0a,0x12,0x4e,0x5b,0x53,0x54,0x54,0x53,0x58,0x57,0x01,0x01,0x01,0x01,0x02,0x06,0x2b,0x1d,0x8c,0x53,0x57,0x54,0x54,0x53,0x5d,0x44,0x0b,0x09,0x02,0x01, + 0x01,0x02,0x08,0x0b,0x21,0x59,0x58,0x53,0x54,0x54,0x53,0x5d,0xf9,0x2b,0x0c,0x1b,0x01,0x01,0x2b,0x34,0x5c,0x57,0x4c,0x55,0x53,0x58,0x5a,0x20,0x0a,0xf7,0x01,0x01, + 0x01,0x01,0x04,0x0b,0x0e,0x30,0x5b,0x58,0x53,0x54,0x54,0x56,0x55,0x46,0x55,0x5e,0x4a,0x0b,0x1e,0x5c,0x5b,0x41,0x30,0x57,0x58,0x5c,0x2d,0x0a,0x09,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0d,0x10,0x2f,0x59,0x59,0x53,0x53,0x53,0x56,0x5b,0x56,0x54,0x8c,0x4a,0x4a,0x8c,0x42,0x34,0x5a,0x5c,0x59,0x2f,0x0b,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x11,0x12,0x24,0x4f,0x5c,0x58,0x53,0x53,0x53,0x53,0x53,0x53,0x57,0x57,0x53,0x52,0x5d,0x8c,0x4e,0x22,0x0e,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x38,0x50,0x5b,0x5b,0x58,0x56,0x56,0x56,0x58,0x58,0x5b,0x5b,0x51,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x4f,0x56,0x56,0x4f,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x01,0x24,0x4d,0x5d,0x5d,0x5b,0x58,0x56,0x56,0x58,0x5a,0x8c,0x8c,0x4e,0x24,0x2b,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x0d,0x4f,0x65,0x62,0x5e,0x8c,0x8c,0x58,0x53,0x53,0x56,0x59,0x57,0x5c,0x8c,0x60,0x4e,0x12,0x2b,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x1f,0x8c,0x55,0x49,0x3c,0x27,0x28,0x27,0x47,0x57,0x56,0xfa,0x41,0x50,0x3c,0x4b,0x5d,0x54,0x43,0x1c,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x02,0x02,0x06,0x13,0x0d,0x01,0x01,0x2b,0x08,0x1a,0x2b,0x3d,0x5b,0x55,0x56,0x28,0x2b,0x2b,0x2b,0x0d,0x0d,0x0b,0x17,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x06,0x04,0x01,0x01,0x02,0x02,0x02,0x15,0x42,0x4f,0x21,0x52,0x58,0x50,0x36,0x38,0x53,0x39,0x2b,0x01,0x01,0x09,0x33,0x07,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x06,0xf7,0x04,0x04,0x04,0x04,0x04,0xf7,0x01,0x2b,0x49,0x5e,0x53,0x54,0x51,0x56,0x5c,0x5a,0x5f,0x24,0x01,0x02,0x03,0x43,0x1c,0x01,0x01,0x01,0x01, + 0x01,0x01,0x06,0x07,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x50,0x4e,0x58,0x56,0x54,0x54,0x53,0x53,0x5c,0xf9,0x01,0xf7,0x02,0x01,0x09,0x03,0x03,0x01,0x01, + 0x01,0x03,0x07,0xf7,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x01,0x1d,0x43,0x30,0x1b,0x5c,0x53,0x54,0x54,0x53,0x8c,0x30,0x2b,0xf7,0x04,0x02,0x02,0x04,0x04,0x02,0x01, + 0x01,0x04,0x08,0x03,0xf7,0x04,0x04,0x04,0xf7,0x04,0x04,0x01,0x11,0x48,0x30,0x28,0x5b,0x53,0x54,0x54,0x53,0x58,0x50,0x04,0x01,0xf7,0x02,0x2b,0x22,0x20,0x01,0x01, + 0x01,0x06,0x08,0x03,0x01,0x01,0xf7,0xf7,0x01,0x02,0xf7,0xf7,0x2b,0x03,0x5b,0x5d,0x53,0x54,0x54,0x54,0x54,0x53,0x5e,0x3a,0x2b,0x02,0xf7,0x01,0x3e,0x41,0x01,0x01, + 0x02,0x08,0x0d,0x19,0x20,0x0b,0x01,0x01,0x10,0xf7,0x01,0xf7,0x1b,0x30,0x5a,0x5b,0x53,0x54,0x54,0x54,0x54,0x53,0x57,0x56,0x24,0x2b,0x33,0x56,0x41,0x52,0x01,0x01, + 0x03,0x0d,0x01,0x01,0x59,0x4d,0x01,0x0c,0x5f,0x45,0x01,0x2b,0x38,0x66,0x49,0x2e,0x5e,0x53,0x54,0x54,0x54,0x54,0x53,0x56,0x5e,0x1d,0x0c,0x41,0xf9,0x3b,0x06,0x01, + 0x04,0x0e,0x10,0x39,0x5d,0x8c,0x0b,0x2d,0x61,0x8c,0x4c,0x0c,0x2b,0x42,0x5e,0x19,0x2e,0x5b,0x53,0x54,0x54,0x54,0x54,0x53,0x56,0x5a,0x39,0x0a,0x49,0x4c,0x06,0x01, + 0xf7,0x0d,0x06,0x46,0x5c,0x59,0x46,0x44,0x58,0x58,0xfa,0x2e,0x45,0x59,0x5a,0xfa,0x0c,0x4b,0x58,0x53,0x53,0x54,0x54,0x54,0x53,0x55,0x5e,0x4c,0x2f,0x36,0xf7,0x02, + 0xf7,0x0c,0x01,0x4e,0x58,0x53,0x59,0x59,0x53,0x58,0x4c,0x01,0x35,0x5c,0x01,0x19,0x53,0x50,0x5a,0x5c,0x5a,0x56,0x56,0x54,0x54,0x54,0x53,0x5c,0x50,0x01,0x07,0x03, + 0xf7,0x06,0x36,0x5e,0x53,0x54,0x53,0x53,0x54,0x53,0x5d,0x44,0x06,0x3e,0x09,0x12,0x14,0x5b,0x1f,0x2f,0x48,0x59,0x4e,0x55,0x54,0x54,0x53,0x5d,0x36,0x01,0x0d,0x03, + 0xf7,0xf7,0x41,0x5f,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x5e,0x3b,0x0a,0x2e,0x3d,0x45,0x8c,0x58,0x1d,0x2b,0x14,0x44,0x58,0x54,0x54,0x53,0x5d,0x34,0x01,0x0d,0x02, + 0x03,0x06,0x1e,0x48,0x59,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0x52,0x46,0x50,0x62,0x54,0x33,0x4f,0x33,0x3e,0x51,0x56,0x54,0x54,0x54,0x55,0x59,0x14,0x06,0x02, + 0x02,0x0b,0x09,0x38,0x5c,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x56,0x5a,0x64,0x3f,0x01,0x2b,0x1d,0x12,0x45,0x60,0x53,0x54,0x54,0x53,0x59,0x52,0x10,0x04,0x02, + 0x01,0x06,0x09,0x36,0x8c,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x54,0x1e,0x01,0x01,0x06,0x01,0x01,0xf7,0x50,0x58,0x53,0x54,0x53,0x8c,0x31,0xf7,0xf7,0x01, + 0x01,0x04,0x0a,0x13,0x4e,0x5b,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x57,0x01,0x01,0x01,0x01,0x01,0x06,0x2b,0x29,0x5c,0x57,0x54,0x5b,0x4e,0x0d,0x07,0x02,0x01, + 0x01,0x02,0x08,0x0b,0x21,0x59,0x58,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x5d,0x39,0x2b,0x0c,0x1b,0x03,0x2b,0x01,0x4b,0x60,0x40,0x4f,0x5b,0x1e,0x08,0x06,0x01,0x01, + 0x01,0x01,0x04,0x0b,0x0e,0x30,0x5b,0x58,0x53,0x54,0x54,0x54,0x54,0x54,0x56,0x54,0x42,0x57,0x60,0x49,0x17,0x43,0x60,0x40,0x34,0x5d,0x2f,0x0a,0x09,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0d,0x10,0x2f,0x59,0x59,0x53,0x53,0x54,0x54,0x54,0x53,0x56,0x5b,0x56,0x55,0x5b,0x4b,0x57,0x52,0x3c,0x5b,0x31,0x0b,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x11,0x12,0x24,0x4f,0x5c,0x58,0x53,0x53,0x53,0x54,0x53,0x53,0x53,0x53,0x53,0x58,0x58,0x5c,0x54,0x24,0x0d,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x38,0x50,0x5b,0x5b,0x58,0x56,0x56,0x56,0x56,0x58,0x5b,0x5b,0x51,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x4e,0x56,0x56,0x4f,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x01,0x22,0x4d,0x8c,0x5e,0x5c,0x5a,0x57,0x57,0x58,0x5a,0x8c,0x8c,0x4e,0x24,0x2b,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x16,0x51,0x68,0x63,0x5d,0x5c,0x5c,0x5a,0x5c,0x8c,0x56,0x53,0x53,0x56,0x5a,0x61,0x4c,0x09,0x2b,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x13,0x33,0xfa,0x3c,0x31,0x20,0x24,0x1a,0x0b,0x11,0x21,0xfa,0x57,0x54,0x4f,0x57,0x5c,0x63,0x64,0x20,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x02,0x02,0x0b,0x0a,0x01,0x01,0x01,0x2b,0x01,0x01,0x2b,0x24,0x2f,0x01,0x3f,0x5c,0x56,0x4b,0x2e,0x0d,0x08,0x39,0x3e,0x06,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x06,0x03,0x02,0xf7,0x02,0xf7,0xf7,0xf7,0xf7,0x02,0x10,0x41,0x52,0x20,0x52,0x56,0x54,0x28,0x1b,0x21,0x2b,0x01,0x08,0x06,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x06,0xf7,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xf7,0x01,0x2b,0x47,0x60,0x52,0x56,0x50,0x54,0x8c,0x66,0x35,0x2b,0x02,0x06,0x06,0x01,0x01,0x01, + 0x01,0x01,0x06,0x07,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x50,0x4e,0x58,0x56,0x54,0x56,0x53,0x57,0x5b,0x0a,0x01,0x04,0x06,0x03,0x01,0x01, + 0x01,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x01,0x1d,0x43,0x30,0x1b,0x5c,0x53,0x54,0x54,0x56,0x58,0x09,0x01,0x04,0xf7,0x06,0x01,0x01, + 0x01,0x03,0x0a,0x07,0x01,0x02,0x02,0xf7,0x04,0x04,0x04,0xf7,0x04,0x04,0x01,0x11,0x48,0x30,0x28,0x5b,0x53,0x54,0x54,0x53,0x5d,0x25,0x2b,0xf7,0x03,0x06,0x03,0x01, + 0x01,0x01,0x31,0x12,0xf7,0x0b,0x01,0x01,0x02,0x04,0xf7,0x01,0x02,0xf7,0xf7,0x2b,0x03,0x5b,0x5d,0x53,0x54,0x54,0x54,0x53,0x58,0x54,0x01,0x01,0x01,0x01,0x04,0x01, + 0x02,0x0a,0x09,0x08,0x08,0x0d,0x3c,0x32,0x01,0x03,0x01,0x10,0xf7,0x01,0xf7,0x1b,0x30,0x5a,0x5b,0x53,0x54,0x54,0x54,0x54,0x53,0x8c,0x33,0x2b,0x2f,0x3b,0x01,0x01, + 0x03,0x0b,0x03,0x1d,0x01,0x09,0x59,0x65,0x38,0x2b,0x11,0x60,0x45,0x01,0x2b,0x38,0x66,0x49,0x2e,0x5e,0x53,0x54,0x54,0x54,0x54,0x55,0x5d,0x13,0x24,0x53,0x04,0x01, + 0x04,0x0d,0x01,0x13,0x1a,0x4f,0x59,0x56,0x5d,0x02,0x2f,0x60,0x8c,0x4c,0x0c,0x2b,0x42,0x5e,0x19,0x2e,0x5b,0x53,0x54,0x54,0x54,0x53,0x58,0x52,0x1e,0x10,0x0a,0x02, + 0xf7,0x0e,0x04,0x01,0x0a,0x50,0x58,0x53,0x5a,0x44,0x45,0x58,0x58,0xfa,0x2e,0x45,0x59,0x5a,0xfa,0x0c,0x4b,0x58,0x53,0x53,0x54,0x54,0x53,0x58,0x60,0x3f,0x04,0x02, + 0xf7,0x10,0x07,0x01,0x08,0x5a,0x56,0x54,0x53,0x59,0x59,0x53,0x58,0x4c,0x01,0x35,0x5c,0x01,0x19,0x53,0x50,0x5a,0x5c,0x5a,0x56,0x56,0x54,0x53,0x57,0x57,0x07,0x01, + 0xf7,0x10,0x08,0x01,0x41,0x5d,0x53,0x54,0x54,0x53,0x53,0x54,0x53,0x5d,0x44,0x06,0x3e,0x09,0x12,0x14,0x5b,0x1f,0x2f,0x49,0x58,0x4f,0x55,0x53,0x5a,0x4a,0xf7,0x02, + 0xf7,0x11,0x07,0x04,0x5d,0x58,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5e,0x3b,0x0a,0x2e,0x3d,0x45,0x8c,0x58,0x1d,0x2b,0x17,0xfa,0x57,0x53,0x5d,0x3b,0x01,0x02, + 0x02,0x0e,0x12,0x2b,0x40,0xfa,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0x52,0x46,0x50,0x62,0x54,0x33,0x4f,0x32,0x43,0x55,0x54,0x53,0x5c,0x21,0x02,0x02, + 0x02,0x0a,0x10,0x1f,0x26,0x2f,0x8c,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x56,0x5a,0x64,0x3f,0x01,0x2b,0x1b,0x14,0x4a,0x5b,0x53,0x5a,0x50,0x0c,0xf7,0x02, + 0x01,0x06,0x0b,0x37,0x45,0x41,0x59,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x54,0x1e,0x01,0x01,0x06,0x01,0x2b,0x1a,0x59,0x55,0x8c,0x31,0xf7,0xf7,0x01, + 0x01,0x04,0x0a,0x13,0x51,0x5d,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x57,0x01,0x01,0x01,0x01,0x01,0x2b,0x0a,0x59,0x5d,0x4d,0x0d,0x07,0x02,0x01, + 0x01,0x02,0x08,0x0b,0x21,0x59,0x58,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5d,0x38,0x2b,0x17,0x2c,0x06,0x01,0x45,0x63,0x48,0x17,0x0a,0xf7,0x01,0x01, + 0x01,0x01,0x04,0x0b,0x0e,0x30,0x5b,0x58,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x54,0x49,0x5a,0x60,0x43,0x34,0x65,0x4a,0x1a,0x0e,0x09,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0d,0x10,0x2f,0x59,0x59,0x53,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x56,0x5a,0x55,0x55,0x55,0x5a,0x5a,0x25,0x0e,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x11,0x12,0x24,0x4f,0x5c,0x58,0x53,0x53,0x53,0x54,0x54,0x54,0x54,0x53,0x53,0x53,0x58,0x5c,0x50,0x22,0x11,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x38,0x50,0x5b,0x5b,0x58,0x56,0x56,0x56,0x56,0x58,0x5b,0x5b,0x51,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x4e,0x56,0x56,0x4e,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x01,0x25,0x4f,0x5e,0x5e,0x8c,0x5a,0x59,0x57,0x59,0x5b,0x5d,0x8c,0x4e,0x24,0x2b,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x0c,0x53,0x65,0x60,0x5d,0x5a,0x58,0x58,0x59,0x59,0x5b,0x8c,0x5c,0x55,0x5a,0x5f,0x4b,0x09,0x2b,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x26,0x64,0x48,0x0a,0x15,0x1c,0x11,0x09,0x09,0x0c,0x0b,0x0d,0x1d,0xf9,0x54,0x55,0x53,0x5f,0x5e,0x24,0x2b,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x02,0x01,0x16,0x4c,0x1f,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x24,0x20,0x01,0x4c,0x59,0x53,0x3f,0x4e,0x42,0x19,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x02,0x06,0xf7,0x01,0x01,0x03,0xf7,0xf7,0xf7,0xf7,0x04,0x04,0xf7,0x02,0x10,0x42,0x4a,0x2c,0x55,0x5a,0x46,0x01,0x2b,0x01,0xf7,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x09,0x13,0x01,0x02,0xf7,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xf7,0x01,0x2b,0x49,0x5a,0x53,0x57,0x4c,0x43,0x54,0x1b,0x01,0xf7,0x01,0x01,0x01, + 0x01,0x01,0x03,0x09,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x50,0x4e,0x57,0x55,0x56,0x5a,0x8c,0x54,0x01,0x02,0x03,0x01,0x01, + 0x01,0x03,0xf7,0x01,0x01,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x01,0x1d,0x43,0x30,0x1c,0x5c,0x53,0x53,0x55,0x5b,0x10,0x01,0x06,0x01,0x01, + 0x01,0x01,0x21,0x3c,0x27,0x09,0x02,0x01,0x02,0x02,0xf7,0x04,0x04,0x04,0xf7,0x04,0x04,0x01,0x11,0x48,0x30,0x28,0x5b,0x53,0x54,0x53,0x5c,0x14,0x01,0x08,0x02,0x01, + 0x02,0x01,0x2e,0x4b,0x2f,0x01,0x08,0x20,0x07,0x01,0x01,0x02,0x04,0xf7,0x01,0x02,0xf7,0xf7,0x2b,0x03,0x5b,0x5d,0x53,0x54,0x54,0x53,0x5b,0x44,0x2b,0x06,0x06,0x01, + 0x02,0x0b,0x04,0x01,0x01,0x0e,0x02,0x10,0x0a,0x53,0x2f,0x01,0x03,0x01,0x10,0xf7,0x01,0xf7,0x1b,0x30,0x5a,0x5b,0x53,0x54,0x54,0x54,0x53,0x5d,0x16,0x01,0x07,0x01, + 0x03,0x0c,0x04,0x01,0x03,0x27,0x04,0x2b,0x32,0x5f,0x63,0x38,0x2b,0x11,0x60,0x45,0x01,0x2b,0x38,0x66,0x49,0x2e,0x5e,0x53,0x54,0x54,0x53,0x58,0x53,0x06,0x03,0x03, + 0x04,0x0d,0x04,0x04,0x01,0x0a,0x1c,0x41,0x5f,0x53,0x57,0x5d,0x02,0x2f,0x60,0x8c,0x4c,0x0c,0x2b,0x42,0x5e,0x19,0x2e,0x5b,0x53,0x54,0x54,0x53,0x8c,0x47,0x03,0x01, + 0xf7,0x0e,0x04,0x04,0x04,0x03,0x01,0x30,0x5c,0x53,0x53,0x5a,0x44,0x45,0x58,0x58,0xfa,0x2e,0x45,0x59,0x5a,0xfa,0x0c,0x4b,0x58,0x53,0x53,0x53,0x55,0x5c,0x08,0x01, + 0xf7,0x10,0xf7,0x04,0xf7,0x01,0x01,0x50,0x58,0x53,0x54,0x53,0x59,0x59,0x53,0x58,0x4c,0x01,0x35,0x5c,0x01,0x19,0x53,0x50,0x5a,0x5c,0x58,0x56,0x58,0x51,0x07,0x02, + 0xf7,0x11,0x08,0x02,0x03,0x01,0x40,0x5d,0x53,0x54,0x54,0x54,0x53,0x53,0x54,0x53,0x5d,0x44,0x06,0x3e,0x09,0x12,0x14,0x59,0x21,0x34,0x4f,0x50,0x5a,0x4a,0x04,0x02, + 0xf7,0x10,0x14,0x03,0x01,0x10,0x5e,0x59,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5e,0x3b,0x0a,0x2e,0x3d,0x45,0x5e,0x53,0x0a,0x06,0x4c,0x61,0x3b,0x01,0x02, + 0x03,0x0c,0x16,0x03,0x01,0x01,0x4f,0x4e,0x55,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0x52,0x46,0x51,0x62,0x50,0x38,0x41,0xf9,0x58,0x8c,0x21,0x02,0x02, + 0x02,0x0a,0x16,0x07,0x01,0x13,0x30,0x24,0x5c,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x56,0x5a,0x63,0x3e,0x01,0x01,0x10,0x37,0x62,0x4f,0x0c,0xf7,0x02, + 0x01,0x06,0x14,0x14,0x2b,0x2e,0x38,0x34,0x5c,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x53,0x1e,0x01,0x01,0x04,0x01,0x06,0x5e,0x34,0xf7,0xf7,0x01, + 0x01,0x04,0x0b,0x19,0x07,0x45,0x5a,0x55,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x54,0x01,0x2b,0x01,0x01,0x2b,0x13,0x52,0x0d,0x07,0x02,0x01, + 0x01,0x02,0x07,0x0d,0x25,0x5b,0x59,0x55,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5c,0x31,0x10,0x43,0x31,0x04,0x4b,0x26,0x07,0x06,0x01,0x01, + 0x01,0x01,0x04,0x0a,0x10,0x30,0x5b,0x58,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x55,0x5b,0x5d,0x5e,0x47,0x31,0x0b,0x09,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0c,0x10,0x2f,0x59,0x59,0x53,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x54,0x5a,0x59,0x30,0x0c,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x11,0x12,0x24,0x4f,0x5c,0x58,0x53,0x53,0x53,0x54,0x54,0x54,0x54,0x53,0x53,0x53,0x58,0x5c,0x4e,0x22,0x0e,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x38,0x50,0x5b,0x5b,0x58,0x56,0x56,0x56,0x56,0x58,0x5b,0x5b,0x51,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x4e,0x56,0x56,0x4e,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x01,0x24,0x4d,0x61,0x64,0x8c,0x5b,0x59,0x59,0x5a,0x5c,0x5e,0x5d,0x4e,0x24,0x2b,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x0c,0x4b,0x63,0x65,0x4f,0x43,0x51,0x55,0x55,0x54,0x59,0x5c,0x5d,0x5e,0x8c,0x61,0x4b,0x0a,0x2b,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x2b,0x17,0x5b,0x68,0x56,0x2e,0x01,0x2b,0x02,0x04,0xf7,0x04,0x0c,0x19,0x22,0x30,0x4b,0x59,0x8c,0x5a,0x1c,0x2b,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x2b,0x27,0x43,0x1d,0x1d,0xf7,0x2b,0x01,0x03,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x0e,0x01,0x21,0x5d,0x5a,0x56,0x21,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x16,0xf9,0x0e,0x01,0x01,0x01,0xf7,0x04,0x04,0x04,0x04,0x04,0x04,0xf7,0x03,0x01,0x20,0x48,0x26,0x48,0x5b,0x48,0x20,0x2b,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x3e,0x24,0x0e,0x01,0xf7,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xf7,0x2b,0xf7,0x4c,0x4b,0x59,0x53,0x19,0x26,0x01,0x01,0x01,0x01, + 0x01,0x01,0x04,0x11,0x08,0x01,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x4f,0x55,0x58,0x53,0x58,0x64,0x25,0x2b,0x01,0x01, + 0x01,0x01,0x09,0x2c,0x10,0x08,0x02,0x06,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x01,0x1d,0x42,0x30,0x38,0x5c,0x55,0x5a,0x4e,0x01,0x01,0x01, + 0x01,0x01,0x16,0x17,0x5b,0x53,0x43,0x10,0x01,0x04,0x01,0x02,0x02,0xf7,0x04,0x04,0x04,0xf7,0x04,0x04,0x01,0x11,0x48,0x2e,0x30,0x5b,0x53,0x56,0x5a,0x0b,0x01,0x01, + 0x01,0xf7,0x17,0x06,0x17,0x1f,0x10,0x06,0x01,0x13,0x25,0xf7,0x01,0x01,0x02,0x04,0xf7,0x01,0x02,0xf7,0xf7,0x2b,0x03,0x5c,0x5a,0x53,0x54,0x53,0x8c,0x2c,0x01,0x01, + 0x02,0x0a,0x06,0x01,0x01,0x01,0x01,0x22,0x03,0x02,0x0e,0x0a,0x55,0x2f,0x01,0x03,0x01,0x10,0xf7,0x01,0xf7,0x1b,0x30,0x5a,0x5b,0x53,0x54,0x53,0x5c,0x48,0x01,0x01, + 0x03,0x0c,0x04,0x04,0x04,0xf7,0x01,0x15,0x2d,0x2b,0x2b,0x32,0x5f,0x63,0x38,0x2b,0x11,0x60,0x45,0x01,0x2b,0x38,0x66,0x49,0x30,0x8c,0x53,0x53,0x58,0x51,0x03,0x01, + 0x04,0x0d,0x04,0x04,0x04,0x04,0x04,0x01,0x11,0x1e,0x41,0x5f,0x53,0x57,0x5d,0x02,0x2f,0x60,0x8c,0x4c,0x0c,0x2b,0x42,0x5e,0x1a,0x36,0x5b,0x53,0x56,0x57,0x08,0x01, + 0xf7,0x0e,0x01,0x01,0xf7,0x04,0x04,0x04,0x02,0x01,0x30,0x8c,0x53,0x53,0x5a,0x44,0x45,0x58,0x58,0xfa,0x2e,0x45,0x59,0x5a,0x49,0x19,0x52,0x56,0x56,0x57,0x08,0x01, + 0xf7,0x0a,0x22,0x28,0x01,0x04,0x04,0xf7,0x01,0x01,0x54,0x58,0x53,0x54,0x53,0x59,0x59,0x53,0x58,0x4c,0x01,0x35,0x5c,0x01,0x1b,0x53,0x55,0x5c,0x5c,0x52,0x07,0x02, + 0x04,0x07,0x56,0x53,0x2b,0x03,0xf7,0x01,0x07,0x4f,0x5b,0x53,0x54,0x54,0x54,0x53,0x53,0x54,0x53,0x5d,0x44,0x06,0x3e,0x09,0x10,0x2d,0x43,0x30,0x54,0x48,0xf7,0x02, + 0x04,0x04,0x3f,0x61,0x1a,0x01,0xf7,0x01,0x41,0x63,0x56,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5e,0x3b,0x0a,0x2f,0x3f,0x4f,0x8c,0x14,0x1a,0x39,0xf7,0x02, + 0x04,0x06,0x25,0x67,0x32,0x2b,0xf7,0x2b,0x30,0x5c,0x49,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0x52,0x47,0x57,0x5a,0x2d,0x39,0x4d,0x28,0x02,0x02, + 0x02,0x08,0x0e,0x5a,0x33,0x2b,0x03,0x01,0x3b,0x1a,0x33,0x5d,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x56,0x8c,0x59,0x0c,0x2b,0x04,0x29,0x17,0x04,0x02, + 0x01,0x06,0x0a,0x38,0x59,0x01,0x2b,0x1c,0xfa,0x01,0x55,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x59,0x48,0x08,0x2b,0x01,0x01,0x0b,0x0d,0x06,0x01, + 0x01,0x04,0x0a,0x13,0x58,0x27,0x2b,0x33,0x57,0x44,0x59,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0x43,0x2b,0x04,0x07,0xf7,0x15,0x0a,0x02,0x01, + 0x01,0x02,0x08,0x0b,0x26,0x55,0x3c,0x54,0x58,0x59,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x54,0x29,0x53,0x51,0x13,0x0d,0xf7,0x01,0x01, + 0x01,0x01,0x04,0x0b,0x0d,0x32,0x63,0x58,0x53,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5e,0x5f,0x34,0x0e,0x08,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0d,0x10,0x2f,0x59,0x59,0x53,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x53,0x5b,0x59,0x2e,0x0b,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x11,0x12,0x24,0x4f,0x5c,0x58,0x53,0x53,0x53,0x54,0x54,0x54,0x54,0x53,0x53,0x53,0x58,0x5c,0x4e,0x22,0x0e,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x38,0x50,0x5b,0x5b,0x58,0x56,0x56,0x56,0x56,0x58,0x5b,0x5b,0x51,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x4e,0x56,0x56,0x4e,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x26,0x4e,0x5d,0x5e,0x5f,0x62,0x60,0x5b,0x5b,0x5d,0x5e,0x5d,0x4d,0x24,0x2b,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x08,0x46,0x5f,0x5e,0x5d,0x5e,0x50,0x2c,0x34,0x51,0x55,0x58,0x5b,0x5e,0x62,0x65,0x4c,0x09,0x2b,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x02,0x01,0x01,0x28,0x53,0x40,0xfa,0x45,0x22,0x01,0x2b,0x2b,0x01,0xf7,0x09,0x12,0x28,0x3c,0x4d,0x64,0x62,0x1b,0x2b,0x02,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x01,0x2b,0x2f,0x63,0x30,0x01,0x01,0x01,0x2b,0x02,0xf7,0xf7,0x02,0x01,0x01,0x01,0x2b,0x01,0x02,0x0c,0x36,0x61,0x1b,0x2b,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x34,0x5b,0x32,0x13,0x04,0x02,0x02,0xf7,0x04,0x04,0x04,0x04,0x04,0x04,0xf7,0xf7,0x01,0x0a,0x2f,0x0d,0x4e,0x5e,0x0d,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x4a,0x53,0x20,0x14,0x03,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xf7,0x01,0x07,0x3e,0x3a,0x5f,0x48,0x2b,0x01,0x01,0x01, + 0x01,0x03,0x01,0x27,0x6b,0x3b,0x2b,0x01,0x01,0x01,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xf7,0x2b,0x17,0x8c,0x57,0x59,0x20,0x2b,0x01,0x01, + 0x01,0x01,0x01,0x50,0x5b,0x22,0x41,0x35,0x1e,0x0e,0x06,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x01,0x25,0x4b,0x4a,0x5e,0x4f,0x01,0x01,0x01, + 0x01,0x01,0x1b,0x65,0x43,0x04,0x48,0x50,0x47,0x49,0x07,0x02,0x04,0x01,0x02,0x02,0xf7,0x04,0x04,0x04,0xf7,0x04,0x04,0x01,0x1c,0x41,0x1f,0x5a,0x5e,0x1a,0x01,0x01, + 0x02,0x01,0x3b,0x65,0x14,0x01,0x04,0xf7,0x01,0x04,0x07,0x01,0x13,0x25,0xf7,0x01,0x01,0x02,0x04,0xf7,0x01,0x02,0xf7,0xf7,0x2b,0x27,0x52,0x55,0x8c,0x39,0x2b,0x01, + 0x01,0x02,0x50,0x4f,0x2b,0x03,0x02,0x02,0x02,0x02,0x25,0x04,0x02,0x0e,0x0a,0x55,0x2f,0x01,0x03,0x01,0x10,0xf7,0x01,0xf7,0x19,0x36,0x60,0x53,0x5a,0x48,0x01,0x01, + 0x01,0x08,0x5a,0x1e,0x01,0xf7,0x04,0x04,0xf7,0x01,0x16,0x2d,0x2b,0x2b,0x32,0x5f,0x63,0x38,0x2b,0x11,0x60,0x45,0x01,0x2b,0x3b,0x61,0xf9,0x53,0x5a,0x51,0x03,0x01, + 0x02,0x0e,0x55,0x01,0x01,0xf7,0x04,0x04,0x04,0x04,0x01,0x11,0x1e,0x41,0x5f,0x53,0x57,0x5d,0x02,0x2f,0x60,0x8c,0x4c,0x0c,0x2b,0xfa,0x3e,0x35,0x5d,0x56,0x08,0x01, + 0x03,0x10,0x4d,0x01,0x2b,0x01,0xf7,0x04,0x04,0x04,0x04,0x02,0x01,0x30,0x8c,0x53,0x53,0x5a,0x44,0x45,0x58,0x58,0xfa,0x2e,0x45,0x5b,0x51,0x20,0x56,0x58,0x07,0x01, + 0x03,0x0a,0x5a,0x24,0x25,0x24,0x01,0x04,0x04,0x04,0xf7,0x01,0x01,0x54,0x58,0x53,0x54,0x53,0x59,0x59,0x53,0x58,0x4c,0x01,0x37,0x4d,0x04,0x45,0x5c,0x59,0x06,0x02, + 0x04,0x07,0xfa,0x5d,0x63,0x43,0x2b,0x03,0x04,0x04,0x01,0x08,0x4f,0x5b,0x53,0x54,0x54,0x54,0x53,0x53,0x54,0x53,0x5d,0x42,0x0c,0x32,0x01,0x2d,0x41,0x2e,0x08,0x02, + 0xf7,0x04,0xf9,0x5d,0x57,0x56,0x11,0x01,0xf7,0x04,0x01,0x42,0x63,0x56,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x55,0x8c,0x36,0x12,0x3c,0x55,0x5a,0x19,0x06,0x02, + 0x04,0x06,0x25,0x5c,0x52,0x60,0x32,0x2b,0xf7,0xf7,0x2b,0x31,0x8c,0x49,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5a,0x4e,0x5b,0x4e,0x1b,0x21,0xf7,0x02, + 0x02,0x08,0x10,0x50,0x59,0x8c,0x25,0x2b,0xf7,0x02,0x01,0x3f,0x1a,0x35,0x5d,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5d,0xfa,0x01,0x01,0x11,0x06,0x02, + 0x01,0x06,0x0a,0x33,0x8c,0x5a,0x4a,0x01,0x04,0x2b,0x3d,0x49,0x01,0x58,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x53,0x01,0x2b,0x12,0x11,0xf7,0x01, + 0x01,0x04,0x0a,0x12,0x4e,0x5a,0x5d,0x1c,0x2b,0x01,0x50,0x49,0x40,0x5a,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x54,0x02,0x0a,0x16,0x08,0x02,0x01, + 0x01,0x02,0x08,0x0b,0x21,0x59,0x5c,0x4e,0x10,0x3a,0x5b,0x58,0x5b,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5a,0x4c,0x21,0x0b,0xf7,0x01,0x01, + 0x01,0x01,0x04,0x0b,0x0e,0x30,0x5b,0x5b,0x5b,0x5b,0x53,0x53,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x5b,0x34,0x0c,0x08,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0d,0x10,0x2f,0x59,0x5a,0x53,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x53,0x5b,0x59,0x2f,0x0b,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x11,0x12,0x24,0x4f,0x5c,0x58,0x53,0x53,0x53,0x54,0x54,0x54,0x54,0x53,0x53,0x53,0x58,0x5c,0x4e,0x22,0x0e,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x38,0x50,0x5b,0x5b,0x58,0x56,0x56,0x56,0x56,0x58,0x5b,0x5b,0x51,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x4e,0x56,0x56,0x4e,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x01,0x29,0x52,0x61,0x5e,0x5b,0x59,0x59,0x8c,0x63,0x61,0x5e,0x8c,0x4d,0x24,0x2b,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x10,0x54,0x4d,0x48,0x4c,0x58,0x5e,0x5d,0x59,0x43,0x26,0x45,0x5a,0x5d,0x64,0x67,0xfa,0x0b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x2b,0x25,0x5b,0x20,0x20,0x56,0x29,0x27,0x2f,0x20,0x08,0x01,0x2b,0x01,0x08,0x1d,0x30,0x44,0x8c,0x62,0x26,0x2b,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x2b,0x26,0x4d,0x01,0x2e,0x60,0x28,0x0b,0x2b,0x2b,0x01,0x01,0x02,0xf7,0x02,0x01,0x01,0x2b,0x01,0x04,0x1e,0x3b,0x19,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x14,0x44,0x0e,0x4b,0x3f,0x38,0x0d,0x16,0x03,0xf7,0xf7,0x04,0x04,0x04,0x04,0x04,0xf7,0xf7,0x03,0x01,0x01,0x0e,0x0b,0x0a,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x4d,0x4d,0x59,0x4c,0x01,0x02,0x01,0x01,0xf7,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xf7,0x01,0x24,0x48,0x27,0x01,0x01,0x01,0x01, + 0x01,0x03,0x01,0x28,0x5e,0x57,0x5d,0x41,0x08,0x0c,0x01,0x01,0x01,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xf7,0x2b,0x22,0x58,0x25,0x2b,0x01,0x01, + 0x01,0x01,0x01,0x4f,0x5a,0x58,0x4f,0x06,0x49,0x5e,0x36,0x21,0x10,0x06,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xf7,0x01,0x0e,0x5e,0x52,0x01,0x01,0x01, + 0x01,0x01,0x1b,0x5d,0x54,0x8c,0x36,0x01,0x0e,0x4a,0x4c,0x47,0x4b,0x07,0x02,0x04,0x01,0x02,0x02,0xf7,0x04,0x04,0x04,0xf7,0xf7,0x01,0x1f,0x41,0x38,0x20,0x01,0x01, + 0x02,0x01,0x3a,0x5d,0x57,0x55,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0x07,0x01,0x13,0x25,0xf7,0x01,0x01,0x02,0x04,0xf7,0x01,0x02,0xf7,0x01,0x30,0x44,0x3b,0x01,0x01, + 0x01,0x03,0x49,0x59,0x5e,0x32,0x2b,0xf7,0x04,0x02,0x02,0x02,0x02,0x25,0x04,0x02,0x0e,0x0a,0x55,0x2f,0x01,0x03,0x01,0x10,0xf7,0x01,0x01,0x20,0x69,0x48,0x01,0x01, + 0x01,0x07,0x52,0x5a,0x54,0x02,0x01,0x04,0x04,0x04,0x04,0xf7,0x01,0x16,0x2d,0x2b,0x2b,0x32,0x5f,0x63,0x38,0x2b,0x11,0x60,0x42,0x2b,0x13,0x58,0x55,0x54,0x03,0x01, + 0x02,0x0a,0x56,0x8c,0x40,0x01,0x03,0xf7,0x04,0x04,0x04,0x04,0x04,0x01,0x11,0x1e,0x41,0x5f,0x53,0x57,0x5d,0x02,0x2f,0x61,0x8c,0x40,0x01,0x43,0x3c,0x4a,0x0b,0x01, + 0x03,0x0b,0x57,0x8c,0x3e,0x2b,0x01,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x30,0x8c,0x53,0x53,0x5a,0x44,0x45,0x58,0x57,0x48,0x34,0x55,0x4c,0x26,0x0d,0x01, + 0x03,0x0a,0x53,0x58,0x5a,0x12,0x28,0x3d,0x06,0x02,0x04,0x04,0x04,0xf7,0x01,0x01,0x54,0x58,0x53,0x54,0x53,0x59,0x59,0x53,0x5a,0x3b,0x13,0x47,0x1a,0x49,0x08,0x02, + 0x04,0x07,0x49,0x59,0x56,0x59,0x5b,0x63,0x11,0x01,0xf7,0x04,0x04,0x01,0x08,0x4f,0x5b,0x53,0x54,0x54,0x54,0x53,0x53,0x54,0x55,0x5c,0x26,0x24,0x0a,0x2d,0x0d,0x01, + 0x06,0x04,0x33,0x5d,0x53,0x56,0x55,0x5a,0x3c,0x01,0x02,0x04,0x04,0x01,0x42,0x63,0x56,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5a,0x4a,0x1a,0x49,0x3a,0x04,0x02, + 0x04,0x06,0x26,0x5c,0x53,0x54,0x53,0x56,0x5c,0x09,0x01,0x04,0xf7,0x2b,0x31,0x8c,0x49,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x54,0x5f,0x22,0x02,0x02, + 0x02,0x08,0x11,0x50,0x58,0x53,0x53,0x5a,0x49,0x01,0x02,0x04,0x02,0x01,0x3f,0x1a,0x35,0x5d,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x55,0x5a,0xf9,0x09,0xf7,0x02, + 0x01,0x06,0x0a,0x33,0x8c,0x53,0x53,0x57,0x56,0x0c,0x01,0xf7,0x2b,0xf9,0x49,0x2b,0x58,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x57,0x56,0x0a,0x0a,0x06,0x01, + 0x01,0x04,0x0a,0x12,0x4e,0x5b,0x53,0x53,0x8c,0x32,0x2b,0x01,0x01,0x53,0x47,0x3e,0x5a,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0x4d,0x0d,0x07,0x02,0x01, + 0x01,0x02,0x08,0x0b,0x21,0x59,0x58,0x53,0x58,0x56,0x10,0x01,0x3f,0x5d,0x57,0x5b,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x5a,0x1f,0x08,0x06,0x01,0x01, + 0x01,0x01,0x04,0x0b,0x0e,0x30,0x5b,0x58,0x53,0x57,0x55,0x50,0x5a,0x53,0x54,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x5c,0x2d,0x0a,0x09,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0d,0x10,0x2f,0x59,0x59,0x53,0x56,0x58,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x53,0x5b,0x59,0x2f,0x0b,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x11,0x12,0x24,0x4f,0x5c,0x58,0x53,0x53,0x53,0x54,0x54,0x54,0x54,0x53,0x53,0x53,0x58,0x5c,0x4e,0x22,0x0e,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x38,0x50,0x5b,0x5b,0x58,0x56,0x56,0x56,0x56,0x58,0x5b,0x5b,0x51,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x37,0x46,0x4e,0x56,0x56,0x4e,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x01,0x22,0x4f,0x67,0x61,0x5c,0x5b,0x57,0x57,0x59,0x5d,0x63,0x61,0x4e,0x22,0x2b,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x0b,0x4b,0x66,0x60,0x33,0x22,0x4d,0x4a,0x5b,0x8c,0x5d,0x59,0x49,0x4d,0x62,0x6a,0x4e,0x0b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x2b,0x1a,0x5b,0x68,0x45,0xf7,0x25,0x5a,0x3f,0x0a,0x14,0x26,0x1f,0x0c,0x01,0x01,0x1d,0x3a,0x57,0x5f,0x26,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x2b,0x1b,0x5d,0x5e,0x2c,0x08,0x38,0x59,0x38,0x0d,0x19,0x2b,0x01,0x01,0x01,0x02,0x03,0x01,0x2b,0x01,0x10,0x2d,0x0d,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x2b,0x0c,0x5a,0x5d,0x46,0x29,0x5f,0x32,0x24,0x21,0x14,0x0d,0x02,0xf7,0xf7,0x04,0x04,0x04,0xf7,0xf7,0x02,0x01,0x01,0x06,0x06,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x4c,0x5d,0x53,0x54,0x5b,0x5e,0x26,0x2b,0x01,0x01,0x02,0xf7,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xf7,0x04,0x03,0x20,0x09,0x01,0x01,0x01, + 0x01,0x03,0x01,0x28,0x5f,0x53,0x54,0x54,0x58,0x49,0x1c,0x0d,0x13,0x01,0x01,0x01,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x04,0x0c,0x02,0x01,0x01, + 0x01,0x01,0x01,0x4f,0x5a,0x53,0x54,0x53,0x61,0x1c,0x07,0x57,0x5f,0x37,0x21,0x10,0x06,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x01,0x0a,0x08,0x01,0x01, + 0x01,0x01,0x1b,0x5d,0x53,0x54,0x53,0x58,0x4e,0x0c,0xf7,0x09,0x4a,0x4c,0x47,0x4b,0x07,0x02,0x04,0x01,0x02,0x02,0xf7,0x04,0x04,0x04,0xf7,0x01,0x25,0x1c,0x01,0x01, + 0x02,0x01,0x3a,0x8c,0x53,0x54,0x54,0x60,0x21,0x2b,0x02,0x01,0x01,0x01,0x01,0x03,0x07,0x01,0x13,0x25,0xf7,0x01,0x01,0x02,0xf7,0x02,0x02,0x01,0x17,0x2f,0x01,0x01, + 0x01,0x03,0x49,0x5a,0x53,0x53,0x5b,0x48,0x01,0x01,0xf7,0x04,0x02,0x02,0x02,0x02,0x25,0x04,0x02,0x0e,0x0a,0x55,0x2f,0x01,0x01,0x03,0xf7,0x02,0x2b,0x1d,0x09,0x01, + 0x01,0x07,0x52,0x58,0x53,0x56,0x5a,0x0e,0x01,0xf7,0x04,0x04,0x04,0x04,0xf7,0x01,0x16,0x2d,0x2b,0x2b,0x32,0x5f,0x63,0x38,0x2b,0x21,0x4f,0x2b,0x20,0x51,0xf7,0x01, + 0x02,0x0a,0x56,0x56,0x53,0x5a,0x4b,0x01,0x03,0xf7,0x04,0x04,0x04,0x04,0x04,0x04,0x01,0x11,0x1e,0x41,0x5f,0x53,0x57,0x5d,0x03,0x35,0x69,0x38,0x02,0x53,0x0a,0x01, + 0x03,0x0b,0x5a,0x55,0x53,0x58,0x4c,0x01,0x01,0x01,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x30,0x8c,0x53,0x53,0x5a,0x43,0x45,0x5c,0xfa,0x2d,0x52,0x0a,0x01, + 0xf7,0x08,0x4c,0x61,0x55,0x53,0x8c,0x3d,0x01,0x38,0x3b,0x07,0x02,0x04,0x04,0x04,0xf7,0x01,0x01,0x54,0x58,0x53,0x54,0x53,0x59,0x57,0x59,0x3b,0x27,0x4a,0x04,0x03, + 0xf7,0x0a,0x08,0x40,0x59,0x55,0x53,0x59,0x58,0x5d,0x63,0x0e,0x01,0xf7,0x04,0x04,0x01,0x08,0x4f,0x5b,0x53,0x54,0x54,0x54,0x53,0x53,0x56,0x59,0x22,0x21,0x06,0x03, + 0xf7,0x11,0x07,0x2b,0x35,0x5c,0x53,0x53,0x56,0x53,0x5a,0x3a,0x01,0x02,0x04,0x04,0x01,0x42,0x63,0x56,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x59,0x4a,0x1a,0x09,0x02, + 0x02,0x0e,0x12,0x2b,0x46,0x5b,0x53,0x54,0x54,0x54,0x56,0x5c,0x0a,0x01,0x04,0xf7,0x2b,0x31,0x8c,0x49,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5f,0x27,0x02,0x02, + 0x02,0x0a,0x13,0x0b,0x57,0x56,0x54,0x54,0x54,0x53,0x5b,0x45,0x01,0x03,0x04,0x02,0x01,0x3f,0x1a,0x35,0x5d,0x53,0x54,0x54,0x54,0x54,0x53,0x5a,0x51,0x0d,0xf7,0x02, + 0x01,0x06,0x0b,0x2e,0x5d,0x53,0x54,0x54,0x54,0x53,0x58,0x54,0x06,0x01,0xf7,0x2b,0xf9,0x49,0x2b,0x58,0x56,0x54,0x54,0x54,0x54,0x54,0x53,0x8c,0x31,0xf7,0xf7,0x01, + 0x01,0x04,0x0a,0x16,0x4e,0x5b,0x53,0x54,0x54,0x54,0x53,0x5e,0x1f,0x2b,0x01,0x01,0x53,0x47,0x3e,0x5a,0x53,0x54,0x54,0x54,0x54,0x53,0x5b,0x4e,0x0d,0x07,0x02,0x01, + 0x01,0x02,0x08,0x0b,0x21,0x59,0x58,0x53,0x54,0x54,0x53,0x5a,0x4b,0x2b,0x2b,0x40,0x5d,0x57,0x5b,0x53,0x54,0x54,0x54,0x54,0x53,0x58,0x5a,0x1e,0x08,0x06,0x01,0x01, + 0x01,0x01,0x04,0x0b,0x0e,0x30,0x5b,0x58,0x53,0x54,0x54,0x53,0x57,0x45,0x4b,0x5c,0x53,0x54,0x53,0x54,0x54,0x54,0x54,0x53,0x58,0x5c,0x2d,0x0a,0x09,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0d,0x10,0x2f,0x59,0x59,0x53,0x53,0x54,0x53,0x5b,0x59,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x53,0x5b,0x59,0x2f,0x0b,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x11,0x12,0x24,0x4f,0x5c,0x58,0x53,0x53,0x53,0x53,0x54,0x54,0x54,0x53,0x53,0x53,0x58,0x5c,0x4e,0x22,0x0e,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x38,0x50,0x5b,0x5b,0x58,0x56,0x56,0x56,0x56,0x58,0x5b,0x5b,0x51,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x50,0x58,0x56,0x50,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x01,0x24,0x4e,0x5d,0x5e,0x64,0x8c,0x51,0x59,0x5b,0x5b,0x5d,0x5d,0x4e,0x24,0x2b,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x0b,0x4b,0x5f,0x59,0x5d,0x59,0x36,0x13,0x3b,0x4e,0x4a,0x5e,0x8c,0x8c,0x61,0x66,0x52,0x0d,0x2b,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x2b,0x1b,0x5a,0x5d,0x54,0x8c,0x3f,0x01,0x0e,0x4e,0x5f,0x2f,0x07,0x24,0x3d,0x3a,0x25,0x0e,0x3c,0x5b,0x22,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x2b,0x1b,0x5d,0x5a,0x53,0x5a,0x29,0x0e,0x47,0x4a,0x4b,0x27,0x0e,0x1b,0x2b,0x2b,0x2b,0x2b,0x01,0x2b,0x08,0x1b,0x09,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x2b,0x0c,0x5a,0x5a,0x53,0x54,0x54,0x42,0x5c,0x5c,0x0e,0x27,0x21,0x16,0x0c,0x02,0xf7,0xf7,0xf7,0xf7,0xf7,0x01,0x01,0x03,0x06,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x4c,0x5d,0x53,0x54,0x54,0x54,0x59,0x55,0x8c,0x27,0x2b,0x2b,0x01,0x02,0xf7,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x06,0xf7,0x01,0x01,0x01, + 0x01,0x03,0x01,0x28,0x5f,0x53,0x54,0x54,0x54,0x54,0x53,0x59,0x47,0x1b,0x0e,0x13,0x01,0x01,0x01,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x06,0x03,0x01,0x01, + 0x01,0x01,0x01,0x4f,0x5a,0x53,0x54,0x54,0x54,0x54,0x53,0x61,0x1b,0xf7,0x57,0x5f,0x37,0x21,0x10,0x06,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xf7,0x06,0x01,0x01, + 0x01,0x01,0x1b,0x5d,0x53,0x54,0x54,0x54,0x54,0x53,0x5a,0xfa,0x0a,0xf7,0x09,0x4a,0x4c,0x47,0x4b,0x07,0x02,0x04,0x01,0x02,0x02,0xf7,0x04,0x04,0x03,0x07,0x02,0x01, + 0x02,0x01,0x3a,0x8c,0x53,0x54,0x54,0x54,0x54,0x54,0x61,0x1f,0x2b,0x02,0x01,0x01,0x01,0x01,0x03,0x07,0x01,0x13,0x25,0xf7,0x01,0x01,0xf7,0x04,0x04,0x07,0x06,0x01, + 0x01,0x03,0x49,0x5a,0x53,0x54,0x54,0x54,0x53,0x5b,0x47,0x01,0x02,0x04,0x04,0x02,0x02,0x02,0x02,0x25,0x04,0x02,0x0e,0x0a,0x50,0x1d,0x01,0x01,0x01,0x07,0x08,0x01, + 0x01,0x07,0x51,0x58,0x53,0x54,0x54,0x54,0x56,0x59,0x08,0x01,0xf7,0x04,0x04,0x04,0x04,0xf7,0x01,0x16,0x2d,0x2b,0x2b,0x31,0x62,0x5d,0x09,0x0d,0x32,0x2b,0x08,0x02, + 0x02,0x0a,0x8c,0x57,0x53,0x54,0x54,0x53,0x5a,0x47,0x01,0x03,0xf7,0x04,0x04,0x04,0x04,0x04,0x04,0x01,0x11,0x1e,0x41,0x5f,0x52,0x5f,0x2e,0x24,0x68,0x1d,0x04,0x02, + 0x04,0x0a,0x3e,0x5d,0x58,0x53,0x54,0x53,0x59,0x49,0x01,0x01,0x01,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x30,0x8c,0x53,0x56,0x50,0x42,0x60,0x47,0x03,0x02, + 0xf7,0x0d,0x01,0x30,0x57,0x5d,0x53,0x54,0x53,0x5f,0x3c,0x01,0x38,0x3b,0x07,0x02,0x04,0x04,0x04,0xf7,0x01,0x01,0x54,0x58,0x53,0x53,0x56,0x57,0x59,0xf9,0x04,0x02, + 0xf7,0x10,0x08,0x2b,0x0c,0x49,0x5c,0x53,0x54,0x53,0x5a,0x58,0x5d,0x63,0x0e,0x01,0xf7,0x04,0x04,0x01,0x08,0x4f,0x5b,0x53,0x54,0x54,0x54,0x53,0x5a,0x4b,0x04,0x02, + 0xf7,0x11,0x0c,0x02,0x01,0x2b,0x37,0x5c,0x53,0x54,0x53,0x56,0x53,0x5a,0x3a,0x01,0x02,0x04,0x04,0x01,0x42,0x63,0x56,0x53,0x54,0x54,0x54,0x53,0x5d,0xf9,0x01,0x02, + 0x02,0x0e,0x13,0x02,0x03,0x01,0x47,0x5a,0x53,0x54,0x54,0x54,0x54,0x56,0x5c,0x0a,0x01,0x04,0xf7,0x2b,0x31,0x8c,0x49,0x56,0x54,0x54,0x54,0x53,0x5c,0x21,0x02,0x02, + 0x02,0x0a,0x16,0x08,0x01,0x01,0x59,0x56,0x54,0x54,0x54,0x54,0x53,0x5b,0x45,0x01,0x03,0x04,0x02,0x01,0x3f,0x1a,0x34,0x5d,0x53,0x54,0x53,0x5a,0x50,0x0c,0xf7,0x02, + 0x01,0x06,0x14,0x12,0x01,0x32,0x5a,0x53,0x54,0x54,0x54,0x54,0x53,0x58,0x54,0x07,0x01,0xf7,0x2b,0xf9,0x49,0x01,0x59,0x56,0x54,0x54,0x53,0x8c,0x31,0xf7,0xf7,0x01, + 0x01,0x04,0x0c,0x14,0x19,0x8c,0x57,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x5e,0x1c,0x2b,0x01,0x01,0x53,0x47,0x41,0x5a,0x53,0x54,0x53,0x5b,0x4e,0x0d,0x07,0x02,0x01, + 0x01,0x02,0x07,0x0d,0x26,0x5a,0x57,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0x48,0x2b,0x01,0x41,0x5d,0x57,0x59,0x53,0x54,0x53,0x58,0x5a,0x1e,0x08,0x06,0x01,0x01, + 0x01,0x01,0x04,0x0b,0x0e,0x30,0x5b,0x58,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x42,0xfa,0x5c,0x53,0x54,0x53,0x54,0x53,0x58,0x5c,0x2d,0x0a,0x09,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0d,0x10,0x2f,0x59,0x59,0x53,0x53,0x54,0x54,0x54,0x54,0x53,0x5b,0x58,0x53,0x54,0x54,0x53,0x53,0x5b,0x59,0x2f,0x0b,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x11,0x12,0x24,0x4f,0x5c,0x58,0x53,0x53,0x53,0x54,0x54,0x53,0x53,0x53,0x53,0x53,0x58,0x5c,0x4e,0x22,0x0e,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x38,0x50,0x5b,0x5b,0x58,0x56,0x56,0x56,0x56,0x58,0x5b,0x5b,0x51,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x4e,0x56,0x56,0x50,0x47,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x01,0x24,0x4e,0x8c,0x8c,0x5a,0x59,0x5c,0x61,0x5b,0x5a,0x61,0x5f,0x4d,0x24,0x2b,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x0b,0x4b,0x5f,0x5a,0x55,0x53,0x5a,0x8c,0x46,0x1d,0x14,0x40,0x4c,0x57,0x61,0x60,0x4d,0x14,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x2b,0x1b,0x5a,0x5d,0x53,0x53,0x53,0x58,0x4a,0x0e,0x2b,0x1f,0x55,0x5c,0x36,0x24,0x4c,0x5a,0x5b,0xf9,0x0c,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x2b,0x1b,0x5d,0x5a,0x53,0x54,0x54,0x56,0x51,0x0d,0x32,0x58,0x49,0x47,0x2d,0x0a,0x07,0x2b,0x0a,0x04,0x01,0xf7,0x07,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x0a,0x5a,0x5a,0x53,0x54,0x54,0x54,0x54,0x53,0x53,0x5e,0x57,0x0a,0x26,0x20,0x19,0x12,0x01,0x01,0x01,0x02,0x04,0x03,0x06,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x45,0x8c,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x54,0x8c,0x27,0x2b,0x01,0x01,0x02,0xf7,0x04,0x04,0x04,0x04,0x04,0x06,0xf7,0x01,0x01,0x01, + 0x01,0x01,0x01,0x1b,0x8c,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x59,0x47,0x1b,0x0e,0x13,0x01,0x01,0x01,0x04,0x04,0x04,0x04,0x04,0x03,0x06,0x03,0x01,0x01, + 0x01,0x02,0x01,0x3f,0x5d,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x61,0x1b,0xf7,0x57,0x5f,0x37,0x21,0x0d,0x06,0x02,0x04,0x04,0x04,0x04,0xf7,0x06,0x01,0x01, + 0x01,0x01,0x17,0x5a,0x55,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5a,0xfa,0x0a,0xf7,0x09,0x4a,0x4c,0x47,0x49,0x07,0x02,0x03,0x01,0x04,0x04,0x03,0x07,0x02,0x01, + 0x02,0x01,0x3a,0x5e,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x61,0x1f,0x2b,0x02,0x01,0x01,0x01,0x01,0x04,0x07,0x01,0x14,0x19,0x01,0x01,0xf7,0x07,0x06,0x01, + 0x01,0x01,0x4e,0x8c,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0x47,0x01,0x02,0x04,0x04,0x02,0x02,0x02,0x02,0x25,0x02,0x06,0x0c,0x26,0x10,0x01,0x04,0x06,0x01, + 0x03,0x08,0x35,0x4d,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x59,0x08,0x01,0xf7,0x04,0x04,0x04,0x04,0xf7,0x01,0x16,0x2d,0x2b,0x01,0x4f,0x56,0x01,0x0b,0x0a,0x01, + 0x02,0x0c,0x49,0x4b,0x5d,0x53,0x53,0x54,0x54,0x54,0x53,0x5a,0x47,0x01,0x03,0xf7,0x04,0x04,0x04,0x04,0x04,0x04,0x01,0x11,0x1f,0x44,0x5b,0x60,0x1e,0x30,0x12,0x01, + 0x03,0x11,0xf9,0x17,0x3d,0x5f,0x58,0x53,0x53,0x54,0x53,0x59,0x49,0x01,0x01,0x01,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x01,0x01,0x37,0x5b,0x5a,0x45,0x45,0x0c,0x01, + 0x03,0x16,0x1d,0x2b,0x01,0x3a,0x53,0x5f,0x57,0x53,0x54,0x53,0x5f,0x3c,0x01,0x38,0x3b,0x07,0x02,0x04,0x04,0x04,0xf7,0x01,0x03,0x55,0x58,0x53,0x5a,0x54,0x07,0x02, + 0xf7,0x10,0x09,0x02,0x02,0x2b,0x09,0x3d,0x58,0x57,0x53,0x54,0x53,0x5a,0x58,0x5d,0x63,0x0e,0x01,0xf7,0x04,0x04,0x01,0x08,0x50,0x5b,0x53,0x53,0x5a,0x4a,0x04,0x02, + 0xf7,0x11,0x0e,0x01,0xf7,0xf7,0x01,0x2b,0x04,0x50,0x57,0x54,0x54,0x53,0x56,0x53,0x5a,0x3a,0x01,0x02,0x04,0x04,0x01,0x43,0x63,0x53,0x54,0x53,0x5d,0x3b,0x01,0x02, + 0x03,0x0a,0x22,0x04,0x01,0x04,0xf7,0x01,0x1c,0x58,0x56,0x54,0x54,0x54,0x54,0x54,0x56,0x5c,0x0a,0x01,0x04,0xf7,0x2b,0x36,0x56,0x4d,0x56,0x53,0x5c,0x21,0x02,0x02, + 0x02,0x07,0x1c,0x3b,0x01,0x04,0x02,0x2b,0x4b,0x5d,0x53,0x54,0x54,0x54,0x54,0x53,0x5b,0x45,0x01,0x03,0x04,0x02,0x01,0x37,0x1c,0x52,0x56,0x5a,0x50,0x0c,0xf7,0x02, + 0x01,0x06,0x0b,0x38,0x0b,0x01,0x01,0x16,0x4f,0x56,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x54,0x07,0x01,0xf7,0x2b,0x40,0x35,0x2d,0x5d,0x52,0x8c,0x31,0xf7,0xf7,0x01, + 0x01,0x04,0x0b,0x1b,0x12,0x01,0x01,0x54,0x59,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5e,0x1c,0x2b,0x01,0x08,0x55,0x49,0x56,0x54,0x5b,0x4e,0x0d,0x07,0x02,0x01, + 0x01,0x02,0x07,0x13,0x19,0x01,0x31,0x5d,0x55,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0x47,0x2b,0x07,0xfa,0x5c,0x57,0x55,0x57,0x5a,0x1e,0x08,0x06,0x01,0x01, + 0x01,0x01,0x04,0x0a,0x14,0x24,0x5b,0x5a,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x47,0x55,0x5a,0x53,0x53,0x58,0x5c,0x2d,0x0a,0x09,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0c,0x14,0x31,0x57,0x59,0x53,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x5a,0x58,0x53,0x53,0x5b,0x59,0x2f,0x0b,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x10,0x12,0x24,0x4f,0x5c,0x58,0x53,0x53,0x53,0x54,0x54,0x54,0x54,0x53,0x53,0x53,0x58,0x5c,0x4e,0x22,0x0e,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x38,0x50,0x5b,0x5b,0x58,0x56,0x56,0x56,0x56,0x58,0x5b,0x5b,0x51,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x4f,0x56,0x56,0x4e,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x01,0x24,0x4e,0x8c,0x8c,0x5a,0x58,0x56,0x57,0x59,0x5f,0x67,0x65,0x50,0x24,0x2b,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x0b,0x4b,0x5f,0x5a,0x55,0x53,0x53,0x53,0x53,0x5b,0x5d,0x48,0x29,0x27,0x55,0x60,0xfa,0x09,0x2b,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x21,0x5b,0x5d,0x53,0x53,0x54,0x54,0x54,0x54,0x58,0x3f,0x09,0x2b,0x17,0x4a,0x53,0x3e,0x60,0x64,0x26,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x01,0x2b,0x1a,0x58,0x55,0x54,0x54,0x54,0x54,0x54,0x57,0x4f,0x09,0x36,0x4f,0x4a,0x52,0x2f,0x0a,0x09,0x39,0x36,0x03,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x19,0x27,0x19,0x5a,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x57,0x5e,0x57,0x10,0x29,0x1b,0x21,0x01,0x2b,0x01,0x04,0x06,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x13,0x43,0x57,0x56,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x54,0x8c,0x26,0x2b,0x01,0x02,0x04,0xf7,0x04,0x04,0x06,0xf7,0x01,0x01,0x01, + 0x01,0x01,0x04,0x0b,0x2b,0x26,0x8c,0x55,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x59,0x47,0x1b,0x0e,0x10,0x01,0x01,0x02,0x04,0x04,0x03,0x06,0x03,0x01,0x01, + 0x01,0x03,0x07,0x01,0x06,0x4d,0x5a,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x61,0x1b,0xf7,0x58,0x5e,0x35,0x1c,0x06,0x03,0x04,0x04,0xf7,0x06,0x01,0x01, + 0x01,0x04,0x09,0x2b,0x45,0x5f,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5a,0xfa,0x0a,0xf7,0x09,0x4a,0x4c,0x48,0xf9,0x01,0x02,0x02,0x04,0x07,0x02,0x01, + 0x01,0x07,0x01,0x08,0x59,0x57,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x61,0x1f,0x2b,0x02,0x01,0x01,0x01,0x01,0x0a,0xf7,0x07,0x0a,0x01,0xf7,0x06,0x01, + 0x02,0x03,0x36,0x3a,0x59,0x57,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0x47,0x01,0x02,0x04,0x04,0x02,0x02,0x02,0x06,0x19,0xf7,0x1e,0x12,0x03,0x04,0x01, + 0x01,0x0a,0xfa,0x44,0x30,0x4a,0x56,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x59,0x08,0x01,0xf7,0x04,0x04,0x04,0x04,0xf7,0x01,0x1c,0x10,0x2b,0x4b,0x3f,0x01,0x01, + 0x04,0x0d,0x08,0x46,0x51,0x4f,0x5f,0x56,0x53,0x54,0x54,0x54,0x54,0x53,0x5a,0x47,0x01,0x03,0xf7,0x04,0x04,0x04,0x04,0x04,0x02,0xf7,0x13,0x34,0x5d,0x5c,0x08,0x01, + 0x03,0x0e,0x4f,0x30,0x27,0x09,0x30,0x56,0x5e,0x56,0x53,0x54,0x54,0x53,0x59,0x49,0x01,0x01,0x01,0x01,0x02,0x04,0x04,0x04,0x04,0x02,0x01,0x35,0x5f,0x56,0x08,0x01, + 0x03,0x0a,0x59,0x5a,0x0c,0x2b,0x2b,0x28,0x3f,0x58,0x5e,0x56,0x53,0x54,0x53,0x5f,0x3c,0x01,0x38,0x3b,0x07,0x02,0x04,0x04,0xf7,0x01,0x2b,0x47,0x8c,0x51,0x07,0x02, + 0x04,0x07,0xfa,0x58,0x01,0x03,0xf7,0x01,0x2b,0x11,0x3e,0x58,0x57,0x53,0x54,0x53,0x5a,0x58,0x5d,0x63,0x0e,0x01,0xf7,0x04,0x03,0x01,0x30,0x8c,0x59,0x4a,0x04,0x02, + 0xf7,0x04,0x3e,0x8c,0x07,0x01,0xf7,0x04,0xf7,0x01,0x2b,0x04,0x50,0x57,0x54,0x54,0x53,0x56,0x53,0x5a,0x3a,0x01,0x02,0xf7,0x01,0x0c,0x62,0x57,0x5d,0x3b,0x01,0x02, + 0x04,0x06,0x25,0x63,0x43,0x2b,0x03,0x04,0x04,0xf7,0x01,0x1d,0x59,0x56,0x54,0x54,0x54,0x54,0x54,0x56,0x5c,0x0a,0x01,0xf7,0x01,0x09,0x4c,0xfa,0x5e,0x21,0x02,0x02, + 0x02,0x08,0x10,0x50,0x62,0x30,0x01,0xf7,0x04,0x01,0x01,0x53,0x5a,0x53,0x54,0x54,0x54,0x54,0x53,0x5b,0x45,0x01,0x03,0xf7,0x01,0x28,0x1b,0x58,0x52,0x0c,0xf7,0x02, + 0x01,0x06,0x0a,0x33,0x61,0x57,0x02,0x01,0xf7,0x01,0x1b,0x5a,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x54,0x07,0x01,0x01,0x12,0x45,0x35,0x64,0x31,0xf7,0xf7,0x01, + 0x01,0x04,0x0a,0x11,0x50,0x60,0x14,0x01,0x2b,0x31,0x5d,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x8c,0x1d,0x2b,0x2b,0x45,0x5a,0x8c,0x4d,0x0d,0x07,0x02,0x01, + 0x01,0x02,0x08,0x0b,0x21,0x60,0x20,0x2b,0x06,0x52,0x5a,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5a,0x3f,0xf7,0x3d,0x8c,0x59,0x5a,0x1e,0x08,0x06,0x01,0x01, + 0x01,0x01,0x04,0x0b,0x0d,0x39,0x27,0x01,0x4a,0x5c,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x5a,0x5a,0x57,0x5b,0x2d,0x0a,0x09,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0c,0x17,0x19,0x29,0x65,0x54,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x55,0x5a,0x59,0x2f,0x0b,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x10,0x16,0x26,0x4f,0x5c,0x58,0x53,0x53,0x53,0x54,0x54,0x54,0x54,0x53,0x53,0x53,0x58,0x5c,0x4e,0x22,0x0e,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x13,0x17,0x38,0x50,0x5b,0x5b,0x58,0x56,0x56,0x56,0x56,0x58,0x5b,0x5b,0x51,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x4f,0x56,0x56,0x4f,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x24,0x4e,0x8c,0x8c,0x5a,0x58,0x56,0x56,0x58,0x5a,0x8c,0x8c,0x50,0x29,0x01,0x2b,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x16,0x52,0x61,0x5a,0x55,0x53,0x53,0x53,0x54,0x54,0x53,0x53,0x5a,0x8c,0x5c,0x51,0x3d,0x0e,0x2b,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0xf7,0x24,0x45,0x51,0x56,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x47,0x1a,0x01,0x0d,0x46,0xfa,0x21,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x01,0x09,0x32,0x01,0x2b,0x49,0x59,0x53,0x54,0x54,0x54,0x54,0x53,0x58,0xfa,0x06,0x21,0x37,0x55,0x5d,0x36,0x2e,0x19,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x0d,0x20,0x20,0x50,0x3c,0x58,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x55,0x52,0x60,0x55,0x24,0x3a,0x0e,0x07,0x04,0x06,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x30,0xf9,0x2b,0x19,0x5d,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x57,0x59,0x17,0x06,0x13,0x0e,0x01,0x06,0xf7,0x01,0x01,0x01, + 0x01,0x01,0x06,0x07,0x01,0x04,0x2b,0x34,0x5d,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x59,0x49,0x1b,0x04,0x01,0x01,0xf7,0x03,0x06,0x03,0x01,0x01, + 0x01,0x03,0x07,0xf7,0x03,0x2b,0x27,0x59,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x61,0x1b,0x09,0x57,0x45,0x07,0x01,0x03,0x06,0x06,0x01,0x01, + 0x01,0x04,0x08,0x04,0x01,0x01,0x54,0x5c,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5a,0xfa,0x0a,0x04,0x10,0x51,0x4c,0x38,0x03,0x01,0xf7,0x03,0x01, + 0x01,0x06,0x08,0x01,0x01,0x26,0x5f,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x61,0x1f,0x2b,0x02,0x01,0x02,0x0c,0x22,0x04,0x04,0x06,0x04,0x01, + 0x02,0x0a,0x01,0x19,0x5c,0x34,0x50,0x58,0x55,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0x47,0x01,0x02,0x04,0x04,0x02,0x01,0x01,0x10,0x0a,0x1b,0x03,0x01, + 0x01,0x11,0x15,0x16,0x43,0x46,0x26,0x37,0x53,0x56,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x59,0x08,0x01,0xf7,0x04,0x04,0x04,0xf7,0x01,0x1b,0x06,0x01,0x09,0x02, + 0x02,0x0c,0x55,0x27,0x06,0x47,0x5e,0x49,0x59,0x5e,0x56,0x53,0x54,0x54,0x54,0x54,0x53,0x5a,0x47,0x01,0x03,0xf7,0x04,0x04,0x04,0x04,0x02,0x06,0x14,0x32,0x0d,0x01, + 0x03,0x09,0x5a,0x61,0x4c,0x29,0x20,0x01,0x11,0x33,0x57,0x5e,0x56,0x53,0x54,0x54,0x53,0x59,0x49,0x01,0x01,0x01,0x01,0x02,0x04,0x04,0xf7,0x01,0xf7,0x47,0x0e,0x01, + 0x03,0x09,0x53,0x57,0x5b,0x57,0x0e,0x01,0x01,0x2b,0x2c,0x3f,0x58,0x5e,0x56,0x53,0x54,0x53,0x5f,0x3c,0x01,0x38,0x3b,0x07,0x02,0x04,0xf7,0x01,0x01,0x4b,0x0b,0x01, + 0x03,0x09,0x4a,0x5a,0x59,0x4c,0x01,0x03,0xf7,0xf7,0x01,0x2b,0x11,0x3e,0x58,0x57,0x53,0x54,0x53,0x5a,0x58,0x5d,0x62,0x11,0x01,0xf7,0x03,0x01,0x40,0x54,0x04,0x02, + 0xf7,0x04,0x3d,0x5b,0x57,0x52,0x01,0x01,0xf7,0x04,0x04,0xf7,0x01,0x2b,0x04,0x50,0x57,0x54,0x54,0x53,0x56,0x53,0x5a,0x39,0x01,0x03,0x01,0x0d,0x6a,0x3d,0x01,0x02, + 0x04,0x06,0x25,0x5c,0x54,0x5d,0x3a,0x2b,0x03,0x04,0x04,0x04,0xf7,0x01,0x1d,0x59,0x56,0x54,0x54,0x54,0x54,0x53,0x57,0x59,0x07,0x01,0x01,0x0e,0x4e,0x1c,0x03,0x02, + 0x02,0x08,0x10,0x51,0x58,0x55,0x5c,0x21,0x01,0xf7,0x04,0xf7,0x01,0x01,0x53,0x5a,0x53,0x54,0x54,0x54,0x54,0x53,0x5b,0x3f,0x01,0x01,0x01,0x38,0x15,0x11,0x06,0x02, + 0x01,0x06,0x0a,0x33,0x8c,0x53,0x58,0x5d,0x0e,0x01,0xf7,0x03,0x2b,0x1b,0x5a,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x59,0x46,0x01,0x2b,0x17,0x55,0x1c,0x0a,0x04,0x01, + 0x01,0x04,0x0a,0x12,0x4e,0x5b,0x53,0x5d,0x1e,0x01,0x04,0x2b,0x3b,0x5b,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x52,0x01,0x2b,0x53,0x56,0x11,0x06,0x02,0x01, + 0x01,0x02,0x08,0x0b,0x21,0x59,0x57,0x5d,0x2c,0x01,0x2b,0x10,0x5a,0x59,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x57,0x2d,0x4c,0x61,0x1e,0x07,0x06,0x01,0x01, + 0x01,0x01,0x04,0x0b,0x0e,0x30,0x5b,0x5e,0x3c,0x2b,0x13,0x53,0x59,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5e,0x5f,0x2d,0x0a,0x09,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0d,0x10,0x2f,0x5e,0x4d,0x01,0x52,0x5b,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x53,0x5b,0x59,0x2e,0x0b,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x11,0x12,0x27,0x50,0x2d,0x4f,0x58,0x53,0x53,0x54,0x54,0x54,0x54,0x53,0x53,0x53,0x58,0x5c,0x4e,0x22,0x0e,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x1a,0x3d,0x50,0x5b,0x5b,0x58,0x56,0x56,0x56,0x56,0x58,0x5b,0x5b,0x51,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x12,0x13,0x1b,0x2f,0x41,0xfa,0x52,0x57,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x14,0x14,0x12,0x13,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x04,0x07,0x06,0x07,0x08,0x06,0x07,0x06,0x06,0xf7,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x2b,0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x2b,0x01,0x14,0x35,0x46,0x4f,0x56,0x56,0x4f,0x46,0x35,0x14,0x01,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x2b,0x01,0x26,0x50,0x8c,0x8c,0x5a,0x58,0x56,0x56,0x58,0x5a,0x8c,0x8c,0x4e,0x24,0x2b,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x2b,0x14,0x4c,0x61,0x8c,0x5c,0x53,0x53,0x53,0x54,0x54,0x53,0x53,0x53,0x55,0x5a,0x63,0x52,0x13,0x2b,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x1f,0x41,0x28,0x01,0x02,0x28,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x57,0x40,0x19,0xf7,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x02,0x02,0x0c,0x13,0xf7,0x25,0x41,0x0c,0x24,0x59,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x59,0x42,0x03,0x01,0x27,0x60,0x22,0x2b,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x06,0x01,0x17,0x42,0x06,0x27,0x4c,0x56,0x55,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x57,0x4c,0x41,0x59,0x49,0x4e,0x1f,0x02,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x06,0x06,0x01,0x13,0x21,0x01,0x2b,0x42,0x5c,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x56,0x5a,0x8c,0x2f,0x16,0x1f,0x1b,0x01,0x01,0x01,0x01, + 0x01,0x01,0x03,0x06,0x03,0xf7,0x01,0x01,0x01,0x1c,0x55,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x4c,0x01,0x01,0x02,0x06,0x03,0x01,0x01, + 0x01,0x01,0x0a,0x0d,0x01,0x04,0xf7,0x01,0x14,0x8c,0x57,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x5b,0x16,0x28,0x29,0x2b,0x01,0x06,0x01,0x01, + 0x01,0x01,0x19,0x07,0x02,0x02,0x2b,0x2b,0xf9,0x5c,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x59,0x4b,0x06,0x1a,0x56,0x3c,0x0d,0x04,0x03,0x01, + 0x02,0x01,0x3c,0x17,0x01,0x04,0x25,0x1d,0x52,0x5a,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x61,0x20,0x2b,0x01,0x0e,0x35,0x3d,0xf7,0x03,0x01, + 0x01,0x02,0x53,0x3d,0x2b,0x31,0xfb,0x3d,0x30,0x56,0x58,0x55,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0x47,0x01,0x02,0xf7,0x01,0x01,0x01,0x0c,0xf7,0x01, + 0x01,0x07,0x53,0x5c,0x15,0x0d,0x1f,0x4f,0x44,0x20,0x39,0x53,0x56,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x59,0x09,0x01,0xf7,0x04,0x04,0x04,0x03,0x1b,0x08,0x01, + 0x02,0x0a,0x56,0x5a,0x54,0x37,0x12,0x12,0x62,0x5a,0x49,0x5b,0x5e,0x56,0x53,0x54,0x54,0x54,0x54,0x53,0x5a,0x47,0x01,0x03,0xf7,0x04,0x04,0x04,0x01,0x14,0x0d,0x02, + 0x03,0x0b,0x58,0x55,0x56,0x5c,0x5e,0x29,0x33,0x19,0x01,0x11,0x33,0x57,0x5e,0x56,0x53,0x54,0x54,0x53,0x59,0x49,0x01,0x01,0x01,0x01,0x02,0x04,0x04,0x01,0x0b,0x03, + 0x03,0x09,0x53,0x58,0x53,0x53,0x55,0x5d,0x4e,0x01,0x01,0x01,0x2b,0x2c,0x3f,0x58,0x5e,0x56,0x53,0x54,0x53,0x5f,0x3c,0x01,0x38,0x35,0x01,0x04,0x04,0x04,0x0b,0x03, + 0x04,0x08,0x45,0x58,0x54,0x54,0x53,0x5d,0x25,0x01,0xf7,0xf7,0xf7,0x01,0x2b,0x11,0x3e,0x58,0x57,0x53,0x54,0x53,0x5a,0x57,0x61,0x50,0x01,0x02,0x02,0x08,0x0c,0x03, + 0xf7,0x06,0x2c,0x5a,0x54,0x54,0x53,0x5d,0x26,0x2b,0xf7,0x04,0x04,0x04,0xf7,0x01,0x2b,0x04,0x50,0x57,0x54,0x54,0x53,0x56,0x57,0x57,0x12,0x01,0x02,0x0c,0x0e,0x01, + 0x04,0x06,0x25,0x5c,0x53,0x54,0x53,0x57,0x59,0x0b,0x2b,0xf7,0x04,0x04,0x04,0xf7,0x01,0x1d,0x59,0x56,0x54,0x54,0x54,0x53,0x55,0x8c,0x1c,0x01,0x03,0x10,0x09,0x02, + 0x02,0x08,0x10,0x51,0x58,0x53,0x54,0x53,0x5b,0x4c,0x07,0x01,0x04,0x04,0x04,0x01,0x01,0x53,0x5a,0x53,0x54,0x54,0x54,0x53,0x58,0x51,0x02,0x01,0x09,0x14,0x06,0x02, + 0x01,0x07,0x08,0x33,0x8c,0x53,0x54,0x54,0x53,0x8c,0x4f,0x01,0x02,0x04,0xf7,0x2b,0x1b,0x5a,0x53,0x54,0x54,0x54,0x54,0x54,0x56,0x57,0x08,0x01,0x12,0x11,0x04,0x01, + 0x01,0x04,0x0a,0x11,0x4e,0x5c,0x54,0x54,0x53,0x58,0x4d,0x02,0x02,0x04,0x2b,0x3a,0x5c,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x56,0x5a,0x11,0x04,0x16,0x08,0x02,0x01, + 0x01,0x02,0x07,0x0c,0x25,0x3f,0x52,0x54,0x53,0x58,0x4e,0x07,0x01,0x2b,0x0e,0x5d,0x59,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x5b,0x4d,0x1c,0x0c,0xf7,0x01,0x01, + 0x01,0x01,0x04,0x0d,0x10,0x1e,0x56,0x58,0x53,0x58,0x53,0x0a,0x2b,0x11,0x53,0x5a,0x53,0x54,0x54,0x54,0x54,0x54,0x54,0x53,0x58,0x5b,0x34,0x0c,0x08,0x03,0x01,0x01, + 0x01,0x01,0x02,0x06,0x0c,0x14,0x31,0x59,0x59,0x54,0x5c,0x0c,0x13,0x5a,0x59,0x53,0x54,0x54,0x54,0x54,0x54,0x53,0x53,0x5b,0x59,0x2f,0x0b,0x0b,0x04,0x01,0x01,0x01, + 0x01,0x01,0x01,0x03,0x07,0x10,0x12,0x24,0x4f,0x5c,0x5f,0x29,0x2c,0x5e,0x53,0x54,0x54,0x54,0x53,0x53,0x53,0x58,0x5c,0x4e,0x22,0x0e,0x0c,0xf7,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x03,0x07,0x11,0x11,0x17,0x38,0x50,0x5f,0x5b,0x58,0x56,0x56,0x56,0x56,0x58,0x5b,0x5b,0x51,0x36,0x16,0x0e,0x0c,0x06,0x02,0x02,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x03,0x06,0x0d,0x13,0x13,0x1b,0x2f,0x43,0x4c,0x52,0x57,0x57,0x52,0x4c,0x42,0x2e,0x19,0x11,0x10,0x0b,0xf7,0x02,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0xf7,0x09,0x11,0x14,0x14,0x15,0x19,0x1c,0x1c,0x1c,0x1c,0x17,0x13,0x12,0x12,0x0d,0x08,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0xf7,0x09,0x0d,0x12,0x12,0x12,0x13,0x14,0x12,0x12,0x0e,0x0a,0x07,0xf7,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0x04,0x06,0x07,0x08,0x0a,0x08,0x08,0x07,0xf7,0x04,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, + 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x03,0x03,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01 +}; diff --git a/macho-to-xcoff.tproj/macho-to-xcoff.c b/macho-to-xcoff.tproj/macho-to-xcoff.c index 009aad0..02e9af5 100644 --- a/macho-to-xcoff.tproj/macho-to-xcoff.c +++ b/macho-to-xcoff.tproj/macho-to-xcoff.c @@ -22,13 +22,14 @@ /* * macho-to-xcoff.c - Converts a Mach-O file an XCOFF. * - * Copyright (c) 1998-2000 Apple Computer, Inc. + * Copyright (c) 1998-2002 Apple Computer, Inc. * * DRI: Josh de Cesare */ #include #include +#include #include #include #include @@ -196,7 +197,7 @@ static void copyMachOSectionToXCOFF (UInt32 machoOffset, UInt32 sectionSize) } -void main (int argc, char **argv) +int main (int argc, char **argv) { int n; char *cmdsP, *cp; @@ -226,35 +227,34 @@ void main (int argc, char **argv) n = fread (cmdsP, SWAPL(mhead.sizeofcmds), 1, machoF); if (n != 1) perror ("error reading mach-o commands"); - printf ("Mach-o file has magic=0x%08X, %d commands\n", SWAPL(mhead.magic), SWAPL(mhead.ncmds)); + printf("Mach-o file has magic=0x%08lX, %ld commands\n", SWAPL(mhead.magic), SWAPL(mhead.ncmds)); for (n = 0, cp = cmdsP; n < SWAPL(mhead.ncmds); ++n, cp += SWAPL(LCP->cmdsize)) { switch (SWAPL(LCP->cmd)) { case LC_SEGMENT: - printf ("segment: %s: 0x%08X of 0x%08X bytes\n", + printf ("segment: %s: 0x%08lX of 0x%08lX bytes\n", SCP->segname, SWAPL(SCP->vmaddr), SWAPL(SCP->vmsize)); if (strncmp (SCP->segname, SEG_TEXT, sizeof (SCP->segname)) == 0) { textFileOffset = SWAPL(SCP->fileoff); textSize = SWAPL(SCP->filesize); - printf ("__TEXT size = 0x%08X\n", textSize); + printf ("__TEXT size = 0x%08lX\n", textSize); xHead.text.pAddr = xHead.text.vAddr = SCP->vmaddr; xHead.text.size = SCP->vmsize; } else if (strncmp (SCP->segname, SEG_DATA, sizeof (SCP->segname)) == 0) { dataFileOffset = SWAPL(SCP->fileoff); dataSize = SWAPL(SCP->filesize); - printf ("__DATA size = 0x%08X\n", dataSize); + printf ("__DATA size = 0x%08lX\n", dataSize); bssSize = SWAPL(SCP->vmsize) - SWAPL(SCP->filesize); - printf ("__BSS size = 0x%08X\n", bssSize); + printf ("__BSS size = 0x%08lX\n", bssSize); xHead.data.pAddr = xHead.data.vAddr = SCP->vmaddr; /* Use just FILE part -- rest is BSS */ xHead.data.size = SCP->filesize; } else { - printf ("ignoring mach-o section \"%.*s\"\n", - sizeof (SCP->segname), SCP->segname); + printf ("ignoring mach-o section \"%s\"\n", SCP->segname); } break; @@ -263,7 +263,7 @@ void main (int argc, char **argv) xHead.opt.entryPoint = ((ppc_saved_state_t *) (cp + sizeof(struct thread_command) + 2 * sizeof(unsigned long)) )->srr0; - printf("Entry point %x\n\n", SWAPL(xHead.opt.entryPoint)); + printf("Entry point %lx\n\n", SWAPL(xHead.opt.entryPoint)); break; } } @@ -282,7 +282,7 @@ void main (int argc, char **argv) xHead.opt.textSize = xHead.text.size; xHead.opt.dataSize = xHead.data.size; xHead.opt.BSSSize = xHead.BSS.size; - if (argc == 4) sscanf(argv[3],"%x",&xHead.opt.entryPoint); + if (argc == 4) sscanf(argv[3],"%lx",&xHead.opt.entryPoint); /* Write out the XCOFF file, copying the relevant mach-o file sections */ fwrite (&xHead, sizeof (xHead), 1, xcoffF); @@ -292,4 +292,6 @@ void main (int argc, char **argv) fclose (machoF); fclose (xcoffF); + + return 0; } -- 2.45.2