]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
CPCI405AB (special version of esd CPCI405) board added.
authorstroese <stroese>
Fri, 23 May 2003 11:30:39 +0000 (11:30 +0000)
committerstroese <stroese>
Fri, 23 May 2003 11:30:39 +0000 (11:30 +0000)
board/esd/cpci405/config.mk
board/esd/cpci405/cpci405.c
board/esd/cpci405/flash.c
board/esd/cpci405/fpgadata_cpci405ab.c [new file with mode: 0644]
include/configs/CPCI405AB.h [new file with mode: 0644]

index 1ad3fc640ae2c9915dc87e342d5a74ca2327a18d..3b8797db6bb58bc0bb4ee640bba09df85b842bd1 100644 (file)
@@ -28,5 +28,9 @@
 ifeq ($(BOARD_REVISION),CPCI4052)
 TEXT_BASE = 0xFFFC0000
 else
+ifeq ($(BOARD_REVISION),CPCI405AB)
+TEXT_BASE = 0xFFFC0000
+else
 TEXT_BASE = 0xFFFD0000
 endif
+endif
index b50716f35cdf5b01750f066f0839393d9d89596f..5a6a27c82503c4d4200f6e4488f4d47d8f910dc3 100644 (file)
 const unsigned char fpgadata[] =
 {
 #ifdef CONFIG_CPCI405_VER2
-# include "fpgadata_cpci4052.c"
+# ifdef CONFIG_CPCI405AB
+#  include "fpgadata_cpci405ab.c"
+# else
+#  include "fpgadata_cpci4052.c"
+# endif
 #else
 # include "fpgadata_cpci405.c"
 #endif
@@ -74,10 +78,10 @@ int board_pre_init (void)
        /*
         * First pull fpga-prg pin low, to disable fpga logic (on version 2 board)
         */
-       out32(IBM405GP_GPIO0_ODR, 0x00000000);        /* no open drain pins      */
-       out32(IBM405GP_GPIO0_TCR, CFG_FPGA_PRG);      /* setup for output        */
-       out32(IBM405GP_GPIO0_OR,  CFG_FPGA_PRG);      /* set output pins to high */
-       out32(IBM405GP_GPIO0_OR, 0);                  /* pull prg low            */
+       out32(GPIO0_ODR, 0x00000000);        /* no open drain pins      */
+       out32(GPIO0_TCR, CFG_FPGA_PRG);      /* setup for output        */
+       out32(GPIO0_OR,  CFG_FPGA_PRG);      /* set output pins to high */
+       out32(GPIO0_OR, 0);                  /* pull prg low            */
 
        /*
         * Boot onboard FPGA
@@ -192,10 +196,10 @@ int cpci405_version(void)
         */
        cntrl0Reg = mfdcr(cntrl0);
        mtdcr(cntrl0, cntrl0Reg | 0x03000000);
-       out32(IBM405GP_GPIO0_ODR, in32(IBM405GP_GPIO0_ODR) & ~0x00180000);
-       out32(IBM405GP_GPIO0_TCR, in32(IBM405GP_GPIO0_TCR) & ~0x00180000);
+       out32(GPIO0_ODR, in32(GPIO0_ODR) & ~0x00180000);
+       out32(GPIO0_TCR, in32(GPIO0_TCR) & ~0x00180000);
        udelay(1000);                   /* wait some time before reading input */
-       value = in32(IBM405GP_GPIO0_IR) & 0x00180000;       /* get config bits */
+       value = in32(GPIO0_IR) & 0x00180000;       /* get config bits */
 
        /*
         * Restore GPIO settings
@@ -505,4 +509,44 @@ void ide_set_reset(int on)
 #endif /* CONFIG_IDE_RESET */
 #endif /* CONFIG_CPCI405_VER2 */
 
+#if 0 /* test-only */
+/* ------------------------------------------------------------------------- */
+
+u8 *dhcp_vendorex_prep (u8 * e)
+{
+       char *ptr;
+
+/* DHCP vendor-class-identifier = 60 */
+       if ((ptr = getenv ("dhcp_vendor-class-identifier"))) {
+               *e++ = 60;
+               *e++ = strlen (ptr);
+               while (*ptr)
+                       *e++ = *ptr++;
+       }
+/* my DHCP_CLIENT_IDENTIFIER = 61 */
+       if ((ptr = getenv ("dhcp_client_id"))) {
+               *e++ = 61;
+               *e++ = strlen (ptr);
+               while (*ptr)
+                       *e++ = *ptr++;
+       }
+
+       return e;
+}
+
+
+/* ------------------------------------------------------------------------- */
+
+u8 *dhcp_vendorex_proc (u8 * popt)
+{
+       if (*popt == 61)
+               return (u8 *)-1;
+       if (*popt == 43) {
+               printf("|%s|", popt+4); /* test-only */
+               return (u8 *)-1;
+       }
+       return NULL;
+}
+
 /* ------------------------------------------------------------------------- */
+#endif /* test-only */
index 85a9edc338fd34bc3095919c8a8a95fe31c8f2fd..02de050b742db02691667ed71f855dd88a7ce92c 100644 (file)
@@ -86,11 +86,11 @@ unsigned long flash_init (void)
        /* Re-do sizing to get full correct info */
 
        if (size_b1) {
-               base_b1 = -size_b1;
                if (size_b1 < (1 << 20)) {
                        /* minimum CS size on PPC405GP is 1MB !!! */
                        size_b1 = 1 << 20;
                }
+               base_b1 = -size_b1;
                mtdcr (ebccfga, pb0cr);
                pbcr = mfdcr (ebccfgd);
                mtdcr (ebccfga, pb0cr);
@@ -103,11 +103,11 @@ unsigned long flash_init (void)
        }
 
        if (size_b0) {
-               base_b0 = base_b1 - size_b0;
                if (size_b0 < (1 << 20)) {
                        /* minimum CS size on PPC405GP is 1MB !!! */
                        size_b0 = 1 << 20;
                }
+               base_b0 = base_b1 - size_b0;
                mtdcr (ebccfga, pb1cr);
                pbcr = mfdcr (ebccfgd);
                mtdcr (ebccfga, pb1cr);
diff --git a/board/esd/cpci405/fpgadata_cpci405ab.c b/board/esd/cpci405/fpgadata_cpci405ab.c
new file mode 100644 (file)
index 0000000..29759a2
--- /dev/null
@@ -0,0 +1,1063 @@
+  0x1f,0x8b,0x08,0x08,0x22,0xe6,0xaf,0x3e,0x00,0x03,0x63,0x70,0x63,0x69,0x34,0x30,
+  0x35,0x61,0x62,0x5f,0x32,0x5f,0x30,0x34,0x2e,0x62,0x69,0x74,0x00,0xed,0xbd,0x0b,
+  0x74,0x5c,0xd5,0x99,0x26,0xfa,0x9f,0x7d,0x4e,0x49,0x47,0xaa,0x92,0xea,0xe8,0x45,
+  0x0a,0x30,0xe6,0xa8,0x24,0x48,0xe1,0x29,0xcb,0x65,0xd9,0x18,0xc7,0xd8,0xd2,0x71,
+  0xc9,0x76,0x2a,0xb1,0xd3,0x2e,0x1e,0x01,0x4f,0x0f,0x2b,0x53,0x26,0xee,0xb4,0x67,
+  0x96,0xc9,0x15,0x24,0xdd,0xed,0x61,0x72,0xd3,0x5b,0x25,0x19,0xcb,0xd8,0xe0,0xe2,
+  0x91,0x8e,0x93,0xd0,0xdc,0xb2,0x71,0x32,0x4e,0x86,0xe9,0x55,0xb6,0x21,0x36,0x90,
+  0xc0,0x91,0x10,0x44,0x7e,0xc4,0x28,0x0e,0x2b,0x6d,0x1e,0x17,0xca,0x44,0x21,0x02,
+  0x14,0xb7,0x70,0x3c,0x20,0x23,0x83,0xee,0xbf,0xf7,0x3e,0xaf,0x7a,0x08,0xe8,0x59,
+  0xbd,0xee,0x63,0x5d,0x2a,0x59,0xf0,0x73,0xb4,0x75,0x6a,0x3f,0xff,0x6f,0x7f,0xff,
+  0xff,0xed,0x2d,0xa8,0x0a,0x4e,0x88,0xff,0x01,0x48,0xeb,0xa1,0xee,0xeb,0xdd,0x5f,
+  0xff,0x4f,0x0b,0x63,0x57,0xff,0xc7,0xf6,0xff,0x18,0x5b,0xd8,0xf6,0xcd,0xaf,0x6f,
+  0x80,0x5b,0xa1,0xba,0xfd,0x5b,0x0b,0x62,0xdf,0xbe,0x7d,0xfe,0xc2,0x85,0xf0,0x75,
+  0xf0,0xb7,0xc7,0x62,0x0b,0xe6,0xc5,0x16,0xce,0x5b,0x10,0x83,0x0d,0x50,0x35,0xff,
+  0x9a,0x25,0xb1,0xab,0xf1,0xff,0xf0,0x57,0x00,0x7b,0xbb,0xa7,0xf1,0xf3,0xb3,0x1f,
+  0x7c,0xf5,0x1b,0x31,0xa0,0x12,0x00,0x54,0xc6,0xa4,0x14,0xfb,0xb7,0x1a,0x93,0x74,
+  0x09,0x68,0xe7,0xdc,0x18,0x98,0xec,0xbf,0xc1,0xfa,0x79,0x55,0x0c,0x74,0xef,0x7f,
+  0x4b,0x31,0x30,0x20,0x09,0xad,0x5f,0x87,0xfa,0x18,0xcc,0xf4,0x91,0x40,0xa1,0xdc,
+  0xf8,0x34,0x65,0xc8,0x8c,0x45,0xd8,0xe7,0xd3,0x97,0xa9,0xff,0xb8,0x22,0xca,0xbf,
+  0x55,0x19,0xfe,0xcf,0xe9,0x7a,0x34,0x24,0x90,0x58,0x4f,0x34,0x82,0xaf,0xc0,0xd0,
+  0x3a,0x87,0xf8,0x7b,0x4c,0xe9,0x0c,0x4c,0x9b,0xcb,0x68,0x80,0xca,0xfa,0x9e,0xe3,
+  0xfa,0x02,0xb5,0xd6,0x94,0xb3,0xfa,0x38,0x7c,0xab,0x39,0x38,0x29,0xe7,0xa0,0x9b,
+  0x57,0x5c,0x3b,0x03,0x4f,0x41,0xdb,0x84,0xba,0x83,0xe8,0xd0,0x4f,0xc3,0x6a,0x75,
+  0x3f,0x09,0x43,0x7f,0xaa,0x5d,0xf7,0x1f,0x26,0x79,0x85,0x77,0x5e,0xbf,0xef,0x38,
+  0x1c,0xd4,0xdb,0x32,0xaa,0x82,0x15,0xeb,0x59,0xae,0x57,0x56,0x4b,0x71,0xaa,0x3c,
+  0xf2,0xa5,0x8d,0xe0,0x8f,0x91,0x3d,0x12,0x7f,0x8f,0xd9,0xf4,0xa8,0x82,0xef,0x39,
+  0x12,0xa1,0x44,0xd7,0x7f,0x46,0xc2,0xc6,0x9c,0x1e,0x68,0xa6,0xfd,0x12,0x51,0xfc,
+  0x39,0x32,0xa1,0xa4,0x78,0xa5,0x9b,0xc6,0x61,0x0a,0x96,0xd2,0xc0,0xd3,0xf2,0x5c,
+  0x18,0xa6,0xed,0x81,0xda,0x47,0x7b,0xf7,0x90,0x31,0xf2,0x64,0xac,0x32,0x27,0x65,
+  0x14,0xfe,0x9e,0xbc,0xf4,0x0b,0x98,0x86,0x4e,0x1a,0x7c,0xcb,0xff,0xaa,0xf1,0x8f,
+  0xfa,0x33,0x74,0xde,0x3e,0xf9,0x1c,0xbc,0x0f,0x9d,0x10,0x9c,0x90,0x27,0x81,0xbf,
+  0xc7,0xd0,0x1e,0xc5,0xf7,0x1c,0x30,0x03,0x9a,0xdc,0x6c,0x0c,0xa8,0x4b,0xb4,0x35,
+  0x8d,0x7e,0x15,0x8e,0xc1,0xa2,0xcc,0xe5,0x39,0x79,0x44,0xd1,0x59,0x99,0x61,0x5f,
+  0x14,0xdb,0x15,0x36,0x23,0xb4,0xa2,0xd9,0xd8,0xae,0xff,0xad,0xa9,0x66,0xc8,0x3c,
+  0xfd,0x15,0xb8,0x88,0xfa,0x73,0x72,0x3b,0x4e,0x20,0xf6,0x5d,0xbe,0x35,0x70,0x10,
+  0xf4,0x6c,0x02,0x88,0x04,0x69,0x3a,0xc7,0x54,0x43,0xe4,0x9e,0x08,0x95,0x22,0x26,
+  0xb6,0x6b,0x52,0xd2,0x58,0x19,0x5d,0x9a,0x0d,0x87,0x68,0xf3,0x78,0xe8,0x12,0x42,
+  0xe0,0xae,0x5c,0x6b,0x4a,0x5d,0x57,0xfd,0x43,0xfa,0x20,0xfd,0x1f,0x63,0xfe,0xcd,
+  0x64,0x9d,0x78,0x4f,0x02,0x3b,0x76,0x2a,0x17,0xdb,0xd3,0x3f,0x87,0xd4,0xd2,0x81,
+  0x4c,0x84,0x06,0x62,0xbd,0xf7,0xd2,0x67,0xf5,0xc5,0xa7,0xfd,0x31,0xf9,0x24,0xe1,
+  0xef,0x31,0x2e,0xc3,0x76,0xf9,0x3a,0x87,0x83,0x13,0x55,0x17,0xe2,0xef,0x41,0xa7,
+  0x51,0x39,0xd1,0xb2,0x4e,0x99,0x90,0xae,0xc9,0x63,0xbb,0x32,0x15,0xbc,0x5d,0xfb,
+  0x7c,0xac,0x7f,0x3a,0x68,0x20,0x27,0x6f,0x22,0x6f,0x43,0xfb,0x40,0x20,0x2b,0xef,
+  0x25,0x63,0x70,0x20,0x55,0x93,0x93,0xdf,0x16,0xe3,0x95,0xa8,0x7b,0x48,0x3b,0x04,
+  0x51,0xaa,0x76,0x93,0x1d,0xda,0x56,0xd0,0x4d,0x55,0x27,0x8d,0xb0,0x15,0x9a,0x0d,
+  0x7c,0x72,0x52,0xf4,0xb3,0x09,0x0f,0x63,0x9d,0xe7,0xe6,0x2f,0x5e,0x4c,0x66,0xc3,
+  0x7e,0xba,0x3b,0xa7,0x6e,0x26,0xf7,0xc2,0x23,0x7d,0x7f,0xfd,0xae,0xba,0x39,0x3e,
+  0x01,0xbc,0x7f,0x12,0x8d,0x38,0xa6,0x10,0xbd,0x55,0x5d,0x48,0xee,0x89,0x3f,0xc0,
+  0xde,0xf3,0x85,0x74,0x00,0x7a,0xb5,0x0d,0x79,0x35,0x86,0xef,0xe1,0xe3,0x3e,0xd6,
+  0xb4,0x0f,0x3e,0x80,0x8e,0xc3,0x73,0x1f,0xdd,0x7e,0xd5,0xaa,0x0f,0x56,0x1c,0xc8,
+  0x06,0xa2,0xf2,0x4f,0xe9,0xdb,0xe6,0xcf,0x69,0x34,0x2b,0x7f,0x20,0xbe,0x2b,0x01,
+  0x79,0x98,0x84,0xa5,0x5a,0x2d,0xed,0xcd,0xa2,0xd9,0x01,0xf3,0xa8,0x9c,0xd7,0x27,
+  0xe1,0x5a,0x29,0x48,0xe5,0x93,0xc0,0xdf,0xa3,0x6a,0xa3,0x70,0x1e,0x3a,0x92,0xaa,
+  0x26,0x57,0x90,0x23,0x89,0x98,0xb1,0x34,0x43,0x14,0x38,0x52,0xdd,0x6e,0xc8,0x19,
+  0x79,0x50,0x7c,0x17,0x55,0x36,0xc0,0x13,0xa4,0x2d,0x81,0xc3,0x74,0xa5,0xba,0x0d,
+  0xf6,0x18,0x35,0x19,0xf9,0xaf,0x2a,0xb6,0x65,0xe6,0x2c,0xf7,0x67,0x48,0x0a,0x78,
+  0x1f,0x86,0x7c,0xad,0xf0,0x04,0xb4,0x19,0x97,0x8c,0xac,0x5a,0x48,0xef,0x81,0x96,
+  0xe5,0xea,0x49,0xf2,0x38,0x6c,0x21,0x2d,0x26,0x96,0x79,0x5e,0x8c,0x85,0xaa,0x28,
+  0xb0,0x1f,0xa2,0x89,0x39,0xd7,0x5f,0xdf,0xb8,0x65,0x8b,0xde,0x9c,0xa8,0xba,0x9e,
+  0xbc,0x98,0xde,0xa2,0x5f,0x65,0xf8,0x35,0x12,0xe7,0x6e,0x04,0x0e,0x07,0xf2,0x70,
+  0x38,0xd9,0x06,0x6d,0xd4,0x7f,0x95,0x71,0x54,0x6a,0x6f,0xec,0xa7,0x0d,0x59,0x75,
+  0xf8,0xba,0x05,0x70,0x39,0x95,0xcf,0xc8,0xbc,0xcc,0xae,0xcb,0xf6,0x62,0x7d,0x3a,
+  0x57,0x7c,0xe5,0x3e,0x79,0x34,0x7e,0x5e,0xeb,0x58,0x19,0xbc,0x4f,0xde,0x80,0xc6,
+  0x52,0x23,0x98,0x91,0xdf,0x94,0xbb,0x45,0x7d,0x46,0x43,0xe7,0xa1,0xf3,0xcb,0x35,
+  0x99,0x07,0xce,0xa9,0xbf,0x96,0xda,0x93,0x81,0x93,0x72,0x63,0xcf,0xaf,0xe7,0x1f,
+  0xe0,0x65,0xc4,0x78,0x2d,0xd6,0xf2,0x90,0x83,0x36,0x4d,0xed,0x23,0xa7,0xfb,0x7e,
+  0x46,0xe6,0x40,0x64,0x4b,0x75,0x73,0x7c,0xb0,0xfb,0xe7,0xe0,0xa7,0xe4,0x84,0x68,
+  0xbb,0xea,0x1b,0x82,0xfd,0x91,0xa8,0xb1,0x4d,0x23,0xbf,0x8a,0xed,0x5e,0x9e,0xc5,
+  0x8e,0x22,0x8a,0xda,0x03,0x29,0x56,0xe7,0x41,0xb1,0xbe,0x42,0x4d,0x7b,0x55,0x6c,
+  0xfb,0x75,0xea,0xfd,0xe4,0x4d,0xf8,0x29,0xcc,0x31,0x12,0xf7,0x55,0xb7,0xd2,0x6d,
+  0xd2,0x95,0x2b,0x58,0xdb,0xc5,0x58,0x64,0x9b,0x78,0x3f,0xa7,0x6a,0x76,0x55,0x8e,
+  0xc2,0x5b,0xd0,0x9e,0x88,0xfe,0x50,0x6e,0x85,0x23,0xc9,0x03,0x29,0xac,0xcf,0x98,
+  0x58,0x17,0x11,0xd8,0xcb,0xca,0xdc,0x11,0xcc,0x7c,0x6e,0x28,0xf2,0x6e,0x04,0x9b,
+  0xa3,0xc9,0xa3,0xda,0x79,0xda,0xc1,0xca,0x1c,0x15,0x73,0x23,0xa2,0x65,0x71,0x4c,
+  0xdb,0xa1,0x96,0x76,0xa5,0xc8,0xb0,0xd1,0x0e,0x81,0xbe,0x06,0x18,0x1c,0x5e,0xd1,
+  0x0e,0x38,0xa6,0x47,0xad,0xf7,0x28,0x11,0x78,0x52,0x6a,0xce,0xaa,0xd9,0x39,0xd7,
+  0x46,0xee,0xa5,0x7b,0x68,0xcd,0x3e,0xb2,0x44,0xf9,0x19,0x7d,0x84,0xfa,0xb3,0xe4,
+  0xa8,0xf0,0x54,0x11,0xb1,0xbe,0x56,0x54,0xc7,0x48,0xad,0x22,0x9b,0xba,0xb9,0x38,
+  0x44,0x6a,0x60,0x7b,0xa6,0x95,0xe2,0xfa,0x3a,0x8a,0xfe,0x8a,0xaf,0xaf,0x59,0x6c,
+  0x7d,0x99,0xea,0xe2,0x0a,0x15,0xb6,0xaa,0xcd,0x66,0x55,0x77,0x7a,0x16,0xfc,0x37,
+  0xb8,0x82,0xfa,0xbb,0xc9,0xb0,0x18,0xd3,0x88,0x8a,0x6b,0x30,0x3b,0x5f,0xaf,0xdd,
+  0xdc,0xf0,0x35,0xf2,0x6c,0xdf,0x82,0xfc,0x9a,0xc5,0xfe,0xd9,0xca,0x73,0xf9,0xc7,
+  0xb3,0xc1,0xcd,0xf2,0x51,0xe1,0x98,0xd5,0xcb,0x1e,0xd5,0xa6,0x16,0xce,0x02,0x7f,
+  0xae,0x85,0x2f,0x22,0x33,0x98,0x6b,0x18,0x87,0x97,0x8c,0x25,0x34,0x98,0x93,0x07,
+  0xc5,0xfa,0x32,0x7c,0x1f,0xc1,0xd4,0xc8,0xd2,0xd6,0xda,0xc3,0xfe,0xef,0x9a,0xc7,
+  0x32,0x0b,0xf2,0x81,0x49,0xb9,0x0d,0x9e,0x33,0x17,0x64,0xd1,0x1f,0x8e,0x88,0xf1,
+  0xda,0x57,0xf7,0x10,0x1c,0xa4,0xd1,0x48,0xcd,0x66,0xb2,0x6c,0xc5,0x23,0xb9,0x66,
+  0xb3,0xba,0x1b,0x17,0xd1,0x96,0x9c,0xce,0xea,0xf3,0xb6,0xe5,0xc7,0xe0,0x21,0x38,
+  0x04,0x73,0x95,0xea,0x58,0x7c,0x56,0x4f,0x6f,0xeb,0x86,0x41,0x5c,0x7a,0x01,0xb8,
+  0x07,0xae,0xc8,0x60,0x99,0x21,0xd1,0x87,0x29,0xb1,0xbe,0xf4,0x6d,0xb1,0x74,0x40,
+  0x7a,0x24,0xd9,0x3a,0x31,0x27,0x46,0x6a,0xaa,0x7b,0x8c,0xd6,0x2c,0xb6,0xfd,0x65,
+  0x31,0xee,0xfb,0x9a,0xa2,0xe8,0xeb,0x3a,0xb4,0xda,0xc7,0xfc,0x51,0x38,0xb6,0xe2,
+  0x50,0x3e,0x90,0xf3,0x47,0x7d,0xbf,0xa2,0x3f,0xd9,0x85,0x75,0xb6,0xbe,0x8b,0x02,
+  0xf7,0x99,0xb3,0x82,0xb9,0x96,0xff,0xa1,0x4c,0xc1,0xe2,0xc1,0x79,0x31,0x79,0x9c,
+  0x4e,0xc5,0x96,0xd0,0xca,0x5c,0xd7,0xa8,0x58,0x5f,0x92,0x76,0x81,0xf9,0x4c,0xb5,
+  0xa6,0x5b,0x5e,0x0a,0xef,0xab,0x0b,0xcc,0xc0,0x7e,0x79,0x16,0xfc,0x1a,0x16,0xd0,
+  0xe0,0x44,0x43,0x7e,0x05,0x2f,0xd3,0xa3,0x6c,0x62,0x7e,0xbe,0x5e,0xcd,0x91,0x79,
+  0xf0,0x14,0xdd,0x63,0xd6,0xe4,0xe2,0xf3,0x28,0x2e,0x34,0xf4,0x87,0x24,0x9f,0xe2,
+  0xeb,0x8b,0xfa,0x78,0x19,0xa8,0xca,0x91,0x36,0xed,0x29,0x13,0xfd,0x21,0x1a,0xb0,
+  0x0d,0xc2,0xbc,0x8c,0x18,0x2f,0x15,0x02,0x70,0x30,0x16,0x55,0xd5,0xf6,0x6f,0x04,
+  0x60,0x81,0x11,0x31,0x23,0xb1,0x39,0x4a,0xba,0x47,0xd5,0xe9,0xea,0x58,0xfd,0xa0,
+  0x58,0x5f,0xa0,0xde,0x96,0x78,0xc6,0xe8,0x98,0xfd,0x95,0x83,0xdb,0xa3,0xc6,0x54,
+  0x6a,0x09,0xbe,0xa7,0x61,0x6e,0xf2,0xd7,0xd0,0xde,0xb7,0x33,0x27,0xe7,0x09,0x7f,
+  0x4f,0xf6,0xb2,0x0b,0x74,0x5a,0x9b,0x07,0xc1,0xb3,0xe4,0x1c,0xbd,0x90,0xba,0xc6,
+  0x44,0x37,0x38,0x61,0x9c,0x87,0xbf,0xa7,0x6b,0x27,0xe4,0xb1,0x4a,0x81,0x29,0x38,
+  0x5e,0xd3,0xb4,0x73,0x38,0x70,0xbe,0xa5,0xdd,0x18,0xed,0x59,0x90,0x7f,0x74,0x52,
+  0x3e,0x0b,0x47,0xfb,0x0e,0xe6,0x71,0xbc,0x26,0x3c,0xf8,0x45,0xe7,0x1d,0x47,0xaf,
+  0x95,0x25,0xfd,0x11,0x7d,0xb0,0x3f,0x86,0x55,0xbd,0x1b,0x3d,0xff,0xea,0x42,0xfc,
+  0x82,0xe8,0xa0,0xda,0x5e,0xaf,0x50,0xaa,0xa7,0xcc,0xfe,0x58,0x3a,0xbf,0x2f,0x1d,
+  0xd1,0x8f,0xe2,0x58,0xbc,0xe1,0xe0,0x17,0x6b,0xbb,0xb9,0x31,0x47,0xd2,0x90,0xa1,
+  0xe1,0x61,0x6c,0xfb,0x69,0xfe,0x1e,0x17,0xbf,0x8c,0xa6,0xf1,0xc0,0x14,0xe9,0x30,
+  0xd1,0x3f,0x87,0x43,0xc3,0xc3,0x07,0x98,0x91,0x87,0xa3,0xd0,0x8e,0x93,0xad,0x72,
+  0xc4,0xc5,0xaf,0x67,0x48,0xe7,0xb3,0xac,0x39,0x38,0x74,0x9d,0xe8,0xde,0xbb,0xce,
+  0xc6,0x3f,0x82,0xce,0xc1,0x62,0xfc,0xea,0xc0,0x21,0xf0,0xeb,0xe1,0x61,0x58,0x34,
+  0x8c,0xef,0x59,0x0f,0x6f,0xf3,0xf7,0x14,0xe2,0xd7,0xdc,0x01,0xac,0x06,0xc2,0x31,
+  0x56,0x43,0x7d,0x92,0xf8,0x4d,0xac,0xcf,0x04,0xd6,0xe7,0xac,0x17,0xbf,0xa2,0x13,
+  0x55,0xb9,0x7a,0x50,0xa9,0x76,0xe5,0x39,0x6c,0xbb,0x09,0x3f,0xcb,0xe8,0x13,0x97,
+  0x22,0x7e,0xd9,0xeb,0x8b,0xad,0x9d,0xb9,0x6f,0xa0,0xe7,0xaf,0xd7,0x77,0x64,0xaf,
+  0x48,0x21,0x16,0x1c,0x30,0xee,0xcd,0xec,0xce,0x23,0x7e,0x0d,0xdb,0xf8,0x15,0x80,
+  0x3f,0x67,0x96,0x8e,0xfd,0x9f,0x5f,0x68,0x68,0x05,0x33,0xfb,0xd8,0x50,0x20,0xd6,
+  0x60,0x2a,0x6f,0x64,0x63,0x83,0x95,0x8b,0x11,0xbf,0xc0,0xc6,0xaf,0xbf,0x87,0xa5,
+  0x2f,0xe2,0x8c,0x9a,0x30,0x3e,0xd0,0xae,0x1d,0x9a,0x37,0x21,0x27,0xe1,0x3d,0xd6,
+  0x8a,0x09,0x79,0xa4,0x00,0xbf,0x4e,0xb1,0x6e,0x51,0xde,0x22,0x07,0xd8,0x1a,0xcc,
+  0xab,0x47,0xe1,0x00,0x4e,0xec,0x2e,0x17,0xbf,0x70,0xed,0x44,0x4d,0x5c,0x32,0x23,
+  0xb8,0x64,0x9a,0x0d,0x7f,0x77,0x7c,0x04,0xee,0x82,0x16,0xb3,0x04,0xbf,0xc6,0xb1,
+  0xaa,0x67,0xa5,0xbd,0xb4,0x39,0x7f,0xe9,0x66,0x72,0x52,0xff,0x07,0x34,0xae,0xda,
+  0x4c,0x0a,0xf1,0xcb,0xc4,0x71,0x7f,0x0b,0x68,0x36,0x6c,0x5e,0x1c,0x23,0x7f,0x24,
+  0xf7,0x23,0x90,0x55,0xc5,0xea,0x0b,0xf1,0x8b,0x06,0xb2,0x2d,0x1f,0xd0,0x33,0x89,
+  0x03,0x34,0x98,0x95,0xa7,0xe0,0x35,0x68,0xa7,0x35,0xd9,0xca,0x0f,0x14,0xc3,0xc5,
+  0xaf,0x0e,0xe6,0xd9,0xf2,0x91,0x49,0x03,0x8d,0x3e,0x9c,0xa2,0x63,0x68,0xd4,0xd2,
+  0xca,0x42,0xfc,0x32,0x02,0xbb,0xba,0xde,0x84,0x23,0x74,0xd1,0xf2,0x40,0x46,0x1e,
+  0xd5,0x5f,0x82,0x76,0xe6,0xe7,0xbd,0xf8,0x85,0xd8,0xa4,0x66,0xae,0xdf,0xa0,0xf7,
+  0x18,0x61,0x23,0xf2,0x20,0xf9,0x03,0xf4,0xe8,0xe1,0x14,0xfa,0xe7,0xbc,0x17,0xbf,
+  0xa2,0x86,0x7a,0x1f,0x19,0xa5,0xdb,0x52,0x57,0x1a,0xea,0x83,0x64,0xaf,0xfe,0x03,
+  0xd8,0x83,0x3e,0xbc,0xa2,0x10,0xbf,0xbe,0x14,0x89,0x91,0x15,0xb8,0xf4,0x74,0x03,
+  0xb1,0x60,0x48,0x66,0xc6,0xa5,0x0c,0x0b,0x04,0x7e,0xd5,0xa4,0x58,0x9d,0x1b,0x03,
+  0x5b,0x5a,0x4e,0xc7,0x87,0x93,0x8b,0xd0,0x90,0x7b,0x12,0x23,0xd7,0xb5,0x37,0xee,
+  0x64,0xf8,0x95,0x14,0xf8,0xc5,0xeb,0xbc,0x32,0x98,0x69,0xbe,0x11,0x3e,0x24,0x9d,
+  0xac,0xaa,0xe7,0xe0,0x43,0x6c,0xc5,0xce,0x4c,0xcb,0x9b,0x15,0x36,0x7e,0x61,0x99,
+  0xce,0x78,0x2d,0x36,0x87,0xe1,0x45,0x12,0x31,0xce,0x87,0x3e,0x93,0xb7,0xeb,0x79,
+  0x17,0xbf,0x0e,0x43,0x5b,0xa8,0x9f,0x12,0x53,0x1b,0x81,0x39,0xaa,0x3f,0x8d,0x03,
+  0xd0,0x0f,0x8f,0x54,0x33,0xfc,0x02,0x17,0xbf,0x20,0x1a,0xf7,0x5f,0x9f,0x3e,0xb7,
+  0xfb,0x1e,0xf4,0xe1,0x97,0x26,0xd5,0x85,0x81,0xef,0xe9,0x38,0xb8,0xda,0xad,0x83,
+  0x3e,0x2f,0x7e,0x19,0x55,0x23,0xe4,0x9c,0xf4,0x8f,0xc6,0xbf,0x4b,0xf8,0x93,0xf1,
+  0x85,0x38,0x01,0x5a,0x8c,0x12,0xfc,0xc2,0x6f,0xef,0x1a,0xd2,0x4f,0xd3,0xf6,0xd4,
+  0xce,0x8c,0xd4,0x4a,0xad,0x7e,0x1e,0x13,0xeb,0x2b,0x22,0xb5,0xf2,0x32,0xb5,0x99,
+  0x96,0x51,0x7a,0x3e,0xcb,0x9a,0xd3,0x85,0x06,0xff,0x2d,0xc4,0xaf,0x94,0x83,0x5f,
+  0x52,0x07,0x09,0xd0,0x1b,0xf2,0xc6,0x30,0xb4,0xeb,0x41,0xb6,0x39,0x39,0xd5,0xd8,
+  0xa9,0x70,0xfc,0xb2,0xb0,0x09,0xf1,0x8b,0xed,0xa3,0x1e,0xad,0x7f,0x47,0xb9,0x7b,
+  0x1b,0xba,0xc1,0x3d,0x97,0xa8,0xe4,0x6e,0x68,0xcb,0x72,0xfc,0x32,0x5c,0xfc,0x8a,
+  0x4e,0xa8,0x4b,0xc8,0x09,0xfd,0x81,0x7c,0x64,0xc0,0xbf,0x90,0xd4,0x92,0x1f,0xd5,
+  0x44,0x07,0x5c,0xfc,0xca,0x22,0x7e,0x5d,0x03,0xd1,0xa4,0xda,0x9d,0x7e,0x11,0x9a,
+  0x00,0xb7,0x19,0x49,0xb2,0xf4,0xca,0x2d,0x30,0xd7,0xf4,0x77,0x5f,0x34,0x26,0xde,
+  0xb3,0x0f,0xf1,0xeb,0x7d,0xba,0x2c,0x1f,0xd8,0x2c,0xbf,0x0c,0x37,0xd1,0x2f,0x30,
+  0xf7,0x75,0x09,0xdc,0x4c,0x97,0xa5,0x10,0xbf,0xde,0x06,0x1b,0xbf,0xd8,0xda,0x31,
+  0xd6,0xe6,0xe4,0x71,0x74,0x05,0x8b,0x58,0x73,0x36,0xf2,0x96,0xd6,0xe4,0xba,0x06,
+  0x2d,0xdc,0xf1,0x9d,0x31,0xd0,0x1f,0xb6,0x46,0x77,0xc9,0x6d,0xab,0xfe,0x85,0x22,
+  0x7e,0x3d,0x81,0xc3,0xf4,0xca,0x7d,0x08,0x88,0x4f,0xc8,0xa6,0x8d,0x5f,0x0f,0x33,
+  0xfc,0x4a,0xa9,0x3f,0x8c,0xd7,0x43,0x0f,0x5c,0x45,0xd5,0x3b,0xe1,0x77,0x74,0x6b,
+  0x16,0xd7,0xd7,0x12,0x0f,0x7e,0xd1,0x43,0xd2,0x5c,0xa9,0x2a,0x1e,0xee,0x86,0x47,
+  0x55,0xfc,0x51,0x8a,0x4c,0xd0,0x7f,0x80,0xe6,0x7c,0xd5,0x1d,0xe8,0x40,0xf8,0xfa,
+  0xd2,0xd9,0xfa,0x22,0x51,0xa3,0x0a,0xc8,0xf2,0x38,0xed,0xdb,0x47,0x23,0x59,0xf2,
+  0x2c,0x4d,0xf3,0xf5,0x45,0x86,0x15,0x4d,0xe0,0x17,0xab,0xf3,0x52,0xb3,0x26,0xbb,
+  0xfa,0x9b,0xf0,0x0e,0x3d,0x80,0x0b,0x4d,0x7e,0x81,0xbe,0x0c,0x07,0x7a,0xe6,0x16,
+  0xe1,0x17,0xae,0x26,0xdc,0xca,0x62,0x73,0x9e,0x6e,0x0e,0xf6,0xb5,0xe4,0x61,0x0c,
+  0x3a,0x32,0xb5,0xcc,0x79,0x7a,0xf1,0xcb,0xdc,0xf1,0x92,0xbc,0xb8,0xf5,0x05,0xb8,
+  0x26,0x1b,0x98,0xac,0xba,0xb0,0xe2,0x8c,0xc1,0xf7,0xfc,0x66,0x01,0x7e,0x85,0x22,
+  0x0f,0xa5,0x03,0xe4,0xb7,0xa9,0x45,0xad,0x81,0x07,0xe3,0x38,0x0f,0xcd,0x36,0x95,
+  0x61,0x93,0x21,0xf0,0x4b,0x8a,0x72,0xfc,0xc2,0x2d,0x71,0x14,0x5d,0x77,0x6b,0x5c,
+  0x4d,0xa7,0xa3,0xfa,0x4f,0x8d,0x36,0xe5,0xd2,0x5c,0x38,0x6f,0xaf,0x2f,0xc4,0xaf,
+  0xd4,0xa6,0x50,0x28,0x9c,0xd6,0xe9,0x2e,0x68,0xc5,0x0d,0x51,0xbd,0xde,0xd3,0x73,
+  0x6b,0x14,0xe4,0x05,0xf6,0xfa,0x82,0x1a,0xfc,0xae,0xc8,0x52,0x35,0x70,0x97,0x5f,
+  0xd7,0x87,0xb5,0x45,0xc6,0x9a,0xb4,0x1c,0xd5,0xf3,0xa9,0x0e,0xa8,0xfc,0x79,0xaf,
+  0x29,0xd6,0x57,0xf6,0xe2,0x0f,0x61,0x4a,0xea,0x08,0xf9,0x07,0x1f,0x18,0x81,0x73,
+  0xb0,0x0c,0x6a,0x07,0x70,0x53,0x78,0x41,0xd4,0x79,0xac,0xc2,0xc1,0xaf,0x29,0xb3,
+  0x63,0x34,0x38,0x2c,0xcf,0x86,0x77,0xd6,0x77,0xe2,0x7e,0xa3,0x61,0xdc,0x7c,0x81,
+  0x76,0x8e,0x46,0x11,0xbf,0xc4,0x7c,0xa6,0x21,0xc6,0xbf,0x70,0x46,0xf5,0xfb,0x37,
+  0xc1,0xd6,0x54,0xdb,0x69,0xf5,0x30,0xb9,0x10,0xdf,0x4e,0xdb,0x4c,0xb5,0x88,0x7f,
+  0x45,0x87,0xfd,0x80,0xdb,0x8c,0x47,0x8c,0xa8,0x81,0xce,0xe1,0x38,0xf4,0x42,0x74,
+  0x58,0x75,0xf1,0xcb,0x27,0xf0,0x6b,0x75,0x3f,0xd9,0x04,0xdb,0xa1,0x0d,0xf1,0x0b,
+  0x7b,0x7e,0xbb,0xd4,0xc6,0x40,0xdc,0xc6,0xaf,0x3a,0x6b,0x6b,0xd4,0xdf,0x10,0x25,
+  0xef,0x40,0x47,0x7e,0x07,0xdb,0x23,0x1d,0x43,0x2f,0x8a,0x1e,0xdb,0xda,0xff,0x58,
+  0xfc,0xcb,0x0c,0x9a,0xf2,0x77,0x16,0x32,0x63,0xe7,0x84,0x8c,0xa3,0x23,0x75,0x9a,
+  0xa5,0xf8,0x15,0xc8,0x6c,0x7f,0x54,0x7b,0x07,0xda,0xe3,0x41,0x36,0x69,0x8f,0xe1,
+  0x93,0x9d,0xec,0x3d,0x2e,0x7e,0x11,0xfc,0x76,0x90,0x6f,0x83,0x9d,0xa0,0x4f,0xe2,
+  0x30,0x5d,0x20,0xdb,0x7d,0x6d,0xa6,0x8b,0x5f,0xa6,0xb2,0x46,0xf8,0x70,0x20,0x8f,
+  0xc2,0x23,0xa0,0x8f,0xe0,0xb2,0x1a,0x67,0xed,0x62,0xfc,0x6b,0x42,0xf8,0x4c,0x5d,
+  0xfb,0x9a,0x84,0x58,0x30,0xa6,0x26,0xd2,0x5f,0x83,0xad,0xd9,0x66,0x06,0x5b,0x27,
+  0x8c,0xad,0xd9,0xb9,0x79,0x79,0xb3,0x3d,0x0f,0x13,0xea,0x1a,0xf8,0x33,0x5d,0x9a,
+  0x0f,0x90,0xae,0x1d,0xf0,0x7b,0x1a,0x33,0x83,0x31,0xf9,0x04,0x7d,0x36,0xbb,0x94,
+  0x19,0x36,0xff,0xc2,0xb9,0xfa,0xf7,0x48,0x8c,0x83,0x80,0x55,0x9d,0xd6,0x3a,0x19,
+  0xd4,0xfe,0xc9,0x98,0x82,0x6b,0x86,0x76,0xee,0xc7,0x3a,0xa7,0x84,0x1f,0xe3,0xfd,
+  0x93,0xc7,0xb9,0xf0,0x28,0xbc,0x73,0x8a,0xe1,0x97,0xfc,0x2f,0xc6,0x31,0xbe,0x99,
+  0x94,0x07,0x2d,0xfc,0xba,0xf8,0x21,0xf5,0x10,0xcc,0x33,0x55,0x43,0xfe,0x0e,0xec,
+  0xd4,0x9b,0x71,0x99,0x93,0x57,0x91,0x7f,0x2d,0x1b,0xd8,0x8e,0xf8,0x25,0x70,0x50,
+  0xb7,0xf8,0x97,0xba,0x2e,0xfc,0x30,0xfc,0x37,0x2a,0xea,0x0c,0x5b,0xf1,0x89,0x7f,
+  0x73,0x7c,0x58,0xf4,0xcf,0x46,0xe5,0x38,0x1b,0x77,0xa4,0x6f,0xf1,0x4d,0xd8,0x64,
+  0x9d,0x35,0xf9,0xb8,0xdd,0xf6,0x97,0xc1,0xc2,0xaf,0x31,0x8e,0x5f,0xca,0x69,0xb2,
+  0x0f,0x7d,0x42,0x0c,0xf1,0x0b,0xd9,0xe0,0x51,0xd2,0xc1,0x80,0xec,0x03,0x31,0x7f,
+  0x12,0x52,0x56,0xe0,0x57,0x4f,0x57,0x5e,0xb1,0x81,0x0c,0x26,0x95,0x3b,0x81,0xf3,
+  0x2f,0xd1,0x2e,0x8d,0x2d,0x3d,0xee,0x45,0x37,0xc0,0x4b,0xcc,0xa5,0x64,0x24,0xe1,
+  0x69,0xd7,0x32,0xfc,0xd2,0x2d,0xfc,0x42,0xff,0x1c,0x36,0x56,0x87,0x48,0x2b,0x6c,
+  0x53,0xda,0x92,0x89,0x0c,0x19,0xe5,0x88,0xe6,0xe2,0xd7,0x62,0x8e,0x5f,0x61,0xc3,
+  0x7f,0x3f,0xd9,0x00,0x3f,0x80,0xb6,0x38,0xc2,0x96,0x28,0xb3,0x3d,0x83,0x0d,0x14,
+  0x3e,0xb3,0x91,0xe1,0x97,0xce,0x7e,0x4b,0xa9,0xef,0xd1,0xa3,0x46,0x35,0xe2,0x57,
+  0x06,0xd1,0xc1,0xe8,0xd2,0xc8,0x51,0x9f,0x8b,0x5f,0xc9,0x03,0x8d,0x41,0xfa,0xf9,
+  0xf5,0xc6,0xa9,0x24,0xab,0x73,0xe5,0x69,0x83,0x21,0x5a,0xd0,0xc5,0x2f,0x0b,0x0b,
+  0xd6,0x8e,0x20,0x36,0x9d,0xd7,0x3a,0x19,0x1f,0x1c,0xc5,0xfd,0x61,0xc7,0xf2,0x9d,
+  0xc8,0xad,0x14,0x07,0xbf,0x5e,0x22,0xe8,0xf9,0x93,0xf2,0xd5,0xea,0x91,0xaa,0x4e,
+  0xa3,0x9a,0xe1,0xf2,0x79,0x58,0x92,0xc4,0x96,0xde,0x65,0xe1,0x57,0x08,0xf9,0x17,
+  0x69,0x93,0xfc,0x54,0x4e,0x29,0xa7,0xe0,0x4a,0x48,0x50,0x32,0x40,0x0f,0xc3,0x52,
+  0xd8,0x8e,0xf8,0x55,0xc1,0xfb,0x39,0x01,0x7d,0x70,0x5f,0x24,0xfa,0x65,0x7f,0x26,
+  0x1c,0xa0,0x3d,0xaa,0xa8,0xb3,0xbe,0x1f,0x22,0x09,0xe4,0x5f,0xf7,0x8b,0xf1,0x0a,
+  0x29,0x02,0xbf,0xfc,0xb9,0x7a,0xde,0xf6,0x44,0x3f,0xef,0x1f,0xa9,0x96,0xe3,0x97,
+  0x28,0xc3,0xf0,0x0b,0xbb,0x77,0x79,0xe5,0x25,0x5a,0x2b,0x39,0xc2,0x41,0x4a,0x66,
+  0xfd,0xb3,0x04,0x7b,0xbe,0x61,0x5f,0xa3,0x35,0x5e,0x1c,0xbf,0x96,0x07,0xef,0x6b,
+  0x18,0x55,0xcf,0xc3,0x22,0x46,0xbb,0xb0,0x81,0x0a,0x2b,0xe3,0x8e,0x97,0x8e,0xf8,
+  0xc5,0xd9,0x16,0xf2,0x2f,0x68,0x27,0x35,0xb4,0x21,0x0f,0xc3,0x38,0xb8,0x3b,0xa8,
+  0x3d,0x5e,0x0c,0xbf,0x96,0xe0,0xee,0x7d,0xf5,0x5b,0xf1,0xc5,0xe8,0xeb,0x9a,0xb3,
+  0xfd,0x6c,0x6e,0xdc,0x8d,0xf4,0x5b,0x2d,0xc2,0xaf,0x88,0xe9,0x5f,0x4c,0x36,0x11,
+  0x9c,0x63,0xef,0x56,0x89,0x39,0xb6,0x89,0xed,0x9a,0x2c,0xfc,0xa2,0x75,0xc8,0xbf,
+  0x0e,0x5c,0x35,0xbc,0xda,0x4c,0x3f,0xa4,0x6e,0xcd,0x35,0x0f,0x1a,0xdd,0xf1,0xd7,
+  0xe8,0x56,0xc0,0xd9,0xdb,0x8d,0xfe,0x87,0xbf,0xa7,0x9f,0xe1,0x57,0x3f,0xc2,0xd6,
+  0x3a,0xf9,0xbb,0xd0,0x95,0xdb,0x7f,0xba,0x66,0xb3,0xfc,0x7a,0xf6,0x57,0xe9,0x65,
+  0xa3,0x88,0x68,0x6f,0x58,0xfc,0xab,0x09,0xf9,0xd7,0xfa,0x45,0x27,0x2a,0xa9,0xbc,
+  0x89,0x83,0x02,0x5b,0x5f,0x99,0x29,0xe1,0x13,0x6c,0xfc,0x52,0x9e,0xc6,0xfd,0x7c,
+  0x47,0x7e,0xed,0x91,0xae,0x8e,0xbe,0x63,0x3d,0x9d,0xf9,0x7b,0xce,0xcb,0x1f,0x21,
+  0xa2,0x75,0xbc,0x89,0x80,0x68,0xe1,0xce,0xbe,0xd0,0xc3,0x26,0x72,0xab,0xbc,0xff,
+  0xcb,0x38,0xb0,0xb8,0xcc,0x87,0xd4,0x3b,0x65,0x44,0xb4,0xdc,0xdc,0x7c,0x70,0x33,
+  0x79,0xbb,0x42,0xb7,0xf0,0x8b,0xf1,0x2f,0xd3,0x6f,0x90,0x59,0xd5,0x5b,0xb5,0x7f,
+  0x47,0xd5,0xdb,0xc9,0x43,0x06,0x7f,0xd2,0xed,0xe0,0x97,0xb2,0x83,0xfb,0x16,0x7f,
+  0x05,0x09,0xa8,0xbd,0x12,0xdf,0x28,0xb2,0x27,0x6d,0x6c,0x7d,0x59,0x6b,0x10,0xf1,
+  0x4b,0xe5,0xbe,0x2e,0xed,0x8f,0xc0,0x0b,0xb0,0x18,0xb7,0xa9,0xf2,0x2f,0xb0,0xf2,
+  0xdc,0x39,0x78,0xf1,0x0b,0xf7,0xfc,0xb8,0xb3,0x1a,0xd7,0xb0,0x39,0x13,0x6d,0xe8,
+  0xeb,0x14,0xd6,0x2e,0x17,0xbf,0x9a,0x2d,0xfc,0x42,0x9f,0xb9,0x59,0xfb,0x67,0x82,
+  0xfc,0x0b,0x7d,0xa6,0xc2,0x9e,0xa0,0x31,0x2c,0xf0,0x6b,0x37,0x6c,0x52,0x99,0x7f,
+  0xf6,0x07,0xfc,0x6b,0x8c,0xed,0x4a,0x78,0x22,0x91,0xab,0x1f,0xe7,0x1e,0x3b,0x92,
+  0xc3,0xed,0xa6,0xc5,0xbf,0xa2,0xc2,0x87,0xf7,0x90,0x14,0xfc,0x08,0xc2,0xb7,0xaa,
+  0xb9,0xb0,0x28,0xa3,0x32,0xfe,0x65,0xe3,0x57,0x33,0xb6,0x6b,0xc8,0x4f,0xab,0x57,
+  0x35,0xf6,0xea,0x59,0x53,0x6d,0x27,0x6b,0x18,0x23,0x1b,0x46,0x76,0x33,0xe8,0xb3,
+  0xf1,0x8b,0x4e,0x27,0x3b,0x47,0x82,0xe9,0xae,0x14,0x7d,0x3d,0xd5,0x6e,0x60,0xbb,
+  0x3e,0xcc,0x4f,0x45,0x3a,0x99,0x9f,0xb7,0xf1,0xeb,0x32,0x74,0x83,0x7a,0xe7,0xf1,
+  0xa0,0xd2,0xf5,0x07,0x65,0x7a,0xc9,0x32,0x73,0xde,0x63,0xf2,0x78,0xdf,0x94,0x8e,
+  0x1e,0x72,0xbf,0xbd,0xd7,0x32,0x9b,0x18,0xff,0x5a,0xca,0xb6,0x2b,0x08,0x64,0xb4,
+  0x93,0x1b,0x21,0x36,0x82,0x1e,0xfe,0xc5,0xf0,0x8b,0xb6,0xe5,0xd1,0xab,0x8f,0x0b,
+  0xe3,0x30,0x39,0x63,0x1b,0x85,0xfc,0x4b,0xb8,0xb8,0x62,0xa3,0x08,0xbf,0xc4,0x7b,
+  0x2c,0x43,0xb3,0x8c,0x82,0xf8,0x21,0xf7,0xc6,0xa5,0xc6,0x88,0x52,0x88,0x5f,0x1c,
+  0xb6,0xb8,0xd1,0x60,0x1b,0x45,0xf8,0x85,0xb4,0x0b,0x71,0xf0,0x58,0xc9,0x7b,0xf8,
+  0xdc,0x10,0xfc,0xab,0x2d,0xaf,0xe6,0xee,0x7a,0x94,0xe1,0xa9,0x5d,0xb1,0x25,0x66,
+  0x09,0xff,0x1a,0x51,0x63,0xe1,0x00,0x77,0xdd,0x97,0x7a,0xda,0x65,0xf3,0xaf,0x3a,
+  0xce,0xbf,0xc6,0xd4,0x3b,0xc9,0xc3,0x02,0x02,0xee,0x24,0xaf,0x21,0x3a,0x5c,0xc5,
+  0xe2,0x87,0xa7,0xdc,0xf8,0xe1,0x9f,0xb3,0x4b,0xdf,0x08,0x20,0x60,0x2a,0xcf,0xd2,
+  0xa5,0x03,0xc1,0x25,0xf2,0x71,0x86,0x68,0x63,0xc1,0x6b,0x1d,0xfe,0xd5,0xf4,0x0b,
+  0x51,0xc3,0xfd,0xf2,0x05,0x63,0x4a,0xe0,0xb2,0x03,0x64,0x85,0xfc,0x0b,0x6b,0x28,
+  0x9f,0x81,0xe2,0x76,0x15,0xf0,0x2f,0xbe,0x52,0x2e,0x90,0xad,0xdc,0xd0,0x5e,0xb5,
+  0x9f,0x14,0xc5,0x0f,0xfd,0x9b,0x6f,0x7d,0x18,0xbe,0xcf,0x8d,0x8a,0xd7,0xac,0x27,
+  0xc5,0xfc,0xcb,0x1f,0xab,0x38,0x0e,0x0f,0xa0,0x51,0xe5,0x69,0x7b,0x21,0xff,0xea,
+  0x41,0xb4,0xda,0x07,0x2f,0x03,0x87,0x2d,0x81,0x68,0x1c,0xbf,0x44,0xdb,0x05,0xff,
+  0xd2,0x18,0xed,0x62,0xdb,0x42,0x0b,0xbf,0x84,0x51,0xc8,0xbf,0x52,0xc1,0x07,0x19,
+  0x04,0x28,0x7c,0xab,0x6f,0x33,0x85,0x22,0xfe,0x95,0x44,0x6f,0xfc,0xa6,0x05,0x5b,
+  0xb8,0xe1,0x2c,0xc4,0x2f,0x2b,0x7e,0x88,0x6c,0x2b,0x3e,0x2a,0x59,0x3f,0x72,0x30,
+  0xce,0xcb,0xbf,0x94,0x28,0x32,0x97,0x7a,0x4e,0x6a,0x58,0x08,0xae,0x0f,0x8d,0x4d,
+  0x3c,0x16,0x27,0x96,0x97,0xe0,0x5f,0x6d,0x34,0xf8,0x63,0x99,0xc3,0x16,0xf8,0x3d,
+  0x75,0x3e,0x23,0xf3,0xfa,0x58,0xfc,0x0b,0x6b,0x08,0x4e,0x55,0xf7,0xda,0xc6,0x9b,
+  0x95,0x2e,0x7e,0x41,0xa7,0x21,0x8f,0x74,0x9d,0x83,0xe2,0x76,0x59,0x18,0x67,0xf1,
+  0x2f,0x16,0x2d,0x2c,0x35,0xbc,0xf1,0x43,0x5e,0xd5,0xbb,0x86,0x22,0xfb,0xa5,0xa8,
+  0x21,0x23,0x7e,0xd9,0x95,0x77,0xe3,0x87,0x50,0xdc,0x64,0x4f,0xdb,0xf9,0xb8,0x23,
+  0x7e,0x69,0x2f,0xf1,0x6f,0x97,0x9c,0x6a,0x38,0xc6,0x98,0x15,0x1b,0x04,0xf6,0x1e,
+  0x46,0xbb,0x3e,0xe7,0x96,0x09,0x38,0xfc,0x8b,0x7f,0x44,0xfc,0x90,0xf5,0x46,0x8b,
+  0x4b,0xae,0x71,0x70,0x97,0xf0,0xf8,0xa1,0xf5,0x1e,0x16,0x3f,0x84,0x79,0x69,0xff,
+  0x28,0x79,0x3b,0xf2,0x24,0x69,0xeb,0xf1,0x33,0xfc,0x7a,0x92,0xc5,0x64,0xb3,0xf2,
+  0xdd,0xd6,0x7b,0x70,0x7d,0xe1,0xd4,0x1a,0xf4,0x2f,0xd2,0x70,0x6a,0x49,0x9c,0x76,
+  0x1d,0x97,0x1e,0x61,0x88,0x16,0xab,0x38,0xaa,0xb8,0xf1,0x43,0x31,0x7b,0xc5,0x34,
+  0xee,0xb1,0x0d,0x7c,0xd2,0xef,0xc6,0x0f,0x19,0xff,0x42,0xb6,0xf5,0x1a,0x1a,0x73,
+  0xf3,0x95,0xcc,0xf8,0x23,0x23,0x62,0xde,0xf8,0xa1,0x58,0x29,0x19,0xb6,0x64,0xa4,
+  0xc2,0xb5,0xe3,0xc6,0x0f,0x8d,0xe9,0xcc,0xb2,0x0d,0x81,0xc3,0x72,0x07,0x4c,0x67,
+  0x3a,0x47,0x6b,0x26,0x39,0x7e,0xa1,0x63,0x3c,0xef,0xc6,0x0f,0x11,0x65,0xb2,0x73,
+  0x53,0xea,0x62,0x52,0xcb,0x16,0x3e,0x5b,0x0e,0xaf,0xe1,0xba,0x40,0xc3,0xe5,0x5f,
+  0xc6,0x43,0x0a,0xf2,0xaf,0x44,0xa2,0x9b,0xcc,0x52,0x0e,0xe9,0xb7,0x99,0xb8,0x75,
+  0x7c,0x95,0xf2,0x3a,0xdf,0x51,0x14,0x3f,0x64,0xf4,0x3f,0x50,0xe2,0x33,0x9d,0xf8,
+  0xa1,0xb5,0x0f,0xcf,0xf9,0xa3,0x68,0xb4,0x15,0xd4,0x79,0xac,0x80,0x7f,0x71,0xf7,
+  0x2e,0x15,0xfb,0xcc,0x22,0xfe,0xb5,0x76,0x54,0xfe,0x9f,0x7c,0xab,0x7f,0xb9,0x70,
+  0x9e,0xf3,0x98,0xcf,0xcc,0x6f,0xf0,0xf2,0xaf,0xee,0xd5,0x7b,0x71,0x7d,0x15,0x3b,
+  0xea,0x7c,0x01,0x7e,0x75,0xfb,0x73,0x69,0xe7,0x47,0xc2,0xab,0x5f,0xea,0x8d,0x1f,
+  0x1a,0xc8,0x65,0x12,0xfe,0x76,0x72,0x9c,0x22,0x6c,0x99,0xfe,0xf9,0xe4,0xb8,0x7e,
+  0x50,0x43,0x44,0x73,0xf9,0x57,0x00,0xb7,0x10,0x7a,0xc7,0x2d,0xc1,0xf9,0xf2,0xb8,
+  0x3e,0xa5,0x72,0x87,0x66,0x8d,0xce,0x81,0x5e,0x4f,0xfc,0x70,0x2a,0xd4,0xa1,0x04,
+  0xdf,0x63,0x65,0xc2,0xe8,0x06,0xcf,0xca,0x1c,0xd1,0x86,0x83,0x07,0x1a,0x0a,0xe2,
+  0x87,0x1c,0xad,0x2e,0xc0,0xb1,0x58,0x67,0x1e,0xc7,0xeb,0x02,0x9d,0xd6,0xdb,0xcd,
+  0xed,0x93,0x2d,0x1e,0xfc,0xba,0x56,0xa0,0xd5,0x9b,0xb0,0xd3,0x68,0x3b,0x5d,0x7d,
+  0x98,0x7c,0x74,0xe3,0x33,0x91,0x96,0xe3,0xf8,0x64,0xc2,0xc1,0x2f,0x6d,0x81,0xe8,
+  0x79,0xa4,0x27,0xeb,0x23,0x03,0x2a,0x1f,0x0b,0x4d,0x1f,0xdc,0x1e,0x23,0x67,0x0b,
+  0xf1,0x0b,0x5b,0xfa,0x47,0x4e,0xbb,0xaa,0x59,0xff,0x1c,0x84,0x3d,0x85,0xf1,0x43,
+  0xab,0xe7,0x6f,0xf8,0x17,0xf4,0xcf,0x4b,0xcc,0x35,0x62,0x2c,0x78,0xdc,0xef,0x37,
+  0xa5,0xf8,0xd5,0xca,0x8c,0xda,0x89,0x2e,0x31,0x3a,0x2f,0x94,0xf0,0xaf,0x5a,0x9b,
+  0x76,0x2d,0x75,0xfa,0x27,0x27,0xbf,0x58,0x80,0x5f,0xec,0xdb,0x8f,0x23,0xff,0x8a,
+  0xfe,0x16,0xb7,0x10,0x17,0xe0,0x19,0x1c,0xd3,0x52,0xfe,0x55,0x8d,0xcd,0x31,0x70,
+  0x5b,0x38,0xa6,0xda,0x73,0xcc,0x13,0x3f,0x84,0xaf,0x31,0xcf,0xcf,0xd0,0xea,0x23,
+  0xba,0x75,0xcf,0x6d,0xa3,0x55,0x9b,0xc9,0x6b,0xc6,0x21,0x7a,0xdb,0x38,0x3e,0x19,
+  0xb7,0xf1,0xeb,0x2f,0xe0,0xcf,0xb0,0x74,0xac,0x36,0xd6,0x75,0x02,0x18,0xed,0x0a,
+  0xc4,0xe4,0x7b,0xe9,0x9f,0x35,0x86,0x5f,0x0d,0x6e,0xfc,0xd0,0xb0,0xda,0xf5,0x2a,
+  0x56,0x75,0x19,0xb6,0x0b,0x37,0x54,0xd3,0x46,0xe7,0x20,0xc3,0x2f,0x92,0x12,0x7e,
+  0xcc,0xee,0x1f,0x64,0x13,0xaf,0xc4,0x96,0x9a,0xf7,0x20,0xff,0x1a,0x3c,0x96,0xec,
+  0x98,0x88,0xba,0xf8,0x75,0xb1,0x83,0x5f,0xa7,0x60,0x6b,0x64,0xae,0x59,0x8d,0xf8,
+  0xa5,0x6f,0xd5,0xa3,0x47,0x71,0xbf,0x7a,0x56,0xf4,0xb3,0xee,0xe0,0x17,0xf9,0x88,
+  0xe3,0x17,0xd6,0xf9,0x04,0x65,0x9c,0x51,0xdd,0x8c,0xf3,0x90,0xf7,0x0f,0xe3,0x5f,
+  0xce,0xb2,0xea,0xb5,0x3a,0x01,0x81,0x3e,0x6a,0x26,0x18,0x7e,0x69,0x0e,0x7e,0x29,
+  0x0c,0xad,0x2a,0xcf,0x53,0x86,0x5f,0x35,0x9c,0x7f,0xf1,0x88,0xa2,0x93,0xff,0x92,
+  0x6c,0x17,0x57,0x99,0xd7,0x27,0x66,0xc2,0x2f,0xc7,0xf3,0xb3,0x3d,0x7f,0xfb,0xc6,
+  0x80,0xf0,0xab,0xe5,0xe2,0x87,0x96,0x5b,0xd6,0xef,0x50,0xd1,0xe0,0x8c,0xac,0x90,
+  0x7f,0x7d,0xc1,0x2d,0x13,0x36,0x54,0xdb,0xd8,0xee,0xe0,0x17,0xf2,0x2f,0xcd,0xf2,
+  0xfc,0x43,0x74,0xbf,0x9e,0x45,0x07,0x12,0x67,0x86,0x9e,0xf0,0x17,0xc7,0x0f,0xad,
+  0xaa,0x26,0xdb,0x21,0xca,0x8d,0xeb,0xdb,0xcb,0xf0,0xaf,0x60,0x86,0x9c,0x33,0xce,
+  0x6b,0xa2,0xf2,0x68,0x3c,0xbd,0x82,0x61,0x93,0x37,0x7e,0xd8,0x21,0x42,0x8b,0x2f,
+  0x19,0x0b,0x0c,0x1e,0x17,0x3d,0xbf,0xfc,0x40,0x52,0x75,0xe3,0x87,0x21,0x07,0xad,
+  0x4e,0x6b,0xd4,0xd8,0x03,0xd5,0x68,0xc0,0x61,0x25,0xac,0x25,0x1c,0xfc,0x4a,0xf8,
+  0xfa,0x6c,0xb4,0xfa,0xa3,0xef,0xbe,0x94,0xbe,0x5c,0xe5,0xf8,0x95,0xd2,0xd7,0xa9,
+  0x5a,0xf8,0xa4,0x85,0x5f,0x8a,0x83,0x5f,0xe3,0x2c,0x25,0x61,0xdc,0x8d,0x6d,0xd7,
+  0x9e,0xa8,0xd0,0x8d,0x48,0x99,0xf8,0xa1,0xfc,0x07,0x60,0x61,0x43,0xd5,0xee,0xe7,
+  0x80,0x13,0x3f,0x4c,0x48,0x7b,0xbd,0xd0,0xf6,0x5d,0x61,0xbc,0x2b,0x9e,0xbc,0x6c,
+  0xf3,0xaf,0xac,0xa7,0x7f,0xa0,0x1d,0x38,0xff,0x62,0x46,0xc0,0xcd,0x7f,0xf1,0xf8,
+  0x21,0x43,0x2b,0xf2,0x12,0x1a,0xcd,0x8c,0x76,0x31,0xfc,0x0a,0xf7,0x44,0x8a,0xe3,
+  0x87,0x7c,0x5b,0x48,0x9f,0x02,0xbd,0xc7,0xda,0x23,0xe9,0x66,0x7f,0x21,0xff,0xc2,
+  0xf9,0xbc,0xba,0x3b,0xfe,0xa2,0x76,0x48,0x6f,0x26,0x2a,0xc7,0x2f,0x29,0x75,0x1c,
+  0x0d,0x2b,0x7e,0xd8,0x5f,0x80,0x5f,0xfb,0xe7,0xaf,0xaf,0x61,0xc6,0x9f,0xfb,0xe7,
+  0x8f,0x1f,0xdf,0x2c,0xbf,0xed,0xe1,0x5f,0x7c,0xed,0x20,0x76,0x4f,0x69,0x4b,0x25,
+  0xe1,0xe7,0x93,0x4f,0x73,0xfc,0x12,0xeb,0x8b,0xf3,0x2f,0x84,0x2d,0xf4,0x87,0x1f,
+  0x28,0x2f,0xdc,0x3f,0x5f,0x0f,0x30,0xfc,0x7a,0x01,0xf1,0x6b,0xd3,0x64,0x8b,0x1d,
+  0x3f,0x0c,0xed,0x80,0x43,0x39,0x5c,0xef,0xdd,0x71,0x13,0xb6,0xa6,0x9b,0x95,0xea,
+  0x6e,0xf9,0x04,0xfd,0x67,0x65,0xde,0x50,0xcd,0x92,0x82,0xfc,0x97,0x8e,0x6b,0xf0,
+  0x76,0x72,0xca,0xf8,0x3e,0x5c,0x61,0xcc,0xe9,0x26,0x3b,0x18,0x67,0x34,0xd5,0x3b,
+  0xbc,0xfc,0xeb,0x29,0xc1,0xb6,0x06,0x10,0xc4,0x5b,0x81,0xaf,0xaf,0x07,0x48,0x54,
+  0xc4,0x0f,0x0b,0xf0,0x0b,0x6b,0x78,0x26,0xfc,0x3a,0x3c,0x06,0x91,0x5c,0xcb,0xa3,
+  0x48,0xc4,0x38,0x4f,0x29,0x8c,0x1f,0x72,0x44,0x83,0x77,0xd8,0x16,0x82,0xf9,0xba,
+  0x77,0xca,0xf0,0xaf,0x6b,0xcc,0x9a,0x89,0x86,0x33,0xfa,0x2b,0xd0,0x09,0x35,0x02,
+  0xbf,0x82,0xa6,0x1b,0x3f,0xdc,0xcd,0xf1,0x2b,0x8c,0x4c,0xea,0xfa,0xa3,0x6c,0x3f,
+  0xaf,0x81,0x17,0xbf,0xc0,0x83,0x5f,0x57,0x9a,0x55,0xc8,0xc8,0xe8,0x8f,0xa0,0x2d,
+  0x54,0x55,0x50,0x86,0x8f,0x85,0xda,0x18,0x60,0xef,0x39,0xa5,0x32,0x16,0xd9,0x6b,
+  0x44,0xc1,0xf2,0x99,0x9b,0x46,0x3c,0xf8,0x55,0x73,0x9b,0x31,0xa5,0x2f,0x3a,0x59,
+  0x93,0x93,0xdf,0x5a,0xf1,0x7a,0xaa,0x03,0x6a,0xd8,0x58,0x70,0xef,0xf7,0x98,0xc3,
+  0xbf,0x9a,0x2e,0xc0,0x94,0xd1,0x31,0x1c,0x9c,0x20,0x93,0xfd,0x53,0x75,0x3c,0x6c,
+  0xf8,0x27,0x1d,0xcb,0x0c,0x07,0x0f,0x16,0xc4,0x0f,0x05,0x7e,0x7d,0x04,0xaf,0x0b,
+  0xfe,0x75,0x06,0xf8,0x7e,0xe3,0x70,0x61,0xfe,0xab,0x6d,0x78,0xbb,0xa0,0x5d,0x57,
+  0xe6,0x57,0xcf,0xc8,0xbf,0x06,0xfd,0x31,0x98,0x99,0x7f,0x35,0x15,0xf0,0xaf,0x2b,
+  0x0b,0xf0,0xbd,0x84,0x7f,0x35,0x8c,0x6b,0xaf,0x88,0xc9,0xf6,0x29,0xf8,0x97,0x2c,
+  0x46,0xa7,0x34,0x7e,0x38,0x03,0x8f,0xf3,0xe2,0x57,0x7e,0xbb,0x97,0x0f,0xda,0x46,
+  0x21,0xff,0x1a,0x2a,0xc7,0x2b,0xe3,0xde,0xfc,0x17,0x9d,0xfb,0x96,0xa0,0x5d,0x69,
+  0x0e,0x0a,0x16,0x97,0xb9,0xd3,0xe5,0x5f,0x01,0xc1,0xb6,0x38,0xed,0x02,0xe4,0x5f,
+  0x31,0xf9,0x04,0x33,0x4c,0x7c,0xe2,0xe0,0xd7,0xa3,0xac,0x39,0x43,0x95,0xb9,0x96,
+  0x71,0x4e,0xed,0x59,0x9d,0x0d,0x2b,0x56,0x50,0xc4,0xbf,0x58,0xff,0xa8,0x56,0xe8,
+  0xe3,0x63,0xf8,0x97,0xd8,0xa6,0xca,0xb6,0xb1,0xbd,0x84,0x7f,0xfd,0x08,0xab,0xaa,
+  0x58,0x40,0x36,0x33,0xff,0x22,0x3c,0x50,0x5f,0x30,0xa6,0x45,0xf9,0x2f,0x46,0xbb,
+  0xd4,0x0f,0x4a,0xf8,0x97,0xc0,0x2f,0x4f,0xfe,0xab,0xc4,0x28,0xe4,0x5f,0x09,0x2f,
+  0x1d,0x28,0xc3,0xbf,0xd4,0x19,0xf9,0x45,0x21,0xff,0x9a,0x89,0x83,0x88,0xf5,0x25,
+  0xf2,0x5f,0x88,0x05,0x71,0x87,0xc2,0x78,0xb8,0x8c,0xee,0xe0,0x97,0xc4,0xa3,0x85,
+  0xa5,0x75,0x76,0xf3,0x5f,0x4a,0x71,0x55,0x99,0x31,0xdb,0xf0,0xe0,0x17,0xc7,0x8b,
+  0x6b,0x92,0x65,0xdb,0xf5,0xa6,0x17,0xbf,0xc2,0x9f,0xc8,0xbf,0x9e,0x90,0x5a,0x59,
+  0x86,0x6e,0x48,0x2d,0xad,0xb3,0x85,0x95,0x7b,0xc1,0x42,0x73,0x84,0xad,0xe2,0xb6,
+  0x7b,0xf1,0x8b,0xa5,0x7e,0x2a,0xcb,0xf0,0xaf,0x02,0xfd,0x46,0x61,0x19,0xd5,0xe1,
+  0x5f,0xa2,0x8c,0x85,0x5f,0x81,0x72,0xfd,0xe3,0xea,0x37,0x94,0x27,0xa5,0x36,0x1b,
+  0xb6,0x0a,0xf8,0x97,0x47,0xbf,0x21,0xb1,0xdc,0x84,0x54,0x2e,0x6e,0xe3,0xea,0x37,
+  0x54,0x16,0xaf,0xab,0xf2,0xd0,0x2e,0xc7,0x18,0xf6,0xf2,0x2f,0xdc,0x7e,0x0b,0xfe,
+  0xe5,0x10,0xb1,0x65,0x65,0xf8,0x57,0x6d,0x19,0x9f,0xd0,0xe5,0xe5,0x5f,0xe9,0x8e,
+  0x51,0x06,0x5b,0xc2,0x0d,0x72,0x23,0x53,0xc8,0xbf,0x1e,0xa6,0x87,0xb2,0xf3,0xf2,
+  0x35,0x31,0xac,0xc6,0xfb,0x70,0x1b,0xab,0xc6,0x6b,0x76,0x7d,0x8a,0xf0,0x4b,0xf5,
+  0xd6,0x59,0x39,0xa4,0x30,0xe3,0xd6,0x21,0x83,0xf7,0x8f,0xc5,0xbf,0x0a,0xc2,0x1a,
+  0x65,0xf9,0x97,0xc4,0xf8,0x57,0x57,0xa9,0x1f,0x3b,0x53,0x82,0x5f,0xe3,0x1c,0xb6,
+  0x9c,0x32,0x3b,0x0b,0xf9,0x97,0xd4,0x39,0x50,0xe0,0x33,0x43,0x96,0x51,0xa8,0xdf,
+  0x30,0xfc,0xe5,0xfc,0x61,0x21,0xff,0xca,0x97,0x2b,0x53,0xef,0xf2,0x2f,0x0d,0x5b,
+  0x31,0xbc,0x7d,0xa1,0xa7,0x5d,0xba,0xe5,0x33,0xad,0xf8,0x06,0xf2,0xaf,0xcc,0x54,
+  0xaa,0x63,0x04,0xd1,0xca,0xad,0xbc,0xc1,0x8d,0xc7,0xe5,0xbc,0xc8,0xa7,0x64,0x2f,
+  0xc3,0x27,0x1b,0x3b,0xff,0x12,0x69,0x97,0x53,0xe7,0x71,0x6a,0x19,0x1e,0xfc,0x72,
+  0x86,0x09,0xf1,0x8b,0xb7,0x2b,0x3b,0xd5,0x7a,0xed,0x70,0x60,0x32,0x5c,0x88,0x5f,
+  0x76,0x9d,0xe7,0x8d,0xf8,0xff,0x27,0xf9,0x50,0x39,0xa4,0xcd,0x1b,0x61,0x31,0xcf,
+  0x32,0xf1,0xc3,0x07,0x20,0x3a,0x22,0xc6,0x42,0xd9,0x34,0xa4,0xce,0x84,0x5f,0x1e,
+  0x23,0x52,0x86,0x7f,0x61,0xbb,0x5e,0x71,0xfd,0xf3,0x9d,0x3c,0xff,0x55,0x8a,0x5f,
+  0x8a,0x95,0xf6,0x62,0xa3,0x73,0xb5,0xb9,0xb6,0x1c,0x7e,0xa1,0xa1,0x75,0x98,0xd1,
+  0x9c,0xbf,0x8d,0x1b,0x25,0xf8,0xc5,0xaa,0xf1,0x27,0xe3,0x29,0x73,0xde,0xb9,0xc4,
+  0x87,0x64,0x19,0x3c,0x93,0x7c,0x24,0xef,0xff,0x65,0x11,0x7e,0xb1,0x76,0x9d,0xd0,
+  0x1e,0xe8,0x8f,0x0e,0x84,0x62,0x64,0x87,0x7e,0x90,0xea,0xcf,0xfb,0x97,0x92,0x42,
+  0xfc,0xb2,0x21,0x20,0xfa,0x46,0xff,0xe2,0x34,0xce,0xf0,0x4c,0xf3,0x28,0xe2,0x97,
+  0x57,0xbf,0x01,0x3c,0xdb,0xb5,0x43,0x67,0x86,0xe0,0x5f,0x74,0xf1,0x40,0x70,0x49,
+  0xaf,0x47,0xbf,0x31,0xcd,0xea,0xcc,0x9a,0xc3,0x60,0xab,0x72,0xa2,0xf7,0x3b,0xa9,
+  0xe9,0x75,0x4b,0xcc,0xe0,0xbb,0xc5,0xf8,0x55,0x7b,0xb8,0xb2,0x0d,0x8e,0xd1,0xf6,
+  0x61,0xe4,0xa7,0x68,0xf4,0xfd,0xee,0x78,0xe0,0xf0,0xf2,0x39,0xc5,0xf8,0x75,0xe5,
+  0x2c,0xd8,0x0a,0xeb,0x4f,0xaa,0xdf,0x22,0xb3,0xb2,0x5b,0xf5,0xf5,0x83,0x89,0x6e,
+  0x52,0x5f,0x88,0x5f,0xd5,0x9b,0xc9,0xec,0xc6,0xad,0x7d,0xcd,0x79,0xf5,0x4e,0x32,
+  0x9b,0xf6,0x66,0x9b,0x4f,0x23,0xff,0x8a,0x15,0xe3,0x57,0x75,0x80,0xf4,0x42,0xd6,
+  0x8c,0x08,0x43,0x67,0x46,0x7d,0x21,0x7e,0xd5,0x66,0xe5,0x08,0x93,0xd9,0x30,0xda,
+  0xc5,0x8c,0x45,0xcc,0x58,0xf2,0xf1,0xf8,0xb5,0xb4,0x14,0xbf,0x6c,0x77,0xba,0xd4,
+  0x08,0x68,0xb2,0x50,0x11,0x04,0x4a,0xf9,0x17,0x93,0x6d,0x3c,0x61,0x74,0x24,0x23,
+  0x0f,0x56,0x5f,0xc1,0x10,0x2d,0xa9,0x3e,0x58,0x8a,0x5f,0xe9,0x51,0xfd,0x09,0xb5,
+  0x2d,0xae,0x66,0xd2,0xad,0x3a,0x3e,0x89,0x47,0x32,0xe9,0x12,0xfc,0x12,0x10,0x90,
+  0x50,0xeb,0x89,0x42,0x59,0xc4,0x43,0x2d,0xe5,0x5f,0xbe,0xae,0x01,0x63,0x22,0xb9,
+  0xb4,0x31,0xe0,0x93,0x25,0x63,0xf2,0x46,0x6e,0xd8,0xf8,0x75,0x71,0x41,0x9d,0x97,
+  0xac,0x08,0xde,0xc7,0xf9,0x57,0x47,0x39,0xfe,0xd5,0x88,0x7c,0xe7,0xbc,0xd1,0x71,
+  0x3d,0x0b,0x90,0xc2,0x7f,0x31,0x3a,0xfe,0xb2,0x44,0xbf,0xe1,0xc0,0x96,0xea,0x4f,
+  0x93,0xbc,0x79,0xd8,0xc0,0x27,0x83,0xe9,0x92,0xf8,0x21,0x79,0x91,0x3e,0xae,0xcf,
+  0x4d,0xf8,0x6f,0x20,0x2f,0x46,0x1f,0x8f,0xff,0xa7,0x84,0x3f,0x59,0x26,0x7e,0x78,
+  0x0e,0x7e,0x09,0xf3,0x0c,0x3f,0x13,0x72,0x58,0x46,0x29,0xff,0x12,0xc6,0x4e,0x6e,
+  0x48,0x4b,0x0a,0xf4,0x1b,0x7b,0x4b,0xa0,0xcd,0x31,0xbc,0xfa,0x0d,0x31,0x94,0x31,
+  0xb8,0x80,0xfb,0xf9,0x5a,0x13,0xb7,0xbb,0xc7,0x09,0x6e,0x92,0xcd,0x52,0xfe,0x55,
+  0xcd,0x8d,0xec,0xa5,0xfb,0x58,0xfe,0x2b,0xdd,0x46,0x57,0xe7,0x8b,0xf9,0x17,0xae,
+  0xaf,0x00,0xf3,0x1b,0xf9,0xd5,0x8b,0x99,0x03,0xa1,0x5e,0xfc,0xca,0xda,0xf1,0xc3,
+  0xcd,0xe8,0xd7,0x1e,0x83,0xb9,0xc4,0x6f,0xa4,0x07,0xe1,0xc1,0xaa,0xdb,0xc0,0x6f,
+  0x90,0x22,0xfd,0x46,0x70,0x63,0xcb,0x25,0xf0,0x1e,0x5d,0x96,0xad,0xdd,0x88,0x54,
+  0xf1,0x77,0x68,0x04,0x37,0x3a,0xfc,0xab,0xe6,0x51,0x11,0x5e,0xcb,0x5a,0xcd,0x79,
+  0x01,0xdb,0x55,0xf1,0x96,0xc4,0x72,0xac,0x36,0x7e,0x81,0xe3,0x0f,0xfd,0x1d,0xcc,
+  0x48,0xcd,0xfa,0x81,0xdc,0x01,0x47,0xd2,0x0b,0xd8,0x7e,0xde,0x74,0xf5,0x87,0x16,
+  0x24,0x61,0x7d,0xb2,0xff,0x1b,0x55,0xd9,0x17,0xdc,0x9b,0x6d,0x8e,0xfa,0xd5,0x22,
+  0xfd,0xa1,0xe9,0x4f,0x91,0x10,0xfc,0x5c,0xbb,0x0a,0x54,0x83,0x24,0xa0,0x4f,0x5f,
+  0x4f,0x2f,0xdd,0x58,0xa0,0xdf,0x60,0xdc,0x53,0x27,0x5c,0x74,0xc4,0xf2,0x5f,0x1b,
+  0xa0,0x57,0xec,0x40,0x8a,0xf8,0x97,0x3f,0x27,0xb3,0x32,0xdc,0x8f,0x6d,0x20,0xc7,
+  0xe0,0x00,0xcb,0x0b,0x97,0xe3,0x5f,0x1f,0x88,0x41,0xd9,0x07,0x13,0x62,0x0f,0x59,
+  0x14,0x3f,0x0c,0xe6,0xe5,0x09,0xe3,0xb8,0xb6,0x80,0x72,0xe3,0x04,0x2c,0x50,0x02,
+  0x03,0x32,0x38,0xf8,0x25,0xf2,0x5f,0xd9,0xfa,0x71,0xe4,0x5f,0xbc,0x1a,0xe3,0xea,
+  0x36,0xc2,0x18,0x19,0xd1,0x0b,0xf3,0x5f,0xd5,0x39,0xdc,0x1a,0xfd,0x80,0x97,0xa9,
+  0x18,0xe5,0x64,0xbf,0x3a,0x43,0x74,0x8f,0x7e,0x43,0x8c,0xe9,0x30,0x49,0x43,0x9e,
+  0xfa,0xc3,0x64,0x38,0x9e,0x5e,0xa0,0xf7,0x47,0xc2,0xd5,0xc4,0xd5,0x6f,0x30,0x5c,
+  0x9e,0xad,0xcb,0x79,0xe5,0x94,0xde,0x0e,0xc1,0x74,0x6f,0x1e,0x86,0xd5,0x03,0x52,
+  0xa0,0x4f,0x06,0x3b,0xff,0xe5,0xd4,0x19,0xfd,0xa1,0x26,0xfc,0x3c,0x9d,0xd6,0x11,
+  0xf5,0xde,0xeb,0x75,0xf0,0xeb,0x8c,0x67,0x9b,0x41,0x99,0x7e,0x43,0x7e,0x5a,0x9a,
+  0xee,0xe3,0x4f,0x6c,0xfd,0x86,0x76,0xc6,0x93,0xf6,0xea,0xf9,0xa6,0x19,0xf9,0xf8,
+  0xfc,0x97,0x64,0x89,0xd6,0x76,0xcc,0xc0,0xbf,0x64,0x1b,0xb6,0xb0,0x5b,0xc6,0x15,
+  0x9b,0x7f,0x41,0x29,0x7e,0x4d,0x09,0xd9,0x06,0xfb,0x2d,0x81,0x3b,0x50,0x82,0x5f,
+  0x25,0x86,0x83,0x5f,0x51,0xf7,0x3d,0x4f,0x15,0x6d,0xba,0xbc,0xfa,0x0d,0xb1,0x73,
+  0xc0,0x32,0x52,0xdb,0x8b,0xac,0x3e,0x70,0x6d,0x39,0xfe,0x65,0x6d,0x8d,0x94,0xe8,
+  0x48,0xb5,0x37,0xff,0xa5,0x78,0xf1,0x8b,0xc5,0x0f,0x5f,0xd3,0xbe,0x4f,0x6b,0x58,
+  0x08,0x0e,0x81,0xac,0x8f,0x3f,0x71,0xf0,0xab,0x96,0xe1,0xd7,0x38,0xe2,0xd7,0x71,
+  0xe3,0xcf,0x30,0xdb,0xac,0x8d,0x09,0x22,0x96,0xe7,0xfa,0x0d,0x0f,0x7e,0x75,0x0e,
+  0x61,0x0d,0x3d,0xed,0x9a,0x12,0x86,0x15,0x3f,0xdc,0xe7,0x3b,0xe1,0x49,0x7b,0xe1,
+  0x04,0x58,0xcb,0x36,0x66,0x0c,0xe8,0xd7,0xe6,0x5a,0x3c,0xfc,0x6b,0xab,0xb5,0xe5,
+  0xd3,0xc4,0x42,0x93,0x1f,0x2a,0x93,0xff,0xda,0x5a,0x44,0xbb,0x1e,0x2e,0xe5,0x5f,
+  0x6a,0x6f,0xd1,0xb6,0x70,0x47,0x29,0xff,0x22,0x5f,0x2e,0xa2,0x5d,0xfb,0x3e,0x05,
+  0xff,0xca,0x96,0xe7,0x5f,0x65,0x7d,0xa6,0x54,0x3e,0x7e,0xf8,0xaf,0xe6,0x5f,0xf1,
+  0x19,0xf0,0xab,0x88,0xcb,0x14,0xe2,0x97,0x55,0x67,0x26,0x3b,0x2c,0xc3,0xbf,0x66,
+  0xf6,0xf3,0x36,0x7e,0x49,0xe7,0x98,0xfe,0x90,0xff,0x48,0x42,0x23,0x19,0xb0,0xcb,
+  0x5c,0x8e,0xf8,0x35,0x43,0xfe,0x2b,0xf8,0x71,0xf9,0x2f,0x4f,0x9d,0x25,0x61,0x84,
+  0xcb,0xe4,0xbf,0x1a,0x9f,0x60,0xd3,0x58,0x18,0xb5,0x85,0xf9,0x2f,0xb7,0xaa,0x4c,
+  0xa8,0xe9,0xd4,0xd9,0xcf,0xf2,0x5f,0x9f,0x80,0x5f,0x97,0x67,0x1a,0x4a,0xf1,0xcb,
+  0x49,0x7b,0xe5,0x19,0x63,0x85,0xb5,0x6e,0xfe,0xcb,0x8d,0x1f,0x32,0xda,0x75,0xed,
+  0x1e,0x74,0x8c,0x1e,0xfe,0x55,0x80,0x5f,0x76,0x5a,0x79,0xc0,0x71,0x20,0x0c,0xbf,
+  0x94,0x42,0xfc,0xb2,0xb8,0x0c,0xf5,0xf2,0xaf,0x62,0xfc,0x2a,0xc7,0xbf,0xde,0x2e,
+  0xe4,0x5f,0x41,0xb6,0xcc,0xa7,0x80,0xcb,0xe6,0x8b,0xf3,0x5f,0x0c,0xbf,0xa6,0x32,
+  0x4b,0xf3,0x51,0xdb,0x1f,0xfa,0x3c,0x44,0xcc,0x83,0x5f,0xd7,0x64,0xa3,0x63,0x82,
+  0x5b,0x91,0xb9,0x7d,0x41,0x51,0x9f,0x28,0xe3,0x56,0x85,0xf8,0x35,0xec,0xf0,0x2f,
+  0x2f,0x11,0x2b,0xc2,0x2f,0x2b,0xbc,0xd6,0x46,0xbd,0x0b,0xad,0x08,0xbf,0xa2,0xa2,
+  0xce,0x6d,0x10,0x10,0xc6,0x77,0x8b,0xf5,0x1b,0x3c,0x9d,0x27,0xce,0x05,0x68,0x8e,
+  0xd3,0x0b,0xe6,0x2a,0x8b,0xf1,0x6b,0x42,0x66,0x4e,0x66,0x81,0x5e,0xeb,0xf1,0x99,
+  0x85,0xfa,0x43,0x4e,0x2b,0x18,0x90,0xc5,0xd4,0x19,0xf9,0x17,0x2f,0xa3,0x3c,0xa5,
+  0xb4,0xf5,0xf3,0x1c,0xd0,0x7f,0xe7,0x4f,0x2a,0x5c,0xfd,0x06,0xcb,0x7f,0x9d,0xb2,
+  0x9b,0x43,0xed,0x9c,0x0b,0x92,0x9a,0x0a,0x8f,0xfe,0x70,0x2a,0xd2,0xf1,0xb2,0x35,
+  0x04,0x7f,0x4b,0x6b,0x73,0x5f,0x74,0xc8,0xa3,0xa3,0xdf,0xb8,0x40,0x79,0xb4,0x50,
+  0x54,0x75,0x19,0x0d,0xda,0x9a,0x93,0xe0,0x44,0xcb,0x18,0xb1,0xf0,0xeb,0x45,0xfa,
+  0x82,0x88,0x16,0x7e,0x64,0x87,0x0d,0x71,0x04,0xf5,0x79,0x1e,0xfd,0x86,0xa9,0xfd,
+  0x21,0xbd,0xcd,0xc1,0x2f,0x46,0x1e,0x0f,0x87,0xcf,0xc0,0x33,0x26,0x7f,0x32,0x66,
+  0xc7,0xe7,0x87,0x52,0x3d,0xc5,0xfa,0x0d,0xe5,0xa0,0xb6,0xa9,0x00,0xbf,0xf6,0xc6,
+  0xb6,0x95,0xf2,0x2f,0x85,0x1b,0x93,0xd6,0x58,0x34,0xbd,0x13,0x2f,0x96,0x25,0x8c,
+  0x5b,0x51,0x6b,0xd9,0xd4,0x75,0x81,0x5f,0x4f,0xc2,0x87,0x5e,0xd8,0x42,0xda,0x75,
+  0x41,0xb3,0xf5,0x87,0x2b,0x74,0x81,0x5f,0xfd,0xf4,0x88,0xfb,0x9e,0xf6,0x72,0xf1,
+  0xc3,0x7e,0xdf,0x17,0x32,0x9e,0xfa,0xcc,0x11,0x40,0xf6,0x8c,0x85,0x5f,0x14,0x04,
+  0x7e,0x19,0xe0,0xf1,0xe1,0x7a,0x41,0x03,0x27,0x44,0x99,0xac,0x54,0x0f,0x5b,0x3c,
+  0xb2,0x0d,0xcb,0xc8,0xce,0x15,0xfa,0x0d,0xfe,0x49,0xa8,0x2a,0x19,0x10,0xd1,0xc2,
+  0xe3,0x30,0xc5,0xf4,0x87,0x3c,0x90,0x98,0x5d,0x3a,0xb6,0x36,0xe6,0xe4,0xbf,0xee,
+  0xc9,0x79,0xda,0xc5,0xf6,0x1b,0xef,0x32,0xfc,0x52,0x79,0x03,0x47,0x84,0xae,0x09,
+  0xf9,0x57,0x89,0x1c,0x05,0x8d,0x54,0xc7,0x80,0x47,0x7f,0x78,0xdf,0xc3,0xe9,0x2d,
+  0x45,0x61,0x16,0x34,0x54,0x6e,0x58,0xf9,0x0b,0x0a,0xf7,0x0e,0x6e,0x29,0xc2,0x2f,
+  0x16,0x48,0xbc,0x8d,0x09,0x39,0x4c,0x1b,0xbf,0x4e,0x40,0xc9,0x98,0x32,0x4e,0x5d,
+  0x80,0x5f,0x4f,0xe8,0x47,0x8b,0xf0,0x8b,0x19,0xdf,0xe5,0xf8,0x65,0xbd,0x07,0xf2,
+  0x61,0x37,0xd7,0xaf,0x14,0xc5,0x0f,0xc5,0x58,0xa8,0xda,0x10,0x1c,0x71,0x5c,0xa5,
+  0xad,0x73,0x78,0xd7,0xce,0x7f,0xf1,0x32,0x54,0xf9,0x86,0xbe,0xcd,0x0b,0x49,0x97,
+  0x72,0x43,0xd9,0x23,0xf0,0x8b,0x7f,0x10,0xbf,0x0c,0xab,0xcc,0x5e,0x6f,0x0c,0x2d,
+  0x2c,0x7c,0xb8,0xf0,0x63,0x8a,0x92,0xee,0xf1,0x62,0xc1,0xa5,0xdc,0xd0,0xf5,0x02,
+  0xfc,0x5a,0x6f,0x0c,0x3b,0x50,0x9b,0x74,0xf4,0x1b,0x5c,0x71,0x77,0xa6,0x82,0xaf,
+  0xaf,0xe1,0xcb,0xce,0x19,0x1f,0x5a,0x75,0xf6,0x04,0x12,0x45,0x22,0xec,0x8c,0xad,
+  0xdf,0x78,0x9f,0x0e,0xd8,0x3f,0xfa,0xd0,0x38,0x50,0x00,0x0a,0x6f,0x4b,0x7c,0x2c,
+  0x36,0x6b,0x6f,0x98,0xfd,0x0e,0x7e,0xe9,0x2c,0x90,0x58,0x8f,0x86,0xc1,0x9f,0x3c,
+  0xef,0xe8,0xe7,0x15,0x51,0xe7,0x8a,0x21,0x21,0x9e,0xe4,0x75,0x36,0xb8,0xe6,0xe4,
+  0xa4,0xc4,0xfb,0x27,0xf4,0xd5,0xbd,0x74,0x5b,0x51,0x93,0x3d,0xf1,0x43,0x5e,0x26,
+  0xdb,0xb8,0x97,0x1c,0xa1,0x85,0xdd,0x5b,0xac,0xdf,0xd8,0x08,0x7b,0xf5,0xf3,0x19,
+  0x07,0xb6,0x9e,0x2e,0x10,0x7b,0xbc,0xdc,0xc7,0xcb,0x20,0x7e,0x21,0x74,0xb4,0xbb,
+  0xf9,0xaf,0xcb,0xbd,0xf1,0x43,0xab,0x8c,0x72,0x2d,0xdc,0x8d,0x4c,0x9c,0xe3,0xd7,
+  0xd3,0x30,0x07,0x8d,0xf8,0x98,0xf2,0xa4,0xc2,0xf1,0x6b,0x90,0x17,0x41,0xac,0xbc,
+  0x8d,0x38,0xd2,0xd6,0x83,0x5a,0xe1,0xfa,0x1a,0xb4,0xe3,0x1b,0x8d,0xfa,0x4e,0x7a,
+  0x85,0x3d,0x9f,0xaf,0x2a,0x8c,0x1f,0x1a,0xdc,0x67,0x46,0xd4,0x5a,0xe5,0x8f,0x74,
+  0xbf,0x80,0xad,0x69,0x3a,0x1f,0xa7,0xb1,0x27,0x7e,0x58,0x21,0xc6,0xfd,0xb2,0xac,
+  0xcf,0x39,0xf6,0x55,0x64,0xd8,0xf9,0x2f,0x76,0xfe,0xeb,0x05,0x6b,0x3f,0x6f,0x9c,
+  0xa7,0x48,0xbb,0x26,0x2b,0x99,0xa2,0x03,0x9f,0x3c,0x21,0x9f,0xb2,0x34,0x81,0x75,
+  0x8f,0x85,0xb7,0xea,0xd6,0xb2,0x7a,0x22,0x77,0x35,0x4b,0x72,0xbd,0xca,0x02,0x2f,
+  0x26,0x2e,0xfc,0xb7,0x45,0x19,0xa0,0x0f,0xc2,0x56,0xd5,0x0a,0x1b,0x3e,0x0e,0x5c,
+  0x03,0x7c,0x8b,0xc8,0x88,0xdd,0x41,0x46,0x29,0x2f,0x93,0xc2,0xf5,0xd5,0x4b,0xad,
+  0x65,0xf5,0x04,0xb4,0x3a,0x9b,0x64,0xb1,0xbe,0xc4,0x77,0x35,0xfd,0x13,0x39,0x46,
+  0xc5,0x32,0xc7,0x39,0xc6,0xfd,0xd8,0x26,0x27,0x7e,0x68,0xaf,0xe5,0x51,0xd7,0x15,
+  0x9c,0x07,0x0b,0xc8,0xfe,0x2c,0x82,0x57,0x96,0x7f,0x46,0xfc,0x22,0x2f,0xc0,0x02,
+  0xe1,0x5b,0x3e,0xcc,0x2e,0xb0,0x9d,0xe7,0x02,0xa4,0xcd,0x76,0xfc,0x90,0x2a,0x2b,
+  0x71,0x2c,0xd8,0x69,0xa6,0xf8,0x38,0xd6,0x67,0x8e,0xed,0x18,0xc3,0xe6,0x97,0x90,
+  0x5f,0xd8,0xf8,0x75,0x1b,0xa3,0x66,0xce,0x8f,0x06,0x98,0x7e,0x43,0x7b,0x4a,0x09,
+  0x8b,0xf8,0xa1,0xe8,0x67,0x68,0xc5,0x32,0x59,0xd3,0xbf,0x30,0xce,0x44,0xe9,0x11,
+  0x0b,0x0b,0x62,0xd9,0xa1,0x8b,0xdb,0x9d,0xfc,0x97,0xba,0x01,0xf7,0xe1,0xed,0xa6,
+  0x88,0x1f,0x26,0xdb,0x99,0x68,0x0d,0x91,0x3a,0xd1,0x3e,0x12,0xcc,0x3d,0x90,0x17,
+  0xe3,0xe5,0xf0,0x2f,0xc7,0x1f,0x7a,0xf6,0xf3,0x6e,0xfc,0x50,0xe2,0xb0,0xb5,0x59,
+  0xee,0x86,0x21,0x7a,0x4d,0x3e,0x38,0xec,0x0a,0x11,0x2d,0xfe,0x65,0x72,0xfd,0xe1,
+  0x37,0x4f,0x23,0x5a,0x5d,0xc9,0xce,0x2f,0xe7,0xfd,0xbb,0x38,0xff,0xba,0xd3,0xc3,
+  0xbf,0x86,0x57,0x1e,0x57,0xf9,0xac,0xcb,0x91,0xb8,0xb6,0x9b,0x8d,0x05,0x94,0xe6,
+  0xbf,0xa4,0x47,0x1b,0x9f,0x12,0xdb,0xc2,0x56,0xba,0x8d,0x5e,0x69,0xfa,0x77,0xa5,
+  0x6d,0xe0,0xb0,0xf9,0x97,0xd6,0x24,0xa0,0x0d,0xc7,0xe2,0x56,0x32,0x90,0x5d,0x64,
+  0x06,0x77,0x70,0x47,0xdd,0x56,0x96,0x7f,0x91,0xf7,0xc8,0x87,0x70,0x6d,0x39,0xfe,
+  0x95,0x74,0xe2,0x87,0xbd,0x60,0xbc,0xa5,0x2f,0x31,0x83,0x7b,0x67,0xe6,0x5f,0xb3,
+  0xb0,0x5d,0x2f,0x99,0x61,0xb3,0x4c,0xfe,0xcb,0xd6,0x6f,0xf0,0xf8,0xc6,0x1e,0x26,
+  0x8b,0xd2,0x3c,0xf8,0x25,0x34,0x0c,0x13,0xda,0xd7,0x10,0xad,0xd0,0xf3,0x4f,0x92,
+  0xcb,0xe1,0x41,0xa6,0x9f,0x5f,0xe7,0x82,0x82,0xab,0x9f,0x37,0x10,0xad,0xf2,0xc1,
+  0x45,0xbd,0x01,0xfa,0xfb,0x7d,0x8b,0xcd,0x60,0x1d,0xcb,0x7f,0xd1,0xa5,0x66,0xa5,
+  0x47,0x3f,0xff,0x0b,0x8d,0x47,0x38,0x47,0xe4,0x57,0x61,0x92,0x8d,0xd7,0x6f,0xe4,
+  0x0b,0x86,0x15,0x51,0x1c,0x11,0xf8,0xae,0xba,0xd9,0xc0,0xa8,0xf2,0xac,0xd4,0x6e,
+  0x56,0xba,0x40,0xd6,0x62,0xe1,0xd7,0xb0,0xa3,0xdf,0x90,0xd7,0xc0,0x8f,0xf9,0x7a,
+  0x77,0xf8,0x57,0xbd,0x57,0x3f,0xdf,0x33,0x37,0xbf,0x7d,0x6c,0xd5,0x45,0x48,0xc4,
+  0x76,0xe7,0xfd,0xdf,0xf1,0xd4,0xb9,0x48,0xbf,0x71,0x11,0x59,0x03,0xbb,0x25,0x2e,
+  0x72,0x76,0xf8,0x97,0x47,0x3f,0xff,0x24,0x83,0xad,0xbc,0xbc,0x38,0x7c,0x02,0x0e,
+  0xd0,0xe0,0x98,0x37,0xff,0x65,0xe9,0x01,0xb2,0x92,0xcb,0x65,0xf4,0x62,0xfe,0x25,
+  0xda,0xc5,0xf4,0x1b,0x12,0x7a,0xc8,0xfb,0xfd,0x0a,0x1c,0xd1,0xdb,0x0b,0x80,0xcc,
+  0xc6,0x2f,0xd8,0x00,0x6f,0x31,0x6f,0xac,0x35,0x6c,0xd0,0x7b,0x68,0x47,0x39,0xfe,
+  0xb5,0xd8,0xd7,0x2a,0x59,0xd0,0x76,0x25,0x0f,0x6b,0x78,0xcb,0x14,0xe8,0xe7,0xa3,
+  0x46,0x95,0x46,0x56,0xa0,0xc3,0x2f,0x24,0x35,0xae,0x7e,0x5e,0xb1,0xa0,0x56,0x67,
+  0xfa,0xf0,0xb2,0xf9,0xaf,0x3a,0x76,0xa4,0xab,0x6d,0xf9,0xb1,0x64,0xc3,0xb9,0xbf,
+  0xe0,0xc7,0xbe,0x46,0x4a,0xb4,0x85,0xbb,0x7c,0xa3,0xca,0x4b,0x4a,0xc7,0xf2,0xb5,
+  0x23,0xf2,0x42,0xfa,0x1c,0xe2,0x45,0xaf,0x07,0x2f,0x9e,0x97,0x8a,0xf4,0x1b,0x72,
+  0x4a,0xeb,0x87,0x39,0x02,0xc8,0xc6,0x2c,0xfe,0xe5,0xd1,0xcf,0x43,0x94,0x9d,0xd4,
+  0xf6,0x69,0xdb,0x1c,0xfc,0x12,0x75,0x3e,0x29,0x70,0xd0,0xd5,0x6f,0xc0,0x86,0xf8,
+  0x36,0x75,0x8e,0xb1,0xfd,0x3e,0x32,0xaa,0xfc,0xd4,0xce,0xfd,0xf1,0x3e,0xb4,0xf4,
+  0xf3,0x46,0x70,0xd6,0xef,0x5b,0x61,0x80,0x1d,0x43,0xdb,0x45,0xec,0xfa,0x54,0x14,
+  0xeb,0x37,0xee,0xb7,0xab,0xba,0x8b,0x1f,0x5e,0xeb,0x28,0xd0,0xcf,0x3b,0x23,0x08,
+  0xec,0x7c,0xa5,0x35,0xa6,0x84,0x3f,0xf1,0xe8,0xe7,0x59,0xfe,0xab,0xea,0x0d,0xb2,
+  0x18,0xee,0x85,0x30,0xbd,0x14,0x81,0x4c,0x2b,0xcf,0xbf,0xfc,0x6a,0xf5,0x36,0x92,
+  0xee,0x69,0x35,0x57,0x7b,0x88,0x98,0xa3,0xdf,0x40,0xbe,0x83,0xb3,0xb7,0x2a,0x49,
+  0xee,0xd1,0xb6,0xa8,0xcd,0x6e,0x3e,0xf7,0xd2,0x42,0xfd,0x3c,0x8f,0x1f,0xca,0x0f,
+  0xc3,0x0a,0x7a,0x75,0x01,0x7e,0xb9,0xfa,0x79,0xbe,0x52,0x7c,0x1a,0x42,0xc0,0xf9,
+  0xa2,0x4d,0xa0,0xa5,0x9f,0x37,0x94,0x7f,0x12,0x6a,0xc3,0x61,0x79,0x0e,0x9c,0xa0,
+  0x3c,0x6c,0x78,0xc6,0x98,0x12,0x1b,0x7b,0x57,0x3f,0xcf,0x6a,0x98,0xf7,0x27,0xc9,
+  0xc3,0x3f,0xeb,0xa5,0x88,0x4d,0x77,0xa6,0x4f,0xc0,0xa1,0x3d,0xb8,0xbe,0xfe,0xab,
+  0x47,0x3f,0xcf,0xd4,0x86,0x03,0xfe,0x51,0x12,0x32,0xee,0x85,0xf5,0x0c,0xb6,0x5e,
+  0xa5,0x87,0x74,0x2f,0xff,0x4a,0xd9,0xfa,0xf9,0x10,0xd9,0x09,0xbd,0x26,0x62,0xf7,
+  0x52,0x0f,0xff,0x72,0xf4,0xf3,0x22,0x7e,0xf8,0xd0,0x7f,0x20,0x70,0xd4,0x3c,0x60,
+  0x62,0x35,0x9c,0xf5,0x6e,0xf1,0xaf,0x8c,0xa5,0x9f,0x5f,0xfb,0x3d,0x79,0x3c,0xf3,
+  0x81,0x56,0x56,0x7f,0x98,0xb5,0xf5,0x87,0x23,0x72,0x14,0x4e,0x84,0x18,0x7e,0xf5,
+  0x2e,0xb5,0x7d,0xa6,0xa5,0x9f,0xdf,0x6f,0xf3,0xaf,0xd9,0xa4,0x0d,0x4e,0xea,0x7b,
+  0x58,0x35,0x9c,0x8c,0xcf,0x98,0xf7,0xfc,0xd7,0x37,0xcd,0xd5,0xbb,0xc8,0x1c,0xfb,
+  0xe8,0xae,0xc3,0xc8,0x3c,0xfa,0x0d,0x6c,0xc5,0xf3,0xc7,0x32,0xd5,0x01,0xfa,0xc3,
+  0x18,0xb6,0xeb,0x00,0xd9,0x61,0x22,0x23,0xc3,0x17,0xa6,0x2d,0xfd,0x7c,0xba,0xc6,
+  0x41,0xe1,0x48,0xf6,0x68,0xa2,0x9d,0xc9,0x0e,0xa3,0x74,0x2a,0xc6,0xf4,0x87,0x36,
+  0xff,0xda,0xdd,0x74,0xc1,0x78,0xa6,0xaa,0x63,0x38,0x98,0x44,0xda,0x75,0xd6,0x02,
+  0x32,0x73,0x3a,0x26,0xf0,0xcb,0xe2,0x56,0xbe,0xd7,0xe0,0x43,0xba,0x20,0x55,0x3b,
+  0x29,0x2f,0x82,0x0b,0xb0,0xe0,0x74,0x60,0x12,0xb7,0xcd,0xbf,0xb6,0xf4,0x1b,0x2d,
+  0x22,0x7e,0x18,0x1a,0xc5,0x1a,0xea,0x2c,0xdc,0x17,0xe5,0x70,0x83,0xc6,0x18,0xb2,
+  0x92,0x25,0x88,0x5f,0xf1,0x09,0xea,0x89,0x1f,0x86,0x99,0x44,0x2d,0xc0,0x79,0x4a,
+  0x55,0x2c,0x3e,0x6c,0x33,0x97,0xb3,0x62,0x7d,0x99,0xbe,0xbd,0x3a,0x42,0xf6,0x50,
+  0x15,0x7f,0x0f,0x55,0xd9,0x7b,0x86,0x89,0x25,0x5c,0x9f,0xb4,0xf6,0x2d,0x2c,0x7e,
+  0x48,0x73,0x66,0x2d,0x4f,0x57,0xd1,0x76,0x24,0xce,0x58,0xd5,0x63,0x19,0xde,0xd2,
+  0xe1,0x14,0x2f,0xc3,0xf1,0x2b,0xc3,0x64,0x87,0xb8,0x47,0x7a,0x1f,0xb8,0x16,0x74,
+  0x12,0xc7,0x82,0x03,0xd9,0xa4,0xc8,0x8d,0x3a,0xe7,0xbf,0x6c,0xfd,0xe1,0xe5,0xd8,
+  0x51,0xc6,0xb1,0x18,0xdf,0xc0,0xbc,0xe8,0xe0,0x97,0xb6,0x3d,0xd9,0xf6,0xaa,0xfa,
+  0x78,0xc5,0x9f,0x0c,0x34,0x5e,0xf4,0x3f,0x4e,0x22,0xb0,0xdd,0x58,0xc4,0xf1,0x4b,
+  0x9c,0xc1,0x34,0x95,0x04,0x3f,0x03,0x95,0xc8,0xb9,0x47,0x9f,0xaa,0xc5,0x64,0x8b,
+  0xd9,0x1c,0x2d,0xa5,0xfd,0x2d,0x54,0xd2,0xb9,0x22,0x6c,0x68,0x05,0xe5,0x2e,0x41,
+  0xe3,0x0a,0x66,0x5c,0x10,0xb3,0x39,0xa1,0x26,0x78,0xfe,0x2b,0x1a,0x23,0xe3,0xe4,
+  0xd9,0xe5,0x4b,0xcd,0xd5,0x39,0x7f,0x04,0x9e,0x65,0x44,0xec,0x0b,0xf2,0xcb,0xa2,
+  0x8c,0xd1,0xf4,0x98,0x43,0xbb,0x0c,0x2b,0x90,0x38,0x49,0x6c,0xfd,0x86,0xc5,0x53,
+  0x7c,0x63,0xea,0x94,0xbd,0x0d,0x3b,0x26,0x1a,0x38,0x26,0x76,0x32,0x39,0xf9,0x28,
+  0xe1,0x65,0xb8,0xfe,0x90,0xf0,0x2d,0x1f,0xcb,0x7f,0xcd,0x63,0xb1,0x8b,0x53,0xec,
+  0xfe,0x0d,0xf6,0xe4,0xac,0x15,0xbb,0x30,0x7e,0xc8,0xee,0x34,0x60,0x35,0x9c,0x0d,
+  0x5b,0xfb,0x79,0xe5,0x5f,0xb6,0xeb,0x6c,0x8a,0xfa,0x70,0xfc,0xd2,0xf4,0x51,0x6c,
+  0x69,0xad,0xd1,0x6b,0xf2,0x40,0x07,0x8e,0x57,0xcf,0x5e,0xbe,0x3f,0x14,0xef,0x19,
+  0x6b,0x9a,0xa4,0x1f,0x50,0x76,0x6c,0x19,0xc1,0xed,0x04,0xed,0x60,0xd7,0x6e,0x9c,
+  0xc2,0x85,0xbf,0x88,0xe1,0x97,0xf5,0x5d,0xce,0xf9,0x2f,0xee,0xe2,0x54,0x1b,0xc8,
+  0xb4,0x25,0x02,0xbf,0x44,0xbb,0x10,0xbf,0x8e,0x08,0x15,0x5c,0x6b,0xa1,0xc1,0xf0,
+  0x4b,0x94,0x61,0xf1,0x43,0x76,0xed,0x46,0x24,0x53,0xdd,0x4a,0xb6,0x91,0x3d,0xc6,
+  0xdc,0x4c,0xf5,0x15,0xb0,0xcd,0xe0,0x20,0x35,0x21,0xc6,0x6b,0xb1,0x4f,0x41,0xce,
+  0xc8,0x8e,0x24,0x57,0xd8,0x06,0x69,0x0d,0x6f,0x53,0xbd,0xfc,0x8b,0xe1,0x97,0xf5,
+  0x23,0x34,0x90,0x76,0x25,0xb0,0x0c,0x3e,0xc9,0x16,0xf1,0x2f,0x9a,0x6c,0x17,0x69,
+  0xaf,0xe1,0xeb,0xda,0x1b,0xfb,0xb7,0xa0,0x61,0x26,0x39,0x90,0xbd,0x07,0x96,0xfe,
+  0xf0,0x1c,0x6e,0x9f,0xac,0x63,0xcb,0xd3,0x96,0xfe,0x50,0x65,0x40,0xb6,0x35,0x23,
+  0xbf,0xe1,0xb3,0xf0,0xeb,0x0f,0x2c,0x35,0x66,0x04,0x1e,0x94,0xff,0xc0,0x9a,0x93,
+  0xe4,0xc2,0xbf,0xf3,0x06,0x2f,0xfc,0x86,0xa3,0xdf,0xa0,0x48,0xbb,0x54,0x95,0xc1,
+  0x56,0x3f,0xe3,0x5f,0x69,0x34,0x7e,0x21,0xf0,0xeb,0x79,0x2b,0xbe,0xb1,0xb2,0x8f,
+  0xfe,0x52,0xbd,0x2a,0xae,0x5e,0x4f,0xce,0xd1,0xef,0x25,0x9a,0x0d,0x7f,0x32,0xcd,
+  0x12,0x61,0x51,0x63,0xbb,0x86,0x03,0xc7,0xfb,0x87,0xe1,0xd7,0x2f,0xf5,0x16,0x43,
+  0x1d,0x21,0xe7,0xc8,0x65,0xec,0xd8,0xf2,0x08,0x4b,0x84,0xe9,0x1c,0xbf,0xce,0x58,
+  0xfc,0xab,0x89,0xd1,0xae,0x25,0xa9,0x68,0x46,0x1e,0x82,0x1f,0x14,0xf2,0xc1,0xca,
+  0x31,0x7b,0xbc,0x90,0x7f,0x41,0x07,0xab,0xea,0x9b,0x89,0xb7,0xf4,0x82,0x40,0x62,
+  0xc3,0x49,0x31,0xe7,0x19,0x7e,0x9d,0x02,0x07,0xdf,0x39,0x7e,0xe9,0xf0,0x2a,0x1c,
+  0x60,0x28,0x3c,0x68,0xc7,0x0f,0xaf,0x82,0xbb,0x29,0x47,0x2b,0xee,0xeb,0x98,0x11,
+  0x81,0x7b,0x7b,0xc2,0x5e,0xfe,0xe5,0xfb,0x0a,0x3c,0x40,0xdb,0xd8,0xd6,0x28,0x80,
+  0x3e,0x41,0x37,0xab,0x99,0x71,0x3f,0x67,0x64,0x15,0x56,0xae,0x9f,0x5e,0xd7,0x01,
+  0x77,0xa9,0x73,0xc1,0xbf,0x89,0x84,0xf4,0x9f,0x18,0xcd,0xd4,0xbf,0xa9,0x62,0x11,
+  0xdc,0xd5,0xcf,0xe7,0xb3,0xc9,0x5d,0x26,0xe2,0x57,0x07,0xfc,0x33,0x43,0x2b,0x91,
+  0xb7,0x7a,0x9c,0x19,0x4b,0xe0,0x75,0x24,0x62,0xc1,0xcd,0x2d,0x83,0x61,0x51,0x67,
+  0xc4,0x02,0x9e,0x1e,0x62,0x21,0x82,0x97,0xed,0xf4,0xd0,0x14,0xcc,0xe6,0x6b,0x47,
+  0xe0,0x8e,0xa1,0x3c,0x89,0xde,0x0f,0x61,0xeb,0x25,0xf9,0x77,0x84,0x1b,0xa7,0x90,
+  0x7f,0x5d,0xe0,0x44,0x4c,0x1e,0xd9,0xc3,0xcb,0xec,0x0b,0xed,0x82,0x1d,0xd0,0x0c,
+  0xfe,0x2f,0x93,0x93,0xd9,0x3e,0xb8,0x8a,0xfa,0x57,0x93,0xdf,0xd1,0x1c,0xbd,0xca,
+  0x64,0xe7,0xbf,0xac,0xb1,0x80,0x5d,0xfa,0x16,0xb6,0xe2,0x92,0x38,0x5e,0x96,0x71,
+  0x4a,0xf9,0x25,0x03,0xbb,0x6e,0x64,0x37,0xbc,0x4c,0x4a,0xd9,0x8e,0x7b,0xb2,0x70,
+  0x2b,0xdf,0xae,0x50,0x03,0xf9,0x29,0xa0,0xb1,0x3f,0x13,0x61,0xd1,0x54,0x6b,0x8f,
+  0x7d,0xb8,0xe9,0x5e,0x72,0x2c,0xcb,0x8f,0x79,0x8e,0x93,0x63,0xc3,0xb8,0x1c,0x98,
+  0x43,0x3b,0xab,0xb4,0x9b,0x2f,0x30,0x6c,0x12,0xeb,0x02,0xf1,0xcb,0x69,0x97,0x65,
+  0x8c,0x32,0x43,0xe8,0x0f,0xc5,0xb8,0x6b,0x17,0xf4,0x17,0xc4,0x69,0xaf,0xef,0xc0,
+  0x2b,0xea,0x82,0x15,0x68,0x6c,0x86,0xd7,0xb9,0xe6,0xad,0x21,0x2f,0xfc,0x2a,0xd3,
+  0x1f,0xde,0x8d,0xb3,0xae,0x3f,0x5b,0x1f,0x61,0xe3,0x05,0x6a,0x96,0xe8,0xe8,0x9f,
+  0xb9,0x3e,0xfc,0xdd,0x15,0x62,0x2c,0x70,0x4f,0xc2,0x62,0x56,0x6a,0x86,0x6c,0xc0,
+  0x0d,0x55,0x98,0x2d,0xa2,0xa8,0xc2,0x2e,0x7f,0xb8,0x94,0xc5,0x0f,0x45,0x3f,0x37,
+  0x46,0xf0,0x9f,0x51,0x60,0xf7,0x2c,0x61,0xe5,0x74,0x88,0x10,0xa2,0xd0,0x7e,0x5d,
+  0x37,0x57,0x3b,0xfc,0x8b,0xd6,0x24,0xd8,0xf1,0x43,0x33,0x70,0xbf,0xbc,0x81,0xbe,
+  0x04,0x07,0x8c,0xc0,0xfd,0xbd,0x11,0x38,0x92,0x40,0xc2,0xf2,0x73,0x39,0x2f,0xe6,
+  0x46,0xb6,0x69,0x92,0xa7,0x56,0x83,0x3d,0x72,0xde,0x60,0x86,0x9f,0xfa,0xf3,0x89,
+  0x77,0x23,0x88,0xc2,0x07,0x7b,0xf3,0x4a,0xa1,0x7e,0x63,0x0c,0x5d,0xa5,0x4d,0x9c,
+  0xed,0x78,0xaf,0x1d,0x3f,0x04,0x2b,0xdb,0xa5,0x87,0x27,0x60,0x7b,0xd1,0xf9,0x2f,
+  0x4b,0x3f,0x3f,0x6c,0xe7,0xbf,0x74,0xd7,0xcf,0x3b,0x7b,0x89,0xb3,0x45,0xfa,0x8d,
+  0x6c,0x38,0xef,0x3d,0x6f,0x55,0xa0,0x3f,0xb4,0xf5,0x75,0x7b,0xe4,0x31,0x1e,0x28,
+  0xf3,0x7b,0xf7,0x12,0x96,0x7e,0xa3,0xce,0xe2,0x5f,0x6f,0xf7,0xe6,0x8d,0xd2,0x44,
+  0x18,0x7f,0xcf,0x8d,0x36,0xff,0x7a,0x4c,0x0e,0xf0,0xf7,0x78,0xf3,0x5f,0xc5,0xfa,
+  0xf9,0xc3,0x69,0x9d,0x14,0xd7,0xc7,0xe1,0x5f,0x5c,0x4b,0xc3,0xda,0xa5,0x7a,0xdb,
+  0xc5,0x63,0x68,0x96,0x7e,0x63,0x02,0xf8,0xf9,0xaf,0xbc,0x7f,0x23,0xb9,0xc4,0x28,
+  0x4e,0x2a,0x5d,0xb0,0xf2,0x5f,0xa1,0x5a,0x93,0xb1,0xad,0x60,0x95,0x3f,0x60,0x3c,
+  0x2b,0x84,0x1c,0xc7,0x85,0xa2,0xa3,0x5d,0x3e,0x99,0xe6,0x4d,0x37,0x66,0x59,0xe7,
+  0xbf,0x70,0x1e,0x0a,0xd9,0xe1,0xbb,0xb6,0xa6,0xd4,0xb9,0x7f,0xc3,0xd1,0xcf,0x63,
+  0x99,0x74,0xc9,0xf9,0x2f,0xd1,0x3f,0xc3,0x12,0xe2,0x97,0xc4,0x73,0xc7,0xa7,0xf4,
+  0xad,0x85,0x81,0xc4,0xf0,0xd9,0x56,0xfe,0x1e,0x47,0x3f,0xbf,0x91,0xbc,0xa6,0x16,
+  0xd7,0xd9,0xd6,0xcf,0xdb,0xfa,0x8d,0x65,0xe9,0x61,0x52,0x3c,0xa6,0x56,0xde,0x6a,
+  0xcc,0x67,0x65,0xbb,0x36,0xca,0xa7,0x88,0x27,0x90,0xc8,0xcf,0xf8,0x7c,0x20,0xc6,
+  0x22,0x51,0x97,0xe5,0xc7,0x96,0xbd,0x21,0x26,0x6e,0x48,0x97,0x97,0xea,0xe7,0xef,
+  0x93,0xf7,0x0a,0x82,0x90,0xe9,0xb2,0x7d,0x26,0xf2,0x4a,0x2b,0xbe,0xe1,0xe4,0xb6,
+  0x5a,0x23,0xdb,0x3e,0x36,0xff,0xc5,0x78,0xca,0x5e,0x76,0x86,0xd7,0x5b,0xa6,0xfe,
+  0x79,0xb1,0x57,0x77,0xf2,0x5f,0x2c,0x0e,0xd0,0x33,0x43,0xfe,0xeb,0x32,0x2b,0xff,
+  0xb5,0x45,0xee,0x59,0x71,0x4a,0xea,0x80,0x32,0xf9,0xaf,0xc3,0x76,0xfe,0x6b,0x44,
+  0x3e,0x67,0xb8,0x5a,0x08,0xc1,0x53,0xce,0x8a,0xf8,0xc6,0x61,0x4b,0xbf,0x51,0xc3,
+  0x30,0x6e,0x5b,0x51,0x52,0xe9,0x27,0x62,0x7d,0x85,0x80,0xf3,0x2f,0xc9,0x1f,0x26,
+  0x79,0xda,0xef,0x4d,0x84,0xf9,0x69,0xf8,0x35,0xc5,0xe6,0x5f,0x0a,0x3b,0xa1,0xb6,
+  0x5d,0x4b,0x3f,0xa7,0x17,0xd7,0xf9,0x7e,0x2b,0xff,0xd5,0x28,0xf8,0x97,0xcc,0x9a,
+  0x5c,0xd4,0x3f,0xd7,0xdb,0xfa,0x0d,0x45,0xf4,0x73,0xcd,0x7d,0x2d,0xa3,0x69,0x27,
+  0x60,0xfb,0x84,0x30,0xf6,0x89,0xf9,0xb3,0xd1,0x1e,0x8b,0xc3,0x2e,0x6c,0xb9,0xf1,
+  0x43,0x8d,0xbf,0xc7,0xc9,0x7f,0xf5,0xc8,0x3a,0x1d,0x2e,0xaf,0x3f,0x54,0x95,0x88,
+  0xc6,0xf8,0x97,0xff,0xd1,0x30,0x3b,0xbf,0x2c,0x12,0x61,0x45,0xfc,0x4b,0x75,0xf2,
+  0xcb,0xe9,0x79,0x25,0x7e,0xc3,0x7b,0x7f,0x14,0xd7,0x6f,0x54,0xd7,0xa8,0xce,0x7c,
+  0xbe,0x86,0x1b,0x71,0x2b,0xff,0x15,0x41,0x4e,0x64,0xb1,0xad,0x4b,0xd4,0x5f,0x15,
+  0xe7,0xbf,0x2c,0xfc,0xb2,0xf3,0x5f,0x07,0xd0,0xb7,0x14,0x6b,0xf9,0xac,0xf8,0x61,
+  0x4a,0x79,0x1a,0xa6,0x58,0xb4,0x70,0x5c,0xfe,0x28,0x51,0xec,0x0f,0x47,0x74,0x91,
+  0xff,0x42,0xf4,0x3a,0x48,0xe7,0xb2,0x10,0x13,0x3f,0x46,0x6d,0xaf,0xaf,0x65,0x2c,
+  0x90,0x68,0x71,0xa2,0x7a,0x5b,0x3f,0x6f,0x90,0xe1,0xe2,0x35,0x68,0x9f,0xff,0x32,
+  0x1a,0x2d,0xfe,0x05,0xf7,0xbf,0x4d,0x7a,0x95,0xc2,0xb6,0x9f,0xb2,0xf2,0x5f,0xbe,
+  0x47,0x15,0xc6,0xad,0xd0,0x8f,0xfd,0xde,0x28,0x5e,0xef,0x96,0xfe,0x30,0xa7,0x59,
+  0x4f,0x8e,0xb7,0xe4,0xbd,0xe7,0xda,0x96,0x78,0xf8,0xd7,0x7d,0x8c,0x7f,0x11,0xf4,
+  0x24,0x93,0x72,0x37,0xbc,0xa0,0x14,0xfa,0x4c,0x2b,0x86,0xe6,0xe4,0xbf,0x08,0x69,
+  0x2e,0xf1,0xcf,0xa7,0x6d,0xfd,0xbc,0x55,0x66,0x37,0xb9,0x8d,0x16,0x97,0xb1,0xf9,
+  0x97,0xb8,0x3f,0xca,0xdc,0x4e,0x49,0x20,0x5d,0x3c,0xa6,0x36,0x7e,0x85,0x36,0xad,
+  0x98,0x0a,0x63,0x55,0x7b,0xe4,0x8d,0xb4,0xb8,0x5d,0x79,0x8b,0x7f,0x5d,0x76,0xa1,
+  0x6f,0x7a,0x21,0x3f,0x73,0x3d,0x56,0xe2,0xe7,0x9d,0xfc,0x97,0x23,0x9b,0x7f,0x0d,
+  0xa7,0xdf,0xc1,0x89,0x5a,0x31,0x5e,0x4c,0x51,0xdf,0x50,0xac,0x3f,0xe4,0xb0,0x95,
+  0x40,0xcc,0x75,0xf1,0x0b,0xc6,0x5c,0xfd,0xc6,0x03,0x76,0x55,0x73,0x31,0x3d,0xc1,
+  0x72,0x76,0x21,0x16,0x07,0x58,0x1d,0x8b,0x17,0xea,0x37,0x06,0x44,0x93,0x75,0x7c,
+  0x8f,0xdb,0xf6,0xf8,0xa4,0xab,0x9f,0x7f,0xc5,0x8d,0xe5,0xb6,0xa7,0x2c,0xdc,0xe1,
+  0xf1,0x43,0xd3,0x57,0x56,0xbf,0xd1,0x3d,0xcf,0x32,0x06,0x4a,0xf9,0x17,0x7f,0xcf,
+  0x5b,0xf8,0x1e,0x16,0x70,0xb3,0x9f,0x68,0x0e,0x7e,0x69,0x4e,0x1a,0xae,0x17,0xc2,
+  0x29,0x7f,0xae,0x3a,0x2a,0xb1,0x1b,0x39,0xf0,0x49,0x3b,0xaf,0x8d,0x57,0xbf,0xf1,
+  0x6b,0xba,0x07,0xeb,0xcc,0x02,0x89,0x9a,0xf5,0x64,0x71,0x19,0xfd,0xe1,0x56,0xba,
+  0x3b,0xe5,0xbf,0x93,0x58,0x88,0x36,0x49,0x42,0x54,0xe0,0x97,0xad,0x3f,0xbc,0x56,
+  0x3e,0x61,0xbe,0x91,0x8d,0x19,0x68,0xd4,0x9a,0x07,0xd9,0xc9,0xf1,0xa7,0xfc,0xf5,
+  0x05,0xfa,0x0d,0xd1,0xae,0xf7,0x75,0xdc,0xd8,0xdf,0x2e,0xda,0x35,0x14,0x9c,0xf8,
+  0x62,0x91,0xfe,0xb0,0xc6,0xca,0xeb,0x5d,0xef,0x1d,0xf7,0x37,0x1c,0xfd,0x86,0xe4,
+  0xa4,0xbd,0x0e,0xf2,0xfb,0xa3,0xdc,0xb5,0x53,0xa4,0x9f,0xaf,0xda,0x7c,0xd3,0x6b,
+  0xda,0x21,0x56,0x67,0xac,0x7c,0xe3,0xa1,0xbe,0xdb,0x66,0xd2,0xcf,0x3f,0xb5,0x5c,
+  0xdf,0xe0,0xcc,0xc3,0xed,0x25,0xfa,0xf9,0x1a,0x06,0x5b,0x1f,0x41,0xee,0x93,0xf5,
+  0xf3,0xc6,0xc7,0xe9,0xe7,0x2d,0xf7,0xbe,0x6f,0x91,0x19,0xf0,0xf8,0xf9,0xb2,0xfa,
+  0x0d,0xdd,0x39,0xdb,0x35,0x83,0x7e,0xe3,0x0f,0xd6,0x65,0x53,0xfc,0x0e,0x8a,0xb6,
+  0xc2,0xfc,0x97,0xab,0x85,0x78,0x22,0x3c,0x87,0xed,0x21,0x6d,0x2d,0x44,0xe1,0xf9,
+  0x65,0xe7,0xfc,0x57,0x47,0x23,0x3f,0xff,0xb5,0xd9,0xc2,0x2f,0x11,0xef,0x2d,0xd0,
+  0x6f,0x7c,0xa8,0x2d,0x2a,0xab,0xdf,0x70,0xf1,0x0b,0xcb,0xc4,0x16,0x18,0x81,0x91,
+  0x06,0x27,0x16,0xf7,0x46,0x39,0xfd,0x61,0x2c,0x4c,0x22,0x9c,0x88,0x95,0xd5,0x6f,
+  0x54,0x59,0xa9,0xba,0x44,0xbf,0x46,0x46,0x03,0xbb,0x8b,0xcf,0x2f,0xbb,0x47,0xb6,
+  0xf7,0x23,0x51,0x55,0x33,0xed,0x36,0x90,0x81,0x8d,0x5f,0x88,0x71,0xe7,0x7d,0x1d,
+  0xcb,0x6b,0x44,0x55,0x73,0x29,0xde,0xcf,0x2c,0xc6,0x58,0x4e,0x3f,0x2f,0xf2,0x29,
+  0x5f,0x2a,0xd0,0x1f,0x8a,0xdc,0x0d,0xc3,0x2f,0xcf,0x51,0xf4,0x76,0x21,0xa4,0x3f,
+  0x5c,0x94,0xff,0x72,0xf4,0x1b,0x6f,0xc1,0xd3,0xf0,0x48,0x8f,0x9a,0xaf,0x2f,0xa3,
+  0x9f,0x87,0x47,0xac,0xf5,0xa5,0x1f,0x60,0x62,0x06,0x9d,0x9f,0x09,0x8d,0x0e,0xc8,
+  0x88,0x5f,0x7a,0x21,0x7e,0x39,0x5a,0x88,0x94,0x83,0x5f,0x6e,0xfe,0x6b,0x36,0xfc,
+  0xd1,0x86,0xad,0x77,0x7b,0x3a,0xf3,0xd1,0x8d,0x33,0xea,0xe7,0xd9,0x92,0xa1,0x3c,
+  0x97,0x94,0x2d,0xd1,0x6f,0x18,0xae,0x1e,0x7b,0x1a,0x3e,0x42,0xda,0x15,0x1d,0xf3,
+  0x77,0x18,0xaf,0xd0,0x6b,0x0b,0xf4,0xf3,0x56,0x34,0x1e,0xeb,0xac,0x1e,0xca,0xb6,
+  0x0c,0x62,0x9d,0x6b,0xd9,0x89,0x66,0xc6,0x22,0x8b,0xf5,0x87,0xac,0xce,0x8f,0xeb,
+  0xcd,0xac,0xce,0xb3,0xe8,0x21,0xfd,0x2a,0xb3,0xda,0x93,0xff,0xf2,0xac,0xaf,0xfd,
+  0x46,0x36,0x8f,0xef,0x71,0x94,0x7b,0x45,0xe7,0x97,0xf9,0x36,0x7e,0xd2,0xc8,0x99,
+  0x81,0x2c,0xf7,0x63,0x4b,0xd8,0x86,0xbc,0x54,0x3f,0xff,0x27,0x38,0x1f,0x7a,0xda,
+  0xd8,0xe9,0xb6,0xab,0xab,0x54,0xbf,0x71,0x81,0x1d,0xe8,0xc8,0x07,0xf2,0xb2,0x1d,
+  0x3f,0x24,0x85,0xfa,0x79,0xfc,0xae,0xf0,0x9f,0xc4,0xd9,0x49,0x3d,0xec,0x28,0xdc,
+  0x9c,0xfc,0x97,0xab,0xf1,0x80,0x9c,0xbe,0x67,0x08,0x39,0x1a,0xfa,0x4c,0x1b,0xbf,
+  0xac,0xf5,0x15,0x50,0x78,0x2b,0xe6,0x93,0xe3,0xea,0xfe,0xd0,0x1e,0x23,0xa2,0x57,
+  0xd7,0xc0,0xc1,0x54,0x74,0xc4,0xbf,0xc8,0xc9,0x7f,0x55,0x39,0xf1,0xc3,0x3f,0x19,
+  0xe7,0xf5,0x45,0x66,0x7f,0x56,0x9e,0x4b,0xa7,0x36,0x76,0x8c,0x30,0xfe,0xe5,0x9c,
+  0x5f,0xe6,0x35,0xbc,0xfc,0xac,0x3c,0x49,0xcf,0x33,0x7f,0x98,0xea,0x1d,0x37,0xc4,
+  0xf9,0xaf,0x2e,0xcf,0xf9,0xe5,0x82,0x6d,0x46,0x80,0x1d,0x64,0x7e,0xa1,0x90,0x7f,
+  0x21,0x7e,0x79,0x69,0x17,0xbb,0x36,0xea,0x23,0xfb,0x49,0xbe,0xc2,0xe2,0x5f,0xe3,
+  0x85,0x5b,0xf4,0xea,0x98,0x4b,0xc4,0x3c,0xf8,0x55,0x00,0xd9,0x5c,0xbb,0xb2,0xbd,
+  0x40,0x7f,0xb8,0xa2,0x69,0xdc,0x7b,0xad,0xc4,0x52,0xce,0x9b,0x6c,0xc5,0xc2,0x4c,
+  0xe7,0xbf,0xe6,0xb2,0x03,0xbf,0x65,0xef,0xdf,0x28,0x80,0x75,0xe7,0x89,0x15,0x8b,
+  0x3b,0xe5,0xd1,0xd2,0xd8,0xc6,0x47,0xb4,0xf8,0xfc,0xd7,0xa6,0x82,0xa3,0x19,0xa7,
+  0x1c,0x0d,0xde,0xa5,0xce,0xfd,0x51,0xb9,0x42,0xfd,0x3c,0x33,0xc2,0xa5,0xf9,0x2f,
+  0x7e,0xfe,0x8b,0xd3,0x2e,0xc9,0x16,0xd2,0xdb,0x8a,0x7a,0xef,0xfd,0xbd,0x22,0x5a,
+  0xe8,0x4c,0xb6,0x0f,0x75,0x9b,0x7f,0x81,0x8b,0x5f,0xf4,0x80,0xdb,0xae,0x00,0x9b,
+  0xb4,0x56,0xbb,0xd2,0x56,0xfe,0x0b,0xd7,0xd7,0x33,0xd0,0xec,0xae,0xf7,0x6a,0xe7,
+  0xec,0xbf,0x73,0x7f,0x14,0x45,0xfc,0x7a,0x46,0xc4,0x0f,0x45,0x55,0x55,0x0f,0xff,
+  0xea,0xf7,0xe2,0x17,0x8b,0xe4,0x84,0x3d,0x63,0x5a,0x9c,0xff,0xda,0xa7,0x7e,0x20,
+  0xb5,0xd3,0x9d,0x36,0x6c,0xe1,0xfa,0x1a,0xb6,0xf1,0xeb,0x49,0x2b,0x9f,0x52,0xa4,
+  0x3f,0xd4,0x0a,0xf1,0x2b,0xe5,0xe0,0x97,0xe7,0x7a,0x8a,0x0d,0x01,0x76,0x3c,0xea,
+  0x25,0x1b,0xbf,0x74,0x0f,0x7e,0x2d,0xb7,0x68,0x45,0x94,0x63,0x93,0xad,0xd6,0x98,
+  0x49,0x7f,0xa8,0x66,0xea,0x47,0xb5,0x1f,0x14,0xe4,0xbf,0x10,0xbf,0xb4,0x02,0x2d,
+  0x1f,0xc3,0x2f,0x9b,0x88,0x79,0xef,0x8f,0xf2,0xd4,0xf9,0x41,0xee,0x9f,0x4f,0xcd,
+  0xa0,0x3f,0x94,0x84,0xe6,0x7f,0x9e,0x75,0x7f,0x94,0x27,0xff,0xe5,0x39,0xbf,0xcc,
+  0x2f,0x42,0x64,0x41,0xb9,0x73,0x9c,0xf8,0xac,0xcd,0xb4,0xcc,0xa8,0x9f,0xa7,0x71,
+  0x17,0xbf,0x2a,0x6c,0x7d,0x54,0xa1,0xfe,0x50,0xd6,0xc8,0x73,0x60,0xd5,0xd9,0xda,
+  0x03,0x94,0xdc,0xbf,0x51,0xe5,0x21,0x62,0xcf,0x8b,0x18,0x7e,0x89,0x7e,0x9e,0x1b,
+  0x47,0xec,0xf3,0x5f,0x82,0x7f,0x95,0xea,0x0f,0x1b,0x46,0x89,0x35,0x3a,0x27,0xcb,
+  0xe8,0x0f,0x99,0x11,0xa5,0x95,0x26,0x58,0x44,0xcc,0x9b,0xff,0x72,0xf4,0x87,0x64,
+  0x5e,0x56,0x15,0xf7,0x47,0x95,0xcd,0x7f,0xd9,0x53,0x0b,0xf7,0xbd,0x27,0x8c,0xde,
+  0x02,0xfe,0x55,0xa8,0x3f,0x94,0xe6,0xbe,0xa1,0x32,0x0a,0x63,0x91,0x9a,0xbc,0xf0,
+  0xe1,0x45,0xfa,0xc3,0xce,0x6c,0x60,0x73,0xfd,0xef,0xc8,0xaf,0x0a,0xf3,0x5f,0x85,
+  0xfa,0x43,0xbe,0xd0,0x1c,0xe5,0x83,0x73,0xff,0xa1,0xa5,0xd6,0x10,0xfe,0xf0,0x1a,
+  0x6e,0xd8,0x81,0x29,0x3b,0xff,0x55,0xf7,0x30,0xe5,0xfc,0xcb,0xab,0x8f,0x32,0xac,
+  0xfa,0x78,0xef,0x8f,0xd2,0x9d,0x32,0x57,0x80,0xdf,0x53,0xe7,0x22,0xfd,0xa1,0xd5,
+  0xf6,0x36,0xb6,0x37,0x1e,0xb2,0x7d,0x66,0x71,0xfe,0x8b,0xaf,0x77,0xb2,0x88,0xc7,
+  0x0f,0xa5,0x63,0x76,0xbc,0xa5,0x18,0xbf,0xd0,0x50,0x66,0x5f,0x57,0xe9,0xe5,0x32,
+  0x0e,0x7e,0x49,0xec,0xfc,0x97,0x2d,0x3b,0x34,0x02,0x13,0xf2,0x8b,0xb0,0xb6,0x20,
+  0xff,0x45,0x19,0x7e,0x11,0xd7,0x1f,0x6e,0x9c,0x9d,0x23,0x6f,0x1a,0xdb,0x0b,0xf3,
+  0x5f,0x45,0x3e,0x33,0xaf,0xba,0xfa,0x43,0xcf,0xfd,0x51,0xe2,0xda,0x0d,0x6c,0x97,
+  0xea,0xf8,0x0d,0x6b,0x97,0xe2,0xde,0x1f,0x95,0x7d,0x4a,0xe7,0x69,0x1d,0x5e,0x55,
+  0xe4,0x32,0xf2,0x28,0x71,0xf4,0x87,0x20,0xf0,0x0b,0x7f,0x14,0x73,0xfd,0xbc,0x81,
+  0x95,0x3f,0x07,0xaf,0x5b,0xfc,0xcb,0xbe,0x13,0x63,0x52,0xe8,0x0f,0x27,0x2b,0xcf,
+  0x2a,0xc7,0xd3,0x52,0x2a,0x98,0x67,0x17,0xa7,0xb0,0xfd,0x86,0xe7,0xfe,0xde,0xb7,
+  0x28,0x47,0xab,0x5c,0x78,0x08,0xfa,0x15,0xe4,0x29,0xfb,0x48,0x9b,0xc5,0xbf,0xc2,
+  0x0e,0xff,0x32,0xff,0xb3,0xd5,0xf3,0x79,0xec,0xd0,0x56,0xc3,0xd2,0x39,0x44,0xbc,
+  0xf8,0xf5,0xd5,0xac,0xd5,0x1b,0xf5,0xa3,0x58,0xe6,0xca,0x84,0x3f,0x53,0xcf,0xd1,
+  0x7c,0x60,0xb5,0xa3,0x3f,0x84,0xc6,0x9f,0x84,0xc5,0xe8,0x90,0x31,0x72,0x04,0x7e,
+  0x7e,0x7d,0xb0,0xcf,0x3f,0x1e,0x62,0xfb,0x0d,0x1c,0x14,0x53,0xac,0x8b,0xd3,0xf0,
+  0x13,0x17,0xbf,0x3e,0x34,0xae,0x4d,0x05,0x0d,0xd9,0x41,0xb4,0xc9,0xa4,0x2e,0xf0,
+  0xeb,0xc7,0x76,0x78,0x6d,0x2c,0xc6,0xd2,0x28,0xc7,0x1f,0x93,0xa3,0x8a,0x88,0x75,
+  0x37,0xd8,0xe7,0xbf,0x94,0x2b,0x6c,0xf4,0x3c,0x0e,0xdb,0x06,0x71,0xbf,0xf1,0x84,
+  0x9b,0x8b,0x3c,0x2b,0xba,0x39,0xef,0x4b,0xd9,0xb8,0x6c,0x92,0x74,0x46,0xa7,0xea,
+  0x15,0xee,0x1e,0xc9,0x39,0xff,0x55,0x6f,0x85,0x0d,0xd3,0xbf,0xd3,0xef,0x1a,0xd9,
+  0x9d,0x55,0x23,0x71,0x07,0xd1,0x4e,0x89,0xfd,0x61,0x22,0x11,0x88,0xf0,0xb0,0xe1,
+  0x7c,0x5c,0x05,0x47,0x21,0x46,0xa3,0x8a,0x3f,0xe0,0xe2,0x17,0xff,0x2e,0xe3,0xb2,
+  0xc3,0x44,0xb4,0xa2,0xeb,0xdc,0x8a,0x8f,0x94,0xce,0x2c,0x12,0x67,0x9b,0x7f,0xb9,
+  0xfa,0xf9,0xe3,0x36,0x9a,0xf3,0xb4,0x17,0x65,0x9b,0x64,0xb5,0x84,0x7f,0xd9,0x2b,
+  0xe5,0x02,0xec,0x84,0x66,0xea,0x4f,0x96,0xe5,0x5f,0x56,0xd8,0xf0,0x65,0xd8,0xd9,
+  0xd3,0x9c,0xdd,0xee,0xc1,0xaf,0x9c,0x8d,0x5f,0x7f,0x12,0x9e,0x24,0x87,0xfb,0x96,
+  0x5e,0x49,0xa7,0xfe,0xab,0xc5,0x42,0x33,0xbd,0xfa,0xc3,0x27,0x0d,0x11,0x36,0x24,
+  0x6f,0xdf,0x35,0x68,0xb4,0xdb,0xfa,0x8d,0x6f,0x0a,0xfc,0xe2,0xdf,0xe5,0xe0,0x57,
+  0x5f,0x4b,0x5e,0x9d,0x54,0x9f,0x41,0xfc,0xea,0x65,0x4f,0xbe,0x5b,0xc0,0xbf,0xde,
+  0xa4,0x96,0x17,0x15,0x69,0xaf,0x59,0xb6,0xf3,0xf4,0x9e,0xff,0xfa,0x6b,0xdb,0x1b,
+  0x7f,0x5e,0xdd,0x06,0x7a,0xd2,0xe1,0x5f,0x11,0x17,0xbf,0x70,0x4c,0x79,0x99,0x7f,
+  0xa8,0xfe,0x06,0xdc,0xd3,0xdc,0x92,0x0c,0xb9,0x40,0xe6,0xf0,0x2f,0x70,0xf4,0x87,
+  0x17,0xf1,0xeb,0x6d,0x23,0xf5,0x1c,0x14,0xda,0x0c,0xcf,0xf9,0x2f,0x75,0x7d,0x9c,
+  0x7b,0xe3,0x2d,0x9f,0x47,0x23,0x79,0x10,0x12,0xf6,0x45,0x49,0x01,0xc6,0xbf,0x2c,
+  0xfc,0x3a,0x67,0x14,0xfa,0xf9,0xdf,0x30,0x83,0x74,0x2c,0x77,0xef,0x8f,0x52,0x7d,
+  0xef,0x09,0x74,0x18,0x91,0xcf,0x49,0x1f,0xd6,0x13,0xd1,0xc0,0xf3,0xa4,0x90,0x7f,
+  0xfd,0x3e,0xcd,0xd1,0x8a,0xec,0xe1,0x89,0x30,0xf0,0x9b,0xd5,0xba,0x1d,0x3f,0x74,
+  0xee,0xef,0x7d,0x6e,0x0e,0xaf,0x33,0x56,0x35,0xfb,0x84,0xde,0xbc,0xdc,0xff,0xef,
+  0x49,0x5f,0xf1,0xf9,0xe5,0xaf,0x6e,0x81,0x9f,0x16,0xe8,0x0f,0x7f,0x43,0xf6,0xba,
+  0xfa,0x43,0x3e,0x16,0xd9,0x07,0xf7,0x5a,0x68,0x45,0x46,0x95,0xfd,0x70,0x80,0x69,
+  0x33,0x18,0x5a,0x09,0xfe,0xd5,0x2a,0x70,0x07,0xf6,0x1a,0xd6,0xce,0x81,0x5d,0xd5,
+  0x88,0x46,0x48,0xde,0xa0,0x59,0x40,0xe6,0x9e,0x5f,0x16,0xfa,0xcc,0x7e,0x96,0xff,
+  0x0a,0x74,0xc0,0x5a,0xb3,0x57,0x2f,0xd1,0x1f,0x2e,0x11,0x68,0x95,0x8f,0x2f,0x86,
+  0x7b,0xa5,0x36,0x91,0xff,0xb2,0xf4,0x87,0x1e,0xfe,0x25,0x8b,0xd5,0x74,0x0f,0x9b,
+  0x6c,0x43,0xd5,0x1e,0x0e,0x62,0xe1,0x57,0xb3,0x14,0xa2,0xdf,0x17,0xf1,0xc3,0x27,
+  0xe1,0x2e,0x76,0x1e,0x1f,0xb9,0x4c,0x89,0xfe,0x70,0x49,0x9a,0xa3,0xd5,0x3a,0xf9,
+  0x7e,0x78,0x8e,0x2e,0xcb,0x6e,0xdd,0xe8,0x9f,0xad,0xbc,0x9f,0x16,0xfc,0xcb,0x1a,
+  0xf7,0xcb,0xfe,0xc9,0x10,0x1e,0xb2,0x65,0x0d,0x7c,0x20,0x75,0xd0,0xb5,0x7a,0x39,
+  0xfe,0xe5,0xa4,0x51,0x94,0x17,0x32,0x97,0x6d,0x08,0x4c,0x76,0x89,0x8d,0xbd,0xdf,
+  0xc3,0xbf,0x76,0xd9,0xeb,0x6b,0xe4,0x6e,0x34,0x56,0xa9,0x77,0x08,0x60,0x35,0xdd,
+  0xf3,0xcb,0x14,0x76,0x89,0xab,0xdb,0x0c,0x32,0x02,0x5b,0xe0,0x36,0xa8,0xde,0xec,
+  0xc6,0xf0,0x47,0xdd,0xfb,0xa3,0x7a,0xd9,0x6a,0xd2,0x71,0x2b,0xd2,0x0b,0x9b,0xea,
+  0xbf,0x6c,0x6f,0x14,0x3d,0xf1,0xc3,0xa6,0x87,0xc4,0x7e,0x3e,0x2b,0xf2,0xf8,0x13,
+  0x6d,0x36,0x5a,0xf9,0x3d,0xfc,0x6b,0x4c,0xe7,0xad,0xe8,0xc3,0xa5,0x37,0xc9,0x04,
+  0x2a,0xe0,0xb6,0xeb,0xb4,0x85,0x5f,0xc9,0xc9,0x6a,0x96,0xff,0xaa,0xc1,0x79,0xa8,
+  0xb3,0x6b,0xe7,0x03,0x47,0x1d,0xfe,0x65,0xdf,0x1f,0x35,0xa0,0x6c,0x8a,0x33,0x7f,
+  0xd8,0xff,0x0f,0x64,0xb8,0x9f,0x26,0xd0,0xd7,0x51,0xd7,0x1f,0xda,0xfc,0x4b,0x69,
+  0xe5,0x3e,0xb3,0x6a,0x1f,0x19,0x53,0xee,0x16,0x31,0x90,0xa8,0x8b,0x5f,0xd6,0xfa,
+  0x8a,0xf0,0x76,0xa9,0x80,0xf3,0xb0,0x5f,0xd9,0xb3,0x3c,0xe2,0x5e,0x90,0x55,0x31,
+  0x28,0xf2,0xd4,0x86,0x9a,0xe0,0xed,0xaa,0xa1,0x0d,0x26,0xd7,0x47,0xe1,0x32,0x77,
+  0xe2,0x63,0xce,0xf9,0x65,0xe7,0xce,0xc6,0x73,0x70,0x41,0xea,0x84,0xe0,0x48,0xa5,
+  0xc5,0xc8,0x26,0x5a,0xc6,0x8a,0xf2,0x5f,0xd6,0x7e,0xe3,0x74,0xb9,0xfc,0x97,0x37,
+  0x7e,0xf8,0x23,0x34,0xb6,0x7b,0xcf,0x7f,0xd9,0xfc,0xab,0x40,0x62,0xbd,0xa1,0x20,
+  0xe6,0x59,0xee,0xfc,0xf2,0x8f,0x6c,0xe3,0xda,0xc2,0xf3,0x5f,0x75,0xde,0xbd,0x04,
+  0x2c,0x32,0xb9,0xc6,0xf5,0xbf,0x16,0xf0,0xaf,0x89,0x02,0xfe,0xa5,0xd8,0x07,0x99,
+  0x3f,0x8e,0x7f,0xf1,0x50,0xb0,0x75,0xbe,0xbb,0x0c,0xff,0xe2,0x47,0xcc,0x6a,0xad,
+  0x83,0xcc,0x33,0x9f,0xff,0x5a,0xa0,0xa8,0xcc,0x38,0xe1,0xe8,0x0f,0x1d,0xfe,0x25,
+  0x59,0xd7,0x6e,0x38,0x47,0xa8,0x5e,0x93,0x84,0x01,0x5e,0xfe,0xe5,0xa6,0xbd,0x16,
+  0xa3,0xd1,0x75,0xbc,0x0c,0xff,0x9a,0x82,0xcb,0x99,0xea,0xd5,0xb9,0x8e,0xd8,0x21,
+  0x62,0x96,0xfe,0x10,0xf9,0x17,0x47,0x2b,0xef,0x16,0xcb,0x5d,0x83,0x2e,0xff,0x12,
+  0x2b,0x25,0x6e,0x9f,0xff,0xf2,0xe0,0x57,0x85,0x21,0xe6,0xbc,0x5d,0xd5,0xfa,0xd7,
+  0x14,0x26,0x44,0x94,0x37,0x97,0xe8,0x0f,0x0b,0xef,0xdf,0x10,0x61,0xc3,0x32,0xfc,
+  0x0b,0x8a,0xaf,0xdd,0x28,0xd1,0x1f,0x96,0x9e,0xff,0x6a,0x28,0xcb,0xbf,0x4a,0xae,
+  0xa7,0x28,0xcb,0xbf,0x0a,0xd2,0x5e,0xbf,0x82,0x4f,0xe0,0x5f,0x2c,0x90,0x48,0x05,
+  0xff,0xaa,0x70,0xf9,0x57,0x99,0xf3,0x5f,0x3d,0xd2,0xc7,0xf1,0x2f,0x61,0xcc,0xc4,
+  0xbf,0x64,0x4f,0x90,0xb0,0x94,0x7f,0xbd,0x54,0x24,0x53,0x3f,0xe7,0xe8,0x0f,0xbd,
+  0xfc,0xcb,0x73,0xff,0x86,0xec,0x3d,0xff,0xe5,0xf2,0xaf,0x27,0xbc,0xb2,0xc3,0x2a,
+  0xb7,0xf2,0x15,0x96,0x06,0x46,0xf0,0x2f,0x57,0x72,0xb9,0xdc,0xdb,0x09,0x05,0xfa,
+  0xc3,0xc2,0xfa,0x38,0x77,0x86,0x14,0xf0,0xaf,0xa7,0xcb,0x9c,0xff,0xfa,0x18,0xfe,
+  0xc5,0x0c,0x3a,0xf9,0x31,0xfc,0x0b,0x8d,0xaa,0x2c,0xf9,0x80,0x32,0x63,0x75,0x01,
+  0xff,0x7a,0xaa,0x28,0x45,0x72,0xa4,0x08,0xbf,0x6c,0xfe,0xb5,0xda,0x9e,0xc6,0xbd,
+  0xdd,0xe8,0xde,0x0f,0x7d,0x1c,0xff,0x5a,0xc6,0xee,0x3f,0x3c,0xa9,0xbe,0x3f,0x03,
+  0xff,0x92,0x9d,0x20,0x7c,0xde,0x5d,0x3b,0xfc,0x3d,0x50,0xe8,0x0f,0xb9,0xf1,0x32,
+  0x14,0xf3,0x2f,0x5c,0x5f,0x9a,0xb3,0xac,0xbe,0xc0,0x8c,0xdf,0x90,0x32,0xfc,0xab,
+  0x68,0xe9,0x9d,0xfa,0x78,0xfe,0xc5,0xb7,0xfa,0xe6,0x0c,0xfc,0xcb,0xbb,0xcc,0x47,
+  0xe1,0xe3,0xf8,0x97,0x0d,0x5b,0xe5,0xef,0x3f,0xf4,0xba,0x94,0xf7,0x8a,0xf4,0x87,
+  0xd4,0x73,0xfe,0xcb,0x36,0x46,0x8b,0xf5,0x87,0xee,0xf9,0x65,0xb7,0x8c,0xf1,0x54,
+  0x31,0xff,0x2a,0xb9,0x4e,0xc4,0x74,0xf2,0x5f,0x0e,0xff,0x82,0xe2,0xbb,0x50,0x9c,
+  0xb1,0x70,0xcf,0x7f,0x95,0xd4,0x79,0xc2,0xc9,0x7f,0xd9,0xf8,0xf5,0x1a,0xfc,0x8b,
+  0xd0,0xcf,0x77,0x30,0x0f,0x0d,0xb8,0x7f,0xee,0x70,0xf0,0xcb,0xb0,0xf4,0x87,0x4e,
+  0xfc,0xb0,0x0d,0x8d,0x70,0x96,0xf1,0x2f,0xf5,0xa9,0x34,0x7b,0x52,0x3f,0x69,0x9d,
+  0xa5,0x82,0x1d,0x36,0x43,0x0c,0x70,0x71,0x17,0x6e,0x2a,0xd6,0x28,0xd6,0xa5,0x43,
+  0x67,0x25,0x5e,0xc6,0x54,0x9c,0xf8,0x61,0x94,0x69,0x9b,0x9f,0xf7,0x67,0x6f,0xf5,
+  0xf0,0x2f,0x5e,0x46,0x6a,0x72,0x4e,0xb1,0x45,0x61,0x58,0x3f,0x10,0x43,0x37,0xc8,
+  0x4f,0x6a,0xb3,0xf3,0x4d,0x43,0xcb,0x4b,0xe3,0x87,0xef,0x43,0x87,0x8e,0x9c,0xd1,
+  0x7e,0xf2,0x75,0x37,0xff,0xa5,0xe3,0x28,0x0f,0xda,0x69,0x2f,0x2d,0xfa,0x88,0x1c,
+  0xad,0xb2,0x0e,0x7d,0x38,0xfa,0xc3,0x5a,0x51,0x1f,0x56,0x67,0xf1,0x47,0x01,0xc2,
+  0xc5,0xfc,0xcb,0x54,0xbe,0x12,0xef,0x15,0xd7,0x89,0xec,0x80,0x1c,0x44,0x41,0x8d,
+  0x38,0x7b,0x89,0xf8,0xa4,0x28,0x93,0xd2,0xbe,0x66,0x73,0x99,0x87,0xd5,0x9f,0xd3,
+  0xb9,0x59,0x75,0x8c,0x38,0xfc,0xeb,0x02,0x1f,0x52,0x7e,0xff,0xbc,0xc5,0xbf,0x76,
+  0xc0,0xbb,0xec,0x7e,0x89,0x66,0x19,0xdf,0xa3,0x71,0xfc,0x7a,0xd9,0xbe,0xbf,0xd7,
+  0x9e,0xab,0x5d,0x9b,0x98,0x4f,0x18,0x0a,0xea,0x7e,0x57,0xf3,0x2f,0xd6,0x85,0xaa,
+  0x78,0xe6,0xf3,0x64,0x5f,0x7b,0x3e,0xe0,0x8d,0xe1,0x5b,0xfa,0x43,0xf5,0x21,0xc5,
+  0x59,0x3b,0x07,0x98,0x70,0x34,0x45,0x5e,0x95,0xb8,0x9a,0xd7,0xd5,0x1f,0xba,0xf7,
+  0x1f,0x32,0xd8,0xda,0x9d,0x57,0x37,0xba,0xe0,0x6b,0xda,0xfa,0xf9,0x1d,0xee,0x3c,
+  0x3c,0xa0,0xe9,0x2c,0xce,0xef,0xd1,0x6f,0xf0,0x32,0x63,0x4d,0xc3,0x2e,0x6c,0x7d,
+  0x44,0x17,0xa4,0xa3,0x79,0xf7,0xfc,0x72,0xa9,0xfe,0xb0,0xdc,0xfd,0x51,0xa2,0x5d,
+  0xda,0x5e,0x3b,0x2b,0xf4,0xa6,0x51,0xec,0x33,0x2d,0x3d,0x9b,0xc9,0xf5,0x87,0xcc,
+  0x1b,0x87,0x8b,0xce,0x26,0xaf,0x46,0xfc,0xb2,0xf5,0x87,0xad,0x5e,0x0e,0x82,0xc6,
+  0x2e,0xaf,0x0f,0xe7,0x9f,0x88,0xa2,0x80,0x2b,0x81,0x60,0x17,0x8d,0x7a,0xf5,0x1b,
+  0xa2,0xcc,0xe4,0x65,0x29,0x27,0xbf,0xc3,0xc5,0x27,0x1e,0xfd,0x46,0xc3,0x7b,0x02,
+  0x2b,0xfb,0x0b,0xf3,0x5f,0x9d,0x2b,0x82,0x96,0x7e,0x9e,0xf1,0xaf,0x37,0x6c,0xfd,
+  0xfc,0x8b,0xfc,0x9a,0x77,0xef,0x75,0x8e,0xce,0x6f,0xb9,0xfa,0x43,0x1e,0x2d,0x54,
+  0x05,0x6c,0x31,0xfe,0xc5,0x0c,0xa9,0x40,0x7f,0x08,0x7d,0xbc,0xce,0x6a,0x32,0xfe,
+  0x22,0x3c,0x6e,0x36,0x77,0x23,0xa7,0x76,0xea,0x6c,0xe9,0x0f,0x77,0x29,0x7b,0x79,
+  0xff,0x44,0x26,0xf8,0xfd,0x1b,0x2d,0x86,0x7f,0xc2,0x6d,0xbb,0xa3,0x3f,0x64,0xe7,
+  0xec,0x96,0x5a,0xf5,0x31,0x0f,0x14,0x5c,0x6c,0xe5,0xea,0x0f,0x9d,0xe3,0x6c,0xfa,
+  0xf9,0x48,0x47,0xbc,0x10,0xbf,0xac,0xf1,0xca,0x82,0x23,0xdb,0x98,0x00,0x96,0xb9,
+  0x72,0xc7,0xd4,0xd1,0x1f,0x7e,0x81,0xdc,0xed,0xe0,0x97,0x19,0xce,0xa9,0xd9,0xb8,
+  0x93,0xff,0xb2,0xf5,0x87,0xca,0x97,0xa8,0x93,0x77,0xd8,0x6f,0xe8,0x23,0xde,0x39,
+  0x66,0xeb,0x0f,0x11,0xc6,0xb6,0xb2,0x63,0xcb,0xdf,0x66,0xb9,0x24,0xb5,0xf9,0x0d,
+  0x9e,0xff,0x3a,0x44,0x04,0xff,0x12,0xba,0xb8,0xfe,0xfe,0xbf,0x04,0x2b,0x5a,0xf8,
+  0x3b,0x78,0x97,0xc6,0xf2,0x81,0x84,0x93,0xff,0xea,0x3a,0x6a,0xeb,0x37,0xb2,0x6c,
+  0xa5,0x50,0x0e,0x01,0x5c,0x3f,0x4f,0xbd,0xfa,0x79,0xe1,0x37,0x94,0x27,0x93,0xdc,
+  0xfb,0x9d,0x92,0x3f,0x60,0xfa,0x79,0x3d,0x30,0x66,0x01,0xd9,0xda,0xc9,0x86,0x11,
+  0x71,0xfe,0xf4,0x67,0xa1,0x8c,0xc9,0x8f,0x51,0x5f,0x47,0x4e,0x91,0xbb,0xa0,0x19,
+  0xd4,0xf5,0xac,0x3e,0x75,0xec,0xb6,0xc3,0xb8,0xa5,0x3f,0xd4,0x60,0x97,0xd8,0x3a,
+  0x26,0x91,0x7f,0xdd,0xa5,0x61,0x99,0x84,0x0b,0x64,0x36,0xff,0x52,0x28,0x3f,0xde,
+  0x8b,0x23,0x68,0x02,0xfb,0x93,0x39,0xaa,0x7d,0xe6,0x88,0xe9,0x0f,0xed,0xf3,0x5f,
+  0x63,0xb6,0x5e,0x6b,0x1c,0x8e,0x98,0x07,0xf2,0x51,0x01,0x1c,0x9c,0x7f,0xbd,0x29,
+  0xf2,0x68,0x19,0x69,0x9f,0x68,0x17,0x3b,0x22,0x74,0x3e,0xdb,0x91,0x67,0x87,0xaa,
+  0x54,0xae,0xfa,0xf0,0xe8,0x0f,0x9f,0xe4,0x1e,0x32,0x90,0x17,0xdb,0x27,0x46,0xc4,
+  0x04,0xff,0x9a,0x8d,0xfc,0x4b,0xe8,0x0f,0x7f,0xac,0xfc,0x67,0x44,0xa2,0x28,0x55,
+  0xf7,0x8a,0x69,0x63,0xfa,0x1b,0xab,0xa3,0xfc,0x7c,0xee,0xff,0x91,0x23,0xe7,0x84,
+  0x1f,0xa3,0x2b,0x23,0x3a,0xbf,0x7a,0x82,0x8a,0xa1,0x04,0xa1,0x9f,0x97,0xda,0xcc,
+  0xd5,0xec,0xef,0xa7,0x88,0x7e,0x16,0xfa,0x79,0x8a,0xcd,0x19,0x66,0x33,0x03,0xcb,
+  0x54,0x04,0xec,0x04,0xc4,0x20,0x15,0xef,0xa9,0xd9,0x28,0xd2,0x1f,0x6c,0xfe,0x3c,
+  0x89,0xd3,0xa6,0xc6,0xe5,0x5f,0x2d,0xf9,0x2b,0x05,0xff,0x6a,0xe2,0xb0,0x45,0xe7,
+  0x99,0xc8,0x7c,0x3f,0x62,0x42,0xc4,0x91,0x2e,0x1b,0xc8,0xba,0xf2,0x65,0xee,0x8f,
+  0x42,0x83,0x09,0x2c,0x11,0xbf,0xfa,0x3a,0x0b,0xe2,0x87,0x9c,0x6d,0x9d,0xb6,0xf2,
+  0x5f,0xf3,0x4c,0x75,0xb2,0xba,0xad,0xf4,0xfe,0x8d,0xc6,0x83,0x15,0x36,0xe6,0x12,
+  0x1e,0xc7,0x76,0xfc,0xfc,0x4c,0xf7,0x47,0xa9,0x9e,0xb3,0x03,0x25,0xf7,0x1f,0xb6,
+  0x8c,0x5b,0x07,0xcf,0x5d,0x5e,0x59,0x26,0xff,0x15,0x9a,0x86,0x65,0x3c,0x61,0xa4,
+  0x7e,0x42,0xfe,0x4b,0xd9,0xef,0xf7,0xbc,0x87,0x8f,0x97,0xe7,0xfe,0x28,0x76,0x0d,
+  0x08,0xb6,0xeb,0x6f,0xac,0xfa,0xac,0x9e,0xe1,0xfe,0x0d,0x34,0xaa,0x16,0x97,0xc4,
+  0x0f,0x53,0xd2,0x6c,0xcd,0x7b,0x7f,0x54,0x7e,0xdb,0x66,0x17,0xbf,0xbc,0xf7,0x47,
+  0x69,0x36,0xff,0x42,0xa3,0x26,0x26,0x97,0xc6,0x0f,0xc5,0x5f,0x46,0x58,0x6b,0xed,
+  0x37,0x46,0xda,0x3c,0x7f,0x17,0xc6,0xab,0xdf,0xe0,0xd7,0x6e,0x34,0xf0,0x63,0xdd,
+  0x23,0xc1,0x83,0x6e,0xff,0xcc,0x70,0xff,0xe1,0xb0,0x7f,0xbe,0x1b,0x6f,0x29,0xb9,
+  0x7f,0x3e,0xce,0x69,0xd7,0xa8,0xd0,0x9c,0xe0,0x93,0x4b,0x67,0xb8,0xff,0x90,0x1b,
+  0xd5,0x4e,0xdb,0xcb,0xdc,0x7f,0x68,0x1b,0x91,0x19,0xf5,0x1b,0x52,0x29,0x11,0x9b,
+  0xe9,0xfe,0x0d,0xe7,0xfe,0xa8,0x99,0xf4,0x1b,0x3c,0x24,0x58,0x8d,0x6c,0x4b,0x5a,
+  0x32,0x33,0xff,0x8a,0x1a,0x8b,0xef,0x23,0xad,0x2e,0x7e,0xf1,0xb1,0xb0,0xf8,0xd7,
+  0xf2,0x82,0xfb,0xa3,0xd0,0x88,0x14,0xe8,0xe7,0x6d,0xfe,0x45,0xc4,0xfd,0x1b,0xc7,
+  0x99,0x3e,0xdc,0x02,0xb2,0x19,0xf8,0xd7,0x8a,0x79,0xf7,0x71,0x63,0x89,0x47,0xbf,
+  0xb1,0x4b,0x1a,0xb5,0xa3,0x85,0xbc,0x4c,0x32,0x30,0xe2,0xb6,0xab,0x4c,0xfe,0x4b,
+  0x3b,0x2c,0x80,0x2c,0xfb,0x09,0xf7,0x6f,0x24,0xd5,0x46,0xa2,0x48,0x45,0xf1,0xc3,
+  0xe2,0xfc,0x57,0x24,0x53,0x1a,0x3f,0x2c,0xc8,0x7f,0x91,0x0e,0x71,0x4e,0xc1,0xb9,
+  0xff,0x90,0xbf,0x27,0x22,0xed,0xd5,0xdc,0x32,0x12,0xfb,0x73,0x9c,0xbd,0x1f,0x73,
+  0x7f,0x94,0x08,0x05,0x07,0xec,0xfe,0x09,0x96,0xbb,0xbf,0x77,0x0c,0x7e,0x88,0x53,
+  0x42,0xdd,0x58,0x6f,0x3f,0x91,0xef,0x2e,0x7f,0xff,0x86,0xa9,0x46,0x49,0x40,0xb5,
+  0xce,0xf0,0x96,0xcb,0x7f,0x7d,0x1f,0xae,0x7a,0x4e,0x4d,0xde,0xed,0x3c,0xd9,0x57,
+  0xf6,0xfe,0x8d,0x79,0x63,0xd1,0x8d,0xf2,0xec,0x19,0xee,0xdf,0x58,0x6b,0xdd,0x4d,
+  0xf7,0x32,0x2e,0x3d,0xe7,0x20,0x73,0xb1,0x7e,0xe3,0xbc,0xc3,0xbf,0xba,0x9c,0xfd,
+  0x7c,0xe9,0xfd,0x51,0x0e,0x24,0xf1,0x1b,0x1a,0x3d,0xf1,0xc3,0x10,0xb8,0x31,0x10,
+  0x66,0xb0,0x0b,0x54,0x9d,0x3a,0x9b,0x1a,0xef,0x9f,0x54,0x51,0xfe,0x4b,0x6c,0xa4,
+  0x0b,0xef,0xdf,0x38,0x5c,0xc8,0xbf,0x58,0xce,0xce,0xf5,0x63,0x65,0xf9,0x57,0xd1,
+  0xbd,0xfa,0x16,0xff,0xa2,0xc5,0xfc,0x2b,0x30,0xe9,0xc6,0x0f,0xcb,0xdc,0xbf,0xc1,
+  0xaf,0x45,0x52,0x63,0x97,0x38,0xfe,0xb0,0xcc,0xfd,0x1b,0xc2,0x87,0x1f,0x48,0x47,
+  0x03,0xd6,0x1d,0x14,0x65,0xf9,0x97,0xf8,0xbb,0x30,0x96,0xa2,0xc3,0xd5,0x1f,0xd6,
+  0x6c,0x52,0xdd,0x3a,0x13,0x7e,0x1d,0x71,0xd4,0x7a,0xd2,0x32,0x03,0xff,0x1a,0x98,
+  0xe7,0x12,0xb1,0x05,0xd6,0xf9,0x65,0x78,0x6e,0xb9,0xd4,0x6d,0xbc,0xaa,0x5d,0xa3,
+  0xd4,0x0c,0xa0,0x71,0x8b,0xf6,0x39,0xf8,0xc7,0xe7,0xa4,0xdb,0x77,0xdf,0x42,0xae,
+  0x09,0xd7,0x98,0xf3,0x41,0x94,0x59,0x51,0x79,0xbb,0x74,0x8b,0xf1,0x39,0xad,0x69,
+  0x88,0x1b,0x37,0x6b,0x97,0x0d,0x29,0xf3,0x21,0x60,0xdc,0xdc,0xe8,0x33,0xeb,0x92,
+  0xa2,0x42,0x44,0xd2,0x69,0x42,0xaf,0x57,0x95,0xb4,0x6b,0x74,0x23,0xa5,0x41,0x43,
+  0x6c,0x13,0x58,0x47,0x4b,0x29,0x58,0x07,0x17,0x81,0x8f,0x4a,0x29,0x69,0x1d,0xdc,
+  0x04,0xbe,0xbe,0x1f,0xa7,0x22,0x09,0xfe,0xc4,0x2a,0xf3,0x5c,0xc2,0x77,0x87,0x74,
+  0x0b,0xfd,0x9c,0xde,0x34,0xcc,0x8d,0x9b,0x6f,0xef,0x1b,0xf6,0xfd,0x8d,0xa6,0x0e,
+  0xdd,0xbc,0x5e,0xa1,0xd6,0x77,0x3d,0x97,0xc4,0x45,0x14,0x82,0x55,0x20,0x51,0x6e,
+  0x54,0xf8,0x34,0x34,0xea,0x54,0xa8,0x90,0xea,0xa8,0x5d,0x67,0x43,0x09,0x4b,0x2a,
+  0xc4,0x75,0x8d,0x2a,0x3a,0x37,0xea,0xd2,0xcc,0x30,0xe3,0x9a,0xe6,0x94,0xb9,0x41,
+  0x8a,0x0f,0x24,0xf5,0x1b,0x23,0x4d,0xb2,0x64,0xd0,0xa4,0xde,0xb8,0xd8,0x17,0x97,
+  0x8c,0x9e,0x64,0xee,0x46,0xb5,0x09,0xec,0x76,0x05,0xa4,0x06,0x58,0x69,0x6a,0xdd,
+  0xbe,0x35,0xd2,0xe7,0x8c,0x1b,0xcd,0xa6,0x6f,0x2b,0x01,0xe9,0x46,0xc3,0x18,0xa9,
+  0xfb,0x8e,0x02,0x4e,0xbb,0x70,0xb2,0xb1,0xfd,0xbf,0x04,0x8d,0xed,0x80,0x5f,0x98,
+  0xc1,0xad,0xd4,0x6a,0x5d,0x35,0xa4,0xfb,0x40,0xb2,0xdb,0xc5,0x2e,0x42,0xbb,0x0b,
+  0x52,0x14,0x37,0x98,0x21,0x03,0x77,0x5b,0x7d,0x68,0xa8,0x06,0x81,0xe6,0xbe,0x90,
+  0xe4,0xb4,0xcb,0x97,0x82,0x7f,0x0f,0xd7,0x1b,0x57,0x50,0xdf,0x06,0xe9,0x14,0xfc,
+  0xad,0x71,0x23,0xad,0xdc,0xe0,0x1b,0x86,0x9b,0x8c,0x46,0xb7,0x5d,0xd8,0x87,0xa7,
+  0x60,0x11,0xd4,0x50,0xe9,0x56,0x58,0x47,0x2f,0x82,0x9a,0x7e,0xe9,0x0e,0x60,0x47,
+  0x70,0x2e,0x73,0xca,0xc4,0x2b,0x62,0x3d,0x01,0x5d,0x56,0xb5,0x41,0x6e,0x74,0xa9,
+  0xda,0xb3,0x8a,0x8e,0xdf,0xdc,0xa5,0x82,0x33,0x5e,0xaa,0x11,0x63,0x4e,0x07,0x61,
+  0x1c,0x67,0x78,0x00,0x64,0x86,0x69,0x31,0xac,0x37,0x37,0xac,0x76,0xf9,0x9b,0x63,
+  0x74,0x4d,0xae,0x41,0x55,0x8e,0x49,0xb1,0x81,0x35,0xb1,0x1b,0x54,0x65,0xd0,0x17,
+  0xc3,0xc1,0x6d,0x50,0x1b,0x4d,0xbb,0x5d,0x5d,0xbe,0xee,0x9e,0x75,0x38,0xca,0x4d,
+  0xbd,0xbe,0xee,0x81,0x75,0xb1,0x9b,0x98,0x91,0xa2,0xeb,0xf4,0x9b,0x54,0x1f,0x9d,
+  0x6f,0xb5,0x2b,0x0e,0xec,0xdb,0xe3,0x2a,0xee,0x32,0x53,0x94,0x55,0x0c,0xbb,0x2c,
+  0xc6,0xfe,0x06,0x9e,0xea,0x8e,0xc5,0xf5,0xca,0xc2,0x9e,0x8b,0x63,0x71,0xb5,0xee,
+  0x7e,0x45,0x67,0x75,0x4e,0xe0,0x78,0x2d,0xa4,0x55,0xfa,0xaa,0x84,0x46,0xeb,0xec,
+  0x3e,0x94,0x42,0xd2,0x4d,0x90,0xa4,0x4d,0x68,0xe0,0xf0,0xd7,0x71,0x43,0x8a,0xc3,
+  0x57,0xa9,0xe2,0x8c,0x57,0x85,0xb4,0x9c,0x26,0x53,0x8d,0x21,0x9f,0x65,0xec,0xf2,
+  0xad,0x92,0xbe,0x44,0xe3,0x68,0x28,0x60,0xb7,0xab,0xde,0xa7,0xd0,0xe5,0x6c,0x66,
+  0xd6,0xfb,0x80,0x1a,0xba,0x96,0x50,0x88,0xc4,0x9e,0x68,0x09,0xbb,0x08,0x3c,0xb7,
+  0x4a,0xbe,0x8e,0xbe,0x98,0xfa,0x9b,0x50,0x80,0x19,0x66,0xea,0xea,0x90,0x5a,0x81,
+  0x86,0x82,0x46,0xc8,0xb0,0xdb,0xb5,0xca,0x77,0x7b,0xcf,0x2d,0xa9,0x9b,0x43,0x4d,
+  0x77,0xf9,0x6e,0xa7,0xaf,0xa6,0xfe,0x4e,0x6d,0x7a,0xbe,0x92,0xf5,0xc6,0xcd,0x6a,
+  0x93,0xbd,0x76,0x56,0xc6,0x25,0xf6,0xa3,0x6b,0x42,0x35,0xcf,0xa3,0x71,0x4b,0xea,
+  0x1a,0x15,0x8d,0xee,0x1e,0x6e,0x98,0x56,0xbb,0x56,0xae,0xaa,0x98,0x8f,0x4f,0xe4,
+  0xd0,0x57,0x9f,0x47,0x63,0x56,0x4a,0x5e,0xd7,0xf4,0xbc,0x72,0x35,0xbd,0x27,0x75,
+  0xf3,0x3a,0xb0,0xe7,0x3c,0x10,0xa9,0x1b,0x7b,0x9e,0xe0,0xb2,0xc2,0xce,0x5c,0xa3,
+  0x7f,0x4e,0x55,0xd8,0x13,0xb1,0xbe,0xec,0x4a,0x57,0x48,0xeb,0xe9,0xba,0x54,0x7d,
+  0xc8,0x77,0x97,0xd4,0xdc,0xb3,0x2e,0x75,0x13,0x1a,0xbe,0xf5,0x34,0x91,0xba,0x28,
+  0xe4,0x94,0x59,0x69,0x34,0x75,0x4b,0xb7,0x40,0x03,0x34,0x9a,0xbe,0x6e,0x69,0x0d,
+  0xdc,0xcc,0x0d,0xdc,0x63,0xdc,0x4c,0x14,0x7b,0x6e,0xac,0x8c,0xe3,0x30,0x85,0xf4,
+  0x78,0x00,0xc7,0xcb,0xc0,0xaf,0xa8,0xa8,0x66,0x03,0xb7,0x9b,0x19,0xce,0x58,0xac,
+  0x8c,0xe3,0x30,0xa9,0xfa,0x2a,0x95,0x2d,0xab,0x1e,0x2c,0x3c,0x87,0x19,0xbb,0xd9,
+  0x28,0xd7,0xb9,0x65,0xd8,0x6a,0x8a,0x7d,0x55,0x6d,0x42,0xc3,0xbc,0xb1,0xb9,0x91,
+  0x1b,0xfd,0x86,0x8e,0xeb,0xcb,0xd0,0xec,0x76,0x35,0x27,0xe9,0x8d,0x7a,0x53,0xc0,
+  0xd7,0x25,0x25,0xcd,0x1b,0x63,0x4d,0x91,0x3e,0x34,0xe8,0x0a,0x9c,0x63,0x8a,0x61,
+  0x69,0xd5,0x70,0x56,0xc6,0x71,0x7b,0x52,0x01,0x12,0x3e,0x63,0xeb,0x4b,0xc2,0x27,
+  0x46,0x23,0x50,0xc9,0x2e,0xc0,0xbe,0x8b,0xe8,0xec,0x0f,0xe7,0x46,0x54,0x99,0x10,
+  0x34,0x40,0xed,0xc7,0x5d,0x49,0x3f,0x84,0x9b,0xd5,0x5d,0xf6,0xdc,0x58,0x69,0x54,
+  0x5a,0x6e,0x87,0xfa,0x52,0xb8,0xbe,0x6e,0x22,0x4d,0xf4,0x8b,0xa9,0xf9,0xc3,0xea,
+  0x4d,0xd0,0xe8,0xcc,0x31,0x03,0x57,0xec,0x3a,0x7e,0xa1,0x3e,0x1a,0xb7,0xc0,0xe7,
+  0x08,0x1a,0xdd,0x4b,0x86,0xd5,0x45,0x64,0x96,0xd3,0xcf,0x50,0xa1,0x4b,0x01,0x20,
+  0xa0,0x99,0x68,0xb0,0x99,0xa8,0x99,0xad,0xa9,0x84,0x1a,0xea,0xaa,0x00,0xa7,0x8c,
+  0x86,0xde,0xa1,0x06,0xcb,0xc0,0x08,0xb4,0x42,0x15,0x90,0x7a,0x3a,0x02,0x57,0xb0,
+  0xf5,0x95,0x74,0xcb,0x28,0x52,0x33,0xac,0x31,0xea,0x1b,0x95,0x21,0xa9,0x79,0xf9,
+  0x9a,0xe4,0x75,0x9a,0xf2,0x87,0x2b,0xbe,0x90,0x58,0x93,0x6c,0x50,0x14,0x7b,0x0d,
+  0x42,0x8b,0x6f,0xe3,0xc0,0x5f,0xc6,0x2e,0xda,0xd1,0xf4,0x08,0x37,0x6e,0x7a,0xa8,
+  0x69,0x8f,0x6f,0x23,0xfd,0x72,0xec,0xa6,0x1d,0x4d,0x05,0xdf,0x55,0x85,0x2e,0x0e,
+  0x32,0x70,0x25,0xfb,0x2e,0xf6,0xa5,0x57,0x33,0x3a,0x67,0xb8,0xdf,0xa5,0x2a,0xb7,
+  0xd6,0x85,0x94,0x55,0x52,0x5d,0xff,0x8a,0x54,0x5d,0xa8,0x8f,0x1b,0xb1,0x90,0xda,
+  0xb7,0xaa,0xae,0xce,0x6d,0xd7,0xf2,0x64,0xdd,0x8d,0xca,0x57,0xa5,0x26,0x63,0x79,
+  0x52,0xbb,0x51,0x69,0xf2,0x35,0x1a,0xcb,0xeb,0xea,0x0c,0x65,0xa5,0xf4,0x3d,0xc3,
+  0x79,0x4f,0x73,0x5c,0x4d,0xa6,0x9b,0xf4,0x2d,0x09,0x34,0x1a,0xd3,0x8d,0xfa,0x16,
+  0x75,0x7d,0x5c,0x35,0xd0,0xe8,0x73,0x5e,0x53,0xed,0x23,0xd4,0xc8,0x42,0x44,0x18,
+  0x39,0x0d,0x0d,0x89,0xf4,0x23,0x09,0x8c,0x38,0x45,0x20,0x20,0xdf,0x00,0x2f,0x9a,
+  0xeb,0x63,0xea,0x1a,0x34,0xfa,0xcc,0x58,0x2c,0xc0,0x0c,0xc5,0xbc,0x3a,0x16,0x72,
+  0xbf,0x0b,0x21,0xe0,0x55,0x7a,0x33,0xc7,0x02,0x38,0x95,0xf9,0xbb,0xd6,0xef,0x0d,
+  0x57,0xde,0x51,0x77,0x4b,0xff,0xcd,0xe1,0x26,0xa7,0x7f,0x64,0x48,0x0c,0x6a,0x31,
+  0x25,0xb0,0xbe,0x05,0x8c,0xa1,0xfa,0xf9,0x4a,0xa0,0xb9,0x45,0x33,0xcc,0xfa,0x58,
+  0x5f,0xc0,0x9d,0x1c,0x9d,0xd3,0x6b,0xa7,0x7f,0x3b,0x7d,0x6e,0xfa,0xc3,0x52,0x03,
+  0xfe,0x35,0x9f,0x45,0xaf,0xf8,0x17,0x0d,0xfe,0x3a,0x77,0x70,0x53,0x54,0x18,0xd3,
+  0xe3,0xd1,0xd7,0xd7,0x4e,0x9f,0x7c,0x1d,0x0d,0xa7,0xcc,0xe7,0x97,0xae,0x79,0xa1,
+  0x61,0xc1,0xd0,0xf1,0x77,0x17,0x08,0x63,0xfa,0xdd,0x05,0x9d,0xf8,0x5d,0x9d,0x68,
+  0xb8,0xf5,0x09,0xfd,0xc5,0xaf,0xee,0x9f,0xdf,0x77,0xcf,0xf9,0x6b,0x43,0x89,0xd7,
+  0x1a,0x0e,0xf5,0xed,0xf8,0x2f,0xd7,0x6e,0x4e,0x3c,0xdf,0xb0,0x7f,0x74,0xc7,0x7a,
+  0xa7,0x8c,0x0f,0xba,0x8d,0x87,0x92,0x9f,0x57,0xaa,0x7e,0x05,0xb7,0x1b,0xb7,0x74,
+  0x7f,0x51,0xa9,0x7a,0xce,0x77,0xbb,0x31,0x4b,0xfb,0xfc,0xac,0x8b,0x9d,0xb6,0x2b,
+  0x15,0xb7,0x4b,0xb3,0x10,0x8e,0x19,0x2e,0xfb,0x12,0xc6,0xdf,0xa1,0xd1,0xd4,0xdc,
+  0xf3,0x10,0x7b,0xe2,0x94,0x29,0x87,0xcb,0x96,0x41,0x9d,0xf7,0x20,0x52,0xdf,0x62,
+  0xe0,0xfa,0xea,0x83,0xf5,0x3d,0x21,0x66,0xdc,0x05,0xeb,0x71,0xf2,0x57,0x68,0x92,
+  0x53,0xa6,0x5a,0xb9,0x63,0xf9,0xac,0xcc,0x17,0xf5,0xba,0x61,0xe5,0x0e,0x69,0x16,
+  0xbd,0xa1,0xb5,0x6e,0x18,0xf0,0x09,0xfd,0xa2,0x2e,0xb9,0xf5,0x61,0x70,0xac,0x57,
+  0xc0,0x72,0x0b,0x97,0x1d,0x80,0x06,0xf7,0x3d,0x8d,0x88,0xcb,0x55,0x26,0xe2,0xf2,
+  0x83,0x4a,0xab,0xc4,0x26,0xad,0x96,0x81,0x2b,0x18,0x2e,0xa7,0xdc,0xb9,0xda,0x02,
+  0x5f,0x1e,0xa8,0xcf,0xae,0xd8,0x57,0xd7,0x02,0x09,0x5a,0xaf,0xfb,0xb2,0x75,0x61,
+  0x25,0x61,0xd6,0xe7,0x56,0x64,0xad,0x55,0x0a,0xaa,0x19,0x80,0x7a,0x9c,0x2d,0x10,
+  0x43,0x1f,0xc6,0x9d,0x19,0x03,0x31,0x36,0x7f,0xa4,0xc5,0x92,0xd8,0x6a,0x21,0x8e,
+  0x35,0x2a,0x75,0xe0,0x33,0x10,0x97,0x2f,0x52,0x16,0x21,0x5a,0x28,0x1a,0xd6,0xe5,
+  0xaf,0x24,0x25,0x25,0x25,0x25,0xb1,0xad,0xc3,0xf7,0x18,0x44,0x83,0x3e,0x11,0xfc,
+  0xd0,0xf8,0x69,0x45,0x95,0xad,0x9f,0x3e,0x16,0x56,0x71,0xcb,0x00,0x03,0x1c,0x82,
+  0xaf,0x68,0x4c,0xc1,0x2e,0xf8,0x06,0xfa,0x20,0x22,0x20,0x48,0x12,0xc7,0xdf,0x41,
+  0x93,0xb0,0x0c,0xfe,0xa8,0x02,0xaa,0x28,0xdc,0x0a,0x21,0x8a,0x46,0x3f,0x6f,0xfb,
+  0x95,0x70,0x71,0x5a,0xf8,0x1f,0x63,0x65,0xdc,0x86,0x63,0x07,0x97,0x91,0x9a,0xf5,
+  0xec,0x40,0x23,0x64,0xf9,0x5e,0x83,0x7f,0x2b,0x87,0x63,0x0f,0x2e,0xb7,0x5b,0x86,
+  0x68,0xbd,0x01,0x7e,0x88,0x09,0x18,0x3d,0x06,0xb1,0x81,0x40,0x0c,0x61,0xfd,0x59,
+  0xa5,0xdd,0xe4,0x4f,0xac,0xb1,0x30,0x56,0x76,0x29,0xdd,0xe8,0x96,0xd1,0x3f,0xf7,
+  0x2a,0xdd,0x03,0xa1,0x18,0x37,0x52,0x03,0xfc,0x89,0x85,0x29,0x06,0x22,0x27,0x73,
+  0xef,0xc4,0x83,0xcb,0x69,0x7c,0x73,0x88,0x3d,0xb1,0xc6,0x22,0x29,0xc5,0xb9,0x7b,
+  0x5f,0x21,0xfc,0x3c,0xab,0x33,0x1a,0x31,0xe1,0xf9,0xa9,0xfd,0x5d,0xe8,0x94,0xa5,
+  0x46,0x58,0x09,0x75,0x68,0xe0,0x24,0x90,0x84,0x61,0x20,0xfd,0x90,0xe2,0xe2,0xbb,
+  0x12,0x88,0x4d,0xd7,0x51,0x2d,0xa5,0x84,0x24,0x36,0x3d,0x0a,0x0d,0x6b,0x4c,0x13,
+  0x40,0x04,0x1c,0x23,0xb4,0x71,0xa3,0x9e,0x61,0x1c,0xf4,0xf0,0x27,0x60,0x7f,0xd7,
+  0x2a,0xc2,0x70,0xf9,0xea,0x50,0x8d,0x00,0x68,0xaf,0x61,0x58,0x7e,0x5e,0x5a,0xa5,
+  0xdc,0x8e,0x30,0xfa,0xd7,0xa1,0xba,0xe7,0x95,0xdb,0xe9,0x43,0xdc,0xa8,0x60,0x4f,
+  0xbe,0x18,0xaa,0xb3,0xfb,0x47,0x5a,0x05,0xec,0x47,0x9f,0x0f,0x55,0x09,0x5c,0xae,
+  0x44,0x83,0x3f,0xb9,0x26,0x54,0x65,0x95,0x49,0x5a,0xb8,0x8c,0xf8,0x2e,0x70,0xb9,
+  0x8b,0xbd,0x70,0x7e,0xcf,0x8e,0xd4,0x0d,0xa1,0xba,0x41,0x7b,0xbc,0xea,0xa1,0x95,
+  0x7e,0x89,0x55,0xf5,0x7e,0x29,0xc5,0x70,0x39,0xa1,0x0c,0x4a,0xdf,0xc6,0x7d,0xcb,
+  0x45,0x09,0x7b,0x7d,0x19,0x38,0x2b,0x9a,0x69,0x28,0x55,0x11,0xc2,0x65,0xd5,0xdc,
+  0x13,0x4a,0xad,0x42,0x5c,0x56,0xd6,0xf3,0x27,0xce,0x1a,0x5c,0x99,0x52,0x36,0x4b,
+  0xb3,0xa1,0x8b,0x6a,0x79,0x34,0x6a,0xb9,0xe1,0x8b,0xe0,0x93,0x2f,0x52,0xcd,0x9e,
+  0x1b,0xd2,0xf5,0xb0,0x81,0x5e,0xcc,0xb6,0x8d,0xf7,0x8b,0x8d,0x64,0x02,0xc7,0x8b,
+  0x3d,0xa9,0x48,0xd8,0xe3,0x65,0xf0,0xf1,0x52,0xb3,0x0e,0x2e,0xaf,0x8a,0x70,0x43,
+  0xe0,0xb2,0xdd,0x87,0x38,0xee,0x3d,0x5a,0x6c,0x65,0xa0,0x0e,0x0d,0xb3,0x31,0xe6,
+  0xe3,0x06,0xd5,0xf4,0x15,0x81,0x3a,0xc3,0x6e,0x17,0xc1,0x7d,0x56,0x63,0xd6,0x17,
+  0xc0,0x49,0x92,0x64,0x65,0x22,0x52,0x17,0x7b,0xa2,0xe3,0x13,0xc3,0x6e,0x97,0xaa,
+  0xc4,0xc5,0x80,0x73,0x5c,0xe6,0x06,0x43,0x6a,0xca,0xa7,0x80,0xfd,0x5d,0x04,0x10,
+  0x8e,0xf5,0x88,0x4a,0x18,0x2e,0x67,0x75,0x15,0x0d,0xeb,0x09,0xd8,0xed,0x32,0x14,
+  0x7b,0x43,0x87,0x06,0x5b,0x5f,0xcd,0xb4,0xc2,0x7e,0xe2,0x94,0xc1,0xa5,0xf9,0x03,
+  0xb8,0xd2,0xc0,0xf5,0xd5,0x0a,0x97,0x41,0x25,0x1a,0xca,0xb7,0x71,0xb5,0xb0,0x27,
+  0x92,0xc8,0xbf,0xaf,0x4c,0x55,0x44,0xac,0xae,0xab,0x88,0xf8,0x2e,0x81,0x55,0xac,
+  0x33,0x37,0x4a,0x77,0xb3,0x27,0x56,0x1f,0xe2,0x8c,0x04,0xdd,0x08,0xdc,0x28,0x2b,
+  0x30,0x00,0xcd,0x49,0x75,0x1d,0x69,0x64,0x86,0xa1,0x6a,0xf2,0x45,0x60,0x4a,0x56,
+  0xbb,0x14,0x5c,0xfd,0x35,0x86,0x7c,0x23,0x0c,0xc1,0x15,0xcb,0x6b,0x92,0x5d,0x49,
+  0x78,0x8e,0xe1,0x29,0x3e,0x31,0x06,0x35,0xc3,0x5e,0x5f,0xb8,0x9a,0xba,0xaf,0x0f,
+  0x88,0x65,0x15,0x5b,0x35,0xab,0xae,0x17,0xd6,0x0b,0xa3,0xa0,0xce,0xe8,0x4e,0xd8,
+  0x29,0xe8,0x16,0x43,0x35,0x09,0xd8,0x0e,0x06,0x9f,0x68,0xd6,0x78,0x25,0x56,0x20,
+  0x2e,0xaf,0x88,0x5b,0xb8,0x8c,0x00,0x7d,0x5f,0xbf,0x71,0xab,0x14,0xe2,0xb8,0xac,
+  0xd9,0xeb,0xcb,0x48,0xd6,0x35,0x22,0x0a,0xd7,0xa1,0x11,0x6b,0x5c,0xe1,0xf3,0xd5,
+  0x19,0x43,0xc9,0x24,0x3e,0x01,0x77,0xbc,0xd4,0x54,0x1c,0x77,0xd3,0x8d,0x7a,0x4f,
+  0x02,0x87,0xba,0xf1,0x6e,0x9f,0x30,0x34,0x46,0x7a,0x0c,0xb0,0x46,0xcc,0xc6,0x65,
+  0xa5,0xfa,0x0a,0xdb,0x90,0xc8,0x36,0x03,0x71,0x59,0x01,0xbb,0x5d,0x5f,0x91,0x6f,
+  0x30,0x5e,0x1c,0x99,0xbf,0xb0,0x8a,0x19,0x0f,0x8e,0x34,0x2f,0xdc,0xc6,0x9f,0x9c,
+  0xbc,0x7a,0xa1,0x3b,0x5e,0x89,0x15,0x77,0xd4,0xcd,0xea,0xab,0x84,0x26,0xb3,0x95,
+  0x01,0xf4,0x5f,0x23,0x40,0x93,0x3b,0x9a,0x05,0x16,0x58,0xbe,0x17,0x7d,0xb8,0x8d,
+  0xcb,0xa1,0xc4,0xf3,0xf5,0xf3,0xfb,0x76,0xa0,0x61,0x70,0xe3,0xdf,0x1e,0x97,0xe7,
+  0x4e,0xaf,0xfe,0xee,0xb3,0xd3,0xe7,0x0e,0x6e,0x9a,0x3b,0xbd,0xf6,0xd0,0x6f,0xff,
+  0x74,0xce,0xc5,0x65,0xf7,0x3d,0x0b,0xa6,0xd7,0x4c,0x37,0x4c,0x9f,0x43,0x5c,0x9e,
+  0x5e,0xfb,0xc2,0x6f,0xff,0x7c,0xce,0xc5,0x65,0xb7,0xcc,0xb5,0x1c,0x97,0x47,0x05,
+  0x2e,0xd7,0x5f,0xc3,0x71,0xf9,0x2f,0x18,0x2e,0xdf,0x73,0xde,0x29,0x43,0xfa,0x60,
+  0x37,0x44,0x8c,0xea,0x59,0x83,0x68,0x1c,0x47,0x83,0xfd,0xf1,0xc5,0x2c,0x37,0x9c,
+  0x32,0xdc,0x6f,0x59,0x9e,0xcc,0x63,0x80,0x01,0x6e,0x19,0x01,0x31,0x02,0x7d,0x8a,
+  0x0d,0xe7,0xc3,0x16,0x12,0xfe,0xd6,0x2c,0x13,0x8d,0xe3,0x60,0x7b,0xd7,0xc2,0xf7,
+  0x38,0x98,0x55,0x6a,0x38,0x75,0x9e,0xb9,0x94,0x5d,0x63,0xc6,0xe0,0x75,0xe8,0x67,
+  0xa7,0xfe,0x85,0xe1,0x29,0x4a,0xec,0x32,0x33,0x7c,0x0d,0x33,0x9c,0x32,0xd5,0x7d,
+  0x64,0x37,0xec,0x33,0xe6,0x68,0xa5,0x86,0x53,0xa3,0x19,0xfa,0x87,0x19,0x6e,0x7d,
+  0x66,0xee,0x1f,0xfb,0xbb,0x34,0xa8,0x8c,0x61,0xb7,0x7c,0x0b,0xfb,0xc7,0x32,0xac,
+  0x27,0xd8,0x3f,0x44,0xb1,0xdf,0xb3,0x35,0xe6,0xfe,0xfa,0xf1,0x72,0xef,0xc1,0xfe,
+  0x51,0xdc,0xc6,0xf4,0x94,0xed,0x1f,0x3e,0x5e,0xce,0x0f,0x9a,0xcb,0xf7,0xb3,0x46,
+  0xc5,0x1f,0xd6,0x14,0x9f,0xe3,0x50,0xf0,0x11,0x31,0xbd,0x4f,0xf3,0x59,0xba,0xf4,
+  0x63,0x7e,0x18,0x0c,0x7e,0xda,0xd7,0xfc,0x1b,0x7e,0x3a,0xa7,0xa7,0xa7,0xcd,0xf2,
+  0xc6,0xff,0xa7,0xcb,0xd8,0x6b,0x59,0x2b,0x35,0xdc,0x42,0x62,0xc5,0xf1,0x3d,0x88,
+  0x3d,0x57,0x4b,0xd6,0xe0,0xbf,0x62,0x2d,0x6b,0x65,0x0c,0xe7,0xf3,0x89,0x6b,0xf9,
+  0x63,0x56,0xa0,0x67,0x2d,0xab,0x45,0x6b,0xd9,0x63,0xfc,0x2f,0xad,0xe5,0x59,0x47,
+  0xd1,0x38,0xbe,0xef,0x5b,0xc2,0xf0,0xae,0x65,0xf5,0x7f,0x65,0x2d,0xc3,0xa7,0x58,
+  0xcb,0x86,0x30,0x80,0x2d,0x6a,0x77,0x2d,0x7f,0xa2,0x4f,0xf8,0x34,0xbe,0xee,0xd3,
+  0xf4,0x33,0xae,0x65,0x98,0xf9,0xf3,0xd9,0x5a,0xfe,0x7f,0x5f,0x99,0x4f,0xfe,0xc4,
+  0x40,0x97,0x08,0xff,0x77,0xfc,0x4b,0xff,0xca,0x5f,0xfd,0xec,0xf3,0xd9,0xe7,0xb3,
+  0xcf,0x67,0x9f,0xcf,0x3e,0x9f,0x7d,0x3e,0xfb,0x7c,0xf6,0xf9,0xff,0xc5,0x87,0xef,
+  0x97,0x08,0xdf,0x2f,0x19,0xff,0x4f,0xd7,0xe5,0xb3,0xcf,0x67,0x9f,0xcf,0x3e,0x9f,
+  0x7d,0x3e,0xfb,0x7c,0xf6,0xf9,0xec,0xf3,0xd9,0xe7,0xff,0xee,0x4f,0x8c,0x89,0xfb,
+  0x60,0xd1,0xe2,0x18,0x50,0x96,0xbe,0x92,0x63,0x60,0x54,0x7d,0xba,0xdf,0xe3,0xe5,
+  0x7d,0x31,0xc8,0x4a,0xee,0x7b,0x06,0xfe,0xf7,0xe2,0xba,0xfe,0x5f,0xe4,0x2c,0xd3,
+  0xd9,0xbd,0xa4,0x00,0x00,
diff --git a/include/configs/CPCI405AB.h b/include/configs/CPCI405AB.h
new file mode 100644 (file)
index 0000000..a265fcd
--- /dev/null
@@ -0,0 +1,392 @@
+/*
+ * (C) Copyright 2001-2003
+ * Stefan Roese, esd gmbh germany, stefan.roese@esd-electronics.com
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.         See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+/*
+ * board/config.h - configuration options, board specific
+ */
+
+#ifndef __CONFIG_H
+#define __CONFIG_H
+
+/*
+ * High Level Configuration Options
+ * (easy to change)
+ */
+
+#define CONFIG_405GP           1       /* This is a PPC405 CPU         */
+#define CONFIG_4xx             1       /* ...member of PPC4xx family   */
+#define CONFIG_CPCI405         1       /* ...on a CPCI405 board        */
+#define CONFIG_CPCI405_VER2     1       /* ...version 2                 */
+#define CONFIG_CPCI405AB        1       /* ...and special AB version    */
+
+#define CONFIG_BOARD_PRE_INIT   1       /* call board_pre_init()        */
+
+#define CONFIG_SYS_CLK_FREQ     33333333 /* external frequency to pll   */
+
+#define CONFIG_BAUDRATE                9600
+#define CONFIG_BOOTDELAY       3       /* autoboot after 3 seconds     */
+
+#if 0
+#define CONFIG_PREBOOT                                                          \
+        "crc32 f0207004 ffc 0;"                                                 \
+        "if cmp 0 f0207000 1;"                                                  \
+        "then;echo Old CRC is correct;crc32 f0207004 ff4 f0207000;"             \
+        "else;echo Old CRC is bad;fi"
+#endif
+
+#undef CONFIG_BOOTARGS
+#define CONFIG_RAMBOOTCOMMAND                                                  \
+       "setenv bootargs root=/dev/ram rw nfsroot=$(serverip):$(rootpath) "     \
+       "ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask):$(hostname)::off;"    \
+       "bootm ffc00000 ffca0000"
+#define CONFIG_NFSBOOTCOMMAND                                                  \
+       "setenv bootargs root=/dev/nfs rw nfsroot=$(serverip):$(rootpath) "     \
+       "ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask):$(hostname)::off;"    \
+       "bootm ffc00000"
+#define CONFIG_BOOTCOMMAND CONFIG_RAMBOOTCOMMAND
+
+#define CONFIG_LOADS_ECHO      1       /* echo on for serial download  */
+#define CFG_LOADS_BAUD_CHANGE  1       /* allow baudrate change        */
+
+#define CONFIG_MII             1       /* MII PHY management           */
+#define        CONFIG_PHY_ADDR         0       /* PHY address                  */
+
+#define CONFIG_RTC_M48T35A     1               /* ST Electronics M48 timekeeper */
+
+#if 0 /* test-only */
+#define CONFIG_BOOTP_MASK      (CONFIG_BOOTP_DEFAULT |  \
+                                CONFIG_BOOTP_VENDOREX)
+#else
+#define CONFIG_BOOTP_MASK       (CONFIG_BOOTP_DEFAULT)
+#endif
+
+#define CONFIG_COMMANDS              ( CONFIG_CMD_DFL  | \
+                               CFG_CMD_DHCP    | \
+                               CFG_CMD_PCI     | \
+                               CFG_CMD_IRQ     | \
+                               CFG_CMD_IDE     | \
+                               CFG_CMD_ELF     | \
+                               CFG_CMD_DATE    | \
+                               CFG_CMD_JFFS2   | \
+                               CFG_CMD_I2C     | \
+                               CFG_CMD_MII     | \
+                               CFG_CMD_EEPROM  )
+
+#define CONFIG_MAC_PARTITION
+#define CONFIG_DOS_PARTITION
+
+/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
+#include <cmd_confdefs.h>
+
+#undef  CONFIG_WATCHDOG                        /* watchdog disabled            */
+
+#define        CONFIG_SDRAM_BANK0      1       /* init onboard SDRAM bank 0    */
+
+/*
+ * Miscellaneous configurable options
+ */
+#define CFG_LONGHELP                   /* undef to save memory         */
+#define CFG_PROMPT     "=> "           /* Monitor Command Prompt       */
+
+#undef CFG_HUSH_PARSER                 /* use "hush" command parser    */
+#ifdef CFG_HUSH_PARSER
+#define        CFG_PROMPT_HUSH_PS2     "> "
+#endif
+
+#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
+#define        CFG_CBSIZE      1024            /* Console I/O Buffer Size      */
+#else
+#define        CFG_CBSIZE      256             /* Console I/O Buffer Size      */
+#endif
+#define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
+#define CFG_MAXARGS    16              /* max number of command args   */
+#define CFG_BARGSIZE   CFG_CBSIZE      /* Boot Argument Buffer Size    */
+
+#define CFG_DEVICE_NULLDEV      1       /* include nulldev device       */
+
+#define CFG_CONSOLE_INFO_QUIET  1       /* don't print console @ startup*/
+
+#define CFG_MEMTEST_START      0x0400000       /* memtest works on     */
+#define CFG_MEMTEST_END                0x0C00000       /* 4 ... 12 MB in DRAM  */
+
+#undef  CFG_EXT_SERIAL_CLOCK           /* no external serial clock used */
+#define CFG_IGNORE_405_UART_ERRATA_59   /* ignore ppc405gp errata #59   */
+#define CFG_BASE_BAUD       691200
+
+/* The following table includes the supported baudrates */
+#define CFG_BAUDRATE_TABLE      \
+        { 300, 600, 1200, 2400, 4800, 9600, 19200, 38400,     \
+         57600, 115200, 230400, 460800, 921600 }
+
+#define CFG_LOAD_ADDR  0x100000        /* default load address */
+#define CFG_EXTBDINFO  1               /* To use extended board_into (bd_t) */
+
+#define        CFG_HZ          1000            /* decrementer freq: 1 ms ticks */
+
+#define CONFIG_ZERO_BOOTDELAY_CHECK    /* check for keypress on bootdelay==0 */
+
+#define CONFIG_VERSION_VARIABLE        1       /* include version env variable */
+
+/*-----------------------------------------------------------------------
+ * PCI stuff
+ *-----------------------------------------------------------------------
+ */
+#define PCI_HOST_ADAPTER 0              /* configure as pci adapter     */
+#define PCI_HOST_FORCE  1               /* configure as pci host        */
+#define PCI_HOST_AUTO   2               /* detected via arbiter enable  */
+
+#define CONFIG_PCI                     /* include pci support          */
+#define CONFIG_PCI_HOST        PCI_HOST_AUTO   /* select pci host function     */
+#define CONFIG_PCI_PNP                 /* do pci plug-and-play         */
+                                        /* resource configuration       */
+
+#define CONFIG_PCI_SCAN_SHOW            /* print pci devices @ startup  */
+
+#define CONFIG_PCI_BOOTDELAY    0       /* enable pci bootdelay variable*/
+
+#define CFG_PCI_SUBSYS_VENDORID 0x12FE  /* PCI Vendor ID: esd gmbh      */
+#define CFG_PCI_SUBSYS_DEVICEID 0x0405  /* PCI Device ID: CPCI-405      */
+#define CFG_PCI_SUBSYS_DEVICEID2 0x0406 /* PCI Device ID: CPCI-405-A    */
+#define CFG_PCI_CLASSCODE       0x0b20  /* PCI Class Code: Processor/PPC*/
+#define CFG_PCI_PTM1LA  0x00000000      /* point to sdram               */
+#define CFG_PCI_PTM1MS  0xfc000001      /* 64MB, enable hard-wired to 1 */
+#define CFG_PCI_PTM1PCI 0x00000000      /* Host: use this pci address   */
+#define CFG_PCI_PTM2LA  0xffc00000      /* point to flash               */
+#define CFG_PCI_PTM2MS  0xffc00001      /* 4MB, enable                  */
+#define CFG_PCI_PTM2PCI 0x04000000      /* Host: use this pci address   */
+
+/*-----------------------------------------------------------------------
+ * IDE/ATA stuff
+ *-----------------------------------------------------------------------
+ */
+#undef  CONFIG_IDE_8xx_DIRECT               /* no pcmcia interface required */
+#undef  CONFIG_IDE_LED                  /* no led for ide supported     */
+#define CONFIG_IDE_RESET       1       /* reset for ide supported      */
+
+#define        CFG_IDE_MAXBUS          1               /* max. 1 IDE busses    */
+#define        CFG_IDE_MAXDEVICE       (CFG_IDE_MAXBUS*1) /* max. 1 drives per IDE bus */
+
+#define        CFG_ATA_BASE_ADDR       0xF0100000
+#define        CFG_ATA_IDE0_OFFSET     0x0000
+
+#define CFG_ATA_DATA_OFFSET    0x0000  /* Offset for data I/O                  */
+#define        CFG_ATA_REG_OFFSET      0x0000  /* Offset for normal register accesses  */
+#define CFG_ATA_ALT_OFFSET     0x0000  /* Offset for alternate registers       */
+
+/*-----------------------------------------------------------------------
+ * Start addresses for the final memory configuration
+ * (Set up by the startup code)
+ * Please note that CFG_SDRAM_BASE _must_ start at 0
+ */
+#define CFG_SDRAM_BASE         0x00000000
+#define CFG_FLASH_BASE         0xFFFC0000
+#define CFG_MONITOR_BASE       CFG_FLASH_BASE
+#define CFG_MONITOR_LEN                (256 * 1024)    /* Reserve 256 kB for Monitor   */
+#define CFG_MALLOC_LEN         (128 * 1024)    /* Reserve 128 kB for malloc()  */
+
+/*
+ * For booting Linux, the board info and command line data
+ * have to be in the first 8 MB of memory, since this is
+ * the maximum mapped by the Linux kernel during initialization.
+ */
+#define CFG_BOOTMAPSZ          (8 << 20)       /* Initial Memory map for Linux */
+/*-----------------------------------------------------------------------
+ * FLASH organization
+ */
+#define CFG_MAX_FLASH_BANKS    2       /* max number of memory banks           */
+#define CFG_MAX_FLASH_SECT     256     /* max number of sectors on one chip    */
+
+#define CFG_FLASH_ERASE_TOUT   120000  /* Timeout for Flash Erase (in ms)      */
+#define CFG_FLASH_WRITE_TOUT   500     /* Timeout for Flash Write (in ms)      */
+
+#define CFG_FLASH_WORD_SIZE     unsigned short  /* flash word size (width)      */
+#define CFG_FLASH_ADDR0         0x5555  /* 1st address for flash config cycles  */
+#define CFG_FLASH_ADDR1         0x2AAA  /* 2nd address for flash config cycles  */
+/*
+ * The following defines are added for buggy IOP480 byte interface.
+ * All other boards should use the standard values (CPCI405 etc.)
+ */
+#define CFG_FLASH_READ0         0x0000  /* 0 is standard                        */
+#define CFG_FLASH_READ1         0x0001  /* 1 is standard                        */
+#define CFG_FLASH_READ2         0x0002  /* 2 is standard                        */
+
+#define CFG_FLASH_EMPTY_INFO            /* print 'E' for empty sector on flinfo */
+
+#define CFG_JFFS2_FIRST_BANK    0           /* use for JFFS2 */
+#define CFG_JFFS2_NUM_BANKS     1           /* ! second bank contains U-Boot */
+
+#if 0 /* Use NVRAM for environment variables */
+/*-----------------------------------------------------------------------
+ * NVRAM organization
+ */
+#define CFG_ENV_IS_IN_NVRAM    1       /* use NVRAM for environment vars       */
+#define CFG_ENV_SIZE           0x0ff8          /* Size of Environment vars     */
+#define CFG_ENV_ADDR           \
+       (CFG_NVRAM_BASE_ADDR+CFG_NVRAM_SIZE-(CFG_ENV_SIZE+8))   /* Env  */
+
+#else /* Use EEPROM for environment variables */
+
+#define CFG_ENV_IS_IN_EEPROM    1       /* use EEPROM for environment vars */
+#define CFG_ENV_OFFSET          0x000   /* environment starts at the beginning of the EEPROM */
+#define CFG_ENV_SIZE            0x400   /* 1024 bytes may be used for env vars*/
+                                   /* total size of a CAT24WC08 is 1024 bytes */
+#endif
+
+#define CFG_NVRAM_BASE_ADDR    0xf0200000              /* NVRAM base address   */
+#define CFG_NVRAM_SIZE         (32*1024)               /* NVRAM size           */
+#define CFG_NVRAM_VXWORKS_OFFS 0x6900          /* Offset for VxWorks eth-addr  */
+
+/*-----------------------------------------------------------------------
+ * I2C EEPROM (CAT24WC08) for environment
+ */
+#define CONFIG_HARD_I2C                        /* I2c with hardware support */
+#define CFG_I2C_SPEED          400000  /* I2C speed and slave address */
+#define CFG_I2C_SLAVE          0x7F
+
+#define CFG_I2C_EEPROM_ADDR    0x50    /* EEPROM CAT28WC08             */
+#define CFG_I2C_EEPROM_ADDR_LEN        1       /* Bytes of address             */
+/* mask of address bits that overflow into the "EEPROM chip address"    */
+#define CFG_I2C_EEPROM_ADDR_OVERFLOW   0x07
+#define CFG_EEPROM_PAGE_WRITE_BITS 4   /* The Catalyst CAT24WC08 has   */
+                                       /* 16 byte page write mode using*/
+                                       /* last 4 bits of the address   */
+#define CFG_EEPROM_PAGE_WRITE_DELAY_MS 10   /* and takes up to 10 msec */
+#define CFG_EEPROM_PAGE_WRITE_ENABLE
+
+/*-----------------------------------------------------------------------
+ * Cache Configuration
+ */
+#define CFG_DCACHE_SIZE                16384   /* For IBM 405 CPUs, older 405 ppc's    */
+                                        /* have only 8kB, 16kB is save here     */
+#define CFG_CACHELINE_SIZE     32      /* ...                  */
+#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
+#define CFG_CACHELINE_SHIFT    5       /* log base 2 of the above value        */
+#endif
+
+/*
+ * Init Memory Controller:
+ *
+ * BR0/1 and OR0/1 (FLASH)
+ */
+
+#define FLASH_BASE0_PRELIM     0xFF800000      /* FLASH bank #0        */
+#define FLASH_BASE1_PRELIM     0xFFC00000      /* FLASH bank #1        */
+
+/*-----------------------------------------------------------------------
+ * External Bus Controller (EBC) Setup
+ */
+
+/* Memory Bank 0 (Flash Bank 0) initialization                                  */
+#define CFG_EBC_PB0AP           0x92015480
+#define CFG_EBC_PB0CR           0xFFC5A000  /* BAS=0xFFC,BS=4MB,BU=R/W,BW=16bit */
+
+/* Memory Bank 1 (Flash Bank 1) initialization                                  */
+#define CFG_EBC_PB1AP           0x92015480
+#define CFG_EBC_PB1CR           0xFF85A000  /* BAS=0xFF8,BS=4MB,BU=R/W,BW=16bit */
+
+/* Memory Bank 2 (CAN0, 1) initialization                                       */
+#define CFG_EBC_PB2AP           0x010053C0  /* BWT=2,WBN=1,WBF=1,TH=1,RE=1,SOR=1,BEM=1 */
+#define CFG_EBC_PB2CR           0xF0018000  /* BAS=0xF00,BS=1MB,BU=R/W,BW=8bit  */
+#define CFG_LED_ADDR            0xF0000380
+
+/* Memory Bank 3 (CompactFlash IDE) initialization                              */
+#define CFG_EBC_PB3AP           0x010053C0  /* BWT=2,WBN=1,WBF=1,TH=1,RE=1,SOR=1,BEM=1 */
+#define CFG_EBC_PB3CR           0xF011A000  /* BAS=0xF01,BS=1MB,BU=R/W,BW=16bit */
+
+/* Memory Bank 4 (NVRAM/RTC) initialization                                     */
+/*#define CFG_EBC_PB4AP           0x01805280  / * TWT=3,WBN=1,WBF=1,TH=1,SOR=1     */
+#define CFG_EBC_PB4AP           0x01805680  /* TWT=3,WBN=1,WBF=1,TH=3,SOR=1     */
+#define CFG_EBC_PB4CR           0xF0218000  /* BAS=0xF02,BS=1MB,BU=R/W,BW=8bit  */
+
+/* Memory Bank 5 (optional Quart) initialization                                */
+#define CFG_EBC_PB5AP           0x04005B80  /* TWT=8,WBN=1,WBF=1,TH=5,RE=1,SOR=1*/
+#define CFG_EBC_PB5CR           0xF0318000  /* BAS=0xF03,BS=1MB,BU=R/W,BW=8bit  */
+
+/* Memory Bank 6 (FPGA internal) initialization                                 */
+#define CFG_EBC_PB6AP           0x010053C0  /* BWT=2,WBN=1,WBF=1,TH=1,RE=1,SOR=1,BEM=1 */
+#define CFG_EBC_PB6CR           0xF041A000  /* BAS=0xF01,BS=1MB,BU=R/W,BW=16bit */
+#define CFG_FPGA_BASE_ADDR      0xF0400000
+
+/*-----------------------------------------------------------------------
+ * FPGA stuff
+ */
+/* FPGA internal regs */
+#define CFG_FPGA_MODE           0x00
+#define CFG_FPGA_STATUS         0x02
+#define CFG_FPGA_TS             0x04
+#define CFG_FPGA_TS_LOW         0x06
+#define CFG_FPGA_TS_CAP0        0x10
+#define CFG_FPGA_TS_CAP0_LOW    0x12
+#define CFG_FPGA_TS_CAP1        0x14
+#define CFG_FPGA_TS_CAP1_LOW    0x16
+#define CFG_FPGA_TS_CAP2        0x18
+#define CFG_FPGA_TS_CAP2_LOW    0x1a
+#define CFG_FPGA_TS_CAP3        0x1c
+#define CFG_FPGA_TS_CAP3_LOW    0x1e
+
+/* FPGA Mode Reg */
+#define CFG_FPGA_MODE_CF_RESET      0x0001
+#define CFG_FPGA_MODE_DUART_RESET   0x0002
+#define CFG_FPGA_MODE_ENABLE_OUTPUT 0x0004     /* only set on CPCI-405 Ver 3 */
+#define CFG_FPGA_MODE_TS_IRQ_ENABLE 0x0100
+#define CFG_FPGA_MODE_TS_IRQ_CLEAR  0x1000
+#define CFG_FPGA_MODE_TS_CLEAR      0x2000
+
+/* FPGA Status Reg */
+#define CFG_FPGA_STATUS_DIP0    0x0001
+#define CFG_FPGA_STATUS_DIP1    0x0002
+#define CFG_FPGA_STATUS_DIP2    0x0004
+#define CFG_FPGA_STATUS_FLASH   0x0008
+#define CFG_FPGA_STATUS_TS_IRQ  0x1000
+
+#define CFG_FPGA_SPARTAN2       1           /* using Xilinx Spartan 2 now    */
+#define CFG_FPGA_MAX_SIZE       64*1024     /* 64kByte is enough for XC2S15  */
+
+/* FPGA program pin configuration */
+#define CFG_FPGA_PRG            0x04000000  /* FPGA program pin (ppc output) */
+#define CFG_FPGA_CLK            0x02000000  /* FPGA clk pin (ppc output)     */
+#define CFG_FPGA_DATA           0x01000000  /* FPGA data pin (ppc output)    */
+#define CFG_FPGA_INIT           0x00010000  /* FPGA init pin (ppc input)     */
+#define CFG_FPGA_DONE           0x00008000  /* FPGA done pin (ppc input)     */
+
+/*-----------------------------------------------------------------------
+ * Definitions for initial stack pointer and data area (in data cache)
+ */
+#define CFG_INIT_DCACHE_CS      7       /* use cs # 7 for data cache memory    */
+
+#define CFG_INIT_RAM_ADDR       0x40000000  /* use data cache                  */
+#define CFG_INIT_RAM_END        0x2000  /* End of used area in RAM             */
+#define CFG_GBL_DATA_SIZE      128  /* size in bytes reserved for initial data */
+#define CFG_GBL_DATA_OFFSET    (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
+#define CFG_INIT_SP_OFFSET      CFG_GBL_DATA_OFFSET
+
+
+/*
+ * Internal Definitions
+ *
+ * Boot Flags
+ */
+#define BOOTFLAG_COLD  0x01            /* Normal Power-On: Boot from FLASH     */
+#define BOOTFLAG_WARM  0x02            /* Software reboot                      */
+
+#endif /* __CONFIG_H */