Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Procedures for drawing on the screen early on in the boot process. |
| 3 | * |
| 4 | * Benjamin Herrenschmidt <benh@kernel.crashing.org> |
| 5 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #include <linux/kernel.h> |
| 7 | #include <linux/string.h> |
| 8 | #include <linux/init.h> |
Sam Ravnborg | 63104ee | 2006-07-03 23:30:54 +0200 | [diff] [blame] | 9 | #include <linux/utsrelease.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
| 11 | #include <asm/sections.h> |
| 12 | #include <asm/bootx.h> |
| 13 | #include <asm/btext.h> |
| 14 | #include <asm/prom.h> |
| 15 | #include <asm/page.h> |
| 16 | #include <asm/mmu.h> |
| 17 | #include <asm/pgtable.h> |
| 18 | #include <asm/io.h> |
| 19 | #include <asm/reg.h> |
| 20 | |
| 21 | #define NO_SCROLL |
| 22 | |
| 23 | #ifndef NO_SCROLL |
| 24 | static void scrollscreen(void); |
| 25 | #endif |
| 26 | |
| 27 | static void draw_byte(unsigned char c, long locX, long locY); |
| 28 | static void draw_byte_32(unsigned char *bits, unsigned long *base, int rb); |
| 29 | static void draw_byte_16(unsigned char *bits, unsigned long *base, int rb); |
| 30 | static void draw_byte_8(unsigned char *bits, unsigned long *base, int rb); |
| 31 | |
| 32 | static int g_loc_X; |
| 33 | static int g_loc_Y; |
| 34 | static int g_max_loc_X; |
| 35 | static int g_max_loc_Y; |
| 36 | |
| 37 | unsigned long disp_BAT[2] __initdata = {0, 0}; |
| 38 | |
| 39 | #define cmapsz (16*256) |
| 40 | |
| 41 | static unsigned char vga_font[cmapsz]; |
| 42 | |
| 43 | int boot_text_mapped; |
| 44 | int force_printk_to_btext = 0; |
| 45 | |
| 46 | boot_infos_t disp_bi; |
| 47 | |
| 48 | extern char *klimit; |
| 49 | |
| 50 | /* |
| 51 | * Powermac can use btext_* after boot for xmon, |
| 52 | * chrp only uses it during early boot. |
| 53 | */ |
| 54 | #ifdef CONFIG_XMON |
Jon Loeliger | f495a8b | 2005-09-17 10:35:08 -0500 | [diff] [blame] | 55 | #define BTEXT |
| 56 | #define BTDATA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #else |
| 58 | #define BTEXT __init |
| 59 | #define BTDATA __initdata |
| 60 | #endif /* CONFIG_XMON */ |
| 61 | |
| 62 | /* |
| 63 | * This is called only when we are booted via BootX. |
| 64 | */ |
| 65 | void __init |
| 66 | btext_init(boot_infos_t *bi) |
| 67 | { |
| 68 | g_loc_X = 0; |
| 69 | g_loc_Y = 0; |
| 70 | g_max_loc_X = (bi->dispDeviceRect[2] - bi->dispDeviceRect[0]) / 8; |
| 71 | g_max_loc_Y = (bi->dispDeviceRect[3] - bi->dispDeviceRect[1]) / 16; |
| 72 | disp_bi = *bi; |
| 73 | boot_text_mapped = 1; |
| 74 | } |
| 75 | |
| 76 | void __init |
| 77 | btext_welcome(void) |
| 78 | { |
| 79 | unsigned long flags; |
| 80 | unsigned long pvr; |
| 81 | boot_infos_t* bi = &disp_bi; |
| 82 | |
| 83 | btext_drawstring("Welcome to Linux, kernel " UTS_RELEASE "\n"); |
| 84 | btext_drawstring("\nlinked at : 0x"); |
| 85 | btext_drawhex(KERNELBASE); |
| 86 | btext_drawstring("\nframe buffer at : 0x"); |
| 87 | btext_drawhex((unsigned long)bi->dispDeviceBase); |
| 88 | btext_drawstring(" (phys), 0x"); |
| 89 | btext_drawhex((unsigned long)bi->logicalDisplayBase); |
| 90 | btext_drawstring(" (log)"); |
| 91 | btext_drawstring("\nklimit : 0x"); |
| 92 | btext_drawhex((unsigned long)klimit); |
| 93 | btext_drawstring("\nMSR : 0x"); |
| 94 | __asm__ __volatile__ ("mfmsr %0" : "=r" (flags)); |
| 95 | btext_drawhex(flags); |
| 96 | __asm__ __volatile__ ("mfspr %0, 287" : "=r" (pvr)); |
| 97 | pvr >>= 16; |
| 98 | if (pvr > 1) { |
| 99 | btext_drawstring("\nHID0 : 0x"); |
| 100 | __asm__ __volatile__ ("mfspr %0, 1008" : "=r" (flags)); |
| 101 | btext_drawhex(flags); |
| 102 | } |
| 103 | if (pvr == 8 || pvr == 12 || pvr == 0x800c) { |
| 104 | btext_drawstring("\nICTC : 0x"); |
| 105 | __asm__ __volatile__ ("mfspr %0, 1019" : "=r" (flags)); |
| 106 | btext_drawhex(flags); |
| 107 | } |
| 108 | btext_drawstring("\n\n"); |
| 109 | } |
| 110 | |
| 111 | /* Calc BAT values for mapping the display and store them |
| 112 | * in disp_BAT. Those values are then used from head.S to map |
| 113 | * the display during identify_machine() and MMU_Init() |
| 114 | * |
| 115 | * The display is mapped to virtual address 0xD0000000, rather |
| 116 | * than 1:1, because some some CHRP machines put the frame buffer |
| 117 | * in the region starting at 0xC0000000 (KERNELBASE). |
| 118 | * This mapping is temporary and will disappear as soon as the |
| 119 | * setup done by MMU_Init() is applied. |
| 120 | * |
| 121 | * For now, we align the BAT and then map 8Mb on 601 and 16Mb |
| 122 | * on other PPCs. This may cause trouble if the framebuffer |
| 123 | * is really badly aligned, but I didn't encounter this case |
| 124 | * yet. |
| 125 | */ |
| 126 | void __init |
| 127 | btext_prepare_BAT(void) |
| 128 | { |
| 129 | boot_infos_t* bi = &disp_bi; |
| 130 | unsigned long vaddr = KERNELBASE + 0x10000000; |
| 131 | unsigned long addr; |
| 132 | unsigned long lowbits; |
| 133 | |
| 134 | addr = (unsigned long)bi->dispDeviceBase; |
| 135 | if (!addr) { |
| 136 | boot_text_mapped = 0; |
| 137 | return; |
| 138 | } |
| 139 | if (PVR_VER(mfspr(SPRN_PVR)) != 1) { |
| 140 | /* 603, 604, G3, G4, ... */ |
| 141 | lowbits = addr & ~0xFF000000UL; |
| 142 | addr &= 0xFF000000UL; |
| 143 | disp_BAT[0] = vaddr | (BL_16M<<2) | 2; |
| 144 | disp_BAT[1] = addr | (_PAGE_NO_CACHE | _PAGE_GUARDED | BPP_RW); |
| 145 | } else { |
| 146 | /* 601 */ |
| 147 | lowbits = addr & ~0xFF800000UL; |
| 148 | addr &= 0xFF800000UL; |
| 149 | disp_BAT[0] = vaddr | (_PAGE_NO_CACHE | PP_RWXX) | 4; |
| 150 | disp_BAT[1] = addr | BL_8M | 0x40; |
| 151 | } |
| 152 | bi->logicalDisplayBase = (void *) (vaddr + lowbits); |
| 153 | } |
| 154 | |
| 155 | /* This function will enable the early boot text when doing OF booting. This |
| 156 | * way, xmon output should work too |
| 157 | */ |
| 158 | void __init |
| 159 | btext_setup_display(int width, int height, int depth, int pitch, |
| 160 | unsigned long address) |
| 161 | { |
| 162 | boot_infos_t* bi = &disp_bi; |
| 163 | |
| 164 | g_loc_X = 0; |
| 165 | g_loc_Y = 0; |
| 166 | g_max_loc_X = width / 8; |
| 167 | g_max_loc_Y = height / 16; |
| 168 | bi->logicalDisplayBase = (unsigned char *)address; |
| 169 | bi->dispDeviceBase = (unsigned char *)address; |
| 170 | bi->dispDeviceRowBytes = pitch; |
| 171 | bi->dispDeviceDepth = depth; |
| 172 | bi->dispDeviceRect[0] = bi->dispDeviceRect[1] = 0; |
| 173 | bi->dispDeviceRect[2] = width; |
| 174 | bi->dispDeviceRect[3] = height; |
| 175 | boot_text_mapped = 1; |
| 176 | } |
| 177 | |
| 178 | /* Here's a small text engine to use during early boot |
| 179 | * or for debugging purposes |
| 180 | * |
| 181 | * todo: |
| 182 | * |
| 183 | * - build some kind of vgacon with it to enable early printk |
| 184 | * - move to a separate file |
| 185 | * - add a few video driver hooks to keep in sync with display |
| 186 | * changes. |
| 187 | */ |
| 188 | |
Jon Loeliger | f495a8b | 2005-09-17 10:35:08 -0500 | [diff] [blame] | 189 | void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | map_boot_text(void) |
| 191 | { |
| 192 | unsigned long base, offset, size; |
| 193 | boot_infos_t *bi = &disp_bi; |
| 194 | unsigned char *vbase; |
| 195 | |
| 196 | /* By default, we are no longer mapped */ |
| 197 | boot_text_mapped = 0; |
| 198 | if (bi->dispDeviceBase == 0) |
| 199 | return; |
| 200 | base = ((unsigned long) bi->dispDeviceBase) & 0xFFFFF000UL; |
| 201 | offset = ((unsigned long) bi->dispDeviceBase) - base; |
| 202 | size = bi->dispDeviceRowBytes * bi->dispDeviceRect[3] + offset |
| 203 | + bi->dispDeviceRect[0]; |
| 204 | vbase = ioremap(base, size); |
| 205 | if (vbase == 0) |
| 206 | return; |
| 207 | bi->logicalDisplayBase = vbase + offset; |
| 208 | boot_text_mapped = 1; |
| 209 | } |
| 210 | |
| 211 | /* Calc the base address of a given point (x,y) */ |
| 212 | static unsigned char * BTEXT |
| 213 | calc_base(boot_infos_t *bi, int x, int y) |
| 214 | { |
| 215 | unsigned char *base; |
| 216 | |
| 217 | base = bi->logicalDisplayBase; |
| 218 | if (base == 0) |
| 219 | base = bi->dispDeviceBase; |
| 220 | base += (x + bi->dispDeviceRect[0]) * (bi->dispDeviceDepth >> 3); |
| 221 | base += (y + bi->dispDeviceRect[1]) * bi->dispDeviceRowBytes; |
| 222 | return base; |
| 223 | } |
| 224 | |
| 225 | /* Adjust the display to a new resolution */ |
| 226 | void |
| 227 | btext_update_display(unsigned long phys, int width, int height, |
| 228 | int depth, int pitch) |
| 229 | { |
| 230 | boot_infos_t *bi = &disp_bi; |
| 231 | |
| 232 | if (bi->dispDeviceBase == 0) |
| 233 | return; |
| 234 | |
| 235 | /* check it's the same frame buffer (within 256MB) */ |
| 236 | if ((phys ^ (unsigned long)bi->dispDeviceBase) & 0xf0000000) |
| 237 | return; |
| 238 | |
| 239 | bi->dispDeviceBase = (__u8 *) phys; |
| 240 | bi->dispDeviceRect[0] = 0; |
| 241 | bi->dispDeviceRect[1] = 0; |
| 242 | bi->dispDeviceRect[2] = width; |
| 243 | bi->dispDeviceRect[3] = height; |
| 244 | bi->dispDeviceDepth = depth; |
| 245 | bi->dispDeviceRowBytes = pitch; |
| 246 | if (boot_text_mapped) { |
| 247 | iounmap(bi->logicalDisplayBase); |
| 248 | boot_text_mapped = 0; |
| 249 | } |
| 250 | map_boot_text(); |
| 251 | g_loc_X = 0; |
| 252 | g_loc_Y = 0; |
| 253 | g_max_loc_X = width / 8; |
| 254 | g_max_loc_Y = height / 16; |
| 255 | } |
| 256 | |
| 257 | void BTEXT btext_clearscreen(void) |
| 258 | { |
| 259 | boot_infos_t* bi = &disp_bi; |
| 260 | unsigned long *base = (unsigned long *)calc_base(bi, 0, 0); |
| 261 | unsigned long width = ((bi->dispDeviceRect[2] - bi->dispDeviceRect[0]) * |
| 262 | (bi->dispDeviceDepth >> 3)) >> 2; |
| 263 | int i,j; |
| 264 | |
| 265 | for (i=0; i<(bi->dispDeviceRect[3] - bi->dispDeviceRect[1]); i++) |
| 266 | { |
| 267 | unsigned long *ptr = base; |
| 268 | for(j=width; j; --j) |
| 269 | *(ptr++) = 0; |
| 270 | base += (bi->dispDeviceRowBytes >> 2); |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | __inline__ void dcbst(const void* addr) |
| 275 | { |
| 276 | __asm__ __volatile__ ("dcbst 0,%0" :: "r" (addr)); |
| 277 | } |
| 278 | |
| 279 | void BTEXT btext_flushscreen(void) |
| 280 | { |
| 281 | boot_infos_t* bi = &disp_bi; |
| 282 | unsigned long *base = (unsigned long *)calc_base(bi, 0, 0); |
| 283 | unsigned long width = ((bi->dispDeviceRect[2] - bi->dispDeviceRect[0]) * |
| 284 | (bi->dispDeviceDepth >> 3)) >> 2; |
| 285 | int i,j; |
| 286 | |
| 287 | for (i=0; i<(bi->dispDeviceRect[3] - bi->dispDeviceRect[1]); i++) |
| 288 | { |
| 289 | unsigned long *ptr = base; |
| 290 | for(j=width; j>0; j-=8) { |
| 291 | dcbst(ptr); |
| 292 | ptr += 8; |
| 293 | } |
| 294 | base += (bi->dispDeviceRowBytes >> 2); |
| 295 | } |
| 296 | } |
| 297 | |
| 298 | #ifndef NO_SCROLL |
| 299 | static BTEXT void |
| 300 | scrollscreen(void) |
| 301 | { |
| 302 | boot_infos_t* bi = &disp_bi; |
| 303 | unsigned long *src = (unsigned long *)calc_base(bi,0,16); |
| 304 | unsigned long *dst = (unsigned long *)calc_base(bi,0,0); |
| 305 | unsigned long width = ((bi->dispDeviceRect[2] - bi->dispDeviceRect[0]) * |
| 306 | (bi->dispDeviceDepth >> 3)) >> 2; |
| 307 | int i,j; |
| 308 | |
| 309 | #ifdef CONFIG_ADB_PMU |
| 310 | pmu_suspend(); /* PMU will not shut us down ! */ |
| 311 | #endif |
| 312 | for (i=0; i<(bi->dispDeviceRect[3] - bi->dispDeviceRect[1] - 16); i++) |
| 313 | { |
| 314 | unsigned long *src_ptr = src; |
| 315 | unsigned long *dst_ptr = dst; |
| 316 | for(j=width; j; --j) |
| 317 | *(dst_ptr++) = *(src_ptr++); |
| 318 | src += (bi->dispDeviceRowBytes >> 2); |
| 319 | dst += (bi->dispDeviceRowBytes >> 2); |
| 320 | } |
| 321 | for (i=0; i<16; i++) |
| 322 | { |
| 323 | unsigned long *dst_ptr = dst; |
| 324 | for(j=width; j; --j) |
| 325 | *(dst_ptr++) = 0; |
| 326 | dst += (bi->dispDeviceRowBytes >> 2); |
| 327 | } |
| 328 | #ifdef CONFIG_ADB_PMU |
| 329 | pmu_resume(); /* PMU will not shut us down ! */ |
| 330 | #endif |
| 331 | } |
| 332 | #endif /* ndef NO_SCROLL */ |
| 333 | |
| 334 | void BTEXT btext_drawchar(char c) |
| 335 | { |
| 336 | int cline = 0, x; |
| 337 | |
| 338 | if (!boot_text_mapped) |
| 339 | return; |
| 340 | |
| 341 | switch (c) { |
| 342 | case '\b': |
| 343 | if (g_loc_X > 0) |
| 344 | --g_loc_X; |
| 345 | break; |
| 346 | case '\t': |
| 347 | g_loc_X = (g_loc_X & -8) + 8; |
| 348 | break; |
| 349 | case '\r': |
| 350 | g_loc_X = 0; |
| 351 | break; |
| 352 | case '\n': |
| 353 | g_loc_X = 0; |
| 354 | g_loc_Y++; |
| 355 | cline = 1; |
| 356 | break; |
| 357 | default: |
| 358 | draw_byte(c, g_loc_X++, g_loc_Y); |
| 359 | } |
| 360 | if (g_loc_X >= g_max_loc_X) { |
| 361 | g_loc_X = 0; |
| 362 | g_loc_Y++; |
| 363 | cline = 1; |
| 364 | } |
| 365 | #ifndef NO_SCROLL |
| 366 | while (g_loc_Y >= g_max_loc_Y) { |
| 367 | scrollscreen(); |
| 368 | g_loc_Y--; |
| 369 | } |
| 370 | #else |
| 371 | /* wrap around from bottom to top of screen so we don't |
| 372 | waste time scrolling each line. -- paulus. */ |
| 373 | if (g_loc_Y >= g_max_loc_Y) |
| 374 | g_loc_Y = 0; |
| 375 | if (cline) { |
| 376 | for (x = 0; x < g_max_loc_X; ++x) |
| 377 | draw_byte(' ', x, g_loc_Y); |
| 378 | } |
| 379 | #endif |
| 380 | } |
| 381 | |
| 382 | void BTEXT |
| 383 | btext_drawstring(const char *c) |
| 384 | { |
| 385 | if (!boot_text_mapped) |
| 386 | return; |
| 387 | while (*c) |
| 388 | btext_drawchar(*c++); |
| 389 | } |
| 390 | |
| 391 | void BTEXT |
| 392 | btext_drawhex(unsigned long v) |
| 393 | { |
| 394 | static char hex_table[] = "0123456789abcdef"; |
| 395 | |
| 396 | if (!boot_text_mapped) |
| 397 | return; |
| 398 | btext_drawchar(hex_table[(v >> 28) & 0x0000000FUL]); |
| 399 | btext_drawchar(hex_table[(v >> 24) & 0x0000000FUL]); |
| 400 | btext_drawchar(hex_table[(v >> 20) & 0x0000000FUL]); |
| 401 | btext_drawchar(hex_table[(v >> 16) & 0x0000000FUL]); |
| 402 | btext_drawchar(hex_table[(v >> 12) & 0x0000000FUL]); |
| 403 | btext_drawchar(hex_table[(v >> 8) & 0x0000000FUL]); |
| 404 | btext_drawchar(hex_table[(v >> 4) & 0x0000000FUL]); |
| 405 | btext_drawchar(hex_table[(v >> 0) & 0x0000000FUL]); |
| 406 | btext_drawchar(' '); |
| 407 | } |
| 408 | |
| 409 | static void BTEXT |
| 410 | draw_byte(unsigned char c, long locX, long locY) |
| 411 | { |
| 412 | boot_infos_t* bi = &disp_bi; |
| 413 | unsigned char *base = calc_base(bi, locX << 3, locY << 4); |
| 414 | unsigned char *font = &vga_font[((unsigned long)c) * 16]; |
| 415 | int rb = bi->dispDeviceRowBytes; |
| 416 | |
| 417 | switch(bi->dispDeviceDepth) { |
| 418 | case 24: |
| 419 | case 32: |
| 420 | draw_byte_32(font, (unsigned long *)base, rb); |
| 421 | break; |
| 422 | case 15: |
| 423 | case 16: |
| 424 | draw_byte_16(font, (unsigned long *)base, rb); |
| 425 | break; |
| 426 | case 8: |
| 427 | draw_byte_8(font, (unsigned long *)base, rb); |
| 428 | break; |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | static unsigned long expand_bits_8[16] BTDATA = { |
| 433 | 0x00000000, |
| 434 | 0x000000ff, |
| 435 | 0x0000ff00, |
| 436 | 0x0000ffff, |
| 437 | 0x00ff0000, |
| 438 | 0x00ff00ff, |
| 439 | 0x00ffff00, |
| 440 | 0x00ffffff, |
| 441 | 0xff000000, |
| 442 | 0xff0000ff, |
| 443 | 0xff00ff00, |
| 444 | 0xff00ffff, |
| 445 | 0xffff0000, |
| 446 | 0xffff00ff, |
| 447 | 0xffffff00, |
| 448 | 0xffffffff |
| 449 | }; |
| 450 | |
| 451 | static unsigned long expand_bits_16[4] BTDATA = { |
| 452 | 0x00000000, |
| 453 | 0x0000ffff, |
| 454 | 0xffff0000, |
| 455 | 0xffffffff |
| 456 | }; |
| 457 | |
| 458 | |
| 459 | static void BTEXT |
| 460 | draw_byte_32(unsigned char *font, unsigned long *base, int rb) |
| 461 | { |
| 462 | int l, bits; |
| 463 | int fg = 0xFFFFFFFFUL; |
| 464 | int bg = 0x00000000UL; |
| 465 | |
| 466 | for (l = 0; l < 16; ++l) |
| 467 | { |
| 468 | bits = *font++; |
| 469 | base[0] = (-(bits >> 7) & fg) ^ bg; |
| 470 | base[1] = (-((bits >> 6) & 1) & fg) ^ bg; |
| 471 | base[2] = (-((bits >> 5) & 1) & fg) ^ bg; |
| 472 | base[3] = (-((bits >> 4) & 1) & fg) ^ bg; |
| 473 | base[4] = (-((bits >> 3) & 1) & fg) ^ bg; |
| 474 | base[5] = (-((bits >> 2) & 1) & fg) ^ bg; |
| 475 | base[6] = (-((bits >> 1) & 1) & fg) ^ bg; |
| 476 | base[7] = (-(bits & 1) & fg) ^ bg; |
| 477 | base = (unsigned long *) ((char *)base + rb); |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | static void BTEXT |
| 482 | draw_byte_16(unsigned char *font, unsigned long *base, int rb) |
| 483 | { |
| 484 | int l, bits; |
| 485 | int fg = 0xFFFFFFFFUL; |
| 486 | int bg = 0x00000000UL; |
| 487 | unsigned long *eb = expand_bits_16; |
| 488 | |
| 489 | for (l = 0; l < 16; ++l) |
| 490 | { |
| 491 | bits = *font++; |
| 492 | base[0] = (eb[bits >> 6] & fg) ^ bg; |
| 493 | base[1] = (eb[(bits >> 4) & 3] & fg) ^ bg; |
| 494 | base[2] = (eb[(bits >> 2) & 3] & fg) ^ bg; |
| 495 | base[3] = (eb[bits & 3] & fg) ^ bg; |
| 496 | base = (unsigned long *) ((char *)base + rb); |
| 497 | } |
| 498 | } |
| 499 | |
| 500 | static void BTEXT |
| 501 | draw_byte_8(unsigned char *font, unsigned long *base, int rb) |
| 502 | { |
| 503 | int l, bits; |
| 504 | int fg = 0x0F0F0F0FUL; |
| 505 | int bg = 0x00000000UL; |
| 506 | unsigned long *eb = expand_bits_8; |
| 507 | |
| 508 | for (l = 0; l < 16; ++l) |
| 509 | { |
| 510 | bits = *font++; |
| 511 | base[0] = (eb[bits >> 4] & fg) ^ bg; |
| 512 | base[1] = (eb[bits & 0xf] & fg) ^ bg; |
| 513 | base = (unsigned long *) ((char *)base + rb); |
| 514 | } |
| 515 | } |
| 516 | |
| 517 | static unsigned char vga_font[cmapsz] BTDATA = { |
| 518 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 519 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x81, 0xa5, 0x81, 0x81, 0xbd, |
| 520 | 0x99, 0x81, 0x81, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0xff, |
| 521 | 0xdb, 0xff, 0xff, 0xc3, 0xe7, 0xff, 0xff, 0x7e, 0x00, 0x00, 0x00, 0x00, |
| 522 | 0x00, 0x00, 0x00, 0x00, 0x6c, 0xfe, 0xfe, 0xfe, 0xfe, 0x7c, 0x38, 0x10, |
| 523 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x38, 0x7c, 0xfe, |
| 524 | 0x7c, 0x38, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, |
| 525 | 0x3c, 0x3c, 0xe7, 0xe7, 0xe7, 0x18, 0x18, 0x3c, 0x00, 0x00, 0x00, 0x00, |
| 526 | 0x00, 0x00, 0x00, 0x18, 0x3c, 0x7e, 0xff, 0xff, 0x7e, 0x18, 0x18, 0x3c, |
| 527 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x3c, |
| 528 | 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, |
| 529 | 0xff, 0xff, 0xe7, 0xc3, 0xc3, 0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
| 530 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x66, 0x42, 0x42, 0x66, 0x3c, 0x00, |
| 531 | 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0x99, 0xbd, |
| 532 | 0xbd, 0x99, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x1e, 0x0e, |
| 533 | 0x1a, 0x32, 0x78, 0xcc, 0xcc, 0xcc, 0xcc, 0x78, 0x00, 0x00, 0x00, 0x00, |
| 534 | 0x00, 0x00, 0x3c, 0x66, 0x66, 0x66, 0x66, 0x3c, 0x18, 0x7e, 0x18, 0x18, |
| 535 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x33, 0x3f, 0x30, 0x30, 0x30, |
| 536 | 0x30, 0x70, 0xf0, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0x63, |
| 537 | 0x7f, 0x63, 0x63, 0x63, 0x63, 0x67, 0xe7, 0xe6, 0xc0, 0x00, 0x00, 0x00, |
| 538 | 0x00, 0x00, 0x00, 0x18, 0x18, 0xdb, 0x3c, 0xe7, 0x3c, 0xdb, 0x18, 0x18, |
| 539 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfe, 0xf8, |
| 540 | 0xf0, 0xe0, 0xc0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x06, 0x0e, |
| 541 | 0x1e, 0x3e, 0xfe, 0x3e, 0x1e, 0x0e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x00, |
| 542 | 0x00, 0x00, 0x18, 0x3c, 0x7e, 0x18, 0x18, 0x18, 0x7e, 0x3c, 0x18, 0x00, |
| 543 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, |
| 544 | 0x66, 0x00, 0x66, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xdb, |
| 545 | 0xdb, 0xdb, 0x7b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x00, 0x00, 0x00, 0x00, |
| 546 | 0x00, 0x7c, 0xc6, 0x60, 0x38, 0x6c, 0xc6, 0xc6, 0x6c, 0x38, 0x0c, 0xc6, |
| 547 | 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 548 | 0xfe, 0xfe, 0xfe, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x3c, |
| 549 | 0x7e, 0x18, 0x18, 0x18, 0x7e, 0x3c, 0x18, 0x7e, 0x00, 0x00, 0x00, 0x00, |
| 550 | 0x00, 0x00, 0x18, 0x3c, 0x7e, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, |
| 551 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, |
| 552 | 0x18, 0x7e, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 553 | 0x00, 0x18, 0x0c, 0xfe, 0x0c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 554 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x60, 0xfe, 0x60, 0x30, 0x00, 0x00, |
| 555 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, |
| 556 | 0xc0, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 557 | 0x00, 0x24, 0x66, 0xff, 0x66, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 558 | 0x00, 0x00, 0x00, 0x00, 0x10, 0x38, 0x38, 0x7c, 0x7c, 0xfe, 0xfe, 0x00, |
| 559 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xfe, 0x7c, 0x7c, |
| 560 | 0x38, 0x38, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 561 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 562 | 0x00, 0x00, 0x18, 0x3c, 0x3c, 0x3c, 0x18, 0x18, 0x18, 0x00, 0x18, 0x18, |
| 563 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x66, 0x66, 0x24, 0x00, 0x00, 0x00, |
| 564 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, |
| 565 | 0x6c, 0xfe, 0x6c, 0x6c, 0x6c, 0xfe, 0x6c, 0x6c, 0x00, 0x00, 0x00, 0x00, |
| 566 | 0x18, 0x18, 0x7c, 0xc6, 0xc2, 0xc0, 0x7c, 0x06, 0x06, 0x86, 0xc6, 0x7c, |
| 567 | 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc2, 0xc6, 0x0c, 0x18, |
| 568 | 0x30, 0x60, 0xc6, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x6c, |
| 569 | 0x6c, 0x38, 0x76, 0xdc, 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, |
| 570 | 0x00, 0x30, 0x30, 0x30, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 571 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x18, 0x30, 0x30, 0x30, 0x30, |
| 572 | 0x30, 0x30, 0x18, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x18, |
| 573 | 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x18, 0x30, 0x00, 0x00, 0x00, 0x00, |
| 574 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x3c, 0xff, 0x3c, 0x66, 0x00, 0x00, |
| 575 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x7e, |
| 576 | 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 577 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x30, 0x00, 0x00, 0x00, |
| 578 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, |
| 579 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 580 | 0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 581 | 0x02, 0x06, 0x0c, 0x18, 0x30, 0x60, 0xc0, 0x80, 0x00, 0x00, 0x00, 0x00, |
| 582 | 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xce, 0xde, 0xf6, 0xe6, 0xc6, 0xc6, 0x7c, |
| 583 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x38, 0x78, 0x18, 0x18, 0x18, |
| 584 | 0x18, 0x18, 0x18, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, |
| 585 | 0x06, 0x0c, 0x18, 0x30, 0x60, 0xc0, 0xc6, 0xfe, 0x00, 0x00, 0x00, 0x00, |
| 586 | 0x00, 0x00, 0x7c, 0xc6, 0x06, 0x06, 0x3c, 0x06, 0x06, 0x06, 0xc6, 0x7c, |
| 587 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x1c, 0x3c, 0x6c, 0xcc, 0xfe, |
| 588 | 0x0c, 0x0c, 0x0c, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xc0, |
| 589 | 0xc0, 0xc0, 0xfc, 0x06, 0x06, 0x06, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, |
| 590 | 0x00, 0x00, 0x38, 0x60, 0xc0, 0xc0, 0xfc, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, |
| 591 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xc6, 0x06, 0x06, 0x0c, 0x18, |
| 592 | 0x30, 0x30, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, |
| 593 | 0xc6, 0xc6, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, |
| 594 | 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0x7e, 0x06, 0x06, 0x06, 0x0c, 0x78, |
| 595 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x00, 0x00, |
| 596 | 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 597 | 0x18, 0x18, 0x00, 0x00, 0x00, 0x18, 0x18, 0x30, 0x00, 0x00, 0x00, 0x00, |
| 598 | 0x00, 0x00, 0x00, 0x06, 0x0c, 0x18, 0x30, 0x60, 0x30, 0x18, 0x0c, 0x06, |
| 599 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, |
| 600 | 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, |
| 601 | 0x30, 0x18, 0x0c, 0x06, 0x0c, 0x18, 0x30, 0x60, 0x00, 0x00, 0x00, 0x00, |
| 602 | 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0x0c, 0x18, 0x18, 0x18, 0x00, 0x18, 0x18, |
| 603 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xde, 0xde, |
| 604 | 0xde, 0xdc, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x38, |
| 605 | 0x6c, 0xc6, 0xc6, 0xfe, 0xc6, 0xc6, 0xc6, 0xc6, 0x00, 0x00, 0x00, 0x00, |
| 606 | 0x00, 0x00, 0xfc, 0x66, 0x66, 0x66, 0x7c, 0x66, 0x66, 0x66, 0x66, 0xfc, |
| 607 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x66, 0xc2, 0xc0, 0xc0, 0xc0, |
| 608 | 0xc0, 0xc2, 0x66, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x6c, |
| 609 | 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x6c, 0xf8, 0x00, 0x00, 0x00, 0x00, |
| 610 | 0x00, 0x00, 0xfe, 0x66, 0x62, 0x68, 0x78, 0x68, 0x60, 0x62, 0x66, 0xfe, |
| 611 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x66, 0x62, 0x68, 0x78, 0x68, |
| 612 | 0x60, 0x60, 0x60, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x66, |
| 613 | 0xc2, 0xc0, 0xc0, 0xde, 0xc6, 0xc6, 0x66, 0x3a, 0x00, 0x00, 0x00, 0x00, |
| 614 | 0x00, 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xfe, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, |
| 615 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x18, 0x18, 0x18, 0x18, |
| 616 | 0x18, 0x18, 0x18, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x0c, |
| 617 | 0x0c, 0x0c, 0x0c, 0x0c, 0xcc, 0xcc, 0xcc, 0x78, 0x00, 0x00, 0x00, 0x00, |
| 618 | 0x00, 0x00, 0xe6, 0x66, 0x66, 0x6c, 0x78, 0x78, 0x6c, 0x66, 0x66, 0xe6, |
| 619 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x60, 0x60, 0x60, 0x60, 0x60, |
| 620 | 0x60, 0x62, 0x66, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0xe7, |
| 621 | 0xff, 0xff, 0xdb, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x00, 0x00, 0x00, 0x00, |
| 622 | 0x00, 0x00, 0xc6, 0xe6, 0xf6, 0xfe, 0xde, 0xce, 0xc6, 0xc6, 0xc6, 0xc6, |
| 623 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, |
| 624 | 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x66, |
| 625 | 0x66, 0x66, 0x7c, 0x60, 0x60, 0x60, 0x60, 0xf0, 0x00, 0x00, 0x00, 0x00, |
| 626 | 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xd6, 0xde, 0x7c, |
| 627 | 0x0c, 0x0e, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x66, 0x66, 0x66, 0x7c, 0x6c, |
| 628 | 0x66, 0x66, 0x66, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, |
| 629 | 0xc6, 0x60, 0x38, 0x0c, 0x06, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, |
| 630 | 0x00, 0x00, 0xff, 0xdb, 0x99, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x3c, |
| 631 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, |
| 632 | 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0xc3, |
| 633 | 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x66, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, |
| 634 | 0x00, 0x00, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xdb, 0xdb, 0xff, 0x66, 0x66, |
| 635 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0xc3, 0x66, 0x3c, 0x18, 0x18, |
| 636 | 0x3c, 0x66, 0xc3, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0xc3, |
| 637 | 0xc3, 0x66, 0x3c, 0x18, 0x18, 0x18, 0x18, 0x3c, 0x00, 0x00, 0x00, 0x00, |
| 638 | 0x00, 0x00, 0xff, 0xc3, 0x86, 0x0c, 0x18, 0x30, 0x60, 0xc1, 0xc3, 0xff, |
| 639 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x30, 0x30, 0x30, 0x30, 0x30, |
| 640 | 0x30, 0x30, 0x30, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, |
| 641 | 0xc0, 0xe0, 0x70, 0x38, 0x1c, 0x0e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x00, |
| 642 | 0x00, 0x00, 0x3c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x3c, |
| 643 | 0x00, 0x00, 0x00, 0x00, 0x10, 0x38, 0x6c, 0xc6, 0x00, 0x00, 0x00, 0x00, |
| 644 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 645 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, |
| 646 | 0x30, 0x30, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 647 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x0c, 0x7c, |
| 648 | 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x60, |
| 649 | 0x60, 0x78, 0x6c, 0x66, 0x66, 0x66, 0x66, 0x7c, 0x00, 0x00, 0x00, 0x00, |
| 650 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0xc0, 0xc0, 0xc0, 0xc6, 0x7c, |
| 651 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x0c, 0x0c, 0x3c, 0x6c, 0xcc, |
| 652 | 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 653 | 0x00, 0x7c, 0xc6, 0xfe, 0xc0, 0xc0, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, |
| 654 | 0x00, 0x00, 0x38, 0x6c, 0x64, 0x60, 0xf0, 0x60, 0x60, 0x60, 0x60, 0xf0, |
| 655 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0xcc, 0xcc, |
| 656 | 0xcc, 0xcc, 0xcc, 0x7c, 0x0c, 0xcc, 0x78, 0x00, 0x00, 0x00, 0xe0, 0x60, |
| 657 | 0x60, 0x6c, 0x76, 0x66, 0x66, 0x66, 0x66, 0xe6, 0x00, 0x00, 0x00, 0x00, |
| 658 | 0x00, 0x00, 0x18, 0x18, 0x00, 0x38, 0x18, 0x18, 0x18, 0x18, 0x18, 0x3c, |
| 659 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x00, 0x0e, 0x06, 0x06, |
| 660 | 0x06, 0x06, 0x06, 0x06, 0x66, 0x66, 0x3c, 0x00, 0x00, 0x00, 0xe0, 0x60, |
| 661 | 0x60, 0x66, 0x6c, 0x78, 0x78, 0x6c, 0x66, 0xe6, 0x00, 0x00, 0x00, 0x00, |
| 662 | 0x00, 0x00, 0x38, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x3c, |
| 663 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xff, 0xdb, |
| 664 | 0xdb, 0xdb, 0xdb, 0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 665 | 0x00, 0xdc, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x00, 0x00, 0x00, 0x00, |
| 666 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, |
| 667 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x66, 0x66, |
| 668 | 0x66, 0x66, 0x66, 0x7c, 0x60, 0x60, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 669 | 0x00, 0x76, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0x7c, 0x0c, 0x0c, 0x1e, 0x00, |
| 670 | 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x76, 0x66, 0x60, 0x60, 0x60, 0xf0, |
| 671 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0x60, |
| 672 | 0x38, 0x0c, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x30, |
| 673 | 0x30, 0xfc, 0x30, 0x30, 0x30, 0x30, 0x36, 0x1c, 0x00, 0x00, 0x00, 0x00, |
| 674 | 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0x76, |
| 675 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0xc3, 0xc3, |
| 676 | 0xc3, 0x66, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 677 | 0x00, 0xc3, 0xc3, 0xc3, 0xdb, 0xdb, 0xff, 0x66, 0x00, 0x00, 0x00, 0x00, |
| 678 | 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x66, 0x3c, 0x18, 0x3c, 0x66, 0xc3, |
| 679 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0xc6, 0xc6, |
| 680 | 0xc6, 0xc6, 0xc6, 0x7e, 0x06, 0x0c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 681 | 0x00, 0xfe, 0xcc, 0x18, 0x30, 0x60, 0xc6, 0xfe, 0x00, 0x00, 0x00, 0x00, |
| 682 | 0x00, 0x00, 0x0e, 0x18, 0x18, 0x18, 0x70, 0x18, 0x18, 0x18, 0x18, 0x0e, |
| 683 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x18, 0x00, 0x18, |
| 684 | 0x18, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x18, |
| 685 | 0x18, 0x18, 0x0e, 0x18, 0x18, 0x18, 0x18, 0x70, 0x00, 0x00, 0x00, 0x00, |
| 686 | 0x00, 0x00, 0x76, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 687 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x38, 0x6c, 0xc6, |
| 688 | 0xc6, 0xc6, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x66, |
| 689 | 0xc2, 0xc0, 0xc0, 0xc0, 0xc2, 0x66, 0x3c, 0x0c, 0x06, 0x7c, 0x00, 0x00, |
| 690 | 0x00, 0x00, 0xcc, 0x00, 0x00, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0x76, |
| 691 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x18, 0x30, 0x00, 0x7c, 0xc6, 0xfe, |
| 692 | 0xc0, 0xc0, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x38, 0x6c, |
| 693 | 0x00, 0x78, 0x0c, 0x7c, 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, |
| 694 | 0x00, 0x00, 0xcc, 0x00, 0x00, 0x78, 0x0c, 0x7c, 0xcc, 0xcc, 0xcc, 0x76, |
| 695 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x30, 0x18, 0x00, 0x78, 0x0c, 0x7c, |
| 696 | 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x6c, 0x38, |
| 697 | 0x00, 0x78, 0x0c, 0x7c, 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, |
| 698 | 0x00, 0x00, 0x00, 0x00, 0x3c, 0x66, 0x60, 0x60, 0x66, 0x3c, 0x0c, 0x06, |
| 699 | 0x3c, 0x00, 0x00, 0x00, 0x00, 0x10, 0x38, 0x6c, 0x00, 0x7c, 0xc6, 0xfe, |
| 700 | 0xc0, 0xc0, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x00, |
| 701 | 0x00, 0x7c, 0xc6, 0xfe, 0xc0, 0xc0, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, |
| 702 | 0x00, 0x60, 0x30, 0x18, 0x00, 0x7c, 0xc6, 0xfe, 0xc0, 0xc0, 0xc6, 0x7c, |
| 703 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x38, 0x18, 0x18, |
| 704 | 0x18, 0x18, 0x18, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x3c, 0x66, |
| 705 | 0x00, 0x38, 0x18, 0x18, 0x18, 0x18, 0x18, 0x3c, 0x00, 0x00, 0x00, 0x00, |
| 706 | 0x00, 0x60, 0x30, 0x18, 0x00, 0x38, 0x18, 0x18, 0x18, 0x18, 0x18, 0x3c, |
| 707 | 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x10, 0x38, 0x6c, 0xc6, 0xc6, |
| 708 | 0xfe, 0xc6, 0xc6, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x38, 0x6c, 0x38, 0x00, |
| 709 | 0x38, 0x6c, 0xc6, 0xc6, 0xfe, 0xc6, 0xc6, 0xc6, 0x00, 0x00, 0x00, 0x00, |
| 710 | 0x18, 0x30, 0x60, 0x00, 0xfe, 0x66, 0x60, 0x7c, 0x60, 0x60, 0x66, 0xfe, |
| 711 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x3b, 0x1b, |
| 712 | 0x7e, 0xd8, 0xdc, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x6c, |
| 713 | 0xcc, 0xcc, 0xfe, 0xcc, 0xcc, 0xcc, 0xcc, 0xce, 0x00, 0x00, 0x00, 0x00, |
| 714 | 0x00, 0x10, 0x38, 0x6c, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, |
| 715 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x00, 0x7c, 0xc6, 0xc6, |
| 716 | 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x30, 0x18, |
| 717 | 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, |
| 718 | 0x00, 0x30, 0x78, 0xcc, 0x00, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0x76, |
| 719 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x30, 0x18, 0x00, 0xcc, 0xcc, 0xcc, |
| 720 | 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x00, |
| 721 | 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7e, 0x06, 0x0c, 0x78, 0x00, |
| 722 | 0x00, 0xc6, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, |
| 723 | 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, |
| 724 | 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x7e, |
| 725 | 0xc3, 0xc0, 0xc0, 0xc0, 0xc3, 0x7e, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, |
| 726 | 0x00, 0x38, 0x6c, 0x64, 0x60, 0xf0, 0x60, 0x60, 0x60, 0x60, 0xe6, 0xfc, |
| 727 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x66, 0x3c, 0x18, 0xff, 0x18, |
| 728 | 0xff, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x66, 0x66, |
| 729 | 0x7c, 0x62, 0x66, 0x6f, 0x66, 0x66, 0x66, 0xf3, 0x00, 0x00, 0x00, 0x00, |
| 730 | 0x00, 0x0e, 0x1b, 0x18, 0x18, 0x18, 0x7e, 0x18, 0x18, 0x18, 0x18, 0x18, |
| 731 | 0xd8, 0x70, 0x00, 0x00, 0x00, 0x18, 0x30, 0x60, 0x00, 0x78, 0x0c, 0x7c, |
| 732 | 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x18, 0x30, |
| 733 | 0x00, 0x38, 0x18, 0x18, 0x18, 0x18, 0x18, 0x3c, 0x00, 0x00, 0x00, 0x00, |
| 734 | 0x00, 0x18, 0x30, 0x60, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, |
| 735 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x30, 0x60, 0x00, 0xcc, 0xcc, 0xcc, |
| 736 | 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0xdc, |
| 737 | 0x00, 0xdc, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x00, 0x00, 0x00, 0x00, |
| 738 | 0x76, 0xdc, 0x00, 0xc6, 0xe6, 0xf6, 0xfe, 0xde, 0xce, 0xc6, 0xc6, 0xc6, |
| 739 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x6c, 0x6c, 0x3e, 0x00, 0x7e, 0x00, |
| 740 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x6c, 0x6c, |
| 741 | 0x38, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 742 | 0x00, 0x00, 0x30, 0x30, 0x00, 0x30, 0x30, 0x60, 0xc0, 0xc6, 0xc6, 0x7c, |
| 743 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xc0, |
| 744 | 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 745 | 0x00, 0x00, 0xfe, 0x06, 0x06, 0x06, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 746 | 0x00, 0xc0, 0xc0, 0xc2, 0xc6, 0xcc, 0x18, 0x30, 0x60, 0xce, 0x9b, 0x06, |
| 747 | 0x0c, 0x1f, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc2, 0xc6, 0xcc, 0x18, 0x30, |
| 748 | 0x66, 0xce, 0x96, 0x3e, 0x06, 0x06, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, |
| 749 | 0x00, 0x18, 0x18, 0x18, 0x3c, 0x3c, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, |
| 750 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x6c, 0xd8, 0x6c, 0x36, 0x00, 0x00, |
| 751 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x6c, 0x36, |
| 752 | 0x6c, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x44, 0x11, 0x44, |
| 753 | 0x11, 0x44, 0x11, 0x44, 0x11, 0x44, 0x11, 0x44, 0x11, 0x44, 0x11, 0x44, |
| 754 | 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, |
| 755 | 0x55, 0xaa, 0x55, 0xaa, 0xdd, 0x77, 0xdd, 0x77, 0xdd, 0x77, 0xdd, 0x77, |
| 756 | 0xdd, 0x77, 0xdd, 0x77, 0xdd, 0x77, 0xdd, 0x77, 0x18, 0x18, 0x18, 0x18, |
| 757 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, |
| 758 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0xf8, 0x18, 0x18, 0x18, 0x18, |
| 759 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0xf8, 0x18, 0xf8, |
| 760 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x36, 0x36, 0x36, 0x36, |
| 761 | 0x36, 0x36, 0x36, 0xf6, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, |
| 762 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x36, 0x36, 0x36, 0x36, |
| 763 | 0x36, 0x36, 0x36, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x18, 0xf8, |
| 764 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x36, 0x36, 0x36, 0x36, |
| 765 | 0x36, 0xf6, 0x06, 0xf6, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, |
| 766 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, |
| 767 | 0x36, 0x36, 0x36, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x06, 0xf6, |
| 768 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, |
| 769 | 0x36, 0xf6, 0x06, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 770 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0xfe, 0x00, 0x00, 0x00, 0x00, |
| 771 | 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x18, 0x18, 0xf8, 0x18, 0xf8, |
| 772 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 773 | 0x00, 0x00, 0x00, 0xf8, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, |
| 774 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x1f, 0x00, 0x00, 0x00, 0x00, |
| 775 | 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0xff, |
| 776 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 777 | 0x00, 0x00, 0x00, 0xff, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, |
| 778 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x1f, 0x18, 0x18, 0x18, 0x18, |
| 779 | 0x18, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, |
| 780 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x18, |
| 781 | 0x18, 0x18, 0x18, 0xff, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, |
| 782 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x1f, 0x18, 0x1f, 0x18, 0x18, 0x18, 0x18, |
| 783 | 0x18, 0x18, 0x18, 0x18, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x37, |
| 784 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, |
| 785 | 0x36, 0x37, 0x30, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 786 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x30, 0x37, 0x36, 0x36, 0x36, 0x36, |
| 787 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0xf7, 0x00, 0xff, |
| 788 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 789 | 0x00, 0xff, 0x00, 0xf7, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, |
| 790 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x37, 0x30, 0x37, 0x36, 0x36, 0x36, 0x36, |
| 791 | 0x36, 0x36, 0x36, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, |
| 792 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x36, 0x36, 0x36, |
| 793 | 0x36, 0xf7, 0x00, 0xf7, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, |
| 794 | 0x18, 0x18, 0x18, 0x18, 0x18, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, |
| 795 | 0x00, 0x00, 0x00, 0x00, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0xff, |
| 796 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 797 | 0x00, 0xff, 0x00, 0xff, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, |
| 798 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x36, 0x36, 0x36, 0x36, |
| 799 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x3f, |
| 800 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x18, |
| 801 | 0x18, 0x1f, 0x18, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 802 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x18, 0x1f, 0x18, 0x18, 0x18, 0x18, |
| 803 | 0x18, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, |
| 804 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, |
| 805 | 0x36, 0x36, 0x36, 0xff, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, |
| 806 | 0x18, 0x18, 0x18, 0x18, 0x18, 0xff, 0x18, 0xff, 0x18, 0x18, 0x18, 0x18, |
| 807 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0xf8, |
| 808 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 809 | 0x00, 0x00, 0x00, 0x1f, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, |
| 810 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
| 811 | 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, |
| 812 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf0, 0xf0, 0xf0, |
| 813 | 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, |
| 814 | 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, |
| 815 | 0x0f, 0x0f, 0x0f, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, |
| 816 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 817 | 0x00, 0x76, 0xdc, 0xd8, 0xd8, 0xd8, 0xdc, 0x76, 0x00, 0x00, 0x00, 0x00, |
| 818 | 0x00, 0x00, 0x78, 0xcc, 0xcc, 0xcc, 0xd8, 0xcc, 0xc6, 0xc6, 0xc6, 0xcc, |
| 819 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xc6, 0xc6, 0xc0, 0xc0, 0xc0, |
| 820 | 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 821 | 0xfe, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x00, 0x00, 0x00, 0x00, |
| 822 | 0x00, 0x00, 0x00, 0xfe, 0xc6, 0x60, 0x30, 0x18, 0x30, 0x60, 0xc6, 0xfe, |
| 823 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0xd8, 0xd8, |
| 824 | 0xd8, 0xd8, 0xd8, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 825 | 0x66, 0x66, 0x66, 0x66, 0x66, 0x7c, 0x60, 0x60, 0xc0, 0x00, 0x00, 0x00, |
| 826 | 0x00, 0x00, 0x00, 0x00, 0x76, 0xdc, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, |
| 827 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x18, 0x3c, 0x66, 0x66, |
| 828 | 0x66, 0x3c, 0x18, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, |
| 829 | 0x6c, 0xc6, 0xc6, 0xfe, 0xc6, 0xc6, 0x6c, 0x38, 0x00, 0x00, 0x00, 0x00, |
| 830 | 0x00, 0x00, 0x38, 0x6c, 0xc6, 0xc6, 0xc6, 0x6c, 0x6c, 0x6c, 0x6c, 0xee, |
| 831 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x30, 0x18, 0x0c, 0x3e, 0x66, |
| 832 | 0x66, 0x66, 0x66, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 833 | 0x00, 0x7e, 0xdb, 0xdb, 0xdb, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 834 | 0x00, 0x00, 0x00, 0x03, 0x06, 0x7e, 0xdb, 0xdb, 0xf3, 0x7e, 0x60, 0xc0, |
| 835 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x30, 0x60, 0x60, 0x7c, 0x60, |
| 836 | 0x60, 0x60, 0x30, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, |
| 837 | 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x00, 0x00, 0x00, 0x00, |
| 838 | 0x00, 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0xfe, 0x00, 0x00, 0xfe, 0x00, |
| 839 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x7e, 0x18, |
| 840 | 0x18, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, |
| 841 | 0x18, 0x0c, 0x06, 0x0c, 0x18, 0x30, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, |
| 842 | 0x00, 0x00, 0x00, 0x0c, 0x18, 0x30, 0x60, 0x30, 0x18, 0x0c, 0x00, 0x7e, |
| 843 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x1b, 0x1b, 0x1b, 0x18, 0x18, |
| 844 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, |
| 845 | 0x18, 0x18, 0x18, 0x18, 0xd8, 0xd8, 0xd8, 0x70, 0x00, 0x00, 0x00, 0x00, |
| 846 | 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x00, 0x7e, 0x00, 0x18, 0x18, 0x00, |
| 847 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0xdc, 0x00, |
| 848 | 0x76, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x6c, 0x6c, |
| 849 | 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 850 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, |
| 851 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 852 | 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0c, 0x0c, |
| 853 | 0x0c, 0x0c, 0x0c, 0xec, 0x6c, 0x6c, 0x3c, 0x1c, 0x00, 0x00, 0x00, 0x00, |
| 854 | 0x00, 0xd8, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 855 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0xd8, 0x30, 0x60, 0xc8, 0xf8, 0x00, |
| 856 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 857 | 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 858 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 859 | 0x00, 0x00, 0x00, 0x00, |
| 860 | }; |