]> www.infradead.org Git - users/rw/ppcboot.git/commitdiff
* Patch by Stefan Roese:
authorwdenk <wdenk>
Fri, 7 Jun 2002 13:51:35 +0000 (13:51 +0000)
committerwdenk <wdenk>
Fri, 7 Jun 2002 13:51:35 +0000 (13:51 +0000)
  - PCI405 board added.
  - CPCI4052 fpga image changed.
  - First step to add PPC405GPr support.
  - 405gp_pci.c: PCI class code init added (if defined).

19 files changed:
CHANGELOG
MAKEALL
Makefile
board/esd/cpci405/cpci405.c
board/esd/cpci405/fpgadata_cpci4052.c
board/esd/pci405/Makefile [new file with mode: 0644]
board/esd/pci405/config.mk [new file with mode: 0644]
board/esd/pci405/flash.c [new file with mode: 0644]
board/esd/pci405/fpgadata.c [new file with mode: 0644]
board/esd/pci405/init.S [new file with mode: 0644]
board/esd/pci405/pci405.c [new file with mode: 0644]
board/esd/pci405/ppcboot.lds [new file with mode: 0644]
board/esd/pci405/ppcboot.lds.debug [new file with mode: 0644]
cpu/ppc4xx/405gp_pci.c
cpu/ppc4xx/cpu.c
include/asm/processor.h
include/config_CPCI4052.h
include/config_PCI405.h [new file with mode: 0644]
include/ppcboot.h

index 76259035bb140383af1e6963c768e4bb1fba0bf8..9e92b49e44747c86b5344dd183bb81dacaab77c5 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
 Modifications for 1.1.6:
 ======================================================================
 
+* Patch by Stefan Roese:
+  - PCI405 board added.
+  - CPCI4052 fpga image changed.
+  - First step to add PPC405GPr support.
+  - 405gp_pci.c: PCI class code init added (if defined).
+
 * Fix initialization of funtion pointers for relocation; so far, the
   ethernet functions were still called from flash, causing PPCBoot to
   crash when you erased the flash and then tried to TFTP...
diff --git a/MAKEALL b/MAKEALL
index 9b6bdfe91c8e9c94382d0f63c969e03c30d95ae2..6c9e4d40dd0305a62ba4778ebcd19b94348414df 100755 (executable)
--- a/MAKEALL
+++ b/MAKEALL
@@ -36,8 +36,8 @@ LIST_4xx="    \
        ADCIOP          AR405           CANBT           CPCI405         \
        CPCI4052        CPCIISER4       CRAYL1          DASA_SIM        \
        DU405           ERIC            MIP405          OCRTC           \
-       ORSG            PIP405          W7OLMC          W7OLMG          \
-       WALNUT405       \
+       ORSG            PCI405          PIP405          W7OLMC          \
+       W7OLMG          WALNUT405       \
 "
 
 #########################################################################
index 835d5a3e0158342ac76ac929011c57e551ddcff9..96c56d18a81d39b4803b475c1b6fb6494d7a5da3 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -510,7 +510,7 @@ CANBT_config:       unconfig
 
 CPCI405_config         \
 CPCI4052_config:       unconfig
-       @echo "Configuring for $(call xtract,$@) Board..." ; \
+       @echo "Configuring for $(@:_config=) Board..." ; \
        cd ./include ;                          \
        echo "ARCH  = ppc"      > config.mk ;   \
        echo "BOARD = cpci405"  >>config.mk ;   \
@@ -581,6 +581,15 @@ ORSG_config:       unconfig
        echo "VENDOR = esd"     >>config.mk ;   \
        echo "#include <config_$(@:_config=).h>" >config.h
 
+PCI405_config: unconfig
+       @echo "Configuring for $(@:_config=) Board..." ; \
+       cd ./include ;                          \
+       echo "ARCH  = ppc"      > config.mk ;   \
+       echo "BOARD = pci405"   >>config.mk ;   \
+       echo "CPU   = ppc4xx"   >>config.mk ;   \
+       echo "VENDOR = esd"     >>config.mk ;   \
+       echo "#include <config_$(@:_config=).h>" >config.h
+
 PIP405_config:unconfig
        @echo "Configuring for $(@:_config=) Board..." ; \
        cd ./include ;                          \
index 667485261d749c58eb464e38c1a3470c8fc16e5a..1a04b4127c9c1d6dc97e233de6fef6cf563855bc 100644 (file)
@@ -57,96 +57,91 @@ int gunzip(void *, int, unsigned char *, int *);
 int board_pre_init (void)
 {
 #ifndef CONFIG_CPCI405_VER2
-  int index, len, i;
-  int status;
+       int index, len, i;
+       int status;
 #endif
 
 #ifdef FPGA_DEBUG
-  /* set up serial port with default baudrate */
-  serial_init(get_gclk_freq(), CONFIG_BAUDRATE);
-  console_init_f();
+       /* set up serial port with default baudrate */
+       serial_init(get_gclk_freq(), CONFIG_BAUDRATE);
+       console_init_f();
 #endif
 
-  /*
-   * 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            */
-
-  /*
-   * Boot onboard FPGA
-   */
+       /*
+        * 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            */
+
+       /*
+        * Boot onboard FPGA
+        */
 #ifndef CONFIG_CPCI405_VER2
-  if (!version2())
-    {
-      status = fpga_boot((unsigned char *)fpgadata, sizeof(fpgadata));
-      if (status != 0)
-        {
-         /* booting FPGA failed */
+       if (!version2()) {
+               status = fpga_boot((unsigned char *)fpgadata, sizeof(fpgadata));
+               if (status != 0) {
+                       /* booting FPGA failed */
 #ifndef FPGA_DEBUG
-         /* set up serial port with default baudrate */
-         serial_init(get_gclk_freq(), CONFIG_BAUDRATE);
-         console_init_f();
+                       /* set up serial port with default baudrate */
+                       serial_init(get_gclk_freq(), CONFIG_BAUDRATE);
+                       console_init_f();
 #endif
-         printf("\nFPGA: Booting failed ");
-         switch (status)
-           {
-           case ERROR_FPGA_PRG_INIT_LOW:
-             printf("(Timeout: INIT not low after asserting PROGRAM*)\n ");
-             break;
-           case ERROR_FPGA_PRG_INIT_HIGH:
-             printf("(Timeout: INIT not high after deasserting PROGRAM*)\n ");
-             break;
-           case ERROR_FPGA_PRG_DONE:
-             printf("(Timeout: DONE not high after programming FPGA)\n ");
-             break;
-           }
-
-         /* display infos on fpgaimage */
-         index = 15;
-         for (i=0; i<4; i++)
-           {
-             len = fpgadata[index];
-             printf("FPGA: %s\n", &(fpgadata[index+1]));
-             index += len+3;
-           }
-         putc ('\n');
-         /* delayed reboot */
-         for (i=20; i>0; i--)
-           {
-             printf("Rebooting in %2d seconds \r",i);
-             for (index=0;index<1000;index++)
-               udelay(1000);
-           }
-         putc ('\n');
-         do_reset(NULL, NULL, 0, 0, NULL);
+                       printf("\nFPGA: Booting failed ");
+                       switch (status) {
+                       case ERROR_FPGA_PRG_INIT_LOW:
+                               printf("(Timeout: INIT not low after asserting PROGRAM*)\n ");
+                               break;
+                       case ERROR_FPGA_PRG_INIT_HIGH:
+                               printf("(Timeout: INIT not high after deasserting PROGRAM*)\n ");
+                               break;
+                       case ERROR_FPGA_PRG_DONE:
+                               printf("(Timeout: DONE not high after programming FPGA)\n ");
+                               break;
+                       }
+
+                       /* display infos on fpgaimage */
+                       index = 15;
+                       for (i=0; i<4; i++) {
+                               len = fpgadata[index];
+                               printf("FPGA: %s\n", &(fpgadata[index+1]));
+                               index += len+3;
+                       }
+                       putc ('\n');
+                       /* delayed reboot */
+                       for (i=20; i>0; i--) {
+                               printf("Rebooting in %2d seconds \r",i);
+                               for (index=0;index<1000;index++)
+                                       udelay(1000);
+                       }
+                       putc ('\n');
+                       do_reset(NULL, NULL, 0, 0, NULL);
+               }
        }
-    }
 #endif /* !CONFIG_CPCI405_VER2 */
 
-  /*
-   * IRQ 0-15  405GP internally generated; active high; level sensitive
-   * IRQ 16    405GP internally generated; active low; level sensitive
-   * IRQ 17-24 RESERVED
-   * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
-   * IRQ 26 (EXT IRQ 1) CAN1 (+FPGA on CPCI4052) ; active low; level sensitive
-   * IRQ 27 (EXT IRQ 2) PCI SLOT 0; active low; level sensitive
-   * IRQ 28 (EXT IRQ 3) PCI SLOT 1; active low; level sensitive
-   * IRQ 29 (EXT IRQ 4) PCI SLOT 2; active low; level sensitive
-   * IRQ 30 (EXT IRQ 5) PCI SLOT 3; active low; level sensitive
-   * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
-   */
-  mtdcr(uicsr, 0xFFFFFFFF);        /* clear all ints */
-  mtdcr(uicer, 0x00000000);        /* disable all ints */
-  mtdcr(uiccr, 0x00000000);        /* set all to be non-critical*/
-  mtdcr(uicpr, 0xFFFFFF81);        /* set int polarities */
-  mtdcr(uictr, 0x10000000);        /* set int trigger levels */
-  mtdcr(uicvcr, 0x00000001);       /* set vect base=0,INT0 highest priority*/
-  mtdcr(uicsr, 0xFFFFFFFF);        /* clear all ints */
-
-  return 0;
+       /*
+        * IRQ 0-15  405GP internally generated; active high; level sensitive
+        * IRQ 16    405GP internally generated; active low; level sensitive
+        * IRQ 17-24 RESERVED
+        * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
+        * IRQ 26 (EXT IRQ 1) CAN1 (+FPGA on CPCI4052) ; active low; level sensitive
+        * IRQ 27 (EXT IRQ 2) PCI SLOT 0; active low; level sensitive
+        * IRQ 28 (EXT IRQ 3) PCI SLOT 1; active low; level sensitive
+        * IRQ 29 (EXT IRQ 4) PCI SLOT 2; active low; level sensitive
+        * IRQ 30 (EXT IRQ 5) PCI SLOT 3; active low; level sensitive
+        * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
+        */
+       mtdcr(uicsr, 0xFFFFFFFF);       /* clear all ints */
+       mtdcr(uicer, 0x00000000);       /* disable all ints */
+       mtdcr(uiccr, 0x00000000);       /* set all to be non-critical*/
+       mtdcr(uicpr, 0xFFFFFF81);       /* set int polarities */
+       mtdcr(uictr, 0x10000000);       /* set int trigger levels */
+       mtdcr(uicvcr, 0x00000001);      /* set vect base=0,INT0 highest priority*/
+       mtdcr(uicsr, 0xFFFFFFFF);       /* clear all ints */
+
+       return 0;
 }
 
 
@@ -155,189 +150,178 @@ int board_pre_init (void)
 int ctermm2(void)
 {
 #ifdef CONFIG_CPCI405_VER2
-  return 0;                           /* no, board is cpci405 */
+       return 0;                       /* no, board is cpci405 */
 #else
-  if ((*(unsigned char *)0xf0000400 == 0x00) &&
-      (*(unsigned char *)0xf0000401 == 0x01))
-    return 0;                           /* no, board is cpci405 */
-  else
-    return -1;                          /* yes, board is cterm-m2 */
+       if ((*(unsigned char *)0xf0000400 == 0x00) &&
+           (*(unsigned char *)0xf0000401 == 0x01))
+               return 0;               /* no, board is cpci405 */
+       else
+               return -1;              /* yes, board is cterm-m2 */
 #endif
 }
 
 
 int cpci405_host(void)
 {
-  if (mfdcr(strap) & PSR_PCI_ARBIT_EN)
-    return -1;                          /* yes, board is cpci405 host */
-  else
-    return 0;                           /* no, board is cpci405 adapter */
+       if (mfdcr(strap) & PSR_PCI_ARBIT_EN)
+               return -1;              /* yes, board is cpci405 host */
+       else
+               return 0;               /* no, board is cpci405 adapter */
 }
 
 
 int version2(void)
 {
-  unsigned long cntrl0Reg;
-  unsigned long value;
-
-  /*
-   * Setup GPIO pins (CS2/GPIO11 as GPIO)
-   */
-  cntrl0Reg = mfdcr(cntrl0);
-  mtdcr(cntrl0, cntrl0Reg | 0x02000000);
-
-  value = in32(IBM405GP_GPIO0_IR) & 0x02000000;
-
-  /*
-   * Setup GPIO pins (CS2/GPIO11 as CS again)
-   */
-  mtdcr(cntrl0, cntrl0Reg);
-
-  if (value)
-    return -1;                          /* yes, board is version 2.x */
-  else
-    return 0;                           /* no, board is version 1.x */
+       unsigned long cntrl0Reg;
+       unsigned long value;
+
+       /*
+        * Setup GPIO pins (CS2/GPIO11 as GPIO)
+        */
+       cntrl0Reg = mfdcr(cntrl0);
+       mtdcr(cntrl0, cntrl0Reg | 0x02000000);
+
+       value = in32(IBM405GP_GPIO0_IR) & 0x02000000;
+
+       /*
+        * Setup GPIO pins (CS2/GPIO11 as CS again)
+        */
+       mtdcr(cntrl0, cntrl0Reg);
+
+       if (value)
+               return -1;              /* yes, board is version 2.x */
+       else
+               return 0;               /* no, board is version 1.x */
 }
 
 
 int misc_init_f(void)
 {
-  return 0;  /* dummy implementation */
+       return 0;  /* dummy implementation */
 }
 
 
 void misc_init_r(bd_t *bd)
 {
-  char *       tmp;                    /* Temporary char pointer      */
+       char *  tmp;                    /* Temporary char pointer      */
 
 #ifdef CONFIG_CPCI405_VER2
-  unsigned char *dst;
-  ulong len;
-  int status;
-  int index;
-  int i;
-  unsigned long cntrl0Reg;
-
-  /*
-   * On CPCI-405 version 2 the environment is saved in eeprom!
-   * FPGA can be gzip compressed (malloc) and booted this late.
-   */
-
-  if (version2())
-    {
-      /*
-       * Setup GPIO pins (CS6+CS7 as GPIO)
-       */
-      cntrl0Reg = mfdcr(cntrl0);
-      mtdcr(cntrl0, cntrl0Reg | 0x00300000);
+       unsigned char *dst;
+       ulong len = sizeof(fpgadata);
+       int status;
+       int index;
+       int i;
+       unsigned long cntrl0Reg;
+
+       /*
+        * On CPCI-405 version 2 the environment is saved in eeprom!
+        * FPGA can be gzip compressed (malloc) and booted this late.
+        */
+
+       if (version2()) {
+               /*
+                * Setup GPIO pins (CS6+CS7 as GPIO)
+                */
+               cntrl0Reg = mfdcr(cntrl0);
+               mtdcr(cntrl0, cntrl0Reg | 0x00300000);
       
-      dst = malloc(CFG_FPGA_MAX_SIZE);
-      if (gunzip (dst, CFG_FPGA_MAX_SIZE, (uchar *)fpgadata, (int *)&len) != 0)
-        {
-         printf ("GUNZIP ERROR - must RESET board to recover\n");
-         do_reset (NULL, NULL, 0, 0, NULL);
+               dst = malloc(CFG_FPGA_MAX_SIZE);
+               if (gunzip (dst, CFG_FPGA_MAX_SIZE, (uchar *)fpgadata, (int *)&len) != 0) {
+                       printf ("GUNZIP ERROR - must RESET board to recover\n");
+                       do_reset (NULL, NULL, 0, 0, NULL);
+               }
+
+               status = fpga_boot(dst, len);
+               if (status != 0) {
+                       printf("\nFPGA: Booting failed ");
+                       switch (status) {
+                       case ERROR_FPGA_PRG_INIT_LOW:
+                               printf("(Timeout: INIT not low after asserting PROGRAM*)\n ");
+                               break;
+                       case ERROR_FPGA_PRG_INIT_HIGH:
+                               printf("(Timeout: INIT not high after deasserting PROGRAM*)\n ");
+                               break;
+                       case ERROR_FPGA_PRG_DONE:
+                               printf("(Timeout: DONE not high after programming FPGA)\n ");
+                               break;
+                       }
+
+                       /* display infos on fpgaimage */
+                       index = 15;
+                       for (i=0; i<4; i++) {
+                               len = dst[index];
+                               printf("FPGA: %s\n", &(dst[index+1]));
+                               index += len+3;
+                       }
+                       putc ('\n');
+                       /* delayed reboot */
+                       for (i=20; i>0; i--) {
+                               printf("Rebooting in %2d seconds \r",i);
+                               for (index=0;index<1000;index++)
+                                       udelay(1000);
+                       }
+                       putc ('\n');
+                       do_reset(NULL, NULL, 0, 0, NULL);
+               }
+
+               /* restore gpio/cs settings */
+               mtdcr(cntrl0, cntrl0Reg);
+
+               puts("FPGA:  ");
+
+               /* display infos on fpgaimage */
+               index = 15;
+               for (i=0; i<4; i++) {
+                       len = dst[index];
+                       printf("%s ", &(dst[index+1]));
+                       index += len+3;
+               }
+               putc ('\n');
+
+               free(dst);
        }
-
-      status = fpga_boot(dst, len);
-      if (status != 0)
-        {
-         printf("\nFPGA: Booting failed ");
-         switch (status)
-           {
-           case ERROR_FPGA_PRG_INIT_LOW:
-             printf("(Timeout: INIT not low after asserting PROGRAM*)\n ");
-             break;
-           case ERROR_FPGA_PRG_INIT_HIGH:
-             printf("(Timeout: INIT not high after deasserting PROGRAM*)\n ");
-             break;
-           case ERROR_FPGA_PRG_DONE:
-             printf("(Timeout: DONE not high after programming FPGA)\n ");
-             break;
-           }
-
-         /* display infos on fpgaimage */
-         index = 15;
-         for (i=0; i<4; i++)
-           {
-             len = dst[index];
-             printf("FPGA: %s\n", &(dst[index+1]));
-             index += len+3;
-           }
-         putc ('\n');
-         /* delayed reboot */
-         for (i=20; i>0; i--)
-           {
-             printf("Rebooting in %2d seconds \r",i);
-             for (index=0;index<1000;index++)
-               udelay(1000);
-           }
-         putc ('\n');
-         do_reset(NULL, NULL, 0, 0, NULL);
+       else {
+               printf("\n*** PPCBoot Version does not match Board Version!\n");
+               printf("*** CPCI-405 Version 2.x detected!\n");
+               printf("*** Please use correct PPCBoot version (CPCI4052)!\n\n");
        }
 
-      /* restore gpio/cs settings */
-      mtdcr(cntrl0, cntrl0Reg);
-
-      puts("FPGA:  ");
+#else /* CONFIG_CPCI405_VER2 */
 
-      /* display infos on fpgaimage */
-      index = 15;
-      for (i=0; i<4; i++)
-        {
-         len = dst[index];
-         printf("%s ", &(dst[index+1]));
-         index += len+3;
+       /*
+        * Generate last byte of ip-addr from code-plug @ 0xf0000400
+        */
+       if (ctermm2()) {
+               char str[32];
+               unsigned char ipbyte = *(unsigned char *)0xf0000400;
+
+               /*
+                * Only overwrite ip-addr with allowed values
+                */
+               if ((ipbyte != 0x00) && (ipbyte != 0xff)) {
+                       bd->bi_ip_addr = (bd->bi_ip_addr & 0xffffff00) | ipbyte;
+                       sprintf(str, "%ld.%ld.%ld.%ld",
+                               (bd->bi_ip_addr & 0xff000000) >> 24,
+                               (bd->bi_ip_addr & 0x00ff0000) >> 16,
+                               (bd->bi_ip_addr & 0x0000ff00) >> 8,
+                               (bd->bi_ip_addr & 0x000000ff));
+                       setenv("ipaddr", str);
+               }
        }
-      putc ('\n');
 
-      free(dst);
-    }
-  else
-    {
-      printf("\n*** PPCBoot Version does not match Board Version!\n");
-      printf("*** CPCI-405 Version 2.x detected!\n");
-      printf("*** Please use correct PPCBoot version (CPCI4052)!\n\n");
-    }
-
-#else /* CONFIG_CPCI405_VER2 */
-
-  /*
-   * Generate last byte of ip-addr from code-plug @ 0xf0000400
-   */
-  if (ctermm2())
-    {
-      char str[32];
-      unsigned char ipbyte = *(unsigned char *)0xf0000400;
-
-      /*
-       * Only overwrite ip-addr with allowed values
-       */
-      if ((ipbyte != 0x00) && (ipbyte != 0xff))
-        {
-          bd->bi_ip_addr = (bd->bi_ip_addr & 0xffffff00) | ipbyte;
-          sprintf(str, "%ld.%ld.%ld.%ld",
-                  (bd->bi_ip_addr & 0xff000000) >> 24,
-                  (bd->bi_ip_addr & 0x00ff0000) >> 16,
-                  (bd->bi_ip_addr & 0x0000ff00) >> 8,
-                  (bd->bi_ip_addr & 0x000000ff));
-          setenv("ipaddr", str);
-        }
-    }
-
-  if (version2())
-    {
-      printf("\n*** PPCBoot Version does not match Board Version!\n");
-      printf("*** CPCI-405 Board Version 1.x detected!\n");
-      printf("*** Please use correct PPCBoot version (CPCI405)!\n\n");
-    }
+       if (version2()) {
+               printf("\n*** PPCBoot Version does not match Board Version!\n");
+               printf("*** CPCI-405 Board Version 1.x detected!\n");
+               printf("*** Please use correct PPCBoot version (CPCI405)!\n\n");
+       }
 
 #endif /* CONFIG_CPCI405_VER2 */
 
-  /*
-   * Write ethernet addr in NVRAM for VxWorks
-   */
-  tmp = (char *)CFG_NVRAM_BASE_ADDR + CFG_NVRAM_VXWORKS_OFFS;
-  memcpy( (char *)tmp, (char *)&bd->bi_enetaddr[0], 6 );
+       /*
+        * Write ethernet addr in NVRAM for VxWorks
+        */
+       tmp = (char *)CFG_NVRAM_BASE_ADDR + CFG_NVRAM_VXWORKS_OFFS;
+       memcpy( (char *)tmp, (char *)&bd->bi_enetaddr[0], 6 );
 }
 
 
@@ -348,82 +332,81 @@ void misc_init_r(bd_t *bd)
 int checkboard (void)
 {
 #ifndef CONFIG_CPCI405_VER2
-    int index;
-    int len;
+       int index;
+       int len;
 #endif
-    unsigned char str[64];
-    int i = getenv_r ("serial#", str, sizeof(str));
+       unsigned char str[64];
+       int i = getenv_r ("serial#", str, sizeof(str));
 
-    if (i == -1) {
-       printf ("### No HW ID - assuming CPCI405");
-    }
-    else
-      puts(str);
+       if (i == -1) {
+               printf ("### No HW ID - assuming CPCI405");
+       }
+       else
+               puts(str);
 
-    if (version2())
-      printf(" (Ver 2.x, ");
-    else
-      printf(" (Ver 1.x, ");
+       if (version2())
+               printf(" (Ver 2.x, ");
+       else
+               printf(" (Ver 1.x, ");
 
 #if 0
-    if ((*(unsigned short *)((unsigned long)CFG_FPGA_BASE_ADDR) + CFG_FPGA_STATUS)
-       & CFG_FPGA_STATUS_FLASH)
-      printf("FLASH Bank A, ");
-    else
-      printf("FLASH Bank B, ");
+       if ((*(unsigned short *)((unsigned long)CFG_FPGA_BASE_ADDR) + CFG_FPGA_STATUS)
+           & CFG_FPGA_STATUS_FLASH)
+               printf("FLASH Bank A, ");
+       else
+               printf("FLASH Bank B, ");
 #endif
            
-    if (ctermm2())
-      printf("CTERM-M2 - Id=0x%02x)", *(unsigned char *)0xf0000400);
-    else
-      if (cpci405_host())
-        printf("PCI Host Version)");
-      else
-        printf("PCI Adapter Version)");
+       if (ctermm2())
+               printf("CTERM-M2 - Id=0x%02x)", *(unsigned char *)0xf0000400);
+       else
+               if (cpci405_host())
+                       printf("PCI Host Version)");
+               else
+                       printf("PCI Adapter Version)");
 
 #ifndef CONFIG_CPCI405_VER2
-    puts("\nFPGA:  ");
-
-    /* display infos on fpgaimage */
-    index = 15;
-    for (i=0; i<4; i++)
-      {
-        len = fpgadata[index];
-        printf("%s ", &(fpgadata[index+1]));
-        index += len+3;
-      }
+       puts("\nFPGA:  ");
+
+       /* display infos on fpgaimage */
+       index = 15;
+       for (i=0; i<4; i++) {
+               len = fpgadata[index];
+               printf("%s ", &(fpgadata[index+1]));
+               index += len+3;
+       }
 #endif
 
-    putc ('\n');
+       putc ('\n');
 
-    return 1;
+       return 1;
 }
 
 /* ------------------------------------------------------------------------- */
 
 long int initdram (int board_type)
 {
-  unsigned long val;
+       unsigned long val;
 
-  mtdcr(memcfga, mem_mb0cf);
-  val = mfdcr(memcfgd);
+       mtdcr(memcfga, mem_mb0cf);
+       val = mfdcr(memcfgd);
 
 #if 0
-  printf("\nmb0cf=%x\n", val); /* test-only */
-  printf("strap=%x\n", mfdcr(strap)); /* test-only */
+       printf("\nmb0cf=%x\n", val); /* test-only */
+       printf("strap=%x\n", mfdcr(strap)); /* test-only */
 #endif
 
-  return (4*1024*1024 << ((val & 0x000e0000) >> 17));
+       return (4*1024*1024 << ((val & 0x000e0000) >> 17));
 }
 
 /* ------------------------------------------------------------------------- */
 
 int testdram (void)
 {
-    /* TODO: XXX XXX XXX */
-    printf ("test: 16 MB - ok\n");
+       /* TODO: XXX XXX XXX */
+       printf ("test: 16 MB - ok\n");
 
-    return (0);
+       return (0);
 }
 
 /* ------------------------------------------------------------------------- */
index 4a97e6b5f88de2e5d5b49330d2550871d213d528..8b8eda19b19c4ed726af48735d46924b354aef38 100644 (file)
-  0x1f,0x8b,0x08,0x08,0xc5,0x7d,0xdf,0x3c,0x00,0x03,0x63,0x70,0x63,0x69,0x34,0x30,
-  0x35,0x5f,0x32,0x5f,0x30,0x31,0x2e,0x62,0x69,0x74,0x00,0xed,0x9c,0x7f,0x74,0x14,
-  0xd7,0x95,0xe7,0x6f,0xbd,0xaa,0x96,0x4a,0xdd,0x2d,0x75,0xa9,0x25,0x91,0x8e,0x0d,
-  0xb8,0xd4,0x12,0xb8,0xad,0x69,0x89,0xa6,0x65,0x63,0x8d,0xac,0xb4,0x9e,0x7e,0x40,
-  0x3a,0x36,0x09,0x8a,0xe3,0x4c,0xd8,0xc4,0x49,0x9a,0x98,0xcc,0x68,0x66,0x89,0x07,
-  0xec,0xcc,0x1e,0x36,0xc7,0x27,0xe7,0xe9,0x07,0x46,0x20,0x26,0x34,0x36,0x13,0xe3,
-  0x19,0x4e,0xa6,0xc1,0xc4,0x51,0x1c,0x92,0x34,0xe0,0x1f,0xb2,0x4d,0x9c,0x42,0xc8,
-  0xa4,0x01,0x05,0x2b,0xc4,0x67,0x43,0x6c,0xaf,0x69,0x12,0xc5,0x23,0xdb,0x0a,0x91,
-  0xb1,0xc7,0xe1,0x97,0xad,0xbd,0xaf,0x7e,0x4b,0xc2,0xde,0xec,0x64,0xcf,0x99,0x3d,
-  0x67,0x29,0xfe,0xe0,0xc2,0x53,0x55,0xdf,0xf7,0xea,0xbe,0xcf,0xfb,0xde,0xfb,0x5e,
-  0x0b,0x8a,0x02,0x93,0xc6,0x1f,0x00,0x61,0x15,0x94,0xde,0xb5,0xf6,0xae,0xbf,0xbd,
-  0x31,0x76,0xd3,0x97,0xe3,0x5f,0x8e,0x2d,0xae,0xbb,0xfb,0xae,0xd5,0xf0,0x15,0xf0,
-  0xc6,0xef,0x5d,0x7c,0xd3,0xd7,0xd7,0x2d,0xbe,0xf1,0x46,0xb8,0x0b,0x7c,0xf1,0x58,
-  0x2c,0xbe,0x28,0x76,0xd3,0xa2,0xc5,0xf5,0xb0,0x1a,0x8a,0x16,0xc7,0x1a,0x6f,0x6c,
-  0x68,0x8c,0xdd,0x04,0x5f,0x05,0x48,0xf5,0x4d,0xe1,0xf5,0xd8,0xc3,0x9f,0xfd,0xeb,
-  0x18,0x30,0x01,0x00,0x0a,0x63,0x42,0x8a,0xff,0x5d,0x10,0x13,0x54,0x01,0x58,0x73,
-  0x6d,0x0c,0x34,0xfe,0x6f,0x30,0xdb,0x8b,0x62,0xa0,0xba,0xff,0x2d,0xc4,0x80,0x42,
-  0x07,0x94,0x7f,0x0d,0x82,0x31,0x98,0x71,0x09,0x20,0x31,0xc3,0xfa,0xb0,0x36,0x32,
-  0xb3,0x89,0x5f,0x7f,0x42,0x5b,0xf0,0x0a,0x4d,0xd2,0x7f,0xb4,0xcd,0xf8,0x6b,0x2a,
-  0x08,0xe5,0xe0,0x01,0x41,0xef,0x91,0x69,0x34,0x0f,0x1b,0xf7,0x69,0x9e,0xcb,0xf0,
-  0x33,0x76,0x33,0x44,0xcf,0xfd,0xf6,0x15,0x79,0xb8,0x3b,0xa6,0x16,0x67,0x85,0x49,
-  0x58,0x6b,0x78,0xa4,0x9c,0x85,0x7e,0xa8,0x83,0xe4,0x65,0x32,0x95,0xdc,0xcc,0xc2,
-  0x99,0xbe,0x9f,0x90,0xbc,0x64,0xf4,0xb9,0xcf,0x33,0x02,0x3d,0x91,0x28,0x95,0x63,
-  0x30,0xe2,0xcd,0x30,0x95,0x16,0xc5,0xc2,0xbf,0x11,0x8c,0xfb,0xb4,0x8a,0xbd,0xd0,
-  0xaf,0x61,0x5b,0xb6,0x75,0x02,0xfa,0xd9,0x6e,0x4d,0xde,0x17,0x9c,0x94,0xa8,0xe1,
-  0x4c,0xc5,0x1f,0xf0,0xbf,0x96,0xdc,0xef,0xcf,0x8a,0x13,0x90,0x84,0xf8,0xed,0xc5,
-  0x07,0x85,0x51,0xc9,0xb8,0x2f,0x2f,0x3c,0x47,0xa7,0xa0,0x99,0x05,0xb2,0xe2,0x2b,
-  0xf2,0x7d,0x24,0x30,0x16,0x98,0x0c,0x9e,0x87,0x94,0xde,0x46,0x95,0x7f,0x0c,0x1f,
-  0x87,0x46,0xcd,0x9f,0x25,0x51,0xc8,0x49,0xd7,0xd0,0x92,0xac,0x38,0x2a,0xa9,0x7a,
-  0x5b,0x4e,0x88,0xc2,0x26,0x08,0xbf,0xf8,0xc3,0x49,0xd2,0xac,0x75,0x69,0x6a,0x4a,
-  0xce,0x92,0x73,0x60,0x7c,0x5e,0xde,0xf3,0x49,0xe8,0x81,0x08,0x8d,0xc4,0x48,0x89,
-  0xb2,0x9b,0x45,0x52,0x5e,0x20,0xe7,0x71,0x1c,0xf8,0xa5,0x0a,0x5e,0xf8,0x16,0x53,
-  0xbf,0x5a,0xf4,0xdf,0xbd,0xf3,0x3b,0x1e,0xcd,0x57,0x8d,0xcb,0xff,0x85,0x9c,0x32,
-  0xef,0x4b,0xca,0x1e,0x38,0x9c,0x69,0xa0,0xcb,0x1b,0xcb,0x4a,0xc8,0x6f,0x07,0x1a,
-  0xbe,0x52,0x52,0x27,0x9e,0x34,0xdf,0x1b,0x9d,0xb7,0x8f,0xbe,0xaf,0x24,0xe8,0x8a,
-  0x27,0x0e,0x4f,0x64,0x4e,0x97,0x36,0x6b,0xbe,0xb7,0xc4,0xd1,0x02,0xc3,0xcf,0x01,
-  0xcf,0x04,0x1c,0x67,0x31,0xad,0xee,0x39,0xb1,0xb8,0x7a,0x1c,0x12,0x34,0xc0,0xc4,
-  0x1a,0x73,0x3c,0x93,0xa5,0x7d,0xf0,0x2d,0xa8,0xa4,0xf2,0x5a,0x32,0x97,0xed,0x11,
-  0x8a,0x35,0x9f,0x42,0x82,0x92,0x71,0x9f,0x06,0xdf,0x86,0x8d,0x7d,0x95,0x79,0x6f,
-  0x03,0x7c,0x09,0x9e,0xd0,0x6a,0x53,0xbe,0xce,0x30,0xc6,0xa4,0x71,0x5f,0xf9,0xf3,
-  0xd0,0xcd,0xd4,0xbc,0x1c,0x23,0xcb,0x61,0x5f,0x77,0x74,0xd4,0x17,0xc3,0xfb,0x8c,
-  0xf7,0x30,0x5e,0x31,0xd0,0x7a,0x42,0xaa,0x1f,0x28,0xc9,0x88,0x9d,0xf0,0x1c,0x34,
-  0xf7,0x5d,0x97,0x2f,0x6c,0x34,0x9f,0x99,0x84,0x3c,0x9c,0x87,0x04,0xa0,0x0b,0x4c,
-  0x42,0x5f,0x82,0x68,0x9c,0x04,0xe3,0x3e,0x59,0x99,0x80,0x5f,0x4b,0x8d,0x34,0x9a,
-  0x16,0xc7,0x6e,0x3f,0x0a,0x61,0x1a,0x50,0x80,0x98,0xcf,0x64,0xd2,0x32,0x1c,0xcf,
-  0x3a,0x2a,0xa7,0xc9,0xbf,0x41,0x57,0x4b,0x78,0xa5,0x2f,0x4d,0x54,0x50,0xf4,0xb6,
-  0x90,0xa7,0x9a,0x3e,0x0c,0xd5,0xd8,0x16,0x1c,0x8b,0x6c,0xea,0x7b,0x8c,0x62,0x5b,
-  0x81,0x39,0x66,0x72,0x7b,0x2f,0xeb,0x82,0x68,0x52,0x0e,0xb6,0x0e,0xf7,0x6d,0x02,
-  0x95,0xfa,0x82,0xde,0x6e,0xc1,0x18,0xb3,0xc1,0xe2,0x14,0x9c,0xea,0x68,0x2c,0x8f,
-  0x32,0x31,0x0f,0xc9,0x82,0x46,0xd8,0xca,0xc4,0x3a,0xd1,0x18,0x97,0x1d,0xf3,0xc6,
-  0xe8,0x7b,0xb0,0x68,0xe9,0xa2,0x6d,0x22,0x37,0x6e,0xa6,0xbe,0x5f,0x88,0x7f,0x4d,
-  0xd6,0x9a,0x9f,0xf7,0x22,0x3b,0x2a,0x34,0x27,0x97,0x3f,0x50,0xf6,0x22,0xfb,0x39,
-  0x34,0x53,0x7f,0x5a,0x7c,0xcd,0x1c,0xcf,0x06,0x78,0x1d,0x46,0xc3,0x75,0xd7,0xd4,
-  0xb2,0xe0,0x19,0xd8,0x8c,0x81,0x2a,0x6f,0x98,0x73,0xc2,0xec,0x83,0xec,0x79,0x1e,
-  0xba,0xe4,0x68,0xbb,0x5c,0x4e,0x9e,0xf7,0xa2,0x53,0x9a,0xac,0x90,0x6e,0x33,0x3e,
-  0x43,0x15,0x7b,0xe4,0x87,0xa5,0xba,0x65,0x9b,0xd2,0xad,0x63,0x8a,0xd9,0xd1,0x23,
-  0xe6,0x98,0x65,0x2a,0xc6,0xe0,0x28,0x4b,0xac,0x8d,0xa6,0x0b,0x86,0xa5,0x4d,0xed,
-  0x4d,0x9d,0x91,0x1d,0xe2,0x80,0x19,0x67,0x11,0xf8,0x2e,0x5c,0xd0,0x12,0xa9,0xc2,
-  0x74,0xe1,0x98,0x74,0x81,0x24,0x56,0x07,0x76,0x8a,0xc7,0xcc,0x77,0x14,0x51,0x76,
-  0xc1,0xb8,0x14,0x27,0x3f,0x62,0x9f,0x51,0xa5,0x53,0x1d,0x09,0xd9,0xcf,0xc4,0x63,
-  0xd6,0x7d,0x52,0x88,0xbf,0xf7,0xac,0x9c,0x41,0x97,0xbf,0x05,0x8b,0xd2,0x91,0x0c,
-  0x39,0x66,0x4e,0xd1,0x88,0x67,0x05,0x7b,0x04,0xd4,0xb5,0x35,0x31,0x0c,0xae,0x6d,
-  0x12,0xfa,0x19,0xc3,0x36,0x33,0x3e,0x4b,0xe7,0xaa,0x1b,0xb3,0xea,0x32,0x79,0x3d,
-  0x29,0x27,0xf7,0x7b,0x16,0x61,0xe0,0x14,0xe4,0xcc,0xb1,0x8e,0xc0,0x1c,0xf8,0xb7,
-  0xbd,0x8b,0x3b,0x4b,0x1a,0xc4,0x20,0xfc,0x8a,0x7d,0x2c,0xef,0x5f,0x2f,0x1e,0x33,
-  0xe3,0x53,0xae,0xd8,0x03,0x97,0x20,0xd1,0x82,0xf3,0x28,0x0f,0x17,0x85,0x26,0xfa,
-  0xe5,0xac,0x38,0x64,0xc6,0x27,0xf5,0xbc,0x01,0x97,0xd2,0xf5,0x99,0xe5,0x4f,0x57,
-  0x9d,0xa3,0xa7,0x59,0x62,0x4f,0xe0,0x82,0x38,0x6a,0x8e,0xe7,0x40,0xe9,0x3f,0xf7,
-  0xf6,0xb0,0x47,0x34,0xb9,0x81,0x1c,0x61,0xdd,0xca,0xd7,0x22,0xbe,0x75,0xe4,0x0d,
-  0x73,0x5c,0xf0,0x2d,0xb1,0xa7,0x42,0x0b,0x7a,0x23,0xeb,0xc8,0x28,0x3c,0x04,0xb5,
-  0x9a,0x6f,0x6d,0x70,0x98,0x1a,0xfd,0x4b,0x95,0xe7,0x84,0x9e,0x55,0xab,0x87,0xd1,
-  0x75,0x0d,0xba,0x65,0x3f,0xf5,0x2d,0x81,0x53,0xe6,0x7b,0x18,0xa8,0xf8,0x3e,0xfd,
-  0xa3,0x76,0xb3,0x16,0xcd,0x12,0x8d,0xbc,0x84,0x83,0xe7,0xcb,0xda,0xcf,0x64,0x30,
-  0x82,0x7e,0x36,0x68,0x8b,0xb2,0xe2,0xeb,0x70,0xb1,0x22,0x71,0x87,0x2f,0x2b,0xfe,
-  0xce,0x8c,0x4f,0x41,0x99,0x24,0x2f,0xc0,0x2d,0x5a,0xf1,0x64,0xe9,0x24,0xfc,0x81,
-  0x36,0xd3,0xc0,0xa4,0x98,0x6f,0x37,0xda,0xba,0xa4,0xd5,0xc8,0xa5,0xb0,0x16,0xc9,
-  0x92,0xdf,0x28,0x2f,0xe5,0xeb,0xd6,0xe1,0x33,0xf3,0xd4,0x88,0x4f,0x26,0x74,0x42,
-  0xbf,0xf4,0x77,0x99,0xa2,0x2c,0x39,0x43,0x1f,0x13,0xea,0x26,0x7d,0xd9,0xd6,0xbc,
-  0x39,0x9e,0x32,0x78,0xa1,0x3f,0xa6,0x6a,0x91,0x7a,0x92,0xd3,0x1e,0x50,0xd6,0xb4,
-  0xf8,0x62,0xe1,0x21,0xb3,0x77,0x20,0x77,0xc2,0x0b,0xc9,0x46,0x56,0xfc,0x78,0x4f,
-  0x3e,0xf3,0x26,0x24,0x86,0x0b,0x1f,0x17,0xf3,0xc4,0x78,0x66,0x66,0xde,0xaf,0xe1,
-  0x8f,0xd0,0xac,0xad,0x98,0x2c,0xd4,0xfa,0xde,0x57,0x9b,0x3f,0x19,0x38,0xb7,0x71,
-  0xbc,0xc0,0x64,0x9d,0xe7,0x5d,0x78,0x01,0xe2,0x49,0x7f,0x52,0x7c,0xf2,0x8e,0xd3,
-  0xa4,0x3e,0x1f,0x38,0x2f,0x3a,0xfc,0x7c,0x0d,0x59,0x57,0xf5,0xf5,0xe4,0x6e,0x22,
-  0x49,0x3d,0xad,0xe1,0x9c,0x6f,0x10,0x7d,0xb1,0xf8,0x39,0x0c,0x5d,0x38,0xed,0x22,
-  0xe9,0xee,0x5e,0xf6,0xa0,0xa2,0x0e,0xdd,0x86,0xfc,0xf4,0x98,0xcf,0x2c,0x7d,0x94,
-  0xf7,0x8f,0x26,0x19,0x01,0xb5,0xbf,0x72,0xf7,0xa1,0xb6,0x2c,0x99,0x34,0xc7,0x8c,
-  0x56,0x9c,0x80,0xe3,0x90,0xa5,0x18,0x5e,0xdf,0x6d,0x7d,0x09,0xe2,0xda,0x8a,0x6c,
-  0x9b,0xc3,0xcf,0x83,0xdc,0x4f,0xba,0x42,0x13,0xdf,0x81,0xf7,0x59,0xb3,0x16,0x98,
-  0x2c,0x3b,0xaf,0x98,0xf7,0x29,0x7b,0xe5,0xa3,0x90,0xe8,0xf4,0x33,0xdf,0x1e,0x72,
-  0x58,0x8a,0x6b,0x5b,0xb3,0x55,0x36,0x3f,0x97,0x2e,0x0c,0xf6,0xab,0x8b,0xd6,0xca,
-  0x52,0x58,0x55,0x5e,0x86,0xdd,0x9a,0xcf,0xcd,0xcf,0x76,0xda,0x2d,0xad,0x69,0xe9,
-  0x93,0xba,0x7b,0x49,0x97,0xa0,0x1e,0x42,0xf6,0x38,0xfc,0xbc,0x99,0xde,0xcf,0x6a,
-  0x57,0x27,0x5f,0x27,0x73,0xc8,0x3f,0x3d,0x58,0x99,0xf7,0xad,0x27,0x39,0x17,0x3f,
-  0x0f,0xa9,0x4d,0x9d,0xfe,0x6b,0xc4,0xde,0xbe,0xc3,0x99,0xd8,0x78,0xe0,0x96,0xaa,
-  0x93,0xe6,0x50,0xd3,0x79,0xdb,0x61,0x0a,0x9a,0x3e,0x17,0xe8,0xc2,0x21,0xbe,0x54,
-  0xda,0x3c,0x1c,0x98,0x44,0x5f,0x0c,0x3f,0x39,0x3f,0x8f,0x31,0x1c,0x4f,0x26,0x4a,
-  0x70,0x0a,0xe2,0x79,0x5c,0x28,0xde,0xb0,0xf9,0xb9,0x93,0x74,0x83,0x9a,0x94,0x69,
-  0xb0,0x1c,0x7a,0xa1,0x52,0x43,0x90,0x9e,0xb4,0xf9,0xf9,0x0c,0x6c,0xe8,0x5e,0x90,
-  0x92,0x97,0x93,0x25,0xf0,0x20,0xab,0xcc,0xf7,0xad,0x27,0x93,0x36,0x3f,0x4f,0x40,
-  0x8f,0xb4,0x90,0xca,0xde,0x65,0xb5,0x6a,0x4f,0x52,0xe5,0x73,0xec,0xa4,0x64,0xbc,
-  0xdb,0xf1,0xd2,0x67,0xd4,0x13,0xf0,0x14,0xf3,0xaf,0x16,0x1b,0xc9,0xab,0xed,0x61,
-  0xe6,0xcf,0x88,0x17,0xcd,0xb5,0x0a,0xf9,0xa9,0x9e,0x87,0x46,0xe4,0x67,0x5b,0x9e,
-  0x1a,0x20,0xad,0x72,0xf8,0x89,0x9c,0x40,0xbc,0xfb,0xb7,0x8b,0x7b,0xc8,0x05,0x88,
-  0xd3,0x40,0x5a,0x1c,0xb2,0xf9,0xd9,0xae,0xf3,0xb3,0x38,0x1d,0xac,0x86,0x5f,0xc3,
-  0x6e,0xce,0xc8,0xbc,0xc5,0x4f,0xa1,0x9a,0xf4,0xc3,0xdd,0x29,0x44,0xce,0x1e,0xb2,
-  0x0f,0x5f,0x72,0x11,0xb2,0xc7,0xe2,0xa7,0x54,0x0d,0x5d,0xea,0xdd,0xc9,0x4f,0xa4,
-  0x89,0x44,0xb6,0xa9,0xc8,0x4f,0xa5,0x60,0xa8,0xd4,0x18,0x33,0xce,0xcf,0x1c,0xba,
-  0xe0,0xf7,0x88,0xbb,0x5a,0xcf,0x77,0xc4,0xca,0x8b,0x99,0x78,0x56,0x34,0xde,0xc3,
-  0x8e,0x79,0x2f,0x7a,0xdf,0x53,0x9a,0xdb,0x03,0xa3,0x65,0xef,0xc0,0x94,0x32,0x9f,
-  0xfb,0xf2,0x5a,0x81,0xc5,0xcf,0x61,0x38,0xaa,0xc6,0x93,0xd8,0x26,0xc1,0xaf,0xd5,
-  0x78,0x47,0x20,0x5d,0x75,0xc4,0xe2,0xa7,0x92,0x87,0xbe,0x60,0x95,0xb2,0x22,0xd3,
-  0x1d,0x66,0x7d,0x91,0xdd,0xb2,0x8f,0x11,0x87,0x9f,0xff,0x03,0x36,0xb0,0xca,0x76,
-  0x5f,0xda,0x5b,0xad,0x6e,0x8b,0x45,0x92,0x5e,0x85,0x0c,0x39,0xfc,0x94,0xfe,0x71,
-  0x41,0x15,0xdd,0xbc,0x9f,0x54,0x2b,0x9b,0x94,0x1a,0xde,0x3f,0x87,0x9f,0xaf,0xc1,
-  0x51,0xba,0x9f,0xfa,0xe6,0x8a,0x92,0xf6,0x6b,0xad,0x91,0x96,0xa4,0xc5,0x71,0x33,
-  0x3e,0x23,0xc2,0x77,0xc9,0x05,0x39,0x41,0xb7,0xa2,0x7b,0xf2,0x05,0x58,0xc2,0xfd,
-  0x3c,0x66,0xae,0xef,0x11,0x25,0x83,0xf1,0xdb,0x0c,0x52,0x2f,0x32,0x6b,0x9c,0xc6,
-  0xf9,0xa2,0x65,0xf3,0x53,0x90,0x61,0x33,0xad,0x63,0xfe,0xfc,0x50,0x04,0x36,0x4b,
-  0xbb,0x99,0x2f,0xd3,0x7a,0xcc,0xe2,0xa0,0x67,0x39,0x3c,0x42,0xa3,0xac,0x28,0x46,
-  0x46,0xe0,0x07,0xd0,0xae,0xf5,0x3b,0xfc,0xcc,0x08,0x31,0x79,0x03,0x44,0x33,0x45,
-  0x93,0xa4,0x89,0x6d,0x84,0x05,0xc3,0x5f,0x58,0x4b,0xc6,0xcd,0xfb,0x06,0xe4,0xf9,
-  0xf0,0x6f,0x3d,0x1f,0x53,0xe7,0xad,0x14,0x5f,0x85,0x3f,0xb0,0x27,0xce,0x04,0xd6,
-  0x8b,0x6f,0x58,0xfc,0x9c,0x97,0x81,0x0b,0x38,0xd6,0x25,0x8a,0xf8,0x7b,0xed,0x52,
-  0x67,0xe3,0xcb,0xc5,0xc8,0x4f,0x62,0xf8,0x09,0x9e,0xf7,0xe1,0x6c,0x57,0x9c,0x63,
-  0xf3,0xb4,0x74,0xfa,0xe1,0xf8,0xef,0x02,0x4f,0x8b,0xcc,0xe2,0xa7,0xb0,0x9f,0xf5,
-  0x66,0x2a,0xbf,0xeb,0x6b,0xf4,0xee,0x8c,0xf5,0xf4,0xa8,0x63,0x62,0x83,0x8b,0x9f,
-  0x07,0xb5,0x27,0xd5,0x4a,0xd5,0x37,0x49,0x2e,0xc3,0x43,0xea,0x0d,0x39,0xdf,0x3d,
-  0x84,0x99,0xf1,0xa9,0x96,0x1f,0x86,0x1d,0x68,0xfb,0x7e,0x42,0xb6,0xe2,0xc4,0xaf,
-  0xd1,0x70,0x8e,0xe5,0x6c,0x7e,0xfe,0x88,0x3e,0xdb,0xbb,0x5f,0x0b,0x64,0xc4,0xd3,
-  0xf4,0x34,0x02,0x11,0xa1,0xfe,0x98,0xcd,0xcf,0x3c,0x7d,0xbd,0x2b,0xf1,0x8b,0x40,
-  0xb6,0x70,0x02,0x41,0xba,0x50,0xd3,0x81,0x6f,0xf1,0xf3,0xb2,0xf7,0x4d,0xa8,0xa7,
-  0x01,0xad,0xa7,0x09,0x4e,0x43,0xbd,0xe6,0x9d,0x14,0x35,0x8b,0x9f,0x94,0x62,0x7c,
-  0xd6,0x74,0xf4,0x6f,0x17,0xef,0x2b,0xef,0x27,0x61,0x0d,0x85,0x9a,0xcd,0x4f,0x4f,
-  0x14,0x1e,0x83,0xf0,0xa8,0x2f,0x43,0xf6,0xc2,0xbf,0x00,0x6f,0xc3,0xd8,0x35,0xe3,
-  0xb3,0x5c,0x95,0xfb,0x20,0x92,0xf3,0x2d,0x21,0x13,0xd0,0xa3,0xaa,0x47,0x71,0x1e,
-  0x0d,0x99,0xeb,0x3b,0x78,0xd6,0xc0,0x1b,0x6a,0x7c,0x79,0xe0,0xd1,0xb2,0x83,0xf0,
-  0xab,0xf5,0xf5,0x43,0xd1,0xc7,0x45,0xcd,0x8c,0xcf,0x4c,0x45,0x9e,0x0e,0xd2,0xe6,
-  0xe5,0x81,0x7a,0xf1,0x3e,0xb8,0x54,0xd9,0x3c,0x54,0xfc,0x76,0x8f,0xc3,0xcf,0x8b,
-  0xf0,0x2e,0xbb,0x99,0x46,0xcf,0x63,0xdb,0x1f,0xa0,0x5e,0x2d,0x76,0xf1,0x13,0xff,
-  0x6c,0xee,0x0d,0x83,0xbc,0x83,0x24,0xc8,0x56,0xd4,0x98,0xf2,0xa0,0xa3,0x3f,0xdb,
-  0xc7,0xe0,0x59,0xae,0x43,0xb2,0xa8,0x89,0x7a,0x40,0x6d,0x41,0x5f,0x1c,0xfd,0x99,
-  0x41,0xee,0xea,0xf7,0x45,0x49,0xbf,0x90,0x41,0x3d,0x08,0x16,0x3f,0xc1,0xf3,0x06,
-  0x3d,0xc7,0x96,0xe4,0xa2,0xd7,0x88,0x6b,0xc8,0x71,0x88,0xaf,0x45,0xbe,0x68,0x16,
-  0x3f,0x4b,0xb3,0xf0,0x3e,0x7c,0x4c,0x0a,0x8c,0xfa,0x5e,0x41,0x40,0xe9,0x6b,0x8e,
-  0xa3,0x3f,0xbf,0x8b,0xf3,0xaf,0x71,0xc4,0xff,0x80,0xb8,0x86,0xbd,0x09,0xf1,0xf6,
-  0x5a,0x97,0xfe,0xf4,0x00,0xca,0x0f,0xfc,0xbc,0xed,0xad,0x1f,0x53,0x37,0x9e,0x0a,
-  0xbb,0xf5,0xa7,0x86,0x1a,0xbc,0x3b,0x19,0x59,0x1b,0x52,0xc8,0x0a,0x78,0x84,0x0d,
-  0xa0,0x60,0x76,0xf8,0x89,0xa2,0x1d,0xf5,0x67,0xaa,0x6f,0x25,0xf9,0x0e,0x6c,0x64,
-  0x95,0x29,0x5c,0xe8,0x6d,0xfd,0xb9,0xd2,0x23,0x1d,0x86,0x06,0xea,0x0f,0x8a,0xcb,
-  0xd9,0x6f,0x21,0x86,0xef,0xae,0xcc,0xd6,0x9f,0x73,0x1f,0x47,0xf7,0x12,0xed,0x01,
-  0xc5,0xf7,0x45,0xf5,0x6d,0x5c,0xab,0xb8,0x16,0x0e,0xa6,0xcc,0x79,0xab,0xc1,0xc9,
-  0xae,0xf8,0x21,0xbf,0x22,0xd6,0x2a,0xc7,0xc3,0x71,0xea,0xcf,0xb6,0xd9,0xfc,0x14,
-  0xd2,0x70,0x3f,0xc7,0x66,0x07,0xd9,0x02,0x1b,0x23,0x55,0x34,0xe2,0xf0,0x53,0x85,
-  0x27,0xe1,0xdb,0xa8,0x31,0xbd,0x49,0x32,0x1f,0x7a,0xb2,0x37,0xe4,0x65,0x87,0x9f,
-  0x9d,0xe5,0xc3,0xf0,0x80,0xa6,0x6a,0xde,0xb9,0xad,0x5b,0xa0,0x87,0x0c,0x0c,0x0d,
-  0x70,0x7e,0x9a,0xfa,0x53,0x1a,0x84,0x57,0x59,0x7d,0x57,0xdd,0xeb,0x81,0x88,0x72,
-  0x0c,0x6e,0x31,0xf8,0x69,0x3c,0x33,0x89,0x7c,0x19,0x0f,0x1d,0x84,0xe2,0xae,0xc2,
-  0x3c,0x2e,0x60,0x4b,0x84,0x69,0xfa,0x73,0x0f,0xaa,0xb7,0x04,0x55,0x1f,0x10,0xab,
-  0xe1,0xf5,0x4c,0x9c,0x6e,0x99,0xce,0xcf,0xef,0x73,0x59,0x16,0x22,0x12,0xdd,0xa4,
-  0xed,0xee,0x90,0x5d,0xfc,0xf4,0x54,0xc3,0x26,0x5a,0x47,0xbd,0xc8,0x25,0xe5,0xfb,
-  0xb2,0x3a,0x94,0x9c,0xce,0xcf,0x5d,0x10,0xfd,0xc4,0x66,0x85,0x48,0xac,0x4b,0x05,
-  0x2a,0x2b,0x76,0x7c,0x0e,0xce,0x3b,0x43,0x91,0x9f,0xe5,0xdf,0xca,0x88,0x2a,0x8c,
-  0x43,0x90,0x0b,0x51,0x8b,0x9f,0x83,0xf3,0xde,0xe1,0xaf,0xbb,0xfd,0x93,0x93,0xbe,
-  0x31,0x7a,0x21,0xd8,0xec,0xe6,0x67,0x83,0x67,0x0c,0x7e,0x0e,0xf1,0x9c,0x7f,0xd4,
-  0x77,0xe3,0xee,0x9f,0x57,0x2f,0xe6,0xfa,0xf3,0x51,0x8b,0x83,0x90,0x67,0xa7,0x20,
-  0x1c,0x92,0x19,0xa9,0xc4,0x80,0x0c,0xcb,0x32,0xe7,0xa7,0x31,0x66,0x49,0x3a,0xa6,
-  0x76,0x41,0x66,0x59,0x0e,0x59,0xae,0x74,0x51,0xb5,0x55,0xd7,0x9f,0x46,0xff,0x90,
-  0x9f,0xf0,0x30,0xca,0xe3,0xbe,0x34,0xc1,0xce,0x80,0x9a,0x73,0xeb,0x4f,0xcf,0x11,
-  0xf5,0x28,0x8b,0xd3,0xe8,0xf6,0xeb,0x25,0xe1,0x28,0xec,0x5f,0x89,0x02,0x7d,0xc0,
-  0x8c,0xcf,0x4e,0xe5,0x51,0x76,0x81,0x26,0xb4,0x40,0xfa,0xc7,0x63,0xf0,0x16,0xcf,
-  0x2d,0xa6,0xf3,0xf3,0xbc,0xba,0x04,0x9a,0x58,0x59,0x5e,0xca,0xf5,0xc6,0x25,0x97,
-  0xfe,0x94,0xa5,0x06,0x78,0x52,0x0b,0x67,0x42,0x77,0x93,0x8b,0xa8,0x3f,0xab,0x98,
-  0xcc,0xf5,0xa7,0x39,0x66,0x9e,0xe5,0xf2,0x3e,0xad,0xfa,0x8c,0x1c,0x21,0x43,0x87,
-  0xbb,0x21,0x93,0x77,0xeb,0xcf,0x96,0xb9,0xda,0x13,0xb2,0xda,0x83,0xcb,0xec,0x28,
-  0x6c,0x84,0x2a,0xbe,0xde,0x5a,0xfc,0x8c,0x84,0xe6,0xc3,0xbf,0xb3,0x9b,0x7e,0x27,
-  0xaf,0x17,0x87,0x30,0x81,0x5c,0x9c,0xf1,0xaf,0x2f,0x73,0xf8,0x79,0x50,0x7d,0x8b,
-  0x24,0x1e,0xd6,0x71,0xf4,0x36,0x26,0x74,0x7f,0x8f,0xfc,0x34,0xe3,0x33,0x25,0x3d,
-  0x47,0x87,0x32,0x07,0xc6,0xfc,0xeb,0xab,0xf6,0xd3,0x17,0x58,0x73,0x2a,0x7a,0xa1,
-  0xca,0xd6,0x9f,0xb0,0x93,0xdc,0xbf,0xa3,0x72,0x8b,0xfc,0x0f,0xb7,0x06,0xbb,0x37,
-  0x42,0x2d,0x2d,0x76,0xe9,0x4f,0xba,0x53,0xda,0x08,0x95,0x87,0xe5,0xb5,0xdd,0x8c,
-  0x3d,0x04,0x8b,0x40,0x46,0xfd,0x69,0xc6,0x27,0x2d,0xff,0x21,0xed,0x26,0x99,0xac,
-  0xdc,0x84,0x0e,0x3c,0x08,0x51,0xcc,0xe6,0x89,0xad,0x3f,0x3d,0x3f,0x81,0x43,0x2c,
-  0xce,0xa2,0x07,0xc5,0x01,0x5c,0x8b,0x13,0x1a,0xd7,0x13,0xd6,0x58,0x2b,0x97,0xe1,
-  0x02,0x6d,0x86,0xc0,0x7e,0xdf,0x38,0xbc,0x29,0x25,0x3a,0x02,0x2e,0xfd,0xd9,0x71,
-  0xb9,0xfa,0xe7,0xb0,0xa4,0xdb,0x3f,0x29,0x3e,0x83,0xc1,0x51,0x7f,0x4e,0x42,0xfd,
-  0x29,0x59,0xfa,0x73,0x0d,0xd9,0x94,0x0f,0x43,0xa4,0x29,0x18,0x81,0x03,0xc8,0xa5,
-  0x1a,0x97,0xfe,0x44,0x0e,0x6e,0x62,0xd5,0x1f,0x45,0xf6,0xec,0x4a,0x3f,0xcd,0xc2,
-  0xd4,0xeb,0xe2,0xa7,0xe4,0x07,0xa6,0xaa,0x80,0xaf,0xdb,0x5f,0x79,0x80,0xb7,0xb9,
-  0xf8,0x19,0x6a,0xc2,0x75,0x7a,0x09,0xa0,0x7b,0x03,0xc8,0xf2,0xfd,0x38,0x6f,0xc5,
-  0xbc,0xc5,0xcf,0x79,0xaf,0xc0,0x65,0x05,0xfd,0x9c,0xf4,0x4d,0xa0,0x2f,0x1f,0xe3,
-  0x5c,0x72,0xf8,0x39,0xc1,0x87,0x31,0x73,0x5d,0x56,0xfc,0xad,0xf2,0xcb,0xca,0xfa,
-  0x51,0xbf,0x9b,0x9f,0x63,0xc8,0xc1,0x3a,0xf6,0x85,0x9d,0x24,0xdf,0xf7,0x03,0x16,
-  0x1e,0x91,0xf7,0xe3,0x34,0xb4,0xf4,0x67,0xae,0xa7,0x07,0xd6,0x30,0xdf,0x8d,0x64,
-  0x18,0xf5,0x67,0xe4,0x90,0x1c,0xdf,0x7d,0xce,0xe6,0xe7,0x00,0xcf,0xfb,0xd3,0xbe,
-  0x6c,0xc1,0x18,0xfc,0x40,0x88,0x68,0x0d,0x6e,0x7e,0x62,0x7e,0x0b,0x89,0xb5,0xbe,
-  0x6c,0x4f,0x5e,0x39,0x0d,0x8d,0xa3,0xe8,0xa7,0xf5,0xfe,0xf2,0xa5,0x5c,0xd7,0x35,
-  0xaf,0x0d,0x8c,0x8a,0xe7,0xe5,0x3f,0xc2,0x12,0xcc,0xdf,0xab,0xce,0x5b,0xba,0x55,
-  0xd9,0xcb,0xef,0xc3,0x6e,0x55,0xe5,0xb1,0x7f,0xf1,0xd1,0xa8,0x9b,0x9f,0x75,0x05,
-  0xf8,0x79,0x1c,0xd3,0xe3,0xf0,0xe3,0x56,0x7d,0x3d,0x7a,0xd7,0xe6,0xa7,0x9f,0x3e,
-  0x28,0xe0,0x1a,0xae,0x62,0x32,0x7b,0x40,0xa5,0x80,0xf1,0x39,0x69,0x0e,0x99,0x0a,
-  0x05,0xf4,0x21,0xb6,0xe8,0x51,0x39,0x49,0xce,0xf5,0x7e,0xaf,0xbb,0x52,0x2d,0x5a,
-  0x5f,0xf0,0xbe,0x59,0xf3,0x48,0x86,0xbc,0xec,0x97,0x6a,0x62,0xa0,0xb6,0x51,0x3c,
-  0x02,0x6f,0x67,0x63,0xe3,0x3b,0x6f,0x71,0xf2,0xf7,0xb9,0x03,0xf4,0x4d,0x4c,0x17,
-  0x03,0xfb,0xc4,0x61,0x9e,0x28,0x0d,0xbb,0x6a,0x09,0x72,0x85,0xde,0xbf,0x54,0xf1,
-  0x00,0x72,0x02,0x0d,0x75,0x39,0xc6,0xae,0xcd,0xcf,0xed,0x32,0x0f,0x4b,0x99,0x42,
-  0x48,0xfe,0x1e,0xe5,0x31,0x88,0x9c,0x4f,0x99,0xbe,0x7c,0x07,0xbe,0xc7,0x16,0xa5,
-  0x8a,0x1a,0x48,0x1c,0xbe,0x97,0xa9,0xcd,0xeb,0x2c,0x37,0x9e,0xd9,0x59,0x3e,0xb2,
-  0xe1,0x11,0x21,0x2a,0xa3,0xeb,0x11,0xfa,0x08,0xe8,0x39,0xde,0x4b,0x96,0xfe,0x2c,
-  0x7f,0x1a,0xde,0x20,0xcd,0x83,0xc5,0x79,0xb1,0x01,0x5e,0xc3,0xb9,0x22,0x23,0x3f,
-  0xcd,0x18,0x4c,0xe2,0x1b,0xdc,0x21,0x24,0x74,0xfd,0xa9,0x0e,0x1a,0x89,0xfc,0x49,
-  0xcb,0x4f,0xe4,0xe7,0x51,0x03,0x01,0x63,0xf0,0x3a,0x31,0xf5,0xa7,0xd1,0xc6,0xa4,
-  0x6a,0xc2,0xf5,0x27,0xca,0xb2,0x31,0x61,0x13,0x10,0x5d,0x7f,0x0a,0x2e,0x7e,0xc2,
-  0x42,0x2a,0x60,0x1b,0x7c,0x9f,0x86,0x35,0x9f,0x9b,0x9f,0x12,0xcf,0xdf,0x69,0x7f,
-  0x90,0x0c,0xc3,0x26,0x35,0x93,0xf4,0xb9,0xf9,0xd9,0x42,0x73,0x9e,0x25,0xe5,0x98,
-  0xb6,0x9f,0xa1,0x03,0x10,0x2f,0x0f,0x6c,0x10,0xcf,0x16,0xda,0xfc,0x6c,0xbf,0x80,
-  0xe3,0x12,0xf8,0x45,0xdb,0x8b,0xca,0x05,0x2e,0x44,0xd3,0xe2,0x59,0x9b,0x9f,0xef,
-  0xc0,0x7b,0x18,0xb2,0xc5,0xe9,0x1e,0x14,0xa2,0x03,0xf1,0x95,0x81,0xed,0xe2,0x59,
-  0xb0,0xf8,0x79,0x66,0x74,0x10,0xea,0x36,0xcb,0xbd,0xf0,0x06,0x1b,0x40,0x7e,0xde,
-  0x46,0xd0,0x17,0xb3,0xef,0x9e,0x5e,0x75,0x1f,0xf6,0xa1,0x48,0x51,0x86,0x11,0xa4,
-  0xea,0x4a,0x5f,0x90,0x58,0x6b,0x47,0xa8,0xfc,0x7b,0xf0,0x34,0xd4,0xb5,0xd3,0x74,
-  0x10,0xfb,0x80,0x1a,0xda,0x97,0x9e,0x73,0xc4,0x63,0xce,0x69,0x09,0x73,0x74,0x29,
-  0x41,0x8b,0x77,0xf4,0xfc,0x0e,0x0e,0x09,0xf1,0x3b,0xd1,0x97,0x71,0xeb,0x3d,0xe0,
-  0x98,0x5d,0xe0,0x63,0xf6,0x80,0x38,0xa6,0x5c,0x82,0xe7,0xf8,0x98,0xbd,0x64,0x69,
-  0x4c,0x65,0x17,0xcb,0x41,0x1c,0xfc,0xac,0xb0,0x92,0x0b,0x6d,0x01,0xf9,0xe9,0x35,
-  0x63,0x49,0x96,0x6e,0xc1,0xf5,0xbd,0x92,0x63,0xb3,0x01,0x36,0x2b,0x75,0x5d,0x68,
-  0x98,0xa9,0x21,0xf2,0x73,0x05,0x97,0x1f,0xda,0x35,0x31,0x12,0x55,0x7a,0xa8,0xfe,
-  0x6e,0x5b,0xed,0xfc,0xe8,0x23,0x7c,0x59,0x3f,0xe4,0x5d,0x4f,0xe6,0x22,0x3f,0x6b,
-  0x27,0x30,0x26,0x92,0x36,0x3f,0x9f,0xe3,0xd8,0xcc,0x97,0x34,0x90,0xeb,0xd0,0x68,
-  0xca,0xfb,0xef,0xab,0xba,0xb5,0xc0,0x7c,0xe6,0xbc,0x3d,0x88,0xcd,0x3a,0xad,0x98,
-  0xd7,0xc8,0x2e,0xd1,0xc4,0xc9,0x40,0xb6,0xa7,0xdb,0xcc,0xdf,0x53,0xe5,0xcf,0xd1,
-  0x17,0xd2,0x89,0x31,0xff,0x85,0xaa,0xbb,0xe9,0xe9,0xd1,0xe6,0x31,0x14,0xa2,0x21,
-  0xb3,0x7f,0x03,0x32,0x97,0x11,0x75,0xaf,0xc9,0xeb,0xc3,0xaf,0xc2,0xc6,0x5d,0xd1,
-  0xbc,0x38,0x48,0x6a,0xcc,0xfe,0x01,0xec,0xe4,0x2e,0x68,0xf2,0x3a,0x72,0x9f,0xfa,
-  0x90,0x52,0x3b,0xec,0x5b,0x4b,0x0a,0x2c,0x7e,0x4a,0x5b,0x48,0x0f,0xd4,0xfd,0x06,
-  0x5d,0xc7,0x44,0x09,0xe3,0x13,0xf5,0xa7,0x62,0xde,0x37,0x50,0xf1,0x18,0xe3,0xf3,
-  0x3d,0x3a,0x58,0xf5,0x4d,0xf2,0x32,0x34,0x1f,0x42,0x08,0xd5,0x99,0x31,0x9f,0x81,
-  0x33,0x7c,0xfa,0x68,0x81,0x7d,0x82,0xee,0x27,0xd7,0x9f,0xe3,0x92,0xa5,0x3f,0xc7,
-  0x75,0x09,0x85,0xfc,0xbc,0x8c,0x09,0x72,0xb3,0x76,0x1b,0xf2,0x73,0xb5,0xc5,0xcf,
-  0x55,0xea,0xb3,0xd8,0xbf,0xbe,0x2c,0x79,0x05,0x5e,0x4e,0xd5,0x61,0xbe,0x19,0x76,
-  0xf2,0xf7,0x35,0xa8,0xeb,0x38,0x0b,0x50,0x63,0x22,0x14,0x0e,0xf1,0xdc,0xde,0xce,
-  0xdf,0xfd,0xec,0x80,0x1a,0x3d,0x25,0xc7,0xc9,0x84,0xfa,0xa0,0xba,0x26,0x77,0x5b,
-  0x3d,0xb1,0xf3,0xf7,0xd0,0x1a,0x0d,0x7d,0xb9,0x55,0x7e,0xaa,0x07,0x27,0x70,0x43,
-  0xf3,0xa9,0xc0,0xb9,0x9e,0x7c,0xd8,0xca,0xdf,0x27,0xb4,0x4b,0xc1,0xe6,0x5c,0x60,
-  0x7f,0xd9,0x2b,0x91,0x8b,0x6a,0xe2,0x44,0x60,0x7f,0xd5,0x78,0xa1,0xc5,0xcf,0xf7,
-  0xe1,0x05,0x96,0xe0,0x69,0xfb,0xfb,0x70,0x99,0x4d,0xcb,0xdf,0x35,0xe5,0x35,0x82,
-  0xfc,0xcc,0xfb,0x06,0xc9,0x59,0x18,0x84,0x30,0x37,0x2c,0x7d,0x9d,0x5c,0x3a,0xa1,
-  0x98,0x43,0x35,0x02,0x59,0x0c,0x00,0x9f,0x5b,0x7f,0xee,0xe1,0xae,0xf3,0x34,0x7a,
-  0x02,0xb2,0x4a,0x98,0x1b,0x16,0x3f,0x59,0xc5,0x30,0xc7,0x0a,0x1f,0xaa,0x09,0x38,
-  0xaf,0xc5,0xb9,0xa1,0x59,0xfc,0x14,0xb8,0xae,0xe3,0x69,0x3b,0x8e,0xd9,0x65,0xc3,
-  0x70,0xf8,0xb9,0xc7,0x18,0x6b,0xfd,0x3e,0xd0,0xef,0xb3,0x98,0xd5,0x87,0x73,0xfa,
-  0x59,0xfd,0xf3,0x5a,0x27,0xb8,0x9f,0xd3,0xf3,0xf7,0xe5,0x70,0x60,0x86,0x9f,0x16,
-  0x3f,0x33,0x5d,0x73,0x30,0xf3,0xad,0xe5,0x69,0xfb,0xab,0xf0,0x04,0xd3,0xf3,0xf7,
-  0x53,0x66,0x5b,0x52,0xf6,0x63,0x0c,0x36,0xe5,0x03,0x31,0xf1,0x84,0x76,0x9e,0xc6,
-  0x34,0x34,0x4e,0x9a,0xf1,0x49,0xe7,0x99,0x7e,0x66,0xd1,0xcf,0x29,0xc3,0xa9,0xd1,
-  0x02,0x33,0x5e,0x3c,0x63,0xb2,0xe1,0x27,0xe6,0x24,0x17,0x0c,0x3f,0x6d,0x7e,0x6e,
-  0xdb,0x0e,0x4f,0xe9,0xa5,0x23,0x7c,0xef,0x4f,0xc0,0x2e,0x6e,0x9c,0x34,0x63,0x89,
-  0xc1,0xb7,0x2d,0x5f,0xbe,0x23,0x99,0xbe,0xe4,0xec,0xfc,0xfd,0x88,0xd3,0x87,0x7d,
-  0x49,0xbd,0x0f,0x2f,0x39,0xf5,0x4f,0x76,0x11,0x12,0x0c,0xf3,0xa3,0x71,0x78,0x57,
-  0x8d,0x73,0xe3,0xa2,0x75,0x9f,0x53,0xff,0xb4,0x0d,0x87,0x9f,0x63,0x9c,0x05,0x2d,
-  0x3a,0x3f,0xcd,0x5c,0xd4,0xe1,0xe7,0x6a,0xce,0x17,0x9d,0x9f,0x68,0x84,0x8d,0xfc,
-  0xdd,0x0c,0x33,0x1c,0x6b,0x57,0xdb,0x42,0x3a,0x9d,0x9f,0xb0,0x0f,0xf9,0x89,0xd8,
-  0x1c,0xc6,0x36,0x9e,0xbf,0x3b,0xfc,0xc4,0xfc,0xdd,0xf6,0x65,0xb2,0x63,0x09,0x37,
-  0x2c,0x7e,0xe6,0x50,0x7f,0x5e,0xb0,0x58,0xfe,0x9e,0x61,0x9c,0xb5,0xeb,0x9f,0xc3,
-  0x4e,0x1b,0xfa,0xd9,0x52,0x98,0xb6,0xf9,0xb9,0x1e,0xf5,0x35,0xf2,0x13,0x30,0x6d,
-  0x47,0x23,0x12,0xe6,0x86,0xc5,0x4f,0x19,0xef,0xdb,0x27,0x44,0xe9,0xb5,0xba,0x2f,
-  0x6a,0x35,0xf7,0xe5,0xa4,0x39,0x2e,0xa1,0xcf,0xee,0x91,0x78,0x1f,0xae,0x75,0xf5,
-  0xef,0x88,0xd9,0xf7,0x4c,0xb9,0xce,0xc8,0x96,0x15,0xe9,0xb2,0x31,0xe5,0x2d,0x45,
-  0x1f,0x17,0x9b,0x9f,0xb0,0xc7,0x3d,0x66,0x89,0xe9,0xfc,0xcc,0x40,0x8e,0x60,0xce,
-  0x6c,0x8c,0x35,0x2f,0x9a,0x94,0x39,0xf5,0xcf,0x88,0xb4,0xb9,0xa0,0xae,0x0b,0x73,
-  0xca,0x71,0x78,0x06,0xc2,0x98,0xbf,0xdb,0xf3,0x96,0xe7,0xef,0x7c,0x1e,0x79,0xf9,
-  0xbb,0x3d,0x60,0xc4,0xe7,0x90,0xcd,0xcf,0x84,0xce,0x2c,0x3d,0x5e,0x9e,0x52,0x56,
-  0xf1,0x9a,0x63,0xce,0xd2,0xbb,0xf2,0x7c,0xf2,0x33,0xf6,0xb1,0x7c,0xc9,0x7a,0xcc,
-  0xdf,0xa7,0xd8,0xbe,0x3c,0xe6,0xef,0xc7,0x6c,0x7e,0xee,0xd5,0xe7,0xca,0x75,0x3a,
-  0x3f,0x3b,0xe7,0xeb,0x31,0x68,0xd7,0x3f,0xdf,0xc7,0x1f,0x47,0x6c,0xf2,0xf9,0x3e,
-  0x65,0xcc,0xf7,0x53,0x16,0xeb,0x4a,0x77,0xb2,0xa7,0x84,0xda,0x71,0xfc,0xbc,0x13,
-  0xf0,0x53,0xb8,0x89,0x7f,0xde,0x1b,0x66,0x5c,0x83,0xb6,0x33,0x86,0xb1,0x9b,0xe3,
-  0xbe,0x28,0x3f,0xc5,0x24,0x0a,0x0d,0xa7,0xfe,0x79,0x16,0xe7,0x9f,0x19,0x9f,0x07,
-  0x52,0xd5,0xdc,0x18,0xb5,0x98,0x5c,0xf1,0x23,0x73,0xde,0x22,0x0b,0xa6,0x54,0x3e,
-  0x1f,0xca,0xce,0xda,0x31,0x8f,0xee,0x09,0xc6,0x9c,0x56,0x0c,0x87,0x0b,0xc7,0x9d,
-  0xfc,0x1d,0xd3,0xf6,0x9b,0x11,0x01,0x85,0x7c,0x8e,0x61,0xde,0x3f,0xd9,0x96,0xa7,
-  0x66,0x7e,0x04,0x6b,0xf4,0xfa,0xa7,0x2f,0x2b,0xee,0xc5,0x31,0x0b,0x73,0x46,0x9e,
-  0x71,0xe9,0xcf,0x7f,0x81,0x85,0x06,0x7b,0x9e,0x25,0x35,0xdc,0xc8,0x0b,0x56,0x7c,
-  0x46,0x85,0x7e,0x50,0x87,0x7c,0xb1,0xd6,0x91,0xea,0x67,0x41,0xaf,0xe5,0x0d,0x99,
-  0x6b,0x1c,0xc8,0x51,0x78,0x19,0x96,0x70,0x3f,0x7f,0xaf,0x4d,0x41,0xa3,0x5e,0x4b,
-  0x10,0x2d,0x7e,0xea,0xd3,0x7c,0x08,0x71,0xb4,0xd7,0x04,0x54,0x95,0x55,0xd3,0xd1,
-  0x84,0xb3,0xf4,0x52,0x3a,0x80,0x64,0x56,0x9b,0x20,0x17,0xa9,0x19,0xeb,0x1f,0x74,
-  0xf8,0x29,0x4f,0x30,0xe4,0x92,0x2a,0xf7,0x91,0x1a,0xda,0xaf,0x21,0xa0,0x90,0x9f,
-  0x05,0x46,0x1f,0x72,0x9e,0x91,0xa2,0x03,0x6a,0x04,0xfa,0x14,0xe2,0xe7,0x1b,0x34,
-  0x47,0xdd,0xfc,0x14,0xf6,0x72,0x9e,0x09,0x91,0x34,0x89,0x74,0xf7,0xf7,0xe9,0x20,
-  0x9d,0x34,0xc7,0x0c,0x2a,0x78,0xa9,0xa3,0x31,0xe5,0xcf,0xf8,0xa2,0x70,0x9c,0x35,
-  0x1a,0x1c,0x74,0xea,0x9f,0x53,0xf0,0xc5,0xd5,0x81,0x14,0x7f,0xb7,0x26,0x3f,0xcd,
-  0xfb,0x3a,0x94,0xbd,0xd2,0x25,0x2f,0xd7,0x9f,0x18,0x13,0xc7,0x69,0x7c,0xc8,0xef,
-  0xd6,0x9f,0xd1,0xd0,0xb3,0x14,0xd7,0x9c,0xc1,0xee,0x13,0xf0,0x72,0xdf,0x92,0x51,
-  0x77,0xfe,0xce,0xf9,0x49,0xa3,0x4c,0x96,0xc9,0xb0,0xdc,0xc3,0xd4,0xd1,0x1b,0x38,
-  0x3f,0x8d,0x71,0x39,0x0f,0x5f,0xa2,0x4f,0xb1,0x28,0xea,0xcf,0xe0,0xc5,0xc8,0xbf,
-  0x66,0x16,0xe4,0x8b,0xbe,0x41,0x72,0xa6,0xae,0x4b,0xe2,0x4c,0x78,0x3b,0xd3,0x34,
-  0x10,0x0d,0x89,0xaf,0xb1,0xe3,0x99,0xf8,0x78,0x71,0x03,0xea,0x4f,0xa3,0x8d,0xce,
-  0x3b,0x98,0x9c,0x52,0x12,0x7d,0x7c,0x6a,0x51,0x0c,0x00,0xae,0x3f,0x3b,0x4c,0xce,
-  0xcb,0x15,0x67,0xe1,0x07,0x2c,0xae,0x49,0x0b,0x7b,0xaa,0xe1,0x70,0xd7,0x7e,0x5e,
-  0xff,0x1c,0x32,0xfb,0x97,0x2b,0x3d,0x88,0xf3,0x41,0xd0,0xe4,0x94,0xae,0x27,0xf4,
-  0xfa,0xe7,0xed,0x76,0xfe,0xce,0xd7,0x7e,0x15,0x65,0x67,0x4d,0x81,0xb0,0x95,0xd5,
-  0x9e,0x91,0x1d,0x7e,0xa2,0xfe,0xe4,0x43,0x3c,0x2a,0x2f,0x26,0x7e,0x66,0x6a,0x94,
-  0xcf,0x5b,0xfc,0xf4,0x8c,0xc3,0x31,0x50,0x59,0x64,0x00,0x65,0xc4,0x89,0x64,0x42,
-  0xd7,0x9f,0x56,0xfe,0x2e,0x60,0x4e,0x09,0x4b,0x88,0xc1,0x4f,0x4a,0x70,0x4e,0x23,
-  0x43,0x0c,0x5f,0x64,0xce,0x02,0x05,0x75,0x96,0xd2,0x76,0x7d,0xd1,0x51,0x39,0x31,
-  0x83,0x9f,0xf2,0xd3,0x43,0x98,0xbf,0xef,0xe0,0xf9,0x6d,0xa6,0xce,0xad,0x3f,0x1b,
-  0x38,0x3f,0xe5,0xba,0xf6,0xa2,0x93,0x64,0x0f,0x7c,0x5f,0xd5,0xdb,0x4e,0x58,0x9a,
-  0xa8,0x9c,0xf3,0xb3,0x36,0x29,0xdf,0xee,0xed,0xed,0xdb,0xa5,0xae,0xa1,0xa2,0x42,
-  0x8e,0x55,0x18,0xaf,0x7d,0xb0,0x78,0x15,0x9d,0xfc,0x74,0x02,0xbe,0xa8,0x95,0x65,
-  0x30,0x51,0x6c,0xda,0x1e,0x70,0xd5,0x3f,0x2b,0xc6,0xb8,0xe6,0x6b,0xbf,0x6e,0x5b,
-  0xd5,0xd7,0x5b,0xbf,0x18,0xe4,0xbe,0x54,0xbd,0x66,0x8e,0xd9,0x0e,0x61,0x0c,0xfe,
-  0x27,0xea,0x90,0xad,0xa3,0xe2,0x8d,0xca,0x7b,0x6a,0x73,0x47,0x49,0x1a,0x13,0x02,
-  0xa3,0x7f,0x0d,0x21,0xc6,0x06,0x55,0xe4,0x67,0xc6,0xab,0xc2,0x33,0xb4,0x4e,0xbe,
-  0x16,0xf3,0x77,0x33,0x3e,0x93,0x52,0xaf,0xba,0x4d,0x8e,0x76,0xf8,0xca,0x17,0x7a,
-  0x04,0x0c,0x00,0xfa,0xcf,0x4a,0xc1,0x49,0xc1,0xe8,0x5f,0x48,0xda,0x63,0xad,0x01,
-  0xd5,0xc2,0xd3,0x7a,0x1f,0x5a,0x8f,0x98,0x63,0xcd,0xf7,0x8f,0x7e,0x2d,0x20,0x23,
-  0xb7,0xaf,0xaa,0xd6,0x19,0xe9,0xaa,0x7f,0x26,0x05,0x43,0x7f,0x6e,0x4d,0xb7,0xd9,
-  0xfc,0xb4,0xd6,0x3f,0x99,0xf3,0x93,0xeb,0x4f,0xc9,0x87,0x86,0x51,0xff,0xb4,0xc6,
-  0x33,0xe2,0x89,0x60,0xda,0x1e,0x66,0x90,0x21,0x68,0x08,0x37,0x67,0xfa,0xa7,0xd7,
-  0x3f,0x51,0x7f,0x0e,0xb3,0x06,0xf2,0x29,0xcc,0x7d,0xf5,0x39,0x6d,0xe5,0xef,0xec,
-  0xd3,0xf3,0xb5,0xfb,0x71,0x29,0xc5,0x9c,0xf9,0x34,0x3c,0xd8,0xbd,0x60,0x1b,0x32,
-  0x2b,0x6f,0xd6,0xb6,0xfb,0xe4,0xf9,0xec,0x85,0xee,0x58,0xde,0xdf,0x20,0x9e,0x80,
-  0x5f,0xa1,0x10,0x5d,0xb1,0x5e,0xfc,0x8d,0xbd,0x7f,0x64,0xf0,0x73,0x51,0x56,0x8c,
-  0xc2,0x9b,0x68,0x6c,0xe5,0x6b,0xb8,0xe1,0x27,0x95,0x7e,0x8c,0xf3,0xbd,0x78,0xac,
-  0xe4,0x69,0xf1,0x6e,0xfa,0x74,0xfa,0x33,0xf9,0x15,0xe7,0x05,0xcd,0x62,0x5d,0xe8,
-  0x3b,0xf0,0x24,0x8b,0xe6,0xe5,0x8b,0xa4,0x04,0xfe,0xa9,0xa7,0x72,0x2f,0xae,0xe1,
-  0x36,0x3f,0x51,0x7f,0x3e,0x05,0x37,0xe4,0xbc,0x93,0xe4,0x4e,0xf5,0x09,0xb5,0x52,
-  0xeb,0x5f,0x5b,0x60,0xdd,0x97,0x92,0xb6,0x08,0x07,0xf4,0xb4,0xa8,0xa0,0x24,0xb2,
-  0x8d,0xa8,0xda,0xb5,0x31,0x3b,0x76,0x07,0x2b,0x0e,0xf2,0xa1,0xd2,0x70,0x8a,0xfc,
-  0x3d,0xbc,0x4d,0xf7,0xd3,0x80,0x93,0xbf,0x73,0x7e,0x9e,0x87,0xf9,0x86,0x26,0xba,
-  0xb4,0x05,0x17,0x57,0xa7,0xfe,0xc9,0x73,0xfb,0x29,0xbe,0x05,0x72,0x5e,0xbc,0xdc,
-  0x7b,0x11,0xca,0x52,0xc8,0x82,0x9c,0x59,0xff,0xdc,0x27,0xa1,0xc6,0xec,0xd5,0x71,
-  0x74,0x56,0x1e,0xd7,0x76,0x53,0xe4,0xcb,0xb8,0xad,0x3f,0xa3,0xb8,0x5c,0xd6,0x0d,
-  0xfb,0xf6,0x23,0x3f,0x9f,0xd6,0x6a,0x72,0xb7,0xb9,0xeb,0x9f,0xc5,0x4a,0x56,0xf6,
-  0x6b,0xbe,0x38,0x19,0xd1,0x76,0x29,0x91,0xbe,0xfe,0xd8,0x03,0x43,0x1e,0xa3,0x77,
-  0xac,0xf8,0x3e,0xae,0x7b,0x86,0x03,0x07,0x7a,0x26,0x32,0xe7,0xd5,0xc6,0x57,0x03,
-  0x4f,0xda,0xf5,0xcf,0xdd,0x15,0xef,0xc1,0x94,0x9c,0x68,0x0f,0x9c,0x6c,0x7b,0x87,
-  0x4d,0xc4,0x10,0xb2,0xfb,0x7b,0x6c,0x7e,0x7a,0xce,0x11,0xcc,0xdf,0xf3,0x81,0x41,
-  0x7d,0x3d,0x6a,0x9e,0xbe,0x7f,0x34,0xa2,0xda,0xfa,0xf3,0x59,0xc3,0x98,0xb4,0xf7,
-  0x8f,0xc6,0x99,0xa5,0x3f,0x05,0x53,0x1c,0xb9,0xf3,0xf7,0x1f,0x98,0xfa,0x53,0x30,
-  0x84,0xa1,0xad,0x3f,0xa1,0xe2,0x90,0xa3,0x3f,0x2f,0x49,0xba,0x91,0x03,0x87,0x9f,
-  0xa7,0x2d,0xfd,0x39,0x35,0x53,0x7f,0xee,0x52,0x8e,0x1b,0xcb,0x02,0x5f,0x28,0x12,
-  0x6e,0xfd,0x99,0xf3,0xdc,0xa0,0x19,0xeb,0x51,0x30,0x6a,0x0a,0xdf,0xe0,0xbb,0xb6,
-  0xfe,0x6c,0xe7,0xec,0xe1,0xee,0x6d,0x91,0x1f,0xd4,0xfd,0x2c,0x38,0x67,0x46,0x44,
-  0x4a,0x98,0x0f,0x5b,0xb9,0xd4,0x3b,0xef,0x7d,0x8e,0x3d,0x64,0x88,0xbf,0xcb,0x66,
-  0x5b,0x52,0x2e,0x26,0xc7,0xa1,0x61,0x02,0xc7,0xe5,0x47,0xec,0x97,0xd0,0xc4,0xf5,
-  0xe7,0x4b,0xb6,0xfe,0x3c,0x68,0xb8,0xf7,0x96,0x78,0x9f,0xf4,0xa6,0xe1,0xa7,0xa3,
-  0x3f,0x5d,0xfa,0xfa,0x12,0x7c,0x73,0x9a,0xfe,0x2c,0xdd,0x49,0x2c,0x3d,0x21,0x98,
-  0x42,0xd4,0xca,0xdf,0xf5,0xfd,0x77,0x4b,0x0b,0x3f,0xd5,0x55,0x3b,0x5d,0x7f,0x9e,
-  0xa5,0xb6,0xd6,0x37,0xc7,0xda,0xae,0x7f,0x56,0x0c,0x22,0x3f,0x4d,0xfd,0x69,0x0a,
-  0xd1,0x3f,0x55,0x7f,0x1e,0x75,0x74,0xdd,0x4c,0x7e,0xda,0xf9,0xbb,0x05,0x9a,0xbc,
-  0x39,0x2e,0x46,0xfe,0x3e,0xbd,0xcd,0xa5,0x3f,0x49,0x97,0xa5,0x3f,0x4d,0x21,0xea,
-  0xe8,0xcf,0x55,0xbc,0xfe,0x39,0xcd,0x17,0x4b,0x7f,0xee,0x28,0x7e,0xc7,0xad,0x31,
-  0xa7,0xe9,0xcf,0x1d,0x98,0xbf,0xcf,0xf4,0xf3,0xac,0xbd,0x7f,0xf4,0x9b,0x4c,0x9f,
-  0xae,0x3f,0xc1,0x16,0xa2,0x8e,0xfe,0x3c,0x22,0xcc,0xf4,0xc5,0xd6,0x9f,0x15,0xbd,
-  0x6c,0x56,0x1f,0x2c,0xfd,0x59,0x31,0x46,0x66,0x7e,0x9e,0xa5,0x3f,0x23,0x26,0x3f,
-  0x3f,0x40,0x7f,0xe2,0xfb,0xfa,0x26,0xef,0x96,0x2d,0xb4,0x6d,0xfd,0xe9,0x69,0x84,
-  0xcd,0x42,0x1d,0xbb,0xcd,0xd0,0x9f,0x75,0xac,0x24,0x23,0x76,0x9b,0xe3,0xc9,0xf9,
-  0x69,0x84,0x65,0xab,0xfd,0x6e,0x87,0xec,0xfd,0xa3,0x50,0xc6,0xd8,0xea,0x2e,0x78,
-  0x45,0x4f,0x5c,0xbc,0x6b,0x49,0x9f,0xbd,0x7f,0x94,0xe8,0xe6,0x21,0x1b,0xe0,0xfa,
-  0xf3,0x8f,0x28,0x44,0x75,0xfd,0x69,0xbe,0xdb,0x79,0x8f,0xd1,0x37,0x9d,0x18,0x4c,
-  0x4c,0xd7,0x9f,0xaf,0x62,0xbe,0x79,0x4b,0x3e,0xf0,0x34,0xce,0xf7,0x4b,0x69,0x7d,
-  0xbe,0x5b,0x75,0xa2,0x81,0xd2,0x1d,0x18,0x83,0xd1,0xf1,0xfe,0x6f,0x60,0x9c,0x3d,
-  0x95,0xd1,0xe3,0xf3,0x0d,0xb3,0x4d,0x81,0x9f,0xc0,0x43,0x92,0xa1,0x3f,0x39,0x48,
-  0xa7,0xeb,0xcf,0x1c,0x99,0x1d,0x9f,0xe6,0x33,0x2b,0x9e,0x51,0xf9,0x74,0x5d,0x61,
-  0xf8,0xa2,0x4f,0x60,0x4b,0x7f,0xa6,0x61,0xcc,0xc9,0x29,0x0d,0xa3,0xcd,0xca,0xdf,
-  0xd3,0xca,0x79,0x3d,0x6d,0xb7,0x59,0xf0,0xc9,0xc9,0xb2,0xfc,0x1d,0x56,0xfe,0xfe,
-  0xd5,0x94,0x9d,0xdf,0x72,0xbe,0xdc,0xe6,0xae,0x7f,0xca,0x30,0xad,0xcd,0x9d,0xbf,
-  0x4b,0x7e,0xa9,0x47,0x8a,0x9e,0xf4,0xdd,0xd8,0x8d,0x7e,0xaa,0xfa,0xa0,0x5b,0x79,
-  0x00,0x2b,0xee,0x24,0xc7,0xd5,0xc4,0x29,0xc4,0xe6,0xef,0x29,0xf7,0xa5,0x38,0x5b,
-  0x96,0x2f,0x70,0xf4,0xa7,0x5e,0x5e,0x98,0x2c,0x43,0x5f,0x14,0xdd,0xa9,0xf1,0xfb,
-  0xed,0xfd,0x77,0x69,0xaa,0x26,0xa1,0xf9,0xf3,0x62,0x53,0xef,0xcf,0x7b,0xe3,0xa9,
-  0xc0,0x80,0x18,0xb3,0xf4,0x27,0x8c,0x40,0x37,0x8d,0x72,0x39,0x57,0x4b,0xfb,0x79,
-  0x6e,0x91,0xf1,0xc6,0x24,0x4b,0x7f,0x4e,0xc0,0x23,0x10,0x4d,0x47,0x1a,0x88,0x5f,
-  0xec,0x81,0x8c,0xe6,0x53,0x49,0xdc,0xe2,0x67,0xe9,0x16,0xba,0x19,0xdb,0xf0,0xbe,
-  0x2d,0x2d,0x3d,0x6a,0x58,0x13,0x55,0x12,0xb3,0xf8,0x29,0x9c,0x85,0xd7,0x93,0x89,
-  0x51,0x7f,0x56,0xa8,0x55,0x8f,0x7b,0xe2,0x67,0x70,0xbe,0xab,0xf6,0xfe,0xd1,0x73,
-  0xf0,0x3e,0x34,0x8f,0xa2,0x7b,0xf7,0x71,0x96,0x8f,0x07,0xf2,0xae,0xfd,0xa3,0xbd,
-  0xe4,0x28,0x8d,0xef,0xf0,0x67,0xab,0xa2,0xda,0x71,0xcc,0x03,0xfc,0x03,0xe2,0x2f,
-  0xcc,0x77,0x74,0xca,0x13,0x65,0x9b,0x61,0xf7,0x0e,0x79,0x7f,0xe9,0xd7,0x50,0x9b,
-  0x86,0x73,0x91,0x3d,0xc4,0x55,0xff,0x44,0x7e,0xa6,0x68,0xe4,0xf1,0xee,0x6e,0xbe,
-  0xbe,0x6b,0x5e,0xd5,0xde,0x3f,0xc2,0xb5,0x0f,0x36,0xa6,0x57,0xe5,0xe5,0xf3,0xe4,
-  0x25,0xb2,0x31,0x5d,0x39,0xe6,0xbd,0x1b,0xf9,0x69,0xdc,0x97,0x0c,0x95,0xc0,0xe1,
-  0x4c,0xac,0xd3,0x3f,0x28,0x3e,0xca,0x5e,0xce,0x66,0xcf,0x94,0xd4,0xb8,0xea,0x9f,
-  0xc8,0x4f,0x05,0xd7,0xaa,0xac,0xb8,0x86,0x1f,0xb8,0x1a,0x2e,0xce,0x8b,0xa3,0x0b,
-  0x0d,0x3f,0x65,0x1c,0x97,0x0b,0x2c,0x4e,0xfd,0xcf,0x88,0x61,0x38,0x0c,0xfb,0x35,
-  0x7f,0x06,0xd7,0x5b,0x53,0x7f,0x0a,0xb8,0x86,0x4b,0x28,0x3b,0xd7,0x79,0x65,0x5d,
-  0x7f,0x7a,0x53,0xe4,0x5c,0xb5,0x71,0x1f,0xea,0x4f,0x75,0x5f,0xb7,0xca,0xb7,0xb0,
-  0xbe,0x0d,0x3f,0x66,0x55,0x79,0x6f,0x27,0xbe,0x77,0xa3,0x7f,0x9d,0xe5,0x27,0xe0,
-  0x00,0x0b,0x6b,0xf2,0x8d,0xdd,0x5b,0xe0,0x91,0xf4,0xea,0xbc,0x37,0x13,0x74,0xf6,
-  0x8f,0x06,0xe0,0x7d,0xb9,0x8a,0x2d,0xcf,0x94,0x0d,0xc2,0x59,0x88,0x0f,0x94,0xe4,
-  0x91,0x9f,0xc6,0x33,0x93,0x7c,0x4f,0xc3,0x98,0xca,0x29,0x08,0xe9,0x39,0xa5,0x7b,
-  0xff,0x48,0xe6,0x08,0x88,0x66,0xab,0xb8,0xf8,0x43,0x87,0xd3,0x65,0x04,0xac,0xfd,
-  0xa3,0x6a,0xf9,0x69,0xe3,0x58,0x8f,0x91,0xdf,0xca,0xe9,0x6e,0xd7,0xf9,0x25,0xb0,
-  0xdb,0xf6,0x61,0x8e,0x2e,0xbb,0xce,0x2f,0x61,0xfe,0x8e,0x61,0x99,0x94,0x83,0x64,
-  0x98,0xed,0xc3,0x98,0x90,0x15,0x2f,0xb1,0xeb,0x9f,0xab,0xe8,0xf9,0x8e,0x6f,0x96,
-  0xcb,0x1e,0xf1,0x0c,0x1a,0xf1,0xf2,0xe8,0x06,0xb1,0xce,0xcc,0x8f,0xf8,0xfe,0xd1,
-  0x7b,0x4a,0xf3,0x70,0x60,0x1b,0xb9,0x4c,0x79,0xb1,0x13,0xc5,0xe6,0xb9,0x42,0xa3,
-  0x0f,0x83,0x1e,0xe4,0xfc,0xe2,0x78,0x8b,0x94,0xee,0xa9,0xee,0x38,0x0a,0xe8,0x67,
-  0xa9,0xb8,0xd0,0xae,0x7f,0x6a,0xac,0x2f,0x16,0x56,0x60,0x0f,0x51,0x69,0x5f,0x24,
-  0x2c,0xcb,0x43,0x64,0xbe,0x9d,0x3f,0x6c,0xcf,0x6c,0x50,0x2b,0x3f,0x25,0xdf,0xde,
-  0xbd,0x1d,0x7e,0xa8,0x56,0xde,0x1a,0xba,0x9d,0x04,0xad,0x7d,0xa7,0xf2,0xc7,0xd9,
-  0x0f,0xa1,0xaa,0x45,0x1e,0x25,0xdb,0xc9,0x0f,0xd5,0x2a,0x2a,0x77,0xb4,0x16,0x58,
-  0x7b,0x1a,0xd2,0x1e,0xe4,0xe7,0x7e,0x1a,0xdd,0x5e,0xb4,0x47,0x3a,0xc3,0x8d,0xb4,
-  0x2f,0xe2,0xec,0x1f,0xf1,0x2d,0x10,0xc4,0x66,0xdb,0x6a,0x6e,0x74,0x72,0x7e,0x3a,
-  0xfb,0x47,0x7a,0xfd,0x73,0x39,0x13,0xcf,0xa0,0x10,0xdd,0x0f,0x7e,0x4d,0xf4,0x5a,
-  0x6b,0x15,0x44,0xc0,0xcb,0xf8,0xd1,0x08,0xe4,0xe7,0xe6,0xae,0x30,0x93,0xc7,0x89,
-  0xd7,0xde,0x3f,0xfa,0x1a,0xdf,0x6b,0x3d,0x94,0xcc,0xd2,0x11,0xa5,0x0c,0xbe,0xa2,
-  0x15,0x45,0xb0,0xcd,0xca,0xdf,0xcb,0x61,0xa3,0x5c,0x09,0x32,0x25,0xb8,0xbc,0xfa,
-  0x2b,0xa9,0x90,0xef,0x8e,0x38,0xfb,0x47,0x64,0x88,0xc5,0xf8,0xb1,0xa5,0x57,0xe1,
-  0x34,0xab,0xcf,0xd4,0xae,0x17,0x6b,0xc2,0xc6,0x58,0xf3,0xfa,0xe7,0x45,0x6b,0xad,
-  0x7a,0x43,0xf8,0x26,0xa0,0xf8,0x1b,0xba,0xdf,0xf0,0x33,0x25,0xbd,0x01,0x47,0xd3,
-  0xf5,0x63,0x25,0xe7,0xc5,0x04,0xbd,0x80,0x7a,0xa9,0x70,0x13,0x66,0x09,0xd6,0xfe,
-  0xd1,0xee,0xea,0x4d,0x7d,0x95,0xaa,0x0f,0xc4,0x56,0xc8,0xee,0xab,0xbd,0xd5,0x97,
-  0xc3,0xc4,0xd3,0xb8,0x2f,0x88,0x99,0xc0,0x76,0x65,0x01,0xaf,0x33,0xdc,0x09,0x4f,
-  0xc8,0xb5,0xac,0x7f,0xa5,0x5d,0xff,0x4c,0x96,0x6b,0xa8,0xeb,0xaa,0xf1,0x3e,0xf2,
-  0x15,0xc8,0xb2,0x28,0xe0,0x5a,0x15,0x32,0xe3,0x73,0xd0,0xb3,0x97,0xbc,0xac,0x3d,
-  0x39,0x84,0x2e,0xac,0x51,0x2f,0x31,0x04,0x69,0xc6,0x57,0x63,0xef,0x1f,0x8d,0xa1,
-  0xd6,0xf8,0x06,0xac,0xe8,0xe6,0xe7,0xac,0x70,0x60,0x57,0x64,0x70,0x61,0x32,0x19,
-  0x89,0xfa,0xf3,0x55,0xa8,0x47,0x54,0x09,0xf7,0x71,0x90,0xb2,0x80,0x6b,0xff,0x08,
-  0xda,0xf5,0xfd,0x62,0x1f,0x43,0xe8,0x1c,0x83,0x12,0xd0,0x19,0x69,0xe9,0xcf,0x4e,
-  0xd8,0x86,0xc3,0x88,0x08,0xdf,0x8b,0x0b,0x7d,0x89,0xa6,0x17,0x77,0xcc,0xb1,0x6e,
-  0xaf,0xf4,0x77,0xc9,0x19,0xc9,0x07,0x05,0x5d,0xc0,0x68,0xb4,0xe5,0x5a,0x12,0xb6,
-  0xd6,0x77,0xf6,0xd1,0x4e,0xf9,0x54,0x2a,0xfe,0x52,0x60,0x9f,0xf8,0x43,0x76,0x54,
-  0x4d,0xf4,0x06,0xbe,0xdd,0x93,0x17,0x4c,0xfd,0x39,0x6f,0x92,0x5e,0xbe,0x21,0x21,
-  0x5f,0x37,0x24,0x56,0xb2,0x09,0xda,0x2c,0x07,0x4e,0xba,0xf4,0xe7,0xfb,0xf4,0x05,
-  0x43,0x76,0x1a,0xfa,0xb3,0xc4,0xad,0x3f,0xf9,0xf1,0xcd,0x0f,0xd2,0x9f,0x23,0xe9,
-  0x69,0x6b,0x8e,0xd7,0xad,0x3f,0xb7,0xcc,0x5a,0x03,0x1c,0xfd,0x39,0xe1,0xd6,0x67,
-  0xba,0xb0,0xd7,0x5c,0xfa,0x73,0x6a,0x86,0xfe,0xbc,0x3c,0x7d,0xff,0x68,0xda,0x9a,
-  0xfa,0xa2,0xad,0x3f,0x6b,0xb5,0x99,0x9f,0xe7,0xae,0x7f,0xce,0x5c,0x1b,0xed,0xfd,
-  0xa3,0xd2,0xf9,0xb6,0xe6,0x93,0x9e,0x9a,0xa9,0x3f,0xa3,0x88,0x3f,0x5d,0x76,0x8e,
-  0xf0,0x42,0xe8,0xb4,0xfa,0x67,0x85,0xe1,0xe7,0x0a,0x97,0x9f,0x8e,0xfe,0x1c,0x21,
-  0xb7,0xcd,0x5c,0xfb,0x1d,0xfd,0xe9,0xaa,0x67,0xcd,0xd4,0x9f,0xdf,0xd1,0x7d,0x69,
-  0xd3,0xf5,0x27,0x9b,0xa1,0x3f,0x27,0x66,0xf5,0xc1,0x55,0xff,0xfc,0x3f,0xd1,0x9f,
-  0x6d,0x33,0xf5,0x67,0xf1,0x9f,0xa7,0x3f,0x67,0xd5,0x3f,0x67,0xeb,0x4f,0xe3,0x99,
-  0x33,0xf4,0xe7,0x92,0xe9,0xfa,0x73,0x6c,0xb6,0xfe,0xb4,0xcf,0x2f,0xfd,0xfb,0x87,
-  0xe9,0x4f,0xd6,0x67,0xd7,0x3f,0x4d,0xfd,0x69,0x9f,0x5f,0x1a,0xde,0xf4,0xc1,0xfa,
-  0x73,0xcf,0x6c,0x0d,0xfd,0xa7,0xe8,0x4f,0xf8,0x50,0xfd,0xa9,0x9f,0xcf,0x2a,0xe6,
-  0xfd,0x3b,0x35,0x43,0x7f,0x4a,0x8d,0xfc,0x78,0x2a,0xdf,0x3f,0x1a,0xd7,0x8d,0x69,
-  0xf5,0xcf,0xbb,0x05,0xae,0x3f,0xf5,0xf3,0x4b,0x66,0x7e,0x64,0xd7,0x3f,0x4b,0xb9,
-  0xfe,0x5c,0x84,0xf9,0x3b,0x79,0xdf,0x0a,0x1c,0xfb,0xfc,0x27,0xea,0xcf,0x5f,0xe1,
-  0x74,0x2d,0x5e,0x8f,0xf3,0xf6,0x57,0xa6,0xfe,0xb4,0xf3,0x77,0xb7,0xfe,0x24,0x46,
-  0xfe,0xee,0xaa,0x7f,0xba,0xe7,0xfb,0x98,0xef,0xc2,0x74,0xfd,0x39,0x23,0x3e,0x2d,
-  0xfd,0x69,0xed,0x1f,0xd9,0x6d,0xd7,0xae,0x0d,0x5b,0xfb,0xef,0xa8,0x3f,0x67,0xc5,
-  0xe7,0xa8,0xad,0x3f,0x07,0xc9,0xcc,0x79,0x3b,0xce,0x0c,0x5f,0xf4,0xfa,0xe7,0xcc,
-  0x36,0x7b,0xff,0x68,0x86,0xfe,0x0c,0xb8,0xf7,0x8f,0xbe,0x96,0x9a,0x39,0xdf,0x9d,
-  0xfa,0x27,0x9d,0xce,0x1e,0xef,0xb4,0xfd,0xa3,0x59,0x7e,0x0e,0x31,0xb3,0x7b,0xb8,
-  0x48,0xcd,0xe4,0x52,0xfe,0x7e,0x53,0x7f,0x16,0x5f,0x9e,0xc5,0x25,0x47,0x7f,0xe2,
-  0x30,0x6e,0x48,0xe4,0x70,0x3c,0xcf,0xc2,0xe9,0xed,0xcd,0x43,0xd7,0x21,0x3f,0x2d,
-  0xb6,0x2a,0x13,0x2a,0x62,0x73,0x8c,0xf3,0x53,0x41,0x5f,0x62,0xae,0xfd,0xa3,0x9c,
-  0x67,0x84,0x1d,0x10,0xa2,0xea,0xb5,0xb1,0xe0,0x88,0xf0,0x60,0x65,0xf4,0x90,0xd7,
-  0x55,0xff,0x2c,0xd5,0xeb,0x9f,0x7c,0x59,0x98,0x28,0x45,0x43,0xf6,0xb9,0xf6,0xdf,
-  0x2b,0x5c,0x63,0xf6,0xb2,0x27,0xf1,0x56,0xc0,0x75,0x7e,0x89,0xf3,0x53,0xb8,0x4e,
-  0xdb,0x8a,0x7e,0x2a,0xe8,0xa7,0x3a,0xed,0xfc,0x92,0x5e,0xd3,0x61,0xfa,0x7d,0x6f,
-  0x32,0xfe,0x00,0xfb,0xfc,0xa7,0xe6,0x89,0xf2,0xcf,0x63,0xb7,0x0d,0x06,0x27,0xe0,
-  0xbf,0x1a,0x1f,0x6c,0xf1,0x73,0xdc,0xda,0x3f,0xfa,0x4b,0x1c,0xb3,0x2a,0x23,0x3e,
-  0x2d,0x7e,0x4e,0x0a,0xd7,0x21,0xaa,0xbe,0x36,0xd6,0x8f,0xcc,0x62,0xdf,0x63,0xb5,
-  0xe3,0xbe,0x6f,0xcc,0xc9,0x99,0xfb,0xa2,0x49,0xb9,0x84,0xbd,0xcd,0x9a,0xd6,0x04,
-  0x1a,0x0b,0x4f,0xc0,0x6f,0x33,0x4d,0xe3,0x81,0x06,0xd7,0xfe,0xd1,0x5e,0x7a,0x49,
-  0x69,0x5e,0x8a,0x6b,0x15,0x76,0x86,0x0b,0x27,0x37,0x3f,0xcf,0x0a,0xf8,0x1e,0xf2,
-  0xa8,0x5b,0xa3,0xfc,0x9c,0x80,0x9b,0x9f,0x46,0xfd,0x33,0xaa,0xc9,0x6b,0x5b,0xe7,
-  0x82,0x51,0x83,0x0f,0x3b,0xfb,0x47,0xc8,0xcf,0xde,0xda,0xbc,0x77,0x3d,0xf9,0x12,
-  0x3a,0xa5,0xef,0x1f,0xf5,0x99,0x7e,0x26,0xf5,0xfa,0xa7,0xbe,0x44,0x2d,0xb7,0xf6,
-  0x18,0x6c,0x7e,0x96,0x72,0x7e,0x36,0x77,0x95,0x64,0xca,0x3a,0x95,0x8b,0x50,0xcf,
-  0xf9,0xf9,0xcc,0x34,0x7e,0xd6,0x81,0x87,0x89,0x19,0xa9,0xe1,0x0a,0xfb,0x47,0x82,
-  0xb5,0x17,0x82,0xfa,0x73,0x45,0xba,0x6c,0xc6,0xfe,0x51,0x4b,0x09,0xf2,0x45,0xe1,
-  0xfa,0xf3,0x53,0x6e,0x7e,0x2e,0x34,0x90,0xb3,0xad,0x00,0xf5,0xa7,0x14,0xd6,0x6e,
-  0x4b,0x07,0x67,0xec,0x1f,0x7d,0xc2,0xab,0xb4,0x22,0xb3,0x98,0x6a,0x9c,0xb9,0x34,
-  0xee,0xe3,0xfc,0x1c,0xb4,0xf9,0xd9,0xc1,0xeb,0x83,0x85,0x36,0x3f,0xe7,0x8d,0x49,
-  0x17,0x84,0xe6,0xa5,0x25,0x8a,0x38,0xa6,0x5c,0x10,0x7e,0xda,0x7e,0x24,0x5d,0x66,
-  0xf1,0x13,0xf3,0x77,0x8a,0xa8,0xca,0x05,0x46,0xf5,0xbd,0xa5,0xf9,0xad,0x68,0x9c,
-  0x90,0x2c,0x7e,0x6a,0x6c,0x50,0xa8,0x53,0x2c,0x7e,0x72,0xe3,0x08,0xb1,0xf6,0xdf,
-  0xd1,0x05,0x29,0xda,0x8e,0x43,0x85,0x46,0xcd,0x2c,0x7e,0x62,0x1f,0x3a,0x5c,0xfc,
-  0x9c,0x56,0xff,0x9c,0xc9,0xc8,0x71,0x73,0x5c,0x3a,0x8d,0xfc,0x7d,0xf5,0x34,0x7e,
-  0xda,0xe7,0xe7,0x33,0x2a,0xf2,0x53,0xf1,0xeb,0xfd,0x13,0x12,0xe0,0x3e,0x3f,0xef,
-  0xb9,0x45,0x46,0x6c,0x76,0xc9,0xf9,0xd6,0x71,0xe9,0x39,0x49,0x07,0xa9,0xc3,0xcf,
-  0x15,0x7a,0x6d,0xa6,0xc8,0x9a,0xd3,0x32,0xcf,0x29,0xad,0xfc,0xfd,0x1a,0x1e,0x2f,
-  0xf9,0x22,0x63,0xbf,0x31,0xca,0x41,0x9a,0xb3,0xf3,0xf7,0x39,0xc0,0xf7,0x8f,0x8a,
-  0xb9,0xfe,0x7c,0x57,0x3f,0x3f,0xdf,0xe6,0xec,0x1f,0x65,0x2c,0x04,0xf0,0x02,0xe3,
-  0x4c,0x7e,0x26,0xa7,0x58,0x62,0x0c,0x71,0x9b,0xa0,0xba,0xd1,0xd0,0x66,0xef,0xbf,
-  0x97,0x7e,0x0b,0x0e,0x6c,0xc3,0xa5,0x3b,0x46,0xe6,0xf3,0xcd,0xb7,0x7c,0xff,0x5f,
-  0x92,0x1a,0x3b,0x7f,0xc7,0xdc,0x29,0xa8,0xf3,0x73,0x2e,0x7b,0xd2,0x00,0x29,0xd8,
-  0xfc,0xb4,0x71,0xe4,0x87,0x2c,0x44,0x27,0xa7,0xed,0xbf,0xef,0xd5,0x11,0xce,0xeb,
-  0x6e,0xf2,0x25,0x31,0xf1,0x0a,0x1a,0x35,0x76,0xfe,0x3e,0x0e,0x97,0x0a,0x8c,0xdc,
-  0x5e,0xb9,0x44,0x9a,0xb8,0x31,0x5e,0x6e,0xe6,0x40,0xca,0x3b,0x16,0xaa,0x0e,0xea,
-  0x39,0xb3,0xdf,0x39,0xff,0xd9,0x8b,0xf7,0xeb,0xd8,0x1c,0x6c,0x43,0x16,0x0c,0xd5,
-  0x69,0xaa,0xfb,0xfc,0x7c,0xd4,0x68,0xdb,0x8f,0x70,0x7e,0xb6,0xa8,0xce,0x38,0xff,
-  0x69,0xe7,0xef,0xbb,0x0e,0xc8,0xd1,0x11,0xce,0x4f,0x0d,0x93,0xe7,0x63,0x7d,0xf1,
-  0x56,0x5b,0x7f,0x16,0xaf,0x61,0x97,0xc2,0x89,0x93,0x81,0x27,0xaa,0xf6,0x66,0x2e,
-  0x29,0x89,0x53,0xfe,0x27,0x45,0xcd,0xce,0xdf,0x27,0x32,0x97,0x6a,0xd0,0x97,0x51,
-  0x71,0x2f,0xfb,0x83,0xda,0x7c,0x2c,0xf0,0x6e,0xcf,0xb8,0x19,0x67,0x3a,0x3f,0xd9,
-  0xcd,0x8e,0xfe,0x74,0xd7,0x3f,0x43,0xb6,0xec,0xbc,0x92,0xfe,0x74,0xf6,0x84,0x67,
-  0xd6,0x3f,0x3d,0x7b,0xcd,0x65,0x21,0x6c,0xad,0x0f,0xe1,0x2b,0xf2,0xd3,0x34,0x3e,
-  0x4c,0x7f,0xba,0xcf,0x2f,0x59,0xf7,0x49,0xe6,0x0b,0x29,0x77,0xf6,0x8f,0xac,0x65,
-  0xc8,0x5e,0x8f,0xe2,0x76,0xfe,0xbe,0x7c,0x96,0x9f,0x0d,0x66,0xec,0xa6,0xe0,0x4b,
-  0x86,0xd4,0xfb,0x86,0xa5,0x3f,0xcf,0x87,0x13,0x66,0x5b,0x52,0x5e,0x6e,0xc8,0xce,
-  0x5b,0x4c,0xfd,0xb9,0x62,0x5f,0xd1,0x35,0x0e,0x3f,0x67,0xf5,0xc1,0xe2,0x27,0xcf,
-  0xdf,0x67,0xb6,0xd9,0xfa,0xf3,0xa3,0x3b,0x25,0x63,0x59,0x0f,0xce,0xd2,0x9f,0x7c,
-  0xff,0xc8,0x3e,0x0b,0x30,0x43,0x7f,0x76,0x4a,0xdc,0xf5,0x3a,0xb3,0x0f,0x64,0x46,
-  0xfd,0xd3,0x96,0x9d,0x86,0xb1,0xd5,0xa5,0x3f,0x85,0xcc,0x87,0xd4,0x3f,0x0d,0x2d,
-  0xf5,0x01,0xfa,0x13,0x5c,0xf9,0xfb,0x34,0xfd,0xd9,0x60,0xe6,0xef,0x45,0x57,0xa8,
-  0x7f,0x1a,0xfb,0x47,0x75,0xfc,0xd8,0x27,0x32,0x8b,0xac,0xb9,0xd2,0xfe,0x7b,0xf1,
-  0x95,0xea,0x9f,0x57,0x60,0x96,0xc3,0x4f,0x77,0x1b,0x99,0xae,0x3f,0x43,0xee,0xfd,
-  0xf7,0xe9,0xfa,0x33,0x89,0xb3,0x8c,0xcb,0xce,0xe3,0x57,0xd2,0x9f,0xce,0xfe,0x11,
-  0xf6,0x81,0xcc,0xd4,0x9f,0xfa,0xe7,0xf9,0xae,0xa0,0x3f,0xad,0xfd,0x23,0xee,0x8b,
-  0x3c,0x43,0x7f,0xca,0xca,0x8c,0xb1,0x8e,0xba,0xf9,0x19,0xd1,0xcb,0x9e,0x3e,0xab,
-  0xfe,0x29,0x4f,0xdf,0x7f,0x9f,0x16,0x9f,0xb2,0x53,0xff,0x64,0xa5,0x73,0x9d,0xf3,
-  0x1a,0x4f,0x19,0x42,0x34,0xe7,0xec,0x1f,0x59,0x65,0x4f,0x5e,0xff,0x6c,0xce,0x2f,
-  0x5f,0x5f,0xe5,0xe8,0xcf,0xbd,0xca,0xac,0x18,0xb4,0xe6,0x91,0xf4,0x9c,0x35,0xcd,
-  0xed,0xf9,0x6e,0xeb,0xcf,0xd0,0x4e,0xe3,0xf3,0x62,0xb3,0xf5,0xa7,0xce,0xcf,0x19,
-  0xda,0x74,0xd8,0x8e,0xcf,0x2d,0xee,0x3e,0xac,0xd1,0xe3,0xb3,0xd7,0x7c,0x66,0xc5,
-  0xec,0xb9,0x72,0xd6,0xd4,0x9f,0x69,0x97,0xfe,0x94,0x8d,0x39,0x6d,0xd7,0x3f,0x33,
-  0x8a,0x2e,0xa1,0xa6,0xeb,0x4f,0x93,0x9f,0xbb,0xa4,0x35,0xae,0xf9,0x2e,0x19,0x67,
-  0x94,0x52,0x96,0xfe,0x8c,0x4e,0x6b,0xd3,0xfa,0xa7,0xf1,0xd3,0xf0,0xf3,0xc6,0xd9,
-  0xfa,0x13,0xf9,0x69,0xf8,0xf2,0xb8,0xe3,0xa7,0xad,0x3f,0xe7,0xcd,0xd2,0x9f,0x6d,
-  0xe3,0x0b,0x2d,0xd6,0x9d,0xa5,0xc7,0xbb,0x9b,0xc7,0x50,0x2f,0xa1,0x91,0xd6,0xcf,
-  0x83,0xb9,0xf2,0xf7,0xe0,0xcb,0x0b,0xeb,0x8e,0x86,0xe2,0x64,0x82,0x3d,0xa2,0xd6,
-  0xe5,0x7c,0xf1,0xe9,0xdf,0xdf,0x94,0x11,0xef,0xb1,0x6e,0x9e,0x5c,0xae,0x99,0x7e,
-  0x7e,0x69,0x8b,0xf4,0x2f,0xa0,0xa3,0x7f,0x42,0xe1,0x1b,0x49,0xfd,0x33,0xf3,0xf7,
-  0x26,0x6c,0xab,0xb2,0x13,0x79,0xd7,0xfe,0x3b,0x8e,0xd9,0x22,0x6d,0xd1,0xe4,0x5d,
-  0xdc,0xcf,0xeb,0xb4,0xc2,0xe9,0xfa,0xf3,0x78,0x75,0x3c,0xe7,0xc7,0x75,0x8c,0x9f,
-  0xbb,0xd7,0xfc,0xfb,0x7d,0x8a,0x8b,0x9f,0xfd,0x5a,0xcd,0x68,0xe4,0x27,0xe4,0xc7,
-  0xed,0xfd,0x6a,0x8d,0xe6,0x3d,0x68,0xf3,0x13,0xf3,0x77,0xa5,0x07,0xaa,0x79,0x58,
-  0x46,0xc1,0x34,0x1a,0xcc,0xf1,0x4c,0xb5,0xcc,0xe7,0x9a,0x6f,0x2c,0xb9,0x9e,0x7c,
-  0x47,0xdd,0x98,0xa9,0xfd,0x1d,0x8a,0x3f,0xd9,0xfe,0xfe,0x51,0x5d,0xf7,0xf1,0x81,
-  0x25,0xe3,0xcb,0x1b,0x0f,0xd7,0xb1,0xc3,0x6c,0x89,0xe6,0x8f,0xf5,0x04,0xed,0xef,
-  0x6f,0x72,0xfd,0x79,0xed,0x30,0xd7,0x9f,0xf4,0x12,0x69,0xd4,0xbe,0x9c,0x9d,0xfe,
-  0xfd,0x4d,0x74,0x6f,0x79,0xb6,0x8d,0x9f,0x2f,0x40,0x3f,0x07,0xdb,0x6a,0xac,0xfd,
-  0x5b,0x5d,0x7f,0xea,0xdb,0xee,0x4d,0xf0,0x2b,0xc3,0x08,0x9a,0xf7,0x19,0xf9,0x7b,
-  0x25,0x3f,0xf6,0xc9,0x8b,0x0a,0x0b,0xf2,0xa1,0xf5,0xad,0xb1,0x69,0xf9,0x7b,0xea,
-  0x50,0x04,0xd7,0x77,0xf2,0x20,0xec,0xd1,0x3a,0x63,0xde,0x20,0xb8,0xf3,0xf7,0x38,
-  0xf3,0x67,0x84,0x08,0x1c,0x13,0x96,0x30,0x29,0x23,0x36,0x5a,0xf5,0x4f,0xae,0x3f,
-  0x89,0xfe,0xb5,0x23,0xeb,0x4c,0x8d,0xab,0xfe,0x39,0x76,0xc7,0x51,0xbd,0xec,0x29,
-  0x56,0x1b,0x5f,0x44,0x42,0x7e,0xda,0xf5,0xcf,0xd5,0xea,0xf7,0x49,0xb8,0xa3,0x31,
-  0xed,0xad,0x26,0x9b,0x5a,0xeb,0x3e,0x2d,0x6f,0x9f,0x76,0x7e,0xbe,0x0b,0xd4,0xd6,
-  0xa4,0xd2,0x2a,0x29,0x9b,0xe4,0x68,0xab,0x9c,0xee,0x76,0xeb,0xcf,0x5d,0x90,0xa1,
-  0x28,0x3b,0x25,0xa5,0x4b,0x8a,0xd2,0xc8,0x74,0xfd,0xa9,0x75,0xc4,0xca,0x93,0x9e,
-  0xb6,0x4a,0x34,0x9a,0x2a,0xfc,0x9e,0xb2,0xb3,0x66,0xfd,0x13,0xf5,0xa7,0x72,0x41,
-  0xd2,0x8f,0xcd,0x8f,0xf9,0x4d,0x2e,0xbd,0x56,0x66,0xf4,0x61,0x87,0xe7,0x77,0x70,
-  0x81,0xea,0xc7,0x53,0xf9,0x81,0xd5,0x38,0xff,0xc2,0x54,0x81,0x9d,0xbf,0x6b,0xe9,
-  0x41,0x75,0x37,0x62,0x53,0xa4,0x30,0x0a,0x61,0x28,0xd6,0xbc,0x25,0x76,0xfe,0xfe,
-  0x22,0x3c,0x21,0x54,0xb6,0xf6,0x77,0x74,0x97,0xab,0x1b,0x22,0x95,0xb7,0xca,0x1d,
-  0x61,0xe2,0x7c,0xff,0x08,0xe5,0x5c,0x15,0xed,0x1f,0x0d,0xde,0x01,0xff,0x2a,0x55,
-  0xd2,0xa2,0x51,0xa7,0xfe,0x59,0x61,0xc8,0xf1,0x80,0x31,0x2e,0xfb,0xf9,0xb8,0x44,
-  0xec,0xef,0x1f,0x21,0x3f,0x65,0xb3,0xfe,0xc9,0xfd,0xbc,0x6e,0xda,0xf9,0x79,0x95,
-  0xd7,0x3f,0xa3,0xac,0x52,0x55,0x72,0x1e,0x7e,0x10,0xd4,0xe7,0xb5,0xf9,0xf9,0x17,
-  0xc0,0xbf,0xfe,0x2c,0x67,0xd4,0x1a,0x5e,0xb8,0xcb,0xc8,0x03,0x76,0xfd,0x93,0xeb,
-  0xcf,0x07,0x35,0x15,0xe7,0x43,0xd0,0x2f,0xf5,0x83,0x9a,0xdf,0x94,0xb5,0xeb,0x9f,
-  0x19,0x01,0x43,0xa1,0xa8,0xf2,0x37,0x72,0x8a,0x94,0x4a,0x1b,0xa0,0x72,0x68,0xd3,
-  0x5a,0xbb,0xfe,0x39,0x20,0x07,0xe1,0x85,0xee,0xfa,0xcc,0xf2,0xf3,0x6d,0xf3,0x95,
-  0x23,0xac,0x3e,0x53,0xfc,0xba,0x58,0xe3,0xfa,0xfe,0x91,0x7e,0x2e,0x28,0x63,0x68,
-  0x61,0x56,0xb2,0xdf,0xad,0x3f,0x5b,0x5e,0x49,0xef,0x5f,0xed,0xbf,0x20,0xd6,0xd1,
-  0xd3,0xe9,0xfa,0xd5,0xfe,0x53,0x6d,0x60,0x7f,0x7f,0xf3,0x39,0xd8,0xca,0xc2,0xab,
-  0xe4,0xd7,0xc5,0x2f,0xd0,0x27,0x36,0xfc,0x45,0xaa,0xf8,0xa2,0xf8,0x77,0xe6,0xb8,
-  0x84,0x90,0x9f,0xbd,0xa4,0x12,0x92,0x7c,0x2f,0xeb,0x49,0xa8,0x14,0xe4,0x5b,0xa7,
-  0xe9,0x4f,0x7d,0x8f,0x21,0x13,0x1e,0xc7,0x75,0x4c,0xe5,0xe7,0xe7,0x93,0xf6,0xf7,
-  0x8f,0xf6,0xca,0x5f,0xe0,0xdb,0x00,0x69,0xd4,0x3d,0x2f,0xe3,0xc4,0x88,0xa2,0xfe,
-  0x34,0x9f,0x89,0xfc,0x94,0x4c,0x54,0xad,0xb6,0x73,0x66,0x2b,0x06,0x95,0x49,0xfe,
-  0xb5,0x23,0xe6,0xff,0x85,0xd8,0x04,0x2f,0x28,0x37,0x8f,0xfa,0xf2,0x22,0xd8,0xdf,
-  0xdf,0x4c,0xf1,0xaf,0x39,0xe5,0xe5,0xc7,0xc9,0x02,0xf8,0xc1,0x50,0xcd,0x39,0x84,
-  0x65,0xc6,0xce,0xdf,0xfd,0x90,0x16,0xd4,0x5c,0xdf,0x76,0x9c,0xef,0x3e,0x58,0x78,
-  0xe8,0x36,0x25,0x9c,0x71,0xce,0xcf,0xb3,0x9e,0x54,0x64,0x24,0x59,0x5f,0x53,0xdc,
-  0xfb,0x48,0x2c,0x82,0x3c,0x0b,0x76,0x3b,0xfa,0x53,0x3b,0xd5,0x8a,0xf3,0x28,0xdd,
-  0x53,0x0b,0x87,0x23,0x4b,0x72,0x81,0xee,0x1e,0x66,0x9f,0x9f,0x9f,0xf8,0xc5,0xb3,
-  0xb4,0xf9,0x94,0x6f,0x7f,0xdb,0x7b,0x70,0xa9,0x5a,0xdf,0xf8,0xb0,0xce,0xcf,0xc3,
-  0xf3,0x2d,0xc2,0x5a,0xfa,0x8a,0x72,0xb3,0x54,0xfc,0xbc,0xb0,0x8e,0xbe,0xd2,0x81,
-  0x86,0xb6,0x18,0xcc,0xb6,0x76,0xcf,0x3a,0xb8,0x93,0x7e,0x4e,0xf1,0x1c,0x29,0xac,
-  0x84,0x3b,0xe1,0x23,0x8a,0x47,0x5b,0xdc,0x61,0x7e,0x20,0x11,0x54,0x96,0x54,0x83,
-  0xb2,0x74,0xbf,0x65,0x30,0xd5,0xbc,0x8f,0x81,0x27,0x05,0x2b,0x61,0x0e,0x66,0x8e,
-  0xc2,0x2a,0xd3,0xb0,0xda,0x9e,0x4f,0x7a,0xee,0x81,0x3b,0xd9,0xe7,0x54,0x4f,0xce,
-  0x73,0x2f,0xdc,0x99,0xfe,0x88,0xea,0x3c,0xf3,0xf9,0x0e,0x48,0x09,0x21,0x28,0x80,
-  0x52,0xc6,0x0d,0x75,0x19,0x1a,0xb6,0x2f,0x54,0x52,0x05,0x99,0xb5,0x82,0xc2,0xa4,
-  0xca,0x2e,0x19,0x5a,0xcb,0x15,0xa7,0xed,0x76,0x81,0x76,0x75,0x64,0xee,0x90,0x2b,
-  0x44,0x6e,0xa4,0xd0,0x00,0xdb,0x4f,0xbf,0xf0,0x39,0x68,0xd1,0x94,0xb5,0x92,0x5f,
-  0xf8,0x08,0xb4,0x8c,0xa2,0x61,0x97,0x74,0x98,0x8c,0xd1,0x2f,0xeb,0xa6,0xb4,0x18,
-  0x64,0x8a,0x8c,0xe8,0xb2,0xfd,0x4c,0x11,0x59,0xe8,0x06,0x95,0x85,0x54,0x12,0x12,
-  0xba,0x95,0x14,0x0b,0x09,0x8e,0x9f,0x85,0xab,0x85,0x4f,0xc0,0xed,0xf4,0x0e,0xe6,
-  0xb1,0x0c,0xdb,0x97,0xa4,0x90,0x82,0x53,0xb0,0x04,0x6a,0x99,0x69,0xcc,0x73,0xda,
-  0x5a,0xa5,0x18,0xf3,0xab,0x6d,0x32,0x0c,0x15,0xa0,0x11,0x13,0x65,0x70,0xc6,0x13,
-  0x28,0x4e,0x3a,0x10,0x55,0xe3,0x18,0x0c,0x43,0x43,0xb3,0xfd,0x14,0x17,0x20,0x91,
-  0xd5,0xb2,0xa8,0x74,0x5c,0x40,0x23,0x83,0x86,0xdd,0xf6,0x7c,0x9b,0x27,0xa5,0x25,
-  0xd5,0xbf,0xf2,0x4b,0x87,0x3d,0x6b,0xb5,0x95,0xb1,0xa0,0xbf,0x9c,0xd9,0x7e,0xb6,
-  0x42,0xac,0x4b,0x56,0x89,0xac,0x60,0x47,0xd0,0x68,0x95,0xc1,0xed,0xcb,0x8d,0x5d,
-  0x45,0xea,0xb2,0xa4,0xf2,0x80,0xb4,0xba,0xeb,0xa3,0x9c,0x88,0x4e,0x1b,0x0e,0xbe,
-  0xd0,0x0a,0x9f,0x65,0xe5,0x86,0xd1,0xc1,0xca,0x9d,0xf1,0x2c,0x10,0x5a,0x58,0x47,
-  0xaa,0x3c,0xe4,0xb1,0x0d,0x67,0x3c,0x89,0x20,0xb1,0x4f,0xa8,0x4a,0xa7,0x14,0xf4,
-  0x48,0xac,0x45,0x55,0x92,0xce,0x58,0x3f,0xbf,0x4c,0xfc,0x74,0xd7,0x8b,0xa9,0x9b,
-  0x42,0xf3,0x0c,0xe3,0x1f,0x42,0xf3,0xa8,0xed,0xe7,0xb2,0xc2,0x75,0xec,0xce,0xd4,
-  0xe7,0x1a,0x2a,0x8e,0x78,0xee,0xed,0x42,0x23,0x54,0x61,0xc7,0xe0,0xd2,0x56,0x58,
-  0xc7,0x5e,0x49,0x15,0x86,0x8a,0x8f,0x08,0xdc,0xb8,0x39,0x54,0xac,0x95,0x5a,0x6d,
-  0xcb,0xa4,0xc5,0xcc,0x9f,0xfa,0x48,0x08,0x8e,0x14,0x70,0x43,0x0c,0x81,0x56,0x6a,
-  0x3e,0x13,0x90,0x96,0x6c,0x25,0x86,0x25,0xf0,0x97,0x28,0xab,0x73,0x64,0x0f,0x03,
-  0xeb,0x2a,0x90,0x56,0xb1,0x64,0x6a,0x4e,0x08,0x63,0xb7,0x12,0x8d,0x60,0x48,0xb2,
-  0xdb,0x96,0x52,0xcf,0x5a,0x58,0x0e,0x9f,0x03,0x49,0xab,0xe0,0x46,0x19,0x1a,0xd6,
-  0x33,0xd1,0x97,0x94,0x35,0x9e,0x5f,0xe1,0xe3,0xe9,0x57,0x98,0xed,0x4b,0xab,0xa4,
-  0x76,0x85,0x32,0xcb,0xe4,0xd2,0x6e,0x6e,0xa8,0x68,0xb8,0xda,0x04,0x7a,0xe8,0x8e,
-  0xd8,0x1d,0xfe,0x0a,0xc3,0xf8,0xac,0x5c,0x41,0x6d,0x3f,0xc5,0xca,0x0e,0x76,0x47,
-  0xa6,0x42,0xf6,0xb4,0x0a,0x68,0xa8,0x68,0x50,0xeb,0x3b,0x31,0xc0,0x57,0x73,0x05,
-  0xbd,0x15,0x64,0x89,0x22,0x20,0x24,0x10,0xcc,0x65,0x8c,0x3f,0x93,0x40,0x17,0xce,
-  0x2a,0x39,0x44,0x74,0x23,0x25,0x87,0xc0,0xf6,0x93,0x16,0xa6,0x84,0x95,0xf0,0x2e,
-  0x54,0x30,0x0f,0x37,0xfe,0x0a,0x0d,0xf3,0x0c,0x24,0xce,0x23,0x5c,0x45,0x72,0x18,
-  0x96,0x7e,0x26,0x58,0xb1,0x66,0x8f,0x0b,0x48,0x7c,0x3e,0xb4,0xf1,0xb7,0xac,0x52,
-  0x99,0xff,0x9e,0x0e,0xa7,0x4d,0x81,0x6a,0x6c,0xc3,0x95,0x2a,0x0d,0xd7,0x2b,0x45,
-  0x94,0x74,0xb8,0xda,0x3c,0x9e,0xc5,0x90,0xa4,0x65,0x31,0xa9,0x57,0xa8,0x4c,0x25,
-  0x3b,0xcb,0xae,0x71,0xc6,0x13,0xaa,0x3c,0x9d,0xda,0xe7,0x63,0x7f,0xb5,0xc5,0xf3,
-  0x88,0xe7,0x6f,0xf3,0x9f,0x5f,0x3f,0x67,0x8b,0x67,0xda,0x33,0x05,0xfc,0x18,0xaa,
-  0xa4,0xa1,0xda,0x53,0x04,0xad,0x1d,0x8a,0xd3,0x26,0x4b,0xa9,0xd2,0x90,0xb4,0x4c,
-  0x28,0xed,0x6b,0x5f,0x55,0x1a,0x2a,0x40,0xc3,0xe5,0x67,0x4b,0x47,0xe9,0x1d,0xd2,
-  0x67,0x85,0x0a,0x8a,0x46,0x39,0x1a,0xff,0x44,0x9d,0xfb,0x2a,0x5b,0xe5,0x3b,0xba,
-  0x2b,0xd4,0x0d,0xc9,0x55,0xdc,0xf0,0xa8,0x1b,0x9c,0x36,0xaf,0x40,0x18,0x64,0xf8,
-  0x17,0xe1,0x3d,0x30,0x40,0x1f,0x85,0x88,0xf3,0x44,0xf0,0x8b,0x9f,0x11,0x7a,0xb5,
-  0xca,0x58,0x68,0xb9,0xf8,0x99,0xca,0xed,0x47,0x56,0xc5,0x42,0xae,0x67,0x16,0xde,
-  0x23,0x70,0x66,0x55,0xe4,0x3c,0xf7,0x28,0x68,0x84,0x2b,0x34,0xbb,0x4d,0x54,0xa8,
-  0xa6,0xc4,0x7a,0xfd,0x42,0x15,0x70,0x03,0x31,0xe3,0x3c,0xb3,0x79,0x6a,0xc5,0xd4,
-  0x2f,0xa7,0xde,0x99,0x7a,0xcf,0x36,0xe0,0x4f,0xba,0x96,0xbc,0xec,0x5b,0x32,0xf4,
-  0xf3,0xec,0x81,0x35,0xd1,0xd3,0xc6,0x7d,0x13,0x4e,0xdb,0xf5,0x4d,0xcb,0x5f,0x28,
-  0xab,0x1f,0x1e,0x79,0xab,0xbe,0xd9,0x68,0x7b,0xcb,0xf5,0x79,0xeb,0x93,0x47,0x82,
-  0x8b,0xc7,0xb6,0xac,0xba,0x25,0xc4,0x8d,0xde,0x2d,0xab,0x9c,0x36,0x0f,0xac,0xd3,
-  0x76,0x76,0x14,0x96,0x7f,0xf4,0xf9,0x82,0x75,0x74,0x67,0xc7,0xf5,0xe5,0x1f,0x75,
-  0xfa,0x20,0x15,0x72,0xce,0xff,0x4d,0xc8,0x33,0x5c,0xb1,0x4e,0xb8,0x93,0x7e,0x44,
-  0xf9,0xa2,0xd3,0x06,0x82,0x0a,0x6e,0xce,0xbb,0xe6,0x0a,0x06,0x48,0x0a,0x42,0xf8,
-  0xe3,0x02,0x93,0x56,0xa1,0x51,0x20,0x0b,0x4e,0x9b,0x2c,0xdd,0x43,0xe7,0xb2,0x8f,
-  0xab,0xa5,0xc7,0xe0,0x9e,0xae,0xb9,0xac,0xb0,0xba,0xd4,0xf5,0x4c,0x83,0xf3,0x78,
-  0x1f,0x7f,0x00,0x2c,0x03,0xd7,0x7d,0xe5,0xd2,0x02,0xa1,0x48,0xc5,0x50,0xd8,0x06,
-  0x0b,0x85,0xa2,0x58,0xeb,0x5a,0x57,0x4c,0x54,0x41,0xb2,0x2b,0x18,0x93,0xfa,0x4a,
-  0x17,0xc2,0xad,0x42,0x30,0xd5,0x3e,0xe0,0xcc,0x14,0xcd,0x8f,0x53,0x15,0x34,0x21,
-  0xc6,0x21,0xca,0x50,0x8f,0xc6,0x04,0x6a,0xcd,0x15,0x6d,0x8e,0x54,0x21,0x09,0x20,
-  0x39,0xbf,0xfe,0x45,0x30,0x97,0x69,0xbc,0x8f,0x12,0xee,0x46,0x25,0x2e,0x53,0x7a,
-  0xb8,0xf3,0x09,0xe0,0xb4,0xe9,0xf3,0xe1,0xbf,0xf1,0x35,0x07,0x17,0x1f,0x68,0xc5,
-  0xf5,0xc8,0x6c,0x53,0x04,0x20,0x29,0xd8,0x81,0x6b,0xd5,0x0d,0xcc,0xcb,0x8d,0x85,
-  0x50,0x64,0x9d,0xa9,0xa1,0x4b,0x5b,0x0b,0x62,0x5d,0x7e,0xf5,0x2e,0xe4,0x3c,0x70,
-  0x43,0x94,0x15,0x8b,0x21,0x54,0x92,0x2d,0xbc,0xe7,0xf0,0x73,0xd0,0xe0,0x4e,0x53,
-  0xa3,0x0d,0x7c,0x4a,0x9c,0x7f,0x41,0x0f,0x95,0x37,0xe0,0xfa,0x90,0xe5,0xeb,0x83,
-  0xfd,0xcc,0x36,0x89,0xe3,0x7d,0x19,0x2f,0xe1,0x87,0xbb,0x42,0x59,0xc2,0xf9,0x62,
-  0x3e,0x53,0xe0,0x5c,0x9a,0xab,0x16,0x22,0x97,0x24,0xce,0x3a,0xce,0x79,0xf3,0xbe,
-  0x0e,0xc1,0x2b,0x85,0xbb,0xe4,0x4c,0x6b,0x44,0xd9,0x8c,0x46,0x08,0x0d,0x7b,0x1e,
-  0xd1,0xa5,0x48,0x17,0xa1,0x1d,0x4a,0x41,0x91,0x11,0x2d,0xe5,0xf0,0x59,0x28,0x6d,
-  0x35,0x9f,0x99,0x94,0x0a,0xa0,0x8d,0x29,0x79,0xa9,0x41,0x28,0x81,0x16,0xa6,0xa4,
-  0x94,0x90,0x00,0x56,0x6e,0xa1,0xcf,0x23,0x9a,0x51,0x22,0x12,0x29,0x85,0x5e,0x34,
-  0x64,0xeb,0x14,0x35,0x3e,0x13,0xf1,0xce,0x0c,0xce,0x17,0x7e,0x9a,0x0d,0xe7,0xbf,
-  0x1a,0x2a,0xb6,0x59,0x27,0x7c,0x4a,0xba,0xb7,0x6b,0x6e,0xfe,0x6f,0x1a,0x4a,0x4f,
-  0xa0,0xb1,0x32,0xff,0xf1,0x06,0x3b,0x26,0xa8,0xf0,0x29,0xe4,0xfc,0x4e,0xc4,0xbb,
-  0x70,0x44,0xe2,0xc6,0xf5,0x21,0x3b,0x3e,0x3b,0x96,0x2e,0xd3,0xf1,0x7e,0x57,0x48,
-  0x39,0x02,0x8b,0x71,0x7d,0x20,0xa1,0x8a,0x21,0xbb,0xef,0xd7,0xc0,0x42,0x56,0xa4,
-  0xce,0x49,0xc2,0x03,0x50,0xdd,0xfb,0x89,0x4c,0xb0,0x53,0x62,0x66,0x54,0x50,0x28,
-  0xe1,0x5f,0xf6,0x9c,0x24,0x21,0xf8,0x96,0x54,0xc9,0x42,0x78,0x1f,0xf6,0xdd,0x0c,
-  0x8a,0xa5,0x7f,0x2b,0x7d,0x03,0x4a,0xb6,0x7d,0x9c,0xc1,0x38,0x34,0x78,0x4a,0x04,
-  0x1e,0x33,0xf6,0x33,0x3f,0x0f,0xab,0xbb,0x8a,0x32,0x05,0x9d,0xca,0x3f,0x43,0x35,
-  0x2b,0xca,0xb4,0x76,0x82,0xfd,0x4c,0x41,0xe7,0x3c,0x0e,0x71,0x29,0x5f,0x03,0x14,
-  0xe4,0xbc,0xc0,0x14,0xfb,0xbd,0x03,0x3d,0x54,0xae,0x4a,0xfe,0xd2,0x36,0xe8,0x38,
-  0x54,0x1e,0x5b,0xea,0x17,0xac,0xbe,0x53,0x8c,0x2e,0x5c,0x46,0x55,0x8f,0x8c,0x2f,
-  0xeb,0x76,0x6e,0xf0,0x36,0xf3,0xbd,0x1b,0x78,0x67,0xa8,0x7b,0x04,0xd0,0x39,0x8f,
-  0xc1,0x2a,0xd8,0xcf,0xd4,0xf1,0xae,0xca,0x32,0x0f,0x4f,0xe4,0x7c,0x44,0x06,0xdb,
-  0xcf,0x16,0x29,0x45,0xf9,0xf4,0x29,0xed,0x2a,0x48,0xb5,0xa0,0x21,0xd9,0xfd,0xe3,
-  0x6b,0x08,0xdf,0xa9,0x24,0xc8,0xeb,0x82,0x6a,0x78,0x98,0xff,0xa6,0x05,0xe7,0xbd,
-  0x77,0x16,0xd4,0x80,0x97,0x7d,0x25,0xa3,0x0c,0x90,0x08,0xbe,0x5f,0x92,0xb1,0xe3,
-  0xb3,0x03,0x3f,0xba,0xaa,0x43,0xa6,0xe4,0x46,0xfe,0x2b,0x5b,0x52,0xfe,0x49,0x52,
-  0x6e,0xfe,0xa6,0x28,0x1e,0xbb,0x12,0x2c,0x80,0x22,0x0d,0xd1,0xbf,0x1d,0xae,0x87,
-  0x62,0x4a,0xbe,0x0e,0x56,0xad,0x84,0xc7,0xe7,0x2a,0x2d,0xa4,0x2c,0x8b,0x0a,0x1b,
-  0xa5,0xd4,0xa1,0x50,0x1a,0x07,0xc1,0x89,0x4f,0x7e,0x16,0x42,0x56,0x88,0xa2,0xf0,
-  0x89,0x86,0xf3,0x28,0xe6,0x1a,0xcf,0x24,0xc7,0x3b,0xe3,0x78,0x6f,0x4f,0x71,0xce,
-  0x97,0x96,0x3a,0xe3,0x89,0x99,0x16,0xe2,0xdd,0x53,0xbf,0x8d,0xe6,0x3b,0x3e,0x5d,
-  0xde,0xbb,0x14,0xb6,0x39,0xe3,0x89,0x61,0x1e,0x2a,0x2f,0xc4,0x97,0x41,0xd5,0xdb,
-  0xa1,0x1c,0x39,0x6f,0x8f,0x27,0x72,0x49,0xe2,0x61,0xd9,0x81,0x9c,0x17,0x80,0xd1,
-  0x30,0xb8,0xe3,0x73,0xb9,0x58,0x26,0xb0,0x8e,0x9b,0x62,0xc9,0xe5,0x05,0x65,0xc0,
-  0x6e,0x5f,0x55,0x2e,0xdb,0xcf,0x14,0x92,0x0b,0xee,0x29,0x9d,0x0b,0x1f,0x57,0x1f,
-  0xce,0x45,0xe2,0x95,0x68,0x80,0x6b,0xcd,0x31,0xf0,0x8e,0x48,0xad,0x0a,0x25,0x87,
-  0x39,0x5b,0xff,0x2f,0x70,0xbe,0x96,0xff,0xf8,0xef,0xaf,0x7c,0x5f,0x3d,0xff,0xaf,
-  0xb7,0xaf,0xdc,0xc6,0xf1,0x5e,0xb6,0xcf,0xf0,0xe5,0x67,0x0f,0x2c,0xee,0xfd,0xc7,
-  0x0b,0x4e,0x1b,0xe9,0xc5,0x24,0x36,0xc2,0x93,0x58,0xcb,0x70,0xda,0xf8,0x34,0x07,
-  0x5d,0x53,0xd8,0x86,0x73,0xf5,0x82,0x7e,0x54,0x45,0x71,0x0c,0xe7,0xfa,0xb0,0xfb,
-  0xf8,0xaf,0x71,0xd0,0xb5,0x42,0x4f,0xcc,0x34,0xac,0x4f,0x33,0x88,0xaa,0xce,0x30,
-  0xcc,0x36,0x54,0x8b,0x2a,0xf4,0xf1,0x5f,0x1b,0x60,0x19,0x4e,0xdb,0xec,0x3b,0x9d,
-  0x36,0x6f,0x2f,0xd9,0x85,0x8b,0x77,0x8d,0x62,0x1b,0xae,0xfb,0x24,0xc2,0x5f,0xb8,
-  0xaa,0xd8,0x86,0xeb,0xf3,0x66,0xf5,0xcf,0x6e,0x53,0xf8,0xef,0x47,0x1b,0x81,0x7b,
-  0x61,0xae,0x66,0x1a,0x0a,0x91,0xec,0xfb,0x36,0xc6,0x2a,0x47,0xe4,0x7b,0xad,0xfb,
-  0xee,0x25,0x73,0xed,0xef,0xdc,0xf1,0x38,0xeb,0x02,0x5b,0x29,0xa1,0x71,0x85,0xf1,
-  0x34,0x3b,0xe2,0x1e,0x4f,0x85,0x89,0x31,0x18,0x81,0x7a,0xe7,0x67,0xfd,0x9a,0xfd,
-  0x3d,0xc5,0x0f,0xbe,0x9a,0x9a,0x66,0xff,0x5f,0x20,0xf0,0xbf,0xbd,0xed,0xcf,0xb8,
-  0x9a,0xa7,0xa6,0xa6,0xb4,0x69,0xc6,0xff,0x9b,0x6d,0x1f,0x1e,0xf3,0x33,0x63,0xc2,
-  0x75,0xe3,0x9f,0x15,0xf3,0xf5,0xb3,0xa2,0xfa,0xca,0x31,0xef,0xb4,0xc9,0xff,0xd1,
-  0x98,0x67,0x46,0xa8,0xcf,0x3d,0xb6,0x31,0x6e,0x18,0x43,0xce,0x7d,0x24,0xf8,0x01,
-  0xfd,0xc3,0x4f,0xee,0x56,0xec,0x18,0x9c,0x15,0xf3,0xd8,0xad,0x11,0xa7,0x7f,0x18,
-  0xfc,0x43,0x4e,0xcc,0x7f,0xe0,0x5c,0x81,0x0f,0xe9,0x1f,0x7c,0xe0,0x6c,0x07,0x1e,
-  0xf3,0x30,0xeb,0xba,0x1a,0xf3,0x7f,0x46,0xdb,0x07,0x5f,0xfc,0x77,0x39,0x12,0xfd,
-  0xef,0x96,0x9f,0xfd,0xa9,0xf7,0x5c,0xbd,0xae,0x5e,0x57,0xaf,0xab,0xd7,0xd5,0xeb,
-  0xea,0xf5,0xff,0xcb,0xa5,0xaf,0x93,0x44,0x5f,0x27,0xb5,0xff,0x6c,0x5f,0xae,0x5e,
-  0x57,0xaf,0xab,0xd7,0xd5,0xeb,0xea,0x75,0xf5,0xfa,0xcf,0xb8,0x62,0xfc,0x77,0xf7,
-  0x43,0xe0,0xa7,0x66,0x65,0x56,0x8c,0x01,0x2d,0xfc,0xf0,0x9f,0xd7,0x7f,0xce,0x13,
-  0x83,0x8c,0xe0,0xdc,0xbf,0x27,0x3d,0xd3,0xd7,0xff,0x05,0x2f,0x2f,0xc7,0xce,0xd5,
-  0x60,0x00,0x00,
+  0x1f,0x8b,0x08,0x08,0x30,0x5b,0xea,0x3c,0x00,0x03,0x63,0x70,0x63,0x69,0x34,0x30,
+  0x35,0x5f,0x32,0x5f,0x30,0x31,0x2e,0x62,0x69,0x74,0x00,0xed,0x9c,0x7f,0x78,0x54,
+  0x55,0x9a,0xe7,0xdf,0xfb,0xa3,0xc2,0x4d,0xaa,0x92,0xba,0x29,0x2a,0x58,0xd2,0x01,
+  0x6f,0x2a,0x81,0x2e,0x99,0x22,0x14,0x15,0xc4,0x18,0x63,0x72,0x52,0x04,0xac,0xd6,
+  0x8c,0x94,0x68,0x77,0x3b,0xbd,0xee,0x74,0xa1,0xd8,0x9b,0x99,0x07,0x1d,0x70,0x7a,
+  0x9e,0x65,0x1d,0xb7,0xf7,0x54,0x12,0xa4,0x42,0x10,0x4a,0xe4,0x99,0xce,0x8c,0x4c,
+  0x4f,0x81,0x51,0x63,0x0f,0xe3,0x04,0xb0,0x9b,0xa0,0x8c,0xde,0xa4,0x03,0x16,0x10,
+  0x30,0x32,0xec,0x34,0xfe,0x18,0x2d,0xed,0xb4,0x93,0x46,0xa4,0xa3,0xa2,0x1d,0x0c,
+  0xc8,0xbe,0xe7,0xfe,0x0e,0x3a,0x3d,0xfd,0xec,0xec,0xb3,0xb3,0xcf,0xb3,0x5c,0xff,
+  0xe0,0x98,0x93,0x7b,0xef,0xf9,0xf1,0x9e,0xcf,0xf9,0xbe,0xef,0x7b,0x6e,0xa0,0xd0,
+  0x3b,0xae,0xff,0x07,0xc0,0xad,0x84,0xd2,0x7b,0xd7,0xdc,0xfb,0x47,0x8b,0x22,0xd7,
+  0x7d,0x37,0xfa,0xdd,0xc8,0xc2,0xea,0x07,0xee,0x5d,0x05,0xf7,0x40,0x51,0xf4,0x4f,
+  0x17,0x5e,0xf7,0xfd,0xb5,0x0b,0x17,0x2d,0x82,0x7b,0xc1,0x1d,0x8d,0x44,0xa2,0x0b,
+  0x22,0xd7,0x2d,0x88,0x2e,0x84,0x55,0x50,0xb8,0x70,0x71,0x5d,0xcd,0x75,0x75,0xd1,
+  0xeb,0xe1,0x3e,0x80,0x64,0xfa,0x12,0x5e,0x3f,0xfe,0xcb,0x6f,0x7e,0x2f,0x02,0x94,
+  0x03,0x80,0x69,0x11,0x2e,0xc9,0xfe,0x2d,0x88,0x70,0x0a,0x07,0xb4,0x71,0x7e,0x04,
+  0x54,0xf6,0xff,0x60,0xd4,0x17,0x46,0x40,0x71,0xfe,0x3f,0x17,0x01,0x02,0x09,0xf0,
+  0xdf,0x0f,0xbe,0x08,0x5c,0x76,0x71,0x20,0x52,0xbd,0xf4,0xdb,0xea,0xf8,0xcb,0xab,
+  0xd8,0xf5,0x3b,0xd4,0xf9,0xbe,0xa2,0x4a,0xfc,0xdf,0xad,0xd3,0xff,0xb9,0xe4,0x03,
+  0x3f,0xb8,0x80,0xd3,0x7a,0x64,0x14,0x1a,0x87,0xf4,0xfb,0x54,0xd7,0x11,0xf8,0x9c,
+  0xbe,0x90,0xf7,0x06,0x84,0x15,0xf0,0x16,0xad,0x51,0x3c,0x23,0xc2,0x38,0xac,0xd1,
+  0x5b,0x24,0x9f,0x86,0x34,0x0d,0xe6,0xdd,0x5b,0xf9,0x2a,0xe8,0x57,0x82,0x92,0xb4,
+  0x9d,0xcf,0x8b,0x7a,0x9f,0xd3,0xae,0x1c,0xec,0x87,0x90,0xea,0x8e,0xb4,0x11,0xe8,
+  0x97,0x14,0x5e,0x5a,0x14,0x7c,0x8f,0xd3,0xef,0x53,0xcb,0x7a,0xe5,0xb4,0x1c,0x54,
+  0xbb,0x0e,0xc0,0x5c,0xa8,0xa5,0x0a,0x84,0xfa,0xf8,0x71,0x31,0xa9,0x37,0xa6,0xec,
+  0x28,0x4c,0xc0,0x43,0xaa,0xb7,0x5b,0x48,0xc2,0x6b,0x10,0xf5,0x79,0xfa,0xb8,0x11,
+  0x51,0xbf,0x2f,0xcf,0xed,0x87,0x0b,0xf4,0x65,0xd5,0x3b,0x22,0x9c,0x83,0x8b,0x70,
+  0x8d,0xbc,0x65,0xff,0xf4,0x09,0xd0,0xef,0x23,0x72,0x2f,0x8c,0x91,0x3a,0xd5,0xdb,
+  0xef,0x56,0xe0,0x30,0x44,0xc1,0xdb,0x27,0xc8,0xa2,0xa2,0xd5,0xe5,0x5c,0x95,0x38,
+  0x7a,0x41,0xd5,0x5d,0xce,0xcf,0x85,0x4e,0x2e,0x08,0xee,0x3e,0xe1,0x41,0x9c,0x3f,
+  0xed,0x99,0xe2,0xb2,0x60,0x96,0xb5,0xd3,0x57,0x54,0xc4,0xed,0x04,0x05,0x1b,0x1c,
+  0xab,0xc5,0x71,0x60,0x97,0xc2,0xcd,0x80,0x4d,0xd9,0x8a,0x51,0xf7,0xeb,0x45,0x2f,
+  0x45,0x9e,0xa3,0x15,0x79,0xf7,0x3a,0xfe,0x94,0xa8,0xdf,0x17,0x8f,0x2f,0x5b,0x94,
+  0x57,0x43,0x63,0xde,0x1b,0x04,0x09,0xde,0xcb,0x46,0xc6,0xbc,0x37,0x0a,0x3e,0x63,
+  0xde,0xc8,0xac,0xe7,0x9b,0xcf,0x41,0xc3,0x10,0x36,0xe1,0xe1,0xe6,0x7f,0x92,0x1b,
+  0x87,0x96,0x8f,0x0b,0x09,0xa3,0x7f,0xbd,0xae,0x51,0x38,0x05,0x8b,0x54,0x4f,0xc6,
+  0x1d,0x82,0x0f,0xa8,0xef,0x0d,0x4f,0x9f,0x70,0xda,0x18,0xcf,0x78,0xe9,0x36,0xe8,
+  0x80,0x0a,0x55,0x4a,0xf0,0xe5,0xe2,0xcb,0x5c,0xa5,0x2a,0xad,0xe1,0x4f,0x18,0xf7,
+  0xa9,0xe4,0xa7,0xe2,0x76,0x75,0x4e,0x5e,0x6a,0xe5,0x67,0xc2,0x33,0x6d,0x15,0x79,
+  0x69,0x5d,0x70,0x1c,0xf4,0xfe,0xc5,0xfd,0x3f,0x83,0x6e,0xa2,0x0c,0x48,0xb5,0x7c,
+  0x18,0xf6,0x62,0x1f,0xa4,0x08,0xde,0xa7,0xcf,0xc3,0x58,0xd9,0xa9,0xd6,0xb7,0xe9,
+  0x22,0xea,0xf9,0x63,0x21,0x04,0xa7,0x21,0x4a,0x3d,0x59,0xe1,0x73,0xe3,0x99,0x71,
+  0xc8,0xc2,0x98,0xd4,0x00,0xcb,0xd3,0x42,0x1e,0x26,0xd6,0x37,0x40,0x31,0x15,0x4e,
+  0x80,0x7e,0x9f,0x24,0x8f,0x92,0x5f,0xc1,0x83,0xc4,0xb3,0xed,0x6b,0x55,0x38,0x9e,
+  0x0d,0x64,0x53,0x46,0x18,0x34,0x9e,0x49,0xc5,0xfb,0xa0,0x13,0xe6,0x91,0x74,0x06,
+  0xe7,0xbd,0x93,0x0b,0x13,0x29,0x83,0x0f,0x90,0xb5,0xba,0x80,0x2b,0xac,0x3c,0x0b,
+  0x41,0xfc,0x11,0xd6,0x3d,0x0a,0x0b,0x58,0xe1,0x90,0x31,0xd6,0x92,0x58,0xc5,0x75,
+  0x42,0x88,0x84,0x32,0xbc,0x1f,0xd6,0x8b,0x0b,0x48,0xc8,0xc7,0x0f,0x72,0xfa,0x98,
+  0xf5,0x17,0x27,0x61,0x0c,0x82,0xe0,0x71,0x09,0x15,0xb1,0xdc,0x8a,0x46,0xff,0x26,
+  0x2a,0x9c,0x15,0xf4,0x79,0xe8,0x9e,0xf5,0x16,0x7c,0x8a,0x4d,0xf0,0x8e,0xf8,0x46,
+  0xe1,0x3c,0x8f,0x85,0xd7,0x84,0xa7,0x0b,0xd6,0x18,0xef,0x3b,0x07,0x4d,0x70,0x3d,
+  0xf1,0x26,0x84,0xe7,0xe1,0x23,0x12,0x25,0x38,0xe8,0xef,0x1b,0xe3,0x59,0x2b,0xe7,
+  0x21,0x8d,0xcf,0x74,0xb7,0x2d,0x51,0x68,0x3f,0xec,0x94,0xdc,0xeb,0x63,0xc7,0x8d,
+  0x3e,0x48,0xae,0x21,0xa1,0x13,0xaa,0x88,0x3b,0xb0,0xb1,0x43,0xd9,0x0f,0x4a,0xcc,
+  0x2d,0xfb,0x06,0x0d,0xfb,0x0c,0x94,0xf5,0xb8,0x3a,0xe5,0x20,0xe9,0x92,0x8b,0xaa,
+  0xd0,0x88,0x83,0x44,0xc0,0x3e,0x18,0x63,0x96,0xf5,0x77,0xc0,0xe1,0xec,0x62,0xe2,
+  0xcd,0x08,0x3d,0xd2,0x79,0x88,0x92,0x2d,0xdd,0xd3,0xc6,0x0c,0x3b,0x0b,0xc1,0x33,
+  0xa1,0xf3,0xd0,0xd0,0xe4,0xdd,0x2a,0xf4,0xc0,0x79,0xd6,0xe0,0xc7,0xae,0x3a,0x22,
+  0x1b,0x75,0xf2,0x0e,0x72,0x0a,0x16,0x83,0x87,0xba,0xb3,0x68,0xe0,0x68,0x9f,0x54,
+  0x38,0x62,0xde,0x27,0xde,0x18,0x68,0x83,0x20,0x4d,0x8f,0xf1,0x21,0x78,0x09,0x0b,
+  0xb7,0x66,0x7d,0x47,0x8c,0x25,0x1a,0x72,0x2d,0x81,0xc7,0xa1,0x67,0x40,0x5a,0xc8,
+  0x0f,0xc3,0x8b,0x9a,0x7d,0xf2,0x47,0x2c,0xfb,0x8c,0x88,0x7f,0x03,0x3b,0xf2,0xd2,
+  0x08,0x7f,0x37,0xb7,0x4f,0xac,0xc8,0xb9,0xd7,0xf0,0x39,0x63,0xac,0x43,0x52,0x14,
+  0x7e,0x9e,0xba,0x2e,0x5f,0xbe,0x4e,0x78,0x1b,0x7e,0x93,0x5b,0x38,0xe1,0x5d,0x27,
+  0x1c,0x31,0xec,0x53,0x9a,0x95,0x85,0x0f,0xa0,0x5e,0xc5,0xa1,0xda,0x05,0x93,0x2b,
+  0x1b,0x46,0xbe,0xdb,0x27,0x0c,0xf2,0xc6,0x3a,0x72,0x9d,0x80,0x5f,0x67,0x16,0x8e,
+  0x7a,0x26,0x84,0xcd,0xe4,0xd5,0xcc,0xc2,0x73,0x9e,0xf3,0x82,0x6c,0x8c,0x67,0x6f,
+  0xe9,0xe3,0xd9,0x0d,0x59,0x2e,0xef,0xf9,0x81,0x6f,0x36,0x6d,0xa7,0x8a,0x1a,0x8a,
+  0xf0,0x3f,0x36,0xd7,0x2d,0x64,0xc8,0xdf,0x93,0x39,0x6a,0xe1,0x47,0xfc,0x05,0xf8,
+  0xa1,0xfc,0x75,0x35,0xbd,0xc6,0x27,0x52,0xbd,0x7f,0x49,0xff,0x00,0xb4,0x33,0xb3,
+  0x5c,0xc4,0xdf,0x8f,0x9d,0xd1,0xec,0xb3,0xdb,0x98,0x87,0xde,0xb2,0xf5,0xd8,0x96,
+  0x9f,0x0e,0xdc,0x2f,0x0a,0xbf,0xe4,0xdf,0x81,0xbd,0x2a,0xae,0x87,0x79,0xc6,0x33,
+  0x29,0xe4,0x61,0x92,0xbe,0xa0,0x7a,0xb7,0x63,0x3b,0x3f,0x80,0x06,0x6c,0xf0,0xb4,
+  0x5f,0x1a,0xf6,0xc9,0x25,0x3e,0x52,0xde,0x81,0xeb,0x55,0x6f,0xae,0x7d,0x91,0xf2,
+  0x2a,0x34,0x0e,0xb8,0xfa,0xa6,0x27,0x9b,0xf5,0xba,0x94,0x78,0x2f,0xbe,0x2f,0xa8,
+  0xde,0xfa,0xd7,0x45,0x61,0xe8,0x82,0x6a,0xb5,0xab,0x8f,0xcf,0x13,0xdd,0x3e,0xa9,
+  0x4b,0x81,0x27,0xe0,0x69,0xd5,0x4d,0x63,0x4f,0x8b,0x5d,0x62,0xb5,0xea,0xee,0x0b,
+  0xe6,0x8d,0xf1,0x94,0x44,0x89,0x74,0x29,0xc9,0x61,0xb7,0xbc,0x79,0x13,0x6d,0x8f,
+  0x84,0xd5,0xf6,0x08,0x3f,0x68,0x30,0x12,0x8a,0x93,0xe9,0x37,0x57,0x2c,0x3e,0xea,
+  0xdd,0xe0,0xee,0xa1,0xaf,0x24,0x1b,0x47,0x5c,0xcf,0x4f,0x4f,0xf2,0xfa,0x33,0xb3,
+  0xb3,0xf2,0x43,0x9f,0x24,0x1b,0x72,0x5e,0xd9,0xfd,0xdf,0xe1,0xcf,0x23,0x8d,0x83,
+  0xcb,0x3f,0x6e,0x1f,0x33,0x98,0xa5,0xba,0xde,0xe7,0x8f,0x72,0x0d,0x6b,0xbd,0x7b,
+  0xda,0xeb,0xc9,0x64,0xa8,0xe6,0x0d,0x4f,0x4e,0x88,0x58,0xfc,0x1c,0x85,0x2d,0x27,
+  0xaa,0x73,0xee,0xe7,0xf9,0x7a,0xfa,0xc2,0x3d,0xf5,0xaf,0x49,0xdd,0xbc,0x62,0xf1,
+  0x73,0x78,0x5a,0x3b,0x84,0x73,0x38,0xdd,0x1e,0x75,0xaf,0x94,0x4d,0xa6,0x33,0x45,
+  0x41,0x8b,0x9f,0x1d,0x80,0x4d,0xcf,0xb9,0xfb,0x70,0xbd,0xbf,0x08,0xcf,0x11,0xe9,
+  0x00,0x1f,0x31,0xc6,0x8c,0x94,0xbd,0x0f,0x47,0xa1,0xe1,0x5d,0x6f,0xbf,0x10,0x46,
+  0x1b,0x0c,0xd2,0x96,0xf2,0x25,0xb2,0xc5,0xcf,0xe7,0xe3,0x97,0xa0,0x51,0xf5,0x46,
+  0x6f,0xbc,0x00,0x9f,0x43,0x23,0x5d,0x3e,0xee,0xe0,0x67,0x8f,0x36,0xc4,0x38,0xfc,
+  0x61,0x5c,0xef,0x11,0xea,0xd9,0x26,0x8c,0x98,0xfc,0xe4,0xe6,0xd2,0x2d,0x38,0x8c,
+  0x8f,0xfe,0x84,0xaf,0xe7,0xbb,0x60,0x1e,0x95,0xfa,0xf9,0x8f,0x4d,0x7e,0xba,0x9a,
+  0xe1,0x49,0x08,0xab,0x92,0x9f,0xf7,0xe0,0x58,0xe3,0xdc,0x06,0xf8,0x09,0x9b,0x9f,
+  0xe4,0x87,0xa9,0x05,0x63,0x85,0x0f,0xf1,0xb3,0xc7,0x1f,0x49,0x5f,0xfb,0x2b,0x69,
+  0x9d,0x65,0x9f,0x71,0x69,0x6e,0xdb,0x2f,0x7a,0x1b,0xc6,0x3c,0x01,0xa1,0x5a,0xfd,
+  0x19,0x8d,0x24,0x3d,0x81,0xf6,0x13,0x16,0x3f,0xb1,0x2d,0x72,0x83,0x3a,0x6d,0x77,
+  0xe5,0x19,0x32,0x09,0x0d,0x2d,0x68,0xa8,0x23,0x05,0x7a,0x3b,0x19,0x3f,0x8f,0xf6,
+  0x46,0xdf,0x2d,0xc9,0x08,0xf3,0xbf,0x77,0x18,0xda,0x10,0xa4,0x0e,0x7e,0x3e,0x2f,
+  0xb6,0x93,0x0a,0x86,0xcd,0x7a,0xfa,0x08,0x1a,0x87,0x93,0x9f,0xf0,0x17,0xb0,0x81,
+  0x56,0x8e,0xbb,0xef,0x2a,0x9a,0x2d,0xae,0x4f,0xaf,0xcc,0x4b,0x77,0x81,0xcd,0xcf,
+  0x21,0x9e,0xd9,0x67,0x61,0x04,0xed,0xa5,0x1d,0x46,0x73,0x81,0x1b,0xf1,0x3e,0x7d,
+  0x6e,0xc7,0xca,0x7e,0xac,0x1c,0x11,0xa3,0xd9,0x2d,0x59,0x5c,0x9b,0xc7,0xa1,0x92,
+  0x86,0xf3,0x0e,0x7e,0xbe,0x8b,0x4b,0xb9,0x01,0x6e,0xa3,0x42,0x1e,0x3b,0x5d,0xcf,
+  0xd6,0xf4,0x54,0x7e,0x22,0x02,0x64,0x77,0x95,0x38,0x80,0x9c,0xb8,0xcd,0xc9,0xcf,
+  0x55,0x4a,0x27,0x54,0x13,0xf7,0x36,0xc6,0x4f,0x65,0x0f,0x63,0xa4,0xcd,0x4f,0x11,
+  0x9e,0xa5,0xd5,0x4d,0xee,0x0c,0xb2,0xa7,0x53,0x9c,0x47,0x42,0x8f,0x39,0xf8,0x29,
+  0x42,0xaa,0x2a,0x4c,0xbe,0xe6,0xe3,0x45,0x9a,0x52,0x42,0x71,0x49,0x76,0xf0,0x73,
+  0x25,0x19,0x83,0x06,0xbf,0x77,0x8e,0x50,0x41,0xd4,0x15,0x75,0x7e,0x8f,0x83,0x9f,
+  0x57,0x9f,0x83,0xf3,0xf2,0x4d,0x88,0xcd,0xe9,0xa3,0xb1,0x8b,0x72,0x4d,0x33,0x6e,
+  0xa0,0xef,0x5b,0xfc,0x3c,0xc9,0x1f,0x53,0x10,0x9b,0x19,0xf7,0xf7,0xe1,0x18,0xf8,
+  0xd4,0xf0,0x88,0x70,0xc8,0xe4,0x27,0xe4,0xd3,0x69,0x59,0xe1,0xdd,0x10,0x54,0x48,
+  0x3a,0xb1,0x93,0x97,0x28,0x6f,0xf3,0x73,0x34,0x9b,0x02,0x25,0xee,0x9e,0xde,0x26,
+  0xf6,0xa4,0x7a,0xab,0x9a,0xe3,0x01,0x27,0x3f,0x71,0x7f,0x08,0xc6,0xdd,0x99,0xe0,
+  0x2a,0x2c,0xcc,0x6d,0x96,0x1c,0xfc,0x2c,0x1b,0x25,0x03,0xb0,0x87,0xb8,0x33,0x42,
+  0x15,0x7f,0x18,0x16,0x27,0x3d,0xdb,0x05,0x73,0xad,0x84,0xb8,0x1e,0x1d,0xef,0x11,
+  0xe4,0xe7,0x47,0x50,0x9b,0xbc,0xe6,0xb1,0xe9,0x47,0x0c,0xfb,0x0c,0xc9,0x59,0xe5,
+  0x14,0x62,0xd3,0x43,0x7f,0x86,0x06,0x29,0xb2,0x82,0xcd,0x4f,0xee,0x46,0xd8,0x8c,
+  0xa6,0xbe,0x29,0xeb,0x0b,0x61,0xe1,0xc7,0x34,0x9e,0xdd,0x7a,0xc4,0xe4,0xa0,0xeb,
+  0x01,0xdf,0xe3,0x22,0xce,0x6d,0xb9,0xcf,0x23,0xb6,0x63,0xa1,0xb7,0xd6,0xe2,0x67,
+  0xf6,0xf6,0xeb,0x7c,0xed,0x52,0xc5,0x68,0x61,0xf3,0x5c,0x0f,0xac,0x87,0xbf,0xcb,
+  0xa1,0xbd,0x8c,0x19,0xf7,0xf5,0xc2,0x0c,0xf8,0x39,0x5d,0xf8,0x5e,0xf1,0x1f,0xb8,
+  0x67,0x03,0xda,0xe7,0x87,0x9e,0x75,0xc2,0x69,0x93,0x9f,0xd8,0x3f,0x34,0xcb,0x53,
+  0xb7,0x6d,0x5d,0x72,0x06,0xd7,0x58,0xdd,0xd0,0x02,0x9b,0x9f,0xe0,0x3a,0x4b,0x8e,
+  0x66,0x1a,0x46,0x3d,0xbd,0xc2,0x17,0xcd,0xaf,0x66,0xa6,0xe5,0x37,0x4d,0x54,0xaa,
+  0x16,0x3f,0xff,0x82,0x6e,0xa0,0x0b,0xf2,0xe9,0x56,0xfe,0x2c,0xac,0xcf,0x2e,0x1a,
+  0x95,0xea,0xf8,0xd3,0x16,0x3f,0xfb,0x63,0x1b,0x60,0x3e,0x33,0xd9,0xed,0xf0,0xb8,
+  0x52,0x91,0x0b,0x3d,0xc8,0xab,0x86,0x7d,0x2a,0xfe,0x41,0xb6,0xc6,0xf2,0xb8,0xbf,
+  0x0f,0xc3,0x63,0x50,0x85,0x20,0x8d,0xe5,0x2c,0x7e,0xee,0xa2,0x3f,0x13,0x1b,0xf3,
+  0xe1,0x7e,0x1c,0xb3,0x37,0x48,0x8d,0xea,0xa9,0xdd,0x70,0xda,0xe2,0xe7,0x28,0xff,
+  0x26,0xd3,0x21,0x3f,0x11,0xce,0xc0,0xe9,0x74,0xbd,0xba,0x60,0x0f,0xee,0xd3,0x06,
+  0x3f,0xe5,0x0b,0xf0,0x4e,0x0a,0xf9,0x39,0x21,0x2c,0x82,0xdf,0xa8,0x51,0x35,0x3c,
+  0x2e,0x80,0xc5,0xcf,0x66,0xd2,0x45,0x83,0x03,0xee,0xdd,0x6d,0xc8,0x17,0x12,0x1c,
+  0x90,0xf6,0xf3,0x8a,0xc5,0xcf,0x30,0xff,0x84,0x32,0x97,0x6d,0x43,0x4f,0xc3,0x0b,
+  0x52,0x50,0x95,0xfa,0x62,0x8a,0xbd,0xbf,0xab,0xed,0x92,0x92,0x73,0x47,0xf9,0x4d,
+  0x43,0x7b,0x88,0x72,0x4c,0xda,0xcb,0xf3,0x86,0x7d,0x42,0x71,0x2b,0x7d,0x93,0xbb,
+  0xfe,0x6d,0x5c,0xca,0x3d,0xd9,0xc9,0xd6,0x1a,0x55,0xec,0x13,0xc0,0xb0,0xcf,0xec,
+  0xac,0x11,0xf5,0xa2,0xd4,0x98,0xf3,0x7e,0xd6,0xbe,0x9a,0xe2,0xc0,0xbe,0xee,0xfd,
+  0x0b,0x61,0xac,0xc0,0xe4,0xe7,0x17,0x30,0x44,0x6b,0x54,0xef,0xb8,0x50,0x05,0x97,
+  0xa4,0xfa,0x48,0xb8,0xcf,0xa1,0x3f,0x9f,0x43,0xfd,0xb9,0x38,0xef,0xee,0x0f,0xce,
+  0x85,0x97,0x69,0x35,0x48,0x17,0x6d,0xfd,0xd9,0x3c,0xc4,0x67,0x41,0x21,0xee,0x5a,
+  0x5e,0x24,0x7b,0xa1,0x9a,0x16,0x46,0x78,0x5b,0x7f,0xf6,0x88,0xbd,0x30,0x77,0xc4,
+  0xdd,0xcf,0x57,0xc9,0x2f,0xe2,0x42,0x94,0x1c,0xfa,0xd3,0xf5,0x00,0x19,0x0b,0xf8,
+  0x46,0x50,0x22,0x56,0xc9,0x93,0x50,0x2f,0x23,0x10,0x55,0x93,0x9f,0xa5,0x07,0x50,
+  0x02,0xe3,0x36,0xb4,0x06,0xf5,0x27,0x82,0x14,0xbe,0x3b,0x2e,0x38,0xf9,0x79,0x38,
+  0xb9,0x27,0x51,0xdc,0x27,0xcc,0x65,0x00,0xa6,0x25,0x7d,0x36,0x3f,0x5d,0xa2,0x4c,
+  0xa5,0xe0,0x49,0x7c,0xcd,0xf5,0x64,0x0b,0x7b,0xdf,0xb8,0xc5,0x4f,0x55,0x14,0x15,
+  0xda,0x1c,0xa2,0x01,0xe0,0x45,0x64,0x4f,0x18,0x8a,0x22,0x36,0x3f,0xe5,0x19,0xfc,
+  0xb6,0xec,0xb5,0xbd,0xd2,0x3c,0x7e,0x46,0x07,0x1a,0x4e,0x08,0xf9,0x79,0xca,0xe2,
+  0x67,0x01,0x1d,0xcc,0xf6,0xb7,0x7a,0x66,0x0a,0x05,0xf4,0x67,0xd9,0xfa,0xf1,0x92,
+  0xba,0xe9,0x16,0x3f,0xfd,0x1d,0x64,0x4c,0xbe,0x7e,0xa8,0x7a,0xb7,0x70,0x12,0x2e,
+  0xc9,0x8d,0xc4,0xfb,0x51,0xbb,0xc9,0x4f,0xd4,0x3d,0xc8,0x60,0x94,0x81,0xe9,0x25,
+  0x55,0xe4,0x93,0x11,0xd4,0x21,0xcf,0xb7,0xcf,0x33,0xf9,0xc9,0x69,0xfa,0x93,0x4a,
+  0x49,0xd4,0x67,0xfb,0xa4,0x0a,0x40,0x3d,0xe1,0x33,0xc6,0x45,0x21,0x3f,0x45,0x49,
+  0xa6,0x24,0x43,0x01,0x7e,0x06,0xec,0xcb,0xa2,0x16,0xae,0xe3,0x23,0x86,0x7d,0xb6,
+  0xfa,0x87,0x44,0xaa,0x6d,0xeb,0x45,0x22,0xd3,0x9f,0xc4,0x1d,0xf1,0xf9,0x4c,0xfd,
+  0x29,0xf6,0xc3,0xf1,0x40,0x0d,0xf5,0xe4,0x85,0x5a,0xf1,0x73,0xa8,0xa1,0xcb,0xb3,
+  0xd3,0xea,0x4c,0x7e,0xca,0x28,0x85,0xb8,0x97,0x18,0x36,0x51,0x7f,0x72,0x0d,0xe0,
+  0x85,0x69,0x36,0x3f,0x9f,0x86,0xc3,0xca,0x22,0x82,0x9c,0x1f,0x15,0x0f,0x33,0x28,
+  0x64,0x04,0xde,0xe2,0x67,0x01,0xec,0x20,0x41,0xa2,0x6c,0xe3,0x87,0x78,0x0d,0xa4,
+  0x19,0x5e,0xb1,0xf8,0x59,0xd5,0x8c,0xc8,0x41,0xa4,0xb6,0xbd,0xcf,0x19,0x75,0x05,
+  0xa6,0x7d,0x36,0x57,0xc1,0xdf,0x22,0xb3,0x24,0x5f,0x6c,0x94,0x32,0x90,0xa2,0xe8,
+  0x37,0xed,0xb3,0x7f,0x56,0xb2,0x28,0x87,0xfa,0x6c,0x33,0x6b,0x4b,0x8e,0x81,0x94,
+  0x0a,0xd5,0x86,0x7d,0xf6,0xcf,0x3a,0x07,0x9f,0x8a,0x8d,0xcd,0xde,0xd7,0x2a,0xcf,
+  0x91,0xf3,0x6c,0x3c,0x1f,0xab,0x34,0xf9,0x59,0x8b,0xfa,0xf3,0xa2,0x18,0x25,0x61,
+  0x6c,0x27,0x5c,0x54,0x1e,0x24,0x28,0xfe,0xde,0x37,0xec,0x25,0x80,0xfa,0xa5,0x5f,
+  0x0c,0xca,0x88,0xcd,0xf1,0x38,0x8a,0x5b,0xc9,0x9d,0x12,0x4c,0x7e,0xc6,0x49,0x47,
+  0x60,0x3f,0xec,0xb8,0x4f,0xfa,0x03,0xfe,0xa4,0xbc,0x5b,0x56,0x6e,0x71,0x33,0x96,
+  0x1b,0xf7,0xf9,0x7b,0xe8,0xfe,0x44,0x90,0xc8,0x23,0xa8,0xa5,0x50,0x4c,0x37,0xbb,
+  0x1d,0xfc,0x14,0x9f,0x46,0xe4,0x44,0xef,0x6c,0xd9,0x76,0xc7,0xa8,0x7c,0x1e,0x76,
+  0xb6,0xe2,0xb8,0x8c,0x19,0xf3,0xd7,0x2a,0x3f,0xad,0x9c,0x97,0xea,0xd9,0x50,0x8d,
+  0x02,0x6e,0x3e,0xc9,0xe5,0x19,0x61,0xa3,0xcd,0x4f,0xc8,0x69,0xfa,0x13,0xe5,0x87,
+  0x0a,0xd1,0x52,0xc6,0x4f,0x63,0xfe,0x24,0xb8,0x01,0x1e,0x21,0x28,0x15,0xb2,0xb1,
+  0x90,0xb8,0x91,0x0f,0x52,0x29,0xcb,0x9b,0xfc,0x94,0x5c,0x37,0x03,0x4d,0x54,0xbd,
+  0x5b,0x54,0xcb,0x4b,0xba,0x88,0x73,0xea,0xcf,0xa8,0xf2,0x28,0xec,0xc8,0x14,0x3d,
+  0xcc,0x17,0x71,0xed,0xe2,0xca,0x31,0x07,0x3f,0x43,0x81,0x1f,0xc1,0x41,0xfa,0x7c,
+  0xbe,0x3a,0xe4,0xf6,0xc1,0x2b,0xb4,0x66,0xcc,0xc9,0xcf,0x59,0x69,0xc4,0x7b,0x03,
+  0x2d,0xce,0xe2,0x58,0xe3,0x7a,0x3f,0xb1,0xa5,0x4f,0x88,0x19,0xf6,0x99,0x14,0xff,
+  0x8a,0xfc,0x92,0xde,0x98,0x2c,0x3e,0x25,0xcc,0x23,0x93,0x99,0xfa,0xf7,0x5b,0xfa,
+  0x83,0x23,0x26,0x3f,0xe5,0x8d,0x90,0xda,0xa1,0x84,0xa4,0x99,0x45,0x33,0x61,0x2f,
+  0x9d,0x9f,0x2f,0x5e,0x67,0xf3,0x93,0x74,0xfb,0x9e,0x4a,0xb6,0xc6,0x43,0x3c,0xbf,
+  0x02,0xf6,0xc9,0x0b,0x06,0xb1,0x2d,0x43,0x46,0xff,0x88,0x3f,0x5d,0x94,0x42,0x3f,
+  0x40,0x02,0x9e,0xc0,0x5e,0x57,0x38,0x8f,0x2c,0x38,0x65,0xf2,0xd3,0x85,0x36,0xaa,
+  0xd6,0xe5,0x3d,0xfd,0xc2,0x6a,0x6c,0xcb,0xff,0xc8,0x33,0x7f,0xcc,0x1c,0x6b,0xf4,
+  0x1f,0xce,0xd3,0x86,0x6c,0x49,0x2d,0xd3,0xc9,0xd0,0x30,0xf8,0x37,0x7d,0x95,0xb6,
+  0xfe,0x1c,0xf7,0xbf,0x03,0x57,0xa9,0xc5,0xf9,0xa2,0x45,0x48,0x82,0x46,0xb5,0x65,
+  0x5c,0x30,0xd9,0x93,0x12,0xef,0x49,0xa7,0xa8,0x36,0x8c,0xc8,0x17,0xae,0x5a,0x6d,
+  0x75,0xea,0xcf,0x7b,0xe0,0x2f,0x69,0x35,0x29,0xcc,0xf0,0xbb,0x50,0xbb,0xa1,0x70,
+  0xea,0xf3,0xe5,0xcd,0xb1,0xf6,0x03,0xed,0x8c,0xcc,0x93,0x25,0x9f,0x6f,0x13,0xdd,
+  0x9b,0x0c,0x0f,0xc7,0x6b,0x7c,0xe6,0xfe,0x0e,0x85,0x49,0xf5,0xf5,0x70,0x03,0x29,
+  0x5e,0x2f,0xf4,0x90,0xc9,0x64,0xe3,0x89,0xe1,0xbe,0x54,0xde,0xe4,0x67,0x59,0x5e,
+  0x3d,0xaf,0x2c,0x96,0xbd,0x1d,0xc2,0x9f,0xd1,0x4b,0x4d,0x28,0xf0,0x3e,0xb6,0xf9,
+  0x59,0xf6,0x31,0x19,0xce,0x2c,0x54,0x8a,0xbf,0x21,0x04,0x49,0x8e,0x36,0x28,0x9e,
+  0xee,0x25,0x16,0x3f,0x25,0xcd,0x3f,0x2a,0x92,0x68,0x10,0x68,0x9a,0x56,0x4b,0xa1,
+  0xad,0xfc,0x38,0x98,0xfa,0x73,0x13,0xf3,0x99,0x21,0xb0,0x31,0x56,0x45,0xdb,0x20,
+  0x3c,0x58,0x24,0xb7,0x7d,0x6c,0xf2,0xd3,0x35,0x2c,0xe3,0x7d,0x0a,0xda,0x75,0x15,
+  0x6c,0xc4,0x3e,0xcc,0xcc,0x38,0xf8,0x99,0x47,0xfc,0xed,0x21,0x38,0xb7,0x21,0x11,
+  0xfd,0x46,0x98,0x9d,0x8d,0x99,0xf3,0x97,0xe7,0xb2,0x3c,0x62,0x93,0x78,0xf3,0x95,
+  0x13,0xfc,0x45,0x1c,0xb5,0xf9,0x58,0x30,0x75,0x2b,0x3c,0x07,0x93,0xe9,0x68,0x13,
+  0xde,0x17,0x66,0xfc,0x1c,0x2a,0xcf,0x3a,0xf8,0x59,0x0d,0x5d,0x83,0x59,0x22,0x29,
+  0x4c,0x63,0x2a,0xd5,0x79,0x25,0xcb,0x7f,0x66,0xf1,0x13,0xe4,0x6e,0x48,0x52,0x49,
+  0x8e,0x31,0x30,0x84,0x11,0x1c,0xb1,0x71,0x63,0xc8,0x14,0x12,0xa5,0x1d,0x99,0x7b,
+  0x77,0xa5,0x4f,0xf1,0xbe,0xb6,0x0e,0x3a,0x3f,0x7c,0xed,0x5d,0xfc,0x17,0x46,0x5d,
+  0x3c,0x50,0x02,0x13,0xd9,0x48,0x16,0xf5,0x27,0x82,0x94,0xe2,0x86,0x3d,0x53,0x38,
+  0x51,0x60,0x98,0x52,0xf9,0x01,0x6e,0x42,0x6e,0x48,0x97,0x8c,0xe0,0x3a,0xfa,0x02,
+  0x85,0x68,0xf5,0x13,0x4b,0x46,0x0a,0x8c,0xb5,0x52,0x96,0x97,0x3e,0x80,0x28,0x9a,
+  0xc9,0x92,0x31,0xe6,0x17,0x03,0xfa,0xd3,0xbc,0xc9,0xcf,0xa6,0x0c,0x6c,0x41,0xb7,
+  0x3d,0xbd,0x06,0x11,0xbe,0x1e,0xe6,0x03,0x82,0x34,0x6a,0xf2,0x13,0x7e,0xc4,0x3f,
+  0x43,0x2b,0xf2,0x45,0xeb,0xf8,0xb7,0x7d,0x1b,0xd0,0x76,0xd1,0x91,0x0f,0x58,0xfc,
+  0x1c,0x06,0xe6,0x4e,0x15,0xf5,0xf1,0xc7,0xa1,0x3d,0x89,0x36,0xb1,0xab,0x6d,0xa6,
+  0xc9,0x4f,0x7f,0x2f,0x9c,0x7e,0x2f,0x4a,0xab,0xb3,0xc2,0x69,0x7a,0x84,0x34,0x50,
+  0xcf,0x73,0x7c,0x9d,0xa9,0x5b,0xd1,0x7f,0x9f,0x90,0x1a,0x94,0xdf,0xd7,0xf4,0x27,
+  0xf2,0x73,0x81,0x2a,0x9c,0x30,0xc6,0x4c,0x92,0x7b,0x50,0x5e,0xed,0x21,0x2d,0x4c,
+  0x47,0x1e,0xa6,0x0d,0x89,0xe1,0xcc,0x12,0xde,0xa8,0xa3,0xe2,0x1c,0xe8,0x24,0x41,
+  0xd4,0x98,0xc1,0x2a,0xa5,0xb3,0xa3,0x9a,0x39,0xe4,0x8a,0x31,0x2e,0x01,0x97,0x9f,
+  0x5f,0xcf,0x55,0x36,0xb9,0x47,0x62,0xdb,0xe0,0x51,0xe5,0x3e,0x82,0xce,0xa5,0xc5,
+  0x4f,0x71,0x06,0xac,0xa7,0x15,0xc4,0x9d,0xf0,0x6d,0xc3,0xfe,0xdd,0x4f,0xa4,0x04,
+  0xf2,0x53,0xbf,0xb3,0x7f,0x56,0x13,0xc9,0x25,0xf6,0xf8,0x4b,0xd6,0x0b,0x3b,0x48,
+  0x0e,0x16,0xf9,0x3d,0x4b,0x1d,0xfc,0x1c,0xd5,0xdd,0xe1,0x8c,0xb0,0x8a,0x37,0x0a,
+  0x67,0x4d,0x7e,0x96,0x9d,0x83,0x63,0x72,0x94,0x5c,0xd3,0x87,0x7b,0xea,0x31,0x34,
+  0x0e,0xcf,0x88,0x70,0xd6,0xe4,0xa0,0x94,0x6d,0x4b,0x2b,0x0a,0xef,0x05,0xa2,0xa2,
+  0xa1,0x86,0x21,0x44,0x51,0x0b,0x1b,0x7d,0x17,0x3b,0x7a,0x3b,0x15,0xd4,0x9f,0xbe,
+  0xb6,0xa1,0x6c,0x8a,0x0f,0xdf,0x52,0xe8,0xdb,0x79,0xc2,0x68,0x4b,0xa0,0xf9,0x29,
+  0x19,0xf5,0x27,0x29,0xca,0x04,0x47,0xf9,0x4e,0xa5,0x7a,0xcd,0xb5,0x19,0xdf,0x21,
+  0xa3,0xef,0x59,0x3f,0xee,0x2b,0xe0,0x63,0xfa,0x73,0xb4,0x0a,0xe7,0x2f,0x51,0xcc,
+  0xf8,0x69,0xcc,0x03,0x54,0xa5,0xcf,0xc3,0x4b,0x1a,0x3f,0x59,0x3b,0x63,0x9b,0x33,
+  0x95,0x6f,0x98,0x1a,0x53,0xde,0x81,0xfc,0x8c,0x42,0x39,0xbd,0x43,0xa9,0xca,0x71,
+  0x51,0x68,0xa1,0x42,0x91,0x39,0xd6,0x50,0x2b,0x6d,0x96,0x82,0x29,0x4f,0x76,0xc5,
+  0x0d,0xb0,0x31,0x5d,0x89,0xeb,0x8a,0x37,0x5c,0x43,0xe4,0xe7,0xea,0x99,0x5d,0xd0,
+  0xab,0xa6,0x23,0xfc,0x7c,0x74,0x32,0x70,0x63,0x92,0x8b,0x78,0x8b,0x9f,0x7e,0x1c,
+  0xc6,0x67,0xc7,0x0a,0xd7,0xf1,0xe5,0xc1,0x0d,0x74,0x8e,0x1a,0xff,0x0e,0x42,0x56,
+  0x1f,0xeb,0x50,0xa0,0x0e,0x8e,0xa7,0x6e,0x18,0x4d,0xff,0xb9,0x30,0x1b,0xf9,0x79,
+  0x5d,0xde,0xf3,0x9d,0xf6,0x22,0xd3,0x06,0xd1,0x7f,0x3f,0x0f,0x8b,0x8f,0x95,0xec,
+  0x45,0x5d,0xf7,0x09,0xa0,0x83,0x5c,0xba,0xc4,0xd4,0x9f,0x49,0xff,0x73,0xe4,0x28,
+  0x8d,0x8e,0x7a,0xf7,0x0b,0x9f,0x93,0x5f,0xd0,0x9a,0xd5,0x8f,0xbe,0x2e,0x98,0x76,
+  0xd6,0x0b,0x4f,0x43,0x7b,0x26,0x92,0x47,0x4d,0xf4,0x39,0x3a,0x43,0x15,0xe7,0xa4,
+  0xef,0xf0,0xf3,0xc0,0x9c,0xf9,0x6e,0x78,0x44,0x41,0xff,0x7d,0x0d,0xff,0x16,0xf9,
+  0x7b,0xae,0x72,0x40,0x3a,0x81,0xf3,0xae,0xd7,0x11,0x7f,0x16,0x98,0x74,0x46,0xcd,
+  0x37,0xcc,0xf6,0x80,0x81,0xb8,0x9f,0x37,0x63,0x6b,0xa8,0x3f,0xf9,0xa3,0xe8,0x6a,
+  0x15,0x8f,0xe3,0x5a,0xf9,0x00,0xfa,0xc0,0xf3,0x96,0xbb,0xda,0xd8,0x73,0xb2,0xf0,
+  0x21,0x9b,0xf7,0x81,0xe5,0x7d,0x95,0xa3,0x8c,0x9f,0x99,0xe5,0x7f,0x85,0x5a,0xdf,
+  0xd4,0x9f,0x5f,0xc4,0x8e,0x83,0xa6,0xeb,0x3e,0x83,0x57,0x51,0x17,0x78,0x46,0xf8,
+  0xfc,0x2a,0x93,0x9f,0x7f,0x22,0x77,0xf2,0x3b,0x99,0xdb,0x7e,0x48,0x46,0x47,0x3e,
+  0x23,0x65,0x82,0x49,0x5b,0x7f,0x86,0x1e,0x87,0x7b,0xd0,0x6d,0x9f,0x3b,0x86,0xce,
+  0xfa,0x3c,0xdd,0x77,0x32,0xfc,0xf7,0x66,0x8f,0xd2,0x1e,0x61,0xed,0x2c,0x18,0xdb,
+  0x8c,0x75,0x39,0x04,0xe9,0xa0,0xd1,0x3b,0x28,0x5f,0x0d,0x83,0x50,0x33,0xec,0xfd,
+  0x44,0xf8,0x30,0x71,0xb4,0xf5,0x85,0xe3,0x9e,0x13,0xed,0xf9,0xb9,0xa6,0xff,0x7e,
+  0x40,0xb9,0x94,0x6c,0x1c,0xf6,0x7e,0x24,0x7c,0x08,0x17,0x43,0x8b,0xd0,0x91,0x7f,
+  0xbc,0xd5,0xd2,0x9f,0xe3,0x28,0x4d,0x50,0x2f,0x4d,0x08,0x67,0xe8,0x64,0xaa,0x24,
+  0xbf,0xa5,0xaf,0xd2,0xe4,0xa7,0x2a,0xbf,0x07,0x1b,0x69,0x30,0x8f,0xee,0xf0,0x59,
+  0xf2,0x22,0xad,0xce,0xbb,0x6d,0xfd,0x19,0x77,0xa9,0x38,0x18,0xda,0x76,0x39,0x8c,
+  0x9a,0x28,0xcc,0x06,0xcf,0xd6,0x9f,0xd9,0x8a,0x1f,0x43,0x70,0x10,0xf5,0xe0,0x19,
+  0xd4,0x9f,0x0f,0x60,0x67,0x2c,0x7e,0xd2,0xb2,0x01,0x32,0xd1,0x14,0x45,0x3f,0x9c,
+  0x3b,0xc3,0xc6,0x4c,0x7d,0x15,0xf5,0xa7,0xc5,0xcf,0x9d,0xf0,0x36,0xbc,0xac,0x2e,
+  0x18,0xaf,0x3c,0xc3,0xf4,0xa7,0xba,0x05,0xf5,0xa7,0xc9,0x4f,0xb4,0xcf,0x53,0x64,
+  0xcf,0x08,0x6e,0x5f,0x67,0x18,0x3f,0x99,0x23,0x6f,0xf2,0x33,0xed,0x52,0x80,0x67,
+  0x6d,0xe9,0x43,0x3d,0xd1,0x05,0xd5,0xf9,0xf8,0xb8,0xc3,0x7f,0xbf,0x2d,0x96,0xd2,
+  0xda,0xe9,0x1b,0x96,0x50,0x7f,0xb2,0x98,0x8e,0xc9,0xcf,0x2c,0xa7,0x85,0x79,0xc6,
+  0x50,0x76,0xbe,0x8d,0x8e,0xcb,0xfc,0xd3,0xc0,0xe2,0x9f,0x7a,0x5d,0x5c,0x2a,0x49,
+  0x0f,0x8c,0x47,0xf2,0xe1,0xba,0xca,0xe3,0xe8,0x1f,0xd5,0x8f,0x79,0x6a,0x05,0x4b,
+  0x7f,0xfe,0xf5,0x01,0xf8,0x35,0x34,0x8e,0xe0,0x78,0x9e,0x21,0x97,0xe4,0x7a,0x16,
+  0x08,0x35,0xdb,0xd2,0xeb,0x3a,0xc3,0xb0,0x39,0xe2,0xad,0x15,0xaa,0xc9,0x51,0xa8,
+  0xcf,0x17,0xef,0x11,0x06,0x4d,0x7e,0x3e,0xb6,0x09,0x36,0xc8,0xf3,0x55,0x94,0x9d,
+  0xf5,0xf0,0x73,0xe6,0x0c,0x7d,0xbf,0xed,0x84,0x61,0x4b,0x14,0x7e,0x84,0xec,0x99,
+  0xcf,0x42,0xb0,0x0d,0xc0,0xf8,0x59,0xf8,0x10,0xea,0x58,0xfd,0x99,0x71,0xc6,0x4f,
+  0x5e,0x1b,0x62,0x0f,0x3c,0xce,0xaf,0x66,0x83,0xfe,0x86,0x15,0xff,0xec,0x45,0xbd,
+  0xd2,0x40,0xbd,0xd9,0xca,0x10,0x1c,0x41,0x3f,0x00,0x37,0x98,0xcf,0x2d,0x7e,0xa2,
+  0xec,0xe4,0xeb,0x05,0x5d,0x7f,0x22,0xcb,0x99,0xff,0x6e,0xf1,0x73,0x08,0xd0,0x6d,
+  0x67,0xe1,0x05,0x0d,0x5e,0xcd,0xcb,0x99,0xff,0xae,0xd7,0xa1,0xff,0x8e,0xb2,0x4c,
+  0x33,0xbd,0x51,0xd8,0xaf,0x6b,0xcc,0xbc,0x31,0x66,0xa8,0x3f,0xe1,0x51,0x3d,0xfe,
+  0x69,0xd5,0xd9,0xfe,0xbb,0x9f,0x3e,0x85,0x6e,0x7b,0x48,0xe6,0x87,0xe8,0x6e,0x60,
+  0xfa,0x73,0x4a,0xfc,0x73,0x58,0xf3,0x6f,0xed,0xb6,0x9c,0x9d,0xa6,0xdb,0x75,0x6e,
+  0xd6,0x28,0xca,0x4e,0xf4,0xe3,0xb0,0x2d,0xe4,0x3c,0xc7,0xe2,0x8a,0x16,0x3f,0x03,
+  0xdc,0xb9,0x2c,0x6e,0xa5,0xb7,0x20,0x36,0x47,0xe9,0x79,0xf1,0x4f,0x10,0x5e,0xed,
+  0xd5,0xc6,0x78,0xae,0x93,0xdf,0x85,0xfe,0x44,0xb5,0x8c,0xd8,0xcc,0x93,0x7e,0xb1,
+  0x1a,0xdc,0x1d,0xc2,0x32,0x53,0x5f,0xbb,0x86,0x80,0x35,0x41,0x92,0x7d,0x7a,0x01,
+  0xdb,0xb9,0xc2,0x18,0x17,0xe6,0xbf,0xb3,0xa6,0x3b,0xfb,0xb0,0xcc,0xe2,0xa7,0x1e,
+  0xda,0x34,0xc6,0xa5,0x9a,0xe0,0xb8,0xb4,0x5a,0xfc,0xec,0x31,0x39,0x6f,0x01,0xff,
+  0x0d,0xc3,0x3e,0x99,0xff,0x9e,0xc3,0x77,0x1b,0x63,0xfd,0x03,0x58,0x6e,0xf3,0x33,
+  0x24,0xd6,0xf2,0x1b,0x61,0x1e,0xbd,0x35,0x8b,0xf2,0xf1,0x05,0xa8,0x4b,0xb9,0xb3,
+  0xe8,0x37,0xea,0x63,0x16,0x72,0xb5,0xc8,0xed,0xbc,0xc1,0x1e,0x5c,0x47,0x79,0x5c,
+  0x2b,0x36,0x3f,0x67,0xa3,0x29,0x5c,0xcb,0xec,0xe5,0x2d,0xd8,0x07,0xf3,0x47,0xf0,
+  0x97,0x2c,0x7e,0x4a,0xcc,0x6d,0x5f,0x98,0xf7,0x6a,0xf1,0x4f,0xb4,0x17,0x2c,0x14,
+  0x19,0xfb,0xbb,0x54,0xbc,0x49,0x9c,0xd4,0xc2,0x89,0x02,0x5b,0x63,0x75,0xac,0x30,
+  0x68,0xe8,0x4f,0xe2,0x3a,0x0b,0xaf,0xd2,0x9b,0xf2,0x9e,0x1b,0x84,0x06,0x98,0xa4,
+  0x8d,0xa3,0xde,0xf3,0x16,0x3f,0x9f,0x2d,0xdd,0x92,0xfe,0x39,0x3e,0x2a,0x54,0x57,
+  0x34,0x5b,0xdd,0x47,0xe7,0x8f,0xa1,0x31,0xce,0x33,0xfa,0x00,0x64,0x13,0x45,0xff,
+  0xfd,0x35,0x94,0x9d,0xe5,0xb0,0x4f,0x9c,0xcf,0x1a,0x6c,0xf2,0x33,0x29,0x0f,0xc3,
+  0xe3,0x19,0x0f,0x33,0x4b,0x0f,0xf6,0x61,0x35,0xd6,0x29,0x36,0x3f,0xb3,0x70,0x14,
+  0x25,0xa2,0x16,0x77,0xd3,0x1b,0x55,0x38,0xcf,0xb2,0xf9,0x31,0x98,0xe4,0xea,0xcd,
+  0x76,0x36,0xa8,0x08,0xd2,0x33,0x26,0x3f,0x13,0xe3,0x89,0x7f,0x41,0xee,0x7a,0xc6,
+  0x85,0x0b,0xd2,0x25,0xb6,0xd8,0x50,0x7f,0x36,0x9b,0xfe,0xd1,0x37,0xa4,0x2e,0xb4,
+  0x5d,0xc6,0x17,0x11,0xfd,0x5b,0xc6,0x97,0x7c,0xd2,0xe4,0xe7,0x2a,0xf4,0x81,0x82,
+  0x5a,0x1d,0x98,0x75,0x26,0x3f,0x49,0xb1,0xd4,0x1e,0xef,0x39,0x24,0x45,0xa3,0xc3,
+  0x74,0xaf,0x12,0x3e,0xe5,0x5e,0x1c,0x8b,0x19,0x76,0x0d,0xd2,0x7d,0xd9,0x0f,0x56,
+  0x2e,0x3e,0x15,0xde,0x8d,0x8c,0x9c,0x5c,0x83,0x0b,0xf8,0x79,0x14,0x1d,0x26,0x3f,
+  0x2f,0xd0,0x49,0xe5,0x21,0xd5,0xfb,0xd9,0x92,0x0f,0xfb,0x2e,0x25,0x1b,0x5a,0xbc,
+  0x7b,0x1d,0xfe,0xfb,0x05,0xfa,0xaa,0x78,0xfd,0x6b,0x9e,0x8f,0x84,0xb0,0xfc,0x2a,
+  0xd4,0xad,0xf2,0xec,0xb6,0xfc,0x77,0x35,0x70,0x91,0x6c,0x39,0x59,0xfd,0x96,0xf4,
+  0xc3,0xd8,0x4d,0xe2,0xdf,0x93,0x70,0x2e,0xfd,0x19,0x9f,0x2f,0xd0,0x9f,0x99,0x73,
+  0x0d,0x7b,0x9e,0x84,0x2a,0xb5,0x55,0x29,0xd9,0x44,0xda,0x65,0x5c,0x6c,0x35,0xc1,
+  0xf7,0xb8,0xa4,0xf1,0xcc,0x5d,0xdc,0xdf,0xf2,0xd5,0xcc,0x9f,0xde,0x05,0xbf,0x87,
+  0x83,0x17,0xea,0x8b,0x8d,0x1b,0x6c,0x85,0xd2,0x33,0xf0,0x81,0xb8,0x78,0xbc,0xa5,
+  0x4f,0xd8,0x25,0xdf,0x0a,0xb5,0x79,0x8d,0x83,0x26,0x3f,0x0f,0xf0,0xef,0xb0,0x21,
+  0x1e,0x11,0x1e,0x66,0xfc,0x1c,0xdd,0x62,0xfb,0xef,0xcd,0xf2,0x73,0xe9,0xa3,0x4a,
+  0xfd,0x80,0x47,0x11,0xc2,0x71,0xe4,0xe7,0x80,0x83,0x9f,0xa7,0x5c,0x37,0xc1,0x02,
+  0x52,0x32,0x20,0xf5,0x15,0x3f,0x0c,0x2c,0x10,0x5a,0xec,0xf4,0xdf,0x57,0xc3,0xe3,
+  0x28,0x4d,0x5a,0x23,0xfc,0x6a,0x2d,0x10,0x9a,0x8b,0xc0,0xb8,0xe1,0x8b,0x8e,0xcb,
+  0x7f,0xe8,0xda,0xf7,0xd8,0xfc,0xa4,0x34,0x73,0x6e,0x09,0x7d,0xa6,0x63,0xfe,0x58,
+  0xe1,0x7f,0x8b,0xe5,0x8c,0xb8,0x62,0x5c,0xba,0x8d,0x3e,0x9e,0xad,0xef,0x6d,0x51,
+  0xf8,0xdb,0xe0,0x17,0xd9,0xfa,0xbc,0xa7,0xae,0xf2,0x84,0x31,0x9e,0xa4,0x6c,0xd3,
+  0xf8,0x07,0x81,0xd9,0x43,0xde,0x3d,0xc2,0x05,0xf2,0xce,0xcc,0x05,0xaa,0xf7,0x53,
+  0x61,0xc4,0x68,0xa7,0x54,0x76,0x86,0xbe,0x29,0x21,0x27,0xfa,0x84,0xea,0x34,0x0a,
+  0x51,0x75,0xd3,0xf3,0x96,0xfe,0xcc,0x95,0x6e,0x57,0xdb,0xab,0x2a,0x08,0xcb,0x1f,
+  0xed,0xdc,0x10,0xd1,0xf2,0x47,0xbe,0x19,0xfa,0x7d,0x0a,0x6c,0x86,0x67,0xe8,0xca,
+  0xac,0x14,0xe2,0x67,0xc7,0xf6,0xd1,0x39,0x79,0xe9,0x06,0x3e,0x6e,0xe9,0xcf,0x33,
+  0xd8,0xf4,0x24,0xf3,0xdf,0x3d,0xdc,0xe3,0x30,0x97,0x89,0x95,0xef,0x18,0x9c,0x18,
+  0x73,0xa1,0xfe,0xc4,0xed,0x39,0x9d,0xf7,0x86,0xf8,0x17,0x60,0x71,0x67,0x28,0x2b,
+  0x3c,0x24,0x9a,0xf1,0x02,0x74,0x95,0x89,0x86,0xaa,0x77,0x0b,0xf2,0xa4,0x0e,0x96,
+  0x83,0xb0,0xd5,0x64,0x1d,0xf4,0x48,0x87,0xb3,0x8b,0x18,0x27,0xaa,0xe0,0xfc,0xce,
+  0x28,0x16,0x38,0xde,0xc1,0xcf,0x94,0x12,0x44,0xd9,0x59,0x54,0x45,0xf7,0xe7,0xe7,
+  0xa1,0x50,0x8b,0x99,0xfe,0x7b,0x2d,0xf2,0x93,0xf9,0xef,0x85,0x32,0xfa,0x16,0xcf,
+  0xc2,0x3d,0x08,0xa1,0x82,0xcd,0xe6,0x9a,0xf6,0x8b,0x6d,0x29,0x85,0xf9,0xef,0xbc,
+  0x98,0xda,0xad,0x84,0x48,0x91,0xaf,0x68,0xa3,0x4b,0x9f,0xf6,0xfe,0xe2,0x95,0xcd,
+  0x39,0x6e,0x91,0xff,0x3f,0xaf,0x9f,0x5e,0x41,0xf2,0x89,0xa8,0xdf,0xb3,0x5e,0x78,
+  0xce,0x8c,0x7f,0x96,0x8d,0x26,0xd0,0x6d,0x6f,0xf6,0x7e,0x74,0xc7,0x50,0xfc,0xbc,
+  0xbc,0x80,0xf1,0xf3,0x7b,0x46,0x1f,0xba,0xb9,0x4f,0xf9,0x63,0xfc,0xe2,0xef,0x78,
+  0xb6,0xb5,0x2f,0x92,0x8f,0x91,0x1f,0x24,0x4a,0x32,0xed,0x56,0xfc,0x33,0x90,0x85,
+  0x53,0x80,0xfe,0x7b,0x07,0x9f,0x95,0xd2,0x6b,0xaa,0xa5,0xff,0x04,0xfc,0xf1,0x02,
+  0x63,0x7f,0x17,0xd7,0xf3,0x29,0xb2,0x8a,0x20,0xcb,0xd7,0xef,0x4c,0x21,0x3f,0x6f,
+  0x91,0xb7,0x9e,0x30,0xf9,0x29,0x76,0xc0,0x5f,0x42,0x70,0x65,0xbc,0x3b,0xb6,0x0b,
+  0xf4,0x18,0x44,0xcc,0xd4,0xad,0xd9,0xb2,0x51,0xe9,0x30,0xbf,0x98,0x8d,0x0b,0x0e,
+  0x10,0xd6,0xcd,0xce,0x58,0xf1,0xcf,0x38,0xd7,0xe3,0x63,0xd8,0xdc,0x92,0x11,0x86,
+  0x0c,0x7e,0x4e,0x33,0xf7,0x3f,0x09,0xfd,0xf7,0x53,0x4a,0x04,0x3c,0x1d,0xd3,0x15,
+  0x65,0x42,0x89,0x72,0x38,0xe8,0xe6,0x78,0x86,0x5c,0xb5,0xe2,0x23,0x83,0x41,0x1a,
+  0xca,0x42,0x2d,0xca,0xd7,0xc5,0x14,0xf9,0x59,0x64,0xc5,0x3f,0x97,0xc1,0x63,0x54,
+  0xdb,0xfb,0x91,0x3d,0x44,0x03,0x69,0x91,0xb1,0xde,0x69,0x69,0xf9,0xaa,0x14,0x8b,
+  0x97,0x47,0x19,0xb3,0xe8,0x9c,0xa1,0xae,0xff,0xc6,0x2b,0x7e,0xfd,0xbe,0xb4,0x54,
+  0x00,0x27,0x69,0xcd,0x84,0xe7,0x07,0x5d,0x33,0xe1,0x12,0x5d,0x38,0xe6,0x7d,0x48,
+  0x08,0x5a,0xf1,0xcf,0x5d,0xf0,0x3a,0xd4,0x1d,0xf1,0xf6,0x4d,0x1b,0x93,0x27,0xc5,
+  0x86,0x41,0xef,0x4f,0x71,0x0f,0xd7,0xdb,0x49,0xc4,0x97,0xc8,0xa5,0xcc,0x35,0x79,
+  0xcf,0xf9,0x25,0x0d,0x64,0x92,0x09,0xd1,0x7f,0x10,0xcc,0x38,0x66,0x6f,0x60,0x33,
+  0xdd,0x4b,0xc3,0x79,0xd4,0x13,0xe5,0xe2,0x5e,0x3d,0x9f,0x7a,0xda,0xd0,0xb4,0x00,
+  0xdb,0xc9,0x3e,0x08,0x9f,0x92,0xbe,0x8f,0x75,0x3f,0x55,0xee,0x1b,0x46,0xa8,0x9b,
+  0xf7,0xb5,0x8a,0xbb,0x34,0x09,0xd5,0x7b,0x03,0x1f,0x86,0x3d,0x08,0x05,0x64,0x96,
+  0xb9,0xf7,0xf7,0x96,0xf5,0xc9,0xe7,0x51,0x0a,0x21,0x07,0x91,0x9f,0xdc,0xf5,0x03,
+  0xc8,0x41,0xd3,0x7f,0xcf,0xc0,0x19,0x38,0x2f,0x36,0x0c,0x78,0x23,0xd3,0x7f,0x09,
+  0x93,0x62,0x5d,0x5e,0xe8,0xe3,0xcc,0xf8,0x67,0x56,0x1e,0x97,0x8e,0x75,0xdc,0xc4,
+  0xb8,0x5b,0x8f,0x9d,0x69,0x54,0x97,0x8f,0x4f,0x97,0x0c,0x7e,0xee,0x10,0x57,0xf3,
+  0x9d,0x6a,0xb5,0x1a,0xe8,0xe3,0xe7,0xca,0x9d,0x54,0xcb,0x1f,0x85,0x2c,0xfd,0x19,
+  0x52,0xba,0x92,0xf3,0xd8,0x78,0x56,0xc3,0x13,0x72,0xb5,0x7a,0x6b,0x1f,0x6f,0xc5,
+  0x3f,0xfd,0x9e,0x60,0x3b,0x73,0xdb,0xa3,0x2c,0x96,0xa7,0x84,0x5f,0x73,0x2f,0x7a,
+  0x84,0x37,0xf4,0x12,0x2d,0x6e,0x1d,0x39,0x4c,0x6e,0x1c,0x91,0x3e,0xee,0x9a,0x4f,
+  0x4e,0x25,0x1b,0x5f,0xf7,0x7e,0xe6,0x06,0x41,0x7f,0xe6,0xce,0x32,0x6c,0x27,0x41,
+  0xa4,0x32,0x1f,0xe8,0xc2,0x1f,0xb1,0x7c,0xf1,0xf4,0x31,0x97,0xa5,0x3f,0xc9,0x30,
+  0xd4,0xe8,0x71,0x9b,0x61,0xf4,0x99,0x71,0xa3,0xb7,0xf3,0x47,0x79,0x5f,0x9a,0xa2,
+  0x1f,0x9e,0xe6,0x83,0x80,0xfe,0xbb,0x22,0x75,0xfb,0x22,0x96,0xff,0x3e,0x8c,0xfb,
+  0x47,0x96,0xc5,0x3c,0x98,0x10,0x0f,0x43,0x21,0x2d,0xda,0x63,0xf2,0x13,0xe7,0x2f,
+  0xed,0x0a,0x82,0x94,0xc2,0xa6,0xf7,0x42,0x35,0x14,0xa6,0xf8,0x7e,0xe3,0x7d,0x50,
+  0x86,0xfe,0xbb,0x18,0x4d,0x86,0xbb,0xdd,0x73,0xf9,0x5f,0xd1,0x06,0x75,0x7e,0xb7,
+  0x90,0xb6,0xfd,0x77,0xdc,0x86,0x1a,0x57,0x79,0xbb,0x85,0xcf,0xc8,0x3f,0x67,0x1a,
+  0xd4,0x92,0x6e,0xe1,0x61,0x4b,0x7f,0x6e,0x92,0xdd,0x10,0x59,0xea,0x91,0xdd,0x22,
+  0x3a,0x9e,0x91,0x21,0x0f,0x75,0xfb,0x2d,0xff,0x9d,0xa5,0x55,0x98,0x26,0x2a,0x98,
+  0xcb,0x12,0x03,0xaa,0x44,0xf9,0xa8,0xa5,0x3f,0x63,0x2a,0xad,0x52,0xb2,0xec,0x84,
+  0x80,0xd8,0x86,0x9c,0x92,0xfa,0x8c,0x1e,0xe0,0xbe,0xc9,0x45,0x63,0x1d,0xb4,0x22,
+  0x8b,0xae,0x72,0x91,0xd2,0x46,0x2b,0x14,0xe9,0x21,0x14,0x86,0xfa,0x15,0x97,0x3c,
+  0xa0,0xd2,0xbe,0x5e,0xcf,0x3c,0xdc,0xf2,0x07,0xa1,0x4f,0x09,0xcf,0x13,0x66,0x9a,
+  0xfe,0xfb,0xac,0x03,0x30,0x51,0x7a,0x53,0xda,0xfb,0xae,0x30,0x41,0x3e,0x97,0x11,
+  0x50,0xbf,0x12,0x4c,0xff,0xbd,0xd7,0x95,0x97,0x10,0xef,0x79,0x94,0xab,0xab,0x01,
+  0x1d,0x25,0xb6,0xb9,0x1e,0xb1,0xf2,0x47,0x7d,0x80,0x7b,0xf8,0x80,0xb4,0x26,0x58,
+  0x8e,0x85,0x0a,0xb5,0x6b,0x0d,0x72,0xde,0x18,0x33,0xd4,0x9f,0xcf,0xd0,0xaa,0x77,
+  0xd1,0x76,0x4b,0xd0,0x59,0x47,0xdb,0x6d,0xb5,0xec,0x13,0xf5,0xa7,0xaf,0x7d,0x1c,
+  0xdd,0xf6,0x48,0xd0,0x03,0xed,0x44,0x19,0x75,0x2b,0x41,0x3b,0xff,0x8e,0xfc,0x24,
+  0x8b,0x33,0xe1,0x1e,0xa1,0x10,0x85,0x68,0x5f,0xc6,0x9b,0x9f,0xa2,0x3f,0xc7,0xa1,
+  0x81,0xf7,0xd2,0xf6,0xac,0x82,0x8e,0x3c,0xef,0x25,0x53,0xf4,0xe7,0x61,0xca,0xf2,
+  0x32,0x30,0xca,0x1f,0xd6,0x05,0x97,0xcd,0xcf,0xfb,0x34,0xff,0xb6,0x8b,0xe9,0x33,
+  0xc6,0x97,0x62,0xa7,0xff,0xbe,0xa8,0xf7,0x51,0xb9,0x32,0xee,0x1e,0x29,0x38,0x47,
+  0xff,0x0e,0x16,0xc4,0xa7,0xf8,0xef,0xfe,0xb6,0xf5,0x4a,0x45,0xdc,0xbd,0x82,0x3f,
+  0x89,0x42,0x74,0x7e,0x9c,0x5b,0x61,0xc7,0x3f,0x8b,0x57,0x92,0x34,0x2e,0x2e,0xa6,
+  0xcf,0xc4,0x31,0xd4,0x3e,0x2d,0x2a,0x57,0x6d,0xe8,0xcf,0xee,0x62,0x4d,0x7f,0x36,
+  0x23,0x36,0x47,0xc9,0xeb,0xa5,0x5a,0xc1,0xd4,0x9f,0xdd,0xae,0x4f,0xb3,0x07,0x43,
+  0x8d,0xb7,0xe0,0x9e,0x7a,0x12,0x7e,0xc5,0x82,0x3b,0x19,0xa1,0xda,0xca,0xbf,0x7f,
+  0x40,0xd3,0xa4,0x44,0x76,0xa3,0xfe,0x44,0xff,0x1d,0xf5,0x27,0xc5,0xb6,0x58,0xfa,
+  0xb3,0xad,0x9d,0xc9,0x4e,0x3f,0xff,0x14,0xec,0x20,0xe1,0x84,0xdb,0x5f,0xb0,0xd5,
+  0xd2,0x9f,0x1d,0x19,0xec,0x56,0x93,0xdb,0xec,0x9f,0x7b,0x1b,0x14,0x98,0xfa,0xb3,
+  0xec,0x97,0x05,0x9d,0xba,0xb4,0xec,0x01,0x2d,0xc1,0x96,0x71,0xf7,0x1a,0xf7,0x69,
+  0xf9,0x23,0xe9,0x72,0xfd,0x69,0xd4,0xc9,0x3b,0x58,0xdc,0x1b,0xfb,0xe7,0x56,0xd0,
+  0x91,0xc7,0x8e,0x82,0x9d,0x3f,0x72,0xd5,0xb2,0xfc,0x51,0x16,0xb1,0x59,0x0b,0x1b,
+  0xb1,0x70,0x5b,0x9e,0x37,0xfd,0x46,0xd4,0x9f,0xcc,0xe5,0xcd,0xbb,0x23,0xb1,0x6a,
+  0xa2,0x15,0x14,0xac,0x33,0xe2,0x6e,0x5c,0x00,0xdd,0xa2,0x8a,0x41,0x77,0x6d,0x41,
+  0x39,0xf3,0xa7,0x07,0x8b,0x92,0x56,0x7e,0xb3,0x57,0x72,0xa3,0xbf,0xb2,0xfb,0x5d,
+  0x94,0x9d,0x86,0x10,0x6d,0x15,0x8e,0x98,0xfa,0x73,0xd6,0x73,0xac,0x79,0x46,0xfe,
+  0x9d,0x15,0xb2,0x0e,0xfd,0xf9,0xb6,0x7c,0x9c,0xd6,0xe4,0xd1,0xdf,0xfc,0x22,0xf6,
+  0x2a,0x6d,0xcc,0x7b,0xc6,0x84,0x53,0x26,0xeb,0x4a,0xff,0x8a,0xfe,0x23,0x28,0x67,
+  0xd2,0xe8,0x8f,0xa1,0x7d,0xa2,0xc1,0x29,0xfc,0x69,0xa3,0x4e,0x86,0x6e,0x4a,0xa1,
+  0x22,0x77,0x17,0xd3,0xc2,0x5a,0xdd,0x2a,0x2b,0xfe,0x99,0xc4,0xfd,0xfd,0x31,0xde,
+  0xf0,0x45,0xdb,0xf5,0xfb,0x2c,0x7f,0xac,0xec,0x00,0x8b,0xd7,0xa9,0x61,0xd3,0x6f,
+  0x44,0x43,0x1d,0x33,0x6c,0x3e,0xc3,0xf2,0xef,0x22,0xea,0xcf,0x88,0xa1,0x3f,0xbd,
+  0xbd,0x35,0xbf,0x32,0x63,0xf0,0xf2,0xe7,0x2b,0x5e,0x81,0xe8,0x18,0x72,0xb7,0x9a,
+  0xfe,0x06,0x16,0xe6,0x3c,0x49,0x41,0x31,0xf8,0xb9,0x5e,0x7c,0x00,0xba,0xf8,0x9d,
+  0xf9,0x7e,0xc6,0xc8,0x17,0x21,0x98,0x0f,0x65,0x79,0xc5,0xd2,0x9f,0x61,0xd8,0x98,
+  0xd6,0xf4,0x27,0xcb,0x5d,0x63,0x01,0xeb,0xac,0xfc,0x3b,0x40,0x1b,0x6e,0x51,0x52,
+  0xb4,0xc8,0x43,0xf7,0x42,0x76,0x44,0xaa,0xb0,0xec,0x13,0xf9,0x49,0x73,0x24,0xfa,
+  0x96,0xf4,0x93,0xf6,0x30,0x9d,0x84,0xe8,0x88,0xa7,0x47,0x50,0xe6,0x9a,0xf9,0xa3,
+  0x0f,0x8b,0x2e,0x28,0x68,0x96,0x7b,0x84,0xd1,0x04,0xea,0xba,0xb8,0x37,0x3f,0x7d,
+  0x6c,0x9a,0xc9,0xcf,0x51,0x72,0x94,0xe5,0x6c,0x10,0x55,0xf4,0x22,0xa9,0x19,0x29,
+  0x9e,0xb0,0xfd,0x77,0x18,0xf5,0x74,0xd1,0x05,0x27,0xdd,0xdd,0x28,0xef,0xfe,0x01,
+  0x9e,0x3c,0x89,0x8e,0xfc,0xb8,0xd1,0xbf,0x9c,0x2b,0x9d,0x7e,0x52,0x44,0x9f,0x52,
+  0xe6,0x5b,0x60,0x77,0x85,0x92,0xc3,0xc5,0x6d,0xc5,0x3f,0xcb,0xf2,0x81,0xbf,0x4d,
+  0x6b,0xe8,0x0f,0xa3,0x7f,0x94,0x54,0x9d,0xe7,0x97,0x5c,0xa3,0xf0,0x01,0xbe,0x6f,
+  0x4b,0xb7,0xf0,0x00,0x4c,0x66,0x98,0x23,0x8f,0x0b,0x4a,0xbf,0x6f,0xbc,0xb4,0x27,
+  0xf3,0x0e,0xcb,0xbf,0x9f,0x6c,0xbf,0x08,0xbf,0x61,0x05,0x5b,0x7f,0x26,0xe4,0x4d,
+  0x70,0xf4,0x16,0x6c,0x67,0xa6,0x92,0xc5,0xa1,0x19,0x97,0xda,0x47,0x8c,0xbd,0x23,
+  0xe7,0xaa,0x92,0x0b,0x8b,0x16,0xa8,0xee,0x45,0x7c,0x58,0x7a,0x11,0x2a,0x55,0xf7,
+  0x01,0xf4,0xd1,0x75,0x3b,0x53,0x45,0x91,0x67,0x53,0x8a,0xeb,0xa8,0x19,0xf6,0x72,
+  0xb8,0x37,0xd6,0xf3,0x9f,0x1b,0xe3,0x39,0x0e,0x33,0xd4,0x0d,0x99,0xfb,0xf3,0xee,
+  0xbb,0xb4,0x9c,0xcd,0x1c,0xb6,0xdf,0x5e,0x30,0xf3,0x47,0x81,0x22,0xd7,0x60,0x5f,
+  0xfd,0x98,0x37,0x20,0x2c,0xa3,0x93,0x74,0xd1,0x98,0xf7,0xc6,0xf6,0x13,0x86,0xd8,
+  0x27,0xe5,0xbd,0xf0,0x39,0xcb,0x1b,0xca,0xc2,0x39,0x32,0x29,0xdf,0x78,0xd2,0x3d,
+  0x5e,0x69,0xe7,0x8f,0x46,0x35,0x6c,0x22,0x8e,0xce,0xc2,0x51,0x05,0x0d,0xc0,0x3e,
+  0xbf,0x94,0xe3,0xb6,0xf1,0x1b,0x40,0xf9,0x9f,0xa8,0x3f,0xdf,0x92,0xda,0xa5,0xeb,
+  0x47,0x50,0x7f,0x7e,0x5c,0xa5,0xdf,0xc7,0xf4,0xe7,0x73,0x74,0xc7,0x58,0xe1,0x5d,
+  0x05,0xc7,0xe1,0x87,0x6d,0x15,0x63,0x45,0xeb,0x58,0x7e,0x4e,0xab,0x6b,0xf5,0x1f,
+  0x93,0x76,0xca,0x8a,0x8a,0x9a,0x6f,0x58,0x7e,0x1c,0xf7,0xf7,0x22,0xc7,0xf9,0x25,
+  0xb1,0x1f,0xce,0xd2,0x28,0x2d,0x54,0x84,0xd3,0xca,0x1b,0x4a,0x94,0x6e,0xce,0x0a,
+  0x2f,0x58,0xf9,0x23,0xca,0x77,0xa3,0xfe,0x2c,0xa1,0x95,0x79,0x69,0x0c,0x7d,0xe6,
+  0x42,0x67,0xfe,0xbd,0x47,0x39,0xcc,0xd7,0x13,0xcf,0xd6,0xdf,0xab,0x82,0x8f,0x60,
+  0x71,0xd3,0x72,0x67,0xfe,0xbd,0x8a,0xef,0x4c,0x56,0xeb,0x67,0x94,0xf6,0x23,0x27,
+  0xdc,0xdb,0x84,0xac,0x9d,0x3f,0x92,0x3a,0x39,0xbd,0x4e,0xdc,0x0f,0x3b,0x51,0xbb,
+  0xb5,0x39,0xf2,0xef,0x14,0xa5,0x5e,0xbc,0x56,0xd6,0xf4,0xe7,0xae,0x6f,0xb8,0x1d,
+  0xf9,0xf7,0x59,0x2b,0x49,0x0e,0xaa,0xfd,0x01,0x2a,0x28,0x30,0x81,0xfa,0x93,0xf9,
+  0xef,0xc6,0xfe,0xde,0x7f,0xf5,0xb9,0xe6,0x4f,0xa1,0xa1,0xf9,0x9a,0x11,0x1c,0xcf,
+  0x8b,0x0c,0xa4,0x19,0x61,0xcf,0x34,0xbd,0x0f,0xfd,0xa5,0xa3,0xe1,0x63,0x0c,0xef,
+  0x09,0x77,0x15,0x1c,0x56,0xa2,0xb7,0x6c,0x19,0xb1,0xce,0x2f,0x05,0x20,0x2f,0xa6,
+  0x21,0x2c,0x01,0xe5,0xb3,0x24,0x1d,0x8a,0x4a,0xc8,0xcf,0xb7,0x4d,0xff,0x81,0x74,
+  0x28,0xd8,0x96,0x15,0x01,0x79,0xb6,0x08,0x9d,0x51,0x2d,0x7f,0x74,0xc2,0xce,0x1f,
+  0xf9,0x3a,0x95,0x6a,0x12,0x7f,0x8c,0xef,0xe1,0xd9,0x46,0xe1,0xee,0x8b,0xd9,0xf9,
+  0xa3,0x67,0x82,0x87,0xb3,0xd5,0xc4,0x13,0x40,0x5d,0xce,0x12,0xf1,0x5e,0x5b,0x7f,
+  0xb6,0xc2,0x7a,0x0d,0x9b,0x0b,0xba,0xdd,0x4c,0x7f,0xd6,0x69,0xfc,0x34,0xf3,0x47,
+  0x90,0xd5,0xe2,0x9f,0xa8,0x43,0x92,0x66,0xc1,0xe4,0xa7,0x24,0x86,0x60,0x73,0x53,
+  0x90,0x4a,0x1f,0xf2,0x21,0x74,0xe4,0x1b,0x68,0x7a,0xd4,0x91,0x3f,0x6a,0x81,0x54,
+  0xcb,0xdc,0x81,0xda,0x48,0x11,0x03,0x29,0x73,0x32,0xda,0xec,0xfc,0x51,0xb9,0xba,
+  0xa5,0xa3,0x22,0x77,0x75,0xbe,0xad,0x85,0x6b,0x97,0xc3,0x63,0x81,0x84,0x23,0x7f,
+  0xd4,0x40,0x0e,0xd2,0x9f,0x4c,0x78,0xee,0x12,0xfe,0x10,0x5e,0xa1,0xbb,0xdf,0x63,
+  0xf9,0xa3,0xa0,0x3e,0xd6,0xd2,0xac,0x5d,0xb4,0x06,0x1a,0x46,0x4a,0x28,0xe3,0x67,
+  0xbc,0x61,0x68,0x01,0xce,0xed,0x23,0x7a,0x3b,0x93,0xa8,0x3f,0x87,0x68,0xcd,0xb9,
+  0xe2,0x9c,0xf0,0x40,0xec,0xd5,0x4c,0x34,0xef,0xe9,0xaf,0x1c,0xa1,0x46,0xfe,0x08,
+  0x7e,0xd4,0xbc,0xe1,0xbd,0xeb,0x47,0xa5,0xa6,0xa2,0x12,0xb6,0xe5,0xe6,0xa5,0xaf,
+  0xf1,0xa7,0x3b,0xf4,0xfb,0x7c,0xb0,0x09,0x9e,0xaa,0xad,0xc8,0x49,0x6a,0x11,0xdb,
+  0xfb,0x71,0xbd,0x3f,0x68,0xc5,0x9a,0x89,0x7f,0xb3,0xd8,0x4e,0xab,0x54,0x09,0x0a,
+  0x3c,0x7a,0x0e,0x4c,0x76,0xe4,0x8f,0x5e,0x82,0x81,0xb6,0x1a,0x35,0xdc,0xad,0xf9,
+  0xb7,0x7b,0x55,0x8f,0x8c,0xfa,0x53,0xef,0x43,0x9f,0x7c,0x86,0x30,0xce,0x97,0xa4,
+  0xb1,0x9d,0x9f,0x60,0xe1,0x9a,0x6d,0xb8,0x31,0xe9,0xf7,0x3d,0x96,0xb8,0x20,0xfd,
+  0x33,0xd4,0xb0,0xe3,0x16,0x1e,0x16,0xff,0x54,0x97,0x8f,0x08,0xe6,0xd9,0x9f,0x14,
+  0xfa,0x94,0x9d,0x6d,0xf3,0xd4,0xb4,0xc4,0x87,0xf9,0x2e,0xbc,0xcf,0xbd,0x9d,0x37,
+  0xed,0x93,0xe2,0x78,0x06,0x3a,0xb0,0x09,0xe9,0xa2,0x5d,0xd0,0xc5,0x0e,0x35,0x76,
+  0xdb,0xfa,0x13,0x3c,0x2a,0x55,0x42,0x6a,0x20,0xc5,0x3f,0x9a,0x6e,0x97,0xc2,0x39,
+  0xc1,0x17,0x6b,0x33,0xf9,0x19,0x78,0xb8,0xef,0x54,0xa4,0x66,0xd8,0x43,0x2b,0xff,
+  0x8e,0xbe,0x82,0x05,0xdc,0xc3,0x15,0xc3,0x3f,0xda,0x79,0xf5,0x19,0x3a,0x11,0x69,
+  0x18,0xf6,0xc6,0x84,0x87,0x13,0x93,0xca,0x82,0x61,0xef,0x21,0xdb,0x7f,0xe7,0x2e,
+  0xc0,0x3b,0x50,0x93,0xf7,0xe2,0x7e,0x84,0x7e,0x40,0x23,0x2b,0xd8,0xf9,0xf7,0x2f,
+  0xc4,0x4e,0x35,0x98,0x77,0xf7,0xf3,0x67,0x41,0x8b,0x7f,0xf6,0x3b,0xf2,0x47,0xc3,
+  0xb0,0x15,0x59,0x5e,0xe4,0x88,0x7f,0xda,0xfc,0xdc,0x05,0x1b,0xcb,0x59,0x0c,0xd7,
+  0x8e,0x41,0xd8,0xe7,0x3f,0x87,0xe1,0x4d,0x35,0x3a,0x50,0x62,0xc6,0x3c,0x70,0x93,
+  0xcc,0x99,0xfa,0xb3,0xe9,0x00,0x7c,0x4a,0x35,0x6c,0x5e,0xd0,0xe2,0x9f,0x5e,0x67,
+  0xfc,0xf3,0x00,0xea,0xac,0x3d,0x66,0xac,0x44,0xd3,0x75,0xa5,0x96,0xfe,0xac,0x97,
+  0x37,0xb3,0xa1,0xd2,0xdf,0xb7,0x18,0x0b,0xb1,0x88,0xa5,0x3f,0x5b,0x60,0xa7,0x58,
+  0x65,0xc6,0x97,0x34,0xff,0xc8,0xd4,0x9f,0x0a,0xd7,0xa0,0xb6,0xa1,0xab,0xec,0x7e,
+  0x08,0xf7,0xdb,0x97,0xe9,0x1c,0x16,0xef,0xb1,0xf4,0x67,0xbc,0x1a,0x7e,0xa1,0x2c,
+  0x52,0xbd,0x75,0xc2,0x71,0x3a,0xc9,0xce,0x7f,0xd6,0xda,0xfa,0xb3,0xf8,0xc0,0xa2,
+  0x4b,0xd2,0x8d,0xe8,0x52,0xa0,0xff,0x7e,0x49,0x6e,0x64,0x07,0x06,0x6c,0xfd,0x79,
+  0xa1,0xe7,0x16,0x88,0xe6,0xb1,0x7f,0x2c,0x6e,0xaa,0xb5,0xd3,0x8a,0x7f,0x96,0x6e,
+  0xa2,0x8f,0x64,0x35,0xb7,0xfd,0x2d,0x4d,0x7f,0xba,0xa7,0xe8,0xcf,0xb6,0x76,0xe4,
+  0x5c,0xd1,0x3a,0xdf,0xdb,0xdc,0x06,0xdd,0x77,0x9a,0x12,0xff,0x04,0x2d,0x7f,0xa4,
+  0x17,0xdc,0xce,0xf3,0x9f,0x69,0x38,0x0e,0x7b,0x68,0x49,0x16,0xb7,0xf5,0x23,0x10,
+  0xa5,0xde,0xcb,0xe2,0x9f,0x88,0x4d,0x97,0x19,0x73,0x74,0x3b,0xe3,0x9f,0xef,0xb3,
+  0x63,0xb4,0x5a,0xce,0x46,0x8b,0xf3,0x79,0x9d,0xf1,0xcf,0xef,0x89,0x29,0x86,0x15,
+  0x9d,0x9f,0x97,0xc7,0x3f,0x77,0x76,0xf2,0x5a,0xdd,0xaa,0x2f,0xc7,0x3f,0xc5,0x6d,
+  0x9d,0x41,0x85,0xfd,0x48,0xd4,0x62,0x8e,0xb7,0xca,0x53,0xe2,0x9f,0x39,0x5d,0x7f,
+  0x26,0x2f,0x8f,0x7f,0x32,0xfd,0x89,0xd8,0x9c,0xa2,0xeb,0xac,0xf8,0xa7,0xeb,0x5c,
+  0xf6,0x7c,0x36,0x4a,0xae,0xd1,0xcf,0x04,0xb3,0x43,0xa2,0xb1,0xb3,0x8e,0xf3,0x9f,
+  0xfd,0xec,0xfc,0x27,0xd3,0x9f,0xfd,0xba,0xfe,0x3c,0x64,0x9f,0xff,0x94,0x76,0x13,
+  0x6c,0x8b,0xec,0x1b,0x72,0xe9,0x6d,0x29,0xb0,0xfc,0xf7,0x6f,0xf6,0x88,0xfb,0xb9,
+  0x20,0xb9,0xd5,0x19,0xc3,0x75,0xc6,0x3f,0xfb,0xb4,0xf3,0x4b,0x56,0x5b,0xcc,0xfc,
+  0x51,0x08,0x7a,0xe0,0x23,0x3a,0xa5,0x9d,0xd3,0x6d,0xfd,0x99,0x85,0x89,0xa6,0x28,
+  0x3b,0x2b,0xc6,0xf4,0x67,0xc3,0x94,0xf3,0x9f,0x50,0x47,0x5f,0x80,0x20,0xce,0x11,
+  0x1f,0x42,0xfd,0x59,0xcd,0xfc,0x77,0x5b,0x7f,0x36,0x9b,0x66,0xe9,0x61,0x81,0x26,
+  0x2c,0xc0,0xa0,0x23,0x7f,0xb4,0x8f,0x99,0xc9,0x3a,0x7e,0x36,0xfc,0x10,0xee,0x67,
+  0xf6,0x92,0x93,0xf5,0xb1,0x0e,0x49,0x33,0xe0,0x13,0xba,0x3b,0xaf,0xe9,0xcf,0x9f,
+  0xd3,0x9b,0xb0,0x50,0x69,0x9d,0xff,0x2c,0xd6,0xce,0x2f,0xa9,0x25,0x11,0x61,0x18,
+  0x3e,0xe0,0x1b,0xa6,0xc6,0x3f,0xff,0x89,0x67,0xb2,0xd3,0x7b,0x5e,0x38,0x4b,0x2e,
+  0xd1,0x86,0xbc,0x77,0xbf,0x43,0x7f,0x76,0x30,0xff,0x48,0x75,0xd7,0xf2,0xc7,0xd9,
+  0x9a,0x1e,0xeb,0xaa,0xb3,0xf4,0x27,0xc0,0x36,0xbd,0xce,0x88,0xc5,0xe6,0x9e,0x58,
+  0xe3,0xd0,0x9f,0x43,0xe8,0x32,0x85,0xad,0x18,0xae,0xfa,0xb5,0x88,0x43,0x7f,0x66,
+  0xe1,0xe8,0xc6,0x6a,0x3b,0xc6,0x89,0x85,0xb3,0x56,0xfc,0x33,0x2f,0x4d,0xf2,0x0d,
+  0xce,0xba,0xa8,0x9d,0x3f,0xfa,0x27,0x78,0x45,0xcf,0x1f,0x59,0x2c,0x30,0xe3,0x9f,
+  0x29,0xf1,0xbe,0x48,0x17,0x1f,0x54,0xbf,0xe6,0xe0,0xcb,0xa8,0xa5,0x3f,0x93,0xb4,
+  0x4b,0x0c,0xda,0xec,0x29,0x72,0xc4,0x3f,0x51,0x46,0x6b,0xcb,0x27,0xca,0x1f,0xa3,
+  0x7b,0x09,0x8b,0x7f,0xf2,0x83,0x29,0xa3,0x7b,0xd2,0xea,0x18,0xd3,0xc9,0xb7,0xfe,
+  0x84,0xc5,0x3f,0xd1,0x59,0x2f,0x79,0x5e,0xc8,0x9b,0xfa,0xb3,0xd8,0x68,0xc2,0x4f,
+  0x85,0x8b,0xa0,0xc5,0x62,0xcf,0x09,0x96,0xfe,0x5c,0x7a,0x5c,0xcc,0xb1,0x7c,0x71,
+  0x3f,0xf2,0x53,0x8b,0x27,0xdb,0xfc,0x54,0xe5,0xb3,0x32,0x15,0x83,0x03,0x1e,0x83,
+  0x9f,0x2a,0xf2,0xd3,0x8c,0x4f,0xe4,0x5c,0x67,0x70,0xc7,0x55,0x92,0x7a,0xfe,0x88,
+  0x63,0x07,0x41,0x0b,0xec,0xfc,0xd1,0x2e,0x31,0x1b,0x52,0x92,0xa5,0x5f,0xc1,0x4f,
+  0xb9,0xec,0x03,0xe9,0x34,0x6c,0x55,0xab,0x1c,0xe3,0x69,0xe7,0x8f,0x1a,0xf9,0xb7,
+  0x69,0x23,0x94,0x98,0x63,0xe6,0xb2,0xf9,0x99,0x90,0xe7,0xa4,0x8f,0xc7,0xa2,0xc4,
+  0xe3,0xb8,0xcf,0xca,0xbf,0x2f,0x15,0x99,0x5b,0xc4,0x8e,0x49,0x9d,0x91,0xd8,0xfb,
+  0x50,0xf8,0xda,0xf9,0xa3,0xdf,0xc7,0x41,0x08,0xd9,0x73,0xeb,0xb6,0xf3,0x47,0xe3,
+  0xdc,0x6c,0x78,0x84,0x5e,0x8b,0xfc,0xf4,0xbd,0x0d,0xfb,0x58,0xf2,0x86,0xe5,0x6c,
+  0xf4,0x2b,0x2e,0x79,0x79,0x95,0xbe,0x90,0x44,0x6c,0x0e,0xa3,0xa1,0x96,0xe7,0xb1,
+  0x70,0xc2,0xf6,0xdf,0x9b,0x3f,0xe7,0xae,0x27,0x7a,0x0e,0x4c,0x37,0x00,0x9b,0x9f,
+  0x39,0x38,0xda,0xba,0xc7,0xb6,0x89,0x2d,0x36,0x3f,0x73,0xa5,0xdb,0xa5,0x2d,0x3a,
+  0x36,0x35,0x1b,0x64,0x05,0x3b,0x7f,0xb4,0x87,0xdf,0xb0,0xa9,0x62,0x8d,0x9b,0xf9,
+  0x4e,0xac,0x2d,0xb7,0xae,0x2b,0x70,0xf2,0xb3,0x4b,0x55,0xe2,0xce,0x3e,0xd8,0xf9,
+  0xa3,0x27,0xe8,0x11,0xa8,0xc9,0x7a,0x19,0x3f,0x3f,0xd7,0x12,0x49,0x4e,0x7e,0x2a,
+  0x06,0x36,0x19,0x3f,0xab,0xa7,0xe6,0x8f,0x46,0xe3,0x47,0xa5,0x3d,0xe4,0x6e,0x93,
+  0x05,0x9e,0x4c,0xa5,0x23,0x7f,0xa4,0x74,0x26,0x83,0x4d,0x4a,0x26,0x38,0x6a,0x26,
+  0x5a,0xf2,0xc6,0xb8,0xb0,0xfc,0x51,0x67,0x4a,0xd1,0x72,0x2f,0x08,0xa1,0xf0,0xd4,
+  0xf3,0xf3,0x28,0xf5,0x14,0xac,0x93,0x79,0x3d,0x67,0x13,0x42,0x7e,0x96,0xea,0xf7,
+  0x21,0x3f,0xe5,0x1c,0xca,0x4e,0x89,0xf9,0xef,0x13,0x7c,0x83,0x76,0xfe,0x73,0x9a,
+  0x6e,0xf3,0xdd,0xb3,0xce,0x15,0x9c,0x97,0x1b,0x9b,0x18,0x97,0x24,0x93,0x9f,0x86,
+  0xfe,0xec,0x76,0x9d,0x84,0x63,0x11,0xc6,0xf9,0x4a,0x8b,0x67,0xc7,0x39,0x9b,0x9f,
+  0xe9,0xc8,0x4e,0xfe,0x56,0xea,0x63,0xfc,0xac,0xc3,0x8e,0x06,0x0f,0x81,0x99,0xdf,
+  0x1c,0x95,0x58,0x2c,0xd6,0x2d,0x2b,0x5a,0x5b,0x74,0xfd,0xa9,0x3f,0x33,0x50,0xf6,
+  0x54,0x0c,0xf7,0x87,0x3b,0x75,0x7e,0x72,0xf3,0xb4,0xf8,0xa7,0x5f,0xef,0x7b,0xb6,
+  0xec,0x90,0xb9,0xaf,0xd8,0xfc,0x34,0xce,0xc8,0xb7,0x72,0x7a,0xfe,0x68,0x79,0x66,
+  0xfa,0xa8,0xa5,0x3f,0x2d,0x7e,0x3e,0x29,0xe9,0xb2,0x13,0xfd,0xf7,0x89,0xcb,0xf8,
+  0xc9,0xd5,0x8a,0x9b,0xb9,0x20,0x2d,0x67,0xfc,0x7c,0x41,0xac,0x4e,0xdd,0x9a,0x0d,
+  0xda,0xfc,0x8c,0x6b,0x67,0x2b,0x0a,0x91,0x9f,0xb2,0x31,0xb7,0xb6,0xff,0x5e,0xaf,
+  0x6c,0x68,0xae,0x38,0x23,0x4d,0xb0,0xf8,0x27,0xcc,0x1f,0x72,0x9c,0x9f,0xef,0x45,
+  0x7e,0x22,0x04,0xf2,0xd7,0x4e,0x20,0x3f,0x7f,0x43,0x6f,0x1a,0x63,0xe7,0xe7,0xad,
+  0xfc,0xfb,0x2e,0xfe,0x22,0xd7,0xf0,0x86,0x69,0x83,0xb9,0x29,0xfc,0x3c,0x1e,0x3b,
+  0xba,0x2d,0x3a,0x5a,0xb2,0x5f,0xf8,0x82,0x5c,0xca,0x34,0x9e,0x43,0x47,0xde,0xe6,
+  0xe7,0x8f,0x60,0x43,0xcf,0x8e,0x51,0xe9,0xa1,0xe0,0xdb,0x74,0x1f,0x54,0x8f,0x49,
+  0x11,0xb0,0xfd,0xf7,0x7f,0xa0,0xeb,0xe5,0xca,0xdc,0xc6,0xb5,0xcc,0x76,0x5d,0xf3,
+  0xd5,0x80,0x1d,0xff,0x4c,0xa2,0x7d,0xa6,0xa8,0x72,0x52,0x8a,0xc4,0x86,0xb5,0x3e,
+  0x74,0xdb,0xfc,0xec,0x2f,0x7b,0x16,0x8e,0xa4,0x17,0x8e,0x1b,0x7a,0xa9,0x91,0x39,
+  0xf2,0xa7,0x2d,0x9b,0x3f,0x13,0xff,0x78,0x2a,0x3f,0xad,0xfc,0x3b,0x95,0x2f,0x89,
+  0xff,0x4c,0x6a,0x06,0x59,0xfe,0x48,0xbe,0xc4,0x31,0x7e,0x2e,0x51,0x0d,0x7e,0x76,
+  0x88,0x2d,0xd0,0x49,0x76,0xaa,0x33,0xfb,0x82,0x76,0x8e,0xc8,0x71,0xfe,0xb3,0xbb,
+  0xe9,0x5f,0xc9,0x1f,0x89,0xf3,0x81,0x2a,0x41,0xb5,0x28,0xda,0x36,0x4c,0xf7,0xca,
+  0xe1,0x61,0x74,0x58,0x07,0x2d,0xff,0xfd,0xfe,0xb6,0xd7,0xc8,0x5e,0x55,0xda,0x27,
+  0x9c,0xc9,0x4c,0x92,0xc6,0x23,0xde,0xe7,0x05,0xb5,0xc0,0xf4,0xdf,0x2f,0xc4,0x2f,
+  0xfe,0xf1,0x4d,0xff,0x88,0x08,0x3f,0x43,0x2e,0x29,0x38,0x9e,0xe3,0x36,0x3f,0x5d,
+  0x9f,0xc1,0x3b,0xba,0xec,0xfc,0xb2,0xfe,0x0c,0x9c,0x85,0x2e,0x5d,0x76,0x22,0x3f,
+  0xdb,0x2e,0xd3,0x9f,0x67,0x8c,0xed,0xf2,0x2b,0xf4,0xa7,0x6b,0x97,0xf6,0x59,0xc0,
+  0x57,0xeb,0xcf,0xe3,0xf0,0xa6,0x9d,0x1b,0xac,0x66,0x7c,0xb1,0xf9,0x79,0x80,0x1a,
+  0x5b,0xcd,0x57,0xe8,0xcf,0x5d,0x44,0xff,0x44,0xc1,0xca,0xe3,0x39,0xce,0x2f,0x85,
+  0xcd,0xf7,0x85,0xad,0xf7,0x59,0xfe,0x7b,0x8b,0x96,0x36,0x72,0xeb,0xb9,0x41,0x56,
+  0x88,0x4d,0x18,0xb6,0x9b,0x94,0xff,0x90,0xa5,0xdd,0xf3,0xee,0x09,0xdc,0xdf,0xf7,
+  0xe9,0xc9,0x6f,0xeb,0xfc,0x92,0x74,0x1b,0xfc,0x42,0xff,0x86,0xc3,0x83,0xfc,0xd4,
+  0x82,0x34,0x6f,0x98,0xfc,0x2c,0x33,0xf3,0x9b,0x6e,0xed,0xfc,0xbc,0x93,0x9f,0x12,
+  0x8e,0xcb,0x9f,0xc3,0x6c,0xad,0x7f,0x92,0x51,0x67,0xe9,0xcf,0xab,0xb7,0x9b,0xd8,
+  0xd4,0xf9,0xe9,0x88,0x7f,0x2a,0xf0,0x23,0xd8,0x97,0xd2,0x9a,0xf0,0xb6,0xd9,0x16,
+  0x93,0x9f,0xad,0xe2,0x71,0x73,0x88,0xad,0xb1,0xb6,0xf5,0xe7,0x69,0x13,0x9b,0x8c,
+  0x9f,0xd5,0x53,0xf8,0xc9,0x65,0x89,0xb1,0x94,0xbf,0x22,0xff,0xfe,0xb4,0x95,0x4b,
+  0x16,0x8d,0x82,0x43,0x7f,0x12,0x43,0x96,0x7d,0x29,0xff,0xce,0xf2,0x47,0xfb,0x79,
+  0xa3,0xee,0xd9,0xa9,0xfa,0x33,0xe4,0xd7,0x65,0xa7,0xdb,0xe4,0xa7,0x7b,0xaa,0xfe,
+  0xb4,0xda,0x32,0x76,0x99,0xfe,0x2c,0x3b,0x67,0xb4,0x85,0x31,0x52,0x9c,0xa2,0x3f,
+  0xbb,0x5d,0xe7,0x4c,0x79,0x3c,0x6a,0xc0,0x4b,0xb0,0xf4,0x67,0xc0,0x92,0x9d,0x5f,
+  0xd2,0x9f,0x71,0xe8,0x98,0xda,0x16,0xa7,0xfe,0x14,0x7b,0xe0,0xf2,0xfe,0x59,0xfa,
+  0xf3,0x9b,0xef,0xcb,0x97,0xe7,0xd8,0xc7,0xac,0xf1,0x7c,0x9a,0x38,0xeb,0x9a,0x1c,
+  0xfc,0x64,0xf9,0xa3,0xcb,0xc7,0xda,0x8e,0x7f,0x22,0x36,0x75,0xd9,0x39,0x06,0x2f,
+  0xf0,0x97,0xe9,0xcf,0x96,0x2f,0xcd,0xed,0xa0,0x95,0x3f,0x9a,0x35,0xc5,0x5e,0x06,
+  0x18,0x3f,0x0d,0xdf,0x37,0x2d,0x69,0xd8,0x34,0xf3,0xef,0x37,0xbd,0xeb,0xfc,0xfe,
+  0xa8,0x6c,0x17,0x38,0xf2,0xef,0xba,0x0d,0x9a,0xeb,0x48,0x7c,0x29,0x31,0x99,0x99,
+  0xb2,0xde,0x39,0x8b,0x9f,0x81,0x4d,0xe2,0xbe,0xac,0xf1,0xbe,0xbd,0xda,0x8b,0x63,
+  0x7f,0x6c,0xf1,0x73,0x3b,0xe7,0x6c,0x0b,0x63,0xf9,0x90,0xf9,0xfd,0x91,0xa8,0x1f,
+  0xb5,0xd4,0xfb,0xa0,0x1f,0x14,0x49,0xd8,0xe7,0x97,0xe8,0xa4,0x73,0xbd,0x7b,0xfb,
+  0x2a,0xcf,0x5a,0xf1,0x4f,0xad,0x79,0x03,0x7a,0x1d,0x82,0xf4,0x9a,0xbe,0xab,0x5a,
+  0x45,0x33,0x7f,0xc4,0xfc,0x62,0x2d,0xdd,0xf4,0x25,0xfd,0xf9,0x14,0xfa,0xef,0x5d,
+  0x96,0xbf,0xa9,0x7d,0x63,0xb4,0x62,0xd4,0xe4,0xe7,0xd2,0x70,0xe2,0x09,0x98,0xcb,
+  0x3e,0x3b,0xd2,0xd9,0x73,0xab,0xf3,0xfb,0xa3,0xb0,0xf6,0x09,0x8d,0x35,0xd6,0x5d,
+  0x11,0x6b,0x1e,0x68,0xf1,0x6a,0xf2,0x26,0xba,0xae,0xce,0x31,0x33,0x73,0xe5,0xd9,
+  0x59,0xe7,0x40,0x73,0x33,0x19,0xcb,0x5f,0x96,0x1a,0x07,0xb6,0x8c,0x57,0x8e,0x3d,
+  0x62,0xf1,0x33,0xf0,0x6b,0xa8,0x79,0x77,0xf3,0x04,0x9a,0xe5,0x64,0xaa,0xf1,0xdd,
+  0x57,0xfb,0xed,0xf3,0x9f,0xe8,0xe3,0x6d,0x01,0xfd,0xfc,0x12,0xd3,0x9f,0xef,0x76,
+  0xf5,0x2b,0xf6,0xf7,0x9b,0x67,0xe0,0x49,0x51,0x19,0x28,0x8a,0xdc,0x33,0x6c,0x9c,
+  0x59,0xf0,0x39,0xf4,0x27,0xcb,0xe7,0xe4,0x25,0xad,0x0f,0xdc,0x65,0xfc,0x1c,0x82,
+  0x0f,0x60,0xcf,0x7b,0x25,0x53,0x74,0xa4,0xc9,0xcf,0x7d,0xa0,0x9d,0xff,0xd4,0xf6,
+  0x1c,0xb1,0x51,0xbd,0x06,0xf9,0x29,0x1b,0xf3,0x2e,0xef,0x0a,0x3c,0x01,0xd1,0x81,
+  0xe5,0x7d,0xd3,0xad,0x41,0xb7,0xf9,0x39,0x3f,0xb0,0x85,0xcb,0x26,0xdd,0xc6,0x79,
+  0x86,0x01,0x77,0x9f,0xcf,0xd6,0x9f,0x4b,0xe9,0xe3,0xbc,0x92,0xef,0x72,0xd8,0xa7,
+  0x79,0x7e,0x3e,0xc9,0xcd,0x80,0x0d,0x99,0x1d,0xe8,0xb6,0x33,0xfd,0xd9,0x61,0xe8,
+  0x4f,0xfd,0xbe,0xb8,0x24,0xaa,0x6f,0x66,0x22,0xa7,0xbd,0x0b,0xd1,0x0f,0xff,0x24,
+  0x55,0x7f,0x78,0x5a,0xdd,0x12,0xfb,0xfb,0xa3,0xed,0xe4,0x12,0x8b,0x7f,0xe2,0x7e,
+  0x84,0x0d,0xc6,0x3e,0xec,0x16,0x46,0x8c,0xf3,0x75,0xec,0xfb,0xa3,0x49,0x29,0xea,
+  0x3c,0x93,0xe1,0xfc,0x7e,0xb3,0xec,0x65,0x72,0x99,0xfe,0x74,0x7c,0x7f,0xa4,0x1d,
+  0x9b,0x77,0xf0,0xd3,0xfe,0xfe,0x68,0xd8,0x83,0x3e,0x5e,0x2f,0x9b,0x77,0x8e,0xf5,
+  0x61,0xba,0x93,0x9f,0x2c,0x16,0x5b,0xd3,0xaf,0xf3,0x93,0x6b,0x48,0x79,0x9d,0xdf,
+  0x6f,0xe6,0xa5,0x09,0x78,0xc9,0x5e,0xd3,0xcb,0x9d,0xf1,0xcf,0x5f,0xfa,0x3f,0x82,
+  0x3d,0x2c,0x97,0x8c,0x2c,0xe0,0x34,0x16,0xd8,0xf1,0xcf,0xef,0xc1,0x0d,0x10,0x5c,
+  0xf3,0xb5,0x29,0xfc,0x34,0xe3,0x9f,0x73,0xf0,0x47,0x3b,0xef,0xb9,0x35,0x13,0xfb,
+  0x8a,0xf3,0x4b,0xc8,0x4f,0x25,0xab,0x31,0x4b,0xfe,0x2a,0x7e,0x26,0xa2,0xa6,0x16,
+  0xd6,0xf9,0x29,0x58,0xfa,0x13,0xce,0x97,0x32,0xfd,0x69,0x6b,0xcc,0xf7,0x2d,0xfd,
+  0x89,0x75,0xc9,0x85,0x88,0x4d,0xbb,0xee,0x90,0x68,0xe9,0x4f,0xb9,0x3f,0xb9,0x53,
+  0xe3,0xa7,0x6c,0xf0,0xd3,0xf1,0xfd,0x26,0xec,0x26,0x79,0x6c,0x02,0x71,0xb0,0xdc,
+  0x88,0x09,0x94,0xf5,0x60,0xf3,0x58,0xe8,0xd6,0x87,0x7d,0x10,0xab,0xd1,0x91,0x8f,
+  0x1d,0x32,0xcf,0x24,0x96,0xb1,0xe1,0x88,0xfe,0x81,0xce,0x48,0xde,0xe0,0xa7,0x7e,
+  0x5f,0xc8,0xe2,0xa7,0xdd,0x16,0xc7,0xf7,0x47,0xec,0x1c,0xa0,0x3f,0x8c,0xfd,0x93,
+  0xf5,0xfe,0x2d,0xb1,0xbf,0xd1,0xac,0x43,0x7e,0x56,0x52,0x29,0x7b,0xcf,0x98,0x84,
+  0x20,0x45,0xfd,0xc9,0x1f,0x31,0x38,0xa8,0xf3,0xb3,0x6a,0xd0,0x79,0x0e,0xd0,0xfa,
+  0xfe,0x88,0x63,0xfc,0x7c,0x26,0xcf,0xe2,0x3d,0xa2,0x6e,0x2f,0xc1,0x31,0x87,0xfe,
+  0xfc,0x84,0x5e,0xa7,0x78,0x0c,0x7e,0x32,0x90,0xda,0xe7,0xe7,0xd1,0x7f,0x4f,0xbc,
+  0x40,0x99,0x0d,0x9a,0x07,0x99,0xec,0xef,0x37,0x71,0x99,0x0f,0x46,0x56,0x79,0xf6,
+  0xeb,0xfe,0x26,0x03,0xa9,0x2a,0x1b,0xf1,0x4f,0xd4,0x9f,0x2f,0x52,0xf4,0x29,0xd1,
+  0x06,0xc5,0x7d,0x3b,0x34,0xfb,0x34,0x73,0xe5,0x32,0x6c,0x93,0xf7,0x71,0x95,0x33,
+  0xe3,0x0f,0xae,0x40,0xdb,0xad,0xd2,0xea,0xac,0xfc,0x3b,0xfa,0xef,0x68,0x9f,0x8a,
+  0xb3,0x0f,0xf6,0xf7,0x47,0x3b,0x71,0x89,0xec,0xc9,0x6f,0xc2,0xb6,0xc8,0x46,0x5b,
+  0xec,0xfc,0xfb,0xbf,0x68,0x61,0xcf,0x29,0xcc,0x02,0x53,0x7f,0x9e,0x93,0x90,0x4b,
+  0xd9,0x4d,0x0e,0x7e,0xaa,0x96,0xff,0xfe,0x5f,0xe8,0x8b,0x10,0xca,0x32,0xbe,0x88,
+  0x06,0x5f,0x6c,0xfd,0x39,0x8f,0xa5,0x8d,0xae,0x9e,0xaa,0x3f,0x4d,0xfb,0xf4,0xd0,
+  0xbd,0x9e,0x5e,0x49,0x8a,0x1c,0x1a,0x56,0xf7,0x26,0xc3,0xea,0x14,0xfd,0xb9,0x2a,
+  0xfb,0x6b,0x2e,0x2a,0x85,0xb5,0x31,0x5b,0x8d,0xeb,0xf6,0xf9,0x25,0xaa,0xf5,0xfd,
+  0x11,0xf2,0xb3,0xb0,0xb1,0x00,0x9b,0xf0,0xa1,0x29,0xf0,0xcc,0xf8,0x27,0x1c,0x6c,
+  0xe2,0xd6,0x90,0xb7,0xe4,0xeb,0xc5,0xe2,0x83,0xdc,0x5a,0xf2,0x56,0x02,0x0b,0xea,
+  0x42,0x63,0xe2,0x0f,0x36,0xbb,0xd6,0x72,0x77,0x93,0x6f,0xcb,0xae,0xa1,0x69,0x6b,
+  0xe1,0x6e,0x72,0x95,0xec,0x52,0x17,0x26,0x8c,0x17,0xf2,0x9c,0x42,0xe3,0x8a,0x4f,
+  0x12,0xdb,0xb8,0x0a,0xbd,0x60,0x6c,0x47,0x0c,0x06,0xae,0x24,0x04,0x60,0x06,0xb8,
+  0x3a,0xd0,0x65,0xba,0x8b,0x60,0xc1,0xaa,0x3b,0x18,0x77,0x3d,0x08,0x77,0xd3,0x6f,
+  0x2b,0xae,0x9c,0x56,0xb8,0x4a,0xb1,0x9f,0x39,0x94,0x40,0xa6,0x05,0xa0,0x40,0x2c,
+  0x6d,0x83,0x64,0x53,0xa0,0x62,0x19,0x94,0x82,0xd5,0x16,0x22,0x2a,0x9c,0x44,0x63,
+  0x20,0x53,0x51,0x49,0x49,0x24,0x26,0xcb,0xd4,0xaa,0x5b,0xc1,0x91,0x54,0x22,0x7b,
+  0xa7,0xa7,0x4c,0xe0,0x9a,0x06,0x12,0xca,0x9d,0x52,0x19,0x94,0x9a,0xed,0xf4,0x70,
+  0xdf,0x86,0x26,0x34,0x11,0xd1,0xc3,0x5d,0x05,0x4d,0x23,0xf2,0xf7,0x45,0x2b,0xa4,
+  0xd3,0x61,0x9e,0xa6,0x03,0x10,0x17,0x52,0x89,0xb5,0x99,0xb3,0xda,0x99,0xe4,0x25,
+  0x68,0x03,0x85,0x06,0x14,0x3e,0xc0,0xb5,0xc9,0xc9,0x8e,0x00,0x67,0xb6,0xf3,0xa0,
+  0x3c,0x6d,0x15,0xf7,0x0d,0x58,0x41,0xfc,0xd4,0x65,0x16,0xac,0xb6,0xc4,0xcb,0xb0,
+  0xcb,0xb0,0x18,0x8a,0x29,0x0e,0xc2,0x29,0xad,0x60,0xd5,0xc5,0x0a,0x22,0x29,0x8f,
+  0xb2,0x44,0x02,0x44,0x15,0xf5,0x44,0x04,0x09,0xec,0xf1,0x04,0x82,0xde,0x1f,0x68,
+  0xd1,0x33,0x2d,0xfb,0xa0,0x80,0x6a,0xb6,0x85,0x0a,0x15,0x51,0xb5,0x45,0x99,0x1e,
+  0x16,0x8f,0xba,0xb0,0x90,0x2d,0x0d,0x8b,0x56,0xdd,0xc1,0x25,0x5c,0x52,0x8d,0x2b,
+  0xdf,0xf2,0x88,0xed,0xae,0x35,0xea,0x5d,0x11,0x9f,0x47,0xa4,0x56,0x3b,0x63,0x10,
+  0x49,0xb1,0x93,0x07,0x32,0x8e,0x27,0x16,0x62,0x92,0x63,0xcc,0x62,0xb0,0x28,0x55,
+  0xa8,0x2c,0x8b,0xcb,0x5b,0xc5,0x2a,0x2c,0xc4,0xe2,0x8e,0x3a,0x9c,0x05,0x2e,0x06,
+  0xdf,0xa4,0xe8,0xd4,0xb2,0x42,0x82,0xfa,0x89,0xd5,0xce,0x02,0xae,0x89,0x26,0x92,
+  0xfe,0x80,0xab,0x80,0xbb,0x5d,0x2f,0x80,0x79,0xa1,0x4d,0x88,0x1d,0x4d,0x8a,0x1c,
+  0x17,0x7d,0x2e,0x91,0x6a,0x05,0x6b,0xac,0x0f,0x2e,0x13,0x6e,0xa7,0x27,0x93,0xd7,
+  0x07,0x66,0x2d,0xe3,0x6f,0x4f,0x9d,0x4c,0xfe,0x59,0x60,0x96,0xf5,0xcc,0x83,0xcb,
+  0xa6,0xad,0x4d,0xbd,0x95,0xfc,0x76,0xa0,0xec,0x90,0x6b,0x6d,0xea,0x6e,0x56,0xb0,
+  0x6c,0x70,0x69,0x4c,0x58,0x4b,0xdf,0xc2,0xfb,0x0a,0x0f,0x71,0x7a,0xa1,0x58,0x35,
+  0xbf,0x19,0x59,0xba,0x0c,0xa7,0xcd,0x93,0xbc,0x23,0x00,0x87,0x0a,0x2a,0xb0,0x20,
+  0x04,0x38,0xd5,0x9c,0x77,0xe0,0xb9,0x35,0x54,0x52,0x66,0xe0,0x24,0xa2,0xa1,0xb2,
+  0x82,0x08,0xd6,0x6c,0x17,0xb8,0x56,0xd2,0x78,0x72,0x46,0x40,0x7c,0x04,0xd0,0x76,
+  0x93,0xbe,0x80,0xf9,0xd7,0x27,0xf0,0x99,0xc4,0xb5,0x06,0x5a,0xe0,0x0e,0x10,0x55,
+  0xad,0x30,0x1d,0xcd,0xd9,0x7c,0xe6,0xd2,0x98,0x36,0x8c,0x53,0xc6,0xb3,0xd4,0x6a,
+  0x27,0x9a,0x65,0x20,0xbb,0x4c,0xba,0xbd,0x8d,0x15,0x94,0x65,0x52,0xa9,0xa3,0xae,
+  0x82,0x0c,0xdc,0x19,0xf9,0xa6,0xa7,0x2c,0xc6,0x19,0x05,0x62,0xb5,0x53,0xe0,0x12,
+  0xf4,0xce,0x6c,0x99,0xe4,0x8a,0xb1,0x82,0x52,0xe6,0x71,0x99,0xad,0x64,0x11,0x3b,
+  0x82,0xe4,0x12,0x81,0x93,0x44,0xa3,0x60,0xb7,0x33,0xc6,0x33,0xa7,0x59,0x91,0x02,
+  0xbc,0x56,0x48,0x7a,0x02,0x96,0xcd,0x63,0x1f,0x92,0xdc,0x5d,0xf0,0x2d,0x28,0xa3,
+  0x56,0xc1,0x6c,0xcb,0x41,0x82,0xbb,0x48,0x5c,0x33,0x4b,0x4e,0x01,0xfd,0x93,0x53,
+  0xeb,0x7d,0x20,0x26,0x39,0x09,0x96,0xb0,0x59,0x56,0x88,0x76,0xb4,0xc6,0xae,0x93,
+  0xa1,0x0a,0xdb,0x23,0x10,0xc4,0xde,0x1c,0x28,0x8c,0xf3,0x09,0x47,0x9d,0xcb,0xb5,
+  0x10,0xe2,0x64,0xba,0x2c,0x76,0x70,0x15,0x24,0x0e,0xd3,0x03,0xa2,0x6a,0xd5,0x55,
+  0x8a,0xad,0xea,0x77,0x22,0xdf,0xda,0xe4,0x7a,0xd2,0xc5,0x0a,0x33,0xb6,0xbb,0xa6,
+  0x3c,0x93,0x63,0x5f,0x2d,0xc9,0xf8,0xcc,0xa5,0x85,0x10,0x23,0xb2,0x5d,0x27,0x89,
+  0xc9,0xd2,0x80,0xb8,0x8c,0x2b,0x4d,0x37,0x27,0xaf,0x66,0x85,0xc7,0xec,0x66,0x02,
+  0x49,0x94,0xde,0x29,0x7e,0x93,0x2b,0x23,0x4d,0x58,0xf0,0xb3,0x82,0x7d,0x5f,0x45,
+  0x4c,0xba,0xb3,0xad,0x4c,0x39,0x18,0xdf,0x11,0x0b,0xdd,0xb9,0xd1,0xa5,0xac,0xb7,
+  0xeb,0x8a,0x38,0x3e,0x05,0x59,0x08,0x41,0x91,0x8b,0xa7,0x5a,0xc1,0xbe,0x3c,0xc2,
+  0x1d,0xd0,0xa1,0x56,0x44,0x02,0x2d,0xc2,0x1d,0x85,0x1d,0xea,0xca,0x48,0xc0,0xf1,
+  0xcc,0x69,0x0f,0x72,0x77,0xd3,0x9b,0x95,0x32,0x64,0x16,0x77,0x77,0xdb,0xb7,0x2b,
+  0xca,0xec,0xfe,0x09,0x32,0x51,0xe5,0x48,0x87,0x87,0xab,0x04,0x56,0x40,0xcc,0xd8,
+  0xcf,0x6c,0xbc,0xb4,0xfc,0xd2,0x3f,0x5e,0x3a,0x77,0xe9,0xa2,0x55,0x80,0xdf,0xe9,
+  0x5a,0xfc,0xa6,0x7b,0xf1,0xe0,0xb1,0xbe,0xbd,0xab,0xc3,0xef,0xe8,0xf7,0x9d,0xb1,
+  0xeb,0xbe,0x5e,0xdf,0xf2,0xea,0xf4,0x9a,0xa1,0xe1,0x8f,0x6a,0x1a,0xf5,0xba,0x8f,
+  0x1c,0xef,0x5b,0x17,0x3f,0xe4,0x5b,0x38,0xba,0x69,0xe5,0x8d,0x01,0x56,0xe8,0xd8,
+  0xb4,0xd2,0xae,0x73,0xc1,0x5a,0xb2,0x3d,0xf1,0x75,0x7f,0xe9,0x41,0x7e,0x2d,0x19,
+  0x5e,0xf3,0x75,0x7f,0xa1,0xdd,0x07,0x51,0xc3,0xfb,0x7f,0x0d,0xcc,0x1a,0xe2,0xd6,
+  0x72,0x2d,0xc8,0xf9,0x52,0xbb,0xae,0x80,0xd3,0x96,0x88,0x24,0x3e,0xa2,0x03,0x3f,
+  0x20,0x52,0xab,0x8e,0x07,0xc6,0xcc,0x02,0x19,0xcd,0x72,0x25,0x04,0x48,0x01,0x38,
+  0xea,0x24,0xf1,0x41,0x28,0xa7,0x37,0x57,0x95,0x1e,0x85,0x07,0x53,0xe5,0x74,0x5a,
+  0xc8,0xf1,0x4c,0xd0,0x39,0x8f,0xe6,0x2c,0xb2,0x07,0x2c,0x73,0xd8,0x35,0xf8,0xc5,
+  0x39,0x0c,0x47,0x68,0x13,0xe2,0x5c,0xae,0x90,0xc4,0x92,0x0e,0x9b,0xa8,0x84,0x78,
+  0xca,0x17,0x11,0xbb,0xb9,0xb9,0xe2,0x2d,0x9c,0x4f,0x69,0xee,0x2f,0xb5,0xde,0xa6,
+  0x7a,0xb4,0xa5,0xca,0x45,0x18,0x44,0x29,0x6e,0x41,0xb5,0x9c,0xb1,0xa5,0xe2,0x4f,
+  0x67,0xf8,0xcb,0x28,0x07,0x5c,0x42,0xd6,0xfe,0xfc,0xcb,0x4a,0x48,0x70,0xe6,0x21,
+  0x2c,0x49,0x25,0x3c,0x6b,0x7e,0x05,0xda,0x76,0x01,0x33,0xf7,0x24,0x16,0xec,0x3a,
+  0x6d,0x3d,0x2c,0xd3,0xf6,0x1c,0x2c,0xc4,0xa0,0x94,0x1a,0x75,0x32,0xce,0x72,0x12,
+  0xba,0xf1,0x9e,0x42,0xca,0xb3,0xc2,0x5c,0xb8,0xba,0xcd,0x78,0x1d,0x59,0x8a,0x9c,
+  0xa7,0x1e,0xe5,0x5e,0x8d,0xf3,0x08,0x7c,0x41,0x0a,0x98,0x0c,0x21,0xa2,0x24,0x1b,
+  0x78,0x67,0xc7,0xc5,0x3d,0x29,0x81,0x6d,0x97,0xc6,0x7d,0xe0,0x86,0xa8,0x7e,0x52,
+  0xfa,0x28,0xfb,0x0b,0x05,0x7d,0x6c,0x7f,0xe0,0xcc,0x67,0x2e,0x11,0xd7,0xa8,0x52,
+  0xe4,0x5b,0xda,0x5f,0x21,0x48,0x05,0x70,0xef,0x40,0xbe,0x18,0xcf,0xe4,0x74,0x2e,
+  0x09,0xc8,0x25,0xdc,0x57,0x18,0x97,0xac,0xb5,0x99,0xe0,0x18,0x97,0x24,0xdc,0x73,
+  0xe4,0x8d,0x62,0x10,0x01,0x15,0x0b,0x95,0x52,0xab,0x9d,0x44,0xeb,0x47,0x29,0xae,
+  0x43,0x97,0xcc,0xf9,0xe1,0x76,0xe0,0x62,0xc6,0x33,0xe3,0xd8,0xb3,0x26,0x2a,0x27,
+  0xc5,0x00,0xa7,0x15,0xf2,0x62,0x2d,0xd2,0x07,0x8c,0x3a,0xde,0x05,0x94,0x28,0x89,
+  0x90,0xc8,0x97,0x62,0x21,0x2b,0x4b,0xcd,0x26,0x5b,0xc9,0x52,0xe4,0x3c,0xe2,0xfd,
+  0xba,0x40,0x39,0x03,0xfe,0x10,0x72,0xbe,0xd0,0x62,0x1d,0xb7,0x4c,0x5c,0x4b,0xcb,
+  0x93,0x37,0xd7,0xfa,0x8f,0x8b,0x6b,0x53,0x2d,0xf9,0x9b,0x6b,0x2d,0x9b,0x20,0xdc,
+  0x32,0x60,0x75,0x57,0x05,0x4a,0x0f,0xf1,0x6b,0xe9,0xf6,0xe4,0xb4,0xda,0x42,0xd5,
+  0x98,0xdd,0xc4,0xd2,0x65,0x33,0x16,0xa6,0x3c,0xc9,0x7b,0x91,0xf3,0xb0,0x70,0xfd,
+  0xdd,0xc8,0xf9,0xb2,0x41,0xb3,0xef,0xe0,0x83,0x2a,0x5a,0xa8,0x5c,0x15,0x87,0xad,
+  0x30,0x97,0x7e,0x43,0xe1,0xe3,0x22,0x95,0xcd,0xba,0x02,0xed,0x6b,0xdf,0x19,0x01,
+  0x60,0x9c,0x0f,0xac,0xc1,0x8d,0xdc,0xb2,0xa5,0xa5,0x49,0xff,0x3a,0x28,0x81,0x9b,
+  0x7b,0x12,0x79,0xa8,0x75,0xdd,0x22,0x0b,0x54,0xb6,0xe6,0x88,0x5b,0x01,0xab,0x52,
+  0x57,0x2b,0x05,0xad,0x80,0x7b,0x23,0x65,0x7b,0xa3,0x35,0x9e,0x84,0x9d,0xf2,0xd5,
+  0xd0,0x8f,0x9c,0xbf,0xc7,0xe0,0xbc,0x6c,0xcd,0x3b,0x20,0xde,0x15,0xd1,0x53,0xba,
+  0x44,0x4c,0x0c,0xc8,0x91,0xa5,0x9e,0x52,0xb3,0xef,0xc4,0xc5,0xb3,0x6d,0x54,0x71,
+  0x49,0x38,0x59,0x2b,0x58,0xc1,0x83,0xf6,0x69,0x8c,0x19,0x68,0x78,0xa7,0x22,0x94,
+  0x72,0x32,0xe3,0x7c,0xb3,0x68,0x31,0x84,0x30,0xce,0x53,0xc6,0x79,0xe0,0x0b,0x58,
+  0x01,0x42,0x12,0x58,0xed,0x64,0xf6,0xd9,0x0d,0xdf,0x83,0xd2,0x94,0xc8,0x16,0xd4,
+  0x32,0xd1,0x9e,0x5b,0x8e,0x00,0x3b,0x69,0x1c,0xd3,0x4f,0x81,0x5c,0x0d,0x41,0x72,
+  0xb5,0xdd,0xce,0x64,0x01,0x22,0x10,0x62,0x88,0x40,0x79,0x1e,0x94,0x50,0x3e,0x6b,
+  0xd9,0x67,0x02,0x27,0xb9,0x22,0x21,0x25,0xf8,0x85,0xb0,0x1e,0x2a,0x54,0xcf,0x39,
+  0x7e,0x06,0xee,0x7f,0x66,0x3b,0x45,0x86,0x7e,0x12,0x4b,0xc0,0x76,0x98,0x23,0x16,
+  0x13,0xfe,0x4e,0x18,0xb4,0xda,0xb9,0x44,0x4c,0xaa,0x81,0xc8,0x32,0x0f,0xd7,0x0e,
+  0xf7,0x0c,0x04,0xe4,0x02,0x0f,0x67,0xdb,0x27,0x81,0x0a,0x4e,0x6a,0xe2,0x65,0xb9,
+  0x43,0x64,0x0b,0x2d,0x16,0x71,0x8c,0x67,0xbc,0x19,0x39,0xaf,0x22,0xe7,0xe9,0x9d,
+  0xc9,0x32,0xe4,0x7c,0x29,0x67,0xee,0x55,0x68,0x9f,0x24,0x71,0xbb,0xbf,0xd8,0xe5,
+  0x2a,0x6d,0x1a,0x4d,0x5c,0xed,0x17,0x97,0x02,0x67,0x8d,0x27,0x48,0xd9,0x58,0xc0,
+  0xdf,0x26,0x72,0xa9,0xb8,0xb2,0x02,0xfc,0x5d,0x2e,0x05,0xc7,0xd3,0xb0,0x33,0xa2,
+  0xe3,0x3d,0x11,0x42,0x40,0xf1,0x68,0xa8,0x32,0xcb,0x7c,0x99,0xcf,0xfc,0x7d,0xe1,
+  0x8e,0xa5,0x1d,0xaf,0x5d,0xb7,0x28,0xd0,0x52,0xc0,0x80,0x91,0x8c,0x48,0x84,0x33,
+  0x9f,0x19,0xaf,0x5a,0x23,0x97,0xc3,0xcd,0x15,0xa5,0xb9,0xaa,0x07,0x0b,0xb7,0xa7,
+  0x6f,0x56,0x1c,0xcc,0xd2,0xf1,0x8e,0x48,0xad,0x0c,0xc4,0x87,0x18,0x5b,0xff,0x0f,
+  0x70,0x7e,0x3e,0xfb,0xf5,0x0f,0xbf,0xfa,0xbe,0x1a,0xf6,0xa3,0x4f,0xbe,0xba,0x8e,
+  0xe1,0x7d,0xfa,0x6e,0xbd,0x2d,0xaf,0x6c,0x5d,0xd8,0xf1,0xe8,0x79,0xbb,0x8e,0xef,
+  0x80,0x1d,0x10,0x22,0x45,0xb2,0x55,0xb0,0xeb,0x24,0x91,0xe7,0x40,0x1b,0x10,0xb3,
+  0xe0,0x68,0x4c,0x07,0x83,0x20,0xd2,0xd0,0x2e,0xd8,0x97,0xb6,0xf6,0x0d,0x09,0xa2,
+  0x17,0xec,0x8b,0xa2,0xc6,0x33,0xb4,0x82,0x51,0x30,0xdf,0x36,0xe5,0x87,0x53,0x6b,
+  0x25,0xa6,0x16,0x15,0xed,0xcf,0x17,0x49,0x66,0xc1,0xae,0xfb,0xf2,0x9d,0x76,0x5d,
+  0x51,0x07,0xbf,0x03,0x7a,0xc9,0x3c,0xd9,0x2a,0x38,0xee,0xfb,0x52,0xff,0x1c,0xef,
+  0xfb,0x52,0xff,0xac,0x3a,0x99,0xfd,0x7d,0xb4,0x61,0xf8,0x53,0x28,0x57,0x8d,0xfe,
+  0x95,0x9b,0x7f,0x17,0xc7,0xbc,0xef,0x4f,0xf9,0x72,0xd5,0x2c,0x58,0xdf,0xdc,0x19,
+  0x8d,0x63,0x09,0x2b,0xb3,0x70,0xf9,0xb8,0xb0,0xf7,0x59,0x05,0xf3,0x32,0x76,0xb4,
+  0x1a,0xc7,0x2f,0x83,0xf9,0x9d,0xcd,0x6f,0xb9,0xea,0xeb,0xbf,0xfc,0x33,0xaf,0xf7,
+  0xdf,0xbc,0xed,0xdf,0x71,0x35,0x5e,0xba,0x74,0x49,0x9d,0x52,0xf8,0x7f,0xb3,0xee,
+  0x77,0xb0,0x79,0x90,0xad,0x82,0xe3,0xc6,0xff,0x2b,0x36,0x6f,0xd7,0x49,0xff,0x4e,
+  0x9b,0x2f,0x3f,0x82,0x85,0xe1,0x7f,0xcb,0xe6,0xed,0xf7,0xfd,0x56,0x9b,0x37,0x4d,
+  0x5d,0xd5,0x8c,0x1f,0xfb,0xc7,0x8b,0xff,0xf6,0x7d,0xf0,0x5b,0xfa,0xf7,0xdb,0xc6,
+  0x05,0x1c,0x2a,0xce,0x1e,0x61,0xe5,0xcb,0x3f,0xbb,0xec,0xba,0x62,0xf3,0xff,0x5a,
+  0xdd,0xbf,0x7e,0xb1,0xbf,0xe5,0xc8,0x6b,0xff,0x36,0xbd,0xf2,0xbb,0xde,0x73,0xe5,
+  0xba,0x72,0x5d,0xb9,0xae,0x5c,0x57,0xae,0x2b,0xd7,0xff,0x2f,0x97,0xb6,0x4f,0xf2,
+  0xda,0x3e,0xa9,0xfe,0x47,0xb7,0xe5,0xca,0x75,0xe5,0xba,0x72,0x5d,0xb9,0xae,0x5c,
+  0x57,0xae,0xff,0x88,0x2b,0xc2,0xfe,0x76,0x3f,0x44,0xbf,0x6e,0xfc,0xfd,0x7f,0x21,
+  0x02,0x64,0xda,0x6f,0xff,0x7d,0xed,0xf7,0x5c,0x11,0xc8,0x72,0xf6,0xfd,0x3d,0x99,
+  0xcb,0xdb,0xfa,0xbf,0x00,0x83,0xb4,0x63,0x44,0xd5,0x60,0x00,0x00,
diff --git a/board/esd/pci405/Makefile b/board/esd/pci405/Makefile
new file mode 100644 (file)
index 0000000..12b2fa8
--- /dev/null
@@ -0,0 +1,47 @@
+#
+# (C) Copyright 2000
+# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+#
+# 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
+#
+
+include $(TOPDIR)/config.mk
+
+LIB    = lib$(BOARD).a
+
+OBJS   = $(BOARD).o flash.o
+SOBJS  = init.o
+
+$(LIB):        $(OBJS) $(SOBJS)
+       $(AR) crv $@ $^
+
+clean:
+       rm -f $(SOBJS) $(OBJS)
+
+distclean:     clean
+       rm -f $(LIB) core *.bak .depend
+
+#########################################################################
+
+.depend:       Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
+               $(CC) -M $(CFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
+
+sinclude .depend
+
+#########################################################################
diff --git a/board/esd/pci405/config.mk b/board/esd/pci405/config.mk
new file mode 100644 (file)
index 0000000..83f07fe
--- /dev/null
@@ -0,0 +1,29 @@
+#
+# (C) Copyright 2000
+# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+#
+# 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
+#
+
+#
+# esd ADCIOP boards
+#
+
+#TEXT_BASE = 0xFFFE0000
+TEXT_BASE = 0xFFFD0000
diff --git a/board/esd/pci405/flash.c b/board/esd/pci405/flash.c
new file mode 100644 (file)
index 0000000..32b2a56
--- /dev/null
@@ -0,0 +1,101 @@
+/*
+ * (C) Copyright 2001
+ * 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
+ */
+
+#include <ppcboot.h>
+#include <ppc4xx.h>
+#include <asm/processor.h>
+
+/*
+ * include common flash code (for esd boards)
+ */
+#include "../common/flash.c"
+
+/*-----------------------------------------------------------------------
+ * Functions
+ */
+static ulong flash_get_size (vu_long * addr, flash_info_t * info);
+static void flash_get_offsets (ulong base, flash_info_t * info);
+
+/*-----------------------------------------------------------------------
+ */
+
+unsigned long flash_init (void)
+{
+       unsigned long size_b0;
+       int i;
+        uint pbcr;
+        unsigned long base_b0;
+       int size_val = 0;
+
+       /* Init: no FLASHes known */
+       for (i=0; i<CFG_MAX_FLASH_BANKS; ++i) {
+               flash_info[i].flash_id = FLASH_UNKNOWN;
+       }
+
+       /* Static FLASH Bank configuration here - FIXME XXX */
+
+       size_b0 = flash_get_size((vu_long *)FLASH_BASE0_PRELIM, &flash_info[0]);
+
+       if (flash_info[0].flash_id == FLASH_UNKNOWN) {
+               printf ("## Unknown FLASH on Bank 0 - Size = 0x%08lx = %ld MB\n",
+                       size_b0, size_b0<<20);
+       }
+
+        /* Setup offsets */
+        flash_get_offsets (-size_b0, &flash_info[0]);
+
+        /* Re-do sizing to get full correct info */
+        mtdcr(ebccfga, pb0cr);
+        pbcr = mfdcr(ebccfgd);
+        mtdcr(ebccfga, pb0cr);
+        base_b0 = -size_b0;
+       switch (size_b0) {
+       case 1 << 20:
+               size_val = 0;
+               break;
+       case 2 << 20:
+               size_val = 1;
+               break;
+       case 4 << 20:
+               size_val = 2;
+               break;
+       case 8 << 20:
+               size_val = 3;
+               break;
+       case 16 << 20:
+               size_val = 4;
+               break;
+       }
+       pbcr = (pbcr & 0x0001ffff) | base_b0 | (size_val << 17);
+        mtdcr(ebccfgd, pbcr);
+
+        /* Monitor protection ON by default */
+        (void)flash_protect(FLAG_PROTECT_SET,
+                            -CFG_MONITOR_LEN,
+                            0xffffffff,
+                            &flash_info[0]);
+
+        flash_info[0].size = size_b0;
+
+       return (size_b0);
+}
diff --git a/board/esd/pci405/fpgadata.c b/board/esd/pci405/fpgadata.c
new file mode 100644 (file)
index 0000000..01f2c86
--- /dev/null
@@ -0,0 +1,743 @@
+  0x1f,0x8b,0x08,0x08,0x2c,0x3f,0xee,0x3c,0x00,0x03,0x70,0x63,0x69,0x34,0x30,0x35,
+  0x5f,0x31,0x5f,0x30,0x31,0x2e,0x62,0x69,0x74,0x00,0xed,0x9c,0x0f,0x7c,0x14,0x55,
+  0x96,0xef,0x4f,0xdd,0xaa,0x0e,0x95,0xfe,0x93,0xae,0xfc,0xd3,0x1e,0x45,0xb6,0xd2,
+  0x89,0xda,0x32,0x9d,0xd0,0x69,0x10,0x11,0x43,0xa7,0xd2,0x09,0x4c,0x8f,0x64,0xa4,
+  0xfd,0x33,0x3b,0xbc,0x5d,0x3f,0xbb,0x2d,0xb2,0x33,0xec,0x3c,0x9c,0x17,0x98,0x7d,
+  0xbb,0xcc,0x8c,0x33,0x7b,0xd3,0x09,0x12,0x08,0x23,0xad,0xb0,0x2b,0x3a,0x8e,0xd3,
+  0x40,0x76,0x8d,0x0e,0xee,0x36,0x84,0x91,0x20,0xae,0x14,0x11,0x30,0x01,0x84,0x0c,
+  0xcb,0x8e,0xf8,0x67,0xb1,0xd1,0xa0,0xad,0x46,0x8c,0xc8,0x68,0x80,0x48,0xf6,0xdc,
+  0xaa,0xea,0xaa,0x0a,0xce,0xec,0xdb,0xcf,0xdb,0xf7,0x3e,0xfb,0x3e,0x9f,0x67,0xfb,
+  0xf1,0xe3,0x31,0x37,0x55,0x7d,0xef,0xa9,0x73,0xbf,0xf7,0x77,0xce,0xbd,0x15,0x28,
+  0xf4,0x8e,0xe8,0xff,0x00,0x70,0xf7,0x80,0xd4,0x72,0xef,0x9f,0xcf,0x08,0xdd,0xf8,
+  0xa7,0xb5,0x7f,0x1a,0xaa,0xad,0xf9,0xde,0xbd,0x8b,0x61,0x11,0x38,0xc3,0xdf,0xaf,
+  0xbd,0xf1,0x2f,0x96,0xd5,0xce,0x98,0x01,0xf7,0x82,0x2b,0x1c,0x0a,0x85,0xa7,0x85,
+  0x6e,0x9c,0x16,0x9e,0x01,0x8b,0xa1,0xb0,0xf6,0xc6,0xd9,0xe1,0x19,0xb3,0x6f,0xbc,
+  0x19,0xfe,0x0c,0x20,0xd1,0x31,0x8e,0x9f,0xa7,0x1f,0xfd,0xe6,0xb7,0x43,0x40,0x39,
+  0x00,0x98,0x14,0xe2,0x12,0xec,0xbf,0x05,0x21,0x4e,0xe6,0x80,0xd6,0x57,0x87,0x40,
+  0x65,0xff,0x0f,0x46,0x7b,0x61,0x08,0x64,0xfb,0xff,0x73,0x21,0x50,0x20,0x0e,0x65,
+  0xf7,0x41,0x89,0x04,0x97,0x7d,0x38,0x45,0xa0,0xba,0xf5,0xef,0xb5,0x91,0xcb,0x9b,
+  0xd8,0xe7,0x3f,0xd0,0x56,0xf2,0x3b,0x9a,0x84,0xff,0x5c,0xdb,0xb8,0x04,0x09,0xf0,
+  0x41,0x01,0x70,0xd4,0x34,0xea,0xf7,0xe9,0x6d,0xaa,0xe3,0x12,0x8c,0xcb,0xbb,0x0f,
+  0x07,0x0f,0xf3,0x6f,0xf8,0xdf,0x94,0xc3,0x59,0xef,0xd9,0xb6,0x16,0x68,0xd1,0x7b,
+  0x24,0x9d,0x71,0xef,0x39,0x56,0xb9,0x4f,0x24,0xe4,0x23,0x71,0xdd,0x31,0x7f,0x76,
+  0xfe,0x28,0x91,0x85,0x90,0xd6,0xd6,0x31,0xf7,0xb0,0xd8,0x03,0x81,0x7e,0x6c,0x3b,
+  0x0c,0xeb,0x41,0x56,0x5d,0x21,0xb2,0x88,0xd3,0xaf,0x53,0xcb,0xb7,0xfa,0x76,0xc3,
+  0x54,0x55,0x5c,0x4b,0x86,0xc1,0x05,0x7e,0xd5,0x95,0x21,0x21,0x21,0xa1,0xf7,0xa9,
+  0x7c,0x18,0x2e,0xc2,0x6c,0xb5,0x99,0x96,0x0e,0xc3,0xeb,0x5c,0x58,0xf5,0x66,0x26,
+  0x29,0x82,0x7e,0x5d,0x96,0x7b,0x1e,0xc6,0xe1,0x26,0x75,0xfe,0x20,0x3f,0x06,0x9f,
+  0x41,0xbd,0xda,0x38,0x52,0x3a,0x0a,0xfa,0x75,0x8a,0xb4,0x15,0xaf,0x0b,0xa9,0xee,
+  0x2e,0x3e,0x08,0x87,0x20,0xa2,0x16,0xcd,0xe2,0x07,0x05,0x59,0x6b,0xeb,0x77,0xd4,
+  0xc0,0xce,0x35,0xbc,0x2a,0x66,0xc8,0x64,0xfa,0x8f,0x50,0xa3,0xba,0x46,0xa2,0x67,
+  0xf1,0xf9,0x69,0xf7,0x74,0x34,0x2b,0x3d,0x09,0x59,0x15,0x43,0xa4,0x39,0xb9,0x05,
+  0x82,0xaa,0x73,0x46,0x72,0x14,0x9f,0x2c,0xfb,0x24,0xb8,0x29,0x4a,0x4f,0xea,0xda,
+  0x5c,0x60,0x05,0xf9,0x13,0xee,0xc9,0x74,0x75,0xd6,0xb5,0x82,0x9c,0x30,0xae,0x8b,
+  0x89,0x45,0xf4,0x93,0xb2,0x70,0xce,0x7d,0x15,0x7f,0x1b,0x7d,0x9b,0xd6,0xe5,0x8a,
+  0x66,0xf3,0xc7,0x8c,0xe7,0xa6,0x5c,0xf3,0xbc,0x32,0x1e,0xdf,0xad,0x7a,0x7f,0xcd,
+  0x6f,0x4d,0x8c,0xc7,0xea,0xf7,0x79,0xb7,0xf1,0x83,0x05,0x7a,0x3f,0xbb,0x1d,0x67,
+  0xe0,0x45,0x65,0xf6,0xfb,0xcd,0xd7,0x55,0xb2,0x7e,0xd6,0x65,0xdd,0xbb,0xdb,0xa6,
+  0x1a,0xfe,0x8c,0x15,0x3f,0x0e,0xab,0x2a,0x2a,0x06,0xc5,0x96,0xe4,0x64,0xba,0x4a,
+  0xae,0x56,0x3d,0x2d,0xfc,0x1d,0x86,0x5f,0x54,0x78,0xa2,0xfc,0x91,0x0d,0x37,0x64,
+  0xa7,0xe6,0x48,0x11,0x5d,0x45,0xab,0xb3,0xe2,0x0f,0x49,0x0b,0xe8,0xe3,0x8b,0x95,
+  0x1d,0xe6,0xd6,0x43,0x40,0x75,0xf6,0x92,0x66,0xf4,0x75,0x50,0x2d,0x0c,0x91,0x3b,
+  0x8c,0xe7,0x90,0x2b,0xef,0x86,0xd7,0xe0,0x39,0x5a,0xf4,0x34,0x2f,0x8a,0x07,0x21,
+  0x42,0x27,0xa7,0x2b,0x67,0x1b,0xf7,0x8c,0x41,0x16,0x72,0xe0,0xe7,0x0a,0x29,0xbf,
+  0x09,0x8d,0x08,0x4c,0xa1,0x57,0x3e,0x0c,0xfa,0x75,0xa2,0x74,0x1a,0xce,0xc3,0x4c,
+  0xc5,0x9b,0x69,0xbb,0x0e,0x06,0x20,0xa2,0x78,0x53,0x95,0x7d,0xc6,0x3d,0x29,0x7c,
+  0x1b,0xb6,0x89,0x7e,0xc5,0x95,0x9a,0xf4,0x6d,0x7a,0x1e,0x6a,0xd0,0x20,0x59,0xd0,
+  0x63,0xdd,0xc7,0x55,0x71,0x4f,0xc1,0x75,0x0a,0x9f,0x12,0x16,0xd3,0xa7,0xb0,0xed,
+  0x8f,0x53,0x25,0x07,0x0c,0x9f,0x89,0x42,0x01,0x6c,0x03,0xf9,0x76,0x57,0x19,0x69,
+  0x42,0x23,0xa8,0xfc,0xb1,0x0f,0xfa,0x8a,0x75,0x9f,0xf5,0x7a,0x12,0xd8,0x85,0x19,
+  0xe0,0xa5,0x2e,0x59,0xeb,0x8b,0x97,0xf2,0x67,0x78,0xfd,0x39,0x6c,0xbc,0x66,0x9f,
+  0x78,0xbe,0x21,0x12,0x5f,0x90,0x9a,0xf4,0x77,0xd2,0x79,0x05,0xfb,0x52,0x56,0xfa,
+  0x4e,0x81,0xee,0xb3,0x8d,0x8e,0x21,0xf1,0xf3,0xc2,0x70,0x53,0x73,0xaa,0x71,0x43,
+  0xfa,0x55,0xb9,0x1e,0xfb,0xc9,0xbf,0x63,0xf8,0x73,0x96,0x94,0x95,0x7a,0x1b,0xfd,
+  0x42,0x20,0x99,0xcc,0x4a,0xdd,0x52,0x0d,0xb8,0x28,0x39,0x62,0x8c,0x41,0x74,0xec,
+  0x83,0x6d,0x42,0x5a,0x11,0x4b,0xc8,0x3e,0xf2,0x10,0x17,0x54,0x9c,0xc5,0xa4,0xcf,
+  0x88,0x4f,0x5f,0x79,0x97,0xb8,0x0b,0xfc,0x8a,0x98,0x8a,0x0e,0x01,0x1b,0x83,0x2b,
+  0x13,0x3d,0x50,0xa6,0xfb,0x2c,0x5d,0x3c,0x04,0x1f,0x43,0x58,0x69,0x4e,0x95,0x76,
+  0xc1,0xab,0xe8,0x97,0xa2,0x14,0x9f,0x33,0xe2,0x2c,0xc0,0x6d,0x45,0x9f,0xd5,0x29,
+  0xde,0x0d,0x64,0x08,0x8d,0x48,0x83,0x37,0xc3,0x1f,0x34,0x9e,0x51,0x40,0x4a,0x27,
+  0x46,0xa5,0x30,0x14,0xd1,0x49,0x69,0xca,0xc6,0x57,0x44,0x79,0x67,0xfe,0x3a,0xc7,
+  0x0d,0x18,0xb0,0x7e,0x3a,0x3f,0xcd,0x9f,0x10,0x9f,0x86,0x1a,0x5a,0x94,0x2e,0x71,
+  0x1a,0x53,0x34,0xe0,0x58,0x50,0xbc,0xad,0x5f,0x56,0x9d,0x21,0xd2,0xa0,0x6c,0x81,
+  0xa5,0xea,0x55,0xb3,0xa2,0x6b,0x8c,0xf8,0x4c,0x73,0x93,0x0b,0xb7,0x73,0x15,0xfd,
+  0xae,0x65,0x18,0x96,0x4f,0x92,0x6a,0xf5,0xb1,0xc9,0x44,0x34,0x7c,0xdd,0x2d,0x5e,
+  0x01,0x3b,0x68,0x6d,0xf6,0xb6,0x15,0x2f,0x3d,0x0c,0xef,0xd2,0x39,0xd9,0xa2,0x15,
+  0x9d,0x4e,0x23,0x3e,0xc5,0x6b,0xba,0x8a,0x2f,0xc0,0x94,0x03,0xde,0x67,0xbf,0x93,
+  0x2e,0xbe,0x88,0x5f,0x8d,0xbe,0xee,0x33,0xe2,0x53,0x71,0x5c,0x84,0x91,0xd4,0x9e,
+  0xac,0x77,0x74,0xd2,0x31,0xf2,0x51,0x6b,0x3d,0x1a,0xfc,0xa0,0xe1,0xcf,0xee,0x62,
+  0x0a,0x3b,0x52,0x33,0x70,0x2a,0x17,0xf4,0xa9,0xff,0x0c,0xd5,0xb9,0xce,0x62,0xfe,
+  0x69,0x23,0x96,0x4a,0x60,0x23,0xec,0x80,0x67,0x54,0xec,0xcb,0x60,0xc9,0x4e,0xa8,
+  0xee,0x77,0xb5,0x90,0x7d,0x54,0x1f,0xdf,0xa2,0x32,0x15,0x32,0x50,0xa5,0x1e,0x9a,
+  0xe1,0x57,0x49,0x1b,0xc6,0x27,0x3e,0x87,0xc7,0xda,0xf5,0xe7,0xf0,0x74,0xf9,0x56,
+  0x18,0x85,0x3d,0xaa,0xf7,0x1c,0x3f,0x44,0x76,0xb3,0xbe,0xa4,0xf9,0x33,0xed,0xfa,
+  0x3d,0x53,0x30,0x0c,0x17,0x94,0x17,0xd4,0x05,0x19,0xfe,0x14,0x7c,0xc2,0xda,0x76,
+  0x54,0x66,0x8d,0xf8,0x6c,0x95,0x46,0x60,0x0c,0x59,0xe0,0x1d,0x69,0x3b,0xab,0xbc,
+  0x09,0xd3,0x55,0x6f,0xce,0x29,0x37,0xe9,0x6d,0x0f,0x61,0x9f,0xb6,0x2b,0x9b,0xf7,
+  0x22,0x56,0xd4,0xf6,0x4e,0xc6,0x97,0xad,0x44,0x56,0xf4,0xf8,0xa4,0x8e,0x6a,0xe8,
+  0x55,0xae,0x53,0xe7,0x67,0xfc,0x59,0xd8,0xcd,0xda,0x92,0x24,0x6d,0xf8,0x53,0x14,
+  0x04,0x25,0x23,0xcb,0xfb,0x5c,0xa1,0xa8,0xda,0xbe,0x45,0x91,0x4f,0xb8,0x52,0x52,
+  0xd2,0x78,0x0e,0xd4,0xb3,0x04,0x46,0x83,0x37,0xa9,0x0b,0x7e,0xcb,0x67,0xd3,0x17,
+  0x95,0xed,0xaa,0x77,0x25,0x9f,0x26,0xfa,0x3d,0xd3,0xd7,0x8c,0xb4,0x8f,0xc1,0x9e,
+  0x7e,0xef,0xd9,0xd2,0x6c,0xfa,0x4d,0x88,0x0c,0x7a,0xd5,0xc6,0x25,0x46,0x7c,0xaa,
+  0xdc,0x18,0xf2,0xb3,0x3e,0xe4,0x1d,0xe0,0x17,0xc1,0xd8,0xca,0xf0,0x29,0xef,0x59,
+  0x3e,0x64,0xf2,0x73,0x5c,0xd8,0x73,0x3b,0x86,0x25,0x21,0x90,0x7e,0x2e,0x80,0xfc,
+  0x5c,0x96,0x34,0xf9,0xe9,0x38,0xac,0xf4,0x04,0x82,0x1d,0xe8,0x2a,0x85,0x4d,0x1a,
+  0x75,0x7e,0x98,0xf8,0x2d,0x7e,0x4a,0xbb,0x31,0x4c,0x70,0x7c,0x01,0xd8,0xa5,0x4c,
+  0xe0,0xa7,0xa2,0xf1,0x33,0x22,0x7a,0xbb,0xda,0xb0,0xc3,0x80,0xfd,0xcc,0xdc,0x2b,
+  0x4d,0xe0,0x67,0x7d,0x8b,0x37,0xcb,0x8f,0x88,0x97,0x90,0x9f,0xeb,0x46,0x5c,0x16,
+  0x3f,0xff,0x01,0xaf,0xdb,0x9e,0xc2,0x50,0xa8,0x66,0xfc,0xdc,0xbb,0x2e,0xc4,0x4b,
+  0x26,0x3f,0xeb,0xa4,0x3d,0xe8,0xaa,0xce,0x0c,0x09,0x42,0x27,0xc2,0xb9,0x73,0x84,
+  0x84,0x2d,0x7e,0x42,0x0f,0x54,0x31,0x04,0x08,0xd0,0xc1,0x9e,0x6d,0xc8,0x39,0xcb,
+  0xf0,0xa7,0xcc,0x4d,0xb9,0xab,0xa7,0xfd,0xda,0xae,0x3f,0x8e,0x91,0x2b,0x60,0x55,
+  0xea,0x86,0x53,0xc8,0x4f,0xd1,0xce,0x4f,0x3a,0x63,0x89,0xf7,0x2a,0x17,0x9f,0x54,
+  0xd3,0x75,0x39,0x6f,0x88,0x2f,0xb1,0xf8,0x19,0x1f,0x17,0x67,0xaf,0xf4,0x7e,0xcc,
+  0xe7,0x94,0xcf,0xcb,0x90,0x9f,0x23,0x6d,0x16,0x3f,0x3f,0x4a,0x1f,0xda,0x1a,0x8a,
+  0xba,0x23,0x7c,0x11,0x55,0xfb,0x43,0x59,0xf7,0xf6,0xb6,0xf7,0x2d,0x7e,0xd2,0x55,
+  0xfe,0x0a,0x55,0x4c,0x24,0xcb,0xe4,0x55,0x80,0xc6,0x72,0x72,0xcc,0xe2,0xa7,0xda,
+  0x46,0x2b,0x13,0xbe,0x13,0x24,0x02,0x0f,0xd2,0x8a,0xac,0xb8,0x82,0x8c,0x58,0xfc,
+  0x84,0x36,0x48,0xf7,0x8b,0x37,0x13,0x2f,0xb4,0x49,0xf2,0x5e,0x5c,0x0c,0x8e,0xd9,
+  0xf8,0x79,0x10,0xc2,0xd4,0x9d,0xe6,0x03,0xf2,0xc1,0xd6,0x30,0x5d,0x9b,0xe6,0x2f,
+  0x98,0xfc,0x3c,0xe5,0x1b,0xd5,0x50,0x55,0x9a,0xad,0x32,0x8c,0x63,0x26,0x3f,0x35,
+  0x04,0xa8,0xee,0x0c,0xaf,0x3d,0x10,0xc6,0x25,0x93,0x9f,0xc2,0x9f,0xb5,0xef,0x42,
+  0xac,0x88,0xa9,0x45,0x43,0xb0,0xeb,0x32,0x7e,0x3a,0xaa,0xf0,0x47,0x41,0x6c,0x23,
+  0x66,0x9b,0xc5,0x4f,0x01,0xb6,0x29,0xc1,0xb8,0x58,0x46,0xf6,0x33,0x43,0x41,0x90,
+  0xf6,0x71,0xba,0xcf,0x90,0x9f,0x22,0xeb,0x82,0x9b,0xde,0x9b,0x05,0x66,0xac,0xb3,
+  0xf3,0x73,0xbf,0xc8,0xb0,0x39,0x2d,0xc5,0x0f,0x49,0xe7,0x59,0x5f,0x36,0x34,0xe6,
+  0xf9,0xe9,0x73,0x60,0x3f,0x13,0x91,0xb8,0xfb,0x21,0xfe,0x34,0x7c,0x2c,0x21,0x3f,
+  0xff,0x96,0x3f,0x60,0xf2,0xf3,0x94,0x94,0x69,0xa8,0x11,0x45,0xea,0xcf,0x0a,0xbd,
+  0x32,0x06,0x6a,0xf2,0x0e,0x8b,0x9f,0xd8,0x85,0x70,0x30,0xb6,0x04,0xf9,0x09,0xdb,
+  0x68,0xb0,0xc1,0x75,0x85,0xc5,0xcf,0xe2,0x2e,0xd6,0xf5,0x26,0x71,0x83,0x39,0x86,
+  0xe8,0x01,0xc3,0x67,0xe9,0x72,0xcd,0x2f,0x8a,0x3b,0x55,0x39,0x44,0xb5,0xbe,0xa4,
+  0x4a,0x73,0x46,0x7c,0x22,0x3f,0x65,0xed,0x47,0x0f,0x55,0xbe,0x13,0x3b,0x5f,0xa5,
+  0xf9,0xec,0xa0,0x11,0x9f,0xc8,0x4f,0x16,0xce,0x6c,0x59,0xc8,0x42,0x3f,0x84,0x71,
+  0xa0,0xfc,0x41,0x8b,0x9f,0x55,0xcf,0x15,0xf8,0xa9,0x2b,0x4d,0x46,0xe1,0x24,0xf8,
+  0xa9,0x98,0x26,0x07,0x0d,0x9f,0x05,0x1c,0xdf,0xc0,0xf8,0xf4,0x33,0xf9,0xa1,0xeb,
+  0x10,0x7c,0xb6,0x07,0x2d,0x7e,0x4a,0x3b,0x37,0xdf,0xc3,0x98,0x75,0xf2,0xe1,0x47,
+  0xd2,0x18,0x13,0x2d,0x25,0x39,0x93,0x9f,0x53,0x94,0xcf,0xb2,0xb5,0xef,0x7b,0x7f,
+  0xd0,0x38,0xae,0xbe,0x92,0xae,0xcd,0xba,0x7f,0xcc,0xbf,0x6f,0xf2,0x73,0x6b,0xea,
+  0xa2,0x12,0x79,0xc3,0xfb,0x2c,0x3e,0xdb,0x0f,0x12,0x75,0x38,0xc7,0x4c,0x7e,0x82,
+  0xe3,0x53,0x38,0xaa,0xf6,0x20,0x36,0x2b,0x23,0xd2,0xd1,0x13,0x91,0x21,0xf7,0x28,
+  0x0f,0x26,0x3f,0xdb,0xa1,0x33,0x83,0x52,0x28,0xe3,0x9f,0x02,0x6d,0x74,0xda,0x90,
+  0x67,0x84,0x4c,0xcd,0xeb,0x1e,0xa0,0x0a,0x86,0xec,0x3e,0xec,0xcb,0xe4,0xec,0x23,
+  0x30,0x4d,0x15,0x97,0xe1,0xb7,0xe9,0xe3,0x93,0x91,0x9f,0x9d,0x20,0x9f,0xea,0x0c,
+  0x91,0x22,0x69,0xbd,0xa2,0xad,0xef,0xa2,0xf1,0x1c,0xba,0xcb,0xbb,0xc9,0x51,0x98,
+  0xde,0x8f,0xfc,0xac,0x83,0x37,0x3b,0x30,0xe0,0x46,0xf8,0xfc,0x3d,0x29,0x9c,0x62,
+  0xa1,0xd7,0xbf,0xa0,0xb7,0x0d,0xfb,0xc9,0xf8,0x99,0x99,0x94,0xe7,0x27,0x27,0x9d,
+  0x54,0x8e,0x6a,0xfc,0x2c,0x1d,0x13,0xc7,0xdd,0xc8,0xcf,0x16,0x1e,0x0c,0x7e,0xb6,
+  0x0a,0xdf,0xa1,0x9d,0xc4,0x8f,0xfc,0x2c,0x19,0xd6,0x19,0x99,0x89,0x5a,0xfc,0x0c,
+  0x60,0x5f,0xae,0x63,0xc8,0x19,0xd6,0x1d,0x9b,0x21,0xb2,0x19,0x9f,0x00,0x9d,0x21,
+  0x1c,0xdf,0x0c,0x72,0xd8,0xdd,0x23,0x22,0x3f,0x43,0x84,0x18,0xf1,0x09,0x9e,0x25,
+  0xca,0xd1,0xc0,0x4d,0xc7,0xbd,0xe7,0x1a,0x3f,0x57,0xc7,0x95,0xed,0x83,0xde,0x11,
+  0x1e,0x8c,0xf8,0x44,0x7e,0x76,0x5c,0x94,0xeb,0xfb,0x17,0x8c,0x34,0x1e,0x8e,0x5d,
+  0x0c,0xd4,0x63,0xdb,0xbd,0xb9,0x3c,0x3f,0x1d,0x27,0xc9,0x21,0x44,0x95,0x63,0xf4,
+  0xce,0xb3,0xd2,0xb8,0x18,0xae,0x2a,0xea,0xe5,0x47,0x0c,0x7f,0xaa,0xd2,0x19,0x0c,
+  0xf3,0x69,0xc7,0xc5,0xed,0x24,0xd7,0xbd,0x47,0xf6,0x8b,0xf3,0x7b,0x71,0x4e,0xeb,
+  0x63,0xe8,0x77,0x0c,0x43,0x1b,0xc7,0x70,0x94,0xdc,0x47,0xb7,0x88,0x32,0x60,0x5f,
+  0xce,0x5a,0xfc,0xe4,0x3a,0x51,0x06,0xae,0xc9,0xe0,0xb4,0xeb,0x71,0x6c,0x6e,0x9d,
+  0x9f,0x21,0x23,0x86,0xcf,0xa4,0xf2,0x03,0x9a,0x7c,0xc4,0x47,0x9a,0x45,0x9f,0x85,
+  0xab,0xa6,0x64,0x26,0xa9,0x90,0xe7,0xe7,0xb3,0x14,0xf9,0xa9,0x7a,0x46,0x50,0x7f,
+  0xa2,0x01,0x0b,0x46,0xf8,0x51,0xe3,0xba,0xb8,0xd4,0x05,0x6f,0xc2,0x4c,0xb5,0x99,
+  0xcd,0x77,0xbc,0x81,0xb2,0x20,0xc3,0x59,0xfa,0xb3,0x4a,0x5c,0x07,0x95,0xb8,0x08,
+  0xa2,0xcf,0xd6,0x31,0xfd,0x99,0x29,0xf9,0xd4,0xc6,0xcf,0xf5,0xe8,0x4f,0x39,0x44,
+  0x54,0xd0,0xd6,0x46,0xec,0xa7,0xe1,0xb2,0x11,0x2e,0xa2,0x3c,0x92,0x92,0x87,0x10,
+  0x55,0xaf,0x01,0xd3,0x7c,0xc8,0xcf,0x31,0xa3,0x2d,0x26,0xba,0xe1,0x9f,0xd3,0x33,
+  0x54,0x77,0x08,0xd7,0xcd,0x17,0xa1,0x2e,0xe0,0xbd,0x85,0x3f,0x56,0xa0,0xb7,0x29,
+  0xd7,0x6c,0x85,0x77,0xe7,0xe2,0x18,0x46,0xd0,0x55,0xd8,0xcf,0x0d,0x38,0x98,0xc1,
+  0x02,0xbd,0x2f,0xdd,0xe8,0x97,0x57,0x94,0xd9,0x07,0xd1,0x8d,0x7e,0x7a,0x28,0x51,
+  0x97,0x43,0x40,0xf5,0x19,0xe3,0xeb,0x67,0xfa,0x73,0xf1,0x96,0x7e,0x71,0xa4,0x64,
+  0xb2,0xbc,0x2a,0x56,0xad,0x8a,0x2d,0xb0,0xdc,0x98,0x7f,0x54,0x79,0x01,0x1e,0xa1,
+  0x5f,0x1d,0x22,0xa8,0x85,0x61,0x55,0x7a,0x5a,0xc2,0xb9,0x82,0xf4,0x4f,0xe0,0xa7,
+  0x9f,0x4d,0xad,0x05,0x6c,0x0c,0x27,0x50,0xac,0xbc,0x66,0xf1,0x93,0xbe,0x26,0xcc,
+  0xa6,0xce,0x74,0xe9,0x77,0x3b,0x50,0x7f,0xa6,0x8a,0x90,0x9f,0xf9,0xeb,0x50,0x7f,
+  0x8e,0x68,0xd8,0x74,0xa5,0xfd,0xcc,0xb8,0x86,0xa2,0xde,0xd5,0xdb,0x18,0x3f,0x5f,
+  0x4d,0x87,0x15,0x67,0x0a,0xfd,0xf9,0x2a,0x84,0xd5,0x05,0x8c,0x9f,0x7a,0x1b,0x15,
+  0x9a,0x60,0xb5,0xe0,0xcf,0x33,0xd2,0xaf,0xf3,0x53,0xff,0x20,0x3f,0xc9,0xa3,0xf8,
+  0xa3,0x00,0x6b,0x7b,0x14,0x9e,0x56,0x27,0xf0,0xb3,0x0a,0x5a,0x21,0xad,0xf1,0x53,
+  0xd8,0xa6,0x88,0xf1,0xf9,0x12,0x32,0x4b,0xbf,0x67,0xaf,0x27,0x2b,0x9c,0x20,0x1a,
+  0x56,0x54,0x38,0xc1,0xcd,0xd6,0xf4,0xe7,0xa4,0x3c,0x3f,0x8f,0xc3,0xf9,0xa6,0x48,
+  0xdc,0xc3,0xf8,0xb9,0xab,0x61,0x26,0xe3,0xd2,0x19,0x4b,0x7f,0xc2,0x87,0x70,0x53,
+  0xdc,0xb3,0x81,0x1f,0x82,0x01,0x39,0xa2,0xac,0x4d,0x95,0x9e,0xb1,0xf4,0xa7,0xd0,
+  0xa1,0xf8,0xa5,0x18,0x25,0xd9,0x74,0xf7,0x92,0x1a,0xa7,0x48,0xb1,0x2f,0xba,0x5f,
+  0x62,0x78,0xdd,0x26,0xa5,0x6a,0x61,0x61,0x89,0x7f,0x08,0xc5,0x4c,0x40,0x99,0x2a,
+  0x91,0xfc,0xda,0x81,0xfa,0x13,0x56,0x6b,0xfa,0x13,0x86,0xe4,0xa7,0x20,0xb8,0xd0,
+  0x89,0x63,0x70,0xe8,0xcf,0x21,0x5d,0xd6,0x0e,0xef,0xa1,0x2e,0xf7,0xa4,0x4a,0xf1,
+  0xfb,0x60,0x76,0x9c,0xe9,0x4f,0xc3,0x9f,0x4b,0xa0,0x0b,0x74,0xa4,0x92,0x77,0x45,
+  0x34,0x12,0x9e,0x54,0xe3,0x6b,0x79,0x46,0x6a,0xfc,0x9c,0x0d,0x1e,0xca,0x9f,0x12,
+  0xfb,0x21,0x22,0x79,0x6d,0xfa,0x53,0x08,0xc0,0x76,0xba,0xa8,0x3b,0x96,0x2e,0xc8,
+  0x49,0x6b,0x98,0xb0,0x48,0xf3,0x51,0xc3,0x9f,0x01,0x47,0xb3,0xd0,0x43,0xa7,0xaa,
+  0xab,0x43,0xc8,0x82,0x36,0xd4,0x9f,0x6c,0x4e,0x9b,0xeb,0xfb,0x64,0xd8,0x29,0x6e,
+  0x52,0xc5,0xef,0x93,0xb1,0x7e,0x96,0xaf,0x60,0xfe,0x17,0xcb,0x73,0x57,0x9c,0x02,
+  0x9f,0xd1,0xaf,0x66,0x3d,0x2b,0x92,0x27,0x95,0x97,0x72,0x73,0x86,0x50,0x47,0xe6,
+  0x35,0x2d,0xf2,0x13,0xe5,0x5c,0x8d,0xfa,0xe0,0x0e,0xfe,0x30,0x45,0x40,0x0d,0xd8,
+  0xf8,0xa9,0x70,0x97,0xe0,0x43,0x7a,0x4b,0xd6,0xd9,0xcb,0x5f,0x52,0xc6,0xe9,0xf4,
+  0x77,0x82,0xa3,0xfc,0x09,0x63,0x7c,0xdd,0x18,0x9f,0x2b,0x8b,0x31,0xdf,0xfc,0xa1,
+  0xff,0xa4,0xf0,0x0b,0xa8,0xcc,0x89,0x2d,0xe4,0x7d,0xa3,0xad,0x18,0x9e,0x67,0xfc,
+  0x54,0x9d,0xcb,0xc9,0x1b,0xf2,0x4e,0xa8,0xe8,0x2f,0xb4,0xf4,0x67,0xa2,0x8c,0x75,
+  0x5d,0x56,0x03,0x21,0xf2,0x32,0x5b,0x03,0xb2,0x85,0x6c,0x7d,0xd7,0xdb,0x9e,0x43,
+  0xfd,0xf9,0x22,0xca,0xa4,0xa2,0x91,0xd2,0xf1,0xbb,0xc6,0xb9,0x9e,0xac,0x27,0xc3,
+  0x9f,0xa1,0x46,0xcc,0xc3,0x30,0xb9,0xa8,0xb3,0x60,0x58,0xf8,0x11,0x44,0xf6,0x4f,
+  0xc9,0xe0,0x5a,0x95,0xd7,0x9f,0x63,0xf0,0x3a,0x6c,0x1b,0x42,0xdc,0xde,0x8f,0xb9,
+  0xe8,0xf5,0x7b,0xbd,0x23,0x95,0x59,0x53,0x7f,0x2e,0x85,0x43,0xc2,0xd4,0xac,0x98,
+  0x29,0x09,0x1a,0xfc,0x24,0x59,0x93,0x9f,0x4b,0x81,0xc5,0x27,0xce,0x15,0x9d,0xad,
+  0x57,0x67,0xa2,0x59,0xc3,0x9f,0x4e,0x08,0x62,0x7c,0x06,0xb0,0xed,0xe1,0xb5,0x14,
+  0x93,0xe7,0x3e,0x3e,0x54,0xd2,0xd7,0xaa,0xfb,0x2c,0x29,0x2e,0x85,0xd7,0x4b,0xc2,
+  0x8a,0xfb,0xac,0xc6,0x9e,0x9e,0x7e,0xef,0x36,0x2e,0x6b,0xcc,0xf7,0xf4,0xcf,0xdf,
+  0x80,0x8f,0xaa,0xa6,0x35,0xe0,0x7c,0x5f,0xaa,0x8c,0xc3,0xcc,0x3e,0xef,0xd9,0xc6,
+  0xdc,0x03,0x79,0x7e,0x7e,0x98,0x3c,0x44,0x67,0x67,0xbd,0xbd,0x7c,0x8d,0x72,0xa8,
+  0x76,0xfa,0xbe,0xe6,0x1e,0xd4,0x8a,0x79,0x7e,0x7e,0xde,0xda,0xe9,0x86,0x17,0x5d,
+  0xa1,0x35,0x6b,0xe9,0x3f,0x26,0x2a,0xdf,0x88,0x9d,0xbd,0x23,0x44,0xf2,0xfc,0x3c,
+  0x1c,0x6d,0xab,0x08,0xf4,0x5f,0x1d,0x26,0x6e,0x68,0x0b,0xcb,0xfd,0xbe,0xe9,0x24,
+  0x6c,0xf1,0x13,0x98,0xac,0x9e,0x1f,0x2a,0xd9,0xea,0xfc,0x25,0x9b,0xf8,0xa8,0x3f,
+  0x0d,0x4e,0x60,0xfe,0xee,0xec,0x14,0x66,0xa3,0x66,0x2f,0x65,0xf9,0x6d,0x98,0x09,
+  0x20,0x30,0xf5,0xe7,0x56,0x86,0x23,0xc6,0xa5,0xfb,0xe1,0x17,0xf0,0x4f,0x6c,0xf1,
+  0x59,0x61,0xe5,0xef,0x32,0xe2,0x56,0x2d,0xc2,0xeb,0x44,0xbc,0x6e,0x1f,0x82,0xad,
+  0xcc,0x78,0x46,0xaa,0xa3,0x8e,0x74,0xc6,0x17,0x1d,0x9f,0xba,0x9d,0x04,0x93,0xeb,
+  0xe2,0x95,0x6a,0xc7,0x08,0xbf,0xdc,0x88,0xb3,0x9c,0xe3,0x7b,0x0a,0xae,0x8d,0x83,
+  0x85,0x61,0x12,0xa4,0xbf,0x04,0x39,0x87,0xcf,0x76,0xbb,0x11,0x67,0x23,0xdc,0x14,
+  0x69,0x55,0xaa,0x22,0xe7,0xfa,0x21,0x99,0xa2,0xee,0x49,0xe3,0x73,0x1f,0x85,0xfb,
+  0x8d,0x36,0xa6,0x3f,0x0f,0x75,0xc9,0x43,0xde,0x59,0x7c,0x11,0xbc,0x4d,0x43,0xd9,
+  0xea,0xe7,0xb8,0x12,0x93,0x9f,0xcf,0x64,0xff,0x9a,0xfb,0x85,0x5a,0xf4,0x31,0xb2,
+  0x67,0x55,0x28,0xa2,0x4e,0xd9,0x66,0xe3,0xe7,0x87,0x38,0x2c,0x36,0xbe,0xab,0x83,
+  0xd2,0xa1,0xd8,0xcc,0x7d,0x9e,0x67,0xaf,0x26,0x16,0x3f,0x53,0x2c,0x06,0x5d,0x23,
+  0x64,0x32,0xac,0x93,0x37,0xf5,0x89,0xcb,0x93,0xe1,0x3c,0x3f,0xe1,0x09,0x78,0x92,
+  0xde,0xc0,0x10,0xfe,0x27,0xf0,0x64,0xea,0xda,0x6c,0xe1,0x8f,0xfc,0xa2,0xc5,0x4f,
+  0x67,0x9b,0x5e,0x22,0x59,0x4a,0xb6,0x70,0xcc,0x9f,0xce,0xab,0xf2,0xfc,0x2c,0xee,
+  0xc6,0x18,0x9f,0x4d,0xbd,0x69,0xd7,0x12,0x5c,0xee,0x76,0xd2,0x9f,0xa6,0x1b,0x67,
+  0x73,0xfa,0x3d,0x19,0x3f,0x51,0xea,0x71,0x28,0x3b,0xd3,0x64,0xa1,0x66,0xb8,0x8e,
+  0x59,0xfc,0xe4,0x06,0x68,0x18,0x59,0xc0,0x55,0xc1,0xd7,0x53,0xdb,0x15,0xf7,0xc3,
+  0x3c,0xb1,0xf4,0x27,0xbf,0x5a,0xdd,0x8c,0xe8,0x58,0x73,0x2d,0x59,0x0d,0x6f,0xc5,
+  0x3d,0x8f,0x3b,0x65,0xc3,0x2f,0x3e,0x87,0x20,0xb6,0x4a,0xfe,0xb8,0x4b,0x8a,0x76,
+  0xf9,0x37,0x01,0x89,0x43,0xca,0x5f,0x60,0xf2,0xd3,0x23,0xb4,0x29,0x72,0xdc,0x59,
+  0x46,0x56,0xc2,0xa6,0xa8,0x1c,0x2f,0x9c,0x21,0x11,0x53,0x7f,0x2a,0x38,0xc6,0x30,
+  0xc3,0x26,0x85,0x1c,0x4a,0x02,0x37,0xf0,0x35,0x26,0x3f,0x4f,0x6b,0x5c,0x7a,0x30,
+  0xc5,0x2f,0x16,0x5e,0xc5,0x44,0xde,0xbb,0xc1,0xe2,0x27,0x37,0x44,0x07,0xe6,0xce,
+  0x56,0x3c,0x0f,0xf1,0x55,0x30,0x10,0xdb,0xde,0xec,0x4e,0xf1,0x35,0x96,0xfe,0xdc,
+  0x2c,0xca,0x7e,0x08,0x50,0x27,0x6c,0xa6,0xb2,0xdf,0x37,0xf5,0x25,0x67,0x81,0xc9,
+  0xcf,0xe3,0xca,0xca,0x8a,0x1b,0x6e,0xf5,0xdd,0x41,0xca,0x60,0x25,0x54,0x34,0x89,
+  0xf1,0x64,0x89,0xa4,0x8f,0xc2,0x57,0xbe,0x41,0xfc,0x29,0xdc,0xa0,0xf8,0xe2,0x64,
+  0x06,0xfc,0x14,0xee,0x51,0x9c,0x83,0xa4,0xc0,0xf0,0x0b,0xea,0x4f,0x82,0xd8,0x44,
+  0xfd,0x59,0x8a,0x7e,0xc1,0x44,0x1e,0xbf,0x2f,0x90,0xe7,0x27,0xd7,0xa5,0xd7,0x3c,
+  0x90,0xf3,0x68,0x4c,0x51,0xbc,0x12,0x6f,0xe7,0x67,0x3f,0xc7,0xd6,0x87,0xaf,0xca,
+  0xa8,0x3f,0x67,0x4f,0xcc,0xdf,0xa7,0xca,0x6b,0x3a,0x92,0x69,0x94,0x9d,0x53,0x9d,
+  0x6b,0x60,0x26,0x1a,0x57,0xe5,0x4b,0x78,0x01,0xc7,0x6d,0xd0,0x49,0xe5,0x2c,0xce,
+  0xf7,0x1a,0xee,0x97,0xb1,0xad,0xd9,0xd8,0x2c,0x93,0x9f,0x69,0x4e,0x82,0x07,0xe0,
+  0xda,0x3e,0x5f,0x0b,0x99,0x2c,0xff,0x3d,0x7c,0x27,0x2a,0xfe,0x85,0x5f,0x94,0x74,
+  0x5f,0x77,0x8b,0x91,0x82,0x97,0x93,0xd3,0xd3,0x77,0xe7,0x2a,0xaf,0x82,0xd3,0x74,
+  0x4e,0xba,0x68,0xb4,0xd3,0x69,0xc4,0x27,0xe6,0xef,0xc2,0x79,0x8c,0xc1,0x22,0xe4,
+  0x12,0x66,0xfe,0x75,0x0a,0x0a,0x51,0x93,0x9f,0x9e,0x4b,0xca,0x51,0x5a,0xbf,0xd8,
+  0x7d,0xde,0x35,0x13,0x8e,0x26,0xc3,0x43,0xee,0x13,0xbc,0x2f,0xcf,0x4f,0xee,0x31,
+  0xee,0x01,0x3a,0x2d,0x81,0x7a,0xa2,0x0e,0xd7,0x70,0xf9,0x94,0x73,0xd0,0x39,0xd5,
+  0x68,0xf3,0xc1,0x5a,0x58,0x05,0xd5,0x20,0x26,0x30,0xa9,0x6d,0x0d,0xdd,0x40,0xf1,
+  0x97,0x9a,0x8c,0xb6,0x04,0xae,0xef,0xa8,0x97,0x1a,0x70,0x9a,0x2f,0x45,0x40,0x4d,
+  0x55,0x9d,0x19,0x12,0x37,0xc6,0xde,0x8b,0x2c,0x60,0x7a,0x29,0x98,0xe2,0x83,0x28,
+  0xd4,0x9e,0x53,0x31,0x51,0xfa,0xae,0x19,0xf3,0x59,0xb8,0x80,0x6d,0xeb,0x32,0xfc,
+  0x56,0x34,0xae,0x53,0x30,0xb7,0xdf,0x9a,0xe7,0x67,0x6a,0x8c,0x7b,0x19,0xa6,0xa7,
+  0xdd,0x2a,0x3f,0x0b,0x5e,0x91,0xa7,0x53,0x04,0xa9,0xbc,0xd8,0x68,0x6b,0x5a,0x0c,
+  0x4f,0xe1,0xd7,0x4c,0xdd,0x85,0xf9,0xa6,0x93,0xfa,0x95,0xea,0x1d,0xce,0x8a,0x78,
+  0x9e,0x9f,0x6e,0xc6,0x9e,0x7e,0x5c,0xfb,0xab,0xe0,0x67,0xc4,0xaf,0x76,0xb4,0xe3,
+  0xcc,0xcc,0xe7,0xef,0x01,0xf5,0x69,0x08,0x9c,0x70,0x86,0x9d,0xd5,0xd0,0x26,0xa7,
+  0xfb,0x0b,0x81,0xe4,0x9f,0x03,0x5d,0xb9,0xb4,0xab,0xb3,0x36,0xbc,0x71,0x2d,0xef,
+  0xaa,0x80,0xd7,0xa5,0xd0,0x5a,0xf7,0x36,0x5e,0xbe,0xce,0xc8,0xdf,0xcb,0x87,0x99,
+  0x9e,0x3f,0xec,0xed,0x21,0x63,0x1d,0x17,0x13,0x98,0x6f,0x9e,0xe5,0x2d,0xfd,0x39,
+  0x46,0xc7,0xe9,0x4d,0xfd,0x6e,0xb6,0x1e,0x1d,0xa2,0x33,0x55,0x77,0xbf,0x4d,0x7f,
+  0x7e,0xa4,0xec,0xa6,0x95,0x1f,0x07,0x7a,0xc9,0x61,0xda,0x26,0x56,0x1e,0x13,0x3b,
+  0xc8,0x48,0x81,0xc9,0x4f,0xc4,0x7b,0xd5,0x3e,0x91,0xe5,0x1d,0x9d,0x72,0xd5,0x09,
+  0x51,0x9e,0x67,0xd3,0x9f,0x1a,0xfa,0xd1,0x9f,0x87,0x45,0x06,0x52,0x31,0x5d,0x32,
+  0x62,0xf1,0x13,0x35,0x3b,0x7e,0x4d,0xa6,0x94,0xe9,0xc8,0x99,0x6a,0x10,0x05,0xc9,
+  0x84,0xfc,0x7d,0x0e,0xe3,0xe7,0x18,0xd1,0x41,0x7a,0x59,0xfd,0x53,0x5f,0xab,0xf0,
+  0xba,0xed,0xaa,0x9b,0x56,0x1e,0xb7,0xf8,0x09,0xbb,0x85,0x69,0x83,0x4c,0xb3,0x2b,
+  0x9d,0xe9,0x4a,0xf6,0xc5,0x67,0x4d,0x7e,0x36,0x63,0x5f,0x82,0x7d,0x2c,0x3f,0x22,
+  0x9d,0xb2,0x5f,0x8d,0x49,0xa8,0xa1,0x75,0xbf,0x20,0x3f,0x11,0x38,0xd5,0x8c,0x9f,
+  0x27,0x95,0x55,0x98,0x33,0xf7,0xc7,0xc8,0x25,0x41,0x6f,0x63,0xfa,0xf3,0x13,0xa8,
+  0xcb,0x7a,0x67,0xf3,0x47,0xda,0x5f,0x4c,0x6f,0xcf,0x0d,0x87,0x2a,0x8f,0x19,0xf5,
+  0x10,0xcc,0xdf,0xb9,0x71,0x49,0xe3,0xfc,0xb0,0x82,0xc6,0x6f,0xa6,0x9d,0xe2,0x07,
+  0x0d,0x9d,0x8c,0xfa,0x93,0xc3,0x7e,0x1e,0xf4,0xe8,0xfd,0x0c,0x0f,0xba,0x1f,0x6e,
+  0xb4,0xf4,0xe7,0xcf,0xb9,0x9d,0x10,0x1c,0x8c,0xb5,0x90,0x37,0x50,0x27,0x57,0x0c,
+  0x88,0xcb,0x4a,0xce,0x16,0xe4,0x63,0xe9,0x09,0xd8,0xb9,0xb2,0xfa,0xd4,0xd7,0x57,
+  0x44,0x4f,0x02,0xeb,0x8b,0xb8,0xd0,0xae,0x3f,0xa5,0x1e,0xd4,0x13,0x62,0xc8,0x3f,
+  0xcc,0x12,0x25,0x55,0x9c,0x89,0x82,0x39,0xcf,0xcf,0x00,0x8b,0x41,0xea,0x49,0xa3,
+  0x4c,0xd2,0x12,0xf9,0xad,0x6d,0x17,0x0c,0x7f,0x1a,0xfc,0x64,0xa9,0xf2,0x29,0x34,
+  0xea,0x18,0xbc,0x8e,0x19,0xfe,0xd4,0xf2,0x77,0x6e,0x0a,0xca,0x39,0xfe,0x9d,0xe8,
+  0x00,0xe3,0x44,0xa6,0xd4,0xd2,0x9f,0x8b,0x61,0x17,0xa9,0x89,0x7a,0x52,0xe4,0xb4,
+  0x88,0x42,0x2d,0xde,0x71,0x79,0xfe,0x5e,0x93,0xc0,0xf8,0x3c,0xcd,0x44,0x5c,0x3c,
+  0x90,0x21,0x47,0xec,0xf9,0x3b,0xa6,0xc3,0x85,0x12,0xea,0x4f,0xae,0x41,0x8e,0x8b,
+  0x12,0x39,0xe8,0xd0,0x1f,0x3b,0xe6,0xef,0x92,0x9e,0xbf,0xa3,0xfe,0xec,0x87,0x0c,
+  0x33,0xac,0xfc,0xfd,0x74,0xd9,0x79,0x2e,0x72,0xbb,0xd7,0xc8,0xdf,0xe3,0x0b,0x52,
+  0x95,0xef,0x18,0x63,0xd8,0x38,0x77,0x48,0x7c,0x99,0x21,0x20,0xc5,0x9f,0x26,0x03,
+  0x4a,0x78,0xa1,0xdb,0x5e,0xff,0x4c,0x43,0x07,0xb0,0xb2,0x27,0x0e,0x94,0xc2,0x57,
+  0xa5,0x00,0x25,0x47,0x8c,0xf8,0x8c,0x09,0xa7,0xa1,0x95,0x04,0x91,0xf3,0xe4,0x38,
+  0x5d,0x59,0x51,0xd1,0x1c,0x60,0xfa,0x53,0x1f,0x1f,0xcb,0xdf,0x57,0xe3,0x7c,0x77,
+  0xb1,0xfa,0xe7,0x4a,0x04,0xa9,0xb8,0x11,0x75,0xab,0x6c,0xcc,0x95,0x21,0x61,0x80,
+  0x4c,0xd1,0x19,0xb9,0x1a,0xb6,0x2b,0x41,0x56,0xff,0xd4,0xbf,0x6f,0x49,0x43,0x15,
+  0x61,0x35,0x0f,0x83,0x9f,0x5a,0xc1,0xe1,0xd8,0x84,0xfc,0x5d,0xd3,0xd7,0x66,0xfe,
+  0x4e,0x4c,0x7e,0x06,0xe0,0x39,0xf0,0x77,0x23,0x3f,0x73,0xc2,0x41,0xc9,0x9f,0x8e,
+  0xa5,0x89,0xd3,0xcc,0xdf,0x97,0x62,0x9a,0x19,0x60,0xfc,0x1c,0x76,0xe2,0xe2,0x93,
+  0x45,0x11,0xe7,0xb4,0xf2,0x77,0x8c,0xcf,0x3f,0xcf,0x22,0x3f,0x4f,0xc8,0x7f,0x0b,
+  0x15,0x7d,0x22,0xdb,0x7f,0xd0,0xaf,0xeb,0xd6,0xf4,0xe7,0xcd,0x69,0xf7,0x0a,0xfe,
+  0x53,0x78,0x89,0xf6,0x6c,0x46,0xc3,0x4f,0xf4,0xef,0x13,0x3d,0x4c,0x7f,0xce,0x3c,
+  0xe6,0xca,0x94,0x0e,0x91,0xf7,0xb9,0xc8,0x6a,0x6f,0x08,0x73,0x0b,0x63,0x1e,0x39,
+  0x2e,0xc1,0x47,0xa9,0xfa,0x21,0xd4,0x4b,0x97,0xe0,0xe8,0x86,0x9e,0xac,0xfb,0x3c,
+  0x3f,0x68,0xe9,0x4f,0x9c,0x06,0xc1,0x21,0xd7,0x8a,0x68,0x8e,0xae,0xa3,0x15,0x43,
+  0xb1,0x15,0xe4,0x7d,0x43,0x17,0xf8,0xe0,0x71,0x78,0x12,0xf9,0xe9,0x6a,0xf1,0xbf,
+  0xc1,0xa3,0x08,0xa0,0x62,0x4b,0x72,0x9f,0x71,0xdd,0x22,0x2d,0x3f,0x0a,0x2a,0x6c,
+  0x8e,0xe1,0x7c,0x97,0xa9,0x58,0x97,0x7c,0xcd,0x68,0x63,0xfc,0xfc,0x40,0x40,0xcd,
+  0xce,0xe6,0xc3,0x00,0x87,0xeb,0x74,0x2f,0xff,0xbe,0x99,0xbf,0x0f,0x8b,0x17,0x59,
+  0x7e,0x94,0x69,0xcc,0xc1,0x05,0xfd,0x97,0x86,0xcc,0xfa,0xe7,0x30,0xd3,0x52,0x21,
+  0xef,0x08,0x39,0x87,0xaa,0x36,0x1c,0xc7,0xc9,0x66,0x6a,0xd3,0xf6,0xa5,0xb0,0x9b,
+  0xab,0x91,0x31,0x6d,0x1f,0x82,0x83,0x0f,0x61,0x7e,0x94,0x21,0xb9,0xbc,0xfe,0xe4,
+  0x50,0x92,0x12,0x96,0x82,0x22,0x97,0x30,0x3e,0xfb,0x98,0x36,0x35,0xe3,0xd3,0x2d,
+  0xf6,0x54,0x2d,0xdd,0x8c,0xfd,0x1c,0x28,0x69,0x93,0xe5,0xfe,0xf9,0x61,0xd2,0x67,
+  0xc4,0x67,0xd2,0xb3,0x94,0xf5,0xc5,0xbd,0x60,0x27,0xff,0x21,0x0c,0x60,0xfe,0x8e,
+  0x50,0xcf,0xb6,0x19,0xcf,0xe1,0xe7,0x63,0x80,0xfc,0x14,0xbd,0x1f,0xf3,0x63,0x1d,
+  0x1f,0xfc,0x79,0xe4,0x35,0xef,0xb6,0xca,0x5c,0x55,0x9e,0x75,0xe8,0x4f,0xf9,0x26,
+  0x56,0x46,0xfe,0xb4,0x69,0x9c,0x4c,0x97,0xbd,0x03,0x16,0x3f,0xc5,0x33,0xdc,0x9e,
+  0x5f,0xd7,0xf4,0xbb,0x7a,0xc9,0x90,0xb0,0xa7,0x05,0xf3,0x77,0x82,0x79,0xb8,0xc9,
+  0x4f,0xdf,0x16,0x9d,0x4b,0xed,0x5c,0x8f,0x28,0x47,0x5d,0x50,0x60,0xf2,0xd3,0xc1,
+  0xf8,0xa9,0x8d,0x61,0x98,0x43,0x90,0x26,0x3a,0xa9,0x99,0xbf,0x33,0x7e,0x7e,0x80,
+  0xd8,0xd4,0x5c,0xf5,0x23,0x21,0xdc,0xe1,0xfd,0x19,0xb2,0xc7,0xe4,0xa7,0x70,0x51,
+  0xc3,0x66,0xc3,0x6f,0xcb,0x58,0xfe,0xee,0x1d,0xe4,0xf3,0xfc,0xbc,0x4b,0xe3,0x67,
+  0x58,0xbb,0x4e,0xf9,0x44,0x2b,0xdc,0x35,0x5a,0xf5,0xcf,0x20,0xb7,0x47,0x93,0xf1,
+  0x25,0xc3,0xe2,0x1e,0xa8,0xb9,0xcb,0xd3,0x7b,0x6b,0xc8,0xf0,0x99,0x2a,0xb8,0xf3,
+  0xdb,0x5b,0x07,0x30,0x50,0x83,0x20,0x56,0x90,0x15,0x46,0x7c,0x8e,0x00,0xe3,0x67,
+  0x05,0xd3,0x7c,0x27,0x95,0x9d,0xad,0xd3,0x4e,0x15,0xde,0x17,0xfd,0x5e,0xbe,0xfe,
+  0xe9,0x73,0x2b,0x3d,0x52,0x48,0xc5,0xd0,0x3b,0x90,0xfa,0x84,0x8b,0x54,0xb9,0x67,
+  0x37,0xde,0x91,0xaf,0x7f,0x4e,0x66,0x9c,0x1f,0x57,0xbd,0x1f,0x97,0xa2,0xd6,0x2f,
+  0xc4,0x09,0xf5,0x31,0x9f,0x32,0x38,0x28,0xb2,0xf5,0x21,0x16,0xd9,0xcb,0xd6,0x7e,
+  0xf8,0xa0,0x3f,0xfc,0x98,0x57,0xe4,0xf3,0xfb,0x47,0xfd,0xdc,0xe3,0xf0,0xae,0xcc,
+  0xd2,0x76,0xe4,0xe7,0x2a,0x0e,0x85,0xa8,0x92,0x0c,0x1b,0x7e,0x91,0x19,0x3f,0x33,
+  0xf7,0x65,0x31,0x6d,0x3f,0x19,0x58,0x95,0xae,0xd8,0x74,0xf5,0x28,0xde,0x51,0x1f,
+  0xdf,0x12,0xcc,0x8f,0xb6,0x68,0xfc,0x2c,0x38,0xc2,0xb7,0x09,0x69,0xf5,0xea,0x9b,
+  0xa3,0xe6,0xfe,0x51,0x59,0xb7,0xc6,0xcf,0xa2,0x34,0x2e,0x35,0x8c,0x9f,0xde,0x67,
+  0xf8,0x1f,0x9a,0xf5,0xcf,0x34,0x82,0x25,0xa2,0xd7,0xe4,0x0c,0x21,0x6a,0xed,0x1f,
+  0x75,0x61,0x9e,0x8a,0xe1,0x9c,0x6a,0xc4,0x44,0x1e,0x6f,0xee,0xce,0x10,0xab,0xfe,
+  0x59,0x25,0xea,0xf9,0x2d,0xd9,0x2f,0xbd,0xaa,0xd4,0xb0,0x64,0xdd,0xb6,0x7f,0x84,
+  0x6b,0x7f,0x54,0xcb,0xdf,0xe5,0x47,0x45,0x56,0x08,0xf5,0xdb,0xf2,0x77,0x77,0xab,
+  0xa0,0x61,0xf3,0xb4,0xfb,0x21,0x56,0x08,0x9d,0x61,0xd5,0x3f,0xaf,0x49,0x40,0x8e,
+  0x0b,0xe9,0xfc,0x1c,0xd4,0x41,0x9a,0xe7,0x67,0xef,0x35,0x88,0x23,0x25,0xa2,0xac,
+  0x4b,0xf1,0xe7,0xe0,0x7c,0x54,0xab,0x2b,0xe6,0xeb,0x9f,0xbd,0x8e,0x73,0xc5,0xaf,
+  0x8a,0x91,0x26,0x9d,0x59,0x21,0x0c,0x80,0x0d,0xa5,0xf9,0xfa,0xa7,0x0f,0xc7,0xd7,
+  0xab,0x04,0xd9,0xb6,0x51,0x96,0xf6,0xde,0xe8,0x77,0xba,0xfa,0xcc,0xfd,0xa3,0x98,
+  0xd0,0x2e,0xb2,0x2d,0x2c,0x97,0x54,0x70,0x7c,0xd3,0xaf,0xe4,0x8a,0x84,0xeb,0x8f,
+  0xa2,0xc7,0xf2,0xf5,0xcf,0x78,0x97,0xb0,0x8b,0xab,0x51,0xe6,0xa7,0x0a,0x86,0xe0,
+  0x9f,0x60,0x8b,0x72,0xf5,0xaf,0x89,0x59,0xff,0x14,0xba,0x30,0xff,0xd3,0xba,0xc0,
+  0x58,0x1e,0x56,0xfe,0x34,0xd5,0x68,0xf2,0x13,0x7d,0xf6,0x03,0xad,0xad,0xf1,0x1d,
+  0xfa,0x31,0x17,0x51,0xfe,0x20,0xc5,0xbf,0x66,0xe3,0x67,0x3f,0x17,0x81,0x66,0x9d,
+  0x9f,0x38,0x3e,0xd5,0xac,0x7f,0xa2,0xee,0x01,0x96,0xb6,0xc7,0xd2,0x90,0x83,0x5b,
+  0x69,0x4d,0x3a,0xc6,0x96,0x3a,0xc3,0x67,0x0e,0x7d,0x4b,0x50,0xd3,0x21,0x6d,0x34,
+  0x98,0x2d,0x0c,0x98,0xf5,0x4f,0x99,0x9b,0xe2,0x5b,0x05,0xf7,0x0d,0x89,0x2d,0x05,
+  0xbf,0x81,0x55,0xce,0x69,0x9b,0x0b,0x13,0x0f,0xe4,0xeb,0x9f,0x01,0xdf,0x14,0x78,
+  0x85,0xce,0xc9,0x3d,0xbe,0x82,0xbf,0x40,0x0e,0xb4,0xcd,0xc9,0xae,0x5c,0x61,0xab,
+  0x7f,0xae,0x15,0x2e,0x72,0x91,0xc1,0xff,0xc1,0x6a,0x64,0x17,0xa0,0x8e,0x4e,0xb1,
+  0xf2,0xf7,0x84,0x80,0x69,0x7b,0xaa,0x7e,0xa4,0xe8,0x7c,0xe9,0x11,0x78,0x95,0x86,
+  0x17,0x37,0xf7,0x5b,0xf5,0x4f,0x78,0xa2,0x69,0x27,0x4c,0xeb,0xc7,0xf8,0x3c,0x00,
+  0x3f,0x4d,0xf9,0xfd,0x22,0x2d,0x99,0x6a,0xee,0x1f,0x3d,0x0e,0x3b,0x85,0xfb,0xd4,
+  0x5b,0x5b,0xfc,0xa3,0xb4,0xbd,0xa4,0x42,0xc1,0xf5,0x3d,0x5f,0xff,0x54,0x90,0x9f,
+  0x38,0xb5,0x58,0x59,0x3e,0xdb,0x40,0x41,0x96,0x30,0x00,0xcc,0xfa,0xa7,0x83,0xcd,
+  0xdb,0x7a,0xa6,0x85,0xcf,0x30,0xdd,0x33,0x18,0x4c,0xbb,0xf2,0xf7,0xcc,0x48,0x4c,
+  0x4b,0xfd,0x44,0x67,0xc1,0x07,0x18,0xc4,0xa8,0x3f,0xad,0xfd,0xa3,0xb1,0x7c,0x2e,
+  0x3a,0x0a,0x47,0x60,0x5a,0x1f,0xea,0x4f,0xd5,0x96,0xbf,0x1b,0x7c,0xc9,0x12,0xe6,
+  0x58,0xc8,0x98,0xf1,0xc9,0xf2,0x77,0xb6,0x77,0xad,0xb1,0x67,0x35,0x87,0xf1,0x49,
+  0x2d,0x7e,0x62,0xd2,0xd3,0xa3,0x97,0xf0,0xf6,0xcb,0xad,0x72,0x90,0x04,0xc0,0x8c,
+  0x4f,0xea,0x5b,0x2a,0x5d,0x84,0x5b,0x58,0x5f,0xde,0x83,0x7e,0x0c,0x38,0x5c,0xa7,
+  0x55,0x23,0x3e,0x37,0x5f,0x33,0x1c,0x37,0xfa,0xc2,0x36,0xb5,0x18,0x97,0xda,0x6c,
+  0xfa,0x13,0xde,0xa5,0x37,0x35,0xe1,0x75,0xf7,0xd3,0xb5,0x74,0x7a,0xc8,0xbd,0xcb,
+  0xdc,0x3f,0x52,0xa5,0x4b,0xb0,0x1a,0xe5,0xb1,0xeb,0xd3,0xe4,0x1c,0xda,0x41,0xa7,
+  0x76,0x38,0x59,0x1e,0x6e,0xe9,0xcf,0x5f,0x42,0x55,0xcc,0xf5,0x2c,0x69,0x4e,0xac,
+  0x01,0xbf,0xec,0x0a,0x5f,0x9e,0xbf,0x27,0x70,0x0c,0x41,0x1c,0xdf,0x54,0x70,0x86,
+  0x26,0xec,0xbf,0xbf,0x0d,0x33,0x73,0xf8,0x7d,0x4b,0x01,0x13,0xc8,0xaa,0xa2,0x4c,
+  0x25,0x67,0xd6,0x3f,0x9f,0x87,0xcf,0x59,0x3f,0x33,0x8d,0xc3,0xf0,0x79,0xaa,0x3e,
+  0xcd,0xf4,0xa7,0x59,0xff,0x7c,0x5e,0x7a,0x1d,0x73,0x12,0x37,0xe6,0xc5,0xc2,0x41,
+  0x56,0xe0,0xcf,0xd8,0xf6,0xdf,0x27,0xd3,0x4e,0x96,0xd6,0x8e,0x60,0xde,0xb1,0x66,
+  0xb0,0x46,0x89,0x65,0xa2,0xf6,0xfa,0x27,0xf3,0x59,0x0c,0xfb,0x52,0xdc,0xd1,0x50,
+  0xa3,0x40,0x08,0xf5,0xa7,0x31,0xa7,0x51,0x7f,0x7a,0xe8,0xa6,0xac,0xb8,0x22,0xfa,
+  0x04,0x3c,0xd0,0x51,0x9d,0x85,0x89,0xf5,0xcf,0x4f,0xd2,0xb3,0xb7,0xba,0x67,0x35,
+  0xba,0xe9,0xde,0x74,0x84,0x06,0x67,0x35,0x9a,0xf5,0x4f,0xcf,0xe3,0xb2,0xa6,0x3f,
+  0x3f,0x6e,0xbb,0x9f,0xa0,0x91,0x42,0xc7,0x5a,0xf9,0xfb,0xbf,0xca,0x2f,0xc2,0x72,
+  0xd5,0xbb,0x83,0x5f,0x4a,0xbf,0x9e,0x0e,0xc7,0xbc,0x13,0xea,0x9f,0x74,0x25,0xcb,
+  0xdf,0x97,0x91,0x97,0x43,0xab,0xdc,0x68,0xb4,0x90,0xb3,0xe6,0x5a,0xfc,0x44,0x92,
+  0xc9,0x4e,0xd4,0xc2,0x7f,0x02,0x2b,0x69,0xc5,0xa9,0xab,0x2f,0xaf,0x7f,0xca,0x39,
+  0x6d,0x8f,0xa1,0x2d,0x21,0x0f,0x76,0x86,0x0a,0x6c,0xf5,0x4f,0x71,0x0d,0x4c,0x67,
+  0xa1,0xb7,0x04,0x0e,0x2a,0xc8,0xcf,0x74,0xa3,0xbd,0xfe,0x89,0xd8,0x14,0xbc,0xa8,
+  0xcf,0x08,0x1a,0x84,0xe9,0x4f,0x33,0x7f,0xdf,0xc7,0xca,0x7b,0x6c,0x7b,0xb9,0x4a,
+  0x60,0x09,0x96,0xcb,0x5e,0xff,0x5c,0x8c,0x69,0x98,0xc6,0xcf,0x2a,0x26,0xd4,0x2e,
+  0xab,0x7f,0xe2,0x8f,0x02,0xca,0x55,0x12,0x11,0x0a,0x3a,0xbf,0xb8,0x7f,0xb4,0x1a,
+  0xe4,0xdb,0xc5,0x32,0xe2,0xc0,0x1b,0x04,0xe3,0x9d,0x65,0xd1,0xfc,0xfa,0xde,0xeb,
+  0x36,0xd3,0x5a,0x19,0xe1,0x31,0x71,0xff,0xdd,0x73,0x9a,0xe0,0x73,0x1f,0xf4,0x6e,
+  0x70,0x9d,0x86,0x8f,0x59,0x6d,0x3b,0xc5,0x9f,0x11,0xf2,0xfb,0x47,0xe7,0xe0,0x65,
+  0x98,0xdd,0xf4,0xcc,0xc3,0x7c,0xd5,0x56,0xb6,0xe7,0x8d,0x7a,0xd0,0xaa,0x7f,0x9e,
+  0x42,0xfd,0x19,0x16,0xc4,0x64,0x52,0xee,0xd8,0x08,0x35,0x49,0x91,0x26,0xad,0xfa,
+  0xe7,0xbe,0xe6,0x47,0x61,0xaa,0x52,0x58,0x4a,0xda,0xbb,0x10,0xa4,0xb1,0x42,0x9b,
+  0xfe,0xbc,0xbd,0x8b,0x7b,0x54,0x5e,0x84,0xe3,0x73,0x22,0x2c,0xe5,0x60,0x13,0x0e,
+  0xf4,0x40,0x3e,0x7f,0x2f,0xeb,0x22,0xbf,0x16,0x66,0x2b,0x9e,0x14,0xdf,0x25,0x9d,
+  0x97,0x23,0x2d,0xee,0x89,0xf5,0xcf,0xf7,0xd0,0x67,0xc8,0xd6,0xc5,0xf0,0xba,0xa0,
+  0x41,0xd6,0xca,0xdf,0xa9,0x76,0xac,0xc0,0x03,0x38,0xbe,0xfe,0x44,0x98,0x15,0x42,
+  0xcd,0xfd,0x23,0x61,0x2a,0x0e,0x39,0x48,0xc5,0x2c,0x04,0xe0,0x35,0x7d,0xff,0xa8,
+  0xcf,0xf0,0x67,0xc0,0xd1,0xac,0x6c,0xd1,0x8f,0x54,0x34,0x0b,0x3d,0xaa,0xb6,0x7f,
+  0xd4,0x67,0xf2,0xb3,0x0c,0x73,0xe6,0x69,0xaa,0xb8,0xdc,0xf9,0x13,0xfa,0xbc,0x5a,
+  0x39,0x20,0x2e,0x47,0x1f,0xea,0xbe,0x66,0xf5,0xcf,0x77,0x69,0x7d,0xce,0x73,0x81,
+  0xff,0x89,0xf0,0x59,0x47,0xed,0xb0,0xe7,0xaf,0xf9,0x83,0x46,0x0c,0x8a,0x5f,0x69,
+  0x47,0x2e,0x4d,0xe9,0xf3,0x6e,0xe3,0xb7,0x66,0x07,0xa1,0x4e,0x9d,0x64,0xab,0x7f,
+  0x3a,0xce,0xc0,0x45,0x5a,0xff,0x56,0xd1,0x18,0x1f,0x01,0x04,0xe9,0x3b,0x28,0x44,
+  0xcd,0xfc,0xbd,0xf8,0x09,0xda,0x43,0x83,0xfd,0x98,0x9a,0x4f,0x86,0x1e,0xb6,0x1f,
+  0x70,0x01,0xf2,0xf9,0x3b,0xc0,0xe3,0xca,0x4e,0x77,0xf5,0xde,0x5b,0x97,0x17,0x4c,
+  0x86,0x67,0xc5,0xea,0x03,0xae,0xe5,0x44,0x30,0xeb,0x9f,0xc8,0x4f,0x1a,0x3c,0x16,
+  0x0b,0x15,0xb8,0x61,0x3b,0xd5,0x00,0x95,0xd7,0x36,0xdd,0xc8,0x02,0xfc,0x3e,0xb5,
+  0x68,0x84,0xaf,0x63,0x46,0xd6,0x3b,0x32,0x3f,0x60,0xe6,0xef,0x43,0x56,0x4e,0x39,
+  0xaa,0x19,0x95,0x79,0x8d,0xc9,0x49,0x63,0xc2,0x38,0x37,0x53,0x5d,0x37,0x52,0xa9,
+  0x83,0xd4,0x33,0xc2,0xe7,0xeb,0x9f,0xad,0x18,0x9f,0xc6,0xd6,0xd0,0x30,0xf4,0xea,
+  0x62,0xf3,0x94,0x59,0xff,0xd4,0x4b,0xa2,0xf3,0x33,0xd1,0xad,0xb0,0x4b,0xd6,0x21,
+  0x9b,0xcf,0xdf,0x91,0x9f,0xbb,0xe5,0xc4,0x3e,0x57,0xb8,0xe4,0x30,0x6c,0x4b,0x04,
+  0xd5,0x9f,0x4d,0x37,0x9f,0x03,0xac,0x5d,0x4a,0x2f,0x06,0xa6,0x0f,0xa2,0x14,0x7a,
+  0x1e,0x46,0xab,0xea,0x0f,0x7e,0x63,0x64,0x7d,0xb6,0x20,0xbf,0xff,0xfe,0x39,0x8c,
+  0x8b,0x7b,0xd4,0x05,0xd3,0xf9,0x31,0x18,0x4d,0x60,0x3f,0x31,0x7f,0xbf,0x2e,0xcf,
+  0xcf,0x4b,0x30,0xee,0x9b,0xae,0x7a,0x3f,0xa9,0x0c,0x2b,0x63,0xad,0xf5,0xfb,0xdc,
+  0xa3,0x13,0xf6,0x8f,0xea,0x13,0x95,0x23,0xae,0xcf,0x08,0xb4,0xef,0xa6,0xd3,0xde,
+  0x70,0xf6,0xda,0xf5,0x27,0x8e,0x41,0x1e,0x44,0x6c,0x8a,0x34,0x03,0x35,0x03,0xe2,
+  0x84,0xfd,0x23,0x69,0x37,0xd9,0x8c,0x5d,0xbf,0x2a,0xa0,0x2d,0x14,0xce,0x8c,0x5d,
+  0x7f,0x8a,0x86,0x8e,0xbc,0x5e,0x1e,0xd5,0x37,0x80,0x27,0xe6,0xef,0xc8,0xa5,0x96,
+  0xc6,0x4f,0x63,0x63,0xf9,0xc5,0x47,0xbf,0x2e,0x6e,0xe8,0x4f,0x94,0xd5,0x39,0x62,
+  0x6c,0x40,0xd9,0xf4,0x27,0xec,0x81,0xca,0xe3,0xae,0x11,0x92,0x43,0x70,0x4f,0xc3,
+  0x2f,0x9e,0x3a,0x73,0x42,0xfe,0x8e,0xfd,0x0c,0x11,0x55,0xa0,0xcc,0xd7,0x21,0x32,
+  0x3b,0xaf,0x3f,0x91,0x9f,0x3d,0x9b,0x2a,0x30,0x5f,0xc1,0xa9,0xb5,0x8a,0x25,0xf2,
+  0xac,0xf0,0xa3,0x5f,0xa7,0xf1,0x33,0xd3,0x92,0xf3,0xde,0xc2,0x1f,0xa0,0xaa,0x54,
+  0x97,0xf3,0xd6,0xda,0xf7,0xdf,0xd1,0x67,0xf5,0x07,0x10,0xef,0xe7,0x62,0xe3,0x4d,
+  0x11,0xb6,0x37,0x68,0xed,0xbf,0x33,0xfd,0x59,0xf7,0x3e,0x0e,0xeb,0xe5,0xaa,0x7e,
+  0x12,0xf9,0x0d,0x1a,0xef,0xdb,0xf6,0x8f,0x76,0xfa,0xab,0x71,0x7d,0x4f,0xbe,0x01,
+  0xed,0xc0,0x0c,0x3b,0x3f,0x61,0x67,0x7a,0x5a,0x4e,0xfc,0x11,0xb9,0x04,0x8f,0x24,
+  0xab,0x73,0x18,0xc4,0x59,0x8b,0x9f,0xa2,0xb6,0xbe,0x67,0xc8,0x87,0x74,0x3d,0x3e,
+  0x77,0x34,0xec,0xfb,0xef,0x17,0xa0,0x9e,0xed,0xbf,0xbf,0x47,0x5f,0xdb,0x5b,0x47,
+  0x83,0xf6,0xfd,0x77,0xe4,0x27,0x67,0xe8,0xcf,0x9c,0x14,0xd1,0xf3,0xf7,0x09,0xfb,
+  0xef,0x4b,0x10,0x01,0xac,0x9e,0xcc,0x36,0x9c,0x6d,0xf5,0xcf,0xc5,0x22,0xcb,0xd1,
+  0x11,0x8d,0x4c,0x88,0xd6,0x34,0x04,0x52,0x7c,0x62,0x62,0xfe,0xce,0xb0,0x59,0xc5,
+  0xad,0xd6,0x36,0xe9,0x89,0x55,0xff,0x14,0xc4,0x6d,0x0a,0x4e,0x9f,0x32,0xbf,0x43,
+  0x64,0xfc,0xc4,0xb6,0xa8,0xb5,0xff,0x8e,0x53,0xa4,0x06,0xd6,0xd1,0x4a,0x19,0x17,
+  0x86,0x3a,0x58,0x4b,0xf9,0x1a,0x33,0x7f,0x1f,0xd2,0xf6,0x8f,0xbc,0x1b,0xe6,0x6b,
+  0x9d,0x8a,0xdb,0xf4,0xe7,0xc6,0x72,0x94,0xa4,0x10,0xba,0x75,0xc1,0x06,0x56,0xff,
+  0x84,0xfa,0x26,0xcc,0x49,0xcc,0xfc,0xdd,0xc7,0xb6,0xdd,0xfd,0x12,0xea,0x4f,0x39,
+  0x7d,0x82,0x4c,0x38,0xbf,0x14,0x63,0xe7,0x97,0x62,0x32,0x3b,0x02,0x50,0x05,0xad,
+  0x34,0xf8,0xdf,0x3a,0x91,0x9f,0x79,0xfd,0xe9,0xe8,0x82,0x6d,0xfa,0xb6,0xd8,0xb5,
+  0xf4,0x51,0x63,0x0d,0xc8,0xeb,0xcf,0x32,0x56,0xe3,0x64,0x75,0x61,0xfe,0x5a,0x18,
+  0x48,0x32,0x96,0x5b,0xfa,0x93,0xed,0x1f,0x91,0x17,0x30,0x7f,0x77,0xe9,0x82,0xd9,
+  0x3b,0x51,0x7f,0xb2,0xfa,0x44,0x33,0x34,0xea,0x45,0x93,0xa0,0x9d,0x9f,0x2c,0x7f,
+  0xaf,0x61,0xf5,0xcf,0x1c,0x33,0x10,0xa4,0xb6,0xfd,0x77,0x6d,0x7d,0xd7,0xf2,0x77,
+  0x66,0x28,0xa2,0x6c,0xd3,0x9f,0x93,0xa5,0x9d,0x72,0xf5,0x5b,0xe2,0x32,0xcc,0x57,
+  0x76,0x42,0xf5,0x62,0x31,0x41,0x72,0x36,0x7e,0x7e,0x46,0xe7,0x74,0xb9,0x7f,0xd8,
+  0xf6,0xa6,0xfc,0x19,0xad,0x5b,0xe2,0x5e,0x62,0xdf,0x7f,0x97,0x2e,0x2e,0x89,0x6c,
+  0xf4,0x6e,0xe7,0x87,0xd9,0xfe,0xd1,0xad,0xb8,0xb8,0x5a,0xfc,0x3c,0x09,0x47,0x57,
+  0xd7,0x2f,0xc6,0x69,0x7e,0x49,0xf9,0x8c,0x4e,0x4f,0xb8,0x73,0xbc,0x64,0xee,0xbf,
+  0x3f,0x1e,0xc5,0x3c,0x3c,0x21,0xd6,0x92,0x23,0x74,0x27,0x5b,0x40,0xbf,0x6b,0xee,
+  0xbf,0x17,0xa3,0xfe,0x5c,0x25,0x55,0x53,0x2d,0x77,0xda,0x03,0xa8,0x3f,0x17,0xe1,
+  0x73,0xd7,0xc7,0xb7,0x04,0xe3,0x13,0xaf,0x6b,0xd5,0x34,0x74,0x4f,0x87,0xcc,0xc6,
+  0xe0,0x33,0xf7,0xdf,0xb7,0x8a,0x47,0x59,0xfd,0x73,0x84,0x1f,0x13,0x2f,0xa6,0x7b,
+  0x14,0x0c,0xd4,0xfc,0x3d,0xd9,0xf9,0xa5,0x8b,0x50,0x97,0xd2,0xf6,0x8f,0xd8,0x19,
+  0x90,0x05,0x69,0x5b,0xfe,0x3e,0x26,0x7e,0x06,0xe1,0x25,0xee,0x11,0x57,0x1d,0x2b,
+  0xea,0x29,0xee,0x2c,0x9f,0xcd,0xe7,0xef,0x4c,0x7f,0x72,0x7e,0x49,0x64,0xe7,0x6d,
+  0x30,0x59,0x57,0xd0,0xb1,0x13,0xf5,0xe7,0xe6,0x28,0xf6,0x85,0x81,0xd4,0x68,0x33,
+  0xe2,0x93,0xe9,0x4f,0x49,0x2e,0xc1,0x36,0x8f,0xac,0xf9,0xda,0xef,0xcf,0xeb,0x4f,
+  0xb6,0x7f,0x34,0x0e,0xe1,0x78,0xf0,0xb7,0x95,0x73,0xd0,0x67,0xf5,0x77,0xb9,0x37,
+  0x6f,0xc9,0xe6,0xf7,0xdf,0x7f,0xce,0xce,0x28,0x61,0xfe,0x7e,0x16,0xfd,0x89,0x80,
+  0x8a,0x79,0x65,0x5b,0xfd,0x13,0xf3,0x77,0x5a,0x9b,0xad,0x59,0x88,0x53,0x6b,0x3f,
+  0xdd,0x96,0xf6,0x58,0xfb,0xef,0x14,0xce,0x88,0xbb,0xa9,0x3f,0x2b,0x6e,0xc4,0x2e,
+  0xac,0x66,0x46,0xaf,0x3f,0xcf,0xcf,0x0e,0x9d,0x9f,0x2a,0x4a,0xf5,0x2c,0x61,0x35,
+  0x8f,0xaf,0x87,0xa2,0x5f,0xa8,0x7f,0xa6,0x4a,0xde,0x82,0x4e,0xba,0xb9,0x43,0xb4,
+  0xf1,0xd3,0xc1,0xf2,0xf7,0x8c,0xaa,0x95,0xb1,0xf6,0xa6,0x43,0x49,0x8f,0x8d,0x9f,
+  0xc5,0x1a,0x3f,0x15,0xcf,0x31,0xcc,0xe3,0x50,0x90,0xbc,0xc5,0x0a,0xa1,0x92,0xf1,
+  0xdc,0xf5,0xfa,0xe7,0x5e,0x82,0xba,0x80,0x7c,0x40,0xc2,0x74,0x82,0xfe,0x0c,0x42,
+  0x8f,0xac,0xd5,0xe4,0x2a,0x94,0x4e,0xd1,0xef,0xc3,0xef,0xfb,0xd4,0x96,0xbf,0xa3,
+  0xab,0x72,0x44,0x22,0x5b,0x61,0x0b,0x95,0x53,0x62,0x28,0x3a,0x6a,0xe5,0x47,0xac,
+  0xfe,0xf9,0x8e,0x38,0xea,0x8f,0xc0,0x03,0x74,0x4b,0x3a,0xf0,0x43,0xd4,0x9f,0xfa,
+  0x75,0x98,0xbf,0xb3,0xfa,0xa7,0x5a,0x34,0x9b,0x6f,0x87,0xb7,0xa5,0x0c,0x75,0x4f,
+  0x38,0xff,0xc9,0xfa,0xb9,0x17,0xd7,0xaa,0x73,0x70,0x09,0xf6,0x50,0x76,0xfe,0x93,
+  0xe8,0xfd,0x14,0x71,0x7c,0x9f,0x40,0x88,0x1d,0x4f,0xd5,0xce,0xa9,0xd2,0x05,0x99,
+  0x52,0xdb,0xf9,0x25,0x9c,0x06,0x18,0x7a,0x2d,0xac,0x3e,0x0f,0xd5,0x76,0xfd,0xa9,
+  0xe5,0xef,0xb4,0x62,0xc4,0x79,0x3f,0xb9,0x82,0x43,0x96,0xa7,0x5d,0x2b,0xe4,0xac,
+  0x15,0x9f,0x38,0x86,0x34,0xdb,0x53,0xac,0x4a,0x26,0x95,0xe0,0xc3,0x2e,0xdb,0xf9,
+  0x25,0xcc,0xba,0xce,0x62,0xda,0x5e,0x94,0xe6,0x67,0x09,0x47,0x94,0x39,0x19,0xaf,
+  0x8d,0x9f,0x52,0x5a,0x1c,0x35,0xf3,0x77,0x79,0x4a,0xd9,0x04,0x7e,0x6a,0x9c,0x88,
+  0xe1,0x73,0x78,0x17,0xb9,0x34,0x93,0x09,0x51,0x5b,0xfe,0x0e,0xbb,0x24,0xb9,0xc5,
+  0x93,0x22,0xef,0x90,0xd6,0xa4,0x7f,0xa1,0x78,0x79,0xfd,0xd3,0x1f,0xc5,0x1f,0x0d,
+  0xc3,0xea,0x8a,0xeb,0x9a,0x9c,0x97,0x9d,0x5f,0xc2,0x7e,0xb2,0xfa,0x27,0x0a,0xd1,
+  0xa9,0x8a,0x28,0xd9,0xcf,0x2f,0xd9,0xeb,0x83,0x33,0x99,0x10,0x9d,0x90,0xbf,0xe3,
+  0x73,0x47,0x34,0x9e,0x43,0x21,0x7a,0x93,0x3d,0x7f,0x9f,0xe5,0x18,0xc2,0x50,0x98,
+  0xa3,0x78,0x06,0xf9,0x72,0x14,0xa2,0x13,0xce,0x7f,0xfa,0x70,0x7d,0xe8,0x45,0x26,
+  0x8b,0xd4,0x29,0x77,0x74,0xc3,0x44,0x7e,0x42,0xbb,0xc4,0xf2,0xf7,0x1b,0x90,0xf3,
+  0xc9,0x4d,0xdc,0x52,0x4c,0xe4,0x89,0x2d,0x7f,0xc7,0x31,0x7c,0x8f,0xd5,0x20,0xba,
+  0xe8,0x53,0xca,0xf7,0x62,0x76,0x7e,0x36,0xb1,0xbd,0x97,0x88,0xf2,0x0d,0x89,0x2f,
+  0x90,0xdf,0x83,0x48,0x6c,0x92,0xad,0xfe,0xc9,0x7c,0x26,0x46,0x94,0x69,0x1b,0xf8,
+  0xc5,0x22,0x6a,0xd3,0xdf,0xc5,0x4f,0x1c,0x5f,0x85,0x7c,0x42,0x9d,0x4d,0x8a,0xe8,
+  0x84,0xfc,0xfd,0x05,0xa5,0x9a,0x06,0xd2,0xe4,0x16,0x38,0x99,0xe6,0x3b,0x6c,0xe7,
+  0x97,0x58,0xfe,0x9e,0x89,0xe3,0x54,0x0e,0x41,0x11,0x48,0xad,0x6e,0xc5,0x19,0xb2,
+  0xf3,0x13,0x76,0xc0,0x7d,0x8c,0x59,0x37,0x2b,0x1b,0xe8,0xb5,0x69,0x67,0x4b,0x81,
+  0x3d,0x7f,0x3f,0x47,0xe7,0xb0,0xfa,0xe7,0x14,0x7a,0x9c,0xce,0x49,0x14,0xd9,0xf3,
+  0xf7,0xad,0x30,0x2a,0x4c,0xa1,0xde,0x10,0x4a,0xe7,0x11,0x98,0xa5,0x78,0xec,0xf9,
+  0xfb,0x0b,0xdc,0x70,0xaa,0x3e,0xe1,0x3e,0xcf,0xd7,0xc0,0xcb,0xf4,0xaf,0x64,0xfb,
+  0xf9,0x4f,0x64,0xe4,0x0e,0xa8,0x6e,0x17,0x7b,0xc9,0x13,0x74,0x15,0xdc,0x23,0xba,
+  0xd8,0xfe,0xbb,0x31,0x6f,0xb1,0xad,0x0b,0xae,0xa7,0x81,0x11,0x72,0x4d,0xdf,0x33,
+  0x70,0x2d,0x60,0x9b,0x6a,0xe6,0xef,0x6b,0x61,0x3b,0x2e,0x18,0x98,0xda,0xad,0x95,
+  0xb6,0xc8,0x72,0x99,0xcb,0x3a,0x1f,0xc2,0xf2,0xf7,0x1c,0x86,0x97,0x3b,0xb3,0x7e,
+  0xb2,0xf8,0x9e,0x32,0x53,0x42,0x58,0xe6,0xeb,0x9f,0x69,0x49,0x93,0x9d,0xc2,0x02,
+  0xa6,0x89,0x1e,0x65,0xf9,0xbb,0x55,0xff,0xe4,0xe2,0x63,0x65,0x2c,0x55,0xc6,0xb4,
+  0xfd,0xa6,0x92,0x1f,0x43,0x3d,0x41,0x16,0x98,0xfc,0x84,0xa5,0xd0,0xdb,0x11,0x94,
+  0xc5,0x10,0x9f,0x80,0xd5,0xfd,0x35,0x69,0xd7,0xc4,0xfc,0x7d,0x17,0xad,0x49,0x04,
+  0x32,0xb8,0x6e,0xa2,0xe1,0xb3,0xd7,0x3f,0x25,0x37,0xb7,0x8d,0x95,0xf0,0x9e,0x25,
+  0x4d,0x74,0x13,0x1a,0xd8,0xcf,0x7c,0x7e,0x04,0x78,0xcf,0xf3,0xec,0xf9,0xed,0xe0,
+  0x85,0xf4,0x79,0xc2,0x8a,0xb2,0x7c,0x96,0x33,0xf8,0x59,0x3e,0x06,0x3f,0x86,0x39,
+  0xe0,0xdd,0x56,0x7a,0x0e,0x5e,0x61,0xf9,0xfb,0xd9,0x2d,0xf9,0x98,0x50,0x1d,0xe7,
+  0xfc,0x87,0x69,0x24,0xeb,0x19,0x69,0x1c,0x81,0xa3,0xa8,0xf9,0xf0,0x81,0x58,0xf9,
+  0xfb,0x69,0x58,0x43,0x6b,0xb2,0xae,0xcf,0xc9,0x5b,0xcc,0x90,0xd9,0x3e,0xba,0xa9,
+  0x3f,0xf7,0x6d,0x4e,0xeb,0x79,0xc7,0x3e,0x96,0xab,0xb1,0xbc,0x63,0xbb,0xc9,0xcf,
+  0x2e,0x78,0x4a,0xd2,0xa4,0xf3,0x10,0xea,0xc1,0x22,0x15,0x07,0x93,0x31,0x7c,0x26,
+  0x94,0xbf,0x9f,0xc4,0xb0,0x54,0xf1,0x91,0xbe,0xa5,0x6d,0xcc,0xe1,0x04,0x6e,0x37,
+  0xf5,0xe7,0x63,0x77,0xbc,0x49,0x91,0x4b,0x19,0xfe,0xac,0x72,0x89,0x9d,0x5f,0x3a,
+  0xee,0xb2,0xf6,0xdf,0xbb,0xd9,0xb4,0x63,0xb2,0x53,0x60,0x82,0x24,0xbb,0x20,0xe3,
+  0xca,0xef,0xbf,0x9f,0x70,0xdc,0xac,0x14,0x22,0xaf,0xdb,0x46,0x9c,0x55,0xb0,0x3b,
+  0xee,0x3f,0xee,0xfa,0x15,0xd9,0x6e,0xe6,0xef,0x51,0x25,0x05,0x55,0x7b,0x79,0x76,
+  0x24,0xad,0x07,0x02,0xaa,0x6b,0x07,0xcc,0x32,0xf5,0x67,0x09,0x3c,0x41,0x2b,0x98,
+  0xec,0xbc,0x8a,0xdb,0x9e,0xba,0x41,0x46,0xe3,0x79,0x53,0x7f,0x8a,0xe4,0x35,0x98,
+  0x91,0x45,0xd9,0xe9,0xe6,0x3e,0x86,0x59,0xea,0x82,0x90,0xcb,0xd2,0x9f,0x54,0xf9,
+  0x88,0xc9,0xe3,0x73,0xeb,0xc7,0x94,0x8b,0xf0,0xac,0xaa,0x9d,0x5f,0x4a,0x18,0xf1,
+  0x32,0x5c,0x3c,0x20,0x46,0xb2,0x6e,0x56,0x47,0x61,0xe7,0x0b,0x16,0xd8,0xf5,0xe7,
+  0x13,0xb0,0x4a,0x98,0xa6,0x7a,0x96,0x47,0x4f,0x28,0x0f,0xc2,0x0d,0x5c,0xa7,0xc5,
+  0xcf,0x56,0x78,0x42,0x79,0x20,0x39,0x8d,0x1d,0xfb,0x3c,0x22,0xfc,0x94,0xde,0xc3,
+  0x8a,0xb2,0x96,0xfe,0x3c,0x02,0x6d,0x32,0xf3,0xb5,0x9f,0x25,0xf2,0x38,0x86,0x59,
+  0x16,0x3f,0xff,0x66,0xf7,0x75,0x07,0xa3,0x11,0xa6,0x3f,0x73,0xe4,0x08,0x4b,0xe4,
+  0xbb,0x6d,0xfa,0x53,0x95,0xf3,0xfc,0x14,0x34,0xa3,0xd5,0xc6,0xcf,0x77,0x99,0x8c,
+  0x57,0xbc,0x1b,0x31,0x64,0xf7,0x42,0x88,0xe9,0x4f,0x8b,0x9f,0xdf,0x26,0x5a,0xda,
+  0xfe,0x37,0xf8,0x6c,0x57,0xc3,0x66,0xc5,0xbd,0xc1,0x6f,0xe7,0xa7,0xd6,0xb6,0xc1,
+  0x3f,0x04,0xab,0x39,0xed,0x20,0x93,0xc5,0x4f,0x2d,0x6d,0xd7,0x6a,0x8e,0x68,0xa0,
+  0x0e,0x99,0x6c,0xe3,0xa7,0x82,0xb9,0xb6,0xd6,0x97,0x91,0xfc,0xfe,0x8a,0xb5,0x7f,
+  0xf4,0x5b,0x6d,0x3b,0xc6,0xb5,0x81,0xc7,0x44,0x5e,0xa9,0x8f,0x17,0x0d,0x5a,0xfa,
+  0xd3,0xf1,0x1b,0x75,0x80,0x61,0xb3,0xa4,0x71,0x88,0x22,0xbc,0xa2,0xde,0xc1,0x52,
+  0x6b,0xff,0xe8,0x2d,0x7d,0xff,0xa8,0x9d,0xbc,0x87,0x20,0x9d,0x66,0xe7,0xa7,0xe2,
+  0xd8,0xbf,0x46,0xeb,0x0b,0x3b,0x8b,0xfa,0x2b,0x5a,0x9d,0x70,0x49,0x49,0x93,0x9f,
+  0xda,0xf9,0xa5,0x1a,0xe5,0x6a,0x16,0x9f,0xff,0x04,0xd3,0x26,0xf0,0xb3,0xfc,0x1d,
+  0x32,0xb0,0x43,0x43,0xe3,0x69,0x38,0x1f,0x47,0x2d,0xbc,0xd1,0xe2,0x27,0xd7,0x95,
+  0x39,0x4f,0x8d,0x6d,0x0e,0xcd,0x78,0xd8,0xc6,0x4f,0xaa,0x18,0xc3,0xaa,0x40,0x7d,
+  0xdd,0x83,0x03,0x6d,0x33,0xf7,0xdf,0x57,0xde,0x02,0x6b,0x58,0xda,0xfe,0x0c,0x09,
+  0xe0,0x3c,0xf2,0xe3,0xe3,0x20,0x4e,0x63,0x1f,0x9d,0x9d,0xff,0x64,0x67,0x2b,0x0a,
+  0x6b,0xd9,0x39,0x16,0xf4,0xfd,0x7c,0x5f,0x89,0xb5,0x7f,0x54,0x87,0x7a,0xbd,0x22,
+  0x5b,0xb8,0x82,0x4c,0x81,0x07,0x3a,0x2a,0xa8,0xeb,0x6e,0xbc,0x81,0x7e,0x1d,0xdb,
+  0x3f,0x7a,0x09,0x75,0x8f,0x67,0x49,0x63,0x11,0xbc,0x48,0x6b,0xd3,0xde,0x13,0xae,
+  0xa9,0x16,0x3f,0x09,0x5b,0xfb,0x1f,0xfc,0xfb,0xb6,0x61,0xb8,0x40,0x90,0x4b,0xd6,
+  0xf9,0x79,0xd5,0xf1,0xbe,0x74,0x94,0xed,0x1f,0x9d,0xe7,0x2f,0x21,0x3f,0xeb,0xbb,
+  0x50,0x88,0x5a,0xfa,0xf3,0x31,0xed,0xd5,0x0d,0xd7,0x0f,0xc8,0x78,0x07,0xe6,0x47,
+  0x0f,0x89,0x67,0x6d,0xe7,0x3f,0x37,0x26,0xb5,0x25,0x3f,0x5e,0x30,0x96,0x5c,0x09,
+  0xd5,0x9b,0x63,0x2d,0x44,0x30,0xcf,0x7f,0xf6,0x2b,0x6d,0x22,0xe6,0x1d,0x12,0xea,
+  0x4f,0xca,0x0a,0x15,0x21,0x53,0x7f,0xe6,0xca,0xb7,0x92,0x43,0x98,0xa2,0x1d,0x65,
+  0x65,0x90,0x43,0xad,0x91,0x06,0x5b,0xfd,0x93,0x55,0x3c,0x2e,0x52,0x4c,0xdf,0xa4,
+  0xc6,0xf7,0xe0,0x02,0xad,0x8b,0x7b,0xbb,0x4c,0x7e,0xaa,0xd2,0x71,0xca,0x70,0xe4,
+  0x3d,0xc5,0xfb,0xe0,0xa5,0xc2,0xf0,0x3c,0x9b,0xfe,0xa4,0xc2,0x7f,0x97,0xd9,0xf9,
+  0x48,0x57,0x17,0xb9,0x01,0x1d,0xbb,0x39,0xee,0xf9,0x07,0x7c,0x90,0x79,0x7e,0xb2,
+  0xf3,0x9f,0x35,0xec,0x08,0x7f,0xa0,0x40,0x2b,0xe2,0x77,0xdb,0xf7,0x8f,0x68,0x9b,
+  0x10,0xec,0x73,0xc1,0x83,0x22,0xa5,0x18,0x9f,0x37,0xc8,0x56,0xfd,0xd3,0x13,0x23,
+  0x9d,0x55,0xd8,0x97,0x24,0x1f,0xa0,0xda,0x7e,0x6a,0x9a,0x37,0xf5,0x27,0xe6,0xef,
+  0x17,0xa5,0x48,0x1f,0xba,0x31,0x17,0x47,0xa8,0x2b,0x45,0xd9,0x09,0xfb,0xef,0x47,
+  0xa9,0xf6,0x1a,0xc2,0x25,0x38,0x0c,0xd3,0xb3,0xeb,0x46,0xf9,0x8c,0xc9,0xcf,0x01,
+  0xda,0xc9,0xf8,0xd9,0x8b,0x5a,0xa3,0x1b,0xfc,0xcc,0xc8,0x9a,0xfc,0xec,0x5f,0x64,
+  0x1c,0xa7,0x1c,0x46,0x47,0x68,0x1b,0x34,0x6f,0x59,0xfc,0x2c,0xe9,0xd4,0xeb,0xbb,
+  0x67,0xe4,0xee,0x0e,0xad,0x50,0x61,0xe5,0xef,0x1f,0x2a,0x46,0xfa,0x7d,0x14,0xfa,
+  0x55,0x76,0x7e,0x9e,0xa7,0x26,0x3f,0x9f,0xcb,0xd7,0x8c,0xc7,0x60,0x8c,0x4c,0xc8,
+  0xdf,0x15,0x69,0x35,0x39,0xa4,0xf3,0xf3,0x34,0xf4,0x2b,0x5a,0x01,0xc0,0xf6,0xfe,
+  0x91,0xd2,0x09,0xec,0x3c,0x2d,0x79,0xa7,0x63,0xb5,0xfe,0x7d,0xd6,0xfb,0x47,0x5f,
+  0x27,0xeb,0xf9,0xaa,0xbd,0xd8,0xbd,0x23,0xd2,0xea,0xb4,0xac,0xce,0xb7,0xf4,0x67,
+  0xa6,0xf8,0x2a,0xf8,0x85,0xb6,0x7f,0x14,0x3e,0x09,0xab,0x32,0x15,0x13,0xde,0x3f,
+  0x8a,0x79,0xaa,0x5e,0x17,0x66,0xa8,0xde,0xd9,0x7c,0x8e,0x0e,0x84,0x32,0x6c,0x23,
+  0xc9,0xd4,0x9f,0x6c,0x4f,0x11,0xc7,0x87,0xb2,0x13,0x03,0x60,0x46,0x64,0x22,0x3f,
+  0x8d,0xf2,0x02,0xd3,0x9f,0x47,0xb5,0xf7,0x03,0x6c,0xfc,0xdc,0x68,0xc8,0x4e,0xff,
+  0x64,0x58,0x45,0x36,0x31,0xfd,0x79,0xcc,0x8c,0xa5,0x3d,0xf9,0x23,0xa8,0x57,0xa1,
+  0xb1,0x89,0x19,0xd6,0xf9,0x79,0x76,0xbe,0x2e,0xc8,0xc6,0xe0,0x84,0xb6,0xb8,0xe6,
+  0x6b,0x2b,0x7f,0xef,0x65,0xe5,0x44,0x56,0xff,0x9c,0x95,0x3c,0x42,0x59,0xfd,0x73,
+  0x62,0xfe,0x6e,0xea,0xcf,0xd8,0x0b,0x13,0xf3,0xf7,0x77,0xc9,0x80,0xb1,0x4f,0x42,
+  0xf4,0x83,0x4c,0x76,0x7e,0xe6,0xcb,0x9e,0x43,0xe2,0xea,0x11,0xff,0xe5,0xe7,0xe7,
+  0x8d,0x36,0xb6,0x6e,0xfa,0x1b,0x26,0xd4,0x3f,0x1d,0x44,0xe7,0x27,0x32,0xab,0x55,
+  0x49,0x33,0xc3,0xae,0x3f,0xfb,0xf5,0xbe,0xa8,0xa0,0x42,0x98,0x9b,0xf0,0xfe,0xd1,
+  0xbf,0x18,0xe7,0x2a,0x31,0xc7,0xfb,0x5c,0x79,0x41,0xdb,0xa0,0x31,0xcf,0xcf,0x7f,
+  0x0a,0x03,0x24,0xc2,0xb4,0xe9,0x6f,0xe1,0x65,0x65,0xbb,0x62,0xcf,0xdf,0xa5,0xb7,
+  0xb3,0xfa,0xfe,0x3b,0xc9,0xa6,0xd6,0x28,0xfe,0xcb,0xf3,0xf7,0x56,0x21,0xd8,0xc0,
+  0xe6,0x34,0x6d,0xbd,0x47,0x6e,0xd0,0xfa,0x62,0xf2,0x93,0xe6,0xc7,0x27,0xb5,0xe2,
+  0xfa,0x30,0x21,0x7f,0xff,0x3b,0xd9,0xf0,0xcb,0x3b,0x30,0xa0,0x68,0x7e,0xb1,0xe5,
+  0xef,0x53,0xcf,0xeb,0xe5,0xd9,0xa1,0xe8,0x79,0xee,0x85,0x89,0xe7,0xe7,0x29,0x31,
+  0xc6,0xf7,0x36,0xd7,0xaf,0x68,0x07,0xe9,0xad,0xf3,0x9f,0x37,0x8b,0x6b,0x48,0x0d,
+  0x9d,0xcf,0xce,0xcf,0x3f,0xd8,0xa1,0x1d,0xa4,0xb7,0xf6,0xdf,0x6f,0x9b,0xd7,0x46,
+  0x8c,0x79,0xb4,0x9e,0x93,0xf1,0x21,0x17,0x38,0x4d,0xfd,0xe9,0xeb,0x30,0xd2,0x94,
+  0xe3,0x45,0x6d,0xac,0x70,0xbe,0xc2,0xe4,0x67,0x40,0x8c,0x24,0x5f,0xa2,0x73,0xb2,
+  0x0b,0x56,0x34,0x5e,0xc2,0xbc,0xb1,0x36,0xeb,0x5d,0xc1,0x5b,0xfc,0x7c,0x5a,0x61,
+  0x75,0xc5,0x05,0x8c,0xf3,0x5a,0x5d,0x31,0x64,0xcb,0xdf,0x2f,0x90,0xa3,0xed,0x38,
+  0xdf,0xcf,0xf3,0x27,0xe1,0xcd,0xf6,0xe9,0x59,0xef,0x0f,0x5c,0xb6,0xfc,0x7d,0x11,
+  0x7e,0x5f,0xd6,0x55,0x4b,0xfe,0x05,0x5e,0x91,0xb4,0xef,0xb3,0xf1,0x93,0xc5,0xee,
+  0x5e,0xd7,0x32,0xff,0x98,0xf2,0x37,0xa0,0xd5,0xee,0x15,0xf3,0xfc,0xd2,0xcb,0x60,
+  0x8c,0x61,0x1f,0x6c,0xd4,0xe3,0x73,0xa1,0x99,0xbf,0x3f,0x92,0x3f,0xef,0xad,0x92,
+  0x57,0xe9,0x76,0x9c,0x9b,0xfc,0x77,0xcd,0x98,0xcf,0x52,0xa3,0xfe,0x79,0x4a,0x30,
+  0x8c,0xb4,0x79,0x7e,0xfe,0x1c,0x39,0xaa,0x1f,0xc1,0xf9,0x84,0x1b,0x60,0x05,0xc6,
+  0x11,0x1b,0x3f,0x13,0xc4,0xe0,0xcb,0xdb,0x65,0x27,0x2e,0x3b,0xff,0xc9,0x2d,0xa1,
+  0x46,0xdb,0x30,0xfc,0xcc,0x68,0x33,0xf3,0x77,0x41,0xc0,0x79,0xd4,0xef,0x9a,0x41,
+  0x86,0x7c,0xeb,0x21,0xad,0xba,0xc2,0x66,0x7c,0x82,0xa8,0xb0,0x7e,0xf6,0x7b,0x77,
+  0xb0,0xf3,0xd0,0x5c,0x58,0xfd,0x83,0xed,0x36,0x7e,0x9e,0x43,0x2e,0x45,0x06,0xd7,
+  0x8d,0x60,0xbe,0xa9,0xd5,0x15,0xb7,0xd9,0xf8,0x79,0x12,0x4e,0x33,0x7f,0x9e,0x40,
+  0xd9,0x89,0xeb,0x51,0xc2,0xbb,0xc4,0xca,0xdf,0xa5,0x61,0x9d,0xe5,0x21,0xe2,0xd6,
+  0x3b,0x9c,0x36,0xf9,0xd9,0xe1,0x18,0xe6,0xb6,0xe8,0xaf,0xf3,0xb8,0xf5,0x73,0xe9,
+  0xb2,0x8d,0x9f,0x6b,0xe1,0x97,0xec,0xd7,0xc3,0xa4,0x06,0x3a,0xe5,0x9a,0x7d,0x78,
+  0x9d,0xc9,0xcf,0xe2,0x77,0x14,0xfd,0x55,0x03,0xee,0xab,0xba,0x63,0xd3,0xb6,0xfd,
+  0xf7,0x1d,0xf0,0xe6,0x3c,0xec,0xde,0x28,0x3b,0xc3,0xca,0xa0,0x9e,0xb5,0xf1,0xb3,
+  0x4b,0x3b,0xee,0xe4,0xde,0xce,0x1b,0xe7,0x46,0xd3,0x2e,0xab,0xfe,0x59,0xc5,0xbb,
+  0xd8,0x99,0xaf,0x1d,0x7c,0xb0,0x84,0x1d,0xfe,0xaa,0xde,0x6a,0x7b,0xff,0xa8,0x49,
+  0x58,0x4f,0xaa,0x98,0x3c,0x1e,0xe6,0xd8,0x42,0x2f,0xca,0xc4,0x7a,0xff,0x68,0x66,
+  0x03,0xe3,0x67,0xe0,0x07,0xe4,0x89,0x28,0x3b,0xaf,0x51,0x38,0x9c,0x34,0xdf,0x3f,
+  0x8a,0x09,0xb0,0x5e,0xc0,0xef,0xab,0x75,0x1d,0xe6,0xb4,0xf3,0x52,0xb2,0xad,0xfe,
+  0xb9,0x43,0xf8,0x48,0x8a,0x30,0x37,0xde,0xaf,0x15,0xc0,0x71,0x3d,0xb2,0xf8,0x39,
+  0x04,0xaf,0x43,0x98,0xe9,0x4f,0xa3,0x9f,0xdd,0xbc,0xf5,0xfe,0xe6,0x06,0xd0,0x5e,
+  0x3b,0x6a,0x21,0x93,0xe1,0x49,0x66,0x24,0x48,0x89,0xf9,0xfe,0xd1,0xb3,0xf0,0xe4,
+  0xea,0x8a,0x6c,0xc7,0x28,0xb9,0x8d,0x9d,0x5f,0x1a,0x11,0x97,0x90,0x90,0xc9,0xcf,
+  0x03,0xb7,0x6e,0xc1,0xc7,0x1d,0xd8,0xe5,0xbf,0x4d,0xd8,0x42,0x37,0x67,0x03,0xb2,
+  0xb3,0xc4,0x56,0xff,0x7c,0x9f,0x6a,0xef,0x1f,0xfd,0xb0,0xe3,0x60,0x7a,0x7a,0x1a,
+  0xd7,0x69,0xfb,0xfb,0x9b,0x1d,0xfa,0xb1,0xcf,0x74,0x1e,0xa4,0xb6,0xfa,0x27,0x37,
+  0x20,0x30,0x3c,0x34,0x0a,0x30,0xa0,0x9f,0x73,0xb4,0xde,0xdf,0x5c,0x0c,0xab,0x15,
+  0x7f,0xdc,0x95,0xe2,0x17,0x2b,0x4f,0xa1,0xe1,0xd9,0x60,0xe3,0xa7,0x40,0x5a,0x45,
+  0x7f,0x14,0x91,0x13,0x04,0x66,0x88,0xa9,0xa4,0x8d,0x9f,0x1c,0x62,0x33,0xee,0xda,
+  0x70,0xeb,0x37,0x60,0x13,0x5e,0x57,0x38,0xe1,0xfd,0x23,0xbc,0x6f,0x88,0x75,0x41,
+  0x06,0xf6,0xba,0x9f,0x1b,0x6c,0xfc,0x3c,0x8e,0x39,0xfa,0x14,0x65,0x41,0x9c,0xff,
+  0x15,0xab,0xdb,0x68,0x8c,0x34,0xf9,0xc9,0xf6,0xb9,0xb4,0xed,0xd0,0xa1,0xf4,0x80,
+  0x54,0xc7,0xfa,0x69,0xbd,0x7f,0x94,0x95,0x3b,0x44,0xcc,0xc7,0x92,0x0f,0x67,0x69,
+  0xb7,0x5c,0x43,0x44,0x35,0x69,0xbd,0x7f,0x74,0x9c,0xa2,0x4c,0x52,0xc4,0x3b,0xc8,
+  0x6f,0xd2,0x2b,0xab,0xaa,0x63,0x62,0xdc,0xc6,0xcf,0x1d,0xe4,0xa7,0xf2,0x34,0x45,
+  0x3c,0x46,0xce,0xc1,0x33,0x12,0x1a,0x83,0x13,0xea,0x9f,0x8c,0x9f,0x41,0xb6,0xdf,
+  0x3f,0x80,0x1a,0xb3,0xce,0xe2,0x67,0x00,0xba,0xf4,0xf7,0x8f,0x36,0x72,0x07,0x14,
+  0xd4,0x9f,0x8b,0x2f,0x7b,0xff,0xa8,0xdf,0xaa,0x4f,0x6c,0x07,0x8f,0xea,0xb2,0xf8,
+  0x79,0x03,0xe6,0xe4,0x9b,0xd9,0xb6,0x51,0x4e,0x64,0xfa,0x53,0xcc,0xd9,0xf8,0x79,
+  0x9f,0xf1,0x6e,0x44,0xc1,0x61,0xa9,0x8d,0xfa,0x59,0x7c,0x5a,0xfc,0xac,0x63,0xa1,
+  0xa0,0x60,0x98,0xbc,0x01,0xab,0x3a,0x2a,0x15,0x71,0x49,0xd2,0xe2,0xe7,0x14,0x38,
+  0x82,0xb2,0xb3,0x79,0xc5,0xf5,0x67,0xe1,0x48,0x6b,0x6d,0xba,0x7a,0xd4,0xe2,0xe7,
+  0x57,0xb6,0x0a,0x17,0x70,0x5d,0x99,0x96,0xfe,0x5a,0x96,0x5c,0xe0,0xb4,0x5c,0xd4,
+  0xc6,0x4f,0x30,0xf4,0x52,0x04,0xe7,0x7b,0x6d,0xd6,0x6d,0xdb,0x7f,0x67,0xeb,0x7b,
+  0xc5,0x7d,0x31,0xd7,0xa9,0xe8,0x64,0xf8,0x57,0xa8,0x88,0x89,0x51,0xf2,0xb4,0x8d,
+  0x9f,0x0f,0x14,0x56,0xb7,0x22,0x36,0x25,0x68,0x87,0x4a,0x1a,0x5b,0x18,0xb5,0xf8,
+  0x99,0x83,0x35,0x49,0x4c,0x87,0x37,0x11,0x8e,0xa6,0x24,0x59,0x16,0x53,0xa4,0xdf,
+  0xe4,0x67,0x17,0x2e,0xcf,0x38,0x57,0x36,0xba,0x6a,0xe0,0x10,0xf2,0x93,0x9d,0xff,
+  0x34,0xf9,0xa9,0x1f,0x03,0xc3,0x98,0x18,0x66,0xc0,0x6f,0x42,0x16,0xd8,0xf8,0xa9,
+  0x1c,0x96,0x30,0x9d,0xfa,0x35,0x2f,0x73,0x67,0x40,0x3b,0xff,0x69,0xbd,0x7f,0xb4,
+  0x18,0x3a,0x38,0x6d,0xb9,0x94,0xd1,0xd3,0x7e,0xc0,0xfc,0xd6,0x7a,0xff,0x28,0xc1,
+  0x8e,0x2d,0xb1,0xd7,0x3a,0x82,0x65,0xbb,0x08,0xce,0x77,0x6a,0xbd,0x7f,0x04,0x50,
+  0xd0,0x0a,0x69,0x65,0x3e,0x20,0xb3,0x76,0x71,0x98,0x1f,0x81,0xf5,0xfe,0x11,0xf2,
+  0x13,0x9f,0x1f,0x5d,0x97,0xe2,0xd9,0xfb,0xc5,0xdb,0xa9,0x5b,0x72,0xd9,0xde,0x3f,
+  0xd2,0xb7,0xdd,0x55,0xcc,0xd1,0xef,0xd7,0xcf,0x05,0xe5,0xf9,0x09,0xfb,0xe7,0x72,
+  0x2d,0xca,0xdd,0xd2,0x4d,0x65,0x9e,0xbd,0x68,0xbc,0x51,0x7c,0xa5,0x70,0x8d,0x5a,
+  0x6b,0xdc,0x73,0x7f,0xd3,0xa4,0x65,0xdc,0xdd,0xca,0x95,0x52,0xf9,0xbe,0x2b,0x97,
+  0xc1,0xdd,0xca,0xb7,0xa4,0x72,0xb5,0x56,0xbf,0x27,0x50,0xc2,0xc9,0x34,0x26,0x97,
+  0x88,0x42,0x32,0x6f,0x18,0xdb,0x71,0xd8,0x56,0xc0,0x25,0xb8,0x85,0x70,0x85,0xe4,
+  0xa0,0x5c,0x02,0x16,0xc2,0x1f,0x42,0xb9,0xd9,0xb6,0x3f,0xe6,0x98,0xce,0xdd,0x4d,
+  0xaf,0x94,0xcb,0xfb,0x1d,0xcb,0xe1,0x6e,0xfa,0x2d,0xd9,0xba,0xe7,0xfe,0xb8,0xf6,
+  0x7e,0xfe,0x3c,0x91,0xbd,0xa8,0xcf,0xf9,0x40,0x00,0x8e,0x9a,0x7d,0x51,0x04,0x99,
+  0x13,0x21,0x2a,0x4b,0xd4,0x34,0xcc,0xb6,0x3b,0xb9,0xdb,0x69,0x5c,0xbe,0x2b,0x50,
+  0xce,0x73,0x4a,0x6b,0x5c,0x2e,0x0b,0x38,0xc0,0xec,0xa7,0x9b,0xbb,0x12,0xbe,0xa9,
+  0x4a,0x2d,0xc2,0x64,0x34,0x14,0xb5,0xbc,0x45,0x30,0xb7,0x14,0x29,0x40,0x29,0x72,
+  0x81,0xa0,0x7f,0xd9,0xb1,0x4f,0x2a,0xe0,0x73,0x33,0xfb,0x99,0x20,0x3e,0x48,0xc2,
+  0x22,0xca,0x8a,0xe1,0x8e,0x24,0x3b,0xd5,0xc6,0x59,0xfd,0x9c,0xb4,0x18,0x5e,0x85,
+  0x3b,0x94,0xb2,0x94,0x63,0x31,0x17,0x83,0xbf,0x54,0xca,0x6c,0xfd,0xe4,0x16,0xe1,
+  0x90,0x67,0x82,0x87,0x8d,0xfd,0x04,0xbd,0x02,0x0d,0xb3,0x2d,0x5a,0x10,0x6a,0x45,
+  0x10,0x8b,0x52,0x5f,0x41,0x88,0xba,0xe5,0x46,0x51,0xb2,0xfc,0x29,0x2a,0x21,0x70,
+  0xb7,0x62,0x30,0xf7,0x4b,0x61,0x46,0x17,0x64,0xaa,0xd9,0x4f,0x57,0x45,0x68,0x6f,
+  0x73,0xa6,0x54,0x14,0x0e,0xe1,0xca,0xd8,0x1c,0xba,0x53,0x14,0xcc,0xb6,0xfd,0x8d,
+  0x8e,0xc4,0xde,0x85,0xa1,0x12,0xb1,0xbc,0xcd,0xd1,0xa2,0xc6,0x42,0x7f,0x28,0x96,
+  0x53,0xb3,0x9f,0x51,0x68,0xc1,0xaf,0x89,0x8a,0x38,0x90,0x44,0xab,0x88,0x5f,0x0c,
+  0x56,0x5f,0xee,0x10,0xaa,0x5a,0xbf,0x22,0x47,0x63,0xc5,0x8f,0xa1,0x21,0xca,0x8d,
+  0x4b,0x8a,0xad,0x36,0xe6,0xfc,0x79,0x10,0xa7,0xe5,0x68,0x70,0x51,0x28,0x4e,0x97,
+  0x2b,0x66,0x3f,0x0b,0xb8,0x06,0x1a,0x4f,0x94,0xf9,0x1c,0x05,0xcc,0xe9,0x89,0xb2,
+  0x59,0x0e,0xcb,0x9f,0x57,0x39,0x04,0xda,0x20,0x97,0xc4,0x84,0x87,0xd1,0x50,0x64,
+  0x09,0x17,0xa1,0x50,0xfe,0x9e,0xf3,0xf8,0xdb,0xe9,0xf1,0xc4,0xff,0xf4,0x79,0xe6,
+  0x91,0xdb,0x5b,0xdf,0x48,0xdc,0xe8,0xf3,0x98,0xf7,0xdc,0x7f,0x9b,0xe3,0xfb,0xf8,
+  0xa3,0x6f,0xf9,0xca,0x0f,0x38,0x96,0xb5,0xde,0x9d,0xf8,0xce,0xac,0x62,0x33,0x06,
+  0xe7,0x16,0x70,0xcb,0xe8,0x89,0xc4,0x5f,0xf9,0x3c,0x07,0x1c,0xf7,0x50,0xfc,0xa5,
+  0x59,0x1e,0xb5,0x38,0xdf,0x36,0xaf,0xa0,0xb6,0xb5,0x39,0xc1,0xfb,0xca,0x0e,0x94,
+  0xd5,0xd2,0xe6,0x44,0xa3,0xaf,0x5c,0x2d,0x36,0xee,0x89,0xb1,0x93,0xc0,0xb0,0x24,
+  0xa2,0x83,0xc5,0xa7,0x28,0x5f,0x89,0xf1,0x69,0x5c,0x06,0x42,0x41,0x71,0x45,0xeb,
+  0xc2,0x44,0x89,0xcf,0xb1,0xce,0x51,0x41,0x17,0x26,0xae,0x98,0xe5,0x30,0xdb,0xe6,
+  0xc6,0x56,0x2e,0x6f,0x68,0xe6,0xee,0x84,0x32,0x95,0x6b,0x11,0x9a,0xe1,0x5b,0x72,
+  0x99,0x79,0xcf,0xb9,0x44,0x8f,0x87,0xbc,0x3f,0x0b,0x02,0x40,0xf3,0x7d,0x69,0x8a,
+  0x0a,0x72,0xab,0x4f,0x9e,0x17,0x28,0x4e,0x4a,0xcc,0x88,0x06,0x8a,0xcd,0xb6,0xb9,
+  0x51,0x4e,0x51,0xcb,0x42,0xdf,0x74,0x97,0xa3,0xb1,0xf7,0x2e,0xf9,0x2e,0x77,0xb9,
+  0x92,0xbf,0x27,0x47,0xb8,0xb8,0x7a,0x97,0x5c,0x1e,0x70,0xdc,0xca,0xc5,0xe9,0x5d,
+  0x21,0x34,0x94,0x7c,0x5f,0xa0,0x50,0x50,0x30,0x30,0x71,0x28,0x1d,0x65,0x0a,0x60,
+  0xe0,0x0b,0x9c,0xd9,0x34,0x37,0x4a,0x08,0xa5,0x72,0x42,0x14,0x93,0x44,0x6e,0xed,
+  0x40,0x68,0x89,0x60,0xf6,0x53,0xd1,0xe6,0x1f,0x9b,0x76,0x0e,0x66,0xfc,0xa5,0x50,
+  0x6e,0xf6,0x05,0xe3,0x33,0x04,0x77,0x03,0x3b,0x20,0x20,0xb0,0x23,0x11,0x57,0x82,
+  0x35,0x76,0xe0,0x0a,0x64,0x87,0x0f,0xe7,0x83,0xd4,0x2f,0xb0,0x37,0x1c,0xe6,0xb1,
+  0xa5,0x2e,0xff,0x91,0xe0,0x7a,0xb9,0x10,0x88,0x02,0xc7,0x95,0x2a,0x28,0x64,0x7f,
+  0xc3,0xc3,0x6a,0xf3,0x70,0xb5,0x7b,0x9b,0x95,0x12,0x49,0x38,0xe0,0xe0,0xa0,0x39,
+  0x7e,0xa7,0x24,0x58,0x6d,0x95,0x8e,0x25,0x0d,0x7f,0x14,0xba,0x62,0x6d,0xf9,0x16,
+  0xc7,0x12,0xf5,0x8f,0x42,0x7f,0xb8,0xb6,0x9c,0xda,0xee,0x79,0x1d,0xde,0x2a,0xaa,
+  0xc0,0x06,0xa8,0xe2,0xb4,0x7b,0x5a,0x6d,0xa2,0x90,0x28,0xf6,0x09,0xf3,0xb8,0x62,
+  0xda,0x84,0x46,0x3b,0x33,0xcc,0x36,0xd8,0x1b,0x87,0xbb,0x84,0x6f,0x72,0xe5,0x4a,
+  0x43,0xbc,0xf8,0x2e,0xa1,0x1c,0x0d,0xeb,0xba,0x8a,0xa8,0x78,0x57,0xb2,0xdc,0xbf,
+  0x32,0xa6,0x19,0x65,0xf2,0x4a,0xab,0x4d,0x3b,0x17,0x92,0xc6,0x05,0xcd,0x59,0x4e,
+  0x28,0xa4,0x25,0xd1,0xba,0x23,0xb8,0xf9,0x3b,0xa1,0x5d,0xbd,0x27,0x54,0xd8,0xc4,
+  0xdf,0xc9,0xb5,0xab,0x37,0xe6,0x4f,0x40,0x6a,0xf7,0x74,0x2c,0xe7,0x26,0x33,0x54,
+  0xf5,0x0b,0xcb,0x11,0x5e,0x7f,0x05,0x37,0x5b,0xe3,0xe3,0x11,0x2a,0x52,0x48,0x70,
+  0x73,0xcc,0x28,0xa9,0x15,0xdc,0x15,0xd6,0x3d,0xeb,0xc7,0x17,0x8c,0xff,0xf3,0xf8,
+  0xb9,0xf1,0xcf,0x4d,0x03,0xfe,0x43,0x9f,0xc8,0x9b,0x0b,0x2e,0xf5,0xbd,0x9c,0xe9,
+  0xf9,0x71,0xe4,0x75,0xd7,0x4c,0x66,0x2c,0xb5,0xdd,0xb3,0x7e,0xc1,0x78,0xe9,0xf4,
+  0x7d,0x87,0x3f,0xaf,0xaf,0x6b,0x3e,0xca,0x8c,0x8f,0x6d,0x6d,0xbe,0xd8,0xc9,0x92,
+  0xda,0xf6,0xb5,0x3f,0xb8,0xc5,0x17,0x3b,0x50,0xba,0x13,0x0d,0xab,0x6d,0x12,0x2c,
+  0x53,0x1e,0x8f,0x5f,0x5f,0x56,0xb8,0x9f,0xb4,0x28,0x8f,0x4b,0xd7,0x0b,0x85,0xd6,
+  0x18,0x84,0x02,0x36,0xed,0x70,0xfe,0xed,0x73,0x30,0xe0,0x33,0xce,0x9b,0x6d,0x05,
+  0x5c,0x05,0x8d,0xe1,0x5c,0x11,0x1e,0x30,0x39,0x6f,0xdd,0x14,0x15,0xc9,0x65,0x7f,
+  0x58,0xc5,0xf2,0x19,0xba,0x6a,0x72,0xea,0x6b,0x72,0xf1,0x11,0x61,0x79,0xc3,0x64,
+  0x8a,0x86,0x75,0x4f,0xd0,0x7f,0x5d,0xfa,0x5d,0xd7,0x95,0x09,0xd7,0x71,0x85,0x34,
+  0x9a,0x90,0x36,0x0a,0x7e,0x4e,0xa4,0x8c,0xf3,0x66,0x5b,0x25,0xcc,0x6f,0x2d,0x49,
+  0x37,0xf5,0x16,0xd7,0x08,0x9a,0xd1,0x5d,0x6c,0x7e,0x9b,0xea,0x46,0x96,0x97,0x51,
+  0x47,0x88,0x6b,0x06,0x36,0x79,0xd1,0x30,0x96,0x54,0x0c,0xd4,0x2b,0xd8,0x04,0x50,
+  0x84,0x38,0x57,0x06,0x0d,0xa0,0x4d,0xa8,0x3c,0x97,0x44,0x55,0x41,0x9d,0x4a,0x11,
+  0x61,0xa2,0x1e,0x7e,0xcc,0xb0,0xda,0x04,0x9d,0x84,0xc5,0xd4,0x34,0x8c,0x36,0x89,
+  0x53,0xb0,0xeb,0x1b,0x59,0xfc,0x52,0x62,0x18,0xf9,0xbf,0xa5,0xa0,0xcc,0xd5,0x39,
+  0x8f,0x78,0x47,0x49,0xaa,0x1b,0x79,0x86,0x28,0xda,0xed,0x75,0xbc,0x5b,0x86,0x71,
+  0x1d,0xb8,0x80,0x2d,0x0b,0x88,0xe9,0xbe,0xbc,0x61,0xb6,0xcd,0x6d,0x14,0x5a,0x18,
+  0x5f,0xc4,0xe2,0xa4,0x90,0xd0,0x0d,0x9a,0xbf,0x27,0x22,0x3a,0x91,0xe7,0x92,0xac,
+  0x1b,0x79,0x9f,0xc5,0x39,0x83,0x4b,0xf6,0xeb,0xcc,0x7b,0x22,0x54,0xd0,0x25,0x73,
+  0xc1,0xf0,0x0d,0x1a,0x51,0xe3,0x9e,0x31,0x7c,0x28,0x0d,0x54,0x4a,0x08,0x3e,0xce,
+  0x34,0xf2,0xbe,0x8e,0xb1,0x79,0xc4,0xf0,0x2e,0x0a,0x28,0x3f,0x74,0x03,0xcc,0x7b,
+  0xea,0x9c,0x47,0xbc,0x9b,0x86,0xc5,0xba,0x79,0xc2,0xb2,0xd6,0xc9,0xf7,0x7c,0xcd,
+  0x57,0x7c,0x80,0x19,0x09,0x34,0xcc,0xf1,0x71,0xf3,0x60,0x19,0x7d,0x3c,0x71,0xbd,
+  0xaf,0xf0,0x00,0x31,0x8c,0x7c,0x5b,0x5c,0xe3,0xfc,0xdd,0xd6,0xfa,0x80,0x46,0x9f,
+  0xe9,0xcf,0x12,0xa8,0xa2,0x5f,0xd7,0xd6,0x1c,0xae,0x6a,0x62,0x7c,0x2a,0x38,0x86,
+  0x0a,0xea,0x4b,0x14,0xf8,0xb8,0x07,0xe0,0x1e,0xdd,0x30,0x63,0x69,0x6e,0xc2,0x11,
+  0xe0,0xa6,0xc0,0xd7,0x68,0x71,0x56,0x58,0xa1,0x1b,0xe6,0x33,0xe2,0xee,0x80,0xc5,
+  0xf4,0x2b,0x72,0x41,0xac,0xe1,0x61,0x34,0x7c,0x72,0x81,0xd8,0x60,0xde,0x53,0xf3,
+  0xa7,0x88,0x6b,0xaa,0x94,0xcc,0x1b,0x96,0x3f,0xa3,0xa0,0xb4,0x4a,0x72,0x93,0x58,
+  0x4c,0x04,0xc3,0x00,0xb3,0x9f,0x04,0xe2,0xb8,0x06,0x38,0xdc,0x5c,0x63,0xde,0x50,
+  0xf2,0xd7,0x09,0xa2,0x10,0x85,0xbc,0xae,0xd1,0x0d,0xcb,0x9f,0x51,0x02,0xc8,0x79,
+  0xc4,0x3b,0xc9,0x1b,0xe6,0x3d,0x39,0x28,0xfb,0x42,0x7c,0x9a,0xfd,0x54,0xa0,0x0a,
+  0x1e,0x85,0xeb,0x94,0xaf,0xa4,0xc8,0x62,0x23,0x50,0xcd,0x7b,0x26,0x0a,0x02,0x5c,
+  0x11,0x34,0x52,0x29,0x2b,0xcc,0xd2,0x8d,0xfc,0xd8,0xe3,0x38,0x35,0x2a,0x54,0x77,
+  0x9c,0xbf,0x02,0xf6,0x43,0xad,0xe2,0x96,0x78,0xc1,0x8a,0x41,0x4e,0x80,0x6b,0x15,
+  0x4f,0x9c,0xbf,0x5b,0xfa,0x17,0xb8,0x51,0xc1,0x5f,0x2a,0x83,0x3e,0xf3,0x9e,0x8d,
+  0xc2,0x3d,0x7b,0x7d,0x2d,0xf3,0xdc,0xdc,0x2a,0x66,0x84,0xe6,0xb9,0x6d,0xf1,0xc9,
+  0x94,0xb6,0x28,0xa1,0xf2,0xb6,0x4d,0xb4,0xfc,0x3d,0x63,0x4d,0x8b,0x18,0xde,0x2b,
+  0xb8,0x8e,0xc5,0xf7,0x6a,0x86,0x3d,0x3e,0xd5,0xf8,0xcd,0x65,0x45,0x73,0xb9,0x86,
+  0x86,0xa6,0xf8,0x57,0xca,0x84,0xb9,0x5c,0xb1,0x62,0xcd,0x23,0xe6,0x7a,0x22,0xf8,
+  0xad,0x87,0x01,0xe6,0xc7,0xe9,0x20,0x54,0x49,0x4b,0xc8,0xf9,0x0a,0xc3,0xb0,0xfc,
+  0xf9,0x0d,0xfe,0xce,0xd8,0xf1,0xc1,0x1b,0x67,0x78,0xbe,0x51,0x79,0xa7,0xa2,0x19,
+  0xe6,0x3d,0xb9,0x58,0x15,0x32,0x2b,0xf9,0x35,0x7f,0x31,0x72,0xbe,0xf0,0x32,0x66,
+  0x55,0xda,0x38,0xdf,0xc7,0x20,0x7b,0x8f,0xf5,0x7d,0xff,0xbb,0x9c,0xaf,0xb6,0x5d,
+  0x77,0xe9,0x32,0xce,0x4f,0xb7,0xdf,0xf3,0x32,0xce,0xdf,0xe2,0xbb,0xed,0xcd,0xf5,
+  0x3b,0x87,0x3e,0x3c,0x7f,0xcb,0x4f,0x0c,0xc3,0x6a,0x23,0xed,0xb0,0x09,0x02,0x8a,
+  0x53,0xd2,0x8d,0xef,0x3b,0x27,0x5b,0x63,0xd0,0xc8,0x87,0xbe,0x93,0x2c,0xc3,0xfa,
+  0xb4,0x43,0x05,0x66,0x11,0x5a,0x7a,0x64,0x18,0xbf,0xef,0xba,0xef,0x83,0xed,0x9e,
+  0x22,0x7b,0xa6,0x1d,0x98,0xc5,0x68,0x99,0x0a,0x33,0xcc,0x16,0x8b,0xa8,0x76,0xc3,
+  0x68,0x33,0x7f,0xdd,0x34,0x6c,0x6d,0x5f,0xb8,0xd2,0x6a,0x73,0xb6,0x93,0x4d,0xd0,
+  0xad,0x4c,0x95,0x9c,0xd4,0x30,0xac,0x36,0x30,0x81,0x44,0x4a,0x74,0xc3,0xd6,0x66,
+  0x0e,0x2b,0x29,0xe9,0x86,0xd9,0x26,0xb1,0xbf,0x8f,0xc6,0x86,0xa5,0x8d,0xef,0x30,
+  0x33,0x88,0x60,0x5e,0xb7,0x2a,0x54,0x71,0x18,0x7f,0x7d,0xb2,0x8a,0xc6,0x84,0xeb,
+  0xd0,0xd7,0x02,0xdb,0xa7,0x62,0xa1,0x2d,0x18,0xdd,0xbd,0xdc,0x9f,0xa0,0xf9,0xd3,
+  0x3e,0x72,0xfc,0x68,0xc4,0x38,0x8c,0xff,0xba,0x2d,0x37,0x1a,0xb9,0xf6,0xbf,0xf7,
+  0xa9,0xab,0xfb,0xe2,0xcf,0xbc,0xde,0xff,0xe5,0x65,0xff,0x89,0x4f,0xfd,0xf8,0xf8,
+  0xb8,0x3a,0xc1,0xf8,0x7f,0xb3,0xed,0xb2,0x98,0x47,0xc3,0xd6,0xf8,0x7f,0x26,0xe6,
+  0x27,0x5c,0xf7,0xc5,0xd8,0x35,0x5b,0xfe,0x2f,0xc4,0x3c,0xd8,0x62,0xbe,0xfd,0x0b,
+  0x31,0x6f,0x5b,0x84,0xc9,0xef,0x8f,0xf9,0xbc,0xf1,0xbb,0x62,0x1e,0x0d,0x16,0xf3,
+  0x93,0xfb,0x4c,0x4a,0xfe,0xfe,0xeb,0xe0,0x77,0x8c,0xcf,0xf6,0xf9,0x3d,0x23,0x07,
+  0x23,0xe6,0x2f,0xfb,0x7c,0x19,0xf3,0xff,0x89,0xb6,0xdf,0xff,0x61,0x7f,0xcb,0x91,
+  0x68,0xff,0x6d,0x78,0xe9,0x3f,0x7a,0xcd,0x97,0x9f,0x2f,0x3f,0x5f,0x7e,0xbe,0xfc,
+  0x7c,0xf9,0xf9,0xf2,0xf3,0xff,0xcb,0x47,0x5b,0x27,0x89,0xb6,0x4e,0xaa,0xff,0xd5,
+  0x7d,0xf9,0xf2,0xf3,0xe5,0xe7,0xcb,0xcf,0x97,0x9f,0x2f,0x3f,0x5f,0x7e,0xfe,0x2b,
+  0x3e,0x21,0x60,0x45,0x8e,0x57,0x46,0x8d,0xbf,0xff,0xcf,0x87,0x40,0x99,0xf4,0xef,
+  0xff,0xbe,0xf6,0x7b,0x8e,0x10,0xa4,0x39,0xeb,0xfa,0xae,0xd4,0xe5,0x7d,0xfd,0x37,
+  0x1f,0xbf,0x0f,0x18,0xd4,0x60,0x00,0x00,
diff --git a/board/esd/pci405/init.S b/board/esd/pci405/init.S
new file mode 100644 (file)
index 0000000..1cad0bd
--- /dev/null
@@ -0,0 +1,347 @@
+//------------------------------------------------------------------------------+
+//
+//       This source code has been made available to you by IBM on an AS-IS
+//       basis.  Anyone receiving this source is licensed under IBM
+//       copyrights to use it in any way he or she deems fit, including
+//       copying it, modifying it, compiling it, and redistributing it either
+//       with or without modifications.  No license under IBM patents or
+//       patent applications is to be implied by the copyright license.
+//
+//       Any user of this software should understand that IBM cannot provide
+//       technical support for this software and will not be responsible for
+//       any consequences resulting from the use of this software.
+//
+//       Any person who transfers this source code or any derivative work
+//       must include the IBM copyright notice, this paragraph, and the
+//       preceding two paragraphs in the transferred software.
+//
+//       COPYRIGHT   I B M   CORPORATION 1995
+//       LICENSED MATERIAL  -  PROGRAM PROPERTY OF I B M
+//-------------------------------------------------------------------------------
+
+//-----------------------------------------------------------------------------
+// Function:     ext_bus_cntlr_init
+// Description:  Initializes the External Bus Controller for the external
+//             peripherals. IMPORTANT: For pass1 this code must run from
+//             cache since you can not reliably change a peripheral banks
+//             timing register (pbxap) while running code from that bank.
+//             For ex., since we are running from ROM on bank 0, we can NOT
+//             execute the code that modifies bank 0 timings from ROM, so
+//             we run it from cache.
+//     Bank 0 - Flash bank 0
+//     Bank 1 - Flash bank 1
+//     Bank 2 - CAN0, CAN1, CAN2, Codeswitch (0x000,0x100,0x200,0x400)
+//     Bank 3 - IDE (CompactFlash)
+//     Bank 4 - Quart
+//     Bank 5 - not used
+//     Bank 6 - not used
+//     Bank 7 - not used
+//-----------------------------------------------------------------------------
+#include <config.h>
+#include <ppc4xx.h>
+
+#define _LINUX_CONFIG_H 1      /* avoid reading Linux autoconf.h file  */
+
+#define MAGIC0 0x00000000
+#define MAGIC1 0x11111111
+#define MAGIC2 0x22222222
+#define MAGIC3 0x33333333
+#define MAGIC4 0x44444444
+
+#define ADDR_ZERO 0x00000000
+#define ADDR_400  0x00000400
+#define ADDR_08MB 0x00800000
+#define ADDR_16MB 0x01000000
+#define ADDR_32MB 0x02000000
+#define ADDR_64MB 0x04000000
+
+#include <ppc_asm.tmpl>
+#include <ppc_defs.h>
+
+#include <asm/cache.h>
+#include <asm/mmu.h>
+
+
+//-----------------------------------------------------------------------------
+// Function:     sdram_init
+// Description:  Configures SDRAM memory banks.
+//               Auto Memory Configuration option reads the SDRAM EEPROM
+//             via the IIC bus and then configures the SDRAM memory
+//               banks appropriately. If Auto Memory Configuration is
+//             is not used, it is assumed that a 32MB 12x8(2) non-ECC DIMM is
+//             plugged, ie. the DIMM that shipped wih the Eval board.
+//-----------------------------------------------------------------------------
+        .globl  sdram_init
+
+sdram_init:
+
+       mflr    r31
+
+        //-------------------------------------------------------------------
+        // Set MB0CF for bank 0. (0-64MB) Address Mode 3 since 13x9(4)
+        //-------------------------------------------------------------------
+        addi    r4,0,mem_mb0cf
+        mtdcr   memcfga,r4
+        addis   r4,0,0x0008
+        ori     r4,r4,0x4001
+        mtdcr   memcfgd,r4
+
+        //-------------------------------------------------------------------
+        // Set the SDRAM Timing reg, SDTR1 and the refresh timer reg, RTR.
+        // To set the appropriate timings, we need to know the SDRAM speed.
+       // We can use the PLB speed since the SDRAM speed is the same as
+       // the PLB speed. The PLB speed is the FBK divider times the
+       // 405GP reference clock, which on the Walnut board is 33Mhz.
+       // Thus, if FBK div is 2, SDRAM is 66Mhz; if FBK div is 3, SDRAM is
+       // 100Mhz; if FBK is 3, SDRAM is 133Mhz.
+       // NOTE: The Walnut board supports SDRAM speeds of 66Mhz, 100Mhz, and
+       // maybe 133Mhz.
+        //-------------------------------------------------------------------
+        mfdcr   r5,strap                 // determine FBK divider
+                                          // via STRAP reg to calc PLB speed.
+                                          // SDRAM speed is the same as the PLB
+                                         // speed.
+        rlwinm  r4,r5,4,0x3             // get FBK divide bits
+
+..chk_66:
+        cmpi    %cr0,0,r4,0x1
+        bne     ..chk_100
+       addis   r6,0,0x0085             // SDTR1 value for 66Mhz
+       ori     r6,r6,0x4005
+       addis   r7,0,0x03F8             // RTR value for 66Mhz
+        b      ..sdram_ok
+..chk_100:
+        cmpi    %cr0,0,r4,0x2
+        bne     ..chk_133
+        addis   r6,0,0x0086            // SDTR1 value for 100Mhz
+        ori     r6,r6,0x400D
+        addis   r7,0,0x05F0            // RTR value for 100Mhz
+        b       ..sdram_ok
+..chk_133:
+        addis   r6,0,0x0107            // SDTR1 value for 133Mhz
+        ori     r6,r6,0x4015
+        addis   r7,0,0x07F0            // RTR value for 133Mhz
+
+..sdram_ok:
+        //-------------------------------------------------------------------
+        // Set SDTR1
+        //-------------------------------------------------------------------
+        addi    r4,0,mem_sdtr1
+        mtdcr   memcfga,r4
+        mtdcr   memcfgd,r6
+
+        //-------------------------------------------------------------------
+        // Set RTR
+        //-------------------------------------------------------------------
+        addi    r4,0,mem_rtr
+        mtdcr   memcfga,r4
+        mtdcr   memcfgd,r7
+
+        //-------------------------------------------------------------------
+        // Delay to ensure 200usec have elapsed since reset. Assume worst
+        // case that the core is running 200Mhz:
+        //   200,000,000 (cycles/sec) X .000200 (sec) = 0x9C40 cycles
+        //-------------------------------------------------------------------
+        addis   r3,0,0x0000
+        ori     r3,r3,0xA000          // ensure 200usec have passed since reset
+        mtctr   r3
+..spinlp2:
+        bdnz    ..spinlp2               // spin loop
+
+        //-------------------------------------------------------------------
+        // Set memory controller options reg, MCOPT1.
+       // Set DC_EN to '1' and BRD_PRF to '01' for 16 byte PLB Burst
+       // read/prefetch.
+        //-------------------------------------------------------------------
+        addi    r4,0,mem_mcopt1
+        mtdcr   memcfga,r4
+        addis   r4,0,0x8080             // set DC_EN=1
+        ori     r4,r4,0x0000
+        mtdcr   memcfgd,r4
+
+        //-------------------------------------------------------------------
+        // Delay to ensure 10msec have elapsed since reset. This is
+        // required for the MPC952 to stabalize. Assume worst
+        // case that the core is running 200Mhz:
+        //   200,000,000 (cycles/sec) X .010 (sec) = 0x1E8480 cycles
+        // This delay should occur before accessing SDRAM.
+        //-------------------------------------------------------------------
+        addis   r3,0,0x001E
+        ori     r3,r3,0x8480          // ensure 10msec have passed since reset
+        mtctr   r3
+..spinlp3:
+        bdnz    ..spinlp3                // spin loop
+
+        //-------------------------------------------------------------------
+        // Test if 64MByte is ok.
+        //-------------------------------------------------------------------
+        addis   r3,0,MAGIC0@h
+               ori     r3,r3,MAGIC0@l
+        addis   r4,0,ADDR_ZERO@h
+        ori     r4,r4,ADDR_ZERO@l
+        stw     r3,0x00(r4)            // store magic at 0
+        addis   r3,0,MAGIC1@h
+               ori     r3,r3,MAGIC1@l
+        addis   r4,0,ADDR_08MB@h
+        ori     r4,r4,ADDR_08MB@l
+        stw     r3,0x00(r4)            // store magic at 8MB
+        addis   r3,0,MAGIC2@h
+               ori     r3,r3,MAGIC2@l
+        addis   r4,0,ADDR_16MB@h
+        ori     r4,r4,ADDR_16MB@l
+        stw     r3,0x00(r4)            // store magic at 16MB
+        addis   r3,0,MAGIC3@h
+               ori     r3,r3,MAGIC3@l
+        addis   r4,0,ADDR_32MB@h
+        ori     r4,r4,ADDR_32MB@l
+        stw     r3,0x00(r4)            // store magic at 32MB
+
+        addis   r3,0,MAGIC0@h
+               ori     r3,r3,MAGIC0@l
+        addis   r4,0,ADDR_ZERO@h
+        ori     r4,r4,ADDR_ZERO@l
+        lwz     r5,0x00(r4)            // load from 0
+        cmplw   0,r3,r5
+        bne     ..chk_32mb
+        addis   r3,0,MAGIC1@h
+               ori     r3,r3,MAGIC1@l
+        addis   r4,0,ADDR_08MB@h
+        ori     r4,r4,ADDR_08MB@l
+        lwz     r5,0x00(r4)            // load from 8mb
+        cmplw   0,r3,r5
+        bne     ..chk_32mb
+        addis   r3,0,MAGIC2@h
+               ori     r3,r3,MAGIC2@l
+        addis   r4,0,ADDR_16MB@h
+        ori     r4,r4,ADDR_16MB@l
+        lwz     r5,0x00(r4)            // load from 8mb
+        beq     ..sdram_done
+
+..chk_32mb:
+        //-------------------------------------------------------------------
+        // Disable memory controller.
+        //-------------------------------------------------------------------
+        addi    r4,0,mem_mcopt1
+        mtdcr   memcfga,r4
+        addis   r4,0,0x0000             // set DC_EN=0
+        ori     r4,r4,0x0000
+        mtdcr   memcfgd,r4
+
+        //-------------------------------------------------------------------
+        // Set MB0CF for bank 0. (0-32MB) Address Mode 2 since 12x9(4)
+        //-------------------------------------------------------------------
+        addi    r4,0,mem_mb0cf
+        mtdcr   memcfga,r4
+        addis   r4,0,0x0006
+        ori     r4,r4,0x2001
+        mtdcr   memcfgd,r4
+
+        //-------------------------------------------------------------------
+        // Set memory controller options reg, MCOPT1.
+       // Set DC_EN to '1' and BRD_PRF to '01' for 16 byte PLB Burst
+       // read/prefetch.
+        //-------------------------------------------------------------------
+        addi    r4,0,mem_mcopt1
+        mtdcr   memcfga,r4
+        addis   r4,0,0x8080             // set DC_EN=1
+        ori     r4,r4,0x0000
+        mtdcr   memcfgd,r4
+
+        //-------------------------------------------------------------------
+        // Wait some time
+        //-------------------------------------------------------------------
+        addis   r3,0,0x001E
+        ori     r3,r3,0x8480          // ensure 10msec have passed since reset
+        mtctr   r3
+..spinlp4:
+        bdnz    ..spinlp4                // spin loop
+
+        //-------------------------------------------------------------------
+        // Test if 32MByte is ok.
+        //-------------------------------------------------------------------
+        addis   r3,0,MAGIC0@h
+               ori     r3,r3,MAGIC0@l
+        addis   r4,0,ADDR_ZERO@h
+        ori     r4,r4,ADDR_ZERO@l
+        stw     r3,0x00(r4)            // store magic at 0
+        addis   r3,0,MAGIC1@h
+               ori     r3,r3,MAGIC1@l
+        addis   r4,0,ADDR_400@h
+        ori     r4,r4,ADDR_400@l
+        stw     r3,0x00(r4)            // store magic at 0x400
+        addis   r3,0,MAGIC2@h
+               ori     r3,r3,MAGIC2@l
+        addis   r4,0,ADDR_08MB@h
+        ori     r4,r4,ADDR_08MB@l
+        stw     r3,0x00(r4)            // store magic at 8MB
+        addis   r3,0,MAGIC3@h
+               ori     r3,r3,MAGIC3@l
+        addis   r4,0,ADDR_16MB@h
+        ori     r4,r4,ADDR_16MB@l
+        stw     r3,0x00(r4)            // store magic at 16MB
+
+        addis   r3,0,MAGIC0@h
+               ori     r3,r3,MAGIC0@l
+        addis   r4,0,ADDR_ZERO@h
+        ori     r4,r4,ADDR_ZERO@l
+        lwz     r5,0x00(r4)            // load from 0
+        cmplw   0,r3,r5
+        bne     ..chk_16mb
+        addis   r3,0,MAGIC1@h
+               ori     r3,r3,MAGIC1@l
+        addis   r4,0,ADDR_400@h
+        ori     r4,r4,ADDR_400@l
+        lwz     r5,0x00(r4)            // load from 0x400
+        cmplw   0,r3,r5
+        bne     ..chk_16mb
+        addis   r3,0,MAGIC2@h
+               ori     r3,r3,MAGIC2@l
+        addis   r4,0,ADDR_08MB@h
+        ori     r4,r4,ADDR_08MB@l
+        lwz     r5,0x00(r4)            // load from 8mb
+        cmplw   0,r3,r5
+        beq     ..sdram_done
+
+..chk_16mb:
+        //-------------------------------------------------------------------
+        // Disable memory controller.
+        //-------------------------------------------------------------------
+        addi    r4,0,mem_mcopt1
+        mtdcr   memcfga,r4
+        addis   r4,0,0x0000             // set DC_EN=0
+        ori     r4,r4,0x0000
+        mtdcr   memcfgd,r4
+
+        //-------------------------------------------------------------------
+        // 16 MB is left.
+        // Set MB0CF for bank 0. (0-16MB) Address Mode 4 since 12x8(4)
+        //-------------------------------------------------------------------
+        addi    r4,0,mem_mb0cf
+        mtdcr   memcfga,r4
+        addis   r4,0,0x0004
+        ori     r4,r4,0x6001
+        mtdcr   memcfgd,r4
+
+        //-------------------------------------------------------------------
+        // Set memory controller options reg, MCOPT1.
+       // Set DC_EN to '1' and BRD_PRF to '01' for 16 byte PLB Burst
+       // read/prefetch.
+        //-------------------------------------------------------------------
+        addi    r4,0,mem_mcopt1
+        mtdcr   memcfga,r4
+        addis   r4,0,0x8080             // set DC_EN=1
+        ori     r4,r4,0x0000
+        mtdcr   memcfgd,r4
+
+        //-------------------------------------------------------------------
+        // Wait some time
+        //-------------------------------------------------------------------
+        addis   r3,0,0x001E
+        ori     r3,r3,0x8480          // ensure 10msec have passed since reset
+        mtctr   r3
+..spinlp5:
+        bdnz    ..spinlp5                // spin loop
+
+..sdram_done:
+        mtlr    r31                     // restore lr
+        blr
diff --git a/board/esd/pci405/pci405.c b/board/esd/pci405/pci405.c
new file mode 100644 (file)
index 0000000..9616d81
--- /dev/null
@@ -0,0 +1,252 @@
+/*
+ * (C) Copyright 2001
+ * 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
+ */
+
+#include <ppcboot.h>
+#include <asm/processor.h>
+#include <command.h>
+#include <cmd_boot.h>
+#include <malloc.h>
+#include <pci.h>
+#include <405gp_pci.h>
+
+/* ------------------------------------------------------------------------- */
+
+#if 0
+#define FPGA_DEBUG
+#endif
+
+#define PCI_RECONFIG_MAGIC       0x07081967
+
+
+struct pci_config_regs {
+       unsigned short  command;
+       unsigned char   latency_timer;
+       unsigned char   int_line;
+       unsigned long   bar1;
+       unsigned long   bar2;
+       unsigned long   magic;
+};
+
+
+/* fpga configuration data - generated by bin2cc */
+const unsigned char fpgadata[] =
+{
+#include "fpgadata.c"
+};
+
+/*
+ * include common fpga code (for esd boards)
+ */
+#include "../common/fpga.c"
+
+
+/* Prototypes */
+int gunzip(void *, int, unsigned char *, int *);
+
+
+int board_pre_init (void)
+{
+       unsigned long cntrl0Reg;
+
+       /*
+        * IRQ 0-15  405GP internally generated; active high; level sensitive
+        * IRQ 16    405GP internally generated; active low; level sensitive
+        * IRQ 17-24 RESERVED
+        * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
+        * IRQ 26 (EXT IRQ 1) CAN1; active low; level sensitive
+        * IRQ 27 (EXT IRQ 2) CAN2; active low; level sensitive
+        * IRQ 28 (EXT IRQ 3) CAN3; active low; level sensitive
+        * IRQ 29 (EXT IRQ 4) unused; active low; level sensitive
+        * IRQ 30 (EXT IRQ 5) FPGA Timestamp; active low; level sensitive
+        * IRQ 31 (EXT IRQ 6) PCI Reset; active low; level sensitive
+        */
+       mtdcr(uicsr, 0xFFFFFFFF);        /* clear all ints */
+       mtdcr(uicer, 0x00000000);        /* disable all ints */
+       mtdcr(uiccr, 0x00000000);        /* set all to be non-critical*/
+       mtdcr(uicpr, 0xFFFFFF80);        /* set int polarities */
+       mtdcr(uictr, 0x10000000);        /* set int trigger levels */
+       mtdcr(uicvcr, 0x00000001);       /* set vect base=0,INT0 highest priority*/
+       mtdcr(uicsr, 0xFFFFFFFF);        /* clear all ints */
+
+       /*
+        * Setup GPIO pins (IRQ4/GPIO21 as GPIO)
+        */
+       cntrl0Reg = mfdcr(cntrl0);
+       mtdcr(cntrl0, cntrl0Reg | 0x00008000);
+
+       return 0;
+}
+
+
+/* ------------------------------------------------------------------------- */
+
+int misc_init_f(void)
+{
+       return 0;  /* dummy implementation */
+}
+
+
+void misc_init_r(bd_t *bd)
+{
+       unsigned char *dst;
+       ulong len = sizeof(fpgadata);
+       int status;
+       int index;
+       int i;
+       struct pci_config_regs *pci_regs;
+
+       /*
+        * On PCI-405 the environment is saved in eeprom!
+        * FPGA can be gzip compressed (malloc) and booted this late.
+        */
+
+       dst = malloc(CFG_FPGA_MAX_SIZE);
+       if (gunzip (dst, CFG_FPGA_MAX_SIZE, (uchar *)fpgadata, (int *)&len) != 0) {
+               printf ("GUNZIP ERROR - must RESET board to recover\n");
+               do_reset (NULL, NULL, 0, 0, NULL);
+       }
+  
+       status = fpga_boot(dst, len);
+       if (status != 0) {
+               printf("\nFPGA: Booting failed ");
+               switch (status) {
+               case ERROR_FPGA_PRG_INIT_LOW:
+                       printf("(Timeout: INIT not low after asserting PROGRAM*)\n ");
+                       break;
+               case ERROR_FPGA_PRG_INIT_HIGH:
+                       printf("(Timeout: INIT not high after deasserting PROGRAM*)\n ");
+                       break;
+               case ERROR_FPGA_PRG_DONE:
+                       printf("(Timeout: DONE not high after programming FPGA)\n ");
+                       break;
+               }
+
+               /* display infos on fpgaimage */
+               index = 15;
+               for (i=0; i<4; i++) {
+                       len = dst[index];
+                       printf("FPGA: %s\n", &(dst[index+1]));
+                       index += len+3;
+               }
+               putc ('\n');
+               /* delayed reboot */
+               for (i=20; i>0; i--) {
+                       printf("Rebooting in %2d seconds \r",i);
+                       for (index=0;index<1000;index++)
+                               udelay(1000);
+               }
+               putc ('\n');
+               do_reset(NULL, NULL, 0, 0, NULL);
+       }
+
+       puts("FPGA:  ");
+
+       /* display infos on fpgaimage */
+       index = 15;
+       for (i=0; i<4; i++) {
+               len = dst[index];
+               printf("%s ", &(dst[index+1]));
+               index += len+3;
+       }
+       putc ('\n');
+
+       /*
+        * Rewrite pci config regs (only after soft-reset with magic set)
+        */
+       pci_regs = (struct pci_config_regs *)0x10;
+       if (pci_regs->magic == PCI_RECONFIG_MAGIC) {
+               puts("PCI:   Found magic, rewriting config regs...\n");
+               pci_write_config_word(PCIDEVID_405GP, PCI_COMMAND,
+                                     pci_regs->command);
+               pci_write_config_byte(PCIDEVID_405GP, PCI_LATENCY_TIMER,
+                                     pci_regs->latency_timer);
+               pci_write_config_byte(PCIDEVID_405GP, PCI_INTERRUPT_LINE,
+                                     pci_regs->int_line);
+               pci_write_config_dword(PCIDEVID_405GP, PCI_BASE_ADDRESS_1,
+                                      pci_regs->bar1);
+               pci_write_config_dword(PCIDEVID_405GP, PCI_BASE_ADDRESS_2,
+                                      pci_regs->bar2);
+       }
+       pci_regs->magic = 0; /* clear magic again */
+
+#if 0 /* test-only */
+       pci_read_config_word(PCIDEVID_405GP, PCI_COMMAND, &(pci_regs->command));
+       pci_read_config_byte(PCIDEVID_405GP, PCI_LATENCY_TIMER, &(pci_regs->latency_timer));
+       pci_read_config_byte(PCIDEVID_405GP, PCI_INTERRUPT_LINE, &(pci_regs->int_line));
+       pci_read_config_dword(PCIDEVID_405GP, PCI_BASE_ADDRESS_1, &(pci_regs->bar1));
+       pci_read_config_dword(PCIDEVID_405GP, PCI_BASE_ADDRESS_2, &(pci_regs->bar2));
+       pci_regs->magic = PCI_RECONFIG_MAGIC; /* set magic */
+#endif
+
+       free(dst);
+}
+
+
+/*
+ * Check Board Identity:
+ */
+
+int checkboard (void)
+{
+       unsigned char str[64];
+       int i = getenv_r ("serial#", str, sizeof(str));
+
+       if (i == -1) {
+               printf ("### No HW ID - assuming CPCI405");
+       }
+       else
+               puts(str);
+
+       putc ('\n');
+
+       return 1;
+}
+
+/* ------------------------------------------------------------------------- */
+
+long int initdram (int board_type)
+{
+       unsigned long val;
+
+       mtdcr(memcfga, mem_mb0cf);
+       val = mfdcr(memcfgd);
+
+#if 0
+       printf("\nmb0cf=%x\n", val); /* test-only */
+       printf("strap=%x\n", mfdcr(strap)); /* test-only */
+#endif
+
+       return (4*1024*1024 << ((val & 0x000e0000) >> 17));
+}
+
+/* ------------------------------------------------------------------------- */
+
+int testdram (void)
+{
+       /* TODO: XXX XXX XXX */
+       printf ("test: 16 MB - ok\n");
+
+       return (0);
+}
+
+/* ------------------------------------------------------------------------- */
diff --git a/board/esd/pci405/ppcboot.lds b/board/esd/pci405/ppcboot.lds
new file mode 100644 (file)
index 0000000..5a94fa1
--- /dev/null
@@ -0,0 +1,143 @@
+/*
+ * (C) Copyright 2000
+ * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+ *
+ * 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
+ */
+
+OUTPUT_ARCH(powerpc)
+SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/usr/local/powerpc-any-elf/lib);
+/* Do we need any of these for elf?
+   __DYNAMIC = 0;    */
+SECTIONS
+{
+  .resetvec 0xFFFFFFFC :
+  {
+    *(.resetvec)
+  } = 0xffff
+
+  /* Read-only sections, merged into text segment: */
+  . = + SIZEOF_HEADERS;
+  .interp : { *(.interp) }
+  .hash          : { *(.hash)          }
+  .dynsym        : { *(.dynsym)                }
+  .dynstr        : { *(.dynstr)                }
+  .rel.text      : { *(.rel.text)              }
+  .rela.text     : { *(.rela.text)     }
+  .rel.data      : { *(.rel.data)              }
+  .rela.data     : { *(.rela.data)     }
+  .rel.rodata    : { *(.rel.rodata)    }
+  .rela.rodata   : { *(.rela.rodata)   }
+  .rel.got       : { *(.rel.got)               }
+  .rela.got      : { *(.rela.got)              }
+  .rel.ctors     : { *(.rel.ctors)     }
+  .rela.ctors    : { *(.rela.ctors)    }
+  .rel.dtors     : { *(.rel.dtors)     }
+  .rela.dtors    : { *(.rela.dtors)    }
+  .rel.bss       : { *(.rel.bss)               }
+  .rela.bss      : { *(.rela.bss)              }
+  .rel.plt       : { *(.rel.plt)               }
+  .rela.plt      : { *(.rela.plt)              }
+  .init          : { *(.init)  }
+  .plt : { *(.plt) }
+  .text      :
+  {
+    /* WARNING - the following is hand-optimized to fit within */
+    /* the sector layout of our flash chips!   XXX FIXME XXX   */
+
+    cpu/ppc4xx/start.o (.text)
+    board/esd/pci405/init.o    (.text)
+    cpu/ppc4xx/traps.o (.text)
+    cpu/ppc4xx/interrupts.o    (.text)
+    cpu/ppc4xx/serial.o        (.text)
+    cpu/ppc4xx/cpu_init.o      (.text)
+    cpu/ppc4xx/speed.o (.text)
+    cpu/ppc4xx/405gp_enet.o    (.text)
+    common/dlmalloc.o  (.text)
+    ppc/crc32.o                (.text)
+    ppc/extable.o      (.text)
+    ppc/zlib.o         (.text)
+
+/*    . = env_offset;*/
+/*    common/environment.o(.text)*/
+
+    *(.text)
+    *(.fixup)
+    *(.got1)
+  }
+  _etext = .;
+  PROVIDE (etext = .);
+  .rodata    :
+  {
+    *(.rodata)
+    *(.rodata1)
+  }
+  .fini      : { *(.fini)    } =0
+  .ctors     : { *(.ctors)   }
+  .dtors     : { *(.dtors)   }
+
+  /* Read-write section, merged into data segment: */
+  . = (. + 0x00FF) & 0xFFFFFF00;
+  _erotext = .;
+  PROVIDE (erotext = .);
+  .reloc   :
+  {
+    *(.got)
+    _GOT2_TABLE_ = .;
+    *(.got2)
+    _FIXUP_TABLE_ = .;
+    *(.fixup)
+  }
+  __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
+  __fixup_entries = (. - _FIXUP_TABLE_)>>2;
+
+  .data    :
+  {
+    *(.data)
+    *(.data1)
+    *(.sdata)
+    *(.sdata2)
+    *(.dynamic)
+    CONSTRUCTORS
+  }
+  _edata  =  .;
+  PROVIDE (edata = .);
+
+  __start___ex_table = .;
+  __ex_table : { *(__ex_table) }
+  __stop___ex_table = .;
+
+  . = ALIGN(256);
+  __init_begin = .;
+  .text.init : { *(.text.init) }
+  .data.init : { *(.data.init) }
+  . = ALIGN(256);
+  __init_end = .;
+
+  __bss_start = .;
+  .bss       :
+  {
+   *(.sbss) *(.scommon)
+   *(.dynbss)
+   *(.bss)
+   *(COMMON)
+  }
+  _end = . ;
+  PROVIDE (end = .);
+}
diff --git a/board/esd/pci405/ppcboot.lds.debug b/board/esd/pci405/ppcboot.lds.debug
new file mode 100644 (file)
index 0000000..35d9f7c
--- /dev/null
@@ -0,0 +1,131 @@
+/*
+ * (C) Copyright 2000
+ * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+ *
+ * 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
+ */
+
+OUTPUT_ARCH(powerpc)
+SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/usr/local/powerpc-any-elf/lib);
+/* Do we need any of these for elf?
+   __DYNAMIC = 0;    */
+SECTIONS
+{
+  /* Read-only sections, merged into text segment: */
+  . = + SIZEOF_HEADERS;
+  .interp : { *(.interp) }
+  .hash          : { *(.hash)          }
+  .dynsym        : { *(.dynsym)                }
+  .dynstr        : { *(.dynstr)                }
+  .rel.text      : { *(.rel.text)              }
+  .rela.text     : { *(.rela.text)     }
+  .rel.data      : { *(.rel.data)              }
+  .rela.data     : { *(.rela.data)     }
+  .rel.rodata    : { *(.rel.rodata)    }
+  .rela.rodata   : { *(.rela.rodata)   }
+  .rel.got       : { *(.rel.got)               }
+  .rela.got      : { *(.rela.got)              }
+  .rel.ctors     : { *(.rel.ctors)     }
+  .rela.ctors    : { *(.rela.ctors)    }
+  .rel.dtors     : { *(.rel.dtors)     }
+  .rela.dtors    : { *(.rela.dtors)    }
+  .rel.bss       : { *(.rel.bss)               }
+  .rela.bss      : { *(.rela.bss)              }
+  .rel.plt       : { *(.rel.plt)               }
+  .rela.plt      : { *(.rela.plt)              }
+  .init          : { *(.init)  }
+  .plt : { *(.plt) }
+  .text      :
+  {
+    /* WARNING - the following is hand-optimized to fit within */
+    /* the sector layout of our flash chips!   XXX FIXME XXX   */
+
+    cpu/mpc8xx/start.o (.text)
+    common/dlmalloc.o  (.text)
+    ppc/vsprintf.o     (.text)
+    ppc/crc32.o                (.text)
+    ppc/extable.o      (.text)
+
+    common/environment.o(.text)
+
+    *(.text)
+    *(.fixup)
+    *(.got1)
+  }
+  _etext = .;
+  PROVIDE (etext = .);
+  .rodata    :
+  {
+    *(.rodata)
+    *(.rodata1)
+  }
+  .fini      : { *(.fini)    } =0
+  .ctors     : { *(.ctors)   }
+  .dtors     : { *(.dtors)   }
+
+  /* Read-write section, merged into data segment: */
+  . = (. + 0x0FFF) & 0xFFFFF000;
+  _erotext = .;
+  PROVIDE (erotext = .);
+  .reloc   :
+  {
+    *(.got)
+    _GOT2_TABLE_ = .;
+    *(.got2)
+    _FIXUP_TABLE_ = .;
+    *(.fixup)
+  }
+  __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
+  __fixup_entries = (. - _FIXUP_TABLE_)>>2;
+
+  .data    :
+  {
+    *(.data)
+    *(.data1)
+    *(.sdata)
+    *(.sdata2)
+    *(.dynamic)
+    CONSTRUCTORS
+  }
+  _edata  =  .;
+  PROVIDE (edata = .);
+
+  __start___ex_table = .;
+  __ex_table : { *(__ex_table) }
+  __stop___ex_table = .;
+
+  . = ALIGN(4096);
+  __init_begin = .;
+  .text.init : { *(.text.init) }
+  .data.init : { *(.data.init) }
+  . = ALIGN(4096);
+  __init_end = .;
+
+  __bss_start = .;
+  .bss       :
+  {
+   *(.sbss) *(.scommon)
+   *(.dynbss)
+   *(.bss)
+   *(COMMON)
+  }
+  _end = . ;
+  PROVIDE (end = .);
+}
+
index 9331436ab10bc7ba20c8fcffd47e37b4baade2ff..68781846d22547147b46a61b08cf9cfedf216147 100644 (file)
@@ -65,6 +65,8 @@
 |              - Removed pci class code init for CPCI405 board
 |  15-May-02   stefan.roese@esd-electronics.com
 |              - New vga device handling
+|  29-May-02   stefan.roese@esd-electronics.com
+|              - PCI class code init added (if defined)
 +----------------------------------------------------------------------------*/
 
 #include <ppcboot.h>
@@ -228,6 +230,13 @@ void pci_405gp_init(bd_t *bd, struct pci_controller *hose)
   pci_write_config_word(PCIDEVID_405GP, PCI_SUBSYSTEM_ID, CFG_PCI_SUBSYS_DEVICEID);
 #endif
 
+  /*
+   * Insert Class-code
+   */
+#ifdef CFG_PCI_CLASSCODE
+  pci_write_config_word(PCIDEVID_405GP, PCI_CLASS_SUB_CODE, CFG_PCI_CLASSCODE);
+#endif /* CFG_PCI_CLASSCODE */
+
 #if 0  /* test-only: no need yet! */
   /*--------------------------------------------------------------------------+
   | If PCI speed = 66Mhz, set 66Mhz capable bit.
index ceaa93bb0cf56f8f0872e5d1509a429cb4d877b8..a368c476cd7d221af92e46a3f15e0aa78d45e172 100644 (file)
 
 int checkcpu(long clock)
 {
-  uint pvr = get_pvr();
-  char buf[32];
+       uint pvr = get_pvr();
+       char buf[32];
 
 #if defined(CONFIG_405GP) || defined(CONFIG_405CR)
-  PPC405_SYS_INFO sys_info;
+       PPC405_SYS_INFO sys_info;
 
-  get_sys_info(&sys_info);
+       get_sys_info(&sys_info);
 
 #if CONFIG_405GP
-  printf("IBM PowerPC 405GP Rev. ");
+       puts("IBM PowerPC 405GP");
+       if (pvr == PVR_405GPR_RA) {
+               putc('r');
+       }
+       puts(" Rev. ");
 #endif
 #if CONFIG_405CR
-  printf("IBM PowerPC 405CR Rev. ");
+       puts("IBM PowerPC 405CR Rev. ");
 #endif
-  switch (pvr)
-    {
-    case PVR_405GP_RB:
-      putc('B');
-      break;
-    case PVR_405GP_RC:
+#if CONFIG_440GP
+       puts("IBM PowerPC 440GP Rev. ");
+#endif
+       switch (pvr) {
+       case PVR_405GP_RB:
+               putc('B');
+               break;
+       case PVR_405GP_RC:
 #if CONFIG_405CR
-    case PVR_405CR_RC:
+       case PVR_405CR_RC:
 #endif
-      putc('C');
-      break;
-    case PVR_405GP_RD:
-      putc('D');
-      break;
+               putc('C');
+               break;
+       case PVR_405GP_RD:
+               putc('D');
+               break;
 #if CONFIG_405GP
-    case PVR_405GP_RE:
-      putc('E');
-      break;
+       case PVR_405GP_RE:
+               putc('E');
+               break;
 #endif
-    case PVR_405CR_RA:
-      putc('A');
-      break;
-    case PVR_405CR_RB:
-      putc('B');
-      break;
-    default:
-      printf("? (PVR=%08x)", pvr);
-      break;
-    }
-
-  printf(" at %s MHz (PLB=%lu, OPB=%lu, EBC=%lu MHz)\n", strmhz(buf, clock),
-         sys_info.freqPLB / 1000000,
-         sys_info.freqPLB / sys_info.pllOpbDiv / 1000000,
-         sys_info.freqPLB / sys_info.pllExtBusDiv / 1000000);
+       case PVR_405CR_RA:
+       case PVR_405GPR_RA:
+               putc('A');
+               break;
+       case PVR_405CR_RB:
+               putc('B');
+               break;
+       default:
+               printf("? (PVR=%08x)", pvr);
+               break;
+       }
+
+       printf(" at %s MHz (PLB=%lu, OPB=%lu, EBC=%lu MHz)\n", strmhz(buf, clock),
+              sys_info.freqPLB / 1000000,
+              sys_info.freqPLB / sys_info.pllOpbDiv / 1000000,
+              sys_info.freqPLB / sys_info.pllExtBusDiv / 1000000);
 
 #if CONFIG_405GP
-  if (mfdcr(strap) & PSR_PCI_ASYNC_EN)
-    printf("           PCI async ext clock used, ");
-  else
-    printf("           PCI sync clock at %lu MHz, ",
-           sys_info.freqPLB / sys_info.pllPciDiv / 1000000);
-  if (mfdcr(strap) & PSR_PCI_ARBIT_EN)
-    printf("internal PCI arbiter enabled\n");
-  else
-    printf("external PCI arbiter enabled\n");
+       if (mfdcr(strap) & PSR_PCI_ASYNC_EN)
+               printf("           PCI async ext clock used, ");
+       else
+               printf("           PCI sync clock at %lu MHz, ",
+                      sys_info.freqPLB / sys_info.pllPciDiv / 1000000);
+       if (mfdcr(strap) & PSR_PCI_ARBIT_EN)
+               printf("internal PCI arbiter enabled\n");
+       else
+               printf("external PCI arbiter enabled\n");
 #endif
 
-  switch (pvr)
-    {
-    case PVR_405GP_RB:
-    case PVR_405GP_RC:
-    case PVR_405GP_RD:
-    case PVR_405CR_RA:
-    case PVR_405CR_RB:
-      printf("           16 kB I-Cache 8 kB D-Cache");
-      break;
-    }
+       switch (pvr) {
+       case PVR_405GP_RB:
+       case PVR_405GP_RC:
+       case PVR_405GP_RD:
+       case PVR_405CR_RA:
+       case PVR_405CR_RB:
+               printf("           16 kB I-Cache 8 kB D-Cache");
+               break;
+       }
 
 #endif  /* defined(CONFIG_405GP) || defined(CONFIG_405CR) */
 
 #ifdef CONFIG_IOP480
-  printf("PLX IOP480 (PVR=%08x)", pvr);
-  printf(" at %s MHz:", strmhz(buf, clock));
-  printf(" %u kB I-Cache", 4);
-  printf(" %u kB D-Cache", 2);
+       printf("PLX IOP480 (PVR=%08x)", pvr);
+       printf(" at %s MHz:", strmhz(buf, clock));
+       printf(" %u kB I-Cache", 4);
+       printf(" %u kB D-Cache", 2);
 #endif
 
-  printf("\n");
+       printf("\n");
 
-  return 0;
+       return 0;
 }
 
 
@@ -150,14 +156,14 @@ int do_reset (cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char *argv[])
 unsigned long get_tbclk (void)
 {
 #if defined(CONFIG_405GP) || defined(CONFIG_405CR)
-  PPC405_SYS_INFO sys_info;
+       PPC405_SYS_INFO sys_info;
 
-  get_sys_info(&sys_info);
-  return (sys_info.freqProcessor);
+       get_sys_info(&sys_info);
+       return (sys_info.freqProcessor);
 #endif  /* defined(CONFIG_405GP) || defined(CONFIG_405CR) */
 
 #ifdef CONFIG_IOP480
-  return (66000000);
+       return (66000000);
 #endif  /* CONFIG_IOP480 */
 }
 
@@ -166,17 +172,17 @@ unsigned long get_tbclk (void)
 void
 watchdog_reset(void)
 {
-  int re_enable = disable_interrupts();
-  reset_4xx_watchdog();
-  if (re_enable) enable_interrupts();
+       int re_enable = disable_interrupts();
+       reset_4xx_watchdog();
+       if (re_enable) enable_interrupts();
 }
 
 void
 reset_4xx_watchdog(void)
 {
-  /*
-   * Clear TSR(WIS) bit
-   */
-  mtspr(tsr, 0x40000000);
+       /*
+        * Clear TSR(WIS) bit
+        */
+       mtspr(tsr, 0x40000000);
 }
 #endif /* CONFIG_WATCHDOG */
index b950cfdb84168ee46edb45d1c811c167e7565129..4747a8f76bb4fcfd1439959410a23393bfdc7275 100644 (file)
 #define        PVR_405CR_RA    0x40110041
 #define        PVR_405CR_RB    0x401100C5
 #define        PVR_405CR_RC    0x40110145  /* same as pc405gp rev e */
+#define        PVR_405GPR_RA   0x50910950
+#define        PVR_440GP_RC    0x40120400
 #define        PVR_601         0x00010000
 #define        PVR_602         0x00050000
 #define        PVR_603         0x00030000
index 94b645ae050ea131f4abd4699c2fe823e71f44a2..e702d406cddf323d2b8658e8573758cf73ad946c 100644 (file)
 #define CFG_FPGA_STATUS         0x02
 #define CFG_FPGA_TS             0x04
 #define CFG_FPGA_TS_LOW         0x06
-#define CFG_FPGA_TS_CAP0        0x08
-#define CFG_FPGA_TS_CAP0_LOW    0x0a
-#define CFG_FPGA_TS_CAP1        0x0c
-#define CFG_FPGA_TS_CAP1_LOW    0x0e
+#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_IRQ_ENABLE 0x0100
+#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       32*1024     /* 32kByte is enough for XC2S15  */
diff --git a/include/config_PCI405.h b/include/config_PCI405.h
new file mode 100644 (file)
index 0000000..1886676
--- /dev/null
@@ -0,0 +1,341 @@
+/*
+ * (C) Copyright 2001
+ * 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_PCI405          1       /* ...on a PCI405 board         */
+
+#define CONFIG_BOARD_PRE_INIT   1       /* call board_pre_init()        */
+#define CONFIG_MISC_INIT_R     1       /* call misc_init_r() on init   */
+
+#define CONFIG_SYS_CLK_FREQ     25000000 /* 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
+#if 1
+#define CONFIG_BOOTCOMMAND                                                     \
+       "bootm fffc0000"
+#else
+#define CONFIG_BOOTCOMMAND                                                     \
+       "mw.l 0 ffffffff; mw.l 4 ffffffff;"                                     \
+        "while cmp 0 4 1; do echo Waiting for Host...;done;"                    \
+        "bootm 400000"
+#endif
+
+#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 */
+
+#define CONFIG_COMMANDS              ( CONFIG_CMD_DFL  | \
+                               CFG_CMD_PCI     | \
+                               CFG_CMD_IRQ     | \
+                               CFG_CMD_ELF     | \
+                               CFG_CMD_DATE    | \
+                               CFG_CMD_I2C     | \
+                               CFG_CMD_EEPROM  )
+
+/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
+#include <cmd_confdefs.h>
+
+#undef  CONFIG_WATCHDOG                        /* watchdog disabled            */
+
+/*
+ * Miscellaneous configurable options
+ */
+#define CFG_LONGHELP                   /* undef to save memory         */
+#define CFG_PROMPT     "=> "           /* Monitor Command Prompt       */
+
+#define        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 */
+
+/*-----------------------------------------------------------------------
+ * 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_ADAPTER /* select pci host function    */
+#undef  CONFIG_PCI_PNP                 /* no pci plug-and-play         */
+                                        /* resource configuration       */
+
+#define CONFIG_PCI_SCAN_SHOW            /* print pci devices @ startup  */
+
+#define CFG_PCI_SUBSYS_VENDORID 0x12FE  /* PCI Vendor ID: esd gmbh      */
+#define CFG_PCI_SUBSYS_DEVICEID 0x0407  /* PCI Device ID: PCI-405       */
+#define CFG_PCI_CLASSCODE       0x0280  /* PCI Class Code: Network/Other*/
+#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   */
+
+#if 0 /* test-only */
+#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   */
+#else
+#define CFG_PCI_PTM2LA  0xef600000      /* point to internal regs       */
+#define CFG_PCI_PTM2MS  0xef600001      /* 4MB, enable                  */
+#define CFG_PCI_PTM2PCI 0x04000000      /* Host: use this pci address   */
+#endif
+
+/*-----------------------------------------------------------------------
+ * 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         0xFFFD0000
+#define CFG_MONITOR_BASE       CFG_FLASH_BASE
+#define CFG_MONITOR_LEN                (192 * 1024)    /* Reserve 196 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    1       /* 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 */
+
+#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           */
+
+/*-----------------------------------------------------------------------
+ * I2C EEPROM (CAT24WC16) 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                8192    /* For IBM 405 CPUs                     */
+#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     0xFFE00000      /* FLASH bank #0        */
+
+/*-----------------------------------------------------------------------
+ * 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 (NVRAM/RTC) initialization                                     */
+#define CFG_EBC_PB1AP           0x01005280  /* TWT=2,WBN=1,WBF=1,TH=1,SOR=1     */
+#define CFG_EBC_PB1CR           0xF0218000  /* BAS=0xF02,BS=1MB,BU=R/W,BW=8bit  */
+
+/* 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  */
+
+/* Memory Bank 3 (FPGA internal) initialization                                 */
+#define CFG_EBC_PB3AP           0x010053C0  /* BWT=2,WBN=1,WBF=1,TH=1,RE=1,SOR=1,BEM=1 */
+#define CFG_EBC_PB3CR           0xF041C000  /* BAS=0xF01,BS=1MB,BU=R/W,BW=32bit */
+#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_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       32*1024     /* 32kByte 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           0x00400000  /* FPGA init pin (ppc input)     */
+#define CFG_FPGA_DONE           0x00800000  /* FPGA done pin (ppc input)     */
+
+/*-----------------------------------------------------------------------
+ * Definitions for initial stack pointer and data area (in data cache)
+ */
+#if 1 /* test-only */
+#define CFG_INIT_DCACHE_CS      7       /* use cs # 7 for data cache memory    */
+
+#define CFG_INIT_RAM_ADDR       0x40000000  /* use data cache                  */
+#else
+#define CFG_INIT_RAM_ADDR      0x00df0000 /* inside of SDRAM                   */
+#endif
+#define CFG_INIT_RAM_END        0x2000  /* End of used area in RAM             */
+#define CFG_INIT_DATA_SIZE      128  /* size in bytes reserved for initial data */
+#define CFG_INIT_DATA_OFFSET    (CFG_INIT_RAM_END - CFG_INIT_DATA_SIZE)
+#define CFG_INIT_SP_OFFSET      CFG_INIT_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 */
index 627fd13a6606d2912e3ce92e111c64d66549fe7f..9bb3dbd7b13f14332ff13d556bacc6df92a2327b 100644 (file)
@@ -255,6 +255,7 @@ void        reset_phy     (void);
     defined(CONFIG_OCRTC)      || \
     defined(CONFIG_ORSG)       || \
     defined(CONFIG_PCU_E)      || \
+    defined(CONFIG_PCI405)     || \
     defined(CONFIG_PIP405)     || \
     defined(CONFIG_MIP405)     || \
     defined(CONFIG_PM826)      || \