#define yy_create_buffer zend_create_buffer #define yy_delete_buffer zend_delete_buffer #define yy_scan_buffer zend_scan_buffer #define yy_scan_string zend_scan_string #define yy_scan_bytes zend_scan_bytes #define yy_flex_debug zend_flex_debug #define yy_init_buffer zend_init_buffer #define yy_flush_buffer zend_flush_buffer #define yy_load_buffer_state zend_load_buffer_state #define yy_switch_to_buffer zend_switch_to_buffer #define yyin zendin #define yyleng zendleng #define yylex zendlex #define yyout zendout #define yyrestart zendrestart #define yytext zendtext /* A Lexical scanner generated by flex */ /* Scanner skeleton version: * $Header: /repository/ZendEngine2/flex.skl,v 1.31 2003/08/11 05:24:41 fujimoto Exp $ * vim:ft=lex: */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #include /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */ #ifdef c_plusplus #ifndef __cplusplus #define __cplusplus #endif #endif #ifdef __cplusplus #include #if HAVE_UNISTD_H #include #endif /* 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 #undef YY_USE_PROTOS #define YY_USE_PROTOS #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( SCNG(yy_in) TSRMLS_CC ) #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; #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_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 TSRMLS_CC ) /* 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 { struct _zend_file_handle *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 }; #define yy_current_buffer SCNG(current_buffer) #define yy_hold_char SCNG(_yy_hold_char) /* 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. */ #if 0 static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ #endif /* Points to current character in buffer. */ #define yy_c_buf_p SCNG(c_buf_p) #define yy_init SCNG(init) #define yy_start SCNG(start) #ifdef ZTS #define TSRMLS_D void ***tsrm_ls #define TSRMLS_DC , TSRMLS_D #define TSRMLS_C tsrm_ls #define TSRMLS_CC , TSRMLS_C #else #define TSRMLS_D #define TSRMLS_DC #define TSRMLS_C #define TSRMLS_CC #endif /* 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; */ #define yy_did_buffer_switch_on_eof SCNG(_yy_did_buffer_switch_on_eof) void yyrestart YY_PROTO(( struct _zend_file_handle *input_file TSRMLS_DC )); void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer TSRMLS_DC )); void yy_load_buffer_state YY_PROTO(( TSRMLS_D )); YY_BUFFER_STATE yy_create_buffer YY_PROTO(( struct _zend_file_handle *file, int size TSRMLS_DC )); void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b TSRMLS_DC )); void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, struct _zend_file_handle *file TSRMLS_DC )); void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b TSRMLS_DC )); #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer TSRMLS_CC ) YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size TSRMLS_DC )); YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str TSRMLS_DC )); YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len TSRMLS_DC )); static void *yy_flex_alloc YY_PROTO(( yy_size_t )); static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t )); 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( SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC ); \ yy_current_buffer->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC ); \ 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 #undef yyleng #define yyleng SCNG(yy_leng) #undef yytext #define yytext SCNG(yy_text) #undef yytext_ptr #define yytext_ptr SCNG(yy_text) #undef yyin #define yyin SCNG(yy_in) #undef yyout #define yyout SCNG(yy_out) #undef yy_last_accepting_state #define yy_last_accepting_state SCNG(_yy_last_accepting_state) #undef yy_last_accepting_cpos #define yy_last_accepting_cpos SCNG(_yy_last_accepting_cpos) #undef yy_more_flag #define yy_more_flag SCNG(_yy_more_flag) #undef yy_more_len #define yy_more_len SCNG(_yy_more_len) static yy_state_type yy_get_previous_state YY_PROTO(( TSRMLS_D )); static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state TSRMLS_DC )); static int yy_get_next_buffer YY_PROTO(( TSRMLS_D )); static void yy_fatal_error YY_PROTO(( yyconst char msg[] )); #undef TSRMLS_D #undef TSRMLS_DC #undef TSRMLS_C #undef TSRMLS_CC /* 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; \ yytext_ptr -= yy_more_len; \ yyleng = (int) (yy_cp - yytext_ptr); \ yy_hold_char = *yy_cp; \ *yy_cp = '\0'; \ yy_c_buf_p = yy_cp; #undef yyleng #undef yytext #undef yytext_ptr #undef yyin #undef yyout #undef yy_last_accepting_state #undef yy_last_accepting_cpos #undef yy_more_flag #undef yy_more_len #define YY_NUM_RULES 160 #define YY_END_OF_BUFFER 161 static yyconst short int yy_accept[1411] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 161, 111, 111, 159, 119, 96, 135, 120, 96, 96, 96, 138, 96, 96, 96, 96, 96, 96, 96, 102, 102, 96, 96, 96, 96, 96, 96, 117, 137, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 97, 96, 99, 140, 156, 145, 140, 104, 104, 145, 159, 118, 142, 145, 141, 158, 159, 143, 159, 157, 155, 140, 159, 118, 38, 37, 101, 100, 127, 130, 130, 122, 122, 122, 121, 121, 121, 111, 0, 111, 114, 112, 111, 119, 75, 0, 133, 0, 116, 83, 132, 90, 86, 0, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 70, 78, 71, 79, 36, 105, 82, 126, 120, 81, 105, 102, 0, 0, 39, 0, 94, 76, 75, 74, 67, 77, 95, 131, 88, 117, 117, 117, 117, 117, 23, 117, 117, 117, 117, 117, 117, 15, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 9, 117, 117, 117, 117, 117, 91, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 87, 89, 140, 144, 98, 36, 104, 0, 154, 150, 152, 154, 146, 118, 142, 147, 141, 0, 148, 149, 143, 151, 155, 140, 139, 139, 118, 0, 37, 100, 127, 129, 128, 122, 122, 123, 124, 111, 0, 113, 0, 0, 73, 116, 132, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105, 0, 105, 103, 0, 0, 84, 72, 85, 131, 131, 117, 117, 117, 117, 117, 117, 92, 117, 117, 117, 117, 117, 117, 117, 117, 117, 2, 117, 117, 117, 117, 117, 117, 117, 117, 16, 117, 117, 117, 117, 117, 117, 117, 117, 40, 117, 117, 117, 117, 117, 117, 117, 117, 6, 117, 55, 42, 117, 93, 104, 152, 153, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 0, 0, 0, 117, 117, 117, 117, 117, 117, 117, 117, 117, 26, 117, 117, 117, 117, 117, 117, 117, 30, 12, 117, 117, 117, 117, 117, 117, 50, 1, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 68, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 152, 153, 111, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 136, 136, 0, 117, 117, 117, 117, 117, 117, 117, 69, 28, 7, 32, 41, 4, 117, 117, 117, 117, 58, 117, 117, 11, 117, 117, 117, 62, 117, 117, 117, 117, 117, 117, 117, 57, 31, 117, 117, 117, 117, 117, 117, 117, 8, 66, 13, 111, 0, 115, 115, 0, 0, 0, 48, 0, 0, 0, 0, 0, 44, 0, 0, 0, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 10, 117, 17, 117, 117, 117, 117, 117, 56, 117, 117, 117, 117, 117, 117, 65, 117, 5, 60, 24, 111, 0, 0, 0, 46, 0, 0, 0, 0, 0, 49, 0, 117, 117, 117, 117, 117, 117, 117, 117, 20, 27, 117, 117, 117, 117, 34, 18, 117, 117, 51, 117, 117, 63, 117, 53, 111, 0, 0, 0, 0, 0, 47, 0, 45, 0, 117, 110, 117, 117, 109, 117, 61, 29, 117, 117, 117, 14, 3, 117, 117, 117, 117, 117, 117, 111, 0, 0, 0, 106, 117, 117, 117, 117, 117, 25, 117, 117, 117, 33, 64, 117, 111, 0, 0, 117, 117, 108, 21, 19, 35, 117, 22, 117, 111, 0, 0, 117, 117, 117, 117, 111, 0, 0, 107, 117, 52, 54, 111, 0, 0, 117, 111, 0, 0, 117, 111, 0, 0, 59, 111, 0, 0, 111, 0, 0, 0, 111, 0, 0, 0, 0, 0, 111, 0, 0, 0, 0, 111, 0, 0, 0, 0, 111, 0, 0, 0, 0, 112, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 111, 0, 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, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 21, 21, 21, 21, 21, 21, 22, 22, 23, 24, 25, 26, 27, 28, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 29, 30, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 16, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59 } ; static yyconst int yy_meta[63] = { 0, 1, 2, 3, 3, 4, 1, 4, 5, 4, 4, 6, 4, 4, 7, 4, 4, 4, 4, 4, 8, 8, 8, 4, 9, 10, 4, 4, 4, 1, 1, 4, 11, 1, 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, 1, 4, 1 } ; static yyconst short int yy_base[1831] = { 0, 7573, 7572, 0, 0, 62, 0, 114, 115, 121, 122, 123, 151, 210, 0, 272, 0, 7582, 7581, 7580, 7579, 132, 139, 7592, 7566, 121, 7599, 129, 7564, 131, 7599, 0, 112, 137, 135, 333, 7599, 7563, 143, 151, 150, 322, 322, 331, 7565, 320, 148, 153, 7560, 7560, 7553, 7599, 303, 7533, 328, 323, 344, 340, 7538, 0, 356, 7540, 7543, 7529, 305, 7541, 310, 99, 331, 7544, 7536, 7528, 7599, 331, 7599, 0, 7599, 408, 7548, 451, 376, 7599, 468, 0, 7541, 7565, 7542, 7599, 347, 7565, 457, 7599, 469, 470, 462, 481, 7599, 0, 7599, 0, 0, 7551, 7550, 483, 7599, 7565, 7540, 7599, 7539, 7540, 484, 7539, 7537, 469, 7526, 402, 7535, 485, 7599, 491, 0, 7599, 493, 7599, 7599, 363, 7599, 7557, 0, 7508, 7510, 7509, 7511, 7508, 7519, 7515, 7499, 7504, 7599, 7599, 7599, 7599, 7599, 7599, 509, 7599, 7536, 7599, 7599, 512, 517, 531, 522, 7599, 7497, 475, 7599, 7599, 7522, 7599, 7599, 7521, 503, 7599, 0, 526, 7494, 7508, 7493, 0, 7505, 468, 352, 7495, 477, 7503, 0, 7499, 7487, 7489, 7500, 7502, 521, 7488, 7483, 7486, 7484, 0, 7482, 488, 7478, 7477, 7472, 0, 456, 7492, 473, 7492, 7483, 7473, 7465, 7470, 7483, 7469, 7477, 7467, 7599, 7599, 0, 7599, 7599, 0, 548, 555, 7599, 7599, 558, 561, 7599, 0, 7484, 7599, 7486, 7485, 7599, 7599, 7508, 7599, 574, 595, 7599, 7510, 584, 599, 0, 0, 0, 7599, 7599, 606, 7599, 7599, 7599, 7487, 595, 7599, 7470, 7459, 7599, 0, 7599, 7506, 7457, 7459, 7452, 7457, 7451, 7460, 7468, 7450, 7448, 609, 597, 604, 609, 616, 7463, 7496, 7599, 7599, 7599, 7599, 7494, 7451, 512, 7461, 7452, 7455, 7439, 0, 7457, 7456, 7451, 7452, 7435, 7439, 569, 7440, 7450, 0, 7435, 7444, 7428, 604, 7435, 7426, 7440, 7443, 7438, 7439, 7439, 7428, 7427, 7418, 7432, 7431, 7415, 0, 585, 7414, 7421, 7411, 7410, 7410, 7409, 7413, 0, 7422, 0, 0, 7414, 0, 637, 624, 643, 7433, 658, 7408, 7414, 3075, 3063, 3071, 3071, 682, 3066, 3058, 3047, 3050, 666, 3036, 3084, 645, 3051, 3039, 3036, 3037, 3021, 3014, 2988, 2973, 2986, 0, 2986, 2974, 2985, 2967, 2977, 2984, 2963, 0, 2968, 2945, 2964, 2939, 2945, 2923, 2937, 0, 0, 2912, 2908, 2853, 2833, 2851, 2846, 2829, 2848, 2830, 2825, 0, 2824, 2842, 2837, 2831, 2830, 2820, 2828, 2833, 2812, 2814, 2828, 7599, 7599, 2840, 676, 685, 2814, 2804, 689, 2815, 2805, 571, 7599, 2814, 2812, 603, 2799, 2790, 2799, 7599, 2837, 658, 2787, 2800, 2792, 2773, 2785, 2772, 2775, 0, 0, 0, 0, 0, 0, 2756, 2749, 2751, 2754, 0, 2746, 2728, 0, 2731, 2730, 2733, 0, 2731, 2722, 2705, 2703, 2707, 2695, 2702, 0, 0, 2686, 2701, 2691, 2673, 2673, 2678, 2666, 0, 0, 0, 2679, 681, 7599, 2694, 2641, 690, 692, 7599, 2659, 2644, 2637, 2620, 694, 7599, 2632, 695, 2622, 2616, 2633, 2598, 2618, 2613, 2595, 2606, 2585, 2600, 2583, 0, 2590, 2587, 2568, 2571, 2561, 2566, 2558, 0, 2566, 2560, 2559, 2559, 2548, 2530, 0, 2538, 0, 0, 0, 2549, 689, 709, 713, 7599, 2526, 2512, 716, 717, 719, 7599, 2508, 2526, 2516, 2504, 2508, 2511, 2494, 2475, 2484, 0, 0, 2483, 2480, 2472, 2469, 0, 0, 2458, 2455, 2467, 2449, 2449, 0, 2446, 2445, 2449, 714, 732, 735, 736, 738, 7599, 741, 7599, 742, 2440, 0, 2414, 2411, 0, 2423, 0, 0, 2398, 2411, 2403, 0, 0, 2389, 2384, 2381, 2387, 2386, 2364, 2385, 722, 2375, 753, 0, 2361, 2361, 2371, 2362, 2357, 0, 2334, 2333, 2339, 0, 0, 2330, 2348, 743, 2323, 2324, 2306, 0, 0, 0, 0, 2316, 0, 2315, 2325, 750, 2308, 2309, 2288, 2288, 2283, 2293, 751, 2257, 0, 2264, 0, 0, 2283, 756, 2270, 2263, 2273, 758, 2251, 2230, 2254, 763, 2240, 0, 2241, 764, 759, 2238, 773, 802, 815, 2232, 784, 827, 2203, 2202, 2208, 2223, 814, 2204, 2201, 2178, 2197, 815, 2171, 2170, 842, 2187, 823, 2203, 2196, 850, 7599, 2180, 832, 2177, 840, 2167, 846, 2165, 853, 2157, 854, 2154, 861, 2152, 863, 2142, 871, 2139, 876, 2135, 884, 2133, 886, 2127, 891, 2124, 893, 2122, 899, 2121, 901, 2120, 916, 2118, 921, 2117, 922, 2103, 930, 2096, 931, 2092, 939, 2090, 951, 2089, 952, 2088, 953, 2087, 960, 2083, 961, 2080, 962, 2078, 983, 2066, 990, 2061, 991, 2060, 992, 2059, 997, 2058, 998, 2057, 1012, 2046, 1020, 2043, 1027, 2037, 1029, 2036, 1037, 2032, 1038, 2031, 1042, 2028, 1049, 2021, 1050, 2014, 1059, 2011, 1060, 2010, 1067, 2001, 1071, 1999, 1082, 1989, 1088, 1988, 1089, 1984, 1096, 1981, 1097, 1969, 1111, 1967, 1117, 1962, 1118, 1961, 1119, 1960, 1126, 1959, 1128, 1958, 1148, 1956, 1149, 1955, 1156, 1952, 1157, 1938, 1158, 1937, 1163, 1930, 1170, 1926, 1178, 1925, 1188, 1924, 1193, 1923, 1195, 1922, 1203, 1921, 1208, 1912, 1210, 1903, 1216, 1900, 1218, 1894, 1223, 1893, 1225, 1891, 1233, 1885, 1248, 1882, 1254, 1880, 1255, 1870, 1256, 1865, 1262, 1863, 1263, 1862, 1269, 1861, 1277, 1860, 1284, 1850, 1292, 1848, 1294, 1845, 1302, 1835, 1307, 1831, 1309, 1825, 1314, 1822, 1315, 1818, 1322, 1815, 1324, 1804, 1332, 1801, 1344, 1795, 1353, 1794, 1354, 1792, 1355, 1789, 1361, 1786, 1362, 1772, 1366, 1771, 1376, 1766, 1383, 1764, 1384, 1763, 1391, 1761, 1401, 1759, 1406, 1749, 1412, 1746, 1413, 1742, 1414, 1736, 1421, 1729, 1423, 1726, 1435, 1719, 1443, 1716, 1452, 1715, 1453, 1704, 1458, 1697, 1460, 1695, 1465, 1694, 1473, 1693, 1475, 1690, 1483, 1687, 1488, 1673, 1490, 1672, 1498, 1667, 1505, 1665, 1511, 1664, 1513, 1661, 1519, 1660, 1520, 1658, 1528, 1657, 1534, 1647, 1542, 1643, 1549, 1638, 1551, 1635, 1557, 1629, 1559, 1628, 1564, 1626, 1572, 1620, 1574, 139, 1579, 157, 1587, 312, 1589, 339, 1597, 382, 1604, 454, 1609, 502, 1610, 520, 1618, 524, 1619, 539, 1627, 561, 1639, 589, 1641, 602, 1648, 614, 1649, 617, 1650, 641, 1656, 668, 1671, 674, 1678, 675, 1679, 691, 1685, 697, 1686, 699, 1696, 700, 1700, 728, 1707, 733, 1708, 739, 1717, 745, 1718, 762, 1725, 765, 1730, 769, 1738, 771, 1740, 772, 1747, 774, 1748, 775, 1753, 782, 1755, 786, 1770, 788, 1776, 789, 1778, 795, 1784, 797, 1785, 802, 1793, 809, 1799, 810, 1806, 812, 1807, 822, 1814, 825, 1816, 831, 1824, 833, 1829, 834, 1837, 836, 1839, 848, 1844, 858, 1846, 862, 1852, 865, 1854, 869, 1869, 872, 1874, 878, 1875, 882, 1883, 892, 1884, 895, 1892, 897, 1904, 907, 1905, 908, 1906, 909, 1913, 910, 1914, 912, 1915, 917, 1936, 927, 1943, 929, 1944, 932, 1945, 938, 1950, 940, 1951, 941, 1965, 947, 1973, 950, 1980, 959, 1982, 968, 1990, 969, 1991, 970, 1995, 971, 2002, 972, 2003, 973, 2012, 977, 2013, 984, 2020, 985, 2024, 999, 2035, 1002, 2041, 1003, 2042, 1005, 2049, 1006, 2050, 1007, 2064, 1008, 2070, 1009, 2071, 1014, 2072, 1016, 2079, 1028, 2081, 1031, 2101, 1035, 2102, 1036, 2109, 1046, 2110, 1048, 2111, 1057, 2116, 1058, 2123, 1061, 2131, 1068, 2141, 1075, 2146, 1078, 2148, 1079, 2156, 1083, 2161, 1084, 2163, 1090, 2169, 1093, 2171, 1104, 2176, 1105, 2178, 1106, 2186, 1107, 2201, 1108, 2207, 1113, 2208, 1125, 2209, 1127, 2215, 1130, 2216, 1134, 2222, 1135, 2230, 1136, 2237, 1137, 2245, 1139, 2247, 1143, 2255, 1150, 2260, 1164, 2262, 1165, 2267, 1167, 2268, 1168, 2275, 1169, 2277, 1171, 2285, 1174, 2297, 1180, 2306, 1182, 2307, 1186, 2308, 1189, 2314, 1199, 2315, 1201, 2319, 1204, 2329, 1212, 2336, 1214, 2337, 1224, 2344, 1227, 2354, 1229, 2359, 1231, 2365, 1234, 2366, 1241, 2367, 1242, 2374, 1244, 2376, 1249, 2388, 1264, 2396, 1267, 2405, 1270, 2406, 1271, 2411, 1273, 2413, 1274, 2418, 1279, 2426, 1285, 2428, 1288, 2436, 1300, 2441, 1301, 2443, 1303, 2451, 1313, 2458, 1320, 2464, 1323, 2466, 1326, 2472, 1330, 2473, 1331, 2481, 1333, 2487, 1340, 2495, 1343, 2502, 1348, 2504, 1352, 2510, 1363, 2512, 1370, 2517, 1372, 2525, 1373, 2527, 1374, 2532, 1377, 2540, 1378, 2542, 1392, 2550, 1395, 2557, 1399, 2562, 1400, 2563, 1402, 2571, 1408, 2572, 1420, 2580, 1422, 2592, 1425, 2594, 1429, 2601, 1430, 2602, 1431, 2603, 1432, 2609, 1434, 2624, 1445, 2631, 1447, 2632, 1451, 2638, 1454, 2639, 1464, 2649, 1466, 2653, 1469, 2660, 1471, 2661, 1477, 2670, 1481, 2671, 1484, 2678, 1494, 2683, 1496, 2691, 1499, 2693, 1506, 2700, 1507, 2701, 1509, 2706, 1521, 2708, 1524, 2723, 1527, 2729, 1529, 2731, 1530, 2737, 1536, 2738, 1539, 2746, 1544, 2752, 1550, 2759, 1553, 2760, 1565, 2767, 1566, 2769, 1568, 2777, 1570, 2782, 1580, 2790, 1583, 2792, 1585, 2797, 1595, 2799, 1596, 2805, 1598, 2807, 1605, 2822, 1608, 2827, 1615, 2828, 7599, 2836, 7599, 2888, 2899, 2910, 2921, 2932, 2943, 2954, 1631, 2965, 2969, 2979, 2989, 2993, 3004, 3013, 3017, 3021, 3032, 3043, 3054, 3058, 3069, 3079, 3090, 3099, 3110, 3121, 3132, 3143, 3154, 3165, 3176, 3187, 3198, 3209, 3220, 3231, 3242, 3253, 3264, 3275, 3286, 3297, 3308, 3319, 3330, 3341, 3352, 3363, 3374, 3385, 3396, 3407, 3418, 3429, 3440, 3451, 3462, 3473, 3484, 3495, 3506, 3517, 3528, 3539, 3550, 3561, 3572, 3583, 3594, 3605, 3616, 3627, 3638, 3649, 3660, 3671, 3682, 3693, 3704, 3715, 3726, 3737, 3748, 3759, 3770, 3781, 3792, 3803, 3814, 3825, 3836, 3847, 3858, 3869, 3880, 3891, 3902, 3913, 3924, 3935, 3946, 3957, 3968, 3979, 3990, 4001, 4012, 4023, 4034, 4045, 4056, 4067, 4078, 4089, 4100, 4111, 4122, 4133, 4144, 4155, 4166, 4177, 4188, 4199, 4210, 4221, 4232, 4243, 4254, 4265, 4276, 4287, 4298, 4309, 4320, 4331, 4342, 4353, 4364, 4375, 4386, 4397, 4408, 4419, 4430, 4441, 4452, 4463, 4474, 4485, 4496, 4507, 4518, 4529, 4540, 4551, 4562, 4573, 4584, 4595, 4606, 4617, 4628, 4639, 4650, 4661, 4672, 4683, 4694, 4705, 4716, 4727, 4738, 4749, 4760, 4771, 4782, 4793, 4804, 4815, 4826, 4837, 4848, 4859, 4870, 4881, 4892, 4903, 4914, 4925, 4936, 4947, 4958, 4969, 4980, 4991, 5002, 5013, 5024, 5035, 5046, 5057, 5068, 5079, 5090, 5101, 5112, 5123, 5134, 5145, 5156, 5167, 5178, 5189, 5200, 5211, 5222, 5233, 5244, 5255, 5266, 5277, 5288, 5299, 5310, 5321, 5332, 5343, 5354, 5365, 5376, 5387, 5398, 5409, 5420, 5431, 5442, 5453, 5464, 5475, 5486, 5497, 5508, 5519, 5530, 5541, 5552, 5563, 5574, 5585, 5596, 5607, 5618, 5629, 5640, 5651, 5662, 5673, 5684, 5695, 5706, 5717, 5728, 5739, 5750, 5761, 5772, 5783, 5794, 5805, 5816, 5827, 5838, 5849, 5860, 5871, 5882, 5893, 5904, 5915, 5926, 5937, 5948, 5959, 5970, 5981, 5992, 6003, 6014, 6025, 6036, 6047, 6058, 6069, 6080, 6091, 6102, 6113, 6124, 6135, 6146, 6157, 6168, 6179, 6190, 6201, 6212, 6223, 6234, 6245, 6256, 6267, 6278, 6289, 6300, 6311, 6322, 6333, 6344, 6355, 6366, 6377, 6388, 6399, 6410, 6421, 6432, 6443, 6454, 6465, 6476, 6487, 6498, 6509, 6520, 6531, 6542, 6553, 6564, 6575, 6586, 6597, 6608, 6619, 6630, 6641, 6652, 6663, 6674, 6685, 6696, 6707, 6718, 6729, 6740, 6751, 6762, 6773, 6784, 6795, 6806, 6817, 6828, 6839, 6850, 6861, 6872, 6883, 6894, 6905, 6916, 6927, 6938, 6949, 6960, 6971, 6982, 6993, 7004, 7015, 7026, 7037, 7048, 7059, 7070, 7081, 7092, 7103, 7114, 7125, 7136, 7147, 7158, 7169, 7180, 7191, 7202, 7213, 7224, 7235, 7246, 7257, 7268, 7279, 7290, 7301, 7312, 7323, 7334, 7345, 7356, 7367, 7378, 7389, 7400, 7411, 7422, 7433, 7444 } ; static yyconst short int yy_def[1831] = { 0, 1411, 1411, 1410, 3, 1410, 5, 1412, 1412, 5, 5, 5, 5, 1410, 13, 1410, 15, 1413, 1413, 1413, 1413, 1414, 1414, 1410, 1415, 1416, 1410, 1410, 1410, 1417, 1410, 1418, 1410, 1410, 1419, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1420, 1410, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1410, 1410, 1410, 1421, 1410, 1410, 1421, 1410, 1410, 1410, 1422, 1423, 1410, 1410, 1424, 1410, 1424, 1410, 1422, 1410, 1410, 1421, 1422, 1425, 1410, 1426, 1410, 1427, 1428, 1410, 1410, 1429, 1410, 1410, 1410, 1410, 1410, 1430, 1415, 1415, 1410, 1410, 1410, 1410, 1410, 1417, 1410, 1417, 1431, 1410, 1410, 1410, 1410, 1419, 1410, 1419, 35, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1410, 1410, 1421, 1410, 1410, 1421, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1423, 1410, 1410, 1424, 1424, 1410, 1410, 1410, 1410, 1410, 1421, 1410, 1410, 1425, 1410, 1426, 1427, 1428, 1410, 1410, 1429, 1410, 1410, 1410, 1432, 1430, 1410, 1410, 1410, 1410, 1431, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1433, 1410, 1410, 1410, 1410, 1410, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1410, 1410, 1410, 1434, 1432, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1433, 1435, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1410, 1410, 1436, 1434, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1435, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1437, 1436, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1438, 1437, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1439, 1438, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1440, 1439, 1410, 1410, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1441, 1440, 1410, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1442, 1441, 1410, 1420, 1420, 1420, 1420, 1443, 1442, 1410, 1420, 1420, 1420, 1420, 1444, 1443, 1410, 1420, 1445, 1444, 1410, 1420, 1446, 1445, 1410, 1420, 1447, 1446, 1410, 1448, 1447, 1410, 1410, 1449, 1448, 1410, 1410, 1410, 1410, 1450, 1449, 1410, 1410, 1410, 1451, 1450, 1410, 1410, 1410, 1452, 1451, 1410, 1410, 1410, 1410, 1453, 1452, 1454, 1453, 1455, 1454, 1456, 1455, 1457, 1456, 1458, 1457, 1459, 1458, 1460, 1459, 1461, 1460, 1462, 1461, 1463, 1462, 1464, 1463, 1465, 1464, 1466, 1465, 1467, 1466, 1468, 1467, 1469, 1468, 1470, 1469, 1471, 1470, 1472, 1471, 1473, 1472, 1474, 1473, 1475, 1474, 1476, 1475, 1477, 1476, 1478, 1477, 1479, 1478, 1480, 1479, 1481, 1480, 1482, 1481, 1483, 1482, 1484, 1483, 1485, 1484, 1486, 1485, 1487, 1486, 1488, 1487, 1489, 1488, 1490, 1489, 1491, 1490, 1492, 1491, 1493, 1492, 1494, 1493, 1495, 1494, 1496, 1495, 1497, 1496, 1498, 1497, 1499, 1498, 1500, 1499, 1501, 1500, 1502, 1501, 1503, 1502, 1504, 1503, 1505, 1504, 1506, 1505, 1507, 1506, 1508, 1507, 1509, 1508, 1510, 1509, 1511, 1510, 1512, 1511, 1513, 1512, 1514, 1513, 1515, 1514, 1516, 1515, 1517, 1516, 1518, 1517, 1519, 1518, 1520, 1519, 1521, 1520, 1522, 1521, 1523, 1522, 1524, 1523, 1525, 1524, 1526, 1525, 1527, 1526, 1528, 1527, 1529, 1528, 1530, 1529, 1531, 1530, 1532, 1531, 1533, 1532, 1534, 1533, 1535, 1534, 1536, 1535, 1537, 1536, 1538, 1537, 1539, 1538, 1540, 1539, 1541, 1540, 1542, 1541, 1543, 1542, 1544, 1543, 1545, 1544, 1546, 1545, 1547, 1546, 1548, 1547, 1549, 1548, 1550, 1549, 1551, 1550, 1552, 1551, 1553, 1552, 1554, 1553, 1555, 1554, 1556, 1555, 1557, 1556, 1558, 1557, 1559, 1558, 1560, 1559, 1561, 1560, 1562, 1561, 1563, 1562, 1564, 1563, 1565, 1564, 1566, 1565, 1567, 1566, 1568, 1567, 1569, 1568, 1570, 1569, 1571, 1570, 1572, 1571, 1573, 1572, 1574, 1573, 1575, 1574, 1576, 1575, 1577, 1576, 1578, 1577, 1579, 1578, 1580, 1579, 1581, 1580, 1582, 1581, 1583, 1582, 1584, 1583, 1585, 1584, 1586, 1585, 1587, 1586, 1588, 1587, 1589, 1588, 1590, 1589, 1591, 1590, 1592, 1591, 1593, 1592, 1594, 1593, 1595, 1594, 1596, 1595, 1597, 1596, 1598, 1597, 1599, 1598, 1600, 1599, 1601, 1600, 1602, 1601, 1603, 1602, 1604, 1603, 1605, 1604, 1606, 1605, 1607, 1606, 1608, 1607, 1609, 1608, 1610, 1609, 1611, 1610, 1612, 1611, 1613, 1612, 1614, 1613, 1615, 1614, 1616, 1615, 1617, 1616, 1618, 1617, 1619, 1618, 1620, 1619, 1621, 1620, 1622, 1621, 1623, 1622, 1624, 1623, 1625, 1624, 1626, 1625, 1627, 1626, 1628, 1627, 1629, 1628, 1630, 1629, 1631, 1630, 1632, 1631, 1633, 1632, 1634, 1633, 1635, 1634, 1636, 1635, 1637, 1636, 1638, 1637, 1639, 1638, 1640, 1639, 1641, 1640, 1642, 1641, 1643, 1642, 1644, 1643, 1645, 1644, 1646, 1645, 1647, 1646, 1648, 1647, 1649, 1648, 1650, 1649, 1651, 1650, 1652, 1651, 1653, 1652, 1654, 1653, 1655, 1654, 1656, 1655, 1657, 1656, 1658, 1657, 1659, 1658, 1660, 1659, 1661, 1660, 1662, 1661, 1663, 1662, 1664, 1663, 1665, 1664, 1666, 1665, 1667, 1666, 1668, 1667, 1669, 1668, 1670, 1669, 1671, 1670, 1672, 1671, 1673, 1672, 1674, 1673, 1675, 1674, 1676, 1675, 1677, 1676, 1678, 1677, 1679, 1678, 1680, 1679, 1681, 1680, 1682, 1681, 1683, 1682, 1684, 1683, 1685, 1684, 1686, 1685, 1687, 1686, 1688, 1687, 1689, 1688, 1690, 1689, 1691, 1690, 1692, 1691, 1693, 1692, 1694, 1693, 1695, 1694, 1696, 1695, 1697, 1696, 1698, 1697, 1699, 1698, 1700, 1699, 1701, 1700, 1702, 1701, 1703, 1702, 1704, 1703, 1705, 1704, 1706, 1705, 1707, 1706, 1708, 1707, 1709, 1708, 1710, 1709, 1711, 1710, 1712, 1711, 1713, 1712, 1714, 1713, 1715, 1714, 1716, 1715, 1717, 1716, 1718, 1717, 1719, 1718, 1720, 1719, 1721, 1720, 1722, 1721, 1723, 1722, 1724, 1723, 1725, 1724, 1726, 1725, 1727, 1726, 1728, 1727, 1729, 1728, 1730, 1729, 1731, 1730, 1732, 1731, 1733, 1732, 1734, 1733, 1735, 1734, 1736, 1735, 1737, 1736, 1738, 1737, 1739, 1738, 1740, 1739, 1741, 1740, 1742, 1741, 1743, 1742, 1744, 1743, 1745, 1744, 1746, 1745, 1747, 1746, 1748, 1747, 1749, 1748, 1750, 1749, 1751, 1750, 1752, 1751, 1753, 1752, 1754, 1753, 1755, 1754, 1756, 1755, 1757, 1756, 1758, 1757, 1759, 1758, 1760, 1759, 1761, 1760, 1762, 1761, 1763, 1762, 1764, 1763, 1765, 1764, 1766, 1765, 1767, 1766, 1768, 1767, 1769, 1768, 1770, 1769, 1771, 1770, 1772, 1771, 1773, 1772, 1774, 1773, 1775, 1774, 1776, 1775, 1777, 1776, 1778, 1777, 1779, 1778, 1780, 1779, 1781, 1780, 1782, 1781, 1783, 1782, 1784, 1783, 1785, 1784, 1786, 1785, 1787, 1786, 1788, 1787, 1789, 1788, 1790, 1789, 1791, 1790, 1792, 1791, 1793, 1792, 1794, 1793, 1795, 1794, 1796, 1795, 1797, 1796, 1798, 1797, 1799, 1798, 1800, 1799, 1801, 1800, 1802, 1801, 1803, 1802, 1804, 1803, 1805, 1804, 1806, 1805, 1807, 1806, 1808, 1807, 1809, 1808, 1810, 1809, 1811, 1810, 1812, 1811, 1813, 1812, 1814, 1813, 1815, 1814, 1816, 1815, 1817, 1816, 1818, 1817, 1819, 1818, 1820, 1819, 1821, 1820, 1822, 1821, 1823, 1822, 1824, 1823, 1825, 1824, 1826, 1825, 1827, 1826, 1828, 1827, 1829, 1828, 1830, 1829, 1410, 1830, 0, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410 } ; static yyconst short int yy_nxt[7662] = { 0, 26, 27, 27, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 36, 39, 40, 41, 42, 43, 43, 44, 36, 45, 46, 47, 48, 36, 26, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 59, 59, 61, 59, 62, 63, 64, 59, 65, 66, 67, 68, 69, 70, 71, 59, 59, 72, 73, 74, 26, 75, 75, 75, 75, 76, 75, 77, 75, 75, 75, 75, 75, 75, 75, 75, 78, 75, 75, 79, 80, 80, 75, 75, 75, 75, 75, 75, 81, 82, 75, 83, 84, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 85, 75, 81, 87, 87, 89, 89, 92, 112, 115, 115, 115, 93, 104, 105, 118, 121, 122, 199, 106, 104, 105, 88, 88, 126, 123, 106, 113, 200, 90, 90, 94, 91, 91, 92, 92, 139, 107, 108, 119, 93, 124, 937, 127, 107, 108, 141, 140, 144, 144, 144, 114, 158, 159, 145, 142, 143, 160, 161, 94, 939, 95, 92, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 97, 96, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 96, 96, 96, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 99, 98, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 98, 98, 98, 128, 146, 941, 166, 154, 149, 147, 150, 150, 150, 155, 156, 157, 148, 149, 167, 150, 150, 150, 168, 169, 194, 206, 224, 195, 151, 174, 171, 197, 943, 175, 198, 129, 130, 151, 131, 176, 132, 172, 126, 133, 173, 225, 201, 152, 177, 134, 183, 202, 135, 136, 284, 137, 184, 178, 179, 180, 207, 127, 185, 187, 212, 212, 212, 181, 285, 182, 188, 189, 115, 115, 115, 945, 190, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 120, 209, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 210, 209, 209, 212, 212, 212, 215, 228, 228, 216, 216, 947, 228, 229, 216, 216, 230, 231, 240, 240, 216, 216, 227, 118, 240, 1410, 1410, 245, 250, 251, 308, 117, 267, 268, 228, 228, 309, 233, 271, 272, 213, 1410, 240, 240, 1410, 287, 217, 119, 288, 218, 246, 217, 282, 283, 218, 311, 302, 217, 312, 949, 218, 144, 144, 144, 262, 262, 262, 149, 1410, 150, 150, 150, 303, 304, 265, 265, 265, 951, 263, 151, 263, 953, 151, 264, 264, 264, 343, 151, 265, 265, 265, 265, 265, 265, 273, 295, 955, 274, 344, 275, 212, 212, 212, 276, 277, 401, 296, 322, 322, 322, 323, 323, 228, 324, 324, 324, 402, 228, 957, 230, 231, 322, 322, 322, 322, 322, 322, 324, 324, 324, 324, 324, 324, 228, 230, 231, 1410, 468, 229, 228, 233, 240, 240, 338, 338, 338, 959, 240, 469, 262, 262, 262, 1410, 355, 356, 1410, 264, 264, 264, 961, 228, 264, 264, 264, 380, 240, 240, 151, 265, 265, 265, 963, 381, 362, 965, 363, 391, 391, 364, 1410, 409, 410, 265, 265, 265, 265, 265, 265, 365, 322, 322, 322, 366, 409, 410, 392, 392, 392, 967, 1410, 338, 338, 338, 322, 322, 322, 322, 322, 322, 392, 392, 392, 392, 392, 392, 1410, 401, 1410, 1410, 458, 458, 459, 1410, 462, 506, 969, 462, 402, 468, 512, 1410, 971, 973, 1410, 463, 507, 1410, 463, 1410, 469, 513, 1410, 1410, 541, 541, 541, 1410, 506, 975, 1410, 544, 546, 403, 512, 977, 1410, 979, 981, 507, 464, 1410, 545, 547, 1410, 513, 1410, 541, 541, 541, 462, 401, 1410, 544, 1410, 1410, 546, 571, 571, 571, 1410, 463, 402, 1410, 545, 1410, 983, 547, 571, 571, 571, 985, 1410, 1410, 628, 628, 628, 987, 1410, 1410, 1410, 1410, 162, 989, 1410, 1410, 1410, 1410, 1410, 1410, 570, 1410, 1410, 162, 1410, 1410, 1410, 1410, 629, 1410, 991, 1410, 1410, 993, 1410, 1410, 1410, 995, 1410, 997, 999, 1410, 1001, 1003, 1410, 1410, 1410, 628, 628, 628, 1005, 1410, 1410, 1410, 1007, 1410, 1009, 1011, 1410, 1410, 632, 632, 632, 1013, 633, 1015, 1410, 1410, 1410, 634, 1017, 629, 632, 632, 632, 1410, 633, 1019, 1021, 1410, 1023, 634, 1410, 1410, 1410, 1410, 1410, 650, 650, 650, 1025, 1410, 1410, 1027, 1410, 650, 650, 650, 1410, 1029, 1410, 1031, 1033, 1410, 1035, 1410, 1410, 635, 1410, 1410, 1410, 1410, 651, 1410, 1410, 1410, 1037, 1410, 1410, 635, 651, 1410, 1410, 1410, 1410, 1410, 1039, 1410, 1410, 1410, 1041, 1410, 1410, 1043, 1410, 1410, 1410, 1045, 1410, 1410, 1047, 1410, 1410, 1410, 1410, 1410, 1049, 1410, 1410, 1410, 1051, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1053, 1410, 1410, 1055, 1410, 1057, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1059, 1061, 1063, 1065, 1410, 1067, 1410, 1410, 1410, 1410, 1069, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1071, 1410, 1073, 1410, 1410, 1075, 1410, 1410, 1410, 1410, 1410, 1077, 1410, 1079, 1081, 1410, 1410, 1410, 1410, 1410, 1083, 1410, 1410, 1085, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1087, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1089, 1091, 1093, 1095, 1097, 1099, 1410, 1410, 1410, 1101, 1410, 1410, 1410, 1410, 1410, 1410, 1103, 1105, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1107, 1410, 1410, 1109, 1111, 1410, 1113, 1115, 1117, 1119, 1121, 1410, 1410, 1410, 1410, 1123, 1410, 1125, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1127, 1410, 1410, 1129, 1410, 1410, 1410, 1131, 1133, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1135, 1410, 1137, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1139, 1141, 1410, 1410, 1143, 1410, 1410, 1410, 1410, 1410, 1410, 1145, 1410, 1410, 1410, 1410, 1410, 1410, 1147, 1410, 1410, 1149, 1151, 1410, 1410, 1410, 1153, 1155, 1410, 1410, 1410, 1410, 1410, 1157, 1410, 1410, 1159, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1161, 1163, 1165, 1167, 1169, 1410, 1410, 1410, 1410, 1171, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1173, 1410, 1175, 1410, 1410, 1177, 1410, 1410, 1410, 1179, 1181, 1183, 1185, 1410, 1187, 1410, 1410, 1410, 1189, 1410, 1410, 1410, 1410, 1410, 1410, 1191, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1193, 1195, 1410, 1197, 1199, 1201, 1410, 1203, 1410, 1410, 1205, 1410, 1410, 1410, 1410, 1410, 1207, 1410, 1209, 1410, 1410, 1410, 1211, 1410, 1410, 1213, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1215, 1410, 1217, 1410, 1410, 1219, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1221, 1410, 1223, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1225, 1410, 1410, 1227, 1410, 1229, 1410, 1231, 1410, 1410, 1233, 1410, 1410, 1410, 1410, 1410, 1410, 1235, 1237, 1410, 1239, 1410, 1410, 1410, 1410, 1241, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1243, 1410, 1410, 1245, 1410, 1410, 1247, 1249, 1410, 1251, 1253, 1410, 1410, 1410, 1410, 1255, 1410, 1410, 1410, 1410, 1410, 1257, 1410, 1410, 1259, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1261, 1263, 1410, 1265, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1267, 1410, 1410, 1410, 1410, 1410, 1410, 1269, 1410, 1410, 1271, 1410, 1410, 1273, 1410, 1410, 1410, 1275, 1277, 1410, 1279, 1410, 1410, 1410, 1410, 1410, 1410, 1281, 1410, 1410, 1283, 1410, 1410, 1410, 1410, 1285, 1410, 1410, 1410, 1287, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1289, 1410, 1410, 1410, 1410, 1410, 1410, 1291, 1410, 1293, 1295, 1297, 1410, 1410, 1299, 1301, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1303, 1410, 1410, 1305, 1410, 1410, 1410, 1307, 1309, 1410, 1311, 1410, 1410, 1410, 1410, 1410, 1313, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1315, 1410, 1317, 1410, 1410, 1319, 1410, 1410, 1410, 1321, 1323, 1325, 1327, 1410, 1329, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1331, 1410, 1333, 1410, 1410, 1410, 1335, 1410, 1410, 1337, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1339, 1410, 1341, 1410, 1410, 1343, 1410, 1345, 1410, 1410, 1410, 1410, 1410, 1347, 1410, 1410, 1410, 1349, 1410, 1410, 1351, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1353, 1410, 1355, 1410, 1410, 1357, 1410, 1410, 1410, 1410, 1410, 1410, 1359, 1361, 1410, 1363, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1365, 1410, 1410, 1367, 1410, 1410, 1369, 1410, 1371, 1373, 1410, 1410, 1410, 1410, 1410, 1375, 1410, 1410, 1377, 1410, 1410, 1410, 1410, 1379, 1410, 1410, 1410, 1410, 1410, 1381, 1410, 1410, 1383, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1385, 1387, 1410, 1389, 1410, 1391, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1393, 1410, 1410, 1395, 1410, 1397, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1399, 1401, 1410, 1403, 1410, 1410, 1410, 1410, 1410, 1410, 1405, 1410, 1410, 1407, 1410, 1410, 1410, 1410, 1410, 1410, 1409, 1410, 120, 1410, 1410, 935, 1410, 1410, 1410, 1410, 1410, 933, 1410, 931, 929, 1410, 1410, 1410, 1410, 1410, 927, 1410, 1410, 925, 1410, 1410, 1410, 1410, 923, 1410, 1410, 1410, 921, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 919, 917, 1410, 915, 913, 1410, 1410, 911, 909, 1410, 907, 1410, 1410, 1410, 1410, 905, 903, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 901, 1410, 1410, 899, 1410, 1410, 897, 895, 893, 1410, 891, 1410, 1410, 1410, 1410, 1410, 1410, 889, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 887, 885, 1410, 1410, 883, 1410, 1410, 1410, 1410, 1410, 1410, 881, 1410, 1410, 879, 1410, 1410, 1410, 1410, 1410, 1410, 877, 1410, 1410, 1410, 1410, 1410, 875, 1410, 1410, 1410, 873, 1410, 1410, 871, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 869, 1410, 867, 1410, 865, 863, 1410, 861, 1410, 1410, 1410, 1410, 859, 857, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 855, 1410, 1410, 853, 1410, 1410, 851, 1410, 849, 847, 1410, 1410, 1410, 1410, 1410, 845, 1410, 1410, 843, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 841, 1410, 1410, 839, 1410, 1410, 1410, 837, 1410, 1410, 835, 1410, 1410, 1410, 1410, 1410, 833, 1410, 1410, 1410, 831, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 829, 1410, 1410, 827, 1410, 825, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 823, 821, 819, 817, 1410, 815, 1410, 1410, 1410, 1410, 813, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 811, 1410, 809, 1410, 1410, 807, 1410, 1410, 1410, 1410, 1410, 805, 1410, 803, 801, 1410, 1410, 1410, 1410, 1410, 799, 1410, 1410, 797, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 795, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 793, 791, 789, 787, 785, 783, 1410, 1410, 1410, 781, 1410, 1410, 1410, 1410, 1410, 1410, 779, 777, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 775, 1410, 1410, 773, 771, 1410, 769, 767, 765, 763, 761, 1410, 1410, 1410, 1410, 759, 1410, 757, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 755, 1410, 1410, 753, 1410, 1410, 1410, 751, 749, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 747, 1410, 745, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 743, 741, 1410, 1410, 739, 1410, 1410, 1410, 1410, 1410, 1410, 737, 1410, 1410, 1410, 1410, 1410, 1410, 735, 1410, 1410, 733, 731, 1410, 1410, 1410, 729, 727, 1410, 1410, 1410, 1410, 1410, 725, 1410, 1410, 723, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 721, 719, 717, 715, 713, 1410, 1410, 1410, 1410, 711, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 709, 1410, 707, 1410, 1410, 705, 1410, 1410, 1410, 703, 701, 699, 697, 1410, 695, 1410, 1410, 1410, 693, 1410, 1410, 1410, 1410, 1410, 1410, 691, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 689, 687, 1410, 685, 683, 681, 1410, 679, 1410, 1410, 677, 1410, 1410, 1410, 1410, 1410, 675, 1410, 673, 1410, 1410, 1410, 671, 1410, 1410, 669, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 667, 1410, 665, 1410, 1410, 663, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 661, 1410, 659, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 657, 1410, 1410, 655, 1410, 645, 1410, 645, 1410, 1410, 653, 1410, 1410, 1410, 1410, 1410, 1410, 649, 648, 1410, 647, 1410, 1410, 1410, 1410, 645, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 644, 1410, 1410, 643, 1410, 1410, 642, 640, 1410, 639, 638, 1410, 1410, 1410, 1410, 637, 1410, 1410, 1410, 1410, 1410, 631, 1410, 1410, 627, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 625, 624, 1410, 622, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 621, 1410, 1410, 1410, 1410, 1410, 1410, 620, 1410, 1410, 618, 1410, 1410, 617, 1410, 1410, 1410, 616, 614, 1410, 613, 1410, 1410, 1410, 1410, 1410, 1410, 612, 1410, 1410, 610, 1410, 1410, 1410, 1410, 609, 1410, 1410, 1410, 608, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 607, 1410, 1410, 1410, 1410, 1410, 1410, 606, 1410, 605, 603, 602, 1410, 1410, 601, 600, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 599, 1410, 1410, 598, 1410, 1410, 1410, 596, 595, 1410, 594, 1410, 1410, 1410, 1410, 1410, 593, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 592, 1410, 591, 1410, 1410, 590, 1410, 1410, 1410, 589, 588, 587, 586, 1410, 584, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 583, 1410, 582, 1410, 1410, 1410, 581, 1410, 1410, 580, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 579, 1410, 578, 1410, 1410, 577, 1410, 576, 1410, 1410, 1410, 1410, 1410, 575, 1410, 1410, 1410, 574, 1410, 1410, 573, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 572, 1410, 569, 1410, 1410, 567, 1410, 1410, 1410, 1410, 1410, 1410, 566, 565, 1410, 564, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 563, 1410, 1410, 562, 1410, 1410, 561, 1410, 560, 559, 1410, 1410, 1410, 1410, 1410, 558, 1410, 1410, 557, 1410, 1410, 1410, 1410, 556, 1410, 1410, 1410, 1410, 1410, 555, 1410, 1410, 554, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 553, 552, 1410, 551, 1410, 550, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 549, 1410, 1410, 548, 1410, 543, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 542, 540, 1410, 538, 1410, 1410, 1410, 1410, 1410, 1410, 537, 1410, 1410, 536, 1410, 1410, 1410, 1410, 1410, 1410, 535, 1410, 534, 1410, 1410, 533, 1410, 1410, 1410, 1410, 1410, 532, 1410, 531, 530, 1410, 1410, 1410, 1410, 1410, 529, 1410, 1410, 528, 1410, 1410, 1410, 1410, 527, 1410, 1410, 1410, 526, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 525, 524, 1410, 523, 522, 1410, 1410, 521, 520, 1410, 519, 1410, 1410, 1410, 1410, 518, 517, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 516, 1410, 1410, 515, 1410, 1410, 514, 511, 510, 1410, 509, 1410, 1410, 1410, 1410, 1410, 1410, 405, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 508, 505, 1410, 1410, 458, 1410, 1410, 1410, 1410, 1410, 1410, 504, 1410, 1410, 502, 1410, 1410, 1410, 1410, 1410, 1410, 501, 1410, 1410, 1410, 1410, 1410, 500, 1410, 1410, 1410, 499, 1410, 1410, 498, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 497, 1410, 496, 1410, 495, 494, 1410, 493, 1410, 1410, 1410, 1410, 492, 491, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 490, 1410, 1410, 489, 1410, 1410, 488, 1410, 487, 486, 1410, 1410, 1410, 1410, 1410, 485, 1410, 1410, 484, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 483, 1410, 1410, 482, 1410, 1410, 1410, 481, 1410, 1410, 480, 1410, 1410, 1410, 1410, 1410, 479, 1410, 1410, 1410, 478, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 477, 1410, 1410, 476, 1410, 475, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 474, 473, 409, 472, 1410, 471, 1410, 1410, 470, 1410, 467, 1410, 1410, 1410, 1410, 1410, 466, 1410, 1410, 1410, 405, 1410, 465, 1410, 461, 460, 1410, 457, 455, 454, 453, 452, 451, 450, 449, 448, 1410, 447, 446, 445, 444, 1410, 1410, 443, 442, 441, 440, 439, 438, 437, 1410, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 111, 111, 111, 111, 111, 111, 111, 111, 111, 436, 111, 117, 117, 117, 117, 435, 117, 117, 117, 117, 117, 117, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 164, 434, 433, 164, 208, 208, 208, 432, 208, 208, 431, 208, 208, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 219, 430, 429, 219, 222, 222, 222, 222, 222, 428, 222, 222, 222, 222, 222, 232, 427, 426, 425, 424, 232, 232, 423, 232, 234, 422, 421, 234, 235, 420, 419, 235, 236, 236, 236, 236, 236, 236, 418, 236, 236, 236, 236, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 249, 417, 416, 249, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 341, 415, 414, 413, 412, 340, 408, 407, 406, 341, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 411, 405, 404, 400, 399, 411, 398, 397, 411, 456, 456, 456, 456, 456, 456, 456, 456, 456, 456, 456, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 539, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 597, 597, 597, 597, 597, 597, 597, 597, 597, 597, 597, 604, 604, 604, 604, 604, 604, 604, 604, 604, 604, 604, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 636, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 646, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 654, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 660, 660, 660, 660, 660, 660, 660, 660, 660, 660, 660, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 662, 664, 664, 664, 664, 664, 664, 664, 664, 664, 664, 664, 666, 666, 666, 666, 666, 666, 666, 666, 666, 666, 666, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 672, 672, 672, 672, 672, 672, 672, 672, 672, 672, 672, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 680, 680, 680, 680, 680, 680, 680, 680, 680, 680, 680, 682, 682, 682, 682, 682, 682, 682, 682, 682, 682, 682, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 690, 690, 690, 690, 690, 690, 690, 690, 690, 690, 690, 692, 692, 692, 692, 692, 692, 692, 692, 692, 692, 692, 694, 694, 694, 694, 694, 694, 694, 694, 694, 694, 694, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, 704, 704, 704, 704, 704, 704, 704, 704, 704, 704, 704, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 706, 708, 708, 708, 708, 708, 708, 708, 708, 708, 708, 708, 710, 710, 710, 710, 710, 710, 710, 710, 710, 710, 710, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, 720, 720, 720, 720, 720, 720, 720, 720, 720, 720, 720, 722, 722, 722, 722, 722, 722, 722, 722, 722, 722, 722, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 728, 728, 728, 728, 728, 728, 728, 728, 728, 728, 728, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 730, 732, 732, 732, 732, 732, 732, 732, 732, 732, 732, 732, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 736, 736, 736, 736, 736, 736, 736, 736, 736, 736, 736, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 740, 740, 740, 740, 740, 740, 740, 740, 740, 740, 740, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 746, 746, 746, 746, 746, 746, 746, 746, 746, 746, 746, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 752, 752, 752, 752, 752, 752, 752, 752, 752, 752, 752, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 766, 766, 766, 766, 766, 766, 766, 766, 766, 766, 766, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 772, 772, 772, 772, 772, 772, 772, 772, 772, 772, 772, 774, 774, 774, 774, 774, 774, 774, 774, 774, 774, 774, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 782, 782, 782, 782, 782, 782, 782, 782, 782, 782, 782, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 786, 786, 786, 786, 786, 786, 786, 786, 786, 786, 786, 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 792, 792, 792, 792, 792, 792, 792, 792, 792, 792, 792, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 796, 796, 796, 796, 796, 796, 796, 796, 796, 796, 796, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 808, 808, 808, 808, 808, 808, 808, 808, 808, 808, 808, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 812, 812, 812, 812, 812, 812, 812, 812, 812, 812, 812, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 816, 816, 816, 816, 816, 816, 816, 816, 816, 816, 816, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 818, 820, 820, 820, 820, 820, 820, 820, 820, 820, 820, 820, 822, 822, 822, 822, 822, 822, 822, 822, 822, 822, 822, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 828, 828, 828, 828, 828, 828, 828, 828, 828, 828, 828, 830, 830, 830, 830, 830, 830, 830, 830, 830, 830, 830, 832, 832, 832, 832, 832, 832, 832, 832, 832, 832, 832, 834, 834, 834, 834, 834, 834, 834, 834, 834, 834, 834, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 846, 846, 846, 846, 846, 846, 846, 846, 846, 846, 846, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 882, 882, 882, 882, 882, 882, 882, 882, 882, 882, 882, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 904, 904, 904, 904, 904, 904, 904, 904, 904, 904, 904, 906, 906, 906, 906, 906, 906, 906, 906, 906, 906, 906, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 912, 912, 912, 912, 912, 912, 912, 912, 912, 912, 912, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 916, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 918, 920, 920, 920, 920, 920, 920, 920, 920, 920, 920, 920, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 932, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 974, 974, 974, 974, 974, 974, 974, 974, 974, 974, 974, 976, 976, 976, 976, 976, 976, 976, 976, 976, 976, 976, 978, 978, 978, 978, 978, 978, 978, 978, 978, 978, 978, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, 982, 982, 982, 982, 982, 982, 982, 982, 982, 982, 982, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 988, 988, 988, 988, 988, 988, 988, 988, 988, 988, 988, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, 994, 994, 994, 994, 994, 994, 994, 994, 994, 994, 994, 996, 996, 996, 996, 996, 996, 996, 996, 996, 996, 996, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1012, 1012, 1012, 1012, 1012, 1012, 1012, 1012, 1012, 1012, 1012, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1038, 1038, 1038, 1038, 1038, 1038, 1038, 1038, 1038, 1038, 1038, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1052, 1052, 1052, 1052, 1052, 1052, 1052, 1052, 1052, 1052, 1052, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1076, 1076, 1076, 1076, 1076, 1076, 1076, 1076, 1076, 1076, 1076, 1078, 1078, 1078, 1078, 1078, 1078, 1078, 1078, 1078, 1078, 1078, 1080, 1080, 1080, 1080, 1080, 1080, 1080, 1080, 1080, 1080, 1080, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1222, 1222, 1222, 1222, 1222, 1222, 1222, 1222, 1222, 1222, 1222, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1228, 1228, 1228, 1228, 1228, 1228, 1228, 1228, 1228, 1228, 1228, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1340, 1340, 1340, 1340, 1340, 1340, 1340, 1340, 1340, 1340, 1340, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1344, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1348, 1348, 1348, 1348, 1348, 1348, 1348, 1348, 1348, 1348, 1348, 1350, 1350, 1350, 1350, 1350, 1350, 1350, 1350, 1350, 1350, 1350, 1352, 1352, 1352, 1352, 1352, 1352, 1352, 1352, 1352, 1352, 1352, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1360, 1360, 1360, 1360, 1360, 1360, 1360, 1360, 1360, 1360, 1360, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 396, 395, 394, 390, 389, 388, 387, 386, 385, 384, 383, 382, 379, 378, 377, 376, 375, 374, 373, 372, 371, 370, 369, 368, 367, 361, 360, 359, 358, 357, 354, 353, 352, 351, 350, 349, 348, 347, 346, 345, 342, 271, 340, 339, 337, 336, 335, 334, 333, 332, 331, 330, 329, 250, 328, 327, 326, 230, 226, 1410, 223, 220, 321, 320, 319, 318, 317, 316, 315, 314, 313, 310, 307, 306, 305, 301, 300, 299, 298, 297, 294, 293, 292, 291, 290, 289, 286, 281, 280, 279, 278, 270, 269, 266, 261, 260, 259, 258, 257, 256, 255, 254, 253, 252, 1410, 248, 247, 245, 110, 244, 242, 242, 241, 238, 237, 226, 223, 221, 220, 211, 205, 204, 203, 196, 193, 192, 191, 186, 170, 165, 163, 162, 153, 138, 116, 110, 1410, 102, 102, 101, 101, 25, 25, 23, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410 } ; static yyconst short int yy_chk[7662] = { 0, 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, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 7, 8, 9, 10, 11, 25, 27, 27, 27, 11, 21, 21, 29, 32, 32, 67, 21, 22, 22, 7, 8, 34, 33, 22, 25, 67, 9, 10, 11, 9, 10, 11, 12, 38, 21, 21, 29, 12, 33, 934, 34, 22, 22, 39, 38, 40, 40, 40, 25, 46, 46, 40, 39, 39, 47, 47, 12, 936, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 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, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 35, 41, 938, 52, 45, 42, 41, 42, 42, 42, 45, 45, 45, 41, 43, 52, 43, 43, 43, 52, 52, 64, 73, 88, 64, 42, 55, 54, 66, 940, 55, 66, 35, 35, 43, 35, 55, 35, 54, 125, 35, 54, 88, 68, 42, 56, 35, 57, 68, 35, 35, 172, 35, 57, 56, 56, 56, 73, 125, 57, 60, 80, 80, 80, 56, 172, 56, 60, 60, 115, 115, 115, 942, 60, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 79, 79, 79, 82, 92, 93, 90, 90, 944, 92, 93, 94, 94, 95, 95, 103, 103, 82, 82, 90, 117, 103, 110, 119, 113, 122, 122, 194, 119, 155, 155, 92, 93, 194, 95, 162, 162, 79, 110, 103, 103, 110, 174, 90, 117, 174, 90, 113, 94, 171, 171, 94, 196, 189, 82, 196, 946, 82, 144, 144, 144, 149, 149, 149, 150, 110, 150, 150, 150, 189, 189, 152, 152, 152, 948, 151, 144, 151, 950, 149, 151, 151, 151, 274, 150, 152, 152, 152, 152, 152, 152, 165, 182, 952, 165, 274, 165, 212, 212, 212, 165, 165, 401, 182, 213, 213, 213, 216, 216, 228, 217, 217, 217, 401, 228, 954, 232, 232, 213, 213, 213, 213, 213, 213, 217, 217, 217, 217, 217, 217, 229, 233, 233, 244, 405, 229, 228, 232, 239, 239, 261, 261, 261, 956, 239, 405, 262, 262, 262, 244, 286, 286, 244, 263, 263, 263, 958, 229, 264, 264, 264, 308, 239, 239, 262, 265, 265, 265, 960, 308, 293, 962, 293, 323, 323, 293, 244, 341, 341, 265, 265, 265, 265, 265, 265, 293, 322, 322, 322, 293, 411, 411, 324, 324, 324, 964, 326, 338, 338, 338, 322, 322, 322, 322, 322, 322, 324, 324, 324, 324, 324, 324, 326, 333, 394, 326, 395, 395, 395, 457, 398, 461, 966, 462, 333, 468, 471, 504, 968, 970, 394, 398, 461, 394, 462, 457, 468, 471, 457, 326, 505, 505, 505, 504, 506, 972, 504, 510, 511, 333, 512, 974, 540, 976, 978, 506, 398, 394, 510, 511, 569, 512, 457, 541, 541, 541, 542, 543, 540, 544, 504, 540, 546, 548, 548, 548, 569, 542, 543, 569, 544, 586, 980, 546, 571, 571, 571, 982, 598, 605, 625, 625, 625, 984, 612, 540, 616, 586, 548, 986, 586, 620, 624, 569, 598, 605, 541, 598, 605, 571, 612, 627, 616, 612, 625, 616, 988, 620, 624, 990, 620, 624, 631, 992, 586, 994, 996, 627, 998, 1000, 627, 598, 605, 628, 628, 628, 1002, 612, 631, 616, 1004, 631, 1006, 1008, 620, 624, 629, 629, 629, 1010, 629, 1012, 637, 642, 627, 629, 1014, 628, 632, 632, 632, 647, 632, 1016, 1018, 631, 1020, 632, 637, 642, 653, 637, 642, 645, 645, 645, 1022, 647, 655, 1024, 647, 650, 650, 650, 657, 1026, 653, 1028, 1030, 653, 1032, 659, 661, 629, 655, 637, 642, 655, 645, 663, 657, 665, 1034, 657, 647, 632, 650, 659, 661, 667, 659, 661, 1036, 653, 669, 663, 1038, 665, 663, 1040, 665, 655, 671, 1042, 673, 667, 1044, 657, 667, 675, 669, 677, 1046, 669, 659, 661, 1048, 679, 671, 681, 673, 671, 663, 673, 665, 675, 1050, 677, 675, 1052, 677, 1054, 667, 679, 683, 681, 679, 669, 681, 685, 687, 1056, 1058, 1060, 1062, 671, 1064, 673, 689, 691, 683, 1066, 675, 683, 677, 685, 687, 693, 685, 687, 679, 1068, 681, 1070, 689, 691, 1072, 689, 691, 695, 697, 699, 1074, 693, 1076, 1078, 693, 683, 701, 703, 705, 1080, 685, 687, 1082, 695, 697, 699, 695, 697, 699, 689, 691, 1084, 701, 703, 705, 701, 703, 705, 693, 707, 1086, 1088, 1090, 1092, 1094, 1096, 709, 711, 713, 1098, 695, 697, 699, 715, 717, 707, 1100, 1102, 707, 701, 703, 705, 709, 711, 713, 709, 711, 713, 719, 715, 717, 1104, 715, 717, 1106, 1108, 721, 1110, 1112, 1114, 1116, 1118, 707, 723, 719, 725, 1120, 719, 1122, 709, 711, 713, 721, 727, 729, 721, 715, 717, 731, 723, 1124, 725, 723, 1126, 725, 733, 735, 1128, 1130, 727, 729, 719, 727, 729, 731, 737, 739, 731, 1132, 721, 1134, 733, 735, 741, 733, 735, 723, 743, 725, 1136, 1138, 737, 739, 1140, 737, 739, 727, 729, 745, 741, 1142, 731, 741, 743, 747, 749, 743, 1144, 733, 735, 1146, 1148, 751, 753, 745, 1150, 1152, 745, 737, 739, 747, 749, 1154, 747, 749, 1156, 741, 755, 751, 753, 743, 751, 753, 757, 759, 761, 1158, 1160, 1162, 1164, 1166, 745, 763, 755, 765, 1168, 755, 747, 749, 757, 759, 761, 757, 759, 761, 751, 753, 1170, 763, 1172, 765, 763, 1174, 765, 767, 769, 1176, 1178, 1180, 1182, 755, 1184, 771, 773, 775, 1186, 757, 759, 761, 777, 767, 769, 1188, 767, 769, 763, 779, 765, 771, 773, 775, 771, 773, 775, 781, 777, 1190, 1192, 777, 1194, 1196, 1198, 779, 1200, 783, 779, 1202, 767, 769, 785, 781, 787, 1204, 781, 1206, 771, 773, 775, 1208, 789, 783, 1210, 777, 783, 791, 785, 793, 787, 785, 779, 787, 1212, 795, 1214, 797, 789, 1216, 781, 789, 799, 791, 801, 793, 791, 1218, 793, 1220, 783, 795, 803, 797, 795, 785, 797, 787, 799, 1222, 801, 799, 1224, 801, 1226, 789, 1228, 805, 803, 1230, 791, 803, 793, 807, 809, 811, 1232, 1234, 795, 1236, 797, 813, 815, 805, 1238, 799, 805, 801, 817, 807, 809, 811, 807, 809, 811, 803, 819, 813, 815, 1240, 813, 815, 1242, 821, 817, 1244, 1246, 817, 1248, 1250, 805, 823, 819, 825, 1252, 819, 807, 809, 811, 821, 1254, 827, 821, 1256, 813, 815, 829, 823, 831, 825, 823, 817, 825, 833, 835, 1258, 1260, 827, 1262, 819, 827, 837, 829, 839, 831, 829, 821, 831, 1264, 833, 835, 841, 833, 835, 823, 1266, 825, 837, 1268, 839, 837, 1270, 839, 843, 827, 1272, 1274, 841, 1276, 829, 841, 831, 845, 847, 849, 1278, 833, 835, 1280, 843, 851, 853, 843, 1282, 837, 855, 839, 1284, 845, 847, 849, 845, 847, 849, 841, 857, 851, 853, 1286, 851, 853, 855, 859, 861, 855, 1288, 843, 1290, 1292, 1294, 863, 857, 1296, 1298, 857, 845, 847, 849, 859, 861, 865, 859, 861, 851, 853, 867, 863, 1300, 855, 863, 1302, 869, 871, 873, 1304, 1306, 865, 1308, 857, 865, 875, 867, 877, 1310, 867, 859, 861, 869, 871, 873, 869, 871, 873, 863, 879, 1312, 875, 1314, 877, 875, 1316, 877, 881, 865, 1318, 1320, 1322, 1324, 867, 1326, 879, 883, 885, 879, 869, 871, 873, 887, 881, 889, 1328, 881, 1330, 875, 891, 877, 1332, 883, 885, 1334, 883, 885, 893, 887, 895, 889, 887, 879, 889, 1336, 891, 1338, 897, 891, 1340, 881, 1342, 899, 893, 901, 895, 893, 1344, 895, 883, 885, 1346, 903, 897, 1348, 887, 897, 889, 899, 905, 901, 899, 891, 901, 1350, 907, 1352, 909, 903, 1354, 893, 903, 895, 911, 913, 905, 1356, 1358, 905, 1360, 897, 907, 915, 909, 907, 899, 909, 901, 917, 911, 913, 1362, 911, 913, 1364, 903, 919, 1366, 915, 1368, 1370, 915, 905, 921, 917, 923, 1372, 917, 907, 1374, 909, 925, 919, 927, 1376, 919, 911, 913, 929, 921, 1378, 923, 921, 1380, 923, 915, 931, 925, 933, 927, 925, 917, 927, 935, 929, 1382, 1384, 929, 1386, 919, 1388, 937, 931, 939, 933, 931, 921, 933, 923, 935, 1390, 941, 935, 1392, 925, 1394, 927, 937, 943, 939, 937, 929, 939, 945, 947, 1396, 1398, 941, 1400, 931, 941, 933, 949, 951, 943, 1402, 935, 943, 1404, 945, 947, 953, 945, 947, 937, 1406, 939, 1418, 949, 951, 932, 949, 951, 955, 941, 957, 930, 953, 928, 926, 953, 943, 959, 961, 963, 924, 945, 947, 922, 955, 965, 957, 955, 920, 957, 949, 951, 918, 959, 961, 963, 959, 961, 963, 953, 967, 965, 916, 914, 965, 912, 910, 969, 971, 908, 906, 955, 904, 957, 973, 975, 967, 902, 900, 967, 959, 961, 963, 969, 971, 977, 969, 971, 965, 979, 973, 975, 898, 973, 975, 896, 981, 983, 894, 892, 890, 977, 888, 967, 977, 979, 985, 987, 979, 886, 969, 971, 981, 983, 989, 981, 983, 973, 975, 991, 884, 882, 985, 987, 880, 985, 987, 993, 977, 995, 989, 878, 979, 989, 876, 991, 997, 999, 991, 981, 983, 874, 1001, 993, 1003, 995, 993, 872, 995, 985, 987, 870, 997, 999, 868, 997, 999, 989, 1001, 1005, 1003, 1001, 991, 1003, 866, 1007, 864, 1009, 862, 860, 993, 858, 995, 1011, 1013, 1005, 856, 854, 1005, 997, 999, 1007, 1015, 1009, 1007, 1001, 1009, 1003, 1017, 1011, 1013, 852, 1011, 1013, 850, 1019, 1021, 848, 1015, 846, 844, 1015, 1005, 1023, 1017, 1025, 842, 1017, 1007, 840, 1009, 1019, 1021, 1027, 1019, 1021, 1011, 1013, 1029, 1023, 838, 1025, 1023, 836, 1025, 1015, 1031, 834, 1033, 1027, 832, 1017, 1027, 1035, 1029, 1037, 830, 1029, 1019, 1021, 828, 1039, 1031, 1041, 1033, 1031, 1023, 1033, 1025, 1035, 826, 1037, 1035, 824, 1037, 822, 1027, 1039, 1043, 1041, 1039, 1029, 1041, 1045, 1047, 820, 818, 816, 814, 1031, 812, 1033, 1049, 1051, 1043, 810, 1035, 1043, 1037, 1045, 1047, 1053, 1045, 1047, 1039, 808, 1041, 806, 1049, 1051, 804, 1049, 1051, 1055, 1057, 1059, 802, 1053, 800, 798, 1053, 1043, 1061, 1063, 1065, 796, 1045, 1047, 794, 1055, 1057, 1059, 1055, 1057, 1059, 1049, 1051, 792, 1061, 1063, 1065, 1061, 1063, 1065, 1053, 1067, 790, 788, 786, 784, 782, 780, 1069, 1071, 1073, 778, 1055, 1057, 1059, 1075, 1077, 1067, 776, 774, 1067, 1061, 1063, 1065, 1069, 1071, 1073, 1069, 1071, 1073, 1079, 1075, 1077, 772, 1075, 1077, 770, 768, 1081, 766, 764, 762, 760, 758, 1067, 1083, 1079, 1085, 756, 1079, 754, 1069, 1071, 1073, 1081, 1087, 1089, 1081, 1075, 1077, 1091, 1083, 752, 1085, 1083, 750, 1085, 1093, 1095, 748, 746, 1087, 1089, 1079, 1087, 1089, 1091, 1097, 1099, 1091, 744, 1081, 742, 1093, 1095, 1101, 1093, 1095, 1083, 1103, 1085, 740, 738, 1097, 1099, 736, 1097, 1099, 1087, 1089, 1105, 1101, 734, 1091, 1101, 1103, 1107, 1109, 1103, 732, 1093, 1095, 730, 728, 1111, 1113, 1105, 726, 724, 1105, 1097, 1099, 1107, 1109, 722, 1107, 1109, 720, 1101, 1115, 1111, 1113, 1103, 1111, 1113, 1117, 1119, 1121, 718, 716, 714, 712, 710, 1105, 1123, 1115, 1125, 708, 1115, 1107, 1109, 1117, 1119, 1121, 1117, 1119, 1121, 1111, 1113, 706, 1123, 704, 1125, 1123, 702, 1125, 1127, 1129, 700, 698, 696, 694, 1115, 692, 1131, 1133, 1135, 690, 1117, 1119, 1121, 1137, 1127, 1129, 688, 1127, 1129, 1123, 1139, 1125, 1131, 1133, 1135, 1131, 1133, 1135, 1141, 1137, 686, 684, 1137, 682, 680, 678, 1139, 676, 1143, 1139, 674, 1127, 1129, 1145, 1141, 1147, 672, 1141, 670, 1131, 1133, 1135, 668, 1149, 1143, 666, 1137, 1143, 1151, 1145, 1153, 1147, 1145, 1139, 1147, 664, 1155, 662, 1157, 1149, 660, 1141, 1149, 1159, 1151, 1161, 1153, 1151, 658, 1153, 656, 1143, 1155, 1163, 1157, 1155, 1145, 1157, 1147, 1159, 654, 1161, 1159, 652, 1161, 649, 1149, 648, 1165, 1163, 646, 1151, 1163, 1153, 1167, 1169, 1171, 644, 643, 1155, 641, 1157, 1173, 1175, 1165, 640, 1159, 1165, 1161, 1177, 1167, 1169, 1171, 1167, 1169, 1171, 1163, 1179, 1173, 1175, 639, 1173, 1175, 638, 1181, 1177, 636, 635, 1177, 634, 633, 1165, 1183, 1179, 1185, 630, 1179, 1167, 1169, 1171, 1181, 626, 1187, 1181, 623, 1173, 1175, 1189, 1183, 1191, 1185, 1183, 1177, 1185, 1193, 1195, 621, 619, 1187, 618, 1179, 1187, 1197, 1189, 1199, 1191, 1189, 1181, 1191, 617, 1193, 1195, 1201, 1193, 1195, 1183, 615, 1185, 1197, 614, 1199, 1197, 613, 1199, 1203, 1187, 611, 608, 1201, 606, 1189, 1201, 1191, 1205, 1207, 1209, 604, 1193, 1195, 603, 1203, 1211, 1213, 1203, 602, 1197, 1215, 1199, 601, 1205, 1207, 1209, 1205, 1207, 1209, 1201, 1217, 1211, 1213, 600, 1211, 1213, 1215, 1219, 1221, 1215, 599, 1203, 597, 596, 594, 1223, 1217, 589, 588, 1217, 1205, 1207, 1209, 1219, 1221, 1225, 1219, 1221, 1211, 1213, 1227, 1223, 587, 1215, 1223, 585, 1229, 1231, 1233, 584, 581, 1225, 580, 1217, 1225, 1235, 1227, 1237, 579, 1227, 1219, 1221, 1229, 1231, 1233, 1229, 1231, 1233, 1223, 1239, 577, 1235, 576, 1237, 1235, 575, 1237, 1241, 1225, 574, 573, 570, 568, 1227, 567, 1239, 1243, 1245, 1239, 1229, 1231, 1233, 1247, 1241, 1249, 566, 1241, 565, 1235, 1251, 1237, 564, 1243, 1245, 563, 1243, 1245, 1253, 1247, 1255, 1249, 1247, 1239, 1249, 562, 1251, 559, 1257, 1251, 558, 1241, 557, 1259, 1253, 1261, 1255, 1253, 554, 1255, 1243, 1245, 552, 1263, 1257, 551, 1247, 1257, 1249, 1259, 1265, 1261, 1259, 1251, 1261, 549, 1267, 539, 1269, 1263, 538, 1253, 1263, 1255, 1271, 1273, 1265, 537, 535, 1265, 534, 1257, 1267, 1275, 1269, 1267, 1259, 1269, 1261, 1277, 1271, 1273, 533, 1271, 1273, 532, 1263, 1279, 531, 1275, 528, 527, 1275, 1265, 1281, 1277, 1283, 526, 1277, 1267, 525, 1269, 1285, 1279, 1287, 522, 1279, 1271, 1273, 1289, 1281, 521, 1283, 1281, 520, 1283, 1275, 1291, 1285, 1293, 1287, 1285, 1277, 1287, 1295, 1289, 519, 518, 1289, 517, 1279, 516, 1297, 1291, 1299, 1293, 1291, 1281, 1293, 1283, 1295, 515, 1301, 1295, 514, 1285, 509, 1287, 1297, 1303, 1299, 1297, 1289, 1299, 1305, 1307, 508, 503, 1301, 499, 1291, 1301, 1293, 1309, 1311, 1303, 497, 1295, 1303, 496, 1305, 1307, 1313, 1305, 1307, 1297, 495, 1299, 494, 1309, 1311, 493, 1309, 1311, 1315, 1301, 1317, 492, 1313, 490, 489, 1313, 1303, 1319, 1321, 1323, 488, 1305, 1307, 487, 1315, 1325, 1317, 1315, 486, 1317, 1309, 1311, 485, 1319, 1321, 1323, 1319, 1321, 1323, 1313, 1327, 1325, 484, 482, 1325, 481, 480, 1329, 1331, 479, 478, 1315, 477, 1317, 1333, 1335, 1327, 476, 475, 1327, 1319, 1321, 1323, 1329, 1331, 1337, 1329, 1331, 1325, 1339, 1333, 1335, 474, 1333, 1335, 473, 1341, 1343, 472, 470, 467, 1337, 466, 1327, 1337, 1339, 1345, 1347, 1339, 465, 1329, 1331, 1341, 1343, 1349, 1341, 1343, 1333, 1335, 1351, 464, 460, 1345, 1347, 459, 1345, 1347, 1353, 1337, 1355, 1349, 456, 1339, 1349, 452, 1351, 1357, 1359, 1351, 1341, 1343, 451, 1361, 1353, 1363, 1355, 1353, 450, 1355, 1345, 1347, 449, 1357, 1359, 448, 1357, 1359, 1349, 1361, 1365, 1363, 1361, 1351, 1363, 447, 1367, 446, 1369, 443, 442, 1353, 441, 1355, 1371, 1373, 1365, 440, 439, 1365, 1357, 1359, 1367, 1375, 1369, 1367, 1361, 1369, 1363, 1377, 1371, 1373, 438, 1371, 1373, 437, 1379, 1381, 435, 1375, 434, 433, 1375, 1365, 1383, 1377, 1385, 431, 1377, 1367, 430, 1369, 1379, 1381, 1387, 1379, 1381, 1371, 1373, 1389, 1383, 428, 1385, 1383, 427, 1385, 1375, 1391, 426, 1393, 1387, 425, 1377, 1387, 1395, 1389, 1397, 418, 1389, 1379, 1381, 417, 1399, 1391, 1401, 1393, 1391, 1383, 1393, 1385, 1395, 416, 1397, 1395, 415, 1397, 414, 1387, 1399, 1403, 1401, 1399, 1389, 1401, 1405, 1407, 413, 412, 410, 408, 1391, 407, 1393, 1409, 406, 1403, 404, 1395, 1403, 1397, 1405, 1407, 403, 1405, 1407, 1399, 400, 1401, 399, 1409, 397, 396, 1409, 393, 390, 389, 388, 387, 386, 385, 384, 383, 1403, 382, 381, 380, 378, 1405, 1407, 377, 376, 375, 374, 373, 372, 371, 1409, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 370, 1416, 1417, 1417, 1417, 1417, 369, 1417, 1417, 1417, 1417, 1417, 1417, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1420, 366, 365, 1420, 1421, 1421, 1421, 364, 1421, 1421, 363, 1421, 1421, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1423, 362, 361, 1423, 1424, 1424, 1424, 1424, 1424, 360, 1424, 1424, 1424, 1424, 1424, 1425, 358, 357, 356, 355, 1425, 1425, 354, 1425, 1426, 353, 352, 1426, 1427, 350, 349, 1427, 1428, 1428, 1428, 1428, 1428, 1428, 348, 1428, 1428, 1428, 1428, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1431, 347, 346, 1431, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1433, 345, 344, 343, 342, 340, 339, 337, 336, 1433, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1435, 335, 334, 332, 331, 1435, 330, 329, 1435, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 328, 327, 325, 320, 317, 315, 314, 313, 312, 311, 310, 309, 306, 305, 304, 303, 302, 301, 300, 299, 298, 297, 296, 295, 294, 292, 291, 290, 288, 287, 285, 284, 283, 282, 281, 280, 278, 277, 276, 275, 273, 272, 267, 266, 260, 259, 258, 257, 256, 255, 254, 253, 252, 251, 247, 246, 243, 231, 226, 223, 222, 220, 205, 204, 203, 202, 201, 200, 199, 198, 197, 195, 192, 191, 190, 188, 186, 185, 184, 183, 181, 180, 179, 178, 177, 175, 173, 170, 168, 167, 166, 161, 158, 154, 146, 137, 136, 135, 134, 133, 132, 131, 130, 129, 127, 116, 114, 112, 111, 109, 108, 106, 105, 102, 101, 89, 86, 85, 84, 78, 71, 70, 69, 65, 63, 62, 61, 58, 53, 50, 49, 48, 44, 37, 28, 24, 23, 20, 19, 18, 17, 2, 1, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410 } ; 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 static int yy_more_flag = 0; static int yy_more_len = 0; #define yymore() (yy_more_flag = 1) #define YY_MORE_ADJ yy_more_len #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #define INITIAL 0 /* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) 1998-2006 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ | This source file is subject to version 2.00 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.zend.com/license/2_00.txt. | | If you did not receive a copy of the Zend license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@zend.com so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Andi Gutmans | | Zeev Suraski | +----------------------------------------------------------------------+ */ /* $Id: zend_language_scanner.l,v 1.131.2.11 2006/04/13 13:48:28 dmitry Exp $ */ #define yyleng SCNG(yy_leng) #define yytext SCNG(yy_text) #define yytext_ptr SCNG(yy_text) #define yyin SCNG(yy_in) #define yyout SCNG(yy_out) #define yy_last_accepting_state SCNG(_yy_last_accepting_state) #define yy_last_accepting_cpos SCNG(_yy_last_accepting_cpos) #define yy_more_flag SCNG(_yy_more_flag) #define yy_more_len SCNG(_yy_more_len) #define ST_IN_SCRIPTING 1 #define ST_DOUBLE_QUOTES 2 #define ST_SINGLE_QUOTE 3 #define ST_BACKQUOTE 4 #define ST_HEREDOC 5 #define ST_LOOKING_FOR_PROPERTY 6 #define ST_LOOKING_FOR_VARNAME 7 #define ST_COMMENT 8 #define ST_DOC_COMMENT 9 #define ST_ONE_LINE_COMMENT 10 #define YY_STACK_USED 1 #include #include "zend.h" #include "zend_alloc.h" #include #include "zend_compile.h" #include "zend_language_scanner.h" #include "zend_highlight.h" #include "zend_constants.h" #include "zend_variables.h" #include "zend_operators.h" #include "zend_API.h" #include "zend_strtod.h" #ifdef HAVE_STDARG_H # include #endif #ifdef HAVE_UNISTD_H # include #endif #define YY_DECL int lex_scan(zval *zendlval TSRMLS_DC) #define ECHO { ZEND_WRITE( yytext, yyleng ); } #ifdef ZTS # define MY_INPUT yyinput #else # define MY_INPUT input #endif /* Globals Macros */ #define SCNG LANG_SCNG #ifdef ZTS ZEND_API ts_rsrc_id language_scanner_globals_id; #else ZEND_API zend_scanner_globals language_scanner_globals; #endif #define YY_FATAL_ERROR zend_fatal_scanner_error #define HANDLE_NEWLINES(s, l) \ do { \ char *p = (s), *boundary = p+(l); \ \ while (p='0' && (c)<='7') #define ZEND_IS_HEX(c) (((c)>='0' && (c)<='9') || ((c)>='a' && (c)<='f') || ((c)>='A' && (c)<='F')) void zend_fatal_scanner_error(char *message) { zend_error(E_COMPILE_ERROR, "%s", message); } BEGIN_EXTERN_C() void startup_scanner(TSRMLS_D) { CG(heredoc) = NULL; CG(heredoc_len) = 0; CG(doc_comment) = NULL; CG(doc_comment_len) = 0; SCNG(yy_start_stack_ptr) = 0; SCNG(yy_start_stack_depth) = 0; SCNG(current_buffer) = NULL; #ifdef ZEND_MULTIBYTE SCNG(script_org) = NULL; SCNG(script_org_size) = 0; SCNG(script_filtered) = NULL; SCNG(script_filtered_size) = 0; SCNG(input_filter) = NULL; SCNG(output_filter) = NULL; SCNG(script_encoding) = NULL; SCNG(internal_encoding) = NULL; #endif /* ZEND_MULTIBYTE */ } void shutdown_scanner(TSRMLS_D) { if (CG(heredoc)) { efree(CG(heredoc)); CG(heredoc_len)=0; } if (SCNG(yy_start_stack)) { yy_flex_free(SCNG(yy_start_stack)); SCNG(yy_start_stack) = NULL; } RESET_DOC_COMMENT(); #ifdef ZEND_MULTIBYTE if (SCNG(script_org)) { efree(SCNG(script_org)); SCNG(script_org) = NULL; } if (SCNG(script_filtered)) { efree(SCNG(script_filtered)); SCNG(script_filtered) = NULL; } SCNG(script_org_size) = 0; SCNG(script_filtered_size) = 0; SCNG(input_filter) = NULL; SCNG(output_filter) = NULL; SCNG(script_encoding) = NULL; SCNG(internal_encoding) = NULL; #endif /* ZEND_MULTIBYTE */ } END_EXTERN_C() ZEND_API void zend_save_lexical_state(zend_lex_state *lex_state TSRMLS_DC) { memcpy(&lex_state->buffer_state, &YY_CURRENT_BUFFER, sizeof(YY_BUFFER_STATE)); lex_state->in = SCNG(yy_in); lex_state->state = YYSTATE; lex_state->filename = zend_get_compiled_filename(TSRMLS_C); lex_state->lineno = CG(zend_lineno); #ifdef ZEND_MULTIBYTE lex_state->script_org = SCNG(script_org); lex_state->script_org_size = SCNG(script_org_size); lex_state->script_filtered = SCNG(script_filtered); lex_state->script_filtered_size = SCNG(script_filtered_size); lex_state->input_filter = SCNG(input_filter); lex_state->output_filter = SCNG(output_filter); lex_state->script_encoding = SCNG(script_encoding); lex_state->internal_encoding = SCNG(internal_encoding); #endif /* ZEND_MULTIBYTE */ } ZEND_API void zend_restore_lexical_state(zend_lex_state *lex_state TSRMLS_DC) { YY_BUFFER_STATE original_buffer_state = YY_CURRENT_BUFFER; if (lex_state->buffer_state) { yy_switch_to_buffer(lex_state->buffer_state TSRMLS_CC); } else { YY_CURRENT_BUFFER = NULL; } yy_delete_buffer(original_buffer_state TSRMLS_CC); SCNG(yy_in) = lex_state->in; BEGIN(lex_state->state); CG(zend_lineno) = lex_state->lineno; zend_restore_compiled_filename(lex_state->filename TSRMLS_CC); #ifdef ZEND_MULTIBYTE if (SCNG(script_org)) { efree(SCNG(script_org)); SCNG(script_org) = NULL; } if (SCNG(script_filtered)) { efree(SCNG(script_filtered)); SCNG(script_filtered) = NULL; } SCNG(script_org) = lex_state->script_org; SCNG(script_org_size) = lex_state->script_org_size; SCNG(script_filtered) = lex_state->script_filtered; SCNG(script_filtered_size) = lex_state->script_filtered_size; SCNG(input_filter) = lex_state->input_filter; SCNG(output_filter) = lex_state->output_filter; SCNG(script_encoding) = lex_state->script_encoding; SCNG(internal_encoding) = lex_state->internal_encoding; #endif /* ZEND_MULTIBYTE */ } BEGIN_EXTERN_C() ZEND_API void zend_file_handle_dtor(zend_file_handle *fh) { TSRMLS_FETCH(); switch (fh->type) { case ZEND_HANDLE_FP: fclose(fh->handle.fp); break; case ZEND_HANDLE_STREAM: if (fh->handle.stream.closer) { fh->handle.stream.closer(fh->handle.stream.handle TSRMLS_CC); } break; case ZEND_HANDLE_FILENAME: /* We're only supposed to get here when destructing the used_files hash, * which doesn't really contain open files, but references to their names/paths */ break; } if (fh->opened_path) { efree(fh->opened_path); fh->opened_path = NULL; } if (fh->free_filename && fh->filename) { efree(fh->filename); fh->filename = NULL; } } int zend_compare_file_handles(zend_file_handle *fh1, zend_file_handle *fh2) { if (fh1->type != fh2->type) { return 0; } switch (fh1->type) { case ZEND_HANDLE_FP: return fh1->handle.fp==fh2->handle.fp; break; case ZEND_HANDLE_STREAM: return fh1->handle.stream.handle == fh2->handle.stream.handle; break; } return 0; } ZEND_API void zend_destroy_file_handle(zend_file_handle *file_handle TSRMLS_DC) { zend_llist_del_element(&CG(open_files), file_handle, (int (*)(void *, void *)) zend_compare_file_handles); } ZEND_API int open_file_for_scanning(zend_file_handle *file_handle TSRMLS_DC) { char *file_path=NULL; if (FAILURE == zend_stream_fixup(file_handle TSRMLS_CC)) { return FAILURE; } zend_llist_add_element(&CG(open_files), file_handle); /* Reset the scanner for scanning the new file */ SCNG(yy_in) = file_handle; #ifdef ZEND_MULTIBYTE if (file_handle->handle.stream.interactive == 0) { if (zend_multibyte_read_script(TSRMLS_C) != 0) { return FAILURE; } /* force flex to use buffer only */ SCNG(yy_in) = NULL; SCNG(init) = 0; SCNG(start) = 1; zend_multibyte_set_filter(NULL TSRMLS_CC); if (!SCNG(input_filter)) { SCNG(script_filtered) = (char*)emalloc(SCNG(script_org_size)+1); memcpy(SCNG(script_filtered), SCNG(script_org), SCNG(script_org_size)+1); SCNG(script_filtered_size) = SCNG(script_org_size); } else { SCNG(input_filter)(&SCNG(script_filtered), &SCNG(script_filtered_size), SCNG(script_org), SCNG(script_org_size) TSRMLS_CC); } /* flex requires doubled null */ SCNG(script_filtered) = (char*)erealloc(SCNG(script_filtered), SCNG(script_filtered_size)+2); *(SCNG(script_filtered)+SCNG(script_filtered_size)) = (char)NULL; *(SCNG(script_filtered)+SCNG(script_filtered_size)+1) = (char)NULL; yy_scan_buffer(SCNG(script_filtered), SCNG(script_filtered_size)+2 TSRMLS_CC); } else { yy_switch_to_buffer(yy_create_buffer(SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC) TSRMLS_CC); } #else /* !ZEND_MULTIBYTE */ yy_switch_to_buffer(yy_create_buffer(SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC) TSRMLS_CC); #endif /* ZEND_MULTIBYTE */ BEGIN(INITIAL); if (file_handle->opened_path) { file_path = file_handle->opened_path; } else { file_path = file_handle->filename; } zend_set_compiled_filename(file_path TSRMLS_CC); if (CG(start_lineno)) { CG(zend_lineno) = CG(start_lineno); CG(start_lineno) = 0; } else { CG(zend_lineno) = 1; } CG(increment_lineno) = 0; return SUCCESS; } END_EXTERN_C() ZEND_API zend_op_array *compile_file(zend_file_handle *file_handle, int type TSRMLS_DC) { zend_lex_state original_lex_state; zend_op_array *op_array = (zend_op_array *) emalloc(sizeof(zend_op_array)); zend_op_array *original_active_op_array = CG(active_op_array); zend_op_array *retval=NULL; int compiler_result; zend_bool compilation_successful=0; znode retval_znode; zend_bool original_in_compilation = CG(in_compilation); retval_znode.op_type = IS_CONST; retval_znode.u.constant.type = IS_LONG; retval_znode.u.constant.value.lval = 1; retval_znode.u.constant.is_ref = 0; retval_znode.u.constant.refcount = 1; zend_save_lexical_state(&original_lex_state TSRMLS_CC); retval = op_array; /* success oriented */ if (open_file_for_scanning(file_handle TSRMLS_CC)==FAILURE) { if (type==ZEND_REQUIRE) { zend_message_dispatcher(ZMSG_FAILED_REQUIRE_FOPEN, file_handle->filename); zend_bailout(); } else { zend_message_dispatcher(ZMSG_FAILED_INCLUDE_FOPEN, file_handle->filename); } compilation_successful=0; } else { init_op_array(op_array, ZEND_USER_FUNCTION, INITIAL_OP_ARRAY_SIZE TSRMLS_CC); CG(in_compilation) = 1; CG(active_op_array) = op_array; compiler_result = zendparse(TSRMLS_C); zend_do_return(&retval_znode, 0 TSRMLS_CC); zend_do_handle_exception(TSRMLS_C); CG(in_compilation) = original_in_compilation; if (compiler_result==1) { /* parser error */ zend_bailout(); } compilation_successful=1; } if (retval) { CG(active_op_array) = original_active_op_array; if (compilation_successful) { pass_two(op_array TSRMLS_CC); } else { efree(op_array); retval = NULL; } } if (compilation_successful) { zend_restore_lexical_state(&original_lex_state TSRMLS_CC); } return retval; } zend_op_array *compile_filename(int type, zval *filename TSRMLS_DC) { zend_file_handle file_handle; zval tmp; zend_op_array *retval; char *opened_path = NULL; if (filename->type != IS_STRING) { tmp = *filename; zval_copy_ctor(&tmp); convert_to_string(&tmp); filename = &tmp; } file_handle.filename = filename->value.str.val; file_handle.free_filename = 0; file_handle.type = ZEND_HANDLE_FILENAME; file_handle.opened_path = NULL; file_handle.handle.fp = NULL; retval = zend_compile_file(&file_handle, type TSRMLS_CC); if (retval && file_handle.handle.stream.handle) { int dummy = 1; if (!file_handle.opened_path) { file_handle.opened_path = opened_path = estrndup(filename->value.str.val, filename->value.str.len); } zend_hash_add(&EG(included_files), file_handle.opened_path, strlen(file_handle.opened_path)+1, (void *)&dummy, sizeof(int), NULL); if (opened_path) { efree(opened_path); } } zend_destroy_file_handle(&file_handle TSRMLS_CC); if (filename==&tmp) { zval_dtor(&tmp); } return retval; } ZEND_API int zend_prepare_string_for_scanning(zval *str, char *filename TSRMLS_DC) { /* enforce two trailing NULLs for flex... */ STR_REALLOC(str->value.str.val, str->value.str.len+2); str->value.str.val[str->value.str.len+1]=0; SCNG(yy_in)=NULL; #ifdef ZEND_MULTIBYTE SCNG(script_org) = estrdup(str->value.str.val); SCNG(script_org_size) = str->value.str.len; zend_multibyte_set_filter(CG(internal_encoding) TSRMLS_CC); if (!SCNG(input_filter)) { SCNG(script_filtered) = (char*)emalloc(SCNG(script_org_size)+1); memcpy(SCNG(script_filtered), SCNG(script_org), SCNG(script_org_size)+1); SCNG(script_filtered_size) = SCNG(script_org_size); } else { SCNG(input_filter)(&SCNG(script_filtered), &SCNG(script_filtered_size), SCNG(script_org), SCNG(script_org_size) TSRMLS_CC); } /* flex requires doubled null */ SCNG(script_filtered) = (char*)erealloc(SCNG(script_filtered), SCNG(script_filtered_size)+2); *(SCNG(script_filtered)+SCNG(script_filtered_size)) = (char)NULL; *(SCNG(script_filtered)+SCNG(script_filtered_size)+1) = (char)NULL; yy_scan_buffer(SCNG(script_filtered), SCNG(script_filtered_size)+2 TSRMLS_CC); #else /* !ZEND_MULTIBYTE */ yy_scan_buffer(str->value.str.val, str->value.str.len+2 TSRMLS_CC); #endif /* ZEND_MULTIBYTE */ zend_set_compiled_filename(filename TSRMLS_CC); CG(zend_lineno) = 1; CG(increment_lineno) = 0; return SUCCESS; } ZEND_API int zend_get_scanned_file_offset(TSRMLS_D) { if (yyin) { int offset_in_buffer = (yy_c_buf_p - (YY_CURRENT_BUFFER)->yy_ch_buf); int read_bytes = SCNG(yy_n_chars); int offset_from_the_end = read_bytes - offset_in_buffer; return zend_stream_ftell(yyin TSRMLS_CC) - offset_from_the_end; } else { /* The entire file is in the buffer; probably zend multibyte is enabled */ return (yy_c_buf_p - (YY_CURRENT_BUFFER)->yy_ch_buf); } } zend_op_array *compile_string(zval *source_string, char *filename TSRMLS_DC) { zend_lex_state original_lex_state; zend_op_array *op_array = (zend_op_array *) emalloc(sizeof(zend_op_array)); zend_op_array *original_active_op_array = CG(active_op_array); zend_op_array *retval; zval tmp; int compiler_result; zend_bool original_in_compilation = CG(in_compilation); if (source_string->value.str.len==0) { efree(op_array); return NULL; } CG(in_compilation) = 1; tmp = *source_string; zval_copy_ctor(&tmp); convert_to_string(&tmp); source_string = &tmp; zend_save_lexical_state(&original_lex_state TSRMLS_CC); if (zend_prepare_string_for_scanning(source_string, filename TSRMLS_CC)==FAILURE) { efree(op_array); retval = NULL; } else { init_op_array(op_array, ZEND_EVAL_CODE, INITIAL_OP_ARRAY_SIZE TSRMLS_CC); CG(active_op_array) = op_array; BEGIN(ST_IN_SCRIPTING); compiler_result = zendparse(TSRMLS_C); #ifdef ZEND_MULTIBYTE if (SCNG(script_org)) { efree(SCNG(script_org)); SCNG(script_org) = NULL; } if (SCNG(script_filtered)) { efree(SCNG(script_filtered)); SCNG(script_filtered) = NULL; } #endif /* ZEND_MULTIBYTE */ if (compiler_result==1) { CG(active_op_array) = original_active_op_array; CG(unclean_shutdown)=1; retval = NULL; } else { zend_do_return(NULL, 0 TSRMLS_CC); zend_do_handle_exception(TSRMLS_C); CG(active_op_array) = original_active_op_array; pass_two(op_array TSRMLS_CC); retval = op_array; } zend_restore_lexical_state(&original_lex_state TSRMLS_CC); } zval_dtor(&tmp); CG(in_compilation) = original_in_compilation; return retval; } BEGIN_EXTERN_C() int highlight_file(char *filename, zend_syntax_highlighter_ini *syntax_highlighter_ini TSRMLS_DC) { zend_lex_state original_lex_state; zend_file_handle file_handle; file_handle.type = ZEND_HANDLE_FILENAME; file_handle.filename = filename; file_handle.free_filename = 0; file_handle.opened_path = NULL; zend_save_lexical_state(&original_lex_state TSRMLS_CC); if (open_file_for_scanning(&file_handle TSRMLS_CC)==FAILURE) { zend_message_dispatcher(ZMSG_FAILED_HIGHLIGHT_FOPEN, filename); return FAILURE; } zend_highlight(syntax_highlighter_ini TSRMLS_CC); #ifdef ZEND_MULTIBYTE if (SCNG(script_org)) { efree(SCNG(script_org)); SCNG(script_org) = NULL; } if (SCNG(script_filtered)) { efree(SCNG(script_filtered)); SCNG(script_filtered) = NULL; } #endif /* ZEND_MULTIBYTE */ zend_destroy_file_handle(&file_handle TSRMLS_CC); zend_restore_lexical_state(&original_lex_state TSRMLS_CC); return SUCCESS; } int highlight_string(zval *str, zend_syntax_highlighter_ini *syntax_highlighter_ini, char *str_name TSRMLS_DC) { zend_lex_state original_lex_state; zval tmp = *str; str = &tmp; zval_copy_ctor(str); zend_save_lexical_state(&original_lex_state TSRMLS_CC); if (zend_prepare_string_for_scanning(str, str_name TSRMLS_CC)==FAILURE) { return FAILURE; } BEGIN(INITIAL); zend_highlight(syntax_highlighter_ini TSRMLS_CC); #ifdef ZEND_MULTIBYTE if (SCNG(script_org)) { efree(SCNG(script_org)); SCNG(script_org) = NULL; } if (SCNG(script_filtered)) { efree(SCNG(script_filtered)); SCNG(script_filtered) = NULL; } #endif /* ZEND_MULTIBYTE */ zend_restore_lexical_state(&original_lex_state TSRMLS_CC); zval_dtor(str); return SUCCESS; } END_EXTERN_C() #ifdef ZEND_MULTIBYTE BEGIN_EXTERN_C() ZEND_API void zend_multibyte_yyinput_again(zend_encoding_filter old_input_filter, zend_encoding *old_encoding TSRMLS_DC) { YY_BUFFER_STATE b = YY_CURRENT_BUFFER; int offset, original_offset, length, free_flag; char *p; zend_encoding *new_encoding; /* calculate current position */ offset = original_offset = yy_c_buf_p - b->yy_ch_buf; if (old_input_filter && original_offset > 0) { new_encoding = SCNG(script_encoding); SCNG(script_encoding) = old_encoding; do { (old_input_filter)(&p, &length, SCNG(script_org), offset TSRMLS_CC); if (!p) { SCNG(script_encoding) = new_encoding; return; } efree(p); if (length > original_offset) { offset--; } else if (length < original_offset) { offset++; } } while (original_offset != length); SCNG(script_encoding) = new_encoding; } /* convert and set */ if (!SCNG(input_filter)) { length = SCNG(script_org_size)-offset-1; p = SCNG(script_org)+offset+1; free_flag = 0; } else { SCNG(input_filter)(&p, &length, SCNG(script_org)+offset+1, SCNG(script_org_size)-offset-1 TSRMLS_CC); free_flag = 1; } if (original_offset+length+1 > (int)b->yy_buf_size) { b->yy_buf_size = original_offset+length+1; b->yy_ch_buf = (char*)erealloc(b->yy_ch_buf, b->yy_buf_size+2); SCNG(script_filtered) = b->yy_ch_buf; SCNG(script_filtered_size) = b->yy_buf_size; } yy_c_buf_p = b->yy_ch_buf + original_offset; strncpy(yy_c_buf_p+1, p, length); b->yy_n_chars = original_offset + length + 1; SCNG(yy_n_chars) = b->yy_n_chars; b->yy_ch_buf[SCNG(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[SCNG(yy_n_chars)+1] = YY_END_OF_BUFFER_CHAR; if (free_flag) { efree(p); } } ZEND_API int zend_multibyte_yyinput(zend_file_handle *file_handle, char *buf, size_t len TSRMLS_DC) { int c = '*', n; if (file_handle->handle.stream.interactive == 0) { return zend_stream_read(file_handle, buf, len TSRMLS_CC); } /* interactive */ if (SCNG(script_org)) { efree(SCNG(script_org)); } if (SCNG(script_filtered)) { efree(SCNG(script_filtered)); } SCNG(script_org) = NULL; SCNG(script_org_size) = 0; /* TODO: support widechars */ for (n = 0; n < sizeof(buf) && (c = zend_stream_getc(yyin TSRMLS_CC)) != EOF && c != '\n'; ++n) { buf[n] = (char)c; } if (c == '\n') { buf[n++] = (char) c; } SCNG(script_org_size) = n; SCNG(script_org) = (char*)emalloc(SCNG(script_org_size)+1); memcpy(SCNG(script_org)+SCNG(script_org_size)-n, buf, n); return n; } ZEND_API int zend_multibyte_read_script(TSRMLS_D) { char buf[8192]; int n; if (SCNG(script_org)) { efree(SCNG(script_org)); } SCNG(script_org) = NULL; SCNG(script_org_size) = 0; for (;;) { n = zend_stream_read(yyin, buf, sizeof(buf) TSRMLS_CC); if (n <= 0) { break; } SCNG(script_org_size) += n; if (SCNG(script_org)) { SCNG(script_org) = (char*)erealloc(SCNG(script_org), SCNG(script_org_size)+1); } else { SCNG(script_org) = (char*)emalloc(SCNG(script_org_size)+1); } memcpy(SCNG(script_org)+SCNG(script_org_size)-n, buf, n); } if (n < 0) { return -1; } if (!SCNG(script_org)) { SCNG(script_org) = emalloc(SCNG(script_org_size)+1); } *(SCNG(script_org)+SCNG(script_org_size)) = (char)NULL; return 0; } # define zend_copy_value(zendlval, yytext, yyleng) \ if (SCNG(output_filter)) { \ SCNG(output_filter)(&(zendlval->value.str.val), &(zendlval->value.str.len), yytext, yyleng TSRMLS_CC); \ } else { \ zendlval->value.str.val = (char *) estrndup(yytext, yyleng); \ zendlval->value.str.len = yyleng; \ } #else /* ZEND_MULTIBYTE */ # define zend_copy_value(zendlval, yytext, yyleng) \ zendlval->value.str.val = (char *)estrndup(yytext, yyleng); \ zendlval->value.str.len = yyleng; #endif /* ZEND_MULTIBYTE */ /* 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 TSRMLS_DC )); #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 3 YY_PROTO(( TSRMLS_D )); #else static int input YY_PROTO(( TSRMLS_D )); #endif #endif #if YY_STACK_USED #define yy_start_stack_ptr SCNG(yy_start_stack_ptr) #define yy_start_stack_depth SCNG(yy_start_stack_depth) #define yy_start_stack SCNG(yy_start_stack) /* 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 TSRMLS_DC )); #endif #ifndef YY_NO_POP_STATE static void yy_pop_state YY_PROTO(( TSRMLS_D )); #endif #ifndef YY_NO_TOP_STATE static int yy_top_state YY_PROTO(( TSRMLS_D )); #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. */ /* Zend file handle reading */ #ifndef ECHO #define ECHO /* There is no output */ #endif #ifdef ZEND_MULTIBYTE # define YY_INPUT(buf, result, max_size) \ if ( ((result = zend_multibyte_yyinput(yyin, buf, max_size TSRMLS_CC)) == 0) \ && zend_stream_ferror( yyin TSRMLS_CC) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); #else # define YY_INPUT(buf, result, max_size) \ if ( ((result = zend_stream_read(yyin, buf, max_size TSRMLS_CC)) == 0) \ && zend_stream_ferror( yyin TSRMLS_CC) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); #endif #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, SCNG(yy_out) ) #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 \ { \ errno=0; \ while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ } #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 \ if ( yyleng > 0 ) \ yy_current_buffer->yy_at_bol = \ (yytext[yyleng - 1] == '\n'); \ YY_USER_ACTION YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; if ( yy_init ) { yy_init = 0; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! yy_start ) yy_start = 1; /* first start state */ #if 0 if ( ! SCNG(yy_in) ) SCNG(yy_in) = stdin; if ( ! SCNG(yy_out) ) SCNG(yy_out) = stdout; #endif if ( ! yy_current_buffer ) yy_current_buffer = yy_create_buffer( SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC ); yy_load_buffer_state(TSRMLS_C); } while ( 1 ) /* loops until end-of-file is reached */ { yy_more_len = 0; if ( yy_more_flag ) { yy_more_len = yy_c_buf_p - yytext_ptr; yy_more_flag = 0; } 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_current_state += YY_AT_BOL(); 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 >= 1411 ) 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] != 7599 ); 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 { return T_EXIT; } YY_BREAK case 2: YY_RULE_SETUP { return T_EXIT; } YY_BREAK case 3: YY_RULE_SETUP { return T_FUNCTION; } YY_BREAK case 4: YY_RULE_SETUP { return T_CONST; } YY_BREAK case 5: YY_RULE_SETUP { return T_RETURN; } YY_BREAK case 6: YY_RULE_SETUP { return T_TRY; } YY_BREAK case 7: YY_RULE_SETUP { return T_CATCH; } YY_BREAK case 8: YY_RULE_SETUP { return T_THROW; } YY_BREAK case 9: YY_RULE_SETUP { return T_IF; } YY_BREAK case 10: YY_RULE_SETUP { return T_ELSEIF; } YY_BREAK case 11: YY_RULE_SETUP { return T_ENDIF; } YY_BREAK case 12: YY_RULE_SETUP { return T_ELSE; } YY_BREAK case 13: YY_RULE_SETUP { return T_WHILE; } YY_BREAK case 14: YY_RULE_SETUP { return T_ENDWHILE; } YY_BREAK case 15: YY_RULE_SETUP { return T_DO; } YY_BREAK case 16: YY_RULE_SETUP { return T_FOR; } YY_BREAK case 17: YY_RULE_SETUP { return T_ENDFOR; } YY_BREAK case 18: YY_RULE_SETUP { return T_FOREACH; } YY_BREAK case 19: YY_RULE_SETUP { return T_ENDFOREACH; } YY_BREAK case 20: YY_RULE_SETUP { return T_DECLARE; } YY_BREAK case 21: YY_RULE_SETUP { return T_ENDDECLARE; } YY_BREAK case 22: YY_RULE_SETUP { return T_INSTANCEOF; } YY_BREAK case 23: YY_RULE_SETUP { return T_AS; } YY_BREAK case 24: YY_RULE_SETUP { return T_SWITCH; } YY_BREAK case 25: YY_RULE_SETUP { return T_ENDSWITCH; } YY_BREAK case 26: YY_RULE_SETUP { return T_CASE; } YY_BREAK case 27: YY_RULE_SETUP { return T_DEFAULT; } YY_BREAK case 28: YY_RULE_SETUP { return T_BREAK; } YY_BREAK case 29: YY_RULE_SETUP { return T_CONTINUE; } YY_BREAK case 30: YY_RULE_SETUP { return T_ECHO; } YY_BREAK case 31: YY_RULE_SETUP { return T_PRINT; } YY_BREAK case 32: YY_RULE_SETUP { return T_CLASS; } YY_BREAK case 33: YY_RULE_SETUP { return T_INTERFACE; } YY_BREAK case 34: YY_RULE_SETUP { return T_EXTENDS; } YY_BREAK case 35: YY_RULE_SETUP { return T_IMPLEMENTS; } YY_BREAK case 36: YY_RULE_SETUP { yy_push_state(ST_LOOKING_FOR_PROPERTY TSRMLS_CC); return T_OBJECT_OPERATOR; } YY_BREAK case 37: YY_RULE_SETUP { yy_pop_state(TSRMLS_C); zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; return T_STRING; } YY_BREAK case 38: YY_RULE_SETUP { yyless(0); yy_pop_state(TSRMLS_C); } YY_BREAK case 39: YY_RULE_SETUP { return T_PAAMAYIM_NEKUDOTAYIM; } YY_BREAK case 40: YY_RULE_SETUP { return T_NEW; } YY_BREAK case 41: YY_RULE_SETUP { return T_CLONE; } YY_BREAK case 42: YY_RULE_SETUP { return T_VAR; } YY_BREAK case 43: YY_RULE_SETUP { return T_INT_CAST; } YY_BREAK case 44: YY_RULE_SETUP { return T_DOUBLE_CAST; } YY_BREAK case 45: YY_RULE_SETUP { return T_STRING_CAST; } YY_BREAK case 46: YY_RULE_SETUP { return T_ARRAY_CAST; } YY_BREAK case 47: YY_RULE_SETUP { return T_OBJECT_CAST; } YY_BREAK case 48: YY_RULE_SETUP { return T_BOOL_CAST; } YY_BREAK case 49: YY_RULE_SETUP { return T_UNSET_CAST; } YY_BREAK case 50: YY_RULE_SETUP { return T_EVAL; } YY_BREAK case 51: YY_RULE_SETUP { return T_INCLUDE; } YY_BREAK case 52: YY_RULE_SETUP { return T_INCLUDE_ONCE; } YY_BREAK case 53: YY_RULE_SETUP { return T_REQUIRE; } YY_BREAK case 54: YY_RULE_SETUP { return T_REQUIRE_ONCE; } YY_BREAK case 55: YY_RULE_SETUP { return T_USE; } YY_BREAK case 56: YY_RULE_SETUP { return T_GLOBAL; } YY_BREAK case 57: YY_RULE_SETUP { return T_ISSET; } YY_BREAK case 58: YY_RULE_SETUP { return T_EMPTY; } YY_BREAK case 59: YY_RULE_SETUP { return T_HALT_COMPILER; } YY_BREAK case 60: YY_RULE_SETUP { return T_STATIC; } YY_BREAK case 61: YY_RULE_SETUP { return T_ABSTRACT; } YY_BREAK case 62: YY_RULE_SETUP { return T_FINAL; } YY_BREAK case 63: YY_RULE_SETUP { return T_PRIVATE; } YY_BREAK case 64: YY_RULE_SETUP { return T_PROTECTED; } YY_BREAK case 65: YY_RULE_SETUP { return T_PUBLIC; } YY_BREAK case 66: YY_RULE_SETUP { return T_UNSET; } YY_BREAK case 67: YY_RULE_SETUP { return T_DOUBLE_ARROW; } YY_BREAK case 68: YY_RULE_SETUP { return T_LIST; } YY_BREAK case 69: YY_RULE_SETUP { return T_ARRAY; } YY_BREAK case 70: YY_RULE_SETUP { return T_INC; } YY_BREAK case 71: YY_RULE_SETUP { return T_DEC; } YY_BREAK case 72: YY_RULE_SETUP { return T_IS_IDENTICAL; } YY_BREAK case 73: YY_RULE_SETUP { return T_IS_NOT_IDENTICAL; } YY_BREAK case 74: YY_RULE_SETUP { return T_IS_EQUAL; } YY_BREAK case 75: YY_RULE_SETUP { return T_IS_NOT_EQUAL; } YY_BREAK case 76: YY_RULE_SETUP { return T_IS_SMALLER_OR_EQUAL; } YY_BREAK case 77: YY_RULE_SETUP { return T_IS_GREATER_OR_EQUAL; } YY_BREAK case 78: YY_RULE_SETUP { return T_PLUS_EQUAL; } YY_BREAK case 79: YY_RULE_SETUP { return T_MINUS_EQUAL; } YY_BREAK case 80: YY_RULE_SETUP { return T_MUL_EQUAL; } YY_BREAK case 81: YY_RULE_SETUP { return T_DIV_EQUAL; } YY_BREAK case 82: YY_RULE_SETUP { return T_CONCAT_EQUAL; } YY_BREAK case 83: YY_RULE_SETUP { return T_MOD_EQUAL; } YY_BREAK case 84: YY_RULE_SETUP { return T_SL_EQUAL; } YY_BREAK case 85: YY_RULE_SETUP { return T_SR_EQUAL; } YY_BREAK case 86: YY_RULE_SETUP { return T_AND_EQUAL; } YY_BREAK case 87: YY_RULE_SETUP { return T_OR_EQUAL; } YY_BREAK case 88: YY_RULE_SETUP { return T_XOR_EQUAL; } YY_BREAK case 89: YY_RULE_SETUP { return T_BOOLEAN_OR; } YY_BREAK case 90: YY_RULE_SETUP { return T_BOOLEAN_AND; } YY_BREAK case 91: YY_RULE_SETUP { return T_LOGICAL_OR; } YY_BREAK case 92: YY_RULE_SETUP { return T_LOGICAL_AND; } YY_BREAK case 93: YY_RULE_SETUP { return T_LOGICAL_XOR; } YY_BREAK case 94: YY_RULE_SETUP { return T_SL; } YY_BREAK case 95: YY_RULE_SETUP { return T_SR; } YY_BREAK case 96: YY_RULE_SETUP { return yytext[0]; } YY_BREAK case 97: YY_RULE_SETUP { yy_push_state(ST_IN_SCRIPTING TSRMLS_CC); return '{'; } YY_BREAK case 98: YY_RULE_SETUP { yy_push_state(ST_LOOKING_FOR_VARNAME TSRMLS_CC); return T_DOLLAR_OPEN_CURLY_BRACES; } YY_BREAK case 99: YY_RULE_SETUP { RESET_DOC_COMMENT(); /* This is a temporary fix which is dependant on flex and it's implementation */ if (yy_start_stack_ptr) { yy_pop_state(TSRMLS_C); } return '}'; } YY_BREAK case 100: YY_RULE_SETUP { zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; yy_pop_state(TSRMLS_C); yy_push_state(ST_IN_SCRIPTING TSRMLS_CC); return T_STRING_VARNAME; } YY_BREAK case 101: YY_RULE_SETUP { yyless(0); yy_pop_state(TSRMLS_C); yy_push_state(ST_IN_SCRIPTING TSRMLS_CC); } YY_BREAK case 102: YY_RULE_SETUP { errno = 0; zendlval->value.lval = strtol(yytext, NULL, 0); if (errno == ERANGE) { /* overflow */ zendlval->value.dval = zend_strtod(yytext, NULL); zendlval->type = IS_DOUBLE; return T_DNUMBER; } else { zendlval->type = IS_LONG; return T_LNUMBER; } } YY_BREAK case 103: YY_RULE_SETUP { errno = 0; zendlval->value.lval = strtoul(yytext, NULL, 16); if (errno == ERANGE) { /* overflow */ /* not trying strtod - it returns trash on 0x-es */ zendlval->value.lval = LONG_MAX; /* maximal long */ zend_error(E_NOTICE,"Hex number is too big: %s", yytext); } else { if (zendlval->value.lval < 0) { /* maintain consistency with the old way */ zendlval->value.dval = (unsigned long) zendlval->value.lval; zendlval->type = IS_DOUBLE; return T_DNUMBER; } zendlval->type = IS_LONG; } zendlval->type = IS_LONG; return T_LNUMBER; } YY_BREAK case 104: YY_RULE_SETUP { /* treat numbers (almost) as strings inside encapsulated strings */ zendlval->value.str.val = (char *)estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; return T_NUM_STRING; } YY_BREAK case 105: YY_RULE_SETUP { zendlval->value.dval = zend_strtod(yytext, NULL); zendlval->type = IS_DOUBLE; return T_DNUMBER; } YY_BREAK case 106: YY_RULE_SETUP { char *class_name = NULL; if (CG(active_class_entry)) { class_name = CG(active_class_entry)->name; } if (!class_name) { class_name = ""; } zendlval->value.str.len = strlen(class_name); zendlval->value.str.val = estrndup(class_name, zendlval->value.str.len); zendlval->type = IS_STRING; return T_CLASS_C; } YY_BREAK case 107: YY_RULE_SETUP { char *func_name = NULL; if (CG(active_op_array)) { func_name = CG(active_op_array)->function_name; } if (!func_name) { func_name = ""; } zendlval->value.str.len = strlen(func_name); zendlval->value.str.val = estrndup(func_name, zendlval->value.str.len); zendlval->type = IS_STRING; return T_FUNC_C; } YY_BREAK case 108: YY_RULE_SETUP { char *class_name = CG(active_class_entry) ? CG(active_class_entry)->name : NULL; char *func_name = CG(active_op_array)? CG(active_op_array)->function_name : NULL; size_t len = 0; if (class_name) { len += strlen(class_name) + 2; } if (func_name) { len += strlen(func_name); } zendlval->value.str.val = emalloc(len+1); zendlval->value.str.len = sprintf(zendlval->value.str.val, "%s%s%s", class_name ? class_name : "", class_name && func_name ? "::" : "", func_name ? func_name : "" ); zendlval->value.str.len = strlen(zendlval->value.str.val); zendlval->type = IS_STRING; return T_METHOD_C; } YY_BREAK case 109: YY_RULE_SETUP { zendlval->value.lval = CG(zend_lineno); zendlval->type = IS_LONG; return T_LINE; } YY_BREAK case 110: YY_RULE_SETUP { char *filename = zend_get_compiled_filename(TSRMLS_C); if (!filename) { filename = ""; } zendlval->value.str.len = strlen(filename); zendlval->value.str.val = estrndup(filename, zendlval->value.str.len); zendlval->type = IS_STRING; return T_FILE; } YY_BREAK case 111: YY_RULE_SETUP { #ifdef ZEND_MULTIBYTE if (SCNG(output_filter)) { int readsize; readsize = SCNG(output_filter)(&(zendlval->value.str.val), &(zendlval->value.str.len), yytext, yyleng TSRMLS_CC); if (readsize < yyleng) { yyless(readsize); } } else { zendlval->value.str.val = (char *) estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; } #else /* !ZEND_MULTIBYTE */ zendlval->value.str.val = (char *) estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; #endif /* ZEND_MULTIBYTE */ zendlval->type = IS_STRING; HANDLE_NEWLINES(yytext, yyleng); return T_INLINE_HTML; } YY_BREAK case 112: YY_RULE_SETUP { HANDLE_NEWLINES(yytext, yyleng); if (CG(short_tags) || yyleng>2) { /* yyleng>2 means it's not */ zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; BEGIN(ST_IN_SCRIPTING); return T_OPEN_TAG; } else { zendlval->value.str.val = (char *) estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; return T_INLINE_HTML; } } YY_BREAK case 113: YY_RULE_SETUP { if ((yytext[1]=='%' && CG(asp_tags)) || (yytext[1]=='?' && CG(short_tags))) { zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; BEGIN(ST_IN_SCRIPTING); return T_OPEN_TAG_WITH_ECHO; } else { zendlval->value.str.val = (char *) estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; return T_INLINE_HTML; } } YY_BREAK case 114: YY_RULE_SETUP { if (CG(asp_tags)) { zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; BEGIN(ST_IN_SCRIPTING); return T_OPEN_TAG; } else { zendlval->value.str.val = (char *) estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; return T_INLINE_HTML; } } YY_BREAK case 115: YY_RULE_SETUP { zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; HANDLE_NEWLINE(yytext[yyleng-1]); BEGIN(ST_IN_SCRIPTING); return T_OPEN_TAG; } YY_BREAK case 116: YY_RULE_SETUP { zend_copy_value(zendlval, (yytext+1), (yyleng-1)); zendlval->type = IS_STRING; return T_VARIABLE; } YY_BREAK case 117: YY_RULE_SETUP { zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; return T_STRING; } YY_BREAK case 118: YY_RULE_SETUP { zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; return T_STRING; } YY_BREAK case 119: YY_RULE_SETUP { zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; HANDLE_NEWLINES(yytext, yyleng); return T_WHITESPACE; } YY_BREAK case 120: YY_RULE_SETUP { BEGIN(ST_ONE_LINE_COMMENT); yymore(); } YY_BREAK case 121: YY_RULE_SETUP { yymore(); } YY_BREAK case 122: YY_RULE_SETUP { switch (yytext[yyleng-1]) { case '?': case '%': case '>': yyless(yyleng-1); yymore(); break; case '\n': CG(zend_lineno)++; /* intentional fall through */ default: zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; BEGIN(ST_IN_SCRIPTING); return T_COMMENT; } } YY_BREAK case 123: YY_RULE_SETUP { zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; BEGIN(ST_IN_SCRIPTING); CG(zend_lineno)++; return T_COMMENT; } YY_BREAK case 124: YY_RULE_SETUP { if (CG(asp_tags) || yytext[yyleng-2] != '%') { /* asp comment? */ zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng-2; zendlval->type = IS_STRING; yyless(yyleng-2); BEGIN(ST_IN_SCRIPTING); return T_COMMENT; } else { yymore(); } } YY_BREAK case 125: YY_RULE_SETUP { CG(comment_start_line) = CG(zend_lineno); RESET_DOC_COMMENT(); BEGIN(ST_DOC_COMMENT); yymore(); } YY_BREAK case 126: YY_RULE_SETUP { CG(comment_start_line) = CG(zend_lineno); BEGIN(ST_COMMENT); yymore(); } YY_BREAK case 127: YY_RULE_SETUP { yymore(); } YY_BREAK case 128: YY_RULE_SETUP { CG(doc_comment) = estrndup(yytext, yyleng); CG(doc_comment_len) = yyleng; HANDLE_NEWLINES(yytext, yyleng); BEGIN(ST_IN_SCRIPTING); return T_DOC_COMMENT; } YY_BREAK case 129: YY_RULE_SETUP { HANDLE_NEWLINES(yytext, yyleng); BEGIN(ST_IN_SCRIPTING); return T_COMMENT; } YY_BREAK case 130: YY_RULE_SETUP { yymore(); } YY_BREAK case 131: YY_RULE_SETUP { zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; BEGIN(INITIAL); return T_CLOSE_TAG; /* implicit ';' at php-end tag */ } YY_BREAK case 132: YY_RULE_SETUP { if (CG(asp_tags)) { BEGIN(INITIAL); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; zendlval->value.str.val = yytext; /* no copying - intentional */ return T_CLOSE_TAG; /* implicit ';' at php-end tag */ } else { yyless(1); return yytext[0]; } } YY_BREAK case 133: YY_RULE_SETUP { register char *s, *t; char *end; zendlval->value.str.val = estrndup(yytext+1, yyleng-2); zendlval->value.str.len = yyleng-2; zendlval->type = IS_STRING; HANDLE_NEWLINES(yytext, yyleng); /* convert escape sequences */ s = t = zendlval->value.str.val; end = s+zendlval->value.str.len; while (s=end) { continue; } switch(*s) { case 'n': *t++ = '\n'; zendlval->value.str.len--; break; case 'r': *t++ = '\r'; zendlval->value.str.len--; break; case 't': *t++ = '\t'; zendlval->value.str.len--; break; case '\\': case '$': case '"': *t++ = *s; zendlval->value.str.len--; break; default: /* check for an octal */ if (ZEND_IS_OCT(*s)) { char octal_buf[4] = { 0, 0, 0, 0 }; octal_buf[0] = *s; zendlval->value.str.len--; if ((s+1)value.str.len--; if ((s+1)value.str.len--; } } *t++ = (char) strtol(octal_buf, NULL, 8); } else if (*s=='x' && (s+1)value.str.len--; /* for the 'x' */ hex_buf[0] = *(++s); zendlval->value.str.len--; if ((s+1)value.str.len--; } *t++ = (char) strtol(hex_buf, NULL, 16); } else { *t++ = '\\'; *t++ = *s; } break; } s++; } else { *t++ = *s++; } } *t = 0; #ifdef ZEND_MULTIBYTE if (SCNG(output_filter)) { s = zendlval->value.str.val; SCNG(output_filter)(&(zendlval->value.str.val), &(zendlval->value.str.len), s, zendlval->value.str.len TSRMLS_CC); efree(s); } #endif /* ZEND_MULTIBYTE */ return T_CONSTANT_ENCAPSED_STRING; } YY_BREAK case 134: YY_RULE_SETUP { register char *s, *t; char *end; zendlval->value.str.val = estrndup(yytext+1, yyleng-2); zendlval->value.str.len = yyleng-2; zendlval->type = IS_STRING; HANDLE_NEWLINES(yytext, yyleng); /* convert escape sequences */ s = t = zendlval->value.str.val; end = s+zendlval->value.str.len; while (s=end) { continue; } switch(*s) { case '\\': case '\'': *t++ = *s; zendlval->value.str.len--; break; default: *t++ = '\\'; *t++ = *s; break; } s++; } else { *t++ = *s++; } } *t = 0; #ifdef ZEND_MULTIBYTE if (SCNG(output_filter)) { s = zendlval->value.str.val; SCNG(output_filter)(&(zendlval->value.str.val), &(zendlval->value.str.len), s, zendlval->value.str.len TSRMLS_CC); efree(s); } #endif /* ZEND_MULTIBYTE */ return T_CONSTANT_ENCAPSED_STRING; } YY_BREAK case 135: YY_RULE_SETUP { BEGIN(ST_DOUBLE_QUOTES); return '\"'; } YY_BREAK case 136: YY_RULE_SETUP { char *s; CG(zend_lineno)++; CG(heredoc_len) = yyleng-3-1-(yytext[yyleng-2]=='\r'?1:0); s = yytext+3; while ((*s == ' ') || (*s == '\t')) { s++; CG(heredoc_len)--; } CG(heredoc) = estrndup(s, CG(heredoc_len)); BEGIN(ST_HEREDOC); return T_START_HEREDOC; } YY_BREAK case 137: YY_RULE_SETUP { BEGIN(ST_BACKQUOTE); return '`'; } YY_BREAK case 138: YY_RULE_SETUP { BEGIN(ST_SINGLE_QUOTE); return '\''; } YY_BREAK case 139: YY_RULE_SETUP { int label_len; if (yytext[yyleng-2]=='\r') { label_len = yyleng-2; } else { label_len = yyleng-1; } if (yytext[label_len-1]==';') { label_len--; } if (label_len==CG(heredoc_len) && !memcmp(yytext, CG(heredoc), label_len)) { zendlval->value.str.val = estrndup(yytext, label_len); /* unput destroys yytext */ zendlval->value.str.len = label_len; yyless(yyleng - (yyleng - label_len)); efree(CG(heredoc)); CG(heredoc)=NULL; CG(heredoc_len)=0; BEGIN(ST_IN_SCRIPTING); return T_END_HEREDOC; } else { CG(zend_lineno)++; zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; return T_STRING; } } YY_BREAK case 140: YY_RULE_SETUP { HANDLE_NEWLINES(yytext, yyleng); zendlval->value.str.val = (char *) estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; return T_ENCAPSED_AND_WHITESPACE; } YY_BREAK case 141: YY_RULE_SETUP { HANDLE_NEWLINES(yytext, yyleng); zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; return T_ENCAPSED_AND_WHITESPACE; } YY_BREAK case 142: YY_RULE_SETUP { zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; return T_ENCAPSED_AND_WHITESPACE; } YY_BREAK case 143: YY_RULE_SETUP { zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; return T_ENCAPSED_AND_WHITESPACE; } YY_BREAK case 144: YY_RULE_SETUP { zendlval->value.lval = (long) yytext[0]; if (yyleng == 2) { yyless(1); } return T_CHARACTER; } YY_BREAK case 145: YY_RULE_SETUP { zendlval->value.lval = (long) yytext[0]; return yytext[0]; } YY_BREAK case 146: YY_RULE_SETUP { zendlval->value.str.val = estrndup("\\{", sizeof("\\{") - 1); zendlval->value.str.len = sizeof("\\{") - 1; zendlval->type = IS_STRING; return T_STRING; } YY_BREAK case 147: YY_RULE_SETUP { zendlval->value.lval = (long) yytext[0]; yy_push_state(ST_IN_SCRIPTING TSRMLS_CC); yyless(1); return T_CURLY_OPEN; } YY_BREAK case 148: YY_RULE_SETUP { zendlval->value.lval = (long) '\''; return T_CHARACTER; } YY_BREAK case 149: YY_RULE_SETUP { zendlval->value.lval = (long)'\\'; return T_CHARACTER; } YY_BREAK case 150: YY_RULE_SETUP { zendlval->value.lval = (long) '"'; return T_CHARACTER; } YY_BREAK case 151: YY_RULE_SETUP { zendlval->value.lval = (long) '`'; return T_CHARACTER; } YY_BREAK case 152: YY_RULE_SETUP { zendlval->value.lval = strtol(yytext+1, NULL, 8); return T_CHARACTER; } YY_BREAK case 153: YY_RULE_SETUP { zendlval->value.lval = strtol (yytext+2, NULL, 16); return T_CHARACTER; } YY_BREAK case 154: YY_RULE_SETUP { switch (yytext[1]) { case 'n': zendlval->value.lval = (long) '\n'; break; case 't': zendlval->value.lval = (long) '\t'; break; case 'r': zendlval->value.lval = (long) '\r'; break; case '\\': zendlval->value.lval = (long) '\\'; break; case '$': zendlval->value.lval = (long) yytext[1]; break; default: zendlval->value.str.val = estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; return T_BAD_CHARACTER; break; } return T_CHARACTER; } YY_BREAK case 155: YY_RULE_SETUP { zendlval->value.str.val = (char *) estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; return T_ENCAPSED_AND_WHITESPACE; } YY_BREAK case 156: YY_RULE_SETUP { BEGIN(ST_IN_SCRIPTING); return '\"'; } YY_BREAK case 157: YY_RULE_SETUP { BEGIN(ST_IN_SCRIPTING); return '`'; } YY_BREAK case 158: YY_RULE_SETUP { BEGIN(ST_IN_SCRIPTING); return '\''; } YY_BREAK case YY_STATE_EOF(ST_DOUBLE_QUOTES): case YY_STATE_EOF(ST_BACKQUOTE): case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(ST_IN_SCRIPTING): case YY_STATE_EOF(ST_LOOKING_FOR_PROPERTY): { return 0; } YY_BREAK case YY_STATE_EOF(ST_COMMENT): case YY_STATE_EOF(ST_DOC_COMMENT): { zend_error(E_COMPILE_WARNING,"Unterminated comment starting line %d", CG(comment_start_line)); return 0; } YY_BREAK case 159: YY_RULE_SETUP { zend_error(E_COMPILE_WARNING,"Unexpected character in input: '%c' (ASCII=%d) state=%d", yytext[0], yytext[0], YYSTATE); } YY_BREAK case 160: YY_RULE_SETUP ECHO; YY_BREAK case YY_STATE_EOF(ST_SINGLE_QUOTE): case YY_STATE_EOF(ST_HEREDOC): case YY_STATE_EOF(ST_LOOKING_FOR_VARNAME): case YY_STATE_EOF(ST_ONE_LINE_COMMENT): 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; 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. */ SCNG(yy_n_chars) = yy_current_buffer->yy_n_chars; yy_current_buffer->yy_input_file = SCNG(yy_in); 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[SCNG(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(TSRMLS_C); /* 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 TSRMLS_CC ); 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(TSRMLS_C) ) { 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(TSRMLS_C); 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[SCNG(yy_n_chars)]; yy_current_state = yy_get_previous_state(TSRMLS_C); 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(TSRMLS_D) { 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[SCNG(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 = SCNG(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]), SCNG(yy_n_chars), num_to_read ); yy_current_buffer->yy_n_chars = SCNG(yy_n_chars); } if ( SCNG(yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart( SCNG(yy_in) TSRMLS_CC ); } else { ret_val = EOB_ACT_LAST_MATCH; yy_current_buffer->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; SCNG(yy_n_chars) += number_to_move; yy_current_buffer->yy_ch_buf[SCNG(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; yy_current_buffer->yy_ch_buf[SCNG(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(TSRMLS_D) { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = yy_start; yy_current_state += YY_AT_BOL(); 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 >= 1411 ) 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 TSRMLS_DC ) #else static yy_state_type yy_try_NUL_trans( yy_current_state TSRMLS_CC ) yy_state_type yy_current_state; #ifdef ZTS void ***tsrm_ls; #endif #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 >= 1411 ) 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 == 1410); 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 TSRMLS_DC ) #else static void yyunput( c, yy_bp TSRMLS_CC ) int c; register char *yy_bp; #ifdef ZTS void ***tsrm_ls; #endif #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 = SCNG(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 = SCNG(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 */ #ifdef __cplusplus static int yyinput(TSRMLS_D) #else static int input(TSRMLS_C) #ifdef ZTS void ***tsrm_ls; #endif #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[SCNG(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(TSRMLS_C) ) { 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( SCNG(yy_in) TSRMLS_CC ); /* 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(TSRMLS_C); #else return input(TSRMLS_C); #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; yy_current_buffer->yy_at_bol = (c == '\n'); return c; } #ifdef YY_USE_PROTOS void yyrestart( struct _zend_file_handle *input_file TSRMLS_DC ) #else void yyrestart( input_file TSRMLS_CC ) struct _zend_file_handle *input_file; #endif { if ( ! yy_current_buffer ) yy_current_buffer = yy_create_buffer( SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC ); yy_init_buffer( yy_current_buffer, input_file TSRMLS_CC ); yy_load_buffer_state(TSRMLS_C); } #ifdef YY_USE_PROTOS void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer TSRMLS_DC) #else void yy_switch_to_buffer( new_buffer TSRMLS_CC) YY_BUFFER_STATE new_buffer; #ifdef ZTS void ***tsrm_ls; #endif #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 = SCNG(yy_n_chars); } yy_current_buffer = new_buffer; yy_load_buffer_state(TSRMLS_C); /* 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( TSRMLS_D ) #else void yy_load_buffer_state(TSRMLS_C) #ifdef ZTS void ***tsrm_ls; #endif #endif { SCNG(yy_n_chars) = yy_current_buffer->yy_n_chars; yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos; SCNG(yy_in) = yy_current_buffer->yy_input_file; yy_hold_char = *yy_c_buf_p; } #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_create_buffer( struct _zend_file_handle *file, int size TSRMLS_DC ) #else YY_BUFFER_STATE yy_create_buffer( file, size TSRMLS_CC ) struct _zend_file_handle *file; int size; #ifdef ZTS void ***tsrm_ls; #endif #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 TSRMLS_CC ); return b; } #ifdef YY_USE_PROTOS void yy_delete_buffer( YY_BUFFER_STATE b TSRMLS_DC ) #else void yy_delete_buffer( b TSRMLS_CC ) YY_BUFFER_STATE b; #ifdef ZTS void ***tsrm_ls; #endif #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, struct _zend_file_handle *file TSRMLS_DC ) #else void yy_init_buffer( b, file TSRMLS_CC ) YY_BUFFER_STATE b; struct _zend_file_handle *file; #ifdef ZTS void ***tsrm_ls; #endif #endif { yy_flush_buffer( b TSRMLS_CC ); 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->handle.stream.interactive; #endif #endif } #ifdef YY_USE_PROTOS void yy_flush_buffer( YY_BUFFER_STATE b TSRMLS_DC ) #else void yy_flush_buffer( b TSRMLS_CC ) YY_BUFFER_STATE b; #ifdef ZTS void ***tsrm_ls; #endif #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(TSRMLS_C); } #ifndef YY_NO_SCAN_BUFFER #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size TSRMLS_DC ) #else YY_BUFFER_STATE yy_scan_buffer( base, size TSRMLS_CC ) char *base; yy_size_t size; #ifdef ZTS void ***tsrm_ls; #endif #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 TSRMLS_CC ); return b; } #endif #ifndef YY_NO_SCAN_STRING #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str TSRMLS_DC ) #else YY_BUFFER_STATE yy_scan_string( yy_str TSRMLS_CC ) yyconst char *yy_str; #ifdef ZTS void ***tsrm_ls; #endif #endif { int len; for ( len = 0; yy_str[len]; ++len ) ; return yy_scan_bytes( yy_str, len TSRMLS_CC ); } #endif #ifndef YY_NO_SCAN_BYTES #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len TSRMLS_DC ) #else YY_BUFFER_STATE yy_scan_bytes( bytes, len TSRMLS_CC ) yyconst char *bytes; int len; #ifdef ZTS void ***tsrm_ls; #endif #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 TSRMLS_CC); 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 TSRMLS_DC ) #else static void yy_push_state( new_state TSRMLS_CC ) int new_state; #ifdef ZTS void ***tsrm_ls; #endif #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(TSRMLS_D) { 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(TSRMLS_D) { 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