#define yy_create_buffer itex2MML_yy_create_buffer #define yy_delete_buffer itex2MML_yy_delete_buffer #define yy_scan_buffer itex2MML_yy_scan_buffer #define yy_scan_string itex2MML_yy_scan_string #define yy_scan_bytes itex2MML_yy_scan_bytes #define yy_flex_debug itex2MML_yy_flex_debug #define yy_init_buffer itex2MML_yy_init_buffer #define yy_flush_buffer itex2MML_yy_flush_buffer #define yy_load_buffer_state itex2MML_yy_load_buffer_state #define yy_switch_to_buffer itex2MML_yy_switch_to_buffer #define yyin itex2MML_yyin #define yyleng itex2MML_yyleng #define yylex itex2MML_yylex #define yyout itex2MML_yyout #define yyrestart itex2MML_yyrestart #define yytext itex2MML_yytext #line 19 "lex.yy.c" /* A lexical scanner generated by flex*/ /* Scanner skeleton version: * $Header$ */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #include #include /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */ #ifdef c_plusplus #ifndef __cplusplus #define __cplusplus #endif #endif #ifdef __cplusplus #include /* Use prototypes in function declarations. */ #define YY_USE_PROTOS /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ #if __STDC__ #define YY_USE_PROTOS #define YY_USE_CONST #endif /* __STDC__ */ #endif /* ! __cplusplus */ #ifdef __TURBOC__ #pragma warn -rch #pragma warn -use #include #include #define YY_USE_CONST #define YY_USE_PROTOS #endif #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif #ifdef YY_USE_PROTOS #define YY_PROTO(proto) proto #else #define YY_PROTO(proto) () #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN yy_start = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START ((yy_start - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart( yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #define YY_BUF_SIZE 16384 typedef struct yy_buffer_state *YY_BUFFER_STATE; extern int yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 /* The funky do-while in the following #define is used to turn the definition * int a single C statement (which needs a semi-colon terminator). This * avoids problems with code like: * * if ( condition_holds ) * yyless( 5 ); * else * do_something_else(); * * Prior to using the do-while the compiler would get upset at the * "else" because it interpreted the "if" statement as being all * done when it reached the ';' after the yyless() call. */ /* Return all but the first 'n' matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ *yy_cp = yy_hold_char; \ YY_RESTORE_YY_MORE_OFFSET \ yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, yytext_ptr ) /* Some routines like yy_flex_realloc() are emitted as static but are not called by all lexers. This generates warnings in some compilers, notably GCC. Arrange to suppress these. */ #ifdef __GNUC__ #define YY_MAY_BE_UNUSED __attribute__((unused)) #else #define YY_MAY_BE_UNUSED #endif /* The following is because we cannot portably get our hands on size_t * (without autoconf's help, which isn't available because we want * flex-generated scanners to compile on their own). */ typedef unsigned int yy_size_t; struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; static YY_BUFFER_STATE yy_current_buffer = 0; /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". */ #define YY_CURRENT_BUFFER yy_current_buffer /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 1; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart YY_PROTO(( FILE *input_file )); void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer )); void yy_load_buffer_state YY_PROTO(( void )); YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size )); void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b )); void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file )); void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b )); #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer ) YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size )); YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str )); YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len )); static void *yy_flex_alloc YY_PROTO(( yy_size_t )); static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t )) YY_MAY_BE_UNUSED; static void yy_flex_free YY_PROTO(( void * )); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (yy_current_buffer->yy_at_bol) #define yywrap() 1 #define YY_SKIP_YYWRAP typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern char *yytext; #define yytext_ptr yytext static yy_state_type yy_get_previous_state YY_PROTO(( void )); static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state )); static int yy_get_next_buffer YY_PROTO(( void )); static void yy_fatal_error YY_PROTO(( yyconst char msg[] )); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ yytext_ptr = yy_bp; \ yyleng = (int) (yy_cp - yy_bp); \ yy_hold_char = *yy_cp; \ *yy_cp = '\0'; \ yy_c_buf_p = yy_cp; #define YY_NUM_RULES 628 #define YY_END_OF_BUFFER 629 static yyconst short int yy_accept[2266] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 629, 5, 4, 1, 5, 5, 580, 579, 578, 73, 79, 6, 32, 77, 41, 43, 81, 70, 71, 69, 68, 64, 38, 72, 76, 74, 78, 37, 42, 580, 44, 8, 9, 80, 11, 50, 12, 75, 628, 628, 601, 600, 600, 599, 598, 596, 597, 611, 610, 610, 609, 607, 608, 606, 605, 605, 604, 602, 603, 595, 594, 594, 593, 591, 592, 628, 617, 616, 616, 615, 613, 614, 622, 621, 621, 620, 618, 619, 627, 626, 626, 625, 623, 624, 628, 1, 0, 2, 579, 6, 0, 0, 0, 0, 0, 0, 38, 37, 569, 34, 35, 33, 561, 563, 565, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 36, 7, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 46, 52, 48, 0, 10, 0, 581, 600, 610, 605, 594, 0, 612, 616, 615, 621, 620, 626, 625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 575, 0, 0, 0, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 421, 574, 574, 574, 574, 574, 574, 163, 164, 574, 574, 574, 574, 153, 142, 574, 425, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 158, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 260, 250, 574, 230, 574, 574, 574, 574, 574, 574, 574, 574, 574, 229, 574, 574, 574, 574, 574, 574, 574, 574, 261, 574, 126, 574, 574, 292, 127, 574, 231, 574, 574, 574, 574, 574, 574, 347, 92, 574, 574, 574, 449, 574, 286, 574, 574, 574, 574, 574, 93, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 95, 574, 346, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 184, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 424, 349, 94, 574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 576, 0, 0, 0, 0, 574, 574, 17, 426, 574, 437, 574, 574, 160, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 154, 155, 165, 574, 574, 574, 574, 166, 574, 574, 574, 574, 574, 574, 574, 490, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 115, 574, 574, 574, 499, 574, 574, 574, 574, 574, 15, 574, 574, 367, 574, 574, 574, 574, 225, 574, 574, 574, 100, 574, 574, 574, 574, 574, 574, 116, 118, 120, 219, 574, 574, 574, 574, 574, 574, 121, 574, 134, 574, 574, 122, 574, 365, 574, 505, 574, 574, 574, 419, 574, 574, 543, 574, 574, 574, 574, 87, 418, 574, 123, 574, 574, 574, 574, 574, 574, 574, 135, 252, 251, 574, 574, 574, 574, 574, 511, 574, 574, 124, 574, 574, 171, 574, 574, 574, 574, 136, 452, 574, 574, 574, 125, 574, 574, 574, 574, 574, 574, 262, 574, 574, 433, 137, 574, 434, 574, 574, 574, 128, 574, 574, 574, 574, 188, 574, 140, 574, 574, 167, 451, 141, 444, 574, 574, 574, 574, 574, 574, 574, 447, 448, 574, 574, 574, 574, 574, 400, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 110, 574, 574, 574, 574, 574, 574, 101, 443, 574, 574, 574, 574, 574, 574, 432, 96, 574, 574, 574, 574, 574, 574, 574, 574, 574, 129, 574, 574, 574, 574, 317, 130, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 473, 143, 574, 574, 132, 98, 574, 574, 574, 574, 574, 574, 574, 574, 401, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 503, 375, 574, 574, 574, 574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 577, 0, 31, 0, 574, 148, 21, 24, 18, 574, 574, 574, 574, 574, 574, 161, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 170, 574, 574, 51, 574, 574, 159, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 83, 417, 574, 574, 574, 574, 19, 23, 574, 16, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 146, 574, 574, 431, 574, 574, 574, 574, 574, 574, 324, 574, 574, 574, 117, 119, 574, 574, 205, 574, 574, 506, 574, 574, 574, 574, 30, 574, 213, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 374, 574, 492, 574, 574, 574, 253, 574, 574, 255, 574, 574, 574, 574, 574, 574, 574, 420, 574, 574, 572, 574, 574, 454, 574, 574, 574, 574, 574, 89, 574, 574, 574, 58, 574, 574, 574, 13, 263, 574, 574, 574, 574, 574, 28, 574, 270, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 293, 327, 296, 574, 288, 574, 574, 574, 574, 574, 319, 574, 574, 574, 574, 574, 574, 574, 574, 350, 460, 574, 574, 574, 574, 516, 574, 574, 574, 247, 574, 574, 574, 445, 242, 574, 474, 574, 574, 567, 62, 574, 574, 574, 574, 574, 27, 519, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 131, 574, 574, 574, 574, 574, 574, 574, 518, 574, 574, 574, 464, 574, 574, 325, 574, 574, 574, 133, 574, 521, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 29, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 49, 574, 574, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 26, 22, 574, 149, 574, 574, 150, 574, 162, 574, 574, 574, 574, 168, 482, 574, 574, 156, 574, 574, 157, 223, 574, 574, 574, 313, 311, 574, 488, 416, 550, 82, 345, 403, 574, 574, 574, 574, 545, 308, 574, 574, 574, 574, 542, 574, 574, 574, 574, 574, 574, 574, 25, 20, 574, 574, 574, 574, 574, 574, 574, 574, 574, 494, 574, 574, 574, 574, 574, 574, 574, 574, 215, 574, 509, 574, 574, 574, 574, 574, 574, 574, 528, 574, 574, 574, 574, 574, 574, 310, 574, 216, 85, 574, 574, 574, 383, 574, 574, 574, 574, 574, 429, 574, 574, 574, 574, 331, 574, 574, 574, 574, 574, 555, 332, 84, 574, 574, 256, 258, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 456, 422, 574, 574, 39, 574, 574, 423, 90, 574, 574, 574, 57, 214, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 271, 272, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 438, 574, 334, 198, 190, 574, 574, 294, 574, 297, 574, 299, 285, 287, 574, 415, 574, 574, 326, 574, 574, 574, 200, 192, 466, 102, 574, 481, 574, 574, 574, 574, 574, 574, 574, 574, 574, 470, 574, 574, 574, 574, 574, 368, 574, 574, 568, 574, 574, 574, 61, 574, 14, 574, 574, 574, 574, 574, 574, 574, 202, 194, 574, 395, 574, 97, 318, 574, 320, 520, 574, 574, 357, 356, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 204, 196, 574, 574, 493, 574, 88, 574, 574, 507, 463, 574, 574, 574, 217, 574, 221, 436, 435, 207, 574, 574, 351, 574, 312, 574, 574, 574, 574, 106, 574, 574, 574, 574, 574, 314, 218, 487, 574, 574, 574, 574, 574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 220, 378, 574, 574, 574, 152, 574, 574, 574, 479, 574, 362, 363, 574, 574, 574, 315, 307, 112, 113, 114, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 227, 574, 222, 574, 574, 574, 574, 574, 574, 574, 491, 574, 574, 574, 574, 446, 309, 574, 574, 574, 396, 379, 574, 380, 574, 574, 574, 574, 574, 574, 574, 461, 574, 476, 574, 398, 574, 574, 574, 574, 574, 574, 574, 574, 210, 574, 574, 574, 385, 574, 574, 574, 430, 574, 574, 574, 412, 574, 574, 574, 275, 574, 574, 574, 274, 574, 574, 574, 574, 458, 574, 574, 574, 574, 91, 59, 45, 574, 574, 574, 574, 574, 574, 574, 574, 56, 138, 139, 574, 574, 574, 574, 364, 574, 187, 538, 536, 574, 540, 535, 573, 537, 574, 574, 468, 316, 574, 574, 344, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 342, 343, 574, 574, 574, 478, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 290, 574, 574, 574, 574, 330, 574, 63, 47, 60, 574, 574, 574, 574, 574, 574, 366, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 427, 574, 574, 235, 574, 574, 574, 335, 574, 574, 574, 300, 574, 574, 495, 574, 574, 574, 574, 574, 574, 472, 523, 574, 574, 574, 574, 574, 574, 211, 574, 574, 574, 574, 574, 111, 574, 107, 574, 574, 574, 574, 574, 574, 574, 574, 574, 0, 0, 0, 0, 589, 0, 0, 0, 0, 354, 574, 574, 574, 574, 574, 574, 208, 574, 169, 574, 574, 574, 574, 233, 574, 376, 377, 529, 574, 574, 348, 484, 574, 574, 574, 406, 574, 574, 574, 574, 574, 574, 574, 469, 574, 574, 574, 501, 574, 574, 574, 574, 560, 574, 574, 574, 399, 355, 151, 574, 574, 574, 574, 574, 574, 574, 145, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 278, 574, 574, 574, 574, 574, 176, 574, 574, 574, 574, 574, 574, 574, 266, 574, 574, 269, 280, 574, 574, 574, 408, 574, 541, 574, 574, 574, 574, 574, 402, 197, 189, 574, 397, 574, 574, 574, 291, 574, 574, 282, 341, 328, 199, 191, 144, 574, 574, 515, 556, 574, 442, 571, 574, 574, 574, 574, 574, 392, 475, 574, 574, 574, 574, 574, 557, 559, 574, 201, 193, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 339, 574, 574, 203, 195, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 65, 574, 99, 574, 574, 574, 574, 574, 574, 574, 574, 502, 574, 512, 574, 504, 0, 0, 0, 0, 582, 0, 0, 0, 574, 574, 574, 574, 574, 574, 574, 232, 574, 574, 574, 574, 574, 574, 574, 483, 574, 485, 574, 574, 489, 574, 574, 574, 467, 471, 558, 574, 352, 547, 574, 554, 574, 574, 574, 574, 574, 574, 384, 574, 574, 574, 179, 428, 574, 574, 574, 574, 574, 574, 574, 254, 257, 574, 574, 574, 574, 574, 574, 574, 574, 40, 453, 574, 574, 574, 264, 574, 574, 574, 281, 574, 574, 574, 539, 574, 564, 387, 574, 570, 574, 574, 574, 574, 574, 574, 574, 574, 500, 243, 574, 574, 574, 574, 393, 574, 574, 574, 549, 553, 574, 574, 53, 450, 574, 574, 574, 574, 358, 360, 514, 574, 236, 574, 544, 574, 574, 574, 340, 301, 574, 532, 574, 574, 574, 371, 574, 574, 321, 574, 574, 574, 513, 574, 574, 105, 574, 574, 108, 574, 574, 109, 574, 574, 585, 587, 590, 584, 583, 0, 586, 206, 574, 175, 574, 574, 574, 574, 546, 574, 405, 234, 54, 574, 526, 480, 486, 574, 574, 574, 574, 574, 548, 574, 477, 574, 574, 574, 574, 574, 66, 574, 574, 574, 552, 551, 574, 574, 524, 259, 276, 574, 279, 440, 574, 574, 174, 574, 183, 574, 574, 267, 574, 574, 574, 273, 574, 574, 295, 298, 244, 289, 574, 283, 329, 497, 388, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 353, 574, 574, 574, 574, 237, 238, 574, 574, 574, 302, 303, 531, 369, 574, 574, 562, 574, 574, 574, 574, 574, 574, 574, 574, 574, 372, 574, 574, 510, 508, 0, 574, 574, 574, 177, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 248, 574, 574, 574, 277, 574, 574, 574, 574, 265, 268, 574, 574, 574, 574, 574, 284, 389, 574, 574, 574, 185, 574, 574, 533, 574, 574, 574, 359, 361, 522, 239, 336, 574, 574, 304, 574, 566, 574, 574, 574, 574, 498, 574, 574, 104, 373, 574, 574, 0, 574, 574, 574, 212, 103, 527, 574, 574, 409, 574, 465, 574, 381, 382, 441, 574, 574, 209, 249, 574, 525, 574, 574, 574, 574, 574, 574, 574, 574, 574, 391, 390, 574, 574, 574, 574, 574, 574, 338, 337, 370, 574, 574, 574, 574, 574, 67, 574, 574, 0, 228, 574, 574, 574, 574, 407, 574, 574, 530, 574, 574, 574, 574, 226, 574, 574, 574, 574, 496, 574, 574, 394, 574, 574, 574, 574, 322, 323, 574, 574, 517, 240, 305, 588, 574, 574, 574, 413, 410, 574, 574, 386, 178, 574, 574, 181, 574, 404, 574, 574, 574, 245, 55, 574, 333, 574, 241, 306, 173, 574, 574, 574, 574, 455, 180, 186, 182, 246, 574, 574, 439, 457, 574, 414, 574, 462, 574, 574, 574, 574, 574, 534, 574, 411, 459, 172, 0 } ; static yyconst int yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 5, 1, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 20, 21, 1, 22, 1, 23, 1, 24, 25, 26, 27, 28, 29, 30, 31, 32, 31, 33, 34, 35, 36, 37, 38, 31, 39, 40, 41, 42, 43, 44, 45, 31, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst int yy_meta[83] = { 0, 1, 2, 2, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 4, 1, 5, 1, 1, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 1, 1, 1, 1, 8, 1, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 1, 1, 2, 1 } ; static yyconst short int yy_base[2278] = { 0, 0, 1, 49, 0, 2700, 2699, 131, 0, 213, 0, 295, 0, 377, 0, 2698, 2697, 458, 461, 464, 467, 470, 488, 2696, 2695, 2773, 2780, 2780, 2765, 2734, 2723, 2780, 2767, 2780, 2780, 2780, 2761, 479, 2780, 2780, 2780, 2780, 2780, 0, 2780, 1, 2780, 6, 2780, 2780, 2780, 2780, 0, 2780, 565, 2780, 2780, 2780, 2780, 494, 2780, 2780, 2780, 2780, 2686, 2780, 7, 10, 2780, 2780, 2780, 2780, 2780, 28, 31, 2780, 2780, 2780, 2780, 34, 37, 2780, 2780, 2780, 2780, 40, 43, 2780, 2780, 2780, 2685, 2780, 491, 497, 2746, 2780, 2780, 2780, 500, 506, 2745, 2780, 2780, 2780, 509, 512, 2744, 2780, 2780, 622, 2780, 2733, 2780, 2759, 2780, 457, 2739, 454, 457, 458, 7, 508, 0, 2780, 2780, 2780, 2780, 2780, 2780, 2780, 2695, 474, 0, 469, 2686, 2704, 452, 2703, 497, 2682, 2681, 416, 495, 500, 498, 523, 511, 623, 2696, 2691, 2694, 2780, 2780, 587, 625, 646, 648, 595, 661, 677, 670, 680, 2685, 481, 699, 715, 746, 713, 765, 597, 779, 787, 808, 617, 531, 665, 2688, 2691, 2780, 2780, 2780, 613, 2780, 2666, 2780, 788, 791, 794, 868, 2665, 2780, 877, 2726, 880, 2725, 883, 2724, 2677, 2676, 2676, 2674, 2685, 2684, 2671, 2670, 2669, 2780, 653, 0, 2712, 2780, 507, 461, 627, 2664, 2659, 2671, 2653, 2663, 2663, 2673, 2650, 2671, 2658, 0, 2650, 2649, 2652, 2654, 2660, 2651, 0, 0, 2659, 2651, 2653, 2652, 0, 0, 2651, 0, 2644, 2651, 2650, 694, 2635, 2650, 2645, 708, 2652, 2651, 592, 2647, 2646, 0, 2629, 747, 2647, 2640, 2630, 757, 2620, 508, 636, 656, 711, 2643, 778, 441, 2627, 2627, 2629, 723, 2622, 677, 824, 2636, 732, 830, 756, 834, 838, 2637, 801, 2621, 2624, 770, 2631, 2615, 844, 804, 843, 2621, 2624, 2630, 2612, 778, 2616, 2624, 2610, 2619, 857, 2607, 2619, 2603, 2621, 2620, 840, 2615, 2613, 797, 855, 844, 2598, 2616, 2600, 2597, 516, 2596, 2608, 2597, 855, 2599, 0, 2606, 2596, 665, 865, 861, 2599, 2602, 853, 686, 2591, 811, 2601, 0, 2592, 2628, 490, 2587, 895, 873, 0, 2596, 2591, 2579, 879, 873, 0, 904, 913, 885, 2584, 883, 2585, 2587, 2590, 885, 2576, 788, 2573, 2571, 2576, 886, 2581, 2585, 2567, 2586, 2572, 2567, 2579, 2571, 894, 597, 2581, 884, 2572, 2562, 932, 905, 903, 904, 882, 908, 2578, 921, 943, 904, 907, 2560, 923, 926, 929, 2568, 2561, 2574, 937, 939, 2573, 2555, 941, 945, 2568, 2567, 0, 0, 0, 2550, 2568, 2567, 2558, 2565, 2546, 2544, 2562, 2561, 2560, 2780, 2591, 953, 2590, 961, 2550, 2556, 947, 0, 2540, 2535, 2541, 2539, 0, 2539, 2546, 2549, 2533, 2546, 2527, 2539, 2538, 2523, 2530, 0, 0, 0, 2534, 2528, 2521, 2520, 0, 2518, 2522, 2518, 2520, 2525, 2514, 2513, 0, 2511, 2529, 2522, 2527, 2511, 2519, 2517, 2512, 2511, 2504, 950, 0, 2520, 2507, 2508, 0, 2517, 2508, 956, 2501, 2506, 968, 2499, 2510, 2492, 2491, 961, 2498, 2493, 0, 2488, 2495, 2503, 0, 2502, 2485, 2501, 977, 953, 2484, 2493, 2492, 0, 0, 2487, 2491, 2479, 2488, 2488, 2474, 0, 2473, 0, 2479, 2490, 0, 2474, 0, 2473, 942, 2486, 2473, 2485, 0, 2480, 2464, 0, 2474, 2473, 2469, 984, 0, 0, 2461, 0, 2467, 2469, 2457, 2475, 969, 2452, 2461, 0, 978, 0, 2457, 2455, 2462, 997, 2452, 0, 2451, 2450, 0, 2456, 2460, 0, 985, 2445, 2444, 2451, 991, 2457, 2460, 2440, 2443, 0, 2456, 2450, 2455, 2446, 2434, 2433, 986, 2433, 2436, 0, 995, 2434, 0, 2433, 2431, 2438, 0, 2439, 2440, 2431, 2425, 2423, 2433, 0, 2421, 2420, 0, 0, 2417, 2432, 2416, 2434, 2422, 2412, 2418, 2413, 2412, 2410, 0, 2419, 2410, 2408, 989, 2421, 998, 2406, 2418, 2407, 2408, 1015, 2419, 2418, 2400, 2399, 2397, 2395, 2394, 2406, 2409, 2390, 2397, 2391, 2404, 714, 2391, 2392, 0, 2402, 2385, 2399, 2399, 2388, 1006, 0, 0, 2399, 2395, 2391, 2396, 2387, 2380, 0, 0, 2386, 2384, 2376, 2371, 1014, 2377, 2380, 2370, 2369, 0, 2373, 2367, 2366, 2370, 2377, 2373, 2368, 2367, 963, 2373, 1018, 2357, 2355, 2374, 1010, 2355, 2370, 0, 2353, 2353, 2352, 2361, 0, 2349, 2347, 2365, 1003, 1021, 2361, 2359, 2356, 0, 1024, 2342, 2345, 2355, 2344, 2350, 2349, 2338, 1019, 2334, 2345, 2334, 1027, 2333, 2331, 0, 0, 2330, 2342, 2343, 2346, 2326, 2325, 2337, 2323, 2337, 2323, 2320, 2327, 2318, 2780, 1058, 2780, 1067, 2336, 0, 1030, 0, 0, 2331, 2334, 2319, 2332, 2331, 2313, 0, 2329, 2325, 1036, 2316, 2326, 2307, 2320, 2304, 2322, 2317, 2316, 2319, 2305, 2300, 2294, 2304, 2307, 2306, 0, 2294, 2307, 0, 2303, 2296, 2308, 2301, 2302, 2291, 2290, 2295, 2302, 2277, 2285, 1039, 2279, 2285, 0, 0, 2293, 2285, 1044, 1048, 1041, 0, 1046, 0, 1043, 2278, 2290, 2289, 2280, 2281, 2276, 2281, 2280, 2276, 2278, 2281, 2280, 2265, 2268, 2271, 1056, 2260, 2261, 2267, 1064, 2260, 2261, 0, 2262, 2260, 2259, 0, 0, 2248, 2267, 0, 2249, 2263, 2250, 2267, 2252, 2253, 2253, 0, 2247, 0, 2251, 1066, 2244, 2257, 2235, 2247, 2240, 2256, 2244, 2233, 2234, 2244, 1063, 0, 2240, 0, 2246, 2236, 2248, 0, 2236, 2231, 2229, 2232, 2228, 2228, 2225, 2236, 2231, 2219, 0, 2218, 1059, 0, 2223, 2216, 0, 2227, 2225, 2219, 2206, 1067, 0, 2204, 2202, 2198, 423, 498, 548, 598, 1075, 0, 636, 1079, 739, 762, 821, 0, 968, 1035, 1065, 1070, 1065, 1084, 1070, 1071, 1093, 1071, 1078, 1078, 1088, 1092, 1084, 1103, 1087, 1099, 1089, 1091, 1094, 1093, 1096, 0, 1097, 1098, 0, 1104, 1110, 1119, 1118, 1104, 0, 1104, 1121, 1106, 1107, 1108, 1110, 1111, 1122, 0, 0, 1130, 1114, 1114, 1129, 1133, 1127, 1125, 1129, 0, 1119, 1132, 1139, 0, 1141, 1138, 1126, 1128, 1145, 1132, 1139, 1150, 1142, 1141, 1137, 1144, 0, 0, 1147, 1152, 1146, 1147, 1159, 1149, 1148, 1149, 1159, 1153, 1150, 1170, 1155, 0, 1161, 1169, 1170, 1171, 1159, 1162, 1163, 0, 1178, 1163, 1171, 0, 1162, 1179, 1184, 1181, 1170, 1172, 0, 1176, 1173, 1190, 1190, 1195, 1186, 1181, 1196, 1183, 1192, 1191, 1194, 1188, 0, 1190, 1195, 1206, 1207, 1194, 1195, 1191, 1196, 1204, 1209, 1202, 1218, 1205, 1213, 1215, 1215, 1217, 1218, 1208, 0, 1223, 1227, 0, 1214, 1215, 1220, 1219, 1219, 1230, 1222, 1229, 1224, 1274, 1275, 0, 0, 0, 1228, 0, 1232, 1230, 0, 1231, 0, 1250, 1234, 1244, 1249, 0, 0, 1236, 1255, 0, 1237, 1238, 0, 0, 1244, 1246, 1246, 0, 0, 1254, 0, 0, 0, 0, 0, 0, 1239, 1245, 1251, 1252, 1252, 0, 1252, 1251, 1261, 1252, 0, 1267, 1259, 1267, 1267, 1261, 1260, 1263, 0, 0, 1265, 1269, 1273, 1280, 1283, 1269, 1277, 1282, 1284, 0, 1277, 1277, 1286, 1278, 1272, 1281, 1275, 1281, 0, 1283, 0, 1283, 1296, 1284, 1282, 1295, 1280, 1292, 0, 1306, 1288, 1288, 1306, 1306, 1294, 0, 1308, 0, 0, 1300, 1302, 1315, 1313, 1313, 1301, 1304, 1303, 1303, 1304, 1309, 1322, 1312, 1324, 0, 1309, 1315, 1322, 1322, 1320, 0, 0, 0, 1332, 1316, 0, 0, 1319, 1316, 1326, 1318, 1326, 1326, 1322, 1339, 1336, 1326, 0, 0, 1342, 1339, 0, 1331, 1331, 0, 0, 1350, 1347, 1348, 0, 0, 1336, 1346, 1355, 1341, 1343, 1342, 1340, 1352, 1344, 1357, 1348, 1347, 0, 0, 1361, 1358, 1361, 1350, 1356, 1356, 1370, 1372, 1356, 1355, 1361, 1365, 1361, 1379, 1379, 1363, 1370, 1376, 0, 1384, 0, 1371, 1372, 1387, 1370, 0, 1379, 0, 1380, 0, 0, 0, 1381, 1389, 1375, 1391, 1392, 1393, 1391, 1392, 1386, 1387, 0, 0, 1388, 0, 1385, 1387, 1397, 1402, 1394, 1397, 1409, 1396, 1406, 0, 1397, 1393, 1398, 1415, 1408, 0, 1415, 1404, 0, 1399, 1416, 1417, 0, 1405, 1423, 1418, 1417, 1413, 1408, 1428, 1411, 1411, 1417, 1418, 1421, 0, 1423, 0, 0, 1418, 0, 0, 1419, 1431, 0, 0, 1422, 1423, 1438, 1426, 1426, 1426, 1446, 1432, 1428, 1433, 1450, 1443, 1433, 1439, 1440, 1438, 1448, 0, 1452, 0, 1458, 1444, 0, 1459, 1457, 1456, 1459, 0, 1463, 0, 0, 0, 1451, 1449, 1456, 0, 1456, 0, 1453, 1457, 1454, 1466, 0, 1461, 1464, 1473, 1479, 1478, 0, 0, 0, 1483, 1477, 1485, 1478, 1483, 1480, 1481, 1486, 1483, 1464, 1470, 1487, 1484, 1489, 2780, 2780, 0, 1495, 1482, 1496, 0, 1484, 1496, 1498, 0, 1487, 0, 0, 1483, 1506, 1494, 0, 1504, 0, 0, 0, 1494, 1492, 1503, 1500, 1513, 1510, 1502, 1499, 1506, 1512, 0, 1517, 0, 1501, 1501, 1510, 1503, 1507, 1514, 1526, 0, 1521, 1514, 1513, 1513, 0, 0, 1511, 1514, 1529, 0, 0, 1515, 0, 1532, 1532, 1529, 1532, 1525, 1536, 1528, 0, 1525, 1523, 1528, 0, 1528, 1543, 1547, 1524, 1535, 1542, 1534, 1552, 0, 1545, 1550, 1542, 0, 1537, 1543, 1544, 0, 1553, 1549, 1555, 0, 1549, 1549, 1547, 0, 1561, 1555, 1549, 0, 1564, 1549, 1565, 1565, 0, 1569, 1554, 1574, 1571, 0, 0, 0, 1559, 1571, 1565, 1564, 1561, 1575, 1565, 1571, 0, 0, 0, 1570, 1580, 1580, 1584, 0, 1585, 0, 0, 0, 1579, 1592, 0, 0, 0, 1589, 1592, 0, 0, 1595, 1594, 0, 1586, 1576, 1577, 1598, 1583, 1602, 1603, 1593, 1589, 1594, 1588, 1592, 1591, 0, 0, 1589, 1590, 1600, 0, 1614, 1602, 1597, 1611, 1614, 1608, 1608, 1607, 1607, 1606, 0, 1609, 1617, 1614, 1608, 0, 1613, 0, 0, 0, 1612, 1627, 1625, 1628, 1615, 1621, 0, 1617, 1614, 1615, 1618, 1631, 1640, 1637, 1622, 1641, 1640, 1641, 0, 1642, 1636, 1644, 1647, 1635, 1634, 0, 1637, 1645, 1642, 1651, 1634, 1636, 0, 1634, 1636, 1647, 1647, 1655, 1665, 0, 0, 1655, 1659, 1651, 1648, 1667, 1650, 0, 1673, 1661, 1667, 1661, 1670, 0, 1663, 0, 1667, 1662, 1663, 1663, 1666, 1680, 1666, 1675, 1685, 1665, 1666, 1687, 1668, 2780, 1664, 1670, 1694, 1672, 0, 1682, 1695, 1684, 1692, 1681, 1684, 0, 1685, 0, 1687, 1685, 1697, 1694, 1703, 1690, 0, 0, 0, 1701, 1703, 0, 0, 1693, 1708, 1698, 0, 1694, 1702, 1712, 1692, 1698, 1711, 1702, 0, 1703, 1704, 1720, 0, 1705, 1712, 1706, 1709, 0, 1720, 1727, 1715, 0, 1713, 0, 1714, 1715, 1722, 1722, 1720, 1725, 1720, 0, 1734, 1730, 1720, 1740, 1736, 1739, 1728, 1725, 1735, 1732, 1747, 0, 1736, 1745, 1735, 1748, 1755, 0, 1733, 1747, 1757, 1746, 1754, 1743, 1746, 0, 1745, 1759, 0, 0, 1743, 1748, 1761, 0, 1753, 0, 1760, 1768, 1768, 1758, 1757, 0, 0, 0, 1771, 0, 1763, 1764, 1774, 0, 1771, 1780, 1777, 0, 1778, 0, 0, 0, 1781, 1780, 0, 0, 1774, 0, 0, 1769, 1770, 1777, 1774, 1778, 0, 0, 1780, 1775, 1779, 1781, 1777, 0, 0, 1794, 0, 0, 1779, 1795, 1782, 1781, 1793, 1803, 1785, 1786, 1795, 1799, 1792, 1805, 1800, 1794, 1801, 1798, 1802, 0, 1799, 1812, 0, 0, 1813, 1807, 1802, 1805, 1809, 1822, 1821, 1820, 1812, 1826, 1823, 1809, 0, 1812, 0, 1819, 1831, 1824, 1814, 1834, 1831, 1832, 1837, 0, 1836, 0, 1836, 0, 1812, 1813, 1814, 1815, 2780, 1816, 1826, 1818, 1825, 1829, 1827, 1831, 1834, 1838, 1836, 0, 1836, 1844, 1852, 1841, 1851, 1853, 1841, 0, 1843, 0, 1844, 1857, 0, 1860, 1865, 1866, 0, 0, 0, 1867, 0, 0, 1849, 0, 1856, 1851, 1854, 1852, 1853, 1855, 0, 1856, 1854, 1860, 0, 0, 1859, 1875, 1862, 1863, 1868, 1877, 1865, 0, 0, 1862, 1868, 1869, 1872, 1870, 1890, 1872, 1868, 0, 0, 1874, 1872, 1876, 0, 1882, 1880, 1879, 0, 1899, 1881, 1885, 0, 1902, 0, 0, 1895, 0, 1885, 1886, 1895, 1904, 1891, 1893, 1894, 1907, 0, 0, 1902, 1899, 1890, 1898, 0, 1912, 1903, 1899, 0, 0, 1902, 1895, 0, 0, 1921, 1910, 1904, 1913, 1921, 1922, 0, 1914, 1912, 1913, 0, 1916, 1907, 1915, 0, 1917, 1918, 0, 1931, 1932, 1920, 0, 1936, 1935, 1937, 1922, 1940, 1926, 0, 1927, 1931, 0, 1933, 1933, 0, 1930, 1931, 0, 1941, 1948, 2780, 2780, 2780, 2780, 2780, 1936, 2780, 0, 1947, 0, 1956, 1949, 1936, 1945, 0, 1946, 0, 0, 0, 1954, 0, 0, 0, 1951, 1950, 1947, 1952, 1948, 0, 1948, 0, 1964, 1967, 1962, 1947, 1968, 0, 1959, 1957, 1957, 0, 0, 1957, 1970, 0, 0, 0, 1960, 0, 0, 1962, 1980, 0, 1973, 0, 1982, 1960, 0, 1967, 1968, 1986, 0, 1974, 1973, 0, 0, 0, 0, 1989, 1974, 0, 0, 0, 1968, 1988, 1979, 1986, 1973, 1978, 1989, 1994, 1988, 1992, 0, 2001, 1986, 1987, 2000, 0, 1989, 1983, 2003, 1994, 0, 1993, 0, 0, 1996, 2007, 0, 1998, 2009, 2006, 2011, 2012, 1999, 2004, 2006, 2014, 0, 2008, 2009, 0, 0, 2015, 2010, 2008, 2020, 0, 2005, 2015, 2010, 2026, 2025, 2028, 2027, 2027, 2031, 2034, 2035, 2019, 2028, 2034, 2019, 0, 2024, 2025, 2025, 0, 2028, 2029, 2033, 2031, 0, 0, 2032, 2033, 2045, 2033, 2042, 0, 0, 2038, 2032, 2043, 0, 2053, 2043, 0, 2048, 2047, 2048, 0, 0, 0, 0, 0, 2046, 2040, 0, 2041, 0, 2043, 2061, 2061, 2062, 0, 2065, 2048, 0, 0, 2067, 2068, 2050, 2061, 2058, 2069, 0, 0, 0, 2074, 2074, 0, 2068, 0, 2074, 0, 0, 0, 2077, 2065, 0, 0, 2079, 0, 2070, 2068, 2073, 2070, 2074, 2072, 2079, 2073, 2081, 0, 0, 2074, 2079, 2077, 2093, 2078, 2093, 0, 0, 0, 2087, 2082, 2095, 2086, 2085, 0, 2089, 2090, 2079, 0, 2094, 2090, 2096, 2096, 0, 2108, 2096, 0, 2114, 2099, 2094, 2103, 0, 2104, 2097, 2106, 2117, 0, 2118, 2119, 0, 2106, 2114, 2108, 2116, 0, 0, 2109, 2129, 0, 2114, 2115, 2780, 2110, 2133, 2112, 0, 2132, 2136, 2126, 0, 0, 2116, 2117, 0, 2118, 0, 2130, 2136, 2135, 0, 0, 2140, 0, 2134, 0, 0, 0, 2129, 2134, 2134, 2138, 0, 0, 0, 0, 0, 2133, 2126, 0, 0, 2135, 0, 2131, 0, 2154, 2151, 2142, 2144, 2147, 0, 2137, 0, 0, 0, 2780, 2212, 2220, 2228, 2236, 2244, 2250, 2253, 2259, 2266, 2271, 2274, 2278 } ; static yyconst short int yy_def[2278] = { 0, 2266, 2266, 2265, 3, 2267, 2267, 2265, 7, 2265, 9, 2265, 11, 2265, 13, 2267, 2267, 2268, 2268, 2269, 2269, 2270, 2270, 2267, 2267, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2271, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2272, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2273, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2274, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2275, 2275, 2275, 2275, 2265, 2265, 2272, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2265, 2265, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2265, 2265, 2265, 2265, 2265, 2273, 2265, 2265, 2265, 2265, 2265, 2274, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2277, 2275, 2265, 2275, 2275, 2275, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2277, 2275, 2275, 2275, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2275, 2265, 2275, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2275, 2275, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2265, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2265, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2265, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2265, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 0, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265 } ; static yyconst short int yy_nxt[2863] = { 0, 2265, 2265, 27, 27, 2265, 2265, 28, 28, 185, 185, 185, 185, 185, 185, 120, 120, 120, 120, 121, 121, 120, 120, 120, 120, 121, 121, 2265, 29, 29, 186, 186, 186, 186, 186, 186, 187, 187, 187, 187, 187, 187, 188, 188, 188, 188, 188, 188, 30, 30, 31, 32, 33, 31, 34, 35, 36, 31, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 53, 54, 55, 56, 57, 58, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 59, 60, 61, 62, 65, 66, 67, 66, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 65, 65, 65, 65, 65, 65, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 70, 65, 71, 65, 72, 73, 74, 73, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 72, 72, 72, 72, 72, 72, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 76, 72, 77, 72, 78, 79, 80, 79, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 78, 78, 78, 78, 78, 78, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 82, 78, 83, 78, 84, 85, 86, 85, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 84, 84, 84, 84, 84, 84, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 88, 84, 89, 84, 92, 93, 92, 92, 93, 92, 98, 99, 98, 98, 99, 98, 104, 105, 104, 210, 207, 94, 210, 210, 94, 233, 210, 100, 234, 115, 100, 1174, 235, 106, 104, 105, 104, 191, 191, 191, 181, 181, 181, 191, 191, 191, 193, 193, 193, 485, 486, 106, 193, 193, 193, 195, 195, 195, 195, 195, 195, 224, 225, 226, 211, 117, 212, 120, 213, 120, 219, 121, 210, 421, 220, 215, 118, 208, 315, 216, 221, 95, 316, 96, 95, 217, 96, 101, 597, 102, 101, 218, 102, 107, 228, 108, 119, 1175, 229, 236, 237, 240, 399, 243, 241, 242, 598, 472, 230, 238, 239, 107, 420, 108, 123, 244, 124, 125, 126, 182, 245, 247, 473, 248, 127, 565, 566, 246, 400, 128, 129, 401, 402, 130, 131, 132, 133, 134, 132, 135, 132, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 1176, 151, 152, 181, 181, 181, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 132, 177, 178, 179, 180, 197, 210, 457, 249, 256, 257, 258, 366, 259, 648, 260, 261, 285, 286, 287, 458, 288, 289, 198, 367, 290, 649, 1177, 368, 291, 207, 395, 418, 199, 200, 201, 262, 250, 251, 396, 263, 397, 264, 398, 265, 202, 422, 266, 203, 474, 267, 204, 182, 475, 205, 252, 268, 269, 1180, 278, 270, 271, 279, 280, 272, 273, 476, 281, 274, 477, 282, 275, 292, 283, 478, 276, 576, 277, 293, 284, 403, 304, 305, 294, 404, 306, 295, 577, 297, 296, 298, 405, 299, 406, 300, 307, 309, 589, 308, 310, 590, 301, 493, 311, 312, 313, 447, 302, 494, 303, 317, 318, 319, 320, 321, 322, 323, 324, 325, 452, 448, 326, 453, 327, 328, 931, 331, 352, 479, 329, 332, 330, 353, 333, 334, 480, 354, 454, 490, 355, 335, 336, 491, 356, 932, 357, 337, 338, 185, 185, 185, 186, 186, 186, 187, 187, 187, 339, 501, 340, 502, 341, 462, 342, 1186, 343, 463, 506, 344, 345, 468, 346, 347, 464, 469, 348, 358, 349, 350, 351, 359, 507, 522, 360, 361, 470, 1187, 362, 363, 537, 369, 370, 371, 364, 365, 372, 523, 373, 374, 630, 378, 375, 379, 538, 376, 380, 381, 631, 482, 377, 382, 483, 484, 383, 384, 529, 555, 385, 386, 388, 387, 556, 530, 389, 390, 592, 391, 392, 188, 188, 188, 517, 518, 393, 519, 593, 394, 191, 191, 191, 193, 193, 193, 195, 195, 195, 495, 503, 496, 511, 497, 508, 1188, 498, 499, 512, 509, 526, 504, 505, 559, 513, 531, 551, 510, 552, 557, 514, 543, 532, 515, 570, 544, 527, 560, 528, 578, 600, 581, 586, 579, 558, 571, 587, 572, 582, 545, 588, 605, 615, 610, 612, 613, 666, 580, 617, 619, 583, 622, 627, 667, 635, 623, 606, 614, 636, 601, 611, 646, 651, 620, 637, 602, 628, 655, 664, 659, 652, 616, 647, 661, 668, 603, 665, 618, 677, 662, 663, 679, 604, 660, 681, 210, 673, 674, 680, 669, 670, 684, 671, 210, 682, 685, 656, 675, 657, 688, 676, 686, 687, 697, 693, 703, 698, 678, 689, 694, 822, 705, 695, 706, 699, 658, 764, 726, 696, 704, 772, 700, 727, 805, 823, 806, 707, 773, 728, 968, 969, 721, 765, 766, 777, 839, 807, 790, 778, 723, 791, 801, 774, 779, 792, 840, 780, 1189, 832, 781, 782, 783, 802, 784, 785, 803, 833, 858, 843, 804, 844, 848, 859, 863, 849, 850, 875, 879, 876, 906, 909, 907, 851, 940, 864, 910, 976, 880, 952, 852, 915, 916, 971, 1004, 988, 941, 989, 990, 995, 953, 210, 977, 954, 978, 917, 1009, 955, 1005, 991, 210, 1044, 1010, 972, 996, 1011, 1034, 1012, 1074, 1013, 1014, 1015, 1035, 1083, 1088, 1081, 1190, 1086, 1045, 1075, 1082, 1084, 1076, 1087, 1091, 1109, 1089, 1092, 1093, 1114, 1090, 1132, 1110, 1085, 1144, 1161, 1031, 1115, 1169, 1145, 1178, 1162, 1191, 1194, 1181, 1032, 1192, 1182, 1183, 1170, 1184, 1133, 1193, 1195, 1196, 1197, 1204, 1179, 1205, 1198, 1199, 1206, 1185, 1200, 1207, 1208, 1201, 1209, 1210, 1211, 1212, 1213, 1202, 1214, 1215, 1203, 1216, 1217, 1219, 1218, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1253, 1249, 1240, 1250, 1254, 1255, 1256, 1257, 1258, 1241, 1259, 1260, 1251, 1261, 1262, 1263, 1264, 1252, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1286, 1287, 1288, 1289, 1291, 1296, 1292, 1297, 1293, 1298, 1299, 1300, 1301, 1285, 1302, 1303, 1304, 1294, 1290, 1305, 1306, 1307, 1295, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1328, 1329, 1331, 1332, 1333, 1334, 1335, 1336, 1327, 1340, 1341, 1342, 1337, 1330, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1338, 1353, 1339, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1376, 1377, 1375, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1396, 1397, 1398, 1399, 1400, 1401, 1394, 1395, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1444, 1442, 1445, 1446, 1447, 1432, 1443, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1478, 1479, 1480, 1477, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1489, 1490, 1491, 1492, 1493, 1488, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1521, 1539, 1540, 1542, 1543, 1541, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1557, 1558, 1559, 1560, 1561, 1562, 1564, 1565, 1567, 1568, 1569, 1570, 1571, 1572, 1575, 1576, 1563, 1556, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1566, 1573, 1584, 1585, 1586, 1574, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1587, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676, 1677, 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1689, 1690, 1691, 1692, 1693, 1678, 1694, 1695, 1696, 1688, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1713, 1714, 1712, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731, 1732, 1733, 1734, 1735, 1736, 1737, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1755, 1756, 1757, 1758, 1759, 1760, 1761, 1763, 1754, 1764, 1765, 1766, 1767, 1768, 1769, 1762, 1771, 1772, 1773, 1774, 1775, 1770, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1837, 1838, 1836, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1847, 1848, 1849, 1850, 1846, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1903, 1904, 1905, 1906, 1907, 1902, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028, 2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038, 2039, 2040, 2041, 2042, 2043, 2044, 2045, 2048, 2049, 2050, 2051, 2052, 2053, 2054, 2046, 2055, 2056, 2057, 2058, 2059, 2047, 2060, 2061, 2062, 2063, 2064, 2065, 2066, 2067, 2068, 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077, 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088, 2089, 2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097, 2098, 2099, 2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107, 2108, 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127, 2128, 2129, 2130, 2131, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139, 2140, 2141, 2142, 2143, 2144, 2145, 2146, 2147, 2148, 2149, 2150, 2151, 2152, 2153, 2154, 2155, 2156, 2157, 2158, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2166, 2167, 2168, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2176, 2177, 2178, 2179, 2180, 2181, 2182, 2184, 2185, 2186, 2187, 2188, 2189, 2190, 2191, 2192, 2193, 2194, 2195, 2196, 2197, 2198, 2199, 2183, 2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, 2210, 2211, 2212, 2213, 2214, 2215, 2216, 2217, 2218, 2219, 2220, 2221, 2222, 2223, 2224, 2225, 2226, 2227, 2228, 2229, 2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238, 2239, 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254, 2255, 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2264, 26, 26, 26, 26, 26, 26, 26, 26, 63, 63, 63, 63, 63, 63, 63, 63, 91, 91, 91, 91, 91, 91, 91, 91, 97, 97, 97, 97, 97, 97, 97, 97, 103, 103, 103, 103, 103, 103, 103, 103, 116, 1173, 1172, 116, 116, 116, 122, 122, 183, 183, 183, 1171, 183, 183, 189, 189, 189, 189, 189, 189, 189, 189, 209, 209, 209, 209, 209, 132, 132, 419, 1168, 419, 1167, 1166, 1165, 1164, 1163, 1160, 1159, 1158, 1157, 1156, 1155, 1154, 1153, 1152, 1151, 1150, 1149, 1148, 1147, 1146, 1143, 1142, 1141, 1140, 1139, 1138, 1137, 1136, 1135, 1134, 1131, 1130, 1129, 1128, 1127, 1126, 1125, 1124, 1123, 1122, 1121, 1120, 1119, 1118, 1117, 1116, 1113, 1112, 1111, 1108, 1107, 1106, 1105, 1104, 1103, 1102, 1101, 1100, 1099, 1098, 1097, 1096, 1095, 1094, 1080, 1079, 1078, 1077, 1073, 1072, 1071, 1070, 1069, 1068, 1067, 1066, 1065, 1064, 1063, 1062, 1061, 1060, 1059, 1058, 1057, 1056, 1055, 1054, 1053, 1052, 1051, 1050, 1049, 1048, 1047, 1046, 1043, 1042, 1041, 1040, 1039, 1038, 1037, 1036, 1033, 1030, 1029, 1028, 1027, 1026, 1025, 1024, 1023, 1022, 1021, 1020, 1019, 1018, 1017, 1016, 1008, 1007, 1006, 1003, 1002, 1001, 1000, 999, 998, 997, 994, 993, 992, 987, 986, 985, 984, 983, 982, 981, 980, 979, 975, 974, 973, 970, 967, 966, 965, 964, 963, 962, 961, 960, 959, 958, 957, 956, 951, 950, 949, 948, 947, 946, 945, 944, 943, 942, 939, 938, 937, 936, 935, 934, 933, 930, 929, 928, 927, 926, 925, 924, 923, 922, 921, 920, 919, 918, 914, 913, 912, 911, 908, 905, 904, 903, 902, 901, 900, 899, 898, 897, 896, 895, 894, 893, 892, 891, 890, 889, 888, 887, 886, 885, 884, 883, 882, 881, 878, 877, 874, 873, 872, 871, 870, 869, 868, 867, 866, 865, 862, 861, 860, 857, 856, 855, 854, 853, 847, 846, 845, 842, 841, 838, 837, 836, 835, 834, 831, 830, 829, 828, 827, 826, 825, 824, 821, 820, 819, 818, 817, 816, 815, 814, 813, 812, 811, 810, 809, 808, 800, 799, 798, 797, 796, 795, 794, 793, 789, 788, 787, 786, 776, 775, 771, 770, 769, 768, 767, 763, 762, 761, 760, 759, 758, 757, 756, 755, 754, 753, 752, 751, 750, 749, 748, 747, 746, 745, 744, 743, 742, 741, 740, 739, 738, 737, 736, 735, 734, 733, 732, 731, 730, 729, 725, 724, 722, 720, 719, 718, 717, 716, 715, 714, 713, 712, 711, 710, 709, 708, 702, 701, 692, 691, 690, 683, 672, 654, 653, 650, 645, 644, 643, 642, 641, 640, 639, 638, 634, 633, 632, 629, 626, 625, 624, 621, 609, 608, 607, 599, 596, 595, 594, 591, 585, 584, 575, 574, 573, 569, 568, 567, 564, 563, 562, 561, 554, 553, 550, 549, 548, 547, 546, 542, 541, 540, 539, 536, 535, 534, 533, 525, 524, 521, 520, 516, 500, 492, 489, 488, 487, 481, 471, 467, 466, 465, 461, 460, 459, 456, 455, 451, 450, 449, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 210, 417, 416, 415, 414, 413, 412, 411, 410, 409, 196, 194, 192, 190, 184, 408, 407, 314, 255, 254, 253, 232, 231, 227, 223, 222, 214, 210, 113, 206, 196, 194, 192, 190, 184, 114, 113, 112, 111, 110, 2265, 109, 109, 90, 90, 64, 64, 25, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265 } ; static yyconst short int yy_chk[2863] = { 0, 0, 0, 1, 2, 0, 0, 1, 2, 66, 66, 66, 67, 67, 67, 43, 45, 43, 45, 43, 45, 47, 120, 47, 120, 47, 120, 0, 1, 2, 73, 73, 73, 74, 74, 74, 79, 79, 79, 80, 80, 80, 85, 85, 85, 86, 86, 86, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 17, 17, 17, 18, 18, 18, 19, 19, 19, 20, 20, 20, 21, 21, 21, 117, 115, 17, 118, 119, 18, 141, 212, 19, 141, 37, 20, 870, 141, 21, 22, 22, 22, 92, 92, 92, 59, 59, 59, 93, 93, 93, 98, 98, 98, 268, 268, 22, 99, 99, 99, 104, 104, 104, 105, 105, 105, 136, 136, 136, 117, 37, 118, 121, 119, 121, 133, 121, 211, 212, 133, 131, 37, 115, 163, 131, 133, 17, 163, 17, 18, 131, 18, 19, 339, 19, 20, 131, 20, 21, 138, 21, 37, 871, 138, 142, 142, 143, 174, 144, 143, 143, 339, 262, 138, 142, 142, 22, 211, 22, 54, 144, 54, 54, 54, 59, 145, 146, 262, 146, 54, 317, 317, 145, 174, 54, 54, 174, 174, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 872, 54, 54, 181, 181, 181, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 109, 213, 251, 147, 153, 153, 153, 169, 153, 374, 153, 153, 157, 157, 157, 251, 157, 157, 109, 169, 157, 374, 873, 169, 157, 207, 173, 207, 109, 109, 109, 154, 147, 147, 173, 154, 173, 154, 173, 154, 109, 213, 154, 109, 263, 154, 109, 181, 263, 109, 147, 154, 155, 876, 156, 155, 155, 156, 156, 155, 155, 263, 156, 155, 264, 156, 155, 158, 156, 264, 155, 326, 155, 158, 156, 175, 160, 160, 158, 175, 160, 158, 326, 159, 158, 159, 175, 159, 175, 159, 160, 161, 332, 160, 161, 332, 159, 274, 161, 161, 161, 244, 159, 274, 159, 164, 164, 164, 164, 164, 164, 164, 164, 164, 248, 244, 164, 248, 164, 164, 628, 165, 167, 265, 164, 165, 164, 167, 165, 165, 265, 167, 248, 272, 167, 165, 165, 272, 167, 628, 167, 165, 166, 185, 185, 185, 186, 186, 186, 187, 187, 187, 166, 277, 166, 277, 166, 256, 166, 878, 166, 256, 279, 166, 166, 260, 166, 166, 256, 260, 166, 168, 166, 166, 166, 168, 279, 286, 168, 168, 260, 879, 168, 168, 296, 170, 170, 170, 168, 168, 170, 286, 170, 170, 360, 171, 170, 171, 296, 170, 171, 171, 360, 267, 170, 171, 267, 267, 171, 171, 290, 310, 171, 171, 172, 171, 310, 290, 172, 172, 334, 172, 172, 188, 188, 188, 283, 283, 172, 283, 334, 172, 191, 191, 191, 193, 193, 193, 195, 195, 195, 275, 278, 275, 281, 275, 280, 880, 275, 275, 281, 280, 289, 278, 278, 312, 281, 291, 307, 280, 307, 311, 281, 301, 291, 281, 321, 301, 289, 312, 289, 327, 341, 328, 331, 327, 311, 321, 331, 321, 328, 301, 331, 342, 350, 347, 348, 348, 383, 327, 351, 352, 328, 354, 358, 383, 364, 354, 342, 348, 364, 341, 347, 373, 376, 352, 364, 341, 358, 379, 382, 380, 376, 350, 373, 381, 384, 341, 382, 351, 387, 381, 381, 388, 341, 380, 389, 420, 386, 386, 388, 384, 384, 391, 384, 422, 389, 391, 379, 386, 379, 393, 386, 392, 392, 398, 397, 401, 398, 387, 393, 397, 517, 402, 397, 402, 398, 379, 468, 425, 397, 401, 476, 398, 425, 496, 517, 496, 402, 476, 425, 666, 666, 420, 468, 468, 479, 537, 496, 484, 479, 422, 484, 495, 476, 479, 484, 537, 479, 882, 528, 479, 479, 479, 495, 479, 479, 495, 528, 555, 541, 495, 541, 546, 555, 559, 546, 546, 571, 575, 571, 607, 609, 607, 546, 637, 559, 609, 672, 575, 652, 546, 614, 614, 668, 698, 684, 637, 684, 685, 690, 652, 721, 672, 652, 672, 614, 702, 652, 698, 685, 723, 738, 702, 668, 690, 702, 726, 702, 769, 702, 702, 702, 726, 777, 780, 776, 883, 778, 738, 769, 776, 777, 769, 778, 782, 798, 780, 782, 782, 802, 780, 825, 798, 777, 836, 856, 721, 802, 865, 836, 874, 856, 884, 886, 877, 723, 885, 877, 877, 865, 877, 825, 885, 887, 888, 889, 891, 874, 892, 890, 890, 893, 877, 890, 894, 895, 890, 896, 897, 898, 899, 900, 890, 901, 902, 890, 903, 904, 906, 904, 906, 907, 909, 910, 911, 912, 913, 915, 916, 917, 918, 919, 920, 921, 922, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 938, 939, 938, 929, 938, 940, 941, 942, 943, 944, 929, 945, 946, 938, 947, 948, 949, 952, 938, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 966, 967, 968, 969, 970, 971, 972, 974, 975, 976, 978, 979, 980, 981, 980, 982, 980, 983, 985, 986, 987, 974, 988, 989, 990, 980, 979, 991, 992, 993, 980, 994, 995, 996, 997, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1012, 1013, 1014, 1015, 1016, 1017, 1019, 1020, 1020, 1012, 1022, 1023, 1024, 1020, 1014, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1036, 1038, 1020, 1039, 1020, 1041, 1043, 1044, 1045, 1046, 1049, 1050, 1052, 1053, 1056, 1057, 1058, 1061, 1068, 1069, 1070, 1071, 1072, 1074, 1075, 1076, 1077, 1079, 1076, 1080, 1081, 1082, 1083, 1084, 1085, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1098, 1098, 1105, 1107, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1117, 1118, 1119, 1120, 1121, 1122, 1124, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1142, 1143, 1144, 1145, 1146, 1150, 1151, 1154, 1155, 1157, 1156, 1158, 1159, 1160, 1140, 1156, 1161, 1162, 1163, 1166, 1167, 1169, 1170, 1173, 1174, 1175, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1198, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1211, 1213, 1214, 1215, 1208, 1216, 1218, 1220, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1236, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1248, 1249, 1250, 1251, 1252, 1254, 1255, 1257, 1258, 1259, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1251, 1272, 1274, 1277, 1280, 1274, 1281, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1302, 1304, 1305, 1307, 1308, 1309, 1310, 1312, 1316, 1317, 1300, 1294, 1318, 1320, 1322, 1323, 1324, 1325, 1327, 1304, 1312, 1328, 1329, 1330, 1312, 1331, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1330, 1346, 1347, 1348, 1352, 1353, 1354, 1356, 1357, 1358, 1360, 1363, 1364, 1365, 1367, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1382, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1392, 1393, 1394, 1395, 1398, 1399, 1400, 1403, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1413, 1414, 1415, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1426, 1427, 1428, 1430, 1431, 1432, 1434, 1435, 1436, 1438, 1439, 1440, 1442, 1443, 1444, 1446, 1447, 1448, 1449, 1451, 1452, 1453, 1454, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1469, 1470, 1471, 1451, 1472, 1474, 1478, 1463, 1479, 1483, 1484, 1487, 1488, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1499, 1502, 1505, 1506, 1507, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1520, 1521, 1522, 1523, 1525, 1529, 1530, 1531, 1532, 1533, 1534, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1548, 1549, 1550, 1551, 1552, 1553, 1555, 1556, 1557, 1558, 1559, 1550, 1560, 1562, 1563, 1564, 1565, 1566, 1558, 1567, 1570, 1571, 1572, 1573, 1566, 1574, 1575, 1577, 1578, 1579, 1580, 1581, 1583, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597, 1599, 1600, 1601, 1602, 1604, 1605, 1606, 1607, 1608, 1609, 1611, 1613, 1614, 1615, 1616, 1617, 1618, 1622, 1623, 1626, 1627, 1628, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1638, 1639, 1640, 1642, 1643, 1644, 1645, 1647, 1648, 1649, 1651, 1653, 1649, 1654, 1655, 1656, 1657, 1658, 1659, 1661, 1662, 1663, 1664, 1665, 1661, 1666, 1667, 1668, 1669, 1670, 1671, 1673, 1674, 1675, 1676, 1677, 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1687, 1688, 1691, 1692, 1693, 1695, 1697, 1698, 1699, 1700, 1701, 1705, 1707, 1708, 1709, 1711, 1712, 1713, 1715, 1719, 1720, 1723, 1726, 1727, 1728, 1729, 1730, 1733, 1734, 1735, 1736, 1737, 1740, 1743, 1744, 1745, 1746, 1747, 1740, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756, 1757, 1758, 1759, 1761, 1762, 1765, 1766, 1767, 1768, 1769, 1770, 1771, 1772, 1773, 1774, 1775, 1776, 1778, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1789, 1791, 1793, 1794, 1795, 1796, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1817, 1819, 1820, 1822, 1823, 1824, 1828, 1831, 1833, 1834, 1835, 1836, 1837, 1838, 1840, 1841, 1842, 1845, 1846, 1847, 1848, 1849, 1850, 1851, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1864, 1865, 1866, 1868, 1869, 1870, 1872, 1873, 1874, 1876, 1879, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1891, 1892, 1893, 1894, 1896, 1897, 1898, 1901, 1902, 1905, 1906, 1907, 1908, 1909, 1910, 1912, 1913, 1914, 1916, 1917, 1918, 1920, 1921, 1923, 1924, 1925, 1927, 1928, 1929, 1930, 1931, 1932, 1934, 1935, 1937, 1938, 1929, 1940, 1941, 1943, 1944, 1950, 1929, 1953, 1955, 1956, 1957, 1958, 1960, 1964, 1968, 1969, 1970, 1971, 1972, 1974, 1976, 1977, 1978, 1979, 1980, 1982, 1983, 1984, 1987, 1988, 1992, 1995, 1996, 1998, 2000, 2001, 2003, 2004, 2005, 2007, 2008, 2013, 2014, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2029, 2030, 2031, 2032, 2034, 2035, 2036, 2037, 2039, 2042, 2043, 2045, 2046, 2047, 2048, 2049, 2050, 2051, 2052, 2053, 2055, 2056, 2059, 2060, 2061, 2062, 2064, 2065, 2066, 2067, 2068, 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077, 2078, 2080, 2081, 2082, 2084, 2085, 2086, 2087, 2090, 2091, 2092, 2093, 2094, 2097, 2098, 2099, 2101, 2102, 2104, 2105, 2106, 2112, 2113, 2115, 2117, 2118, 2119, 2120, 2122, 2123, 2126, 2127, 2128, 2129, 2130, 2131, 2135, 2136, 2138, 2140, 2144, 2145, 2148, 2150, 2151, 2152, 2153, 2154, 2155, 2156, 2157, 2158, 2161, 2135, 2162, 2163, 2164, 2165, 2166, 2170, 2171, 2172, 2173, 2174, 2176, 2177, 2178, 2180, 2181, 2182, 2183, 2185, 2186, 2188, 2189, 2190, 2191, 2193, 2194, 2195, 2196, 2198, 2199, 2201, 2202, 2203, 2204, 2207, 2208, 2210, 2211, 2213, 2214, 2215, 2217, 2218, 2219, 2222, 2223, 2225, 2227, 2228, 2229, 2232, 2234, 2238, 2239, 2240, 2241, 2247, 2248, 2251, 2253, 2255, 2256, 2257, 2258, 2259, 2261, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2271, 869, 868, 2271, 2271, 2271, 2272, 2272, 2273, 2273, 2273, 867, 2273, 2273, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2275, 2275, 2275, 2275, 2275, 2276, 2276, 2277, 864, 2277, 863, 862, 861, 859, 858, 855, 853, 852, 851, 850, 849, 848, 847, 846, 845, 844, 842, 841, 840, 838, 835, 834, 833, 832, 831, 830, 829, 828, 827, 826, 824, 822, 820, 819, 818, 817, 816, 815, 814, 812, 811, 808, 807, 806, 804, 803, 801, 800, 799, 797, 796, 795, 794, 793, 792, 791, 790, 789, 788, 787, 786, 785, 784, 783, 775, 774, 771, 770, 768, 767, 766, 765, 764, 763, 762, 761, 760, 759, 758, 756, 755, 753, 752, 751, 750, 749, 748, 747, 746, 745, 744, 743, 742, 741, 740, 739, 737, 736, 734, 733, 732, 731, 730, 729, 724, 719, 718, 717, 716, 715, 714, 713, 712, 711, 710, 709, 708, 707, 704, 703, 701, 700, 699, 697, 696, 695, 694, 693, 692, 691, 688, 687, 686, 683, 682, 681, 679, 678, 677, 676, 674, 673, 671, 670, 669, 667, 665, 664, 663, 662, 661, 660, 659, 658, 656, 655, 654, 653, 651, 650, 649, 648, 645, 644, 643, 642, 641, 640, 636, 635, 634, 633, 632, 630, 629, 627, 626, 625, 624, 623, 622, 621, 620, 619, 618, 617, 616, 615, 613, 612, 611, 610, 608, 606, 605, 604, 602, 601, 600, 599, 598, 597, 596, 595, 594, 593, 590, 589, 587, 586, 585, 584, 583, 582, 580, 579, 578, 576, 573, 572, 570, 569, 568, 567, 566, 565, 563, 562, 561, 560, 558, 557, 556, 553, 552, 550, 549, 547, 545, 544, 543, 539, 538, 536, 535, 534, 533, 531, 527, 526, 525, 523, 522, 520, 519, 518, 516, 514, 512, 511, 509, 507, 506, 505, 504, 503, 502, 499, 498, 497, 494, 493, 492, 490, 489, 488, 486, 485, 483, 482, 481, 480, 478, 477, 475, 474, 472, 471, 470, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 456, 455, 454, 453, 452, 451, 450, 448, 447, 446, 445, 441, 440, 439, 438, 437, 436, 435, 434, 433, 432, 430, 429, 428, 427, 424, 423, 421, 419, 417, 416, 415, 414, 413, 412, 411, 410, 409, 408, 404, 403, 400, 399, 396, 395, 394, 390, 385, 378, 377, 375, 372, 371, 370, 369, 368, 367, 366, 365, 363, 362, 361, 359, 357, 356, 355, 353, 346, 345, 344, 340, 338, 337, 335, 333, 330, 329, 325, 324, 322, 320, 319, 318, 316, 315, 314, 313, 309, 308, 306, 305, 304, 303, 302, 300, 299, 298, 297, 295, 294, 293, 292, 288, 287, 285, 284, 282, 276, 273, 271, 270, 269, 266, 261, 259, 258, 257, 255, 253, 252, 250, 249, 247, 246, 245, 243, 242, 241, 239, 236, 235, 234, 233, 230, 229, 228, 227, 226, 225, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 209, 205, 204, 203, 202, 201, 200, 199, 198, 197, 196, 194, 192, 189, 183, 177, 176, 162, 150, 149, 148, 140, 139, 137, 135, 134, 130, 116, 113, 111, 106, 100, 94, 90, 64, 36, 32, 30, 29, 28, 25, 24, 23, 16, 15, 6, 5, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265 } ; static yy_state_type yy_last_accepting_state; static char *yy_last_accepting_cpos; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "itex2MML.l" #define INITIAL 0 /* itex2MML 1.1.5 * itex2MML.l last modified 6/15/2006 */ #line 6 "itex2MML.l" #define MATH 1 #define ATTRIBUTELIST 2 #define BBOLD 3 #define FRAKTUR 4 #define CALLIGRAPHIC 5 #define ROMAN 6 #define PLAINTEXT 7 #define INT1 8 #define INT2 9 #define INT3 10 #define MATHENV 11 #line 10 "itex2MML.l" #include #define YYSTYPE char * #include "y.tab.h" #include "itex2MML.h" #define YY_NEVER_INTERACTIVE 1 #define YY_INPUT(buffer,result,max_size) result = s_itex2MML_read (buffer, max_size) static int s_itex2MML_read (char * buffer, int max_size); #define yylval itex2MML_yylval extern char * yylval; int itex2MML_lineno = 1; int itex2MML_rowposn = 0; int itex2MML_displaymode = 0; #line 1812 "lex.yy.c" /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap YY_PROTO(( void )); #else extern int yywrap YY_PROTO(( void )); #endif #endif #ifndef YY_NO_UNPUT static void yyunput YY_PROTO(( int c, char *buf_ptr )); #endif #ifndef yytext_ptr static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int )); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen YY_PROTO(( yyconst char * )); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput YY_PROTO(( void )); #else static int input YY_PROTO(( void )); #endif #endif #if YY_STACK_USED static int yy_start_stack_ptr = 0; static int yy_start_stack_depth = 0; static int *yy_start_stack = 0; #ifndef YY_NO_PUSH_STATE static void yy_push_state YY_PROTO(( int new_state )); #endif #ifndef YY_NO_POP_STATE static void yy_pop_state YY_PROTO(( void )); #endif #ifndef YY_NO_TOP_STATE static int yy_top_state YY_PROTO(( void )); #endif #else #define YY_NO_PUSH_STATE 1 #define YY_NO_POP_STATE 1 #define YY_NO_TOP_STATE 1 #endif #ifdef YY_MALLOC_DECL YY_MALLOC_DECL #else #if __STDC__ #ifndef __cplusplus #include #endif #else /* Just try to get by without declaring the routines. This will fail * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int) * or sizeof(void*) != sizeof(int). */ #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #define YY_READ_BUF_SIZE 8192 #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO (void) fwrite( yytext, yyleng, 1, yyout ) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( yy_current_buffer->yy_is_interactive ) \ { \ int c = '*', n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \ && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #endif /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL int yylex YY_PROTO(( void )) #endif /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK break; #endif #define YY_RULE_SETUP \ YY_USER_ACTION YY_DECL { register yy_state_type yy_current_state; register char *yy_cp = NULL, *yy_bp = NULL; register int yy_act; #line 31 "itex2MML.l" if (itex2MML_rowposn==1) itex2MML_rowposn=0; if (itex2MML_rowposn==2) itex2MML_rowposn=1; #line 1969 "lex.yy.c" if ( yy_init ) { yy_init = 0; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! yy_start ) yy_start = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! yy_current_buffer ) yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); yy_load_buffer_state(); } while ( 1 ) /* loops until end-of-file is reached */ { yy_cp = yy_c_buf_p; /* Support of yytext. */ *yy_cp = yy_hold_char; /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; yy_current_state = yy_start; yy_match: do { register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; if ( yy_accept[yy_current_state] ) { yy_last_accepting_state = yy_current_state; yy_last_accepting_cpos = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 2266 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } while ( yy_base[yy_current_state] != 2780 ); yy_find_action: yy_act = yy_accept[yy_current_state]; if ( yy_act == 0 ) { /* have to back up */ yy_cp = yy_last_accepting_cpos; yy_current_state = yy_last_accepting_state; yy_act = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = yy_hold_char; yy_cp = yy_last_accepting_cpos; yy_current_state = yy_last_accepting_state; goto yy_find_action; case 1: YY_RULE_SETUP #line 36 "itex2MML.l" BEGIN(MATH); itex2MML_rowposn=2; if (yyleng==2) { itex2MML_displaymode=1; return STARTDMATH;}; itex2MML_displaymode=0; return STARTMATH; YY_BREAK case 2: YY_RULE_SETUP #line 37 "itex2MML.l" BEGIN(MATH); itex2MML_rowposn=2; itex2MML_displaymode=1; return STARTDMATH; YY_BREAK case 3: YY_RULE_SETUP #line 38 "itex2MML.l" return 0; YY_BREAK case 4: YY_RULE_SETUP #line 39 "itex2MML.l" {itex2MML_lineno++; yylval=itex2MML_copy_string(yytext); return CHAR;} YY_BREAK case 5: YY_RULE_SETUP #line 40 "itex2MML.l" {yylval=itex2MML_copy_string(yytext); return CHAR;} YY_BREAK case 6: #line 48 "itex2MML.l" case 7: YY_RULE_SETUP #line 48 "itex2MML.l" {BEGIN(INITIAL); return ENDMATH;} YY_BREAK case 8: YY_RULE_SETUP #line 50 "itex2MML.l" return SUP; YY_BREAK case 9: YY_RULE_SETUP #line 51 "itex2MML.l" return SUB; YY_BREAK case 10: YY_RULE_SETUP #line 52 "itex2MML.l" return EMPTYMROW; YY_BREAK case 11: YY_RULE_SETUP #line 53 "itex2MML.l" {itex2MML_rowposn = 2; return MROWOPEN;} YY_BREAK case 12: YY_RULE_SETUP #line 54 "itex2MML.l" return MROWCLOSE; YY_BREAK case 13: YY_RULE_SETUP #line 56 "itex2MML.l" itex2MML_rowposn=2; return LEFT; YY_BREAK case 14: YY_RULE_SETUP #line 57 "itex2MML.l" return RIGHT; YY_BREAK case 15: #line 60 "itex2MML.l" case 16: YY_RULE_SETUP #line 60 "itex2MML.l" {return BIG;} YY_BREAK case 17: #line 62 "itex2MML.l" case 18: YY_RULE_SETUP #line 62 "itex2MML.l" {return BBIG;} YY_BREAK case 19: #line 64 "itex2MML.l" case 20: YY_RULE_SETUP #line 64 "itex2MML.l" {return BIGG;} YY_BREAK case 21: #line 66 "itex2MML.l" case 22: YY_RULE_SETUP #line 66 "itex2MML.l" {return BBIGG;} YY_BREAK case 23: YY_RULE_SETUP #line 68 "itex2MML.l" {return BIGL;} YY_BREAK case 24: YY_RULE_SETUP #line 69 "itex2MML.l" {return BBIGL;} YY_BREAK case 25: YY_RULE_SETUP #line 70 "itex2MML.l" {return BIGGL;} YY_BREAK case 26: YY_RULE_SETUP #line 71 "itex2MML.l" {return BBIGGL;} YY_BREAK case 27: #line 74 "itex2MML.l" case 28: #line 75 "itex2MML.l" case 29: #line 76 "itex2MML.l" case 30: YY_RULE_SETUP #line 76 "itex2MML.l" {/* Ignore */ ;} YY_BREAK case 31: #line 80 "itex2MML.l" case 32: YY_RULE_SETUP #line 80 "itex2MML.l" {itex2MML_rowposn=2; return COLSEP;} YY_BREAK case 33: YY_RULE_SETUP #line 82 "itex2MML.l" {yylval=itex2MML_copy_string("&"); return MI;} YY_BREAK case 34: YY_RULE_SETUP #line 84 "itex2MML.l" {yylval=itex2MML_copy_string("$"); return MI;} YY_BREAK case 35: YY_RULE_SETUP #line 85 "itex2MML.l" {yylval=itex2MML_copy_string("%"); return MI;} YY_BREAK case 36: YY_RULE_SETUP #line 87 "itex2MML.l" itex2MML_rowposn=2; return ROWSEP; YY_BREAK case 37: YY_RULE_SETUP #line 89 "itex2MML.l" {yylval=itex2MML_copy_string(yytext); return MI;} YY_BREAK case 38: YY_RULE_SETUP #line 91 "itex2MML.l" {yylval=itex2MML_copy2(yytext, " "); return MN;} YY_BREAK case 39: #line 93 "itex2MML.l" case 40: YY_RULE_SETUP #line 93 "itex2MML.l" {yylval=itex2MML_copy_string("∞"); return MN;} YY_BREAK case 41: #line 96 "itex2MML.l" case 42: YY_RULE_SETUP #line 96 "itex2MML.l" {yylval=itex2MML_copy_string(yytext); return LEFTDELIM;} YY_BREAK case 43: #line 99 "itex2MML.l" case 44: YY_RULE_SETUP #line 99 "itex2MML.l" {yylval=itex2MML_copy_string(yytext); return RIGHTDELIM;} YY_BREAK case 45: #line 102 "itex2MML.l" case 46: YY_RULE_SETUP #line 102 "itex2MML.l" {yylval=itex2MML_copy_string("{"); return LEFTDELIM;} YY_BREAK case 47: #line 104 "itex2MML.l" case 48: YY_RULE_SETUP #line 104 "itex2MML.l" {yylval=itex2MML_copy_string("}"); return RIGHTDELIM;} YY_BREAK case 49: #line 107 "itex2MML.l" case 50: YY_RULE_SETUP #line 107 "itex2MML.l" {yylval=itex2MML_copy_string("∣"); return OTHERDELIM;} YY_BREAK case 51: #line 109 "itex2MML.l" case 52: YY_RULE_SETUP #line 109 "itex2MML.l" {yylval=itex2MML_copy_string("∥"); return OTHERDELIM;} YY_BREAK case 53: YY_RULE_SETUP #line 111 "itex2MML.l" {yylval=itex2MML_copy_string("∖"); return MO;} YY_BREAK case 54: YY_RULE_SETUP #line 112 "itex2MML.l" {yylval=itex2MML_copy_string("\"); return MO;} YY_BREAK case 55: YY_RULE_SETUP #line 113 "itex2MML.l" {yylval=itex2MML_copy_string("﹨"); return MOF;} YY_BREAK case 56: #line 116 "itex2MML.l" case 57: #line 117 "itex2MML.l" case 58: #line 118 "itex2MML.l" case 59: YY_RULE_SETUP #line 118 "itex2MML.l" {yylval=itex2MML_copy2(yytext, ";"); if (yylval != itex2MML_empty_string) yylval[0]='&'; return LEFTDELIM;} YY_BREAK case 60: #line 121 "itex2MML.l" case 61: #line 122 "itex2MML.l" case 62: #line 123 "itex2MML.l" case 63: YY_RULE_SETUP #line 123 "itex2MML.l" {yylval=itex2MML_copy2(yytext, ";"); if (yylval != itex2MML_empty_string) yylval[0]='&'; return RIGHTDELIM;} YY_BREAK case 64: YY_RULE_SETUP #line 125 "itex2MML.l" {yylval=itex2MML_copy_string(yytext); return OTHERDELIM;} YY_BREAK case 65: #line 128 "itex2MML.l" case 66: #line 129 "itex2MML.l" case 67: YY_RULE_SETUP #line 129 "itex2MML.l" {yylval=itex2MML_copy2(yytext, ";"); if (yylval != itex2MML_empty_string) yylval[0]='&'; return OTHERDELIM;} YY_BREAK case 68: YY_RULE_SETUP #line 131 "itex2MML.l" {yylval=itex2MML_copy_string(yytext); return PERIODDELIM;} YY_BREAK case 69: YY_RULE_SETUP #line 133 "itex2MML.l" {if (itex2MML_rowposn==1) return UNARYMINUS; else {yylval=itex2MML_copy_string("−"); return MO;}} YY_BREAK case 70: YY_RULE_SETUP #line 135 "itex2MML.l" {if (itex2MML_rowposn==1) return UNARYPLUS; else {yylval=itex2MML_copy_string("+"); return MO;}} YY_BREAK case 71: #line 138 "itex2MML.l" case 72: #line 139 "itex2MML.l" case 73: #line 140 "itex2MML.l" case 74: #line 141 "itex2MML.l" case 75: #line 142 "itex2MML.l" case 76: #line 143 "itex2MML.l" case 77: #line 144 "itex2MML.l" case 78: #line 145 "itex2MML.l" case 79: #line 146 "itex2MML.l" case 80: #line 147 "itex2MML.l" case 81: YY_RULE_SETUP #line 147 "itex2MML.l" {yylval=itex2MML_copy_string(yytext); return MOL;} YY_BREAK case 82: #line 150 "itex2MML.l" case 83: #line 151 "itex2MML.l" case 84: #line 152 "itex2MML.l" case 85: #line 153 "itex2MML.l" case 86: #line 154 "itex2MML.l" case 87: #line 155 "itex2MML.l" case 88: #line 156 "itex2MML.l" case 89: #line 157 "itex2MML.l" case 90: #line 158 "itex2MML.l" case 91: #line 159 "itex2MML.l" case 92: #line 160 "itex2MML.l" case 93: #line 161 "itex2MML.l" case 94: #line 162 "itex2MML.l" case 95: #line 163 "itex2MML.l" case 96: #line 164 "itex2MML.l" case 97: #line 165 "itex2MML.l" case 98: #line 166 "itex2MML.l" case 99: #line 167 "itex2MML.l" case 100: #line 168 "itex2MML.l" case 101: #line 169 "itex2MML.l" case 102: #line 170 "itex2MML.l" case 103: #line 171 "itex2MML.l" case 104: #line 172 "itex2MML.l" case 105: #line 173 "itex2MML.l" case 106: #line 174 "itex2MML.l" case 107: #line 175 "itex2MML.l" case 108: #line 176 "itex2MML.l" case 109: YY_RULE_SETUP #line 176 "itex2MML.l" {yylval=itex2MML_copy2(yytext, ";"); if (yylval != itex2MML_empty_string) yylval[0]='&'; return MI;} YY_BREAK case 110: YY_RULE_SETUP #line 178 "itex2MML.l" {yylval=itex2MML_copy_string("ϕ"); return MI;} YY_BREAK case 111: YY_RULE_SETUP #line 179 "itex2MML.l" {yylval=itex2MML_copy_string("φ"); return MI;} YY_BREAK case 112: #line 182 "itex2MML.l" case 113: #line 183 "itex2MML.l" case 114: #line 184 "itex2MML.l" case 115: #line 185 "itex2MML.l" case 116: #line 186 "itex2MML.l" case 117: #line 187 "itex2MML.l" case 118: #line 188 "itex2MML.l" case 119: #line 189 "itex2MML.l" case 120: #line 190 "itex2MML.l" case 121: #line 191 "itex2MML.l" case 122: #line 192 "itex2MML.l" case 123: #line 193 "itex2MML.l" case 124: #line 194 "itex2MML.l" case 125: #line 195 "itex2MML.l" case 126: #line 196 "itex2MML.l" case 127: #line 197 "itex2MML.l" case 128: #line 198 "itex2MML.l" case 129: #line 199 "itex2MML.l" case 130: #line 200 "itex2MML.l" case 131: #line 201 "itex2MML.l" case 132: #line 202 "itex2MML.l" case 133: YY_RULE_SETUP #line 202 "itex2MML.l" {yylval=itex2MML_copy_string(yytext+1); return MI;} YY_BREAK case 134: #line 205 "itex2MML.l" case 135: #line 206 "itex2MML.l" case 136: #line 207 "itex2MML.l" case 137: #line 208 "itex2MML.l" case 138: #line 209 "itex2MML.l" case 139: #line 210 "itex2MML.l" case 140: #line 211 "itex2MML.l" case 141: #line 212 "itex2MML.l" case 142: #line 213 "itex2MML.l" case 143: YY_RULE_SETUP #line 213 "itex2MML.l" {yylval=itex2MML_copy_string(yytext+1); return MIB;} YY_BREAK case 144: YY_RULE_SETUP #line 215 "itex2MML.l" {yylval=itex2MML_copy_string("ℴ"); return MI;} YY_BREAK case 145: YY_RULE_SETUP #line 217 "itex2MML.l" {yylval=itex2MML_copy_string("ε"); return MI;} YY_BREAK case 146: YY_RULE_SETUP #line 219 "itex2MML.l" {yylval=itex2MML_copy_string("⋅"); return MO;} YY_BREAK case 147: #line 222 "itex2MML.l" case 148: #line 223 "itex2MML.l" case 149: #line 224 "itex2MML.l" case 150: #line 225 "itex2MML.l" case 151: #line 226 "itex2MML.l" case 152: #line 227 "itex2MML.l" case 153: #line 228 "itex2MML.l" case 154: #line 229 "itex2MML.l" case 155: #line 230 "itex2MML.l" case 156: #line 231 "itex2MML.l" case 157: #line 232 "itex2MML.l" case 158: #line 233 "itex2MML.l" case 159: #line 234 "itex2MML.l" case 160: #line 235 "itex2MML.l" case 161: #line 236 "itex2MML.l" case 162: #line 237 "itex2MML.l" case 163: #line 238 "itex2MML.l" case 164: #line 239 "itex2MML.l" case 165: #line 240 "itex2MML.l" case 166: #line 241 "itex2MML.l" case 167: #line 242 "itex2MML.l" case 168: YY_RULE_SETUP #line 242 "itex2MML.l" {yylval=itex2MML_copy2(yytext, ";"); if (yylval != itex2MML_empty_string) yylval[0]='&'; return MI;} YY_BREAK case 169: #line 245 "itex2MML.l" case 170: YY_RULE_SETUP #line 245 "itex2MML.l" {yylval=itex2MML_copy_string("ϒ"); return MI;} YY_BREAK case 171: #line 248 "itex2MML.l" case 172: YY_RULE_SETUP #line 248 "itex2MML.l" {yylval=itex2MML_copy_string("⇔"); return MOL;} YY_BREAK case 173: YY_RULE_SETUP #line 250 "itex2MML.l" {yylval=itex2MML_copy_string("⇔"); return MOL;} YY_BREAK case 174: #line 253 "itex2MML.l" case 175: YY_RULE_SETUP #line 253 "itex2MML.l" {yylval=itex2MML_copy_string("⇐"); return MOL;} YY_BREAK case 176: #line 256 "itex2MML.l" case 177: YY_RULE_SETUP #line 256 "itex2MML.l" {yylval=itex2MML_copy_string("⇒"); return MOL;} YY_BREAK case 178: YY_RULE_SETUP #line 258 "itex2MML.l" {yylval=itex2MML_copy_string("↩"); return MOL;} YY_BREAK case 179: #line 261 "itex2MML.l" case 180: YY_RULE_SETUP #line 261 "itex2MML.l" {yylval=itex2MML_copy_string("↪"); return MOL;} YY_BREAK case 181: YY_RULE_SETUP #line 263 "itex2MML.l" {yylval=itex2MML_copy_string("⟵"); return MOL;} YY_BREAK case 182: YY_RULE_SETUP #line 265 "itex2MML.l" {yylval=itex2MML_copy_string("⟶"); return MOL;} YY_BREAK case 183: YY_RULE_SETUP #line 267 "itex2MML.l" {yylval=itex2MML_copy_string("←"); return MOL;} YY_BREAK case 184: #line 270 "itex2MML.l" case 185: YY_RULE_SETUP #line 270 "itex2MML.l" {yylval=itex2MML_copy_string("→"); return MOL;} YY_BREAK case 186: YY_RULE_SETUP #line 272 "itex2MML.l" {yylval=itex2MML_copy_string("↔"); return MOL;} YY_BREAK case 187: #line 275 "itex2MML.l" case 188: YY_RULE_SETUP #line 275 "itex2MML.l" {yylval=itex2MML_copy_string("↦"); return MOL;} YY_BREAK case 189: #line 278 "itex2MML.l" case 190: YY_RULE_SETUP #line 278 "itex2MML.l" {yylval=itex2MML_copy_string("↗"); return MOL;} YY_BREAK case 191: #line 281 "itex2MML.l" case 192: YY_RULE_SETUP #line 281 "itex2MML.l" {yylval=itex2MML_copy_string("↖"); return MOL;} YY_BREAK case 193: #line 284 "itex2MML.l" case 194: YY_RULE_SETUP #line 284 "itex2MML.l" {yylval=itex2MML_copy_string("↘"); return MOL;} YY_BREAK case 195: #line 287 "itex2MML.l" case 196: YY_RULE_SETUP #line 287 "itex2MML.l" {yylval=itex2MML_copy_string("↙"); return MOL;} YY_BREAK case 197: #line 290 "itex2MML.l" case 198: YY_RULE_SETUP #line 290 "itex2MML.l" {yylval=itex2MML_copy_string("⇗"); return MOL;} YY_BREAK case 199: #line 293 "itex2MML.l" case 200: YY_RULE_SETUP #line 293 "itex2MML.l" {yylval=itex2MML_copy_string("⇖"); return MOL;} YY_BREAK case 201: #line 296 "itex2MML.l" case 202: YY_RULE_SETUP #line 296 "itex2MML.l" {yylval=itex2MML_copy_string("⇘"); return MOL;} YY_BREAK case 203: #line 299 "itex2MML.l" case 204: YY_RULE_SETUP #line 299 "itex2MML.l" {yylval=itex2MML_copy_string("⇙"); return MOL;} YY_BREAK case 205: YY_RULE_SETUP #line 301 "itex2MML.l" {yylval=itex2MML_copy_string("↓"); return MOL;} YY_BREAK case 206: YY_RULE_SETUP #line 303 "itex2MML.l" {yylval=itex2MML_copy_string("⇓"); return MOL;} YY_BREAK case 207: YY_RULE_SETUP #line 305 "itex2MML.l" {yylval=itex2MML_copy_string("↑"); return MOL;} YY_BREAK case 208: YY_RULE_SETUP #line 307 "itex2MML.l" {yylval=itex2MML_copy_string("⇑"); return MOL;} YY_BREAK case 209: #line 310 "itex2MML.l" case 210: #line 311 "itex2MML.l" case 211: YY_RULE_SETUP #line 311 "itex2MML.l" {yylval=itex2MML_copy_string("↕"); return MOL;} YY_BREAK case 212: YY_RULE_SETUP #line 313 "itex2MML.l" {yylval=itex2MML_copy_string("⇕"); return MOL;} YY_BREAK case 213: #line 316 "itex2MML.l" case 214: YY_RULE_SETUP #line 316 "itex2MML.l" {yylval=itex2MML_copy_string("…"); return MO;} YY_BREAK case 215: YY_RULE_SETUP #line 317 "itex2MML.l" {yylval=itex2MML_copy_string("⋯"); return MO;} YY_BREAK case 216: YY_RULE_SETUP #line 318 "itex2MML.l" {yylval=itex2MML_copy_string("⋱"); return MO;} YY_BREAK case 217: YY_RULE_SETUP #line 319 "itex2MML.l" {yylval=itex2MML_copy_string("⋰"); return MO;} YY_BREAK case 218: YY_RULE_SETUP #line 320 "itex2MML.l" {yylval=itex2MML_copy_string("⋮"); return MO;} YY_BREAK case 219: #line 323 "itex2MML.l" case 220: #line 324 "itex2MML.l" case 221: YY_RULE_SETUP #line 324 "itex2MML.l" {yylval=itex2MML_copy_string("∪"); return MOL;} YY_BREAK case 222: #line 327 "itex2MML.l" case 223: #line 328 "itex2MML.l" case 224: YY_RULE_SETUP #line 328 "itex2MML.l" {yylval=itex2MML_copy_string("⋃"); return MOB;} YY_BREAK case 225: #line 331 "itex2MML.l" case 226: YY_RULE_SETUP #line 331 "itex2MML.l" {yylval=itex2MML_copy_string("∩"); return MOL;} YY_BREAK case 227: #line 334 "itex2MML.l" case 228: YY_RULE_SETUP #line 334 "itex2MML.l" {yylval=itex2MML_copy_string("⋂"); return MOB;} YY_BREAK case 229: YY_RULE_SETUP #line 336 "itex2MML.l" {yylval=itex2MML_copy_string("∈"); return MOL;} YY_BREAK case 230: #line 339 "itex2MML.l" case 231: #line 340 "itex2MML.l" case 232: #line 341 "itex2MML.l" case 233: #line 342 "itex2MML.l" case 234: #line 343 "itex2MML.l" case 235: #line 344 "itex2MML.l" case 236: #line 345 "itex2MML.l" case 237: #line 346 "itex2MML.l" case 238: #line 347 "itex2MML.l" case 239: #line 348 "itex2MML.l" case 240: #line 349 "itex2MML.l" case 241: #line 350 "itex2MML.l" case 242: #line 351 "itex2MML.l" case 243: #line 352 "itex2MML.l" case 244: #line 353 "itex2MML.l" case 245: #line 354 "itex2MML.l" case 246: #line 355 "itex2MML.l" case 247: #line 356 "itex2MML.l" case 248: #line 357 "itex2MML.l" case 249: #line 358 "itex2MML.l" case 250: #line 359 "itex2MML.l" case 251: #line 360 "itex2MML.l" case 252: #line 361 "itex2MML.l" case 253: #line 362 "itex2MML.l" case 254: #line 363 "itex2MML.l" case 255: #line 364 "itex2MML.l" case 256: #line 365 "itex2MML.l" case 257: #line 366 "itex2MML.l" case 258: #line 367 "itex2MML.l" case 259: #line 368 "itex2MML.l" case 260: #line 369 "itex2MML.l" case 261: #line 370 "itex2MML.l" case 262: #line 371 "itex2MML.l" case 263: #line 372 "itex2MML.l" case 264: #line 373 "itex2MML.l" case 265: #line 374 "itex2MML.l" case 266: #line 375 "itex2MML.l" case 267: #line 376 "itex2MML.l" case 268: #line 377 "itex2MML.l" case 269: #line 378 "itex2MML.l" case 270: #line 379 "itex2MML.l" case 271: #line 380 "itex2MML.l" case 272: #line 381 "itex2MML.l" case 273: #line 382 "itex2MML.l" case 274: #line 383 "itex2MML.l" case 275: #line 384 "itex2MML.l" case 276: #line 385 "itex2MML.l" case 277: #line 386 "itex2MML.l" case 278: #line 387 "itex2MML.l" case 279: #line 388 "itex2MML.l" case 280: #line 389 "itex2MML.l" case 281: #line 390 "itex2MML.l" case 282: #line 391 "itex2MML.l" case 283: #line 392 "itex2MML.l" case 284: #line 393 "itex2MML.l" case 285: #line 394 "itex2MML.l" case 286: #line 395 "itex2MML.l" case 287: #line 396 "itex2MML.l" case 288: #line 397 "itex2MML.l" case 289: #line 398 "itex2MML.l" case 290: #line 399 "itex2MML.l" case 291: #line 400 "itex2MML.l" case 292: #line 401 "itex2MML.l" case 293: #line 402 "itex2MML.l" case 294: #line 403 "itex2MML.l" case 295: #line 404 "itex2MML.l" case 296: #line 405 "itex2MML.l" case 297: #line 406 "itex2MML.l" case 298: #line 407 "itex2MML.l" case 299: #line 408 "itex2MML.l" case 300: #line 409 "itex2MML.l" case 301: #line 410 "itex2MML.l" case 302: #line 411 "itex2MML.l" case 303: #line 412 "itex2MML.l" case 304: #line 413 "itex2MML.l" case 305: #line 414 "itex2MML.l" case 306: #line 415 "itex2MML.l" case 307: #line 416 "itex2MML.l" case 308: #line 417 "itex2MML.l" case 309: #line 418 "itex2MML.l" case 310: #line 419 "itex2MML.l" case 311: #line 420 "itex2MML.l" case 312: #line 421 "itex2MML.l" case 313: #line 422 "itex2MML.l" case 314: #line 423 "itex2MML.l" case 315: #line 424 "itex2MML.l" case 316: #line 425 "itex2MML.l" case 317: #line 426 "itex2MML.l" case 318: #line 427 "itex2MML.l" case 319: #line 428 "itex2MML.l" case 320: #line 429 "itex2MML.l" case 321: #line 430 "itex2MML.l" case 322: #line 431 "itex2MML.l" case 323: #line 432 "itex2MML.l" case 324: #line 433 "itex2MML.l" case 325: #line 434 "itex2MML.l" case 326: #line 435 "itex2MML.l" case 327: #line 436 "itex2MML.l" case 328: #line 437 "itex2MML.l" case 329: #line 438 "itex2MML.l" case 330: #line 439 "itex2MML.l" case 331: #line 440 "itex2MML.l" case 332: #line 441 "itex2MML.l" case 333: #line 442 "itex2MML.l" case 334: #line 443 "itex2MML.l" case 335: #line 444 "itex2MML.l" case 336: #line 445 "itex2MML.l" case 337: #line 446 "itex2MML.l" case 338: #line 447 "itex2MML.l" case 339: #line 448 "itex2MML.l" case 340: #line 449 "itex2MML.l" case 341: #line 450 "itex2MML.l" case 342: #line 451 "itex2MML.l" case 343: #line 452 "itex2MML.l" case 344: #line 453 "itex2MML.l" case 345: #line 454 "itex2MML.l" case 346: #line 455 "itex2MML.l" case 347: #line 456 "itex2MML.l" case 348: #line 457 "itex2MML.l" case 349: #line 458 "itex2MML.l" case 350: #line 459 "itex2MML.l" case 351: #line 460 "itex2MML.l" case 352: #line 461 "itex2MML.l" case 353: #line 462 "itex2MML.l" case 354: #line 463 "itex2MML.l" case 355: #line 464 "itex2MML.l" case 356: #line 465 "itex2MML.l" case 357: #line 466 "itex2MML.l" case 358: #line 467 "itex2MML.l" case 359: #line 468 "itex2MML.l" case 360: #line 469 "itex2MML.l" case 361: #line 470 "itex2MML.l" case 362: #line 471 "itex2MML.l" case 363: #line 472 "itex2MML.l" case 364: #line 473 "itex2MML.l" case 365: #line 474 "itex2MML.l" case 366: #line 475 "itex2MML.l" case 367: #line 476 "itex2MML.l" case 368: #line 477 "itex2MML.l" case 369: #line 478 "itex2MML.l" case 370: #line 479 "itex2MML.l" case 371: #line 480 "itex2MML.l" case 372: #line 481 "itex2MML.l" case 373: #line 482 "itex2MML.l" case 374: #line 483 "itex2MML.l" case 375: #line 484 "itex2MML.l" case 376: #line 485 "itex2MML.l" case 377: #line 486 "itex2MML.l" case 378: #line 487 "itex2MML.l" case 379: #line 488 "itex2MML.l" case 380: #line 489 "itex2MML.l" case 381: #line 490 "itex2MML.l" case 382: #line 491 "itex2MML.l" case 383: #line 492 "itex2MML.l" case 384: #line 493 "itex2MML.l" case 385: #line 494 "itex2MML.l" case 386: #line 495 "itex2MML.l" case 387: #line 496 "itex2MML.l" case 388: #line 497 "itex2MML.l" case 389: #line 498 "itex2MML.l" case 390: #line 499 "itex2MML.l" case 391: #line 500 "itex2MML.l" case 392: #line 501 "itex2MML.l" case 393: #line 502 "itex2MML.l" case 394: #line 503 "itex2MML.l" case 395: #line 504 "itex2MML.l" case 396: #line 505 "itex2MML.l" case 397: #line 506 "itex2MML.l" case 398: #line 507 "itex2MML.l" case 399: #line 508 "itex2MML.l" case 400: #line 509 "itex2MML.l" case 401: #line 510 "itex2MML.l" case 402: #line 511 "itex2MML.l" case 403: #line 512 "itex2MML.l" case 404: #line 513 "itex2MML.l" case 405: #line 514 "itex2MML.l" case 406: #line 515 "itex2MML.l" case 407: #line 516 "itex2MML.l" case 408: #line 517 "itex2MML.l" case 409: #line 518 "itex2MML.l" case 410: #line 519 "itex2MML.l" case 411: #line 520 "itex2MML.l" case 412: #line 521 "itex2MML.l" case 413: #line 522 "itex2MML.l" case 414: #line 523 "itex2MML.l" case 415: YY_RULE_SETUP #line 523 "itex2MML.l" {yylval=itex2MML_copy2(yytext, ";"); if (yylval != itex2MML_empty_string) yylval[0]='&'; return MOL;} YY_BREAK case 416: #line 526 "itex2MML.l" case 417: #line 527 "itex2MML.l" case 418: #line 528 "itex2MML.l" case 419: #line 529 "itex2MML.l" case 420: #line 530 "itex2MML.l" case 421: #line 531 "itex2MML.l" case 422: #line 532 "itex2MML.l" case 423: #line 533 "itex2MML.l" case 424: #line 534 "itex2MML.l" case 425: YY_RULE_SETUP #line 534 "itex2MML.l" {yylval=itex2MML_copy2(yytext, ";"); if (yylval != itex2MML_empty_string) yylval[0]='&'; return MI;} YY_BREAK case 426: #line 537 "itex2MML.l" case 427: YY_RULE_SETUP #line 537 "itex2MML.l" {yylval=itex2MML_copy_string("□"); return MOL;} YY_BREAK case 428: #line 539 "itex2MML.l" case 429: YY_RULE_SETUP #line 539 "itex2MML.l" {yylval=itex2MML_copy_string("∅"); return MI;} YY_BREAK case 430: YY_RULE_SETUP #line 540 "itex2MML.l" {yylval=itex2MML_copy_string("∃"); return MOL;} YY_BREAK case 431: YY_RULE_SETUP #line 541 "itex2MML.l" {yylval=itex2MML_copy_string("∘"); return MOL;} YY_BREAK case 432: YY_RULE_SETUP #line 542 "itex2MML.l" {yylval=itex2MML_copy_string("⊳"); return MOL;} YY_BREAK case 433: YY_RULE_SETUP #line 543 "itex2MML.l" {yylval=itex2MML_copy_string("⊲"); return MOL;} YY_BREAK case 434: YY_RULE_SETUP #line 544 "itex2MML.l" {yylval=itex2MML_copy_string("⋘"); return MOL;} YY_BREAK case 435: YY_RULE_SETUP #line 545 "itex2MML.l" {yylval=itex2MML_copy_string("⊵"); return MOL;} YY_BREAK case 436: YY_RULE_SETUP #line 546 "itex2MML.l" {yylval=itex2MML_copy_string("⊴"); return MOL;} YY_BREAK case 437: #line 548 "itex2MML.l" case 438: YY_RULE_SETUP #line 548 "itex2MML.l" {yylval=itex2MML_copy_string("∇"); return MOL;} YY_BREAK case 439: YY_RULE_SETUP #line 549 "itex2MML.l" {yylval=itex2MML_copy_string("∢"); return MOL;} YY_BREAK case 440: YY_RULE_SETUP #line 551 "itex2MML.l" {yylval=itex2MML_copy_string("♡"); return MOL;} YY_BREAK case 441: YY_RULE_SETUP #line 552 "itex2MML.l" {yylval=itex2MML_copy_string("♢"); return MOL;} YY_BREAK case 442: YY_RULE_SETUP #line 554 "itex2MML.l" {yylval=itex2MML_copy_string("∂"); return MOL;} YY_BREAK case 443: YY_RULE_SETUP #line 556 "itex2MML.l" {yylval=itex2MML_copy_string("▪"); return MO;} YY_BREAK case 444: YY_RULE_SETUP #line 558 "itex2MML.l" {yylval=itex2MML_copy_string("mod"); return MOS;} YY_BREAK case 445: YY_RULE_SETUP #line 559 "itex2MML.l" {return PMOD;} YY_BREAK case 446: YY_RULE_SETUP #line 561 "itex2MML.l" {yylval=itex2MML_copy_string("⊥"); return MOL;} YY_BREAK case 447: YY_RULE_SETUP #line 563 "itex2MML.l" {yylval=itex2MML_copy_string("¬"); return MOL;} YY_BREAK case 448: #line 566 "itex2MML.l" case 449: YY_RULE_SETUP #line 566 "itex2MML.l" {yylval=itex2MML_copy_string("≠"); return MOL;} YY_BREAK case 450: #line 569 "itex2MML.l" case 451: YY_RULE_SETUP #line 569 "itex2MML.l" {yylval=itex2MML_copy_string("∣"); return MOS;} YY_BREAK case 452: #line 572 "itex2MML.l" case 453: YY_RULE_SETUP #line 572 "itex2MML.l" {yylval=itex2MML_copy_string("∫"); return MOL;} YY_BREAK case 454: #line 575 "itex2MML.l" case 455: YY_RULE_SETUP #line 575 "itex2MML.l" {yylval=itex2MML_copy_string("∬"); return MOL;} YY_BREAK case 456: #line 578 "itex2MML.l" case 457: YY_RULE_SETUP #line 578 "itex2MML.l" {yylval=itex2MML_copy_string("∭"); return MOL;} YY_BREAK case 458: #line 581 "itex2MML.l" case 459: YY_RULE_SETUP #line 581 "itex2MML.l" {yylval=itex2MML_copy_string("⨌"); return MOL;} YY_BREAK case 460: #line 584 "itex2MML.l" case 461: #line 585 "itex2MML.l" case 462: YY_RULE_SETUP #line 585 "itex2MML.l" {yylval=itex2MML_copy_string("∮"); return MOL;} YY_BREAK case 463: YY_RULE_SETUP #line 587 "itex2MML.l" {yylval=itex2MML_copy_string("×"); return MOL;} YY_BREAK case 464: YY_RULE_SETUP #line 588 "itex2MML.l" {yylval=itex2MML_copy_string("⋆"); return MOL;} YY_BREAK case 465: #line 590 "itex2MML.l" case 466: YY_RULE_SETUP #line 590 "itex2MML.l" {yylval=itex2MML_copy_string("⊝"); return MOL;} YY_BREAK case 467: #line 593 "itex2MML.l" case 468: YY_RULE_SETUP #line 593 "itex2MML.l" {yylval=itex2MML_copy_string("⊟"); return MOL;} YY_BREAK case 469: #line 595 "itex2MML.l" case 470: YY_RULE_SETUP #line 595 "itex2MML.l" {yylval=itex2MML_copy_string("⊞"); return MOL;} YY_BREAK case 471: #line 597 "itex2MML.l" case 472: YY_RULE_SETUP #line 597 "itex2MML.l" {yylval=itex2MML_copy_string("⊠"); return MOL;} YY_BREAK case 473: YY_RULE_SETUP #line 599 "itex2MML.l" {yylval=itex2MML_copy_string("∑"); return MOB;} YY_BREAK case 474: #line 602 "itex2MML.l" case 475: YY_RULE_SETUP #line 602 "itex2MML.l" {yylval=itex2MML_copy_string("∏"); return MOB;} YY_BREAK case 476: #line 605 "itex2MML.l" case 477: YY_RULE_SETUP #line 605 "itex2MML.l" {yylval=itex2MML_copy_string("∐"); return MOB;} YY_BREAK case 478: YY_RULE_SETUP #line 607 "itex2MML.l" {yylval=itex2MML_copy_string("⊗"); return MOL;} YY_BREAK case 479: YY_RULE_SETUP #line 608 "itex2MML.l" {yylval=itex2MML_copy_string("⨷"); return MOL;} YY_BREAK case 480: YY_RULE_SETUP #line 609 "itex2MML.l" {yylval=itex2MML_copy_string("⨂"); return MOL;} YY_BREAK case 481: YY_RULE_SETUP #line 612 "itex2MML.l" {yylval=itex2MML_copy_string("⊕"); return MOL;} YY_BREAK case 482: #line 614 "itex2MML.l" case 483: YY_RULE_SETUP #line 614 "itex2MML.l" {yylval=itex2MML_copy_string("⨁"); return MOB;} YY_BREAK case 484: YY_RULE_SETUP #line 616 "itex2MML.l" {yylval=itex2MML_copy_string("⨀"); return MOB;} YY_BREAK case 485: YY_RULE_SETUP #line 617 "itex2MML.l" {yylval=itex2MML_copy_string("⨆"); return MOB;} YY_BREAK case 486: YY_RULE_SETUP #line 618 "itex2MML.l" {yylval=itex2MML_copy_string("⨄"); return MOB;} YY_BREAK case 487: YY_RULE_SETUP #line 620 "itex2MML.l" {yylval=itex2MML_copy_string("∧"); return MOL;} YY_BREAK case 488: #line 622 "itex2MML.l" case 489: YY_RULE_SETUP #line 622 "itex2MML.l" {yylval=itex2MML_copy_string("⋀"); return MOB;} YY_BREAK case 490: #line 625 "itex2MML.l" case 491: YY_RULE_SETUP #line 625 "itex2MML.l" {yylval=itex2MML_copy_string("⋁"); return MOB;} YY_BREAK case 492: YY_RULE_SETUP #line 627 "itex2MML.l" {return FRAC;} YY_BREAK case 493: YY_RULE_SETUP #line 628 "itex2MML.l" {return TFRAC;} YY_BREAK case 494: YY_RULE_SETUP #line 630 "itex2MML.l" {return BINOM;} YY_BREAK case 495: YY_RULE_SETUP #line 632 "itex2MML.l" {return TENSOR;} YY_BREAK case 496: YY_RULE_SETUP #line 634 "itex2MML.l" {return MULTI;} YY_BREAK case 497: YY_RULE_SETUP #line 636 "itex2MML.l" {return OVERBRACE;} YY_BREAK case 498: YY_RULE_SETUP #line 638 "itex2MML.l" {return UNDERBRACE;} YY_BREAK case 499: YY_RULE_SETUP #line 640 "itex2MML.l" {return BAR;} YY_BREAK case 500: #line 642 "itex2MML.l" case 501: #line 643 "itex2MML.l" case 502: YY_RULE_SETUP #line 643 "itex2MML.l" {return WIDEBAR;} YY_BREAK case 503: YY_RULE_SETUP #line 645 "itex2MML.l" {return VEC;} YY_BREAK case 504: YY_RULE_SETUP #line 646 "itex2MML.l" {return WIDEVEC;} YY_BREAK case 505: YY_RULE_SETUP #line 648 "itex2MML.l" {return DOT;} YY_BREAK case 506: YY_RULE_SETUP #line 650 "itex2MML.l" {return DDOT;} YY_BREAK case 507: YY_RULE_SETUP #line 652 "itex2MML.l" {return TILDE;} YY_BREAK case 508: YY_RULE_SETUP #line 653 "itex2MML.l" {return WIDETILDE;} YY_BREAK case 509: YY_RULE_SETUP #line 656 "itex2MML.l" {return CHECK;} YY_BREAK case 510: YY_RULE_SETUP #line 657 "itex2MML.l" {return WIDECHECK;} YY_BREAK case 511: YY_RULE_SETUP #line 660 "itex2MML.l" {return HAT;} YY_BREAK case 512: YY_RULE_SETUP #line 661 "itex2MML.l" {return WIDEHAT;} YY_BREAK case 513: YY_RULE_SETUP #line 663 "itex2MML.l" {return UNDER;} YY_BREAK case 514: #line 666 "itex2MML.l" case 515: YY_RULE_SETUP #line 666 "itex2MML.l" {return OVER;} YY_BREAK case 516: YY_RULE_SETUP #line 668 "itex2MML.l" {return TEXOVER;} YY_BREAK case 517: YY_RULE_SETUP #line 670 "itex2MML.l" {return UNDEROVER;} YY_BREAK case 518: YY_RULE_SETUP #line 672 "itex2MML.l" {return SQRT;} YY_BREAK case 519: YY_RULE_SETUP #line 674 "itex2MML.l" {return ROOT;} YY_BREAK case 520: YY_RULE_SETUP #line 676 "itex2MML.l" {BEGIN(INT1); return SPACE;} YY_BREAK case 521: YY_RULE_SETUP #line 678 "itex2MML.l" {BEGIN(PLAINTEXT); return TEXTBOX;} YY_BREAK case 522: YY_RULE_SETUP #line 680 "itex2MML.l" {BEGIN(PLAINTEXT); return STATLINE;} YY_BREAK case 523: YY_RULE_SETUP #line 682 "itex2MML.l" {return TOGGLE;} YY_BREAK case 524: #line 685 "itex2MML.l" case 525: YY_RULE_SETUP #line 685 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return FGHIGHLIGHT;} YY_BREAK case 526: #line 688 "itex2MML.l" case 527: YY_RULE_SETUP #line 688 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return BGHIGHLIGHT;} YY_BREAK case 528: YY_RULE_SETUP #line 690 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return COLOR;} YY_BREAK case 529: YY_RULE_SETUP #line 691 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return BGCOLOR;} YY_BREAK case 530: YY_RULE_SETUP #line 693 "itex2MML.l" {itex2MML_rowposn=2; return DISPLAY;} YY_BREAK case 531: YY_RULE_SETUP #line 695 "itex2MML.l" {itex2MML_rowposn=2; return TEXTSTY;} YY_BREAK case 532: YY_RULE_SETUP #line 697 "itex2MML.l" {return TEXTSIZE;} YY_BREAK case 533: YY_RULE_SETUP #line 699 "itex2MML.l" {return SCSIZE;} YY_BREAK case 534: YY_RULE_SETUP #line 701 "itex2MML.l" {return SCSCSIZE;} YY_BREAK case 535: YY_RULE_SETUP #line 703 "itex2MML.l" {return ITALICS;} YY_BREAK case 536: YY_RULE_SETUP #line 705 "itex2MML.l" {return BOLD;} YY_BREAK case 537: YY_RULE_SETUP #line 707 "itex2MML.l" {BEGIN(ROMAN); return RM;} YY_BREAK case 538: YY_RULE_SETUP #line 709 "itex2MML.l" {BEGIN(BBOLD); return BB;} YY_BREAK case 539: #line 712 "itex2MML.l" case 540: YY_RULE_SETUP #line 712 "itex2MML.l" {BEGIN(FRAKTUR); return FRAK;} YY_BREAK case 541: YY_RULE_SETUP #line 714 "itex2MML.l" {BEGIN(CALLIGRAPHIC); return CAL;} YY_BREAK case 542: YY_RULE_SETUP #line 716 "itex2MML.l" {BEGIN(MATHENV); return BEGINENV;} YY_BREAK case 543: YY_RULE_SETUP #line 717 "itex2MML.l" {BEGIN(MATHENV); return ENDENV;} YY_BREAK case 544: YY_RULE_SETUP #line 719 "itex2MML.l" {return SUBSTACK;} YY_BREAK case 545: YY_RULE_SETUP #line 721 "itex2MML.l" {return ARRAY;} YY_BREAK case 546: YY_RULE_SETUP #line 723 "itex2MML.l" {return ARRAYOPTS;} YY_BREAK case 547: YY_RULE_SETUP #line 725 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return COLALIGN;} YY_BREAK case 548: YY_RULE_SETUP #line 727 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return COLLAYOUT;} YY_BREAK case 549: YY_RULE_SETUP #line 729 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return ROWALIGN;} YY_BREAK case 550: YY_RULE_SETUP #line 731 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return ALIGN;} YY_BREAK case 551: YY_RULE_SETUP #line 733 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return EQROWS;} YY_BREAK case 552: YY_RULE_SETUP #line 735 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return EQCOLS;} YY_BREAK case 553: YY_RULE_SETUP #line 737 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return ROWLINES;} YY_BREAK case 554: YY_RULE_SETUP #line 739 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return COLLINES;} YY_BREAK case 555: YY_RULE_SETUP #line 741 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return FRAME;} YY_BREAK case 556: YY_RULE_SETUP #line 743 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return PADDING;} YY_BREAK case 557: YY_RULE_SETUP #line 745 "itex2MML.l" {return ROWOPTS;} YY_BREAK case 558: YY_RULE_SETUP #line 747 "itex2MML.l" {return CELLOPTS;} YY_BREAK case 559: YY_RULE_SETUP #line 749 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return ROWSPAN;} YY_BREAK case 560: YY_RULE_SETUP #line 751 "itex2MML.l" {BEGIN(ATTRIBUTELIST); return COLSPAN;} YY_BREAK case 561: #line 755 "itex2MML.l" case 562: YY_RULE_SETUP #line 755 "itex2MML.l" {return THINSPACE;} YY_BREAK case 563: #line 758 "itex2MML.l" case 564: YY_RULE_SETUP #line 758 "itex2MML.l" {return MEDSPACE;} YY_BREAK case 565: #line 761 "itex2MML.l" case 566: YY_RULE_SETUP #line 761 "itex2MML.l" {return THICKSPACE;} YY_BREAK case 567: YY_RULE_SETUP #line 763 "itex2MML.l" {return QUAD;} YY_BREAK case 568: YY_RULE_SETUP #line 764 "itex2MML.l" {return QQUAD;} YY_BREAK case 569: #line 767 "itex2MML.l" case 570: YY_RULE_SETUP #line 767 "itex2MML.l" {return NEGSPACE;} YY_BREAK case 571: YY_RULE_SETUP #line 769 "itex2MML.l" {return PHANTOM;} YY_BREAK case 572: YY_RULE_SETUP #line 771 "itex2MML.l" {BEGIN(PLAINTEXT); return HREF;} YY_BREAK case 573: YY_RULE_SETUP #line 774 "itex2MML.l" {BEGIN(PLAINTEXT); return MATHOP;} YY_BREAK case 574: YY_RULE_SETUP #line 776 "itex2MML.l" {yylval=itex2MML_copy_string(yytext+1); return MOP;} YY_BREAK case 575: #line 779 "itex2MML.l" case 576: #line 780 "itex2MML.l" case 577: YY_RULE_SETUP #line 780 "itex2MML.l" {yylval=itex2MML_copy_string(yytext); return MI;} YY_BREAK case 578: YY_RULE_SETUP #line 782 "itex2MML.l" itex2MML_lineno++; YY_BREAK case 579: YY_RULE_SETUP #line 783 "itex2MML.l" ; YY_BREAK case 580: YY_RULE_SETUP #line 786 "itex2MML.l" {return UNKNOWNCHAR;} YY_BREAK case 581: YY_RULE_SETUP #line 789 "itex2MML.l" {BEGIN(MATH); yylval=itex2MML_copy_string(yytext); if (yylval != itex2MML_empty_string) { yylval[0]='"'; yylval[yyleng-1]='"'; } return ATTRLIST;} YY_BREAK case 582: YY_RULE_SETUP #line 792 "itex2MML.l" {BEGIN(MATH); return MATRIX;} YY_BREAK case 583: YY_RULE_SETUP #line 793 "itex2MML.l" {BEGIN(MATH); return PMATRIX;} YY_BREAK case 584: YY_RULE_SETUP #line 794 "itex2MML.l" {BEGIN(MATH); return BMATRIX;} YY_BREAK case 585: YY_RULE_SETUP #line 795 "itex2MML.l" {BEGIN(MATH); return BBMATRIX;} YY_BREAK case 586: YY_RULE_SETUP #line 796 "itex2MML.l" {BEGIN(MATH); return VMATRIX;} YY_BREAK case 587: YY_RULE_SETUP #line 797 "itex2MML.l" {BEGIN(MATH); return VVMATRIX;} YY_BREAK case 588: YY_RULE_SETUP #line 798 "itex2MML.l" {BEGIN(MATH); return SMALLMATRIX;} YY_BREAK case 589: YY_RULE_SETUP #line 799 "itex2MML.l" {BEGIN(MATH); return CASES;} YY_BREAK case 590: YY_RULE_SETUP #line 800 "itex2MML.l" {BEGIN(MATH); return ALIGNED;} YY_BREAK case 591: YY_RULE_SETUP #line 804 "itex2MML.l" {return ST;} YY_BREAK case 592: YY_RULE_SETUP #line 805 "itex2MML.l" {BEGIN(MATH); return END;} YY_BREAK case 593: YY_RULE_SETUP #line 806 "itex2MML.l" {yylval=itex2MML_copy_string(yytext); return RMCHAR;} YY_BREAK case 594: YY_RULE_SETUP #line 807 "itex2MML.l" ; YY_BREAK case 595: YY_RULE_SETUP #line 808 "itex2MML.l" {return yytext[0];} YY_BREAK case 596: YY_RULE_SETUP #line 812 "itex2MML.l" {return ST;} YY_BREAK case 597: YY_RULE_SETUP #line 813 "itex2MML.l" {BEGIN(MATH); return END;} YY_BREAK case 598: YY_RULE_SETUP #line 814 "itex2MML.l" {yylval=itex2MML_copy_string(yytext); return BBLOWERCHAR;} YY_BREAK case 599: YY_RULE_SETUP #line 815 "itex2MML.l" {yylval=itex2MML_copy_string(yytext); return BBUPPERCHAR;} YY_BREAK case 600: YY_RULE_SETUP #line 816 "itex2MML.l" ; YY_BREAK case 601: YY_RULE_SETUP #line 817 "itex2MML.l" {return yytext[0];} YY_BREAK case 602: YY_RULE_SETUP #line 821 "itex2MML.l" {return ST;} YY_BREAK case 603: YY_RULE_SETUP #line 822 "itex2MML.l" {BEGIN(MATH); return END;} YY_BREAK case 604: YY_RULE_SETUP #line 823 "itex2MML.l" {yylval=itex2MML_copy_string(yytext); return CALCHAR;} YY_BREAK case 605: YY_RULE_SETUP #line 824 "itex2MML.l" ; YY_BREAK case 606: YY_RULE_SETUP #line 825 "itex2MML.l" {return yytext[0];} YY_BREAK case 607: YY_RULE_SETUP #line 829 "itex2MML.l" {return ST;} YY_BREAK case 608: YY_RULE_SETUP #line 830 "itex2MML.l" {BEGIN(MATH); return END;} YY_BREAK case 609: YY_RULE_SETUP #line 831 "itex2MML.l" {yylval=itex2MML_copy_string(yytext); return FRAKCHAR;} YY_BREAK case 610: YY_RULE_SETUP #line 832 "itex2MML.l" ; YY_BREAK case 611: YY_RULE_SETUP #line 833 "itex2MML.l" {return yytext[0];} YY_BREAK case 612: YY_RULE_SETUP #line 837 "itex2MML.l" {yylval=itex2MML_copy_string(yytext+1); if ((yyleng > 1) && (yylval != itex2MML_empty_string)) yylval[yyleng-2]='\0'; BEGIN(MATH); return TEXTSTRING;} YY_BREAK case 613: YY_RULE_SETUP #line 841 "itex2MML.l" {return ST;} YY_BREAK case 614: YY_RULE_SETUP #line 842 "itex2MML.l" {BEGIN(INT2); return END;} YY_BREAK case 615: YY_RULE_SETUP #line 843 "itex2MML.l" {yylval=itex2MML_copy_string_extra(yytext, 1); if (yyleng && (yylval != itex2MML_empty_string)) { yylval[yyleng]=yylval[yyleng-1]; yylval[yyleng-1]='.'; yylval[yyleng+1]='\0'; } return INTONE;} YY_BREAK case 616: YY_RULE_SETUP #line 844 "itex2MML.l" ; YY_BREAK case 617: YY_RULE_SETUP #line 845 "itex2MML.l" {return yytext[0];} YY_BREAK case 618: YY_RULE_SETUP #line 849 "itex2MML.l" {return ST;} YY_BREAK case 619: YY_RULE_SETUP #line 850 "itex2MML.l" {BEGIN(INT3); return END;} YY_BREAK case 620: YY_RULE_SETUP #line 851 "itex2MML.l" {yylval=itex2MML_copy_string_extra(yytext, 1); if (yyleng && (yylval != itex2MML_empty_string)) { yylval[yyleng]=yylval[yyleng-1]; yylval[yyleng-1]='.'; yylval[yyleng+1]='\0'; } return INTTWO;} YY_BREAK case 621: YY_RULE_SETUP #line 852 "itex2MML.l" ; YY_BREAK case 622: YY_RULE_SETUP #line 853 "itex2MML.l" {return yytext[0];} YY_BREAK case 623: YY_RULE_SETUP #line 857 "itex2MML.l" {return ST;} YY_BREAK case 624: YY_RULE_SETUP #line 858 "itex2MML.l" {BEGIN(MATH); return END;} YY_BREAK case 625: YY_RULE_SETUP #line 859 "itex2MML.l" {yylval=itex2MML_copy_string_extra(yytext, 1); if (yyleng && (yylval != itex2MML_empty_string)) { yylval[yyleng]=yylval[yyleng-1]; yylval[yyleng-1]='.'; yylval[yyleng+1]='\0'; } return INTTHREE;} YY_BREAK case 626: YY_RULE_SETUP #line 860 "itex2MML.l" ; YY_BREAK case 627: YY_RULE_SETUP #line 861 "itex2MML.l" {return yytext[0];} YY_BREAK case 628: YY_RULE_SETUP #line 866 "itex2MML.l" ECHO; YY_BREAK #line 4126 "lex.yy.c" case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(MATH): case YY_STATE_EOF(ATTRIBUTELIST): case YY_STATE_EOF(BBOLD): case YY_STATE_EOF(FRAKTUR): case YY_STATE_EOF(CALLIGRAPHIC): case YY_STATE_EOF(ROMAN): case YY_STATE_EOF(PLAINTEXT): case YY_STATE_EOF(INT1): case YY_STATE_EOF(INT2): case YY_STATE_EOF(INT3): case YY_STATE_EOF(MATHENV): yyterminate(); case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = yy_hold_char; YY_RESTORE_YY_MORE_OFFSET if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between yy_current_buffer and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ yy_n_chars = yy_current_buffer->yy_n_chars; yy_current_buffer->yy_input_file = yyin; yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] ) { /* This was really a NUL. */ yy_state_type yy_next_state; yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state(); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = yytext_ptr + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++yy_c_buf_p; yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = yy_c_buf_p; goto yy_find_action; } } else switch ( yy_get_next_buffer() ) { case EOB_ACT_END_OF_FILE: { yy_did_buffer_switch_on_eof = 0; if ( yywrap() ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ yy_c_buf_p = yytext_ptr + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! yy_did_buffer_switch_on_eof ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state(); yy_cp = yy_c_buf_p; yy_bp = yytext_ptr + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: yy_c_buf_p = &yy_current_buffer->yy_ch_buf[yy_n_chars]; yy_current_state = yy_get_previous_state(); yy_cp = yy_c_buf_p; yy_bp = yytext_ptr + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer() { register char *dest = yy_current_buffer->yy_ch_buf; register char *source = yytext_ptr; register int number_to_move, i; int ret_val; if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( yy_current_buffer->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ yy_current_buffer->yy_n_chars = yy_n_chars = 0; else { int num_to_read = yy_current_buffer->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ #ifdef YY_USES_REJECT YY_FATAL_ERROR( "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); #else /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = yy_current_buffer; int yy_c_buf_p_offset = (int) (yy_c_buf_p - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { int new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yy_flex_realloc( (void *) b->yy_ch_buf, b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = yy_current_buffer->yy_buf_size - number_to_move - 1; #endif } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]), yy_n_chars, num_to_read ); yy_current_buffer->yy_n_chars = yy_n_chars; } if ( yy_n_chars == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart( yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; yy_current_buffer->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; yy_n_chars += number_to_move; yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR; yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; yytext_ptr = &yy_current_buffer->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state() { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = yy_start; for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { yy_last_accepting_state = yy_current_state; yy_last_accepting_cpos = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 2266 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ #ifdef YY_USE_PROTOS static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state ) #else static yy_state_type yy_try_NUL_trans( yy_current_state ) yy_state_type yy_current_state; #endif { register int yy_is_jam; register char *yy_cp = yy_c_buf_p; register YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { yy_last_accepting_state = yy_current_state; yy_last_accepting_cpos = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 2266 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 2265); return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT #ifdef YY_USE_PROTOS static void yyunput( int c, register char *yy_bp ) #else static void yyunput( c, yy_bp ) int c; register char *yy_bp; #endif { register char *yy_cp = yy_c_buf_p; /* undo effects of setting up yytext */ *yy_cp = yy_hold_char; if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) { /* need to shift things up to make room */ /* +2 for EOB chars. */ register int number_to_move = yy_n_chars + 2; register char *dest = &yy_current_buffer->yy_ch_buf[ yy_current_buffer->yy_buf_size + 2]; register char *source = &yy_current_buffer->yy_ch_buf[number_to_move]; while ( source > yy_current_buffer->yy_ch_buf ) *--dest = *--source; yy_cp += (int) (dest - source); yy_bp += (int) (dest - source); yy_current_buffer->yy_n_chars = yy_n_chars = yy_current_buffer->yy_buf_size; if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) YY_FATAL_ERROR( "flex scanner push-back overflow" ); } *--yy_cp = (char) c; yytext_ptr = yy_bp; yy_hold_char = *yy_cp; yy_c_buf_p = yy_cp; } #endif /* ifndef YY_NO_UNPUT */ #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput() #else static int input() #endif { int c; *yy_c_buf_p = yy_hold_char; if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] ) /* This was really a NUL. */ *yy_c_buf_p = '\0'; else { /* need more input */ int offset = yy_c_buf_p - yytext_ptr; ++yy_c_buf_p; switch ( yy_get_next_buffer() ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart( yyin ); /* fall through */ case EOB_ACT_END_OF_FILE: { if ( yywrap() ) return EOF; if ( ! yy_did_buffer_switch_on_eof ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: yy_c_buf_p = yytext_ptr + offset; break; } } } c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */ *yy_c_buf_p = '\0'; /* preserve yytext */ yy_hold_char = *++yy_c_buf_p; return c; } #endif /* YY_NO_INPUT */ #ifdef YY_USE_PROTOS void yyrestart( FILE *input_file ) #else void yyrestart( input_file ) FILE *input_file; #endif { if ( ! yy_current_buffer ) yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); yy_init_buffer( yy_current_buffer, input_file ); yy_load_buffer_state(); } #ifdef YY_USE_PROTOS void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer ) #else void yy_switch_to_buffer( new_buffer ) YY_BUFFER_STATE new_buffer; #endif { if ( yy_current_buffer == new_buffer ) return; if ( yy_current_buffer ) { /* Flush out information for old buffer. */ *yy_c_buf_p = yy_hold_char; yy_current_buffer->yy_buf_pos = yy_c_buf_p; yy_current_buffer->yy_n_chars = yy_n_chars; } yy_current_buffer = new_buffer; yy_load_buffer_state(); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ yy_did_buffer_switch_on_eof = 1; } #ifdef YY_USE_PROTOS void yy_load_buffer_state( void ) #else void yy_load_buffer_state() #endif { yy_n_chars = yy_current_buffer->yy_n_chars; yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos; yyin = yy_current_buffer->yy_input_file; yy_hold_char = *yy_c_buf_p; } #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_create_buffer( FILE *file, int size ) #else YY_BUFFER_STATE yy_create_buffer( file, size ) FILE *file; int size; #endif { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer( b, file ); return b; } #ifdef YY_USE_PROTOS void yy_delete_buffer( YY_BUFFER_STATE b ) #else void yy_delete_buffer( b ) YY_BUFFER_STATE b; #endif { if ( ! b ) return; if ( b == yy_current_buffer ) yy_current_buffer = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yy_flex_free( (void *) b->yy_ch_buf ); yy_flex_free( (void *) b ); } #ifdef YY_USE_PROTOS void yy_init_buffer( YY_BUFFER_STATE b, FILE *file ) #else void yy_init_buffer( b, file ) YY_BUFFER_STATE b; FILE *file; #endif { yy_flush_buffer( b ); b->yy_input_file = file; b->yy_fill_buffer = 1; #if YY_ALWAYS_INTERACTIVE b->yy_is_interactive = 1; #else #if YY_NEVER_INTERACTIVE b->yy_is_interactive = 0; #else b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; #endif #endif } #ifdef YY_USE_PROTOS void yy_flush_buffer( YY_BUFFER_STATE b ) #else void yy_flush_buffer( b ) YY_BUFFER_STATE b; #endif { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == yy_current_buffer ) yy_load_buffer_state(); } #ifndef YY_NO_SCAN_BUFFER #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size ) #else YY_BUFFER_STATE yy_scan_buffer( base, size ) char *base; yy_size_t size; #endif { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer( b ); return b; } #endif #ifndef YY_NO_SCAN_STRING #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str ) #else YY_BUFFER_STATE yy_scan_string( yy_str ) yyconst char *yy_str; #endif { int len; for ( len = 0; yy_str[len]; ++len ) ; return yy_scan_bytes( yy_str, len ); } #endif #ifndef YY_NO_SCAN_BYTES #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len ) #else YY_BUFFER_STATE yy_scan_bytes( bytes, len ) yyconst char *bytes; int len; #endif { YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; /* Get memory for full buffer, including space for trailing EOB's. */ n = len + 2; buf = (char *) yy_flex_alloc( n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < len; ++i ) buf[i] = bytes[i]; buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer( buf, n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #endif #ifndef YY_NO_PUSH_STATE #ifdef YY_USE_PROTOS static void yy_push_state( int new_state ) #else static void yy_push_state( new_state ) int new_state; #endif { if ( yy_start_stack_ptr >= yy_start_stack_depth ) { yy_size_t new_size; yy_start_stack_depth += YY_START_STACK_INCR; new_size = yy_start_stack_depth * sizeof( int ); if ( ! yy_start_stack ) yy_start_stack = (int *) yy_flex_alloc( new_size ); else yy_start_stack = (int *) yy_flex_realloc( (void *) yy_start_stack, new_size ); if ( ! yy_start_stack ) YY_FATAL_ERROR( "out of memory expanding start-condition stack" ); } yy_start_stack[yy_start_stack_ptr++] = YY_START; BEGIN(new_state); } #endif #ifndef YY_NO_POP_STATE static void yy_pop_state() { if ( --yy_start_stack_ptr < 0 ) YY_FATAL_ERROR( "start-condition stack underflow" ); BEGIN(yy_start_stack[yy_start_stack_ptr]); } #endif #ifndef YY_NO_TOP_STATE static int yy_top_state() { return yy_start_stack[yy_start_stack_ptr - 1]; } #endif #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif #ifdef YY_USE_PROTOS static void yy_fatal_error( yyconst char msg[] ) #else static void yy_fatal_error( msg ) char msg[]; #endif { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ yytext[yyleng] = yy_hold_char; \ yy_c_buf_p = yytext + n; \ yy_hold_char = *yy_c_buf_p; \ *yy_c_buf_p = '\0'; \ yyleng = n; \ } \ while ( 0 ) /* Internal utility routines. */ #ifndef yytext_ptr #ifdef YY_USE_PROTOS static void yy_flex_strncpy( char *s1, yyconst char *s2, int n ) #else static void yy_flex_strncpy( s1, s2, n ) char *s1; yyconst char *s2; int n; #endif { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN #ifdef YY_USE_PROTOS static int yy_flex_strlen( yyconst char *s ) #else static int yy_flex_strlen( s ) yyconst char *s; #endif { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif #ifdef YY_USE_PROTOS static void *yy_flex_alloc( yy_size_t size ) #else static void *yy_flex_alloc( size ) yy_size_t size; #endif { return (void *) malloc( size ); } #ifdef YY_USE_PROTOS static void *yy_flex_realloc( void *ptr, yy_size_t size ) #else static void *yy_flex_realloc( ptr, size ) void *ptr; yy_size_t size; #endif { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return (void *) realloc( (char *) ptr, size ); } #ifdef YY_USE_PROTOS static void yy_flex_free( void *ptr ) #else static void yy_flex_free( ptr ) void *ptr; #endif { free( ptr ); } #if YY_MAIN int main() { yylex(); return 0; } #endif #line 866 "itex2MML.l" void itex2MML_restart () { BEGIN(INITIAL); } static const char * s_itex2MML_buffer = 0; static unsigned long s_itex2MML_length = 0; void itex2MML_setup (const char * buffer, unsigned long length) { yy_flush_buffer( YY_CURRENT_BUFFER ); s_itex2MML_buffer = buffer; s_itex2MML_length = length; } static int s_itex2MML_read (char * buffer, int max_size) { int result = 0; if (max_size < s_itex2MML_length) { result = max_size; memcpy (buffer, s_itex2MML_buffer, max_size); s_itex2MML_buffer += max_size; s_itex2MML_length -= max_size; } else { result = s_itex2MML_length; memcpy (buffer, s_itex2MML_buffer, s_itex2MML_length); s_itex2MML_buffer = 0; s_itex2MML_length = 0; } return result; }