mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-30 00:00:16 +01:00

Headers related to ws or h2 are now elided if the ws or h2 role is not enabled for build. In addition, a new build-time option LWS_WITH_HTTP_UNCOMMON_HEADERS on by default allows removal of less-common http headers to shrink the parser footprint. Minilex is adapted to produce 8 different versions of the lex table, chosen at build-time according to which headers are included in the build. If you don't need the unusual headers, or aren't using h2 or ws, this chops down the size of the ah and the rodata needed to hold the parsing table from 87 strings / pointers to 49, and the parsing table from 1177 to 696 bytes.
6798 lines
327 KiB
C
6798 lines
327 KiB
C
#if !defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && !defined(LWS_ROLE_WS) && !defined(LWS_ROLE_H2)
|
|
/* 0: 0: get */
|
|
/* 1: 1: post */
|
|
/* 2: 3: host: */
|
|
/* 3: 4: connection: */
|
|
/* 4: 5: upgrade: */
|
|
/* 5: 6: origin: */
|
|
/* 6: 8:
|
|
*/
|
|
/* 7: 16: http2-settings: */
|
|
/* 8: 18: access-control-request-headers: */
|
|
/* 9: 20: if-none-match: */
|
|
/* 10: 21: accept-encoding: */
|
|
/* 11: 22: accept-language: */
|
|
/* 12: 23: pragma: */
|
|
/* 13: 24: cache-control: */
|
|
/* 14: 25: authorization: */
|
|
/* 15: 26: cookie: */
|
|
/* 16: 27: content-length: */
|
|
/* 17: 28: content-type: */
|
|
/* 18: 29: date: */
|
|
/* 19: 30: range: */
|
|
/* 20: 31: referer: */
|
|
/* 21: 42: access-control-allow-origin: */
|
|
/* 22: 44: allow: */
|
|
/* 23: 45: content-disposition: */
|
|
/* 24: 46: content-encoding: */
|
|
/* 25: 47: content-language: */
|
|
/* 26: 48: content-location: */
|
|
/* 27: 49: content-range: */
|
|
/* 28: 50: etag: */
|
|
/* 29: 51: expect: */
|
|
/* 30: 52: expires: */
|
|
/* 31: 53: from: */
|
|
/* 32: 54: if-match: */
|
|
/* 33: 55: if-range: */
|
|
/* 34: 56: if-unmodified-since: */
|
|
/* 35: 57: last-modified: */
|
|
/* 36: 58: link: */
|
|
/* 37: 59: location: */
|
|
/* 38: 60: max-forwards: */
|
|
/* 39: 64: retry-after: */
|
|
/* 40: 65: server: */
|
|
/* 41: 66: set-cookie: */
|
|
/* 42: 67: strict-transport-security: */
|
|
/* 43: 69: user-agent: */
|
|
/* 44: 77: proxy */
|
|
/* 45: 80: x-forwarded-for: */
|
|
/* 46: 81: connect */
|
|
/* 47: 82: head */
|
|
/* 48: 83: te: */
|
|
/* 49: 87: */
|
|
/* pos 0000: 0 */ 0x67 /* 'g' */, 0x37, 0x00 /* (to 0x0037 state 1) */,
|
|
0x70 /* 'p' */, 0x39, 0x00 /* (to 0x003C state 5) */,
|
|
0x68 /* 'h' */, 0x42, 0x00 /* (to 0x0048 state 10) */,
|
|
0x63 /* 'c' */, 0x4E, 0x00 /* (to 0x0057 state 15) */,
|
|
0x75 /* 'u' */, 0x6F, 0x00 /* (to 0x007B state 26) */,
|
|
0x6F /* 'o' */, 0x7B, 0x00 /* (to 0x008A state 34) */,
|
|
0x0D /* '.' */, 0x80, 0x00 /* (to 0x0092 state 41) */,
|
|
0x61 /* 'a' */, 0x8F, 0x00 /* (to 0x00A4 state 57) */,
|
|
0x69 /* 'i' */, 0xC1, 0x00 /* (to 0x00D9 state 88) */,
|
|
0x64 /* 'd' */, 0x50, 0x01 /* (to 0x016B state 177) */,
|
|
0x72 /* 'r' */, 0x53, 0x01 /* (to 0x0171 state 182) */,
|
|
0x65 /* 'e' */, 0xAF, 0x01 /* (to 0x01D0 state 256) */,
|
|
0x66 /* 'f' */, 0xCB, 0x01 /* (to 0x01EF state 272) */,
|
|
0x6C /* 'l' */, 0xEE, 0x01 /* (to 0x0215 state 306) */,
|
|
0x6D /* 'm' */, 0x11, 0x02 /* (to 0x023B state 332) */,
|
|
0x73 /* 's' */, 0x27, 0x02 /* (to 0x0254 state 355) */,
|
|
0x78 /* 'x' */, 0x6C, 0x02 /* (to 0x029C state 410) */,
|
|
0x74 /* 't' */, 0x81, 0x02 /* (to 0x02B4 state 431) */,
|
|
0x08, /* fail */
|
|
/* pos 0037: 1 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0038: 2 */ 0xF4 /* 't' -> */,
|
|
/* pos 0039: 3 */ 0xA0 /* ' ' -> */,
|
|
/* pos 003a: 4 */ 0x00, 0x00 /* - terminal marker 0 - */,
|
|
/* pos 003c: 5 */ 0x6F /* 'o' */, 0x07, 0x00 /* (to 0x0043 state 6) */,
|
|
0x72 /* 'r' */, 0xD2, 0x00 /* (to 0x0111 state 123) */,
|
|
0x08, /* fail */
|
|
/* pos 0043: 6 */ 0xF3 /* 's' -> */,
|
|
/* pos 0044: 7 */ 0xF4 /* 't' -> */,
|
|
/* pos 0045: 8 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0046: 9 */ 0x00, 0x01 /* - terminal marker 1 - */,
|
|
/* pos 0048: 10 */ 0x6F /* 'o' */, 0x0A, 0x00 /* (to 0x0052 state 11) */,
|
|
0x74 /* 't' */, 0x4A, 0x00 /* (to 0x0095 state 43) */,
|
|
0x65 /* 'e' */, 0x61, 0x02 /* (to 0x02AF state 427) */,
|
|
0x08, /* fail */
|
|
/* pos 0052: 11 */ 0xF3 /* 's' -> */,
|
|
/* pos 0053: 12 */ 0xF4 /* 't' -> */,
|
|
/* pos 0054: 13 */ 0xBA /* ':' -> */,
|
|
/* pos 0055: 14 */ 0x00, 0x02 /* - terminal marker 2 - */,
|
|
/* pos 0057: 15 */ 0x6F /* 'o' */, 0x07, 0x00 /* (to 0x005E state 16) */,
|
|
0x61 /* 'a' */, 0xC4, 0x00 /* (to 0x011E state 129) */,
|
|
0x08, /* fail */
|
|
/* pos 005e: 16 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x0065 state 17) */,
|
|
0x6F /* 'o' */, 0xD9, 0x00 /* (to 0x013A state 155) */,
|
|
0x08, /* fail */
|
|
/* pos 0065: 17 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x006C state 18) */,
|
|
0x74 /* 't' */, 0xD8, 0x00 /* (to 0x0140 state 160) */,
|
|
0x08, /* fail */
|
|
/* pos 006c: 18 */ 0xE5 /* 'e' -> */,
|
|
/* pos 006d: 19 */ 0xE3 /* 'c' -> */,
|
|
/* pos 006e: 20 */ 0xF4 /* 't' -> */,
|
|
/* pos 006f: 21 */ 0x69 /* 'i' */, 0x07, 0x00 /* (to 0x0076 state 22) */,
|
|
0x20 /* ' ' */, 0x3B, 0x02 /* (to 0x02AD state 426) */,
|
|
0x08, /* fail */
|
|
/* pos 0076: 22 */ 0xEF /* 'o' -> */,
|
|
/* pos 0077: 23 */ 0xEE /* 'n' -> */,
|
|
/* pos 0078: 24 */ 0xBA /* ':' -> */,
|
|
/* pos 0079: 25 */ 0x00, 0x03 /* - terminal marker 3 - */,
|
|
/* pos 007b: 26 */ 0x70 /* 'p' */, 0x07, 0x00 /* (to 0x0082 state 27) */,
|
|
0x73 /* 's' */, 0x0E, 0x02 /* (to 0x028C state 396) */,
|
|
0x08, /* fail */
|
|
/* pos 0082: 27 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0083: 28 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0084: 29 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0085: 30 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0086: 31 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0087: 32 */ 0xBA /* ':' -> */,
|
|
/* pos 0088: 33 */ 0x00, 0x04 /* - terminal marker 4 - */,
|
|
/* pos 008a: 34 */ 0xF2 /* 'r' -> */,
|
|
/* pos 008b: 35 */ 0xE9 /* 'i' -> */,
|
|
/* pos 008c: 36 */ 0xE7 /* 'g' -> */,
|
|
/* pos 008d: 37 */ 0xE9 /* 'i' -> */,
|
|
/* pos 008e: 38 */ 0xEE /* 'n' -> */,
|
|
/* pos 008f: 39 */ 0xBA /* ':' -> */,
|
|
/* pos 0090: 40 */ 0x00, 0x05 /* - terminal marker 5 - */,
|
|
/* pos 0092: 41 */ 0x8A /* '.' -> */,
|
|
/* pos 0093: 42 */ 0x00, 0x06 /* - terminal marker 6 - */,
|
|
/* pos 0095: 43 */ 0xF4 /* 't' -> */,
|
|
/* pos 0096: 44 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0097: 45 */ 0xB2 /* '2' -> */,
|
|
/* pos 0098: 46 */ 0xAD /* '-' -> */,
|
|
/* pos 0099: 47 */ 0xF3 /* 's' -> */,
|
|
/* pos 009a: 48 */ 0xE5 /* 'e' -> */,
|
|
/* pos 009b: 49 */ 0xF4 /* 't' -> */,
|
|
/* pos 009c: 50 */ 0xF4 /* 't' -> */,
|
|
/* pos 009d: 51 */ 0xE9 /* 'i' -> */,
|
|
/* pos 009e: 52 */ 0xEE /* 'n' -> */,
|
|
/* pos 009f: 53 */ 0xE7 /* 'g' -> */,
|
|
/* pos 00a0: 54 */ 0xF3 /* 's' -> */,
|
|
/* pos 00a1: 55 */ 0xBA /* ':' -> */,
|
|
/* pos 00a2: 56 */ 0x00, 0x07 /* - terminal marker 7 - */,
|
|
/* pos 00a4: 57 */ 0x63 /* 'c' */, 0x0A, 0x00 /* (to 0x00AE state 58) */,
|
|
0x75 /* 'u' */, 0x85, 0x00 /* (to 0x012C state 142) */,
|
|
0x6C /* 'l' */, 0xF0, 0x00 /* (to 0x019A state 208) */,
|
|
0x08, /* fail */
|
|
/* pos 00ae: 58 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00af: 59 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00b0: 60 */ 0x73 /* 's' */, 0x07, 0x00 /* (to 0x00B7 state 61) */,
|
|
0x70 /* 'p' */, 0x41, 0x00 /* (to 0x00F4 state 102) */,
|
|
0x08, /* fail */
|
|
/* pos 00b7: 61 */ 0xF3 /* 's' -> */,
|
|
/* pos 00b8: 62 */ 0xAD /* '-' -> */,
|
|
/* pos 00b9: 63 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00ba: 64 */ 0xEF /* 'o' -> */,
|
|
/* pos 00bb: 65 */ 0xEE /* 'n' -> */,
|
|
/* pos 00bc: 66 */ 0xF4 /* 't' -> */,
|
|
/* pos 00bd: 67 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00be: 68 */ 0xEF /* 'o' -> */,
|
|
/* pos 00bf: 69 */ 0xEC /* 'l' -> */,
|
|
/* pos 00c0: 70 */ 0xAD /* '-' -> */,
|
|
/* pos 00c1: 71 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x00C8 state 72) */,
|
|
0x61 /* 'a' */, 0xC8, 0x00 /* (to 0x018C state 195) */,
|
|
0x08, /* fail */
|
|
/* pos 00c8: 72 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00c9: 73 */ 0xF1 /* 'q' -> */,
|
|
/* pos 00ca: 74 */ 0xF5 /* 'u' -> */,
|
|
/* pos 00cb: 75 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00cc: 76 */ 0xF3 /* 's' -> */,
|
|
/* pos 00cd: 77 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ce: 78 */ 0xAD /* '-' -> */,
|
|
/* pos 00cf: 79 */ 0xE8 /* 'h' -> */,
|
|
/* pos 00d0: 80 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00d1: 81 */ 0xE1 /* 'a' -> */,
|
|
/* pos 00d2: 82 */ 0xE4 /* 'd' -> */,
|
|
/* pos 00d3: 83 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00d4: 84 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00d5: 85 */ 0xF3 /* 's' -> */,
|
|
/* pos 00d6: 86 */ 0xBA /* ':' -> */,
|
|
/* pos 00d7: 87 */ 0x00, 0x08 /* - terminal marker 8 - */,
|
|
/* pos 00d9: 88 */ 0xE6 /* 'f' -> */,
|
|
/* pos 00da: 89 */ 0xAD /* '-' -> */,
|
|
/* pos 00db: 90 */ 0x6E /* 'n' */, 0x0D, 0x00 /* (to 0x00E8 state 91) */,
|
|
0x6D /* 'm' */, 0x17, 0x01 /* (to 0x01F5 state 277) */,
|
|
0x72 /* 'r' */, 0x1B, 0x01 /* (to 0x01FC state 283) */,
|
|
0x75 /* 'u' */, 0x1F, 0x01 /* (to 0x0203 state 289) */,
|
|
0x08, /* fail */
|
|
/* pos 00e8: 91 */ 0xEF /* 'o' -> */,
|
|
/* pos 00e9: 92 */ 0xEE /* 'n' -> */,
|
|
/* pos 00ea: 93 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00eb: 94 */ 0xAD /* '-' -> */,
|
|
/* pos 00ec: 95 */ 0xED /* 'm' -> */,
|
|
/* pos 00ed: 96 */ 0xE1 /* 'a' -> */,
|
|
/* pos 00ee: 97 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ef: 98 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00f0: 99 */ 0xE8 /* 'h' -> */,
|
|
/* pos 00f1: 100 */ 0xBA /* ':' -> */,
|
|
/* pos 00f2: 101 */ 0x00, 0x09 /* - terminal marker 9 - */,
|
|
/* pos 00f4: 102 */ 0xF4 /* 't' -> */,
|
|
/* pos 00f5: 103 */ 0xAD /* '-' -> */,
|
|
/* pos 00f6: 104 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x00FD state 105) */,
|
|
0x6C /* 'l' */, 0x0E, 0x00 /* (to 0x0107 state 114) */,
|
|
0x08, /* fail */
|
|
/* pos 00fd: 105 */ 0xEE /* 'n' -> */,
|
|
/* pos 00fe: 106 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00ff: 107 */ 0xEF /* 'o' -> */,
|
|
/* pos 0100: 108 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0101: 109 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0102: 110 */ 0xEE /* 'n' -> */,
|
|
/* pos 0103: 111 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0104: 112 */ 0xBA /* ':' -> */,
|
|
/* pos 0105: 113 */ 0x00, 0x0A /* - terminal marker 10 - */,
|
|
/* pos 0107: 114 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0108: 115 */ 0xEE /* 'n' -> */,
|
|
/* pos 0109: 116 */ 0xE7 /* 'g' -> */,
|
|
/* pos 010a: 117 */ 0xF5 /* 'u' -> */,
|
|
/* pos 010b: 118 */ 0xE1 /* 'a' -> */,
|
|
/* pos 010c: 119 */ 0xE7 /* 'g' -> */,
|
|
/* pos 010d: 120 */ 0xE5 /* 'e' -> */,
|
|
/* pos 010e: 121 */ 0xBA /* ':' -> */,
|
|
/* pos 010f: 122 */ 0x00, 0x0B /* - terminal marker 11 - */,
|
|
/* pos 0111: 123 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x0118 state 124) */,
|
|
0x6F /* 'o' */, 0x83, 0x01 /* (to 0x0297 state 406) */,
|
|
0x08, /* fail */
|
|
/* pos 0118: 124 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0119: 125 */ 0xED /* 'm' -> */,
|
|
/* pos 011a: 126 */ 0xE1 /* 'a' -> */,
|
|
/* pos 011b: 127 */ 0xBA /* ':' -> */,
|
|
/* pos 011c: 128 */ 0x00, 0x0C /* - terminal marker 12 - */,
|
|
/* pos 011e: 129 */ 0xE3 /* 'c' -> */,
|
|
/* pos 011f: 130 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0120: 131 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0121: 132 */ 0xAD /* '-' -> */,
|
|
/* pos 0122: 133 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0123: 134 */ 0xEF /* 'o' -> */,
|
|
/* pos 0124: 135 */ 0xEE /* 'n' -> */,
|
|
/* pos 0125: 136 */ 0xF4 /* 't' -> */,
|
|
/* pos 0126: 137 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0127: 138 */ 0xEF /* 'o' -> */,
|
|
/* pos 0128: 139 */ 0xEC /* 'l' -> */,
|
|
/* pos 0129: 140 */ 0xBA /* ':' -> */,
|
|
/* pos 012a: 141 */ 0x00, 0x0D /* - terminal marker 13 - */,
|
|
/* pos 012c: 142 */ 0xF4 /* 't' -> */,
|
|
/* pos 012d: 143 */ 0xE8 /* 'h' -> */,
|
|
/* pos 012e: 144 */ 0xEF /* 'o' -> */,
|
|
/* pos 012f: 145 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0130: 146 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0131: 147 */ 0xFA /* 'z' -> */,
|
|
/* pos 0132: 148 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0133: 149 */ 0xF4 /* 't' -> */,
|
|
/* pos 0134: 150 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0135: 151 */ 0xEF /* 'o' -> */,
|
|
/* pos 0136: 152 */ 0xEE /* 'n' -> */,
|
|
/* pos 0137: 153 */ 0xBA /* ':' -> */,
|
|
/* pos 0138: 154 */ 0x00, 0x0E /* - terminal marker 14 - */,
|
|
/* pos 013a: 155 */ 0xEB /* 'k' -> */,
|
|
/* pos 013b: 156 */ 0xE9 /* 'i' -> */,
|
|
/* pos 013c: 157 */ 0xE5 /* 'e' -> */,
|
|
/* pos 013d: 158 */ 0xBA /* ':' -> */,
|
|
/* pos 013e: 159 */ 0x00, 0x0F /* - terminal marker 15 - */,
|
|
/* pos 0140: 160 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0141: 161 */ 0xEE /* 'n' -> */,
|
|
/* pos 0142: 162 */ 0xF4 /* 't' -> */,
|
|
/* pos 0143: 163 */ 0xAD /* '-' -> */,
|
|
/* pos 0144: 164 */ 0x6C /* 'l' */, 0x10, 0x00 /* (to 0x0154 state 165) */,
|
|
0x74 /* 't' */, 0x1E, 0x00 /* (to 0x0165 state 172) */,
|
|
0x64 /* 'd' */, 0x56, 0x00 /* (to 0x01A0 state 213) */,
|
|
0x65 /* 'e' */, 0x60, 0x00 /* (to 0x01AD state 225) */,
|
|
0x72 /* 'r' */, 0x79, 0x00 /* (to 0x01C9 state 250) */,
|
|
0x08, /* fail */
|
|
/* pos 0154: 165 */ 0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x015E state 166) */,
|
|
0x61 /* 'a' */, 0x60, 0x00 /* (to 0x01B7 state 234) */,
|
|
0x6F /* 'o' */, 0x66, 0x00 /* (to 0x01C0 state 242) */,
|
|
0x08, /* fail */
|
|
/* pos 015e: 166 */ 0xEE /* 'n' -> */,
|
|
/* pos 015f: 167 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0160: 168 */ 0xF4 /* 't' -> */,
|
|
/* pos 0161: 169 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0162: 170 */ 0xBA /* ':' -> */,
|
|
/* pos 0163: 171 */ 0x00, 0x10 /* - terminal marker 16 - */,
|
|
/* pos 0165: 172 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0166: 173 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0167: 174 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0168: 175 */ 0xBA /* ':' -> */,
|
|
/* pos 0169: 176 */ 0x00, 0x11 /* - terminal marker 17 - */,
|
|
/* pos 016b: 177 */ 0xE1 /* 'a' -> */,
|
|
/* pos 016c: 178 */ 0xF4 /* 't' -> */,
|
|
/* pos 016d: 179 */ 0xE5 /* 'e' -> */,
|
|
/* pos 016e: 180 */ 0xBA /* ':' -> */,
|
|
/* pos 016f: 181 */ 0x00, 0x12 /* - terminal marker 18 - */,
|
|
/* pos 0171: 182 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x0178 state 183) */,
|
|
0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x017E state 188) */,
|
|
0x08, /* fail */
|
|
/* pos 0178: 183 */ 0xEE /* 'n' -> */,
|
|
/* pos 0179: 184 */ 0xE7 /* 'g' -> */,
|
|
/* pos 017a: 185 */ 0xE5 /* 'e' -> */,
|
|
/* pos 017b: 186 */ 0xBA /* ':' -> */,
|
|
/* pos 017c: 187 */ 0x00, 0x13 /* - terminal marker 19 - */,
|
|
/* pos 017e: 188 */ 0x66 /* 'f' */, 0x07, 0x00 /* (to 0x0185 state 189) */,
|
|
0x74 /* 't' */, 0xC8, 0x00 /* (to 0x0249 state 345) */,
|
|
0x08, /* fail */
|
|
/* pos 0185: 189 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0186: 190 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0187: 191 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0188: 192 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0189: 193 */ 0xBA /* ':' -> */,
|
|
/* pos 018a: 194 */ 0x00, 0x14 /* - terminal marker 20 - */,
|
|
/* pos 018c: 195 */ 0xEC /* 'l' -> */,
|
|
/* pos 018d: 196 */ 0xEC /* 'l' -> */,
|
|
/* pos 018e: 197 */ 0xEF /* 'o' -> */,
|
|
/* pos 018f: 198 */ 0xF7 /* 'w' -> */,
|
|
/* pos 0190: 199 */ 0xAD /* '-' -> */,
|
|
/* pos 0191: 200 */ 0xEF /* 'o' -> */,
|
|
/* pos 0192: 201 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0193: 202 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0194: 203 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0195: 204 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0196: 205 */ 0xEE /* 'n' -> */,
|
|
/* pos 0197: 206 */ 0xBA /* ':' -> */,
|
|
/* pos 0198: 207 */ 0x00, 0x15 /* - terminal marker 21 - */,
|
|
/* pos 019a: 208 */ 0xEC /* 'l' -> */,
|
|
/* pos 019b: 209 */ 0xEF /* 'o' -> */,
|
|
/* pos 019c: 210 */ 0xF7 /* 'w' -> */,
|
|
/* pos 019d: 211 */ 0xBA /* ':' -> */,
|
|
/* pos 019e: 212 */ 0x00, 0x16 /* - terminal marker 22 - */,
|
|
/* pos 01a0: 213 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01a1: 214 */ 0xF3 /* 's' -> */,
|
|
/* pos 01a2: 215 */ 0xF0 /* 'p' -> */,
|
|
/* pos 01a3: 216 */ 0xEF /* 'o' -> */,
|
|
/* pos 01a4: 217 */ 0xF3 /* 's' -> */,
|
|
/* pos 01a5: 218 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01a6: 219 */ 0xF4 /* 't' -> */,
|
|
/* pos 01a7: 220 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01a8: 221 */ 0xEF /* 'o' -> */,
|
|
/* pos 01a9: 222 */ 0xEE /* 'n' -> */,
|
|
/* pos 01aa: 223 */ 0xBA /* ':' -> */,
|
|
/* pos 01ab: 224 */ 0x00, 0x17 /* - terminal marker 23 - */,
|
|
/* pos 01ad: 225 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ae: 226 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01af: 227 */ 0xEF /* 'o' -> */,
|
|
/* pos 01b0: 228 */ 0xE4 /* 'd' -> */,
|
|
/* pos 01b1: 229 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01b2: 230 */ 0xEE /* 'n' -> */,
|
|
/* pos 01b3: 231 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01b4: 232 */ 0xBA /* ':' -> */,
|
|
/* pos 01b5: 233 */ 0x00, 0x18 /* - terminal marker 24 - */,
|
|
/* pos 01b7: 234 */ 0xEE /* 'n' -> */,
|
|
/* pos 01b8: 235 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01b9: 236 */ 0xF5 /* 'u' -> */,
|
|
/* pos 01ba: 237 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01bb: 238 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01bc: 239 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01bd: 240 */ 0xBA /* ':' -> */,
|
|
/* pos 01be: 241 */ 0x00, 0x19 /* - terminal marker 25 - */,
|
|
/* pos 01c0: 242 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01c1: 243 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01c2: 244 */ 0xF4 /* 't' -> */,
|
|
/* pos 01c3: 245 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01c4: 246 */ 0xEF /* 'o' -> */,
|
|
/* pos 01c5: 247 */ 0xEE /* 'n' -> */,
|
|
/* pos 01c6: 248 */ 0xBA /* ':' -> */,
|
|
/* pos 01c7: 249 */ 0x00, 0x1A /* - terminal marker 26 - */,
|
|
/* pos 01c9: 250 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01ca: 251 */ 0xEE /* 'n' -> */,
|
|
/* pos 01cb: 252 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01cc: 253 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01cd: 254 */ 0xBA /* ':' -> */,
|
|
/* pos 01ce: 255 */ 0x00, 0x1B /* - terminal marker 27 - */,
|
|
/* pos 01d0: 256 */ 0x74 /* 't' */, 0x07, 0x00 /* (to 0x01D7 state 257) */,
|
|
0x78 /* 'x' */, 0x09, 0x00 /* (to 0x01DC state 261) */,
|
|
0x08, /* fail */
|
|
/* pos 01d7: 257 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01d8: 258 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01d9: 259 */ 0xBA /* ':' -> */,
|
|
/* pos 01da: 260 */ 0x00, 0x1C /* - terminal marker 28 - */,
|
|
/* pos 01dc: 261 */ 0xF0 /* 'p' -> */,
|
|
/* pos 01dd: 262 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x01E4 state 263) */,
|
|
0x69 /* 'i' */, 0x09, 0x00 /* (to 0x01E9 state 267) */,
|
|
0x08, /* fail */
|
|
/* pos 01e4: 263 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01e5: 264 */ 0xF4 /* 't' -> */,
|
|
/* pos 01e6: 265 */ 0xBA /* ':' -> */,
|
|
/* pos 01e7: 266 */ 0x00, 0x1D /* - terminal marker 29 - */,
|
|
/* pos 01e9: 267 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01ea: 268 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01eb: 269 */ 0xF3 /* 's' -> */,
|
|
/* pos 01ec: 270 */ 0xBA /* ':' -> */,
|
|
/* pos 01ed: 271 */ 0x00, 0x1E /* - terminal marker 30 - */,
|
|
/* pos 01ef: 272 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01f0: 273 */ 0xEF /* 'o' -> */,
|
|
/* pos 01f1: 274 */ 0xED /* 'm' -> */,
|
|
/* pos 01f2: 275 */ 0xBA /* ':' -> */,
|
|
/* pos 01f3: 276 */ 0x00, 0x1F /* - terminal marker 31 - */,
|
|
/* pos 01f5: 277 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01f6: 278 */ 0xF4 /* 't' -> */,
|
|
/* pos 01f7: 279 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01f8: 280 */ 0xE8 /* 'h' -> */,
|
|
/* pos 01f9: 281 */ 0xBA /* ':' -> */,
|
|
/* pos 01fa: 282 */ 0x00, 0x20 /* - terminal marker 32 - */,
|
|
/* pos 01fc: 283 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01fd: 284 */ 0xEE /* 'n' -> */,
|
|
/* pos 01fe: 285 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01ff: 286 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0200: 287 */ 0xBA /* ':' -> */,
|
|
/* pos 0201: 288 */ 0x00, 0x21 /* - terminal marker 33 - */,
|
|
/* pos 0203: 289 */ 0xEE /* 'n' -> */,
|
|
/* pos 0204: 290 */ 0xED /* 'm' -> */,
|
|
/* pos 0205: 291 */ 0xEF /* 'o' -> */,
|
|
/* pos 0206: 292 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0207: 293 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0208: 294 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0209: 295 */ 0xE9 /* 'i' -> */,
|
|
/* pos 020a: 296 */ 0xE5 /* 'e' -> */,
|
|
/* pos 020b: 297 */ 0xE4 /* 'd' -> */,
|
|
/* pos 020c: 298 */ 0xAD /* '-' -> */,
|
|
/* pos 020d: 299 */ 0xF3 /* 's' -> */,
|
|
/* pos 020e: 300 */ 0xE9 /* 'i' -> */,
|
|
/* pos 020f: 301 */ 0xEE /* 'n' -> */,
|
|
/* pos 0210: 302 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0211: 303 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0212: 304 */ 0xBA /* ':' -> */,
|
|
/* pos 0213: 305 */ 0x00, 0x22 /* - terminal marker 34 - */,
|
|
/* pos 0215: 306 */ 0x61 /* 'a' */, 0x0A, 0x00 /* (to 0x021F state 307) */,
|
|
0x69 /* 'i' */, 0x15, 0x00 /* (to 0x022D state 320) */,
|
|
0x6F /* 'o' */, 0x17, 0x00 /* (to 0x0232 state 324) */,
|
|
0x08, /* fail */
|
|
/* pos 021f: 307 */ 0xF3 /* 's' -> */,
|
|
/* pos 0220: 308 */ 0xF4 /* 't' -> */,
|
|
/* pos 0221: 309 */ 0xAD /* '-' -> */,
|
|
/* pos 0222: 310 */ 0xED /* 'm' -> */,
|
|
/* pos 0223: 311 */ 0xEF /* 'o' -> */,
|
|
/* pos 0224: 312 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0225: 313 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0226: 314 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0227: 315 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0228: 316 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0229: 317 */ 0xE4 /* 'd' -> */,
|
|
/* pos 022a: 318 */ 0xBA /* ':' -> */,
|
|
/* pos 022b: 319 */ 0x00, 0x23 /* - terminal marker 35 - */,
|
|
/* pos 022d: 320 */ 0xEE /* 'n' -> */,
|
|
/* pos 022e: 321 */ 0xEB /* 'k' -> */,
|
|
/* pos 022f: 322 */ 0xBA /* ':' -> */,
|
|
/* pos 0230: 323 */ 0x00, 0x24 /* - terminal marker 36 - */,
|
|
/* pos 0232: 324 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0233: 325 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0234: 326 */ 0xF4 /* 't' -> */,
|
|
/* pos 0235: 327 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0236: 328 */ 0xEF /* 'o' -> */,
|
|
/* pos 0237: 329 */ 0xEE /* 'n' -> */,
|
|
/* pos 0238: 330 */ 0xBA /* ':' -> */,
|
|
/* pos 0239: 331 */ 0x00, 0x25 /* - terminal marker 37 - */,
|
|
/* pos 023b: 332 */ 0xE1 /* 'a' -> */,
|
|
/* pos 023c: 333 */ 0xF8 /* 'x' -> */,
|
|
/* pos 023d: 334 */ 0xAD /* '-' -> */,
|
|
/* pos 023e: 335 */ 0xE6 /* 'f' -> */,
|
|
/* pos 023f: 336 */ 0xEF /* 'o' -> */,
|
|
/* pos 0240: 337 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0241: 338 */ 0xF7 /* 'w' -> */,
|
|
/* pos 0242: 339 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0243: 340 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0244: 341 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0245: 342 */ 0xF3 /* 's' -> */,
|
|
/* pos 0246: 343 */ 0xBA /* ':' -> */,
|
|
/* pos 0247: 344 */ 0x00, 0x26 /* - terminal marker 38 - */,
|
|
/* pos 0249: 345 */ 0xF2 /* 'r' -> */,
|
|
/* pos 024a: 346 */ 0xF9 /* 'y' -> */,
|
|
/* pos 024b: 347 */ 0xAD /* '-' -> */,
|
|
/* pos 024c: 348 */ 0xE1 /* 'a' -> */,
|
|
/* pos 024d: 349 */ 0xE6 /* 'f' -> */,
|
|
/* pos 024e: 350 */ 0xF4 /* 't' -> */,
|
|
/* pos 024f: 351 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0250: 352 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0251: 353 */ 0xBA /* ':' -> */,
|
|
/* pos 0252: 354 */ 0x00, 0x27 /* - terminal marker 39 - */,
|
|
/* pos 0254: 355 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x025B state 356) */,
|
|
0x74 /* 't' */, 0x1B, 0x00 /* (to 0x0272 state 371) */,
|
|
0x08, /* fail */
|
|
/* pos 025b: 356 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x0262 state 357) */,
|
|
0x74 /* 't' */, 0x0A, 0x00 /* (to 0x0268 state 362) */,
|
|
0x08, /* fail */
|
|
/* pos 0262: 357 */ 0xF6 /* 'v' -> */,
|
|
/* pos 0263: 358 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0264: 359 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0265: 360 */ 0xBA /* ':' -> */,
|
|
/* pos 0266: 361 */ 0x00, 0x28 /* - terminal marker 40 - */,
|
|
/* pos 0268: 362 */ 0xAD /* '-' -> */,
|
|
/* pos 0269: 363 */ 0xE3 /* 'c' -> */,
|
|
/* pos 026a: 364 */ 0xEF /* 'o' -> */,
|
|
/* pos 026b: 365 */ 0xEF /* 'o' -> */,
|
|
/* pos 026c: 366 */ 0xEB /* 'k' -> */,
|
|
/* pos 026d: 367 */ 0xE9 /* 'i' -> */,
|
|
/* pos 026e: 368 */ 0xE5 /* 'e' -> */,
|
|
/* pos 026f: 369 */ 0xBA /* ':' -> */,
|
|
/* pos 0270: 370 */ 0x00, 0x29 /* - terminal marker 41 - */,
|
|
/* pos 0272: 371 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0273: 372 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0274: 373 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0275: 374 */ 0xF4 /* 't' -> */,
|
|
/* pos 0276: 375 */ 0xAD /* '-' -> */,
|
|
/* pos 0277: 376 */ 0xF4 /* 't' -> */,
|
|
/* pos 0278: 377 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0279: 378 */ 0xE1 /* 'a' -> */,
|
|
/* pos 027a: 379 */ 0xEE /* 'n' -> */,
|
|
/* pos 027b: 380 */ 0xF3 /* 's' -> */,
|
|
/* pos 027c: 381 */ 0xF0 /* 'p' -> */,
|
|
/* pos 027d: 382 */ 0xEF /* 'o' -> */,
|
|
/* pos 027e: 383 */ 0xF2 /* 'r' -> */,
|
|
/* pos 027f: 384 */ 0xF4 /* 't' -> */,
|
|
/* pos 0280: 385 */ 0xAD /* '-' -> */,
|
|
/* pos 0281: 386 */ 0xF3 /* 's' -> */,
|
|
/* pos 0282: 387 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0283: 388 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0284: 389 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0285: 390 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0286: 391 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0287: 392 */ 0xF4 /* 't' -> */,
|
|
/* pos 0288: 393 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0289: 394 */ 0xBA /* ':' -> */,
|
|
/* pos 028a: 395 */ 0x00, 0x2A /* - terminal marker 42 - */,
|
|
/* pos 028c: 396 */ 0xE5 /* 'e' -> */,
|
|
/* pos 028d: 397 */ 0xF2 /* 'r' -> */,
|
|
/* pos 028e: 398 */ 0xAD /* '-' -> */,
|
|
/* pos 028f: 399 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0290: 400 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0291: 401 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0292: 402 */ 0xEE /* 'n' -> */,
|
|
/* pos 0293: 403 */ 0xF4 /* 't' -> */,
|
|
/* pos 0294: 404 */ 0xBA /* ':' -> */,
|
|
/* pos 0295: 405 */ 0x00, 0x2B /* - terminal marker 43 - */,
|
|
/* pos 0297: 406 */ 0xF8 /* 'x' -> */,
|
|
/* pos 0298: 407 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0299: 408 */ 0xA0 /* ' ' -> */,
|
|
/* pos 029a: 409 */ 0x00, 0x2C /* - terminal marker 44 - */,
|
|
/* pos 029c: 410 */ 0xAD /* '-' -> */,
|
|
/* pos 029d: 411 */ 0xE6 /* 'f' -> */,
|
|
/* pos 029e: 412 */ 0xEF /* 'o' -> */,
|
|
/* pos 029f: 413 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02a0: 414 */ 0xF7 /* 'w' -> */,
|
|
/* pos 02a1: 415 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02a2: 416 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02a3: 417 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02a4: 418 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02a5: 419 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02a6: 420 */ 0xAD /* '-' -> */,
|
|
/* pos 02a7: 421 */ 0xE6 /* 'f' -> */,
|
|
/* pos 02a8: 422 */ 0xEF /* 'o' -> */,
|
|
/* pos 02a9: 423 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02aa: 424 */ 0xBA /* ':' -> */,
|
|
/* pos 02ab: 425 */ 0x00, 0x2D /* - terminal marker 45 - */,
|
|
/* pos 02ad: 426 */ 0x00, 0x2E /* - terminal marker 46 - */,
|
|
/* pos 02af: 427 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02b0: 428 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02b1: 429 */ 0xA0 /* ' ' -> */,
|
|
/* pos 02b2: 430 */ 0x00, 0x2F /* - terminal marker 47 - */,
|
|
/* pos 02b4: 431 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02b5: 432 */ 0xBA /* ':' -> */,
|
|
/* pos 02b6: 433 */ 0x00, 0x30 /* - terminal marker 48 - */,
|
|
/* total size 696 bytes */
|
|
#endif
|
|
|
|
#if defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && !defined(LWS_ROLE_WS) && !defined(LWS_ROLE_H2)
|
|
/* 0: 0: get */
|
|
/* 1: 1: post */
|
|
/* 2: 2: options */
|
|
/* 3: 3: host: */
|
|
/* 4: 4: connection: */
|
|
/* 5: 5: upgrade: */
|
|
/* 6: 6: origin: */
|
|
/* 7: 8:
|
|
*/
|
|
/* 8: 16: http2-settings: */
|
|
/* 9: 18: access-control-request-headers: */
|
|
/* 10: 19: if-modified-since: */
|
|
/* 11: 20: if-none-match: */
|
|
/* 12: 21: accept-encoding: */
|
|
/* 13: 22: accept-language: */
|
|
/* 14: 23: pragma: */
|
|
/* 15: 24: cache-control: */
|
|
/* 16: 25: authorization: */
|
|
/* 17: 26: cookie: */
|
|
/* 18: 27: content-length: */
|
|
/* 19: 28: content-type: */
|
|
/* 20: 29: date: */
|
|
/* 21: 30: range: */
|
|
/* 22: 31: referer: */
|
|
/* 23: 32: sec-websocket-key: */
|
|
/* 24: 41: accept-ranges: */
|
|
/* 25: 42: access-control-allow-origin: */
|
|
/* 26: 43: age: */
|
|
/* 27: 44: allow: */
|
|
/* 28: 45: content-disposition: */
|
|
/* 29: 46: content-encoding: */
|
|
/* 30: 47: content-language: */
|
|
/* 31: 48: content-location: */
|
|
/* 32: 49: content-range: */
|
|
/* 33: 50: etag: */
|
|
/* 34: 51: expect: */
|
|
/* 35: 52: expires: */
|
|
/* 36: 53: from: */
|
|
/* 37: 54: if-match: */
|
|
/* 38: 55: if-range: */
|
|
/* 39: 56: if-unmodified-since: */
|
|
/* 40: 57: last-modified: */
|
|
/* 41: 58: link: */
|
|
/* 42: 59: location: */
|
|
/* 43: 60: max-forwards: */
|
|
/* 44: 61: proxy-authenticate: */
|
|
/* 45: 62: proxy-authorization: */
|
|
/* 46: 63: refresh: */
|
|
/* 47: 64: retry-after: */
|
|
/* 48: 65: server: */
|
|
/* 49: 66: set-cookie: */
|
|
/* 50: 67: strict-transport-security: */
|
|
/* 51: 68: transfer-encoding: */
|
|
/* 52: 69: user-agent: */
|
|
/* 53: 70: vary: */
|
|
/* 54: 71: via: */
|
|
/* 55: 72: www-authenticate: */
|
|
/* 56: 73: patch */
|
|
/* 57: 74: put */
|
|
/* 58: 75: delete */
|
|
/* 59: 76: uri-args */
|
|
/* 60: 77: proxy */
|
|
/* 61: 78: x-real-ip: */
|
|
/* 62: 79: http/1.0 */
|
|
/* 63: 80: x-forwarded-for: */
|
|
/* 64: 81: connect */
|
|
/* 65: 82: head */
|
|
/* 66: 83: te: */
|
|
/* 67: 84: replay-nonce: */
|
|
/* 68: 85: :protocol */
|
|
/* 69: 87: */
|
|
/* pos 0000: 0 */ 0x67 /* 'g' */, 0x40, 0x00 /* (to 0x0040 state 1) */,
|
|
0x70 /* 'p' */, 0x42, 0x00 /* (to 0x0045 state 5) */,
|
|
0x68 /* 'h' */, 0x51, 0x00 /* (to 0x0057 state 10) */,
|
|
0x63 /* 'c' */, 0x5D, 0x00 /* (to 0x0066 state 15) */,
|
|
0x75 /* 'u' */, 0x7E, 0x00 /* (to 0x008A state 26) */,
|
|
0x6F /* 'o' */, 0x8D, 0x00 /* (to 0x009C state 34) */,
|
|
0x0D /* '.' */, 0x98, 0x00 /* (to 0x00AA state 41) */,
|
|
0x61 /* 'a' */, 0xAD, 0x00 /* (to 0x00C2 state 57) */,
|
|
0x69 /* 'i' */, 0xE2, 0x00 /* (to 0x00FA state 88) */,
|
|
0x64 /* 'd' */, 0x74, 0x01 /* (to 0x018F state 177) */,
|
|
0x72 /* 'r' */, 0x7D, 0x01 /* (to 0x019B state 182) */,
|
|
0x65 /* 'e' */, 0xE2, 0x01 /* (to 0x0203 state 256) */,
|
|
0x66 /* 'f' */, 0xFE, 0x01 /* (to 0x0222 state 272) */,
|
|
0x6C /* 'l' */, 0x27, 0x02 /* (to 0x024E state 306) */,
|
|
0x6D /* 'm' */, 0x4A, 0x02 /* (to 0x0274 state 332) */,
|
|
0x73 /* 's' */, 0x60, 0x02 /* (to 0x028D state 355) */,
|
|
0x78 /* 'x' */, 0xAE, 0x02 /* (to 0x02DE state 410) */,
|
|
0x74 /* 't' */, 0xC9, 0x02 /* (to 0x02FC state 431) */,
|
|
0x76 /* 'v' */, 0x3C, 0x03 /* (to 0x0372 state 527) */,
|
|
0x77 /* 'w' */, 0x49, 0x03 /* (to 0x0382 state 535) */,
|
|
0x3A /* ':' */, 0x89, 0x03 /* (to 0x03C5 state 594) */,
|
|
0x08, /* fail */
|
|
/* pos 0040: 1 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0041: 2 */ 0xF4 /* 't' -> */,
|
|
/* pos 0042: 3 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0043: 4 */ 0x00, 0x00 /* - terminal marker 0 - */,
|
|
/* pos 0045: 5 */ 0x6F /* 'o' */, 0x0D, 0x00 /* (to 0x0052 state 6) */,
|
|
0x72 /* 'r' */, 0xED, 0x00 /* (to 0x0135 state 123) */,
|
|
0x61 /* 'a' */, 0x49, 0x03 /* (to 0x0394 state 552) */,
|
|
0x75 /* 'u' */, 0x4B, 0x03 /* (to 0x0399 state 556) */,
|
|
0x08, /* fail */
|
|
/* pos 0052: 6 */ 0xF3 /* 's' -> */,
|
|
/* pos 0053: 7 */ 0xF4 /* 't' -> */,
|
|
/* pos 0054: 8 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0055: 9 */ 0x00, 0x01 /* - terminal marker 1 - */,
|
|
/* pos 0057: 10 */ 0x6F /* 'o' */, 0x0A, 0x00 /* (to 0x0061 state 11) */,
|
|
0x74 /* 't' */, 0x53, 0x00 /* (to 0x00AD state 43) */,
|
|
0x65 /* 'e' */, 0x9A, 0x02 /* (to 0x02F7 state 427) */,
|
|
0x08, /* fail */
|
|
/* pos 0061: 11 */ 0xF3 /* 's' -> */,
|
|
/* pos 0062: 12 */ 0xF4 /* 't' -> */,
|
|
/* pos 0063: 13 */ 0xBA /* ':' -> */,
|
|
/* pos 0064: 14 */ 0x00, 0x03 /* - terminal marker 3 - */,
|
|
/* pos 0066: 15 */ 0x6F /* 'o' */, 0x07, 0x00 /* (to 0x006D state 16) */,
|
|
0x61 /* 'a' */, 0xD9, 0x00 /* (to 0x0142 state 129) */,
|
|
0x08, /* fail */
|
|
/* pos 006d: 16 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x0074 state 17) */,
|
|
0x6F /* 'o' */, 0xEE, 0x00 /* (to 0x015E state 155) */,
|
|
0x08, /* fail */
|
|
/* pos 0074: 17 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x007B state 18) */,
|
|
0x74 /* 't' */, 0xED, 0x00 /* (to 0x0164 state 160) */,
|
|
0x08, /* fail */
|
|
/* pos 007b: 18 */ 0xE5 /* 'e' -> */,
|
|
/* pos 007c: 19 */ 0xE3 /* 'c' -> */,
|
|
/* pos 007d: 20 */ 0xF4 /* 't' -> */,
|
|
/* pos 007e: 21 */ 0x69 /* 'i' */, 0x07, 0x00 /* (to 0x0085 state 22) */,
|
|
0x20 /* ' ' */, 0x74, 0x02 /* (to 0x02F5 state 426) */,
|
|
0x08, /* fail */
|
|
/* pos 0085: 22 */ 0xEF /* 'o' -> */,
|
|
/* pos 0086: 23 */ 0xEE /* 'n' -> */,
|
|
/* pos 0087: 24 */ 0xBA /* ':' -> */,
|
|
/* pos 0088: 25 */ 0x00, 0x04 /* - terminal marker 4 - */,
|
|
/* pos 008a: 26 */ 0x70 /* 'p' */, 0x0A, 0x00 /* (to 0x0094 state 27) */,
|
|
0x73 /* 's' */, 0x3B, 0x02 /* (to 0x02C8 state 396) */,
|
|
0x72 /* 'r' */, 0x12, 0x03 /* (to 0x03A2 state 563) */,
|
|
0x08, /* fail */
|
|
/* pos 0094: 27 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0095: 28 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0096: 29 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0097: 30 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0098: 31 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0099: 32 */ 0xBA /* ':' -> */,
|
|
/* pos 009a: 33 */ 0x00, 0x05 /* - terminal marker 5 - */,
|
|
/* pos 009c: 34 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x00A3 state 35) */,
|
|
0x70 /* 'p' */, 0x67, 0x02 /* (to 0x0306 state 434) */,
|
|
0x08, /* fail */
|
|
/* pos 00a3: 35 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00a4: 36 */ 0xE7 /* 'g' -> */,
|
|
/* pos 00a5: 37 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00a6: 38 */ 0xEE /* 'n' -> */,
|
|
/* pos 00a7: 39 */ 0xBA /* ':' -> */,
|
|
/* pos 00a8: 40 */ 0x00, 0x06 /* - terminal marker 6 - */,
|
|
/* pos 00aa: 41 */ 0x8A /* '.' -> */,
|
|
/* pos 00ab: 42 */ 0x00, 0x07 /* - terminal marker 7 - */,
|
|
/* pos 00ad: 43 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ae: 44 */ 0xF0 /* 'p' -> */,
|
|
/* pos 00af: 45 */ 0x32 /* '2' */, 0x07, 0x00 /* (to 0x00B6 state 46) */,
|
|
0x2F /* '/' */, 0x01, 0x03 /* (to 0x03B3 state 578) */,
|
|
0x08, /* fail */
|
|
/* pos 00b6: 46 */ 0xAD /* '-' -> */,
|
|
/* pos 00b7: 47 */ 0xF3 /* 's' -> */,
|
|
/* pos 00b8: 48 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00b9: 49 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ba: 50 */ 0xF4 /* 't' -> */,
|
|
/* pos 00bb: 51 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00bc: 52 */ 0xEE /* 'n' -> */,
|
|
/* pos 00bd: 53 */ 0xE7 /* 'g' -> */,
|
|
/* pos 00be: 54 */ 0xF3 /* 's' -> */,
|
|
/* pos 00bf: 55 */ 0xBA /* ':' -> */,
|
|
/* pos 00c0: 56 */ 0x00, 0x08 /* - terminal marker 8 - */,
|
|
/* pos 00c2: 57 */ 0x63 /* 'c' */, 0x0D, 0x00 /* (to 0x00CF state 58) */,
|
|
0x75 /* 'u' */, 0x8B, 0x00 /* (to 0x0150 state 142) */,
|
|
0x6C /* 'l' */, 0x05, 0x01 /* (to 0x01CD state 208) */,
|
|
0x67 /* 'g' */, 0x6B, 0x02 /* (to 0x0336 state 478) */,
|
|
0x08, /* fail */
|
|
/* pos 00cf: 58 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00d0: 59 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00d1: 60 */ 0x73 /* 's' */, 0x07, 0x00 /* (to 0x00D8 state 61) */,
|
|
0x70 /* 'p' */, 0x41, 0x00 /* (to 0x0115 state 102) */,
|
|
0x08, /* fail */
|
|
/* pos 00d8: 61 */ 0xF3 /* 's' -> */,
|
|
/* pos 00d9: 62 */ 0xAD /* '-' -> */,
|
|
/* pos 00da: 63 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00db: 64 */ 0xEF /* 'o' -> */,
|
|
/* pos 00dc: 65 */ 0xEE /* 'n' -> */,
|
|
/* pos 00dd: 66 */ 0xF4 /* 't' -> */,
|
|
/* pos 00de: 67 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00df: 68 */ 0xEF /* 'o' -> */,
|
|
/* pos 00e0: 69 */ 0xEC /* 'l' -> */,
|
|
/* pos 00e1: 70 */ 0xAD /* '-' -> */,
|
|
/* pos 00e2: 71 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x00E9 state 72) */,
|
|
0x61 /* 'a' */, 0xDA, 0x00 /* (to 0x01BF state 195) */,
|
|
0x08, /* fail */
|
|
/* pos 00e9: 72 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00ea: 73 */ 0xF1 /* 'q' -> */,
|
|
/* pos 00eb: 74 */ 0xF5 /* 'u' -> */,
|
|
/* pos 00ec: 75 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00ed: 76 */ 0xF3 /* 's' -> */,
|
|
/* pos 00ee: 77 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ef: 78 */ 0xAD /* '-' -> */,
|
|
/* pos 00f0: 79 */ 0xE8 /* 'h' -> */,
|
|
/* pos 00f1: 80 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00f2: 81 */ 0xE1 /* 'a' -> */,
|
|
/* pos 00f3: 82 */ 0xE4 /* 'd' -> */,
|
|
/* pos 00f4: 83 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00f5: 84 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00f6: 85 */ 0xF3 /* 's' -> */,
|
|
/* pos 00f7: 86 */ 0xBA /* ':' -> */,
|
|
/* pos 00f8: 87 */ 0x00, 0x09 /* - terminal marker 9 - */,
|
|
/* pos 00fa: 88 */ 0xE6 /* 'f' -> */,
|
|
/* pos 00fb: 89 */ 0xAD /* '-' -> */,
|
|
/* pos 00fc: 90 */ 0x6E /* 'n' */, 0x0D, 0x00 /* (to 0x0109 state 91) */,
|
|
0x6D /* 'm' */, 0x29, 0x01 /* (to 0x0228 state 277) */,
|
|
0x72 /* 'r' */, 0x33, 0x01 /* (to 0x0235 state 283) */,
|
|
0x75 /* 'u' */, 0x37, 0x01 /* (to 0x023C state 289) */,
|
|
0x08, /* fail */
|
|
/* pos 0109: 91 */ 0xEF /* 'o' -> */,
|
|
/* pos 010a: 92 */ 0xEE /* 'n' -> */,
|
|
/* pos 010b: 93 */ 0xE5 /* 'e' -> */,
|
|
/* pos 010c: 94 */ 0xAD /* '-' -> */,
|
|
/* pos 010d: 95 */ 0xED /* 'm' -> */,
|
|
/* pos 010e: 96 */ 0xE1 /* 'a' -> */,
|
|
/* pos 010f: 97 */ 0xF4 /* 't' -> */,
|
|
/* pos 0110: 98 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0111: 99 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0112: 100 */ 0xBA /* ':' -> */,
|
|
/* pos 0113: 101 */ 0x00, 0x0B /* - terminal marker 11 - */,
|
|
/* pos 0115: 102 */ 0xF4 /* 't' -> */,
|
|
/* pos 0116: 103 */ 0xAD /* '-' -> */,
|
|
/* pos 0117: 104 */ 0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x0121 state 105) */,
|
|
0x6C /* 'l' */, 0x11, 0x00 /* (to 0x012B state 114) */,
|
|
0x72 /* 'r' */, 0x11, 0x02 /* (to 0x032E state 471) */,
|
|
0x08, /* fail */
|
|
/* pos 0121: 105 */ 0xEE /* 'n' -> */,
|
|
/* pos 0122: 106 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0123: 107 */ 0xEF /* 'o' -> */,
|
|
/* pos 0124: 108 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0125: 109 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0126: 110 */ 0xEE /* 'n' -> */,
|
|
/* pos 0127: 111 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0128: 112 */ 0xBA /* ':' -> */,
|
|
/* pos 0129: 113 */ 0x00, 0x0C /* - terminal marker 12 - */,
|
|
/* pos 012b: 114 */ 0xE1 /* 'a' -> */,
|
|
/* pos 012c: 115 */ 0xEE /* 'n' -> */,
|
|
/* pos 012d: 116 */ 0xE7 /* 'g' -> */,
|
|
/* pos 012e: 117 */ 0xF5 /* 'u' -> */,
|
|
/* pos 012f: 118 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0130: 119 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0131: 120 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0132: 121 */ 0xBA /* ':' -> */,
|
|
/* pos 0133: 122 */ 0x00, 0x0D /* - terminal marker 13 - */,
|
|
/* pos 0135: 123 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x013C state 124) */,
|
|
0x6F /* 'o' */, 0x9B, 0x01 /* (to 0x02D3 state 406) */,
|
|
0x08, /* fail */
|
|
/* pos 013c: 124 */ 0xE7 /* 'g' -> */,
|
|
/* pos 013d: 125 */ 0xED /* 'm' -> */,
|
|
/* pos 013e: 126 */ 0xE1 /* 'a' -> */,
|
|
/* pos 013f: 127 */ 0xBA /* ':' -> */,
|
|
/* pos 0140: 128 */ 0x00, 0x0E /* - terminal marker 14 - */,
|
|
/* pos 0142: 129 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0143: 130 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0144: 131 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0145: 132 */ 0xAD /* '-' -> */,
|
|
/* pos 0146: 133 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0147: 134 */ 0xEF /* 'o' -> */,
|
|
/* pos 0148: 135 */ 0xEE /* 'n' -> */,
|
|
/* pos 0149: 136 */ 0xF4 /* 't' -> */,
|
|
/* pos 014a: 137 */ 0xF2 /* 'r' -> */,
|
|
/* pos 014b: 138 */ 0xEF /* 'o' -> */,
|
|
/* pos 014c: 139 */ 0xEC /* 'l' -> */,
|
|
/* pos 014d: 140 */ 0xBA /* ':' -> */,
|
|
/* pos 014e: 141 */ 0x00, 0x0F /* - terminal marker 15 - */,
|
|
/* pos 0150: 142 */ 0xF4 /* 't' -> */,
|
|
/* pos 0151: 143 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0152: 144 */ 0xEF /* 'o' -> */,
|
|
/* pos 0153: 145 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0154: 146 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0155: 147 */ 0xFA /* 'z' -> */,
|
|
/* pos 0156: 148 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0157: 149 */ 0xF4 /* 't' -> */,
|
|
/* pos 0158: 150 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0159: 151 */ 0xEF /* 'o' -> */,
|
|
/* pos 015a: 152 */ 0xEE /* 'n' -> */,
|
|
/* pos 015b: 153 */ 0xBA /* ':' -> */,
|
|
/* pos 015c: 154 */ 0x00, 0x10 /* - terminal marker 16 - */,
|
|
/* pos 015e: 155 */ 0xEB /* 'k' -> */,
|
|
/* pos 015f: 156 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0160: 157 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0161: 158 */ 0xBA /* ':' -> */,
|
|
/* pos 0162: 159 */ 0x00, 0x11 /* - terminal marker 17 - */,
|
|
/* pos 0164: 160 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0165: 161 */ 0xEE /* 'n' -> */,
|
|
/* pos 0166: 162 */ 0xF4 /* 't' -> */,
|
|
/* pos 0167: 163 */ 0xAD /* '-' -> */,
|
|
/* pos 0168: 164 */ 0x6C /* 'l' */, 0x10, 0x00 /* (to 0x0178 state 165) */,
|
|
0x74 /* 't' */, 0x1E, 0x00 /* (to 0x0189 state 172) */,
|
|
0x64 /* 'd' */, 0x65, 0x00 /* (to 0x01D3 state 213) */,
|
|
0x65 /* 'e' */, 0x6F, 0x00 /* (to 0x01E0 state 225) */,
|
|
0x72 /* 'r' */, 0x88, 0x00 /* (to 0x01FC state 250) */,
|
|
0x08, /* fail */
|
|
/* pos 0178: 165 */ 0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x0182 state 166) */,
|
|
0x61 /* 'a' */, 0x6F, 0x00 /* (to 0x01EA state 234) */,
|
|
0x6F /* 'o' */, 0x75, 0x00 /* (to 0x01F3 state 242) */,
|
|
0x08, /* fail */
|
|
/* pos 0182: 166 */ 0xEE /* 'n' -> */,
|
|
/* pos 0183: 167 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0184: 168 */ 0xF4 /* 't' -> */,
|
|
/* pos 0185: 169 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0186: 170 */ 0xBA /* ':' -> */,
|
|
/* pos 0187: 171 */ 0x00, 0x12 /* - terminal marker 18 - */,
|
|
/* pos 0189: 172 */ 0xF9 /* 'y' -> */,
|
|
/* pos 018a: 173 */ 0xF0 /* 'p' -> */,
|
|
/* pos 018b: 174 */ 0xE5 /* 'e' -> */,
|
|
/* pos 018c: 175 */ 0xBA /* ':' -> */,
|
|
/* pos 018d: 176 */ 0x00, 0x13 /* - terminal marker 19 - */,
|
|
/* pos 018f: 177 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x0196 state 178) */,
|
|
0x65 /* 'e' */, 0x0A, 0x02 /* (to 0x039C state 558) */,
|
|
0x08, /* fail */
|
|
/* pos 0196: 178 */ 0xF4 /* 't' -> */,
|
|
/* pos 0197: 179 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0198: 180 */ 0xBA /* ':' -> */,
|
|
/* pos 0199: 181 */ 0x00, 0x14 /* - terminal marker 20 - */,
|
|
/* pos 019b: 182 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x01A2 state 183) */,
|
|
0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x01A8 state 188) */,
|
|
0x08, /* fail */
|
|
/* pos 01a2: 183 */ 0xEE /* 'n' -> */,
|
|
/* pos 01a3: 184 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01a4: 185 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01a5: 186 */ 0xBA /* ':' -> */,
|
|
/* pos 01a6: 187 */ 0x00, 0x15 /* - terminal marker 21 - */,
|
|
/* pos 01a8: 188 */ 0x66 /* 'f' */, 0x0A, 0x00 /* (to 0x01B2 state 189) */,
|
|
0x74 /* 't' */, 0xD7, 0x00 /* (to 0x0282 state 345) */,
|
|
0x70 /* 'p' */, 0x0B, 0x02 /* (to 0x03B9 state 583) */,
|
|
0x08, /* fail */
|
|
/* pos 01b2: 189 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x01B9 state 190) */,
|
|
0x72 /* 'r' */, 0xA5, 0x01 /* (to 0x035A state 505) */,
|
|
0x08, /* fail */
|
|
/* pos 01b9: 190 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01ba: 191 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01bb: 192 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01bc: 193 */ 0xBA /* ':' -> */,
|
|
/* pos 01bd: 194 */ 0x00, 0x16 /* - terminal marker 22 - */,
|
|
/* pos 01bf: 195 */ 0xEC /* 'l' -> */,
|
|
/* pos 01c0: 196 */ 0xEC /* 'l' -> */,
|
|
/* pos 01c1: 197 */ 0xEF /* 'o' -> */,
|
|
/* pos 01c2: 198 */ 0xF7 /* 'w' -> */,
|
|
/* pos 01c3: 199 */ 0xAD /* '-' -> */,
|
|
/* pos 01c4: 200 */ 0xEF /* 'o' -> */,
|
|
/* pos 01c5: 201 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01c6: 202 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01c7: 203 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01c8: 204 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01c9: 205 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ca: 206 */ 0xBA /* ':' -> */,
|
|
/* pos 01cb: 207 */ 0x00, 0x19 /* - terminal marker 25 - */,
|
|
/* pos 01cd: 208 */ 0xEC /* 'l' -> */,
|
|
/* pos 01ce: 209 */ 0xEF /* 'o' -> */,
|
|
/* pos 01cf: 210 */ 0xF7 /* 'w' -> */,
|
|
/* pos 01d0: 211 */ 0xBA /* ':' -> */,
|
|
/* pos 01d1: 212 */ 0x00, 0x1B /* - terminal marker 27 - */,
|
|
/* pos 01d3: 213 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d4: 214 */ 0xF3 /* 's' -> */,
|
|
/* pos 01d5: 215 */ 0xF0 /* 'p' -> */,
|
|
/* pos 01d6: 216 */ 0xEF /* 'o' -> */,
|
|
/* pos 01d7: 217 */ 0xF3 /* 's' -> */,
|
|
/* pos 01d8: 218 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d9: 219 */ 0xF4 /* 't' -> */,
|
|
/* pos 01da: 220 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01db: 221 */ 0xEF /* 'o' -> */,
|
|
/* pos 01dc: 222 */ 0xEE /* 'n' -> */,
|
|
/* pos 01dd: 223 */ 0xBA /* ':' -> */,
|
|
/* pos 01de: 224 */ 0x00, 0x1C /* - terminal marker 28 - */,
|
|
/* pos 01e0: 225 */ 0xEE /* 'n' -> */,
|
|
/* pos 01e1: 226 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01e2: 227 */ 0xEF /* 'o' -> */,
|
|
/* pos 01e3: 228 */ 0xE4 /* 'd' -> */,
|
|
/* pos 01e4: 229 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01e5: 230 */ 0xEE /* 'n' -> */,
|
|
/* pos 01e6: 231 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01e7: 232 */ 0xBA /* ':' -> */,
|
|
/* pos 01e8: 233 */ 0x00, 0x1D /* - terminal marker 29 - */,
|
|
/* pos 01ea: 234 */ 0xEE /* 'n' -> */,
|
|
/* pos 01eb: 235 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01ec: 236 */ 0xF5 /* 'u' -> */,
|
|
/* pos 01ed: 237 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01ee: 238 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01ef: 239 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01f0: 240 */ 0xBA /* ':' -> */,
|
|
/* pos 01f1: 241 */ 0x00, 0x1E /* - terminal marker 30 - */,
|
|
/* pos 01f3: 242 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01f4: 243 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01f5: 244 */ 0xF4 /* 't' -> */,
|
|
/* pos 01f6: 245 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01f7: 246 */ 0xEF /* 'o' -> */,
|
|
/* pos 01f8: 247 */ 0xEE /* 'n' -> */,
|
|
/* pos 01f9: 248 */ 0xBA /* ':' -> */,
|
|
/* pos 01fa: 249 */ 0x00, 0x1F /* - terminal marker 31 - */,
|
|
/* pos 01fc: 250 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01fd: 251 */ 0xEE /* 'n' -> */,
|
|
/* pos 01fe: 252 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01ff: 253 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0200: 254 */ 0xBA /* ':' -> */,
|
|
/* pos 0201: 255 */ 0x00, 0x20 /* - terminal marker 32 - */,
|
|
/* pos 0203: 256 */ 0x74 /* 't' */, 0x07, 0x00 /* (to 0x020A state 257) */,
|
|
0x78 /* 'x' */, 0x09, 0x00 /* (to 0x020F state 261) */,
|
|
0x08, /* fail */
|
|
/* pos 020a: 257 */ 0xE1 /* 'a' -> */,
|
|
/* pos 020b: 258 */ 0xE7 /* 'g' -> */,
|
|
/* pos 020c: 259 */ 0xBA /* ':' -> */,
|
|
/* pos 020d: 260 */ 0x00, 0x21 /* - terminal marker 33 - */,
|
|
/* pos 020f: 261 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0210: 262 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0217 state 263) */,
|
|
0x69 /* 'i' */, 0x09, 0x00 /* (to 0x021C state 267) */,
|
|
0x08, /* fail */
|
|
/* pos 0217: 263 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0218: 264 */ 0xF4 /* 't' -> */,
|
|
/* pos 0219: 265 */ 0xBA /* ':' -> */,
|
|
/* pos 021a: 266 */ 0x00, 0x22 /* - terminal marker 34 - */,
|
|
/* pos 021c: 267 */ 0xF2 /* 'r' -> */,
|
|
/* pos 021d: 268 */ 0xE5 /* 'e' -> */,
|
|
/* pos 021e: 269 */ 0xF3 /* 's' -> */,
|
|
/* pos 021f: 270 */ 0xBA /* ':' -> */,
|
|
/* pos 0220: 271 */ 0x00, 0x23 /* - terminal marker 35 - */,
|
|
/* pos 0222: 272 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0223: 273 */ 0xEF /* 'o' -> */,
|
|
/* pos 0224: 274 */ 0xED /* 'm' -> */,
|
|
/* pos 0225: 275 */ 0xBA /* ':' -> */,
|
|
/* pos 0226: 276 */ 0x00, 0x24 /* - terminal marker 36 - */,
|
|
/* pos 0228: 277 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x022F state 278) */,
|
|
0x6F /* 'o' */, 0xE3, 0x00 /* (to 0x030E state 441) */,
|
|
0x08, /* fail */
|
|
/* pos 022f: 278 */ 0xF4 /* 't' -> */,
|
|
/* pos 0230: 279 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0231: 280 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0232: 281 */ 0xBA /* ':' -> */,
|
|
/* pos 0233: 282 */ 0x00, 0x25 /* - terminal marker 37 - */,
|
|
/* pos 0235: 283 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0236: 284 */ 0xEE /* 'n' -> */,
|
|
/* pos 0237: 285 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0238: 286 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0239: 287 */ 0xBA /* ':' -> */,
|
|
/* pos 023a: 288 */ 0x00, 0x26 /* - terminal marker 38 - */,
|
|
/* pos 023c: 289 */ 0xEE /* 'n' -> */,
|
|
/* pos 023d: 290 */ 0xED /* 'm' -> */,
|
|
/* pos 023e: 291 */ 0xEF /* 'o' -> */,
|
|
/* pos 023f: 292 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0240: 293 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0241: 294 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0242: 295 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0243: 296 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0244: 297 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0245: 298 */ 0xAD /* '-' -> */,
|
|
/* pos 0246: 299 */ 0xF3 /* 's' -> */,
|
|
/* pos 0247: 300 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0248: 301 */ 0xEE /* 'n' -> */,
|
|
/* pos 0249: 302 */ 0xE3 /* 'c' -> */,
|
|
/* pos 024a: 303 */ 0xE5 /* 'e' -> */,
|
|
/* pos 024b: 304 */ 0xBA /* ':' -> */,
|
|
/* pos 024c: 305 */ 0x00, 0x27 /* - terminal marker 39 - */,
|
|
/* pos 024e: 306 */ 0x61 /* 'a' */, 0x0A, 0x00 /* (to 0x0258 state 307) */,
|
|
0x69 /* 'i' */, 0x15, 0x00 /* (to 0x0266 state 320) */,
|
|
0x6F /* 'o' */, 0x17, 0x00 /* (to 0x026B state 324) */,
|
|
0x08, /* fail */
|
|
/* pos 0258: 307 */ 0xF3 /* 's' -> */,
|
|
/* pos 0259: 308 */ 0xF4 /* 't' -> */,
|
|
/* pos 025a: 309 */ 0xAD /* '-' -> */,
|
|
/* pos 025b: 310 */ 0xED /* 'm' -> */,
|
|
/* pos 025c: 311 */ 0xEF /* 'o' -> */,
|
|
/* pos 025d: 312 */ 0xE4 /* 'd' -> */,
|
|
/* pos 025e: 313 */ 0xE9 /* 'i' -> */,
|
|
/* pos 025f: 314 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0260: 315 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0261: 316 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0262: 317 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0263: 318 */ 0xBA /* ':' -> */,
|
|
/* pos 0264: 319 */ 0x00, 0x28 /* - terminal marker 40 - */,
|
|
/* pos 0266: 320 */ 0xEE /* 'n' -> */,
|
|
/* pos 0267: 321 */ 0xEB /* 'k' -> */,
|
|
/* pos 0268: 322 */ 0xBA /* ':' -> */,
|
|
/* pos 0269: 323 */ 0x00, 0x29 /* - terminal marker 41 - */,
|
|
/* pos 026b: 324 */ 0xE3 /* 'c' -> */,
|
|
/* pos 026c: 325 */ 0xE1 /* 'a' -> */,
|
|
/* pos 026d: 326 */ 0xF4 /* 't' -> */,
|
|
/* pos 026e: 327 */ 0xE9 /* 'i' -> */,
|
|
/* pos 026f: 328 */ 0xEF /* 'o' -> */,
|
|
/* pos 0270: 329 */ 0xEE /* 'n' -> */,
|
|
/* pos 0271: 330 */ 0xBA /* ':' -> */,
|
|
/* pos 0272: 331 */ 0x00, 0x2A /* - terminal marker 42 - */,
|
|
/* pos 0274: 332 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0275: 333 */ 0xF8 /* 'x' -> */,
|
|
/* pos 0276: 334 */ 0xAD /* '-' -> */,
|
|
/* pos 0277: 335 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0278: 336 */ 0xEF /* 'o' -> */,
|
|
/* pos 0279: 337 */ 0xF2 /* 'r' -> */,
|
|
/* pos 027a: 338 */ 0xF7 /* 'w' -> */,
|
|
/* pos 027b: 339 */ 0xE1 /* 'a' -> */,
|
|
/* pos 027c: 340 */ 0xF2 /* 'r' -> */,
|
|
/* pos 027d: 341 */ 0xE4 /* 'd' -> */,
|
|
/* pos 027e: 342 */ 0xF3 /* 's' -> */,
|
|
/* pos 027f: 343 */ 0xBA /* ':' -> */,
|
|
/* pos 0280: 344 */ 0x00, 0x2B /* - terminal marker 43 - */,
|
|
/* pos 0282: 345 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0283: 346 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0284: 347 */ 0xAD /* '-' -> */,
|
|
/* pos 0285: 348 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0286: 349 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0287: 350 */ 0xF4 /* 't' -> */,
|
|
/* pos 0288: 351 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0289: 352 */ 0xF2 /* 'r' -> */,
|
|
/* pos 028a: 353 */ 0xBA /* ':' -> */,
|
|
/* pos 028b: 354 */ 0x00, 0x2F /* - terminal marker 47 - */,
|
|
/* pos 028d: 355 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0294 state 356) */,
|
|
0x74 /* 't' */, 0x1E, 0x00 /* (to 0x02AE state 371) */,
|
|
0x08, /* fail */
|
|
/* pos 0294: 356 */ 0x72 /* 'r' */, 0x0A, 0x00 /* (to 0x029E state 357) */,
|
|
0x74 /* 't' */, 0x0D, 0x00 /* (to 0x02A4 state 362) */,
|
|
0x63 /* 'c' */, 0x83, 0x00 /* (to 0x031D state 455) */,
|
|
0x08, /* fail */
|
|
/* pos 029e: 357 */ 0xF6 /* 'v' -> */,
|
|
/* pos 029f: 358 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02a0: 359 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02a1: 360 */ 0xBA /* ':' -> */,
|
|
/* pos 02a2: 361 */ 0x00, 0x30 /* - terminal marker 48 - */,
|
|
/* pos 02a4: 362 */ 0xAD /* '-' -> */,
|
|
/* pos 02a5: 363 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02a6: 364 */ 0xEF /* 'o' -> */,
|
|
/* pos 02a7: 365 */ 0xEF /* 'o' -> */,
|
|
/* pos 02a8: 366 */ 0xEB /* 'k' -> */,
|
|
/* pos 02a9: 367 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02aa: 368 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02ab: 369 */ 0xBA /* ':' -> */,
|
|
/* pos 02ac: 370 */ 0x00, 0x31 /* - terminal marker 49 - */,
|
|
/* pos 02ae: 371 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02af: 372 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02b0: 373 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02b1: 374 */ 0xF4 /* 't' -> */,
|
|
/* pos 02b2: 375 */ 0xAD /* '-' -> */,
|
|
/* pos 02b3: 376 */ 0xF4 /* 't' -> */,
|
|
/* pos 02b4: 377 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02b5: 378 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02b6: 379 */ 0xEE /* 'n' -> */,
|
|
/* pos 02b7: 380 */ 0xF3 /* 's' -> */,
|
|
/* pos 02b8: 381 */ 0xF0 /* 'p' -> */,
|
|
/* pos 02b9: 382 */ 0xEF /* 'o' -> */,
|
|
/* pos 02ba: 383 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02bb: 384 */ 0xF4 /* 't' -> */,
|
|
/* pos 02bc: 385 */ 0xAD /* '-' -> */,
|
|
/* pos 02bd: 386 */ 0xF3 /* 's' -> */,
|
|
/* pos 02be: 387 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02bf: 388 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02c0: 389 */ 0xF5 /* 'u' -> */,
|
|
/* pos 02c1: 390 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02c2: 391 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02c3: 392 */ 0xF4 /* 't' -> */,
|
|
/* pos 02c4: 393 */ 0xF9 /* 'y' -> */,
|
|
/* pos 02c5: 394 */ 0xBA /* ':' -> */,
|
|
/* pos 02c6: 395 */ 0x00, 0x32 /* - terminal marker 50 - */,
|
|
/* pos 02c8: 396 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02c9: 397 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02ca: 398 */ 0xAD /* '-' -> */,
|
|
/* pos 02cb: 399 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02cc: 400 */ 0xE7 /* 'g' -> */,
|
|
/* pos 02cd: 401 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02ce: 402 */ 0xEE /* 'n' -> */,
|
|
/* pos 02cf: 403 */ 0xF4 /* 't' -> */,
|
|
/* pos 02d0: 404 */ 0xBA /* ':' -> */,
|
|
/* pos 02d1: 405 */ 0x00, 0x34 /* - terminal marker 52 - */,
|
|
/* pos 02d3: 406 */ 0xF8 /* 'x' -> */,
|
|
/* pos 02d4: 407 */ 0xF9 /* 'y' -> */,
|
|
/* pos 02d5: 408 */ 0x20 /* ' ' */, 0x07, 0x00 /* (to 0x02DC state 409) */,
|
|
0x2D /* '-' */, 0x62, 0x00 /* (to 0x033A state 481) */,
|
|
0x08, /* fail */
|
|
/* pos 02dc: 409 */ 0x00, 0x3C /* - terminal marker 60 - */,
|
|
/* pos 02de: 410 */ 0xAD /* '-' -> */,
|
|
/* pos 02df: 411 */ 0x66 /* 'f' */, 0x07, 0x00 /* (to 0x02E6 state 412) */,
|
|
0x72 /* 'r' */, 0xC8, 0x00 /* (to 0x03AA state 570) */,
|
|
0x08, /* fail */
|
|
/* pos 02e6: 412 */ 0xEF /* 'o' -> */,
|
|
/* pos 02e7: 413 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02e8: 414 */ 0xF7 /* 'w' -> */,
|
|
/* pos 02e9: 415 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02ea: 416 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02eb: 417 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02ec: 418 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02ed: 419 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02ee: 420 */ 0xAD /* '-' -> */,
|
|
/* pos 02ef: 421 */ 0xE6 /* 'f' -> */,
|
|
/* pos 02f0: 422 */ 0xEF /* 'o' -> */,
|
|
/* pos 02f1: 423 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02f2: 424 */ 0xBA /* ':' -> */,
|
|
/* pos 02f3: 425 */ 0x00, 0x3F /* - terminal marker 63 - */,
|
|
/* pos 02f5: 426 */ 0x00, 0x40 /* - terminal marker 64 - */,
|
|
/* pos 02f7: 427 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02f8: 428 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02f9: 429 */ 0xA0 /* ' ' -> */,
|
|
/* pos 02fa: 430 */ 0x00, 0x41 /* - terminal marker 65 - */,
|
|
/* pos 02fc: 431 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0303 state 432) */,
|
|
0x72 /* 'r' */, 0x61, 0x00 /* (to 0x0360 state 510) */,
|
|
0x08, /* fail */
|
|
/* pos 0303: 432 */ 0xBA /* ':' -> */,
|
|
/* pos 0304: 433 */ 0x00, 0x42 /* - terminal marker 66 - */,
|
|
/* pos 0306: 434 */ 0xF4 /* 't' -> */,
|
|
/* pos 0307: 435 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0308: 436 */ 0xEF /* 'o' -> */,
|
|
/* pos 0309: 437 */ 0xEE /* 'n' -> */,
|
|
/* pos 030a: 438 */ 0xF3 /* 's' -> */,
|
|
/* pos 030b: 439 */ 0xA0 /* ' ' -> */,
|
|
/* pos 030c: 440 */ 0x00, 0x02 /* - terminal marker 2 - */,
|
|
/* pos 030e: 441 */ 0xE4 /* 'd' -> */,
|
|
/* pos 030f: 442 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0310: 443 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0311: 444 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0312: 445 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0313: 446 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0314: 447 */ 0xAD /* '-' -> */,
|
|
/* pos 0315: 448 */ 0xF3 /* 's' -> */,
|
|
/* pos 0316: 449 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0317: 450 */ 0xEE /* 'n' -> */,
|
|
/* pos 0318: 451 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0319: 452 */ 0xE5 /* 'e' -> */,
|
|
/* pos 031a: 453 */ 0xBA /* ':' -> */,
|
|
/* pos 031b: 454 */ 0x00, 0x0A /* - terminal marker 10 - */,
|
|
/* pos 031d: 455 */ 0xAD /* '-' -> */,
|
|
/* pos 031e: 456 */ 0xF7 /* 'w' -> */,
|
|
/* pos 031f: 457 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0320: 458 */ 0xE2 /* 'b' -> */,
|
|
/* pos 0321: 459 */ 0xF3 /* 's' -> */,
|
|
/* pos 0322: 460 */ 0xEF /* 'o' -> */,
|
|
/* pos 0323: 461 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0324: 462 */ 0xEB /* 'k' -> */,
|
|
/* pos 0325: 463 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0326: 464 */ 0xF4 /* 't' -> */,
|
|
/* pos 0327: 465 */ 0xAD /* '-' -> */,
|
|
/* pos 0328: 466 */ 0xEB /* 'k' -> */,
|
|
/* pos 0329: 467 */ 0xE5 /* 'e' -> */,
|
|
/* pos 032a: 468 */ 0xF9 /* 'y' -> */,
|
|
/* pos 032b: 469 */ 0xBA /* ':' -> */,
|
|
/* pos 032c: 470 */ 0x00, 0x17 /* - terminal marker 23 - */,
|
|
/* pos 032e: 471 */ 0xE1 /* 'a' -> */,
|
|
/* pos 032f: 472 */ 0xEE /* 'n' -> */,
|
|
/* pos 0330: 473 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0331: 474 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0332: 475 */ 0xF3 /* 's' -> */,
|
|
/* pos 0333: 476 */ 0xBA /* ':' -> */,
|
|
/* pos 0334: 477 */ 0x00, 0x18 /* - terminal marker 24 - */,
|
|
/* pos 0336: 478 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0337: 479 */ 0xBA /* ':' -> */,
|
|
/* pos 0338: 480 */ 0x00, 0x1A /* - terminal marker 26 - */,
|
|
/* pos 033a: 481 */ 0xE1 /* 'a' -> */,
|
|
/* pos 033b: 482 */ 0xF5 /* 'u' -> */,
|
|
/* pos 033c: 483 */ 0xF4 /* 't' -> */,
|
|
/* pos 033d: 484 */ 0xE8 /* 'h' -> */,
|
|
/* pos 033e: 485 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0345 state 486) */,
|
|
0x6F /* 'o' */, 0x0E, 0x00 /* (to 0x034F state 495) */,
|
|
0x08, /* fail */
|
|
/* pos 0345: 486 */ 0xEE /* 'n' -> */,
|
|
/* pos 0346: 487 */ 0xF4 /* 't' -> */,
|
|
/* pos 0347: 488 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0348: 489 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0349: 490 */ 0xE1 /* 'a' -> */,
|
|
/* pos 034a: 491 */ 0xF4 /* 't' -> */,
|
|
/* pos 034b: 492 */ 0xE5 /* 'e' -> */,
|
|
/* pos 034c: 493 */ 0xBA /* ':' -> */,
|
|
/* pos 034d: 494 */ 0x00, 0x2C /* - terminal marker 44 - */,
|
|
/* pos 034f: 495 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0350: 496 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0351: 497 */ 0xFA /* 'z' -> */,
|
|
/* pos 0352: 498 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0353: 499 */ 0xF4 /* 't' -> */,
|
|
/* pos 0354: 500 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0355: 501 */ 0xEF /* 'o' -> */,
|
|
/* pos 0356: 502 */ 0xEE /* 'n' -> */,
|
|
/* pos 0357: 503 */ 0xBA /* ':' -> */,
|
|
/* pos 0358: 504 */ 0x00, 0x2D /* - terminal marker 45 - */,
|
|
/* pos 035a: 505 */ 0xE5 /* 'e' -> */,
|
|
/* pos 035b: 506 */ 0xF3 /* 's' -> */,
|
|
/* pos 035c: 507 */ 0xE8 /* 'h' -> */,
|
|
/* pos 035d: 508 */ 0xBA /* ':' -> */,
|
|
/* pos 035e: 509 */ 0x00, 0x2E /* - terminal marker 46 - */,
|
|
/* pos 0360: 510 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0361: 511 */ 0xEE /* 'n' -> */,
|
|
/* pos 0362: 512 */ 0xF3 /* 's' -> */,
|
|
/* pos 0363: 513 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0364: 514 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0365: 515 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0366: 516 */ 0xAD /* '-' -> */,
|
|
/* pos 0367: 517 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0368: 518 */ 0xEE /* 'n' -> */,
|
|
/* pos 0369: 519 */ 0xE3 /* 'c' -> */,
|
|
/* pos 036a: 520 */ 0xEF /* 'o' -> */,
|
|
/* pos 036b: 521 */ 0xE4 /* 'd' -> */,
|
|
/* pos 036c: 522 */ 0xE9 /* 'i' -> */,
|
|
/* pos 036d: 523 */ 0xEE /* 'n' -> */,
|
|
/* pos 036e: 524 */ 0xE7 /* 'g' -> */,
|
|
/* pos 036f: 525 */ 0xBA /* ':' -> */,
|
|
/* pos 0370: 526 */ 0x00, 0x33 /* - terminal marker 51 - */,
|
|
/* pos 0372: 527 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x0379 state 528) */,
|
|
0x69 /* 'i' */, 0x09, 0x00 /* (to 0x037E state 532) */,
|
|
0x08, /* fail */
|
|
/* pos 0379: 528 */ 0xF2 /* 'r' -> */,
|
|
/* pos 037a: 529 */ 0xF9 /* 'y' -> */,
|
|
/* pos 037b: 530 */ 0xBA /* ':' -> */,
|
|
/* pos 037c: 531 */ 0x00, 0x35 /* - terminal marker 53 - */,
|
|
/* pos 037e: 532 */ 0xE1 /* 'a' -> */,
|
|
/* pos 037f: 533 */ 0xBA /* ':' -> */,
|
|
/* pos 0380: 534 */ 0x00, 0x36 /* - terminal marker 54 - */,
|
|
/* pos 0382: 535 */ 0xF7 /* 'w' -> */,
|
|
/* pos 0383: 536 */ 0xF7 /* 'w' -> */,
|
|
/* pos 0384: 537 */ 0xAD /* '-' -> */,
|
|
/* pos 0385: 538 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0386: 539 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0387: 540 */ 0xF4 /* 't' -> */,
|
|
/* pos 0388: 541 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0389: 542 */ 0xE5 /* 'e' -> */,
|
|
/* pos 038a: 543 */ 0xEE /* 'n' -> */,
|
|
/* pos 038b: 544 */ 0xF4 /* 't' -> */,
|
|
/* pos 038c: 545 */ 0xE9 /* 'i' -> */,
|
|
/* pos 038d: 546 */ 0xE3 /* 'c' -> */,
|
|
/* pos 038e: 547 */ 0xE1 /* 'a' -> */,
|
|
/* pos 038f: 548 */ 0xF4 /* 't' -> */,
|
|
/* pos 0390: 549 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0391: 550 */ 0xBA /* ':' -> */,
|
|
/* pos 0392: 551 */ 0x00, 0x37 /* - terminal marker 55 - */,
|
|
/* pos 0394: 552 */ 0xF4 /* 't' -> */,
|
|
/* pos 0395: 553 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0396: 554 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0397: 555 */ 0x00, 0x38 /* - terminal marker 56 - */,
|
|
/* pos 0399: 556 */ 0xF4 /* 't' -> */,
|
|
/* pos 039a: 557 */ 0x00, 0x39 /* - terminal marker 57 - */,
|
|
/* pos 039c: 558 */ 0xEC /* 'l' -> */,
|
|
/* pos 039d: 559 */ 0xE5 /* 'e' -> */,
|
|
/* pos 039e: 560 */ 0xF4 /* 't' -> */,
|
|
/* pos 039f: 561 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03a0: 562 */ 0x00, 0x3A /* - terminal marker 58 - */,
|
|
/* pos 03a2: 563 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03a3: 564 */ 0xAD /* '-' -> */,
|
|
/* pos 03a4: 565 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03a5: 566 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03a6: 567 */ 0xE7 /* 'g' -> */,
|
|
/* pos 03a7: 568 */ 0xF3 /* 's' -> */,
|
|
/* pos 03a8: 569 */ 0x00, 0x3B /* - terminal marker 59 - */,
|
|
/* pos 03aa: 570 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03ab: 571 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03ac: 572 */ 0xEC /* 'l' -> */,
|
|
/* pos 03ad: 573 */ 0xAD /* '-' -> */,
|
|
/* pos 03ae: 574 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03af: 575 */ 0xF0 /* 'p' -> */,
|
|
/* pos 03b0: 576 */ 0xBA /* ':' -> */,
|
|
/* pos 03b1: 577 */ 0x00, 0x3D /* - terminal marker 61 - */,
|
|
/* pos 03b3: 578 */ 0xB1 /* '1' -> */,
|
|
/* pos 03b4: 579 */ 0xAE /* '.' -> */,
|
|
/* pos 03b5: 580 */ 0xB0 /* '0' -> */,
|
|
/* pos 03b6: 581 */ 0xA0 /* ' ' -> */,
|
|
/* pos 03b7: 582 */ 0x00, 0x3E /* - terminal marker 62 - */,
|
|
/* pos 03b9: 583 */ 0xEC /* 'l' -> */,
|
|
/* pos 03ba: 584 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03bb: 585 */ 0xF9 /* 'y' -> */,
|
|
/* pos 03bc: 586 */ 0xAD /* '-' -> */,
|
|
/* pos 03bd: 587 */ 0xEE /* 'n' -> */,
|
|
/* pos 03be: 588 */ 0xEF /* 'o' -> */,
|
|
/* pos 03bf: 589 */ 0xEE /* 'n' -> */,
|
|
/* pos 03c0: 590 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03c1: 591 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03c2: 592 */ 0xBA /* ':' -> */,
|
|
/* pos 03c3: 593 */ 0x00, 0x43 /* - terminal marker 67 - */,
|
|
/* pos 03c5: 594 */ 0xF0 /* 'p' -> */,
|
|
/* pos 03c6: 595 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03c7: 596 */ 0xEF /* 'o' -> */,
|
|
/* pos 03c8: 597 */ 0xF4 /* 't' -> */,
|
|
/* pos 03c9: 598 */ 0xEF /* 'o' -> */,
|
|
/* pos 03ca: 599 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03cb: 600 */ 0xEF /* 'o' -> */,
|
|
/* pos 03cc: 601 */ 0xEC /* 'l' -> */,
|
|
/* pos 03cd: 602 */ 0x00, 0x44 /* - terminal marker 68 - */,
|
|
/* total size 975 bytes */
|
|
#endif
|
|
|
|
#if !defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && defined(LWS_ROLE_WS) && !defined(LWS_ROLE_H2)
|
|
/* 0: 0: get */
|
|
/* 1: 1: post */
|
|
/* 2: 3: host: */
|
|
/* 3: 4: connection: */
|
|
/* 4: 5: upgrade: */
|
|
/* 5: 6: origin: */
|
|
/* 6: 7: sec-websocket-draft: */
|
|
/* 7: 8:
|
|
*/
|
|
/* 8: 9: sec-websocket-extensions: */
|
|
/* 9: 10: sec-websocket-key1: */
|
|
/* 10: 11: sec-websocket-key2: */
|
|
/* 11: 12: sec-websocket-protocol: */
|
|
/* 12: 13: sec-websocket-accept: */
|
|
/* 13: 14: sec-websocket-nonce: */
|
|
/* 14: 15: http/1.1 */
|
|
/* 15: 16: http2-settings: */
|
|
/* 16: 18: access-control-request-headers: */
|
|
/* 17: 20: if-none-match: */
|
|
/* 18: 21: accept-encoding: */
|
|
/* 19: 22: accept-language: */
|
|
/* 20: 23: pragma: */
|
|
/* 21: 24: cache-control: */
|
|
/* 22: 25: authorization: */
|
|
/* 23: 26: cookie: */
|
|
/* 24: 27: content-length: */
|
|
/* 25: 28: content-type: */
|
|
/* 26: 29: date: */
|
|
/* 27: 30: range: */
|
|
/* 28: 31: referer: */
|
|
/* 29: 33: sec-websocket-version: */
|
|
/* 30: 34: sec-websocket-origin: */
|
|
/* 31: 35: :authority */
|
|
/* 32: 42: access-control-allow-origin: */
|
|
/* 33: 44: allow: */
|
|
/* 34: 45: content-disposition: */
|
|
/* 35: 46: content-encoding: */
|
|
/* 36: 47: content-language: */
|
|
/* 37: 48: content-location: */
|
|
/* 38: 49: content-range: */
|
|
/* 39: 50: etag: */
|
|
/* 40: 51: expect: */
|
|
/* 41: 52: expires: */
|
|
/* 42: 53: from: */
|
|
/* 43: 54: if-match: */
|
|
/* 44: 55: if-range: */
|
|
/* 45: 56: if-unmodified-since: */
|
|
/* 46: 57: last-modified: */
|
|
/* 47: 58: link: */
|
|
/* 48: 59: location: */
|
|
/* 49: 60: max-forwards: */
|
|
/* 50: 64: retry-after: */
|
|
/* 51: 65: server: */
|
|
/* 52: 66: set-cookie: */
|
|
/* 53: 67: strict-transport-security: */
|
|
/* 54: 69: user-agent: */
|
|
/* 55: 77: proxy */
|
|
/* 56: 80: x-forwarded-for: */
|
|
/* 57: 81: connect */
|
|
/* 58: 82: head */
|
|
/* 59: 83: te: */
|
|
/* 60: 87: */
|
|
/* pos 0000: 0 */ 0x67 /* 'g' */, 0x40, 0x00 /* (to 0x0040 state 1) */,
|
|
0x70 /* 'p' */, 0x42, 0x00 /* (to 0x0045 state 5) */,
|
|
0x68 /* 'h' */, 0x51, 0x00 /* (to 0x0057 state 10) */,
|
|
0x63 /* 'c' */, 0x5D, 0x00 /* (to 0x0066 state 15) */,
|
|
0x75 /* 'u' */, 0x7E, 0x00 /* (to 0x008A state 26) */,
|
|
0x6F /* 'o' */, 0x8D, 0x00 /* (to 0x009C state 34) */,
|
|
0x0D /* '.' */, 0x98, 0x00 /* (to 0x00AA state 41) */,
|
|
0x61 /* 'a' */, 0xAD, 0x00 /* (to 0x00C2 state 57) */,
|
|
0x69 /* 'i' */, 0xE2, 0x00 /* (to 0x00FA state 88) */,
|
|
0x64 /* 'd' */, 0x74, 0x01 /* (to 0x018F state 177) */,
|
|
0x72 /* 'r' */, 0x7D, 0x01 /* (to 0x019B state 182) */,
|
|
0x65 /* 'e' */, 0xE2, 0x01 /* (to 0x0203 state 256) */,
|
|
0x66 /* 'f' */, 0xFE, 0x01 /* (to 0x0222 state 272) */,
|
|
0x6C /* 'l' */, 0x27, 0x02 /* (to 0x024E state 306) */,
|
|
0x6D /* 'm' */, 0x4A, 0x02 /* (to 0x0274 state 332) */,
|
|
0x73 /* 's' */, 0x60, 0x02 /* (to 0x028D state 355) */,
|
|
0x78 /* 'x' */, 0xAE, 0x02 /* (to 0x02DE state 410) */,
|
|
0x74 /* 't' */, 0xC9, 0x02 /* (to 0x02FC state 431) */,
|
|
0x76 /* 'v' */, 0x5D, 0x03 /* (to 0x0393 state 527) */,
|
|
0x77 /* 'w' */, 0x6A, 0x03 /* (to 0x03A3 state 535) */,
|
|
0x3A /* ':' */, 0xB0, 0x03 /* (to 0x03EC state 594) */,
|
|
0x08, /* fail */
|
|
/* pos 0040: 1 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0041: 2 */ 0xF4 /* 't' -> */,
|
|
/* pos 0042: 3 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0043: 4 */ 0x00, 0x00 /* - terminal marker 0 - */,
|
|
/* pos 0045: 5 */ 0x6F /* 'o' */, 0x0D, 0x00 /* (to 0x0052 state 6) */,
|
|
0x72 /* 'r' */, 0xED, 0x00 /* (to 0x0135 state 123) */,
|
|
0x61 /* 'a' */, 0x6A, 0x03 /* (to 0x03B5 state 552) */,
|
|
0x75 /* 'u' */, 0x6C, 0x03 /* (to 0x03BA state 556) */,
|
|
0x08, /* fail */
|
|
/* pos 0052: 6 */ 0xF3 /* 's' -> */,
|
|
/* pos 0053: 7 */ 0xF4 /* 't' -> */,
|
|
/* pos 0054: 8 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0055: 9 */ 0x00, 0x01 /* - terminal marker 1 - */,
|
|
/* pos 0057: 10 */ 0x6F /* 'o' */, 0x0A, 0x00 /* (to 0x0061 state 11) */,
|
|
0x74 /* 't' */, 0x53, 0x00 /* (to 0x00AD state 43) */,
|
|
0x65 /* 'e' */, 0x9A, 0x02 /* (to 0x02F7 state 427) */,
|
|
0x08, /* fail */
|
|
/* pos 0061: 11 */ 0xF3 /* 's' -> */,
|
|
/* pos 0062: 12 */ 0xF4 /* 't' -> */,
|
|
/* pos 0063: 13 */ 0xBA /* ':' -> */,
|
|
/* pos 0064: 14 */ 0x00, 0x02 /* - terminal marker 2 - */,
|
|
/* pos 0066: 15 */ 0x6F /* 'o' */, 0x07, 0x00 /* (to 0x006D state 16) */,
|
|
0x61 /* 'a' */, 0xD9, 0x00 /* (to 0x0142 state 129) */,
|
|
0x08, /* fail */
|
|
/* pos 006d: 16 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x0074 state 17) */,
|
|
0x6F /* 'o' */, 0xEE, 0x00 /* (to 0x015E state 155) */,
|
|
0x08, /* fail */
|
|
/* pos 0074: 17 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x007B state 18) */,
|
|
0x74 /* 't' */, 0xED, 0x00 /* (to 0x0164 state 160) */,
|
|
0x08, /* fail */
|
|
/* pos 007b: 18 */ 0xE5 /* 'e' -> */,
|
|
/* pos 007c: 19 */ 0xE3 /* 'c' -> */,
|
|
/* pos 007d: 20 */ 0xF4 /* 't' -> */,
|
|
/* pos 007e: 21 */ 0x69 /* 'i' */, 0x07, 0x00 /* (to 0x0085 state 22) */,
|
|
0x20 /* ' ' */, 0x74, 0x02 /* (to 0x02F5 state 426) */,
|
|
0x08, /* fail */
|
|
/* pos 0085: 22 */ 0xEF /* 'o' -> */,
|
|
/* pos 0086: 23 */ 0xEE /* 'n' -> */,
|
|
/* pos 0087: 24 */ 0xBA /* ':' -> */,
|
|
/* pos 0088: 25 */ 0x00, 0x03 /* - terminal marker 3 - */,
|
|
/* pos 008a: 26 */ 0x70 /* 'p' */, 0x0A, 0x00 /* (to 0x0094 state 27) */,
|
|
0x73 /* 's' */, 0x3B, 0x02 /* (to 0x02C8 state 396) */,
|
|
0x72 /* 'r' */, 0x33, 0x03 /* (to 0x03C3 state 563) */,
|
|
0x08, /* fail */
|
|
/* pos 0094: 27 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0095: 28 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0096: 29 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0097: 30 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0098: 31 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0099: 32 */ 0xBA /* ':' -> */,
|
|
/* pos 009a: 33 */ 0x00, 0x04 /* - terminal marker 4 - */,
|
|
/* pos 009c: 34 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x00A3 state 35) */,
|
|
0x70 /* 'p' */, 0x67, 0x02 /* (to 0x0306 state 434) */,
|
|
0x08, /* fail */
|
|
/* pos 00a3: 35 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00a4: 36 */ 0xE7 /* 'g' -> */,
|
|
/* pos 00a5: 37 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00a6: 38 */ 0xEE /* 'n' -> */,
|
|
/* pos 00a7: 39 */ 0xBA /* ':' -> */,
|
|
/* pos 00a8: 40 */ 0x00, 0x05 /* - terminal marker 5 - */,
|
|
/* pos 00aa: 41 */ 0x8A /* '.' -> */,
|
|
/* pos 00ab: 42 */ 0x00, 0x07 /* - terminal marker 7 - */,
|
|
/* pos 00ad: 43 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ae: 44 */ 0xF0 /* 'p' -> */,
|
|
/* pos 00af: 45 */ 0x32 /* '2' */, 0x07, 0x00 /* (to 0x00B6 state 46) */,
|
|
0x2F /* '/' */, 0x22, 0x03 /* (to 0x03D4 state 578) */,
|
|
0x08, /* fail */
|
|
/* pos 00b6: 46 */ 0xAD /* '-' -> */,
|
|
/* pos 00b7: 47 */ 0xF3 /* 's' -> */,
|
|
/* pos 00b8: 48 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00b9: 49 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ba: 50 */ 0xF4 /* 't' -> */,
|
|
/* pos 00bb: 51 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00bc: 52 */ 0xEE /* 'n' -> */,
|
|
/* pos 00bd: 53 */ 0xE7 /* 'g' -> */,
|
|
/* pos 00be: 54 */ 0xF3 /* 's' -> */,
|
|
/* pos 00bf: 55 */ 0xBA /* ':' -> */,
|
|
/* pos 00c0: 56 */ 0x00, 0x0F /* - terminal marker 15 - */,
|
|
/* pos 00c2: 57 */ 0x63 /* 'c' */, 0x0D, 0x00 /* (to 0x00CF state 58) */,
|
|
0x75 /* 'u' */, 0x8B, 0x00 /* (to 0x0150 state 142) */,
|
|
0x6C /* 'l' */, 0x05, 0x01 /* (to 0x01CD state 208) */,
|
|
0x67 /* 'g' */, 0x8C, 0x02 /* (to 0x0357 state 478) */,
|
|
0x08, /* fail */
|
|
/* pos 00cf: 58 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00d0: 59 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00d1: 60 */ 0x73 /* 's' */, 0x07, 0x00 /* (to 0x00D8 state 61) */,
|
|
0x70 /* 'p' */, 0x41, 0x00 /* (to 0x0115 state 102) */,
|
|
0x08, /* fail */
|
|
/* pos 00d8: 61 */ 0xF3 /* 's' -> */,
|
|
/* pos 00d9: 62 */ 0xAD /* '-' -> */,
|
|
/* pos 00da: 63 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00db: 64 */ 0xEF /* 'o' -> */,
|
|
/* pos 00dc: 65 */ 0xEE /* 'n' -> */,
|
|
/* pos 00dd: 66 */ 0xF4 /* 't' -> */,
|
|
/* pos 00de: 67 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00df: 68 */ 0xEF /* 'o' -> */,
|
|
/* pos 00e0: 69 */ 0xEC /* 'l' -> */,
|
|
/* pos 00e1: 70 */ 0xAD /* '-' -> */,
|
|
/* pos 00e2: 71 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x00E9 state 72) */,
|
|
0x61 /* 'a' */, 0xDA, 0x00 /* (to 0x01BF state 195) */,
|
|
0x08, /* fail */
|
|
/* pos 00e9: 72 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00ea: 73 */ 0xF1 /* 'q' -> */,
|
|
/* pos 00eb: 74 */ 0xF5 /* 'u' -> */,
|
|
/* pos 00ec: 75 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00ed: 76 */ 0xF3 /* 's' -> */,
|
|
/* pos 00ee: 77 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ef: 78 */ 0xAD /* '-' -> */,
|
|
/* pos 00f0: 79 */ 0xE8 /* 'h' -> */,
|
|
/* pos 00f1: 80 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00f2: 81 */ 0xE1 /* 'a' -> */,
|
|
/* pos 00f3: 82 */ 0xE4 /* 'd' -> */,
|
|
/* pos 00f4: 83 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00f5: 84 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00f6: 85 */ 0xF3 /* 's' -> */,
|
|
/* pos 00f7: 86 */ 0xBA /* ':' -> */,
|
|
/* pos 00f8: 87 */ 0x00, 0x10 /* - terminal marker 16 - */,
|
|
/* pos 00fa: 88 */ 0xE6 /* 'f' -> */,
|
|
/* pos 00fb: 89 */ 0xAD /* '-' -> */,
|
|
/* pos 00fc: 90 */ 0x6E /* 'n' */, 0x0D, 0x00 /* (to 0x0109 state 91) */,
|
|
0x6D /* 'm' */, 0x29, 0x01 /* (to 0x0228 state 277) */,
|
|
0x72 /* 'r' */, 0x33, 0x01 /* (to 0x0235 state 283) */,
|
|
0x75 /* 'u' */, 0x37, 0x01 /* (to 0x023C state 289) */,
|
|
0x08, /* fail */
|
|
/* pos 0109: 91 */ 0xEF /* 'o' -> */,
|
|
/* pos 010a: 92 */ 0xEE /* 'n' -> */,
|
|
/* pos 010b: 93 */ 0xE5 /* 'e' -> */,
|
|
/* pos 010c: 94 */ 0xAD /* '-' -> */,
|
|
/* pos 010d: 95 */ 0xED /* 'm' -> */,
|
|
/* pos 010e: 96 */ 0xE1 /* 'a' -> */,
|
|
/* pos 010f: 97 */ 0xF4 /* 't' -> */,
|
|
/* pos 0110: 98 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0111: 99 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0112: 100 */ 0xBA /* ':' -> */,
|
|
/* pos 0113: 101 */ 0x00, 0x11 /* - terminal marker 17 - */,
|
|
/* pos 0115: 102 */ 0xF4 /* 't' -> */,
|
|
/* pos 0116: 103 */ 0xAD /* '-' -> */,
|
|
/* pos 0117: 104 */ 0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x0121 state 105) */,
|
|
0x6C /* 'l' */, 0x11, 0x00 /* (to 0x012B state 114) */,
|
|
0x72 /* 'r' */, 0x32, 0x02 /* (to 0x034F state 471) */,
|
|
0x08, /* fail */
|
|
/* pos 0121: 105 */ 0xEE /* 'n' -> */,
|
|
/* pos 0122: 106 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0123: 107 */ 0xEF /* 'o' -> */,
|
|
/* pos 0124: 108 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0125: 109 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0126: 110 */ 0xEE /* 'n' -> */,
|
|
/* pos 0127: 111 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0128: 112 */ 0xBA /* ':' -> */,
|
|
/* pos 0129: 113 */ 0x00, 0x12 /* - terminal marker 18 - */,
|
|
/* pos 012b: 114 */ 0xE1 /* 'a' -> */,
|
|
/* pos 012c: 115 */ 0xEE /* 'n' -> */,
|
|
/* pos 012d: 116 */ 0xE7 /* 'g' -> */,
|
|
/* pos 012e: 117 */ 0xF5 /* 'u' -> */,
|
|
/* pos 012f: 118 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0130: 119 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0131: 120 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0132: 121 */ 0xBA /* ':' -> */,
|
|
/* pos 0133: 122 */ 0x00, 0x13 /* - terminal marker 19 - */,
|
|
/* pos 0135: 123 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x013C state 124) */,
|
|
0x6F /* 'o' */, 0x9B, 0x01 /* (to 0x02D3 state 406) */,
|
|
0x08, /* fail */
|
|
/* pos 013c: 124 */ 0xE7 /* 'g' -> */,
|
|
/* pos 013d: 125 */ 0xED /* 'm' -> */,
|
|
/* pos 013e: 126 */ 0xE1 /* 'a' -> */,
|
|
/* pos 013f: 127 */ 0xBA /* ':' -> */,
|
|
/* pos 0140: 128 */ 0x00, 0x14 /* - terminal marker 20 - */,
|
|
/* pos 0142: 129 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0143: 130 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0144: 131 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0145: 132 */ 0xAD /* '-' -> */,
|
|
/* pos 0146: 133 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0147: 134 */ 0xEF /* 'o' -> */,
|
|
/* pos 0148: 135 */ 0xEE /* 'n' -> */,
|
|
/* pos 0149: 136 */ 0xF4 /* 't' -> */,
|
|
/* pos 014a: 137 */ 0xF2 /* 'r' -> */,
|
|
/* pos 014b: 138 */ 0xEF /* 'o' -> */,
|
|
/* pos 014c: 139 */ 0xEC /* 'l' -> */,
|
|
/* pos 014d: 140 */ 0xBA /* ':' -> */,
|
|
/* pos 014e: 141 */ 0x00, 0x15 /* - terminal marker 21 - */,
|
|
/* pos 0150: 142 */ 0xF4 /* 't' -> */,
|
|
/* pos 0151: 143 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0152: 144 */ 0xEF /* 'o' -> */,
|
|
/* pos 0153: 145 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0154: 146 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0155: 147 */ 0xFA /* 'z' -> */,
|
|
/* pos 0156: 148 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0157: 149 */ 0xF4 /* 't' -> */,
|
|
/* pos 0158: 150 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0159: 151 */ 0xEF /* 'o' -> */,
|
|
/* pos 015a: 152 */ 0xEE /* 'n' -> */,
|
|
/* pos 015b: 153 */ 0xBA /* ':' -> */,
|
|
/* pos 015c: 154 */ 0x00, 0x16 /* - terminal marker 22 - */,
|
|
/* pos 015e: 155 */ 0xEB /* 'k' -> */,
|
|
/* pos 015f: 156 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0160: 157 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0161: 158 */ 0xBA /* ':' -> */,
|
|
/* pos 0162: 159 */ 0x00, 0x17 /* - terminal marker 23 - */,
|
|
/* pos 0164: 160 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0165: 161 */ 0xEE /* 'n' -> */,
|
|
/* pos 0166: 162 */ 0xF4 /* 't' -> */,
|
|
/* pos 0167: 163 */ 0xAD /* '-' -> */,
|
|
/* pos 0168: 164 */ 0x6C /* 'l' */, 0x10, 0x00 /* (to 0x0178 state 165) */,
|
|
0x74 /* 't' */, 0x1E, 0x00 /* (to 0x0189 state 172) */,
|
|
0x64 /* 'd' */, 0x65, 0x00 /* (to 0x01D3 state 213) */,
|
|
0x65 /* 'e' */, 0x6F, 0x00 /* (to 0x01E0 state 225) */,
|
|
0x72 /* 'r' */, 0x88, 0x00 /* (to 0x01FC state 250) */,
|
|
0x08, /* fail */
|
|
/* pos 0178: 165 */ 0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x0182 state 166) */,
|
|
0x61 /* 'a' */, 0x6F, 0x00 /* (to 0x01EA state 234) */,
|
|
0x6F /* 'o' */, 0x75, 0x00 /* (to 0x01F3 state 242) */,
|
|
0x08, /* fail */
|
|
/* pos 0182: 166 */ 0xEE /* 'n' -> */,
|
|
/* pos 0183: 167 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0184: 168 */ 0xF4 /* 't' -> */,
|
|
/* pos 0185: 169 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0186: 170 */ 0xBA /* ':' -> */,
|
|
/* pos 0187: 171 */ 0x00, 0x18 /* - terminal marker 24 - */,
|
|
/* pos 0189: 172 */ 0xF9 /* 'y' -> */,
|
|
/* pos 018a: 173 */ 0xF0 /* 'p' -> */,
|
|
/* pos 018b: 174 */ 0xE5 /* 'e' -> */,
|
|
/* pos 018c: 175 */ 0xBA /* ':' -> */,
|
|
/* pos 018d: 176 */ 0x00, 0x19 /* - terminal marker 25 - */,
|
|
/* pos 018f: 177 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x0196 state 178) */,
|
|
0x65 /* 'e' */, 0x2B, 0x02 /* (to 0x03BD state 558) */,
|
|
0x08, /* fail */
|
|
/* pos 0196: 178 */ 0xF4 /* 't' -> */,
|
|
/* pos 0197: 179 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0198: 180 */ 0xBA /* ':' -> */,
|
|
/* pos 0199: 181 */ 0x00, 0x1A /* - terminal marker 26 - */,
|
|
/* pos 019b: 182 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x01A2 state 183) */,
|
|
0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x01A8 state 188) */,
|
|
0x08, /* fail */
|
|
/* pos 01a2: 183 */ 0xEE /* 'n' -> */,
|
|
/* pos 01a3: 184 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01a4: 185 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01a5: 186 */ 0xBA /* ':' -> */,
|
|
/* pos 01a6: 187 */ 0x00, 0x1B /* - terminal marker 27 - */,
|
|
/* pos 01a8: 188 */ 0x66 /* 'f' */, 0x0A, 0x00 /* (to 0x01B2 state 189) */,
|
|
0x74 /* 't' */, 0xD7, 0x00 /* (to 0x0282 state 345) */,
|
|
0x70 /* 'p' */, 0x32, 0x02 /* (to 0x03E0 state 583) */,
|
|
0x08, /* fail */
|
|
/* pos 01b2: 189 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x01B9 state 190) */,
|
|
0x72 /* 'r' */, 0xC6, 0x01 /* (to 0x037B state 505) */,
|
|
0x08, /* fail */
|
|
/* pos 01b9: 190 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01ba: 191 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01bb: 192 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01bc: 193 */ 0xBA /* ':' -> */,
|
|
/* pos 01bd: 194 */ 0x00, 0x1C /* - terminal marker 28 - */,
|
|
/* pos 01bf: 195 */ 0xEC /* 'l' -> */,
|
|
/* pos 01c0: 196 */ 0xEC /* 'l' -> */,
|
|
/* pos 01c1: 197 */ 0xEF /* 'o' -> */,
|
|
/* pos 01c2: 198 */ 0xF7 /* 'w' -> */,
|
|
/* pos 01c3: 199 */ 0xAD /* '-' -> */,
|
|
/* pos 01c4: 200 */ 0xEF /* 'o' -> */,
|
|
/* pos 01c5: 201 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01c6: 202 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01c7: 203 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01c8: 204 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01c9: 205 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ca: 206 */ 0xBA /* ':' -> */,
|
|
/* pos 01cb: 207 */ 0x00, 0x20 /* - terminal marker 32 - */,
|
|
/* pos 01cd: 208 */ 0xEC /* 'l' -> */,
|
|
/* pos 01ce: 209 */ 0xEF /* 'o' -> */,
|
|
/* pos 01cf: 210 */ 0xF7 /* 'w' -> */,
|
|
/* pos 01d0: 211 */ 0xBA /* ':' -> */,
|
|
/* pos 01d1: 212 */ 0x00, 0x21 /* - terminal marker 33 - */,
|
|
/* pos 01d3: 213 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d4: 214 */ 0xF3 /* 's' -> */,
|
|
/* pos 01d5: 215 */ 0xF0 /* 'p' -> */,
|
|
/* pos 01d6: 216 */ 0xEF /* 'o' -> */,
|
|
/* pos 01d7: 217 */ 0xF3 /* 's' -> */,
|
|
/* pos 01d8: 218 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d9: 219 */ 0xF4 /* 't' -> */,
|
|
/* pos 01da: 220 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01db: 221 */ 0xEF /* 'o' -> */,
|
|
/* pos 01dc: 222 */ 0xEE /* 'n' -> */,
|
|
/* pos 01dd: 223 */ 0xBA /* ':' -> */,
|
|
/* pos 01de: 224 */ 0x00, 0x22 /* - terminal marker 34 - */,
|
|
/* pos 01e0: 225 */ 0xEE /* 'n' -> */,
|
|
/* pos 01e1: 226 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01e2: 227 */ 0xEF /* 'o' -> */,
|
|
/* pos 01e3: 228 */ 0xE4 /* 'd' -> */,
|
|
/* pos 01e4: 229 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01e5: 230 */ 0xEE /* 'n' -> */,
|
|
/* pos 01e6: 231 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01e7: 232 */ 0xBA /* ':' -> */,
|
|
/* pos 01e8: 233 */ 0x00, 0x23 /* - terminal marker 35 - */,
|
|
/* pos 01ea: 234 */ 0xEE /* 'n' -> */,
|
|
/* pos 01eb: 235 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01ec: 236 */ 0xF5 /* 'u' -> */,
|
|
/* pos 01ed: 237 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01ee: 238 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01ef: 239 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01f0: 240 */ 0xBA /* ':' -> */,
|
|
/* pos 01f1: 241 */ 0x00, 0x24 /* - terminal marker 36 - */,
|
|
/* pos 01f3: 242 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01f4: 243 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01f5: 244 */ 0xF4 /* 't' -> */,
|
|
/* pos 01f6: 245 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01f7: 246 */ 0xEF /* 'o' -> */,
|
|
/* pos 01f8: 247 */ 0xEE /* 'n' -> */,
|
|
/* pos 01f9: 248 */ 0xBA /* ':' -> */,
|
|
/* pos 01fa: 249 */ 0x00, 0x25 /* - terminal marker 37 - */,
|
|
/* pos 01fc: 250 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01fd: 251 */ 0xEE /* 'n' -> */,
|
|
/* pos 01fe: 252 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01ff: 253 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0200: 254 */ 0xBA /* ':' -> */,
|
|
/* pos 0201: 255 */ 0x00, 0x26 /* - terminal marker 38 - */,
|
|
/* pos 0203: 256 */ 0x74 /* 't' */, 0x07, 0x00 /* (to 0x020A state 257) */,
|
|
0x78 /* 'x' */, 0x09, 0x00 /* (to 0x020F state 261) */,
|
|
0x08, /* fail */
|
|
/* pos 020a: 257 */ 0xE1 /* 'a' -> */,
|
|
/* pos 020b: 258 */ 0xE7 /* 'g' -> */,
|
|
/* pos 020c: 259 */ 0xBA /* ':' -> */,
|
|
/* pos 020d: 260 */ 0x00, 0x27 /* - terminal marker 39 - */,
|
|
/* pos 020f: 261 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0210: 262 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0217 state 263) */,
|
|
0x69 /* 'i' */, 0x09, 0x00 /* (to 0x021C state 267) */,
|
|
0x08, /* fail */
|
|
/* pos 0217: 263 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0218: 264 */ 0xF4 /* 't' -> */,
|
|
/* pos 0219: 265 */ 0xBA /* ':' -> */,
|
|
/* pos 021a: 266 */ 0x00, 0x28 /* - terminal marker 40 - */,
|
|
/* pos 021c: 267 */ 0xF2 /* 'r' -> */,
|
|
/* pos 021d: 268 */ 0xE5 /* 'e' -> */,
|
|
/* pos 021e: 269 */ 0xF3 /* 's' -> */,
|
|
/* pos 021f: 270 */ 0xBA /* ':' -> */,
|
|
/* pos 0220: 271 */ 0x00, 0x29 /* - terminal marker 41 - */,
|
|
/* pos 0222: 272 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0223: 273 */ 0xEF /* 'o' -> */,
|
|
/* pos 0224: 274 */ 0xED /* 'm' -> */,
|
|
/* pos 0225: 275 */ 0xBA /* ':' -> */,
|
|
/* pos 0226: 276 */ 0x00, 0x2A /* - terminal marker 42 - */,
|
|
/* pos 0228: 277 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x022F state 278) */,
|
|
0x6F /* 'o' */, 0xE3, 0x00 /* (to 0x030E state 441) */,
|
|
0x08, /* fail */
|
|
/* pos 022f: 278 */ 0xF4 /* 't' -> */,
|
|
/* pos 0230: 279 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0231: 280 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0232: 281 */ 0xBA /* ':' -> */,
|
|
/* pos 0233: 282 */ 0x00, 0x2B /* - terminal marker 43 - */,
|
|
/* pos 0235: 283 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0236: 284 */ 0xEE /* 'n' -> */,
|
|
/* pos 0237: 285 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0238: 286 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0239: 287 */ 0xBA /* ':' -> */,
|
|
/* pos 023a: 288 */ 0x00, 0x2C /* - terminal marker 44 - */,
|
|
/* pos 023c: 289 */ 0xEE /* 'n' -> */,
|
|
/* pos 023d: 290 */ 0xED /* 'm' -> */,
|
|
/* pos 023e: 291 */ 0xEF /* 'o' -> */,
|
|
/* pos 023f: 292 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0240: 293 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0241: 294 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0242: 295 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0243: 296 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0244: 297 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0245: 298 */ 0xAD /* '-' -> */,
|
|
/* pos 0246: 299 */ 0xF3 /* 's' -> */,
|
|
/* pos 0247: 300 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0248: 301 */ 0xEE /* 'n' -> */,
|
|
/* pos 0249: 302 */ 0xE3 /* 'c' -> */,
|
|
/* pos 024a: 303 */ 0xE5 /* 'e' -> */,
|
|
/* pos 024b: 304 */ 0xBA /* ':' -> */,
|
|
/* pos 024c: 305 */ 0x00, 0x2D /* - terminal marker 45 - */,
|
|
/* pos 024e: 306 */ 0x61 /* 'a' */, 0x0A, 0x00 /* (to 0x0258 state 307) */,
|
|
0x69 /* 'i' */, 0x15, 0x00 /* (to 0x0266 state 320) */,
|
|
0x6F /* 'o' */, 0x17, 0x00 /* (to 0x026B state 324) */,
|
|
0x08, /* fail */
|
|
/* pos 0258: 307 */ 0xF3 /* 's' -> */,
|
|
/* pos 0259: 308 */ 0xF4 /* 't' -> */,
|
|
/* pos 025a: 309 */ 0xAD /* '-' -> */,
|
|
/* pos 025b: 310 */ 0xED /* 'm' -> */,
|
|
/* pos 025c: 311 */ 0xEF /* 'o' -> */,
|
|
/* pos 025d: 312 */ 0xE4 /* 'd' -> */,
|
|
/* pos 025e: 313 */ 0xE9 /* 'i' -> */,
|
|
/* pos 025f: 314 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0260: 315 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0261: 316 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0262: 317 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0263: 318 */ 0xBA /* ':' -> */,
|
|
/* pos 0264: 319 */ 0x00, 0x2E /* - terminal marker 46 - */,
|
|
/* pos 0266: 320 */ 0xEE /* 'n' -> */,
|
|
/* pos 0267: 321 */ 0xEB /* 'k' -> */,
|
|
/* pos 0268: 322 */ 0xBA /* ':' -> */,
|
|
/* pos 0269: 323 */ 0x00, 0x2F /* - terminal marker 47 - */,
|
|
/* pos 026b: 324 */ 0xE3 /* 'c' -> */,
|
|
/* pos 026c: 325 */ 0xE1 /* 'a' -> */,
|
|
/* pos 026d: 326 */ 0xF4 /* 't' -> */,
|
|
/* pos 026e: 327 */ 0xE9 /* 'i' -> */,
|
|
/* pos 026f: 328 */ 0xEF /* 'o' -> */,
|
|
/* pos 0270: 329 */ 0xEE /* 'n' -> */,
|
|
/* pos 0271: 330 */ 0xBA /* ':' -> */,
|
|
/* pos 0272: 331 */ 0x00, 0x30 /* - terminal marker 48 - */,
|
|
/* pos 0274: 332 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0275: 333 */ 0xF8 /* 'x' -> */,
|
|
/* pos 0276: 334 */ 0xAD /* '-' -> */,
|
|
/* pos 0277: 335 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0278: 336 */ 0xEF /* 'o' -> */,
|
|
/* pos 0279: 337 */ 0xF2 /* 'r' -> */,
|
|
/* pos 027a: 338 */ 0xF7 /* 'w' -> */,
|
|
/* pos 027b: 339 */ 0xE1 /* 'a' -> */,
|
|
/* pos 027c: 340 */ 0xF2 /* 'r' -> */,
|
|
/* pos 027d: 341 */ 0xE4 /* 'd' -> */,
|
|
/* pos 027e: 342 */ 0xF3 /* 's' -> */,
|
|
/* pos 027f: 343 */ 0xBA /* ':' -> */,
|
|
/* pos 0280: 344 */ 0x00, 0x31 /* - terminal marker 49 - */,
|
|
/* pos 0282: 345 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0283: 346 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0284: 347 */ 0xAD /* '-' -> */,
|
|
/* pos 0285: 348 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0286: 349 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0287: 350 */ 0xF4 /* 't' -> */,
|
|
/* pos 0288: 351 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0289: 352 */ 0xF2 /* 'r' -> */,
|
|
/* pos 028a: 353 */ 0xBA /* ':' -> */,
|
|
/* pos 028b: 354 */ 0x00, 0x32 /* - terminal marker 50 - */,
|
|
/* pos 028d: 355 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0294 state 356) */,
|
|
0x74 /* 't' */, 0x1E, 0x00 /* (to 0x02AE state 371) */,
|
|
0x08, /* fail */
|
|
/* pos 0294: 356 */ 0x72 /* 'r' */, 0x0A, 0x00 /* (to 0x029E state 357) */,
|
|
0x74 /* 't' */, 0x0D, 0x00 /* (to 0x02A4 state 362) */,
|
|
0x63 /* 'c' */, 0x83, 0x00 /* (to 0x031D state 455) */,
|
|
0x08, /* fail */
|
|
/* pos 029e: 357 */ 0xF6 /* 'v' -> */,
|
|
/* pos 029f: 358 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02a0: 359 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02a1: 360 */ 0xBA /* ':' -> */,
|
|
/* pos 02a2: 361 */ 0x00, 0x33 /* - terminal marker 51 - */,
|
|
/* pos 02a4: 362 */ 0xAD /* '-' -> */,
|
|
/* pos 02a5: 363 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02a6: 364 */ 0xEF /* 'o' -> */,
|
|
/* pos 02a7: 365 */ 0xEF /* 'o' -> */,
|
|
/* pos 02a8: 366 */ 0xEB /* 'k' -> */,
|
|
/* pos 02a9: 367 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02aa: 368 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02ab: 369 */ 0xBA /* ':' -> */,
|
|
/* pos 02ac: 370 */ 0x00, 0x34 /* - terminal marker 52 - */,
|
|
/* pos 02ae: 371 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02af: 372 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02b0: 373 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02b1: 374 */ 0xF4 /* 't' -> */,
|
|
/* pos 02b2: 375 */ 0xAD /* '-' -> */,
|
|
/* pos 02b3: 376 */ 0xF4 /* 't' -> */,
|
|
/* pos 02b4: 377 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02b5: 378 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02b6: 379 */ 0xEE /* 'n' -> */,
|
|
/* pos 02b7: 380 */ 0xF3 /* 's' -> */,
|
|
/* pos 02b8: 381 */ 0xF0 /* 'p' -> */,
|
|
/* pos 02b9: 382 */ 0xEF /* 'o' -> */,
|
|
/* pos 02ba: 383 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02bb: 384 */ 0xF4 /* 't' -> */,
|
|
/* pos 02bc: 385 */ 0xAD /* '-' -> */,
|
|
/* pos 02bd: 386 */ 0xF3 /* 's' -> */,
|
|
/* pos 02be: 387 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02bf: 388 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02c0: 389 */ 0xF5 /* 'u' -> */,
|
|
/* pos 02c1: 390 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02c2: 391 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02c3: 392 */ 0xF4 /* 't' -> */,
|
|
/* pos 02c4: 393 */ 0xF9 /* 'y' -> */,
|
|
/* pos 02c5: 394 */ 0xBA /* ':' -> */,
|
|
/* pos 02c6: 395 */ 0x00, 0x35 /* - terminal marker 53 - */,
|
|
/* pos 02c8: 396 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02c9: 397 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02ca: 398 */ 0xAD /* '-' -> */,
|
|
/* pos 02cb: 399 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02cc: 400 */ 0xE7 /* 'g' -> */,
|
|
/* pos 02cd: 401 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02ce: 402 */ 0xEE /* 'n' -> */,
|
|
/* pos 02cf: 403 */ 0xF4 /* 't' -> */,
|
|
/* pos 02d0: 404 */ 0xBA /* ':' -> */,
|
|
/* pos 02d1: 405 */ 0x00, 0x36 /* - terminal marker 54 - */,
|
|
/* pos 02d3: 406 */ 0xF8 /* 'x' -> */,
|
|
/* pos 02d4: 407 */ 0xF9 /* 'y' -> */,
|
|
/* pos 02d5: 408 */ 0x20 /* ' ' */, 0x07, 0x00 /* (to 0x02DC state 409) */,
|
|
0x2D /* '-' */, 0x83, 0x00 /* (to 0x035B state 481) */,
|
|
0x08, /* fail */
|
|
/* pos 02dc: 409 */ 0x00, 0x37 /* - terminal marker 55 - */,
|
|
/* pos 02de: 410 */ 0xAD /* '-' -> */,
|
|
/* pos 02df: 411 */ 0x66 /* 'f' */, 0x07, 0x00 /* (to 0x02E6 state 412) */,
|
|
0x72 /* 'r' */, 0xE9, 0x00 /* (to 0x03CB state 570) */,
|
|
0x08, /* fail */
|
|
/* pos 02e6: 412 */ 0xEF /* 'o' -> */,
|
|
/* pos 02e7: 413 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02e8: 414 */ 0xF7 /* 'w' -> */,
|
|
/* pos 02e9: 415 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02ea: 416 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02eb: 417 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02ec: 418 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02ed: 419 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02ee: 420 */ 0xAD /* '-' -> */,
|
|
/* pos 02ef: 421 */ 0xE6 /* 'f' -> */,
|
|
/* pos 02f0: 422 */ 0xEF /* 'o' -> */,
|
|
/* pos 02f1: 423 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02f2: 424 */ 0xBA /* ':' -> */,
|
|
/* pos 02f3: 425 */ 0x00, 0x38 /* - terminal marker 56 - */,
|
|
/* pos 02f5: 426 */ 0x00, 0x39 /* - terminal marker 57 - */,
|
|
/* pos 02f7: 427 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02f8: 428 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02f9: 429 */ 0xA0 /* ' ' -> */,
|
|
/* pos 02fa: 430 */ 0x00, 0x3A /* - terminal marker 58 - */,
|
|
/* pos 02fc: 431 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0303 state 432) */,
|
|
0x72 /* 'r' */, 0x82, 0x00 /* (to 0x0381 state 510) */,
|
|
0x08, /* fail */
|
|
/* pos 0303: 432 */ 0xBA /* ':' -> */,
|
|
/* pos 0304: 433 */ 0x00, 0x3B /* - terminal marker 59 - */,
|
|
/* pos 0306: 434 */ 0xF4 /* 't' -> */,
|
|
/* pos 0307: 435 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0308: 436 */ 0xEF /* 'o' -> */,
|
|
/* pos 0309: 437 */ 0xEE /* 'n' -> */,
|
|
/* pos 030a: 438 */ 0xF3 /* 's' -> */,
|
|
/* pos 030b: 439 */ 0xA0 /* ' ' -> */,
|
|
/* pos 030c: 440 */ 0x00, 0x02 /* - terminal marker 2 - */,
|
|
/* pos 030e: 441 */ 0xE4 /* 'd' -> */,
|
|
/* pos 030f: 442 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0310: 443 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0311: 444 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0312: 445 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0313: 446 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0314: 447 */ 0xAD /* '-' -> */,
|
|
/* pos 0315: 448 */ 0xF3 /* 's' -> */,
|
|
/* pos 0316: 449 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0317: 450 */ 0xEE /* 'n' -> */,
|
|
/* pos 0318: 451 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0319: 452 */ 0xE5 /* 'e' -> */,
|
|
/* pos 031a: 453 */ 0xBA /* ':' -> */,
|
|
/* pos 031b: 454 */ 0x00, 0x0A /* - terminal marker 10 - */,
|
|
/* pos 031d: 455 */ 0xAD /* '-' -> */,
|
|
/* pos 031e: 456 */ 0xF7 /* 'w' -> */,
|
|
/* pos 031f: 457 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0320: 458 */ 0xE2 /* 'b' -> */,
|
|
/* pos 0321: 459 */ 0xF3 /* 's' -> */,
|
|
/* pos 0322: 460 */ 0xEF /* 'o' -> */,
|
|
/* pos 0323: 461 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0324: 462 */ 0xEB /* 'k' -> */,
|
|
/* pos 0325: 463 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0326: 464 */ 0xF4 /* 't' -> */,
|
|
/* pos 0327: 465 */ 0xAD /* '-' -> */,
|
|
/* pos 0328: 466 */ 0x6B /* 'k' */, 0x19, 0x00 /* (to 0x0341 state 467) */,
|
|
0x64 /* 'd' */, 0xD1, 0x00 /* (to 0x03FC state 603) */,
|
|
0x65 /* 'e' */, 0xD5, 0x00 /* (to 0x0403 state 609) */,
|
|
0x70 /* 'p' */, 0xE4, 0x00 /* (to 0x0415 state 624) */,
|
|
0x61 /* 'a' */, 0xEB, 0x00 /* (to 0x041F state 633) */,
|
|
0x6E /* 'n' */, 0xF0, 0x00 /* (to 0x0427 state 640) */,
|
|
0x76 /* 'v' */, 0xF7, 0x00 /* (to 0x0431 state 648) */,
|
|
0x6F /* 'o' */, 0xFD, 0x00 /* (to 0x043A state 656) */,
|
|
0x08, /* fail */
|
|
/* pos 0341: 467 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0342: 468 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0343: 469 */ 0x3A /* ':' */, 0x0A, 0x00 /* (to 0x034D state 470) */,
|
|
0x31 /* '1' */, 0xC9, 0x00 /* (to 0x040F state 620) */,
|
|
0x32 /* '2' */, 0xC9, 0x00 /* (to 0x0412 state 622) */,
|
|
0x08, /* fail */
|
|
/* pos 034d: 470 */ 0x00, 0x17 /* - terminal marker 23 - */,
|
|
/* pos 034f: 471 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0350: 472 */ 0xEE /* 'n' -> */,
|
|
/* pos 0351: 473 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0352: 474 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0353: 475 */ 0xF3 /* 's' -> */,
|
|
/* pos 0354: 476 */ 0xBA /* ':' -> */,
|
|
/* pos 0355: 477 */ 0x00, 0x18 /* - terminal marker 24 - */,
|
|
/* pos 0357: 478 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0358: 479 */ 0xBA /* ':' -> */,
|
|
/* pos 0359: 480 */ 0x00, 0x1A /* - terminal marker 26 - */,
|
|
/* pos 035b: 481 */ 0xE1 /* 'a' -> */,
|
|
/* pos 035c: 482 */ 0xF5 /* 'u' -> */,
|
|
/* pos 035d: 483 */ 0xF4 /* 't' -> */,
|
|
/* pos 035e: 484 */ 0xE8 /* 'h' -> */,
|
|
/* pos 035f: 485 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0366 state 486) */,
|
|
0x6F /* 'o' */, 0x0E, 0x00 /* (to 0x0370 state 495) */,
|
|
0x08, /* fail */
|
|
/* pos 0366: 486 */ 0xEE /* 'n' -> */,
|
|
/* pos 0367: 487 */ 0xF4 /* 't' -> */,
|
|
/* pos 0368: 488 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0369: 489 */ 0xE3 /* 'c' -> */,
|
|
/* pos 036a: 490 */ 0xE1 /* 'a' -> */,
|
|
/* pos 036b: 491 */ 0xF4 /* 't' -> */,
|
|
/* pos 036c: 492 */ 0xE5 /* 'e' -> */,
|
|
/* pos 036d: 493 */ 0xBA /* ':' -> */,
|
|
/* pos 036e: 494 */ 0x00, 0x2C /* - terminal marker 44 - */,
|
|
/* pos 0370: 495 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0371: 496 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0372: 497 */ 0xFA /* 'z' -> */,
|
|
/* pos 0373: 498 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0374: 499 */ 0xF4 /* 't' -> */,
|
|
/* pos 0375: 500 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0376: 501 */ 0xEF /* 'o' -> */,
|
|
/* pos 0377: 502 */ 0xEE /* 'n' -> */,
|
|
/* pos 0378: 503 */ 0xBA /* ':' -> */,
|
|
/* pos 0379: 504 */ 0x00, 0x2D /* - terminal marker 45 - */,
|
|
/* pos 037b: 505 */ 0xE5 /* 'e' -> */,
|
|
/* pos 037c: 506 */ 0xF3 /* 's' -> */,
|
|
/* pos 037d: 507 */ 0xE8 /* 'h' -> */,
|
|
/* pos 037e: 508 */ 0xBA /* ':' -> */,
|
|
/* pos 037f: 509 */ 0x00, 0x2E /* - terminal marker 46 - */,
|
|
/* pos 0381: 510 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0382: 511 */ 0xEE /* 'n' -> */,
|
|
/* pos 0383: 512 */ 0xF3 /* 's' -> */,
|
|
/* pos 0384: 513 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0385: 514 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0386: 515 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0387: 516 */ 0xAD /* '-' -> */,
|
|
/* pos 0388: 517 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0389: 518 */ 0xEE /* 'n' -> */,
|
|
/* pos 038a: 519 */ 0xE3 /* 'c' -> */,
|
|
/* pos 038b: 520 */ 0xEF /* 'o' -> */,
|
|
/* pos 038c: 521 */ 0xE4 /* 'd' -> */,
|
|
/* pos 038d: 522 */ 0xE9 /* 'i' -> */,
|
|
/* pos 038e: 523 */ 0xEE /* 'n' -> */,
|
|
/* pos 038f: 524 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0390: 525 */ 0xBA /* ':' -> */,
|
|
/* pos 0391: 526 */ 0x00, 0x33 /* - terminal marker 51 - */,
|
|
/* pos 0393: 527 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x039A state 528) */,
|
|
0x69 /* 'i' */, 0x09, 0x00 /* (to 0x039F state 532) */,
|
|
0x08, /* fail */
|
|
/* pos 039a: 528 */ 0xF2 /* 'r' -> */,
|
|
/* pos 039b: 529 */ 0xF9 /* 'y' -> */,
|
|
/* pos 039c: 530 */ 0xBA /* ':' -> */,
|
|
/* pos 039d: 531 */ 0x00, 0x35 /* - terminal marker 53 - */,
|
|
/* pos 039f: 532 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03a0: 533 */ 0xBA /* ':' -> */,
|
|
/* pos 03a1: 534 */ 0x00, 0x36 /* - terminal marker 54 - */,
|
|
/* pos 03a3: 535 */ 0xF7 /* 'w' -> */,
|
|
/* pos 03a4: 536 */ 0xF7 /* 'w' -> */,
|
|
/* pos 03a5: 537 */ 0xAD /* '-' -> */,
|
|
/* pos 03a6: 538 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03a7: 539 */ 0xF5 /* 'u' -> */,
|
|
/* pos 03a8: 540 */ 0xF4 /* 't' -> */,
|
|
/* pos 03a9: 541 */ 0xE8 /* 'h' -> */,
|
|
/* pos 03aa: 542 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03ab: 543 */ 0xEE /* 'n' -> */,
|
|
/* pos 03ac: 544 */ 0xF4 /* 't' -> */,
|
|
/* pos 03ad: 545 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03ae: 546 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03af: 547 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03b0: 548 */ 0xF4 /* 't' -> */,
|
|
/* pos 03b1: 549 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03b2: 550 */ 0xBA /* ':' -> */,
|
|
/* pos 03b3: 551 */ 0x00, 0x37 /* - terminal marker 55 - */,
|
|
/* pos 03b5: 552 */ 0xF4 /* 't' -> */,
|
|
/* pos 03b6: 553 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03b7: 554 */ 0xE8 /* 'h' -> */,
|
|
/* pos 03b8: 555 */ 0x00, 0x38 /* - terminal marker 56 - */,
|
|
/* pos 03ba: 556 */ 0xF4 /* 't' -> */,
|
|
/* pos 03bb: 557 */ 0x00, 0x39 /* - terminal marker 57 - */,
|
|
/* pos 03bd: 558 */ 0xEC /* 'l' -> */,
|
|
/* pos 03be: 559 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03bf: 560 */ 0xF4 /* 't' -> */,
|
|
/* pos 03c0: 561 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03c1: 562 */ 0x00, 0x3A /* - terminal marker 58 - */,
|
|
/* pos 03c3: 563 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03c4: 564 */ 0xAD /* '-' -> */,
|
|
/* pos 03c5: 565 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03c6: 566 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03c7: 567 */ 0xE7 /* 'g' -> */,
|
|
/* pos 03c8: 568 */ 0xF3 /* 's' -> */,
|
|
/* pos 03c9: 569 */ 0x00, 0x3B /* - terminal marker 59 - */,
|
|
/* pos 03cb: 570 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03cc: 571 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03cd: 572 */ 0xEC /* 'l' -> */,
|
|
/* pos 03ce: 573 */ 0xAD /* '-' -> */,
|
|
/* pos 03cf: 574 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03d0: 575 */ 0xF0 /* 'p' -> */,
|
|
/* pos 03d1: 576 */ 0xBA /* ':' -> */,
|
|
/* pos 03d2: 577 */ 0x00, 0x3D /* - terminal marker 61 - */,
|
|
/* pos 03d4: 578 */ 0xB1 /* '1' -> */,
|
|
/* pos 03d5: 579 */ 0xAE /* '.' -> */,
|
|
/* pos 03d6: 580 */ 0x30 /* '0' */, 0x07, 0x00 /* (to 0x03DD state 581) */,
|
|
0x31 /* '1' */, 0x55, 0x00 /* (to 0x042E state 646) */,
|
|
0x08, /* fail */
|
|
/* pos 03dd: 581 */ 0xA0 /* ' ' -> */,
|
|
/* pos 03de: 582 */ 0x00, 0x3E /* - terminal marker 62 - */,
|
|
/* pos 03e0: 583 */ 0xEC /* 'l' -> */,
|
|
/* pos 03e1: 584 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03e2: 585 */ 0xF9 /* 'y' -> */,
|
|
/* pos 03e3: 586 */ 0xAD /* '-' -> */,
|
|
/* pos 03e4: 587 */ 0xEE /* 'n' -> */,
|
|
/* pos 03e5: 588 */ 0xEF /* 'o' -> */,
|
|
/* pos 03e6: 589 */ 0xEE /* 'n' -> */,
|
|
/* pos 03e7: 590 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03e8: 591 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03e9: 592 */ 0xBA /* ':' -> */,
|
|
/* pos 03ea: 593 */ 0x00, 0x43 /* - terminal marker 67 - */,
|
|
/* pos 03ec: 594 */ 0x70 /* 'p' */, 0x07, 0x00 /* (to 0x03F3 state 595) */,
|
|
0x61 /* 'a' */, 0x53, 0x00 /* (to 0x0442 state 663) */,
|
|
0x08, /* fail */
|
|
/* pos 03f3: 595 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03f4: 596 */ 0xEF /* 'o' -> */,
|
|
/* pos 03f5: 597 */ 0xF4 /* 't' -> */,
|
|
/* pos 03f6: 598 */ 0xEF /* 'o' -> */,
|
|
/* pos 03f7: 599 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03f8: 600 */ 0xEF /* 'o' -> */,
|
|
/* pos 03f9: 601 */ 0xEC /* 'l' -> */,
|
|
/* pos 03fa: 602 */ 0x00, 0x44 /* - terminal marker 68 - */,
|
|
/* pos 03fc: 603 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03fd: 604 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03fe: 605 */ 0xE6 /* 'f' -> */,
|
|
/* pos 03ff: 606 */ 0xF4 /* 't' -> */,
|
|
/* pos 0400: 607 */ 0xBA /* ':' -> */,
|
|
/* pos 0401: 608 */ 0x00, 0x06 /* - terminal marker 6 - */,
|
|
/* pos 0403: 609 */ 0xF8 /* 'x' -> */,
|
|
/* pos 0404: 610 */ 0xF4 /* 't' -> */,
|
|
/* pos 0405: 611 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0406: 612 */ 0xEE /* 'n' -> */,
|
|
/* pos 0407: 613 */ 0xF3 /* 's' -> */,
|
|
/* pos 0408: 614 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0409: 615 */ 0xEF /* 'o' -> */,
|
|
/* pos 040a: 616 */ 0xEE /* 'n' -> */,
|
|
/* pos 040b: 617 */ 0xF3 /* 's' -> */,
|
|
/* pos 040c: 618 */ 0xBA /* ':' -> */,
|
|
/* pos 040d: 619 */ 0x00, 0x08 /* - terminal marker 8 - */,
|
|
/* pos 040f: 620 */ 0xBA /* ':' -> */,
|
|
/* pos 0410: 621 */ 0x00, 0x09 /* - terminal marker 9 - */,
|
|
/* pos 0412: 622 */ 0xBA /* ':' -> */,
|
|
/* pos 0413: 623 */ 0x00, 0x0A /* - terminal marker 10 - */,
|
|
/* pos 0415: 624 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0416: 625 */ 0xEF /* 'o' -> */,
|
|
/* pos 0417: 626 */ 0xF4 /* 't' -> */,
|
|
/* pos 0418: 627 */ 0xEF /* 'o' -> */,
|
|
/* pos 0419: 628 */ 0xE3 /* 'c' -> */,
|
|
/* pos 041a: 629 */ 0xEF /* 'o' -> */,
|
|
/* pos 041b: 630 */ 0xEC /* 'l' -> */,
|
|
/* pos 041c: 631 */ 0xBA /* ':' -> */,
|
|
/* pos 041d: 632 */ 0x00, 0x0B /* - terminal marker 11 - */,
|
|
/* pos 041f: 633 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0420: 634 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0421: 635 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0422: 636 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0423: 637 */ 0xF4 /* 't' -> */,
|
|
/* pos 0424: 638 */ 0xBA /* ':' -> */,
|
|
/* pos 0425: 639 */ 0x00, 0x0C /* - terminal marker 12 - */,
|
|
/* pos 0427: 640 */ 0xEF /* 'o' -> */,
|
|
/* pos 0428: 641 */ 0xEE /* 'n' -> */,
|
|
/* pos 0429: 642 */ 0xE3 /* 'c' -> */,
|
|
/* pos 042a: 643 */ 0xE5 /* 'e' -> */,
|
|
/* pos 042b: 644 */ 0xBA /* ':' -> */,
|
|
/* pos 042c: 645 */ 0x00, 0x0D /* - terminal marker 13 - */,
|
|
/* pos 042e: 646 */ 0xA0 /* ' ' -> */,
|
|
/* pos 042f: 647 */ 0x00, 0x0E /* - terminal marker 14 - */,
|
|
/* pos 0431: 648 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0432: 649 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0433: 650 */ 0xF3 /* 's' -> */,
|
|
/* pos 0434: 651 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0435: 652 */ 0xEF /* 'o' -> */,
|
|
/* pos 0436: 653 */ 0xEE /* 'n' -> */,
|
|
/* pos 0437: 654 */ 0xBA /* ':' -> */,
|
|
/* pos 0438: 655 */ 0x00, 0x1D /* - terminal marker 29 - */,
|
|
/* pos 043a: 656 */ 0xF2 /* 'r' -> */,
|
|
/* pos 043b: 657 */ 0xE9 /* 'i' -> */,
|
|
/* pos 043c: 658 */ 0xE7 /* 'g' -> */,
|
|
/* pos 043d: 659 */ 0xE9 /* 'i' -> */,
|
|
/* pos 043e: 660 */ 0xEE /* 'n' -> */,
|
|
/* pos 043f: 661 */ 0xBA /* ':' -> */,
|
|
/* pos 0440: 662 */ 0x00, 0x1E /* - terminal marker 30 - */,
|
|
/* pos 0442: 663 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0443: 664 */ 0xF4 /* 't' -> */,
|
|
/* pos 0444: 665 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0445: 666 */ 0xEF /* 'o' -> */,
|
|
/* pos 0446: 667 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0447: 668 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0448: 669 */ 0xF4 /* 't' -> */,
|
|
/* pos 0449: 670 */ 0xF9 /* 'y' -> */,
|
|
/* pos 044a: 671 */ 0x00, 0x1F /* - terminal marker 31 - */,
|
|
/* total size 1100 bytes */
|
|
#endif
|
|
|
|
#if defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && defined(LWS_ROLE_WS) && !defined(LWS_ROLE_H2)
|
|
/* 0: 0: get */
|
|
/* 1: 1: post */
|
|
/* 2: 2: options */
|
|
/* 3: 3: host: */
|
|
/* 4: 4: connection: */
|
|
/* 5: 5: upgrade: */
|
|
/* 6: 6: origin: */
|
|
/* 7: 7: sec-websocket-draft: */
|
|
/* 8: 8:
|
|
*/
|
|
/* 9: 9: sec-websocket-extensions: */
|
|
/* 10: 10: sec-websocket-key1: */
|
|
/* 11: 11: sec-websocket-key2: */
|
|
/* 12: 12: sec-websocket-protocol: */
|
|
/* 13: 13: sec-websocket-accept: */
|
|
/* 14: 14: sec-websocket-nonce: */
|
|
/* 15: 15: http/1.1 */
|
|
/* 16: 16: http2-settings: */
|
|
/* 17: 18: access-control-request-headers: */
|
|
/* 18: 19: if-modified-since: */
|
|
/* 19: 20: if-none-match: */
|
|
/* 20: 21: accept-encoding: */
|
|
/* 21: 22: accept-language: */
|
|
/* 22: 23: pragma: */
|
|
/* 23: 24: cache-control: */
|
|
/* 24: 25: authorization: */
|
|
/* 25: 26: cookie: */
|
|
/* 26: 27: content-length: */
|
|
/* 27: 28: content-type: */
|
|
/* 28: 29: date: */
|
|
/* 29: 30: range: */
|
|
/* 30: 31: referer: */
|
|
/* 31: 32: sec-websocket-key: */
|
|
/* 32: 33: sec-websocket-version: */
|
|
/* 33: 34: sec-websocket-origin: */
|
|
/* 34: 35: :authority */
|
|
/* 35: 41: accept-ranges: */
|
|
/* 36: 42: access-control-allow-origin: */
|
|
/* 37: 43: age: */
|
|
/* 38: 44: allow: */
|
|
/* 39: 45: content-disposition: */
|
|
/* 40: 46: content-encoding: */
|
|
/* 41: 47: content-language: */
|
|
/* 42: 48: content-location: */
|
|
/* 43: 49: content-range: */
|
|
/* 44: 50: etag: */
|
|
/* 45: 51: expect: */
|
|
/* 46: 52: expires: */
|
|
/* 47: 53: from: */
|
|
/* 48: 54: if-match: */
|
|
/* 49: 55: if-range: */
|
|
/* 50: 56: if-unmodified-since: */
|
|
/* 51: 57: last-modified: */
|
|
/* 52: 58: link: */
|
|
/* 53: 59: location: */
|
|
/* 54: 60: max-forwards: */
|
|
/* 55: 61: proxy-authenticate: */
|
|
/* 56: 62: proxy-authorization: */
|
|
/* 57: 63: refresh: */
|
|
/* 58: 64: retry-after: */
|
|
/* 59: 65: server: */
|
|
/* 60: 66: set-cookie: */
|
|
/* 61: 67: strict-transport-security: */
|
|
/* 62: 68: transfer-encoding: */
|
|
/* 63: 69: user-agent: */
|
|
/* 64: 70: vary: */
|
|
/* 65: 71: via: */
|
|
/* 66: 72: www-authenticate: */
|
|
/* 67: 73: patch */
|
|
/* 68: 74: put */
|
|
/* 69: 75: delete */
|
|
/* 70: 76: uri-args */
|
|
/* 71: 77: proxy */
|
|
/* 72: 78: x-real-ip: */
|
|
/* 73: 79: http/1.0 */
|
|
/* 74: 80: x-forwarded-for: */
|
|
/* 75: 81: connect */
|
|
/* 76: 82: head */
|
|
/* 77: 83: te: */
|
|
/* 78: 84: replay-nonce: */
|
|
/* 79: 85: :protocol */
|
|
/* 80: 87: */
|
|
/* pos 0000: 0 */ 0x67 /* 'g' */, 0x40, 0x00 /* (to 0x0040 state 1) */,
|
|
0x70 /* 'p' */, 0x42, 0x00 /* (to 0x0045 state 5) */,
|
|
0x68 /* 'h' */, 0x51, 0x00 /* (to 0x0057 state 10) */,
|
|
0x63 /* 'c' */, 0x5D, 0x00 /* (to 0x0066 state 15) */,
|
|
0x75 /* 'u' */, 0x7E, 0x00 /* (to 0x008A state 26) */,
|
|
0x6F /* 'o' */, 0x8D, 0x00 /* (to 0x009C state 34) */,
|
|
0x0D /* '.' */, 0x98, 0x00 /* (to 0x00AA state 41) */,
|
|
0x61 /* 'a' */, 0xAD, 0x00 /* (to 0x00C2 state 57) */,
|
|
0x69 /* 'i' */, 0xE2, 0x00 /* (to 0x00FA state 88) */,
|
|
0x64 /* 'd' */, 0x74, 0x01 /* (to 0x018F state 177) */,
|
|
0x72 /* 'r' */, 0x7D, 0x01 /* (to 0x019B state 182) */,
|
|
0x65 /* 'e' */, 0xE2, 0x01 /* (to 0x0203 state 256) */,
|
|
0x66 /* 'f' */, 0xFE, 0x01 /* (to 0x0222 state 272) */,
|
|
0x6C /* 'l' */, 0x27, 0x02 /* (to 0x024E state 306) */,
|
|
0x6D /* 'm' */, 0x4A, 0x02 /* (to 0x0274 state 332) */,
|
|
0x73 /* 's' */, 0x60, 0x02 /* (to 0x028D state 355) */,
|
|
0x78 /* 'x' */, 0xAE, 0x02 /* (to 0x02DE state 410) */,
|
|
0x74 /* 't' */, 0xC9, 0x02 /* (to 0x02FC state 431) */,
|
|
0x76 /* 'v' */, 0x5D, 0x03 /* (to 0x0393 state 527) */,
|
|
0x77 /* 'w' */, 0x6A, 0x03 /* (to 0x03A3 state 535) */,
|
|
0x3A /* ':' */, 0xB0, 0x03 /* (to 0x03EC state 594) */,
|
|
0x08, /* fail */
|
|
/* pos 0040: 1 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0041: 2 */ 0xF4 /* 't' -> */,
|
|
/* pos 0042: 3 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0043: 4 */ 0x00, 0x00 /* - terminal marker 0 - */,
|
|
/* pos 0045: 5 */ 0x6F /* 'o' */, 0x0D, 0x00 /* (to 0x0052 state 6) */,
|
|
0x72 /* 'r' */, 0xED, 0x00 /* (to 0x0135 state 123) */,
|
|
0x61 /* 'a' */, 0x6A, 0x03 /* (to 0x03B5 state 552) */,
|
|
0x75 /* 'u' */, 0x6C, 0x03 /* (to 0x03BA state 556) */,
|
|
0x08, /* fail */
|
|
/* pos 0052: 6 */ 0xF3 /* 's' -> */,
|
|
/* pos 0053: 7 */ 0xF4 /* 't' -> */,
|
|
/* pos 0054: 8 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0055: 9 */ 0x00, 0x01 /* - terminal marker 1 - */,
|
|
/* pos 0057: 10 */ 0x6F /* 'o' */, 0x0A, 0x00 /* (to 0x0061 state 11) */,
|
|
0x74 /* 't' */, 0x53, 0x00 /* (to 0x00AD state 43) */,
|
|
0x65 /* 'e' */, 0x9A, 0x02 /* (to 0x02F7 state 427) */,
|
|
0x08, /* fail */
|
|
/* pos 0061: 11 */ 0xF3 /* 's' -> */,
|
|
/* pos 0062: 12 */ 0xF4 /* 't' -> */,
|
|
/* pos 0063: 13 */ 0xBA /* ':' -> */,
|
|
/* pos 0064: 14 */ 0x00, 0x03 /* - terminal marker 3 - */,
|
|
/* pos 0066: 15 */ 0x6F /* 'o' */, 0x07, 0x00 /* (to 0x006D state 16) */,
|
|
0x61 /* 'a' */, 0xD9, 0x00 /* (to 0x0142 state 129) */,
|
|
0x08, /* fail */
|
|
/* pos 006d: 16 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x0074 state 17) */,
|
|
0x6F /* 'o' */, 0xEE, 0x00 /* (to 0x015E state 155) */,
|
|
0x08, /* fail */
|
|
/* pos 0074: 17 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x007B state 18) */,
|
|
0x74 /* 't' */, 0xED, 0x00 /* (to 0x0164 state 160) */,
|
|
0x08, /* fail */
|
|
/* pos 007b: 18 */ 0xE5 /* 'e' -> */,
|
|
/* pos 007c: 19 */ 0xE3 /* 'c' -> */,
|
|
/* pos 007d: 20 */ 0xF4 /* 't' -> */,
|
|
/* pos 007e: 21 */ 0x69 /* 'i' */, 0x07, 0x00 /* (to 0x0085 state 22) */,
|
|
0x20 /* ' ' */, 0x74, 0x02 /* (to 0x02F5 state 426) */,
|
|
0x08, /* fail */
|
|
/* pos 0085: 22 */ 0xEF /* 'o' -> */,
|
|
/* pos 0086: 23 */ 0xEE /* 'n' -> */,
|
|
/* pos 0087: 24 */ 0xBA /* ':' -> */,
|
|
/* pos 0088: 25 */ 0x00, 0x04 /* - terminal marker 4 - */,
|
|
/* pos 008a: 26 */ 0x70 /* 'p' */, 0x0A, 0x00 /* (to 0x0094 state 27) */,
|
|
0x73 /* 's' */, 0x3B, 0x02 /* (to 0x02C8 state 396) */,
|
|
0x72 /* 'r' */, 0x33, 0x03 /* (to 0x03C3 state 563) */,
|
|
0x08, /* fail */
|
|
/* pos 0094: 27 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0095: 28 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0096: 29 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0097: 30 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0098: 31 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0099: 32 */ 0xBA /* ':' -> */,
|
|
/* pos 009a: 33 */ 0x00, 0x05 /* - terminal marker 5 - */,
|
|
/* pos 009c: 34 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x00A3 state 35) */,
|
|
0x70 /* 'p' */, 0x67, 0x02 /* (to 0x0306 state 434) */,
|
|
0x08, /* fail */
|
|
/* pos 00a3: 35 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00a4: 36 */ 0xE7 /* 'g' -> */,
|
|
/* pos 00a5: 37 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00a6: 38 */ 0xEE /* 'n' -> */,
|
|
/* pos 00a7: 39 */ 0xBA /* ':' -> */,
|
|
/* pos 00a8: 40 */ 0x00, 0x06 /* - terminal marker 6 - */,
|
|
/* pos 00aa: 41 */ 0x8A /* '.' -> */,
|
|
/* pos 00ab: 42 */ 0x00, 0x08 /* - terminal marker 8 - */,
|
|
/* pos 00ad: 43 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ae: 44 */ 0xF0 /* 'p' -> */,
|
|
/* pos 00af: 45 */ 0x32 /* '2' */, 0x07, 0x00 /* (to 0x00B6 state 46) */,
|
|
0x2F /* '/' */, 0x22, 0x03 /* (to 0x03D4 state 578) */,
|
|
0x08, /* fail */
|
|
/* pos 00b6: 46 */ 0xAD /* '-' -> */,
|
|
/* pos 00b7: 47 */ 0xF3 /* 's' -> */,
|
|
/* pos 00b8: 48 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00b9: 49 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ba: 50 */ 0xF4 /* 't' -> */,
|
|
/* pos 00bb: 51 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00bc: 52 */ 0xEE /* 'n' -> */,
|
|
/* pos 00bd: 53 */ 0xE7 /* 'g' -> */,
|
|
/* pos 00be: 54 */ 0xF3 /* 's' -> */,
|
|
/* pos 00bf: 55 */ 0xBA /* ':' -> */,
|
|
/* pos 00c0: 56 */ 0x00, 0x10 /* - terminal marker 16 - */,
|
|
/* pos 00c2: 57 */ 0x63 /* 'c' */, 0x0D, 0x00 /* (to 0x00CF state 58) */,
|
|
0x75 /* 'u' */, 0x8B, 0x00 /* (to 0x0150 state 142) */,
|
|
0x6C /* 'l' */, 0x05, 0x01 /* (to 0x01CD state 208) */,
|
|
0x67 /* 'g' */, 0x8C, 0x02 /* (to 0x0357 state 478) */,
|
|
0x08, /* fail */
|
|
/* pos 00cf: 58 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00d0: 59 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00d1: 60 */ 0x73 /* 's' */, 0x07, 0x00 /* (to 0x00D8 state 61) */,
|
|
0x70 /* 'p' */, 0x41, 0x00 /* (to 0x0115 state 102) */,
|
|
0x08, /* fail */
|
|
/* pos 00d8: 61 */ 0xF3 /* 's' -> */,
|
|
/* pos 00d9: 62 */ 0xAD /* '-' -> */,
|
|
/* pos 00da: 63 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00db: 64 */ 0xEF /* 'o' -> */,
|
|
/* pos 00dc: 65 */ 0xEE /* 'n' -> */,
|
|
/* pos 00dd: 66 */ 0xF4 /* 't' -> */,
|
|
/* pos 00de: 67 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00df: 68 */ 0xEF /* 'o' -> */,
|
|
/* pos 00e0: 69 */ 0xEC /* 'l' -> */,
|
|
/* pos 00e1: 70 */ 0xAD /* '-' -> */,
|
|
/* pos 00e2: 71 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x00E9 state 72) */,
|
|
0x61 /* 'a' */, 0xDA, 0x00 /* (to 0x01BF state 195) */,
|
|
0x08, /* fail */
|
|
/* pos 00e9: 72 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00ea: 73 */ 0xF1 /* 'q' -> */,
|
|
/* pos 00eb: 74 */ 0xF5 /* 'u' -> */,
|
|
/* pos 00ec: 75 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00ed: 76 */ 0xF3 /* 's' -> */,
|
|
/* pos 00ee: 77 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ef: 78 */ 0xAD /* '-' -> */,
|
|
/* pos 00f0: 79 */ 0xE8 /* 'h' -> */,
|
|
/* pos 00f1: 80 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00f2: 81 */ 0xE1 /* 'a' -> */,
|
|
/* pos 00f3: 82 */ 0xE4 /* 'd' -> */,
|
|
/* pos 00f4: 83 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00f5: 84 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00f6: 85 */ 0xF3 /* 's' -> */,
|
|
/* pos 00f7: 86 */ 0xBA /* ':' -> */,
|
|
/* pos 00f8: 87 */ 0x00, 0x11 /* - terminal marker 17 - */,
|
|
/* pos 00fa: 88 */ 0xE6 /* 'f' -> */,
|
|
/* pos 00fb: 89 */ 0xAD /* '-' -> */,
|
|
/* pos 00fc: 90 */ 0x6E /* 'n' */, 0x0D, 0x00 /* (to 0x0109 state 91) */,
|
|
0x6D /* 'm' */, 0x29, 0x01 /* (to 0x0228 state 277) */,
|
|
0x72 /* 'r' */, 0x33, 0x01 /* (to 0x0235 state 283) */,
|
|
0x75 /* 'u' */, 0x37, 0x01 /* (to 0x023C state 289) */,
|
|
0x08, /* fail */
|
|
/* pos 0109: 91 */ 0xEF /* 'o' -> */,
|
|
/* pos 010a: 92 */ 0xEE /* 'n' -> */,
|
|
/* pos 010b: 93 */ 0xE5 /* 'e' -> */,
|
|
/* pos 010c: 94 */ 0xAD /* '-' -> */,
|
|
/* pos 010d: 95 */ 0xED /* 'm' -> */,
|
|
/* pos 010e: 96 */ 0xE1 /* 'a' -> */,
|
|
/* pos 010f: 97 */ 0xF4 /* 't' -> */,
|
|
/* pos 0110: 98 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0111: 99 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0112: 100 */ 0xBA /* ':' -> */,
|
|
/* pos 0113: 101 */ 0x00, 0x13 /* - terminal marker 19 - */,
|
|
/* pos 0115: 102 */ 0xF4 /* 't' -> */,
|
|
/* pos 0116: 103 */ 0xAD /* '-' -> */,
|
|
/* pos 0117: 104 */ 0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x0121 state 105) */,
|
|
0x6C /* 'l' */, 0x11, 0x00 /* (to 0x012B state 114) */,
|
|
0x72 /* 'r' */, 0x32, 0x02 /* (to 0x034F state 471) */,
|
|
0x08, /* fail */
|
|
/* pos 0121: 105 */ 0xEE /* 'n' -> */,
|
|
/* pos 0122: 106 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0123: 107 */ 0xEF /* 'o' -> */,
|
|
/* pos 0124: 108 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0125: 109 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0126: 110 */ 0xEE /* 'n' -> */,
|
|
/* pos 0127: 111 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0128: 112 */ 0xBA /* ':' -> */,
|
|
/* pos 0129: 113 */ 0x00, 0x14 /* - terminal marker 20 - */,
|
|
/* pos 012b: 114 */ 0xE1 /* 'a' -> */,
|
|
/* pos 012c: 115 */ 0xEE /* 'n' -> */,
|
|
/* pos 012d: 116 */ 0xE7 /* 'g' -> */,
|
|
/* pos 012e: 117 */ 0xF5 /* 'u' -> */,
|
|
/* pos 012f: 118 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0130: 119 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0131: 120 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0132: 121 */ 0xBA /* ':' -> */,
|
|
/* pos 0133: 122 */ 0x00, 0x15 /* - terminal marker 21 - */,
|
|
/* pos 0135: 123 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x013C state 124) */,
|
|
0x6F /* 'o' */, 0x9B, 0x01 /* (to 0x02D3 state 406) */,
|
|
0x08, /* fail */
|
|
/* pos 013c: 124 */ 0xE7 /* 'g' -> */,
|
|
/* pos 013d: 125 */ 0xED /* 'm' -> */,
|
|
/* pos 013e: 126 */ 0xE1 /* 'a' -> */,
|
|
/* pos 013f: 127 */ 0xBA /* ':' -> */,
|
|
/* pos 0140: 128 */ 0x00, 0x16 /* - terminal marker 22 - */,
|
|
/* pos 0142: 129 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0143: 130 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0144: 131 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0145: 132 */ 0xAD /* '-' -> */,
|
|
/* pos 0146: 133 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0147: 134 */ 0xEF /* 'o' -> */,
|
|
/* pos 0148: 135 */ 0xEE /* 'n' -> */,
|
|
/* pos 0149: 136 */ 0xF4 /* 't' -> */,
|
|
/* pos 014a: 137 */ 0xF2 /* 'r' -> */,
|
|
/* pos 014b: 138 */ 0xEF /* 'o' -> */,
|
|
/* pos 014c: 139 */ 0xEC /* 'l' -> */,
|
|
/* pos 014d: 140 */ 0xBA /* ':' -> */,
|
|
/* pos 014e: 141 */ 0x00, 0x17 /* - terminal marker 23 - */,
|
|
/* pos 0150: 142 */ 0xF4 /* 't' -> */,
|
|
/* pos 0151: 143 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0152: 144 */ 0xEF /* 'o' -> */,
|
|
/* pos 0153: 145 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0154: 146 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0155: 147 */ 0xFA /* 'z' -> */,
|
|
/* pos 0156: 148 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0157: 149 */ 0xF4 /* 't' -> */,
|
|
/* pos 0158: 150 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0159: 151 */ 0xEF /* 'o' -> */,
|
|
/* pos 015a: 152 */ 0xEE /* 'n' -> */,
|
|
/* pos 015b: 153 */ 0xBA /* ':' -> */,
|
|
/* pos 015c: 154 */ 0x00, 0x18 /* - terminal marker 24 - */,
|
|
/* pos 015e: 155 */ 0xEB /* 'k' -> */,
|
|
/* pos 015f: 156 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0160: 157 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0161: 158 */ 0xBA /* ':' -> */,
|
|
/* pos 0162: 159 */ 0x00, 0x19 /* - terminal marker 25 - */,
|
|
/* pos 0164: 160 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0165: 161 */ 0xEE /* 'n' -> */,
|
|
/* pos 0166: 162 */ 0xF4 /* 't' -> */,
|
|
/* pos 0167: 163 */ 0xAD /* '-' -> */,
|
|
/* pos 0168: 164 */ 0x6C /* 'l' */, 0x10, 0x00 /* (to 0x0178 state 165) */,
|
|
0x74 /* 't' */, 0x1E, 0x00 /* (to 0x0189 state 172) */,
|
|
0x64 /* 'd' */, 0x65, 0x00 /* (to 0x01D3 state 213) */,
|
|
0x65 /* 'e' */, 0x6F, 0x00 /* (to 0x01E0 state 225) */,
|
|
0x72 /* 'r' */, 0x88, 0x00 /* (to 0x01FC state 250) */,
|
|
0x08, /* fail */
|
|
/* pos 0178: 165 */ 0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x0182 state 166) */,
|
|
0x61 /* 'a' */, 0x6F, 0x00 /* (to 0x01EA state 234) */,
|
|
0x6F /* 'o' */, 0x75, 0x00 /* (to 0x01F3 state 242) */,
|
|
0x08, /* fail */
|
|
/* pos 0182: 166 */ 0xEE /* 'n' -> */,
|
|
/* pos 0183: 167 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0184: 168 */ 0xF4 /* 't' -> */,
|
|
/* pos 0185: 169 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0186: 170 */ 0xBA /* ':' -> */,
|
|
/* pos 0187: 171 */ 0x00, 0x1A /* - terminal marker 26 - */,
|
|
/* pos 0189: 172 */ 0xF9 /* 'y' -> */,
|
|
/* pos 018a: 173 */ 0xF0 /* 'p' -> */,
|
|
/* pos 018b: 174 */ 0xE5 /* 'e' -> */,
|
|
/* pos 018c: 175 */ 0xBA /* ':' -> */,
|
|
/* pos 018d: 176 */ 0x00, 0x1B /* - terminal marker 27 - */,
|
|
/* pos 018f: 177 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x0196 state 178) */,
|
|
0x65 /* 'e' */, 0x2B, 0x02 /* (to 0x03BD state 558) */,
|
|
0x08, /* fail */
|
|
/* pos 0196: 178 */ 0xF4 /* 't' -> */,
|
|
/* pos 0197: 179 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0198: 180 */ 0xBA /* ':' -> */,
|
|
/* pos 0199: 181 */ 0x00, 0x1C /* - terminal marker 28 - */,
|
|
/* pos 019b: 182 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x01A2 state 183) */,
|
|
0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x01A8 state 188) */,
|
|
0x08, /* fail */
|
|
/* pos 01a2: 183 */ 0xEE /* 'n' -> */,
|
|
/* pos 01a3: 184 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01a4: 185 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01a5: 186 */ 0xBA /* ':' -> */,
|
|
/* pos 01a6: 187 */ 0x00, 0x1D /* - terminal marker 29 - */,
|
|
/* pos 01a8: 188 */ 0x66 /* 'f' */, 0x0A, 0x00 /* (to 0x01B2 state 189) */,
|
|
0x74 /* 't' */, 0xD7, 0x00 /* (to 0x0282 state 345) */,
|
|
0x70 /* 'p' */, 0x32, 0x02 /* (to 0x03E0 state 583) */,
|
|
0x08, /* fail */
|
|
/* pos 01b2: 189 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x01B9 state 190) */,
|
|
0x72 /* 'r' */, 0xC6, 0x01 /* (to 0x037B state 505) */,
|
|
0x08, /* fail */
|
|
/* pos 01b9: 190 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01ba: 191 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01bb: 192 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01bc: 193 */ 0xBA /* ':' -> */,
|
|
/* pos 01bd: 194 */ 0x00, 0x1E /* - terminal marker 30 - */,
|
|
/* pos 01bf: 195 */ 0xEC /* 'l' -> */,
|
|
/* pos 01c0: 196 */ 0xEC /* 'l' -> */,
|
|
/* pos 01c1: 197 */ 0xEF /* 'o' -> */,
|
|
/* pos 01c2: 198 */ 0xF7 /* 'w' -> */,
|
|
/* pos 01c3: 199 */ 0xAD /* '-' -> */,
|
|
/* pos 01c4: 200 */ 0xEF /* 'o' -> */,
|
|
/* pos 01c5: 201 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01c6: 202 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01c7: 203 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01c8: 204 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01c9: 205 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ca: 206 */ 0xBA /* ':' -> */,
|
|
/* pos 01cb: 207 */ 0x00, 0x24 /* - terminal marker 36 - */,
|
|
/* pos 01cd: 208 */ 0xEC /* 'l' -> */,
|
|
/* pos 01ce: 209 */ 0xEF /* 'o' -> */,
|
|
/* pos 01cf: 210 */ 0xF7 /* 'w' -> */,
|
|
/* pos 01d0: 211 */ 0xBA /* ':' -> */,
|
|
/* pos 01d1: 212 */ 0x00, 0x26 /* - terminal marker 38 - */,
|
|
/* pos 01d3: 213 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d4: 214 */ 0xF3 /* 's' -> */,
|
|
/* pos 01d5: 215 */ 0xF0 /* 'p' -> */,
|
|
/* pos 01d6: 216 */ 0xEF /* 'o' -> */,
|
|
/* pos 01d7: 217 */ 0xF3 /* 's' -> */,
|
|
/* pos 01d8: 218 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d9: 219 */ 0xF4 /* 't' -> */,
|
|
/* pos 01da: 220 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01db: 221 */ 0xEF /* 'o' -> */,
|
|
/* pos 01dc: 222 */ 0xEE /* 'n' -> */,
|
|
/* pos 01dd: 223 */ 0xBA /* ':' -> */,
|
|
/* pos 01de: 224 */ 0x00, 0x27 /* - terminal marker 39 - */,
|
|
/* pos 01e0: 225 */ 0xEE /* 'n' -> */,
|
|
/* pos 01e1: 226 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01e2: 227 */ 0xEF /* 'o' -> */,
|
|
/* pos 01e3: 228 */ 0xE4 /* 'd' -> */,
|
|
/* pos 01e4: 229 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01e5: 230 */ 0xEE /* 'n' -> */,
|
|
/* pos 01e6: 231 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01e7: 232 */ 0xBA /* ':' -> */,
|
|
/* pos 01e8: 233 */ 0x00, 0x28 /* - terminal marker 40 - */,
|
|
/* pos 01ea: 234 */ 0xEE /* 'n' -> */,
|
|
/* pos 01eb: 235 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01ec: 236 */ 0xF5 /* 'u' -> */,
|
|
/* pos 01ed: 237 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01ee: 238 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01ef: 239 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01f0: 240 */ 0xBA /* ':' -> */,
|
|
/* pos 01f1: 241 */ 0x00, 0x29 /* - terminal marker 41 - */,
|
|
/* pos 01f3: 242 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01f4: 243 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01f5: 244 */ 0xF4 /* 't' -> */,
|
|
/* pos 01f6: 245 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01f7: 246 */ 0xEF /* 'o' -> */,
|
|
/* pos 01f8: 247 */ 0xEE /* 'n' -> */,
|
|
/* pos 01f9: 248 */ 0xBA /* ':' -> */,
|
|
/* pos 01fa: 249 */ 0x00, 0x2A /* - terminal marker 42 - */,
|
|
/* pos 01fc: 250 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01fd: 251 */ 0xEE /* 'n' -> */,
|
|
/* pos 01fe: 252 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01ff: 253 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0200: 254 */ 0xBA /* ':' -> */,
|
|
/* pos 0201: 255 */ 0x00, 0x2B /* - terminal marker 43 - */,
|
|
/* pos 0203: 256 */ 0x74 /* 't' */, 0x07, 0x00 /* (to 0x020A state 257) */,
|
|
0x78 /* 'x' */, 0x09, 0x00 /* (to 0x020F state 261) */,
|
|
0x08, /* fail */
|
|
/* pos 020a: 257 */ 0xE1 /* 'a' -> */,
|
|
/* pos 020b: 258 */ 0xE7 /* 'g' -> */,
|
|
/* pos 020c: 259 */ 0xBA /* ':' -> */,
|
|
/* pos 020d: 260 */ 0x00, 0x2C /* - terminal marker 44 - */,
|
|
/* pos 020f: 261 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0210: 262 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0217 state 263) */,
|
|
0x69 /* 'i' */, 0x09, 0x00 /* (to 0x021C state 267) */,
|
|
0x08, /* fail */
|
|
/* pos 0217: 263 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0218: 264 */ 0xF4 /* 't' -> */,
|
|
/* pos 0219: 265 */ 0xBA /* ':' -> */,
|
|
/* pos 021a: 266 */ 0x00, 0x2D /* - terminal marker 45 - */,
|
|
/* pos 021c: 267 */ 0xF2 /* 'r' -> */,
|
|
/* pos 021d: 268 */ 0xE5 /* 'e' -> */,
|
|
/* pos 021e: 269 */ 0xF3 /* 's' -> */,
|
|
/* pos 021f: 270 */ 0xBA /* ':' -> */,
|
|
/* pos 0220: 271 */ 0x00, 0x2E /* - terminal marker 46 - */,
|
|
/* pos 0222: 272 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0223: 273 */ 0xEF /* 'o' -> */,
|
|
/* pos 0224: 274 */ 0xED /* 'm' -> */,
|
|
/* pos 0225: 275 */ 0xBA /* ':' -> */,
|
|
/* pos 0226: 276 */ 0x00, 0x2F /* - terminal marker 47 - */,
|
|
/* pos 0228: 277 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x022F state 278) */,
|
|
0x6F /* 'o' */, 0xE3, 0x00 /* (to 0x030E state 441) */,
|
|
0x08, /* fail */
|
|
/* pos 022f: 278 */ 0xF4 /* 't' -> */,
|
|
/* pos 0230: 279 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0231: 280 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0232: 281 */ 0xBA /* ':' -> */,
|
|
/* pos 0233: 282 */ 0x00, 0x30 /* - terminal marker 48 - */,
|
|
/* pos 0235: 283 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0236: 284 */ 0xEE /* 'n' -> */,
|
|
/* pos 0237: 285 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0238: 286 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0239: 287 */ 0xBA /* ':' -> */,
|
|
/* pos 023a: 288 */ 0x00, 0x31 /* - terminal marker 49 - */,
|
|
/* pos 023c: 289 */ 0xEE /* 'n' -> */,
|
|
/* pos 023d: 290 */ 0xED /* 'm' -> */,
|
|
/* pos 023e: 291 */ 0xEF /* 'o' -> */,
|
|
/* pos 023f: 292 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0240: 293 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0241: 294 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0242: 295 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0243: 296 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0244: 297 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0245: 298 */ 0xAD /* '-' -> */,
|
|
/* pos 0246: 299 */ 0xF3 /* 's' -> */,
|
|
/* pos 0247: 300 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0248: 301 */ 0xEE /* 'n' -> */,
|
|
/* pos 0249: 302 */ 0xE3 /* 'c' -> */,
|
|
/* pos 024a: 303 */ 0xE5 /* 'e' -> */,
|
|
/* pos 024b: 304 */ 0xBA /* ':' -> */,
|
|
/* pos 024c: 305 */ 0x00, 0x32 /* - terminal marker 50 - */,
|
|
/* pos 024e: 306 */ 0x61 /* 'a' */, 0x0A, 0x00 /* (to 0x0258 state 307) */,
|
|
0x69 /* 'i' */, 0x15, 0x00 /* (to 0x0266 state 320) */,
|
|
0x6F /* 'o' */, 0x17, 0x00 /* (to 0x026B state 324) */,
|
|
0x08, /* fail */
|
|
/* pos 0258: 307 */ 0xF3 /* 's' -> */,
|
|
/* pos 0259: 308 */ 0xF4 /* 't' -> */,
|
|
/* pos 025a: 309 */ 0xAD /* '-' -> */,
|
|
/* pos 025b: 310 */ 0xED /* 'm' -> */,
|
|
/* pos 025c: 311 */ 0xEF /* 'o' -> */,
|
|
/* pos 025d: 312 */ 0xE4 /* 'd' -> */,
|
|
/* pos 025e: 313 */ 0xE9 /* 'i' -> */,
|
|
/* pos 025f: 314 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0260: 315 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0261: 316 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0262: 317 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0263: 318 */ 0xBA /* ':' -> */,
|
|
/* pos 0264: 319 */ 0x00, 0x33 /* - terminal marker 51 - */,
|
|
/* pos 0266: 320 */ 0xEE /* 'n' -> */,
|
|
/* pos 0267: 321 */ 0xEB /* 'k' -> */,
|
|
/* pos 0268: 322 */ 0xBA /* ':' -> */,
|
|
/* pos 0269: 323 */ 0x00, 0x34 /* - terminal marker 52 - */,
|
|
/* pos 026b: 324 */ 0xE3 /* 'c' -> */,
|
|
/* pos 026c: 325 */ 0xE1 /* 'a' -> */,
|
|
/* pos 026d: 326 */ 0xF4 /* 't' -> */,
|
|
/* pos 026e: 327 */ 0xE9 /* 'i' -> */,
|
|
/* pos 026f: 328 */ 0xEF /* 'o' -> */,
|
|
/* pos 0270: 329 */ 0xEE /* 'n' -> */,
|
|
/* pos 0271: 330 */ 0xBA /* ':' -> */,
|
|
/* pos 0272: 331 */ 0x00, 0x35 /* - terminal marker 53 - */,
|
|
/* pos 0274: 332 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0275: 333 */ 0xF8 /* 'x' -> */,
|
|
/* pos 0276: 334 */ 0xAD /* '-' -> */,
|
|
/* pos 0277: 335 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0278: 336 */ 0xEF /* 'o' -> */,
|
|
/* pos 0279: 337 */ 0xF2 /* 'r' -> */,
|
|
/* pos 027a: 338 */ 0xF7 /* 'w' -> */,
|
|
/* pos 027b: 339 */ 0xE1 /* 'a' -> */,
|
|
/* pos 027c: 340 */ 0xF2 /* 'r' -> */,
|
|
/* pos 027d: 341 */ 0xE4 /* 'd' -> */,
|
|
/* pos 027e: 342 */ 0xF3 /* 's' -> */,
|
|
/* pos 027f: 343 */ 0xBA /* ':' -> */,
|
|
/* pos 0280: 344 */ 0x00, 0x36 /* - terminal marker 54 - */,
|
|
/* pos 0282: 345 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0283: 346 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0284: 347 */ 0xAD /* '-' -> */,
|
|
/* pos 0285: 348 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0286: 349 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0287: 350 */ 0xF4 /* 't' -> */,
|
|
/* pos 0288: 351 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0289: 352 */ 0xF2 /* 'r' -> */,
|
|
/* pos 028a: 353 */ 0xBA /* ':' -> */,
|
|
/* pos 028b: 354 */ 0x00, 0x3A /* - terminal marker 58 - */,
|
|
/* pos 028d: 355 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0294 state 356) */,
|
|
0x74 /* 't' */, 0x1E, 0x00 /* (to 0x02AE state 371) */,
|
|
0x08, /* fail */
|
|
/* pos 0294: 356 */ 0x72 /* 'r' */, 0x0A, 0x00 /* (to 0x029E state 357) */,
|
|
0x74 /* 't' */, 0x0D, 0x00 /* (to 0x02A4 state 362) */,
|
|
0x63 /* 'c' */, 0x83, 0x00 /* (to 0x031D state 455) */,
|
|
0x08, /* fail */
|
|
/* pos 029e: 357 */ 0xF6 /* 'v' -> */,
|
|
/* pos 029f: 358 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02a0: 359 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02a1: 360 */ 0xBA /* ':' -> */,
|
|
/* pos 02a2: 361 */ 0x00, 0x3B /* - terminal marker 59 - */,
|
|
/* pos 02a4: 362 */ 0xAD /* '-' -> */,
|
|
/* pos 02a5: 363 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02a6: 364 */ 0xEF /* 'o' -> */,
|
|
/* pos 02a7: 365 */ 0xEF /* 'o' -> */,
|
|
/* pos 02a8: 366 */ 0xEB /* 'k' -> */,
|
|
/* pos 02a9: 367 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02aa: 368 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02ab: 369 */ 0xBA /* ':' -> */,
|
|
/* pos 02ac: 370 */ 0x00, 0x3C /* - terminal marker 60 - */,
|
|
/* pos 02ae: 371 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02af: 372 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02b0: 373 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02b1: 374 */ 0xF4 /* 't' -> */,
|
|
/* pos 02b2: 375 */ 0xAD /* '-' -> */,
|
|
/* pos 02b3: 376 */ 0xF4 /* 't' -> */,
|
|
/* pos 02b4: 377 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02b5: 378 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02b6: 379 */ 0xEE /* 'n' -> */,
|
|
/* pos 02b7: 380 */ 0xF3 /* 's' -> */,
|
|
/* pos 02b8: 381 */ 0xF0 /* 'p' -> */,
|
|
/* pos 02b9: 382 */ 0xEF /* 'o' -> */,
|
|
/* pos 02ba: 383 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02bb: 384 */ 0xF4 /* 't' -> */,
|
|
/* pos 02bc: 385 */ 0xAD /* '-' -> */,
|
|
/* pos 02bd: 386 */ 0xF3 /* 's' -> */,
|
|
/* pos 02be: 387 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02bf: 388 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02c0: 389 */ 0xF5 /* 'u' -> */,
|
|
/* pos 02c1: 390 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02c2: 391 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02c3: 392 */ 0xF4 /* 't' -> */,
|
|
/* pos 02c4: 393 */ 0xF9 /* 'y' -> */,
|
|
/* pos 02c5: 394 */ 0xBA /* ':' -> */,
|
|
/* pos 02c6: 395 */ 0x00, 0x3D /* - terminal marker 61 - */,
|
|
/* pos 02c8: 396 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02c9: 397 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02ca: 398 */ 0xAD /* '-' -> */,
|
|
/* pos 02cb: 399 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02cc: 400 */ 0xE7 /* 'g' -> */,
|
|
/* pos 02cd: 401 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02ce: 402 */ 0xEE /* 'n' -> */,
|
|
/* pos 02cf: 403 */ 0xF4 /* 't' -> */,
|
|
/* pos 02d0: 404 */ 0xBA /* ':' -> */,
|
|
/* pos 02d1: 405 */ 0x00, 0x3F /* - terminal marker 63 - */,
|
|
/* pos 02d3: 406 */ 0xF8 /* 'x' -> */,
|
|
/* pos 02d4: 407 */ 0xF9 /* 'y' -> */,
|
|
/* pos 02d5: 408 */ 0x20 /* ' ' */, 0x07, 0x00 /* (to 0x02DC state 409) */,
|
|
0x2D /* '-' */, 0x83, 0x00 /* (to 0x035B state 481) */,
|
|
0x08, /* fail */
|
|
/* pos 02dc: 409 */ 0x00, 0x47 /* - terminal marker 71 - */,
|
|
/* pos 02de: 410 */ 0xAD /* '-' -> */,
|
|
/* pos 02df: 411 */ 0x66 /* 'f' */, 0x07, 0x00 /* (to 0x02E6 state 412) */,
|
|
0x72 /* 'r' */, 0xE9, 0x00 /* (to 0x03CB state 570) */,
|
|
0x08, /* fail */
|
|
/* pos 02e6: 412 */ 0xEF /* 'o' -> */,
|
|
/* pos 02e7: 413 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02e8: 414 */ 0xF7 /* 'w' -> */,
|
|
/* pos 02e9: 415 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02ea: 416 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02eb: 417 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02ec: 418 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02ed: 419 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02ee: 420 */ 0xAD /* '-' -> */,
|
|
/* pos 02ef: 421 */ 0xE6 /* 'f' -> */,
|
|
/* pos 02f0: 422 */ 0xEF /* 'o' -> */,
|
|
/* pos 02f1: 423 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02f2: 424 */ 0xBA /* ':' -> */,
|
|
/* pos 02f3: 425 */ 0x00, 0x4A /* - terminal marker 74 - */,
|
|
/* pos 02f5: 426 */ 0x00, 0x4B /* - terminal marker 75 - */,
|
|
/* pos 02f7: 427 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02f8: 428 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02f9: 429 */ 0xA0 /* ' ' -> */,
|
|
/* pos 02fa: 430 */ 0x00, 0x4C /* - terminal marker 76 - */,
|
|
/* pos 02fc: 431 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0303 state 432) */,
|
|
0x72 /* 'r' */, 0x82, 0x00 /* (to 0x0381 state 510) */,
|
|
0x08, /* fail */
|
|
/* pos 0303: 432 */ 0xBA /* ':' -> */,
|
|
/* pos 0304: 433 */ 0x00, 0x4D /* - terminal marker 77 - */,
|
|
/* pos 0306: 434 */ 0xF4 /* 't' -> */,
|
|
/* pos 0307: 435 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0308: 436 */ 0xEF /* 'o' -> */,
|
|
/* pos 0309: 437 */ 0xEE /* 'n' -> */,
|
|
/* pos 030a: 438 */ 0xF3 /* 's' -> */,
|
|
/* pos 030b: 439 */ 0xA0 /* ' ' -> */,
|
|
/* pos 030c: 440 */ 0x00, 0x02 /* - terminal marker 2 - */,
|
|
/* pos 030e: 441 */ 0xE4 /* 'd' -> */,
|
|
/* pos 030f: 442 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0310: 443 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0311: 444 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0312: 445 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0313: 446 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0314: 447 */ 0xAD /* '-' -> */,
|
|
/* pos 0315: 448 */ 0xF3 /* 's' -> */,
|
|
/* pos 0316: 449 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0317: 450 */ 0xEE /* 'n' -> */,
|
|
/* pos 0318: 451 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0319: 452 */ 0xE5 /* 'e' -> */,
|
|
/* pos 031a: 453 */ 0xBA /* ':' -> */,
|
|
/* pos 031b: 454 */ 0x00, 0x12 /* - terminal marker 18 - */,
|
|
/* pos 031d: 455 */ 0xAD /* '-' -> */,
|
|
/* pos 031e: 456 */ 0xF7 /* 'w' -> */,
|
|
/* pos 031f: 457 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0320: 458 */ 0xE2 /* 'b' -> */,
|
|
/* pos 0321: 459 */ 0xF3 /* 's' -> */,
|
|
/* pos 0322: 460 */ 0xEF /* 'o' -> */,
|
|
/* pos 0323: 461 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0324: 462 */ 0xEB /* 'k' -> */,
|
|
/* pos 0325: 463 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0326: 464 */ 0xF4 /* 't' -> */,
|
|
/* pos 0327: 465 */ 0xAD /* '-' -> */,
|
|
/* pos 0328: 466 */ 0x6B /* 'k' */, 0x19, 0x00 /* (to 0x0341 state 467) */,
|
|
0x64 /* 'd' */, 0xD1, 0x00 /* (to 0x03FC state 603) */,
|
|
0x65 /* 'e' */, 0xD5, 0x00 /* (to 0x0403 state 609) */,
|
|
0x70 /* 'p' */, 0xE4, 0x00 /* (to 0x0415 state 624) */,
|
|
0x61 /* 'a' */, 0xEB, 0x00 /* (to 0x041F state 633) */,
|
|
0x6E /* 'n' */, 0xF0, 0x00 /* (to 0x0427 state 640) */,
|
|
0x76 /* 'v' */, 0xF7, 0x00 /* (to 0x0431 state 648) */,
|
|
0x6F /* 'o' */, 0xFD, 0x00 /* (to 0x043A state 656) */,
|
|
0x08, /* fail */
|
|
/* pos 0341: 467 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0342: 468 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0343: 469 */ 0x3A /* ':' */, 0x0A, 0x00 /* (to 0x034D state 470) */,
|
|
0x31 /* '1' */, 0xC9, 0x00 /* (to 0x040F state 620) */,
|
|
0x32 /* '2' */, 0xC9, 0x00 /* (to 0x0412 state 622) */,
|
|
0x08, /* fail */
|
|
/* pos 034d: 470 */ 0x00, 0x1F /* - terminal marker 31 - */,
|
|
/* pos 034f: 471 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0350: 472 */ 0xEE /* 'n' -> */,
|
|
/* pos 0351: 473 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0352: 474 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0353: 475 */ 0xF3 /* 's' -> */,
|
|
/* pos 0354: 476 */ 0xBA /* ':' -> */,
|
|
/* pos 0355: 477 */ 0x00, 0x23 /* - terminal marker 35 - */,
|
|
/* pos 0357: 478 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0358: 479 */ 0xBA /* ':' -> */,
|
|
/* pos 0359: 480 */ 0x00, 0x25 /* - terminal marker 37 - */,
|
|
/* pos 035b: 481 */ 0xE1 /* 'a' -> */,
|
|
/* pos 035c: 482 */ 0xF5 /* 'u' -> */,
|
|
/* pos 035d: 483 */ 0xF4 /* 't' -> */,
|
|
/* pos 035e: 484 */ 0xE8 /* 'h' -> */,
|
|
/* pos 035f: 485 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0366 state 486) */,
|
|
0x6F /* 'o' */, 0x0E, 0x00 /* (to 0x0370 state 495) */,
|
|
0x08, /* fail */
|
|
/* pos 0366: 486 */ 0xEE /* 'n' -> */,
|
|
/* pos 0367: 487 */ 0xF4 /* 't' -> */,
|
|
/* pos 0368: 488 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0369: 489 */ 0xE3 /* 'c' -> */,
|
|
/* pos 036a: 490 */ 0xE1 /* 'a' -> */,
|
|
/* pos 036b: 491 */ 0xF4 /* 't' -> */,
|
|
/* pos 036c: 492 */ 0xE5 /* 'e' -> */,
|
|
/* pos 036d: 493 */ 0xBA /* ':' -> */,
|
|
/* pos 036e: 494 */ 0x00, 0x37 /* - terminal marker 55 - */,
|
|
/* pos 0370: 495 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0371: 496 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0372: 497 */ 0xFA /* 'z' -> */,
|
|
/* pos 0373: 498 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0374: 499 */ 0xF4 /* 't' -> */,
|
|
/* pos 0375: 500 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0376: 501 */ 0xEF /* 'o' -> */,
|
|
/* pos 0377: 502 */ 0xEE /* 'n' -> */,
|
|
/* pos 0378: 503 */ 0xBA /* ':' -> */,
|
|
/* pos 0379: 504 */ 0x00, 0x38 /* - terminal marker 56 - */,
|
|
/* pos 037b: 505 */ 0xE5 /* 'e' -> */,
|
|
/* pos 037c: 506 */ 0xF3 /* 's' -> */,
|
|
/* pos 037d: 507 */ 0xE8 /* 'h' -> */,
|
|
/* pos 037e: 508 */ 0xBA /* ':' -> */,
|
|
/* pos 037f: 509 */ 0x00, 0x39 /* - terminal marker 57 - */,
|
|
/* pos 0381: 510 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0382: 511 */ 0xEE /* 'n' -> */,
|
|
/* pos 0383: 512 */ 0xF3 /* 's' -> */,
|
|
/* pos 0384: 513 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0385: 514 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0386: 515 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0387: 516 */ 0xAD /* '-' -> */,
|
|
/* pos 0388: 517 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0389: 518 */ 0xEE /* 'n' -> */,
|
|
/* pos 038a: 519 */ 0xE3 /* 'c' -> */,
|
|
/* pos 038b: 520 */ 0xEF /* 'o' -> */,
|
|
/* pos 038c: 521 */ 0xE4 /* 'd' -> */,
|
|
/* pos 038d: 522 */ 0xE9 /* 'i' -> */,
|
|
/* pos 038e: 523 */ 0xEE /* 'n' -> */,
|
|
/* pos 038f: 524 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0390: 525 */ 0xBA /* ':' -> */,
|
|
/* pos 0391: 526 */ 0x00, 0x3E /* - terminal marker 62 - */,
|
|
/* pos 0393: 527 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x039A state 528) */,
|
|
0x69 /* 'i' */, 0x09, 0x00 /* (to 0x039F state 532) */,
|
|
0x08, /* fail */
|
|
/* pos 039a: 528 */ 0xF2 /* 'r' -> */,
|
|
/* pos 039b: 529 */ 0xF9 /* 'y' -> */,
|
|
/* pos 039c: 530 */ 0xBA /* ':' -> */,
|
|
/* pos 039d: 531 */ 0x00, 0x40 /* - terminal marker 64 - */,
|
|
/* pos 039f: 532 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03a0: 533 */ 0xBA /* ':' -> */,
|
|
/* pos 03a1: 534 */ 0x00, 0x41 /* - terminal marker 65 - */,
|
|
/* pos 03a3: 535 */ 0xF7 /* 'w' -> */,
|
|
/* pos 03a4: 536 */ 0xF7 /* 'w' -> */,
|
|
/* pos 03a5: 537 */ 0xAD /* '-' -> */,
|
|
/* pos 03a6: 538 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03a7: 539 */ 0xF5 /* 'u' -> */,
|
|
/* pos 03a8: 540 */ 0xF4 /* 't' -> */,
|
|
/* pos 03a9: 541 */ 0xE8 /* 'h' -> */,
|
|
/* pos 03aa: 542 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03ab: 543 */ 0xEE /* 'n' -> */,
|
|
/* pos 03ac: 544 */ 0xF4 /* 't' -> */,
|
|
/* pos 03ad: 545 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03ae: 546 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03af: 547 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03b0: 548 */ 0xF4 /* 't' -> */,
|
|
/* pos 03b1: 549 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03b2: 550 */ 0xBA /* ':' -> */,
|
|
/* pos 03b3: 551 */ 0x00, 0x42 /* - terminal marker 66 - */,
|
|
/* pos 03b5: 552 */ 0xF4 /* 't' -> */,
|
|
/* pos 03b6: 553 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03b7: 554 */ 0xE8 /* 'h' -> */,
|
|
/* pos 03b8: 555 */ 0x00, 0x43 /* - terminal marker 67 - */,
|
|
/* pos 03ba: 556 */ 0xF4 /* 't' -> */,
|
|
/* pos 03bb: 557 */ 0x00, 0x44 /* - terminal marker 68 - */,
|
|
/* pos 03bd: 558 */ 0xEC /* 'l' -> */,
|
|
/* pos 03be: 559 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03bf: 560 */ 0xF4 /* 't' -> */,
|
|
/* pos 03c0: 561 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03c1: 562 */ 0x00, 0x45 /* - terminal marker 69 - */,
|
|
/* pos 03c3: 563 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03c4: 564 */ 0xAD /* '-' -> */,
|
|
/* pos 03c5: 565 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03c6: 566 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03c7: 567 */ 0xE7 /* 'g' -> */,
|
|
/* pos 03c8: 568 */ 0xF3 /* 's' -> */,
|
|
/* pos 03c9: 569 */ 0x00, 0x46 /* - terminal marker 70 - */,
|
|
/* pos 03cb: 570 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03cc: 571 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03cd: 572 */ 0xEC /* 'l' -> */,
|
|
/* pos 03ce: 573 */ 0xAD /* '-' -> */,
|
|
/* pos 03cf: 574 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03d0: 575 */ 0xF0 /* 'p' -> */,
|
|
/* pos 03d1: 576 */ 0xBA /* ':' -> */,
|
|
/* pos 03d2: 577 */ 0x00, 0x48 /* - terminal marker 72 - */,
|
|
/* pos 03d4: 578 */ 0xB1 /* '1' -> */,
|
|
/* pos 03d5: 579 */ 0xAE /* '.' -> */,
|
|
/* pos 03d6: 580 */ 0x30 /* '0' */, 0x07, 0x00 /* (to 0x03DD state 581) */,
|
|
0x31 /* '1' */, 0x55, 0x00 /* (to 0x042E state 646) */,
|
|
0x08, /* fail */
|
|
/* pos 03dd: 581 */ 0xA0 /* ' ' -> */,
|
|
/* pos 03de: 582 */ 0x00, 0x49 /* - terminal marker 73 - */,
|
|
/* pos 03e0: 583 */ 0xEC /* 'l' -> */,
|
|
/* pos 03e1: 584 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03e2: 585 */ 0xF9 /* 'y' -> */,
|
|
/* pos 03e3: 586 */ 0xAD /* '-' -> */,
|
|
/* pos 03e4: 587 */ 0xEE /* 'n' -> */,
|
|
/* pos 03e5: 588 */ 0xEF /* 'o' -> */,
|
|
/* pos 03e6: 589 */ 0xEE /* 'n' -> */,
|
|
/* pos 03e7: 590 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03e8: 591 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03e9: 592 */ 0xBA /* ':' -> */,
|
|
/* pos 03ea: 593 */ 0x00, 0x4E /* - terminal marker 78 - */,
|
|
/* pos 03ec: 594 */ 0x70 /* 'p' */, 0x07, 0x00 /* (to 0x03F3 state 595) */,
|
|
0x61 /* 'a' */, 0x53, 0x00 /* (to 0x0442 state 663) */,
|
|
0x08, /* fail */
|
|
/* pos 03f3: 595 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03f4: 596 */ 0xEF /* 'o' -> */,
|
|
/* pos 03f5: 597 */ 0xF4 /* 't' -> */,
|
|
/* pos 03f6: 598 */ 0xEF /* 'o' -> */,
|
|
/* pos 03f7: 599 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03f8: 600 */ 0xEF /* 'o' -> */,
|
|
/* pos 03f9: 601 */ 0xEC /* 'l' -> */,
|
|
/* pos 03fa: 602 */ 0x00, 0x4F /* - terminal marker 79 - */,
|
|
/* pos 03fc: 603 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03fd: 604 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03fe: 605 */ 0xE6 /* 'f' -> */,
|
|
/* pos 03ff: 606 */ 0xF4 /* 't' -> */,
|
|
/* pos 0400: 607 */ 0xBA /* ':' -> */,
|
|
/* pos 0401: 608 */ 0x00, 0x07 /* - terminal marker 7 - */,
|
|
/* pos 0403: 609 */ 0xF8 /* 'x' -> */,
|
|
/* pos 0404: 610 */ 0xF4 /* 't' -> */,
|
|
/* pos 0405: 611 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0406: 612 */ 0xEE /* 'n' -> */,
|
|
/* pos 0407: 613 */ 0xF3 /* 's' -> */,
|
|
/* pos 0408: 614 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0409: 615 */ 0xEF /* 'o' -> */,
|
|
/* pos 040a: 616 */ 0xEE /* 'n' -> */,
|
|
/* pos 040b: 617 */ 0xF3 /* 's' -> */,
|
|
/* pos 040c: 618 */ 0xBA /* ':' -> */,
|
|
/* pos 040d: 619 */ 0x00, 0x09 /* - terminal marker 9 - */,
|
|
/* pos 040f: 620 */ 0xBA /* ':' -> */,
|
|
/* pos 0410: 621 */ 0x00, 0x0A /* - terminal marker 10 - */,
|
|
/* pos 0412: 622 */ 0xBA /* ':' -> */,
|
|
/* pos 0413: 623 */ 0x00, 0x0B /* - terminal marker 11 - */,
|
|
/* pos 0415: 624 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0416: 625 */ 0xEF /* 'o' -> */,
|
|
/* pos 0417: 626 */ 0xF4 /* 't' -> */,
|
|
/* pos 0418: 627 */ 0xEF /* 'o' -> */,
|
|
/* pos 0419: 628 */ 0xE3 /* 'c' -> */,
|
|
/* pos 041a: 629 */ 0xEF /* 'o' -> */,
|
|
/* pos 041b: 630 */ 0xEC /* 'l' -> */,
|
|
/* pos 041c: 631 */ 0xBA /* ':' -> */,
|
|
/* pos 041d: 632 */ 0x00, 0x0C /* - terminal marker 12 - */,
|
|
/* pos 041f: 633 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0420: 634 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0421: 635 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0422: 636 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0423: 637 */ 0xF4 /* 't' -> */,
|
|
/* pos 0424: 638 */ 0xBA /* ':' -> */,
|
|
/* pos 0425: 639 */ 0x00, 0x0D /* - terminal marker 13 - */,
|
|
/* pos 0427: 640 */ 0xEF /* 'o' -> */,
|
|
/* pos 0428: 641 */ 0xEE /* 'n' -> */,
|
|
/* pos 0429: 642 */ 0xE3 /* 'c' -> */,
|
|
/* pos 042a: 643 */ 0xE5 /* 'e' -> */,
|
|
/* pos 042b: 644 */ 0xBA /* ':' -> */,
|
|
/* pos 042c: 645 */ 0x00, 0x0E /* - terminal marker 14 - */,
|
|
/* pos 042e: 646 */ 0xA0 /* ' ' -> */,
|
|
/* pos 042f: 647 */ 0x00, 0x0F /* - terminal marker 15 - */,
|
|
/* pos 0431: 648 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0432: 649 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0433: 650 */ 0xF3 /* 's' -> */,
|
|
/* pos 0434: 651 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0435: 652 */ 0xEF /* 'o' -> */,
|
|
/* pos 0436: 653 */ 0xEE /* 'n' -> */,
|
|
/* pos 0437: 654 */ 0xBA /* ':' -> */,
|
|
/* pos 0438: 655 */ 0x00, 0x20 /* - terminal marker 32 - */,
|
|
/* pos 043a: 656 */ 0xF2 /* 'r' -> */,
|
|
/* pos 043b: 657 */ 0xE9 /* 'i' -> */,
|
|
/* pos 043c: 658 */ 0xE7 /* 'g' -> */,
|
|
/* pos 043d: 659 */ 0xE9 /* 'i' -> */,
|
|
/* pos 043e: 660 */ 0xEE /* 'n' -> */,
|
|
/* pos 043f: 661 */ 0xBA /* ':' -> */,
|
|
/* pos 0440: 662 */ 0x00, 0x21 /* - terminal marker 33 - */,
|
|
/* pos 0442: 663 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0443: 664 */ 0xF4 /* 't' -> */,
|
|
/* pos 0444: 665 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0445: 666 */ 0xEF /* 'o' -> */,
|
|
/* pos 0446: 667 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0447: 668 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0448: 669 */ 0xF4 /* 't' -> */,
|
|
/* pos 0449: 670 */ 0xF9 /* 'y' -> */,
|
|
/* pos 044a: 671 */ 0x00, 0x22 /* - terminal marker 34 - */,
|
|
/* total size 1100 bytes */
|
|
#endif
|
|
|
|
#if !defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && !defined(LWS_ROLE_WS) && defined(LWS_ROLE_H2)
|
|
/* 0: 0: get */
|
|
/* 1: 1: post */
|
|
/* 2: 3: host: */
|
|
/* 3: 4: connection: */
|
|
/* 4: 5: upgrade: */
|
|
/* 5: 6: origin: */
|
|
/* 6: 8:
|
|
*/
|
|
/* 7: 16: http2-settings: */
|
|
/* 8: 17: accept: */
|
|
/* 9: 18: access-control-request-headers: */
|
|
/* 10: 20: if-none-match: */
|
|
/* 11: 21: accept-encoding: */
|
|
/* 12: 22: accept-language: */
|
|
/* 13: 23: pragma: */
|
|
/* 14: 24: cache-control: */
|
|
/* 15: 25: authorization: */
|
|
/* 16: 26: cookie: */
|
|
/* 17: 27: content-length: */
|
|
/* 18: 28: content-type: */
|
|
/* 19: 29: date: */
|
|
/* 20: 30: range: */
|
|
/* 21: 31: referer: */
|
|
/* 22: 32: sec-websocket-key: */
|
|
/* 23: 36: :method */
|
|
/* 24: 37: :path */
|
|
/* 25: 38: :scheme */
|
|
/* 26: 39: :status */
|
|
/* 27: 40: accept-charset: */
|
|
/* 28: 41: accept-ranges: */
|
|
/* 29: 42: access-control-allow-origin: */
|
|
/* 30: 43: age: */
|
|
/* 31: 44: allow: */
|
|
/* 32: 45: content-disposition: */
|
|
/* 33: 46: content-encoding: */
|
|
/* 34: 47: content-language: */
|
|
/* 35: 48: content-location: */
|
|
/* 36: 49: content-range: */
|
|
/* 37: 50: etag: */
|
|
/* 38: 51: expect: */
|
|
/* 39: 52: expires: */
|
|
/* 40: 53: from: */
|
|
/* 41: 54: if-match: */
|
|
/* 42: 55: if-range: */
|
|
/* 43: 56: if-unmodified-since: */
|
|
/* 44: 57: last-modified: */
|
|
/* 45: 58: link: */
|
|
/* 46: 59: location: */
|
|
/* 47: 60: max-forwards: */
|
|
/* 48: 61: proxy-authenticate: */
|
|
/* 49: 62: proxy-authorization: */
|
|
/* 50: 63: refresh: */
|
|
/* 51: 64: retry-after: */
|
|
/* 52: 65: server: */
|
|
/* 53: 66: set-cookie: */
|
|
/* 54: 67: strict-transport-security: */
|
|
/* 55: 68: transfer-encoding: */
|
|
/* 56: 69: user-agent: */
|
|
/* 57: 70: vary: */
|
|
/* 58: 71: via: */
|
|
/* 59: 72: www-authenticate: */
|
|
/* 60: 73: patch */
|
|
/* 61: 77: proxy */
|
|
/* 62: 80: x-forwarded-for: */
|
|
/* 63: 81: connect */
|
|
/* 64: 82: head */
|
|
/* 65: 83: te: */
|
|
/* 66: 84: replay-nonce: */
|
|
/* 67: 85: :protocol */
|
|
/* 68: 86: x-auth-token: */
|
|
/* 69: 87: */
|
|
/* pos 0000: 0 */ 0x67 /* 'g' */, 0x40, 0x00 /* (to 0x0040 state 1) */,
|
|
0x70 /* 'p' */, 0x42, 0x00 /* (to 0x0045 state 5) */,
|
|
0x68 /* 'h' */, 0x51, 0x00 /* (to 0x0057 state 10) */,
|
|
0x63 /* 'c' */, 0x5D, 0x00 /* (to 0x0066 state 15) */,
|
|
0x75 /* 'u' */, 0x7E, 0x00 /* (to 0x008A state 26) */,
|
|
0x6F /* 'o' */, 0x8D, 0x00 /* (to 0x009C state 34) */,
|
|
0x0D /* '.' */, 0x98, 0x00 /* (to 0x00AA state 41) */,
|
|
0x61 /* 'a' */, 0xAD, 0x00 /* (to 0x00C2 state 57) */,
|
|
0x69 /* 'i' */, 0xE2, 0x00 /* (to 0x00FA state 88) */,
|
|
0x64 /* 'd' */, 0x7D, 0x01 /* (to 0x0198 state 177) */,
|
|
0x72 /* 'r' */, 0x86, 0x01 /* (to 0x01A4 state 182) */,
|
|
0x65 /* 'e' */, 0xEB, 0x01 /* (to 0x020C state 256) */,
|
|
0x66 /* 'f' */, 0x07, 0x02 /* (to 0x022B state 272) */,
|
|
0x6C /* 'l' */, 0x30, 0x02 /* (to 0x0257 state 306) */,
|
|
0x6D /* 'm' */, 0x53, 0x02 /* (to 0x027D state 332) */,
|
|
0x73 /* 's' */, 0x69, 0x02 /* (to 0x0296 state 355) */,
|
|
0x78 /* 'x' */, 0xB7, 0x02 /* (to 0x02E7 state 410) */,
|
|
0x74 /* 't' */, 0xD5, 0x02 /* (to 0x0308 state 431) */,
|
|
0x76 /* 'v' */, 0x69, 0x03 /* (to 0x039F state 527) */,
|
|
0x77 /* 'w' */, 0x76, 0x03 /* (to 0x03AF state 535) */,
|
|
0x3A /* ':' */, 0xBC, 0x03 /* (to 0x03F8 state 594) */,
|
|
0x08, /* fail */
|
|
/* pos 0040: 1 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0041: 2 */ 0xF4 /* 't' -> */,
|
|
/* pos 0042: 3 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0043: 4 */ 0x00, 0x00 /* - terminal marker 0 - */,
|
|
/* pos 0045: 5 */ 0x6F /* 'o' */, 0x0D, 0x00 /* (to 0x0052 state 6) */,
|
|
0x72 /* 'r' */, 0xF6, 0x00 /* (to 0x013E state 123) */,
|
|
0x61 /* 'a' */, 0x76, 0x03 /* (to 0x03C1 state 552) */,
|
|
0x75 /* 'u' */, 0x78, 0x03 /* (to 0x03C6 state 556) */,
|
|
0x08, /* fail */
|
|
/* pos 0052: 6 */ 0xF3 /* 's' -> */,
|
|
/* pos 0053: 7 */ 0xF4 /* 't' -> */,
|
|
/* pos 0054: 8 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0055: 9 */ 0x00, 0x01 /* - terminal marker 1 - */,
|
|
/* pos 0057: 10 */ 0x6F /* 'o' */, 0x0A, 0x00 /* (to 0x0061 state 11) */,
|
|
0x74 /* 't' */, 0x53, 0x00 /* (to 0x00AD state 43) */,
|
|
0x65 /* 'e' */, 0xA6, 0x02 /* (to 0x0303 state 427) */,
|
|
0x08, /* fail */
|
|
/* pos 0061: 11 */ 0xF3 /* 's' -> */,
|
|
/* pos 0062: 12 */ 0xF4 /* 't' -> */,
|
|
/* pos 0063: 13 */ 0xBA /* ':' -> */,
|
|
/* pos 0064: 14 */ 0x00, 0x02 /* - terminal marker 2 - */,
|
|
/* pos 0066: 15 */ 0x6F /* 'o' */, 0x07, 0x00 /* (to 0x006D state 16) */,
|
|
0x61 /* 'a' */, 0xE2, 0x00 /* (to 0x014B state 129) */,
|
|
0x08, /* fail */
|
|
/* pos 006d: 16 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x0074 state 17) */,
|
|
0x6F /* 'o' */, 0xF7, 0x00 /* (to 0x0167 state 155) */,
|
|
0x08, /* fail */
|
|
/* pos 0074: 17 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x007B state 18) */,
|
|
0x74 /* 't' */, 0xF6, 0x00 /* (to 0x016D state 160) */,
|
|
0x08, /* fail */
|
|
/* pos 007b: 18 */ 0xE5 /* 'e' -> */,
|
|
/* pos 007c: 19 */ 0xE3 /* 'c' -> */,
|
|
/* pos 007d: 20 */ 0xF4 /* 't' -> */,
|
|
/* pos 007e: 21 */ 0x69 /* 'i' */, 0x07, 0x00 /* (to 0x0085 state 22) */,
|
|
0x20 /* ' ' */, 0x80, 0x02 /* (to 0x0301 state 426) */,
|
|
0x08, /* fail */
|
|
/* pos 0085: 22 */ 0xEF /* 'o' -> */,
|
|
/* pos 0086: 23 */ 0xEE /* 'n' -> */,
|
|
/* pos 0087: 24 */ 0xBA /* ':' -> */,
|
|
/* pos 0088: 25 */ 0x00, 0x03 /* - terminal marker 3 - */,
|
|
/* pos 008a: 26 */ 0x70 /* 'p' */, 0x0A, 0x00 /* (to 0x0094 state 27) */,
|
|
0x73 /* 's' */, 0x44, 0x02 /* (to 0x02D1 state 396) */,
|
|
0x72 /* 'r' */, 0x3F, 0x03 /* (to 0x03CF state 563) */,
|
|
0x08, /* fail */
|
|
/* pos 0094: 27 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0095: 28 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0096: 29 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0097: 30 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0098: 31 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0099: 32 */ 0xBA /* ':' -> */,
|
|
/* pos 009a: 33 */ 0x00, 0x04 /* - terminal marker 4 - */,
|
|
/* pos 009c: 34 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x00A3 state 35) */,
|
|
0x70 /* 'p' */, 0x73, 0x02 /* (to 0x0312 state 434) */,
|
|
0x08, /* fail */
|
|
/* pos 00a3: 35 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00a4: 36 */ 0xE7 /* 'g' -> */,
|
|
/* pos 00a5: 37 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00a6: 38 */ 0xEE /* 'n' -> */,
|
|
/* pos 00a7: 39 */ 0xBA /* ':' -> */,
|
|
/* pos 00a8: 40 */ 0x00, 0x05 /* - terminal marker 5 - */,
|
|
/* pos 00aa: 41 */ 0x8A /* '.' -> */,
|
|
/* pos 00ab: 42 */ 0x00, 0x06 /* - terminal marker 6 - */,
|
|
/* pos 00ad: 43 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ae: 44 */ 0xF0 /* 'p' -> */,
|
|
/* pos 00af: 45 */ 0x32 /* '2' */, 0x07, 0x00 /* (to 0x00B6 state 46) */,
|
|
0x2F /* '/' */, 0x2E, 0x03 /* (to 0x03E0 state 578) */,
|
|
0x08, /* fail */
|
|
/* pos 00b6: 46 */ 0xAD /* '-' -> */,
|
|
/* pos 00b7: 47 */ 0xF3 /* 's' -> */,
|
|
/* pos 00b8: 48 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00b9: 49 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ba: 50 */ 0xF4 /* 't' -> */,
|
|
/* pos 00bb: 51 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00bc: 52 */ 0xEE /* 'n' -> */,
|
|
/* pos 00bd: 53 */ 0xE7 /* 'g' -> */,
|
|
/* pos 00be: 54 */ 0xF3 /* 's' -> */,
|
|
/* pos 00bf: 55 */ 0xBA /* ':' -> */,
|
|
/* pos 00c0: 56 */ 0x00, 0x07 /* - terminal marker 7 - */,
|
|
/* pos 00c2: 57 */ 0x63 /* 'c' */, 0x0D, 0x00 /* (to 0x00CF state 58) */,
|
|
0x75 /* 'u' */, 0x94, 0x00 /* (to 0x0159 state 142) */,
|
|
0x6C /* 'l' */, 0x0E, 0x01 /* (to 0x01D6 state 208) */,
|
|
0x67 /* 'g' */, 0x98, 0x02 /* (to 0x0363 state 478) */,
|
|
0x08, /* fail */
|
|
/* pos 00cf: 58 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00d0: 59 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00d1: 60 */ 0x73 /* 's' */, 0x07, 0x00 /* (to 0x00D8 state 61) */,
|
|
0x70 /* 'p' */, 0x41, 0x00 /* (to 0x0115 state 102) */,
|
|
0x08, /* fail */
|
|
/* pos 00d8: 61 */ 0xF3 /* 's' -> */,
|
|
/* pos 00d9: 62 */ 0xAD /* '-' -> */,
|
|
/* pos 00da: 63 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00db: 64 */ 0xEF /* 'o' -> */,
|
|
/* pos 00dc: 65 */ 0xEE /* 'n' -> */,
|
|
/* pos 00dd: 66 */ 0xF4 /* 't' -> */,
|
|
/* pos 00de: 67 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00df: 68 */ 0xEF /* 'o' -> */,
|
|
/* pos 00e0: 69 */ 0xEC /* 'l' -> */,
|
|
/* pos 00e1: 70 */ 0xAD /* '-' -> */,
|
|
/* pos 00e2: 71 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x00E9 state 72) */,
|
|
0x61 /* 'a' */, 0xE3, 0x00 /* (to 0x01C8 state 195) */,
|
|
0x08, /* fail */
|
|
/* pos 00e9: 72 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00ea: 73 */ 0xF1 /* 'q' -> */,
|
|
/* pos 00eb: 74 */ 0xF5 /* 'u' -> */,
|
|
/* pos 00ec: 75 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00ed: 76 */ 0xF3 /* 's' -> */,
|
|
/* pos 00ee: 77 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ef: 78 */ 0xAD /* '-' -> */,
|
|
/* pos 00f0: 79 */ 0xE8 /* 'h' -> */,
|
|
/* pos 00f1: 80 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00f2: 81 */ 0xE1 /* 'a' -> */,
|
|
/* pos 00f3: 82 */ 0xE4 /* 'd' -> */,
|
|
/* pos 00f4: 83 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00f5: 84 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00f6: 85 */ 0xF3 /* 's' -> */,
|
|
/* pos 00f7: 86 */ 0xBA /* ':' -> */,
|
|
/* pos 00f8: 87 */ 0x00, 0x09 /* - terminal marker 9 - */,
|
|
/* pos 00fa: 88 */ 0xE6 /* 'f' -> */,
|
|
/* pos 00fb: 89 */ 0xAD /* '-' -> */,
|
|
/* pos 00fc: 90 */ 0x6E /* 'n' */, 0x0D, 0x00 /* (to 0x0109 state 91) */,
|
|
0x6D /* 'm' */, 0x32, 0x01 /* (to 0x0231 state 277) */,
|
|
0x72 /* 'r' */, 0x3C, 0x01 /* (to 0x023E state 283) */,
|
|
0x75 /* 'u' */, 0x40, 0x01 /* (to 0x0245 state 289) */,
|
|
0x08, /* fail */
|
|
/* pos 0109: 91 */ 0xEF /* 'o' -> */,
|
|
/* pos 010a: 92 */ 0xEE /* 'n' -> */,
|
|
/* pos 010b: 93 */ 0xE5 /* 'e' -> */,
|
|
/* pos 010c: 94 */ 0xAD /* '-' -> */,
|
|
/* pos 010d: 95 */ 0xED /* 'm' -> */,
|
|
/* pos 010e: 96 */ 0xE1 /* 'a' -> */,
|
|
/* pos 010f: 97 */ 0xF4 /* 't' -> */,
|
|
/* pos 0110: 98 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0111: 99 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0112: 100 */ 0xBA /* ':' -> */,
|
|
/* pos 0113: 101 */ 0x00, 0x0A /* - terminal marker 10 - */,
|
|
/* pos 0115: 102 */ 0xF4 /* 't' -> */,
|
|
/* pos 0116: 103 */ 0x2D /* '-' */, 0x07, 0x00 /* (to 0x011D state 104) */,
|
|
0x3A /* ':' */, 0x4B, 0x03 /* (to 0x0464 state 672) */,
|
|
0x08, /* fail */
|
|
/* pos 011d: 104 */ 0x65 /* 'e' */, 0x0D, 0x00 /* (to 0x012A state 105) */,
|
|
0x6C /* 'l' */, 0x14, 0x00 /* (to 0x0134 state 114) */,
|
|
0x72 /* 'r' */, 0x38, 0x02 /* (to 0x035B state 471) */,
|
|
0x63 /* 'c' */, 0x5E, 0x03 /* (to 0x0484 state 693) */,
|
|
0x08, /* fail */
|
|
/* pos 012a: 105 */ 0xEE /* 'n' -> */,
|
|
/* pos 012b: 106 */ 0xE3 /* 'c' -> */,
|
|
/* pos 012c: 107 */ 0xEF /* 'o' -> */,
|
|
/* pos 012d: 108 */ 0xE4 /* 'd' -> */,
|
|
/* pos 012e: 109 */ 0xE9 /* 'i' -> */,
|
|
/* pos 012f: 110 */ 0xEE /* 'n' -> */,
|
|
/* pos 0130: 111 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0131: 112 */ 0xBA /* ':' -> */,
|
|
/* pos 0132: 113 */ 0x00, 0x0B /* - terminal marker 11 - */,
|
|
/* pos 0134: 114 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0135: 115 */ 0xEE /* 'n' -> */,
|
|
/* pos 0136: 116 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0137: 117 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0138: 118 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0139: 119 */ 0xE7 /* 'g' -> */,
|
|
/* pos 013a: 120 */ 0xE5 /* 'e' -> */,
|
|
/* pos 013b: 121 */ 0xBA /* ':' -> */,
|
|
/* pos 013c: 122 */ 0x00, 0x0C /* - terminal marker 12 - */,
|
|
/* pos 013e: 123 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x0145 state 124) */,
|
|
0x6F /* 'o' */, 0x9B, 0x01 /* (to 0x02DC state 406) */,
|
|
0x08, /* fail */
|
|
/* pos 0145: 124 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0146: 125 */ 0xED /* 'm' -> */,
|
|
/* pos 0147: 126 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0148: 127 */ 0xBA /* ':' -> */,
|
|
/* pos 0149: 128 */ 0x00, 0x0D /* - terminal marker 13 - */,
|
|
/* pos 014b: 129 */ 0xE3 /* 'c' -> */,
|
|
/* pos 014c: 130 */ 0xE8 /* 'h' -> */,
|
|
/* pos 014d: 131 */ 0xE5 /* 'e' -> */,
|
|
/* pos 014e: 132 */ 0xAD /* '-' -> */,
|
|
/* pos 014f: 133 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0150: 134 */ 0xEF /* 'o' -> */,
|
|
/* pos 0151: 135 */ 0xEE /* 'n' -> */,
|
|
/* pos 0152: 136 */ 0xF4 /* 't' -> */,
|
|
/* pos 0153: 137 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0154: 138 */ 0xEF /* 'o' -> */,
|
|
/* pos 0155: 139 */ 0xEC /* 'l' -> */,
|
|
/* pos 0156: 140 */ 0xBA /* ':' -> */,
|
|
/* pos 0157: 141 */ 0x00, 0x0E /* - terminal marker 14 - */,
|
|
/* pos 0159: 142 */ 0xF4 /* 't' -> */,
|
|
/* pos 015a: 143 */ 0xE8 /* 'h' -> */,
|
|
/* pos 015b: 144 */ 0xEF /* 'o' -> */,
|
|
/* pos 015c: 145 */ 0xF2 /* 'r' -> */,
|
|
/* pos 015d: 146 */ 0xE9 /* 'i' -> */,
|
|
/* pos 015e: 147 */ 0xFA /* 'z' -> */,
|
|
/* pos 015f: 148 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0160: 149 */ 0xF4 /* 't' -> */,
|
|
/* pos 0161: 150 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0162: 151 */ 0xEF /* 'o' -> */,
|
|
/* pos 0163: 152 */ 0xEE /* 'n' -> */,
|
|
/* pos 0164: 153 */ 0xBA /* ':' -> */,
|
|
/* pos 0165: 154 */ 0x00, 0x0F /* - terminal marker 15 - */,
|
|
/* pos 0167: 155 */ 0xEB /* 'k' -> */,
|
|
/* pos 0168: 156 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0169: 157 */ 0xE5 /* 'e' -> */,
|
|
/* pos 016a: 158 */ 0xBA /* ':' -> */,
|
|
/* pos 016b: 159 */ 0x00, 0x10 /* - terminal marker 16 - */,
|
|
/* pos 016d: 160 */ 0xE5 /* 'e' -> */,
|
|
/* pos 016e: 161 */ 0xEE /* 'n' -> */,
|
|
/* pos 016f: 162 */ 0xF4 /* 't' -> */,
|
|
/* pos 0170: 163 */ 0xAD /* '-' -> */,
|
|
/* pos 0171: 164 */ 0x6C /* 'l' */, 0x10, 0x00 /* (to 0x0181 state 165) */,
|
|
0x74 /* 't' */, 0x1E, 0x00 /* (to 0x0192 state 172) */,
|
|
0x64 /* 'd' */, 0x65, 0x00 /* (to 0x01DC state 213) */,
|
|
0x65 /* 'e' */, 0x6F, 0x00 /* (to 0x01E9 state 225) */,
|
|
0x72 /* 'r' */, 0x88, 0x00 /* (to 0x0205 state 250) */,
|
|
0x08, /* fail */
|
|
/* pos 0181: 165 */ 0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x018B state 166) */,
|
|
0x61 /* 'a' */, 0x6F, 0x00 /* (to 0x01F3 state 234) */,
|
|
0x6F /* 'o' */, 0x75, 0x00 /* (to 0x01FC state 242) */,
|
|
0x08, /* fail */
|
|
/* pos 018b: 166 */ 0xEE /* 'n' -> */,
|
|
/* pos 018c: 167 */ 0xE7 /* 'g' -> */,
|
|
/* pos 018d: 168 */ 0xF4 /* 't' -> */,
|
|
/* pos 018e: 169 */ 0xE8 /* 'h' -> */,
|
|
/* pos 018f: 170 */ 0xBA /* ':' -> */,
|
|
/* pos 0190: 171 */ 0x00, 0x11 /* - terminal marker 17 - */,
|
|
/* pos 0192: 172 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0193: 173 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0194: 174 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0195: 175 */ 0xBA /* ':' -> */,
|
|
/* pos 0196: 176 */ 0x00, 0x12 /* - terminal marker 18 - */,
|
|
/* pos 0198: 177 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x019F state 178) */,
|
|
0x65 /* 'e' */, 0x2E, 0x02 /* (to 0x03C9 state 558) */,
|
|
0x08, /* fail */
|
|
/* pos 019f: 178 */ 0xF4 /* 't' -> */,
|
|
/* pos 01a0: 179 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01a1: 180 */ 0xBA /* ':' -> */,
|
|
/* pos 01a2: 181 */ 0x00, 0x13 /* - terminal marker 19 - */,
|
|
/* pos 01a4: 182 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x01AB state 183) */,
|
|
0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x01B1 state 188) */,
|
|
0x08, /* fail */
|
|
/* pos 01ab: 183 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ac: 184 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01ad: 185 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01ae: 186 */ 0xBA /* ':' -> */,
|
|
/* pos 01af: 187 */ 0x00, 0x14 /* - terminal marker 20 - */,
|
|
/* pos 01b1: 188 */ 0x66 /* 'f' */, 0x0A, 0x00 /* (to 0x01BB state 189) */,
|
|
0x74 /* 't' */, 0xD7, 0x00 /* (to 0x028B state 345) */,
|
|
0x70 /* 'p' */, 0x35, 0x02 /* (to 0x03EC state 583) */,
|
|
0x08, /* fail */
|
|
/* pos 01bb: 189 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x01C2 state 190) */,
|
|
0x72 /* 'r' */, 0xC9, 0x01 /* (to 0x0387 state 505) */,
|
|
0x08, /* fail */
|
|
/* pos 01c2: 190 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01c3: 191 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01c4: 192 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01c5: 193 */ 0xBA /* ':' -> */,
|
|
/* pos 01c6: 194 */ 0x00, 0x15 /* - terminal marker 21 - */,
|
|
/* pos 01c8: 195 */ 0xEC /* 'l' -> */,
|
|
/* pos 01c9: 196 */ 0xEC /* 'l' -> */,
|
|
/* pos 01ca: 197 */ 0xEF /* 'o' -> */,
|
|
/* pos 01cb: 198 */ 0xF7 /* 'w' -> */,
|
|
/* pos 01cc: 199 */ 0xAD /* '-' -> */,
|
|
/* pos 01cd: 200 */ 0xEF /* 'o' -> */,
|
|
/* pos 01ce: 201 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01cf: 202 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d0: 203 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01d1: 204 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d2: 205 */ 0xEE /* 'n' -> */,
|
|
/* pos 01d3: 206 */ 0xBA /* ':' -> */,
|
|
/* pos 01d4: 207 */ 0x00, 0x1D /* - terminal marker 29 - */,
|
|
/* pos 01d6: 208 */ 0xEC /* 'l' -> */,
|
|
/* pos 01d7: 209 */ 0xEF /* 'o' -> */,
|
|
/* pos 01d8: 210 */ 0xF7 /* 'w' -> */,
|
|
/* pos 01d9: 211 */ 0xBA /* ':' -> */,
|
|
/* pos 01da: 212 */ 0x00, 0x1F /* - terminal marker 31 - */,
|
|
/* pos 01dc: 213 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01dd: 214 */ 0xF3 /* 's' -> */,
|
|
/* pos 01de: 215 */ 0xF0 /* 'p' -> */,
|
|
/* pos 01df: 216 */ 0xEF /* 'o' -> */,
|
|
/* pos 01e0: 217 */ 0xF3 /* 's' -> */,
|
|
/* pos 01e1: 218 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01e2: 219 */ 0xF4 /* 't' -> */,
|
|
/* pos 01e3: 220 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01e4: 221 */ 0xEF /* 'o' -> */,
|
|
/* pos 01e5: 222 */ 0xEE /* 'n' -> */,
|
|
/* pos 01e6: 223 */ 0xBA /* ':' -> */,
|
|
/* pos 01e7: 224 */ 0x00, 0x20 /* - terminal marker 32 - */,
|
|
/* pos 01e9: 225 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ea: 226 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01eb: 227 */ 0xEF /* 'o' -> */,
|
|
/* pos 01ec: 228 */ 0xE4 /* 'd' -> */,
|
|
/* pos 01ed: 229 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01ee: 230 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ef: 231 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01f0: 232 */ 0xBA /* ':' -> */,
|
|
/* pos 01f1: 233 */ 0x00, 0x21 /* - terminal marker 33 - */,
|
|
/* pos 01f3: 234 */ 0xEE /* 'n' -> */,
|
|
/* pos 01f4: 235 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01f5: 236 */ 0xF5 /* 'u' -> */,
|
|
/* pos 01f6: 237 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01f7: 238 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01f8: 239 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01f9: 240 */ 0xBA /* ':' -> */,
|
|
/* pos 01fa: 241 */ 0x00, 0x22 /* - terminal marker 34 - */,
|
|
/* pos 01fc: 242 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01fd: 243 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01fe: 244 */ 0xF4 /* 't' -> */,
|
|
/* pos 01ff: 245 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0200: 246 */ 0xEF /* 'o' -> */,
|
|
/* pos 0201: 247 */ 0xEE /* 'n' -> */,
|
|
/* pos 0202: 248 */ 0xBA /* ':' -> */,
|
|
/* pos 0203: 249 */ 0x00, 0x23 /* - terminal marker 35 - */,
|
|
/* pos 0205: 250 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0206: 251 */ 0xEE /* 'n' -> */,
|
|
/* pos 0207: 252 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0208: 253 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0209: 254 */ 0xBA /* ':' -> */,
|
|
/* pos 020a: 255 */ 0x00, 0x24 /* - terminal marker 36 - */,
|
|
/* pos 020c: 256 */ 0x74 /* 't' */, 0x07, 0x00 /* (to 0x0213 state 257) */,
|
|
0x78 /* 'x' */, 0x09, 0x00 /* (to 0x0218 state 261) */,
|
|
0x08, /* fail */
|
|
/* pos 0213: 257 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0214: 258 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0215: 259 */ 0xBA /* ':' -> */,
|
|
/* pos 0216: 260 */ 0x00, 0x25 /* - terminal marker 37 - */,
|
|
/* pos 0218: 261 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0219: 262 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0220 state 263) */,
|
|
0x69 /* 'i' */, 0x09, 0x00 /* (to 0x0225 state 267) */,
|
|
0x08, /* fail */
|
|
/* pos 0220: 263 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0221: 264 */ 0xF4 /* 't' -> */,
|
|
/* pos 0222: 265 */ 0xBA /* ':' -> */,
|
|
/* pos 0223: 266 */ 0x00, 0x26 /* - terminal marker 38 - */,
|
|
/* pos 0225: 267 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0226: 268 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0227: 269 */ 0xF3 /* 's' -> */,
|
|
/* pos 0228: 270 */ 0xBA /* ':' -> */,
|
|
/* pos 0229: 271 */ 0x00, 0x27 /* - terminal marker 39 - */,
|
|
/* pos 022b: 272 */ 0xF2 /* 'r' -> */,
|
|
/* pos 022c: 273 */ 0xEF /* 'o' -> */,
|
|
/* pos 022d: 274 */ 0xED /* 'm' -> */,
|
|
/* pos 022e: 275 */ 0xBA /* ':' -> */,
|
|
/* pos 022f: 276 */ 0x00, 0x28 /* - terminal marker 40 - */,
|
|
/* pos 0231: 277 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x0238 state 278) */,
|
|
0x6F /* 'o' */, 0xE6, 0x00 /* (to 0x031A state 441) */,
|
|
0x08, /* fail */
|
|
/* pos 0238: 278 */ 0xF4 /* 't' -> */,
|
|
/* pos 0239: 279 */ 0xE3 /* 'c' -> */,
|
|
/* pos 023a: 280 */ 0xE8 /* 'h' -> */,
|
|
/* pos 023b: 281 */ 0xBA /* ':' -> */,
|
|
/* pos 023c: 282 */ 0x00, 0x29 /* - terminal marker 41 - */,
|
|
/* pos 023e: 283 */ 0xE1 /* 'a' -> */,
|
|
/* pos 023f: 284 */ 0xEE /* 'n' -> */,
|
|
/* pos 0240: 285 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0241: 286 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0242: 287 */ 0xBA /* ':' -> */,
|
|
/* pos 0243: 288 */ 0x00, 0x2A /* - terminal marker 42 - */,
|
|
/* pos 0245: 289 */ 0xEE /* 'n' -> */,
|
|
/* pos 0246: 290 */ 0xED /* 'm' -> */,
|
|
/* pos 0247: 291 */ 0xEF /* 'o' -> */,
|
|
/* pos 0248: 292 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0249: 293 */ 0xE9 /* 'i' -> */,
|
|
/* pos 024a: 294 */ 0xE6 /* 'f' -> */,
|
|
/* pos 024b: 295 */ 0xE9 /* 'i' -> */,
|
|
/* pos 024c: 296 */ 0xE5 /* 'e' -> */,
|
|
/* pos 024d: 297 */ 0xE4 /* 'd' -> */,
|
|
/* pos 024e: 298 */ 0xAD /* '-' -> */,
|
|
/* pos 024f: 299 */ 0xF3 /* 's' -> */,
|
|
/* pos 0250: 300 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0251: 301 */ 0xEE /* 'n' -> */,
|
|
/* pos 0252: 302 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0253: 303 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0254: 304 */ 0xBA /* ':' -> */,
|
|
/* pos 0255: 305 */ 0x00, 0x2B /* - terminal marker 43 - */,
|
|
/* pos 0257: 306 */ 0x61 /* 'a' */, 0x0A, 0x00 /* (to 0x0261 state 307) */,
|
|
0x69 /* 'i' */, 0x15, 0x00 /* (to 0x026F state 320) */,
|
|
0x6F /* 'o' */, 0x17, 0x00 /* (to 0x0274 state 324) */,
|
|
0x08, /* fail */
|
|
/* pos 0261: 307 */ 0xF3 /* 's' -> */,
|
|
/* pos 0262: 308 */ 0xF4 /* 't' -> */,
|
|
/* pos 0263: 309 */ 0xAD /* '-' -> */,
|
|
/* pos 0264: 310 */ 0xED /* 'm' -> */,
|
|
/* pos 0265: 311 */ 0xEF /* 'o' -> */,
|
|
/* pos 0266: 312 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0267: 313 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0268: 314 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0269: 315 */ 0xE9 /* 'i' -> */,
|
|
/* pos 026a: 316 */ 0xE5 /* 'e' -> */,
|
|
/* pos 026b: 317 */ 0xE4 /* 'd' -> */,
|
|
/* pos 026c: 318 */ 0xBA /* ':' -> */,
|
|
/* pos 026d: 319 */ 0x00, 0x2C /* - terminal marker 44 - */,
|
|
/* pos 026f: 320 */ 0xEE /* 'n' -> */,
|
|
/* pos 0270: 321 */ 0xEB /* 'k' -> */,
|
|
/* pos 0271: 322 */ 0xBA /* ':' -> */,
|
|
/* pos 0272: 323 */ 0x00, 0x2D /* - terminal marker 45 - */,
|
|
/* pos 0274: 324 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0275: 325 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0276: 326 */ 0xF4 /* 't' -> */,
|
|
/* pos 0277: 327 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0278: 328 */ 0xEF /* 'o' -> */,
|
|
/* pos 0279: 329 */ 0xEE /* 'n' -> */,
|
|
/* pos 027a: 330 */ 0xBA /* ':' -> */,
|
|
/* pos 027b: 331 */ 0x00, 0x2E /* - terminal marker 46 - */,
|
|
/* pos 027d: 332 */ 0xE1 /* 'a' -> */,
|
|
/* pos 027e: 333 */ 0xF8 /* 'x' -> */,
|
|
/* pos 027f: 334 */ 0xAD /* '-' -> */,
|
|
/* pos 0280: 335 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0281: 336 */ 0xEF /* 'o' -> */,
|
|
/* pos 0282: 337 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0283: 338 */ 0xF7 /* 'w' -> */,
|
|
/* pos 0284: 339 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0285: 340 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0286: 341 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0287: 342 */ 0xF3 /* 's' -> */,
|
|
/* pos 0288: 343 */ 0xBA /* ':' -> */,
|
|
/* pos 0289: 344 */ 0x00, 0x2F /* - terminal marker 47 - */,
|
|
/* pos 028b: 345 */ 0xF2 /* 'r' -> */,
|
|
/* pos 028c: 346 */ 0xF9 /* 'y' -> */,
|
|
/* pos 028d: 347 */ 0xAD /* '-' -> */,
|
|
/* pos 028e: 348 */ 0xE1 /* 'a' -> */,
|
|
/* pos 028f: 349 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0290: 350 */ 0xF4 /* 't' -> */,
|
|
/* pos 0291: 351 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0292: 352 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0293: 353 */ 0xBA /* ':' -> */,
|
|
/* pos 0294: 354 */ 0x00, 0x33 /* - terminal marker 51 - */,
|
|
/* pos 0296: 355 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x029D state 356) */,
|
|
0x74 /* 't' */, 0x1E, 0x00 /* (to 0x02B7 state 371) */,
|
|
0x08, /* fail */
|
|
/* pos 029d: 356 */ 0x72 /* 'r' */, 0x0A, 0x00 /* (to 0x02A7 state 357) */,
|
|
0x74 /* 't' */, 0x0D, 0x00 /* (to 0x02AD state 362) */,
|
|
0x63 /* 'c' */, 0x86, 0x00 /* (to 0x0329 state 455) */,
|
|
0x08, /* fail */
|
|
/* pos 02a7: 357 */ 0xF6 /* 'v' -> */,
|
|
/* pos 02a8: 358 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02a9: 359 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02aa: 360 */ 0xBA /* ':' -> */,
|
|
/* pos 02ab: 361 */ 0x00, 0x34 /* - terminal marker 52 - */,
|
|
/* pos 02ad: 362 */ 0xAD /* '-' -> */,
|
|
/* pos 02ae: 363 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02af: 364 */ 0xEF /* 'o' -> */,
|
|
/* pos 02b0: 365 */ 0xEF /* 'o' -> */,
|
|
/* pos 02b1: 366 */ 0xEB /* 'k' -> */,
|
|
/* pos 02b2: 367 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02b3: 368 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02b4: 369 */ 0xBA /* ':' -> */,
|
|
/* pos 02b5: 370 */ 0x00, 0x35 /* - terminal marker 53 - */,
|
|
/* pos 02b7: 371 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02b8: 372 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02b9: 373 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02ba: 374 */ 0xF4 /* 't' -> */,
|
|
/* pos 02bb: 375 */ 0xAD /* '-' -> */,
|
|
/* pos 02bc: 376 */ 0xF4 /* 't' -> */,
|
|
/* pos 02bd: 377 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02be: 378 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02bf: 379 */ 0xEE /* 'n' -> */,
|
|
/* pos 02c0: 380 */ 0xF3 /* 's' -> */,
|
|
/* pos 02c1: 381 */ 0xF0 /* 'p' -> */,
|
|
/* pos 02c2: 382 */ 0xEF /* 'o' -> */,
|
|
/* pos 02c3: 383 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02c4: 384 */ 0xF4 /* 't' -> */,
|
|
/* pos 02c5: 385 */ 0xAD /* '-' -> */,
|
|
/* pos 02c6: 386 */ 0xF3 /* 's' -> */,
|
|
/* pos 02c7: 387 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02c8: 388 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02c9: 389 */ 0xF5 /* 'u' -> */,
|
|
/* pos 02ca: 390 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02cb: 391 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02cc: 392 */ 0xF4 /* 't' -> */,
|
|
/* pos 02cd: 393 */ 0xF9 /* 'y' -> */,
|
|
/* pos 02ce: 394 */ 0xBA /* ':' -> */,
|
|
/* pos 02cf: 395 */ 0x00, 0x36 /* - terminal marker 54 - */,
|
|
/* pos 02d1: 396 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02d2: 397 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02d3: 398 */ 0xAD /* '-' -> */,
|
|
/* pos 02d4: 399 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02d5: 400 */ 0xE7 /* 'g' -> */,
|
|
/* pos 02d6: 401 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02d7: 402 */ 0xEE /* 'n' -> */,
|
|
/* pos 02d8: 403 */ 0xF4 /* 't' -> */,
|
|
/* pos 02d9: 404 */ 0xBA /* ':' -> */,
|
|
/* pos 02da: 405 */ 0x00, 0x38 /* - terminal marker 56 - */,
|
|
/* pos 02dc: 406 */ 0xF8 /* 'x' -> */,
|
|
/* pos 02dd: 407 */ 0xF9 /* 'y' -> */,
|
|
/* pos 02de: 408 */ 0x20 /* ' ' */, 0x07, 0x00 /* (to 0x02E5 state 409) */,
|
|
0x2D /* '-' */, 0x86, 0x00 /* (to 0x0367 state 481) */,
|
|
0x08, /* fail */
|
|
/* pos 02e5: 409 */ 0x00, 0x3D /* - terminal marker 61 - */,
|
|
/* pos 02e7: 410 */ 0xAD /* '-' -> */,
|
|
/* pos 02e8: 411 */ 0x66 /* 'f' */, 0x0A, 0x00 /* (to 0x02F2 state 412) */,
|
|
0x72 /* 'r' */, 0xEC, 0x00 /* (to 0x03D7 state 570) */,
|
|
0x61 /* 'a' */, 0x9F, 0x01 /* (to 0x048D state 701) */,
|
|
0x08, /* fail */
|
|
/* pos 02f2: 412 */ 0xEF /* 'o' -> */,
|
|
/* pos 02f3: 413 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02f4: 414 */ 0xF7 /* 'w' -> */,
|
|
/* pos 02f5: 415 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02f6: 416 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02f7: 417 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02f8: 418 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02f9: 419 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02fa: 420 */ 0xAD /* '-' -> */,
|
|
/* pos 02fb: 421 */ 0xE6 /* 'f' -> */,
|
|
/* pos 02fc: 422 */ 0xEF /* 'o' -> */,
|
|
/* pos 02fd: 423 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02fe: 424 */ 0xBA /* ':' -> */,
|
|
/* pos 02ff: 425 */ 0x00, 0x3E /* - terminal marker 62 - */,
|
|
/* pos 0301: 426 */ 0x00, 0x3F /* - terminal marker 63 - */,
|
|
/* pos 0303: 427 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0304: 428 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0305: 429 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0306: 430 */ 0x00, 0x40 /* - terminal marker 64 - */,
|
|
/* pos 0308: 431 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x030F state 432) */,
|
|
0x72 /* 'r' */, 0x82, 0x00 /* (to 0x038D state 510) */,
|
|
0x08, /* fail */
|
|
/* pos 030f: 432 */ 0xBA /* ':' -> */,
|
|
/* pos 0310: 433 */ 0x00, 0x41 /* - terminal marker 65 - */,
|
|
/* pos 0312: 434 */ 0xF4 /* 't' -> */,
|
|
/* pos 0313: 435 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0314: 436 */ 0xEF /* 'o' -> */,
|
|
/* pos 0315: 437 */ 0xEE /* 'n' -> */,
|
|
/* pos 0316: 438 */ 0xF3 /* 's' -> */,
|
|
/* pos 0317: 439 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0318: 440 */ 0x00, 0x02 /* - terminal marker 2 - */,
|
|
/* pos 031a: 441 */ 0xE4 /* 'd' -> */,
|
|
/* pos 031b: 442 */ 0xE9 /* 'i' -> */,
|
|
/* pos 031c: 443 */ 0xE6 /* 'f' -> */,
|
|
/* pos 031d: 444 */ 0xE9 /* 'i' -> */,
|
|
/* pos 031e: 445 */ 0xE5 /* 'e' -> */,
|
|
/* pos 031f: 446 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0320: 447 */ 0xAD /* '-' -> */,
|
|
/* pos 0321: 448 */ 0xF3 /* 's' -> */,
|
|
/* pos 0322: 449 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0323: 450 */ 0xEE /* 'n' -> */,
|
|
/* pos 0324: 451 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0325: 452 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0326: 453 */ 0xBA /* ':' -> */,
|
|
/* pos 0327: 454 */ 0x00, 0x12 /* - terminal marker 18 - */,
|
|
/* pos 0329: 455 */ 0xAD /* '-' -> */,
|
|
/* pos 032a: 456 */ 0xF7 /* 'w' -> */,
|
|
/* pos 032b: 457 */ 0xE5 /* 'e' -> */,
|
|
/* pos 032c: 458 */ 0xE2 /* 'b' -> */,
|
|
/* pos 032d: 459 */ 0xF3 /* 's' -> */,
|
|
/* pos 032e: 460 */ 0xEF /* 'o' -> */,
|
|
/* pos 032f: 461 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0330: 462 */ 0xEB /* 'k' -> */,
|
|
/* pos 0331: 463 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0332: 464 */ 0xF4 /* 't' -> */,
|
|
/* pos 0333: 465 */ 0xAD /* '-' -> */,
|
|
/* pos 0334: 466 */ 0x6B /* 'k' */, 0x19, 0x00 /* (to 0x034D state 467) */,
|
|
0x64 /* 'd' */, 0xDD, 0x00 /* (to 0x0414 state 603) */,
|
|
0x65 /* 'e' */, 0xE1, 0x00 /* (to 0x041B state 609) */,
|
|
0x70 /* 'p' */, 0xF0, 0x00 /* (to 0x042D state 624) */,
|
|
0x61 /* 'a' */, 0xF7, 0x00 /* (to 0x0437 state 633) */,
|
|
0x6E /* 'n' */, 0xFC, 0x00 /* (to 0x043F state 640) */,
|
|
0x76 /* 'v' */, 0x03, 0x01 /* (to 0x0449 state 648) */,
|
|
0x6F /* 'o' */, 0x09, 0x01 /* (to 0x0452 state 656) */,
|
|
0x08, /* fail */
|
|
/* pos 034d: 467 */ 0xE5 /* 'e' -> */,
|
|
/* pos 034e: 468 */ 0xF9 /* 'y' -> */,
|
|
/* pos 034f: 469 */ 0x3A /* ':' */, 0x0A, 0x00 /* (to 0x0359 state 470) */,
|
|
0x31 /* '1' */, 0xD5, 0x00 /* (to 0x0427 state 620) */,
|
|
0x32 /* '2' */, 0xD5, 0x00 /* (to 0x042A state 622) */,
|
|
0x08, /* fail */
|
|
/* pos 0359: 470 */ 0x00, 0x16 /* - terminal marker 22 - */,
|
|
/* pos 035b: 471 */ 0xE1 /* 'a' -> */,
|
|
/* pos 035c: 472 */ 0xEE /* 'n' -> */,
|
|
/* pos 035d: 473 */ 0xE7 /* 'g' -> */,
|
|
/* pos 035e: 474 */ 0xE5 /* 'e' -> */,
|
|
/* pos 035f: 475 */ 0xF3 /* 's' -> */,
|
|
/* pos 0360: 476 */ 0xBA /* ':' -> */,
|
|
/* pos 0361: 477 */ 0x00, 0x1C /* - terminal marker 28 - */,
|
|
/* pos 0363: 478 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0364: 479 */ 0xBA /* ':' -> */,
|
|
/* pos 0365: 480 */ 0x00, 0x1E /* - terminal marker 30 - */,
|
|
/* pos 0367: 481 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0368: 482 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0369: 483 */ 0xF4 /* 't' -> */,
|
|
/* pos 036a: 484 */ 0xE8 /* 'h' -> */,
|
|
/* pos 036b: 485 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0372 state 486) */,
|
|
0x6F /* 'o' */, 0x0E, 0x00 /* (to 0x037C state 495) */,
|
|
0x08, /* fail */
|
|
/* pos 0372: 486 */ 0xEE /* 'n' -> */,
|
|
/* pos 0373: 487 */ 0xF4 /* 't' -> */,
|
|
/* pos 0374: 488 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0375: 489 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0376: 490 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0377: 491 */ 0xF4 /* 't' -> */,
|
|
/* pos 0378: 492 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0379: 493 */ 0xBA /* ':' -> */,
|
|
/* pos 037a: 494 */ 0x00, 0x30 /* - terminal marker 48 - */,
|
|
/* pos 037c: 495 */ 0xF2 /* 'r' -> */,
|
|
/* pos 037d: 496 */ 0xE9 /* 'i' -> */,
|
|
/* pos 037e: 497 */ 0xFA /* 'z' -> */,
|
|
/* pos 037f: 498 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0380: 499 */ 0xF4 /* 't' -> */,
|
|
/* pos 0381: 500 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0382: 501 */ 0xEF /* 'o' -> */,
|
|
/* pos 0383: 502 */ 0xEE /* 'n' -> */,
|
|
/* pos 0384: 503 */ 0xBA /* ':' -> */,
|
|
/* pos 0385: 504 */ 0x00, 0x31 /* - terminal marker 49 - */,
|
|
/* pos 0387: 505 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0388: 506 */ 0xF3 /* 's' -> */,
|
|
/* pos 0389: 507 */ 0xE8 /* 'h' -> */,
|
|
/* pos 038a: 508 */ 0xBA /* ':' -> */,
|
|
/* pos 038b: 509 */ 0x00, 0x32 /* - terminal marker 50 - */,
|
|
/* pos 038d: 510 */ 0xE1 /* 'a' -> */,
|
|
/* pos 038e: 511 */ 0xEE /* 'n' -> */,
|
|
/* pos 038f: 512 */ 0xF3 /* 's' -> */,
|
|
/* pos 0390: 513 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0391: 514 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0392: 515 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0393: 516 */ 0xAD /* '-' -> */,
|
|
/* pos 0394: 517 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0395: 518 */ 0xEE /* 'n' -> */,
|
|
/* pos 0396: 519 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0397: 520 */ 0xEF /* 'o' -> */,
|
|
/* pos 0398: 521 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0399: 522 */ 0xE9 /* 'i' -> */,
|
|
/* pos 039a: 523 */ 0xEE /* 'n' -> */,
|
|
/* pos 039b: 524 */ 0xE7 /* 'g' -> */,
|
|
/* pos 039c: 525 */ 0xBA /* ':' -> */,
|
|
/* pos 039d: 526 */ 0x00, 0x37 /* - terminal marker 55 - */,
|
|
/* pos 039f: 527 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x03A6 state 528) */,
|
|
0x69 /* 'i' */, 0x09, 0x00 /* (to 0x03AB state 532) */,
|
|
0x08, /* fail */
|
|
/* pos 03a6: 528 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03a7: 529 */ 0xF9 /* 'y' -> */,
|
|
/* pos 03a8: 530 */ 0xBA /* ':' -> */,
|
|
/* pos 03a9: 531 */ 0x00, 0x39 /* - terminal marker 57 - */,
|
|
/* pos 03ab: 532 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03ac: 533 */ 0xBA /* ':' -> */,
|
|
/* pos 03ad: 534 */ 0x00, 0x3A /* - terminal marker 58 - */,
|
|
/* pos 03af: 535 */ 0xF7 /* 'w' -> */,
|
|
/* pos 03b0: 536 */ 0xF7 /* 'w' -> */,
|
|
/* pos 03b1: 537 */ 0xAD /* '-' -> */,
|
|
/* pos 03b2: 538 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03b3: 539 */ 0xF5 /* 'u' -> */,
|
|
/* pos 03b4: 540 */ 0xF4 /* 't' -> */,
|
|
/* pos 03b5: 541 */ 0xE8 /* 'h' -> */,
|
|
/* pos 03b6: 542 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03b7: 543 */ 0xEE /* 'n' -> */,
|
|
/* pos 03b8: 544 */ 0xF4 /* 't' -> */,
|
|
/* pos 03b9: 545 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03ba: 546 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03bb: 547 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03bc: 548 */ 0xF4 /* 't' -> */,
|
|
/* pos 03bd: 549 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03be: 550 */ 0xBA /* ':' -> */,
|
|
/* pos 03bf: 551 */ 0x00, 0x3B /* - terminal marker 59 - */,
|
|
/* pos 03c1: 552 */ 0xF4 /* 't' -> */,
|
|
/* pos 03c2: 553 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03c3: 554 */ 0xE8 /* 'h' -> */,
|
|
/* pos 03c4: 555 */ 0x00, 0x3C /* - terminal marker 60 - */,
|
|
/* pos 03c6: 556 */ 0xF4 /* 't' -> */,
|
|
/* pos 03c7: 557 */ 0x00, 0x44 /* - terminal marker 68 - */,
|
|
/* pos 03c9: 558 */ 0xEC /* 'l' -> */,
|
|
/* pos 03ca: 559 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03cb: 560 */ 0xF4 /* 't' -> */,
|
|
/* pos 03cc: 561 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03cd: 562 */ 0x00, 0x45 /* - terminal marker 69 - */,
|
|
/* pos 03cf: 563 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03d0: 564 */ 0xAD /* '-' -> */,
|
|
/* pos 03d1: 565 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03d2: 566 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03d3: 567 */ 0xE7 /* 'g' -> */,
|
|
/* pos 03d4: 568 */ 0xF3 /* 's' -> */,
|
|
/* pos 03d5: 569 */ 0x00, 0x46 /* - terminal marker 70 - */,
|
|
/* pos 03d7: 570 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03d8: 571 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03d9: 572 */ 0xEC /* 'l' -> */,
|
|
/* pos 03da: 573 */ 0xAD /* '-' -> */,
|
|
/* pos 03db: 574 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03dc: 575 */ 0xF0 /* 'p' -> */,
|
|
/* pos 03dd: 576 */ 0xBA /* ':' -> */,
|
|
/* pos 03de: 577 */ 0x00, 0x48 /* - terminal marker 72 - */,
|
|
/* pos 03e0: 578 */ 0xB1 /* '1' -> */,
|
|
/* pos 03e1: 579 */ 0xAE /* '.' -> */,
|
|
/* pos 03e2: 580 */ 0x30 /* '0' */, 0x07, 0x00 /* (to 0x03E9 state 581) */,
|
|
0x31 /* '1' */, 0x61, 0x00 /* (to 0x0446 state 646) */,
|
|
0x08, /* fail */
|
|
/* pos 03e9: 581 */ 0xA0 /* ' ' -> */,
|
|
/* pos 03ea: 582 */ 0x00, 0x49 /* - terminal marker 73 - */,
|
|
/* pos 03ec: 583 */ 0xEC /* 'l' -> */,
|
|
/* pos 03ed: 584 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03ee: 585 */ 0xF9 /* 'y' -> */,
|
|
/* pos 03ef: 586 */ 0xAD /* '-' -> */,
|
|
/* pos 03f0: 587 */ 0xEE /* 'n' -> */,
|
|
/* pos 03f1: 588 */ 0xEF /* 'o' -> */,
|
|
/* pos 03f2: 589 */ 0xEE /* 'n' -> */,
|
|
/* pos 03f3: 590 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03f4: 591 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03f5: 592 */ 0xBA /* ':' -> */,
|
|
/* pos 03f6: 593 */ 0x00, 0x42 /* - terminal marker 66 - */,
|
|
/* pos 03f8: 594 */ 0x70 /* 'p' */, 0x0D, 0x00 /* (to 0x0405 state 595) */,
|
|
0x61 /* 'a' */, 0x5F, 0x00 /* (to 0x045A state 663) */,
|
|
0x6D /* 'm' */, 0x68, 0x00 /* (to 0x0466 state 673) */,
|
|
0x73 /* 's' */, 0x70, 0x00 /* (to 0x0471 state 682) */,
|
|
0x08, /* fail */
|
|
/* pos 0405: 595 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x040C state 596) */,
|
|
0x61 /* 'a' */, 0x65, 0x00 /* (to 0x046D state 679) */,
|
|
0x08, /* fail */
|
|
/* pos 040c: 596 */ 0xEF /* 'o' -> */,
|
|
/* pos 040d: 597 */ 0xF4 /* 't' -> */,
|
|
/* pos 040e: 598 */ 0xEF /* 'o' -> */,
|
|
/* pos 040f: 599 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0410: 600 */ 0xEF /* 'o' -> */,
|
|
/* pos 0411: 601 */ 0xEC /* 'l' -> */,
|
|
/* pos 0412: 602 */ 0x00, 0x43 /* - terminal marker 67 - */,
|
|
/* pos 0414: 603 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0415: 604 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0416: 605 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0417: 606 */ 0xF4 /* 't' -> */,
|
|
/* pos 0418: 607 */ 0xBA /* ':' -> */,
|
|
/* pos 0419: 608 */ 0x00, 0x07 /* - terminal marker 7 - */,
|
|
/* pos 041b: 609 */ 0xF8 /* 'x' -> */,
|
|
/* pos 041c: 610 */ 0xF4 /* 't' -> */,
|
|
/* pos 041d: 611 */ 0xE5 /* 'e' -> */,
|
|
/* pos 041e: 612 */ 0xEE /* 'n' -> */,
|
|
/* pos 041f: 613 */ 0xF3 /* 's' -> */,
|
|
/* pos 0420: 614 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0421: 615 */ 0xEF /* 'o' -> */,
|
|
/* pos 0422: 616 */ 0xEE /* 'n' -> */,
|
|
/* pos 0423: 617 */ 0xF3 /* 's' -> */,
|
|
/* pos 0424: 618 */ 0xBA /* ':' -> */,
|
|
/* pos 0425: 619 */ 0x00, 0x09 /* - terminal marker 9 - */,
|
|
/* pos 0427: 620 */ 0xBA /* ':' -> */,
|
|
/* pos 0428: 621 */ 0x00, 0x0A /* - terminal marker 10 - */,
|
|
/* pos 042a: 622 */ 0xBA /* ':' -> */,
|
|
/* pos 042b: 623 */ 0x00, 0x0B /* - terminal marker 11 - */,
|
|
/* pos 042d: 624 */ 0xF2 /* 'r' -> */,
|
|
/* pos 042e: 625 */ 0xEF /* 'o' -> */,
|
|
/* pos 042f: 626 */ 0xF4 /* 't' -> */,
|
|
/* pos 0430: 627 */ 0xEF /* 'o' -> */,
|
|
/* pos 0431: 628 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0432: 629 */ 0xEF /* 'o' -> */,
|
|
/* pos 0433: 630 */ 0xEC /* 'l' -> */,
|
|
/* pos 0434: 631 */ 0xBA /* ':' -> */,
|
|
/* pos 0435: 632 */ 0x00, 0x0C /* - terminal marker 12 - */,
|
|
/* pos 0437: 633 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0438: 634 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0439: 635 */ 0xE5 /* 'e' -> */,
|
|
/* pos 043a: 636 */ 0xF0 /* 'p' -> */,
|
|
/* pos 043b: 637 */ 0xF4 /* 't' -> */,
|
|
/* pos 043c: 638 */ 0xBA /* ':' -> */,
|
|
/* pos 043d: 639 */ 0x00, 0x0D /* - terminal marker 13 - */,
|
|
/* pos 043f: 640 */ 0xEF /* 'o' -> */,
|
|
/* pos 0440: 641 */ 0xEE /* 'n' -> */,
|
|
/* pos 0441: 642 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0442: 643 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0443: 644 */ 0xBA /* ':' -> */,
|
|
/* pos 0444: 645 */ 0x00, 0x0E /* - terminal marker 14 - */,
|
|
/* pos 0446: 646 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0447: 647 */ 0x00, 0x0F /* - terminal marker 15 - */,
|
|
/* pos 0449: 648 */ 0xE5 /* 'e' -> */,
|
|
/* pos 044a: 649 */ 0xF2 /* 'r' -> */,
|
|
/* pos 044b: 650 */ 0xF3 /* 's' -> */,
|
|
/* pos 044c: 651 */ 0xE9 /* 'i' -> */,
|
|
/* pos 044d: 652 */ 0xEF /* 'o' -> */,
|
|
/* pos 044e: 653 */ 0xEE /* 'n' -> */,
|
|
/* pos 044f: 654 */ 0xBA /* ':' -> */,
|
|
/* pos 0450: 655 */ 0x00, 0x20 /* - terminal marker 32 - */,
|
|
/* pos 0452: 656 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0453: 657 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0454: 658 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0455: 659 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0456: 660 */ 0xEE /* 'n' -> */,
|
|
/* pos 0457: 661 */ 0xBA /* ':' -> */,
|
|
/* pos 0458: 662 */ 0x00, 0x21 /* - terminal marker 33 - */,
|
|
/* pos 045a: 663 */ 0xF5 /* 'u' -> */,
|
|
/* pos 045b: 664 */ 0xF4 /* 't' -> */,
|
|
/* pos 045c: 665 */ 0xE8 /* 'h' -> */,
|
|
/* pos 045d: 666 */ 0xEF /* 'o' -> */,
|
|
/* pos 045e: 667 */ 0xF2 /* 'r' -> */,
|
|
/* pos 045f: 668 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0460: 669 */ 0xF4 /* 't' -> */,
|
|
/* pos 0461: 670 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0462: 671 */ 0x00, 0x22 /* - terminal marker 34 - */,
|
|
/* pos 0464: 672 */ 0x00, 0x08 /* - terminal marker 8 - */,
|
|
/* pos 0466: 673 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0467: 674 */ 0xF4 /* 't' -> */,
|
|
/* pos 0468: 675 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0469: 676 */ 0xEF /* 'o' -> */,
|
|
/* pos 046a: 677 */ 0xE4 /* 'd' -> */,
|
|
/* pos 046b: 678 */ 0x00, 0x17 /* - terminal marker 23 - */,
|
|
/* pos 046d: 679 */ 0xF4 /* 't' -> */,
|
|
/* pos 046e: 680 */ 0xE8 /* 'h' -> */,
|
|
/* pos 046f: 681 */ 0x00, 0x18 /* - terminal marker 24 - */,
|
|
/* pos 0471: 682 */ 0x63 /* 'c' */, 0x07, 0x00 /* (to 0x0478 state 683) */,
|
|
0x74 /* 't' */, 0x0A, 0x00 /* (to 0x047E state 688) */,
|
|
0x08, /* fail */
|
|
/* pos 0478: 683 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0479: 684 */ 0xE5 /* 'e' -> */,
|
|
/* pos 047a: 685 */ 0xED /* 'm' -> */,
|
|
/* pos 047b: 686 */ 0xE5 /* 'e' -> */,
|
|
/* pos 047c: 687 */ 0x00, 0x19 /* - terminal marker 25 - */,
|
|
/* pos 047e: 688 */ 0xE1 /* 'a' -> */,
|
|
/* pos 047f: 689 */ 0xF4 /* 't' -> */,
|
|
/* pos 0480: 690 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0481: 691 */ 0xF3 /* 's' -> */,
|
|
/* pos 0482: 692 */ 0x00, 0x1A /* - terminal marker 26 - */,
|
|
/* pos 0484: 693 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0485: 694 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0486: 695 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0487: 696 */ 0xF3 /* 's' -> */,
|
|
/* pos 0488: 697 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0489: 698 */ 0xF4 /* 't' -> */,
|
|
/* pos 048a: 699 */ 0xBA /* ':' -> */,
|
|
/* pos 048b: 700 */ 0x00, 0x1B /* - terminal marker 27 - */,
|
|
/* pos 048d: 701 */ 0xF5 /* 'u' -> */,
|
|
/* pos 048e: 702 */ 0xF4 /* 't' -> */,
|
|
/* pos 048f: 703 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0490: 704 */ 0xAD /* '-' -> */,
|
|
/* pos 0491: 705 */ 0xF4 /* 't' -> */,
|
|
/* pos 0492: 706 */ 0xEF /* 'o' -> */,
|
|
/* pos 0493: 707 */ 0xEB /* 'k' -> */,
|
|
/* pos 0494: 708 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0495: 709 */ 0xEE /* 'n' -> */,
|
|
/* pos 0496: 710 */ 0xBA /* ':' -> */,
|
|
/* pos 0497: 711 */ 0x00, 0x44 /* - terminal marker 68 - */,
|
|
/* total size 1177 bytes */
|
|
#endif
|
|
|
|
#if defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && !defined(LWS_ROLE_WS) && defined(LWS_ROLE_H2)
|
|
/* 0: 0: get */
|
|
/* 1: 1: post */
|
|
/* 2: 2: options */
|
|
/* 3: 3: host: */
|
|
/* 4: 4: connection: */
|
|
/* 5: 5: upgrade: */
|
|
/* 6: 6: origin: */
|
|
/* 7: 8:
|
|
*/
|
|
/* 8: 16: http2-settings: */
|
|
/* 9: 17: accept: */
|
|
/* 10: 18: access-control-request-headers: */
|
|
/* 11: 19: if-modified-since: */
|
|
/* 12: 20: if-none-match: */
|
|
/* 13: 21: accept-encoding: */
|
|
/* 14: 22: accept-language: */
|
|
/* 15: 23: pragma: */
|
|
/* 16: 24: cache-control: */
|
|
/* 17: 25: authorization: */
|
|
/* 18: 26: cookie: */
|
|
/* 19: 27: content-length: */
|
|
/* 20: 28: content-type: */
|
|
/* 21: 29: date: */
|
|
/* 22: 30: range: */
|
|
/* 23: 31: referer: */
|
|
/* 24: 32: sec-websocket-key: */
|
|
/* 25: 36: :method */
|
|
/* 26: 37: :path */
|
|
/* 27: 38: :scheme */
|
|
/* 28: 39: :status */
|
|
/* 29: 40: accept-charset: */
|
|
/* 30: 41: accept-ranges: */
|
|
/* 31: 42: access-control-allow-origin: */
|
|
/* 32: 43: age: */
|
|
/* 33: 44: allow: */
|
|
/* 34: 45: content-disposition: */
|
|
/* 35: 46: content-encoding: */
|
|
/* 36: 47: content-language: */
|
|
/* 37: 48: content-location: */
|
|
/* 38: 49: content-range: */
|
|
/* 39: 50: etag: */
|
|
/* 40: 51: expect: */
|
|
/* 41: 52: expires: */
|
|
/* 42: 53: from: */
|
|
/* 43: 54: if-match: */
|
|
/* 44: 55: if-range: */
|
|
/* 45: 56: if-unmodified-since: */
|
|
/* 46: 57: last-modified: */
|
|
/* 47: 58: link: */
|
|
/* 48: 59: location: */
|
|
/* 49: 60: max-forwards: */
|
|
/* 50: 61: proxy-authenticate: */
|
|
/* 51: 62: proxy-authorization: */
|
|
/* 52: 63: refresh: */
|
|
/* 53: 64: retry-after: */
|
|
/* 54: 65: server: */
|
|
/* 55: 66: set-cookie: */
|
|
/* 56: 67: strict-transport-security: */
|
|
/* 57: 68: transfer-encoding: */
|
|
/* 58: 69: user-agent: */
|
|
/* 59: 70: vary: */
|
|
/* 60: 71: via: */
|
|
/* 61: 72: www-authenticate: */
|
|
/* 62: 73: patch */
|
|
/* 63: 74: put */
|
|
/* 64: 75: delete */
|
|
/* 65: 76: uri-args */
|
|
/* 66: 77: proxy */
|
|
/* 67: 78: x-real-ip: */
|
|
/* 68: 79: http/1.0 */
|
|
/* 69: 80: x-forwarded-for: */
|
|
/* 70: 81: connect */
|
|
/* 71: 82: head */
|
|
/* 72: 83: te: */
|
|
/* 73: 84: replay-nonce: */
|
|
/* 74: 85: :protocol */
|
|
/* 75: 86: x-auth-token: */
|
|
/* 76: 87: */
|
|
/* pos 0000: 0 */ 0x67 /* 'g' */, 0x40, 0x00 /* (to 0x0040 state 1) */,
|
|
0x70 /* 'p' */, 0x42, 0x00 /* (to 0x0045 state 5) */,
|
|
0x68 /* 'h' */, 0x51, 0x00 /* (to 0x0057 state 10) */,
|
|
0x63 /* 'c' */, 0x5D, 0x00 /* (to 0x0066 state 15) */,
|
|
0x75 /* 'u' */, 0x7E, 0x00 /* (to 0x008A state 26) */,
|
|
0x6F /* 'o' */, 0x8D, 0x00 /* (to 0x009C state 34) */,
|
|
0x0D /* '.' */, 0x98, 0x00 /* (to 0x00AA state 41) */,
|
|
0x61 /* 'a' */, 0xAD, 0x00 /* (to 0x00C2 state 57) */,
|
|
0x69 /* 'i' */, 0xE2, 0x00 /* (to 0x00FA state 88) */,
|
|
0x64 /* 'd' */, 0x7D, 0x01 /* (to 0x0198 state 177) */,
|
|
0x72 /* 'r' */, 0x86, 0x01 /* (to 0x01A4 state 182) */,
|
|
0x65 /* 'e' */, 0xEB, 0x01 /* (to 0x020C state 256) */,
|
|
0x66 /* 'f' */, 0x07, 0x02 /* (to 0x022B state 272) */,
|
|
0x6C /* 'l' */, 0x30, 0x02 /* (to 0x0257 state 306) */,
|
|
0x6D /* 'm' */, 0x53, 0x02 /* (to 0x027D state 332) */,
|
|
0x73 /* 's' */, 0x69, 0x02 /* (to 0x0296 state 355) */,
|
|
0x78 /* 'x' */, 0xB7, 0x02 /* (to 0x02E7 state 410) */,
|
|
0x74 /* 't' */, 0xD5, 0x02 /* (to 0x0308 state 431) */,
|
|
0x76 /* 'v' */, 0x69, 0x03 /* (to 0x039F state 527) */,
|
|
0x77 /* 'w' */, 0x76, 0x03 /* (to 0x03AF state 535) */,
|
|
0x3A /* ':' */, 0xBC, 0x03 /* (to 0x03F8 state 594) */,
|
|
0x08, /* fail */
|
|
/* pos 0040: 1 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0041: 2 */ 0xF4 /* 't' -> */,
|
|
/* pos 0042: 3 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0043: 4 */ 0x00, 0x00 /* - terminal marker 0 - */,
|
|
/* pos 0045: 5 */ 0x6F /* 'o' */, 0x0D, 0x00 /* (to 0x0052 state 6) */,
|
|
0x72 /* 'r' */, 0xF6, 0x00 /* (to 0x013E state 123) */,
|
|
0x61 /* 'a' */, 0x76, 0x03 /* (to 0x03C1 state 552) */,
|
|
0x75 /* 'u' */, 0x78, 0x03 /* (to 0x03C6 state 556) */,
|
|
0x08, /* fail */
|
|
/* pos 0052: 6 */ 0xF3 /* 's' -> */,
|
|
/* pos 0053: 7 */ 0xF4 /* 't' -> */,
|
|
/* pos 0054: 8 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0055: 9 */ 0x00, 0x01 /* - terminal marker 1 - */,
|
|
/* pos 0057: 10 */ 0x6F /* 'o' */, 0x0A, 0x00 /* (to 0x0061 state 11) */,
|
|
0x74 /* 't' */, 0x53, 0x00 /* (to 0x00AD state 43) */,
|
|
0x65 /* 'e' */, 0xA6, 0x02 /* (to 0x0303 state 427) */,
|
|
0x08, /* fail */
|
|
/* pos 0061: 11 */ 0xF3 /* 's' -> */,
|
|
/* pos 0062: 12 */ 0xF4 /* 't' -> */,
|
|
/* pos 0063: 13 */ 0xBA /* ':' -> */,
|
|
/* pos 0064: 14 */ 0x00, 0x03 /* - terminal marker 3 - */,
|
|
/* pos 0066: 15 */ 0x6F /* 'o' */, 0x07, 0x00 /* (to 0x006D state 16) */,
|
|
0x61 /* 'a' */, 0xE2, 0x00 /* (to 0x014B state 129) */,
|
|
0x08, /* fail */
|
|
/* pos 006d: 16 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x0074 state 17) */,
|
|
0x6F /* 'o' */, 0xF7, 0x00 /* (to 0x0167 state 155) */,
|
|
0x08, /* fail */
|
|
/* pos 0074: 17 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x007B state 18) */,
|
|
0x74 /* 't' */, 0xF6, 0x00 /* (to 0x016D state 160) */,
|
|
0x08, /* fail */
|
|
/* pos 007b: 18 */ 0xE5 /* 'e' -> */,
|
|
/* pos 007c: 19 */ 0xE3 /* 'c' -> */,
|
|
/* pos 007d: 20 */ 0xF4 /* 't' -> */,
|
|
/* pos 007e: 21 */ 0x69 /* 'i' */, 0x07, 0x00 /* (to 0x0085 state 22) */,
|
|
0x20 /* ' ' */, 0x80, 0x02 /* (to 0x0301 state 426) */,
|
|
0x08, /* fail */
|
|
/* pos 0085: 22 */ 0xEF /* 'o' -> */,
|
|
/* pos 0086: 23 */ 0xEE /* 'n' -> */,
|
|
/* pos 0087: 24 */ 0xBA /* ':' -> */,
|
|
/* pos 0088: 25 */ 0x00, 0x04 /* - terminal marker 4 - */,
|
|
/* pos 008a: 26 */ 0x70 /* 'p' */, 0x0A, 0x00 /* (to 0x0094 state 27) */,
|
|
0x73 /* 's' */, 0x44, 0x02 /* (to 0x02D1 state 396) */,
|
|
0x72 /* 'r' */, 0x3F, 0x03 /* (to 0x03CF state 563) */,
|
|
0x08, /* fail */
|
|
/* pos 0094: 27 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0095: 28 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0096: 29 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0097: 30 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0098: 31 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0099: 32 */ 0xBA /* ':' -> */,
|
|
/* pos 009a: 33 */ 0x00, 0x05 /* - terminal marker 5 - */,
|
|
/* pos 009c: 34 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x00A3 state 35) */,
|
|
0x70 /* 'p' */, 0x73, 0x02 /* (to 0x0312 state 434) */,
|
|
0x08, /* fail */
|
|
/* pos 00a3: 35 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00a4: 36 */ 0xE7 /* 'g' -> */,
|
|
/* pos 00a5: 37 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00a6: 38 */ 0xEE /* 'n' -> */,
|
|
/* pos 00a7: 39 */ 0xBA /* ':' -> */,
|
|
/* pos 00a8: 40 */ 0x00, 0x06 /* - terminal marker 6 - */,
|
|
/* pos 00aa: 41 */ 0x8A /* '.' -> */,
|
|
/* pos 00ab: 42 */ 0x00, 0x07 /* - terminal marker 7 - */,
|
|
/* pos 00ad: 43 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ae: 44 */ 0xF0 /* 'p' -> */,
|
|
/* pos 00af: 45 */ 0x32 /* '2' */, 0x07, 0x00 /* (to 0x00B6 state 46) */,
|
|
0x2F /* '/' */, 0x2E, 0x03 /* (to 0x03E0 state 578) */,
|
|
0x08, /* fail */
|
|
/* pos 00b6: 46 */ 0xAD /* '-' -> */,
|
|
/* pos 00b7: 47 */ 0xF3 /* 's' -> */,
|
|
/* pos 00b8: 48 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00b9: 49 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ba: 50 */ 0xF4 /* 't' -> */,
|
|
/* pos 00bb: 51 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00bc: 52 */ 0xEE /* 'n' -> */,
|
|
/* pos 00bd: 53 */ 0xE7 /* 'g' -> */,
|
|
/* pos 00be: 54 */ 0xF3 /* 's' -> */,
|
|
/* pos 00bf: 55 */ 0xBA /* ':' -> */,
|
|
/* pos 00c0: 56 */ 0x00, 0x08 /* - terminal marker 8 - */,
|
|
/* pos 00c2: 57 */ 0x63 /* 'c' */, 0x0D, 0x00 /* (to 0x00CF state 58) */,
|
|
0x75 /* 'u' */, 0x94, 0x00 /* (to 0x0159 state 142) */,
|
|
0x6C /* 'l' */, 0x0E, 0x01 /* (to 0x01D6 state 208) */,
|
|
0x67 /* 'g' */, 0x98, 0x02 /* (to 0x0363 state 478) */,
|
|
0x08, /* fail */
|
|
/* pos 00cf: 58 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00d0: 59 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00d1: 60 */ 0x73 /* 's' */, 0x07, 0x00 /* (to 0x00D8 state 61) */,
|
|
0x70 /* 'p' */, 0x41, 0x00 /* (to 0x0115 state 102) */,
|
|
0x08, /* fail */
|
|
/* pos 00d8: 61 */ 0xF3 /* 's' -> */,
|
|
/* pos 00d9: 62 */ 0xAD /* '-' -> */,
|
|
/* pos 00da: 63 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00db: 64 */ 0xEF /* 'o' -> */,
|
|
/* pos 00dc: 65 */ 0xEE /* 'n' -> */,
|
|
/* pos 00dd: 66 */ 0xF4 /* 't' -> */,
|
|
/* pos 00de: 67 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00df: 68 */ 0xEF /* 'o' -> */,
|
|
/* pos 00e0: 69 */ 0xEC /* 'l' -> */,
|
|
/* pos 00e1: 70 */ 0xAD /* '-' -> */,
|
|
/* pos 00e2: 71 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x00E9 state 72) */,
|
|
0x61 /* 'a' */, 0xE3, 0x00 /* (to 0x01C8 state 195) */,
|
|
0x08, /* fail */
|
|
/* pos 00e9: 72 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00ea: 73 */ 0xF1 /* 'q' -> */,
|
|
/* pos 00eb: 74 */ 0xF5 /* 'u' -> */,
|
|
/* pos 00ec: 75 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00ed: 76 */ 0xF3 /* 's' -> */,
|
|
/* pos 00ee: 77 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ef: 78 */ 0xAD /* '-' -> */,
|
|
/* pos 00f0: 79 */ 0xE8 /* 'h' -> */,
|
|
/* pos 00f1: 80 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00f2: 81 */ 0xE1 /* 'a' -> */,
|
|
/* pos 00f3: 82 */ 0xE4 /* 'd' -> */,
|
|
/* pos 00f4: 83 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00f5: 84 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00f6: 85 */ 0xF3 /* 's' -> */,
|
|
/* pos 00f7: 86 */ 0xBA /* ':' -> */,
|
|
/* pos 00f8: 87 */ 0x00, 0x0A /* - terminal marker 10 - */,
|
|
/* pos 00fa: 88 */ 0xE6 /* 'f' -> */,
|
|
/* pos 00fb: 89 */ 0xAD /* '-' -> */,
|
|
/* pos 00fc: 90 */ 0x6E /* 'n' */, 0x0D, 0x00 /* (to 0x0109 state 91) */,
|
|
0x6D /* 'm' */, 0x32, 0x01 /* (to 0x0231 state 277) */,
|
|
0x72 /* 'r' */, 0x3C, 0x01 /* (to 0x023E state 283) */,
|
|
0x75 /* 'u' */, 0x40, 0x01 /* (to 0x0245 state 289) */,
|
|
0x08, /* fail */
|
|
/* pos 0109: 91 */ 0xEF /* 'o' -> */,
|
|
/* pos 010a: 92 */ 0xEE /* 'n' -> */,
|
|
/* pos 010b: 93 */ 0xE5 /* 'e' -> */,
|
|
/* pos 010c: 94 */ 0xAD /* '-' -> */,
|
|
/* pos 010d: 95 */ 0xED /* 'm' -> */,
|
|
/* pos 010e: 96 */ 0xE1 /* 'a' -> */,
|
|
/* pos 010f: 97 */ 0xF4 /* 't' -> */,
|
|
/* pos 0110: 98 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0111: 99 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0112: 100 */ 0xBA /* ':' -> */,
|
|
/* pos 0113: 101 */ 0x00, 0x0C /* - terminal marker 12 - */,
|
|
/* pos 0115: 102 */ 0xF4 /* 't' -> */,
|
|
/* pos 0116: 103 */ 0x2D /* '-' */, 0x07, 0x00 /* (to 0x011D state 104) */,
|
|
0x3A /* ':' */, 0x4B, 0x03 /* (to 0x0464 state 672) */,
|
|
0x08, /* fail */
|
|
/* pos 011d: 104 */ 0x65 /* 'e' */, 0x0D, 0x00 /* (to 0x012A state 105) */,
|
|
0x6C /* 'l' */, 0x14, 0x00 /* (to 0x0134 state 114) */,
|
|
0x72 /* 'r' */, 0x38, 0x02 /* (to 0x035B state 471) */,
|
|
0x63 /* 'c' */, 0x5E, 0x03 /* (to 0x0484 state 693) */,
|
|
0x08, /* fail */
|
|
/* pos 012a: 105 */ 0xEE /* 'n' -> */,
|
|
/* pos 012b: 106 */ 0xE3 /* 'c' -> */,
|
|
/* pos 012c: 107 */ 0xEF /* 'o' -> */,
|
|
/* pos 012d: 108 */ 0xE4 /* 'd' -> */,
|
|
/* pos 012e: 109 */ 0xE9 /* 'i' -> */,
|
|
/* pos 012f: 110 */ 0xEE /* 'n' -> */,
|
|
/* pos 0130: 111 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0131: 112 */ 0xBA /* ':' -> */,
|
|
/* pos 0132: 113 */ 0x00, 0x0D /* - terminal marker 13 - */,
|
|
/* pos 0134: 114 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0135: 115 */ 0xEE /* 'n' -> */,
|
|
/* pos 0136: 116 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0137: 117 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0138: 118 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0139: 119 */ 0xE7 /* 'g' -> */,
|
|
/* pos 013a: 120 */ 0xE5 /* 'e' -> */,
|
|
/* pos 013b: 121 */ 0xBA /* ':' -> */,
|
|
/* pos 013c: 122 */ 0x00, 0x0E /* - terminal marker 14 - */,
|
|
/* pos 013e: 123 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x0145 state 124) */,
|
|
0x6F /* 'o' */, 0x9B, 0x01 /* (to 0x02DC state 406) */,
|
|
0x08, /* fail */
|
|
/* pos 0145: 124 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0146: 125 */ 0xED /* 'm' -> */,
|
|
/* pos 0147: 126 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0148: 127 */ 0xBA /* ':' -> */,
|
|
/* pos 0149: 128 */ 0x00, 0x0F /* - terminal marker 15 - */,
|
|
/* pos 014b: 129 */ 0xE3 /* 'c' -> */,
|
|
/* pos 014c: 130 */ 0xE8 /* 'h' -> */,
|
|
/* pos 014d: 131 */ 0xE5 /* 'e' -> */,
|
|
/* pos 014e: 132 */ 0xAD /* '-' -> */,
|
|
/* pos 014f: 133 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0150: 134 */ 0xEF /* 'o' -> */,
|
|
/* pos 0151: 135 */ 0xEE /* 'n' -> */,
|
|
/* pos 0152: 136 */ 0xF4 /* 't' -> */,
|
|
/* pos 0153: 137 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0154: 138 */ 0xEF /* 'o' -> */,
|
|
/* pos 0155: 139 */ 0xEC /* 'l' -> */,
|
|
/* pos 0156: 140 */ 0xBA /* ':' -> */,
|
|
/* pos 0157: 141 */ 0x00, 0x10 /* - terminal marker 16 - */,
|
|
/* pos 0159: 142 */ 0xF4 /* 't' -> */,
|
|
/* pos 015a: 143 */ 0xE8 /* 'h' -> */,
|
|
/* pos 015b: 144 */ 0xEF /* 'o' -> */,
|
|
/* pos 015c: 145 */ 0xF2 /* 'r' -> */,
|
|
/* pos 015d: 146 */ 0xE9 /* 'i' -> */,
|
|
/* pos 015e: 147 */ 0xFA /* 'z' -> */,
|
|
/* pos 015f: 148 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0160: 149 */ 0xF4 /* 't' -> */,
|
|
/* pos 0161: 150 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0162: 151 */ 0xEF /* 'o' -> */,
|
|
/* pos 0163: 152 */ 0xEE /* 'n' -> */,
|
|
/* pos 0164: 153 */ 0xBA /* ':' -> */,
|
|
/* pos 0165: 154 */ 0x00, 0x11 /* - terminal marker 17 - */,
|
|
/* pos 0167: 155 */ 0xEB /* 'k' -> */,
|
|
/* pos 0168: 156 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0169: 157 */ 0xE5 /* 'e' -> */,
|
|
/* pos 016a: 158 */ 0xBA /* ':' -> */,
|
|
/* pos 016b: 159 */ 0x00, 0x12 /* - terminal marker 18 - */,
|
|
/* pos 016d: 160 */ 0xE5 /* 'e' -> */,
|
|
/* pos 016e: 161 */ 0xEE /* 'n' -> */,
|
|
/* pos 016f: 162 */ 0xF4 /* 't' -> */,
|
|
/* pos 0170: 163 */ 0xAD /* '-' -> */,
|
|
/* pos 0171: 164 */ 0x6C /* 'l' */, 0x10, 0x00 /* (to 0x0181 state 165) */,
|
|
0x74 /* 't' */, 0x1E, 0x00 /* (to 0x0192 state 172) */,
|
|
0x64 /* 'd' */, 0x65, 0x00 /* (to 0x01DC state 213) */,
|
|
0x65 /* 'e' */, 0x6F, 0x00 /* (to 0x01E9 state 225) */,
|
|
0x72 /* 'r' */, 0x88, 0x00 /* (to 0x0205 state 250) */,
|
|
0x08, /* fail */
|
|
/* pos 0181: 165 */ 0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x018B state 166) */,
|
|
0x61 /* 'a' */, 0x6F, 0x00 /* (to 0x01F3 state 234) */,
|
|
0x6F /* 'o' */, 0x75, 0x00 /* (to 0x01FC state 242) */,
|
|
0x08, /* fail */
|
|
/* pos 018b: 166 */ 0xEE /* 'n' -> */,
|
|
/* pos 018c: 167 */ 0xE7 /* 'g' -> */,
|
|
/* pos 018d: 168 */ 0xF4 /* 't' -> */,
|
|
/* pos 018e: 169 */ 0xE8 /* 'h' -> */,
|
|
/* pos 018f: 170 */ 0xBA /* ':' -> */,
|
|
/* pos 0190: 171 */ 0x00, 0x13 /* - terminal marker 19 - */,
|
|
/* pos 0192: 172 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0193: 173 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0194: 174 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0195: 175 */ 0xBA /* ':' -> */,
|
|
/* pos 0196: 176 */ 0x00, 0x14 /* - terminal marker 20 - */,
|
|
/* pos 0198: 177 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x019F state 178) */,
|
|
0x65 /* 'e' */, 0x2E, 0x02 /* (to 0x03C9 state 558) */,
|
|
0x08, /* fail */
|
|
/* pos 019f: 178 */ 0xF4 /* 't' -> */,
|
|
/* pos 01a0: 179 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01a1: 180 */ 0xBA /* ':' -> */,
|
|
/* pos 01a2: 181 */ 0x00, 0x15 /* - terminal marker 21 - */,
|
|
/* pos 01a4: 182 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x01AB state 183) */,
|
|
0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x01B1 state 188) */,
|
|
0x08, /* fail */
|
|
/* pos 01ab: 183 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ac: 184 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01ad: 185 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01ae: 186 */ 0xBA /* ':' -> */,
|
|
/* pos 01af: 187 */ 0x00, 0x16 /* - terminal marker 22 - */,
|
|
/* pos 01b1: 188 */ 0x66 /* 'f' */, 0x0A, 0x00 /* (to 0x01BB state 189) */,
|
|
0x74 /* 't' */, 0xD7, 0x00 /* (to 0x028B state 345) */,
|
|
0x70 /* 'p' */, 0x35, 0x02 /* (to 0x03EC state 583) */,
|
|
0x08, /* fail */
|
|
/* pos 01bb: 189 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x01C2 state 190) */,
|
|
0x72 /* 'r' */, 0xC9, 0x01 /* (to 0x0387 state 505) */,
|
|
0x08, /* fail */
|
|
/* pos 01c2: 190 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01c3: 191 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01c4: 192 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01c5: 193 */ 0xBA /* ':' -> */,
|
|
/* pos 01c6: 194 */ 0x00, 0x17 /* - terminal marker 23 - */,
|
|
/* pos 01c8: 195 */ 0xEC /* 'l' -> */,
|
|
/* pos 01c9: 196 */ 0xEC /* 'l' -> */,
|
|
/* pos 01ca: 197 */ 0xEF /* 'o' -> */,
|
|
/* pos 01cb: 198 */ 0xF7 /* 'w' -> */,
|
|
/* pos 01cc: 199 */ 0xAD /* '-' -> */,
|
|
/* pos 01cd: 200 */ 0xEF /* 'o' -> */,
|
|
/* pos 01ce: 201 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01cf: 202 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d0: 203 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01d1: 204 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d2: 205 */ 0xEE /* 'n' -> */,
|
|
/* pos 01d3: 206 */ 0xBA /* ':' -> */,
|
|
/* pos 01d4: 207 */ 0x00, 0x1F /* - terminal marker 31 - */,
|
|
/* pos 01d6: 208 */ 0xEC /* 'l' -> */,
|
|
/* pos 01d7: 209 */ 0xEF /* 'o' -> */,
|
|
/* pos 01d8: 210 */ 0xF7 /* 'w' -> */,
|
|
/* pos 01d9: 211 */ 0xBA /* ':' -> */,
|
|
/* pos 01da: 212 */ 0x00, 0x21 /* - terminal marker 33 - */,
|
|
/* pos 01dc: 213 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01dd: 214 */ 0xF3 /* 's' -> */,
|
|
/* pos 01de: 215 */ 0xF0 /* 'p' -> */,
|
|
/* pos 01df: 216 */ 0xEF /* 'o' -> */,
|
|
/* pos 01e0: 217 */ 0xF3 /* 's' -> */,
|
|
/* pos 01e1: 218 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01e2: 219 */ 0xF4 /* 't' -> */,
|
|
/* pos 01e3: 220 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01e4: 221 */ 0xEF /* 'o' -> */,
|
|
/* pos 01e5: 222 */ 0xEE /* 'n' -> */,
|
|
/* pos 01e6: 223 */ 0xBA /* ':' -> */,
|
|
/* pos 01e7: 224 */ 0x00, 0x22 /* - terminal marker 34 - */,
|
|
/* pos 01e9: 225 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ea: 226 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01eb: 227 */ 0xEF /* 'o' -> */,
|
|
/* pos 01ec: 228 */ 0xE4 /* 'd' -> */,
|
|
/* pos 01ed: 229 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01ee: 230 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ef: 231 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01f0: 232 */ 0xBA /* ':' -> */,
|
|
/* pos 01f1: 233 */ 0x00, 0x23 /* - terminal marker 35 - */,
|
|
/* pos 01f3: 234 */ 0xEE /* 'n' -> */,
|
|
/* pos 01f4: 235 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01f5: 236 */ 0xF5 /* 'u' -> */,
|
|
/* pos 01f6: 237 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01f7: 238 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01f8: 239 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01f9: 240 */ 0xBA /* ':' -> */,
|
|
/* pos 01fa: 241 */ 0x00, 0x24 /* - terminal marker 36 - */,
|
|
/* pos 01fc: 242 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01fd: 243 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01fe: 244 */ 0xF4 /* 't' -> */,
|
|
/* pos 01ff: 245 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0200: 246 */ 0xEF /* 'o' -> */,
|
|
/* pos 0201: 247 */ 0xEE /* 'n' -> */,
|
|
/* pos 0202: 248 */ 0xBA /* ':' -> */,
|
|
/* pos 0203: 249 */ 0x00, 0x25 /* - terminal marker 37 - */,
|
|
/* pos 0205: 250 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0206: 251 */ 0xEE /* 'n' -> */,
|
|
/* pos 0207: 252 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0208: 253 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0209: 254 */ 0xBA /* ':' -> */,
|
|
/* pos 020a: 255 */ 0x00, 0x26 /* - terminal marker 38 - */,
|
|
/* pos 020c: 256 */ 0x74 /* 't' */, 0x07, 0x00 /* (to 0x0213 state 257) */,
|
|
0x78 /* 'x' */, 0x09, 0x00 /* (to 0x0218 state 261) */,
|
|
0x08, /* fail */
|
|
/* pos 0213: 257 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0214: 258 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0215: 259 */ 0xBA /* ':' -> */,
|
|
/* pos 0216: 260 */ 0x00, 0x27 /* - terminal marker 39 - */,
|
|
/* pos 0218: 261 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0219: 262 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0220 state 263) */,
|
|
0x69 /* 'i' */, 0x09, 0x00 /* (to 0x0225 state 267) */,
|
|
0x08, /* fail */
|
|
/* pos 0220: 263 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0221: 264 */ 0xF4 /* 't' -> */,
|
|
/* pos 0222: 265 */ 0xBA /* ':' -> */,
|
|
/* pos 0223: 266 */ 0x00, 0x28 /* - terminal marker 40 - */,
|
|
/* pos 0225: 267 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0226: 268 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0227: 269 */ 0xF3 /* 's' -> */,
|
|
/* pos 0228: 270 */ 0xBA /* ':' -> */,
|
|
/* pos 0229: 271 */ 0x00, 0x29 /* - terminal marker 41 - */,
|
|
/* pos 022b: 272 */ 0xF2 /* 'r' -> */,
|
|
/* pos 022c: 273 */ 0xEF /* 'o' -> */,
|
|
/* pos 022d: 274 */ 0xED /* 'm' -> */,
|
|
/* pos 022e: 275 */ 0xBA /* ':' -> */,
|
|
/* pos 022f: 276 */ 0x00, 0x2A /* - terminal marker 42 - */,
|
|
/* pos 0231: 277 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x0238 state 278) */,
|
|
0x6F /* 'o' */, 0xE6, 0x00 /* (to 0x031A state 441) */,
|
|
0x08, /* fail */
|
|
/* pos 0238: 278 */ 0xF4 /* 't' -> */,
|
|
/* pos 0239: 279 */ 0xE3 /* 'c' -> */,
|
|
/* pos 023a: 280 */ 0xE8 /* 'h' -> */,
|
|
/* pos 023b: 281 */ 0xBA /* ':' -> */,
|
|
/* pos 023c: 282 */ 0x00, 0x2B /* - terminal marker 43 - */,
|
|
/* pos 023e: 283 */ 0xE1 /* 'a' -> */,
|
|
/* pos 023f: 284 */ 0xEE /* 'n' -> */,
|
|
/* pos 0240: 285 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0241: 286 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0242: 287 */ 0xBA /* ':' -> */,
|
|
/* pos 0243: 288 */ 0x00, 0x2C /* - terminal marker 44 - */,
|
|
/* pos 0245: 289 */ 0xEE /* 'n' -> */,
|
|
/* pos 0246: 290 */ 0xED /* 'm' -> */,
|
|
/* pos 0247: 291 */ 0xEF /* 'o' -> */,
|
|
/* pos 0248: 292 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0249: 293 */ 0xE9 /* 'i' -> */,
|
|
/* pos 024a: 294 */ 0xE6 /* 'f' -> */,
|
|
/* pos 024b: 295 */ 0xE9 /* 'i' -> */,
|
|
/* pos 024c: 296 */ 0xE5 /* 'e' -> */,
|
|
/* pos 024d: 297 */ 0xE4 /* 'd' -> */,
|
|
/* pos 024e: 298 */ 0xAD /* '-' -> */,
|
|
/* pos 024f: 299 */ 0xF3 /* 's' -> */,
|
|
/* pos 0250: 300 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0251: 301 */ 0xEE /* 'n' -> */,
|
|
/* pos 0252: 302 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0253: 303 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0254: 304 */ 0xBA /* ':' -> */,
|
|
/* pos 0255: 305 */ 0x00, 0x2D /* - terminal marker 45 - */,
|
|
/* pos 0257: 306 */ 0x61 /* 'a' */, 0x0A, 0x00 /* (to 0x0261 state 307) */,
|
|
0x69 /* 'i' */, 0x15, 0x00 /* (to 0x026F state 320) */,
|
|
0x6F /* 'o' */, 0x17, 0x00 /* (to 0x0274 state 324) */,
|
|
0x08, /* fail */
|
|
/* pos 0261: 307 */ 0xF3 /* 's' -> */,
|
|
/* pos 0262: 308 */ 0xF4 /* 't' -> */,
|
|
/* pos 0263: 309 */ 0xAD /* '-' -> */,
|
|
/* pos 0264: 310 */ 0xED /* 'm' -> */,
|
|
/* pos 0265: 311 */ 0xEF /* 'o' -> */,
|
|
/* pos 0266: 312 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0267: 313 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0268: 314 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0269: 315 */ 0xE9 /* 'i' -> */,
|
|
/* pos 026a: 316 */ 0xE5 /* 'e' -> */,
|
|
/* pos 026b: 317 */ 0xE4 /* 'd' -> */,
|
|
/* pos 026c: 318 */ 0xBA /* ':' -> */,
|
|
/* pos 026d: 319 */ 0x00, 0x2E /* - terminal marker 46 - */,
|
|
/* pos 026f: 320 */ 0xEE /* 'n' -> */,
|
|
/* pos 0270: 321 */ 0xEB /* 'k' -> */,
|
|
/* pos 0271: 322 */ 0xBA /* ':' -> */,
|
|
/* pos 0272: 323 */ 0x00, 0x2F /* - terminal marker 47 - */,
|
|
/* pos 0274: 324 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0275: 325 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0276: 326 */ 0xF4 /* 't' -> */,
|
|
/* pos 0277: 327 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0278: 328 */ 0xEF /* 'o' -> */,
|
|
/* pos 0279: 329 */ 0xEE /* 'n' -> */,
|
|
/* pos 027a: 330 */ 0xBA /* ':' -> */,
|
|
/* pos 027b: 331 */ 0x00, 0x30 /* - terminal marker 48 - */,
|
|
/* pos 027d: 332 */ 0xE1 /* 'a' -> */,
|
|
/* pos 027e: 333 */ 0xF8 /* 'x' -> */,
|
|
/* pos 027f: 334 */ 0xAD /* '-' -> */,
|
|
/* pos 0280: 335 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0281: 336 */ 0xEF /* 'o' -> */,
|
|
/* pos 0282: 337 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0283: 338 */ 0xF7 /* 'w' -> */,
|
|
/* pos 0284: 339 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0285: 340 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0286: 341 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0287: 342 */ 0xF3 /* 's' -> */,
|
|
/* pos 0288: 343 */ 0xBA /* ':' -> */,
|
|
/* pos 0289: 344 */ 0x00, 0x31 /* - terminal marker 49 - */,
|
|
/* pos 028b: 345 */ 0xF2 /* 'r' -> */,
|
|
/* pos 028c: 346 */ 0xF9 /* 'y' -> */,
|
|
/* pos 028d: 347 */ 0xAD /* '-' -> */,
|
|
/* pos 028e: 348 */ 0xE1 /* 'a' -> */,
|
|
/* pos 028f: 349 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0290: 350 */ 0xF4 /* 't' -> */,
|
|
/* pos 0291: 351 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0292: 352 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0293: 353 */ 0xBA /* ':' -> */,
|
|
/* pos 0294: 354 */ 0x00, 0x35 /* - terminal marker 53 - */,
|
|
/* pos 0296: 355 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x029D state 356) */,
|
|
0x74 /* 't' */, 0x1E, 0x00 /* (to 0x02B7 state 371) */,
|
|
0x08, /* fail */
|
|
/* pos 029d: 356 */ 0x72 /* 'r' */, 0x0A, 0x00 /* (to 0x02A7 state 357) */,
|
|
0x74 /* 't' */, 0x0D, 0x00 /* (to 0x02AD state 362) */,
|
|
0x63 /* 'c' */, 0x86, 0x00 /* (to 0x0329 state 455) */,
|
|
0x08, /* fail */
|
|
/* pos 02a7: 357 */ 0xF6 /* 'v' -> */,
|
|
/* pos 02a8: 358 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02a9: 359 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02aa: 360 */ 0xBA /* ':' -> */,
|
|
/* pos 02ab: 361 */ 0x00, 0x36 /* - terminal marker 54 - */,
|
|
/* pos 02ad: 362 */ 0xAD /* '-' -> */,
|
|
/* pos 02ae: 363 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02af: 364 */ 0xEF /* 'o' -> */,
|
|
/* pos 02b0: 365 */ 0xEF /* 'o' -> */,
|
|
/* pos 02b1: 366 */ 0xEB /* 'k' -> */,
|
|
/* pos 02b2: 367 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02b3: 368 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02b4: 369 */ 0xBA /* ':' -> */,
|
|
/* pos 02b5: 370 */ 0x00, 0x37 /* - terminal marker 55 - */,
|
|
/* pos 02b7: 371 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02b8: 372 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02b9: 373 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02ba: 374 */ 0xF4 /* 't' -> */,
|
|
/* pos 02bb: 375 */ 0xAD /* '-' -> */,
|
|
/* pos 02bc: 376 */ 0xF4 /* 't' -> */,
|
|
/* pos 02bd: 377 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02be: 378 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02bf: 379 */ 0xEE /* 'n' -> */,
|
|
/* pos 02c0: 380 */ 0xF3 /* 's' -> */,
|
|
/* pos 02c1: 381 */ 0xF0 /* 'p' -> */,
|
|
/* pos 02c2: 382 */ 0xEF /* 'o' -> */,
|
|
/* pos 02c3: 383 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02c4: 384 */ 0xF4 /* 't' -> */,
|
|
/* pos 02c5: 385 */ 0xAD /* '-' -> */,
|
|
/* pos 02c6: 386 */ 0xF3 /* 's' -> */,
|
|
/* pos 02c7: 387 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02c8: 388 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02c9: 389 */ 0xF5 /* 'u' -> */,
|
|
/* pos 02ca: 390 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02cb: 391 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02cc: 392 */ 0xF4 /* 't' -> */,
|
|
/* pos 02cd: 393 */ 0xF9 /* 'y' -> */,
|
|
/* pos 02ce: 394 */ 0xBA /* ':' -> */,
|
|
/* pos 02cf: 395 */ 0x00, 0x38 /* - terminal marker 56 - */,
|
|
/* pos 02d1: 396 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02d2: 397 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02d3: 398 */ 0xAD /* '-' -> */,
|
|
/* pos 02d4: 399 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02d5: 400 */ 0xE7 /* 'g' -> */,
|
|
/* pos 02d6: 401 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02d7: 402 */ 0xEE /* 'n' -> */,
|
|
/* pos 02d8: 403 */ 0xF4 /* 't' -> */,
|
|
/* pos 02d9: 404 */ 0xBA /* ':' -> */,
|
|
/* pos 02da: 405 */ 0x00, 0x3A /* - terminal marker 58 - */,
|
|
/* pos 02dc: 406 */ 0xF8 /* 'x' -> */,
|
|
/* pos 02dd: 407 */ 0xF9 /* 'y' -> */,
|
|
/* pos 02de: 408 */ 0x20 /* ' ' */, 0x07, 0x00 /* (to 0x02E5 state 409) */,
|
|
0x2D /* '-' */, 0x86, 0x00 /* (to 0x0367 state 481) */,
|
|
0x08, /* fail */
|
|
/* pos 02e5: 409 */ 0x00, 0x42 /* - terminal marker 66 - */,
|
|
/* pos 02e7: 410 */ 0xAD /* '-' -> */,
|
|
/* pos 02e8: 411 */ 0x66 /* 'f' */, 0x0A, 0x00 /* (to 0x02F2 state 412) */,
|
|
0x72 /* 'r' */, 0xEC, 0x00 /* (to 0x03D7 state 570) */,
|
|
0x61 /* 'a' */, 0x9F, 0x01 /* (to 0x048D state 701) */,
|
|
0x08, /* fail */
|
|
/* pos 02f2: 412 */ 0xEF /* 'o' -> */,
|
|
/* pos 02f3: 413 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02f4: 414 */ 0xF7 /* 'w' -> */,
|
|
/* pos 02f5: 415 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02f6: 416 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02f7: 417 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02f8: 418 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02f9: 419 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02fa: 420 */ 0xAD /* '-' -> */,
|
|
/* pos 02fb: 421 */ 0xE6 /* 'f' -> */,
|
|
/* pos 02fc: 422 */ 0xEF /* 'o' -> */,
|
|
/* pos 02fd: 423 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02fe: 424 */ 0xBA /* ':' -> */,
|
|
/* pos 02ff: 425 */ 0x00, 0x45 /* - terminal marker 69 - */,
|
|
/* pos 0301: 426 */ 0x00, 0x46 /* - terminal marker 70 - */,
|
|
/* pos 0303: 427 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0304: 428 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0305: 429 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0306: 430 */ 0x00, 0x47 /* - terminal marker 71 - */,
|
|
/* pos 0308: 431 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x030F state 432) */,
|
|
0x72 /* 'r' */, 0x82, 0x00 /* (to 0x038D state 510) */,
|
|
0x08, /* fail */
|
|
/* pos 030f: 432 */ 0xBA /* ':' -> */,
|
|
/* pos 0310: 433 */ 0x00, 0x48 /* - terminal marker 72 - */,
|
|
/* pos 0312: 434 */ 0xF4 /* 't' -> */,
|
|
/* pos 0313: 435 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0314: 436 */ 0xEF /* 'o' -> */,
|
|
/* pos 0315: 437 */ 0xEE /* 'n' -> */,
|
|
/* pos 0316: 438 */ 0xF3 /* 's' -> */,
|
|
/* pos 0317: 439 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0318: 440 */ 0x00, 0x02 /* - terminal marker 2 - */,
|
|
/* pos 031a: 441 */ 0xE4 /* 'd' -> */,
|
|
/* pos 031b: 442 */ 0xE9 /* 'i' -> */,
|
|
/* pos 031c: 443 */ 0xE6 /* 'f' -> */,
|
|
/* pos 031d: 444 */ 0xE9 /* 'i' -> */,
|
|
/* pos 031e: 445 */ 0xE5 /* 'e' -> */,
|
|
/* pos 031f: 446 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0320: 447 */ 0xAD /* '-' -> */,
|
|
/* pos 0321: 448 */ 0xF3 /* 's' -> */,
|
|
/* pos 0322: 449 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0323: 450 */ 0xEE /* 'n' -> */,
|
|
/* pos 0324: 451 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0325: 452 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0326: 453 */ 0xBA /* ':' -> */,
|
|
/* pos 0327: 454 */ 0x00, 0x0B /* - terminal marker 11 - */,
|
|
/* pos 0329: 455 */ 0xAD /* '-' -> */,
|
|
/* pos 032a: 456 */ 0xF7 /* 'w' -> */,
|
|
/* pos 032b: 457 */ 0xE5 /* 'e' -> */,
|
|
/* pos 032c: 458 */ 0xE2 /* 'b' -> */,
|
|
/* pos 032d: 459 */ 0xF3 /* 's' -> */,
|
|
/* pos 032e: 460 */ 0xEF /* 'o' -> */,
|
|
/* pos 032f: 461 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0330: 462 */ 0xEB /* 'k' -> */,
|
|
/* pos 0331: 463 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0332: 464 */ 0xF4 /* 't' -> */,
|
|
/* pos 0333: 465 */ 0xAD /* '-' -> */,
|
|
/* pos 0334: 466 */ 0x6B /* 'k' */, 0x19, 0x00 /* (to 0x034D state 467) */,
|
|
0x64 /* 'd' */, 0xDD, 0x00 /* (to 0x0414 state 603) */,
|
|
0x65 /* 'e' */, 0xE1, 0x00 /* (to 0x041B state 609) */,
|
|
0x70 /* 'p' */, 0xF0, 0x00 /* (to 0x042D state 624) */,
|
|
0x61 /* 'a' */, 0xF7, 0x00 /* (to 0x0437 state 633) */,
|
|
0x6E /* 'n' */, 0xFC, 0x00 /* (to 0x043F state 640) */,
|
|
0x76 /* 'v' */, 0x03, 0x01 /* (to 0x0449 state 648) */,
|
|
0x6F /* 'o' */, 0x09, 0x01 /* (to 0x0452 state 656) */,
|
|
0x08, /* fail */
|
|
/* pos 034d: 467 */ 0xE5 /* 'e' -> */,
|
|
/* pos 034e: 468 */ 0xF9 /* 'y' -> */,
|
|
/* pos 034f: 469 */ 0x3A /* ':' */, 0x0A, 0x00 /* (to 0x0359 state 470) */,
|
|
0x31 /* '1' */, 0xD5, 0x00 /* (to 0x0427 state 620) */,
|
|
0x32 /* '2' */, 0xD5, 0x00 /* (to 0x042A state 622) */,
|
|
0x08, /* fail */
|
|
/* pos 0359: 470 */ 0x00, 0x18 /* - terminal marker 24 - */,
|
|
/* pos 035b: 471 */ 0xE1 /* 'a' -> */,
|
|
/* pos 035c: 472 */ 0xEE /* 'n' -> */,
|
|
/* pos 035d: 473 */ 0xE7 /* 'g' -> */,
|
|
/* pos 035e: 474 */ 0xE5 /* 'e' -> */,
|
|
/* pos 035f: 475 */ 0xF3 /* 's' -> */,
|
|
/* pos 0360: 476 */ 0xBA /* ':' -> */,
|
|
/* pos 0361: 477 */ 0x00, 0x1E /* - terminal marker 30 - */,
|
|
/* pos 0363: 478 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0364: 479 */ 0xBA /* ':' -> */,
|
|
/* pos 0365: 480 */ 0x00, 0x20 /* - terminal marker 32 - */,
|
|
/* pos 0367: 481 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0368: 482 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0369: 483 */ 0xF4 /* 't' -> */,
|
|
/* pos 036a: 484 */ 0xE8 /* 'h' -> */,
|
|
/* pos 036b: 485 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0372 state 486) */,
|
|
0x6F /* 'o' */, 0x0E, 0x00 /* (to 0x037C state 495) */,
|
|
0x08, /* fail */
|
|
/* pos 0372: 486 */ 0xEE /* 'n' -> */,
|
|
/* pos 0373: 487 */ 0xF4 /* 't' -> */,
|
|
/* pos 0374: 488 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0375: 489 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0376: 490 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0377: 491 */ 0xF4 /* 't' -> */,
|
|
/* pos 0378: 492 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0379: 493 */ 0xBA /* ':' -> */,
|
|
/* pos 037a: 494 */ 0x00, 0x32 /* - terminal marker 50 - */,
|
|
/* pos 037c: 495 */ 0xF2 /* 'r' -> */,
|
|
/* pos 037d: 496 */ 0xE9 /* 'i' -> */,
|
|
/* pos 037e: 497 */ 0xFA /* 'z' -> */,
|
|
/* pos 037f: 498 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0380: 499 */ 0xF4 /* 't' -> */,
|
|
/* pos 0381: 500 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0382: 501 */ 0xEF /* 'o' -> */,
|
|
/* pos 0383: 502 */ 0xEE /* 'n' -> */,
|
|
/* pos 0384: 503 */ 0xBA /* ':' -> */,
|
|
/* pos 0385: 504 */ 0x00, 0x33 /* - terminal marker 51 - */,
|
|
/* pos 0387: 505 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0388: 506 */ 0xF3 /* 's' -> */,
|
|
/* pos 0389: 507 */ 0xE8 /* 'h' -> */,
|
|
/* pos 038a: 508 */ 0xBA /* ':' -> */,
|
|
/* pos 038b: 509 */ 0x00, 0x34 /* - terminal marker 52 - */,
|
|
/* pos 038d: 510 */ 0xE1 /* 'a' -> */,
|
|
/* pos 038e: 511 */ 0xEE /* 'n' -> */,
|
|
/* pos 038f: 512 */ 0xF3 /* 's' -> */,
|
|
/* pos 0390: 513 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0391: 514 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0392: 515 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0393: 516 */ 0xAD /* '-' -> */,
|
|
/* pos 0394: 517 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0395: 518 */ 0xEE /* 'n' -> */,
|
|
/* pos 0396: 519 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0397: 520 */ 0xEF /* 'o' -> */,
|
|
/* pos 0398: 521 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0399: 522 */ 0xE9 /* 'i' -> */,
|
|
/* pos 039a: 523 */ 0xEE /* 'n' -> */,
|
|
/* pos 039b: 524 */ 0xE7 /* 'g' -> */,
|
|
/* pos 039c: 525 */ 0xBA /* ':' -> */,
|
|
/* pos 039d: 526 */ 0x00, 0x39 /* - terminal marker 57 - */,
|
|
/* pos 039f: 527 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x03A6 state 528) */,
|
|
0x69 /* 'i' */, 0x09, 0x00 /* (to 0x03AB state 532) */,
|
|
0x08, /* fail */
|
|
/* pos 03a6: 528 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03a7: 529 */ 0xF9 /* 'y' -> */,
|
|
/* pos 03a8: 530 */ 0xBA /* ':' -> */,
|
|
/* pos 03a9: 531 */ 0x00, 0x3B /* - terminal marker 59 - */,
|
|
/* pos 03ab: 532 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03ac: 533 */ 0xBA /* ':' -> */,
|
|
/* pos 03ad: 534 */ 0x00, 0x3C /* - terminal marker 60 - */,
|
|
/* pos 03af: 535 */ 0xF7 /* 'w' -> */,
|
|
/* pos 03b0: 536 */ 0xF7 /* 'w' -> */,
|
|
/* pos 03b1: 537 */ 0xAD /* '-' -> */,
|
|
/* pos 03b2: 538 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03b3: 539 */ 0xF5 /* 'u' -> */,
|
|
/* pos 03b4: 540 */ 0xF4 /* 't' -> */,
|
|
/* pos 03b5: 541 */ 0xE8 /* 'h' -> */,
|
|
/* pos 03b6: 542 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03b7: 543 */ 0xEE /* 'n' -> */,
|
|
/* pos 03b8: 544 */ 0xF4 /* 't' -> */,
|
|
/* pos 03b9: 545 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03ba: 546 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03bb: 547 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03bc: 548 */ 0xF4 /* 't' -> */,
|
|
/* pos 03bd: 549 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03be: 550 */ 0xBA /* ':' -> */,
|
|
/* pos 03bf: 551 */ 0x00, 0x3D /* - terminal marker 61 - */,
|
|
/* pos 03c1: 552 */ 0xF4 /* 't' -> */,
|
|
/* pos 03c2: 553 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03c3: 554 */ 0xE8 /* 'h' -> */,
|
|
/* pos 03c4: 555 */ 0x00, 0x3E /* - terminal marker 62 - */,
|
|
/* pos 03c6: 556 */ 0xF4 /* 't' -> */,
|
|
/* pos 03c7: 557 */ 0x00, 0x3F /* - terminal marker 63 - */,
|
|
/* pos 03c9: 558 */ 0xEC /* 'l' -> */,
|
|
/* pos 03ca: 559 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03cb: 560 */ 0xF4 /* 't' -> */,
|
|
/* pos 03cc: 561 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03cd: 562 */ 0x00, 0x40 /* - terminal marker 64 - */,
|
|
/* pos 03cf: 563 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03d0: 564 */ 0xAD /* '-' -> */,
|
|
/* pos 03d1: 565 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03d2: 566 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03d3: 567 */ 0xE7 /* 'g' -> */,
|
|
/* pos 03d4: 568 */ 0xF3 /* 's' -> */,
|
|
/* pos 03d5: 569 */ 0x00, 0x41 /* - terminal marker 65 - */,
|
|
/* pos 03d7: 570 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03d8: 571 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03d9: 572 */ 0xEC /* 'l' -> */,
|
|
/* pos 03da: 573 */ 0xAD /* '-' -> */,
|
|
/* pos 03db: 574 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03dc: 575 */ 0xF0 /* 'p' -> */,
|
|
/* pos 03dd: 576 */ 0xBA /* ':' -> */,
|
|
/* pos 03de: 577 */ 0x00, 0x43 /* - terminal marker 67 - */,
|
|
/* pos 03e0: 578 */ 0xB1 /* '1' -> */,
|
|
/* pos 03e1: 579 */ 0xAE /* '.' -> */,
|
|
/* pos 03e2: 580 */ 0x30 /* '0' */, 0x07, 0x00 /* (to 0x03E9 state 581) */,
|
|
0x31 /* '1' */, 0x61, 0x00 /* (to 0x0446 state 646) */,
|
|
0x08, /* fail */
|
|
/* pos 03e9: 581 */ 0xA0 /* ' ' -> */,
|
|
/* pos 03ea: 582 */ 0x00, 0x44 /* - terminal marker 68 - */,
|
|
/* pos 03ec: 583 */ 0xEC /* 'l' -> */,
|
|
/* pos 03ed: 584 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03ee: 585 */ 0xF9 /* 'y' -> */,
|
|
/* pos 03ef: 586 */ 0xAD /* '-' -> */,
|
|
/* pos 03f0: 587 */ 0xEE /* 'n' -> */,
|
|
/* pos 03f1: 588 */ 0xEF /* 'o' -> */,
|
|
/* pos 03f2: 589 */ 0xEE /* 'n' -> */,
|
|
/* pos 03f3: 590 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03f4: 591 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03f5: 592 */ 0xBA /* ':' -> */,
|
|
/* pos 03f6: 593 */ 0x00, 0x49 /* - terminal marker 73 - */,
|
|
/* pos 03f8: 594 */ 0x70 /* 'p' */, 0x0D, 0x00 /* (to 0x0405 state 595) */,
|
|
0x61 /* 'a' */, 0x5F, 0x00 /* (to 0x045A state 663) */,
|
|
0x6D /* 'm' */, 0x68, 0x00 /* (to 0x0466 state 673) */,
|
|
0x73 /* 's' */, 0x70, 0x00 /* (to 0x0471 state 682) */,
|
|
0x08, /* fail */
|
|
/* pos 0405: 595 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x040C state 596) */,
|
|
0x61 /* 'a' */, 0x65, 0x00 /* (to 0x046D state 679) */,
|
|
0x08, /* fail */
|
|
/* pos 040c: 596 */ 0xEF /* 'o' -> */,
|
|
/* pos 040d: 597 */ 0xF4 /* 't' -> */,
|
|
/* pos 040e: 598 */ 0xEF /* 'o' -> */,
|
|
/* pos 040f: 599 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0410: 600 */ 0xEF /* 'o' -> */,
|
|
/* pos 0411: 601 */ 0xEC /* 'l' -> */,
|
|
/* pos 0412: 602 */ 0x00, 0x4A /* - terminal marker 74 - */,
|
|
/* pos 0414: 603 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0415: 604 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0416: 605 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0417: 606 */ 0xF4 /* 't' -> */,
|
|
/* pos 0418: 607 */ 0xBA /* ':' -> */,
|
|
/* pos 0419: 608 */ 0x00, 0x07 /* - terminal marker 7 - */,
|
|
/* pos 041b: 609 */ 0xF8 /* 'x' -> */,
|
|
/* pos 041c: 610 */ 0xF4 /* 't' -> */,
|
|
/* pos 041d: 611 */ 0xE5 /* 'e' -> */,
|
|
/* pos 041e: 612 */ 0xEE /* 'n' -> */,
|
|
/* pos 041f: 613 */ 0xF3 /* 's' -> */,
|
|
/* pos 0420: 614 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0421: 615 */ 0xEF /* 'o' -> */,
|
|
/* pos 0422: 616 */ 0xEE /* 'n' -> */,
|
|
/* pos 0423: 617 */ 0xF3 /* 's' -> */,
|
|
/* pos 0424: 618 */ 0xBA /* ':' -> */,
|
|
/* pos 0425: 619 */ 0x00, 0x09 /* - terminal marker 9 - */,
|
|
/* pos 0427: 620 */ 0xBA /* ':' -> */,
|
|
/* pos 0428: 621 */ 0x00, 0x0A /* - terminal marker 10 - */,
|
|
/* pos 042a: 622 */ 0xBA /* ':' -> */,
|
|
/* pos 042b: 623 */ 0x00, 0x0B /* - terminal marker 11 - */,
|
|
/* pos 042d: 624 */ 0xF2 /* 'r' -> */,
|
|
/* pos 042e: 625 */ 0xEF /* 'o' -> */,
|
|
/* pos 042f: 626 */ 0xF4 /* 't' -> */,
|
|
/* pos 0430: 627 */ 0xEF /* 'o' -> */,
|
|
/* pos 0431: 628 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0432: 629 */ 0xEF /* 'o' -> */,
|
|
/* pos 0433: 630 */ 0xEC /* 'l' -> */,
|
|
/* pos 0434: 631 */ 0xBA /* ':' -> */,
|
|
/* pos 0435: 632 */ 0x00, 0x0C /* - terminal marker 12 - */,
|
|
/* pos 0437: 633 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0438: 634 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0439: 635 */ 0xE5 /* 'e' -> */,
|
|
/* pos 043a: 636 */ 0xF0 /* 'p' -> */,
|
|
/* pos 043b: 637 */ 0xF4 /* 't' -> */,
|
|
/* pos 043c: 638 */ 0xBA /* ':' -> */,
|
|
/* pos 043d: 639 */ 0x00, 0x0D /* - terminal marker 13 - */,
|
|
/* pos 043f: 640 */ 0xEF /* 'o' -> */,
|
|
/* pos 0440: 641 */ 0xEE /* 'n' -> */,
|
|
/* pos 0441: 642 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0442: 643 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0443: 644 */ 0xBA /* ':' -> */,
|
|
/* pos 0444: 645 */ 0x00, 0x0E /* - terminal marker 14 - */,
|
|
/* pos 0446: 646 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0447: 647 */ 0x00, 0x0F /* - terminal marker 15 - */,
|
|
/* pos 0449: 648 */ 0xE5 /* 'e' -> */,
|
|
/* pos 044a: 649 */ 0xF2 /* 'r' -> */,
|
|
/* pos 044b: 650 */ 0xF3 /* 's' -> */,
|
|
/* pos 044c: 651 */ 0xE9 /* 'i' -> */,
|
|
/* pos 044d: 652 */ 0xEF /* 'o' -> */,
|
|
/* pos 044e: 653 */ 0xEE /* 'n' -> */,
|
|
/* pos 044f: 654 */ 0xBA /* ':' -> */,
|
|
/* pos 0450: 655 */ 0x00, 0x20 /* - terminal marker 32 - */,
|
|
/* pos 0452: 656 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0453: 657 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0454: 658 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0455: 659 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0456: 660 */ 0xEE /* 'n' -> */,
|
|
/* pos 0457: 661 */ 0xBA /* ':' -> */,
|
|
/* pos 0458: 662 */ 0x00, 0x21 /* - terminal marker 33 - */,
|
|
/* pos 045a: 663 */ 0xF5 /* 'u' -> */,
|
|
/* pos 045b: 664 */ 0xF4 /* 't' -> */,
|
|
/* pos 045c: 665 */ 0xE8 /* 'h' -> */,
|
|
/* pos 045d: 666 */ 0xEF /* 'o' -> */,
|
|
/* pos 045e: 667 */ 0xF2 /* 'r' -> */,
|
|
/* pos 045f: 668 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0460: 669 */ 0xF4 /* 't' -> */,
|
|
/* pos 0461: 670 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0462: 671 */ 0x00, 0x22 /* - terminal marker 34 - */,
|
|
/* pos 0464: 672 */ 0x00, 0x09 /* - terminal marker 9 - */,
|
|
/* pos 0466: 673 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0467: 674 */ 0xF4 /* 't' -> */,
|
|
/* pos 0468: 675 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0469: 676 */ 0xEF /* 'o' -> */,
|
|
/* pos 046a: 677 */ 0xE4 /* 'd' -> */,
|
|
/* pos 046b: 678 */ 0x00, 0x19 /* - terminal marker 25 - */,
|
|
/* pos 046d: 679 */ 0xF4 /* 't' -> */,
|
|
/* pos 046e: 680 */ 0xE8 /* 'h' -> */,
|
|
/* pos 046f: 681 */ 0x00, 0x1A /* - terminal marker 26 - */,
|
|
/* pos 0471: 682 */ 0x63 /* 'c' */, 0x07, 0x00 /* (to 0x0478 state 683) */,
|
|
0x74 /* 't' */, 0x0A, 0x00 /* (to 0x047E state 688) */,
|
|
0x08, /* fail */
|
|
/* pos 0478: 683 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0479: 684 */ 0xE5 /* 'e' -> */,
|
|
/* pos 047a: 685 */ 0xED /* 'm' -> */,
|
|
/* pos 047b: 686 */ 0xE5 /* 'e' -> */,
|
|
/* pos 047c: 687 */ 0x00, 0x1B /* - terminal marker 27 - */,
|
|
/* pos 047e: 688 */ 0xE1 /* 'a' -> */,
|
|
/* pos 047f: 689 */ 0xF4 /* 't' -> */,
|
|
/* pos 0480: 690 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0481: 691 */ 0xF3 /* 's' -> */,
|
|
/* pos 0482: 692 */ 0x00, 0x1C /* - terminal marker 28 - */,
|
|
/* pos 0484: 693 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0485: 694 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0486: 695 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0487: 696 */ 0xF3 /* 's' -> */,
|
|
/* pos 0488: 697 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0489: 698 */ 0xF4 /* 't' -> */,
|
|
/* pos 048a: 699 */ 0xBA /* ':' -> */,
|
|
/* pos 048b: 700 */ 0x00, 0x1D /* - terminal marker 29 - */,
|
|
/* pos 048d: 701 */ 0xF5 /* 'u' -> */,
|
|
/* pos 048e: 702 */ 0xF4 /* 't' -> */,
|
|
/* pos 048f: 703 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0490: 704 */ 0xAD /* '-' -> */,
|
|
/* pos 0491: 705 */ 0xF4 /* 't' -> */,
|
|
/* pos 0492: 706 */ 0xEF /* 'o' -> */,
|
|
/* pos 0493: 707 */ 0xEB /* 'k' -> */,
|
|
/* pos 0494: 708 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0495: 709 */ 0xEE /* 'n' -> */,
|
|
/* pos 0496: 710 */ 0xBA /* ':' -> */,
|
|
/* pos 0497: 711 */ 0x00, 0x4B /* - terminal marker 75 - */,
|
|
/* total size 1177 bytes */
|
|
#endif
|
|
|
|
#if !defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && defined(LWS_ROLE_WS) && defined(LWS_ROLE_H2)
|
|
/* 0: 0: get */
|
|
/* 1: 1: post */
|
|
/* 2: 3: host: */
|
|
/* 3: 4: connection: */
|
|
/* 4: 5: upgrade: */
|
|
/* 5: 6: origin: */
|
|
/* 6: 7: sec-websocket-draft: */
|
|
/* 7: 8:
|
|
*/
|
|
/* 8: 9: sec-websocket-extensions: */
|
|
/* 9: 10: sec-websocket-key1: */
|
|
/* 10: 11: sec-websocket-key2: */
|
|
/* 11: 12: sec-websocket-protocol: */
|
|
/* 12: 13: sec-websocket-accept: */
|
|
/* 13: 14: sec-websocket-nonce: */
|
|
/* 14: 15: http/1.1 */
|
|
/* 15: 16: http2-settings: */
|
|
/* 16: 17: accept: */
|
|
/* 17: 18: access-control-request-headers: */
|
|
/* 18: 20: if-none-match: */
|
|
/* 19: 21: accept-encoding: */
|
|
/* 20: 22: accept-language: */
|
|
/* 21: 23: pragma: */
|
|
/* 22: 24: cache-control: */
|
|
/* 23: 25: authorization: */
|
|
/* 24: 26: cookie: */
|
|
/* 25: 27: content-length: */
|
|
/* 26: 28: content-type: */
|
|
/* 27: 29: date: */
|
|
/* 28: 30: range: */
|
|
/* 29: 31: referer: */
|
|
/* 30: 32: sec-websocket-key: */
|
|
/* 31: 33: sec-websocket-version: */
|
|
/* 32: 34: sec-websocket-origin: */
|
|
/* 33: 35: :authority */
|
|
/* 34: 36: :method */
|
|
/* 35: 37: :path */
|
|
/* 36: 38: :scheme */
|
|
/* 37: 39: :status */
|
|
/* 38: 40: accept-charset: */
|
|
/* 39: 41: accept-ranges: */
|
|
/* 40: 42: access-control-allow-origin: */
|
|
/* 41: 43: age: */
|
|
/* 42: 44: allow: */
|
|
/* 43: 45: content-disposition: */
|
|
/* 44: 46: content-encoding: */
|
|
/* 45: 47: content-language: */
|
|
/* 46: 48: content-location: */
|
|
/* 47: 49: content-range: */
|
|
/* 48: 50: etag: */
|
|
/* 49: 51: expect: */
|
|
/* 50: 52: expires: */
|
|
/* 51: 53: from: */
|
|
/* 52: 54: if-match: */
|
|
/* 53: 55: if-range: */
|
|
/* 54: 56: if-unmodified-since: */
|
|
/* 55: 57: last-modified: */
|
|
/* 56: 58: link: */
|
|
/* 57: 59: location: */
|
|
/* 58: 60: max-forwards: */
|
|
/* 59: 61: proxy-authenticate: */
|
|
/* 60: 62: proxy-authorization: */
|
|
/* 61: 63: refresh: */
|
|
/* 62: 64: retry-after: */
|
|
/* 63: 65: server: */
|
|
/* 64: 66: set-cookie: */
|
|
/* 65: 67: strict-transport-security: */
|
|
/* 66: 68: transfer-encoding: */
|
|
/* 67: 69: user-agent: */
|
|
/* 68: 70: vary: */
|
|
/* 69: 71: via: */
|
|
/* 70: 72: www-authenticate: */
|
|
/* 71: 73: patch */
|
|
/* 72: 77: proxy */
|
|
/* 73: 80: x-forwarded-for: */
|
|
/* 74: 81: connect */
|
|
/* 75: 82: head */
|
|
/* 76: 83: te: */
|
|
/* 77: 84: replay-nonce: */
|
|
/* 78: 85: :protocol */
|
|
/* 79: 86: x-auth-token: */
|
|
/* 80: 87: */
|
|
/* pos 0000: 0 */ 0x67 /* 'g' */, 0x40, 0x00 /* (to 0x0040 state 1) */,
|
|
0x70 /* 'p' */, 0x42, 0x00 /* (to 0x0045 state 5) */,
|
|
0x68 /* 'h' */, 0x51, 0x00 /* (to 0x0057 state 10) */,
|
|
0x63 /* 'c' */, 0x5D, 0x00 /* (to 0x0066 state 15) */,
|
|
0x75 /* 'u' */, 0x7E, 0x00 /* (to 0x008A state 26) */,
|
|
0x6F /* 'o' */, 0x8D, 0x00 /* (to 0x009C state 34) */,
|
|
0x0D /* '.' */, 0x98, 0x00 /* (to 0x00AA state 41) */,
|
|
0x61 /* 'a' */, 0xAD, 0x00 /* (to 0x00C2 state 57) */,
|
|
0x69 /* 'i' */, 0xE2, 0x00 /* (to 0x00FA state 88) */,
|
|
0x64 /* 'd' */, 0x7D, 0x01 /* (to 0x0198 state 177) */,
|
|
0x72 /* 'r' */, 0x86, 0x01 /* (to 0x01A4 state 182) */,
|
|
0x65 /* 'e' */, 0xEB, 0x01 /* (to 0x020C state 256) */,
|
|
0x66 /* 'f' */, 0x07, 0x02 /* (to 0x022B state 272) */,
|
|
0x6C /* 'l' */, 0x30, 0x02 /* (to 0x0257 state 306) */,
|
|
0x6D /* 'm' */, 0x53, 0x02 /* (to 0x027D state 332) */,
|
|
0x73 /* 's' */, 0x69, 0x02 /* (to 0x0296 state 355) */,
|
|
0x78 /* 'x' */, 0xB7, 0x02 /* (to 0x02E7 state 410) */,
|
|
0x74 /* 't' */, 0xD5, 0x02 /* (to 0x0308 state 431) */,
|
|
0x76 /* 'v' */, 0x69, 0x03 /* (to 0x039F state 527) */,
|
|
0x77 /* 'w' */, 0x76, 0x03 /* (to 0x03AF state 535) */,
|
|
0x3A /* ':' */, 0xBC, 0x03 /* (to 0x03F8 state 594) */,
|
|
0x08, /* fail */
|
|
/* pos 0040: 1 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0041: 2 */ 0xF4 /* 't' -> */,
|
|
/* pos 0042: 3 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0043: 4 */ 0x00, 0x00 /* - terminal marker 0 - */,
|
|
/* pos 0045: 5 */ 0x6F /* 'o' */, 0x0D, 0x00 /* (to 0x0052 state 6) */,
|
|
0x72 /* 'r' */, 0xF6, 0x00 /* (to 0x013E state 123) */,
|
|
0x61 /* 'a' */, 0x76, 0x03 /* (to 0x03C1 state 552) */,
|
|
0x75 /* 'u' */, 0x78, 0x03 /* (to 0x03C6 state 556) */,
|
|
0x08, /* fail */
|
|
/* pos 0052: 6 */ 0xF3 /* 's' -> */,
|
|
/* pos 0053: 7 */ 0xF4 /* 't' -> */,
|
|
/* pos 0054: 8 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0055: 9 */ 0x00, 0x01 /* - terminal marker 1 - */,
|
|
/* pos 0057: 10 */ 0x6F /* 'o' */, 0x0A, 0x00 /* (to 0x0061 state 11) */,
|
|
0x74 /* 't' */, 0x53, 0x00 /* (to 0x00AD state 43) */,
|
|
0x65 /* 'e' */, 0xA6, 0x02 /* (to 0x0303 state 427) */,
|
|
0x08, /* fail */
|
|
/* pos 0061: 11 */ 0xF3 /* 's' -> */,
|
|
/* pos 0062: 12 */ 0xF4 /* 't' -> */,
|
|
/* pos 0063: 13 */ 0xBA /* ':' -> */,
|
|
/* pos 0064: 14 */ 0x00, 0x02 /* - terminal marker 2 - */,
|
|
/* pos 0066: 15 */ 0x6F /* 'o' */, 0x07, 0x00 /* (to 0x006D state 16) */,
|
|
0x61 /* 'a' */, 0xE2, 0x00 /* (to 0x014B state 129) */,
|
|
0x08, /* fail */
|
|
/* pos 006d: 16 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x0074 state 17) */,
|
|
0x6F /* 'o' */, 0xF7, 0x00 /* (to 0x0167 state 155) */,
|
|
0x08, /* fail */
|
|
/* pos 0074: 17 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x007B state 18) */,
|
|
0x74 /* 't' */, 0xF6, 0x00 /* (to 0x016D state 160) */,
|
|
0x08, /* fail */
|
|
/* pos 007b: 18 */ 0xE5 /* 'e' -> */,
|
|
/* pos 007c: 19 */ 0xE3 /* 'c' -> */,
|
|
/* pos 007d: 20 */ 0xF4 /* 't' -> */,
|
|
/* pos 007e: 21 */ 0x69 /* 'i' */, 0x07, 0x00 /* (to 0x0085 state 22) */,
|
|
0x20 /* ' ' */, 0x80, 0x02 /* (to 0x0301 state 426) */,
|
|
0x08, /* fail */
|
|
/* pos 0085: 22 */ 0xEF /* 'o' -> */,
|
|
/* pos 0086: 23 */ 0xEE /* 'n' -> */,
|
|
/* pos 0087: 24 */ 0xBA /* ':' -> */,
|
|
/* pos 0088: 25 */ 0x00, 0x03 /* - terminal marker 3 - */,
|
|
/* pos 008a: 26 */ 0x70 /* 'p' */, 0x0A, 0x00 /* (to 0x0094 state 27) */,
|
|
0x73 /* 's' */, 0x44, 0x02 /* (to 0x02D1 state 396) */,
|
|
0x72 /* 'r' */, 0x3F, 0x03 /* (to 0x03CF state 563) */,
|
|
0x08, /* fail */
|
|
/* pos 0094: 27 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0095: 28 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0096: 29 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0097: 30 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0098: 31 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0099: 32 */ 0xBA /* ':' -> */,
|
|
/* pos 009a: 33 */ 0x00, 0x04 /* - terminal marker 4 - */,
|
|
/* pos 009c: 34 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x00A3 state 35) */,
|
|
0x70 /* 'p' */, 0x73, 0x02 /* (to 0x0312 state 434) */,
|
|
0x08, /* fail */
|
|
/* pos 00a3: 35 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00a4: 36 */ 0xE7 /* 'g' -> */,
|
|
/* pos 00a5: 37 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00a6: 38 */ 0xEE /* 'n' -> */,
|
|
/* pos 00a7: 39 */ 0xBA /* ':' -> */,
|
|
/* pos 00a8: 40 */ 0x00, 0x05 /* - terminal marker 5 - */,
|
|
/* pos 00aa: 41 */ 0x8A /* '.' -> */,
|
|
/* pos 00ab: 42 */ 0x00, 0x07 /* - terminal marker 7 - */,
|
|
/* pos 00ad: 43 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ae: 44 */ 0xF0 /* 'p' -> */,
|
|
/* pos 00af: 45 */ 0x32 /* '2' */, 0x07, 0x00 /* (to 0x00B6 state 46) */,
|
|
0x2F /* '/' */, 0x2E, 0x03 /* (to 0x03E0 state 578) */,
|
|
0x08, /* fail */
|
|
/* pos 00b6: 46 */ 0xAD /* '-' -> */,
|
|
/* pos 00b7: 47 */ 0xF3 /* 's' -> */,
|
|
/* pos 00b8: 48 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00b9: 49 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ba: 50 */ 0xF4 /* 't' -> */,
|
|
/* pos 00bb: 51 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00bc: 52 */ 0xEE /* 'n' -> */,
|
|
/* pos 00bd: 53 */ 0xE7 /* 'g' -> */,
|
|
/* pos 00be: 54 */ 0xF3 /* 's' -> */,
|
|
/* pos 00bf: 55 */ 0xBA /* ':' -> */,
|
|
/* pos 00c0: 56 */ 0x00, 0x0F /* - terminal marker 15 - */,
|
|
/* pos 00c2: 57 */ 0x63 /* 'c' */, 0x0D, 0x00 /* (to 0x00CF state 58) */,
|
|
0x75 /* 'u' */, 0x94, 0x00 /* (to 0x0159 state 142) */,
|
|
0x6C /* 'l' */, 0x0E, 0x01 /* (to 0x01D6 state 208) */,
|
|
0x67 /* 'g' */, 0x98, 0x02 /* (to 0x0363 state 478) */,
|
|
0x08, /* fail */
|
|
/* pos 00cf: 58 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00d0: 59 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00d1: 60 */ 0x73 /* 's' */, 0x07, 0x00 /* (to 0x00D8 state 61) */,
|
|
0x70 /* 'p' */, 0x41, 0x00 /* (to 0x0115 state 102) */,
|
|
0x08, /* fail */
|
|
/* pos 00d8: 61 */ 0xF3 /* 's' -> */,
|
|
/* pos 00d9: 62 */ 0xAD /* '-' -> */,
|
|
/* pos 00da: 63 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00db: 64 */ 0xEF /* 'o' -> */,
|
|
/* pos 00dc: 65 */ 0xEE /* 'n' -> */,
|
|
/* pos 00dd: 66 */ 0xF4 /* 't' -> */,
|
|
/* pos 00de: 67 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00df: 68 */ 0xEF /* 'o' -> */,
|
|
/* pos 00e0: 69 */ 0xEC /* 'l' -> */,
|
|
/* pos 00e1: 70 */ 0xAD /* '-' -> */,
|
|
/* pos 00e2: 71 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x00E9 state 72) */,
|
|
0x61 /* 'a' */, 0xE3, 0x00 /* (to 0x01C8 state 195) */,
|
|
0x08, /* fail */
|
|
/* pos 00e9: 72 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00ea: 73 */ 0xF1 /* 'q' -> */,
|
|
/* pos 00eb: 74 */ 0xF5 /* 'u' -> */,
|
|
/* pos 00ec: 75 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00ed: 76 */ 0xF3 /* 's' -> */,
|
|
/* pos 00ee: 77 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ef: 78 */ 0xAD /* '-' -> */,
|
|
/* pos 00f0: 79 */ 0xE8 /* 'h' -> */,
|
|
/* pos 00f1: 80 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00f2: 81 */ 0xE1 /* 'a' -> */,
|
|
/* pos 00f3: 82 */ 0xE4 /* 'd' -> */,
|
|
/* pos 00f4: 83 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00f5: 84 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00f6: 85 */ 0xF3 /* 's' -> */,
|
|
/* pos 00f7: 86 */ 0xBA /* ':' -> */,
|
|
/* pos 00f8: 87 */ 0x00, 0x11 /* - terminal marker 17 - */,
|
|
/* pos 00fa: 88 */ 0xE6 /* 'f' -> */,
|
|
/* pos 00fb: 89 */ 0xAD /* '-' -> */,
|
|
/* pos 00fc: 90 */ 0x6E /* 'n' */, 0x0D, 0x00 /* (to 0x0109 state 91) */,
|
|
0x6D /* 'm' */, 0x32, 0x01 /* (to 0x0231 state 277) */,
|
|
0x72 /* 'r' */, 0x3C, 0x01 /* (to 0x023E state 283) */,
|
|
0x75 /* 'u' */, 0x40, 0x01 /* (to 0x0245 state 289) */,
|
|
0x08, /* fail */
|
|
/* pos 0109: 91 */ 0xEF /* 'o' -> */,
|
|
/* pos 010a: 92 */ 0xEE /* 'n' -> */,
|
|
/* pos 010b: 93 */ 0xE5 /* 'e' -> */,
|
|
/* pos 010c: 94 */ 0xAD /* '-' -> */,
|
|
/* pos 010d: 95 */ 0xED /* 'm' -> */,
|
|
/* pos 010e: 96 */ 0xE1 /* 'a' -> */,
|
|
/* pos 010f: 97 */ 0xF4 /* 't' -> */,
|
|
/* pos 0110: 98 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0111: 99 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0112: 100 */ 0xBA /* ':' -> */,
|
|
/* pos 0113: 101 */ 0x00, 0x12 /* - terminal marker 18 - */,
|
|
/* pos 0115: 102 */ 0xF4 /* 't' -> */,
|
|
/* pos 0116: 103 */ 0x2D /* '-' */, 0x07, 0x00 /* (to 0x011D state 104) */,
|
|
0x3A /* ':' */, 0x4B, 0x03 /* (to 0x0464 state 672) */,
|
|
0x08, /* fail */
|
|
/* pos 011d: 104 */ 0x65 /* 'e' */, 0x0D, 0x00 /* (to 0x012A state 105) */,
|
|
0x6C /* 'l' */, 0x14, 0x00 /* (to 0x0134 state 114) */,
|
|
0x72 /* 'r' */, 0x38, 0x02 /* (to 0x035B state 471) */,
|
|
0x63 /* 'c' */, 0x5E, 0x03 /* (to 0x0484 state 693) */,
|
|
0x08, /* fail */
|
|
/* pos 012a: 105 */ 0xEE /* 'n' -> */,
|
|
/* pos 012b: 106 */ 0xE3 /* 'c' -> */,
|
|
/* pos 012c: 107 */ 0xEF /* 'o' -> */,
|
|
/* pos 012d: 108 */ 0xE4 /* 'd' -> */,
|
|
/* pos 012e: 109 */ 0xE9 /* 'i' -> */,
|
|
/* pos 012f: 110 */ 0xEE /* 'n' -> */,
|
|
/* pos 0130: 111 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0131: 112 */ 0xBA /* ':' -> */,
|
|
/* pos 0132: 113 */ 0x00, 0x13 /* - terminal marker 19 - */,
|
|
/* pos 0134: 114 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0135: 115 */ 0xEE /* 'n' -> */,
|
|
/* pos 0136: 116 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0137: 117 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0138: 118 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0139: 119 */ 0xE7 /* 'g' -> */,
|
|
/* pos 013a: 120 */ 0xE5 /* 'e' -> */,
|
|
/* pos 013b: 121 */ 0xBA /* ':' -> */,
|
|
/* pos 013c: 122 */ 0x00, 0x14 /* - terminal marker 20 - */,
|
|
/* pos 013e: 123 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x0145 state 124) */,
|
|
0x6F /* 'o' */, 0x9B, 0x01 /* (to 0x02DC state 406) */,
|
|
0x08, /* fail */
|
|
/* pos 0145: 124 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0146: 125 */ 0xED /* 'm' -> */,
|
|
/* pos 0147: 126 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0148: 127 */ 0xBA /* ':' -> */,
|
|
/* pos 0149: 128 */ 0x00, 0x15 /* - terminal marker 21 - */,
|
|
/* pos 014b: 129 */ 0xE3 /* 'c' -> */,
|
|
/* pos 014c: 130 */ 0xE8 /* 'h' -> */,
|
|
/* pos 014d: 131 */ 0xE5 /* 'e' -> */,
|
|
/* pos 014e: 132 */ 0xAD /* '-' -> */,
|
|
/* pos 014f: 133 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0150: 134 */ 0xEF /* 'o' -> */,
|
|
/* pos 0151: 135 */ 0xEE /* 'n' -> */,
|
|
/* pos 0152: 136 */ 0xF4 /* 't' -> */,
|
|
/* pos 0153: 137 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0154: 138 */ 0xEF /* 'o' -> */,
|
|
/* pos 0155: 139 */ 0xEC /* 'l' -> */,
|
|
/* pos 0156: 140 */ 0xBA /* ':' -> */,
|
|
/* pos 0157: 141 */ 0x00, 0x16 /* - terminal marker 22 - */,
|
|
/* pos 0159: 142 */ 0xF4 /* 't' -> */,
|
|
/* pos 015a: 143 */ 0xE8 /* 'h' -> */,
|
|
/* pos 015b: 144 */ 0xEF /* 'o' -> */,
|
|
/* pos 015c: 145 */ 0xF2 /* 'r' -> */,
|
|
/* pos 015d: 146 */ 0xE9 /* 'i' -> */,
|
|
/* pos 015e: 147 */ 0xFA /* 'z' -> */,
|
|
/* pos 015f: 148 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0160: 149 */ 0xF4 /* 't' -> */,
|
|
/* pos 0161: 150 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0162: 151 */ 0xEF /* 'o' -> */,
|
|
/* pos 0163: 152 */ 0xEE /* 'n' -> */,
|
|
/* pos 0164: 153 */ 0xBA /* ':' -> */,
|
|
/* pos 0165: 154 */ 0x00, 0x17 /* - terminal marker 23 - */,
|
|
/* pos 0167: 155 */ 0xEB /* 'k' -> */,
|
|
/* pos 0168: 156 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0169: 157 */ 0xE5 /* 'e' -> */,
|
|
/* pos 016a: 158 */ 0xBA /* ':' -> */,
|
|
/* pos 016b: 159 */ 0x00, 0x18 /* - terminal marker 24 - */,
|
|
/* pos 016d: 160 */ 0xE5 /* 'e' -> */,
|
|
/* pos 016e: 161 */ 0xEE /* 'n' -> */,
|
|
/* pos 016f: 162 */ 0xF4 /* 't' -> */,
|
|
/* pos 0170: 163 */ 0xAD /* '-' -> */,
|
|
/* pos 0171: 164 */ 0x6C /* 'l' */, 0x10, 0x00 /* (to 0x0181 state 165) */,
|
|
0x74 /* 't' */, 0x1E, 0x00 /* (to 0x0192 state 172) */,
|
|
0x64 /* 'd' */, 0x65, 0x00 /* (to 0x01DC state 213) */,
|
|
0x65 /* 'e' */, 0x6F, 0x00 /* (to 0x01E9 state 225) */,
|
|
0x72 /* 'r' */, 0x88, 0x00 /* (to 0x0205 state 250) */,
|
|
0x08, /* fail */
|
|
/* pos 0181: 165 */ 0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x018B state 166) */,
|
|
0x61 /* 'a' */, 0x6F, 0x00 /* (to 0x01F3 state 234) */,
|
|
0x6F /* 'o' */, 0x75, 0x00 /* (to 0x01FC state 242) */,
|
|
0x08, /* fail */
|
|
/* pos 018b: 166 */ 0xEE /* 'n' -> */,
|
|
/* pos 018c: 167 */ 0xE7 /* 'g' -> */,
|
|
/* pos 018d: 168 */ 0xF4 /* 't' -> */,
|
|
/* pos 018e: 169 */ 0xE8 /* 'h' -> */,
|
|
/* pos 018f: 170 */ 0xBA /* ':' -> */,
|
|
/* pos 0190: 171 */ 0x00, 0x19 /* - terminal marker 25 - */,
|
|
/* pos 0192: 172 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0193: 173 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0194: 174 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0195: 175 */ 0xBA /* ':' -> */,
|
|
/* pos 0196: 176 */ 0x00, 0x1A /* - terminal marker 26 - */,
|
|
/* pos 0198: 177 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x019F state 178) */,
|
|
0x65 /* 'e' */, 0x2E, 0x02 /* (to 0x03C9 state 558) */,
|
|
0x08, /* fail */
|
|
/* pos 019f: 178 */ 0xF4 /* 't' -> */,
|
|
/* pos 01a0: 179 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01a1: 180 */ 0xBA /* ':' -> */,
|
|
/* pos 01a2: 181 */ 0x00, 0x1B /* - terminal marker 27 - */,
|
|
/* pos 01a4: 182 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x01AB state 183) */,
|
|
0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x01B1 state 188) */,
|
|
0x08, /* fail */
|
|
/* pos 01ab: 183 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ac: 184 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01ad: 185 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01ae: 186 */ 0xBA /* ':' -> */,
|
|
/* pos 01af: 187 */ 0x00, 0x1C /* - terminal marker 28 - */,
|
|
/* pos 01b1: 188 */ 0x66 /* 'f' */, 0x0A, 0x00 /* (to 0x01BB state 189) */,
|
|
0x74 /* 't' */, 0xD7, 0x00 /* (to 0x028B state 345) */,
|
|
0x70 /* 'p' */, 0x35, 0x02 /* (to 0x03EC state 583) */,
|
|
0x08, /* fail */
|
|
/* pos 01bb: 189 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x01C2 state 190) */,
|
|
0x72 /* 'r' */, 0xC9, 0x01 /* (to 0x0387 state 505) */,
|
|
0x08, /* fail */
|
|
/* pos 01c2: 190 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01c3: 191 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01c4: 192 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01c5: 193 */ 0xBA /* ':' -> */,
|
|
/* pos 01c6: 194 */ 0x00, 0x1D /* - terminal marker 29 - */,
|
|
/* pos 01c8: 195 */ 0xEC /* 'l' -> */,
|
|
/* pos 01c9: 196 */ 0xEC /* 'l' -> */,
|
|
/* pos 01ca: 197 */ 0xEF /* 'o' -> */,
|
|
/* pos 01cb: 198 */ 0xF7 /* 'w' -> */,
|
|
/* pos 01cc: 199 */ 0xAD /* '-' -> */,
|
|
/* pos 01cd: 200 */ 0xEF /* 'o' -> */,
|
|
/* pos 01ce: 201 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01cf: 202 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d0: 203 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01d1: 204 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d2: 205 */ 0xEE /* 'n' -> */,
|
|
/* pos 01d3: 206 */ 0xBA /* ':' -> */,
|
|
/* pos 01d4: 207 */ 0x00, 0x28 /* - terminal marker 40 - */,
|
|
/* pos 01d6: 208 */ 0xEC /* 'l' -> */,
|
|
/* pos 01d7: 209 */ 0xEF /* 'o' -> */,
|
|
/* pos 01d8: 210 */ 0xF7 /* 'w' -> */,
|
|
/* pos 01d9: 211 */ 0xBA /* ':' -> */,
|
|
/* pos 01da: 212 */ 0x00, 0x2A /* - terminal marker 42 - */,
|
|
/* pos 01dc: 213 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01dd: 214 */ 0xF3 /* 's' -> */,
|
|
/* pos 01de: 215 */ 0xF0 /* 'p' -> */,
|
|
/* pos 01df: 216 */ 0xEF /* 'o' -> */,
|
|
/* pos 01e0: 217 */ 0xF3 /* 's' -> */,
|
|
/* pos 01e1: 218 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01e2: 219 */ 0xF4 /* 't' -> */,
|
|
/* pos 01e3: 220 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01e4: 221 */ 0xEF /* 'o' -> */,
|
|
/* pos 01e5: 222 */ 0xEE /* 'n' -> */,
|
|
/* pos 01e6: 223 */ 0xBA /* ':' -> */,
|
|
/* pos 01e7: 224 */ 0x00, 0x2B /* - terminal marker 43 - */,
|
|
/* pos 01e9: 225 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ea: 226 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01eb: 227 */ 0xEF /* 'o' -> */,
|
|
/* pos 01ec: 228 */ 0xE4 /* 'd' -> */,
|
|
/* pos 01ed: 229 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01ee: 230 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ef: 231 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01f0: 232 */ 0xBA /* ':' -> */,
|
|
/* pos 01f1: 233 */ 0x00, 0x2C /* - terminal marker 44 - */,
|
|
/* pos 01f3: 234 */ 0xEE /* 'n' -> */,
|
|
/* pos 01f4: 235 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01f5: 236 */ 0xF5 /* 'u' -> */,
|
|
/* pos 01f6: 237 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01f7: 238 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01f8: 239 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01f9: 240 */ 0xBA /* ':' -> */,
|
|
/* pos 01fa: 241 */ 0x00, 0x2D /* - terminal marker 45 - */,
|
|
/* pos 01fc: 242 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01fd: 243 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01fe: 244 */ 0xF4 /* 't' -> */,
|
|
/* pos 01ff: 245 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0200: 246 */ 0xEF /* 'o' -> */,
|
|
/* pos 0201: 247 */ 0xEE /* 'n' -> */,
|
|
/* pos 0202: 248 */ 0xBA /* ':' -> */,
|
|
/* pos 0203: 249 */ 0x00, 0x2E /* - terminal marker 46 - */,
|
|
/* pos 0205: 250 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0206: 251 */ 0xEE /* 'n' -> */,
|
|
/* pos 0207: 252 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0208: 253 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0209: 254 */ 0xBA /* ':' -> */,
|
|
/* pos 020a: 255 */ 0x00, 0x2F /* - terminal marker 47 - */,
|
|
/* pos 020c: 256 */ 0x74 /* 't' */, 0x07, 0x00 /* (to 0x0213 state 257) */,
|
|
0x78 /* 'x' */, 0x09, 0x00 /* (to 0x0218 state 261) */,
|
|
0x08, /* fail */
|
|
/* pos 0213: 257 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0214: 258 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0215: 259 */ 0xBA /* ':' -> */,
|
|
/* pos 0216: 260 */ 0x00, 0x30 /* - terminal marker 48 - */,
|
|
/* pos 0218: 261 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0219: 262 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0220 state 263) */,
|
|
0x69 /* 'i' */, 0x09, 0x00 /* (to 0x0225 state 267) */,
|
|
0x08, /* fail */
|
|
/* pos 0220: 263 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0221: 264 */ 0xF4 /* 't' -> */,
|
|
/* pos 0222: 265 */ 0xBA /* ':' -> */,
|
|
/* pos 0223: 266 */ 0x00, 0x31 /* - terminal marker 49 - */,
|
|
/* pos 0225: 267 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0226: 268 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0227: 269 */ 0xF3 /* 's' -> */,
|
|
/* pos 0228: 270 */ 0xBA /* ':' -> */,
|
|
/* pos 0229: 271 */ 0x00, 0x32 /* - terminal marker 50 - */,
|
|
/* pos 022b: 272 */ 0xF2 /* 'r' -> */,
|
|
/* pos 022c: 273 */ 0xEF /* 'o' -> */,
|
|
/* pos 022d: 274 */ 0xED /* 'm' -> */,
|
|
/* pos 022e: 275 */ 0xBA /* ':' -> */,
|
|
/* pos 022f: 276 */ 0x00, 0x33 /* - terminal marker 51 - */,
|
|
/* pos 0231: 277 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x0238 state 278) */,
|
|
0x6F /* 'o' */, 0xE6, 0x00 /* (to 0x031A state 441) */,
|
|
0x08, /* fail */
|
|
/* pos 0238: 278 */ 0xF4 /* 't' -> */,
|
|
/* pos 0239: 279 */ 0xE3 /* 'c' -> */,
|
|
/* pos 023a: 280 */ 0xE8 /* 'h' -> */,
|
|
/* pos 023b: 281 */ 0xBA /* ':' -> */,
|
|
/* pos 023c: 282 */ 0x00, 0x34 /* - terminal marker 52 - */,
|
|
/* pos 023e: 283 */ 0xE1 /* 'a' -> */,
|
|
/* pos 023f: 284 */ 0xEE /* 'n' -> */,
|
|
/* pos 0240: 285 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0241: 286 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0242: 287 */ 0xBA /* ':' -> */,
|
|
/* pos 0243: 288 */ 0x00, 0x35 /* - terminal marker 53 - */,
|
|
/* pos 0245: 289 */ 0xEE /* 'n' -> */,
|
|
/* pos 0246: 290 */ 0xED /* 'm' -> */,
|
|
/* pos 0247: 291 */ 0xEF /* 'o' -> */,
|
|
/* pos 0248: 292 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0249: 293 */ 0xE9 /* 'i' -> */,
|
|
/* pos 024a: 294 */ 0xE6 /* 'f' -> */,
|
|
/* pos 024b: 295 */ 0xE9 /* 'i' -> */,
|
|
/* pos 024c: 296 */ 0xE5 /* 'e' -> */,
|
|
/* pos 024d: 297 */ 0xE4 /* 'd' -> */,
|
|
/* pos 024e: 298 */ 0xAD /* '-' -> */,
|
|
/* pos 024f: 299 */ 0xF3 /* 's' -> */,
|
|
/* pos 0250: 300 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0251: 301 */ 0xEE /* 'n' -> */,
|
|
/* pos 0252: 302 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0253: 303 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0254: 304 */ 0xBA /* ':' -> */,
|
|
/* pos 0255: 305 */ 0x00, 0x36 /* - terminal marker 54 - */,
|
|
/* pos 0257: 306 */ 0x61 /* 'a' */, 0x0A, 0x00 /* (to 0x0261 state 307) */,
|
|
0x69 /* 'i' */, 0x15, 0x00 /* (to 0x026F state 320) */,
|
|
0x6F /* 'o' */, 0x17, 0x00 /* (to 0x0274 state 324) */,
|
|
0x08, /* fail */
|
|
/* pos 0261: 307 */ 0xF3 /* 's' -> */,
|
|
/* pos 0262: 308 */ 0xF4 /* 't' -> */,
|
|
/* pos 0263: 309 */ 0xAD /* '-' -> */,
|
|
/* pos 0264: 310 */ 0xED /* 'm' -> */,
|
|
/* pos 0265: 311 */ 0xEF /* 'o' -> */,
|
|
/* pos 0266: 312 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0267: 313 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0268: 314 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0269: 315 */ 0xE9 /* 'i' -> */,
|
|
/* pos 026a: 316 */ 0xE5 /* 'e' -> */,
|
|
/* pos 026b: 317 */ 0xE4 /* 'd' -> */,
|
|
/* pos 026c: 318 */ 0xBA /* ':' -> */,
|
|
/* pos 026d: 319 */ 0x00, 0x37 /* - terminal marker 55 - */,
|
|
/* pos 026f: 320 */ 0xEE /* 'n' -> */,
|
|
/* pos 0270: 321 */ 0xEB /* 'k' -> */,
|
|
/* pos 0271: 322 */ 0xBA /* ':' -> */,
|
|
/* pos 0272: 323 */ 0x00, 0x38 /* - terminal marker 56 - */,
|
|
/* pos 0274: 324 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0275: 325 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0276: 326 */ 0xF4 /* 't' -> */,
|
|
/* pos 0277: 327 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0278: 328 */ 0xEF /* 'o' -> */,
|
|
/* pos 0279: 329 */ 0xEE /* 'n' -> */,
|
|
/* pos 027a: 330 */ 0xBA /* ':' -> */,
|
|
/* pos 027b: 331 */ 0x00, 0x39 /* - terminal marker 57 - */,
|
|
/* pos 027d: 332 */ 0xE1 /* 'a' -> */,
|
|
/* pos 027e: 333 */ 0xF8 /* 'x' -> */,
|
|
/* pos 027f: 334 */ 0xAD /* '-' -> */,
|
|
/* pos 0280: 335 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0281: 336 */ 0xEF /* 'o' -> */,
|
|
/* pos 0282: 337 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0283: 338 */ 0xF7 /* 'w' -> */,
|
|
/* pos 0284: 339 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0285: 340 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0286: 341 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0287: 342 */ 0xF3 /* 's' -> */,
|
|
/* pos 0288: 343 */ 0xBA /* ':' -> */,
|
|
/* pos 0289: 344 */ 0x00, 0x3A /* - terminal marker 58 - */,
|
|
/* pos 028b: 345 */ 0xF2 /* 'r' -> */,
|
|
/* pos 028c: 346 */ 0xF9 /* 'y' -> */,
|
|
/* pos 028d: 347 */ 0xAD /* '-' -> */,
|
|
/* pos 028e: 348 */ 0xE1 /* 'a' -> */,
|
|
/* pos 028f: 349 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0290: 350 */ 0xF4 /* 't' -> */,
|
|
/* pos 0291: 351 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0292: 352 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0293: 353 */ 0xBA /* ':' -> */,
|
|
/* pos 0294: 354 */ 0x00, 0x3E /* - terminal marker 62 - */,
|
|
/* pos 0296: 355 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x029D state 356) */,
|
|
0x74 /* 't' */, 0x1E, 0x00 /* (to 0x02B7 state 371) */,
|
|
0x08, /* fail */
|
|
/* pos 029d: 356 */ 0x72 /* 'r' */, 0x0A, 0x00 /* (to 0x02A7 state 357) */,
|
|
0x74 /* 't' */, 0x0D, 0x00 /* (to 0x02AD state 362) */,
|
|
0x63 /* 'c' */, 0x86, 0x00 /* (to 0x0329 state 455) */,
|
|
0x08, /* fail */
|
|
/* pos 02a7: 357 */ 0xF6 /* 'v' -> */,
|
|
/* pos 02a8: 358 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02a9: 359 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02aa: 360 */ 0xBA /* ':' -> */,
|
|
/* pos 02ab: 361 */ 0x00, 0x3F /* - terminal marker 63 - */,
|
|
/* pos 02ad: 362 */ 0xAD /* '-' -> */,
|
|
/* pos 02ae: 363 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02af: 364 */ 0xEF /* 'o' -> */,
|
|
/* pos 02b0: 365 */ 0xEF /* 'o' -> */,
|
|
/* pos 02b1: 366 */ 0xEB /* 'k' -> */,
|
|
/* pos 02b2: 367 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02b3: 368 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02b4: 369 */ 0xBA /* ':' -> */,
|
|
/* pos 02b5: 370 */ 0x00, 0x40 /* - terminal marker 64 - */,
|
|
/* pos 02b7: 371 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02b8: 372 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02b9: 373 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02ba: 374 */ 0xF4 /* 't' -> */,
|
|
/* pos 02bb: 375 */ 0xAD /* '-' -> */,
|
|
/* pos 02bc: 376 */ 0xF4 /* 't' -> */,
|
|
/* pos 02bd: 377 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02be: 378 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02bf: 379 */ 0xEE /* 'n' -> */,
|
|
/* pos 02c0: 380 */ 0xF3 /* 's' -> */,
|
|
/* pos 02c1: 381 */ 0xF0 /* 'p' -> */,
|
|
/* pos 02c2: 382 */ 0xEF /* 'o' -> */,
|
|
/* pos 02c3: 383 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02c4: 384 */ 0xF4 /* 't' -> */,
|
|
/* pos 02c5: 385 */ 0xAD /* '-' -> */,
|
|
/* pos 02c6: 386 */ 0xF3 /* 's' -> */,
|
|
/* pos 02c7: 387 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02c8: 388 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02c9: 389 */ 0xF5 /* 'u' -> */,
|
|
/* pos 02ca: 390 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02cb: 391 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02cc: 392 */ 0xF4 /* 't' -> */,
|
|
/* pos 02cd: 393 */ 0xF9 /* 'y' -> */,
|
|
/* pos 02ce: 394 */ 0xBA /* ':' -> */,
|
|
/* pos 02cf: 395 */ 0x00, 0x41 /* - terminal marker 65 - */,
|
|
/* pos 02d1: 396 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02d2: 397 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02d3: 398 */ 0xAD /* '-' -> */,
|
|
/* pos 02d4: 399 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02d5: 400 */ 0xE7 /* 'g' -> */,
|
|
/* pos 02d6: 401 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02d7: 402 */ 0xEE /* 'n' -> */,
|
|
/* pos 02d8: 403 */ 0xF4 /* 't' -> */,
|
|
/* pos 02d9: 404 */ 0xBA /* ':' -> */,
|
|
/* pos 02da: 405 */ 0x00, 0x43 /* - terminal marker 67 - */,
|
|
/* pos 02dc: 406 */ 0xF8 /* 'x' -> */,
|
|
/* pos 02dd: 407 */ 0xF9 /* 'y' -> */,
|
|
/* pos 02de: 408 */ 0x20 /* ' ' */, 0x07, 0x00 /* (to 0x02E5 state 409) */,
|
|
0x2D /* '-' */, 0x86, 0x00 /* (to 0x0367 state 481) */,
|
|
0x08, /* fail */
|
|
/* pos 02e5: 409 */ 0x00, 0x48 /* - terminal marker 72 - */,
|
|
/* pos 02e7: 410 */ 0xAD /* '-' -> */,
|
|
/* pos 02e8: 411 */ 0x66 /* 'f' */, 0x0A, 0x00 /* (to 0x02F2 state 412) */,
|
|
0x72 /* 'r' */, 0xEC, 0x00 /* (to 0x03D7 state 570) */,
|
|
0x61 /* 'a' */, 0x9F, 0x01 /* (to 0x048D state 701) */,
|
|
0x08, /* fail */
|
|
/* pos 02f2: 412 */ 0xEF /* 'o' -> */,
|
|
/* pos 02f3: 413 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02f4: 414 */ 0xF7 /* 'w' -> */,
|
|
/* pos 02f5: 415 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02f6: 416 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02f7: 417 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02f8: 418 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02f9: 419 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02fa: 420 */ 0xAD /* '-' -> */,
|
|
/* pos 02fb: 421 */ 0xE6 /* 'f' -> */,
|
|
/* pos 02fc: 422 */ 0xEF /* 'o' -> */,
|
|
/* pos 02fd: 423 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02fe: 424 */ 0xBA /* ':' -> */,
|
|
/* pos 02ff: 425 */ 0x00, 0x49 /* - terminal marker 73 - */,
|
|
/* pos 0301: 426 */ 0x00, 0x4A /* - terminal marker 74 - */,
|
|
/* pos 0303: 427 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0304: 428 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0305: 429 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0306: 430 */ 0x00, 0x4B /* - terminal marker 75 - */,
|
|
/* pos 0308: 431 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x030F state 432) */,
|
|
0x72 /* 'r' */, 0x82, 0x00 /* (to 0x038D state 510) */,
|
|
0x08, /* fail */
|
|
/* pos 030f: 432 */ 0xBA /* ':' -> */,
|
|
/* pos 0310: 433 */ 0x00, 0x4C /* - terminal marker 76 - */,
|
|
/* pos 0312: 434 */ 0xF4 /* 't' -> */,
|
|
/* pos 0313: 435 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0314: 436 */ 0xEF /* 'o' -> */,
|
|
/* pos 0315: 437 */ 0xEE /* 'n' -> */,
|
|
/* pos 0316: 438 */ 0xF3 /* 's' -> */,
|
|
/* pos 0317: 439 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0318: 440 */ 0x00, 0x02 /* - terminal marker 2 - */,
|
|
/* pos 031a: 441 */ 0xE4 /* 'd' -> */,
|
|
/* pos 031b: 442 */ 0xE9 /* 'i' -> */,
|
|
/* pos 031c: 443 */ 0xE6 /* 'f' -> */,
|
|
/* pos 031d: 444 */ 0xE9 /* 'i' -> */,
|
|
/* pos 031e: 445 */ 0xE5 /* 'e' -> */,
|
|
/* pos 031f: 446 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0320: 447 */ 0xAD /* '-' -> */,
|
|
/* pos 0321: 448 */ 0xF3 /* 's' -> */,
|
|
/* pos 0322: 449 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0323: 450 */ 0xEE /* 'n' -> */,
|
|
/* pos 0324: 451 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0325: 452 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0326: 453 */ 0xBA /* ':' -> */,
|
|
/* pos 0327: 454 */ 0x00, 0x0B /* - terminal marker 11 - */,
|
|
/* pos 0329: 455 */ 0xAD /* '-' -> */,
|
|
/* pos 032a: 456 */ 0xF7 /* 'w' -> */,
|
|
/* pos 032b: 457 */ 0xE5 /* 'e' -> */,
|
|
/* pos 032c: 458 */ 0xE2 /* 'b' -> */,
|
|
/* pos 032d: 459 */ 0xF3 /* 's' -> */,
|
|
/* pos 032e: 460 */ 0xEF /* 'o' -> */,
|
|
/* pos 032f: 461 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0330: 462 */ 0xEB /* 'k' -> */,
|
|
/* pos 0331: 463 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0332: 464 */ 0xF4 /* 't' -> */,
|
|
/* pos 0333: 465 */ 0xAD /* '-' -> */,
|
|
/* pos 0334: 466 */ 0x6B /* 'k' */, 0x19, 0x00 /* (to 0x034D state 467) */,
|
|
0x64 /* 'd' */, 0xDD, 0x00 /* (to 0x0414 state 603) */,
|
|
0x65 /* 'e' */, 0xE1, 0x00 /* (to 0x041B state 609) */,
|
|
0x70 /* 'p' */, 0xF0, 0x00 /* (to 0x042D state 624) */,
|
|
0x61 /* 'a' */, 0xF7, 0x00 /* (to 0x0437 state 633) */,
|
|
0x6E /* 'n' */, 0xFC, 0x00 /* (to 0x043F state 640) */,
|
|
0x76 /* 'v' */, 0x03, 0x01 /* (to 0x0449 state 648) */,
|
|
0x6F /* 'o' */, 0x09, 0x01 /* (to 0x0452 state 656) */,
|
|
0x08, /* fail */
|
|
/* pos 034d: 467 */ 0xE5 /* 'e' -> */,
|
|
/* pos 034e: 468 */ 0xF9 /* 'y' -> */,
|
|
/* pos 034f: 469 */ 0x3A /* ':' */, 0x0A, 0x00 /* (to 0x0359 state 470) */,
|
|
0x31 /* '1' */, 0xD5, 0x00 /* (to 0x0427 state 620) */,
|
|
0x32 /* '2' */, 0xD5, 0x00 /* (to 0x042A state 622) */,
|
|
0x08, /* fail */
|
|
/* pos 0359: 470 */ 0x00, 0x1E /* - terminal marker 30 - */,
|
|
/* pos 035b: 471 */ 0xE1 /* 'a' -> */,
|
|
/* pos 035c: 472 */ 0xEE /* 'n' -> */,
|
|
/* pos 035d: 473 */ 0xE7 /* 'g' -> */,
|
|
/* pos 035e: 474 */ 0xE5 /* 'e' -> */,
|
|
/* pos 035f: 475 */ 0xF3 /* 's' -> */,
|
|
/* pos 0360: 476 */ 0xBA /* ':' -> */,
|
|
/* pos 0361: 477 */ 0x00, 0x27 /* - terminal marker 39 - */,
|
|
/* pos 0363: 478 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0364: 479 */ 0xBA /* ':' -> */,
|
|
/* pos 0365: 480 */ 0x00, 0x29 /* - terminal marker 41 - */,
|
|
/* pos 0367: 481 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0368: 482 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0369: 483 */ 0xF4 /* 't' -> */,
|
|
/* pos 036a: 484 */ 0xE8 /* 'h' -> */,
|
|
/* pos 036b: 485 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0372 state 486) */,
|
|
0x6F /* 'o' */, 0x0E, 0x00 /* (to 0x037C state 495) */,
|
|
0x08, /* fail */
|
|
/* pos 0372: 486 */ 0xEE /* 'n' -> */,
|
|
/* pos 0373: 487 */ 0xF4 /* 't' -> */,
|
|
/* pos 0374: 488 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0375: 489 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0376: 490 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0377: 491 */ 0xF4 /* 't' -> */,
|
|
/* pos 0378: 492 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0379: 493 */ 0xBA /* ':' -> */,
|
|
/* pos 037a: 494 */ 0x00, 0x3B /* - terminal marker 59 - */,
|
|
/* pos 037c: 495 */ 0xF2 /* 'r' -> */,
|
|
/* pos 037d: 496 */ 0xE9 /* 'i' -> */,
|
|
/* pos 037e: 497 */ 0xFA /* 'z' -> */,
|
|
/* pos 037f: 498 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0380: 499 */ 0xF4 /* 't' -> */,
|
|
/* pos 0381: 500 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0382: 501 */ 0xEF /* 'o' -> */,
|
|
/* pos 0383: 502 */ 0xEE /* 'n' -> */,
|
|
/* pos 0384: 503 */ 0xBA /* ':' -> */,
|
|
/* pos 0385: 504 */ 0x00, 0x3C /* - terminal marker 60 - */,
|
|
/* pos 0387: 505 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0388: 506 */ 0xF3 /* 's' -> */,
|
|
/* pos 0389: 507 */ 0xE8 /* 'h' -> */,
|
|
/* pos 038a: 508 */ 0xBA /* ':' -> */,
|
|
/* pos 038b: 509 */ 0x00, 0x3D /* - terminal marker 61 - */,
|
|
/* pos 038d: 510 */ 0xE1 /* 'a' -> */,
|
|
/* pos 038e: 511 */ 0xEE /* 'n' -> */,
|
|
/* pos 038f: 512 */ 0xF3 /* 's' -> */,
|
|
/* pos 0390: 513 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0391: 514 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0392: 515 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0393: 516 */ 0xAD /* '-' -> */,
|
|
/* pos 0394: 517 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0395: 518 */ 0xEE /* 'n' -> */,
|
|
/* pos 0396: 519 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0397: 520 */ 0xEF /* 'o' -> */,
|
|
/* pos 0398: 521 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0399: 522 */ 0xE9 /* 'i' -> */,
|
|
/* pos 039a: 523 */ 0xEE /* 'n' -> */,
|
|
/* pos 039b: 524 */ 0xE7 /* 'g' -> */,
|
|
/* pos 039c: 525 */ 0xBA /* ':' -> */,
|
|
/* pos 039d: 526 */ 0x00, 0x42 /* - terminal marker 66 - */,
|
|
/* pos 039f: 527 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x03A6 state 528) */,
|
|
0x69 /* 'i' */, 0x09, 0x00 /* (to 0x03AB state 532) */,
|
|
0x08, /* fail */
|
|
/* pos 03a6: 528 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03a7: 529 */ 0xF9 /* 'y' -> */,
|
|
/* pos 03a8: 530 */ 0xBA /* ':' -> */,
|
|
/* pos 03a9: 531 */ 0x00, 0x44 /* - terminal marker 68 - */,
|
|
/* pos 03ab: 532 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03ac: 533 */ 0xBA /* ':' -> */,
|
|
/* pos 03ad: 534 */ 0x00, 0x45 /* - terminal marker 69 - */,
|
|
/* pos 03af: 535 */ 0xF7 /* 'w' -> */,
|
|
/* pos 03b0: 536 */ 0xF7 /* 'w' -> */,
|
|
/* pos 03b1: 537 */ 0xAD /* '-' -> */,
|
|
/* pos 03b2: 538 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03b3: 539 */ 0xF5 /* 'u' -> */,
|
|
/* pos 03b4: 540 */ 0xF4 /* 't' -> */,
|
|
/* pos 03b5: 541 */ 0xE8 /* 'h' -> */,
|
|
/* pos 03b6: 542 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03b7: 543 */ 0xEE /* 'n' -> */,
|
|
/* pos 03b8: 544 */ 0xF4 /* 't' -> */,
|
|
/* pos 03b9: 545 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03ba: 546 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03bb: 547 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03bc: 548 */ 0xF4 /* 't' -> */,
|
|
/* pos 03bd: 549 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03be: 550 */ 0xBA /* ':' -> */,
|
|
/* pos 03bf: 551 */ 0x00, 0x46 /* - terminal marker 70 - */,
|
|
/* pos 03c1: 552 */ 0xF4 /* 't' -> */,
|
|
/* pos 03c2: 553 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03c3: 554 */ 0xE8 /* 'h' -> */,
|
|
/* pos 03c4: 555 */ 0x00, 0x47 /* - terminal marker 71 - */,
|
|
/* pos 03c6: 556 */ 0xF4 /* 't' -> */,
|
|
/* pos 03c7: 557 */ 0x00, 0x3F /* - terminal marker 63 - */,
|
|
/* pos 03c9: 558 */ 0xEC /* 'l' -> */,
|
|
/* pos 03ca: 559 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03cb: 560 */ 0xF4 /* 't' -> */,
|
|
/* pos 03cc: 561 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03cd: 562 */ 0x00, 0x40 /* - terminal marker 64 - */,
|
|
/* pos 03cf: 563 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03d0: 564 */ 0xAD /* '-' -> */,
|
|
/* pos 03d1: 565 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03d2: 566 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03d3: 567 */ 0xE7 /* 'g' -> */,
|
|
/* pos 03d4: 568 */ 0xF3 /* 's' -> */,
|
|
/* pos 03d5: 569 */ 0x00, 0x41 /* - terminal marker 65 - */,
|
|
/* pos 03d7: 570 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03d8: 571 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03d9: 572 */ 0xEC /* 'l' -> */,
|
|
/* pos 03da: 573 */ 0xAD /* '-' -> */,
|
|
/* pos 03db: 574 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03dc: 575 */ 0xF0 /* 'p' -> */,
|
|
/* pos 03dd: 576 */ 0xBA /* ':' -> */,
|
|
/* pos 03de: 577 */ 0x00, 0x43 /* - terminal marker 67 - */,
|
|
/* pos 03e0: 578 */ 0xB1 /* '1' -> */,
|
|
/* pos 03e1: 579 */ 0xAE /* '.' -> */,
|
|
/* pos 03e2: 580 */ 0x30 /* '0' */, 0x07, 0x00 /* (to 0x03E9 state 581) */,
|
|
0x31 /* '1' */, 0x61, 0x00 /* (to 0x0446 state 646) */,
|
|
0x08, /* fail */
|
|
/* pos 03e9: 581 */ 0xA0 /* ' ' -> */,
|
|
/* pos 03ea: 582 */ 0x00, 0x44 /* - terminal marker 68 - */,
|
|
/* pos 03ec: 583 */ 0xEC /* 'l' -> */,
|
|
/* pos 03ed: 584 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03ee: 585 */ 0xF9 /* 'y' -> */,
|
|
/* pos 03ef: 586 */ 0xAD /* '-' -> */,
|
|
/* pos 03f0: 587 */ 0xEE /* 'n' -> */,
|
|
/* pos 03f1: 588 */ 0xEF /* 'o' -> */,
|
|
/* pos 03f2: 589 */ 0xEE /* 'n' -> */,
|
|
/* pos 03f3: 590 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03f4: 591 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03f5: 592 */ 0xBA /* ':' -> */,
|
|
/* pos 03f6: 593 */ 0x00, 0x4D /* - terminal marker 77 - */,
|
|
/* pos 03f8: 594 */ 0x70 /* 'p' */, 0x0D, 0x00 /* (to 0x0405 state 595) */,
|
|
0x61 /* 'a' */, 0x5F, 0x00 /* (to 0x045A state 663) */,
|
|
0x6D /* 'm' */, 0x68, 0x00 /* (to 0x0466 state 673) */,
|
|
0x73 /* 's' */, 0x70, 0x00 /* (to 0x0471 state 682) */,
|
|
0x08, /* fail */
|
|
/* pos 0405: 595 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x040C state 596) */,
|
|
0x61 /* 'a' */, 0x65, 0x00 /* (to 0x046D state 679) */,
|
|
0x08, /* fail */
|
|
/* pos 040c: 596 */ 0xEF /* 'o' -> */,
|
|
/* pos 040d: 597 */ 0xF4 /* 't' -> */,
|
|
/* pos 040e: 598 */ 0xEF /* 'o' -> */,
|
|
/* pos 040f: 599 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0410: 600 */ 0xEF /* 'o' -> */,
|
|
/* pos 0411: 601 */ 0xEC /* 'l' -> */,
|
|
/* pos 0412: 602 */ 0x00, 0x4E /* - terminal marker 78 - */,
|
|
/* pos 0414: 603 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0415: 604 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0416: 605 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0417: 606 */ 0xF4 /* 't' -> */,
|
|
/* pos 0418: 607 */ 0xBA /* ':' -> */,
|
|
/* pos 0419: 608 */ 0x00, 0x06 /* - terminal marker 6 - */,
|
|
/* pos 041b: 609 */ 0xF8 /* 'x' -> */,
|
|
/* pos 041c: 610 */ 0xF4 /* 't' -> */,
|
|
/* pos 041d: 611 */ 0xE5 /* 'e' -> */,
|
|
/* pos 041e: 612 */ 0xEE /* 'n' -> */,
|
|
/* pos 041f: 613 */ 0xF3 /* 's' -> */,
|
|
/* pos 0420: 614 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0421: 615 */ 0xEF /* 'o' -> */,
|
|
/* pos 0422: 616 */ 0xEE /* 'n' -> */,
|
|
/* pos 0423: 617 */ 0xF3 /* 's' -> */,
|
|
/* pos 0424: 618 */ 0xBA /* ':' -> */,
|
|
/* pos 0425: 619 */ 0x00, 0x08 /* - terminal marker 8 - */,
|
|
/* pos 0427: 620 */ 0xBA /* ':' -> */,
|
|
/* pos 0428: 621 */ 0x00, 0x09 /* - terminal marker 9 - */,
|
|
/* pos 042a: 622 */ 0xBA /* ':' -> */,
|
|
/* pos 042b: 623 */ 0x00, 0x0A /* - terminal marker 10 - */,
|
|
/* pos 042d: 624 */ 0xF2 /* 'r' -> */,
|
|
/* pos 042e: 625 */ 0xEF /* 'o' -> */,
|
|
/* pos 042f: 626 */ 0xF4 /* 't' -> */,
|
|
/* pos 0430: 627 */ 0xEF /* 'o' -> */,
|
|
/* pos 0431: 628 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0432: 629 */ 0xEF /* 'o' -> */,
|
|
/* pos 0433: 630 */ 0xEC /* 'l' -> */,
|
|
/* pos 0434: 631 */ 0xBA /* ':' -> */,
|
|
/* pos 0435: 632 */ 0x00, 0x0B /* - terminal marker 11 - */,
|
|
/* pos 0437: 633 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0438: 634 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0439: 635 */ 0xE5 /* 'e' -> */,
|
|
/* pos 043a: 636 */ 0xF0 /* 'p' -> */,
|
|
/* pos 043b: 637 */ 0xF4 /* 't' -> */,
|
|
/* pos 043c: 638 */ 0xBA /* ':' -> */,
|
|
/* pos 043d: 639 */ 0x00, 0x0C /* - terminal marker 12 - */,
|
|
/* pos 043f: 640 */ 0xEF /* 'o' -> */,
|
|
/* pos 0440: 641 */ 0xEE /* 'n' -> */,
|
|
/* pos 0441: 642 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0442: 643 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0443: 644 */ 0xBA /* ':' -> */,
|
|
/* pos 0444: 645 */ 0x00, 0x0D /* - terminal marker 13 - */,
|
|
/* pos 0446: 646 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0447: 647 */ 0x00, 0x0E /* - terminal marker 14 - */,
|
|
/* pos 0449: 648 */ 0xE5 /* 'e' -> */,
|
|
/* pos 044a: 649 */ 0xF2 /* 'r' -> */,
|
|
/* pos 044b: 650 */ 0xF3 /* 's' -> */,
|
|
/* pos 044c: 651 */ 0xE9 /* 'i' -> */,
|
|
/* pos 044d: 652 */ 0xEF /* 'o' -> */,
|
|
/* pos 044e: 653 */ 0xEE /* 'n' -> */,
|
|
/* pos 044f: 654 */ 0xBA /* ':' -> */,
|
|
/* pos 0450: 655 */ 0x00, 0x1F /* - terminal marker 31 - */,
|
|
/* pos 0452: 656 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0453: 657 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0454: 658 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0455: 659 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0456: 660 */ 0xEE /* 'n' -> */,
|
|
/* pos 0457: 661 */ 0xBA /* ':' -> */,
|
|
/* pos 0458: 662 */ 0x00, 0x20 /* - terminal marker 32 - */,
|
|
/* pos 045a: 663 */ 0xF5 /* 'u' -> */,
|
|
/* pos 045b: 664 */ 0xF4 /* 't' -> */,
|
|
/* pos 045c: 665 */ 0xE8 /* 'h' -> */,
|
|
/* pos 045d: 666 */ 0xEF /* 'o' -> */,
|
|
/* pos 045e: 667 */ 0xF2 /* 'r' -> */,
|
|
/* pos 045f: 668 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0460: 669 */ 0xF4 /* 't' -> */,
|
|
/* pos 0461: 670 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0462: 671 */ 0x00, 0x21 /* - terminal marker 33 - */,
|
|
/* pos 0464: 672 */ 0x00, 0x10 /* - terminal marker 16 - */,
|
|
/* pos 0466: 673 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0467: 674 */ 0xF4 /* 't' -> */,
|
|
/* pos 0468: 675 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0469: 676 */ 0xEF /* 'o' -> */,
|
|
/* pos 046a: 677 */ 0xE4 /* 'd' -> */,
|
|
/* pos 046b: 678 */ 0x00, 0x22 /* - terminal marker 34 - */,
|
|
/* pos 046d: 679 */ 0xF4 /* 't' -> */,
|
|
/* pos 046e: 680 */ 0xE8 /* 'h' -> */,
|
|
/* pos 046f: 681 */ 0x00, 0x23 /* - terminal marker 35 - */,
|
|
/* pos 0471: 682 */ 0x63 /* 'c' */, 0x07, 0x00 /* (to 0x0478 state 683) */,
|
|
0x74 /* 't' */, 0x0A, 0x00 /* (to 0x047E state 688) */,
|
|
0x08, /* fail */
|
|
/* pos 0478: 683 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0479: 684 */ 0xE5 /* 'e' -> */,
|
|
/* pos 047a: 685 */ 0xED /* 'm' -> */,
|
|
/* pos 047b: 686 */ 0xE5 /* 'e' -> */,
|
|
/* pos 047c: 687 */ 0x00, 0x24 /* - terminal marker 36 - */,
|
|
/* pos 047e: 688 */ 0xE1 /* 'a' -> */,
|
|
/* pos 047f: 689 */ 0xF4 /* 't' -> */,
|
|
/* pos 0480: 690 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0481: 691 */ 0xF3 /* 's' -> */,
|
|
/* pos 0482: 692 */ 0x00, 0x25 /* - terminal marker 37 - */,
|
|
/* pos 0484: 693 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0485: 694 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0486: 695 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0487: 696 */ 0xF3 /* 's' -> */,
|
|
/* pos 0488: 697 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0489: 698 */ 0xF4 /* 't' -> */,
|
|
/* pos 048a: 699 */ 0xBA /* ':' -> */,
|
|
/* pos 048b: 700 */ 0x00, 0x26 /* - terminal marker 38 - */,
|
|
/* pos 048d: 701 */ 0xF5 /* 'u' -> */,
|
|
/* pos 048e: 702 */ 0xF4 /* 't' -> */,
|
|
/* pos 048f: 703 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0490: 704 */ 0xAD /* '-' -> */,
|
|
/* pos 0491: 705 */ 0xF4 /* 't' -> */,
|
|
/* pos 0492: 706 */ 0xEF /* 'o' -> */,
|
|
/* pos 0493: 707 */ 0xEB /* 'k' -> */,
|
|
/* pos 0494: 708 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0495: 709 */ 0xEE /* 'n' -> */,
|
|
/* pos 0496: 710 */ 0xBA /* ':' -> */,
|
|
/* pos 0497: 711 */ 0x00, 0x4F /* - terminal marker 79 - */,
|
|
/* total size 1177 bytes */
|
|
#endif
|
|
|
|
#if defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && defined(LWS_ROLE_WS) && defined(LWS_ROLE_H2)
|
|
/* 0: 0: get */
|
|
/* 1: 1: post */
|
|
/* 2: 2: options */
|
|
/* 3: 3: host: */
|
|
/* 4: 4: connection: */
|
|
/* 5: 5: upgrade: */
|
|
/* 6: 6: origin: */
|
|
/* 7: 7: sec-websocket-draft: */
|
|
/* 8: 8:
|
|
*/
|
|
/* 9: 9: sec-websocket-extensions: */
|
|
/* 10: 10: sec-websocket-key1: */
|
|
/* 11: 11: sec-websocket-key2: */
|
|
/* 12: 12: sec-websocket-protocol: */
|
|
/* 13: 13: sec-websocket-accept: */
|
|
/* 14: 14: sec-websocket-nonce: */
|
|
/* 15: 15: http/1.1 */
|
|
/* 16: 16: http2-settings: */
|
|
/* 17: 17: accept: */
|
|
/* 18: 18: access-control-request-headers: */
|
|
/* 19: 19: if-modified-since: */
|
|
/* 20: 20: if-none-match: */
|
|
/* 21: 21: accept-encoding: */
|
|
/* 22: 22: accept-language: */
|
|
/* 23: 23: pragma: */
|
|
/* 24: 24: cache-control: */
|
|
/* 25: 25: authorization: */
|
|
/* 26: 26: cookie: */
|
|
/* 27: 27: content-length: */
|
|
/* 28: 28: content-type: */
|
|
/* 29: 29: date: */
|
|
/* 30: 30: range: */
|
|
/* 31: 31: referer: */
|
|
/* 32: 32: sec-websocket-key: */
|
|
/* 33: 33: sec-websocket-version: */
|
|
/* 34: 34: sec-websocket-origin: */
|
|
/* 35: 35: :authority */
|
|
/* 36: 36: :method */
|
|
/* 37: 37: :path */
|
|
/* 38: 38: :scheme */
|
|
/* 39: 39: :status */
|
|
/* 40: 40: accept-charset: */
|
|
/* 41: 41: accept-ranges: */
|
|
/* 42: 42: access-control-allow-origin: */
|
|
/* 43: 43: age: */
|
|
/* 44: 44: allow: */
|
|
/* 45: 45: content-disposition: */
|
|
/* 46: 46: content-encoding: */
|
|
/* 47: 47: content-language: */
|
|
/* 48: 48: content-location: */
|
|
/* 49: 49: content-range: */
|
|
/* 50: 50: etag: */
|
|
/* 51: 51: expect: */
|
|
/* 52: 52: expires: */
|
|
/* 53: 53: from: */
|
|
/* 54: 54: if-match: */
|
|
/* 55: 55: if-range: */
|
|
/* 56: 56: if-unmodified-since: */
|
|
/* 57: 57: last-modified: */
|
|
/* 58: 58: link: */
|
|
/* 59: 59: location: */
|
|
/* 60: 60: max-forwards: */
|
|
/* 61: 61: proxy-authenticate: */
|
|
/* 62: 62: proxy-authorization: */
|
|
/* 63: 63: refresh: */
|
|
/* 64: 64: retry-after: */
|
|
/* 65: 65: server: */
|
|
/* 66: 66: set-cookie: */
|
|
/* 67: 67: strict-transport-security: */
|
|
/* 68: 68: transfer-encoding: */
|
|
/* 69: 69: user-agent: */
|
|
/* 70: 70: vary: */
|
|
/* 71: 71: via: */
|
|
/* 72: 72: www-authenticate: */
|
|
/* 73: 73: patch */
|
|
/* 74: 74: put */
|
|
/* 75: 75: delete */
|
|
/* 76: 76: uri-args */
|
|
/* 77: 77: proxy */
|
|
/* 78: 78: x-real-ip: */
|
|
/* 79: 79: http/1.0 */
|
|
/* 80: 80: x-forwarded-for: */
|
|
/* 81: 81: connect */
|
|
/* 82: 82: head */
|
|
/* 83: 83: te: */
|
|
/* 84: 84: replay-nonce: */
|
|
/* 85: 85: :protocol */
|
|
/* 86: 86: x-auth-token: */
|
|
/* 87: 87: */
|
|
/* pos 0000: 0 */ 0x67 /* 'g' */, 0x40, 0x00 /* (to 0x0040 state 1) */,
|
|
0x70 /* 'p' */, 0x42, 0x00 /* (to 0x0045 state 5) */,
|
|
0x68 /* 'h' */, 0x51, 0x00 /* (to 0x0057 state 10) */,
|
|
0x63 /* 'c' */, 0x5D, 0x00 /* (to 0x0066 state 15) */,
|
|
0x75 /* 'u' */, 0x7E, 0x00 /* (to 0x008A state 26) */,
|
|
0x6F /* 'o' */, 0x8D, 0x00 /* (to 0x009C state 34) */,
|
|
0x0D /* '.' */, 0x98, 0x00 /* (to 0x00AA state 41) */,
|
|
0x61 /* 'a' */, 0xAD, 0x00 /* (to 0x00C2 state 57) */,
|
|
0x69 /* 'i' */, 0xE2, 0x00 /* (to 0x00FA state 88) */,
|
|
0x64 /* 'd' */, 0x7D, 0x01 /* (to 0x0198 state 177) */,
|
|
0x72 /* 'r' */, 0x86, 0x01 /* (to 0x01A4 state 182) */,
|
|
0x65 /* 'e' */, 0xEB, 0x01 /* (to 0x020C state 256) */,
|
|
0x66 /* 'f' */, 0x07, 0x02 /* (to 0x022B state 272) */,
|
|
0x6C /* 'l' */, 0x30, 0x02 /* (to 0x0257 state 306) */,
|
|
0x6D /* 'm' */, 0x53, 0x02 /* (to 0x027D state 332) */,
|
|
0x73 /* 's' */, 0x69, 0x02 /* (to 0x0296 state 355) */,
|
|
0x78 /* 'x' */, 0xB7, 0x02 /* (to 0x02E7 state 410) */,
|
|
0x74 /* 't' */, 0xD5, 0x02 /* (to 0x0308 state 431) */,
|
|
0x76 /* 'v' */, 0x69, 0x03 /* (to 0x039F state 527) */,
|
|
0x77 /* 'w' */, 0x76, 0x03 /* (to 0x03AF state 535) */,
|
|
0x3A /* ':' */, 0xBC, 0x03 /* (to 0x03F8 state 594) */,
|
|
0x08, /* fail */
|
|
/* pos 0040: 1 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0041: 2 */ 0xF4 /* 't' -> */,
|
|
/* pos 0042: 3 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0043: 4 */ 0x00, 0x00 /* - terminal marker 0 - */,
|
|
/* pos 0045: 5 */ 0x6F /* 'o' */, 0x0D, 0x00 /* (to 0x0052 state 6) */,
|
|
0x72 /* 'r' */, 0xF6, 0x00 /* (to 0x013E state 123) */,
|
|
0x61 /* 'a' */, 0x76, 0x03 /* (to 0x03C1 state 552) */,
|
|
0x75 /* 'u' */, 0x78, 0x03 /* (to 0x03C6 state 556) */,
|
|
0x08, /* fail */
|
|
/* pos 0052: 6 */ 0xF3 /* 's' -> */,
|
|
/* pos 0053: 7 */ 0xF4 /* 't' -> */,
|
|
/* pos 0054: 8 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0055: 9 */ 0x00, 0x01 /* - terminal marker 1 - */,
|
|
/* pos 0057: 10 */ 0x6F /* 'o' */, 0x0A, 0x00 /* (to 0x0061 state 11) */,
|
|
0x74 /* 't' */, 0x53, 0x00 /* (to 0x00AD state 43) */,
|
|
0x65 /* 'e' */, 0xA6, 0x02 /* (to 0x0303 state 427) */,
|
|
0x08, /* fail */
|
|
/* pos 0061: 11 */ 0xF3 /* 's' -> */,
|
|
/* pos 0062: 12 */ 0xF4 /* 't' -> */,
|
|
/* pos 0063: 13 */ 0xBA /* ':' -> */,
|
|
/* pos 0064: 14 */ 0x00, 0x03 /* - terminal marker 3 - */,
|
|
/* pos 0066: 15 */ 0x6F /* 'o' */, 0x07, 0x00 /* (to 0x006D state 16) */,
|
|
0x61 /* 'a' */, 0xE2, 0x00 /* (to 0x014B state 129) */,
|
|
0x08, /* fail */
|
|
/* pos 006d: 16 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x0074 state 17) */,
|
|
0x6F /* 'o' */, 0xF7, 0x00 /* (to 0x0167 state 155) */,
|
|
0x08, /* fail */
|
|
/* pos 0074: 17 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x007B state 18) */,
|
|
0x74 /* 't' */, 0xF6, 0x00 /* (to 0x016D state 160) */,
|
|
0x08, /* fail */
|
|
/* pos 007b: 18 */ 0xE5 /* 'e' -> */,
|
|
/* pos 007c: 19 */ 0xE3 /* 'c' -> */,
|
|
/* pos 007d: 20 */ 0xF4 /* 't' -> */,
|
|
/* pos 007e: 21 */ 0x69 /* 'i' */, 0x07, 0x00 /* (to 0x0085 state 22) */,
|
|
0x20 /* ' ' */, 0x80, 0x02 /* (to 0x0301 state 426) */,
|
|
0x08, /* fail */
|
|
/* pos 0085: 22 */ 0xEF /* 'o' -> */,
|
|
/* pos 0086: 23 */ 0xEE /* 'n' -> */,
|
|
/* pos 0087: 24 */ 0xBA /* ':' -> */,
|
|
/* pos 0088: 25 */ 0x00, 0x04 /* - terminal marker 4 - */,
|
|
/* pos 008a: 26 */ 0x70 /* 'p' */, 0x0A, 0x00 /* (to 0x0094 state 27) */,
|
|
0x73 /* 's' */, 0x44, 0x02 /* (to 0x02D1 state 396) */,
|
|
0x72 /* 'r' */, 0x3F, 0x03 /* (to 0x03CF state 563) */,
|
|
0x08, /* fail */
|
|
/* pos 0094: 27 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0095: 28 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0096: 29 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0097: 30 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0098: 31 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0099: 32 */ 0xBA /* ':' -> */,
|
|
/* pos 009a: 33 */ 0x00, 0x05 /* - terminal marker 5 - */,
|
|
/* pos 009c: 34 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x00A3 state 35) */,
|
|
0x70 /* 'p' */, 0x73, 0x02 /* (to 0x0312 state 434) */,
|
|
0x08, /* fail */
|
|
/* pos 00a3: 35 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00a4: 36 */ 0xE7 /* 'g' -> */,
|
|
/* pos 00a5: 37 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00a6: 38 */ 0xEE /* 'n' -> */,
|
|
/* pos 00a7: 39 */ 0xBA /* ':' -> */,
|
|
/* pos 00a8: 40 */ 0x00, 0x06 /* - terminal marker 6 - */,
|
|
/* pos 00aa: 41 */ 0x8A /* '.' -> */,
|
|
/* pos 00ab: 42 */ 0x00, 0x08 /* - terminal marker 8 - */,
|
|
/* pos 00ad: 43 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ae: 44 */ 0xF0 /* 'p' -> */,
|
|
/* pos 00af: 45 */ 0x32 /* '2' */, 0x07, 0x00 /* (to 0x00B6 state 46) */,
|
|
0x2F /* '/' */, 0x2E, 0x03 /* (to 0x03E0 state 578) */,
|
|
0x08, /* fail */
|
|
/* pos 00b6: 46 */ 0xAD /* '-' -> */,
|
|
/* pos 00b7: 47 */ 0xF3 /* 's' -> */,
|
|
/* pos 00b8: 48 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00b9: 49 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ba: 50 */ 0xF4 /* 't' -> */,
|
|
/* pos 00bb: 51 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00bc: 52 */ 0xEE /* 'n' -> */,
|
|
/* pos 00bd: 53 */ 0xE7 /* 'g' -> */,
|
|
/* pos 00be: 54 */ 0xF3 /* 's' -> */,
|
|
/* pos 00bf: 55 */ 0xBA /* ':' -> */,
|
|
/* pos 00c0: 56 */ 0x00, 0x10 /* - terminal marker 16 - */,
|
|
/* pos 00c2: 57 */ 0x63 /* 'c' */, 0x0D, 0x00 /* (to 0x00CF state 58) */,
|
|
0x75 /* 'u' */, 0x94, 0x00 /* (to 0x0159 state 142) */,
|
|
0x6C /* 'l' */, 0x0E, 0x01 /* (to 0x01D6 state 208) */,
|
|
0x67 /* 'g' */, 0x98, 0x02 /* (to 0x0363 state 478) */,
|
|
0x08, /* fail */
|
|
/* pos 00cf: 58 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00d0: 59 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00d1: 60 */ 0x73 /* 's' */, 0x07, 0x00 /* (to 0x00D8 state 61) */,
|
|
0x70 /* 'p' */, 0x41, 0x00 /* (to 0x0115 state 102) */,
|
|
0x08, /* fail */
|
|
/* pos 00d8: 61 */ 0xF3 /* 's' -> */,
|
|
/* pos 00d9: 62 */ 0xAD /* '-' -> */,
|
|
/* pos 00da: 63 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00db: 64 */ 0xEF /* 'o' -> */,
|
|
/* pos 00dc: 65 */ 0xEE /* 'n' -> */,
|
|
/* pos 00dd: 66 */ 0xF4 /* 't' -> */,
|
|
/* pos 00de: 67 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00df: 68 */ 0xEF /* 'o' -> */,
|
|
/* pos 00e0: 69 */ 0xEC /* 'l' -> */,
|
|
/* pos 00e1: 70 */ 0xAD /* '-' -> */,
|
|
/* pos 00e2: 71 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x00E9 state 72) */,
|
|
0x61 /* 'a' */, 0xE3, 0x00 /* (to 0x01C8 state 195) */,
|
|
0x08, /* fail */
|
|
/* pos 00e9: 72 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00ea: 73 */ 0xF1 /* 'q' -> */,
|
|
/* pos 00eb: 74 */ 0xF5 /* 'u' -> */,
|
|
/* pos 00ec: 75 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00ed: 76 */ 0xF3 /* 's' -> */,
|
|
/* pos 00ee: 77 */ 0xF4 /* 't' -> */,
|
|
/* pos 00ef: 78 */ 0xAD /* '-' -> */,
|
|
/* pos 00f0: 79 */ 0xE8 /* 'h' -> */,
|
|
/* pos 00f1: 80 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00f2: 81 */ 0xE1 /* 'a' -> */,
|
|
/* pos 00f3: 82 */ 0xE4 /* 'd' -> */,
|
|
/* pos 00f4: 83 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00f5: 84 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00f6: 85 */ 0xF3 /* 's' -> */,
|
|
/* pos 00f7: 86 */ 0xBA /* ':' -> */,
|
|
/* pos 00f8: 87 */ 0x00, 0x12 /* - terminal marker 18 - */,
|
|
/* pos 00fa: 88 */ 0xE6 /* 'f' -> */,
|
|
/* pos 00fb: 89 */ 0xAD /* '-' -> */,
|
|
/* pos 00fc: 90 */ 0x6E /* 'n' */, 0x0D, 0x00 /* (to 0x0109 state 91) */,
|
|
0x6D /* 'm' */, 0x32, 0x01 /* (to 0x0231 state 277) */,
|
|
0x72 /* 'r' */, 0x3C, 0x01 /* (to 0x023E state 283) */,
|
|
0x75 /* 'u' */, 0x40, 0x01 /* (to 0x0245 state 289) */,
|
|
0x08, /* fail */
|
|
/* pos 0109: 91 */ 0xEF /* 'o' -> */,
|
|
/* pos 010a: 92 */ 0xEE /* 'n' -> */,
|
|
/* pos 010b: 93 */ 0xE5 /* 'e' -> */,
|
|
/* pos 010c: 94 */ 0xAD /* '-' -> */,
|
|
/* pos 010d: 95 */ 0xED /* 'm' -> */,
|
|
/* pos 010e: 96 */ 0xE1 /* 'a' -> */,
|
|
/* pos 010f: 97 */ 0xF4 /* 't' -> */,
|
|
/* pos 0110: 98 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0111: 99 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0112: 100 */ 0xBA /* ':' -> */,
|
|
/* pos 0113: 101 */ 0x00, 0x14 /* - terminal marker 20 - */,
|
|
/* pos 0115: 102 */ 0xF4 /* 't' -> */,
|
|
/* pos 0116: 103 */ 0x2D /* '-' */, 0x07, 0x00 /* (to 0x011D state 104) */,
|
|
0x3A /* ':' */, 0x4B, 0x03 /* (to 0x0464 state 672) */,
|
|
0x08, /* fail */
|
|
/* pos 011d: 104 */ 0x65 /* 'e' */, 0x0D, 0x00 /* (to 0x012A state 105) */,
|
|
0x6C /* 'l' */, 0x14, 0x00 /* (to 0x0134 state 114) */,
|
|
0x72 /* 'r' */, 0x38, 0x02 /* (to 0x035B state 471) */,
|
|
0x63 /* 'c' */, 0x5E, 0x03 /* (to 0x0484 state 693) */,
|
|
0x08, /* fail */
|
|
/* pos 012a: 105 */ 0xEE /* 'n' -> */,
|
|
/* pos 012b: 106 */ 0xE3 /* 'c' -> */,
|
|
/* pos 012c: 107 */ 0xEF /* 'o' -> */,
|
|
/* pos 012d: 108 */ 0xE4 /* 'd' -> */,
|
|
/* pos 012e: 109 */ 0xE9 /* 'i' -> */,
|
|
/* pos 012f: 110 */ 0xEE /* 'n' -> */,
|
|
/* pos 0130: 111 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0131: 112 */ 0xBA /* ':' -> */,
|
|
/* pos 0132: 113 */ 0x00, 0x15 /* - terminal marker 21 - */,
|
|
/* pos 0134: 114 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0135: 115 */ 0xEE /* 'n' -> */,
|
|
/* pos 0136: 116 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0137: 117 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0138: 118 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0139: 119 */ 0xE7 /* 'g' -> */,
|
|
/* pos 013a: 120 */ 0xE5 /* 'e' -> */,
|
|
/* pos 013b: 121 */ 0xBA /* ':' -> */,
|
|
/* pos 013c: 122 */ 0x00, 0x16 /* - terminal marker 22 - */,
|
|
/* pos 013e: 123 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x0145 state 124) */,
|
|
0x6F /* 'o' */, 0x9B, 0x01 /* (to 0x02DC state 406) */,
|
|
0x08, /* fail */
|
|
/* pos 0145: 124 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0146: 125 */ 0xED /* 'm' -> */,
|
|
/* pos 0147: 126 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0148: 127 */ 0xBA /* ':' -> */,
|
|
/* pos 0149: 128 */ 0x00, 0x17 /* - terminal marker 23 - */,
|
|
/* pos 014b: 129 */ 0xE3 /* 'c' -> */,
|
|
/* pos 014c: 130 */ 0xE8 /* 'h' -> */,
|
|
/* pos 014d: 131 */ 0xE5 /* 'e' -> */,
|
|
/* pos 014e: 132 */ 0xAD /* '-' -> */,
|
|
/* pos 014f: 133 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0150: 134 */ 0xEF /* 'o' -> */,
|
|
/* pos 0151: 135 */ 0xEE /* 'n' -> */,
|
|
/* pos 0152: 136 */ 0xF4 /* 't' -> */,
|
|
/* pos 0153: 137 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0154: 138 */ 0xEF /* 'o' -> */,
|
|
/* pos 0155: 139 */ 0xEC /* 'l' -> */,
|
|
/* pos 0156: 140 */ 0xBA /* ':' -> */,
|
|
/* pos 0157: 141 */ 0x00, 0x18 /* - terminal marker 24 - */,
|
|
/* pos 0159: 142 */ 0xF4 /* 't' -> */,
|
|
/* pos 015a: 143 */ 0xE8 /* 'h' -> */,
|
|
/* pos 015b: 144 */ 0xEF /* 'o' -> */,
|
|
/* pos 015c: 145 */ 0xF2 /* 'r' -> */,
|
|
/* pos 015d: 146 */ 0xE9 /* 'i' -> */,
|
|
/* pos 015e: 147 */ 0xFA /* 'z' -> */,
|
|
/* pos 015f: 148 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0160: 149 */ 0xF4 /* 't' -> */,
|
|
/* pos 0161: 150 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0162: 151 */ 0xEF /* 'o' -> */,
|
|
/* pos 0163: 152 */ 0xEE /* 'n' -> */,
|
|
/* pos 0164: 153 */ 0xBA /* ':' -> */,
|
|
/* pos 0165: 154 */ 0x00, 0x19 /* - terminal marker 25 - */,
|
|
/* pos 0167: 155 */ 0xEB /* 'k' -> */,
|
|
/* pos 0168: 156 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0169: 157 */ 0xE5 /* 'e' -> */,
|
|
/* pos 016a: 158 */ 0xBA /* ':' -> */,
|
|
/* pos 016b: 159 */ 0x00, 0x1A /* - terminal marker 26 - */,
|
|
/* pos 016d: 160 */ 0xE5 /* 'e' -> */,
|
|
/* pos 016e: 161 */ 0xEE /* 'n' -> */,
|
|
/* pos 016f: 162 */ 0xF4 /* 't' -> */,
|
|
/* pos 0170: 163 */ 0xAD /* '-' -> */,
|
|
/* pos 0171: 164 */ 0x6C /* 'l' */, 0x10, 0x00 /* (to 0x0181 state 165) */,
|
|
0x74 /* 't' */, 0x1E, 0x00 /* (to 0x0192 state 172) */,
|
|
0x64 /* 'd' */, 0x65, 0x00 /* (to 0x01DC state 213) */,
|
|
0x65 /* 'e' */, 0x6F, 0x00 /* (to 0x01E9 state 225) */,
|
|
0x72 /* 'r' */, 0x88, 0x00 /* (to 0x0205 state 250) */,
|
|
0x08, /* fail */
|
|
/* pos 0181: 165 */ 0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x018B state 166) */,
|
|
0x61 /* 'a' */, 0x6F, 0x00 /* (to 0x01F3 state 234) */,
|
|
0x6F /* 'o' */, 0x75, 0x00 /* (to 0x01FC state 242) */,
|
|
0x08, /* fail */
|
|
/* pos 018b: 166 */ 0xEE /* 'n' -> */,
|
|
/* pos 018c: 167 */ 0xE7 /* 'g' -> */,
|
|
/* pos 018d: 168 */ 0xF4 /* 't' -> */,
|
|
/* pos 018e: 169 */ 0xE8 /* 'h' -> */,
|
|
/* pos 018f: 170 */ 0xBA /* ':' -> */,
|
|
/* pos 0190: 171 */ 0x00, 0x1B /* - terminal marker 27 - */,
|
|
/* pos 0192: 172 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0193: 173 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0194: 174 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0195: 175 */ 0xBA /* ':' -> */,
|
|
/* pos 0196: 176 */ 0x00, 0x1C /* - terminal marker 28 - */,
|
|
/* pos 0198: 177 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x019F state 178) */,
|
|
0x65 /* 'e' */, 0x2E, 0x02 /* (to 0x03C9 state 558) */,
|
|
0x08, /* fail */
|
|
/* pos 019f: 178 */ 0xF4 /* 't' -> */,
|
|
/* pos 01a0: 179 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01a1: 180 */ 0xBA /* ':' -> */,
|
|
/* pos 01a2: 181 */ 0x00, 0x1D /* - terminal marker 29 - */,
|
|
/* pos 01a4: 182 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x01AB state 183) */,
|
|
0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x01B1 state 188) */,
|
|
0x08, /* fail */
|
|
/* pos 01ab: 183 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ac: 184 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01ad: 185 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01ae: 186 */ 0xBA /* ':' -> */,
|
|
/* pos 01af: 187 */ 0x00, 0x1E /* - terminal marker 30 - */,
|
|
/* pos 01b1: 188 */ 0x66 /* 'f' */, 0x0A, 0x00 /* (to 0x01BB state 189) */,
|
|
0x74 /* 't' */, 0xD7, 0x00 /* (to 0x028B state 345) */,
|
|
0x70 /* 'p' */, 0x35, 0x02 /* (to 0x03EC state 583) */,
|
|
0x08, /* fail */
|
|
/* pos 01bb: 189 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x01C2 state 190) */,
|
|
0x72 /* 'r' */, 0xC9, 0x01 /* (to 0x0387 state 505) */,
|
|
0x08, /* fail */
|
|
/* pos 01c2: 190 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01c3: 191 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01c4: 192 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01c5: 193 */ 0xBA /* ':' -> */,
|
|
/* pos 01c6: 194 */ 0x00, 0x1F /* - terminal marker 31 - */,
|
|
/* pos 01c8: 195 */ 0xEC /* 'l' -> */,
|
|
/* pos 01c9: 196 */ 0xEC /* 'l' -> */,
|
|
/* pos 01ca: 197 */ 0xEF /* 'o' -> */,
|
|
/* pos 01cb: 198 */ 0xF7 /* 'w' -> */,
|
|
/* pos 01cc: 199 */ 0xAD /* '-' -> */,
|
|
/* pos 01cd: 200 */ 0xEF /* 'o' -> */,
|
|
/* pos 01ce: 201 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01cf: 202 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d0: 203 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01d1: 204 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d2: 205 */ 0xEE /* 'n' -> */,
|
|
/* pos 01d3: 206 */ 0xBA /* ':' -> */,
|
|
/* pos 01d4: 207 */ 0x00, 0x2A /* - terminal marker 42 - */,
|
|
/* pos 01d6: 208 */ 0xEC /* 'l' -> */,
|
|
/* pos 01d7: 209 */ 0xEF /* 'o' -> */,
|
|
/* pos 01d8: 210 */ 0xF7 /* 'w' -> */,
|
|
/* pos 01d9: 211 */ 0xBA /* ':' -> */,
|
|
/* pos 01da: 212 */ 0x00, 0x2C /* - terminal marker 44 - */,
|
|
/* pos 01dc: 213 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01dd: 214 */ 0xF3 /* 's' -> */,
|
|
/* pos 01de: 215 */ 0xF0 /* 'p' -> */,
|
|
/* pos 01df: 216 */ 0xEF /* 'o' -> */,
|
|
/* pos 01e0: 217 */ 0xF3 /* 's' -> */,
|
|
/* pos 01e1: 218 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01e2: 219 */ 0xF4 /* 't' -> */,
|
|
/* pos 01e3: 220 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01e4: 221 */ 0xEF /* 'o' -> */,
|
|
/* pos 01e5: 222 */ 0xEE /* 'n' -> */,
|
|
/* pos 01e6: 223 */ 0xBA /* ':' -> */,
|
|
/* pos 01e7: 224 */ 0x00, 0x2D /* - terminal marker 45 - */,
|
|
/* pos 01e9: 225 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ea: 226 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01eb: 227 */ 0xEF /* 'o' -> */,
|
|
/* pos 01ec: 228 */ 0xE4 /* 'd' -> */,
|
|
/* pos 01ed: 229 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01ee: 230 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ef: 231 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01f0: 232 */ 0xBA /* ':' -> */,
|
|
/* pos 01f1: 233 */ 0x00, 0x2E /* - terminal marker 46 - */,
|
|
/* pos 01f3: 234 */ 0xEE /* 'n' -> */,
|
|
/* pos 01f4: 235 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01f5: 236 */ 0xF5 /* 'u' -> */,
|
|
/* pos 01f6: 237 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01f7: 238 */ 0xE7 /* 'g' -> */,
|
|
/* pos 01f8: 239 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01f9: 240 */ 0xBA /* ':' -> */,
|
|
/* pos 01fa: 241 */ 0x00, 0x2F /* - terminal marker 47 - */,
|
|
/* pos 01fc: 242 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01fd: 243 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01fe: 244 */ 0xF4 /* 't' -> */,
|
|
/* pos 01ff: 245 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0200: 246 */ 0xEF /* 'o' -> */,
|
|
/* pos 0201: 247 */ 0xEE /* 'n' -> */,
|
|
/* pos 0202: 248 */ 0xBA /* ':' -> */,
|
|
/* pos 0203: 249 */ 0x00, 0x30 /* - terminal marker 48 - */,
|
|
/* pos 0205: 250 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0206: 251 */ 0xEE /* 'n' -> */,
|
|
/* pos 0207: 252 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0208: 253 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0209: 254 */ 0xBA /* ':' -> */,
|
|
/* pos 020a: 255 */ 0x00, 0x31 /* - terminal marker 49 - */,
|
|
/* pos 020c: 256 */ 0x74 /* 't' */, 0x07, 0x00 /* (to 0x0213 state 257) */,
|
|
0x78 /* 'x' */, 0x09, 0x00 /* (to 0x0218 state 261) */,
|
|
0x08, /* fail */
|
|
/* pos 0213: 257 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0214: 258 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0215: 259 */ 0xBA /* ':' -> */,
|
|
/* pos 0216: 260 */ 0x00, 0x32 /* - terminal marker 50 - */,
|
|
/* pos 0218: 261 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0219: 262 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0220 state 263) */,
|
|
0x69 /* 'i' */, 0x09, 0x00 /* (to 0x0225 state 267) */,
|
|
0x08, /* fail */
|
|
/* pos 0220: 263 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0221: 264 */ 0xF4 /* 't' -> */,
|
|
/* pos 0222: 265 */ 0xBA /* ':' -> */,
|
|
/* pos 0223: 266 */ 0x00, 0x33 /* - terminal marker 51 - */,
|
|
/* pos 0225: 267 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0226: 268 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0227: 269 */ 0xF3 /* 's' -> */,
|
|
/* pos 0228: 270 */ 0xBA /* ':' -> */,
|
|
/* pos 0229: 271 */ 0x00, 0x34 /* - terminal marker 52 - */,
|
|
/* pos 022b: 272 */ 0xF2 /* 'r' -> */,
|
|
/* pos 022c: 273 */ 0xEF /* 'o' -> */,
|
|
/* pos 022d: 274 */ 0xED /* 'm' -> */,
|
|
/* pos 022e: 275 */ 0xBA /* ':' -> */,
|
|
/* pos 022f: 276 */ 0x00, 0x35 /* - terminal marker 53 - */,
|
|
/* pos 0231: 277 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x0238 state 278) */,
|
|
0x6F /* 'o' */, 0xE6, 0x00 /* (to 0x031A state 441) */,
|
|
0x08, /* fail */
|
|
/* pos 0238: 278 */ 0xF4 /* 't' -> */,
|
|
/* pos 0239: 279 */ 0xE3 /* 'c' -> */,
|
|
/* pos 023a: 280 */ 0xE8 /* 'h' -> */,
|
|
/* pos 023b: 281 */ 0xBA /* ':' -> */,
|
|
/* pos 023c: 282 */ 0x00, 0x36 /* - terminal marker 54 - */,
|
|
/* pos 023e: 283 */ 0xE1 /* 'a' -> */,
|
|
/* pos 023f: 284 */ 0xEE /* 'n' -> */,
|
|
/* pos 0240: 285 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0241: 286 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0242: 287 */ 0xBA /* ':' -> */,
|
|
/* pos 0243: 288 */ 0x00, 0x37 /* - terminal marker 55 - */,
|
|
/* pos 0245: 289 */ 0xEE /* 'n' -> */,
|
|
/* pos 0246: 290 */ 0xED /* 'm' -> */,
|
|
/* pos 0247: 291 */ 0xEF /* 'o' -> */,
|
|
/* pos 0248: 292 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0249: 293 */ 0xE9 /* 'i' -> */,
|
|
/* pos 024a: 294 */ 0xE6 /* 'f' -> */,
|
|
/* pos 024b: 295 */ 0xE9 /* 'i' -> */,
|
|
/* pos 024c: 296 */ 0xE5 /* 'e' -> */,
|
|
/* pos 024d: 297 */ 0xE4 /* 'd' -> */,
|
|
/* pos 024e: 298 */ 0xAD /* '-' -> */,
|
|
/* pos 024f: 299 */ 0xF3 /* 's' -> */,
|
|
/* pos 0250: 300 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0251: 301 */ 0xEE /* 'n' -> */,
|
|
/* pos 0252: 302 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0253: 303 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0254: 304 */ 0xBA /* ':' -> */,
|
|
/* pos 0255: 305 */ 0x00, 0x38 /* - terminal marker 56 - */,
|
|
/* pos 0257: 306 */ 0x61 /* 'a' */, 0x0A, 0x00 /* (to 0x0261 state 307) */,
|
|
0x69 /* 'i' */, 0x15, 0x00 /* (to 0x026F state 320) */,
|
|
0x6F /* 'o' */, 0x17, 0x00 /* (to 0x0274 state 324) */,
|
|
0x08, /* fail */
|
|
/* pos 0261: 307 */ 0xF3 /* 's' -> */,
|
|
/* pos 0262: 308 */ 0xF4 /* 't' -> */,
|
|
/* pos 0263: 309 */ 0xAD /* '-' -> */,
|
|
/* pos 0264: 310 */ 0xED /* 'm' -> */,
|
|
/* pos 0265: 311 */ 0xEF /* 'o' -> */,
|
|
/* pos 0266: 312 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0267: 313 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0268: 314 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0269: 315 */ 0xE9 /* 'i' -> */,
|
|
/* pos 026a: 316 */ 0xE5 /* 'e' -> */,
|
|
/* pos 026b: 317 */ 0xE4 /* 'd' -> */,
|
|
/* pos 026c: 318 */ 0xBA /* ':' -> */,
|
|
/* pos 026d: 319 */ 0x00, 0x39 /* - terminal marker 57 - */,
|
|
/* pos 026f: 320 */ 0xEE /* 'n' -> */,
|
|
/* pos 0270: 321 */ 0xEB /* 'k' -> */,
|
|
/* pos 0271: 322 */ 0xBA /* ':' -> */,
|
|
/* pos 0272: 323 */ 0x00, 0x3A /* - terminal marker 58 - */,
|
|
/* pos 0274: 324 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0275: 325 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0276: 326 */ 0xF4 /* 't' -> */,
|
|
/* pos 0277: 327 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0278: 328 */ 0xEF /* 'o' -> */,
|
|
/* pos 0279: 329 */ 0xEE /* 'n' -> */,
|
|
/* pos 027a: 330 */ 0xBA /* ':' -> */,
|
|
/* pos 027b: 331 */ 0x00, 0x3B /* - terminal marker 59 - */,
|
|
/* pos 027d: 332 */ 0xE1 /* 'a' -> */,
|
|
/* pos 027e: 333 */ 0xF8 /* 'x' -> */,
|
|
/* pos 027f: 334 */ 0xAD /* '-' -> */,
|
|
/* pos 0280: 335 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0281: 336 */ 0xEF /* 'o' -> */,
|
|
/* pos 0282: 337 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0283: 338 */ 0xF7 /* 'w' -> */,
|
|
/* pos 0284: 339 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0285: 340 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0286: 341 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0287: 342 */ 0xF3 /* 's' -> */,
|
|
/* pos 0288: 343 */ 0xBA /* ':' -> */,
|
|
/* pos 0289: 344 */ 0x00, 0x3C /* - terminal marker 60 - */,
|
|
/* pos 028b: 345 */ 0xF2 /* 'r' -> */,
|
|
/* pos 028c: 346 */ 0xF9 /* 'y' -> */,
|
|
/* pos 028d: 347 */ 0xAD /* '-' -> */,
|
|
/* pos 028e: 348 */ 0xE1 /* 'a' -> */,
|
|
/* pos 028f: 349 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0290: 350 */ 0xF4 /* 't' -> */,
|
|
/* pos 0291: 351 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0292: 352 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0293: 353 */ 0xBA /* ':' -> */,
|
|
/* pos 0294: 354 */ 0x00, 0x40 /* - terminal marker 64 - */,
|
|
/* pos 0296: 355 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x029D state 356) */,
|
|
0x74 /* 't' */, 0x1E, 0x00 /* (to 0x02B7 state 371) */,
|
|
0x08, /* fail */
|
|
/* pos 029d: 356 */ 0x72 /* 'r' */, 0x0A, 0x00 /* (to 0x02A7 state 357) */,
|
|
0x74 /* 't' */, 0x0D, 0x00 /* (to 0x02AD state 362) */,
|
|
0x63 /* 'c' */, 0x86, 0x00 /* (to 0x0329 state 455) */,
|
|
0x08, /* fail */
|
|
/* pos 02a7: 357 */ 0xF6 /* 'v' -> */,
|
|
/* pos 02a8: 358 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02a9: 359 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02aa: 360 */ 0xBA /* ':' -> */,
|
|
/* pos 02ab: 361 */ 0x00, 0x41 /* - terminal marker 65 - */,
|
|
/* pos 02ad: 362 */ 0xAD /* '-' -> */,
|
|
/* pos 02ae: 363 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02af: 364 */ 0xEF /* 'o' -> */,
|
|
/* pos 02b0: 365 */ 0xEF /* 'o' -> */,
|
|
/* pos 02b1: 366 */ 0xEB /* 'k' -> */,
|
|
/* pos 02b2: 367 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02b3: 368 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02b4: 369 */ 0xBA /* ':' -> */,
|
|
/* pos 02b5: 370 */ 0x00, 0x42 /* - terminal marker 66 - */,
|
|
/* pos 02b7: 371 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02b8: 372 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02b9: 373 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02ba: 374 */ 0xF4 /* 't' -> */,
|
|
/* pos 02bb: 375 */ 0xAD /* '-' -> */,
|
|
/* pos 02bc: 376 */ 0xF4 /* 't' -> */,
|
|
/* pos 02bd: 377 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02be: 378 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02bf: 379 */ 0xEE /* 'n' -> */,
|
|
/* pos 02c0: 380 */ 0xF3 /* 's' -> */,
|
|
/* pos 02c1: 381 */ 0xF0 /* 'p' -> */,
|
|
/* pos 02c2: 382 */ 0xEF /* 'o' -> */,
|
|
/* pos 02c3: 383 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02c4: 384 */ 0xF4 /* 't' -> */,
|
|
/* pos 02c5: 385 */ 0xAD /* '-' -> */,
|
|
/* pos 02c6: 386 */ 0xF3 /* 's' -> */,
|
|
/* pos 02c7: 387 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02c8: 388 */ 0xE3 /* 'c' -> */,
|
|
/* pos 02c9: 389 */ 0xF5 /* 'u' -> */,
|
|
/* pos 02ca: 390 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02cb: 391 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02cc: 392 */ 0xF4 /* 't' -> */,
|
|
/* pos 02cd: 393 */ 0xF9 /* 'y' -> */,
|
|
/* pos 02ce: 394 */ 0xBA /* ':' -> */,
|
|
/* pos 02cf: 395 */ 0x00, 0x43 /* - terminal marker 67 - */,
|
|
/* pos 02d1: 396 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02d2: 397 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02d3: 398 */ 0xAD /* '-' -> */,
|
|
/* pos 02d4: 399 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02d5: 400 */ 0xE7 /* 'g' -> */,
|
|
/* pos 02d6: 401 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02d7: 402 */ 0xEE /* 'n' -> */,
|
|
/* pos 02d8: 403 */ 0xF4 /* 't' -> */,
|
|
/* pos 02d9: 404 */ 0xBA /* ':' -> */,
|
|
/* pos 02da: 405 */ 0x00, 0x45 /* - terminal marker 69 - */,
|
|
/* pos 02dc: 406 */ 0xF8 /* 'x' -> */,
|
|
/* pos 02dd: 407 */ 0xF9 /* 'y' -> */,
|
|
/* pos 02de: 408 */ 0x20 /* ' ' */, 0x07, 0x00 /* (to 0x02E5 state 409) */,
|
|
0x2D /* '-' */, 0x86, 0x00 /* (to 0x0367 state 481) */,
|
|
0x08, /* fail */
|
|
/* pos 02e5: 409 */ 0x00, 0x4D /* - terminal marker 77 - */,
|
|
/* pos 02e7: 410 */ 0xAD /* '-' -> */,
|
|
/* pos 02e8: 411 */ 0x66 /* 'f' */, 0x0A, 0x00 /* (to 0x02F2 state 412) */,
|
|
0x72 /* 'r' */, 0xEC, 0x00 /* (to 0x03D7 state 570) */,
|
|
0x61 /* 'a' */, 0x9F, 0x01 /* (to 0x048D state 701) */,
|
|
0x08, /* fail */
|
|
/* pos 02f2: 412 */ 0xEF /* 'o' -> */,
|
|
/* pos 02f3: 413 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02f4: 414 */ 0xF7 /* 'w' -> */,
|
|
/* pos 02f5: 415 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02f6: 416 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02f7: 417 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02f8: 418 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02f9: 419 */ 0xE4 /* 'd' -> */,
|
|
/* pos 02fa: 420 */ 0xAD /* '-' -> */,
|
|
/* pos 02fb: 421 */ 0xE6 /* 'f' -> */,
|
|
/* pos 02fc: 422 */ 0xEF /* 'o' -> */,
|
|
/* pos 02fd: 423 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02fe: 424 */ 0xBA /* ':' -> */,
|
|
/* pos 02ff: 425 */ 0x00, 0x50 /* - terminal marker 80 - */,
|
|
/* pos 0301: 426 */ 0x00, 0x51 /* - terminal marker 81 - */,
|
|
/* pos 0303: 427 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0304: 428 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0305: 429 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0306: 430 */ 0x00, 0x52 /* - terminal marker 82 - */,
|
|
/* pos 0308: 431 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x030F state 432) */,
|
|
0x72 /* 'r' */, 0x82, 0x00 /* (to 0x038D state 510) */,
|
|
0x08, /* fail */
|
|
/* pos 030f: 432 */ 0xBA /* ':' -> */,
|
|
/* pos 0310: 433 */ 0x00, 0x53 /* - terminal marker 83 - */,
|
|
/* pos 0312: 434 */ 0xF4 /* 't' -> */,
|
|
/* pos 0313: 435 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0314: 436 */ 0xEF /* 'o' -> */,
|
|
/* pos 0315: 437 */ 0xEE /* 'n' -> */,
|
|
/* pos 0316: 438 */ 0xF3 /* 's' -> */,
|
|
/* pos 0317: 439 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0318: 440 */ 0x00, 0x02 /* - terminal marker 2 - */,
|
|
/* pos 031a: 441 */ 0xE4 /* 'd' -> */,
|
|
/* pos 031b: 442 */ 0xE9 /* 'i' -> */,
|
|
/* pos 031c: 443 */ 0xE6 /* 'f' -> */,
|
|
/* pos 031d: 444 */ 0xE9 /* 'i' -> */,
|
|
/* pos 031e: 445 */ 0xE5 /* 'e' -> */,
|
|
/* pos 031f: 446 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0320: 447 */ 0xAD /* '-' -> */,
|
|
/* pos 0321: 448 */ 0xF3 /* 's' -> */,
|
|
/* pos 0322: 449 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0323: 450 */ 0xEE /* 'n' -> */,
|
|
/* pos 0324: 451 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0325: 452 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0326: 453 */ 0xBA /* ':' -> */,
|
|
/* pos 0327: 454 */ 0x00, 0x13 /* - terminal marker 19 - */,
|
|
/* pos 0329: 455 */ 0xAD /* '-' -> */,
|
|
/* pos 032a: 456 */ 0xF7 /* 'w' -> */,
|
|
/* pos 032b: 457 */ 0xE5 /* 'e' -> */,
|
|
/* pos 032c: 458 */ 0xE2 /* 'b' -> */,
|
|
/* pos 032d: 459 */ 0xF3 /* 's' -> */,
|
|
/* pos 032e: 460 */ 0xEF /* 'o' -> */,
|
|
/* pos 032f: 461 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0330: 462 */ 0xEB /* 'k' -> */,
|
|
/* pos 0331: 463 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0332: 464 */ 0xF4 /* 't' -> */,
|
|
/* pos 0333: 465 */ 0xAD /* '-' -> */,
|
|
/* pos 0334: 466 */ 0x6B /* 'k' */, 0x19, 0x00 /* (to 0x034D state 467) */,
|
|
0x64 /* 'd' */, 0xDD, 0x00 /* (to 0x0414 state 603) */,
|
|
0x65 /* 'e' */, 0xE1, 0x00 /* (to 0x041B state 609) */,
|
|
0x70 /* 'p' */, 0xF0, 0x00 /* (to 0x042D state 624) */,
|
|
0x61 /* 'a' */, 0xF7, 0x00 /* (to 0x0437 state 633) */,
|
|
0x6E /* 'n' */, 0xFC, 0x00 /* (to 0x043F state 640) */,
|
|
0x76 /* 'v' */, 0x03, 0x01 /* (to 0x0449 state 648) */,
|
|
0x6F /* 'o' */, 0x09, 0x01 /* (to 0x0452 state 656) */,
|
|
0x08, /* fail */
|
|
/* pos 034d: 467 */ 0xE5 /* 'e' -> */,
|
|
/* pos 034e: 468 */ 0xF9 /* 'y' -> */,
|
|
/* pos 034f: 469 */ 0x3A /* ':' */, 0x0A, 0x00 /* (to 0x0359 state 470) */,
|
|
0x31 /* '1' */, 0xD5, 0x00 /* (to 0x0427 state 620) */,
|
|
0x32 /* '2' */, 0xD5, 0x00 /* (to 0x042A state 622) */,
|
|
0x08, /* fail */
|
|
/* pos 0359: 470 */ 0x00, 0x20 /* - terminal marker 32 - */,
|
|
/* pos 035b: 471 */ 0xE1 /* 'a' -> */,
|
|
/* pos 035c: 472 */ 0xEE /* 'n' -> */,
|
|
/* pos 035d: 473 */ 0xE7 /* 'g' -> */,
|
|
/* pos 035e: 474 */ 0xE5 /* 'e' -> */,
|
|
/* pos 035f: 475 */ 0xF3 /* 's' -> */,
|
|
/* pos 0360: 476 */ 0xBA /* ':' -> */,
|
|
/* pos 0361: 477 */ 0x00, 0x29 /* - terminal marker 41 - */,
|
|
/* pos 0363: 478 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0364: 479 */ 0xBA /* ':' -> */,
|
|
/* pos 0365: 480 */ 0x00, 0x2B /* - terminal marker 43 - */,
|
|
/* pos 0367: 481 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0368: 482 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0369: 483 */ 0xF4 /* 't' -> */,
|
|
/* pos 036a: 484 */ 0xE8 /* 'h' -> */,
|
|
/* pos 036b: 485 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0372 state 486) */,
|
|
0x6F /* 'o' */, 0x0E, 0x00 /* (to 0x037C state 495) */,
|
|
0x08, /* fail */
|
|
/* pos 0372: 486 */ 0xEE /* 'n' -> */,
|
|
/* pos 0373: 487 */ 0xF4 /* 't' -> */,
|
|
/* pos 0374: 488 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0375: 489 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0376: 490 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0377: 491 */ 0xF4 /* 't' -> */,
|
|
/* pos 0378: 492 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0379: 493 */ 0xBA /* ':' -> */,
|
|
/* pos 037a: 494 */ 0x00, 0x3D /* - terminal marker 61 - */,
|
|
/* pos 037c: 495 */ 0xF2 /* 'r' -> */,
|
|
/* pos 037d: 496 */ 0xE9 /* 'i' -> */,
|
|
/* pos 037e: 497 */ 0xFA /* 'z' -> */,
|
|
/* pos 037f: 498 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0380: 499 */ 0xF4 /* 't' -> */,
|
|
/* pos 0381: 500 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0382: 501 */ 0xEF /* 'o' -> */,
|
|
/* pos 0383: 502 */ 0xEE /* 'n' -> */,
|
|
/* pos 0384: 503 */ 0xBA /* ':' -> */,
|
|
/* pos 0385: 504 */ 0x00, 0x3E /* - terminal marker 62 - */,
|
|
/* pos 0387: 505 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0388: 506 */ 0xF3 /* 's' -> */,
|
|
/* pos 0389: 507 */ 0xE8 /* 'h' -> */,
|
|
/* pos 038a: 508 */ 0xBA /* ':' -> */,
|
|
/* pos 038b: 509 */ 0x00, 0x3F /* - terminal marker 63 - */,
|
|
/* pos 038d: 510 */ 0xE1 /* 'a' -> */,
|
|
/* pos 038e: 511 */ 0xEE /* 'n' -> */,
|
|
/* pos 038f: 512 */ 0xF3 /* 's' -> */,
|
|
/* pos 0390: 513 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0391: 514 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0392: 515 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0393: 516 */ 0xAD /* '-' -> */,
|
|
/* pos 0394: 517 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0395: 518 */ 0xEE /* 'n' -> */,
|
|
/* pos 0396: 519 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0397: 520 */ 0xEF /* 'o' -> */,
|
|
/* pos 0398: 521 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0399: 522 */ 0xE9 /* 'i' -> */,
|
|
/* pos 039a: 523 */ 0xEE /* 'n' -> */,
|
|
/* pos 039b: 524 */ 0xE7 /* 'g' -> */,
|
|
/* pos 039c: 525 */ 0xBA /* ':' -> */,
|
|
/* pos 039d: 526 */ 0x00, 0x44 /* - terminal marker 68 - */,
|
|
/* pos 039f: 527 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x03A6 state 528) */,
|
|
0x69 /* 'i' */, 0x09, 0x00 /* (to 0x03AB state 532) */,
|
|
0x08, /* fail */
|
|
/* pos 03a6: 528 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03a7: 529 */ 0xF9 /* 'y' -> */,
|
|
/* pos 03a8: 530 */ 0xBA /* ':' -> */,
|
|
/* pos 03a9: 531 */ 0x00, 0x46 /* - terminal marker 70 - */,
|
|
/* pos 03ab: 532 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03ac: 533 */ 0xBA /* ':' -> */,
|
|
/* pos 03ad: 534 */ 0x00, 0x47 /* - terminal marker 71 - */,
|
|
/* pos 03af: 535 */ 0xF7 /* 'w' -> */,
|
|
/* pos 03b0: 536 */ 0xF7 /* 'w' -> */,
|
|
/* pos 03b1: 537 */ 0xAD /* '-' -> */,
|
|
/* pos 03b2: 538 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03b3: 539 */ 0xF5 /* 'u' -> */,
|
|
/* pos 03b4: 540 */ 0xF4 /* 't' -> */,
|
|
/* pos 03b5: 541 */ 0xE8 /* 'h' -> */,
|
|
/* pos 03b6: 542 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03b7: 543 */ 0xEE /* 'n' -> */,
|
|
/* pos 03b8: 544 */ 0xF4 /* 't' -> */,
|
|
/* pos 03b9: 545 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03ba: 546 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03bb: 547 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03bc: 548 */ 0xF4 /* 't' -> */,
|
|
/* pos 03bd: 549 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03be: 550 */ 0xBA /* ':' -> */,
|
|
/* pos 03bf: 551 */ 0x00, 0x48 /* - terminal marker 72 - */,
|
|
/* pos 03c1: 552 */ 0xF4 /* 't' -> */,
|
|
/* pos 03c2: 553 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03c3: 554 */ 0xE8 /* 'h' -> */,
|
|
/* pos 03c4: 555 */ 0x00, 0x49 /* - terminal marker 73 - */,
|
|
/* pos 03c6: 556 */ 0xF4 /* 't' -> */,
|
|
/* pos 03c7: 557 */ 0x00, 0x4A /* - terminal marker 74 - */,
|
|
/* pos 03c9: 558 */ 0xEC /* 'l' -> */,
|
|
/* pos 03ca: 559 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03cb: 560 */ 0xF4 /* 't' -> */,
|
|
/* pos 03cc: 561 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03cd: 562 */ 0x00, 0x4B /* - terminal marker 75 - */,
|
|
/* pos 03cf: 563 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03d0: 564 */ 0xAD /* '-' -> */,
|
|
/* pos 03d1: 565 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03d2: 566 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03d3: 567 */ 0xE7 /* 'g' -> */,
|
|
/* pos 03d4: 568 */ 0xF3 /* 's' -> */,
|
|
/* pos 03d5: 569 */ 0x00, 0x4C /* - terminal marker 76 - */,
|
|
/* pos 03d7: 570 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03d8: 571 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03d9: 572 */ 0xEC /* 'l' -> */,
|
|
/* pos 03da: 573 */ 0xAD /* '-' -> */,
|
|
/* pos 03db: 574 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03dc: 575 */ 0xF0 /* 'p' -> */,
|
|
/* pos 03dd: 576 */ 0xBA /* ':' -> */,
|
|
/* pos 03de: 577 */ 0x00, 0x4E /* - terminal marker 78 - */,
|
|
/* pos 03e0: 578 */ 0xB1 /* '1' -> */,
|
|
/* pos 03e1: 579 */ 0xAE /* '.' -> */,
|
|
/* pos 03e2: 580 */ 0x30 /* '0' */, 0x07, 0x00 /* (to 0x03E9 state 581) */,
|
|
0x31 /* '1' */, 0x61, 0x00 /* (to 0x0446 state 646) */,
|
|
0x08, /* fail */
|
|
/* pos 03e9: 581 */ 0xA0 /* ' ' -> */,
|
|
/* pos 03ea: 582 */ 0x00, 0x4F /* - terminal marker 79 - */,
|
|
/* pos 03ec: 583 */ 0xEC /* 'l' -> */,
|
|
/* pos 03ed: 584 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03ee: 585 */ 0xF9 /* 'y' -> */,
|
|
/* pos 03ef: 586 */ 0xAD /* '-' -> */,
|
|
/* pos 03f0: 587 */ 0xEE /* 'n' -> */,
|
|
/* pos 03f1: 588 */ 0xEF /* 'o' -> */,
|
|
/* pos 03f2: 589 */ 0xEE /* 'n' -> */,
|
|
/* pos 03f3: 590 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03f4: 591 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03f5: 592 */ 0xBA /* ':' -> */,
|
|
/* pos 03f6: 593 */ 0x00, 0x54 /* - terminal marker 84 - */,
|
|
/* pos 03f8: 594 */ 0x70 /* 'p' */, 0x0D, 0x00 /* (to 0x0405 state 595) */,
|
|
0x61 /* 'a' */, 0x5F, 0x00 /* (to 0x045A state 663) */,
|
|
0x6D /* 'm' */, 0x68, 0x00 /* (to 0x0466 state 673) */,
|
|
0x73 /* 's' */, 0x70, 0x00 /* (to 0x0471 state 682) */,
|
|
0x08, /* fail */
|
|
/* pos 0405: 595 */ 0x72 /* 'r' */, 0x07, 0x00 /* (to 0x040C state 596) */,
|
|
0x61 /* 'a' */, 0x65, 0x00 /* (to 0x046D state 679) */,
|
|
0x08, /* fail */
|
|
/* pos 040c: 596 */ 0xEF /* 'o' -> */,
|
|
/* pos 040d: 597 */ 0xF4 /* 't' -> */,
|
|
/* pos 040e: 598 */ 0xEF /* 'o' -> */,
|
|
/* pos 040f: 599 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0410: 600 */ 0xEF /* 'o' -> */,
|
|
/* pos 0411: 601 */ 0xEC /* 'l' -> */,
|
|
/* pos 0412: 602 */ 0x00, 0x55 /* - terminal marker 85 - */,
|
|
/* pos 0414: 603 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0415: 604 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0416: 605 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0417: 606 */ 0xF4 /* 't' -> */,
|
|
/* pos 0418: 607 */ 0xBA /* ':' -> */,
|
|
/* pos 0419: 608 */ 0x00, 0x07 /* - terminal marker 7 - */,
|
|
/* pos 041b: 609 */ 0xF8 /* 'x' -> */,
|
|
/* pos 041c: 610 */ 0xF4 /* 't' -> */,
|
|
/* pos 041d: 611 */ 0xE5 /* 'e' -> */,
|
|
/* pos 041e: 612 */ 0xEE /* 'n' -> */,
|
|
/* pos 041f: 613 */ 0xF3 /* 's' -> */,
|
|
/* pos 0420: 614 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0421: 615 */ 0xEF /* 'o' -> */,
|
|
/* pos 0422: 616 */ 0xEE /* 'n' -> */,
|
|
/* pos 0423: 617 */ 0xF3 /* 's' -> */,
|
|
/* pos 0424: 618 */ 0xBA /* ':' -> */,
|
|
/* pos 0425: 619 */ 0x00, 0x09 /* - terminal marker 9 - */,
|
|
/* pos 0427: 620 */ 0xBA /* ':' -> */,
|
|
/* pos 0428: 621 */ 0x00, 0x0A /* - terminal marker 10 - */,
|
|
/* pos 042a: 622 */ 0xBA /* ':' -> */,
|
|
/* pos 042b: 623 */ 0x00, 0x0B /* - terminal marker 11 - */,
|
|
/* pos 042d: 624 */ 0xF2 /* 'r' -> */,
|
|
/* pos 042e: 625 */ 0xEF /* 'o' -> */,
|
|
/* pos 042f: 626 */ 0xF4 /* 't' -> */,
|
|
/* pos 0430: 627 */ 0xEF /* 'o' -> */,
|
|
/* pos 0431: 628 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0432: 629 */ 0xEF /* 'o' -> */,
|
|
/* pos 0433: 630 */ 0xEC /* 'l' -> */,
|
|
/* pos 0434: 631 */ 0xBA /* ':' -> */,
|
|
/* pos 0435: 632 */ 0x00, 0x0C /* - terminal marker 12 - */,
|
|
/* pos 0437: 633 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0438: 634 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0439: 635 */ 0xE5 /* 'e' -> */,
|
|
/* pos 043a: 636 */ 0xF0 /* 'p' -> */,
|
|
/* pos 043b: 637 */ 0xF4 /* 't' -> */,
|
|
/* pos 043c: 638 */ 0xBA /* ':' -> */,
|
|
/* pos 043d: 639 */ 0x00, 0x0D /* - terminal marker 13 - */,
|
|
/* pos 043f: 640 */ 0xEF /* 'o' -> */,
|
|
/* pos 0440: 641 */ 0xEE /* 'n' -> */,
|
|
/* pos 0441: 642 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0442: 643 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0443: 644 */ 0xBA /* ':' -> */,
|
|
/* pos 0444: 645 */ 0x00, 0x0E /* - terminal marker 14 - */,
|
|
/* pos 0446: 646 */ 0xA0 /* ' ' -> */,
|
|
/* pos 0447: 647 */ 0x00, 0x0F /* - terminal marker 15 - */,
|
|
/* pos 0449: 648 */ 0xE5 /* 'e' -> */,
|
|
/* pos 044a: 649 */ 0xF2 /* 'r' -> */,
|
|
/* pos 044b: 650 */ 0xF3 /* 's' -> */,
|
|
/* pos 044c: 651 */ 0xE9 /* 'i' -> */,
|
|
/* pos 044d: 652 */ 0xEF /* 'o' -> */,
|
|
/* pos 044e: 653 */ 0xEE /* 'n' -> */,
|
|
/* pos 044f: 654 */ 0xBA /* ':' -> */,
|
|
/* pos 0450: 655 */ 0x00, 0x21 /* - terminal marker 33 - */,
|
|
/* pos 0452: 656 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0453: 657 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0454: 658 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0455: 659 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0456: 660 */ 0xEE /* 'n' -> */,
|
|
/* pos 0457: 661 */ 0xBA /* ':' -> */,
|
|
/* pos 0458: 662 */ 0x00, 0x22 /* - terminal marker 34 - */,
|
|
/* pos 045a: 663 */ 0xF5 /* 'u' -> */,
|
|
/* pos 045b: 664 */ 0xF4 /* 't' -> */,
|
|
/* pos 045c: 665 */ 0xE8 /* 'h' -> */,
|
|
/* pos 045d: 666 */ 0xEF /* 'o' -> */,
|
|
/* pos 045e: 667 */ 0xF2 /* 'r' -> */,
|
|
/* pos 045f: 668 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0460: 669 */ 0xF4 /* 't' -> */,
|
|
/* pos 0461: 670 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0462: 671 */ 0x00, 0x23 /* - terminal marker 35 - */,
|
|
/* pos 0464: 672 */ 0x00, 0x11 /* - terminal marker 17 - */,
|
|
/* pos 0466: 673 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0467: 674 */ 0xF4 /* 't' -> */,
|
|
/* pos 0468: 675 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0469: 676 */ 0xEF /* 'o' -> */,
|
|
/* pos 046a: 677 */ 0xE4 /* 'd' -> */,
|
|
/* pos 046b: 678 */ 0x00, 0x24 /* - terminal marker 36 - */,
|
|
/* pos 046d: 679 */ 0xF4 /* 't' -> */,
|
|
/* pos 046e: 680 */ 0xE8 /* 'h' -> */,
|
|
/* pos 046f: 681 */ 0x00, 0x25 /* - terminal marker 37 - */,
|
|
/* pos 0471: 682 */ 0x63 /* 'c' */, 0x07, 0x00 /* (to 0x0478 state 683) */,
|
|
0x74 /* 't' */, 0x0A, 0x00 /* (to 0x047E state 688) */,
|
|
0x08, /* fail */
|
|
/* pos 0478: 683 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0479: 684 */ 0xE5 /* 'e' -> */,
|
|
/* pos 047a: 685 */ 0xED /* 'm' -> */,
|
|
/* pos 047b: 686 */ 0xE5 /* 'e' -> */,
|
|
/* pos 047c: 687 */ 0x00, 0x26 /* - terminal marker 38 - */,
|
|
/* pos 047e: 688 */ 0xE1 /* 'a' -> */,
|
|
/* pos 047f: 689 */ 0xF4 /* 't' -> */,
|
|
/* pos 0480: 690 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0481: 691 */ 0xF3 /* 's' -> */,
|
|
/* pos 0482: 692 */ 0x00, 0x27 /* - terminal marker 39 - */,
|
|
/* pos 0484: 693 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0485: 694 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0486: 695 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0487: 696 */ 0xF3 /* 's' -> */,
|
|
/* pos 0488: 697 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0489: 698 */ 0xF4 /* 't' -> */,
|
|
/* pos 048a: 699 */ 0xBA /* ':' -> */,
|
|
/* pos 048b: 700 */ 0x00, 0x28 /* - terminal marker 40 - */,
|
|
/* pos 048d: 701 */ 0xF5 /* 'u' -> */,
|
|
/* pos 048e: 702 */ 0xF4 /* 't' -> */,
|
|
/* pos 048f: 703 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0490: 704 */ 0xAD /* '-' -> */,
|
|
/* pos 0491: 705 */ 0xF4 /* 't' -> */,
|
|
/* pos 0492: 706 */ 0xEF /* 'o' -> */,
|
|
/* pos 0493: 707 */ 0xEB /* 'k' -> */,
|
|
/* pos 0494: 708 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0495: 709 */ 0xEE /* 'n' -> */,
|
|
/* pos 0496: 710 */ 0xBA /* ':' -> */,
|
|
/* pos 0497: 711 */ 0x00, 0x56 /* - terminal marker 86 - */,
|
|
/* total size 1177 bytes */
|
|
#endif
|
|
|
|
|
|
/*
|
|
#if !defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && !defined(LWS_ROLE_WS) && !defined(LWS_ROLE_H2)
|
|
static uint8_t lws_header_implies_psuedoheader_map[] = {
|
|
0x03,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
};
|
|
#endif
|
|
#if defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && !defined(LWS_ROLE_WS) && !defined(LWS_ROLE_H2)
|
|
static uint8_t lws_header_implies_psuedoheader_map[] = {
|
|
0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
};
|
|
#endif
|
|
#if !defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && defined(LWS_ROLE_WS) && !defined(LWS_ROLE_H2)
|
|
static uint8_t lws_header_implies_psuedoheader_map[] = {
|
|
0x03,0x00,0x00,0x80,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
};
|
|
#endif
|
|
#if defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && defined(LWS_ROLE_WS) && !defined(LWS_ROLE_H2)
|
|
static uint8_t lws_header_implies_psuedoheader_map[] = {
|
|
0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x38,0x10,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
};
|
|
#endif
|
|
#if !defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && !defined(LWS_ROLE_WS) && defined(LWS_ROLE_H2)
|
|
static uint8_t lws_header_implies_psuedoheader_map[] = {
|
|
0x03,0x00,0x80,0x07,0x00,0x00,0x00,0x10,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
};
|
|
#endif
|
|
#if defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && !defined(LWS_ROLE_WS) && defined(LWS_ROLE_H2)
|
|
static uint8_t lws_header_implies_psuedoheader_map[] = {
|
|
0x07,0x00,0x00,0x1e,0x00,0x00,0x00,0xc0,0x81,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
};
|
|
#endif
|
|
#if !defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && defined(LWS_ROLE_WS) && defined(LWS_ROLE_H2)
|
|
static uint8_t lws_header_implies_psuedoheader_map[] = {
|
|
0x03,0x00,0x00,0x00,0x3e,0x00,0x00,0x00,0x80,0x08,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
};
|
|
#endif
|
|
#if defined(LWS_WITH_HTTP_UNCOMMON_HEADERS) && defined(LWS_ROLE_WS) && defined(LWS_ROLE_H2)
|
|
static uint8_t lws_header_implies_psuedoheader_map[] = {
|
|
0x07,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x0e,0x04,0x00,0x00,0x00,0x00,0x00,
|
|
};
|
|
#endif
|
|
*/
|