home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Sound / SoX / Source / libst.c < prev    next >
C/C++ Source or Header  |  1999-07-18  |  184KB  |  4,363 lines

  1. /* libst.c - portable sound tools library
  2. */
  3.  
  4. #include "libst.h"
  5.  
  6. #ifndef FAST_ULAW_CONVERSION
  7.  
  8. /*
  9. ** This routine converts from linear to ulaw.
  10. **
  11. ** Craig Reese: IDA/Supercomputing Research Center
  12. ** Joe Campbell: Department of Defense
  13. ** 29 September 1989
  14. **
  15. ** References:
  16. ** 1) CCITT Recommendation G.711  (very difficult to follow)
  17. ** 2) "A New Digital Technique for Implementation of Any
  18. **     Continuous PCM Companding Law," Villeret, Michel,
  19. **     et al. 1973 IEEE Int. Conf. on Communications, Vol 1,
  20. **     1973, pg. 11.12-11.17
  21. ** 3) MIL-STD-188-113,"Interoperability and Performance Standards
  22. **     for Analog-to_Digital Conversion Techniques,"
  23. **     17 February 1987
  24. **
  25. ** Input: Signed 16 bit linear sample
  26. ** Output: 8 bit ulaw sample
  27. */
  28.  
  29. #undef ZEROTRAP      /* turn off the trap as per the MIL-STD */
  30. #define uBIAS 0x84   /* define the add-in bias for 16 bit samples */
  31. #define uCLIP 32635
  32. #define ACLIP 31744
  33.  
  34. unsigned char
  35. st_linear_to_ulaw( sample )
  36. int sample;
  37.     {
  38.     static int exp_lut[256] = {0,0,1,1,2,2,2,2,3,3,3,3,3,3,3,3,
  39.                                4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
  40.                                5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
  41.                                5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
  42.                                6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  43.                                6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  44.                                6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  45.                                6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  46.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  47.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  48.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  49.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  50.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  51.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  52.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  53.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7};
  54.     int sign, exponent, mantissa;
  55.     unsigned char ulawbyte;
  56.  
  57.     /* Get the sample into sign-magnitude. */
  58.     sign = (sample >> 8) & 0x80;        /* set aside the sign */
  59.     if ( sign != 0 ) sample = -sample;        /* get magnitude */
  60.     if ( sample > uCLIP ) sample = uCLIP;        /* clip the magnitude */
  61.  
  62.     /* Convert from 16 bit linear to ulaw. */
  63.     sample = sample + uBIAS;
  64.     exponent = exp_lut[( sample >> 7 ) & 0xFF];
  65.     mantissa = ( sample >> ( exponent + 3 ) ) & 0x0F;
  66.     ulawbyte = ~ ( sign | ( exponent << 4 ) | mantissa );
  67. #ifdef ZEROTRAP
  68.     if ( ulawbyte == 0 ) ulawbyte = 0x02;    /* optional CCITT trap */
  69. #endif
  70.  
  71.     return ulawbyte;
  72.     }
  73.  
  74. /*
  75. ** This routine converts from ulaw to 16 bit linear.
  76. **
  77. ** Craig Reese: IDA/Supercomputing Research Center
  78. ** 29 September 1989
  79. **
  80. ** References:
  81. ** 1) CCITT Recommendation G.711  (very difficult to follow)
  82. ** 2) MIL-STD-188-113,"Interoperability and Performance Standards
  83. **     for Analog-to_Digital Conversion Techniques,"
  84. **     17 February 1987
  85. **
  86. ** Input: 8 bit ulaw sample
  87. ** Output: signed 16 bit linear sample
  88. */
  89.  
  90. int
  91. st_ulaw_to_linear( ulawbyte )
  92. unsigned char ulawbyte;
  93.     {
  94.     static int exp_lut[8] = { 0, 132, 396, 924, 1980, 4092, 8316, 16764 };
  95.     int sign, exponent, mantissa, sample;
  96.  
  97.     ulawbyte = ~ ulawbyte;
  98.     sign = ( ulawbyte & 0x80 );
  99.     exponent = ( ulawbyte >> 4 ) & 0x07;
  100.     mantissa = ulawbyte & 0x0F;
  101.     sample = exp_lut[exponent] + ( mantissa << ( exponent + 3 ) );
  102.     if ( sign != 0 ) sample = -sample;
  103.  
  104.     return sample;
  105.     }
  106.  
  107. #else
  108.  
  109. unsigned char ulaw_comp_table[16384] = {
  110.     0xff,0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfb,
  111.     0xfb,0xfa,0xfa,0xf9,0xf9,0xf8,0xf8,0xf7,
  112.     0xf7,0xf6,0xf6,0xf5,0xf5,0xf4,0xf4,0xf3,
  113.     0xf3,0xf2,0xf2,0xf1,0xf1,0xf0,0xf0,0xef,
  114.     0xef,0xef,0xef,0xee,0xee,0xee,0xee,0xed,
  115.     0xed,0xed,0xed,0xec,0xec,0xec,0xec,0xeb,
  116.     0xeb,0xeb,0xeb,0xea,0xea,0xea,0xea,0xe9,
  117.     0xe9,0xe9,0xe9,0xe8,0xe8,0xe8,0xe8,0xe7,
  118.     0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe6,0xe5,
  119.     0xe5,0xe5,0xe5,0xe4,0xe4,0xe4,0xe4,0xe3,
  120.     0xe3,0xe3,0xe3,0xe2,0xe2,0xe2,0xe2,0xe1,
  121.     0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0xe0,0xdf,
  122.     0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xde,
  123.     0xde,0xde,0xde,0xde,0xde,0xde,0xde,0xdd,
  124.     0xdd,0xdd,0xdd,0xdd,0xdd,0xdd,0xdd,0xdc,
  125.     0xdc,0xdc,0xdc,0xdc,0xdc,0xdc,0xdc,0xdb,
  126.     0xdb,0xdb,0xdb,0xdb,0xdb,0xdb,0xdb,0xda,
  127.     0xda,0xda,0xda,0xda,0xda,0xda,0xda,0xd9,
  128.     0xd9,0xd9,0xd9,0xd9,0xd9,0xd9,0xd9,0xd8,
  129.     0xd8,0xd8,0xd8,0xd8,0xd8,0xd8,0xd8,0xd7,
  130.     0xd7,0xd7,0xd7,0xd7,0xd7,0xd7,0xd7,0xd6,
  131.     0xd6,0xd6,0xd6,0xd6,0xd6,0xd6,0xd6,0xd5,
  132.     0xd5,0xd5,0xd5,0xd5,0xd5,0xd5,0xd5,0xd4,
  133.     0xd4,0xd4,0xd4,0xd4,0xd4,0xd4,0xd4,0xd3,
  134.     0xd3,0xd3,0xd3,0xd3,0xd3,0xd3,0xd3,0xd2,
  135.     0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd1,
  136.     0xd1,0xd1,0xd1,0xd1,0xd1,0xd1,0xd1,0xd0,
  137.     0xd0,0xd0,0xd0,0xd0,0xd0,0xd0,0xd0,0xcf,
  138.     0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,
  139.     0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,0xce,
  140.     0xce,0xce,0xce,0xce,0xce,0xce,0xce,0xce,
  141.     0xce,0xce,0xce,0xce,0xce,0xce,0xce,0xcd,
  142.     0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,
  143.     0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcc,
  144.     0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,
  145.     0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcb,
  146.     0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,
  147.     0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xca,
  148.     0xca,0xca,0xca,0xca,0xca,0xca,0xca,0xca,
  149.     0xca,0xca,0xca,0xca,0xca,0xca,0xca,0xc9,
  150.     0xc9,0xc9,0xc9,0xc9,0xc9,0xc9,0xc9,0xc9,
  151.     0xc9,0xc9,0xc9,0xc9,0xc9,0xc9,0xc9,0xc8,
  152.     0xc8,0xc8,0xc8,0xc8,0xc8,0xc8,0xc8,0xc8,
  153.     0xc8,0xc8,0xc8,0xc8,0xc8,0xc8,0xc8,0xc7,
  154.     0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,
  155.     0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,
  156.     0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,
  157.     0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0xc5,
  158.     0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,
  159.     0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc4,
  160.     0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,
  161.     0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc3,
  162.     0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,
  163.     0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,
  164.     0xc2,0xc2,0xc2,0xc2,0xc2,0xc2,0xc2,0xc2,
  165.     0xc2,0xc2,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,
  166.     0xc1,0xc1,0xc1,0xc1,0xc1,0xc1,0xc1,0xc1,
  167.     0xc1,0xc1,0xc1,0xc1,0xc1,0xc1,0xc1,0xc0,
  168.     0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
  169.     0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xbf,
  170.     0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,
  171.     0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,
  172.     0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,
  173.     0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbe,
  174.     0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,
  175.     0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,
  176.     0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,
  177.     0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbd,
  178.     0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,
  179.     0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,
  180.     0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,
  181.     0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbc,
  182.     0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,
  183.     0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,
  184.     0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,
  185.     0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbb,
  186.     0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,
  187.     0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,
  188.     0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,
  189.     0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xba,
  190.     0xba,0xba,0xba,0xba,0xba,0xba,0xba,0xba,
  191.     0xba,0xba,0xba,0xba,0xba,0xba,0xba,0xba,
  192.     0xba,0xba,0xba,0xba,0xba,0xba,0xba,0xba,
  193.     0xba,0xba,0xba,0xba,0xba,0xba,0xba,0xb9,
  194.     0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,
  195.     0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,
  196.     0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,
  197.     0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb8,
  198.     0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,
  199.     0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,
  200.     0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,
  201.     0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb7,
  202.     0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,
  203.     0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,
  204.     0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,
  205.     0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb6,
  206.     0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,
  207.     0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,
  208.     0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,
  209.     0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb5,
  210.     0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,
  211.     0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,
  212.     0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,
  213.     0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb4,
  214.     0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,
  215.     0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,
  216.     0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,
  217.     0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb3,
  218.     0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,
  219.     0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,
  220.     0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,
  221.     0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb2,
  222.     0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,
  223.     0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,
  224.     0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,
  225.     0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb1,
  226.     0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,
  227.     0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,
  228.     0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,
  229.     0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb0,
  230.     0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,
  231.     0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,
  232.     0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,
  233.     0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xaf,
  234.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,
  235.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,
  236.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,
  237.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,
  238.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,
  239.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,
  240.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,
  241.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xae,
  242.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,
  243.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,
  244.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,
  245.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,
  246.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,
  247.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,
  248.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,
  249.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xad,
  250.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xad,
  251.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xad,
  252.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xad,
  253.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xad,
  254.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xad,
  255.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xad,
  256.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xad,
  257.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xac,
  258.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
  259.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
  260.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
  261.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
  262.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
  263.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
  264.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
  265.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xab,
  266.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,
  267.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,
  268.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,
  269.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,
  270.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,
  271.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,
  272.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,
  273.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xaa,
  274.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
  275.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
  276.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
  277.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
  278.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
  279.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
  280.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
  281.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,
  282.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,
  283.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,
  284.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,
  285.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,
  286.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,
  287.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,
  288.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,
  289.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa8,
  290.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,
  291.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,
  292.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,
  293.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,
  294.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,
  295.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,
  296.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,
  297.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa7,
  298.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,
  299.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,
  300.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,
  301.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,
  302.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,
  303.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,
  304.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,
  305.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa6,
  306.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,
  307.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,
  308.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,
  309.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,
  310.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,
  311.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,
  312.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,
  313.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa5,
  314.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,
  315.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,
  316.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,
  317.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,
  318.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,
  319.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,
  320.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,
  321.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa4,
  322.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,
  323.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,
  324.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,
  325.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,
  326.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,
  327.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,
  328.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,
  329.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa3,
  330.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,
  331.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,
  332.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,
  333.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,
  334.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,
  335.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,
  336.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,
  337.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa2,
  338.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,
  339.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,
  340.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,
  341.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,
  342.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,
  343.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,
  344.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,
  345.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa1,
  346.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,
  347.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,
  348.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,
  349.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,
  350.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,
  351.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,
  352.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,
  353.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa0,
  354.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,
  355.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,
  356.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,
  357.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,
  358.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,
  359.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,
  360.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,
  361.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x9f,
  362.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  363.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  364.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  365.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  366.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  367.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  368.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  369.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  370.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  371.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  372.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  373.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  374.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  375.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  376.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  377.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9e,
  378.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  379.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  380.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  381.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  382.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  383.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  384.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  385.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  386.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  387.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  388.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  389.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  390.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  391.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  392.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  393.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9d,
  394.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  395.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  396.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  397.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  398.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  399.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  400.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  401.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  402.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  403.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  404.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  405.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  406.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  407.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  408.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  409.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9c,
  410.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  411.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  412.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  413.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  414.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  415.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  416.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  417.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  418.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  419.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  420.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  421.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  422.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  423.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  424.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  425.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9b,
  426.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  427.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  428.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  429.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  430.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  431.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  432.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  433.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  434.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  435.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  436.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  437.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  438.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  439.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  440.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  441.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9a,
  442.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  443.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  444.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  445.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  446.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  447.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  448.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  449.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  450.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  451.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  452.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  453.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  454.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  455.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  456.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  457.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x99,
  458.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  459.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  460.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  461.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  462.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  463.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  464.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  465.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  466.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  467.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  468.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  469.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  470.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  471.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  472.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  473.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x98,
  474.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  475.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  476.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  477.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  478.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  479.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  480.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  481.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  482.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  483.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  484.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  485.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  486.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  487.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  488.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  489.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x97,
  490.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  491.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  492.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  493.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  494.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  495.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  496.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  497.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  498.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  499.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  500.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  501.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  502.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  503.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  504.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  505.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x96,
  506.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  507.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  508.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  509.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  510.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  511.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  512.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  513.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  514.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  515.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  516.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  517.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  518.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  519.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  520.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  521.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x95,
  522.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  523.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  524.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  525.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  526.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  527.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  528.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  529.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  530.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  531.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  532.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  533.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  534.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  535.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  536.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  537.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x94,
  538.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  539.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  540.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  541.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  542.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  543.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  544.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  545.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  546.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  547.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  548.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  549.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  550.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  551.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  552.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  553.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x93,
  554.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  555.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  556.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  557.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  558.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  559.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  560.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  561.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  562.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  563.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  564.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  565.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  566.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  567.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  568.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  569.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x92,
  570.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  571.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  572.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  573.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  574.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  575.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  576.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  577.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  578.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  579.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  580.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  581.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  582.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  583.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  584.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  585.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x91,
  586.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  587.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  588.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  589.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  590.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  591.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  592.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  593.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  594.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  595.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  596.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  597.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  598.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  599.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  600.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  601.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x90,
  602.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  603.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  604.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  605.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  606.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  607.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  608.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  609.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  610.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  611.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  612.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  613.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  614.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  615.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  616.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  617.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x8f,
  618.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  619.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  620.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  621.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  622.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  623.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  624.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  625.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  626.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  627.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  628.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  629.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  630.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  631.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  632.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  633.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  634.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  635.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  636.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  637.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  638.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  639.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  640.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  641.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  642.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  643.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  644.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  645.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  646.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  647.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  648.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  649.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8e,
  650.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  651.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  652.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  653.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  654.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  655.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  656.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  657.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  658.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  659.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  660.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  661.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  662.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  663.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  664.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  665.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  666.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  667.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  668.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  669.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  670.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  671.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  672.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  673.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  674.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  675.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  676.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  677.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  678.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  679.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  680.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  681.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8d,
  682.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  683.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  684.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  685.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  686.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  687.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  688.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  689.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  690.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  691.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  692.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  693.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  694.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  695.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  696.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  697.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  698.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  699.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  700.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  701.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  702.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  703.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  704.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  705.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  706.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  707.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  708.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  709.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  710.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  711.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  712.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  713.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8c,
  714.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  715.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  716.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  717.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  718.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  719.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  720.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  721.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  722.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  723.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  724.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  725.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  726.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  727.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  728.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  729.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  730.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  731.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  732.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  733.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  734.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  735.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  736.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  737.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  738.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  739.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  740.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  741.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  742.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  743.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  744.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  745.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8b,
  746.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  747.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  748.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  749.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  750.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  751.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  752.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  753.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  754.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  755.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  756.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  757.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  758.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  759.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  760.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  761.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  762.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  763.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  764.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  765.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  766.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  767.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  768.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  769.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  770.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  771.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  772.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  773.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  774.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  775.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  776.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  777.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8a,
  778.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  779.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  780.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  781.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  782.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  783.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  784.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  785.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  786.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  787.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  788.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  789.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  790.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  791.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  792.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  793.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  794.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  795.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  796.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  797.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  798.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  799.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  800.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  801.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  802.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  803.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  804.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  805.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  806.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  807.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  808.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  809.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x89,
  810.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  811.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  812.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  813.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  814.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  815.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  816.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  817.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  818.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  819.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  820.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  821.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  822.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  823.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  824.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  825.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  826.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  827.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  828.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  829.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  830.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  831.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  832.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  833.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  834.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  835.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  836.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  837.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  838.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  839.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  840.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  841.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x88,
  842.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  843.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  844.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  845.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  846.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  847.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  848.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  849.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  850.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  851.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  852.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  853.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  854.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  855.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  856.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  857.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  858.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  859.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  860.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  861.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  862.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  863.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  864.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  865.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  866.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  867.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  868.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  869.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  870.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  871.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  872.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  873.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x87,
  874.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  875.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  876.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  877.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  878.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  879.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  880.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  881.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  882.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  883.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  884.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  885.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  886.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  887.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  888.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  889.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  890.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  891.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  892.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  893.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  894.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  895.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  896.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  897.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  898.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  899.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  900.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  901.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  902.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  903.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  904.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  905.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x86,
  906.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  907.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  908.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  909.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  910.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  911.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  912.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  913.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  914.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  915.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  916.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  917.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  918.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  919.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  920.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  921.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  922.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  923.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  924.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  925.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  926.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  927.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  928.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  929.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  930.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  931.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  932.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  933.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  934.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  935.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  936.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  937.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x85,
  938.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  939.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  940.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  941.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  942.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  943.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  944.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  945.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  946.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  947.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  948.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  949.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  950.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  951.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  952.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  953.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  954.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  955.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  956.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  957.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  958.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  959.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  960.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  961.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  962.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  963.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  964.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  965.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  966.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  967.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  968.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  969.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x84,
  970.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  971.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  972.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  973.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  974.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  975.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  976.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  977.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  978.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  979.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  980.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  981.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  982.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  983.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  984.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  985.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  986.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  987.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  988.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  989.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  990.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  991.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  992.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  993.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  994.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  995.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  996.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  997.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  998.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  999.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1000.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1001.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x83,
  1002.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1003.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1004.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1005.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1006.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1007.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1008.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1009.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1010.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1011.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1012.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1013.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1014.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1015.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1016.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1017.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1018.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1019.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1020.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1021.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1022.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1023.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1024.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1025.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1026.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1027.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1028.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1029.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1030.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1031.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1032.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1033.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x82,
  1034.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1035.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1036.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1037.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1038.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1039.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1040.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1041.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1042.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1043.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1044.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1045.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1046.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1047.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1048.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1049.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1050.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1051.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1052.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1053.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1054.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1055.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1056.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1057.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1058.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1059.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1060.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1061.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1062.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1063.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1064.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1065.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x81,
  1066.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1067.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1068.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1069.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1070.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1071.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1072.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1073.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1074.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1075.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1076.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1077.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1078.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1079.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1080.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1081.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1082.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1083.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1084.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1085.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1086.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1087.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1088.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1089.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1090.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1091.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1092.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1093.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1094.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1095.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1096.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1097.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x80,
  1098.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1099.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1100.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1101.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1102.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1103.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1104.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1105.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1106.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1107.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1108.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1109.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1110.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1111.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1112.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1113.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1114.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1115.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1116.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1117.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1118.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1119.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1120.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1121.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1122.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1123.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1124.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1125.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1126.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1127.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1128.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1129.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1130.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1131.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1132.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1133.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1134.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1135.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1136.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1137.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1138.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1139.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1140.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1141.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1142.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1143.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1144.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1145.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1146.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1147.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1148.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1149.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1150.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1151.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1152.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1153.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1154.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1155.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1156.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1157.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1158.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1159.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1160.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1161.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1162.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1163.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1164.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1165.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1166.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1167.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1168.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1169.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1170.     0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,
  1171.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1172.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1173.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1174.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1175.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1176.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1177.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1178.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1179.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1180.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1181.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1182.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1183.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1184.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1185.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1186.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1187.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1188.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1189.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1190.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1191.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1192.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1193.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1194.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1195.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1196.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1197.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1198.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1199.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1200.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1201.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1202.     0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,
  1203.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1204.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1205.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1206.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1207.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1208.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1209.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1210.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1211.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1212.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1213.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1214.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1215.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1216.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1217.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1218.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1219.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1220.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1221.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1222.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1223.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1224.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1225.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1226.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1227.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1228.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1229.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1230.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1231.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1232.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1233.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1234.     0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x03,
  1235.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1236.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1237.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1238.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1239.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1240.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1241.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1242.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1243.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1244.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1245.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1246.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1247.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1248.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1249.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1250.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1251.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1252.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1253.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1254.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1255.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1256.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1257.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1258.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1259.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1260.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1261.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1262.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1263.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1264.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1265.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1266.     0x03,0x03,0x04,0x04,0x04,0x04,0x04,0x04,
  1267.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1268.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1269.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1270.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1271.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1272.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1273.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1274.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1275.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1276.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1277.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1278.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1279.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1280.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1281.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1282.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1283.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1284.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1285.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1286.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1287.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1288.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1289.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1290.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1291.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1292.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1293.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1294.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1295.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1296.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1297.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1298.     0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x05,
  1299.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1300.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1301.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1302.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1303.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1304.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1305.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1306.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1307.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1308.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1309.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1310.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1311.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1312.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1313.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1314.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1315.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1316.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1317.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1318.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1319.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1320.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1321.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1322.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1323.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1324.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1325.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1326.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1327.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1328.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1329.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1330.     0x05,0x05,0x06,0x06,0x06,0x06,0x06,0x06,
  1331.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1332.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1333.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1334.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1335.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1336.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1337.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1338.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1339.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1340.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1341.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1342.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1343.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1344.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1345.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1346.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1347.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1348.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1349.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1350.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1351.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1352.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1353.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1354.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1355.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1356.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1357.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1358.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1359.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1360.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1361.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1362.     0x06,0x06,0x07,0x07,0x07,0x07,0x07,0x07,
  1363.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1364.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1365.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1366.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1367.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1368.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1369.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1370.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1371.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1372.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1373.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1374.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1375.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1376.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1377.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1378.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1379.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1380.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1381.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1382.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1383.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1384.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1385.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1386.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1387.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1388.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1389.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1390.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1391.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1392.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1393.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1394.     0x07,0x07,0x08,0x08,0x08,0x08,0x08,0x08,
  1395.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1396.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1397.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1398.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1399.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1400.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1401.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1402.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1403.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1404.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1405.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1406.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1407.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1408.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1409.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1410.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1411.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1412.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1413.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1414.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1415.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1416.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1417.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1418.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1419.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1420.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1421.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1422.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1423.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1424.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1425.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1426.     0x08,0x08,0x09,0x09,0x09,0x09,0x09,0x09,
  1427.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1428.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1429.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1430.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1431.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1432.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1433.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1434.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1435.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1436.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1437.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1438.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1439.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1440.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1441.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1442.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1443.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1444.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1445.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1446.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1447.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1448.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1449.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1450.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1451.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1452.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1453.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1454.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1455.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1456.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1457.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1458.     0x09,0x09,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1459.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1460.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1461.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1462.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1463.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1464.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1465.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1466.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1467.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1468.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1469.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1470.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1471.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1472.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1473.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1474.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1475.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1476.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1477.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1478.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1479.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1480.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1481.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1482.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1483.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1484.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1485.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1486.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1487.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1488.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1489.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1490.     0x0a,0x0a,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1491.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1492.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1493.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1494.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1495.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1496.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1497.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1498.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1499.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1500.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1501.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1502.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1503.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1504.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1505.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1506.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1507.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1508.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1509.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1510.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1511.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1512.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1513.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1514.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1515.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1516.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1517.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1518.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1519.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1520.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1521.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1522.     0x0b,0x0b,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1523.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1524.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1525.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1526.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1527.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1528.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1529.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1530.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1531.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1532.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1533.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1534.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1535.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1536.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1537.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1538.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1539.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1540.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1541.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1542.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1543.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1544.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1545.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1546.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1547.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1548.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1549.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1550.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1551.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1552.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1553.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1554.     0x0c,0x0c,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1555.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1556.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1557.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1558.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1559.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1560.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1561.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1562.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1563.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1564.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1565.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1566.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1567.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1568.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1569.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1570.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1571.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1572.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1573.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1574.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1575.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1576.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1577.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1578.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1579.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1580.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1581.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1582.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1583.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1584.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1585.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1586.     0x0d,0x0d,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1587.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1588.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1589.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1590.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1591.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1592.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1593.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1594.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1595.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1596.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1597.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1598.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1599.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1600.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1601.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1602.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1603.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1604.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1605.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1606.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1607.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1608.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1609.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1610.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1611.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1612.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1613.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1614.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1615.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1616.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1617.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1618.     0x0e,0x0e,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1619.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1620.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1621.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1622.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1623.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1624.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1625.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1626.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1627.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1628.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1629.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1630.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1631.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1632.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1633.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1634.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1635.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1636.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1637.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1638.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1639.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1640.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1641.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1642.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1643.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1644.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1645.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1646.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1647.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1648.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1649.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1650.     0x0f,0x0f,0x10,0x10,0x10,0x10,0x10,0x10,
  1651.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1652.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1653.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1654.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1655.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1656.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1657.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1658.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1659.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1660.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1661.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1662.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1663.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1664.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1665.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1666.     0x10,0x10,0x11,0x11,0x11,0x11,0x11,0x11,
  1667.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1668.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1669.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1670.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1671.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1672.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1673.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1674.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1675.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1676.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1677.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1678.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1679.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1680.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1681.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1682.     0x11,0x11,0x12,0x12,0x12,0x12,0x12,0x12,
  1683.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1684.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1685.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1686.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1687.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1688.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1689.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1690.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1691.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1692.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1693.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1694.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1695.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1696.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1697.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1698.     0x12,0x12,0x13,0x13,0x13,0x13,0x13,0x13,
  1699.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1700.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1701.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1702.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1703.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1704.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1705.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1706.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1707.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1708.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1709.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1710.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1711.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1712.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1713.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1714.     0x13,0x13,0x14,0x14,0x14,0x14,0x14,0x14,
  1715.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1716.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1717.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1718.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1719.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1720.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1721.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1722.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1723.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1724.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1725.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1726.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1727.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1728.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1729.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1730.     0x14,0x14,0x15,0x15,0x15,0x15,0x15,0x15,
  1731.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1732.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1733.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1734.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1735.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1736.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1737.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1738.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1739.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1740.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1741.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1742.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1743.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1744.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1745.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1746.     0x15,0x15,0x16,0x16,0x16,0x16,0x16,0x16,
  1747.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  1748.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  1749.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  1750.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  1751.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  1752.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  1753.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  1754.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  1755.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  1756.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  1757.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  1758.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  1759.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  1760.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  1761.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  1762.     0x16,0x16,0x17,0x17,0x17,0x17,0x17,0x17,
  1763.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  1764.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  1765.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  1766.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  1767.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  1768.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  1769.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  1770.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  1771.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  1772.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  1773.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  1774.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  1775.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  1776.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  1777.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  1778.     0x17,0x17,0x18,0x18,0x18,0x18,0x18,0x18,
  1779.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  1780.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  1781.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  1782.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  1783.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  1784.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  1785.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  1786.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  1787.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  1788.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  1789.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  1790.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  1791.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  1792.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  1793.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  1794.     0x18,0x18,0x19,0x19,0x19,0x19,0x19,0x19,
  1795.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  1796.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  1797.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  1798.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  1799.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  1800.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  1801.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  1802.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  1803.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  1804.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  1805.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  1806.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  1807.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  1808.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  1809.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  1810.     0x19,0x19,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1811.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1812.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1813.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1814.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1815.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1816.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1817.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1818.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1819.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1820.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1821.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1822.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1823.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1824.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1825.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  1826.     0x1a,0x1a,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1827.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1828.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1829.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1830.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1831.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1832.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1833.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1834.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1835.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1836.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1837.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1838.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1839.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1840.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1841.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  1842.     0x1b,0x1b,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1843.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1844.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1845.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1846.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1847.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1848.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1849.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1850.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1851.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1852.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1853.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1854.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1855.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1856.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1857.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  1858.     0x1c,0x1c,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1859.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1860.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1861.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1862.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1863.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1864.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1865.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1866.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1867.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1868.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1869.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1870.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1871.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1872.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1873.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  1874.     0x1d,0x1d,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1875.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1876.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1877.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1878.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1879.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1880.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1881.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1882.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1883.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1884.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1885.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1886.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1887.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1888.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1889.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  1890.     0x1e,0x1e,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1891.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1892.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1893.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1894.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1895.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1896.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1897.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1898.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1899.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1900.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1901.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1902.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1903.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1904.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1905.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  1906.     0x1f,0x1f,0x20,0x20,0x20,0x20,0x20,0x20,
  1907.     0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  1908.     0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  1909.     0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  1910.     0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  1911.     0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  1912.     0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  1913.     0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  1914.     0x20,0x20,0x21,0x21,0x21,0x21,0x21,0x21,
  1915.     0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  1916.     0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  1917.     0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  1918.     0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  1919.     0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  1920.     0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  1921.     0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  1922.     0x21,0x21,0x22,0x22,0x22,0x22,0x22,0x22,
  1923.     0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  1924.     0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  1925.     0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  1926.     0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  1927.     0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  1928.     0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  1929.     0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  1930.     0x22,0x22,0x23,0x23,0x23,0x23,0x23,0x23,
  1931.     0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  1932.     0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  1933.     0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  1934.     0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  1935.     0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  1936.     0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  1937.     0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  1938.     0x23,0x23,0x24,0x24,0x24,0x24,0x24,0x24,
  1939.     0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  1940.     0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  1941.     0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  1942.     0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  1943.     0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  1944.     0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  1945.     0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  1946.     0x24,0x24,0x25,0x25,0x25,0x25,0x25,0x25,
  1947.     0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  1948.     0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  1949.     0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  1950.     0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  1951.     0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  1952.     0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  1953.     0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  1954.     0x25,0x25,0x26,0x26,0x26,0x26,0x26,0x26,
  1955.     0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  1956.     0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  1957.     0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  1958.     0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  1959.     0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  1960.     0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  1961.     0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  1962.     0x26,0x26,0x27,0x27,0x27,0x27,0x27,0x27,
  1963.     0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  1964.     0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  1965.     0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  1966.     0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  1967.     0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  1968.     0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  1969.     0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  1970.     0x27,0x27,0x28,0x28,0x28,0x28,0x28,0x28,
  1971.     0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  1972.     0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  1973.     0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  1974.     0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  1975.     0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  1976.     0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  1977.     0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  1978.     0x28,0x28,0x29,0x29,0x29,0x29,0x29,0x29,
  1979.     0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  1980.     0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  1981.     0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  1982.     0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  1983.     0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  1984.     0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  1985.     0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  1986.     0x29,0x29,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  1987.     0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  1988.     0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  1989.     0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  1990.     0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  1991.     0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  1992.     0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  1993.     0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  1994.     0x2a,0x2a,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  1995.     0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  1996.     0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  1997.     0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  1998.     0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  1999.     0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  2000.     0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  2001.     0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  2002.     0x2b,0x2b,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2003.     0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2004.     0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2005.     0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2006.     0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2007.     0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2008.     0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2009.     0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2010.     0x2c,0x2c,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2011.     0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2012.     0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2013.     0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2014.     0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2015.     0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2016.     0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2017.     0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2018.     0x2d,0x2d,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2019.     0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2020.     0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2021.     0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2022.     0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2023.     0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2024.     0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2025.     0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2026.     0x2e,0x2e,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2027.     0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2028.     0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2029.     0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2030.     0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2031.     0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2032.     0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2033.     0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2034.     0x2f,0x2f,0x30,0x30,0x30,0x30,0x30,0x30,
  2035.     0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  2036.     0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  2037.     0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  2038.     0x30,0x30,0x31,0x31,0x31,0x31,0x31,0x31,
  2039.     0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  2040.     0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  2041.     0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  2042.     0x31,0x31,0x32,0x32,0x32,0x32,0x32,0x32,
  2043.     0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  2044.     0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  2045.     0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  2046.     0x32,0x32,0x33,0x33,0x33,0x33,0x33,0x33,
  2047.     0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  2048.     0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  2049.     0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  2050.     0x33,0x33,0x34,0x34,0x34,0x34,0x34,0x34,
  2051.     0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  2052.     0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  2053.     0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  2054.     0x34,0x34,0x35,0x35,0x35,0x35,0x35,0x35,
  2055.     0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  2056.     0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  2057.     0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  2058.     0x35,0x35,0x36,0x36,0x36,0x36,0x36,0x36,
  2059.     0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  2060.     0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  2061.     0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  2062.     0x36,0x36,0x37,0x37,0x37,0x37,0x37,0x37,
  2063.     0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  2064.     0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  2065.     0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  2066.     0x37,0x37,0x38,0x38,0x38,0x38,0x38,0x38,
  2067.     0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  2068.     0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  2069.     0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  2070.     0x38,0x38,0x39,0x39,0x39,0x39,0x39,0x39,
  2071.     0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  2072.     0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  2073.     0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  2074.     0x39,0x39,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,
  2075.     0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,
  2076.     0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,
  2077.     0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,
  2078.     0x3a,0x3a,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,
  2079.     0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,
  2080.     0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,
  2081.     0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,
  2082.     0x3b,0x3b,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,
  2083.     0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,
  2084.     0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,
  2085.     0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,
  2086.     0x3c,0x3c,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,
  2087.     0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,
  2088.     0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,
  2089.     0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,
  2090.     0x3d,0x3d,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,
  2091.     0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,
  2092.     0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,
  2093.     0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,
  2094.     0x3e,0x3e,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,
  2095.     0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,
  2096.     0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,
  2097.     0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,
  2098.     0x3f,0x3f,0x40,0x40,0x40,0x40,0x40,0x40,
  2099.     0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
  2100.     0x40,0x40,0x41,0x41,0x41,0x41,0x41,0x41,
  2101.     0x41,0x41,0x41,0x41,0x41,0x41,0x41,0x41,
  2102.     0x41,0x41,0x42,0x42,0x42,0x42,0x42,0x42,
  2103.     0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,
  2104.     0x42,0x42,0x43,0x43,0x43,0x43,0x43,0x43,
  2105.     0x43,0x43,0x43,0x43,0x43,0x43,0x43,0x43,
  2106.     0x43,0x43,0x44,0x44,0x44,0x44,0x44,0x44,
  2107.     0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,
  2108.     0x44,0x44,0x45,0x45,0x45,0x45,0x45,0x45,
  2109.     0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x45,
  2110.     0x45,0x45,0x46,0x46,0x46,0x46,0x46,0x46,
  2111.     0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,
  2112.     0x46,0x46,0x47,0x47,0x47,0x47,0x47,0x47,
  2113.     0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,
  2114.     0x47,0x47,0x48,0x48,0x48,0x48,0x48,0x48,
  2115.     0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,
  2116.     0x48,0x48,0x49,0x49,0x49,0x49,0x49,0x49,
  2117.     0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,
  2118.     0x49,0x49,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,
  2119.     0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,
  2120.     0x4a,0x4a,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,
  2121.     0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,
  2122.     0x4b,0x4b,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,
  2123.     0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,
  2124.     0x4c,0x4c,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,
  2125.     0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,
  2126.     0x4d,0x4d,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,
  2127.     0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,
  2128.     0x4e,0x4e,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,
  2129.     0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,
  2130.     0x4f,0x4f,0x50,0x50,0x50,0x50,0x50,0x50,
  2131.     0x50,0x50,0x51,0x51,0x51,0x51,0x51,0x51,
  2132.     0x51,0x51,0x52,0x52,0x52,0x52,0x52,0x52,
  2133.     0x52,0x52,0x53,0x53,0x53,0x53,0x53,0x53,
  2134.     0x53,0x53,0x54,0x54,0x54,0x54,0x54,0x54,
  2135.     0x54,0x54,0x55,0x55,0x55,0x55,0x55,0x55,
  2136.     0x55,0x55,0x56,0x56,0x56,0x56,0x56,0x56,
  2137.     0x56,0x56,0x57,0x57,0x57,0x57,0x57,0x57,
  2138.     0x57,0x57,0x58,0x58,0x58,0x58,0x58,0x58,
  2139.     0x58,0x58,0x59,0x59,0x59,0x59,0x59,0x59,
  2140.     0x59,0x59,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
  2141.     0x5a,0x5a,0x5b,0x5b,0x5b,0x5b,0x5b,0x5b,
  2142.     0x5b,0x5b,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,
  2143.     0x5c,0x5c,0x5d,0x5d,0x5d,0x5d,0x5d,0x5d,
  2144.     0x5d,0x5d,0x5e,0x5e,0x5e,0x5e,0x5e,0x5e,
  2145.     0x5e,0x5e,0x5f,0x5f,0x5f,0x5f,0x5f,0x5f,
  2146.     0x5f,0x5f,0x60,0x60,0x60,0x60,0x61,0x61,
  2147.     0x61,0x61,0x62,0x62,0x62,0x62,0x63,0x63,
  2148.     0x63,0x63,0x64,0x64,0x64,0x64,0x65,0x65,
  2149.     0x65,0x65,0x66,0x66,0x66,0x66,0x67,0x67,
  2150.     0x67,0x67,0x68,0x68,0x68,0x68,0x69,0x69,
  2151.     0x69,0x69,0x6a,0x6a,0x6a,0x6a,0x6b,0x6b,
  2152.     0x6b,0x6b,0x6c,0x6c,0x6c,0x6c,0x6d,0x6d,
  2153.     0x6d,0x6d,0x6e,0x6e,0x6e,0x6e,0x6f,0x6f,
  2154.     0x6f,0x6f,0x70,0x70,0x71,0x71,0x72,0x72,
  2155.     0x73,0x73,0x74,0x74,0x75,0x75,0x76,0x76,
  2156.     0x77,0x77,0x78,0x78,0x79,0x79,0x7a,0x7a,
  2157.     0x7b,0x7b,0x7c,0x7c,0x7d,0x7d,0x7e,0x7e};
  2158.  
  2159. int ulaw_exp_table[256] = {
  2160.      -32124,-31100,-30076,-29052,-28028,-27004,-25980,-24956,
  2161.      -23932,-22908,-21884,-20860,-19836,-18812,-17788,-16764,
  2162.      -15996,-15484,-14972,-14460,-13948,-13436,-12924,-12412,
  2163.      -11900,-11388,-10876,-10364, -9852, -9340, -8828, -8316,
  2164.       -7932, -7676, -7420, -7164, -6908, -6652, -6396, -6140,
  2165.       -5884, -5628, -5372, -5116, -4860, -4604, -4348, -4092,
  2166.       -3900, -3772, -3644, -3516, -3388, -3260, -3132, -3004,
  2167.       -2876, -2748, -2620, -2492, -2364, -2236, -2108, -1980,
  2168.       -1884, -1820, -1756, -1692, -1628, -1564, -1500, -1436,
  2169.       -1372, -1308, -1244, -1180, -1116, -1052,  -988,  -924,
  2170.        -876,  -844,  -812,  -780,  -748,  -716,  -684,  -652,
  2171.        -620,  -588,  -556,  -524,  -492,  -460,  -428,  -396,
  2172.        -372,  -356,  -340,  -324,  -308,  -292,  -276,  -260,
  2173.        -244,  -228,  -212,  -196,  -180,  -164,  -148,  -132,
  2174.        -120,  -112,  -104,   -96,   -88,   -80,   -72,   -64,
  2175.         -56,   -48,   -40,   -32,   -24,   -16,    -8,     0,
  2176.       32124, 31100, 30076, 29052, 28028, 27004, 25980, 24956,
  2177.       23932, 22908, 21884, 20860, 19836, 18812, 17788, 16764,
  2178.       15996, 15484, 14972, 14460, 13948, 13436, 12924, 12412,
  2179.       11900, 11388, 10876, 10364,  9852,  9340,  8828,  8316,
  2180.        7932,  7676,  7420,  7164,  6908,  6652,  6396,  6140,
  2181.        5884,  5628,  5372,  5116,  4860,  4604,  4348,  4092,
  2182.        3900,  3772,  3644,  3516,  3388,  3260,  3132,  3004,
  2183.        2876,  2748,  2620,  2492,  2364,  2236,  2108,  1980,
  2184.        1884,  1820,  1756,  1692,  1628,  1564,  1500,  1436,
  2185.        1372,  1308,  1244,  1180,  1116,  1052,   988,   924,
  2186.         876,   844,   812,   780,   748,   716,   684,   652,
  2187.         620,   588,   556,   524,   492,   460,   428,   396,
  2188.         372,   356,   340,   324,   308,   292,   276,   260,
  2189.         244,   228,   212,   196,   180,   164,   148,   132,
  2190.         120,   112,   104,    96,    88,    80,    72,    64,
  2191.          56,    48,    40,    32,    24,    16,     8,     0};
  2192. #endif
  2193.  
  2194. #ifndef FAST_ALAW_CONVERSION
  2195.  
  2196. /*
  2197.  * A-law routines by Graeme W. Gill.
  2198.  * Date: 93/5/7
  2199.  *
  2200.  * References:
  2201.  * 1) CCITT Recommendation G.711
  2202.  *
  2203.  * These routines were used to create the fast
  2204.  * lookup tables.
  2205.  */
  2206.  
  2207. #define ACLIP 31744
  2208.  
  2209. unsigned char
  2210. st_linear_to_Alaw( sample )
  2211. int sample;
  2212.     {
  2213.     static int exp_lut[128] = {1,1,2,2,3,3,3,3,
  2214.                                4,4,4,4,4,4,4,4,
  2215.                                5,5,5,5,5,5,5,5,
  2216.                                5,5,5,5,5,5,5,5,
  2217.                                6,6,6,6,6,6,6,6,
  2218.                                6,6,6,6,6,6,6,6,
  2219.                                6,6,6,6,6,6,6,6,
  2220.                                6,6,6,6,6,6,6,6,
  2221.                                7,7,7,7,7,7,7,7,
  2222.                                7,7,7,7,7,7,7,7,
  2223.                                7,7,7,7,7,7,7,7,
  2224.                                7,7,7,7,7,7,7,7,
  2225.                                7,7,7,7,7,7,7,7,
  2226.                                7,7,7,7,7,7,7,7,
  2227.                                7,7,7,7,7,7,7,7,
  2228.                                7,7,7,7,7,7,7,7};
  2229.  
  2230.     int sign, exponent, mantissa;
  2231.     unsigned char Alawbyte;
  2232.  
  2233.     /* Get the sample into sign-magnitude. */
  2234.     sign = ((~sample) >> 8) & 0x80;        /* set aside the sign */
  2235.     if ( sign == 0 ) sample = -sample;        /* get magnitude */
  2236.     if ( sample > ACLIP ) sample = ACLIP;    /* clip the magnitude */
  2237.  
  2238.     /* Convert from 16 bit linear to ulaw. */
  2239.     if (sample >= 256)
  2240.     {
  2241.     exponent = exp_lut[( sample >> 8 ) & 0x7F];
  2242.     mantissa = ( sample >> ( exponent + 3 ) ) & 0x0F;
  2243.     Alawbyte = (( exponent << 4 ) | mantissa);
  2244.     }
  2245.     else
  2246.     Alawbyte = (sample >> 4);
  2247.     Alawbyte ^= (sign ^ 0x55);
  2248.  
  2249.     return Alawbyte;
  2250.     }
  2251.  
  2252. int
  2253. st_Alaw_to_linear( Alawbyte )
  2254. unsigned char Alawbyte;
  2255.     {
  2256.     static int exp_lut[8] = { 0, 264, 528, 1056, 2112, 4224, 8448, 16896 };
  2257.     int sign, exponent, mantissa, sample;
  2258.  
  2259.     Alawbyte ^= 0x55;
  2260.     sign = ( Alawbyte & 0x80 );
  2261.     Alawbyte &= 0x7f;            /* get magnitude */
  2262.     if (Alawbyte >= 16)
  2263.     {
  2264.     exponent = (Alawbyte >> 4 ) & 0x07;
  2265.     mantissa = Alawbyte & 0x0F;
  2266.     sample = exp_lut[exponent] + ( mantissa << ( exponent + 3 ) );
  2267.     }
  2268.     else
  2269.     sample = (Alawbyte << 4) + 8;
  2270.     if ( sign == 0 ) sample = -sample;
  2271.  
  2272.     return sample;
  2273.     }
  2274.  
  2275. #else 
  2276.  
  2277. unsigned char Alaw_comp_table[16384] = {
  2278.      0xD5,0xD5,0xD5,0xD5,0xD4,0xD4,0xD4,0xD4,
  2279.      0xD7,0xD7,0xD7,0xD7,0xD6,0xD6,0xD6,0xD6,
  2280.      0xD1,0xD1,0xD1,0xD1,0xD0,0xD0,0xD0,0xD0,
  2281.      0xD3,0xD3,0xD3,0xD3,0xD2,0xD2,0xD2,0xD2,
  2282.      0xDD,0xDD,0xDD,0xDD,0xDC,0xDC,0xDC,0xDC,
  2283.      0xDF,0xDF,0xDF,0xDF,0xDE,0xDE,0xDE,0xDE,
  2284.      0xD9,0xD9,0xD9,0xD9,0xD8,0xD8,0xD8,0xD8,
  2285.      0xDB,0xDB,0xDB,0xDB,0xDA,0xDA,0xDA,0xDA,
  2286.      0xC5,0xC5,0xC5,0xC5,0xC4,0xC4,0xC4,0xC4,
  2287.      0xC7,0xC7,0xC7,0xC7,0xC6,0xC6,0xC6,0xC6,
  2288.      0xC1,0xC1,0xC1,0xC1,0xC0,0xC0,0xC0,0xC0,
  2289.      0xC3,0xC3,0xC3,0xC3,0xC2,0xC2,0xC2,0xC2,
  2290.      0xCD,0xCD,0xCD,0xCD,0xCC,0xCC,0xCC,0xCC,
  2291.      0xCF,0xCF,0xCF,0xCF,0xCE,0xCE,0xCE,0xCE,
  2292.      0xC9,0xC9,0xC9,0xC9,0xC8,0xC8,0xC8,0xC8,
  2293.      0xCB,0xCB,0xCB,0xCB,0xCA,0xCA,0xCA,0xCA,
  2294.      0xF5,0xF5,0xF5,0xF5,0xF5,0xF5,0xF5,0xF5,
  2295.      0xF4,0xF4,0xF4,0xF4,0xF4,0xF4,0xF4,0xF4,
  2296.      0xF7,0xF7,0xF7,0xF7,0xF7,0xF7,0xF7,0xF7,
  2297.      0xF6,0xF6,0xF6,0xF6,0xF6,0xF6,0xF6,0xF6,
  2298.      0xF1,0xF1,0xF1,0xF1,0xF1,0xF1,0xF1,0xF1,
  2299.      0xF0,0xF0,0xF0,0xF0,0xF0,0xF0,0xF0,0xF0,
  2300.      0xF3,0xF3,0xF3,0xF3,0xF3,0xF3,0xF3,0xF3,
  2301.      0xF2,0xF2,0xF2,0xF2,0xF2,0xF2,0xF2,0xF2,
  2302.      0xFD,0xFD,0xFD,0xFD,0xFD,0xFD,0xFD,0xFD,
  2303.      0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,
  2304.      0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
  2305.      0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,
  2306.      0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,0xF9,
  2307.      0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,
  2308.      0xFB,0xFB,0xFB,0xFB,0xFB,0xFB,0xFB,0xFB,
  2309.      0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,0xFA,
  2310.      0xE5,0xE5,0xE5,0xE5,0xE5,0xE5,0xE5,0xE5,
  2311.      0xE5,0xE5,0xE5,0xE5,0xE5,0xE5,0xE5,0xE5,
  2312.      0xE4,0xE4,0xE4,0xE4,0xE4,0xE4,0xE4,0xE4,
  2313.      0xE4,0xE4,0xE4,0xE4,0xE4,0xE4,0xE4,0xE4,
  2314.      0xE7,0xE7,0xE7,0xE7,0xE7,0xE7,0xE7,0xE7,
  2315.      0xE7,0xE7,0xE7,0xE7,0xE7,0xE7,0xE7,0xE7,
  2316.      0xE6,0xE6,0xE6,0xE6,0xE6,0xE6,0xE6,0xE6,
  2317.      0xE6,0xE6,0xE6,0xE6,0xE6,0xE6,0xE6,0xE6,
  2318.      0xE1,0xE1,0xE1,0xE1,0xE1,0xE1,0xE1,0xE1,
  2319.      0xE1,0xE1,0xE1,0xE1,0xE1,0xE1,0xE1,0xE1,
  2320.      0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,
  2321.      0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,
  2322.      0xE3,0xE3,0xE3,0xE3,0xE3,0xE3,0xE3,0xE3,
  2323.      0xE3,0xE3,0xE3,0xE3,0xE3,0xE3,0xE3,0xE3,
  2324.      0xE2,0xE2,0xE2,0xE2,0xE2,0xE2,0xE2,0xE2,
  2325.      0xE2,0xE2,0xE2,0xE2,0xE2,0xE2,0xE2,0xE2,
  2326.      0xED,0xED,0xED,0xED,0xED,0xED,0xED,0xED,
  2327.      0xED,0xED,0xED,0xED,0xED,0xED,0xED,0xED,
  2328.      0xEC,0xEC,0xEC,0xEC,0xEC,0xEC,0xEC,0xEC,
  2329.      0xEC,0xEC,0xEC,0xEC,0xEC,0xEC,0xEC,0xEC,
  2330.      0xEF,0xEF,0xEF,0xEF,0xEF,0xEF,0xEF,0xEF,
  2331.      0xEF,0xEF,0xEF,0xEF,0xEF,0xEF,0xEF,0xEF,
  2332.      0xEE,0xEE,0xEE,0xEE,0xEE,0xEE,0xEE,0xEE,
  2333.      0xEE,0xEE,0xEE,0xEE,0xEE,0xEE,0xEE,0xEE,
  2334.      0xE9,0xE9,0xE9,0xE9,0xE9,0xE9,0xE9,0xE9,
  2335.      0xE9,0xE9,0xE9,0xE9,0xE9,0xE9,0xE9,0xE9,
  2336.      0xE8,0xE8,0xE8,0xE8,0xE8,0xE8,0xE8,0xE8,
  2337.      0xE8,0xE8,0xE8,0xE8,0xE8,0xE8,0xE8,0xE8,
  2338.      0xEB,0xEB,0xEB,0xEB,0xEB,0xEB,0xEB,0xEB,
  2339.      0xEB,0xEB,0xEB,0xEB,0xEB,0xEB,0xEB,0xEB,
  2340.      0xEA,0xEA,0xEA,0xEA,0xEA,0xEA,0xEA,0xEA,
  2341.      0xEA,0xEA,0xEA,0xEA,0xEA,0xEA,0xEA,0xEA,
  2342.      0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  2343.      0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  2344.      0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  2345.      0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  2346.      0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  2347.      0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  2348.      0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  2349.      0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  2350.      0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  2351.      0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  2352.      0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  2353.      0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  2354.      0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  2355.      0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  2356.      0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  2357.      0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  2358.      0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  2359.      0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  2360.      0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  2361.      0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  2362.      0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  2363.      0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  2364.      0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  2365.      0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  2366.      0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  2367.      0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  2368.      0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  2369.      0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  2370.      0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  2371.      0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  2372.      0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  2373.      0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  2374.      0x9D,0x9D,0x9D,0x9D,0x9D,0x9D,0x9D,0x9D,
  2375.      0x9D,0x9D,0x9D,0x9D,0x9D,0x9D,0x9D,0x9D,
  2376.      0x9D,0x9D,0x9D,0x9D,0x9D,0x9D,0x9D,0x9D,
  2377.      0x9D,0x9D,0x9D,0x9D,0x9D,0x9D,0x9D,0x9D,
  2378.      0x9C,0x9C,0x9C,0x9C,0x9C,0x9C,0x9C,0x9C,
  2379.      0x9C,0x9C,0x9C,0x9C,0x9C,0x9C,0x9C,0x9C,
  2380.      0x9C,0x9C,0x9C,0x9C,0x9C,0x9C,0x9C,0x9C,
  2381.      0x9C,0x9C,0x9C,0x9C,0x9C,0x9C,0x9C,0x9C,
  2382.      0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,
  2383.      0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,
  2384.      0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,
  2385.      0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,
  2386.      0x9E,0x9E,0x9E,0x9E,0x9E,0x9E,0x9E,0x9E,
  2387.      0x9E,0x9E,0x9E,0x9E,0x9E,0x9E,0x9E,0x9E,
  2388.      0x9E,0x9E,0x9E,0x9E,0x9E,0x9E,0x9E,0x9E,
  2389.      0x9E,0x9E,0x9E,0x9E,0x9E,0x9E,0x9E,0x9E,
  2390.      0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  2391.      0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  2392.      0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  2393.      0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  2394.      0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  2395.      0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  2396.      0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  2397.      0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  2398.      0x9B,0x9B,0x9B,0x9B,0x9B,0x9B,0x9B,0x9B,
  2399.      0x9B,0x9B,0x9B,0x9B,0x9B,0x9B,0x9B,0x9B,
  2400.      0x9B,0x9B,0x9B,0x9B,0x9B,0x9B,0x9B,0x9B,
  2401.      0x9B,0x9B,0x9B,0x9B,0x9B,0x9B,0x9B,0x9B,
  2402.      0x9A,0x9A,0x9A,0x9A,0x9A,0x9A,0x9A,0x9A,
  2403.      0x9A,0x9A,0x9A,0x9A,0x9A,0x9A,0x9A,0x9A,
  2404.      0x9A,0x9A,0x9A,0x9A,0x9A,0x9A,0x9A,0x9A,
  2405.      0x9A,0x9A,0x9A,0x9A,0x9A,0x9A,0x9A,0x9A,
  2406.      0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  2407.      0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  2408.      0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  2409.      0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  2410.      0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  2411.      0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  2412.      0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  2413.      0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  2414.      0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  2415.      0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  2416.      0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  2417.      0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  2418.      0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  2419.      0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  2420.      0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  2421.      0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  2422.      0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  2423.      0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  2424.      0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  2425.      0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  2426.      0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  2427.      0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  2428.      0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  2429.      0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  2430.      0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  2431.      0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  2432.      0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  2433.      0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  2434.      0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  2435.      0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  2436.      0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  2437.      0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  2438.      0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  2439.      0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  2440.      0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  2441.      0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  2442.      0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  2443.      0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  2444.      0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  2445.      0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  2446.      0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  2447.      0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  2448.      0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  2449.      0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  2450.      0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  2451.      0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  2452.      0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  2453.      0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  2454.      0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  2455.      0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  2456.      0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  2457.      0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  2458.      0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  2459.      0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  2460.      0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  2461.      0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  2462.      0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  2463.      0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  2464.      0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  2465.      0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  2466.      0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  2467.      0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  2468.      0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  2469.      0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  2470.      0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,
  2471.      0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,
  2472.      0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,
  2473.      0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,
  2474.      0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,
  2475.      0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,
  2476.      0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,
  2477.      0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,0x8D,
  2478.      0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,
  2479.      0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,
  2480.      0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,
  2481.      0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,
  2482.      0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,
  2483.      0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,
  2484.      0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,
  2485.      0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,
  2486.      0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,
  2487.      0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,
  2488.      0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,
  2489.      0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,
  2490.      0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,
  2491.      0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,
  2492.      0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,
  2493.      0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,0x8F,
  2494.      0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,
  2495.      0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,
  2496.      0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,
  2497.      0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,
  2498.      0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,
  2499.      0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,
  2500.      0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,
  2501.      0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,
  2502.      0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  2503.      0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  2504.      0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  2505.      0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  2506.      0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  2507.      0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  2508.      0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  2509.      0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  2510.      0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  2511.      0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  2512.      0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  2513.      0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  2514.      0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  2515.      0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  2516.      0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  2517.      0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  2518.      0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,
  2519.      0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,
  2520.      0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,
  2521.      0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,
  2522.      0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,
  2523.      0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,
  2524.      0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,
  2525.      0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,0x8B,
  2526.      0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,
  2527.      0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,
  2528.      0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,
  2529.      0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,
  2530.      0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,
  2531.      0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,
  2532.      0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,
  2533.      0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,0x8A,
  2534.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2535.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2536.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2537.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2538.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2539.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2540.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2541.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2542.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2543.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2544.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2545.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2546.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2547.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2548.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2549.      0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,0xB5,
  2550.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2551.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2552.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2553.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2554.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2555.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2556.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2557.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2558.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2559.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2560.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2561.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2562.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2563.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2564.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2565.      0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,0xB4,
  2566.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2567.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2568.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2569.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2570.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2571.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2572.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2573.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2574.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2575.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2576.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2577.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2578.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2579.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2580.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2581.      0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,0xB7,
  2582.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2583.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2584.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2585.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2586.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2587.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2588.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2589.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2590.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2591.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2592.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2593.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2594.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2595.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2596.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2597.      0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,0xB6,
  2598.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2599.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2600.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2601.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2602.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2603.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2604.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2605.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2606.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2607.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2608.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2609.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2610.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2611.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2612.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2613.      0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,0xB1,
  2614.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2615.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2616.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2617.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2618.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2619.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2620.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2621.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2622.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2623.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2624.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2625.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2626.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2627.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2628.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2629.      0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,0xB0,
  2630.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2631.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2632.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2633.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2634.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2635.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2636.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2637.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2638.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2639.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2640.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2641.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2642.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2643.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2644.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2645.      0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,0xB3,
  2646.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2647.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2648.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2649.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2650.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2651.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2652.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2653.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2654.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2655.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2656.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2657.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2658.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2659.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2660.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2661.      0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,0xB2,
  2662.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2663.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2664.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2665.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2666.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2667.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2668.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2669.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2670.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2671.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2672.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2673.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2674.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2675.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2676.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2677.      0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,0xBD,
  2678.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2679.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2680.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2681.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2682.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2683.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2684.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2685.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2686.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2687.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2688.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2689.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2690.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2691.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2692.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2693.      0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,0xBC,
  2694.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2695.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2696.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2697.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2698.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2699.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2700.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2701.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2702.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2703.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2704.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2705.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2706.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2707.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2708.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2709.      0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,0xBF,
  2710.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2711.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2712.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2713.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2714.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2715.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2716.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2717.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2718.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2719.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2720.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2721.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2722.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2723.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2724.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2725.      0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,0xBE,
  2726.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2727.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2728.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2729.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2730.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2731.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2732.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2733.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2734.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2735.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2736.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2737.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2738.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2739.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2740.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2741.      0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,0xB9,
  2742.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2743.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2744.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2745.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2746.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2747.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2748.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2749.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2750.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2751.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2752.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2753.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2754.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2755.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2756.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2757.      0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,0xB8,
  2758.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2759.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2760.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2761.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2762.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2763.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2764.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2765.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2766.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2767.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2768.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2769.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2770.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2771.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2772.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2773.      0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,0xBB,
  2774.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2775.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2776.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2777.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2778.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2779.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2780.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2781.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2782.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2783.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2784.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2785.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2786.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2787.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2788.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2789.      0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,0xBA,
  2790.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2791.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2792.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2793.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2794.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2795.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2796.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2797.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2798.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2799.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2800.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2801.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2802.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2803.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2804.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2805.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2806.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2807.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2808.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2809.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2810.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2811.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2812.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2813.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2814.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2815.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2816.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2817.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2818.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2819.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2820.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2821.      0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,0xA5,
  2822.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2823.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2824.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2825.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2826.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2827.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2828.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2829.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2830.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2831.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2832.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2833.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2834.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2835.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2836.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2837.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2838.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2839.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2840.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2841.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2842.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2843.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2844.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2845.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2846.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2847.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2848.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2849.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2850.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2851.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2852.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2853.      0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,0xA4,
  2854.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2855.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2856.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2857.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2858.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2859.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2860.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2861.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2862.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2863.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2864.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2865.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2866.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2867.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2868.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2869.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2870.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2871.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2872.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2873.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2874.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2875.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2876.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2877.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2878.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2879.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2880.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2881.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2882.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2883.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2884.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2885.      0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,0xA7,
  2886.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2887.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2888.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2889.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2890.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2891.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2892.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2893.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2894.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2895.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2896.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2897.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2898.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2899.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2900.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2901.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2902.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2903.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2904.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2905.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2906.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2907.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2908.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2909.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2910.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2911.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2912.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2913.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2914.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2915.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2916.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2917.      0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,0xA6,
  2918.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2919.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2920.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2921.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2922.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2923.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2924.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2925.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2926.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2927.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2928.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2929.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2930.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2931.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2932.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2933.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2934.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2935.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2936.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2937.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2938.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2939.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2940.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2941.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2942.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2943.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2944.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2945.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2946.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2947.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2948.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2949.      0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,0xA1,
  2950.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2951.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2952.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2953.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2954.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2955.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2956.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2957.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2958.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2959.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2960.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2961.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2962.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2963.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2964.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2965.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2966.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2967.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2968.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2969.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2970.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2971.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2972.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2973.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2974.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2975.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2976.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2977.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2978.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2979.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2980.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2981.      0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,
  2982.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2983.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2984.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2985.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2986.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2987.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2988.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2989.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2990.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2991.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2992.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2993.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2994.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2995.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2996.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2997.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2998.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  2999.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  3000.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  3001.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  3002.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  3003.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  3004.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  3005.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  3006.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  3007.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  3008.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  3009.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  3010.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  3011.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  3012.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  3013.      0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,0xA3,
  3014.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3015.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3016.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3017.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3018.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3019.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3020.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3021.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3022.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3023.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3024.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3025.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3026.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3027.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3028.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3029.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3030.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3031.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3032.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3033.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3034.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3035.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3036.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3037.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3038.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3039.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3040.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3041.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3042.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3043.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3044.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3045.      0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,0xA2,
  3046.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3047.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3048.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3049.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3050.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3051.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3052.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3053.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3054.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3055.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3056.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3057.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3058.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3059.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3060.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3061.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3062.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3063.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3064.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3065.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3066.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3067.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3068.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3069.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3070.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3071.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3072.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3073.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3074.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3075.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3076.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3077.      0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,0xAD,
  3078.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3079.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3080.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3081.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3082.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3083.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3084.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3085.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3086.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3087.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3088.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3089.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3090.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3091.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3092.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3093.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3094.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3095.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3096.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3097.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3098.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3099.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3100.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3101.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3102.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3103.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3104.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3105.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3106.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3107.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3108.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3109.      0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,0xAC,
  3110.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3111.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3112.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3113.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3114.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3115.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3116.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3117.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3118.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3119.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3120.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3121.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3122.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3123.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3124.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3125.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3126.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3127.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3128.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3129.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3130.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3131.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3132.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3133.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3134.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3135.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3136.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3137.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3138.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3139.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3140.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3141.      0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,0xAF,
  3142.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3143.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3144.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3145.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3146.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3147.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3148.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3149.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3150.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3151.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3152.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3153.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3154.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3155.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3156.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3157.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3158.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3159.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3160.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3161.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3162.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3163.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3164.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3165.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3166.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3167.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3168.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3169.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3170.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3171.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3172.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3173.      0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,0xAE,
  3174.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3175.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3176.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3177.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3178.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3179.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3180.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3181.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3182.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3183.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3184.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3185.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3186.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3187.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3188.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3189.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3190.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3191.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3192.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3193.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3194.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3195.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3196.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3197.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3198.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3199.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3200.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3201.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3202.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3203.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3204.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3205.      0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,0xA9,
  3206.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3207.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3208.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3209.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3210.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3211.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3212.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3213.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3214.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3215.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3216.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3217.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3218.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3219.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3220.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3221.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3222.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3223.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3224.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3225.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3226.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3227.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3228.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3229.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3230.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3231.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3232.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3233.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3234.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3235.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3236.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3237.      0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,0xA8,
  3238.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3239.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3240.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3241.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3242.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3243.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3244.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3245.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3246.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3247.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3248.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3249.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3250.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3251.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3252.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3253.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3254.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3255.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3256.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3257.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3258.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3259.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3260.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3261.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3262.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3263.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3264.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3265.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3266.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3267.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3268.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3269.      0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,0xAB,
  3270.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3271.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3272.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3273.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3274.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3275.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3276.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3277.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3278.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3279.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3280.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3281.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3282.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3283.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3284.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3285.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3286.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3287.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3288.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3289.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3290.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3291.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3292.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3293.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3294.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3295.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3296.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3297.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3298.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3299.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3300.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3301.      0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,0xAA,
  3302.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3303.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3304.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3305.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3306.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3307.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3308.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3309.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3310.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3311.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3312.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3313.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3314.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3315.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3316.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3317.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3318.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3319.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3320.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3321.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3322.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3323.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3324.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3325.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3326.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3327.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3328.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3329.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3330.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3331.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3332.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3333.      0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,0x2A,
  3334.      0x2A,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3335.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3336.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3337.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3338.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3339.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3340.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3341.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3342.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3343.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3344.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3345.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3346.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3347.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3348.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3349.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3350.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3351.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3352.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3353.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3354.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3355.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3356.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3357.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3358.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3359.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3360.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3361.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3362.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3363.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3364.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3365.      0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,0x2B,
  3366.      0x2B,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3367.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3368.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3369.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3370.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3371.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3372.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3373.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3374.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3375.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3376.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3377.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3378.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3379.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3380.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3381.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3382.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3383.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3384.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3385.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3386.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3387.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3388.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3389.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3390.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3391.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3392.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3393.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3394.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3395.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3396.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3397.      0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  3398.      0x28,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3399.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3400.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3401.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3402.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3403.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3404.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3405.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3406.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3407.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3408.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3409.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3410.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3411.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3412.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3413.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3414.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3415.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3416.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3417.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3418.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3419.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3420.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3421.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3422.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3423.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3424.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3425.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3426.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3427.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3428.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3429.      0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  3430.      0x29,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3431.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3432.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3433.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3434.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3435.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3436.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3437.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3438.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3439.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3440.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3441.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3442.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3443.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3444.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3445.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3446.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3447.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3448.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3449.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3450.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3451.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3452.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3453.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3454.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3455.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3456.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3457.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3458.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3459.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3460.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3461.      0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,0x2E,
  3462.      0x2E,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3463.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3464.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3465.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3466.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3467.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3468.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3469.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3470.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3471.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3472.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3473.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3474.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3475.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3476.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3477.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3478.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3479.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3480.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3481.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3482.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3483.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3484.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3485.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3486.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3487.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3488.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3489.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3490.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3491.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3492.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3493.      0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,0x2F,
  3494.      0x2F,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3495.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3496.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3497.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3498.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3499.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3500.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3501.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3502.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3503.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3504.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3505.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3506.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3507.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3508.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3509.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3510.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3511.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3512.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3513.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3514.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3515.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3516.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3517.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3518.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3519.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3520.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3521.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3522.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3523.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3524.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3525.      0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,0x2C,
  3526.      0x2C,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3527.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3528.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3529.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3530.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3531.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3532.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3533.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3534.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3535.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3536.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3537.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3538.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3539.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3540.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3541.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3542.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3543.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3544.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3545.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3546.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3547.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3548.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3549.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3550.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3551.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3552.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3553.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3554.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3555.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3556.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3557.      0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,0x2D,
  3558.      0x2D,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3559.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3560.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3561.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3562.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3563.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3564.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3565.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3566.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3567.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3568.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3569.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3570.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3571.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3572.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3573.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3574.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3575.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3576.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3577.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3578.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3579.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3580.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3581.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3582.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3583.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3584.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3585.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3586.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3587.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3588.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3589.      0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  3590.      0x22,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3591.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3592.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3593.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3594.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3595.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3596.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3597.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3598.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3599.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3600.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3601.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3602.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3603.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3604.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3605.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3606.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3607.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3608.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3609.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3610.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3611.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3612.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3613.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3614.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3615.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3616.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3617.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3618.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3619.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3620.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3621.      0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  3622.      0x23,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3623.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3624.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3625.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3626.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3627.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3628.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3629.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3630.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3631.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3632.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3633.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3634.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3635.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3636.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3637.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3638.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3639.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3640.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3641.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3642.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3643.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3644.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3645.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3646.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3647.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3648.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3649.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3650.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3651.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3652.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3653.      0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  3654.      0x20,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3655.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3656.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3657.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3658.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3659.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3660.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3661.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3662.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3663.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3664.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3665.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3666.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3667.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3668.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3669.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3670.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3671.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3672.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3673.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3674.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3675.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3676.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3677.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3678.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3679.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3680.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3681.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3682.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3683.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3684.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3685.      0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  3686.      0x21,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3687.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3688.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3689.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3690.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3691.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3692.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3693.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3694.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3695.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3696.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3697.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3698.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3699.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3700.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3701.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3702.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3703.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3704.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3705.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3706.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3707.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3708.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3709.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3710.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3711.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3712.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3713.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3714.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3715.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3716.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3717.      0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  3718.      0x26,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3719.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3720.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3721.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3722.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3723.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3724.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3725.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3726.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3727.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3728.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3729.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3730.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3731.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3732.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3733.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3734.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3735.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3736.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3737.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3738.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3739.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3740.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3741.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3742.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3743.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3744.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3745.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3746.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3747.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3748.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3749.      0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  3750.      0x27,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3751.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3752.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3753.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3754.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3755.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3756.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3757.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3758.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3759.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3760.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3761.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3762.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3763.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3764.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3765.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3766.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3767.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3768.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3769.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3770.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3771.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3772.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3773.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3774.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3775.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3776.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3777.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3778.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3779.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3780.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3781.      0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  3782.      0x24,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3783.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3784.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3785.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3786.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3787.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3788.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3789.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3790.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3791.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3792.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3793.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3794.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3795.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3796.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3797.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3798.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3799.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3800.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3801.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3802.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3803.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3804.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3805.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3806.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3807.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3808.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3809.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3810.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3811.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3812.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3813.      0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  3814.      0x25,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3815.      0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3816.      0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3817.      0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3818.      0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3819.      0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3820.      0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3821.      0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3822.      0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3823.      0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3824.      0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3825.      0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3826.      0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3827.      0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3828.      0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3829.      0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,0x3A,
  3830.      0x3A,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3831.      0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3832.      0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3833.      0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3834.      0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3835.      0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3836.      0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3837.      0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3838.      0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3839.      0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3840.      0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3841.      0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3842.      0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3843.      0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3844.      0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3845.      0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  3846.      0x3B,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3847.      0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3848.      0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3849.      0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3850.      0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3851.      0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3852.      0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3853.      0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3854.      0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3855.      0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3856.      0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3857.      0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3858.      0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3859.      0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3860.      0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3861.      0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  3862.      0x38,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3863.      0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3864.      0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3865.      0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3866.      0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3867.      0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3868.      0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3869.      0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3870.      0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3871.      0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3872.      0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3873.      0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3874.      0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3875.      0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3876.      0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3877.      0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  3878.      0x39,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3879.      0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3880.      0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3881.      0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3882.      0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3883.      0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3884.      0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3885.      0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3886.      0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3887.      0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3888.      0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3889.      0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3890.      0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3891.      0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3892.      0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3893.      0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,
  3894.      0x3E,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3895.      0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3896.      0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3897.      0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3898.      0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3899.      0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3900.      0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3901.      0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3902.      0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3903.      0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3904.      0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3905.      0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3906.      0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3907.      0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3908.      0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3909.      0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  3910.      0x3F,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3911.      0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3912.      0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3913.      0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3914.      0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3915.      0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3916.      0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3917.      0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3918.      0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3919.      0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3920.      0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3921.      0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3922.      0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3923.      0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3924.      0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3925.      0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  3926.      0x3C,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3927.      0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3928.      0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3929.      0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3930.      0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3931.      0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3932.      0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3933.      0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3934.      0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3935.      0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3936.      0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3937.      0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3938.      0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3939.      0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3940.      0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3941.      0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,0x3D,
  3942.      0x3D,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3943.      0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3944.      0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3945.      0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3946.      0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3947.      0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3948.      0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3949.      0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3950.      0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3951.      0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3952.      0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3953.      0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3954.      0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3955.      0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3956.      0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3957.      0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  3958.      0x32,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3959.      0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3960.      0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3961.      0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3962.      0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3963.      0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3964.      0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3965.      0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3966.      0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3967.      0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3968.      0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3969.      0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3970.      0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3971.      0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3972.      0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3973.      0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  3974.      0x33,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3975.      0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3976.      0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3977.      0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3978.      0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3979.      0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3980.      0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3981.      0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3982.      0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3983.      0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3984.      0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3985.      0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3986.      0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3987.      0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3988.      0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3989.      0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  3990.      0x30,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  3991.      0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  3992.      0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  3993.      0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  3994.      0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  3995.      0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  3996.      0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  3997.      0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  3998.      0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  3999.      0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  4000.      0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  4001.      0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  4002.      0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  4003.      0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  4004.      0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  4005.      0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  4006.      0x31,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4007.      0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4008.      0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4009.      0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4010.      0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4011.      0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4012.      0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4013.      0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4014.      0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4015.      0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4016.      0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4017.      0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4018.      0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4019.      0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4020.      0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4021.      0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  4022.      0x36,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4023.      0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4024.      0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4025.      0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4026.      0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4027.      0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4028.      0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4029.      0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4030.      0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4031.      0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4032.      0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4033.      0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4034.      0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4035.      0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4036.      0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4037.      0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  4038.      0x37,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4039.      0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4040.      0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4041.      0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4042.      0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4043.      0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4044.      0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4045.      0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4046.      0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4047.      0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4048.      0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4049.      0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4050.      0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4051.      0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4052.      0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4053.      0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  4054.      0x34,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4055.      0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4056.      0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4057.      0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4058.      0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4059.      0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4060.      0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4061.      0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4062.      0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4063.      0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4064.      0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4065.      0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4066.      0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4067.      0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4068.      0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4069.      0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  4070.      0x35,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,
  4071.      0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,
  4072.      0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,
  4073.      0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,
  4074.      0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,
  4075.      0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,
  4076.      0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,
  4077.      0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,0x0A,
  4078.      0x0A,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,
  4079.      0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,
  4080.      0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,
  4081.      0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,
  4082.      0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,
  4083.      0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,
  4084.      0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,
  4085.      0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,
  4086.      0x0B,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  4087.      0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  4088.      0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  4089.      0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  4090.      0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  4091.      0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  4092.      0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  4093.      0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  4094.      0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  4095.      0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  4096.      0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  4097.      0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  4098.      0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  4099.      0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  4100.      0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  4101.      0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  4102.      0x09,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,
  4103.      0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,
  4104.      0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,
  4105.      0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,
  4106.      0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,
  4107.      0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,
  4108.      0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,
  4109.      0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,0x0E,
  4110.      0x0E,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,
  4111.      0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,
  4112.      0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,
  4113.      0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,
  4114.      0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,
  4115.      0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,
  4116.      0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,
  4117.      0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,0x0F,
  4118.      0x0F,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,
  4119.      0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,
  4120.      0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,
  4121.      0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,
  4122.      0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,
  4123.      0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,
  4124.      0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,
  4125.      0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,
  4126.      0x0C,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,
  4127.      0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,
  4128.      0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,
  4129.      0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,
  4130.      0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,
  4131.      0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,
  4132.      0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,
  4133.      0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,0x0D,
  4134.      0x0D,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  4135.      0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  4136.      0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  4137.      0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  4138.      0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  4139.      0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  4140.      0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  4141.      0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  4142.      0x02,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  4143.      0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  4144.      0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  4145.      0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  4146.      0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  4147.      0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  4148.      0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  4149.      0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  4150.      0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  4151.      0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  4152.      0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  4153.      0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  4154.      0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  4155.      0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  4156.      0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  4157.      0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  4158.      0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  4159.      0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  4160.      0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  4161.      0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  4162.      0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  4163.      0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  4164.      0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  4165.      0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  4166.      0x01,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  4167.      0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  4168.      0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  4169.      0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  4170.      0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  4171.      0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  4172.      0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  4173.      0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  4174.      0x06,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  4175.      0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  4176.      0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  4177.      0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  4178.      0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  4179.      0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  4180.      0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  4181.      0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  4182.      0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  4183.      0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  4184.      0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  4185.      0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  4186.      0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  4187.      0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  4188.      0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  4189.      0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  4190.      0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  4191.      0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  4192.      0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  4193.      0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  4194.      0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  4195.      0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  4196.      0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  4197.      0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  4198.      0x05,0x1A,0x1A,0x1A,0x1A,0x1A,0x1A,0x1A,
  4199.      0x1A,0x1A,0x1A,0x1A,0x1A,0x1A,0x1A,0x1A,
  4200.      0x1A,0x1A,0x1A,0x1A,0x1A,0x1A,0x1A,0x1A,
  4201.      0x1A,0x1A,0x1A,0x1A,0x1A,0x1A,0x1A,0x1A,
  4202.      0x1A,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,
  4203.      0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,
  4204.      0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,
  4205.      0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,
  4206.      0x1B,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  4207.      0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  4208.      0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  4209.      0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  4210.      0x18,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  4211.      0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  4212.      0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  4213.      0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  4214.      0x19,0x1E,0x1E,0x1E,0x1E,0x1E,0x1E,0x1E,
  4215.      0x1E,0x1E,0x1E,0x1E,0x1E,0x1E,0x1E,0x1E,
  4216.      0x1E,0x1E,0x1E,0x1E,0x1E,0x1E,0x1E,0x1E,
  4217.      0x1E,0x1E,0x1E,0x1E,0x1E,0x1E,0x1E,0x1E,
  4218.      0x1E,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,
  4219.      0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,
  4220.      0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,
  4221.      0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,
  4222.      0x1F,0x1C,0x1C,0x1C,0x1C,0x1C,0x1C,0x1C,
  4223.      0x1C,0x1C,0x1C,0x1C,0x1C,0x1C,0x1C,0x1C,
  4224.      0x1C,0x1C,0x1C,0x1C,0x1C,0x1C,0x1C,0x1C,
  4225.      0x1C,0x1C,0x1C,0x1C,0x1C,0x1C,0x1C,0x1C,
  4226.      0x1C,0x1D,0x1D,0x1D,0x1D,0x1D,0x1D,0x1D,
  4227.      0x1D,0x1D,0x1D,0x1D,0x1D,0x1D,0x1D,0x1D,
  4228.      0x1D,0x1D,0x1D,0x1D,0x1D,0x1D,0x1D,0x1D,
  4229.      0x1D,0x1D,0x1D,0x1D,0x1D,0x1D,0x1D,0x1D,
  4230.      0x1D,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  4231.      0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  4232.      0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  4233.      0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  4234.      0x12,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  4235.      0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  4236.      0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  4237.      0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  4238.      0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  4239.      0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  4240.      0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  4241.      0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  4242.      0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  4243.      0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  4244.      0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  4245.      0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  4246.      0x11,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  4247.      0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  4248.      0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  4249.      0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  4250.      0x16,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  4251.      0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  4252.      0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  4253.      0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  4254.      0x17,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  4255.      0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  4256.      0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  4257.      0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  4258.      0x14,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  4259.      0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  4260.      0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  4261.      0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  4262.      0x15,0x6A,0x6A,0x6A,0x6A,0x6A,0x6A,0x6A,
  4263.      0x6A,0x6A,0x6A,0x6A,0x6A,0x6A,0x6A,0x6A,
  4264.      0x6A,0x6B,0x6B,0x6B,0x6B,0x6B,0x6B,0x6B,
  4265.      0x6B,0x6B,0x6B,0x6B,0x6B,0x6B,0x6B,0x6B,
  4266.      0x6B,0x68,0x68,0x68,0x68,0x68,0x68,0x68,
  4267.      0x68,0x68,0x68,0x68,0x68,0x68,0x68,0x68,
  4268.      0x68,0x69,0x69,0x69,0x69,0x69,0x69,0x69,
  4269.      0x69,0x69,0x69,0x69,0x69,0x69,0x69,0x69,
  4270.      0x69,0x6E,0x6E,0x6E,0x6E,0x6E,0x6E,0x6E,
  4271.      0x6E,0x6E,0x6E,0x6E,0x6E,0x6E,0x6E,0x6E,
  4272.      0x6E,0x6F,0x6F,0x6F,0x6F,0x6F,0x6F,0x6F,
  4273.      0x6F,0x6F,0x6F,0x6F,0x6F,0x6F,0x6F,0x6F,
  4274.      0x6F,0x6C,0x6C,0x6C,0x6C,0x6C,0x6C,0x6C,
  4275.      0x6C,0x6C,0x6C,0x6C,0x6C,0x6C,0x6C,0x6C,
  4276.      0x6C,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,
  4277.      0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,
  4278.      0x6D,0x62,0x62,0x62,0x62,0x62,0x62,0x62,
  4279.      0x62,0x62,0x62,0x62,0x62,0x62,0x62,0x62,
  4280.      0x62,0x63,0x63,0x63,0x63,0x63,0x63,0x63,
  4281.      0x63,0x63,0x63,0x63,0x63,0x63,0x63,0x63,
  4282.      0x63,0x60,0x60,0x60,0x60,0x60,0x60,0x60,
  4283.      0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,
  4284.      0x60,0x61,0x61,0x61,0x61,0x61,0x61,0x61,
  4285.      0x61,0x61,0x61,0x61,0x61,0x61,0x61,0x61,
  4286.      0x61,0x66,0x66,0x66,0x66,0x66,0x66,0x66,
  4287.      0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,
  4288.      0x66,0x67,0x67,0x67,0x67,0x67,0x67,0x67,
  4289.      0x67,0x67,0x67,0x67,0x67,0x67,0x67,0x67,
  4290.      0x67,0x64,0x64,0x64,0x64,0x64,0x64,0x64,
  4291.      0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,
  4292.      0x64,0x65,0x65,0x65,0x65,0x65,0x65,0x65,
  4293.      0x65,0x65,0x65,0x65,0x65,0x65,0x65,0x65,
  4294.      0x65,0x7A,0x7A,0x7A,0x7A,0x7A,0x7A,0x7A,
  4295.      0x7A,0x7B,0x7B,0x7B,0x7B,0x7B,0x7B,0x7B,
  4296.      0x7B,0x78,0x78,0x78,0x78,0x78,0x78,0x78,
  4297.      0x78,0x79,0x79,0x79,0x79,0x79,0x79,0x79,
  4298.      0x79,0x7E,0x7E,0x7E,0x7E,0x7E,0x7E,0x7E,
  4299.      0x7E,0x7F,0x7F,0x7F,0x7F,0x7F,0x7F,0x7F,
  4300.      0x7F,0x7C,0x7C,0x7C,0x7C,0x7C,0x7C,0x7C,
  4301.      0x7C,0x7D,0x7D,0x7D,0x7D,0x7D,0x7D,0x7D,
  4302.      0x7D,0x72,0x72,0x72,0x72,0x72,0x72,0x72,
  4303.      0x72,0x73,0x73,0x73,0x73,0x73,0x73,0x73,
  4304.      0x73,0x70,0x70,0x70,0x70,0x70,0x70,0x70,
  4305.      0x70,0x71,0x71,0x71,0x71,0x71,0x71,0x71,
  4306.      0x71,0x76,0x76,0x76,0x76,0x76,0x76,0x76,
  4307.      0x76,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
  4308.      0x77,0x74,0x74,0x74,0x74,0x74,0x74,0x74,
  4309.      0x74,0x75,0x75,0x75,0x75,0x75,0x75,0x75,
  4310.      0x75,0x4A,0x4A,0x4A,0x4A,0x4B,0x4B,0x4B,
  4311.      0x4B,0x48,0x48,0x48,0x48,0x49,0x49,0x49,
  4312.      0x49,0x4E,0x4E,0x4E,0x4E,0x4F,0x4F,0x4F,
  4313.      0x4F,0x4C,0x4C,0x4C,0x4C,0x4D,0x4D,0x4D,
  4314.      0x4D,0x42,0x42,0x42,0x42,0x43,0x43,0x43,
  4315.      0x43,0x40,0x40,0x40,0x40,0x41,0x41,0x41,
  4316.      0x41,0x46,0x46,0x46,0x46,0x47,0x47,0x47,
  4317.      0x47,0x44,0x44,0x44,0x44,0x45,0x45,0x45,
  4318.      0x45,0x5A,0x5A,0x5A,0x5A,0x5B,0x5B,0x5B,
  4319.      0x5B,0x58,0x58,0x58,0x58,0x59,0x59,0x59,
  4320.      0x59,0x5E,0x5E,0x5E,0x5E,0x5F,0x5F,0x5F,
  4321.      0x5F,0x5C,0x5C,0x5C,0x5C,0x5D,0x5D,0x5D,
  4322.      0x5D,0x52,0x52,0x52,0x52,0x53,0x53,0x53,
  4323.      0x53,0x50,0x50,0x50,0x50,0x51,0x51,0x51,
  4324.      0x51,0x56,0x56,0x56,0x56,0x57,0x57,0x57,
  4325.      0x57,0x54,0x54,0x54,0x54,0x55,0x55,0x55};
  4326.  
  4327. int Alaw_exp_table[256] = {
  4328.       -5504, -5248, -6016, -5760, -4480, -4224, -4992, -4736,
  4329.       -7552, -7296, -8064, -7808, -6528, -6272, -7040, -6784,
  4330.       -2752, -2624, -3008, -2880, -2240, -2112, -2496, -2368,
  4331.       -3776, -3648, -4032, -3904, -3264, -3136, -3520, -3392,
  4332.      -22016,-20992,-24064,-23040,-17920,-16896,-19968,-18944,
  4333.      -30208,-29184,-32256,-31232,-26112,-25088,-28160,-27136,
  4334.      -11008,-10496,-12032,-11520, -8960, -8448, -9984, -9472,
  4335.      -15104,-14592,-16128,-15616,-13056,-12544,-14080,-13568,
  4336.        -344,  -328,  -376,  -360,  -280,  -264,  -312,  -296,
  4337.        -472,  -456,  -504,  -488,  -408,  -392,  -440,  -424,
  4338.         -88,   -72,  -120,  -104,   -24,    -8,   -56,   -40,
  4339.        -216,  -200,  -248,  -232,  -152,  -136,  -184,  -168,
  4340.       -1376, -1312, -1504, -1440, -1120, -1056, -1248, -1184,
  4341.       -1888, -1824, -2016, -1952, -1632, -1568, -1760, -1696,
  4342.        -688,  -656,  -752,  -720,  -560,  -528,  -624,  -592,
  4343.        -944,  -912, -1008,  -976,  -816,  -784,  -880,  -848,
  4344.        5504,  5248,  6016,  5760,  4480,  4224,  4992,  4736,
  4345.        7552,  7296,  8064,  7808,  6528,  6272,  7040,  6784,
  4346.        2752,  2624,  3008,  2880,  2240,  2112,  2496,  2368,
  4347.        3776,  3648,  4032,  3904,  3264,  3136,  3520,  3392,
  4348.       22016, 20992, 24064, 23040, 17920, 16896, 19968, 18944,
  4349.       30208, 29184, 32256, 31232, 26112, 25088, 28160, 27136,
  4350.       11008, 10496, 12032, 11520,  8960,  8448,  9984,  9472,
  4351.       15104, 14592, 16128, 15616, 13056, 12544, 14080, 13568,
  4352.         344,   328,   376,   360,   280,   264,   312,   296,
  4353.         472,   456,   504,   488,   408,   392,   440,   424,
  4354.          88,    72,   120,   104,    24,     8,    56,    40,
  4355.         216,   200,   248,   232,   152,   136,   184,   168,
  4356.        1376,  1312,  1504,  1440,  1120,  1056,  1248,  1184,
  4357.        1888,  1824,  2016,  1952,  1632,  1568,  1760,  1696,
  4358.         688,   656,   752,   720,   560,   528,   624,   592,
  4359.         944,   912,  1008,   976,   816,   784,   880,   848};
  4360.  
  4361. #endif
  4362.  
  4363.