17c478bd9Sstevel@tonic-gate /* 2*fea9cb91Slq150181 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 3*fea9cb91Slq150181 * Use is subject to license terms. 47c478bd9Sstevel@tonic-gate */ 5*fea9cb91Slq150181 67c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 77c478bd9Sstevel@tonic-gate 87c478bd9Sstevel@tonic-gate #include <sys/types.h> 97c478bd9Sstevel@tonic-gate #include <sys/param.h> /* for NULL */ 107c478bd9Sstevel@tonic-gate #include <sys/font.h> 117c478bd9Sstevel@tonic-gate 127c478bd9Sstevel@tonic-gate 137c478bd9Sstevel@tonic-gate /* BEGIN CSTYLED */ 14*fea9cb91Slq150181 /* This is a derivation of a BDF font from the X consolidation */ 157c478bd9Sstevel@tonic-gate /* COMMENT */ 167c478bd9Sstevel@tonic-gate /* COMMENT Donated by H. Kagotani <kagotani@cs.titech.ac.jp>; public domain */ 177c478bd9Sstevel@tonic-gate /* COMMENT font from Japan */ 187c478bd9Sstevel@tonic-gate /* COMMENT */ 197c478bd9Sstevel@tonic-gate /* FONT -Misc-Fixed-Medium-R-Normal--14-130-75-75-C-70-ISO8859-1 */ 207c478bd9Sstevel@tonic-gate /* Copyright notice from .bdf file: */ 217c478bd9Sstevel@tonic-gate /* COPYRIGHT "Public domain font. Share and enjoy." */ 227c478bd9Sstevel@tonic-gate 23*fea9cb91Slq150181 static unsigned char FONTDATA[] = { 247c478bd9Sstevel@tonic-gate 257c478bd9Sstevel@tonic-gate /* 0x01 */ 267c478bd9Sstevel@tonic-gate 0x00, /* */ 277c478bd9Sstevel@tonic-gate 0x00, /* */ 287c478bd9Sstevel@tonic-gate 0x18, /* XX */ 297c478bd9Sstevel@tonic-gate 0x18, /* XX */ 307c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 317c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 327c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 337c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 347c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 357c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 367c478bd9Sstevel@tonic-gate 0x18, /* XX */ 377c478bd9Sstevel@tonic-gate 0x18, /* XX */ 387c478bd9Sstevel@tonic-gate 0x00, /* */ 397c478bd9Sstevel@tonic-gate 0x00, /* */ 407c478bd9Sstevel@tonic-gate 417c478bd9Sstevel@tonic-gate /* 0x02 */ 427c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 437c478bd9Sstevel@tonic-gate 0xaa, /* X X X X */ 447c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 457c478bd9Sstevel@tonic-gate 0xaa, /* X X X X */ 467c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 477c478bd9Sstevel@tonic-gate 0xaa, /* X X X X */ 487c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 497c478bd9Sstevel@tonic-gate 0xaa, /* X X X X */ 507c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 517c478bd9Sstevel@tonic-gate 0xaa, /* X X X X */ 527c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 537c478bd9Sstevel@tonic-gate 0xaa, /* X X X X */ 547c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 557c478bd9Sstevel@tonic-gate 0xaa, /* X X X X */ 567c478bd9Sstevel@tonic-gate 577c478bd9Sstevel@tonic-gate /* 0x0b */ 587c478bd9Sstevel@tonic-gate 0x10, /* X */ 597c478bd9Sstevel@tonic-gate 0x10, /* X */ 607c478bd9Sstevel@tonic-gate 0x10, /* X */ 617c478bd9Sstevel@tonic-gate 0x10, /* X */ 627c478bd9Sstevel@tonic-gate 0x10, /* X */ 637c478bd9Sstevel@tonic-gate 0x10, /* X */ 647c478bd9Sstevel@tonic-gate 0x10, /* X */ 657c478bd9Sstevel@tonic-gate 0xf0, /* XXXX */ 667c478bd9Sstevel@tonic-gate 0x00, /* */ 677c478bd9Sstevel@tonic-gate 0x00, /* */ 687c478bd9Sstevel@tonic-gate 0x00, /* */ 697c478bd9Sstevel@tonic-gate 0x00, /* */ 707c478bd9Sstevel@tonic-gate 0x00, /* */ 717c478bd9Sstevel@tonic-gate 0x00, /* */ 727c478bd9Sstevel@tonic-gate 737c478bd9Sstevel@tonic-gate /* 0x0c */ 747c478bd9Sstevel@tonic-gate 0x00, /* */ 757c478bd9Sstevel@tonic-gate 0x00, /* */ 767c478bd9Sstevel@tonic-gate 0x00, /* */ 777c478bd9Sstevel@tonic-gate 0x00, /* */ 787c478bd9Sstevel@tonic-gate 0x00, /* */ 797c478bd9Sstevel@tonic-gate 0x00, /* */ 807c478bd9Sstevel@tonic-gate 0x00, /* */ 817c478bd9Sstevel@tonic-gate 0xf0, /* XXXX */ 827c478bd9Sstevel@tonic-gate 0x10, /* X */ 837c478bd9Sstevel@tonic-gate 0x10, /* X */ 847c478bd9Sstevel@tonic-gate 0x10, /* X */ 857c478bd9Sstevel@tonic-gate 0x10, /* X */ 867c478bd9Sstevel@tonic-gate 0x10, /* X */ 877c478bd9Sstevel@tonic-gate 0x10, /* X */ 887c478bd9Sstevel@tonic-gate 897c478bd9Sstevel@tonic-gate /* 0x0d */ 907c478bd9Sstevel@tonic-gate 0x00, /* */ 917c478bd9Sstevel@tonic-gate 0x00, /* */ 927c478bd9Sstevel@tonic-gate 0x00, /* */ 937c478bd9Sstevel@tonic-gate 0x00, /* */ 947c478bd9Sstevel@tonic-gate 0x00, /* */ 957c478bd9Sstevel@tonic-gate 0x00, /* */ 967c478bd9Sstevel@tonic-gate 0x00, /* */ 977c478bd9Sstevel@tonic-gate 0x1e, /* XXXX */ 987c478bd9Sstevel@tonic-gate 0x10, /* X */ 997c478bd9Sstevel@tonic-gate 0x10, /* X */ 1007c478bd9Sstevel@tonic-gate 0x10, /* X */ 1017c478bd9Sstevel@tonic-gate 0x10, /* X */ 1027c478bd9Sstevel@tonic-gate 0x10, /* X */ 1037c478bd9Sstevel@tonic-gate 0x10, /* X */ 1047c478bd9Sstevel@tonic-gate 1057c478bd9Sstevel@tonic-gate /* 0x0e */ 1067c478bd9Sstevel@tonic-gate 0x10, /* X */ 1077c478bd9Sstevel@tonic-gate 0x10, /* X */ 1087c478bd9Sstevel@tonic-gate 0x10, /* X */ 1097c478bd9Sstevel@tonic-gate 0x10, /* X */ 1107c478bd9Sstevel@tonic-gate 0x10, /* X */ 1117c478bd9Sstevel@tonic-gate 0x10, /* X */ 1127c478bd9Sstevel@tonic-gate 0x10, /* X */ 1137c478bd9Sstevel@tonic-gate 0x1e, /* XXXX */ 1147c478bd9Sstevel@tonic-gate 0x00, /* */ 1157c478bd9Sstevel@tonic-gate 0x00, /* */ 1167c478bd9Sstevel@tonic-gate 0x00, /* */ 1177c478bd9Sstevel@tonic-gate 0x00, /* */ 1187c478bd9Sstevel@tonic-gate 0x00, /* */ 1197c478bd9Sstevel@tonic-gate 0x00, /* */ 1207c478bd9Sstevel@tonic-gate 1217c478bd9Sstevel@tonic-gate /* 0x0f */ 1227c478bd9Sstevel@tonic-gate 0x10, /* X */ 1237c478bd9Sstevel@tonic-gate 0x10, /* X */ 1247c478bd9Sstevel@tonic-gate 0x10, /* X */ 1257c478bd9Sstevel@tonic-gate 0x10, /* X */ 1267c478bd9Sstevel@tonic-gate 0x10, /* X */ 1277c478bd9Sstevel@tonic-gate 0x10, /* X */ 1287c478bd9Sstevel@tonic-gate 0x10, /* X */ 1297c478bd9Sstevel@tonic-gate 0xfe, /* XXXXXXX */ 1307c478bd9Sstevel@tonic-gate 0x10, /* X */ 1317c478bd9Sstevel@tonic-gate 0x10, /* X */ 1327c478bd9Sstevel@tonic-gate 0x10, /* X */ 1337c478bd9Sstevel@tonic-gate 0x10, /* X */ 1347c478bd9Sstevel@tonic-gate 0x10, /* X */ 1357c478bd9Sstevel@tonic-gate 0x10, /* X */ 1367c478bd9Sstevel@tonic-gate 1377c478bd9Sstevel@tonic-gate /* 0x10 */ 1387c478bd9Sstevel@tonic-gate 0xfe, /* XXXXXXX */ 1397c478bd9Sstevel@tonic-gate 0x00, /* */ 1407c478bd9Sstevel@tonic-gate 0x00, /* */ 1417c478bd9Sstevel@tonic-gate 0x00, /* */ 1427c478bd9Sstevel@tonic-gate 0x00, /* */ 1437c478bd9Sstevel@tonic-gate 0x00, /* */ 1447c478bd9Sstevel@tonic-gate 0x00, /* */ 1457c478bd9Sstevel@tonic-gate 0x00, /* */ 1467c478bd9Sstevel@tonic-gate 0x00, /* */ 1477c478bd9Sstevel@tonic-gate 0x00, /* */ 1487c478bd9Sstevel@tonic-gate 0x00, /* */ 1497c478bd9Sstevel@tonic-gate 0x00, /* */ 1507c478bd9Sstevel@tonic-gate 0x00, /* */ 1517c478bd9Sstevel@tonic-gate 0x00, /* */ 1527c478bd9Sstevel@tonic-gate 1537c478bd9Sstevel@tonic-gate /* 0x11 */ 1547c478bd9Sstevel@tonic-gate 0x00, /* */ 1557c478bd9Sstevel@tonic-gate 0x00, /* */ 1567c478bd9Sstevel@tonic-gate 0x00, /* */ 1577c478bd9Sstevel@tonic-gate 0x00, /* */ 1587c478bd9Sstevel@tonic-gate 0xfe, /* XXXXXXX */ 1597c478bd9Sstevel@tonic-gate 0x00, /* */ 1607c478bd9Sstevel@tonic-gate 0x00, /* */ 1617c478bd9Sstevel@tonic-gate 0x00, /* */ 1627c478bd9Sstevel@tonic-gate 0x00, /* */ 1637c478bd9Sstevel@tonic-gate 0x00, /* */ 1647c478bd9Sstevel@tonic-gate 0x00, /* */ 1657c478bd9Sstevel@tonic-gate 0x00, /* */ 1667c478bd9Sstevel@tonic-gate 0x00, /* */ 1677c478bd9Sstevel@tonic-gate 0x00, /* */ 1687c478bd9Sstevel@tonic-gate 1697c478bd9Sstevel@tonic-gate /* 0x12 */ 1707c478bd9Sstevel@tonic-gate 0x00, /* */ 1717c478bd9Sstevel@tonic-gate 0x00, /* */ 1727c478bd9Sstevel@tonic-gate 0x00, /* */ 1737c478bd9Sstevel@tonic-gate 0x00, /* */ 1747c478bd9Sstevel@tonic-gate 0x00, /* */ 1757c478bd9Sstevel@tonic-gate 0x00, /* */ 1767c478bd9Sstevel@tonic-gate 0x00, /* */ 1777c478bd9Sstevel@tonic-gate 0xfe, /* XXXXXXX */ 1787c478bd9Sstevel@tonic-gate 0x00, /* */ 1797c478bd9Sstevel@tonic-gate 0x00, /* */ 1807c478bd9Sstevel@tonic-gate 0x00, /* */ 1817c478bd9Sstevel@tonic-gate 0x00, /* */ 1827c478bd9Sstevel@tonic-gate 0x00, /* */ 1837c478bd9Sstevel@tonic-gate 0x00, /* */ 1847c478bd9Sstevel@tonic-gate 1857c478bd9Sstevel@tonic-gate /* 0x13 */ 1867c478bd9Sstevel@tonic-gate 0x00, /* */ 1877c478bd9Sstevel@tonic-gate 0x00, /* */ 1887c478bd9Sstevel@tonic-gate 0x00, /* */ 1897c478bd9Sstevel@tonic-gate 0x00, /* */ 1907c478bd9Sstevel@tonic-gate 0x00, /* */ 1917c478bd9Sstevel@tonic-gate 0x00, /* */ 1927c478bd9Sstevel@tonic-gate 0x00, /* */ 1937c478bd9Sstevel@tonic-gate 0x00, /* */ 1947c478bd9Sstevel@tonic-gate 0x00, /* */ 1957c478bd9Sstevel@tonic-gate 0xfe, /* XXXXXXX */ 1967c478bd9Sstevel@tonic-gate 0x00, /* */ 1977c478bd9Sstevel@tonic-gate 0x00, /* */ 1987c478bd9Sstevel@tonic-gate 0x00, /* */ 1997c478bd9Sstevel@tonic-gate 0x00, /* */ 2007c478bd9Sstevel@tonic-gate 2017c478bd9Sstevel@tonic-gate /* 0x14 */ 2027c478bd9Sstevel@tonic-gate 0x00, /* */ 2037c478bd9Sstevel@tonic-gate 0x00, /* */ 2047c478bd9Sstevel@tonic-gate 0x00, /* */ 2057c478bd9Sstevel@tonic-gate 0x00, /* */ 2067c478bd9Sstevel@tonic-gate 0x00, /* */ 2077c478bd9Sstevel@tonic-gate 0x00, /* */ 2087c478bd9Sstevel@tonic-gate 0x00, /* */ 2097c478bd9Sstevel@tonic-gate 0x00, /* */ 2107c478bd9Sstevel@tonic-gate 0x00, /* */ 2117c478bd9Sstevel@tonic-gate 0x00, /* */ 2127c478bd9Sstevel@tonic-gate 0x00, /* */ 2137c478bd9Sstevel@tonic-gate 0x00, /* */ 2147c478bd9Sstevel@tonic-gate 0x00, /* */ 2157c478bd9Sstevel@tonic-gate 0xfe, /* XXXXXXX */ 2167c478bd9Sstevel@tonic-gate 2177c478bd9Sstevel@tonic-gate /* 0x15 */ 2187c478bd9Sstevel@tonic-gate 0x10, /* X */ 2197c478bd9Sstevel@tonic-gate 0x10, /* X */ 2207c478bd9Sstevel@tonic-gate 0x10, /* X */ 2217c478bd9Sstevel@tonic-gate 0x10, /* X */ 2227c478bd9Sstevel@tonic-gate 0x10, /* X */ 2237c478bd9Sstevel@tonic-gate 0x10, /* X */ 2247c478bd9Sstevel@tonic-gate 0x10, /* X */ 2257c478bd9Sstevel@tonic-gate 0x1e, /* XXXX */ 2267c478bd9Sstevel@tonic-gate 0x10, /* X */ 2277c478bd9Sstevel@tonic-gate 0x10, /* X */ 2287c478bd9Sstevel@tonic-gate 0x10, /* X */ 2297c478bd9Sstevel@tonic-gate 0x10, /* X */ 2307c478bd9Sstevel@tonic-gate 0x10, /* X */ 2317c478bd9Sstevel@tonic-gate 0x10, /* X */ 2327c478bd9Sstevel@tonic-gate 2337c478bd9Sstevel@tonic-gate /* 0x16 */ 2347c478bd9Sstevel@tonic-gate 0x10, /* X */ 2357c478bd9Sstevel@tonic-gate 0x10, /* X */ 2367c478bd9Sstevel@tonic-gate 0x10, /* X */ 2377c478bd9Sstevel@tonic-gate 0x10, /* X */ 2387c478bd9Sstevel@tonic-gate 0x10, /* X */ 2397c478bd9Sstevel@tonic-gate 0x10, /* X */ 2407c478bd9Sstevel@tonic-gate 0x10, /* X */ 2417c478bd9Sstevel@tonic-gate 0xf0, /* XXXX */ 2427c478bd9Sstevel@tonic-gate 0x10, /* X */ 2437c478bd9Sstevel@tonic-gate 0x10, /* X */ 2447c478bd9Sstevel@tonic-gate 0x10, /* X */ 2457c478bd9Sstevel@tonic-gate 0x10, /* X */ 2467c478bd9Sstevel@tonic-gate 0x10, /* X */ 2477c478bd9Sstevel@tonic-gate 0x10, /* X */ 2487c478bd9Sstevel@tonic-gate 2497c478bd9Sstevel@tonic-gate /* 0x17 */ 2507c478bd9Sstevel@tonic-gate 0x10, /* X */ 2517c478bd9Sstevel@tonic-gate 0x10, /* X */ 2527c478bd9Sstevel@tonic-gate 0x10, /* X */ 2537c478bd9Sstevel@tonic-gate 0x10, /* X */ 2547c478bd9Sstevel@tonic-gate 0x10, /* X */ 2557c478bd9Sstevel@tonic-gate 0x10, /* X */ 2567c478bd9Sstevel@tonic-gate 0x10, /* X */ 2577c478bd9Sstevel@tonic-gate 0xfe, /* XXXXXXX */ 2587c478bd9Sstevel@tonic-gate 0x00, /* */ 2597c478bd9Sstevel@tonic-gate 0x00, /* */ 2607c478bd9Sstevel@tonic-gate 0x00, /* */ 2617c478bd9Sstevel@tonic-gate 0x00, /* */ 2627c478bd9Sstevel@tonic-gate 0x00, /* */ 2637c478bd9Sstevel@tonic-gate 0x00, /* */ 2647c478bd9Sstevel@tonic-gate 2657c478bd9Sstevel@tonic-gate /* 0x18 */ 2667c478bd9Sstevel@tonic-gate 0x00, /* */ 2677c478bd9Sstevel@tonic-gate 0x00, /* */ 2687c478bd9Sstevel@tonic-gate 0x00, /* */ 2697c478bd9Sstevel@tonic-gate 0x00, /* */ 2707c478bd9Sstevel@tonic-gate 0x00, /* */ 2717c478bd9Sstevel@tonic-gate 0x00, /* */ 2727c478bd9Sstevel@tonic-gate 0x00, /* */ 2737c478bd9Sstevel@tonic-gate 0xfe, /* XXXXXXX */ 2747c478bd9Sstevel@tonic-gate 0x10, /* X */ 2757c478bd9Sstevel@tonic-gate 0x10, /* X */ 2767c478bd9Sstevel@tonic-gate 0x10, /* X */ 2777c478bd9Sstevel@tonic-gate 0x10, /* X */ 2787c478bd9Sstevel@tonic-gate 0x10, /* X */ 2797c478bd9Sstevel@tonic-gate 0x10, /* X */ 2807c478bd9Sstevel@tonic-gate 2817c478bd9Sstevel@tonic-gate /* 0x19 */ 2827c478bd9Sstevel@tonic-gate 0x10, /* X */ 2837c478bd9Sstevel@tonic-gate 0x10, /* X */ 2847c478bd9Sstevel@tonic-gate 0x10, /* X */ 2857c478bd9Sstevel@tonic-gate 0x10, /* X */ 2867c478bd9Sstevel@tonic-gate 0x10, /* X */ 2877c478bd9Sstevel@tonic-gate 0x10, /* X */ 2887c478bd9Sstevel@tonic-gate 0x10, /* X */ 2897c478bd9Sstevel@tonic-gate 0x10, /* X */ 2907c478bd9Sstevel@tonic-gate 0x10, /* X */ 2917c478bd9Sstevel@tonic-gate 0x10, /* X */ 2927c478bd9Sstevel@tonic-gate 0x10, /* X */ 2937c478bd9Sstevel@tonic-gate 0x10, /* X */ 2947c478bd9Sstevel@tonic-gate 0x10, /* X */ 2957c478bd9Sstevel@tonic-gate 0x10, /* X */ 2967c478bd9Sstevel@tonic-gate 2977c478bd9Sstevel@tonic-gate /* ' ' */ 2987c478bd9Sstevel@tonic-gate 0x00, /* */ 2997c478bd9Sstevel@tonic-gate 0x00, /* */ 3007c478bd9Sstevel@tonic-gate 0x00, /* */ 3017c478bd9Sstevel@tonic-gate 0x00, /* */ 3027c478bd9Sstevel@tonic-gate 0x00, /* */ 3037c478bd9Sstevel@tonic-gate 0x00, /* */ 3047c478bd9Sstevel@tonic-gate 0x00, /* */ 3057c478bd9Sstevel@tonic-gate 0x00, /* */ 3067c478bd9Sstevel@tonic-gate 0x00, /* */ 3077c478bd9Sstevel@tonic-gate 0x00, /* */ 3087c478bd9Sstevel@tonic-gate 0x00, /* */ 3097c478bd9Sstevel@tonic-gate 0x00, /* */ 3107c478bd9Sstevel@tonic-gate 0x00, /* */ 3117c478bd9Sstevel@tonic-gate 0x00, /* */ 3127c478bd9Sstevel@tonic-gate 3137c478bd9Sstevel@tonic-gate /* '!' */ 3147c478bd9Sstevel@tonic-gate 0x00, /* */ 3157c478bd9Sstevel@tonic-gate 0x00, /* */ 3167c478bd9Sstevel@tonic-gate 0x10, /* X */ 3177c478bd9Sstevel@tonic-gate 0x10, /* X */ 3187c478bd9Sstevel@tonic-gate 0x10, /* X */ 3197c478bd9Sstevel@tonic-gate 0x10, /* X */ 3207c478bd9Sstevel@tonic-gate 0x10, /* X */ 3217c478bd9Sstevel@tonic-gate 0x10, /* X */ 3227c478bd9Sstevel@tonic-gate 0x10, /* X */ 3237c478bd9Sstevel@tonic-gate 0x00, /* */ 3247c478bd9Sstevel@tonic-gate 0x10, /* X */ 3257c478bd9Sstevel@tonic-gate 0x10, /* X */ 3267c478bd9Sstevel@tonic-gate 0x00, /* */ 3277c478bd9Sstevel@tonic-gate 0x00, /* */ 3287c478bd9Sstevel@tonic-gate 3297c478bd9Sstevel@tonic-gate /* '"' */ 3307c478bd9Sstevel@tonic-gate 0x00, /* */ 3317c478bd9Sstevel@tonic-gate 0x6c, /* XX XX */ 3327c478bd9Sstevel@tonic-gate 0x24, /* X X */ 3337c478bd9Sstevel@tonic-gate 0x24, /* X X */ 3347c478bd9Sstevel@tonic-gate 0x48, /* X X */ 3357c478bd9Sstevel@tonic-gate 0x00, /* */ 3367c478bd9Sstevel@tonic-gate 0x00, /* */ 3377c478bd9Sstevel@tonic-gate 0x00, /* */ 3387c478bd9Sstevel@tonic-gate 0x00, /* */ 3397c478bd9Sstevel@tonic-gate 0x00, /* */ 3407c478bd9Sstevel@tonic-gate 0x00, /* */ 3417c478bd9Sstevel@tonic-gate 0x00, /* */ 3427c478bd9Sstevel@tonic-gate 0x00, /* */ 3437c478bd9Sstevel@tonic-gate 0x00, /* */ 3447c478bd9Sstevel@tonic-gate 3457c478bd9Sstevel@tonic-gate /* '#' */ 3467c478bd9Sstevel@tonic-gate 0x00, /* */ 3477c478bd9Sstevel@tonic-gate 0x00, /* */ 3487c478bd9Sstevel@tonic-gate 0x0a, /* X X */ 3497c478bd9Sstevel@tonic-gate 0x0a, /* X X */ 3507c478bd9Sstevel@tonic-gate 0x0a, /* X X */ 3517c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 3527c478bd9Sstevel@tonic-gate 0x14, /* X X */ 3537c478bd9Sstevel@tonic-gate 0x14, /* X X */ 3547c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 3557c478bd9Sstevel@tonic-gate 0x28, /* X X */ 3567c478bd9Sstevel@tonic-gate 0x28, /* X X */ 3577c478bd9Sstevel@tonic-gate 0x28, /* X X */ 3587c478bd9Sstevel@tonic-gate 0x00, /* */ 3597c478bd9Sstevel@tonic-gate 0x00, /* */ 3607c478bd9Sstevel@tonic-gate 3617c478bd9Sstevel@tonic-gate /* '$' */ 3627c478bd9Sstevel@tonic-gate 0x00, /* */ 3637c478bd9Sstevel@tonic-gate 0x00, /* */ 3647c478bd9Sstevel@tonic-gate 0x08, /* X */ 3657c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 3667c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 3677c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 3687c478bd9Sstevel@tonic-gate 0x28, /* X X */ 3697c478bd9Sstevel@tonic-gate 0x1c, /* XXX */ 3707c478bd9Sstevel@tonic-gate 0x0a, /* X X */ 3717c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 3727c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 3737c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 3747c478bd9Sstevel@tonic-gate 0x08, /* X */ 3757c478bd9Sstevel@tonic-gate 0x00, /* */ 3767c478bd9Sstevel@tonic-gate 3777c478bd9Sstevel@tonic-gate /* '%' */ 3787c478bd9Sstevel@tonic-gate 0x00, /* */ 3797c478bd9Sstevel@tonic-gate 0x00, /* */ 3807c478bd9Sstevel@tonic-gate 0x32, /* XX X */ 3817c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 3827c478bd9Sstevel@tonic-gate 0x4c, /* X XX */ 3837c478bd9Sstevel@tonic-gate 0x38, /* XXX */ 3847c478bd9Sstevel@tonic-gate 0x08, /* X */ 3857c478bd9Sstevel@tonic-gate 0x10, /* X */ 3867c478bd9Sstevel@tonic-gate 0x1c, /* XXX */ 3877c478bd9Sstevel@tonic-gate 0x32, /* XX X */ 3887c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 3897c478bd9Sstevel@tonic-gate 0x4c, /* X XX */ 3907c478bd9Sstevel@tonic-gate 0x00, /* */ 3917c478bd9Sstevel@tonic-gate 0x00, /* */ 3927c478bd9Sstevel@tonic-gate 3937c478bd9Sstevel@tonic-gate /* '&' */ 3947c478bd9Sstevel@tonic-gate 0x00, /* */ 3957c478bd9Sstevel@tonic-gate 0x00, /* */ 3967c478bd9Sstevel@tonic-gate 0x18, /* XX */ 3977c478bd9Sstevel@tonic-gate 0x24, /* X X */ 3987c478bd9Sstevel@tonic-gate 0x24, /* X X */ 3997c478bd9Sstevel@tonic-gate 0x24, /* X X */ 4007c478bd9Sstevel@tonic-gate 0x18, /* XX */ 4017c478bd9Sstevel@tonic-gate 0x32, /* XX X */ 4027c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 4037c478bd9Sstevel@tonic-gate 0x44, /* X X */ 4047c478bd9Sstevel@tonic-gate 0x4c, /* X XX */ 4057c478bd9Sstevel@tonic-gate 0x32, /* XX X */ 4067c478bd9Sstevel@tonic-gate 0x00, /* */ 4077c478bd9Sstevel@tonic-gate 0x00, /* */ 4087c478bd9Sstevel@tonic-gate 4097c478bd9Sstevel@tonic-gate /* ''' */ 4107c478bd9Sstevel@tonic-gate 0x00, /* */ 4117c478bd9Sstevel@tonic-gate 0x18, /* XX */ 4127c478bd9Sstevel@tonic-gate 0x08, /* X */ 4137c478bd9Sstevel@tonic-gate 0x08, /* X */ 4147c478bd9Sstevel@tonic-gate 0x10, /* X */ 4157c478bd9Sstevel@tonic-gate 0x00, /* */ 4167c478bd9Sstevel@tonic-gate 0x00, /* */ 4177c478bd9Sstevel@tonic-gate 0x00, /* */ 4187c478bd9Sstevel@tonic-gate 0x00, /* */ 4197c478bd9Sstevel@tonic-gate 0x00, /* */ 4207c478bd9Sstevel@tonic-gate 0x00, /* */ 4217c478bd9Sstevel@tonic-gate 0x00, /* */ 4227c478bd9Sstevel@tonic-gate 0x00, /* */ 4237c478bd9Sstevel@tonic-gate 0x00, /* */ 4247c478bd9Sstevel@tonic-gate 4257c478bd9Sstevel@tonic-gate /* '(' */ 4267c478bd9Sstevel@tonic-gate 0x00, /* */ 4277c478bd9Sstevel@tonic-gate 0x02, /* X */ 4287c478bd9Sstevel@tonic-gate 0x04, /* X */ 4297c478bd9Sstevel@tonic-gate 0x08, /* X */ 4307c478bd9Sstevel@tonic-gate 0x08, /* X */ 4317c478bd9Sstevel@tonic-gate 0x10, /* X */ 4327c478bd9Sstevel@tonic-gate 0x10, /* X */ 4337c478bd9Sstevel@tonic-gate 0x10, /* X */ 4347c478bd9Sstevel@tonic-gate 0x10, /* X */ 4357c478bd9Sstevel@tonic-gate 0x10, /* X */ 4367c478bd9Sstevel@tonic-gate 0x08, /* X */ 4377c478bd9Sstevel@tonic-gate 0x08, /* X */ 4387c478bd9Sstevel@tonic-gate 0x04, /* X */ 4397c478bd9Sstevel@tonic-gate 0x02, /* X */ 4407c478bd9Sstevel@tonic-gate 4417c478bd9Sstevel@tonic-gate /* ')' */ 4427c478bd9Sstevel@tonic-gate 0x00, /* */ 4437c478bd9Sstevel@tonic-gate 0x40, /* X */ 4447c478bd9Sstevel@tonic-gate 0x20, /* X */ 4457c478bd9Sstevel@tonic-gate 0x10, /* X */ 4467c478bd9Sstevel@tonic-gate 0x10, /* X */ 4477c478bd9Sstevel@tonic-gate 0x08, /* X */ 4487c478bd9Sstevel@tonic-gate 0x08, /* X */ 4497c478bd9Sstevel@tonic-gate 0x08, /* X */ 4507c478bd9Sstevel@tonic-gate 0x08, /* X */ 4517c478bd9Sstevel@tonic-gate 0x08, /* X */ 4527c478bd9Sstevel@tonic-gate 0x10, /* X */ 4537c478bd9Sstevel@tonic-gate 0x10, /* X */ 4547c478bd9Sstevel@tonic-gate 0x20, /* X */ 4557c478bd9Sstevel@tonic-gate 0x40, /* X */ 4567c478bd9Sstevel@tonic-gate 4577c478bd9Sstevel@tonic-gate /* '*' */ 4587c478bd9Sstevel@tonic-gate 0x00, /* */ 4597c478bd9Sstevel@tonic-gate 0x00, /* */ 4607c478bd9Sstevel@tonic-gate 0x08, /* X */ 4617c478bd9Sstevel@tonic-gate 0x2a, /* X X X */ 4627c478bd9Sstevel@tonic-gate 0x1c, /* XXX */ 4637c478bd9Sstevel@tonic-gate 0x08, /* X */ 4647c478bd9Sstevel@tonic-gate 0x1c, /* XXX */ 4657c478bd9Sstevel@tonic-gate 0x2a, /* X X X */ 4667c478bd9Sstevel@tonic-gate 0x08, /* X */ 4677c478bd9Sstevel@tonic-gate 0x00, /* */ 4687c478bd9Sstevel@tonic-gate 0x00, /* */ 4697c478bd9Sstevel@tonic-gate 0x00, /* */ 4707c478bd9Sstevel@tonic-gate 0x00, /* */ 4717c478bd9Sstevel@tonic-gate 0x00, /* */ 4727c478bd9Sstevel@tonic-gate 4737c478bd9Sstevel@tonic-gate /* '+' */ 4747c478bd9Sstevel@tonic-gate 0x00, /* */ 4757c478bd9Sstevel@tonic-gate 0x00, /* */ 4767c478bd9Sstevel@tonic-gate 0x00, /* */ 4777c478bd9Sstevel@tonic-gate 0x00, /* */ 4787c478bd9Sstevel@tonic-gate 0x10, /* X */ 4797c478bd9Sstevel@tonic-gate 0x10, /* X */ 4807c478bd9Sstevel@tonic-gate 0x10, /* X */ 4817c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 4827c478bd9Sstevel@tonic-gate 0x10, /* X */ 4837c478bd9Sstevel@tonic-gate 0x10, /* X */ 4847c478bd9Sstevel@tonic-gate 0x10, /* X */ 4857c478bd9Sstevel@tonic-gate 0x00, /* */ 4867c478bd9Sstevel@tonic-gate 0x00, /* */ 4877c478bd9Sstevel@tonic-gate 0x00, /* */ 4887c478bd9Sstevel@tonic-gate 4897c478bd9Sstevel@tonic-gate /* ',' */ 4907c478bd9Sstevel@tonic-gate 0x00, /* */ 4917c478bd9Sstevel@tonic-gate 0x00, /* */ 4927c478bd9Sstevel@tonic-gate 0x00, /* */ 4937c478bd9Sstevel@tonic-gate 0x00, /* */ 4947c478bd9Sstevel@tonic-gate 0x00, /* */ 4957c478bd9Sstevel@tonic-gate 0x00, /* */ 4967c478bd9Sstevel@tonic-gate 0x00, /* */ 4977c478bd9Sstevel@tonic-gate 0x00, /* */ 4987c478bd9Sstevel@tonic-gate 0x00, /* */ 4997c478bd9Sstevel@tonic-gate 0x00, /* */ 5007c478bd9Sstevel@tonic-gate 0x30, /* XX */ 5017c478bd9Sstevel@tonic-gate 0x10, /* X */ 5027c478bd9Sstevel@tonic-gate 0x10, /* X */ 5037c478bd9Sstevel@tonic-gate 0x20, /* X */ 5047c478bd9Sstevel@tonic-gate 5057c478bd9Sstevel@tonic-gate /* '-' */ 5067c478bd9Sstevel@tonic-gate 0x00, /* */ 5077c478bd9Sstevel@tonic-gate 0x00, /* */ 5087c478bd9Sstevel@tonic-gate 0x00, /* */ 5097c478bd9Sstevel@tonic-gate 0x00, /* */ 5107c478bd9Sstevel@tonic-gate 0x00, /* */ 5117c478bd9Sstevel@tonic-gate 0x00, /* */ 5127c478bd9Sstevel@tonic-gate 0x00, /* */ 5137c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 5147c478bd9Sstevel@tonic-gate 0x00, /* */ 5157c478bd9Sstevel@tonic-gate 0x00, /* */ 5167c478bd9Sstevel@tonic-gate 0x00, /* */ 5177c478bd9Sstevel@tonic-gate 0x00, /* */ 5187c478bd9Sstevel@tonic-gate 0x00, /* */ 5197c478bd9Sstevel@tonic-gate 0x00, /* */ 5207c478bd9Sstevel@tonic-gate 5217c478bd9Sstevel@tonic-gate /* '.' */ 5227c478bd9Sstevel@tonic-gate 0x00, /* */ 5237c478bd9Sstevel@tonic-gate 0x00, /* */ 5247c478bd9Sstevel@tonic-gate 0x00, /* */ 5257c478bd9Sstevel@tonic-gate 0x00, /* */ 5267c478bd9Sstevel@tonic-gate 0x00, /* */ 5277c478bd9Sstevel@tonic-gate 0x00, /* */ 5287c478bd9Sstevel@tonic-gate 0x00, /* */ 5297c478bd9Sstevel@tonic-gate 0x00, /* */ 5307c478bd9Sstevel@tonic-gate 0x00, /* */ 5317c478bd9Sstevel@tonic-gate 0x00, /* */ 5327c478bd9Sstevel@tonic-gate 0x08, /* X */ 5337c478bd9Sstevel@tonic-gate 0x1c, /* XXX */ 5347c478bd9Sstevel@tonic-gate 0x08, /* X */ 5357c478bd9Sstevel@tonic-gate 0x00, /* */ 5367c478bd9Sstevel@tonic-gate 5377c478bd9Sstevel@tonic-gate /* '/' */ 5387c478bd9Sstevel@tonic-gate 0x00, /* */ 5397c478bd9Sstevel@tonic-gate 0x02, /* X */ 5407c478bd9Sstevel@tonic-gate 0x02, /* X */ 5417c478bd9Sstevel@tonic-gate 0x04, /* X */ 5427c478bd9Sstevel@tonic-gate 0x04, /* X */ 5437c478bd9Sstevel@tonic-gate 0x08, /* X */ 5447c478bd9Sstevel@tonic-gate 0x08, /* X */ 5457c478bd9Sstevel@tonic-gate 0x08, /* X */ 5467c478bd9Sstevel@tonic-gate 0x10, /* X */ 5477c478bd9Sstevel@tonic-gate 0x10, /* X */ 5487c478bd9Sstevel@tonic-gate 0x20, /* X */ 5497c478bd9Sstevel@tonic-gate 0x20, /* X */ 5507c478bd9Sstevel@tonic-gate 0x40, /* X */ 5517c478bd9Sstevel@tonic-gate 0x40, /* X */ 5527c478bd9Sstevel@tonic-gate 5537c478bd9Sstevel@tonic-gate /* '0' */ 5547c478bd9Sstevel@tonic-gate 0x00, /* */ 5557c478bd9Sstevel@tonic-gate 0x00, /* */ 5567c478bd9Sstevel@tonic-gate 0x18, /* XX */ 5577c478bd9Sstevel@tonic-gate 0x24, /* X X */ 5587c478bd9Sstevel@tonic-gate 0x42, /* X X */ 5597c478bd9Sstevel@tonic-gate 0x42, /* X X */ 5607c478bd9Sstevel@tonic-gate 0x42, /* X X */ 5617c478bd9Sstevel@tonic-gate 0x42, /* X X */ 5627c478bd9Sstevel@tonic-gate 0x42, /* X X */ 5637c478bd9Sstevel@tonic-gate 0x42, /* X X */ 5647c478bd9Sstevel@tonic-gate 0x24, /* X X */ 5657c478bd9Sstevel@tonic-gate 0x18, /* XX */ 5667c478bd9Sstevel@tonic-gate 0x00, /* */ 5677c478bd9Sstevel@tonic-gate 0x00, /* */ 5687c478bd9Sstevel@tonic-gate 5697c478bd9Sstevel@tonic-gate /* '1' */ 5707c478bd9Sstevel@tonic-gate 0x00, /* */ 5717c478bd9Sstevel@tonic-gate 0x00, /* */ 5727c478bd9Sstevel@tonic-gate 0x08, /* X */ 5737c478bd9Sstevel@tonic-gate 0x18, /* XX */ 5747c478bd9Sstevel@tonic-gate 0x28, /* X X */ 5757c478bd9Sstevel@tonic-gate 0x08, /* X */ 5767c478bd9Sstevel@tonic-gate 0x08, /* X */ 5777c478bd9Sstevel@tonic-gate 0x08, /* X */ 5787c478bd9Sstevel@tonic-gate 0x08, /* X */ 5797c478bd9Sstevel@tonic-gate 0x08, /* X */ 5807c478bd9Sstevel@tonic-gate 0x08, /* X */ 5817c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 5827c478bd9Sstevel@tonic-gate 0x00, /* */ 5837c478bd9Sstevel@tonic-gate 0x00, /* */ 5847c478bd9Sstevel@tonic-gate 5857c478bd9Sstevel@tonic-gate /* '2' */ 5867c478bd9Sstevel@tonic-gate 0x00, /* */ 5877c478bd9Sstevel@tonic-gate 0x00, /* */ 5887c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 5897c478bd9Sstevel@tonic-gate 0x42, /* X X */ 5907c478bd9Sstevel@tonic-gate 0x42, /* X X */ 5917c478bd9Sstevel@tonic-gate 0x02, /* X */ 5927c478bd9Sstevel@tonic-gate 0x04, /* X */ 5937c478bd9Sstevel@tonic-gate 0x04, /* X */ 5947c478bd9Sstevel@tonic-gate 0x08, /* X */ 5957c478bd9Sstevel@tonic-gate 0x10, /* X */ 5967c478bd9Sstevel@tonic-gate 0x20, /* X */ 5977c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 5987c478bd9Sstevel@tonic-gate 0x00, /* */ 5997c478bd9Sstevel@tonic-gate 0x00, /* */ 6007c478bd9Sstevel@tonic-gate 6017c478bd9Sstevel@tonic-gate /* '3' */ 6027c478bd9Sstevel@tonic-gate 0x00, /* */ 6037c478bd9Sstevel@tonic-gate 0x00, /* */ 6047c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 6057c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6067c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6077c478bd9Sstevel@tonic-gate 0x02, /* X */ 6087c478bd9Sstevel@tonic-gate 0x1c, /* XXX */ 6097c478bd9Sstevel@tonic-gate 0x02, /* X */ 6107c478bd9Sstevel@tonic-gate 0x02, /* X */ 6117c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6127c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6137c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 6147c478bd9Sstevel@tonic-gate 0x00, /* */ 6157c478bd9Sstevel@tonic-gate 0x00, /* */ 6167c478bd9Sstevel@tonic-gate 6177c478bd9Sstevel@tonic-gate /* '4' */ 6187c478bd9Sstevel@tonic-gate 0x00, /* */ 6197c478bd9Sstevel@tonic-gate 0x00, /* */ 6207c478bd9Sstevel@tonic-gate 0x04, /* X */ 6217c478bd9Sstevel@tonic-gate 0x0c, /* XX */ 6227c478bd9Sstevel@tonic-gate 0x14, /* X X */ 6237c478bd9Sstevel@tonic-gate 0x14, /* X X */ 6247c478bd9Sstevel@tonic-gate 0x24, /* X X */ 6257c478bd9Sstevel@tonic-gate 0x24, /* X X */ 6267c478bd9Sstevel@tonic-gate 0x44, /* X X */ 6277c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 6287c478bd9Sstevel@tonic-gate 0x04, /* X */ 6297c478bd9Sstevel@tonic-gate 0x04, /* X */ 6307c478bd9Sstevel@tonic-gate 0x00, /* */ 6317c478bd9Sstevel@tonic-gate 0x00, /* */ 6327c478bd9Sstevel@tonic-gate 6337c478bd9Sstevel@tonic-gate /* '5' */ 6347c478bd9Sstevel@tonic-gate 0x00, /* */ 6357c478bd9Sstevel@tonic-gate 0x00, /* */ 6367c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 6377c478bd9Sstevel@tonic-gate 0x40, /* X */ 6387c478bd9Sstevel@tonic-gate 0x40, /* X */ 6397c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 6407c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6417c478bd9Sstevel@tonic-gate 0x02, /* X */ 6427c478bd9Sstevel@tonic-gate 0x02, /* X */ 6437c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6447c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6457c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 6467c478bd9Sstevel@tonic-gate 0x00, /* */ 6477c478bd9Sstevel@tonic-gate 0x00, /* */ 6487c478bd9Sstevel@tonic-gate 6497c478bd9Sstevel@tonic-gate /* '6' */ 6507c478bd9Sstevel@tonic-gate 0x00, /* */ 6517c478bd9Sstevel@tonic-gate 0x00, /* */ 6527c478bd9Sstevel@tonic-gate 0x1c, /* XXX */ 6537c478bd9Sstevel@tonic-gate 0x22, /* X X */ 6547c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6557c478bd9Sstevel@tonic-gate 0x40, /* X */ 6567c478bd9Sstevel@tonic-gate 0x5c, /* X XXX */ 6577c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 6587c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6597c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6607c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6617c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 6627c478bd9Sstevel@tonic-gate 0x00, /* */ 6637c478bd9Sstevel@tonic-gate 0x00, /* */ 6647c478bd9Sstevel@tonic-gate 6657c478bd9Sstevel@tonic-gate /* '7' */ 6667c478bd9Sstevel@tonic-gate 0x00, /* */ 6677c478bd9Sstevel@tonic-gate 0x00, /* */ 6687c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 6697c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6707c478bd9Sstevel@tonic-gate 0x44, /* X X */ 6717c478bd9Sstevel@tonic-gate 0x04, /* X */ 6727c478bd9Sstevel@tonic-gate 0x08, /* X */ 6737c478bd9Sstevel@tonic-gate 0x08, /* X */ 6747c478bd9Sstevel@tonic-gate 0x08, /* X */ 6757c478bd9Sstevel@tonic-gate 0x08, /* X */ 6767c478bd9Sstevel@tonic-gate 0x08, /* X */ 6777c478bd9Sstevel@tonic-gate 0x08, /* X */ 6787c478bd9Sstevel@tonic-gate 0x00, /* */ 6797c478bd9Sstevel@tonic-gate 0x00, /* */ 6807c478bd9Sstevel@tonic-gate 6817c478bd9Sstevel@tonic-gate /* '8' */ 6827c478bd9Sstevel@tonic-gate 0x00, /* */ 6837c478bd9Sstevel@tonic-gate 0x00, /* */ 6847c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 6857c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6867c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6877c478bd9Sstevel@tonic-gate 0x24, /* X X */ 6887c478bd9Sstevel@tonic-gate 0x18, /* XX */ 6897c478bd9Sstevel@tonic-gate 0x24, /* X X */ 6907c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6917c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6927c478bd9Sstevel@tonic-gate 0x42, /* X X */ 6937c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 6947c478bd9Sstevel@tonic-gate 0x00, /* */ 6957c478bd9Sstevel@tonic-gate 0x00, /* */ 6967c478bd9Sstevel@tonic-gate 6977c478bd9Sstevel@tonic-gate /* '9' */ 6987c478bd9Sstevel@tonic-gate 0x00, /* */ 6997c478bd9Sstevel@tonic-gate 0x00, /* */ 7007c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 7017c478bd9Sstevel@tonic-gate 0x42, /* X X */ 7027c478bd9Sstevel@tonic-gate 0x42, /* X X */ 7037c478bd9Sstevel@tonic-gate 0x42, /* X X */ 7047c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 7057c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 7067c478bd9Sstevel@tonic-gate 0x02, /* X */ 7077c478bd9Sstevel@tonic-gate 0x42, /* X X */ 7087c478bd9Sstevel@tonic-gate 0x44, /* X X */ 7097c478bd9Sstevel@tonic-gate 0x38, /* XXX */ 7107c478bd9Sstevel@tonic-gate 0x00, /* */ 7117c478bd9Sstevel@tonic-gate 0x00, /* */ 7127c478bd9Sstevel@tonic-gate 7137c478bd9Sstevel@tonic-gate /* ':' */ 7147c478bd9Sstevel@tonic-gate 0x00, /* */ 7157c478bd9Sstevel@tonic-gate 0x00, /* */ 7167c478bd9Sstevel@tonic-gate 0x00, /* */ 7177c478bd9Sstevel@tonic-gate 0x00, /* */ 7187c478bd9Sstevel@tonic-gate 0x08, /* X */ 7197c478bd9Sstevel@tonic-gate 0x1c, /* XXX */ 7207c478bd9Sstevel@tonic-gate 0x08, /* X */ 7217c478bd9Sstevel@tonic-gate 0x00, /* */ 7227c478bd9Sstevel@tonic-gate 0x00, /* */ 7237c478bd9Sstevel@tonic-gate 0x08, /* X */ 7247c478bd9Sstevel@tonic-gate 0x1c, /* XXX */ 7257c478bd9Sstevel@tonic-gate 0x08, /* X */ 7267c478bd9Sstevel@tonic-gate 0x00, /* */ 7277c478bd9Sstevel@tonic-gate 0x00, /* */ 7287c478bd9Sstevel@tonic-gate 7297c478bd9Sstevel@tonic-gate /* ';' */ 7307c478bd9Sstevel@tonic-gate 0x00, /* */ 7317c478bd9Sstevel@tonic-gate 0x00, /* */ 7327c478bd9Sstevel@tonic-gate 0x00, /* */ 7337c478bd9Sstevel@tonic-gate 0x00, /* */ 7347c478bd9Sstevel@tonic-gate 0x00, /* */ 7357c478bd9Sstevel@tonic-gate 0x18, /* XX */ 7367c478bd9Sstevel@tonic-gate 0x18, /* XX */ 7377c478bd9Sstevel@tonic-gate 0x00, /* */ 7387c478bd9Sstevel@tonic-gate 0x00, /* */ 7397c478bd9Sstevel@tonic-gate 0x18, /* XX */ 7407c478bd9Sstevel@tonic-gate 0x08, /* X */ 7417c478bd9Sstevel@tonic-gate 0x08, /* X */ 7427c478bd9Sstevel@tonic-gate 0x10, /* X */ 7437c478bd9Sstevel@tonic-gate 0x00, /* */ 7447c478bd9Sstevel@tonic-gate 7457c478bd9Sstevel@tonic-gate /* '<' */ 7467c478bd9Sstevel@tonic-gate 0x00, /* */ 7477c478bd9Sstevel@tonic-gate 0x00, /* */ 7487c478bd9Sstevel@tonic-gate 0x00, /* */ 7497c478bd9Sstevel@tonic-gate 0x04, /* X */ 7507c478bd9Sstevel@tonic-gate 0x08, /* X */ 7517c478bd9Sstevel@tonic-gate 0x10, /* X */ 7527c478bd9Sstevel@tonic-gate 0x20, /* X */ 7537c478bd9Sstevel@tonic-gate 0x40, /* X */ 7547c478bd9Sstevel@tonic-gate 0x20, /* X */ 7557c478bd9Sstevel@tonic-gate 0x10, /* X */ 7567c478bd9Sstevel@tonic-gate 0x08, /* X */ 7577c478bd9Sstevel@tonic-gate 0x04, /* X */ 7587c478bd9Sstevel@tonic-gate 0x00, /* */ 7597c478bd9Sstevel@tonic-gate 0x00, /* */ 7607c478bd9Sstevel@tonic-gate 7617c478bd9Sstevel@tonic-gate /* '=' */ 7627c478bd9Sstevel@tonic-gate 0x00, /* */ 7637c478bd9Sstevel@tonic-gate 0x00, /* */ 7647c478bd9Sstevel@tonic-gate 0x00, /* */ 7657c478bd9Sstevel@tonic-gate 0x00, /* */ 7667c478bd9Sstevel@tonic-gate 0x00, /* */ 7677c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 7687c478bd9Sstevel@tonic-gate 0x00, /* */ 7697c478bd9Sstevel@tonic-gate 0x00, /* */ 7707c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 7717c478bd9Sstevel@tonic-gate 0x00, /* */ 7727c478bd9Sstevel@tonic-gate 0x00, /* */ 7737c478bd9Sstevel@tonic-gate 0x00, /* */ 7747c478bd9Sstevel@tonic-gate 0x00, /* */ 7757c478bd9Sstevel@tonic-gate 0x00, /* */ 7767c478bd9Sstevel@tonic-gate 7777c478bd9Sstevel@tonic-gate /* '>' */ 7787c478bd9Sstevel@tonic-gate 0x00, /* */ 7797c478bd9Sstevel@tonic-gate 0x00, /* */ 7807c478bd9Sstevel@tonic-gate 0x00, /* */ 7817c478bd9Sstevel@tonic-gate 0x40, /* X */ 7827c478bd9Sstevel@tonic-gate 0x20, /* X */ 7837c478bd9Sstevel@tonic-gate 0x10, /* X */ 7847c478bd9Sstevel@tonic-gate 0x08, /* X */ 7857c478bd9Sstevel@tonic-gate 0x04, /* X */ 7867c478bd9Sstevel@tonic-gate 0x08, /* X */ 7877c478bd9Sstevel@tonic-gate 0x10, /* X */ 7887c478bd9Sstevel@tonic-gate 0x20, /* X */ 7897c478bd9Sstevel@tonic-gate 0x40, /* X */ 7907c478bd9Sstevel@tonic-gate 0x00, /* */ 7917c478bd9Sstevel@tonic-gate 0x00, /* */ 7927c478bd9Sstevel@tonic-gate 7937c478bd9Sstevel@tonic-gate /* '?' */ 7947c478bd9Sstevel@tonic-gate 0x00, /* */ 7957c478bd9Sstevel@tonic-gate 0x00, /* */ 7967c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 7977c478bd9Sstevel@tonic-gate 0x42, /* X X */ 7987c478bd9Sstevel@tonic-gate 0x42, /* X X */ 7997c478bd9Sstevel@tonic-gate 0x04, /* X */ 8007c478bd9Sstevel@tonic-gate 0x08, /* X */ 8017c478bd9Sstevel@tonic-gate 0x08, /* X */ 8027c478bd9Sstevel@tonic-gate 0x08, /* X */ 8037c478bd9Sstevel@tonic-gate 0x00, /* */ 8047c478bd9Sstevel@tonic-gate 0x08, /* X */ 8057c478bd9Sstevel@tonic-gate 0x08, /* X */ 8067c478bd9Sstevel@tonic-gate 0x00, /* */ 8077c478bd9Sstevel@tonic-gate 0x00, /* */ 8087c478bd9Sstevel@tonic-gate 8097c478bd9Sstevel@tonic-gate /* '@' */ 8107c478bd9Sstevel@tonic-gate 0x00, /* */ 8117c478bd9Sstevel@tonic-gate 0x00, /* */ 8127c478bd9Sstevel@tonic-gate 0x1c, /* XXX */ 8137c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8147c478bd9Sstevel@tonic-gate 0x4e, /* X XXX */ 8157c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 8167c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 8177c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 8187c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 8197c478bd9Sstevel@tonic-gate 0x4e, /* X XXX */ 8207c478bd9Sstevel@tonic-gate 0x20, /* X */ 8217c478bd9Sstevel@tonic-gate 0x1e, /* XXXX */ 8227c478bd9Sstevel@tonic-gate 0x00, /* */ 8237c478bd9Sstevel@tonic-gate 0x00, /* */ 8247c478bd9Sstevel@tonic-gate 8257c478bd9Sstevel@tonic-gate /* 'A' */ 8267c478bd9Sstevel@tonic-gate 0x00, /* */ 8277c478bd9Sstevel@tonic-gate 0x00, /* */ 8287c478bd9Sstevel@tonic-gate 0x18, /* XX */ 8297c478bd9Sstevel@tonic-gate 0x24, /* X X */ 8307c478bd9Sstevel@tonic-gate 0x42, /* X X */ 8317c478bd9Sstevel@tonic-gate 0x42, /* X X */ 8327c478bd9Sstevel@tonic-gate 0x42, /* X X */ 8337c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 8347c478bd9Sstevel@tonic-gate 0x42, /* X X */ 8357c478bd9Sstevel@tonic-gate 0x42, /* X X */ 8367c478bd9Sstevel@tonic-gate 0x42, /* X X */ 8377c478bd9Sstevel@tonic-gate 0x42, /* X X */ 8387c478bd9Sstevel@tonic-gate 0x00, /* */ 8397c478bd9Sstevel@tonic-gate 0x00, /* */ 8407c478bd9Sstevel@tonic-gate 8417c478bd9Sstevel@tonic-gate /* 'B' */ 8427c478bd9Sstevel@tonic-gate 0x00, /* */ 8437c478bd9Sstevel@tonic-gate 0x00, /* */ 8447c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 8457c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8467c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8477c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8487c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 8497c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8507c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8517c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8527c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8537c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 8547c478bd9Sstevel@tonic-gate 0x00, /* */ 8557c478bd9Sstevel@tonic-gate 0x00, /* */ 8567c478bd9Sstevel@tonic-gate 8577c478bd9Sstevel@tonic-gate /* 'C' */ 8587c478bd9Sstevel@tonic-gate 0x00, /* */ 8597c478bd9Sstevel@tonic-gate 0x00, /* */ 8607c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 8617c478bd9Sstevel@tonic-gate 0x42, /* X X */ 8627c478bd9Sstevel@tonic-gate 0x42, /* X X */ 8637c478bd9Sstevel@tonic-gate 0x40, /* X */ 8647c478bd9Sstevel@tonic-gate 0x40, /* X */ 8657c478bd9Sstevel@tonic-gate 0x40, /* X */ 8667c478bd9Sstevel@tonic-gate 0x40, /* X */ 8677c478bd9Sstevel@tonic-gate 0x42, /* X X */ 8687c478bd9Sstevel@tonic-gate 0x42, /* X X */ 8697c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 8707c478bd9Sstevel@tonic-gate 0x00, /* */ 8717c478bd9Sstevel@tonic-gate 0x00, /* */ 8727c478bd9Sstevel@tonic-gate 8737c478bd9Sstevel@tonic-gate /* 'D' */ 8747c478bd9Sstevel@tonic-gate 0x00, /* */ 8757c478bd9Sstevel@tonic-gate 0x00, /* */ 8767c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 8777c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8787c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8797c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8807c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8817c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8827c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8837c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8847c478bd9Sstevel@tonic-gate 0x22, /* X X */ 8857c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 8867c478bd9Sstevel@tonic-gate 0x00, /* */ 8877c478bd9Sstevel@tonic-gate 0x00, /* */ 8887c478bd9Sstevel@tonic-gate 8897c478bd9Sstevel@tonic-gate /* 'E' */ 8907c478bd9Sstevel@tonic-gate 0x00, /* */ 8917c478bd9Sstevel@tonic-gate 0x00, /* */ 8927c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 8937c478bd9Sstevel@tonic-gate 0x40, /* X */ 8947c478bd9Sstevel@tonic-gate 0x40, /* X */ 8957c478bd9Sstevel@tonic-gate 0x40, /* X */ 8967c478bd9Sstevel@tonic-gate 0x78, /* XXXX */ 8977c478bd9Sstevel@tonic-gate 0x40, /* X */ 8987c478bd9Sstevel@tonic-gate 0x40, /* X */ 8997c478bd9Sstevel@tonic-gate 0x40, /* X */ 9007c478bd9Sstevel@tonic-gate 0x40, /* X */ 9017c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 9027c478bd9Sstevel@tonic-gate 0x00, /* */ 9037c478bd9Sstevel@tonic-gate 0x00, /* */ 9047c478bd9Sstevel@tonic-gate 9057c478bd9Sstevel@tonic-gate /* 'F' */ 9067c478bd9Sstevel@tonic-gate 0x00, /* */ 9077c478bd9Sstevel@tonic-gate 0x00, /* */ 9087c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 9097c478bd9Sstevel@tonic-gate 0x40, /* X */ 9107c478bd9Sstevel@tonic-gate 0x40, /* X */ 9117c478bd9Sstevel@tonic-gate 0x40, /* X */ 9127c478bd9Sstevel@tonic-gate 0x78, /* XXXX */ 9137c478bd9Sstevel@tonic-gate 0x40, /* X */ 9147c478bd9Sstevel@tonic-gate 0x40, /* X */ 9157c478bd9Sstevel@tonic-gate 0x40, /* X */ 9167c478bd9Sstevel@tonic-gate 0x40, /* X */ 9177c478bd9Sstevel@tonic-gate 0x40, /* X */ 9187c478bd9Sstevel@tonic-gate 0x00, /* */ 9197c478bd9Sstevel@tonic-gate 0x00, /* */ 9207c478bd9Sstevel@tonic-gate 9217c478bd9Sstevel@tonic-gate /* 'G' */ 9227c478bd9Sstevel@tonic-gate 0x00, /* */ 9237c478bd9Sstevel@tonic-gate 0x00, /* */ 9247c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 9257c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9267c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9277c478bd9Sstevel@tonic-gate 0x40, /* X */ 9287c478bd9Sstevel@tonic-gate 0x40, /* X */ 9297c478bd9Sstevel@tonic-gate 0x4e, /* X XXX */ 9307c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9317c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9327c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 9337c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 9347c478bd9Sstevel@tonic-gate 0x00, /* */ 9357c478bd9Sstevel@tonic-gate 0x00, /* */ 9367c478bd9Sstevel@tonic-gate 9377c478bd9Sstevel@tonic-gate /* 'H' */ 9387c478bd9Sstevel@tonic-gate 0x00, /* */ 9397c478bd9Sstevel@tonic-gate 0x00, /* */ 9407c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9417c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9427c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9437c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9447c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 9457c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9467c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9477c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9487c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9497c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9507c478bd9Sstevel@tonic-gate 0x00, /* */ 9517c478bd9Sstevel@tonic-gate 0x00, /* */ 9527c478bd9Sstevel@tonic-gate 9537c478bd9Sstevel@tonic-gate /* 'I' */ 9547c478bd9Sstevel@tonic-gate 0x00, /* */ 9557c478bd9Sstevel@tonic-gate 0x00, /* */ 9567c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 9577c478bd9Sstevel@tonic-gate 0x08, /* X */ 9587c478bd9Sstevel@tonic-gate 0x08, /* X */ 9597c478bd9Sstevel@tonic-gate 0x08, /* X */ 9607c478bd9Sstevel@tonic-gate 0x08, /* X */ 9617c478bd9Sstevel@tonic-gate 0x08, /* X */ 9627c478bd9Sstevel@tonic-gate 0x08, /* X */ 9637c478bd9Sstevel@tonic-gate 0x08, /* X */ 9647c478bd9Sstevel@tonic-gate 0x08, /* X */ 9657c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 9667c478bd9Sstevel@tonic-gate 0x00, /* */ 9677c478bd9Sstevel@tonic-gate 0x00, /* */ 9687c478bd9Sstevel@tonic-gate 9697c478bd9Sstevel@tonic-gate /* 'J' */ 9707c478bd9Sstevel@tonic-gate 0x00, /* */ 9717c478bd9Sstevel@tonic-gate 0x00, /* */ 9727c478bd9Sstevel@tonic-gate 0x0e, /* XXX */ 9737c478bd9Sstevel@tonic-gate 0x04, /* X */ 9747c478bd9Sstevel@tonic-gate 0x04, /* X */ 9757c478bd9Sstevel@tonic-gate 0x04, /* X */ 9767c478bd9Sstevel@tonic-gate 0x04, /* X */ 9777c478bd9Sstevel@tonic-gate 0x04, /* X */ 9787c478bd9Sstevel@tonic-gate 0x04, /* X */ 9797c478bd9Sstevel@tonic-gate 0x44, /* X X */ 9807c478bd9Sstevel@tonic-gate 0x44, /* X X */ 9817c478bd9Sstevel@tonic-gate 0x38, /* XXX */ 9827c478bd9Sstevel@tonic-gate 0x00, /* */ 9837c478bd9Sstevel@tonic-gate 0x00, /* */ 9847c478bd9Sstevel@tonic-gate 9857c478bd9Sstevel@tonic-gate /* 'K' */ 9867c478bd9Sstevel@tonic-gate 0x00, /* */ 9877c478bd9Sstevel@tonic-gate 0x00, /* */ 9887c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9897c478bd9Sstevel@tonic-gate 0x44, /* X X */ 9907c478bd9Sstevel@tonic-gate 0x48, /* X X */ 9917c478bd9Sstevel@tonic-gate 0x50, /* X X */ 9927c478bd9Sstevel@tonic-gate 0x60, /* XX */ 9937c478bd9Sstevel@tonic-gate 0x50, /* X X */ 9947c478bd9Sstevel@tonic-gate 0x48, /* X X */ 9957c478bd9Sstevel@tonic-gate 0x44, /* X X */ 9967c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9977c478bd9Sstevel@tonic-gate 0x42, /* X X */ 9987c478bd9Sstevel@tonic-gate 0x00, /* */ 9997c478bd9Sstevel@tonic-gate 0x00, /* */ 10007c478bd9Sstevel@tonic-gate 10017c478bd9Sstevel@tonic-gate /* 'L' */ 10027c478bd9Sstevel@tonic-gate 0x00, /* */ 10037c478bd9Sstevel@tonic-gate 0x00, /* */ 10047c478bd9Sstevel@tonic-gate 0x40, /* X */ 10057c478bd9Sstevel@tonic-gate 0x40, /* X */ 10067c478bd9Sstevel@tonic-gate 0x40, /* X */ 10077c478bd9Sstevel@tonic-gate 0x40, /* X */ 10087c478bd9Sstevel@tonic-gate 0x40, /* X */ 10097c478bd9Sstevel@tonic-gate 0x40, /* X */ 10107c478bd9Sstevel@tonic-gate 0x40, /* X */ 10117c478bd9Sstevel@tonic-gate 0x40, /* X */ 10127c478bd9Sstevel@tonic-gate 0x40, /* X */ 10137c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 10147c478bd9Sstevel@tonic-gate 0x00, /* */ 10157c478bd9Sstevel@tonic-gate 0x00, /* */ 10167c478bd9Sstevel@tonic-gate 10177c478bd9Sstevel@tonic-gate /* 'M' */ 10187c478bd9Sstevel@tonic-gate 0x00, /* */ 10197c478bd9Sstevel@tonic-gate 0x00, /* */ 10207c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10217c478bd9Sstevel@tonic-gate 0x66, /* XX XX */ 10227c478bd9Sstevel@tonic-gate 0x66, /* XX XX */ 10237c478bd9Sstevel@tonic-gate 0x5a, /* X XX X */ 10247c478bd9Sstevel@tonic-gate 0x5a, /* X XX X */ 10257c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10267c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10277c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10287c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10297c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10307c478bd9Sstevel@tonic-gate 0x00, /* */ 10317c478bd9Sstevel@tonic-gate 0x00, /* */ 10327c478bd9Sstevel@tonic-gate 10337c478bd9Sstevel@tonic-gate /* 'N' */ 10347c478bd9Sstevel@tonic-gate 0x00, /* */ 10357c478bd9Sstevel@tonic-gate 0x00, /* */ 10367c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10377c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10387c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 10397c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 10407c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 10417c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 10427c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 10437c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 10447c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10457c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10467c478bd9Sstevel@tonic-gate 0x00, /* */ 10477c478bd9Sstevel@tonic-gate 0x00, /* */ 10487c478bd9Sstevel@tonic-gate 10497c478bd9Sstevel@tonic-gate /* 'O' */ 10507c478bd9Sstevel@tonic-gate 0x00, /* */ 10517c478bd9Sstevel@tonic-gate 0x00, /* */ 10527c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 10537c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10547c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10557c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10567c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10577c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10587c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10597c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10607c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10617c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 10627c478bd9Sstevel@tonic-gate 0x00, /* */ 10637c478bd9Sstevel@tonic-gate 0x00, /* */ 10647c478bd9Sstevel@tonic-gate 10657c478bd9Sstevel@tonic-gate /* 'P' */ 10667c478bd9Sstevel@tonic-gate 0x00, /* */ 10677c478bd9Sstevel@tonic-gate 0x00, /* */ 10687c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 10697c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10707c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10717c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10727c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10737c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 10747c478bd9Sstevel@tonic-gate 0x40, /* X */ 10757c478bd9Sstevel@tonic-gate 0x40, /* X */ 10767c478bd9Sstevel@tonic-gate 0x40, /* X */ 10777c478bd9Sstevel@tonic-gate 0x40, /* X */ 10787c478bd9Sstevel@tonic-gate 0x00, /* */ 10797c478bd9Sstevel@tonic-gate 0x00, /* */ 10807c478bd9Sstevel@tonic-gate 10817c478bd9Sstevel@tonic-gate /* 'Q' */ 10827c478bd9Sstevel@tonic-gate 0x00, /* */ 10837c478bd9Sstevel@tonic-gate 0x00, /* */ 10847c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 10857c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10867c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10877c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10887c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10897c478bd9Sstevel@tonic-gate 0x42, /* X X */ 10907c478bd9Sstevel@tonic-gate 0x72, /* XXX X */ 10917c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 10927c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 10937c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 10947c478bd9Sstevel@tonic-gate 0x04, /* X */ 10957c478bd9Sstevel@tonic-gate 0x02, /* X */ 10967c478bd9Sstevel@tonic-gate 10977c478bd9Sstevel@tonic-gate /* 'R' */ 10987c478bd9Sstevel@tonic-gate 0x00, /* */ 10997c478bd9Sstevel@tonic-gate 0x00, /* */ 11007c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 11017c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11027c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11037c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11047c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11057c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 11067c478bd9Sstevel@tonic-gate 0x48, /* X X */ 11077c478bd9Sstevel@tonic-gate 0x44, /* X X */ 11087c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11097c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11107c478bd9Sstevel@tonic-gate 0x00, /* */ 11117c478bd9Sstevel@tonic-gate 0x00, /* */ 11127c478bd9Sstevel@tonic-gate 11137c478bd9Sstevel@tonic-gate /* 'S' */ 11147c478bd9Sstevel@tonic-gate 0x00, /* */ 11157c478bd9Sstevel@tonic-gate 0x00, /* */ 11167c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 11177c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11187c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11197c478bd9Sstevel@tonic-gate 0x40, /* X */ 11207c478bd9Sstevel@tonic-gate 0x30, /* XX */ 11217c478bd9Sstevel@tonic-gate 0x0c, /* XX */ 11227c478bd9Sstevel@tonic-gate 0x02, /* X */ 11237c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11247c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11257c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 11267c478bd9Sstevel@tonic-gate 0x00, /* */ 11277c478bd9Sstevel@tonic-gate 0x00, /* */ 11287c478bd9Sstevel@tonic-gate 11297c478bd9Sstevel@tonic-gate /* 'T' */ 11307c478bd9Sstevel@tonic-gate 0x00, /* */ 11317c478bd9Sstevel@tonic-gate 0x00, /* */ 11327c478bd9Sstevel@tonic-gate 0xfe, /* XXXXXXX */ 11337c478bd9Sstevel@tonic-gate 0x10, /* X */ 11347c478bd9Sstevel@tonic-gate 0x10, /* X */ 11357c478bd9Sstevel@tonic-gate 0x10, /* X */ 11367c478bd9Sstevel@tonic-gate 0x10, /* X */ 11377c478bd9Sstevel@tonic-gate 0x10, /* X */ 11387c478bd9Sstevel@tonic-gate 0x10, /* X */ 11397c478bd9Sstevel@tonic-gate 0x10, /* X */ 11407c478bd9Sstevel@tonic-gate 0x10, /* X */ 11417c478bd9Sstevel@tonic-gate 0x10, /* X */ 11427c478bd9Sstevel@tonic-gate 0x00, /* */ 11437c478bd9Sstevel@tonic-gate 0x00, /* */ 11447c478bd9Sstevel@tonic-gate 11457c478bd9Sstevel@tonic-gate /* 'U' */ 11467c478bd9Sstevel@tonic-gate 0x00, /* */ 11477c478bd9Sstevel@tonic-gate 0x00, /* */ 11487c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11497c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11507c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11517c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11527c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11537c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11547c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11557c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11567c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11577c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 11587c478bd9Sstevel@tonic-gate 0x00, /* */ 11597c478bd9Sstevel@tonic-gate 0x00, /* */ 11607c478bd9Sstevel@tonic-gate 11617c478bd9Sstevel@tonic-gate /* 'V' */ 11627c478bd9Sstevel@tonic-gate 0x00, /* */ 11637c478bd9Sstevel@tonic-gate 0x00, /* */ 11647c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11657c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11667c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11677c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11687c478bd9Sstevel@tonic-gate 0x24, /* X X */ 11697c478bd9Sstevel@tonic-gate 0x24, /* X X */ 11707c478bd9Sstevel@tonic-gate 0x24, /* X X */ 11717c478bd9Sstevel@tonic-gate 0x18, /* XX */ 11727c478bd9Sstevel@tonic-gate 0x18, /* XX */ 11737c478bd9Sstevel@tonic-gate 0x18, /* XX */ 11747c478bd9Sstevel@tonic-gate 0x00, /* */ 11757c478bd9Sstevel@tonic-gate 0x00, /* */ 11767c478bd9Sstevel@tonic-gate 11777c478bd9Sstevel@tonic-gate /* 'W' */ 11787c478bd9Sstevel@tonic-gate 0x00, /* */ 11797c478bd9Sstevel@tonic-gate 0x00, /* */ 11807c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11817c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11827c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11837c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11847c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11857c478bd9Sstevel@tonic-gate 0x5a, /* X XX X */ 11867c478bd9Sstevel@tonic-gate 0x5a, /* X XX X */ 11877c478bd9Sstevel@tonic-gate 0x66, /* XX XX */ 11887c478bd9Sstevel@tonic-gate 0x66, /* XX XX */ 11897c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11907c478bd9Sstevel@tonic-gate 0x00, /* */ 11917c478bd9Sstevel@tonic-gate 0x00, /* */ 11927c478bd9Sstevel@tonic-gate 11937c478bd9Sstevel@tonic-gate /* 'X' */ 11947c478bd9Sstevel@tonic-gate 0x00, /* */ 11957c478bd9Sstevel@tonic-gate 0x00, /* */ 11967c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11977c478bd9Sstevel@tonic-gate 0x42, /* X X */ 11987c478bd9Sstevel@tonic-gate 0x24, /* X X */ 11997c478bd9Sstevel@tonic-gate 0x24, /* X X */ 12007c478bd9Sstevel@tonic-gate 0x18, /* XX */ 12017c478bd9Sstevel@tonic-gate 0x18, /* XX */ 12027c478bd9Sstevel@tonic-gate 0x24, /* X X */ 12037c478bd9Sstevel@tonic-gate 0x24, /* X X */ 12047c478bd9Sstevel@tonic-gate 0x42, /* X X */ 12057c478bd9Sstevel@tonic-gate 0x42, /* X X */ 12067c478bd9Sstevel@tonic-gate 0x00, /* */ 12077c478bd9Sstevel@tonic-gate 0x00, /* */ 12087c478bd9Sstevel@tonic-gate 12097c478bd9Sstevel@tonic-gate /* 'Y' */ 12107c478bd9Sstevel@tonic-gate 0x00, /* */ 12117c478bd9Sstevel@tonic-gate 0x00, /* */ 12127c478bd9Sstevel@tonic-gate 0x44, /* X X */ 12137c478bd9Sstevel@tonic-gate 0x44, /* X X */ 12147c478bd9Sstevel@tonic-gate 0x44, /* X X */ 12157c478bd9Sstevel@tonic-gate 0x28, /* X X */ 12167c478bd9Sstevel@tonic-gate 0x28, /* X X */ 12177c478bd9Sstevel@tonic-gate 0x10, /* X */ 12187c478bd9Sstevel@tonic-gate 0x10, /* X */ 12197c478bd9Sstevel@tonic-gate 0x10, /* X */ 12207c478bd9Sstevel@tonic-gate 0x10, /* X */ 12217c478bd9Sstevel@tonic-gate 0x10, /* X */ 12227c478bd9Sstevel@tonic-gate 0x00, /* */ 12237c478bd9Sstevel@tonic-gate 0x00, /* */ 12247c478bd9Sstevel@tonic-gate 12257c478bd9Sstevel@tonic-gate /* 'Z' */ 12267c478bd9Sstevel@tonic-gate 0x00, /* */ 12277c478bd9Sstevel@tonic-gate 0x00, /* */ 12287c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 12297c478bd9Sstevel@tonic-gate 0x02, /* X */ 12307c478bd9Sstevel@tonic-gate 0x04, /* X */ 12317c478bd9Sstevel@tonic-gate 0x08, /* X */ 12327c478bd9Sstevel@tonic-gate 0x08, /* X */ 12337c478bd9Sstevel@tonic-gate 0x10, /* X */ 12347c478bd9Sstevel@tonic-gate 0x20, /* X */ 12357c478bd9Sstevel@tonic-gate 0x20, /* X */ 12367c478bd9Sstevel@tonic-gate 0x40, /* X */ 12377c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 12387c478bd9Sstevel@tonic-gate 0x00, /* */ 12397c478bd9Sstevel@tonic-gate 0x00, /* */ 12407c478bd9Sstevel@tonic-gate 12417c478bd9Sstevel@tonic-gate /* '[' */ 12427c478bd9Sstevel@tonic-gate 0x00, /* */ 12437c478bd9Sstevel@tonic-gate 0x1e, /* XXXX */ 12447c478bd9Sstevel@tonic-gate 0x10, /* X */ 12457c478bd9Sstevel@tonic-gate 0x10, /* X */ 12467c478bd9Sstevel@tonic-gate 0x10, /* X */ 12477c478bd9Sstevel@tonic-gate 0x10, /* X */ 12487c478bd9Sstevel@tonic-gate 0x10, /* X */ 12497c478bd9Sstevel@tonic-gate 0x10, /* X */ 12507c478bd9Sstevel@tonic-gate 0x10, /* X */ 12517c478bd9Sstevel@tonic-gate 0x10, /* X */ 12527c478bd9Sstevel@tonic-gate 0x10, /* X */ 12537c478bd9Sstevel@tonic-gate 0x10, /* X */ 12547c478bd9Sstevel@tonic-gate 0x10, /* X */ 12557c478bd9Sstevel@tonic-gate 0x1e, /* XXXX */ 12567c478bd9Sstevel@tonic-gate 12577c478bd9Sstevel@tonic-gate /* '\' */ 12587c478bd9Sstevel@tonic-gate 0x00, /* */ 12597c478bd9Sstevel@tonic-gate 0x40, /* X */ 12607c478bd9Sstevel@tonic-gate 0x40, /* X */ 12617c478bd9Sstevel@tonic-gate 0x20, /* X */ 12627c478bd9Sstevel@tonic-gate 0x20, /* X */ 12637c478bd9Sstevel@tonic-gate 0x10, /* X */ 12647c478bd9Sstevel@tonic-gate 0x10, /* X */ 12657c478bd9Sstevel@tonic-gate 0x10, /* X */ 12667c478bd9Sstevel@tonic-gate 0x08, /* X */ 12677c478bd9Sstevel@tonic-gate 0x08, /* X */ 12687c478bd9Sstevel@tonic-gate 0x04, /* X */ 12697c478bd9Sstevel@tonic-gate 0x04, /* X */ 12707c478bd9Sstevel@tonic-gate 0x02, /* X */ 12717c478bd9Sstevel@tonic-gate 0x02, /* X */ 12727c478bd9Sstevel@tonic-gate 12737c478bd9Sstevel@tonic-gate /* ']' */ 12747c478bd9Sstevel@tonic-gate 0x00, /* */ 12757c478bd9Sstevel@tonic-gate 0x78, /* XXXX */ 12767c478bd9Sstevel@tonic-gate 0x08, /* X */ 12777c478bd9Sstevel@tonic-gate 0x08, /* X */ 12787c478bd9Sstevel@tonic-gate 0x08, /* X */ 12797c478bd9Sstevel@tonic-gate 0x08, /* X */ 12807c478bd9Sstevel@tonic-gate 0x08, /* X */ 12817c478bd9Sstevel@tonic-gate 0x08, /* X */ 12827c478bd9Sstevel@tonic-gate 0x08, /* X */ 12837c478bd9Sstevel@tonic-gate 0x08, /* X */ 12847c478bd9Sstevel@tonic-gate 0x08, /* X */ 12857c478bd9Sstevel@tonic-gate 0x08, /* X */ 12867c478bd9Sstevel@tonic-gate 0x08, /* X */ 12877c478bd9Sstevel@tonic-gate 0x78, /* XXXX */ 12887c478bd9Sstevel@tonic-gate 12897c478bd9Sstevel@tonic-gate /* '^' */ 12907c478bd9Sstevel@tonic-gate 0x00, /* */ 12917c478bd9Sstevel@tonic-gate 0x18, /* XX */ 12927c478bd9Sstevel@tonic-gate 0x24, /* X X */ 12937c478bd9Sstevel@tonic-gate 0x42, /* X X */ 12947c478bd9Sstevel@tonic-gate 0x00, /* */ 12957c478bd9Sstevel@tonic-gate 0x00, /* */ 12967c478bd9Sstevel@tonic-gate 0x00, /* */ 12977c478bd9Sstevel@tonic-gate 0x00, /* */ 12987c478bd9Sstevel@tonic-gate 0x00, /* */ 12997c478bd9Sstevel@tonic-gate 0x00, /* */ 13007c478bd9Sstevel@tonic-gate 0x00, /* */ 13017c478bd9Sstevel@tonic-gate 0x00, /* */ 13027c478bd9Sstevel@tonic-gate 0x00, /* */ 13037c478bd9Sstevel@tonic-gate 0x00, /* */ 13047c478bd9Sstevel@tonic-gate 13057c478bd9Sstevel@tonic-gate /* '_' */ 13067c478bd9Sstevel@tonic-gate 0x00, /* */ 13077c478bd9Sstevel@tonic-gate 0x00, /* */ 13087c478bd9Sstevel@tonic-gate 0x00, /* */ 13097c478bd9Sstevel@tonic-gate 0x00, /* */ 13107c478bd9Sstevel@tonic-gate 0x00, /* */ 13117c478bd9Sstevel@tonic-gate 0x00, /* */ 13127c478bd9Sstevel@tonic-gate 0x00, /* */ 13137c478bd9Sstevel@tonic-gate 0x00, /* */ 13147c478bd9Sstevel@tonic-gate 0x00, /* */ 13157c478bd9Sstevel@tonic-gate 0x00, /* */ 13167c478bd9Sstevel@tonic-gate 0x00, /* */ 13177c478bd9Sstevel@tonic-gate 0x00, /* */ 13187c478bd9Sstevel@tonic-gate 0x00, /* */ 13197c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 13207c478bd9Sstevel@tonic-gate 13217c478bd9Sstevel@tonic-gate /* '`' */ 13227c478bd9Sstevel@tonic-gate 0x00, /* */ 13237c478bd9Sstevel@tonic-gate 0x0c, /* XX */ 13247c478bd9Sstevel@tonic-gate 0x08, /* X */ 13257c478bd9Sstevel@tonic-gate 0x08, /* X */ 13267c478bd9Sstevel@tonic-gate 0x04, /* X */ 13277c478bd9Sstevel@tonic-gate 0x00, /* */ 13287c478bd9Sstevel@tonic-gate 0x00, /* */ 13297c478bd9Sstevel@tonic-gate 0x00, /* */ 13307c478bd9Sstevel@tonic-gate 0x00, /* */ 13317c478bd9Sstevel@tonic-gate 0x00, /* */ 13327c478bd9Sstevel@tonic-gate 0x00, /* */ 13337c478bd9Sstevel@tonic-gate 0x00, /* */ 13347c478bd9Sstevel@tonic-gate 0x00, /* */ 13357c478bd9Sstevel@tonic-gate 0x00, /* */ 13367c478bd9Sstevel@tonic-gate 13377c478bd9Sstevel@tonic-gate /* 'a' */ 13387c478bd9Sstevel@tonic-gate 0x00, /* */ 13397c478bd9Sstevel@tonic-gate 0x00, /* */ 13407c478bd9Sstevel@tonic-gate 0x00, /* */ 13417c478bd9Sstevel@tonic-gate 0x00, /* */ 13427c478bd9Sstevel@tonic-gate 0x00, /* */ 13437c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 13447c478bd9Sstevel@tonic-gate 0x42, /* X X */ 13457c478bd9Sstevel@tonic-gate 0x0e, /* XXX */ 13467c478bd9Sstevel@tonic-gate 0x32, /* XX X */ 13477c478bd9Sstevel@tonic-gate 0x42, /* X X */ 13487c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 13497c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 13507c478bd9Sstevel@tonic-gate 0x00, /* */ 13517c478bd9Sstevel@tonic-gate 0x00, /* */ 13527c478bd9Sstevel@tonic-gate 13537c478bd9Sstevel@tonic-gate /* 'b' */ 13547c478bd9Sstevel@tonic-gate 0x00, /* */ 13557c478bd9Sstevel@tonic-gate 0x00, /* */ 13567c478bd9Sstevel@tonic-gate 0x40, /* X */ 13577c478bd9Sstevel@tonic-gate 0x40, /* X */ 13587c478bd9Sstevel@tonic-gate 0x40, /* X */ 13597c478bd9Sstevel@tonic-gate 0x5c, /* X XXX */ 13607c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 13617c478bd9Sstevel@tonic-gate 0x42, /* X X */ 13627c478bd9Sstevel@tonic-gate 0x42, /* X X */ 13637c478bd9Sstevel@tonic-gate 0x42, /* X X */ 13647c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 13657c478bd9Sstevel@tonic-gate 0x5c, /* X XXX */ 13667c478bd9Sstevel@tonic-gate 0x00, /* */ 13677c478bd9Sstevel@tonic-gate 0x00, /* */ 13687c478bd9Sstevel@tonic-gate 13697c478bd9Sstevel@tonic-gate /* 'c' */ 13707c478bd9Sstevel@tonic-gate 0x00, /* */ 13717c478bd9Sstevel@tonic-gate 0x00, /* */ 13727c478bd9Sstevel@tonic-gate 0x00, /* */ 13737c478bd9Sstevel@tonic-gate 0x00, /* */ 13747c478bd9Sstevel@tonic-gate 0x00, /* */ 13757c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 13767c478bd9Sstevel@tonic-gate 0x42, /* X X */ 13777c478bd9Sstevel@tonic-gate 0x40, /* X */ 13787c478bd9Sstevel@tonic-gate 0x40, /* X */ 13797c478bd9Sstevel@tonic-gate 0x40, /* X */ 13807c478bd9Sstevel@tonic-gate 0x42, /* X X */ 13817c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 13827c478bd9Sstevel@tonic-gate 0x00, /* */ 13837c478bd9Sstevel@tonic-gate 0x00, /* */ 13847c478bd9Sstevel@tonic-gate 13857c478bd9Sstevel@tonic-gate /* 'd' */ 13867c478bd9Sstevel@tonic-gate 0x00, /* */ 13877c478bd9Sstevel@tonic-gate 0x00, /* */ 13887c478bd9Sstevel@tonic-gate 0x02, /* X */ 13897c478bd9Sstevel@tonic-gate 0x02, /* X */ 13907c478bd9Sstevel@tonic-gate 0x02, /* X */ 13917c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 13927c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 13937c478bd9Sstevel@tonic-gate 0x42, /* X X */ 13947c478bd9Sstevel@tonic-gate 0x42, /* X X */ 13957c478bd9Sstevel@tonic-gate 0x42, /* X X */ 13967c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 13977c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 13987c478bd9Sstevel@tonic-gate 0x00, /* */ 13997c478bd9Sstevel@tonic-gate 0x00, /* */ 14007c478bd9Sstevel@tonic-gate 14017c478bd9Sstevel@tonic-gate /* 'e' */ 14027c478bd9Sstevel@tonic-gate 0x00, /* */ 14037c478bd9Sstevel@tonic-gate 0x00, /* */ 14047c478bd9Sstevel@tonic-gate 0x00, /* */ 14057c478bd9Sstevel@tonic-gate 0x00, /* */ 14067c478bd9Sstevel@tonic-gate 0x00, /* */ 14077c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 14087c478bd9Sstevel@tonic-gate 0x42, /* X X */ 14097c478bd9Sstevel@tonic-gate 0x42, /* X X */ 14107c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 14117c478bd9Sstevel@tonic-gate 0x40, /* X */ 14127c478bd9Sstevel@tonic-gate 0x42, /* X X */ 14137c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 14147c478bd9Sstevel@tonic-gate 0x00, /* */ 14157c478bd9Sstevel@tonic-gate 0x00, /* */ 14167c478bd9Sstevel@tonic-gate 14177c478bd9Sstevel@tonic-gate /* 'f' */ 14187c478bd9Sstevel@tonic-gate 0x00, /* */ 14197c478bd9Sstevel@tonic-gate 0x00, /* */ 14207c478bd9Sstevel@tonic-gate 0x0c, /* XX */ 14217c478bd9Sstevel@tonic-gate 0x12, /* X X */ 14227c478bd9Sstevel@tonic-gate 0x10, /* X */ 14237c478bd9Sstevel@tonic-gate 0x10, /* X */ 14247c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 14257c478bd9Sstevel@tonic-gate 0x10, /* X */ 14267c478bd9Sstevel@tonic-gate 0x10, /* X */ 14277c478bd9Sstevel@tonic-gate 0x10, /* X */ 14287c478bd9Sstevel@tonic-gate 0x10, /* X */ 14297c478bd9Sstevel@tonic-gate 0x10, /* X */ 14307c478bd9Sstevel@tonic-gate 0x00, /* */ 14317c478bd9Sstevel@tonic-gate 0x00, /* */ 14327c478bd9Sstevel@tonic-gate 14337c478bd9Sstevel@tonic-gate /* 'g' */ 14347c478bd9Sstevel@tonic-gate 0x00, /* */ 14357c478bd9Sstevel@tonic-gate 0x00, /* */ 14367c478bd9Sstevel@tonic-gate 0x00, /* */ 14377c478bd9Sstevel@tonic-gate 0x00, /* */ 14387c478bd9Sstevel@tonic-gate 0x00, /* */ 14397c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 14407c478bd9Sstevel@tonic-gate 0x44, /* X X */ 14417c478bd9Sstevel@tonic-gate 0x44, /* X X */ 14427c478bd9Sstevel@tonic-gate 0x44, /* X X */ 14437c478bd9Sstevel@tonic-gate 0x38, /* XXX */ 14447c478bd9Sstevel@tonic-gate 0x20, /* X */ 14457c478bd9Sstevel@tonic-gate 0x5c, /* X XXX */ 14467c478bd9Sstevel@tonic-gate 0x42, /* X X */ 14477c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 14487c478bd9Sstevel@tonic-gate 14497c478bd9Sstevel@tonic-gate /* 'h' */ 14507c478bd9Sstevel@tonic-gate 0x00, /* */ 14517c478bd9Sstevel@tonic-gate 0x00, /* */ 14527c478bd9Sstevel@tonic-gate 0x40, /* X */ 14537c478bd9Sstevel@tonic-gate 0x40, /* X */ 14547c478bd9Sstevel@tonic-gate 0x40, /* X */ 14557c478bd9Sstevel@tonic-gate 0x5c, /* X XXX */ 14567c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 14577c478bd9Sstevel@tonic-gate 0x42, /* X X */ 14587c478bd9Sstevel@tonic-gate 0x42, /* X X */ 14597c478bd9Sstevel@tonic-gate 0x42, /* X X */ 14607c478bd9Sstevel@tonic-gate 0x42, /* X X */ 14617c478bd9Sstevel@tonic-gate 0x42, /* X X */ 14627c478bd9Sstevel@tonic-gate 0x00, /* */ 14637c478bd9Sstevel@tonic-gate 0x00, /* */ 14647c478bd9Sstevel@tonic-gate 14657c478bd9Sstevel@tonic-gate /* 'i' */ 14667c478bd9Sstevel@tonic-gate 0x00, /* */ 14677c478bd9Sstevel@tonic-gate 0x00, /* */ 14687c478bd9Sstevel@tonic-gate 0x08, /* X */ 14697c478bd9Sstevel@tonic-gate 0x08, /* X */ 14707c478bd9Sstevel@tonic-gate 0x00, /* */ 14717c478bd9Sstevel@tonic-gate 0x18, /* XX */ 14727c478bd9Sstevel@tonic-gate 0x08, /* X */ 14737c478bd9Sstevel@tonic-gate 0x08, /* X */ 14747c478bd9Sstevel@tonic-gate 0x08, /* X */ 14757c478bd9Sstevel@tonic-gate 0x08, /* X */ 14767c478bd9Sstevel@tonic-gate 0x08, /* X */ 14777c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 14787c478bd9Sstevel@tonic-gate 0x00, /* */ 14797c478bd9Sstevel@tonic-gate 0x00, /* */ 14807c478bd9Sstevel@tonic-gate 14817c478bd9Sstevel@tonic-gate /* 'j' */ 14827c478bd9Sstevel@tonic-gate 0x00, /* */ 14837c478bd9Sstevel@tonic-gate 0x00, /* */ 14847c478bd9Sstevel@tonic-gate 0x04, /* X */ 14857c478bd9Sstevel@tonic-gate 0x04, /* X */ 14867c478bd9Sstevel@tonic-gate 0x00, /* */ 14877c478bd9Sstevel@tonic-gate 0x0c, /* XX */ 14887c478bd9Sstevel@tonic-gate 0x04, /* X */ 14897c478bd9Sstevel@tonic-gate 0x04, /* X */ 14907c478bd9Sstevel@tonic-gate 0x04, /* X */ 14917c478bd9Sstevel@tonic-gate 0x04, /* X */ 14927c478bd9Sstevel@tonic-gate 0x04, /* X */ 14937c478bd9Sstevel@tonic-gate 0x44, /* X X */ 14947c478bd9Sstevel@tonic-gate 0x44, /* X X */ 14957c478bd9Sstevel@tonic-gate 0x38, /* XXX */ 14967c478bd9Sstevel@tonic-gate 14977c478bd9Sstevel@tonic-gate /* 'k' */ 14987c478bd9Sstevel@tonic-gate 0x00, /* */ 14997c478bd9Sstevel@tonic-gate 0x00, /* */ 15007c478bd9Sstevel@tonic-gate 0x40, /* X */ 15017c478bd9Sstevel@tonic-gate 0x40, /* X */ 15027c478bd9Sstevel@tonic-gate 0x40, /* X */ 15037c478bd9Sstevel@tonic-gate 0x44, /* X X */ 15047c478bd9Sstevel@tonic-gate 0x48, /* X X */ 15057c478bd9Sstevel@tonic-gate 0x50, /* X X */ 15067c478bd9Sstevel@tonic-gate 0x70, /* XXX */ 15077c478bd9Sstevel@tonic-gate 0x48, /* X X */ 15087c478bd9Sstevel@tonic-gate 0x44, /* X X */ 15097c478bd9Sstevel@tonic-gate 0x42, /* X X */ 15107c478bd9Sstevel@tonic-gate 0x00, /* */ 15117c478bd9Sstevel@tonic-gate 0x00, /* */ 15127c478bd9Sstevel@tonic-gate 15137c478bd9Sstevel@tonic-gate /* 'l' */ 15147c478bd9Sstevel@tonic-gate 0x00, /* */ 15157c478bd9Sstevel@tonic-gate 0x00, /* */ 15167c478bd9Sstevel@tonic-gate 0x18, /* XX */ 15177c478bd9Sstevel@tonic-gate 0x08, /* X */ 15187c478bd9Sstevel@tonic-gate 0x08, /* X */ 15197c478bd9Sstevel@tonic-gate 0x08, /* X */ 15207c478bd9Sstevel@tonic-gate 0x08, /* X */ 15217c478bd9Sstevel@tonic-gate 0x08, /* X */ 15227c478bd9Sstevel@tonic-gate 0x08, /* X */ 15237c478bd9Sstevel@tonic-gate 0x08, /* X */ 15247c478bd9Sstevel@tonic-gate 0x08, /* X */ 15257c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 15267c478bd9Sstevel@tonic-gate 0x00, /* */ 15277c478bd9Sstevel@tonic-gate 0x00, /* */ 15287c478bd9Sstevel@tonic-gate 15297c478bd9Sstevel@tonic-gate /* 'm' */ 15307c478bd9Sstevel@tonic-gate 0x00, /* */ 15317c478bd9Sstevel@tonic-gate 0x00, /* */ 15327c478bd9Sstevel@tonic-gate 0x00, /* */ 15337c478bd9Sstevel@tonic-gate 0x00, /* */ 15347c478bd9Sstevel@tonic-gate 0x00, /* */ 15357c478bd9Sstevel@tonic-gate 0x68, /* XX X */ 15367c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 15377c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 15387c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 15397c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 15407c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 15417c478bd9Sstevel@tonic-gate 0x44, /* X X */ 15427c478bd9Sstevel@tonic-gate 0x00, /* */ 15437c478bd9Sstevel@tonic-gate 0x00, /* */ 15447c478bd9Sstevel@tonic-gate 15457c478bd9Sstevel@tonic-gate /* 'n' */ 15467c478bd9Sstevel@tonic-gate 0x00, /* */ 15477c478bd9Sstevel@tonic-gate 0x00, /* */ 15487c478bd9Sstevel@tonic-gate 0x00, /* */ 15497c478bd9Sstevel@tonic-gate 0x00, /* */ 15507c478bd9Sstevel@tonic-gate 0x00, /* */ 15517c478bd9Sstevel@tonic-gate 0x5c, /* X XXX */ 15527c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 15537c478bd9Sstevel@tonic-gate 0x42, /* X X */ 15547c478bd9Sstevel@tonic-gate 0x42, /* X X */ 15557c478bd9Sstevel@tonic-gate 0x42, /* X X */ 15567c478bd9Sstevel@tonic-gate 0x42, /* X X */ 15577c478bd9Sstevel@tonic-gate 0x42, /* X X */ 15587c478bd9Sstevel@tonic-gate 0x00, /* */ 15597c478bd9Sstevel@tonic-gate 0x00, /* */ 15607c478bd9Sstevel@tonic-gate 15617c478bd9Sstevel@tonic-gate /* 'o' */ 15627c478bd9Sstevel@tonic-gate 0x00, /* */ 15637c478bd9Sstevel@tonic-gate 0x00, /* */ 15647c478bd9Sstevel@tonic-gate 0x00, /* */ 15657c478bd9Sstevel@tonic-gate 0x00, /* */ 15667c478bd9Sstevel@tonic-gate 0x00, /* */ 15677c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 15687c478bd9Sstevel@tonic-gate 0x42, /* X X */ 15697c478bd9Sstevel@tonic-gate 0x42, /* X X */ 15707c478bd9Sstevel@tonic-gate 0x42, /* X X */ 15717c478bd9Sstevel@tonic-gate 0x42, /* X X */ 15727c478bd9Sstevel@tonic-gate 0x42, /* X X */ 15737c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 15747c478bd9Sstevel@tonic-gate 0x00, /* */ 15757c478bd9Sstevel@tonic-gate 0x00, /* */ 15767c478bd9Sstevel@tonic-gate 15777c478bd9Sstevel@tonic-gate /* 'p' */ 15787c478bd9Sstevel@tonic-gate 0x00, /* */ 15797c478bd9Sstevel@tonic-gate 0x00, /* */ 15807c478bd9Sstevel@tonic-gate 0x00, /* */ 15817c478bd9Sstevel@tonic-gate 0x00, /* */ 15827c478bd9Sstevel@tonic-gate 0x00, /* */ 15837c478bd9Sstevel@tonic-gate 0x5c, /* X XXX */ 15847c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 15857c478bd9Sstevel@tonic-gate 0x42, /* X X */ 15867c478bd9Sstevel@tonic-gate 0x42, /* X X */ 15877c478bd9Sstevel@tonic-gate 0x42, /* X X */ 15887c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 15897c478bd9Sstevel@tonic-gate 0x5c, /* X XXX */ 15907c478bd9Sstevel@tonic-gate 0x40, /* X */ 15917c478bd9Sstevel@tonic-gate 0x40, /* X */ 15927c478bd9Sstevel@tonic-gate 15937c478bd9Sstevel@tonic-gate /* 'q' */ 15947c478bd9Sstevel@tonic-gate 0x00, /* */ 15957c478bd9Sstevel@tonic-gate 0x00, /* */ 15967c478bd9Sstevel@tonic-gate 0x00, /* */ 15977c478bd9Sstevel@tonic-gate 0x00, /* */ 15987c478bd9Sstevel@tonic-gate 0x00, /* */ 15997c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 16007c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 16017c478bd9Sstevel@tonic-gate 0x42, /* X X */ 16027c478bd9Sstevel@tonic-gate 0x42, /* X X */ 16037c478bd9Sstevel@tonic-gate 0x42, /* X X */ 16047c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 16057c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 16067c478bd9Sstevel@tonic-gate 0x02, /* X */ 16077c478bd9Sstevel@tonic-gate 0x02, /* X */ 16087c478bd9Sstevel@tonic-gate 16097c478bd9Sstevel@tonic-gate /* 'r' */ 16107c478bd9Sstevel@tonic-gate 0x00, /* */ 16117c478bd9Sstevel@tonic-gate 0x00, /* */ 16127c478bd9Sstevel@tonic-gate 0x00, /* */ 16137c478bd9Sstevel@tonic-gate 0x00, /* */ 16147c478bd9Sstevel@tonic-gate 0x00, /* */ 16157c478bd9Sstevel@tonic-gate 0x5c, /* X XXX */ 16167c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 16177c478bd9Sstevel@tonic-gate 0x42, /* X X */ 16187c478bd9Sstevel@tonic-gate 0x40, /* X */ 16197c478bd9Sstevel@tonic-gate 0x40, /* X */ 16207c478bd9Sstevel@tonic-gate 0x40, /* X */ 16217c478bd9Sstevel@tonic-gate 0x40, /* X */ 16227c478bd9Sstevel@tonic-gate 0x00, /* */ 16237c478bd9Sstevel@tonic-gate 0x00, /* */ 16247c478bd9Sstevel@tonic-gate 16257c478bd9Sstevel@tonic-gate /* 's' */ 16267c478bd9Sstevel@tonic-gate 0x00, /* */ 16277c478bd9Sstevel@tonic-gate 0x00, /* */ 16287c478bd9Sstevel@tonic-gate 0x00, /* */ 16297c478bd9Sstevel@tonic-gate 0x00, /* */ 16307c478bd9Sstevel@tonic-gate 0x00, /* */ 16317c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 16327c478bd9Sstevel@tonic-gate 0x42, /* X X */ 16337c478bd9Sstevel@tonic-gate 0x20, /* X */ 16347c478bd9Sstevel@tonic-gate 0x18, /* XX */ 16357c478bd9Sstevel@tonic-gate 0x04, /* X */ 16367c478bd9Sstevel@tonic-gate 0x42, /* X X */ 16377c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 16387c478bd9Sstevel@tonic-gate 0x00, /* */ 16397c478bd9Sstevel@tonic-gate 0x00, /* */ 16407c478bd9Sstevel@tonic-gate 16417c478bd9Sstevel@tonic-gate /* 't' */ 16427c478bd9Sstevel@tonic-gate 0x00, /* */ 16437c478bd9Sstevel@tonic-gate 0x00, /* */ 16447c478bd9Sstevel@tonic-gate 0x10, /* X */ 16457c478bd9Sstevel@tonic-gate 0x10, /* X */ 16467c478bd9Sstevel@tonic-gate 0x10, /* X */ 16477c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 16487c478bd9Sstevel@tonic-gate 0x10, /* X */ 16497c478bd9Sstevel@tonic-gate 0x10, /* X */ 16507c478bd9Sstevel@tonic-gate 0x10, /* X */ 16517c478bd9Sstevel@tonic-gate 0x10, /* X */ 16527c478bd9Sstevel@tonic-gate 0x12, /* X X */ 16537c478bd9Sstevel@tonic-gate 0x0c, /* XX */ 16547c478bd9Sstevel@tonic-gate 0x00, /* */ 16557c478bd9Sstevel@tonic-gate 0x00, /* */ 16567c478bd9Sstevel@tonic-gate 16577c478bd9Sstevel@tonic-gate /* 'u' */ 16587c478bd9Sstevel@tonic-gate 0x00, /* */ 16597c478bd9Sstevel@tonic-gate 0x00, /* */ 16607c478bd9Sstevel@tonic-gate 0x00, /* */ 16617c478bd9Sstevel@tonic-gate 0x00, /* */ 16627c478bd9Sstevel@tonic-gate 0x00, /* */ 16637c478bd9Sstevel@tonic-gate 0x42, /* X X */ 16647c478bd9Sstevel@tonic-gate 0x42, /* X X */ 16657c478bd9Sstevel@tonic-gate 0x42, /* X X */ 16667c478bd9Sstevel@tonic-gate 0x42, /* X X */ 16677c478bd9Sstevel@tonic-gate 0x42, /* X X */ 16687c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 16697c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 16707c478bd9Sstevel@tonic-gate 0x00, /* */ 16717c478bd9Sstevel@tonic-gate 0x00, /* */ 16727c478bd9Sstevel@tonic-gate 16737c478bd9Sstevel@tonic-gate /* 'v' */ 16747c478bd9Sstevel@tonic-gate 0x00, /* */ 16757c478bd9Sstevel@tonic-gate 0x00, /* */ 16767c478bd9Sstevel@tonic-gate 0x00, /* */ 16777c478bd9Sstevel@tonic-gate 0x00, /* */ 16787c478bd9Sstevel@tonic-gate 0x00, /* */ 16797c478bd9Sstevel@tonic-gate 0x44, /* X X */ 16807c478bd9Sstevel@tonic-gate 0x44, /* X X */ 16817c478bd9Sstevel@tonic-gate 0x44, /* X X */ 16827c478bd9Sstevel@tonic-gate 0x28, /* X X */ 16837c478bd9Sstevel@tonic-gate 0x28, /* X X */ 16847c478bd9Sstevel@tonic-gate 0x10, /* X */ 16857c478bd9Sstevel@tonic-gate 0x10, /* X */ 16867c478bd9Sstevel@tonic-gate 0x00, /* */ 16877c478bd9Sstevel@tonic-gate 0x00, /* */ 16887c478bd9Sstevel@tonic-gate 16897c478bd9Sstevel@tonic-gate /* 'w' */ 16907c478bd9Sstevel@tonic-gate 0x00, /* */ 16917c478bd9Sstevel@tonic-gate 0x00, /* */ 16927c478bd9Sstevel@tonic-gate 0x00, /* */ 16937c478bd9Sstevel@tonic-gate 0x00, /* */ 16947c478bd9Sstevel@tonic-gate 0x00, /* */ 16957c478bd9Sstevel@tonic-gate 0x44, /* X X */ 16967c478bd9Sstevel@tonic-gate 0x44, /* X X */ 16977c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 16987c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 16997c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 17007c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 17017c478bd9Sstevel@tonic-gate 0x28, /* X X */ 17027c478bd9Sstevel@tonic-gate 0x00, /* */ 17037c478bd9Sstevel@tonic-gate 0x00, /* */ 17047c478bd9Sstevel@tonic-gate 17057c478bd9Sstevel@tonic-gate /* 'x' */ 17067c478bd9Sstevel@tonic-gate 0x00, /* */ 17077c478bd9Sstevel@tonic-gate 0x00, /* */ 17087c478bd9Sstevel@tonic-gate 0x00, /* */ 17097c478bd9Sstevel@tonic-gate 0x00, /* */ 17107c478bd9Sstevel@tonic-gate 0x00, /* */ 17117c478bd9Sstevel@tonic-gate 0x42, /* X X */ 17127c478bd9Sstevel@tonic-gate 0x42, /* X X */ 17137c478bd9Sstevel@tonic-gate 0x24, /* X X */ 17147c478bd9Sstevel@tonic-gate 0x18, /* XX */ 17157c478bd9Sstevel@tonic-gate 0x24, /* X X */ 17167c478bd9Sstevel@tonic-gate 0x42, /* X X */ 17177c478bd9Sstevel@tonic-gate 0x42, /* X X */ 17187c478bd9Sstevel@tonic-gate 0x00, /* */ 17197c478bd9Sstevel@tonic-gate 0x00, /* */ 17207c478bd9Sstevel@tonic-gate 17217c478bd9Sstevel@tonic-gate /* 'y' */ 17227c478bd9Sstevel@tonic-gate 0x00, /* */ 17237c478bd9Sstevel@tonic-gate 0x00, /* */ 17247c478bd9Sstevel@tonic-gate 0x00, /* */ 17257c478bd9Sstevel@tonic-gate 0x00, /* */ 17267c478bd9Sstevel@tonic-gate 0x00, /* */ 17277c478bd9Sstevel@tonic-gate 0x42, /* X X */ 17287c478bd9Sstevel@tonic-gate 0x42, /* X X */ 17297c478bd9Sstevel@tonic-gate 0x42, /* X X */ 17307c478bd9Sstevel@tonic-gate 0x42, /* X X */ 17317c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 17327c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 17337c478bd9Sstevel@tonic-gate 0x02, /* X */ 17347c478bd9Sstevel@tonic-gate 0x42, /* X X */ 17357c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 17367c478bd9Sstevel@tonic-gate 17377c478bd9Sstevel@tonic-gate /* 'z' */ 17387c478bd9Sstevel@tonic-gate 0x00, /* */ 17397c478bd9Sstevel@tonic-gate 0x00, /* */ 17407c478bd9Sstevel@tonic-gate 0x00, /* */ 17417c478bd9Sstevel@tonic-gate 0x00, /* */ 17427c478bd9Sstevel@tonic-gate 0x00, /* */ 17437c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 17447c478bd9Sstevel@tonic-gate 0x04, /* X */ 17457c478bd9Sstevel@tonic-gate 0x08, /* X */ 17467c478bd9Sstevel@tonic-gate 0x10, /* X */ 17477c478bd9Sstevel@tonic-gate 0x10, /* X */ 17487c478bd9Sstevel@tonic-gate 0x20, /* X */ 17497c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 17507c478bd9Sstevel@tonic-gate 0x00, /* */ 17517c478bd9Sstevel@tonic-gate 0x00, /* */ 17527c478bd9Sstevel@tonic-gate 17537c478bd9Sstevel@tonic-gate /* '{' */ 17547c478bd9Sstevel@tonic-gate 0x00, /* */ 17557c478bd9Sstevel@tonic-gate 0x06, /* XX */ 17567c478bd9Sstevel@tonic-gate 0x08, /* X */ 17577c478bd9Sstevel@tonic-gate 0x08, /* X */ 17587c478bd9Sstevel@tonic-gate 0x08, /* X */ 17597c478bd9Sstevel@tonic-gate 0x08, /* X */ 17607c478bd9Sstevel@tonic-gate 0x08, /* X */ 17617c478bd9Sstevel@tonic-gate 0x10, /* X */ 17627c478bd9Sstevel@tonic-gate 0x08, /* X */ 17637c478bd9Sstevel@tonic-gate 0x08, /* X */ 17647c478bd9Sstevel@tonic-gate 0x08, /* X */ 17657c478bd9Sstevel@tonic-gate 0x08, /* X */ 17667c478bd9Sstevel@tonic-gate 0x08, /* X */ 17677c478bd9Sstevel@tonic-gate 0x06, /* XX */ 17687c478bd9Sstevel@tonic-gate 17697c478bd9Sstevel@tonic-gate /* '|' */ 17707c478bd9Sstevel@tonic-gate 0x00, /* */ 17717c478bd9Sstevel@tonic-gate 0x10, /* X */ 17727c478bd9Sstevel@tonic-gate 0x10, /* X */ 17737c478bd9Sstevel@tonic-gate 0x10, /* X */ 17747c478bd9Sstevel@tonic-gate 0x10, /* X */ 17757c478bd9Sstevel@tonic-gate 0x10, /* X */ 17767c478bd9Sstevel@tonic-gate 0x10, /* X */ 17777c478bd9Sstevel@tonic-gate 0x10, /* X */ 17787c478bd9Sstevel@tonic-gate 0x10, /* X */ 17797c478bd9Sstevel@tonic-gate 0x10, /* X */ 17807c478bd9Sstevel@tonic-gate 0x10, /* X */ 17817c478bd9Sstevel@tonic-gate 0x10, /* X */ 17827c478bd9Sstevel@tonic-gate 0x10, /* X */ 17837c478bd9Sstevel@tonic-gate 0x10, /* X */ 17847c478bd9Sstevel@tonic-gate 17857c478bd9Sstevel@tonic-gate /* '}' */ 17867c478bd9Sstevel@tonic-gate 0x00, /* */ 17877c478bd9Sstevel@tonic-gate 0x60, /* XX */ 17887c478bd9Sstevel@tonic-gate 0x10, /* X */ 17897c478bd9Sstevel@tonic-gate 0x10, /* X */ 17907c478bd9Sstevel@tonic-gate 0x10, /* X */ 17917c478bd9Sstevel@tonic-gate 0x10, /* X */ 17927c478bd9Sstevel@tonic-gate 0x10, /* X */ 17937c478bd9Sstevel@tonic-gate 0x08, /* X */ 17947c478bd9Sstevel@tonic-gate 0x10, /* X */ 17957c478bd9Sstevel@tonic-gate 0x10, /* X */ 17967c478bd9Sstevel@tonic-gate 0x10, /* X */ 17977c478bd9Sstevel@tonic-gate 0x10, /* X */ 17987c478bd9Sstevel@tonic-gate 0x10, /* X */ 17997c478bd9Sstevel@tonic-gate 0x60, /* XX */ 18007c478bd9Sstevel@tonic-gate 18017c478bd9Sstevel@tonic-gate /* '~' */ 18027c478bd9Sstevel@tonic-gate 0x00, /* */ 18037c478bd9Sstevel@tonic-gate 0x20, /* X */ 18047c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 18057c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 18067c478bd9Sstevel@tonic-gate 0x04, /* X */ 18077c478bd9Sstevel@tonic-gate 0x00, /* */ 18087c478bd9Sstevel@tonic-gate 0x00, /* */ 18097c478bd9Sstevel@tonic-gate 0x00, /* */ 18107c478bd9Sstevel@tonic-gate 0x00, /* */ 18117c478bd9Sstevel@tonic-gate 0x00, /* */ 18127c478bd9Sstevel@tonic-gate 0x00, /* */ 18137c478bd9Sstevel@tonic-gate 0x00, /* */ 18147c478bd9Sstevel@tonic-gate 0x00, /* */ 18157c478bd9Sstevel@tonic-gate 0x00, /* */ 18167c478bd9Sstevel@tonic-gate 18177c478bd9Sstevel@tonic-gate /* 0x7f */ 18187c478bd9Sstevel@tonic-gate 0x00, /* */ 18197c478bd9Sstevel@tonic-gate 0x00, /* */ 18207c478bd9Sstevel@tonic-gate 0x00, /* */ 18217c478bd9Sstevel@tonic-gate 0x00, /* */ 18227c478bd9Sstevel@tonic-gate 0x00, /* */ 18237c478bd9Sstevel@tonic-gate 0x00, /* */ 18247c478bd9Sstevel@tonic-gate 0x00, /* */ 18257c478bd9Sstevel@tonic-gate 0x00, /* */ 18267c478bd9Sstevel@tonic-gate 0x00, /* */ 18277c478bd9Sstevel@tonic-gate 0x00, /* */ 18287c478bd9Sstevel@tonic-gate 0x00, /* */ 18297c478bd9Sstevel@tonic-gate 0x00, /* */ 18307c478bd9Sstevel@tonic-gate 0x00, /* */ 18317c478bd9Sstevel@tonic-gate 0x00, /* */ 18327c478bd9Sstevel@tonic-gate 18337c478bd9Sstevel@tonic-gate /* 0xa0 */ 18347c478bd9Sstevel@tonic-gate 0x00, /* */ 18357c478bd9Sstevel@tonic-gate 0x00, /* */ 18367c478bd9Sstevel@tonic-gate 0x00, /* */ 18377c478bd9Sstevel@tonic-gate 0x00, /* */ 18387c478bd9Sstevel@tonic-gate 0x00, /* */ 18397c478bd9Sstevel@tonic-gate 0x00, /* */ 18407c478bd9Sstevel@tonic-gate 0x00, /* */ 18417c478bd9Sstevel@tonic-gate 0x00, /* */ 18427c478bd9Sstevel@tonic-gate 0x00, /* */ 18437c478bd9Sstevel@tonic-gate 0x00, /* */ 18447c478bd9Sstevel@tonic-gate 0x00, /* */ 18457c478bd9Sstevel@tonic-gate 0x00, /* */ 18467c478bd9Sstevel@tonic-gate 0x00, /* */ 18477c478bd9Sstevel@tonic-gate 0x00, /* */ 18487c478bd9Sstevel@tonic-gate 18497c478bd9Sstevel@tonic-gate /* 0xa1 */ 18507c478bd9Sstevel@tonic-gate 0x00, /* */ 18517c478bd9Sstevel@tonic-gate 0x00, /* */ 18527c478bd9Sstevel@tonic-gate 0x10, /* X */ 18537c478bd9Sstevel@tonic-gate 0x10, /* X */ 18547c478bd9Sstevel@tonic-gate 0x00, /* */ 18557c478bd9Sstevel@tonic-gate 0x10, /* X */ 18567c478bd9Sstevel@tonic-gate 0x10, /* X */ 18577c478bd9Sstevel@tonic-gate 0x10, /* X */ 18587c478bd9Sstevel@tonic-gate 0x10, /* X */ 18597c478bd9Sstevel@tonic-gate 0x10, /* X */ 18607c478bd9Sstevel@tonic-gate 0x10, /* X */ 18617c478bd9Sstevel@tonic-gate 0x10, /* X */ 18627c478bd9Sstevel@tonic-gate 0x00, /* */ 18637c478bd9Sstevel@tonic-gate 0x00, /* */ 18647c478bd9Sstevel@tonic-gate 18657c478bd9Sstevel@tonic-gate /* 0xa2 */ 18667c478bd9Sstevel@tonic-gate 0x00, /* */ 18677c478bd9Sstevel@tonic-gate 0x00, /* */ 18687c478bd9Sstevel@tonic-gate 0x00, /* */ 18697c478bd9Sstevel@tonic-gate 0x00, /* */ 18707c478bd9Sstevel@tonic-gate 0x10, /* X */ 18717c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 18727c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 18737c478bd9Sstevel@tonic-gate 0x50, /* X X */ 18747c478bd9Sstevel@tonic-gate 0x50, /* X X */ 18757c478bd9Sstevel@tonic-gate 0x50, /* X X */ 18767c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 18777c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 18787c478bd9Sstevel@tonic-gate 0x10, /* X */ 18797c478bd9Sstevel@tonic-gate 0x00, /* */ 18807c478bd9Sstevel@tonic-gate 18817c478bd9Sstevel@tonic-gate /* 0xa3 */ 18827c478bd9Sstevel@tonic-gate 0x00, /* */ 18837c478bd9Sstevel@tonic-gate 0x00, /* */ 18847c478bd9Sstevel@tonic-gate 0x00, /* */ 18857c478bd9Sstevel@tonic-gate 0x18, /* XX */ 18867c478bd9Sstevel@tonic-gate 0x24, /* X X */ 18877c478bd9Sstevel@tonic-gate 0x20, /* X */ 18887c478bd9Sstevel@tonic-gate 0x20, /* X */ 18897c478bd9Sstevel@tonic-gate 0x78, /* XXXX */ 18907c478bd9Sstevel@tonic-gate 0x20, /* X */ 18917c478bd9Sstevel@tonic-gate 0x20, /* X */ 18927c478bd9Sstevel@tonic-gate 0x78, /* XXXX */ 18937c478bd9Sstevel@tonic-gate 0x24, /* X X */ 18947c478bd9Sstevel@tonic-gate 0x00, /* */ 18957c478bd9Sstevel@tonic-gate 0x00, /* */ 18967c478bd9Sstevel@tonic-gate 18977c478bd9Sstevel@tonic-gate /* 0xa4 */ 18987c478bd9Sstevel@tonic-gate 0x00, /* */ 18997c478bd9Sstevel@tonic-gate 0x00, /* */ 19007c478bd9Sstevel@tonic-gate 0x00, /* */ 19017c478bd9Sstevel@tonic-gate 0x00, /* */ 19027c478bd9Sstevel@tonic-gate 0x42, /* X X */ 19037c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 19047c478bd9Sstevel@tonic-gate 0x24, /* X X */ 19057c478bd9Sstevel@tonic-gate 0x24, /* X X */ 19067c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 19077c478bd9Sstevel@tonic-gate 0x42, /* X X */ 19087c478bd9Sstevel@tonic-gate 0x00, /* */ 19097c478bd9Sstevel@tonic-gate 0x00, /* */ 19107c478bd9Sstevel@tonic-gate 0x00, /* */ 19117c478bd9Sstevel@tonic-gate 0x00, /* */ 19127c478bd9Sstevel@tonic-gate 19137c478bd9Sstevel@tonic-gate /* 0xa5 */ 19147c478bd9Sstevel@tonic-gate 0x00, /* */ 19157c478bd9Sstevel@tonic-gate 0x00, /* */ 19167c478bd9Sstevel@tonic-gate 0x42, /* X X */ 19177c478bd9Sstevel@tonic-gate 0x24, /* X X */ 19187c478bd9Sstevel@tonic-gate 0x18, /* XX */ 19197c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 19207c478bd9Sstevel@tonic-gate 0x08, /* X */ 19217c478bd9Sstevel@tonic-gate 0x08, /* X */ 19227c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 19237c478bd9Sstevel@tonic-gate 0x08, /* X */ 19247c478bd9Sstevel@tonic-gate 0x08, /* X */ 19257c478bd9Sstevel@tonic-gate 0x08, /* X */ 19267c478bd9Sstevel@tonic-gate 0x00, /* */ 19277c478bd9Sstevel@tonic-gate 0x00, /* */ 19287c478bd9Sstevel@tonic-gate 19297c478bd9Sstevel@tonic-gate /* 0xa6 */ 19307c478bd9Sstevel@tonic-gate 0x00, /* */ 19317c478bd9Sstevel@tonic-gate 0x00, /* */ 19327c478bd9Sstevel@tonic-gate 0x10, /* X */ 19337c478bd9Sstevel@tonic-gate 0x10, /* X */ 19347c478bd9Sstevel@tonic-gate 0x10, /* X */ 19357c478bd9Sstevel@tonic-gate 0x10, /* X */ 19367c478bd9Sstevel@tonic-gate 0x00, /* */ 19377c478bd9Sstevel@tonic-gate 0x00, /* */ 19387c478bd9Sstevel@tonic-gate 0x10, /* X */ 19397c478bd9Sstevel@tonic-gate 0x10, /* X */ 19407c478bd9Sstevel@tonic-gate 0x10, /* X */ 19417c478bd9Sstevel@tonic-gate 0x10, /* X */ 19427c478bd9Sstevel@tonic-gate 0x00, /* */ 19437c478bd9Sstevel@tonic-gate 0x00, /* */ 19447c478bd9Sstevel@tonic-gate 19457c478bd9Sstevel@tonic-gate /* 0xa7 */ 19467c478bd9Sstevel@tonic-gate 0x00, /* */ 19477c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 19487c478bd9Sstevel@tonic-gate 0x42, /* X X */ 19497c478bd9Sstevel@tonic-gate 0x20, /* X */ 19507c478bd9Sstevel@tonic-gate 0x18, /* XX */ 19517c478bd9Sstevel@tonic-gate 0x24, /* X X */ 19527c478bd9Sstevel@tonic-gate 0x42, /* X X */ 19537c478bd9Sstevel@tonic-gate 0x24, /* X X */ 19547c478bd9Sstevel@tonic-gate 0x18, /* XX */ 19557c478bd9Sstevel@tonic-gate 0x04, /* X */ 19567c478bd9Sstevel@tonic-gate 0x42, /* X X */ 19577c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 19587c478bd9Sstevel@tonic-gate 0x00, /* */ 19597c478bd9Sstevel@tonic-gate 0x00, /* */ 19607c478bd9Sstevel@tonic-gate 19617c478bd9Sstevel@tonic-gate /* 0xa8 */ 19627c478bd9Sstevel@tonic-gate 0x00, /* */ 19637c478bd9Sstevel@tonic-gate 0x48, /* X X */ 19647c478bd9Sstevel@tonic-gate 0x48, /* X X */ 19657c478bd9Sstevel@tonic-gate 0x00, /* */ 19667c478bd9Sstevel@tonic-gate 0x00, /* */ 19677c478bd9Sstevel@tonic-gate 0x00, /* */ 19687c478bd9Sstevel@tonic-gate 0x00, /* */ 19697c478bd9Sstevel@tonic-gate 0x00, /* */ 19707c478bd9Sstevel@tonic-gate 0x00, /* */ 19717c478bd9Sstevel@tonic-gate 0x00, /* */ 19727c478bd9Sstevel@tonic-gate 0x00, /* */ 19737c478bd9Sstevel@tonic-gate 0x00, /* */ 19747c478bd9Sstevel@tonic-gate 0x00, /* */ 19757c478bd9Sstevel@tonic-gate 0x00, /* */ 19767c478bd9Sstevel@tonic-gate 19777c478bd9Sstevel@tonic-gate /* 0xa9 */ 19787c478bd9Sstevel@tonic-gate 0x00, /* */ 19797c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 19807c478bd9Sstevel@tonic-gate 0x42, /* X X */ 19817c478bd9Sstevel@tonic-gate 0x5a, /* X XX X */ 19827c478bd9Sstevel@tonic-gate 0x66, /* XX XX */ 19837c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 19847c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 19857c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 19867c478bd9Sstevel@tonic-gate 0x66, /* XX XX */ 19877c478bd9Sstevel@tonic-gate 0x5a, /* X XX X */ 19887c478bd9Sstevel@tonic-gate 0x42, /* X X */ 19897c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 19907c478bd9Sstevel@tonic-gate 0x00, /* */ 19917c478bd9Sstevel@tonic-gate 0x00, /* */ 19927c478bd9Sstevel@tonic-gate 19937c478bd9Sstevel@tonic-gate /* 0xaa */ 19947c478bd9Sstevel@tonic-gate 0x00, /* */ 19957c478bd9Sstevel@tonic-gate 0x1c, /* XXX */ 19967c478bd9Sstevel@tonic-gate 0x22, /* X X */ 19977c478bd9Sstevel@tonic-gate 0x1e, /* XXXX */ 19987c478bd9Sstevel@tonic-gate 0x22, /* X X */ 19997c478bd9Sstevel@tonic-gate 0x26, /* X XX */ 20007c478bd9Sstevel@tonic-gate 0x1a, /* XX X */ 20017c478bd9Sstevel@tonic-gate 0x00, /* */ 20027c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 20037c478bd9Sstevel@tonic-gate 0x00, /* */ 20047c478bd9Sstevel@tonic-gate 0x00, /* */ 20057c478bd9Sstevel@tonic-gate 0x00, /* */ 20067c478bd9Sstevel@tonic-gate 0x00, /* */ 20077c478bd9Sstevel@tonic-gate 0x00, /* */ 20087c478bd9Sstevel@tonic-gate 20097c478bd9Sstevel@tonic-gate /* 0xab */ 20107c478bd9Sstevel@tonic-gate 0x00, /* */ 20117c478bd9Sstevel@tonic-gate 0x00, /* */ 20127c478bd9Sstevel@tonic-gate 0x00, /* */ 20137c478bd9Sstevel@tonic-gate 0x00, /* */ 20147c478bd9Sstevel@tonic-gate 0x00, /* */ 20157c478bd9Sstevel@tonic-gate 0x0a, /* X X */ 20167c478bd9Sstevel@tonic-gate 0x14, /* X X */ 20177c478bd9Sstevel@tonic-gate 0x28, /* X X */ 20187c478bd9Sstevel@tonic-gate 0x50, /* X X */ 20197c478bd9Sstevel@tonic-gate 0x28, /* X X */ 20207c478bd9Sstevel@tonic-gate 0x14, /* X X */ 20217c478bd9Sstevel@tonic-gate 0x0a, /* X X */ 20227c478bd9Sstevel@tonic-gate 0x00, /* */ 20237c478bd9Sstevel@tonic-gate 0x00, /* */ 20247c478bd9Sstevel@tonic-gate 20257c478bd9Sstevel@tonic-gate /* 0xac */ 20267c478bd9Sstevel@tonic-gate 0x00, /* */ 20277c478bd9Sstevel@tonic-gate 0x00, /* */ 20287c478bd9Sstevel@tonic-gate 0x00, /* */ 20297c478bd9Sstevel@tonic-gate 0x00, /* */ 20307c478bd9Sstevel@tonic-gate 0x00, /* */ 20317c478bd9Sstevel@tonic-gate 0x00, /* */ 20327c478bd9Sstevel@tonic-gate 0x00, /* */ 20337c478bd9Sstevel@tonic-gate 0x00, /* */ 20347c478bd9Sstevel@tonic-gate 0xf8, /* XXXXX */ 20357c478bd9Sstevel@tonic-gate 0x08, /* X */ 20367c478bd9Sstevel@tonic-gate 0x08, /* X */ 20377c478bd9Sstevel@tonic-gate 0x08, /* X */ 20387c478bd9Sstevel@tonic-gate 0x00, /* */ 20397c478bd9Sstevel@tonic-gate 0x00, /* */ 20407c478bd9Sstevel@tonic-gate 20417c478bd9Sstevel@tonic-gate /* 0xad */ 20427c478bd9Sstevel@tonic-gate 0x00, /* */ 20437c478bd9Sstevel@tonic-gate 0x00, /* */ 20447c478bd9Sstevel@tonic-gate 0x00, /* */ 20457c478bd9Sstevel@tonic-gate 0x00, /* */ 20467c478bd9Sstevel@tonic-gate 0x00, /* */ 20477c478bd9Sstevel@tonic-gate 0x00, /* */ 20487c478bd9Sstevel@tonic-gate 0x00, /* */ 20497c478bd9Sstevel@tonic-gate 0x00, /* */ 20507c478bd9Sstevel@tonic-gate 0xf0, /* XXXX */ 20517c478bd9Sstevel@tonic-gate 0x00, /* */ 20527c478bd9Sstevel@tonic-gate 0x00, /* */ 20537c478bd9Sstevel@tonic-gate 0x00, /* */ 20547c478bd9Sstevel@tonic-gate 0x00, /* */ 20557c478bd9Sstevel@tonic-gate 0x00, /* */ 20567c478bd9Sstevel@tonic-gate 20577c478bd9Sstevel@tonic-gate /* 0xae */ 20587c478bd9Sstevel@tonic-gate 0x00, /* */ 20597c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 20607c478bd9Sstevel@tonic-gate 0x42, /* X X */ 20617c478bd9Sstevel@tonic-gate 0x7a, /* XXXX X */ 20627c478bd9Sstevel@tonic-gate 0x66, /* XX XX */ 20637c478bd9Sstevel@tonic-gate 0x66, /* XX XX */ 20647c478bd9Sstevel@tonic-gate 0x7a, /* XXXX X */ 20657c478bd9Sstevel@tonic-gate 0x66, /* XX XX */ 20667c478bd9Sstevel@tonic-gate 0x66, /* XX XX */ 20677c478bd9Sstevel@tonic-gate 0x66, /* XX XX */ 20687c478bd9Sstevel@tonic-gate 0x42, /* X X */ 20697c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 20707c478bd9Sstevel@tonic-gate 0x00, /* */ 20717c478bd9Sstevel@tonic-gate 0x00, /* */ 20727c478bd9Sstevel@tonic-gate 20737c478bd9Sstevel@tonic-gate /* 0xaf */ 20747c478bd9Sstevel@tonic-gate 0x00, /* */ 20757c478bd9Sstevel@tonic-gate 0x00, /* */ 20767c478bd9Sstevel@tonic-gate 0xf0, /* XXXX */ 20777c478bd9Sstevel@tonic-gate 0x00, /* */ 20787c478bd9Sstevel@tonic-gate 0x00, /* */ 20797c478bd9Sstevel@tonic-gate 0x00, /* */ 20807c478bd9Sstevel@tonic-gate 0x00, /* */ 20817c478bd9Sstevel@tonic-gate 0x00, /* */ 20827c478bd9Sstevel@tonic-gate 0x00, /* */ 20837c478bd9Sstevel@tonic-gate 0x00, /* */ 20847c478bd9Sstevel@tonic-gate 0x00, /* */ 20857c478bd9Sstevel@tonic-gate 0x00, /* */ 20867c478bd9Sstevel@tonic-gate 0x00, /* */ 20877c478bd9Sstevel@tonic-gate 0x00, /* */ 20887c478bd9Sstevel@tonic-gate 20897c478bd9Sstevel@tonic-gate /* 0xb0 */ 20907c478bd9Sstevel@tonic-gate 0x00, /* */ 20917c478bd9Sstevel@tonic-gate 0x30, /* XX */ 20927c478bd9Sstevel@tonic-gate 0x48, /* X X */ 20937c478bd9Sstevel@tonic-gate 0x48, /* X X */ 20947c478bd9Sstevel@tonic-gate 0x30, /* XX */ 20957c478bd9Sstevel@tonic-gate 0x00, /* */ 20967c478bd9Sstevel@tonic-gate 0x00, /* */ 20977c478bd9Sstevel@tonic-gate 0x00, /* */ 20987c478bd9Sstevel@tonic-gate 0x00, /* */ 20997c478bd9Sstevel@tonic-gate 0x00, /* */ 21007c478bd9Sstevel@tonic-gate 0x00, /* */ 21017c478bd9Sstevel@tonic-gate 0x00, /* */ 21027c478bd9Sstevel@tonic-gate 0x00, /* */ 21037c478bd9Sstevel@tonic-gate 0x00, /* */ 21047c478bd9Sstevel@tonic-gate 21057c478bd9Sstevel@tonic-gate /* 0xb1 */ 21067c478bd9Sstevel@tonic-gate 0x00, /* */ 21077c478bd9Sstevel@tonic-gate 0x00, /* */ 21087c478bd9Sstevel@tonic-gate 0x00, /* */ 21097c478bd9Sstevel@tonic-gate 0x00, /* */ 21107c478bd9Sstevel@tonic-gate 0x00, /* */ 21117c478bd9Sstevel@tonic-gate 0x00, /* */ 21127c478bd9Sstevel@tonic-gate 0x10, /* X */ 21137c478bd9Sstevel@tonic-gate 0x10, /* X */ 21147c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 21157c478bd9Sstevel@tonic-gate 0x10, /* X */ 21167c478bd9Sstevel@tonic-gate 0x10, /* X */ 21177c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 21187c478bd9Sstevel@tonic-gate 0x00, /* */ 21197c478bd9Sstevel@tonic-gate 0x00, /* */ 21207c478bd9Sstevel@tonic-gate 21217c478bd9Sstevel@tonic-gate /* 0xb2 */ 21227c478bd9Sstevel@tonic-gate 0x00, /* */ 21237c478bd9Sstevel@tonic-gate 0x30, /* XX */ 21247c478bd9Sstevel@tonic-gate 0x48, /* X X */ 21257c478bd9Sstevel@tonic-gate 0x08, /* X */ 21267c478bd9Sstevel@tonic-gate 0x10, /* X */ 21277c478bd9Sstevel@tonic-gate 0x20, /* X */ 21287c478bd9Sstevel@tonic-gate 0x40, /* X */ 21297c478bd9Sstevel@tonic-gate 0x78, /* XXXX */ 21307c478bd9Sstevel@tonic-gate 0x00, /* */ 21317c478bd9Sstevel@tonic-gate 0x00, /* */ 21327c478bd9Sstevel@tonic-gate 0x00, /* */ 21337c478bd9Sstevel@tonic-gate 0x00, /* */ 21347c478bd9Sstevel@tonic-gate 0x00, /* */ 21357c478bd9Sstevel@tonic-gate 0x00, /* */ 21367c478bd9Sstevel@tonic-gate 21377c478bd9Sstevel@tonic-gate /* 0xb3 */ 21387c478bd9Sstevel@tonic-gate 0x00, /* */ 21397c478bd9Sstevel@tonic-gate 0x30, /* XX */ 21407c478bd9Sstevel@tonic-gate 0x48, /* X X */ 21417c478bd9Sstevel@tonic-gate 0x08, /* X */ 21427c478bd9Sstevel@tonic-gate 0x30, /* XX */ 21437c478bd9Sstevel@tonic-gate 0x08, /* X */ 21447c478bd9Sstevel@tonic-gate 0x48, /* X X */ 21457c478bd9Sstevel@tonic-gate 0x30, /* XX */ 21467c478bd9Sstevel@tonic-gate 0x00, /* */ 21477c478bd9Sstevel@tonic-gate 0x00, /* */ 21487c478bd9Sstevel@tonic-gate 0x00, /* */ 21497c478bd9Sstevel@tonic-gate 0x00, /* */ 21507c478bd9Sstevel@tonic-gate 0x00, /* */ 21517c478bd9Sstevel@tonic-gate 0x00, /* */ 21527c478bd9Sstevel@tonic-gate 21537c478bd9Sstevel@tonic-gate /* 0xb4 */ 21547c478bd9Sstevel@tonic-gate 0x00, /* */ 21557c478bd9Sstevel@tonic-gate 0x08, /* X */ 21567c478bd9Sstevel@tonic-gate 0x10, /* X */ 21577c478bd9Sstevel@tonic-gate 0x20, /* X */ 21587c478bd9Sstevel@tonic-gate 0x40, /* X */ 21597c478bd9Sstevel@tonic-gate 0x00, /* */ 21607c478bd9Sstevel@tonic-gate 0x00, /* */ 21617c478bd9Sstevel@tonic-gate 0x00, /* */ 21627c478bd9Sstevel@tonic-gate 0x00, /* */ 21637c478bd9Sstevel@tonic-gate 0x00, /* */ 21647c478bd9Sstevel@tonic-gate 0x00, /* */ 21657c478bd9Sstevel@tonic-gate 0x00, /* */ 21667c478bd9Sstevel@tonic-gate 0x00, /* */ 21677c478bd9Sstevel@tonic-gate 0x00, /* */ 21687c478bd9Sstevel@tonic-gate 21697c478bd9Sstevel@tonic-gate /* 0xb5 */ 21707c478bd9Sstevel@tonic-gate 0x00, /* */ 21717c478bd9Sstevel@tonic-gate 0x00, /* */ 21727c478bd9Sstevel@tonic-gate 0x00, /* */ 21737c478bd9Sstevel@tonic-gate 0x00, /* */ 21747c478bd9Sstevel@tonic-gate 0x00, /* */ 21757c478bd9Sstevel@tonic-gate 0x00, /* */ 21767c478bd9Sstevel@tonic-gate 0x44, /* X X */ 21777c478bd9Sstevel@tonic-gate 0x44, /* X X */ 21787c478bd9Sstevel@tonic-gate 0x44, /* X X */ 21797c478bd9Sstevel@tonic-gate 0x44, /* X X */ 21807c478bd9Sstevel@tonic-gate 0x6c, /* XX XX */ 21817c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 21827c478bd9Sstevel@tonic-gate 0x40, /* X */ 21837c478bd9Sstevel@tonic-gate 0x40, /* X */ 21847c478bd9Sstevel@tonic-gate 21857c478bd9Sstevel@tonic-gate /* 0xb6 */ 21867c478bd9Sstevel@tonic-gate 0x00, /* */ 21877c478bd9Sstevel@tonic-gate 0x00, /* */ 21887c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 21897c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 21907c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 21917c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 21927c478bd9Sstevel@tonic-gate 0x54, /* X X X */ 21937c478bd9Sstevel@tonic-gate 0x34, /* XX X */ 21947c478bd9Sstevel@tonic-gate 0x14, /* X X */ 21957c478bd9Sstevel@tonic-gate 0x14, /* X X */ 21967c478bd9Sstevel@tonic-gate 0x14, /* X X */ 21977c478bd9Sstevel@tonic-gate 0x14, /* X X */ 21987c478bd9Sstevel@tonic-gate 0x14, /* X X */ 21997c478bd9Sstevel@tonic-gate 0x1c, /* XXX */ 22007c478bd9Sstevel@tonic-gate 22017c478bd9Sstevel@tonic-gate /* 0xb7 */ 22027c478bd9Sstevel@tonic-gate 0x00, /* */ 22037c478bd9Sstevel@tonic-gate 0x00, /* */ 22047c478bd9Sstevel@tonic-gate 0x00, /* */ 22057c478bd9Sstevel@tonic-gate 0x00, /* */ 22067c478bd9Sstevel@tonic-gate 0x00, /* */ 22077c478bd9Sstevel@tonic-gate 0x00, /* */ 22087c478bd9Sstevel@tonic-gate 0x10, /* X */ 22097c478bd9Sstevel@tonic-gate 0x00, /* */ 22107c478bd9Sstevel@tonic-gate 0x00, /* */ 22117c478bd9Sstevel@tonic-gate 0x00, /* */ 22127c478bd9Sstevel@tonic-gate 0x00, /* */ 22137c478bd9Sstevel@tonic-gate 0x00, /* */ 22147c478bd9Sstevel@tonic-gate 0x00, /* */ 22157c478bd9Sstevel@tonic-gate 0x00, /* */ 22167c478bd9Sstevel@tonic-gate 22177c478bd9Sstevel@tonic-gate /* 0xb8 */ 22187c478bd9Sstevel@tonic-gate 0x00, /* */ 22197c478bd9Sstevel@tonic-gate 0x00, /* */ 22207c478bd9Sstevel@tonic-gate 0x00, /* */ 22217c478bd9Sstevel@tonic-gate 0x00, /* */ 22227c478bd9Sstevel@tonic-gate 0x00, /* */ 22237c478bd9Sstevel@tonic-gate 0x00, /* */ 22247c478bd9Sstevel@tonic-gate 0x00, /* */ 22257c478bd9Sstevel@tonic-gate 0x00, /* */ 22267c478bd9Sstevel@tonic-gate 0x00, /* */ 22277c478bd9Sstevel@tonic-gate 0x00, /* */ 22287c478bd9Sstevel@tonic-gate 0x00, /* */ 22297c478bd9Sstevel@tonic-gate 0x10, /* X */ 22307c478bd9Sstevel@tonic-gate 0x10, /* X */ 22317c478bd9Sstevel@tonic-gate 0x20, /* X */ 22327c478bd9Sstevel@tonic-gate 22337c478bd9Sstevel@tonic-gate /* 0xb9 */ 22347c478bd9Sstevel@tonic-gate 0x00, /* */ 22357c478bd9Sstevel@tonic-gate 0x00, /* */ 22367c478bd9Sstevel@tonic-gate 0x20, /* X */ 22377c478bd9Sstevel@tonic-gate 0x60, /* XX */ 22387c478bd9Sstevel@tonic-gate 0x20, /* X */ 22397c478bd9Sstevel@tonic-gate 0x20, /* X */ 22407c478bd9Sstevel@tonic-gate 0x20, /* X */ 22417c478bd9Sstevel@tonic-gate 0x20, /* X */ 22427c478bd9Sstevel@tonic-gate 0x00, /* */ 22437c478bd9Sstevel@tonic-gate 0x00, /* */ 22447c478bd9Sstevel@tonic-gate 0x00, /* */ 22457c478bd9Sstevel@tonic-gate 0x00, /* */ 22467c478bd9Sstevel@tonic-gate 0x00, /* */ 22477c478bd9Sstevel@tonic-gate 0x00, /* */ 22487c478bd9Sstevel@tonic-gate 22497c478bd9Sstevel@tonic-gate /* 0xba */ 22507c478bd9Sstevel@tonic-gate 0x00, /* */ 22517c478bd9Sstevel@tonic-gate 0x00, /* */ 22527c478bd9Sstevel@tonic-gate 0x18, /* XX */ 22537c478bd9Sstevel@tonic-gate 0x24, /* X X */ 22547c478bd9Sstevel@tonic-gate 0x24, /* X X */ 22557c478bd9Sstevel@tonic-gate 0x18, /* XX */ 22567c478bd9Sstevel@tonic-gate 0x00, /* */ 22577c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 22587c478bd9Sstevel@tonic-gate 0x00, /* */ 22597c478bd9Sstevel@tonic-gate 0x00, /* */ 22607c478bd9Sstevel@tonic-gate 0x00, /* */ 22617c478bd9Sstevel@tonic-gate 0x00, /* */ 22627c478bd9Sstevel@tonic-gate 0x00, /* */ 22637c478bd9Sstevel@tonic-gate 0x00, /* */ 22647c478bd9Sstevel@tonic-gate 22657c478bd9Sstevel@tonic-gate /* 0xbb */ 22667c478bd9Sstevel@tonic-gate 0x00, /* */ 22677c478bd9Sstevel@tonic-gate 0x00, /* */ 22687c478bd9Sstevel@tonic-gate 0x00, /* */ 22697c478bd9Sstevel@tonic-gate 0x00, /* */ 22707c478bd9Sstevel@tonic-gate 0x00, /* */ 22717c478bd9Sstevel@tonic-gate 0x50, /* X X */ 22727c478bd9Sstevel@tonic-gate 0x28, /* X X */ 22737c478bd9Sstevel@tonic-gate 0x14, /* X X */ 22747c478bd9Sstevel@tonic-gate 0x0a, /* X X */ 22757c478bd9Sstevel@tonic-gate 0x14, /* X X */ 22767c478bd9Sstevel@tonic-gate 0x28, /* X X */ 22777c478bd9Sstevel@tonic-gate 0x50, /* X X */ 22787c478bd9Sstevel@tonic-gate 0x00, /* */ 22797c478bd9Sstevel@tonic-gate 0x00, /* */ 22807c478bd9Sstevel@tonic-gate 22817c478bd9Sstevel@tonic-gate /* 0xbc */ 22827c478bd9Sstevel@tonic-gate 0x00, /* */ 22837c478bd9Sstevel@tonic-gate 0x00, /* */ 22847c478bd9Sstevel@tonic-gate 0x20, /* X */ 22857c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 22867c478bd9Sstevel@tonic-gate 0x24, /* X X */ 22877c478bd9Sstevel@tonic-gate 0x24, /* X X */ 22887c478bd9Sstevel@tonic-gate 0x28, /* X X */ 22897c478bd9Sstevel@tonic-gate 0x12, /* X X */ 22907c478bd9Sstevel@tonic-gate 0x16, /* X XX */ 22917c478bd9Sstevel@tonic-gate 0x2a, /* X X X */ 22927c478bd9Sstevel@tonic-gate 0x4e, /* X XXX */ 22937c478bd9Sstevel@tonic-gate 0x42, /* X X */ 22947c478bd9Sstevel@tonic-gate 0x00, /* */ 22957c478bd9Sstevel@tonic-gate 0x00, /* */ 22967c478bd9Sstevel@tonic-gate 22977c478bd9Sstevel@tonic-gate /* 0xbd */ 22987c478bd9Sstevel@tonic-gate 0x00, /* */ 22997c478bd9Sstevel@tonic-gate 0x00, /* */ 23007c478bd9Sstevel@tonic-gate 0x20, /* X */ 23017c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 23027c478bd9Sstevel@tonic-gate 0x24, /* X X */ 23037c478bd9Sstevel@tonic-gate 0x24, /* X X */ 23047c478bd9Sstevel@tonic-gate 0x28, /* X X */ 23057c478bd9Sstevel@tonic-gate 0x14, /* X X */ 23067c478bd9Sstevel@tonic-gate 0x1a, /* XX X */ 23077c478bd9Sstevel@tonic-gate 0x22, /* X X */ 23087c478bd9Sstevel@tonic-gate 0x44, /* X X */ 23097c478bd9Sstevel@tonic-gate 0x4e, /* X XXX */ 23107c478bd9Sstevel@tonic-gate 0x00, /* */ 23117c478bd9Sstevel@tonic-gate 0x00, /* */ 23127c478bd9Sstevel@tonic-gate 23137c478bd9Sstevel@tonic-gate /* 0xbe */ 23147c478bd9Sstevel@tonic-gate 0x00, /* */ 23157c478bd9Sstevel@tonic-gate 0x00, /* */ 23167c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 23177c478bd9Sstevel@tonic-gate 0x12, /* X X */ 23187c478bd9Sstevel@tonic-gate 0x24, /* X X */ 23197c478bd9Sstevel@tonic-gate 0x18, /* XX */ 23207c478bd9Sstevel@tonic-gate 0x68, /* XX X */ 23217c478bd9Sstevel@tonic-gate 0x12, /* X X */ 23227c478bd9Sstevel@tonic-gate 0x26, /* X XX */ 23237c478bd9Sstevel@tonic-gate 0x2a, /* X X X */ 23247c478bd9Sstevel@tonic-gate 0x4e, /* X XXX */ 23257c478bd9Sstevel@tonic-gate 0x02, /* X */ 23267c478bd9Sstevel@tonic-gate 0x00, /* */ 23277c478bd9Sstevel@tonic-gate 0x00, /* */ 23287c478bd9Sstevel@tonic-gate 23297c478bd9Sstevel@tonic-gate /* 0xbf */ 23307c478bd9Sstevel@tonic-gate 0x00, /* */ 23317c478bd9Sstevel@tonic-gate 0x00, /* */ 23327c478bd9Sstevel@tonic-gate 0x00, /* */ 23337c478bd9Sstevel@tonic-gate 0x08, /* X */ 23347c478bd9Sstevel@tonic-gate 0x08, /* X */ 23357c478bd9Sstevel@tonic-gate 0x00, /* */ 23367c478bd9Sstevel@tonic-gate 0x08, /* X */ 23377c478bd9Sstevel@tonic-gate 0x08, /* X */ 23387c478bd9Sstevel@tonic-gate 0x08, /* X */ 23397c478bd9Sstevel@tonic-gate 0x08, /* X */ 23407c478bd9Sstevel@tonic-gate 0x04, /* X */ 23417c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23427c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23437c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 23447c478bd9Sstevel@tonic-gate 23457c478bd9Sstevel@tonic-gate /* 0xc0 */ 23467c478bd9Sstevel@tonic-gate 0x20, /* X */ 23477c478bd9Sstevel@tonic-gate 0x18, /* XX */ 23487c478bd9Sstevel@tonic-gate 0x00, /* */ 23497c478bd9Sstevel@tonic-gate 0x18, /* XX */ 23507c478bd9Sstevel@tonic-gate 0x24, /* X X */ 23517c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23527c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23537c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 23547c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23557c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23567c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23577c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23587c478bd9Sstevel@tonic-gate 0x00, /* */ 23597c478bd9Sstevel@tonic-gate 0x00, /* */ 23607c478bd9Sstevel@tonic-gate 23617c478bd9Sstevel@tonic-gate /* 0xc1 */ 23627c478bd9Sstevel@tonic-gate 0x04, /* X */ 23637c478bd9Sstevel@tonic-gate 0x18, /* XX */ 23647c478bd9Sstevel@tonic-gate 0x00, /* */ 23657c478bd9Sstevel@tonic-gate 0x18, /* XX */ 23667c478bd9Sstevel@tonic-gate 0x24, /* X X */ 23677c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23687c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23697c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 23707c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23717c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23727c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23737c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23747c478bd9Sstevel@tonic-gate 0x00, /* */ 23757c478bd9Sstevel@tonic-gate 0x00, /* */ 23767c478bd9Sstevel@tonic-gate 23777c478bd9Sstevel@tonic-gate /* 0xc2 */ 23787c478bd9Sstevel@tonic-gate 0x18, /* XX */ 23797c478bd9Sstevel@tonic-gate 0x24, /* X X */ 23807c478bd9Sstevel@tonic-gate 0x00, /* */ 23817c478bd9Sstevel@tonic-gate 0x18, /* XX */ 23827c478bd9Sstevel@tonic-gate 0x24, /* X X */ 23837c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23847c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23857c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 23867c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23877c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23887c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23897c478bd9Sstevel@tonic-gate 0x42, /* X X */ 23907c478bd9Sstevel@tonic-gate 0x00, /* */ 23917c478bd9Sstevel@tonic-gate 0x00, /* */ 23927c478bd9Sstevel@tonic-gate 23937c478bd9Sstevel@tonic-gate /* 0xc3 */ 23947c478bd9Sstevel@tonic-gate 0x14, /* X X */ 23957c478bd9Sstevel@tonic-gate 0x28, /* X X */ 23967c478bd9Sstevel@tonic-gate 0x00, /* */ 23977c478bd9Sstevel@tonic-gate 0x18, /* XX */ 23987c478bd9Sstevel@tonic-gate 0x24, /* X X */ 23997c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24007c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24017c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 24027c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24037c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24047c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24057c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24067c478bd9Sstevel@tonic-gate 0x00, /* */ 24077c478bd9Sstevel@tonic-gate 0x00, /* */ 24087c478bd9Sstevel@tonic-gate 24097c478bd9Sstevel@tonic-gate /* 0xc4 */ 24107c478bd9Sstevel@tonic-gate 0x24, /* X X */ 24117c478bd9Sstevel@tonic-gate 0x24, /* X X */ 24127c478bd9Sstevel@tonic-gate 0x00, /* */ 24137c478bd9Sstevel@tonic-gate 0x18, /* XX */ 24147c478bd9Sstevel@tonic-gate 0x24, /* X X */ 24157c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24167c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24177c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 24187c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24197c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24207c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24217c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24227c478bd9Sstevel@tonic-gate 0x00, /* */ 24237c478bd9Sstevel@tonic-gate 0x00, /* */ 24247c478bd9Sstevel@tonic-gate 24257c478bd9Sstevel@tonic-gate /* 0xc5 */ 24267c478bd9Sstevel@tonic-gate 0x18, /* XX */ 24277c478bd9Sstevel@tonic-gate 0x18, /* XX */ 24287c478bd9Sstevel@tonic-gate 0x00, /* */ 24297c478bd9Sstevel@tonic-gate 0x18, /* XX */ 24307c478bd9Sstevel@tonic-gate 0x24, /* X X */ 24317c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24327c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24337c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 24347c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24357c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24367c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24377c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24387c478bd9Sstevel@tonic-gate 0x00, /* */ 24397c478bd9Sstevel@tonic-gate 0x00, /* */ 24407c478bd9Sstevel@tonic-gate 24417c478bd9Sstevel@tonic-gate /* 0xc6 */ 24427c478bd9Sstevel@tonic-gate 0x00, /* */ 24437c478bd9Sstevel@tonic-gate 0x00, /* */ 24447c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 24457c478bd9Sstevel@tonic-gate 0x50, /* X X */ 24467c478bd9Sstevel@tonic-gate 0x90, /* X X */ 24477c478bd9Sstevel@tonic-gate 0x90, /* X X */ 24487c478bd9Sstevel@tonic-gate 0xfc, /* XXXXXX */ 24497c478bd9Sstevel@tonic-gate 0x90, /* X X */ 24507c478bd9Sstevel@tonic-gate 0x90, /* X X */ 24517c478bd9Sstevel@tonic-gate 0x90, /* X X */ 24527c478bd9Sstevel@tonic-gate 0x90, /* X X */ 24537c478bd9Sstevel@tonic-gate 0x9e, /* X XXXX */ 24547c478bd9Sstevel@tonic-gate 0x00, /* */ 24557c478bd9Sstevel@tonic-gate 0x00, /* */ 24567c478bd9Sstevel@tonic-gate 24577c478bd9Sstevel@tonic-gate /* 0xc7 */ 24587c478bd9Sstevel@tonic-gate 0x00, /* */ 24597c478bd9Sstevel@tonic-gate 0x00, /* */ 24607c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 24617c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24627c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24637c478bd9Sstevel@tonic-gate 0x40, /* X */ 24647c478bd9Sstevel@tonic-gate 0x40, /* X */ 24657c478bd9Sstevel@tonic-gate 0x40, /* X */ 24667c478bd9Sstevel@tonic-gate 0x40, /* X */ 24677c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24687c478bd9Sstevel@tonic-gate 0x42, /* X X */ 24697c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 24707c478bd9Sstevel@tonic-gate 0x08, /* X */ 24717c478bd9Sstevel@tonic-gate 0x10, /* X */ 24727c478bd9Sstevel@tonic-gate 24737c478bd9Sstevel@tonic-gate /* 0xc8 */ 24747c478bd9Sstevel@tonic-gate 0x20, /* X */ 24757c478bd9Sstevel@tonic-gate 0x18, /* XX */ 24767c478bd9Sstevel@tonic-gate 0x00, /* */ 24777c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 24787c478bd9Sstevel@tonic-gate 0x40, /* X */ 24797c478bd9Sstevel@tonic-gate 0x40, /* X */ 24807c478bd9Sstevel@tonic-gate 0x40, /* X */ 24817c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 24827c478bd9Sstevel@tonic-gate 0x40, /* X */ 24837c478bd9Sstevel@tonic-gate 0x40, /* X */ 24847c478bd9Sstevel@tonic-gate 0x40, /* X */ 24857c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 24867c478bd9Sstevel@tonic-gate 0x00, /* */ 24877c478bd9Sstevel@tonic-gate 0x00, /* */ 24887c478bd9Sstevel@tonic-gate 24897c478bd9Sstevel@tonic-gate /* 0xc9 */ 24907c478bd9Sstevel@tonic-gate 0x04, /* X */ 24917c478bd9Sstevel@tonic-gate 0x18, /* XX */ 24927c478bd9Sstevel@tonic-gate 0x00, /* */ 24937c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 24947c478bd9Sstevel@tonic-gate 0x40, /* X */ 24957c478bd9Sstevel@tonic-gate 0x40, /* X */ 24967c478bd9Sstevel@tonic-gate 0x40, /* X */ 24977c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 24987c478bd9Sstevel@tonic-gate 0x40, /* X */ 24997c478bd9Sstevel@tonic-gate 0x40, /* X */ 25007c478bd9Sstevel@tonic-gate 0x40, /* X */ 25017c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 25027c478bd9Sstevel@tonic-gate 0x00, /* */ 25037c478bd9Sstevel@tonic-gate 0x00, /* */ 25047c478bd9Sstevel@tonic-gate 25057c478bd9Sstevel@tonic-gate /* 0xca */ 25067c478bd9Sstevel@tonic-gate 0x18, /* XX */ 25077c478bd9Sstevel@tonic-gate 0x24, /* X X */ 25087c478bd9Sstevel@tonic-gate 0x00, /* */ 25097c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 25107c478bd9Sstevel@tonic-gate 0x40, /* X */ 25117c478bd9Sstevel@tonic-gate 0x40, /* X */ 25127c478bd9Sstevel@tonic-gate 0x40, /* X */ 25137c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 25147c478bd9Sstevel@tonic-gate 0x40, /* X */ 25157c478bd9Sstevel@tonic-gate 0x40, /* X */ 25167c478bd9Sstevel@tonic-gate 0x40, /* X */ 25177c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 25187c478bd9Sstevel@tonic-gate 0x00, /* */ 25197c478bd9Sstevel@tonic-gate 0x00, /* */ 25207c478bd9Sstevel@tonic-gate 25217c478bd9Sstevel@tonic-gate /* 0xcb */ 25227c478bd9Sstevel@tonic-gate 0x00, /* */ 25237c478bd9Sstevel@tonic-gate 0x24, /* X X */ 25247c478bd9Sstevel@tonic-gate 0x00, /* */ 25257c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 25267c478bd9Sstevel@tonic-gate 0x40, /* X */ 25277c478bd9Sstevel@tonic-gate 0x40, /* X */ 25287c478bd9Sstevel@tonic-gate 0x40, /* X */ 25297c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 25307c478bd9Sstevel@tonic-gate 0x40, /* X */ 25317c478bd9Sstevel@tonic-gate 0x40, /* X */ 25327c478bd9Sstevel@tonic-gate 0x40, /* X */ 25337c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 25347c478bd9Sstevel@tonic-gate 0x00, /* */ 25357c478bd9Sstevel@tonic-gate 0x00, /* */ 25367c478bd9Sstevel@tonic-gate 25377c478bd9Sstevel@tonic-gate /* 0xcc */ 25387c478bd9Sstevel@tonic-gate 0x10, /* X */ 25397c478bd9Sstevel@tonic-gate 0x0c, /* XX */ 25407c478bd9Sstevel@tonic-gate 0x00, /* */ 25417c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 25427c478bd9Sstevel@tonic-gate 0x08, /* X */ 25437c478bd9Sstevel@tonic-gate 0x08, /* X */ 25447c478bd9Sstevel@tonic-gate 0x08, /* X */ 25457c478bd9Sstevel@tonic-gate 0x08, /* X */ 25467c478bd9Sstevel@tonic-gate 0x08, /* X */ 25477c478bd9Sstevel@tonic-gate 0x08, /* X */ 25487c478bd9Sstevel@tonic-gate 0x08, /* X */ 25497c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 25507c478bd9Sstevel@tonic-gate 0x00, /* */ 25517c478bd9Sstevel@tonic-gate 0x00, /* */ 25527c478bd9Sstevel@tonic-gate 25537c478bd9Sstevel@tonic-gate /* 0xcd */ 25547c478bd9Sstevel@tonic-gate 0x04, /* X */ 25557c478bd9Sstevel@tonic-gate 0x18, /* XX */ 25567c478bd9Sstevel@tonic-gate 0x00, /* */ 25577c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 25587c478bd9Sstevel@tonic-gate 0x08, /* X */ 25597c478bd9Sstevel@tonic-gate 0x08, /* X */ 25607c478bd9Sstevel@tonic-gate 0x08, /* X */ 25617c478bd9Sstevel@tonic-gate 0x08, /* X */ 25627c478bd9Sstevel@tonic-gate 0x08, /* X */ 25637c478bd9Sstevel@tonic-gate 0x08, /* X */ 25647c478bd9Sstevel@tonic-gate 0x08, /* X */ 25657c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 25667c478bd9Sstevel@tonic-gate 0x00, /* */ 25677c478bd9Sstevel@tonic-gate 0x00, /* */ 25687c478bd9Sstevel@tonic-gate 25697c478bd9Sstevel@tonic-gate /* 0xce */ 25707c478bd9Sstevel@tonic-gate 0x08, /* X */ 25717c478bd9Sstevel@tonic-gate 0x14, /* X X */ 25727c478bd9Sstevel@tonic-gate 0x00, /* */ 25737c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 25747c478bd9Sstevel@tonic-gate 0x08, /* X */ 25757c478bd9Sstevel@tonic-gate 0x08, /* X */ 25767c478bd9Sstevel@tonic-gate 0x08, /* X */ 25777c478bd9Sstevel@tonic-gate 0x08, /* X */ 25787c478bd9Sstevel@tonic-gate 0x08, /* X */ 25797c478bd9Sstevel@tonic-gate 0x08, /* X */ 25807c478bd9Sstevel@tonic-gate 0x08, /* X */ 25817c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 25827c478bd9Sstevel@tonic-gate 0x00, /* */ 25837c478bd9Sstevel@tonic-gate 0x00, /* */ 25847c478bd9Sstevel@tonic-gate 25857c478bd9Sstevel@tonic-gate /* 0xcf */ 25867c478bd9Sstevel@tonic-gate 0x00, /* */ 25877c478bd9Sstevel@tonic-gate 0x14, /* X X */ 25887c478bd9Sstevel@tonic-gate 0x00, /* */ 25897c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 25907c478bd9Sstevel@tonic-gate 0x08, /* X */ 25917c478bd9Sstevel@tonic-gate 0x08, /* X */ 25927c478bd9Sstevel@tonic-gate 0x08, /* X */ 25937c478bd9Sstevel@tonic-gate 0x08, /* X */ 25947c478bd9Sstevel@tonic-gate 0x08, /* X */ 25957c478bd9Sstevel@tonic-gate 0x08, /* X */ 25967c478bd9Sstevel@tonic-gate 0x08, /* X */ 25977c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 25987c478bd9Sstevel@tonic-gate 0x00, /* */ 25997c478bd9Sstevel@tonic-gate 0x00, /* */ 26007c478bd9Sstevel@tonic-gate 26017c478bd9Sstevel@tonic-gate /* 0xd0 */ 26027c478bd9Sstevel@tonic-gate 0x00, /* */ 26037c478bd9Sstevel@tonic-gate 0x00, /* */ 26047c478bd9Sstevel@tonic-gate 0x78, /* XXXX */ 26057c478bd9Sstevel@tonic-gate 0x44, /* X X */ 26067c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26077c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26087c478bd9Sstevel@tonic-gate 0xf2, /* XXXX X */ 26097c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26107c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26117c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26127c478bd9Sstevel@tonic-gate 0x44, /* X X */ 26137c478bd9Sstevel@tonic-gate 0x78, /* XXXX */ 26147c478bd9Sstevel@tonic-gate 0x00, /* */ 26157c478bd9Sstevel@tonic-gate 0x00, /* */ 26167c478bd9Sstevel@tonic-gate 26177c478bd9Sstevel@tonic-gate /* 0xd1 */ 26187c478bd9Sstevel@tonic-gate 0x14, /* X X */ 26197c478bd9Sstevel@tonic-gate 0x28, /* X X */ 26207c478bd9Sstevel@tonic-gate 0x00, /* */ 26217c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 26227c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 26237c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 26247c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 26257c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 26267c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 26277c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 26287c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 26297c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 26307c478bd9Sstevel@tonic-gate 0x00, /* */ 26317c478bd9Sstevel@tonic-gate 0x00, /* */ 26327c478bd9Sstevel@tonic-gate 26337c478bd9Sstevel@tonic-gate /* 0xd2 */ 26347c478bd9Sstevel@tonic-gate 0x20, /* X */ 26357c478bd9Sstevel@tonic-gate 0x18, /* XX */ 26367c478bd9Sstevel@tonic-gate 0x00, /* */ 26377c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 26387c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26397c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26407c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26417c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26427c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26437c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26447c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26457c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 26467c478bd9Sstevel@tonic-gate 0x00, /* */ 26477c478bd9Sstevel@tonic-gate 0x00, /* */ 26487c478bd9Sstevel@tonic-gate 26497c478bd9Sstevel@tonic-gate /* 0xd3 */ 26507c478bd9Sstevel@tonic-gate 0x04, /* X */ 26517c478bd9Sstevel@tonic-gate 0x18, /* XX */ 26527c478bd9Sstevel@tonic-gate 0x00, /* */ 26537c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 26547c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26557c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26567c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26577c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26587c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26597c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26607c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26617c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 26627c478bd9Sstevel@tonic-gate 0x00, /* */ 26637c478bd9Sstevel@tonic-gate 0x00, /* */ 26647c478bd9Sstevel@tonic-gate 26657c478bd9Sstevel@tonic-gate /* 0xd4 */ 26667c478bd9Sstevel@tonic-gate 0x18, /* XX */ 26677c478bd9Sstevel@tonic-gate 0x24, /* X X */ 26687c478bd9Sstevel@tonic-gate 0x00, /* */ 26697c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 26707c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26717c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26727c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26737c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26747c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26757c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26767c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26777c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 26787c478bd9Sstevel@tonic-gate 0x00, /* */ 26797c478bd9Sstevel@tonic-gate 0x00, /* */ 26807c478bd9Sstevel@tonic-gate 26817c478bd9Sstevel@tonic-gate /* 0xd5 */ 26827c478bd9Sstevel@tonic-gate 0x14, /* X X */ 26837c478bd9Sstevel@tonic-gate 0x28, /* X X */ 26847c478bd9Sstevel@tonic-gate 0x00, /* */ 26857c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 26867c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26877c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26887c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26897c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26907c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26917c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26927c478bd9Sstevel@tonic-gate 0x42, /* X X */ 26937c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 26947c478bd9Sstevel@tonic-gate 0x00, /* */ 26957c478bd9Sstevel@tonic-gate 0x00, /* */ 26967c478bd9Sstevel@tonic-gate 26977c478bd9Sstevel@tonic-gate /* 0xd6 */ 26987c478bd9Sstevel@tonic-gate 0x00, /* */ 26997c478bd9Sstevel@tonic-gate 0x24, /* X X */ 27007c478bd9Sstevel@tonic-gate 0x00, /* */ 27017c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 27027c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27037c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27047c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27057c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27067c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27077c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27087c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27097c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 27107c478bd9Sstevel@tonic-gate 0x00, /* */ 27117c478bd9Sstevel@tonic-gate 0x00, /* */ 27127c478bd9Sstevel@tonic-gate 27137c478bd9Sstevel@tonic-gate /* 0xd7 */ 27147c478bd9Sstevel@tonic-gate 0x00, /* */ 27157c478bd9Sstevel@tonic-gate 0x00, /* */ 27167c478bd9Sstevel@tonic-gate 0x00, /* */ 27177c478bd9Sstevel@tonic-gate 0x00, /* */ 27187c478bd9Sstevel@tonic-gate 0x00, /* */ 27197c478bd9Sstevel@tonic-gate 0x82, /* X X */ 27207c478bd9Sstevel@tonic-gate 0x44, /* X X */ 27217c478bd9Sstevel@tonic-gate 0x28, /* X X */ 27227c478bd9Sstevel@tonic-gate 0x10, /* X */ 27237c478bd9Sstevel@tonic-gate 0x28, /* X X */ 27247c478bd9Sstevel@tonic-gate 0x44, /* X X */ 27257c478bd9Sstevel@tonic-gate 0x82, /* X X */ 27267c478bd9Sstevel@tonic-gate 0x00, /* */ 27277c478bd9Sstevel@tonic-gate 0x00, /* */ 27287c478bd9Sstevel@tonic-gate 27297c478bd9Sstevel@tonic-gate /* 0xd8 */ 27307c478bd9Sstevel@tonic-gate 0x02, /* X */ 27317c478bd9Sstevel@tonic-gate 0x02, /* X */ 27327c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 27337c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 27347c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 27357c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 27367c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 27377c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 27387c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 27397c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 27407c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 27417c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 27427c478bd9Sstevel@tonic-gate 0x40, /* X */ 27437c478bd9Sstevel@tonic-gate 0x40, /* X */ 27447c478bd9Sstevel@tonic-gate 27457c478bd9Sstevel@tonic-gate /* 0xd9 */ 27467c478bd9Sstevel@tonic-gate 0x20, /* X */ 27477c478bd9Sstevel@tonic-gate 0x18, /* XX */ 27487c478bd9Sstevel@tonic-gate 0x00, /* */ 27497c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27507c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27517c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27527c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27537c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27547c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27557c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27567c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27577c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 27587c478bd9Sstevel@tonic-gate 0x00, /* */ 27597c478bd9Sstevel@tonic-gate 0x00, /* */ 27607c478bd9Sstevel@tonic-gate 27617c478bd9Sstevel@tonic-gate /* 0xda */ 27627c478bd9Sstevel@tonic-gate 0x04, /* X */ 27637c478bd9Sstevel@tonic-gate 0x18, /* XX */ 27647c478bd9Sstevel@tonic-gate 0x00, /* */ 27657c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27667c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27677c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27687c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27697c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27707c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27717c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27727c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27737c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 27747c478bd9Sstevel@tonic-gate 0x00, /* */ 27757c478bd9Sstevel@tonic-gate 0x00, /* */ 27767c478bd9Sstevel@tonic-gate 27777c478bd9Sstevel@tonic-gate /* 0xdb */ 27787c478bd9Sstevel@tonic-gate 0x18, /* XX */ 27797c478bd9Sstevel@tonic-gate 0x24, /* X X */ 27807c478bd9Sstevel@tonic-gate 0x00, /* */ 27817c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27827c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27837c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27847c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27857c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27867c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27877c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27887c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27897c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 27907c478bd9Sstevel@tonic-gate 0x00, /* */ 27917c478bd9Sstevel@tonic-gate 0x00, /* */ 27927c478bd9Sstevel@tonic-gate 27937c478bd9Sstevel@tonic-gate /* 0xdc */ 27947c478bd9Sstevel@tonic-gate 0x00, /* */ 27957c478bd9Sstevel@tonic-gate 0x24, /* X X */ 27967c478bd9Sstevel@tonic-gate 0x00, /* */ 27977c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27987c478bd9Sstevel@tonic-gate 0x42, /* X X */ 27997c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28007c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28017c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28027c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28037c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28047c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28057c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 28067c478bd9Sstevel@tonic-gate 0x00, /* */ 28077c478bd9Sstevel@tonic-gate 0x00, /* */ 28087c478bd9Sstevel@tonic-gate 28097c478bd9Sstevel@tonic-gate /* 0xdd */ 28107c478bd9Sstevel@tonic-gate 0x04, /* X */ 28117c478bd9Sstevel@tonic-gate 0x18, /* XX */ 28127c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28137c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28147c478bd9Sstevel@tonic-gate 0x44, /* X X */ 28157c478bd9Sstevel@tonic-gate 0x24, /* X X */ 28167c478bd9Sstevel@tonic-gate 0x28, /* X X */ 28177c478bd9Sstevel@tonic-gate 0x18, /* XX */ 28187c478bd9Sstevel@tonic-gate 0x10, /* X */ 28197c478bd9Sstevel@tonic-gate 0x10, /* X */ 28207c478bd9Sstevel@tonic-gate 0x10, /* X */ 28217c478bd9Sstevel@tonic-gate 0x10, /* X */ 28227c478bd9Sstevel@tonic-gate 0x00, /* */ 28237c478bd9Sstevel@tonic-gate 0x00, /* */ 28247c478bd9Sstevel@tonic-gate 28257c478bd9Sstevel@tonic-gate /* 0xde */ 28267c478bd9Sstevel@tonic-gate 0x00, /* */ 28277c478bd9Sstevel@tonic-gate 0x00, /* */ 28287c478bd9Sstevel@tonic-gate 0x40, /* X */ 28297c478bd9Sstevel@tonic-gate 0x40, /* X */ 28307c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 28317c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28327c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28337c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28347c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28357c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 28367c478bd9Sstevel@tonic-gate 0x40, /* X */ 28377c478bd9Sstevel@tonic-gate 0x40, /* X */ 28387c478bd9Sstevel@tonic-gate 0x00, /* */ 28397c478bd9Sstevel@tonic-gate 0x00, /* */ 28407c478bd9Sstevel@tonic-gate 28417c478bd9Sstevel@tonic-gate /* 0xdf */ 28427c478bd9Sstevel@tonic-gate 0x00, /* */ 28437c478bd9Sstevel@tonic-gate 0x00, /* */ 28447c478bd9Sstevel@tonic-gate 0x18, /* XX */ 28457c478bd9Sstevel@tonic-gate 0x24, /* X X */ 28467c478bd9Sstevel@tonic-gate 0x24, /* X X */ 28477c478bd9Sstevel@tonic-gate 0x24, /* X X */ 28487c478bd9Sstevel@tonic-gate 0x38, /* XXX */ 28497c478bd9Sstevel@tonic-gate 0x24, /* X X */ 28507c478bd9Sstevel@tonic-gate 0x22, /* X X */ 28517c478bd9Sstevel@tonic-gate 0x22, /* X X */ 28527c478bd9Sstevel@tonic-gate 0x22, /* X X */ 28537c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 28547c478bd9Sstevel@tonic-gate 0x00, /* */ 28557c478bd9Sstevel@tonic-gate 0x00, /* */ 28567c478bd9Sstevel@tonic-gate 28577c478bd9Sstevel@tonic-gate /* 0xe0 */ 28587c478bd9Sstevel@tonic-gate 0x00, /* */ 28597c478bd9Sstevel@tonic-gate 0x20, /* X */ 28607c478bd9Sstevel@tonic-gate 0x10, /* X */ 28617c478bd9Sstevel@tonic-gate 0x08, /* X */ 28627c478bd9Sstevel@tonic-gate 0x00, /* */ 28637c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 28647c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28657c478bd9Sstevel@tonic-gate 0x0e, /* XXX */ 28667c478bd9Sstevel@tonic-gate 0x32, /* XX X */ 28677c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28687c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 28697c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 28707c478bd9Sstevel@tonic-gate 0x00, /* */ 28717c478bd9Sstevel@tonic-gate 0x00, /* */ 28727c478bd9Sstevel@tonic-gate 28737c478bd9Sstevel@tonic-gate /* 0xe1 */ 28747c478bd9Sstevel@tonic-gate 0x00, /* */ 28757c478bd9Sstevel@tonic-gate 0x04, /* X */ 28767c478bd9Sstevel@tonic-gate 0x08, /* X */ 28777c478bd9Sstevel@tonic-gate 0x10, /* X */ 28787c478bd9Sstevel@tonic-gate 0x00, /* */ 28797c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 28807c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28817c478bd9Sstevel@tonic-gate 0x0e, /* XXX */ 28827c478bd9Sstevel@tonic-gate 0x32, /* XX X */ 28837c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28847c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 28857c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 28867c478bd9Sstevel@tonic-gate 0x00, /* */ 28877c478bd9Sstevel@tonic-gate 0x00, /* */ 28887c478bd9Sstevel@tonic-gate 28897c478bd9Sstevel@tonic-gate /* 0xe2 */ 28907c478bd9Sstevel@tonic-gate 0x00, /* */ 28917c478bd9Sstevel@tonic-gate 0x00, /* */ 28927c478bd9Sstevel@tonic-gate 0x18, /* XX */ 28937c478bd9Sstevel@tonic-gate 0x24, /* X X */ 28947c478bd9Sstevel@tonic-gate 0x00, /* */ 28957c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 28967c478bd9Sstevel@tonic-gate 0x42, /* X X */ 28977c478bd9Sstevel@tonic-gate 0x0e, /* XXX */ 28987c478bd9Sstevel@tonic-gate 0x32, /* XX X */ 28997c478bd9Sstevel@tonic-gate 0x42, /* X X */ 29007c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 29017c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 29027c478bd9Sstevel@tonic-gate 0x00, /* */ 29037c478bd9Sstevel@tonic-gate 0x00, /* */ 29047c478bd9Sstevel@tonic-gate 29057c478bd9Sstevel@tonic-gate /* 0xe3 */ 29067c478bd9Sstevel@tonic-gate 0x00, /* */ 29077c478bd9Sstevel@tonic-gate 0x00, /* */ 29087c478bd9Sstevel@tonic-gate 0x14, /* X X */ 29097c478bd9Sstevel@tonic-gate 0x28, /* X X */ 29107c478bd9Sstevel@tonic-gate 0x00, /* */ 29117c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 29127c478bd9Sstevel@tonic-gate 0x42, /* X X */ 29137c478bd9Sstevel@tonic-gate 0x0e, /* XXX */ 29147c478bd9Sstevel@tonic-gate 0x32, /* XX X */ 29157c478bd9Sstevel@tonic-gate 0x42, /* X X */ 29167c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 29177c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 29187c478bd9Sstevel@tonic-gate 0x00, /* */ 29197c478bd9Sstevel@tonic-gate 0x00, /* */ 29207c478bd9Sstevel@tonic-gate 29217c478bd9Sstevel@tonic-gate /* 0xe4 */ 29227c478bd9Sstevel@tonic-gate 0x00, /* */ 29237c478bd9Sstevel@tonic-gate 0x00, /* */ 29247c478bd9Sstevel@tonic-gate 0x00, /* */ 29257c478bd9Sstevel@tonic-gate 0x24, /* X X */ 29267c478bd9Sstevel@tonic-gate 0x00, /* */ 29277c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 29287c478bd9Sstevel@tonic-gate 0x42, /* X X */ 29297c478bd9Sstevel@tonic-gate 0x0e, /* XXX */ 29307c478bd9Sstevel@tonic-gate 0x32, /* XX X */ 29317c478bd9Sstevel@tonic-gate 0x42, /* X X */ 29327c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 29337c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 29347c478bd9Sstevel@tonic-gate 0x00, /* */ 29357c478bd9Sstevel@tonic-gate 0x00, /* */ 29367c478bd9Sstevel@tonic-gate 29377c478bd9Sstevel@tonic-gate /* 0xe5 */ 29387c478bd9Sstevel@tonic-gate 0x00, /* */ 29397c478bd9Sstevel@tonic-gate 0x10, /* X */ 29407c478bd9Sstevel@tonic-gate 0x28, /* X X */ 29417c478bd9Sstevel@tonic-gate 0x10, /* X */ 29427c478bd9Sstevel@tonic-gate 0x00, /* */ 29437c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 29447c478bd9Sstevel@tonic-gate 0x42, /* X X */ 29457c478bd9Sstevel@tonic-gate 0x0e, /* XXX */ 29467c478bd9Sstevel@tonic-gate 0x32, /* XX X */ 29477c478bd9Sstevel@tonic-gate 0x42, /* X X */ 29487c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 29497c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 29507c478bd9Sstevel@tonic-gate 0x00, /* */ 29517c478bd9Sstevel@tonic-gate 0x00, /* */ 29527c478bd9Sstevel@tonic-gate 29537c478bd9Sstevel@tonic-gate /* 0xe6 */ 29547c478bd9Sstevel@tonic-gate 0x00, /* */ 29557c478bd9Sstevel@tonic-gate 0x00, /* */ 29567c478bd9Sstevel@tonic-gate 0x00, /* */ 29577c478bd9Sstevel@tonic-gate 0x00, /* */ 29587c478bd9Sstevel@tonic-gate 0x00, /* */ 29597c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 29607c478bd9Sstevel@tonic-gate 0x92, /* X X X */ 29617c478bd9Sstevel@tonic-gate 0x32, /* XX X */ 29627c478bd9Sstevel@tonic-gate 0x5e, /* X XXXX */ 29637c478bd9Sstevel@tonic-gate 0x90, /* X X */ 29647c478bd9Sstevel@tonic-gate 0x92, /* X X X */ 29657c478bd9Sstevel@tonic-gate 0x7c, /* XXXXX */ 29667c478bd9Sstevel@tonic-gate 0x00, /* */ 29677c478bd9Sstevel@tonic-gate 0x00, /* */ 29687c478bd9Sstevel@tonic-gate 29697c478bd9Sstevel@tonic-gate /* 0xe7 */ 29707c478bd9Sstevel@tonic-gate 0x00, /* */ 29717c478bd9Sstevel@tonic-gate 0x00, /* */ 29727c478bd9Sstevel@tonic-gate 0x00, /* */ 29737c478bd9Sstevel@tonic-gate 0x00, /* */ 29747c478bd9Sstevel@tonic-gate 0x00, /* */ 29757c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 29767c478bd9Sstevel@tonic-gate 0x42, /* X X */ 29777c478bd9Sstevel@tonic-gate 0x40, /* X */ 29787c478bd9Sstevel@tonic-gate 0x40, /* X */ 29797c478bd9Sstevel@tonic-gate 0x40, /* X */ 29807c478bd9Sstevel@tonic-gate 0x42, /* X X */ 29817c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 29827c478bd9Sstevel@tonic-gate 0x08, /* X */ 29837c478bd9Sstevel@tonic-gate 0x10, /* X */ 29847c478bd9Sstevel@tonic-gate 29857c478bd9Sstevel@tonic-gate /* 0xe8 */ 29867c478bd9Sstevel@tonic-gate 0x00, /* */ 29877c478bd9Sstevel@tonic-gate 0x20, /* X */ 29887c478bd9Sstevel@tonic-gate 0x10, /* X */ 29897c478bd9Sstevel@tonic-gate 0x08, /* X */ 29907c478bd9Sstevel@tonic-gate 0x00, /* */ 29917c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 29927c478bd9Sstevel@tonic-gate 0x42, /* X X */ 29937c478bd9Sstevel@tonic-gate 0x42, /* X X */ 29947c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 29957c478bd9Sstevel@tonic-gate 0x40, /* X */ 29967c478bd9Sstevel@tonic-gate 0x42, /* X X */ 29977c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 29987c478bd9Sstevel@tonic-gate 0x00, /* */ 29997c478bd9Sstevel@tonic-gate 0x00, /* */ 30007c478bd9Sstevel@tonic-gate 30017c478bd9Sstevel@tonic-gate /* 0xe9 */ 30027c478bd9Sstevel@tonic-gate 0x00, /* */ 30037c478bd9Sstevel@tonic-gate 0x04, /* X */ 30047c478bd9Sstevel@tonic-gate 0x08, /* X */ 30057c478bd9Sstevel@tonic-gate 0x10, /* X */ 30067c478bd9Sstevel@tonic-gate 0x00, /* */ 30077c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 30087c478bd9Sstevel@tonic-gate 0x42, /* X X */ 30097c478bd9Sstevel@tonic-gate 0x42, /* X X */ 30107c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 30117c478bd9Sstevel@tonic-gate 0x40, /* X */ 30127c478bd9Sstevel@tonic-gate 0x42, /* X X */ 30137c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 30147c478bd9Sstevel@tonic-gate 0x00, /* */ 30157c478bd9Sstevel@tonic-gate 0x00, /* */ 30167c478bd9Sstevel@tonic-gate 30177c478bd9Sstevel@tonic-gate /* 0xea */ 30187c478bd9Sstevel@tonic-gate 0x00, /* */ 30197c478bd9Sstevel@tonic-gate 0x00, /* */ 30207c478bd9Sstevel@tonic-gate 0x18, /* XX */ 30217c478bd9Sstevel@tonic-gate 0x24, /* X X */ 30227c478bd9Sstevel@tonic-gate 0x00, /* */ 30237c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 30247c478bd9Sstevel@tonic-gate 0x42, /* X X */ 30257c478bd9Sstevel@tonic-gate 0x42, /* X X */ 30267c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 30277c478bd9Sstevel@tonic-gate 0x40, /* X */ 30287c478bd9Sstevel@tonic-gate 0x42, /* X X */ 30297c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 30307c478bd9Sstevel@tonic-gate 0x00, /* */ 30317c478bd9Sstevel@tonic-gate 0x00, /* */ 30327c478bd9Sstevel@tonic-gate 30337c478bd9Sstevel@tonic-gate /* 0xeb */ 30347c478bd9Sstevel@tonic-gate 0x00, /* */ 30357c478bd9Sstevel@tonic-gate 0x00, /* */ 30367c478bd9Sstevel@tonic-gate 0x00, /* */ 30377c478bd9Sstevel@tonic-gate 0x24, /* X X */ 30387c478bd9Sstevel@tonic-gate 0x00, /* */ 30397c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 30407c478bd9Sstevel@tonic-gate 0x42, /* X X */ 30417c478bd9Sstevel@tonic-gate 0x42, /* X X */ 30427c478bd9Sstevel@tonic-gate 0x7e, /* XXXXXX */ 30437c478bd9Sstevel@tonic-gate 0x40, /* X */ 30447c478bd9Sstevel@tonic-gate 0x42, /* X X */ 30457c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 30467c478bd9Sstevel@tonic-gate 0x00, /* */ 30477c478bd9Sstevel@tonic-gate 0x00, /* */ 30487c478bd9Sstevel@tonic-gate 30497c478bd9Sstevel@tonic-gate /* 0xec */ 30507c478bd9Sstevel@tonic-gate 0x00, /* */ 30517c478bd9Sstevel@tonic-gate 0x10, /* X */ 30527c478bd9Sstevel@tonic-gate 0x08, /* X */ 30537c478bd9Sstevel@tonic-gate 0x04, /* X */ 30547c478bd9Sstevel@tonic-gate 0x00, /* */ 30557c478bd9Sstevel@tonic-gate 0x18, /* XX */ 30567c478bd9Sstevel@tonic-gate 0x08, /* X */ 30577c478bd9Sstevel@tonic-gate 0x08, /* X */ 30587c478bd9Sstevel@tonic-gate 0x08, /* X */ 30597c478bd9Sstevel@tonic-gate 0x08, /* X */ 30607c478bd9Sstevel@tonic-gate 0x08, /* X */ 30617c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 30627c478bd9Sstevel@tonic-gate 0x00, /* */ 30637c478bd9Sstevel@tonic-gate 0x00, /* */ 30647c478bd9Sstevel@tonic-gate 30657c478bd9Sstevel@tonic-gate /* 0xed */ 30667c478bd9Sstevel@tonic-gate 0x00, /* */ 30677c478bd9Sstevel@tonic-gate 0x04, /* X */ 30687c478bd9Sstevel@tonic-gate 0x08, /* X */ 30697c478bd9Sstevel@tonic-gate 0x10, /* X */ 30707c478bd9Sstevel@tonic-gate 0x00, /* */ 30717c478bd9Sstevel@tonic-gate 0x18, /* XX */ 30727c478bd9Sstevel@tonic-gate 0x08, /* X */ 30737c478bd9Sstevel@tonic-gate 0x08, /* X */ 30747c478bd9Sstevel@tonic-gate 0x08, /* X */ 30757c478bd9Sstevel@tonic-gate 0x08, /* X */ 30767c478bd9Sstevel@tonic-gate 0x08, /* X */ 30777c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 30787c478bd9Sstevel@tonic-gate 0x00, /* */ 30797c478bd9Sstevel@tonic-gate 0x00, /* */ 30807c478bd9Sstevel@tonic-gate 30817c478bd9Sstevel@tonic-gate /* 0xee */ 30827c478bd9Sstevel@tonic-gate 0x00, /* */ 30837c478bd9Sstevel@tonic-gate 0x00, /* */ 30847c478bd9Sstevel@tonic-gate 0x18, /* XX */ 30857c478bd9Sstevel@tonic-gate 0x24, /* X X */ 30867c478bd9Sstevel@tonic-gate 0x00, /* */ 30877c478bd9Sstevel@tonic-gate 0x18, /* XX */ 30887c478bd9Sstevel@tonic-gate 0x08, /* X */ 30897c478bd9Sstevel@tonic-gate 0x08, /* X */ 30907c478bd9Sstevel@tonic-gate 0x08, /* X */ 30917c478bd9Sstevel@tonic-gate 0x08, /* X */ 30927c478bd9Sstevel@tonic-gate 0x08, /* X */ 30937c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 30947c478bd9Sstevel@tonic-gate 0x00, /* */ 30957c478bd9Sstevel@tonic-gate 0x00, /* */ 30967c478bd9Sstevel@tonic-gate 30977c478bd9Sstevel@tonic-gate /* 0xef */ 30987c478bd9Sstevel@tonic-gate 0x00, /* */ 30997c478bd9Sstevel@tonic-gate 0x00, /* */ 31007c478bd9Sstevel@tonic-gate 0x00, /* */ 31017c478bd9Sstevel@tonic-gate 0x14, /* X X */ 31027c478bd9Sstevel@tonic-gate 0x00, /* */ 31037c478bd9Sstevel@tonic-gate 0x18, /* XX */ 31047c478bd9Sstevel@tonic-gate 0x08, /* X */ 31057c478bd9Sstevel@tonic-gate 0x08, /* X */ 31067c478bd9Sstevel@tonic-gate 0x08, /* X */ 31077c478bd9Sstevel@tonic-gate 0x08, /* X */ 31087c478bd9Sstevel@tonic-gate 0x08, /* X */ 31097c478bd9Sstevel@tonic-gate 0x3e, /* XXXXX */ 31107c478bd9Sstevel@tonic-gate 0x00, /* */ 31117c478bd9Sstevel@tonic-gate 0x00, /* */ 31127c478bd9Sstevel@tonic-gate 31137c478bd9Sstevel@tonic-gate /* 0xf0 */ 31147c478bd9Sstevel@tonic-gate 0x00, /* */ 31157c478bd9Sstevel@tonic-gate 0x28, /* X X */ 31167c478bd9Sstevel@tonic-gate 0x10, /* X */ 31177c478bd9Sstevel@tonic-gate 0x28, /* X X */ 31187c478bd9Sstevel@tonic-gate 0x04, /* X */ 31197c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 31207c478bd9Sstevel@tonic-gate 0x44, /* X X */ 31217c478bd9Sstevel@tonic-gate 0x44, /* X X */ 31227c478bd9Sstevel@tonic-gate 0x44, /* X X */ 31237c478bd9Sstevel@tonic-gate 0x44, /* X X */ 31247c478bd9Sstevel@tonic-gate 0x44, /* X X */ 31257c478bd9Sstevel@tonic-gate 0x38, /* XXX */ 31267c478bd9Sstevel@tonic-gate 0x00, /* */ 31277c478bd9Sstevel@tonic-gate 0x00, /* */ 31287c478bd9Sstevel@tonic-gate 31297c478bd9Sstevel@tonic-gate /* 0xf1 */ 31307c478bd9Sstevel@tonic-gate 0x00, /* */ 31317c478bd9Sstevel@tonic-gate 0x00, /* */ 31327c478bd9Sstevel@tonic-gate 0x14, /* X X */ 31337c478bd9Sstevel@tonic-gate 0x28, /* X X */ 31347c478bd9Sstevel@tonic-gate 0x00, /* */ 31357c478bd9Sstevel@tonic-gate 0x5c, /* X XXX */ 31367c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 31377c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31387c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31397c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31407c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31417c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31427c478bd9Sstevel@tonic-gate 0x00, /* */ 31437c478bd9Sstevel@tonic-gate 0x00, /* */ 31447c478bd9Sstevel@tonic-gate 31457c478bd9Sstevel@tonic-gate /* 0xf2 */ 31467c478bd9Sstevel@tonic-gate 0x00, /* */ 31477c478bd9Sstevel@tonic-gate 0x20, /* X */ 31487c478bd9Sstevel@tonic-gate 0x10, /* X */ 31497c478bd9Sstevel@tonic-gate 0x08, /* X */ 31507c478bd9Sstevel@tonic-gate 0x00, /* */ 31517c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 31527c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31537c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31547c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31557c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31567c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31577c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 31587c478bd9Sstevel@tonic-gate 0x00, /* */ 31597c478bd9Sstevel@tonic-gate 0x00, /* */ 31607c478bd9Sstevel@tonic-gate 31617c478bd9Sstevel@tonic-gate /* 0xf3 */ 31627c478bd9Sstevel@tonic-gate 0x00, /* */ 31637c478bd9Sstevel@tonic-gate 0x04, /* X */ 31647c478bd9Sstevel@tonic-gate 0x08, /* X */ 31657c478bd9Sstevel@tonic-gate 0x10, /* X */ 31667c478bd9Sstevel@tonic-gate 0x00, /* */ 31677c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 31687c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31697c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31707c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31717c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31727c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31737c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 31747c478bd9Sstevel@tonic-gate 0x00, /* */ 31757c478bd9Sstevel@tonic-gate 0x00, /* */ 31767c478bd9Sstevel@tonic-gate 31777c478bd9Sstevel@tonic-gate /* 0xf4 */ 31787c478bd9Sstevel@tonic-gate 0x00, /* */ 31797c478bd9Sstevel@tonic-gate 0x00, /* */ 31807c478bd9Sstevel@tonic-gate 0x18, /* XX */ 31817c478bd9Sstevel@tonic-gate 0x24, /* X X */ 31827c478bd9Sstevel@tonic-gate 0x00, /* */ 31837c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 31847c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31857c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31867c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31877c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31887c478bd9Sstevel@tonic-gate 0x42, /* X X */ 31897c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 31907c478bd9Sstevel@tonic-gate 0x00, /* */ 31917c478bd9Sstevel@tonic-gate 0x00, /* */ 31927c478bd9Sstevel@tonic-gate 31937c478bd9Sstevel@tonic-gate /* 0xf5 */ 31947c478bd9Sstevel@tonic-gate 0x00, /* */ 31957c478bd9Sstevel@tonic-gate 0x00, /* */ 31967c478bd9Sstevel@tonic-gate 0x14, /* X X */ 31977c478bd9Sstevel@tonic-gate 0x28, /* X X */ 31987c478bd9Sstevel@tonic-gate 0x00, /* */ 31997c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 32007c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32017c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32027c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32037c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32047c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32057c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 32067c478bd9Sstevel@tonic-gate 0x00, /* */ 32077c478bd9Sstevel@tonic-gate 0x00, /* */ 32087c478bd9Sstevel@tonic-gate 32097c478bd9Sstevel@tonic-gate /* 0xf6 */ 32107c478bd9Sstevel@tonic-gate 0x00, /* */ 32117c478bd9Sstevel@tonic-gate 0x00, /* */ 32127c478bd9Sstevel@tonic-gate 0x00, /* */ 32137c478bd9Sstevel@tonic-gate 0x24, /* X X */ 32147c478bd9Sstevel@tonic-gate 0x00, /* */ 32157c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 32167c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32177c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32187c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32197c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32207c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32217c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 32227c478bd9Sstevel@tonic-gate 0x00, /* */ 32237c478bd9Sstevel@tonic-gate 0x00, /* */ 32247c478bd9Sstevel@tonic-gate 32257c478bd9Sstevel@tonic-gate /* 0xf7 */ 32267c478bd9Sstevel@tonic-gate 0x00, /* */ 32277c478bd9Sstevel@tonic-gate 0x00, /* */ 32287c478bd9Sstevel@tonic-gate 0x00, /* */ 32297c478bd9Sstevel@tonic-gate 0x00, /* */ 32307c478bd9Sstevel@tonic-gate 0x00, /* */ 32317c478bd9Sstevel@tonic-gate 0x00, /* */ 32327c478bd9Sstevel@tonic-gate 0x00, /* */ 32337c478bd9Sstevel@tonic-gate 0x30, /* XX */ 32347c478bd9Sstevel@tonic-gate 0x00, /* */ 32357c478bd9Sstevel@tonic-gate 0xfc, /* XXXXXX */ 32367c478bd9Sstevel@tonic-gate 0x00, /* */ 32377c478bd9Sstevel@tonic-gate 0x30, /* XX */ 32387c478bd9Sstevel@tonic-gate 0x00, /* */ 32397c478bd9Sstevel@tonic-gate 0x00, /* */ 32407c478bd9Sstevel@tonic-gate 32417c478bd9Sstevel@tonic-gate /* 0xf8 */ 32427c478bd9Sstevel@tonic-gate 0x00, /* */ 32437c478bd9Sstevel@tonic-gate 0x00, /* */ 32447c478bd9Sstevel@tonic-gate 0x00, /* */ 32457c478bd9Sstevel@tonic-gate 0x02, /* X */ 32467c478bd9Sstevel@tonic-gate 0x04, /* X */ 32477c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 32487c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 32497c478bd9Sstevel@tonic-gate 0x4a, /* X X X */ 32507c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 32517c478bd9Sstevel@tonic-gate 0x52, /* X X X */ 32527c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 32537c478bd9Sstevel@tonic-gate 0x3c, /* XXXX */ 32547c478bd9Sstevel@tonic-gate 0x40, /* X */ 32557c478bd9Sstevel@tonic-gate 0x40, /* X */ 32567c478bd9Sstevel@tonic-gate 32577c478bd9Sstevel@tonic-gate /* 0xf9 */ 32587c478bd9Sstevel@tonic-gate 0x00, /* */ 32597c478bd9Sstevel@tonic-gate 0x00, /* */ 32607c478bd9Sstevel@tonic-gate 0x20, /* X */ 32617c478bd9Sstevel@tonic-gate 0x10, /* X */ 32627c478bd9Sstevel@tonic-gate 0x08, /* X */ 32637c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32647c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32657c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32667c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32677c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32687c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 32697c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 32707c478bd9Sstevel@tonic-gate 0x00, /* */ 32717c478bd9Sstevel@tonic-gate 0x00, /* */ 32727c478bd9Sstevel@tonic-gate 32737c478bd9Sstevel@tonic-gate /* 0xfa */ 32747c478bd9Sstevel@tonic-gate 0x00, /* */ 32757c478bd9Sstevel@tonic-gate 0x00, /* */ 32767c478bd9Sstevel@tonic-gate 0x04, /* X */ 32777c478bd9Sstevel@tonic-gate 0x08, /* X */ 32787c478bd9Sstevel@tonic-gate 0x10, /* X */ 32797c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32807c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32817c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32827c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32837c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32847c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 32857c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 32867c478bd9Sstevel@tonic-gate 0x00, /* */ 32877c478bd9Sstevel@tonic-gate 0x00, /* */ 32887c478bd9Sstevel@tonic-gate 32897c478bd9Sstevel@tonic-gate /* 0xfb */ 32907c478bd9Sstevel@tonic-gate 0x00, /* */ 32917c478bd9Sstevel@tonic-gate 0x00, /* */ 32927c478bd9Sstevel@tonic-gate 0x18, /* XX */ 32937c478bd9Sstevel@tonic-gate 0x24, /* X X */ 32947c478bd9Sstevel@tonic-gate 0x00, /* */ 32957c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32967c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32977c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32987c478bd9Sstevel@tonic-gate 0x42, /* X X */ 32997c478bd9Sstevel@tonic-gate 0x42, /* X X */ 33007c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 33017c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 33027c478bd9Sstevel@tonic-gate 0x00, /* */ 33037c478bd9Sstevel@tonic-gate 0x00, /* */ 33047c478bd9Sstevel@tonic-gate 33057c478bd9Sstevel@tonic-gate /* 0xfc */ 33067c478bd9Sstevel@tonic-gate 0x00, /* */ 33077c478bd9Sstevel@tonic-gate 0x00, /* */ 33087c478bd9Sstevel@tonic-gate 0x00, /* */ 33097c478bd9Sstevel@tonic-gate 0x24, /* X X */ 33107c478bd9Sstevel@tonic-gate 0x00, /* */ 33117c478bd9Sstevel@tonic-gate 0x42, /* X X */ 33127c478bd9Sstevel@tonic-gate 0x42, /* X X */ 33137c478bd9Sstevel@tonic-gate 0x42, /* X X */ 33147c478bd9Sstevel@tonic-gate 0x42, /* X X */ 33157c478bd9Sstevel@tonic-gate 0x42, /* X X */ 33167c478bd9Sstevel@tonic-gate 0x46, /* X XX */ 33177c478bd9Sstevel@tonic-gate 0x3a, /* XXX X */ 33187c478bd9Sstevel@tonic-gate 0x00, /* */ 33197c478bd9Sstevel@tonic-gate 0x00, /* */ 33207c478bd9Sstevel@tonic-gate 33217c478bd9Sstevel@tonic-gate /* 0xfd */ 33227c478bd9Sstevel@tonic-gate 0x00, /* */ 33237c478bd9Sstevel@tonic-gate 0x00, /* */ 33247c478bd9Sstevel@tonic-gate 0x04, /* X */ 33257c478bd9Sstevel@tonic-gate 0x08, /* X */ 33267c478bd9Sstevel@tonic-gate 0x10, /* X */ 33277c478bd9Sstevel@tonic-gate 0x42, /* X X */ 33287c478bd9Sstevel@tonic-gate 0x42, /* X X */ 33297c478bd9Sstevel@tonic-gate 0x22, /* X X */ 33307c478bd9Sstevel@tonic-gate 0x24, /* X X */ 33317c478bd9Sstevel@tonic-gate 0x14, /* X X */ 33327c478bd9Sstevel@tonic-gate 0x1c, /* XXX */ 33337c478bd9Sstevel@tonic-gate 0x08, /* X */ 33347c478bd9Sstevel@tonic-gate 0x48, /* X X */ 33357c478bd9Sstevel@tonic-gate 0x30, /* XX */ 33367c478bd9Sstevel@tonic-gate 33377c478bd9Sstevel@tonic-gate /* 0xfe */ 33387c478bd9Sstevel@tonic-gate 0x00, /* */ 33397c478bd9Sstevel@tonic-gate 0x00, /* */ 33407c478bd9Sstevel@tonic-gate 0x40, /* X */ 33417c478bd9Sstevel@tonic-gate 0x40, /* X */ 33427c478bd9Sstevel@tonic-gate 0x40, /* X */ 33437c478bd9Sstevel@tonic-gate 0x5c, /* X XXX */ 33447c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 33457c478bd9Sstevel@tonic-gate 0x42, /* X X */ 33467c478bd9Sstevel@tonic-gate 0x42, /* X X */ 33477c478bd9Sstevel@tonic-gate 0x42, /* X X */ 33487c478bd9Sstevel@tonic-gate 0x62, /* XX X */ 33497c478bd9Sstevel@tonic-gate 0x5c, /* X XXX */ 33507c478bd9Sstevel@tonic-gate 0x40, /* X */ 33517c478bd9Sstevel@tonic-gate 0x40, /* X */ 33527c478bd9Sstevel@tonic-gate 33537c478bd9Sstevel@tonic-gate /* 0xff */ 33547c478bd9Sstevel@tonic-gate 0x00, /* */ 33557c478bd9Sstevel@tonic-gate 0x00, /* */ 33567c478bd9Sstevel@tonic-gate 0x00, /* */ 33577c478bd9Sstevel@tonic-gate 0x24, /* X X */ 33587c478bd9Sstevel@tonic-gate 0x00, /* */ 33597c478bd9Sstevel@tonic-gate 0x42, /* X X */ 33607c478bd9Sstevel@tonic-gate 0x42, /* X X */ 33617c478bd9Sstevel@tonic-gate 0x22, /* X X */ 33627c478bd9Sstevel@tonic-gate 0x24, /* X X */ 33637c478bd9Sstevel@tonic-gate 0x14, /* X X */ 33647c478bd9Sstevel@tonic-gate 0x1c, /* XXX */ 33657c478bd9Sstevel@tonic-gate 0x08, /* X */ 33667c478bd9Sstevel@tonic-gate 0x48, /* X X */ 33677c478bd9Sstevel@tonic-gate 0x30, /* XX */ 33687c478bd9Sstevel@tonic-gate }; 33697c478bd9Sstevel@tonic-gate 3370*fea9cb91Slq150181 static unsigned char *ENCODINGS[256] = { 33717c478bd9Sstevel@tonic-gate FONTDATA+238, 33727c478bd9Sstevel@tonic-gate FONTDATA+0, 33737c478bd9Sstevel@tonic-gate FONTDATA+14, 33747c478bd9Sstevel@tonic-gate FONTDATA+238, 33757c478bd9Sstevel@tonic-gate FONTDATA+238, 33767c478bd9Sstevel@tonic-gate FONTDATA+238, 33777c478bd9Sstevel@tonic-gate FONTDATA+238, 33787c478bd9Sstevel@tonic-gate FONTDATA+238, 33797c478bd9Sstevel@tonic-gate FONTDATA+238, 33807c478bd9Sstevel@tonic-gate FONTDATA+238, 33817c478bd9Sstevel@tonic-gate FONTDATA+238, 33827c478bd9Sstevel@tonic-gate FONTDATA+28, 33837c478bd9Sstevel@tonic-gate FONTDATA+42, 33847c478bd9Sstevel@tonic-gate FONTDATA+56, 33857c478bd9Sstevel@tonic-gate FONTDATA+70, 33867c478bd9Sstevel@tonic-gate FONTDATA+84, 33877c478bd9Sstevel@tonic-gate FONTDATA+98, 33887c478bd9Sstevel@tonic-gate FONTDATA+112, 33897c478bd9Sstevel@tonic-gate FONTDATA+126, 33907c478bd9Sstevel@tonic-gate FONTDATA+140, 33917c478bd9Sstevel@tonic-gate FONTDATA+154, 33927c478bd9Sstevel@tonic-gate FONTDATA+168, 33937c478bd9Sstevel@tonic-gate FONTDATA+182, 33947c478bd9Sstevel@tonic-gate FONTDATA+196, 33957c478bd9Sstevel@tonic-gate FONTDATA+210, 33967c478bd9Sstevel@tonic-gate FONTDATA+224, 33977c478bd9Sstevel@tonic-gate FONTDATA+238, 33987c478bd9Sstevel@tonic-gate FONTDATA+238, 33997c478bd9Sstevel@tonic-gate FONTDATA+238, 34007c478bd9Sstevel@tonic-gate FONTDATA+238, 34017c478bd9Sstevel@tonic-gate FONTDATA+238, 34027c478bd9Sstevel@tonic-gate FONTDATA+238, 34037c478bd9Sstevel@tonic-gate FONTDATA+238, 34047c478bd9Sstevel@tonic-gate FONTDATA+252, 34057c478bd9Sstevel@tonic-gate FONTDATA+266, 34067c478bd9Sstevel@tonic-gate FONTDATA+280, 34077c478bd9Sstevel@tonic-gate FONTDATA+294, 34087c478bd9Sstevel@tonic-gate FONTDATA+308, 34097c478bd9Sstevel@tonic-gate FONTDATA+322, 34107c478bd9Sstevel@tonic-gate FONTDATA+336, 34117c478bd9Sstevel@tonic-gate FONTDATA+350, 34127c478bd9Sstevel@tonic-gate FONTDATA+364, 34137c478bd9Sstevel@tonic-gate FONTDATA+378, 34147c478bd9Sstevel@tonic-gate FONTDATA+392, 34157c478bd9Sstevel@tonic-gate FONTDATA+406, 34167c478bd9Sstevel@tonic-gate FONTDATA+420, 34177c478bd9Sstevel@tonic-gate FONTDATA+434, 34187c478bd9Sstevel@tonic-gate FONTDATA+448, 34197c478bd9Sstevel@tonic-gate FONTDATA+462, 34207c478bd9Sstevel@tonic-gate FONTDATA+476, 34217c478bd9Sstevel@tonic-gate FONTDATA+490, 34227c478bd9Sstevel@tonic-gate FONTDATA+504, 34237c478bd9Sstevel@tonic-gate FONTDATA+518, 34247c478bd9Sstevel@tonic-gate FONTDATA+532, 34257c478bd9Sstevel@tonic-gate FONTDATA+546, 34267c478bd9Sstevel@tonic-gate FONTDATA+560, 34277c478bd9Sstevel@tonic-gate FONTDATA+574, 34287c478bd9Sstevel@tonic-gate FONTDATA+588, 34297c478bd9Sstevel@tonic-gate FONTDATA+602, 34307c478bd9Sstevel@tonic-gate FONTDATA+616, 34317c478bd9Sstevel@tonic-gate FONTDATA+630, 34327c478bd9Sstevel@tonic-gate FONTDATA+644, 34337c478bd9Sstevel@tonic-gate FONTDATA+658, 34347c478bd9Sstevel@tonic-gate FONTDATA+672, 34357c478bd9Sstevel@tonic-gate FONTDATA+686, 34367c478bd9Sstevel@tonic-gate FONTDATA+700, 34377c478bd9Sstevel@tonic-gate FONTDATA+714, 34387c478bd9Sstevel@tonic-gate FONTDATA+728, 34397c478bd9Sstevel@tonic-gate FONTDATA+742, 34407c478bd9Sstevel@tonic-gate FONTDATA+756, 34417c478bd9Sstevel@tonic-gate FONTDATA+770, 34427c478bd9Sstevel@tonic-gate FONTDATA+784, 34437c478bd9Sstevel@tonic-gate FONTDATA+798, 34447c478bd9Sstevel@tonic-gate FONTDATA+812, 34457c478bd9Sstevel@tonic-gate FONTDATA+826, 34467c478bd9Sstevel@tonic-gate FONTDATA+840, 34477c478bd9Sstevel@tonic-gate FONTDATA+854, 34487c478bd9Sstevel@tonic-gate FONTDATA+868, 34497c478bd9Sstevel@tonic-gate FONTDATA+882, 34507c478bd9Sstevel@tonic-gate FONTDATA+896, 34517c478bd9Sstevel@tonic-gate FONTDATA+910, 34527c478bd9Sstevel@tonic-gate FONTDATA+924, 34537c478bd9Sstevel@tonic-gate FONTDATA+938, 34547c478bd9Sstevel@tonic-gate FONTDATA+952, 34557c478bd9Sstevel@tonic-gate FONTDATA+966, 34567c478bd9Sstevel@tonic-gate FONTDATA+980, 34577c478bd9Sstevel@tonic-gate FONTDATA+994, 34587c478bd9Sstevel@tonic-gate FONTDATA+1008, 34597c478bd9Sstevel@tonic-gate FONTDATA+1022, 34607c478bd9Sstevel@tonic-gate FONTDATA+1036, 34617c478bd9Sstevel@tonic-gate FONTDATA+1050, 34627c478bd9Sstevel@tonic-gate FONTDATA+1064, 34637c478bd9Sstevel@tonic-gate FONTDATA+1078, 34647c478bd9Sstevel@tonic-gate FONTDATA+1092, 34657c478bd9Sstevel@tonic-gate FONTDATA+1106, 34667c478bd9Sstevel@tonic-gate FONTDATA+1120, 34677c478bd9Sstevel@tonic-gate FONTDATA+1134, 34687c478bd9Sstevel@tonic-gate FONTDATA+1148, 34697c478bd9Sstevel@tonic-gate FONTDATA+1162, 34707c478bd9Sstevel@tonic-gate FONTDATA+1176, 34717c478bd9Sstevel@tonic-gate FONTDATA+1190, 34727c478bd9Sstevel@tonic-gate FONTDATA+1204, 34737c478bd9Sstevel@tonic-gate FONTDATA+1218, 34747c478bd9Sstevel@tonic-gate FONTDATA+1232, 34757c478bd9Sstevel@tonic-gate FONTDATA+1246, 34767c478bd9Sstevel@tonic-gate FONTDATA+1260, 34777c478bd9Sstevel@tonic-gate FONTDATA+1274, 34787c478bd9Sstevel@tonic-gate FONTDATA+1288, 34797c478bd9Sstevel@tonic-gate FONTDATA+1302, 34807c478bd9Sstevel@tonic-gate FONTDATA+1316, 34817c478bd9Sstevel@tonic-gate FONTDATA+1330, 34827c478bd9Sstevel@tonic-gate FONTDATA+1344, 34837c478bd9Sstevel@tonic-gate FONTDATA+1358, 34847c478bd9Sstevel@tonic-gate FONTDATA+1372, 34857c478bd9Sstevel@tonic-gate FONTDATA+1386, 34867c478bd9Sstevel@tonic-gate FONTDATA+1400, 34877c478bd9Sstevel@tonic-gate FONTDATA+1414, 34887c478bd9Sstevel@tonic-gate FONTDATA+1428, 34897c478bd9Sstevel@tonic-gate FONTDATA+1442, 34907c478bd9Sstevel@tonic-gate FONTDATA+1456, 34917c478bd9Sstevel@tonic-gate FONTDATA+1470, 34927c478bd9Sstevel@tonic-gate FONTDATA+1484, 34937c478bd9Sstevel@tonic-gate FONTDATA+1498, 34947c478bd9Sstevel@tonic-gate FONTDATA+1512, 34957c478bd9Sstevel@tonic-gate FONTDATA+1526, 34967c478bd9Sstevel@tonic-gate FONTDATA+1540, 34977c478bd9Sstevel@tonic-gate FONTDATA+1554, 34987c478bd9Sstevel@tonic-gate FONTDATA+1568, 34997c478bd9Sstevel@tonic-gate FONTDATA+238, 35007c478bd9Sstevel@tonic-gate FONTDATA+238, 35017c478bd9Sstevel@tonic-gate FONTDATA+238, 35027c478bd9Sstevel@tonic-gate FONTDATA+238, 35037c478bd9Sstevel@tonic-gate FONTDATA+238, 35047c478bd9Sstevel@tonic-gate FONTDATA+238, 35057c478bd9Sstevel@tonic-gate FONTDATA+238, 35067c478bd9Sstevel@tonic-gate FONTDATA+238, 35077c478bd9Sstevel@tonic-gate FONTDATA+238, 35087c478bd9Sstevel@tonic-gate FONTDATA+238, 35097c478bd9Sstevel@tonic-gate FONTDATA+238, 35107c478bd9Sstevel@tonic-gate FONTDATA+238, 35117c478bd9Sstevel@tonic-gate FONTDATA+238, 35127c478bd9Sstevel@tonic-gate FONTDATA+238, 35137c478bd9Sstevel@tonic-gate FONTDATA+238, 35147c478bd9Sstevel@tonic-gate FONTDATA+238, 35157c478bd9Sstevel@tonic-gate FONTDATA+238, 35167c478bd9Sstevel@tonic-gate FONTDATA+238, 35177c478bd9Sstevel@tonic-gate FONTDATA+238, 35187c478bd9Sstevel@tonic-gate FONTDATA+238, 35197c478bd9Sstevel@tonic-gate FONTDATA+238, 35207c478bd9Sstevel@tonic-gate FONTDATA+238, 35217c478bd9Sstevel@tonic-gate FONTDATA+238, 35227c478bd9Sstevel@tonic-gate FONTDATA+238, 35237c478bd9Sstevel@tonic-gate FONTDATA+238, 35247c478bd9Sstevel@tonic-gate FONTDATA+238, 35257c478bd9Sstevel@tonic-gate FONTDATA+238, 35267c478bd9Sstevel@tonic-gate FONTDATA+238, 35277c478bd9Sstevel@tonic-gate FONTDATA+238, 35287c478bd9Sstevel@tonic-gate FONTDATA+238, 35297c478bd9Sstevel@tonic-gate FONTDATA+238, 35307c478bd9Sstevel@tonic-gate FONTDATA+238, 35317c478bd9Sstevel@tonic-gate FONTDATA+1582, 35327c478bd9Sstevel@tonic-gate FONTDATA+1596, 35337c478bd9Sstevel@tonic-gate FONTDATA+1610, 35347c478bd9Sstevel@tonic-gate FONTDATA+1624, 35357c478bd9Sstevel@tonic-gate FONTDATA+1638, 35367c478bd9Sstevel@tonic-gate FONTDATA+1652, 35377c478bd9Sstevel@tonic-gate FONTDATA+1666, 35387c478bd9Sstevel@tonic-gate FONTDATA+1680, 35397c478bd9Sstevel@tonic-gate FONTDATA+1694, 35407c478bd9Sstevel@tonic-gate FONTDATA+1708, 35417c478bd9Sstevel@tonic-gate FONTDATA+1722, 35427c478bd9Sstevel@tonic-gate FONTDATA+1736, 35437c478bd9Sstevel@tonic-gate FONTDATA+1750, 35447c478bd9Sstevel@tonic-gate FONTDATA+1764, 35457c478bd9Sstevel@tonic-gate FONTDATA+1778, 35467c478bd9Sstevel@tonic-gate FONTDATA+1792, 35477c478bd9Sstevel@tonic-gate FONTDATA+1806, 35487c478bd9Sstevel@tonic-gate FONTDATA+1820, 35497c478bd9Sstevel@tonic-gate FONTDATA+1834, 35507c478bd9Sstevel@tonic-gate FONTDATA+1848, 35517c478bd9Sstevel@tonic-gate FONTDATA+1862, 35527c478bd9Sstevel@tonic-gate FONTDATA+1876, 35537c478bd9Sstevel@tonic-gate FONTDATA+1890, 35547c478bd9Sstevel@tonic-gate FONTDATA+1904, 35557c478bd9Sstevel@tonic-gate FONTDATA+1918, 35567c478bd9Sstevel@tonic-gate FONTDATA+1932, 35577c478bd9Sstevel@tonic-gate FONTDATA+1946, 35587c478bd9Sstevel@tonic-gate FONTDATA+1960, 35597c478bd9Sstevel@tonic-gate FONTDATA+1974, 35607c478bd9Sstevel@tonic-gate FONTDATA+1988, 35617c478bd9Sstevel@tonic-gate FONTDATA+2002, 35627c478bd9Sstevel@tonic-gate FONTDATA+2016, 35637c478bd9Sstevel@tonic-gate FONTDATA+2030, 35647c478bd9Sstevel@tonic-gate FONTDATA+2044, 35657c478bd9Sstevel@tonic-gate FONTDATA+2058, 35667c478bd9Sstevel@tonic-gate FONTDATA+2072, 35677c478bd9Sstevel@tonic-gate FONTDATA+2086, 35687c478bd9Sstevel@tonic-gate FONTDATA+2100, 35697c478bd9Sstevel@tonic-gate FONTDATA+2114, 35707c478bd9Sstevel@tonic-gate FONTDATA+2128, 35717c478bd9Sstevel@tonic-gate FONTDATA+2142, 35727c478bd9Sstevel@tonic-gate FONTDATA+2156, 35737c478bd9Sstevel@tonic-gate FONTDATA+2170, 35747c478bd9Sstevel@tonic-gate FONTDATA+2184, 35757c478bd9Sstevel@tonic-gate FONTDATA+2198, 35767c478bd9Sstevel@tonic-gate FONTDATA+2212, 35777c478bd9Sstevel@tonic-gate FONTDATA+2226, 35787c478bd9Sstevel@tonic-gate FONTDATA+2240, 35797c478bd9Sstevel@tonic-gate FONTDATA+2254, 35807c478bd9Sstevel@tonic-gate FONTDATA+2268, 35817c478bd9Sstevel@tonic-gate FONTDATA+2282, 35827c478bd9Sstevel@tonic-gate FONTDATA+2296, 35837c478bd9Sstevel@tonic-gate FONTDATA+2310, 35847c478bd9Sstevel@tonic-gate FONTDATA+2324, 35857c478bd9Sstevel@tonic-gate FONTDATA+2338, 35867c478bd9Sstevel@tonic-gate FONTDATA+2352, 35877c478bd9Sstevel@tonic-gate FONTDATA+2366, 35887c478bd9Sstevel@tonic-gate FONTDATA+2380, 35897c478bd9Sstevel@tonic-gate FONTDATA+2394, 35907c478bd9Sstevel@tonic-gate FONTDATA+2408, 35917c478bd9Sstevel@tonic-gate FONTDATA+2422, 35927c478bd9Sstevel@tonic-gate FONTDATA+2436, 35937c478bd9Sstevel@tonic-gate FONTDATA+2450, 35947c478bd9Sstevel@tonic-gate FONTDATA+2464, 35957c478bd9Sstevel@tonic-gate FONTDATA+2478, 35967c478bd9Sstevel@tonic-gate FONTDATA+2492, 35977c478bd9Sstevel@tonic-gate FONTDATA+2506, 35987c478bd9Sstevel@tonic-gate FONTDATA+2520, 35997c478bd9Sstevel@tonic-gate FONTDATA+2534, 36007c478bd9Sstevel@tonic-gate FONTDATA+2548, 36017c478bd9Sstevel@tonic-gate FONTDATA+2562, 36027c478bd9Sstevel@tonic-gate FONTDATA+2576, 36037c478bd9Sstevel@tonic-gate FONTDATA+2590, 36047c478bd9Sstevel@tonic-gate FONTDATA+2604, 36057c478bd9Sstevel@tonic-gate FONTDATA+2618, 36067c478bd9Sstevel@tonic-gate FONTDATA+2632, 36077c478bd9Sstevel@tonic-gate FONTDATA+2646, 36087c478bd9Sstevel@tonic-gate FONTDATA+2660, 36097c478bd9Sstevel@tonic-gate FONTDATA+2674, 36107c478bd9Sstevel@tonic-gate FONTDATA+2688, 36117c478bd9Sstevel@tonic-gate FONTDATA+2702, 36127c478bd9Sstevel@tonic-gate FONTDATA+2716, 36137c478bd9Sstevel@tonic-gate FONTDATA+2730, 36147c478bd9Sstevel@tonic-gate FONTDATA+2744, 36157c478bd9Sstevel@tonic-gate FONTDATA+2758, 36167c478bd9Sstevel@tonic-gate FONTDATA+2772, 36177c478bd9Sstevel@tonic-gate FONTDATA+2786, 36187c478bd9Sstevel@tonic-gate FONTDATA+2800, 36197c478bd9Sstevel@tonic-gate FONTDATA+2814, 36207c478bd9Sstevel@tonic-gate FONTDATA+2828, 36217c478bd9Sstevel@tonic-gate FONTDATA+2842, 36227c478bd9Sstevel@tonic-gate FONTDATA+2856, 36237c478bd9Sstevel@tonic-gate FONTDATA+2870, 36247c478bd9Sstevel@tonic-gate FONTDATA+2884, 36257c478bd9Sstevel@tonic-gate FONTDATA+2898, 36267c478bd9Sstevel@tonic-gate FONTDATA+2912, 36277c478bd9Sstevel@tonic-gate }; 3628*fea9cb91Slq150181 bitmap_data_t font_data_7x14 = { 36297c478bd9Sstevel@tonic-gate 7, 14, /* width, height */ 3630*fea9cb91Slq150181 FONTDATA, /* image */ 3631*fea9cb91Slq150181 ENCODINGS, /* encoding */ 36327c478bd9Sstevel@tonic-gate }; 36337c478bd9Sstevel@tonic-gate 36347c478bd9Sstevel@tonic-gate /* END CSTYLED */ 3635