#line 3 "read_config_lex.c" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #define YY_FLEX_SUBMINOR_VERSION 35 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ #include #include #include #include /* end standard C headers. */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 #endif #include typedef int8_t flex_int8_t; typedef uint8_t flex_uint8_t; typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; /* Limits of integral types. */ #ifndef INT8_MIN #define INT8_MIN (-128) #endif #ifndef INT16_MIN #define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN #define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX #define INT8_MAX (127) #endif #ifndef INT16_MAX #define INT16_MAX (32767) #endif #ifndef INT32_MAX #define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX #define UINT8_MAX (255U) #endif #ifndef UINT16_MAX #define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX #define UINT32_MAX (4294967295U) #endif #endif /* ! C99 */ #endif /* ! FLEXINT_H */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ /* C99 requires __STDC__ to be defined as 1. */ #if defined (__STDC__) #define YY_USE_CONST #endif /* defined (__STDC__) */ #endif /* ! __cplusplus */ #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN (yy_start) = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START (((yy_start) - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart(yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k. * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. * Ditto for the __ia64__ case accordingly. */ #define YY_BUF_SIZE 32768 #else #define YY_BUF_SIZE 16384 #endif /* __ia64__ */ #endif /* The state buf must be large enough to hold one state per character in the main buffer. */ #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif extern int yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 /* Note: We specifically omit the test for yy_rule_can_match_eol because it requires * access to the local variable yy_act. Since yyless() is a macro, it would break * existing scanners that call yyless() from OUTSIDE yylex. * One obvious solution it to make yy_act a global. I tried that, and saw * a 5% performance hit in a non-yylineno scanner, because yy_act is * normally declared as a register variable-- so it is not worth it. */ #define YY_LESS_LINENO(n) \ do { \ int yyl;\ for ( yyl = n; yyl < yyleng; ++yyl )\ if ( yytext[yyl] == '\n' )\ --yylineno;\ }while(0) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #endif #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* 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 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* Stack of input buffers. */ static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */ /* 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". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ : NULL) /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 0; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart (FILE *input_file ); void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); void yy_delete_buffer (YY_BUFFER_STATE b ); void yy_flush_buffer (YY_BUFFER_STATE b ); void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); void yypop_buffer_state (void ); static void yyensure_buffer_stack (void ); static void yy_load_buffer_state (void ); static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len ); void *yyalloc (yy_size_t ); void *yyrealloc (void *,yy_size_t ); void yyfree (void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #define yytext_ptr yytext static yy_state_type yy_get_previous_state (void ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); static int yy_get_next_buffer (void ); static void yy_fatal_error (yyconst char msg[] ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ (yytext_ptr) = yy_bp; \ yyleng = (size_t) (yy_cp - yy_bp); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 111 #define YY_END_OF_BUFFER 112 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info { flex_int32_t yy_verify; flex_int32_t yy_nxt; }; static yyconst flex_int16_t yy_accept[1302] = { 0, 0, 0, 112, 110, 108, 109, 109, 110, 110, 100, 96, 96, 110, 99, 99, 99, 99, 99, 99, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 99, 99, 99, 106, 106, 106, 110, 108, 0, 107, 97, 100, 0, 0, 96, 96, 0, 99, 99, 106, 99, 99, 106, 99, 99, 0, 99, 106, 99, 106, 106, 99, 106, 106, 106, 106, 106, 106, 106, 99, 106, 106, 0, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 0, 106, 94, 106, 94, 106, 106, 106, 106, 106, 0, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 0, 0, 94, 0, 94, 0, 0, 99, 99, 96, 96, 0, 99, 99, 99, 0, 99, 99, 106, 106, 0, 99, 99, 99, 106, 99, 106, 106, 99, 106, 106, 106, 106, 106, 106, 106, 106, 106, 0, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 0, 106, 0, 106, 106, 0, 95, 95, 106, 106, 0, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 11, 106, 106, 10, 106, 106, 45, 95, 95, 0, 96, 96, 0, 99, 99, 99, 0, 99, 99, 99, 99, 99, 106, 106, 0, 99, 106, 106, 106, 106, 106, 106, 99, 106, 106, 106, 106, 106, 106, 106, 0, 103, 103, 106, 106, 70, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 37, 106, 104, 104, 106, 0, 106, 77, 104, 106, 106, 0, 18, 106, 106, 24, 106, 106, 106, 106, 106, 106, 106, 106, 106, 0, 106, 106, 106, 106, 106, 29, 106, 106, 106, 79, 1, 106, 0, 103, 0, 0, 96, 96, 0, 0, 99, 99, 0, 99, 99, 99, 99, 99, 106, 106, 101, 101, 106, 106, 106, 54, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 0, 106, 106, 106, 23, 106, 106, 106, 0, 0, 106, 106, 106, 0, 106, 106, 106, 106, 106, 106, 106, 0, 106, 106, 106, 0, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 0, 0, 106, 106, 106, 66, 30, 106, 106, 106, 0, 106, 101, 101, 0, 96, 96, 0, 0, 99, 99, 0, 99, 99, 99, 99, 0, 99, 99, 99, 99, 99, 106, 106, 67, 106, 106, 55, 0, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 0, 39, 63, 106, 106, 106, 88, 0, 0, 0, 0, 0, 0, 68, 106, 106, 0, 56, 106, 106, 106, 106, 106, 106, 106, 0, 106, 106, 106, 0, 91, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 0, 0, 106, 106, 106, 106, 26, 106, 0, 106, 0, 98, 98, 96, 96, 0, 0, 0, 99, 0, 99, 99, 99, 99, 0, 0, 99, 99, 99, 99, 99, 99, 99, 99, 99, 106, 106, 65, 22, 0, 106, 106, 106, 106, 74, 106, 106, 106, 106, 106, 106, 106, 106, 106, 0, 28, 106, 106, 0, 0, 0, 0, 0, 0, 106, 106, 106, 106, 0, 106, 106, 25, 106, 106, 106, 105, 105, 106, 84, 106, 0, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 0, 0, 106, 106, 106, 106, 106, 0, 106, 105, 0, 96, 96, 0, 0, 0, 0, 0, 99, 0, 99, 99, 99, 0, 0, 99, 99, 0, 99, 99, 0, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 106, 106, 0, 106, 106, 42, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 50, 106, 12, 0, 0, 0, 0, 0, 0, 106, 106, 106, 106, 52, 38, 27, 106, 106, 106, 106, 106, 106, 106, 106, 0, 75, 80, 64, 106, 90, 89, 106, 106, 106, 106, 106, 106, 48, 47, 106, 106, 106, 21, 106, 0, 106, 98, 98, 96, 96, 0, 0, 0, 0, 0, 99, 0, 99, 99, 0, 0, 99, 99, 0, 99, 99, 0, 0, 0, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 106, 106, 0, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 92, 106, 106, 17, 0, 0, 0, 0, 0, 0, 106, 106, 8, 106, 106, 106, 106, 9, 106, 106, 106, 106, 0, 106, 106, 106, 106, 44, 106, 106, 78, 106, 106, 106, 53, 71, 96, 96, 0, 0, 0, 0, 0, 99, 0, 99, 99, 0, 99, 99, 0, 0, 0, 99, 99, 0, 99, 99, 0, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 106, 106, 51, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 0, 0, 0, 0, 0, 0, 106, 106, 106, 106, 106, 106, 106, 106, 106, 102, 102, 106, 106, 106, 106, 106, 106, 106, 106, 106, 96, 96, 0, 0, 0, 0, 0, 99, 99, 99, 0, 0, 99, 99, 0, 99, 99, 0, 0, 0, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 106, 106, 106, 106, 106, 106, 106, 106, 106, 49, 106, 106, 106, 106, 0, 0, 0, 0, 0, 0, 106, 106, 72, 106, 106, 106, 106, 106, 106, 106, 106, 13, 106, 106, 106, 106, 106, 106, 96, 96, 0, 0, 0, 0, 99, 99, 99, 99, 0, 0, 0, 99, 99, 0, 99, 99, 0, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 106, 106, 14, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 0, 2, 0, 0, 3, 0, 106, 106, 106, 106, 106, 106, 106, 106, 69, 106, 106, 106, 106, 106, 106, 106, 96, 96, 0, 0, 0, 99, 99, 0, 99, 99, 0, 0, 0, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 106, 43, 106, 15, 106, 106, 106, 106, 106, 106, 93, 106, 0, 0, 0, 0, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 96, 96, 0, 0, 0, 99, 0, 99, 0, 99, 99, 0, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 106, 106, 106, 58, 106, 106, 106, 106, 106, 0, 6, 0, 7, 19, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 96, 96, 0, 0, 99, 0, 0, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 106, 106, 106, 106, 106, 106, 106, 86, 0, 0, 106, 106, 106, 106, 106, 106, 106, 62, 106, 106, 41, 61, 106, 106, 96, 96, 0, 0, 0, 0, 99, 99, 99, 99, 99, 99, 99, 99, 99, 106, 106, 106, 106, 106, 87, 106, 0, 0, 20, 106, 106, 106, 106, 106, 106, 31, 40, 32, 106, 96, 96, 0, 0, 99, 99, 99, 99, 99, 106, 46, 106, 106, 106, 106, 0, 0, 57, 106, 106, 35, 106, 106, 106, 85, 96, 96, 0, 99, 99, 99, 106, 106, 106, 106, 106, 0, 0, 106, 106, 106, 106, 106, 106, 96, 96, 99, 106, 106, 106, 106, 73, 0, 0, 106, 106, 106, 106, 106, 106, 96, 96, 106, 16, 83, 82, 0, 0, 60, 59, 106, 106, 76, 106, 96, 96, 106, 0, 0, 106, 81, 106, 96, 96, 106, 0, 0, 106, 106, 96, 96, 106, 0, 0, 106, 106, 96, 96, 106, 4, 5, 106, 33, 106, 96, 96, 106, 106, 34, 96, 96, 106, 36, 96, 96, 106, 96, 96, 106, 96, 96, 0 } ; static yyconst flex_int32_t 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, 5, 1, 6, 7, 1, 1, 1, 1, 1, 1, 1, 8, 1, 9, 10, 11, 12, 12, 13, 14, 15, 14, 16, 14, 14, 14, 17, 1, 1, 1, 1, 1, 1, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 27, 1, 1, 1, 1, 43, 1, 44, 45, 46, 47, 48, 49, 50, 51, 52, 27, 53, 54, 55, 56, 57, 58, 27, 59, 60, 61, 62, 63, 64, 65, 66, 67, 1, 68, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst flex_int32_t yy_meta[69] = { 0, 1, 1, 2, 1, 2, 2, 1, 1, 3, 4, 5, 6, 6, 6, 6, 6, 7, 6, 6, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 6, 6, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8 } ; static yyconst flex_int16_t yy_base[1595] = { 0, 0, 0, 4850, 4851, 67, 4851, 4851, 4846, 61, 0, 68, 76, 4831, 83, 141, 82, 65, 79, 139, 155, 99, 160, 107, 157, 195, 162, 209, 220, 223, 167, 200, 233, 238, 276, 230, 4803, 258, 299, 297, 301, 352, 117, 4843, 4851, 325, 0, 345, 364, 411, 419, 4828, 97, 4833, 124, 425, 4815, 438, 4796, 4794, 102, 4794, 318, 4793, 294, 245, 232, 334, 382, 393, 337, 400, 446, 442, 4783, 443, 464, 298, 467, 468, 469, 472, 476, 477, 481, 479, 484, 488, 491, 511, 502, 501, 543, 547, 551, 555, 554, 553, 564, 563, 565, 348, 566, 567, 585, 593, 578, 441, 581, 592, 613, 574, 637, 630, 640, 641, 655, 657, 648, 652, 659, 676, 678, 680, 344, 615, 4851, 235, 731, 718, 743, 748, 757, 771, 790, 4820, 184, 123, 185, 781, 221, 796, 809, 730, 482, 4788, 4776, 4781, 810, 4782, 811, 812, 4788, 814, 813, 821, 836, 839, 844, 822, 849, 851, 81, 858, 876, 877, 886, 884, 888, 891, 905, 907, 912, 914, 916, 924, 925, 946, 951, 955, 954, 966, 968, 335, 970, 559, 977, 978, 684, 980, 4851, 987, 989, 495, 990, 999, 1000, 1007, 1026, 992, 1033, 1045, 1048, 1052, 1055, 1060, 1059, 1062, 1063, 1071, 1072, 1067, 1075, 1080, 1089, 1100, 1101, 1087, 1115, 1125, 1127, 616, 1118, 1147, 1186, 1194, 4814, 381, 222, 225, 4813, 1160, 1175, 243, 4818, 1200, 1213, 1220, 300, 4770, 1215, 1216, 1217, 1218, 1225, 1240, 4765, 1241, 1242, 1244, 1243, 1256, 1257, 1260, 4786, 1265, 4851, 1280, 1279, 1283, 1287, 1302, 1303, 1288, 1306, 1318, 1305, 1320, 1327, 1341, 1346, 1342, 1355, 1365, 1366, 1370, 1374, 1381, 4851, 1385, 265, 1383, 1382, 706, 1390, 1394, 649, 1395, 1402, 1404, 1405, 1407, 1414, 1419, 1426, 1428, 1443, 1444, 1448, 1466, 35, 1467, 1469, 1481, 1482, 1478, 1486, 1490, 1491, 1502, 1493, 1504, 1506, 1509, 1537, 1570, 1581, 1594, 1602, 4808, 187, 696, 718, 4807, 725, 1130, 1134, 4812, 1153, 1609, 1545, 1507, 4851, 1622, 1624, 1623, 1625, 1626, 1627, 1648, 1634, 1650, 1653, 1658, 1668, 1665, 1687, 1661, 4804, 1690, 1689, 1694, 1697, 1708, 1717, 1713, 862, 1220, 1706, 1724, 1726, 4803, 1728, 1733, 1735, 1736, 1771, 1753, 1766, 817, 1767, 1780, 1791, 646, 1750, 1794, 1798, 1803, 1808, 1815, 1811, 1813, 1826, 1836, 1841, 4798, 4797, 1843, 1844, 1853, 1857, 1858, 1861, 1869, 1874, 4778, 1876, 1275, 1505, 1883, 1933, 1941, 4800, 205, 1168, 1521, 4799, 1889, 1890, 1891, 1899, 4798, 1906, 4803, 1907, 1911, 4802, 1947, 1960, 1916, 1921, 1961, 1962, 4772, 1963, 1965, 1986, 1988, 1989, 1987, 1997, 1999, 2001, 2002, 2015, 2029, 4785, 2006, 2025, 2026, 2027, 2034, 2041, 4762, 4762, 4752, 4759, 4759, 4749, 2051, 2060, 2061, 4784, 2064, 2068, 2079, 2075, 2089, 2096, 2097, 2109, 845, 2100, 2099, 2113, 466, 2101, 2114, 2123, 2128, 2127, 2138, 2131, 2155, 2159, 2172, 2177, 2181, 4783, 4771, 2190, 2186, 2194, 2201, 2203, 2205, 4783, 2213, 2198, 2263, 2271, 2278, 2286, 4783, 315, 4782, 1924, 4781, 2217, 2221, 2225, 2226, 4780, 4779, 2230, 2239, 2244, 4784, 2253, 2293, 4783, 2294, 2295, 2301, 2314, 2315, 2316, 4775, 2317, 2318, 2319, 2326, 2327, 2340, 2342, 2341, 2344, 2343, 2345, 2358, 2379, 2381, 4755, 2386, 2388, 2390, 4731, 4743, 4728, 4728, 4740, 4725, 2403, 2404, 2405, 2406, 4757, 2408, 2407, 2416, 2417, 2419, 2426, 2428, 4851, 2471, 2433, 2478, 1530, 2442, 2450, 2466, 2480, 2481, 2488, 2496, 2495, 2497, 2498, 2500, 2508, 4745, 4746, 2510, 2512, 2511, 2513, 2525, 4756, 2540, 1727, 2575, 2582, 2590, 4764, 317, 4763, 4762, 4761, 2435, 4760, 2536, 2544, 2558, 4759, 4758, 2560, 2598, 4757, 2599, 2600, 4756, 2601, 4761, 2602, 2603, 4760, 2610, 2611, 2612, 2613, 4759, 2619, 201, 4743, 133, 108, 4751, 449, 119, 335, 307, 623, 390, 356, 679, 397, 498, 591, 4851, 774, 4750, 4705, 4706, 4716, 4702, 4703, 4713, 450, 499, 569, 677, 4851, 4743, 4742, 705, 682, 835, 867, 847, 913, 950, 2626, 1401, 4741, 4740, 4739, 728, 4738, 4737, 894, 834, 723, 921, 941, 930, 4851, 4851, 817, 991, 1076, 4736, 1073, 4715, 1037, 2632, 2637, 2659, 2671, 933, 4734, 4733, 4732, 4731, 2643, 4730, 2644, 2645, 4729, 4728, 2678, 2679, 4727, 2680, 2681, 4726, 4725, 4724, 2682, 2689, 2690, 4729, 2691, 2692, 2693, 2694, 2701, 2702, 4728, 2703, 2704, 2705, 2711, 1011, 4701, 1135, 1133, 1177, 1221, 1285, 1226, 1328, 1013, 1380, 1286, 4720, 1523, 1387, 4719, 4683, 4686, 4674, 4678, 4678, 4663, 1391, 1439, 4701, 590, 1511, 1424, 1531, 4697, 1527, 1551, 1552, 1703, 1613, 1632, 1086, 1325, 1309, 4693, 1714, 1540, 4689, 1148, 1749, 995, 4851, 4685, 2725, 2733, 1023, 4681, 4674, 4660, 4638, 2750, 4605, 2751, 2752, 1686, 2753, 2754, 4558, 4498, 4494, 2755, 2762, 4419, 2763, 2764, 4415, 2765, 4333, 2766, 2767, 4239, 2774, 2775, 2776, 4235, 2777, 2778, 2779, 2786, 2787, 2788, 4151, 2794, 1923, 4851, 1586, 1776, 1783, 1984, 1762, 1867, 1872, 1333, 819, 1459, 1992, 1223, 4102, 4026, 3983, 3935, 3903, 3857, 2003, 1816, 1935, 1973, 1669, 1821, 1985, 1800, 1447, 3874, 4851, 2036, 2163, 2074, 1969, 2098, 2110, 2246, 2139, 2044, 2808, 691, 3867, 3859, 3858, 3857, 3856, 2815, 2816, 2817, 3849, 3841, 2818, 2819, 3833, 2820, 2833, 3821, 3820, 3819, 2834, 2835, 2836, 2837, 3824, 2838, 2845, 2846, 2847, 2848, 2849, 2850, 2857, 3817, 2858, 2859, 2860, 2861, 2867, 1660, 2156, 131, 2280, 256, 2250, 2187, 2322, 3803, 2154, 2216, 2521, 1715, 3768, 3740, 3755, 3754, 3737, 3746, 2144, 2324, 3765, 2161, 1824, 1886, 2212, 2248, 2347, 2371, 2231, 3745, 2387, 2567, 2236, 2523, 2874, 1630, 2882, 2890, 3744, 3743, 3742, 3735, 2907, 2908, 2909, 2910, 3727, 3699, 3698, 2911, 2912, 3697, 2919, 2920, 3696, 2921, 2923, 2924, 2928, 3700, 2931, 2932, 2933, 3690, 2935, 2936, 2940, 2943, 2944, 2945, 2947, 3689, 2953, 2412, 3681, 2946, 2942, 365, 2608, 2661, 2960, 2961, 2424, 2962, 1919, 3636, 4851, 3632, 3615, 4851, 3629, 2528, 2487, 2963, 2964, 2965, 2966, 1473, 2967, 3635, 2969, 2856, 2641, 2968, 2970, 2783, 2975, 2994, 3018, 3623, 3621, 3620, 2977, 2978, 3605, 2979, 3025, 3585, 3584, 3547, 3026, 3027, 3028, 3029, 3030, 3037, 3038, 3039, 3040, 3041, 3042, 3049, 3549, 3050, 3051, 3052, 3053, 3059, 3534, 3066, 3531, 2976, 3048, 2557, 3067, 2323, 3068, 3516, 3069, 3390, 3338, 3333, 3336, 1451, 3070, 3074, 3071, 3072, 3077, 1896, 3073, 3078, 3079, 2974, 2022, 3080, 3075, 2514, 3102, 3125, 3132, 3358, 3357, 3133, 3292, 3134, 3271, 3135, 3136, 3200, 3137, 3144, 3145, 3197, 3146, 3147, 3148, 3149, 3156, 3157, 3158, 3159, 3188, 3165, 3154, 3155, 3181, 3165, 3172, 3173, 2070, 3084, 3065, 4851, 3064, 4851, 3103, 3174, 3082, 1348, 1643, 3175, 3083, 2719, 3176, 3177, 2734, 3180, 3178, 2735, 3184, 3190, 3208, 3085, 3081, 3221, 3010, 2998, 3228, 3003, 3229, 3230, 3231, 3232, 3233, 2899, 3240, 3241, 3242, 3243, 3249, 3179, 3213, 931, 1570, 3238, 3239, 2892, 2845, 2837, 3249, 3257, 3258, 3259, 3260, 3261, 3262, 2736, 3263, 3264, 2727, 2663, 3265, 3266, 3289, 3316, 3273, 2662, 2642, 2537, 3275, 2541, 3300, 3308, 3323, 3324, 3325, 3326, 2468, 3332, 3321, 3270, 3322, 3339, 2461, 3332, 2427, 2426, 2451, 3268, 3340, 3341, 3343, 3342, 3301, 2440, 2372, 434, 3345, 3386, 3394, 2360, 2351, 2355, 3352, 3353, 3354, 3356, 3400, 2348, 3375, 3351, 3388, 3376, 2271, 2157, 2146, 3407, 3409, 842, 3410, 3365, 3413, 2137, 3423, 3449, 2134, 1977, 3456, 3457, 3463, 3412, 3436, 3438, 3371, 1940, 1784, 3424, 3452, 3426, 3435, 3434, 1514, 3481, 3489, 3502, 3508, 3454, 3498, 3499, 1812, 1721, 1695, 3433, 3500, 3471, 3508, 3515, 3283, 3525, 3553, 3559, 1656, 1635, 1462, 1303, 1282, 1252, 1239, 3526, 3501, 1163, 3517, 3573, 3581, 3597, 1118, 1067, 3541, 1097, 3527, 3611, 3619, 3635, 960, 880, 3582, 3528, 3649, 3657, 3673, 718, 560, 3613, 3643, 3693, 3713, 3719, 4851, 4851, 3651, 589, 3673, 3733, 3741, 3757, 3685, 513, 3771, 3779, 3795, 253, 3809, 3817, 3833, 3847, 3855, 182, 3873, 3880, 4851, 3896, 3904, 3909, 3914, 3919, 3921, 3924, 3927, 3929, 3932, 3935, 3939, 3941, 3944, 3947, 3949, 3952, 3955, 3958, 3960, 3963, 3966, 3968, 3971, 3974, 3977, 3980, 3982, 3986, 3988, 3991, 3994, 3996, 3999, 4002, 4005, 4008, 4010, 4013, 4016, 4018, 4021, 4024, 4027, 4029, 4031, 4034, 4036, 4039, 4042, 4045, 4048, 4050, 4052, 4055, 4058, 4061, 4064, 4066, 4069, 4072, 4074, 4077, 4081, 4083, 4085, 4087, 4090, 4092, 4095, 4098, 4101, 4103, 4105, 4108, 4111, 4113, 4116, 4119, 4121, 4124, 4127, 4129, 4132, 4135, 4137, 4140, 4143, 4146, 4149, 4153, 4157, 4159, 4161, 4163, 4166, 4168, 4171, 4174, 4176, 4178, 4181, 4184, 4186, 4189, 4192, 4194, 4196, 4199, 4202, 4205, 4208, 4210, 4213, 4216, 4219, 4222, 4225, 4228, 4230, 4233, 4236, 4241, 4245, 4247, 4249, 4251, 4253, 4256, 4258, 4261, 4264, 4267, 4270, 4272, 4274, 4277, 4280, 4282, 4285, 4288, 4290, 4293, 4296, 4298, 4301, 4304, 4306, 4309, 4312, 4315, 4317, 4320, 4323, 4326, 4329, 4332, 4335, 4339, 4341, 4343, 4345, 4347, 4350, 4353, 4355, 4358, 4361, 4363, 4366, 4369, 4371, 4373, 4376, 4379, 4382, 4385, 4388, 4390, 4393, 4396, 4399, 4402, 4405, 4408, 4411, 4414, 4416, 4419, 4422, 4427, 4431, 4433, 4435, 4437, 4440, 4443, 4445, 4448, 4451, 4453, 4456, 4459, 4461, 4464, 4467, 4470, 4473, 4476, 4478, 4481, 4484, 4487, 4490, 4493, 4496, 4499, 4502, 4506, 4510, 4512, 4514, 4517, 4520, 4523, 4526, 4528, 4531, 4534, 4537, 4540, 4543, 4546, 4549, 4552, 4555, 4558, 4560, 4563, 4566, 4570, 4572, 4574, 4577, 4579, 4582, 4585, 4587, 4590, 4593, 4596, 4599, 4602, 4605, 4608, 4611, 4614, 4617, 4619, 4621, 4623, 4626, 4629, 4631, 4634, 4637, 4640, 4643, 4646, 4650, 4652, 4654, 4657, 4659, 4662, 4665, 4668, 4672, 4674, 4677, 4679, 4682, 4686, 4689, 4693, 4697, 4701, 4705, 4709, 4713, 4717, 4721, 4725 } ; static yyconst flex_int16_t yy_def[1595] = { 0, 1301, 1, 1301, 1301, 1301, 1301, 1301, 1302, 1301, 1303, 1304, 1304, 1301, 1305, 1305, 15, 15, 15, 15, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 15, 15, 15, 1305, 1305, 1305, 1301, 1301, 1302, 1301, 1301, 1303, 1301, 1301, 1306, 1306, 1307, 1306, 1308, 1305, 15, 55, 1305, 55, 55, 1301, 55, 1305, 55, 1305, 1305, 55, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 55, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1309, 1309, 1310, 1309, 1311, 1308, 1301, 1312, 55, 1305, 1305, 1301, 141, 141, 141, 1305, 141, 1305, 1305, 141, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1301, 1305, 1305, 1301, 1305, 1301, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1301, 1301, 1313, 1313, 1314, 1313, 1315, 1316, 1317, 1301, 1301, 1318, 1319, 141, 1305, 1305, 1301, 235, 1305, 1305, 1305, 1305, 1305, 1305, 235, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1301, 1305, 1305, 1301, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1301, 1301, 1301, 1320, 1320, 1321, 1320, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 235, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1301, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1301, 1301, 1301, 1330, 1330, 1331, 1330, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 329, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1301, 1301, 1301, 1301, 1301, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1301, 1301, 1301, 1345, 1345, 1346, 1345, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 329, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1301, 1301, 1301, 1301, 1301, 1301, 1305, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1301, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1301, 1301, 1305, 1305, 1305, 1305, 1305, 1301, 1305, 1301, 1301, 1365, 1365, 1346, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1392, 1301, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1301, 1392, 1392, 1301, 1301, 1301, 1301, 1301, 1301, 1392, 1392, 1392, 1392, 1301, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1301, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1301, 1301, 1392, 1392, 1392, 1392, 1392, 1301, 1392, 1301, 1301, 1393, 1393, 1393, 1394, 1368, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1395, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1424, 1301, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1301, 1301, 1301, 1301, 1301, 1301, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1301, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1301, 1424, 1425, 1425, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1425, 1434, 1435, 1436, 1426, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1460, 1301, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1301, 1301, 1301, 1301, 1301, 1301, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1301, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1426, 841, 1426, 1461, 1462, 1463, 1464, 1465, 1461, 1466, 1467, 1462, 1468, 1469, 1470, 1471, 1472, 1473, 1463, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1480, 1489, 1490, 1491, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1301, 1301, 1301, 1301, 1301, 1301, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1493, 1493, 1470, 1494, 1495, 1496, 1493, 1497, 1494, 1498, 1473, 1463, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1506, 1511, 1512, 1510, 1507, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1301, 1301, 1301, 1301, 1301, 1301, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1521, 1521, 1499, 1522, 1523, 1524, 1525, 1502, 1526, 1527, 1505, 1522, 1528, 1529, 1530, 1507, 1508, 1531, 1532, 1533, 1531, 1534, 1535, 1536, 1537, 1538, 1532, 1539, 1540, 1541, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1301, 1301, 1301, 1301, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1542, 1542, 1526, 1543, 1544, 1526, 1528, 1545, 1546, 1547, 1548, 1549, 1535, 1550, 1551, 1538, 1550, 1532, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1018, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1301, 1301, 1301, 1301, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1559, 1559, 1560, 1561, 1547, 1560, 1562, 1563, 1564, 1552, 1565, 1555, 1566, 1567, 1558, 1565, 1568, 1569, 1570, 1018, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1301, 1301, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1571, 1571, 1547, 1572, 1301, 1573, 1301, 1574, 1566, 1568, 1575, 1576, 1577, 1578, 1301, 1018, 1520, 1520, 1520, 1520, 1520, 1520, 1301, 1301, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1579, 1579, 1580, 1580, 1581, 1577, 1575, 1582, 1583, 1520, 1520, 1520, 1520, 1520, 1520, 1301, 1301, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1584, 1584, 1301, 1301, 1585, 1301, 1189, 1520, 1520, 1520, 1520, 1301, 1301, 1520, 1520, 1520, 1520, 1520, 1520, 1586, 1586, 1583, 1189, 1520, 1520, 1520, 1520, 1301, 1301, 1520, 1520, 1520, 1520, 1520, 1520, 1587, 1587, 1189, 1520, 1520, 1520, 1301, 1301, 1520, 1520, 1520, 1520, 1520, 1520, 1588, 1588, 1520, 1301, 1301, 1520, 1520, 1520, 1589, 1589, 1256, 1301, 1301, 1520, 1520, 1590, 1590, 1256, 1301, 1301, 1520, 1520, 1591, 1591, 1256, 1301, 1301, 1520, 1520, 1520, 1592, 1592, 1520, 1520, 1520, 1593, 1593, 1286, 1520, 1594, 1594, 1286, 1301, 1301, 1520, 1301, 1301, 0, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301 } ; static yyconst flex_int16_t yy_nxt[4920] = { 0, 4, 5, 6, 7, 5, 4, 8, 9, 9, 4, 10, 11, 11, 12, 12, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 23, 23, 23, 23, 4, 35, 36, 36, 36, 36, 37, 23, 23, 23, 23, 23, 23, 38, 39, 40, 23, 23, 23, 23, 23, 23, 23, 23, 23, 41, 42, 385, 386, 42, 45, 45, 45, 45, 45, 47, 48, 49, 49, 50, 50, 50, 51, 47, 48, 50, 50, 50, 50, 50, 51, 48, 55, 55, 55, 55, 55, 51, 55, 55, 56, 55, 55, 55, 1301, 48, 55, 1301, 62, 57, 66, 135, 68, 1301, 67, 1301, 42, 144, 256, 42, 55, 1301, 1301, 63, 55, 55, 58, 59, 55, 55, 64, 48, 1301, 1301, 57, 69, 65, 230, 1301, 70, 80, 71, 256, 144, 81, 1301, 256, 1301, 60, 48, 55, 55, 55, 55, 55, 51, 55, 55, 55, 55, 55, 55, 72, 1301, 1301, 1301, 716, 144, 1301, 1301, 1301, 1301, 1301, 73, 1301, 1301, 1301, 718, 715, 956, 74, 1301, 61, 55, 55, 55, 55, 55, 75, 1301, 82, 1301, 48, 139, 1301, 76, 1149, 73, 226, 53, 78, 402, 85, 1301, 77, 90, 1301, 83, 1301, 1301, 86, 79, 1301, 84, 1301, 1301, 91, 1301, 87, 493, 1301, 92, 1301, 1301, 93, 1301, 108, 1301, 1301, 139, 48, 1301, 1301, 48, 1301, 234, 323, 1301, 94, 323, 98, 1301, 102, 109, 88, 110, 1301, 1301, 99, 89, 93, 139, 1301, 1301, 95, 117, 57, 327, 96, 1301, 1301, 118, 713, 94, 103, 1301, 98, 1301, 102, 185, 1301, 55, 111, 99, 97, 100, 112, 104, 152, 105, 369, 57, 106, 153, 1301, 101, 113, 114, 107, 154, 1301, 115, 73, 185, 120, 60, 116, 151, 1301, 55, 185, 119, 1301, 1301, 121, 1301, 369, 1301, 1301, 1301, 1301, 1301, 123, 1301, 93, 1301, 73, 98, 162, 958, 102, 1301, 1301, 77, 1301, 99, 1301, 332, 94, 584, 369, 584, 1301, 122, 45, 45, 45, 45, 45, 150, 93, 1301, 1301, 98, 162, 1301, 102, 148, 1301, 1301, 99, 1301, 332, 94, 129, 129, 130, 130, 130, 1301, 278, 183, 101, 162, 97, 332, 107, 124, 190, 720, 1301, 107, 125, 131, 132, 132, 132, 132, 60, 1301, 126, 127, 158, 1301, 719, 278, 77, 183, 1301, 48, 1301, 155, 1022, 124, 190, 319, 1301, 107, 125, 1301, 278, 1301, 1301, 60, 1301, 126, 127, 1301, 1301, 183, 77, 1301, 722, 190, 1301, 723, 156, 128, 47, 48, 133, 133, 134, 134, 134, 135, 47, 48, 134, 134, 134, 134, 134, 135, 141, 141, 141, 141, 141, 135, 141, 141, 141, 141, 141, 141, 1301, 1301, 1301, 157, 1301, 1301, 1301, 143, 1301, 159, 1301, 1301, 1301, 725, 1301, 1203, 161, 1301, 1301, 1301, 141, 141, 141, 141, 141, 141, 1301, 193, 160, 1301, 1301, 1301, 1301, 143, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 161, 1301, 1301, 1301, 1301, 1301, 164, 1301, 1301, 193, 1301, 1301, 558, 717, 1301, 144, 735, 1301, 193, 162, 1301, 1301, 1301, 1301, 1301, 1301, 238, 1301, 1301, 174, 165, 1301, 166, 175, 167, 169, 558, 1301, 168, 1301, 286, 1301, 171, 558, 1301, 1301, 1301, 173, 170, 1301, 238, 172, 736, 1301, 1301, 179, 1301, 180, 1301, 238, 176, 1301, 726, 1301, 286, 1301, 177, 1301, 1301, 1301, 178, 1301, 286, 1301, 1301, 1301, 182, 1301, 1301, 1301, 1301, 1301, 183, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 189, 184, 1301, 185, 1301, 1301, 182, 280, 1301, 1301, 181, 1301, 183, 187, 192, 1301, 1301, 1301, 206, 1301, 1301, 1301, 1301, 1301, 1301, 184, 189, 185, 183, 186, 737, 280, 185, 1280, 188, 1301, 1301, 1301, 192, 191, 280, 194, 200, 1301, 1301, 190, 1301, 193, 1301, 823, 199, 190, 195, 1301, 1301, 1301, 727, 196, 197, 1301, 1301, 1301, 1301, 198, 1301, 1301, 1301, 1301, 201, 256, 1301, 1301, 1301, 1301, 1301, 202, 1301, 190, 1301, 1301, 203, 1301, 1301, 1301, 204, 1301, 205, 1301, 373, 1301, 208, 215, 721, 256, 1301, 465, 190, 256, 210, 209, 1301, 207, 1301, 214, 1301, 217, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 211, 373, 218, 918, 918, 1301, 465, 48, 1301, 1301, 216, 212, 278, 406, 465, 213, 1301, 373, 740, 280, 1301, 738, 1301, 1301, 369, 1301, 219, 1301, 223, 48, 129, 129, 130, 130, 130, 406, 48, 278, 724, 220, 1301, 1301, 406, 280, 1301, 1301, 1301, 1301, 1301, 144, 369, 183, 283, 223, 221, 130, 130, 130, 130, 130, 131, 132, 132, 132, 132, 237, 193, 739, 185, 132, 132, 132, 132, 132, 369, 144, 748, 183, 1279, 751, 221, 47, 48, 224, 224, 225, 225, 225, 226, 237, 193, 1301, 185, 231, 232, 232, 232, 232, 238, 222, 47, 48, 225, 225, 225, 225, 225, 226, 235, 235, 235, 235, 235, 226, 235, 235, 235, 235, 235, 235, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 728, 1301, 461, 1301, 1301, 235, 235, 235, 235, 235, 235, 242, 1301, 889, 236, 1301, 1301, 1301, 1301, 250, 1301, 1301, 244, 247, 1301, 1301, 1301, 1301, 461, 1301, 249, 1301, 245, 1301, 1301, 253, 741, 1220, 554, 248, 1301, 755, 1301, 1301, 1301, 1301, 1301, 1301, 443, 1301, 461, 750, 1301, 1301, 1301, 1301, 255, 254, 1301, 1301, 1301, 251, 1301, 554, 1301, 252, 1301, 1301, 1301, 1301, 1301, 444, 1301, 1301, 743, 257, 1301, 1301, 554, 445, 255, 1301, 1301, 1301, 256, 264, 265, 1301, 1301, 1301, 1301, 1301, 1301, 742, 1301, 1301, 1301, 259, 1301, 260, 1301, 1301, 258, 1301, 262, 1273, 1301, 1301, 1301, 1301, 1301, 261, 1301, 1301, 263, 681, 1163, 1301, 269, 1301, 749, 1301, 1301, 1301, 1301, 267, 270, 1301, 1301, 266, 1301, 1301, 1301, 1301, 752, 268, 1301, 1301, 1301, 273, 1301, 744, 1301, 754, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 271, 1301, 1301, 1301, 753, 1301, 1301, 1301, 1301, 1301, 277, 1301, 1301, 272, 1301, 1301, 275, 1301, 1301, 279, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 745, 1301, 274, 1301, 1301, 1301, 1301, 1272, 277, 1301, 1301, 1301, 285, 282, 276, 1301, 279, 1301, 281, 840, 1301, 1301, 810, 278, 1301, 280, 284, 681, 287, 293, 1301, 1301, 1301, 1301, 801, 1301, 285, 1301, 288, 756, 289, 1301, 1301, 1301, 286, 1301, 1301, 1301, 290, 1301, 1301, 291, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 295, 1301, 1301, 1301, 760, 1301, 292, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 294, 297, 1301, 1301, 302, 1301, 1301, 300, 1301, 1301, 833, 1301, 296, 299, 298, 301, 1301, 1301, 1301, 1301, 1266, 1301, 1301, 1301, 305, 1301, 306, 309, 1301, 303, 757, 1301, 1301, 1301, 308, 1301, 1301, 1301, 304, 307, 1301, 1301, 758, 1301, 1301, 1301, 48, 1301, 1301, 1301, 139, 278, 411, 1301, 310, 1301, 413, 1301, 313, 286, 1301, 311, 1301, 256, 315, 315, 316, 316, 316, 139, 1301, 1265, 838, 1301, 1301, 416, 278, 231, 232, 232, 232, 232, 313, 286, 48, 1301, 804, 256, 1301, 312, 497, 314, 232, 232, 232, 232, 232, 803, 1301, 1301, 1301, 47, 48, 317, 317, 318, 318, 318, 319, 47, 48, 318, 318, 318, 318, 318, 319, 329, 329, 329, 329, 329, 319, 329, 329, 329, 329, 329, 329, 1301, 805, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 336, 1301, 446, 1301, 1301, 329, 329, 329, 329, 329, 329, 331, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 344, 334, 447, 330, 337, 1301, 1301, 1301, 335, 1301, 448, 1301, 1301, 331, 1301, 1301, 338, 892, 806, 1301, 1301, 1301, 1301, 1301, 1301, 808, 332, 343, 1301, 1301, 339, 1301, 1301, 461, 1301, 1301, 1301, 1301, 1301, 342, 1301, 1301, 1301, 1301, 347, 341, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 345, 1301, 1301, 346, 1301, 1301, 461, 1301, 1301, 1301, 1301, 1301, 350, 1301, 1301, 812, 1301, 353, 1301, 349, 1301, 355, 1301, 1301, 354, 807, 1258, 1301, 461, 1301, 1301, 351, 1301, 1301, 356, 1301, 1301, 1301, 1301, 888, 1301, 1301, 1301, 1301, 1301, 352, 357, 1257, 1301, 358, 1301, 1301, 1133, 362, 835, 1301, 1301, 1301, 1301, 1301, 360, 1301, 1301, 364, 359, 834, 1301, 1301, 1301, 361, 1301, 1301, 1301, 1301, 809, 363, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 368, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 365, 1301, 1301, 372, 1301, 1301, 1301, 1301, 1301, 367, 366, 811, 368, 1301, 1301, 747, 1301, 1301, 370, 1301, 1301, 1301, 1301, 375, 1301, 1301, 1301, 814, 1301, 372, 371, 374, 1301, 1301, 1301, 821, 369, 1301, 1301, 1301, 747, 1301, 1301, 1301, 1301, 373, 1301, 1301, 1301, 376, 378, 1301, 747, 1301, 377, 1301, 1301, 379, 1301, 1301, 1301, 1301, 1301, 1301, 825, 1301, 1301, 1301, 380, 1301, 1301, 822, 1301, 1301, 381, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 383, 1301, 1301, 1301, 1301, 1087, 907, 1301, 1301, 382, 1301, 1301, 1301, 1301, 387, 1301, 1301, 1301, 1301, 1301, 890, 1301, 384, 1301, 1301, 461, 388, 369, 1301, 389, 390, 1301, 48, 1040, 1301, 1301, 392, 1301, 497, 332, 1301, 465, 391, 394, 1301, 395, 1301, 393, 1301, 1301, 1301, 461, 653, 369, 1301, 369, 1301, 1301, 1301, 1301, 824, 1301, 1301, 373, 332, 465, 396, 332, 1301, 1301, 1301, 813, 1301, 488, 1301, 1301, 827, 397, 653, 1239, 399, 369, 315, 315, 316, 316, 316, 1301, 826, 373, 1164, 399, 332, 316, 316, 316, 316, 316, 653, 828, 829, 418, 837, 1301, 47, 398, 400, 400, 401, 401, 401, 402, 47, 1301, 401, 401, 401, 401, 401, 402, 1301, 417, 417, 417, 417, 417, 402, 417, 417, 417, 417, 417, 417, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 422, 1301, 881, 1301, 831, 1301, 1301, 417, 417, 417, 417, 417, 417, 1301, 1301, 1301, 1134, 424, 1301, 1301, 425, 1301, 423, 1301, 1301, 429, 1301, 1301, 987, 1301, 1301, 1301, 1301, 1301, 421, 831, 1301, 419, 420, 1301, 1301, 426, 428, 832, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 432, 1301, 433, 1301, 1301, 1301, 681, 1301, 1301, 1301, 1301, 1301, 427, 430, 1301, 431, 434, 1301, 903, 1301, 1301, 1301, 1301, 1301, 1301, 435, 1301, 1301, 1301, 1301, 954, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 439, 1301, 830, 1301, 1247, 1301, 1301, 1301, 1301, 1301, 438, 653, 1301, 965, 1301, 1301, 449, 1301, 437, 1301, 1301, 453, 440, 1301, 1301, 836, 1301, 1301, 1301, 1301, 1246, 441, 1301, 831, 442, 450, 1301, 653, 1301, 1301, 1301, 1301, 451, 1301, 1301, 1301, 1301, 1301, 460, 455, 1301, 454, 456, 1301, 1301, 1301, 1301, 653, 1301, 1301, 839, 459, 1301, 1301, 1301, 1301, 1301, 1301, 457, 458, 1301, 1301, 885, 1301, 460, 882, 1301, 1301, 466, 1301, 1301, 1301, 1301, 1301, 1301, 462, 1301, 1301, 1301, 464, 1301, 1301, 1301, 1233, 1301, 1301, 461, 1301, 463, 1301, 1301, 1301, 883, 1301, 467, 1301, 471, 470, 472, 1301, 1301, 469, 468, 464, 1301, 1301, 1301, 1301, 906, 473, 1301, 465, 1301, 1301, 1301, 475, 1301, 900, 1301, 904, 1301, 1301, 1301, 1301, 1301, 474, 1301, 1301, 1301, 975, 1301, 1301, 1301, 1301, 476, 1301, 1301, 1301, 1301, 1301, 477, 1301, 481, 1301, 483, 1301, 1301, 489, 489, 490, 490, 490, 48, 48, 48, 1301, 1301, 480, 497, 502, 497, 1301, 48, 1301, 1301, 1301, 482, 886, 502, 139, 139, 484, 887, 1301, 139, 507, 510, 1301, 1301, 1301, 510, 1301, 485, 1093, 1301, 1301, 487, 48, 1301, 1301, 1301, 976, 1301, 590, 1301, 47, 1301, 491, 491, 492, 492, 492, 493, 47, 1301, 492, 492, 492, 492, 492, 493, 513, 513, 513, 513, 513, 493, 513, 513, 513, 513, 513, 513, 1301, 1301, 1301, 1301, 880, 1301, 1301, 1301, 1301, 1301, 515, 1301, 901, 1301, 1029, 1301, 1232, 48, 1301, 1301, 513, 513, 513, 513, 513, 513, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 514, 1301, 1301, 1301, 516, 1301, 1301, 1301, 518, 1301, 1301, 1301, 1301, 1301, 911, 902, 1301, 519, 521, 1301, 526, 1301, 1301, 1301, 1301, 1301, 1301, 905, 523, 1301, 1301, 1301, 1301, 1301, 884, 1301, 1301, 1301, 1301, 1301, 525, 520, 891, 522, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 529, 899, 1301, 1301, 524, 527, 1301, 530, 1301, 1301, 1301, 1301, 1301, 1301, 531, 1301, 1301, 528, 1301, 1301, 1301, 533, 1301, 534, 1301, 542, 1301, 1301, 1301, 543, 1098, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 908, 1127, 1301, 535, 1301, 916, 544, 547, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 545, 910, 549, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 548, 1301, 550, 1301, 553, 1301, 1301, 1301, 552, 1301, 1301, 1301, 1301, 912, 1301, 1301, 1301, 557, 1149, 551, 555, 1301, 1301, 1301, 1301, 913, 556, 559, 1301, 553, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 557, 1217, 1301, 554, 1301, 562, 1301, 558, 1301, 1301, 560, 561, 563, 915, 1301, 1301, 972, 1301, 1301, 564, 1301, 1301, 1301, 1301, 1301, 1301, 569, 1301, 962, 1301, 1301, 1301, 1301, 1301, 565, 974, 566, 1301, 1301, 575, 1301, 570, 1301, 955, 1301, 576, 1301, 568, 1301, 1301, 1301, 909, 554, 1301, 48, 1301, 1301, 567, 48, 1301, 590, 558, 48, 48, 594, 574, 1301, 48, 590, 594, 573, 1301, 960, 594, 1301, 1301, 48, 554, 577, 1301, 1301, 139, 601, 579, 1301, 558, 977, 603, 1301, 1301, 139, 1301, 580, 1301, 963, 1301, 606, 1301, 984, 1301, 581, 489, 489, 490, 490, 490, 981, 1301, 581, 490, 490, 490, 490, 490, 47, 1216, 582, 582, 583, 583, 583, 584, 47, 1301, 583, 583, 583, 583, 583, 584, 139, 139, 139, 959, 914, 978, 606, 606, 611, 612, 612, 612, 612, 612, 584, 612, 612, 612, 612, 612, 612, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 957, 1301, 1301, 612, 612, 612, 612, 612, 612, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 621, 1301, 1301, 48, 622, 1149, 1301, 616, 613, 615, 1080, 617, 1301, 973, 1149, 618, 620, 623, 961, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 624, 1301, 625, 1301, 1301, 1301, 1301, 1301, 1301, 619, 1301, 626, 1301, 1301, 1301, 979, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 627, 980, 1301, 1301, 645, 1301, 1301, 631, 1301, 630, 1301, 628, 1301, 1301, 1301, 48, 1301, 982, 1301, 1301, 640, 685, 1301, 1301, 644, 1301, 1301, 1301, 1301, 1019, 1301, 638, 639, 641, 643, 647, 1301, 1301, 1196, 1195, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 139, 646, 1027, 1301, 1301, 1301, 1301, 648, 1301, 1301, 1301, 649, 1301, 1301, 650, 1301, 1301, 1301, 1301, 1301, 1301, 652, 1301, 654, 651, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 655, 1301, 1301, 1301, 656, 1301, 1301, 1301, 1301, 1301, 652, 1301, 1301, 1301, 1301, 1301, 661, 1035, 1301, 657, 1301, 658, 1301, 1301, 1301, 662, 1301, 659, 660, 1301, 653, 48, 1301, 1301, 671, 1301, 48, 688, 1149, 48, 1301, 1301, 668, 663, 669, 685, 664, 1301, 1301, 1301, 1301, 1101, 1301, 48, 665, 48, 985, 670, 1301, 688, 1301, 688, 1301, 1301, 1301, 1301, 672, 964, 1301, 1034, 674, 675, 675, 676, 676, 676, 47, 1301, 677, 677, 678, 678, 678, 584, 47, 1078, 678, 678, 678, 678, 678, 584, 1301, 48, 48, 48, 139, 139, 139, 695, 688, 695, 701, 603, 603, 139, 139, 139, 139, 1301, 983, 603, 708, 603, 708, 712, 712, 712, 712, 712, 584, 712, 712, 712, 712, 712, 712, 1301, 675, 675, 676, 676, 676, 676, 676, 676, 676, 676, 48, 48, 48, 746, 1301, 138, 685, 769, 769, 712, 712, 712, 712, 712, 712, 47, 1023, 761, 761, 762, 762, 762, 681, 1044, 1301, 1149, 1301, 47, 746, 762, 762, 762, 762, 762, 681, 48, 48, 48, 48, 48, 747, 769, 775, 769, 775, 775, 48, 139, 139, 139, 139, 139, 783, 785, 788, 701, 701, 792, 139, 139, 139, 139, 139, 1024, 701, 792, 788, 792, 799, 800, 800, 800, 800, 800, 681, 800, 800, 800, 800, 800, 800, 47, 1301, 841, 841, 842, 842, 842, 681, 47, 1301, 842, 842, 842, 842, 842, 681, 1301, 1301, 1301, 1137, 800, 800, 800, 800, 800, 800, 48, 48, 48, 48, 48, 48, 769, 769, 851, 769, 851, 851, 48, 48, 48, 139, 139, 139, 858, 851, 858, 785, 865, 865, 139, 139, 139, 139, 139, 139, 785, 785, 788, 865, 788, 874, 139, 139, 139, 1301, 1140, 1143, 865, 788, 874, 879, 879, 879, 879, 879, 681, 879, 879, 879, 879, 879, 879, 47, 1047, 917, 917, 918, 918, 918, 681, 48, 48, 48, 48, 48, 48, 769, 769, 851, 851, 927, 851, 879, 879, 879, 879, 879, 879, 48, 48, 48, 139, 139, 139, 927, 927, 935, 865, 865, 865, 139, 139, 139, 139, 139, 139, 940, 865, 865, 944, 865, 865, 139, 139, 139, 139, 139, 1301, 944, 865, 940, 944, 952, 953, 953, 953, 953, 953, 681, 953, 953, 953, 953, 953, 953, 1301, 47, 1168, 988, 988, 989, 989, 989, 681, 47, 1167, 989, 989, 989, 989, 989, 681, 1043, 1301, 139, 953, 953, 953, 953, 953, 953, 1301, 48, 48, 48, 48, 48, 48, 769, 851, 851, 927, 927, 998, 48, 48, 139, 986, 139, 139, 927, 998, 865, 139, 865, 865, 139, 139, 139, 940, 139, 139, 865, 865, 940, 139, 865, 940, 139, 139, 139, 940, 139, 1301, 1013, 940, 940, 1301, 1013, 1018, 1018, 1018, 1018, 1018, 681, 1018, 1018, 1018, 1018, 1018, 1018, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 48, 48, 48, 1301, 1301, 1301, 851, 927, 927, 1018, 1018, 1018, 1018, 1018, 1018, 1021, 47, 1020, 1049, 1049, 1050, 1050, 1050, 767, 1037, 1038, 48, 1149, 1025, 1026, 1042, 1046, 1045, 1048, 1036, 1028, 1076, 1039, 1097, 1053, 47, 1041, 1050, 1050, 1050, 1050, 1050, 767, 48, 48, 48, 139, 139, 139, 998, 998, 1060, 865, 865, 940, 139, 139, 139, 139, 139, 139, 940, 1064, 940, 940, 940, 940, 139, 139, 139, 139, 139, 1301, 1064, 940, 1064, 1064, 1073, 1074, 1074, 1074, 1074, 1074, 767, 1074, 1074, 1074, 1074, 1074, 1074, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1088, 1301, 1301, 1301, 1301, 1149, 1301, 1301, 1301, 1053, 1074, 1074, 1074, 1074, 1074, 1074, 1077, 1089, 1079, 47, 1092, 1102, 1102, 1103, 1103, 1103, 767, 1301, 1130, 1129, 1075, 1081, 1082, 1095, 1100, 1099, 1094, 1128, 1136, 1090, 1091, 1132, 47, 1096, 1103, 1103, 1103, 1103, 1103, 767, 1301, 48, 48, 48, 48, 139, 922, 927, 998, 998, 1060, 940, 139, 139, 139, 139, 139, 139, 940, 1064, 940, 940, 1064, 1064, 139, 139, 139, 139, 1301, 1301, 1116, 1064, 1064, 1116, 1121, 1121, 1121, 1121, 1121, 1301, 1121, 1121, 1121, 1121, 1121, 1121, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 139, 47, 1301, 1145, 1145, 1146, 1146, 1146, 767, 139, 1121, 1121, 1121, 1121, 1121, 1121, 1123, 1122, 138, 47, 1124, 1146, 1146, 1146, 1146, 1146, 767, 1125, 1135, 1141, 1161, 1301, 1131, 48, 1139, 1126, 1138, 1144, 1142, 998, 48, 139, 139, 139, 139, 139, 1060, 1064, 1064, 1064, 1064, 1116, 139, 139, 139, 139, 1301, 1301, 1064, 1116, 1116, 1159, 1160, 1160, 1160, 1160, 1160, 1301, 1160, 1160, 1160, 1160, 1160, 1160, 1162, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 48, 1301, 1053, 1165, 1053, 1166, 1060, 1160, 1160, 1160, 1160, 1160, 1160, 47, 1301, 1180, 1180, 1181, 1181, 1181, 767, 1253, 1169, 1053, 1175, 139, 1177, 1178, 1191, 1174, 1197, 1064, 1301, 139, 1171, 1172, 1179, 1176, 1170, 1116, 47, 1173, 1181, 1181, 1181, 1181, 1181, 767, 139, 139, 139, 139, 1301, 1301, 1116, 1116, 1116, 1159, 1189, 1189, 1189, 1189, 1189, 1301, 1189, 1189, 1189, 1189, 1189, 1189, 1301, 1301, 1301, 1301, 1301, 1202, 1301, 139, 139, 139, 1192, 139, 1301, 1116, 1116, 1159, 1190, 1159, 138, 1053, 1189, 1189, 1189, 1189, 1189, 1189, 1301, 1193, 1086, 1085, 1084, 1194, 1301, 1198, 1199, 1200, 1301, 1301, 1201, 1204, 47, 1213, 1205, 1205, 1206, 1206, 1206, 922, 47, 1301, 1206, 1206, 1206, 1206, 1206, 922, 1211, 1211, 1211, 1211, 1211, 922, 1211, 1211, 1211, 1211, 1211, 1211, 1301, 1212, 1301, 1301, 1215, 1301, 1301, 1222, 1231, 47, 1214, 1224, 1224, 1225, 1225, 1225, 922, 1301, 1083, 1301, 1211, 1211, 1211, 1211, 1211, 1211, 1301, 1301, 1301, 1301, 1221, 1301, 1218, 1223, 1219, 47, 1228, 1225, 1225, 1225, 1225, 1225, 922, 139, 139, 1301, 1236, 1301, 1234, 1159, 1159, 1227, 1227, 1227, 1227, 1227, 1237, 1227, 1227, 1227, 1227, 1227, 1227, 1229, 1301, 1230, 1238, 47, 1248, 1240, 1240, 1241, 1241, 1241, 922, 47, 1235, 1241, 1241, 1241, 1241, 1241, 922, 1227, 1227, 1227, 1227, 1227, 1227, 139, 1243, 1301, 1301, 1301, 1301, 1159, 1242, 1242, 1242, 1242, 1242, 1301, 1242, 1242, 1242, 1242, 1242, 1242, 1301, 1301, 1301, 47, 1250, 1254, 1254, 1255, 1255, 1255, 922, 1301, 1301, 1301, 1244, 1245, 1301, 1260, 1259, 1301, 1242, 1242, 1242, 1242, 1242, 1242, 1301, 1249, 139, 1252, 1251, 47, 1053, 1255, 1255, 1255, 1255, 1255, 922, 1256, 1256, 1256, 1256, 1256, 1261, 1256, 1256, 1256, 1256, 1256, 1256, 47, 1268, 1262, 1262, 1263, 1263, 1263, 1053, 47, 1275, 1263, 1263, 1263, 1263, 1263, 1053, 1301, 1267, 922, 138, 1256, 1256, 1256, 1256, 1256, 1256, 1264, 1264, 1264, 1264, 1264, 1053, 1264, 1264, 1264, 1264, 1264, 1264, 47, 922, 1269, 1269, 1270, 1270, 1270, 1053, 47, 1301, 1270, 1270, 1270, 1270, 1270, 1053, 1053, 922, 1274, 922, 1264, 1264, 1264, 1264, 1264, 1264, 1271, 1271, 1271, 1271, 1271, 1301, 1271, 1271, 1271, 1271, 1271, 1271, 47, 1301, 1276, 1276, 1277, 1277, 1277, 1053, 47, 1301, 1277, 1277, 1277, 1277, 1277, 1053, 1033, 1032, 1281, 1031, 1271, 1271, 1271, 1271, 1271, 1271, 1278, 1278, 1278, 1278, 1278, 1301, 1278, 1278, 1278, 1278, 1278, 1278, 1030, 1301, 1282, 139, 139, 1301, 47, 1283, 1284, 1284, 1285, 1285, 1285, 1053, 139, 1287, 138, 922, 922, 767, 1278, 1278, 1278, 1278, 1278, 1278, 47, 1288, 1285, 1285, 1285, 1285, 1285, 1053, 1286, 1286, 1286, 1286, 1286, 1292, 1286, 1286, 1286, 1286, 1286, 1286, 47, 138, 1289, 1289, 1290, 1290, 1290, 1149, 47, 138, 1290, 1290, 1290, 1290, 1290, 1149, 922, 767, 767, 1301, 1286, 1286, 1286, 1286, 1286, 1286, 1291, 1291, 1291, 1291, 1291, 1149, 1291, 1291, 1291, 1291, 1291, 1291, 47, 1301, 1293, 1293, 1294, 1294, 1294, 1149, 47, 971, 1294, 1294, 1294, 1294, 1294, 1149, 970, 969, 968, 967, 1291, 1291, 1291, 1291, 1291, 1291, 1295, 1295, 1295, 1295, 1295, 966, 1295, 1295, 1295, 1295, 1295, 1295, 47, 1301, 1296, 1296, 1297, 1297, 1297, 1149, 47, 139, 1297, 1297, 1297, 1297, 1297, 1149, 139, 922, 767, 138, 1295, 1295, 1295, 1295, 1295, 1295, 1298, 1298, 1298, 1298, 1298, 767, 1298, 1298, 1298, 1298, 1298, 1298, 47, 767, 1299, 1299, 1300, 1300, 1300, 1149, 47, 138, 1300, 1300, 1300, 1300, 1300, 1149, 922, 767, 767, 681, 1298, 1298, 1298, 1298, 1298, 1298, 47, 681, 1299, 1299, 1300, 1300, 1300, 47, 1301, 1300, 1300, 1300, 1300, 1300, 43, 43, 43, 43, 43, 43, 43, 43, 46, 898, 46, 46, 46, 46, 46, 46, 52, 52, 52, 52, 54, 54, 54, 54, 54, 54, 136, 136, 136, 136, 137, 137, 140, 140, 227, 227, 227, 227, 228, 228, 229, 229, 229, 233, 233, 233, 320, 320, 320, 320, 321, 321, 322, 322, 322, 324, 324, 324, 325, 325, 326, 326, 326, 328, 328, 403, 897, 403, 403, 404, 404, 405, 405, 405, 407, 407, 407, 408, 408, 409, 409, 409, 410, 410, 410, 412, 412, 412, 414, 414, 415, 415, 415, 494, 896, 494, 494, 495, 495, 496, 496, 496, 498, 498, 498, 499, 499, 500, 500, 500, 501, 501, 501, 503, 503, 503, 504, 504, 504, 505, 505, 506, 506, 506, 508, 508, 509, 509, 509, 511, 511, 511, 512, 512, 585, 895, 585, 585, 586, 586, 587, 587, 589, 589, 589, 591, 591, 592, 592, 592, 593, 593, 593, 595, 595, 595, 596, 596, 596, 597, 597, 598, 598, 599, 599, 599, 600, 600, 600, 602, 602, 602, 604, 604, 605, 605, 605, 607, 607, 607, 608, 608, 609, 609, 609, 610, 610, 610, 679, 894, 679, 679, 680, 680, 682, 682, 683, 683, 684, 684, 684, 686, 686, 687, 687, 687, 689, 689, 689, 690, 690, 690, 691, 691, 692, 692, 693, 693, 693, 694, 694, 694, 696, 696, 697, 697, 697, 698, 698, 698, 699, 699, 700, 700, 700, 702, 702, 703, 703, 703, 704, 704, 704, 705, 705, 706, 706, 706, 707, 707, 707, 709, 709, 709, 710, 710, 710, 711, 711, 54, 54, 893, 54, 54, 763, 139, 763, 763, 764, 764, 765, 765, 766, 766, 679, 679, 679, 686, 686, 768, 768, 768, 770, 770, 770, 771, 771, 772, 772, 773, 773, 773, 774, 774, 774, 776, 776, 777, 777, 777, 778, 778, 778, 779, 779, 780, 780, 781, 781, 781, 782, 782, 782, 784, 784, 784, 786, 786, 787, 787, 787, 789, 789, 789, 790, 790, 790, 791, 791, 791, 793, 793, 793, 794, 794, 794, 795, 795, 796, 796, 796, 797, 797, 797, 798, 798, 798, 54, 54, 139, 54, 54, 843, 139, 843, 843, 844, 844, 845, 845, 846, 846, 847, 847, 848, 848, 848, 771, 771, 849, 849, 849, 850, 850, 850, 852, 852, 852, 853, 853, 853, 854, 854, 855, 855, 856, 856, 856, 857, 857, 857, 859, 859, 860, 860, 860, 861, 861, 861, 862, 862, 863, 863, 863, 786, 786, 864, 864, 864, 866, 866, 866, 867, 867, 784, 784, 784, 868, 868, 868, 869, 869, 869, 870, 870, 871, 871, 871, 872, 872, 872, 873, 873, 873, 875, 875, 875, 876, 876, 876, 877, 877, 877, 878, 878, 54, 54, 139, 54, 54, 845, 845, 919, 919, 920, 920, 921, 921, 923, 923, 923, 924, 924, 924, 854, 854, 925, 925, 925, 926, 926, 926, 928, 928, 929, 929, 929, 930, 930, 930, 931, 931, 932, 932, 933, 933, 933, 934, 934, 934, 936, 936, 936, 937, 937, 937, 867, 867, 938, 938, 938, 939, 939, 939, 941, 941, 941, 942, 942, 942, 943, 943, 943, 945, 945, 945, 946, 946, 946, 947, 947, 947, 948, 948, 949, 949, 949, 950, 950, 950, 951, 951, 951, 54, 54, 138, 54, 54, 845, 767, 845, 845, 990, 990, 991, 991, 992, 992, 993, 993, 993, 994, 994, 994, 995, 995, 996, 996, 996, 997, 997, 997, 999, 999, 1000, 1000, 1000, 1001, 1001, 1001, 1002, 1002, 1003, 1003, 1003, 1004, 1004, 1004, 1005, 1005, 1005, 1006, 1006, 1006, 1007, 1007, 1008, 1008, 1008, 1009, 1009, 1009, 1010, 1010, 1010, 1011, 1011, 1011, 1012, 1012, 1012, 1014, 1014, 1014, 1015, 1015, 1015, 1016, 1016, 1016, 1017, 1017, 54, 54, 767, 54, 54, 919, 681, 919, 919, 1051, 1051, 1052, 1052, 990, 990, 990, 1054, 1054, 1054, 1055, 1055, 1055, 1056, 1056, 1056, 1057, 1057, 1058, 1058, 1058, 1059, 1059, 1059, 1061, 1061, 1061, 1062, 1062, 1062, 1063, 1063, 1063, 1065, 1065, 1065, 1066, 1066, 1066, 1067, 1067, 1067, 1068, 1068, 1068, 1069, 1069, 1070, 1070, 1070, 1071, 1071, 1071, 1072, 1072, 1072, 928, 138, 928, 928, 1104, 1104, 1105, 1105, 1106, 1106, 1106, 1107, 1107, 1108, 1108, 1108, 1109, 1109, 1109, 1110, 1110, 1111, 1111, 1111, 1112, 1112, 1112, 1113, 1113, 1113, 1114, 1114, 1114, 1115, 1115, 1115, 1117, 1117, 1117, 1118, 1118, 1118, 1119, 1119, 1119, 1120, 1120, 920, 138, 920, 920, 1147, 1147, 1148, 1148, 1150, 1150, 1151, 1151, 1151, 1152, 1152, 1153, 1153, 1153, 1154, 1154, 1154, 1155, 1155, 1155, 1156, 1156, 1156, 1157, 1157, 1157, 1158, 1158, 1158, 990, 138, 990, 990, 1182, 1182, 1183, 1183, 1184, 1184, 1185, 1185, 1185, 1186, 1186, 1186, 1187, 1187, 1187, 1188, 1188, 1188, 995, 767, 995, 995, 1207, 1207, 1208, 1208, 1209, 1209, 1209, 1210, 1210, 1210, 999, 681, 999, 999, 1226, 1226, 1226, 1051, 681, 1051, 1051, 1055, 1301, 1055, 1055, 1057, 1301, 1057, 1057, 1107, 1301, 1107, 1107, 1147, 1301, 1147, 1147, 1108, 1301, 1108, 1108, 1150, 820, 1150, 1150, 1183, 819, 1183, 1183, 1207, 818, 1207, 1207, 817, 816, 815, 1301, 1301, 802, 139, 139, 767, 681, 138, 681, 681, 138, 138, 767, 681, 138, 681, 759, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 734, 733, 732, 731, 730, 729, 1301, 1301, 714, 139, 139, 139, 138, 681, 681, 138, 138, 138, 681, 681, 138, 673, 667, 666, 642, 637, 636, 635, 634, 633, 632, 629, 614, 139, 139, 588, 138, 138, 588, 138, 578, 572, 571, 546, 541, 540, 539, 538, 537, 536, 532, 517, 139, 139, 138, 138, 138, 486, 479, 478, 452, 436, 139, 138, 138, 348, 340, 333, 139, 138, 138, 246, 243, 241, 240, 239, 138, 163, 149, 147, 146, 145, 142, 139, 138, 44, 55, 53, 44, 1301, 3, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301 } ; static yyconst flex_int16_t yy_chk[4920] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 300, 300, 5, 9, 9, 9, 9, 9, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 52, 52, 17, 21, 16, 14, 17, 52, 18, 21, 17, 23, 42, 60, 162, 42, 18, 23, 616, 16, 14, 14, 14, 14, 14, 14, 16, 137, 54, 619, 14, 18, 16, 137, 54, 18, 21, 18, 162, 60, 21, 882, 162, 615, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 19, 20, 21, 24, 616, 60, 22, 20, 26, 24, 23, 19, 22, 30, 26, 619, 615, 882, 19, 30, 15, 15, 15, 15, 15, 15, 19, 54, 22, 136, 136, 138, 320, 19, 1298, 19, 136, 138, 20, 320, 24, 25, 19, 26, 15, 22, 31, 25, 25, 20, 403, 22, 31, 613, 26, 27, 25, 403, 20, 26, 24, 27, 27, 22, 30, 26, 28, 140, 228, 29, 30, 229, 28, 140, 228, 29, 27, 229, 28, 32, 29, 31, 25, 31, 33, 32, 28, 25, 27, 233, 33, 65, 27, 33, 35, 233, 27, 65, 25, 33, 613, 27, 29, 31, 28, 1292, 29, 127, 884, 35, 32, 28, 27, 28, 32, 29, 66, 29, 280, 35, 29, 66, 34, 28, 32, 32, 29, 66, 34, 32, 37, 127, 34, 35, 32, 65, 32, 37, 127, 33, 64, 33, 34, 39, 280, 38, 64, 40, 65, 39, 37, 38, 38, 40, 37, 39, 77, 884, 40, 621, 494, 37, 585, 39, 62, 238, 38, 494, 280, 585, 62, 34, 45, 45, 45, 45, 45, 64, 38, 34, 67, 39, 77, 70, 40, 62, 67, 620, 39, 70, 238, 38, 47, 47, 47, 47, 47, 64, 183, 124, 39, 77, 38, 238, 40, 41, 101, 621, 624, 41, 41, 48, 48, 48, 48, 48, 41, 958, 41, 41, 70, 62, 620, 183, 41, 124, 227, 227, 68, 67, 958, 41, 101, 227, 68, 41, 41, 67, 183, 69, 70, 41, 623, 41, 41, 69, 71, 124, 41, 626, 623, 101, 71, 624, 68, 41, 49, 49, 49, 49, 49, 49, 49, 49, 50, 50, 50, 50, 50, 50, 50, 50, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 57, 68, 1178, 69, 73, 75, 57, 57, 72, 71, 73, 75, 69, 626, 72, 1178, 73, 618, 638, 71, 55, 55, 55, 55, 55, 55, 76, 107, 72, 78, 79, 80, 76, 57, 81, 78, 79, 80, 82, 83, 81, 85, 73, 84, 82, 83, 86, 85, 75, 84, 87, 107, 86, 88, 465, 618, 87, 57, 638, 88, 107, 73, 75, 91, 90, 72, 627, 639, 144, 91, 90, 86, 76, 89, 78, 87, 79, 81, 465, 89, 80, 1288, 193, 76, 83, 465, 78, 79, 80, 85, 82, 81, 144, 84, 639, 82, 83, 90, 85, 91, 84, 144, 88, 86, 627, 92, 193, 87, 89, 93, 88, 92, 89, 94, 193, 93, 96, 95, 93, 94, 91, 90, 96, 95, 97, 99, 98, 100, 102, 103, 89, 99, 98, 100, 102, 103, 111, 640, 98, 94, 106, 97, 111, 108, 93, 185, 106, 104, 92, 108, 97, 96, 102, 104, 109, 105, 111, 1282, 738, 628, 109, 105, 92, 94, 98, 97, 93, 95, 640, 185, 94, 1273, 97, 96, 95, 110, 102, 100, 185, 103, 108, 110, 99, 98, 100, 102, 103, 738, 106, 125, 104, 622, 113, 111, 628, 104, 105, 106, 113, 112, 108, 105, 114, 115, 104, 112, 109, 221, 114, 115, 118, 109, 105, 110, 119, 125, 118, 116, 110, 117, 119, 120, 110, 116, 110, 117, 286, 120, 113, 118, 622, 221, 110, 373, 125, 221, 115, 114, 121, 112, 122, 117, 123, 120, 121, 641, 122, 625, 123, 113, 646, 115, 286, 121, 842, 842, 112, 373, 321, 114, 115, 119, 116, 188, 321, 373, 116, 118, 286, 646, 188, 119, 641, 645, 116, 283, 117, 122, 120, 129, 322, 129, 129, 129, 129, 129, 322, 324, 188, 625, 123, 662, 143, 324, 188, 121, 657, 122, 143, 123, 128, 283, 128, 188, 130, 128, 130, 130, 130, 130, 130, 131, 131, 131, 131, 131, 143, 128, 645, 128, 132, 132, 132, 132, 132, 283, 128, 657, 128, 1272, 662, 128, 133, 133, 133, 133, 133, 133, 133, 133, 143, 128, 630, 128, 139, 139, 139, 139, 139, 143, 128, 134, 134, 134, 134, 134, 134, 134, 134, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 142, 148, 150, 151, 154, 153, 142, 148, 150, 151, 154, 153, 155, 159, 668, 630, 811, 369, 155, 159, 141, 141, 141, 141, 141, 141, 148, 156, 811, 142, 157, 661, 647, 156, 156, 158, 157, 150, 153, 1200, 160, 158, 161, 369, 649, 155, 160, 151, 161, 163, 159, 647, 1200, 461, 154, 163, 668, 142, 148, 150, 151, 154, 153, 356, 648, 369, 661, 164, 165, 155, 159, 161, 160, 164, 165, 167, 157, 166, 461, 168, 158, 167, 169, 166, 156, 168, 356, 157, 169, 649, 163, 660, 158, 461, 356, 161, 170, 160, 171, 161, 170, 170, 170, 172, 171, 173, 163, 174, 648, 172, 650, 173, 165, 174, 166, 175, 176, 164, 663, 168, 1266, 175, 176, 679, 164, 165, 167, 665, 1124, 169, 679, 1124, 167, 174, 166, 660, 168, 177, 664, 169, 172, 175, 178, 177, 171, 180, 179, 651, 178, 663, 173, 180, 179, 170, 178, 171, 650, 181, 665, 182, 172, 184, 173, 181, 174, 182, 176, 184, 186, 187, 664, 189, 175, 176, 186, 187, 182, 189, 191, 177, 192, 194, 180, 199, 191, 184, 192, 194, 669, 199, 195, 196, 758, 651, 177, 179, 195, 196, 197, 178, 1265, 182, 180, 179, 197, 192, 187, 181, 713, 184, 722, 186, 758, 763, 181, 722, 182, 198, 184, 191, 763, 194, 199, 198, 200, 186, 187, 713, 189, 192, 200, 195, 669, 195, 674, 191, 201, 192, 194, 202, 199, 196, 201, 203, 197, 202, 204, 195, 196, 203, 206, 205, 204, 207, 208, 197, 206, 205, 211, 207, 208, 201, 209, 210, 211, 674, 212, 198, 209, 210, 672, 213, 212, 670, 198, 200, 203, 213, 217, 208, 214, 200, 206, 749, 217, 749, 214, 202, 205, 204, 207, 215, 216, 201, 1260, 1258, 202, 215, 216, 211, 203, 212, 215, 204, 209, 670, 218, 206, 205, 214, 207, 208, 218, 210, 213, 211, 219, 672, 220, 209, 210, 325, 219, 212, 220, 326, 222, 325, 213, 216, 716, 326, 715, 222, 222, 217, 218, 214, 222, 223, 223, 223, 223, 223, 328, 756, 1257, 756, 215, 216, 328, 222, 231, 231, 231, 231, 231, 222, 222, 404, 1252, 716, 222, 218, 219, 404, 222, 232, 232, 232, 232, 232, 715, 219, 717, 220, 224, 224, 224, 224, 224, 224, 224, 224, 225, 225, 225, 225, 225, 225, 225, 225, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 236, 717, 240, 241, 242, 243, 236, 237, 240, 241, 242, 243, 244, 237, 718, 242, 814, 357, 244, 720, 235, 235, 235, 235, 235, 235, 237, 245, 247, 248, 250, 249, 1249, 245, 247, 248, 250, 249, 250, 240, 357, 236, 243, 251, 252, 1248, 241, 253, 357, 251, 252, 237, 255, 253, 244, 814, 718, 236, 255, 240, 241, 242, 243, 720, 237, 249, 258, 257, 245, 244, 259, 397, 258, 257, 260, 263, 259, 248, 719, 724, 260, 263, 253, 247, 245, 247, 248, 250, 249, 261, 262, 251, 266, 264, 252, 261, 262, 397, 266, 264, 251, 252, 751, 258, 253, 265, 724, 267, 262, 255, 257, 265, 263, 267, 268, 262, 719, 1247, 750, 397, 268, 721, 260, 258, 257, 264, 810, 259, 269, 271, 810, 260, 263, 270, 269, 271, 261, 265, 1246, 270, 266, 1090, 272, 1090, 270, 751, 261, 262, 272, 266, 264, 268, 273, 274, 272, 267, 750, 275, 273, 274, 269, 276, 265, 275, 267, 721, 271, 276, 277, 282, 281, 268, 279, 723, 277, 282, 281, 284, 279, 279, 727, 285, 287, 284, 735, 269, 271, 285, 287, 288, 270, 289, 290, 273, 291, 288, 285, 289, 290, 272, 291, 292, 276, 274, 723, 279, 293, 292, 653, 273, 274, 281, 293, 294, 275, 295, 289, 740, 276, 294, 727, 295, 285, 284, 288, 277, 282, 281, 735, 279, 296, 297, 736, 653, 284, 298, 296, 297, 285, 287, 829, 298, 291, 293, 1034, 653, 288, 292, 289, 290, 294, 291, 812, 299, 301, 1245, 302, 740, 292, 299, 301, 295, 302, 293, 736, 305, 978, 296, 303, 304, 294, 305, 295, 306, 303, 304, 298, 307, 308, 306, 310, 1034, 829, 307, 308, 297, 310, 296, 297, 309, 301, 311, 298, 312, 331, 309, 812, 311, 299, 312, 331, 398, 302, 313, 739, 303, 304, 1223, 405, 978, 299, 301, 305, 302, 405, 313, 726, 398, 304, 308, 743, 309, 305, 307, 741, 303, 304, 398, 558, 313, 306, 314, 330, 754, 307, 308, 739, 310, 330, 314, 313, 398, 312, 314, 744, 745, 309, 726, 311, 398, 312, 331, 743, 313, 558, 1223, 315, 314, 315, 315, 315, 315, 315, 1125, 741, 314, 1125, 316, 314, 316, 316, 316, 316, 316, 558, 744, 745, 330, 754, 803, 317, 314, 317, 317, 317, 317, 317, 317, 318, 330, 318, 318, 318, 318, 318, 318, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 333, 335, 334, 336, 337, 338, 333, 335, 334, 336, 337, 338, 340, 336, 916, 803, 748, 747, 340, 1244, 329, 329, 329, 329, 329, 329, 339, 1091, 341, 1091, 337, 342, 339, 337, 341, 336, 343, 342, 341, 347, 1243, 916, 343, 345, 880, 347, 344, 335, 747, 345, 333, 334, 344, 825, 338, 340, 748, 333, 335, 334, 336, 337, 338, 772, 344, 346, 345, 350, 349, 340, 772, 346, 351, 350, 349, 352, 339, 342, 351, 343, 346, 352, 825, 339, 358, 341, 353, 746, 342, 347, 358, 355, 353, 343, 880, 354, 347, 355, 753, 892, 345, 354, 359, 344, 360, 351, 362, 746, 359, 1233, 360, 363, 362, 364, 365, 350, 580, 363, 892, 364, 365, 358, 346, 349, 350, 349, 362, 353, 374, 351, 753, 367, 352, 757, 374, 1232, 354, 367, 746, 355, 359, 358, 580, 353, 368, 370, 807, 360, 355, 366, 368, 370, 354, 368, 364, 366, 363, 365, 371, 359, 804, 360, 580, 362, 371, 757, 367, 805, 363, 372, 364, 365, 375, 366, 366, 372, 376, 807, 375, 368, 804, 377, 376, 374, 828, 374, 378, 377, 367, 380, 370, 381, 378, 379, 372, 380, 1231, 381, 1217, 379, 822, 368, 370, 371, 382, 826, 366, 805, 903, 375, 382, 379, 378, 379, 383, 371, 377, 376, 372, 384, 383, 387, 388, 828, 380, 384, 372, 387, 388, 375, 382, 389, 822, 376, 826, 390, 391, 389, 377, 392, 381, 390, 391, 378, 903, 392, 380, 393, 381, 383, 379, 808, 394, 393, 396, 384, 809, 388, 394, 392, 396, 382, 399, 399, 399, 399, 399, 407, 408, 409, 904, 383, 387, 407, 408, 409, 384, 410, 387, 388, 1040, 389, 808, 410, 412, 414, 393, 809, 389, 415, 412, 414, 390, 391, 419, 415, 392, 394, 1040, 420, 419, 396, 496, 965, 393, 420, 904, 801, 496, 394, 400, 396, 400, 400, 400, 400, 400, 400, 401, 823, 401, 401, 401, 401, 401, 401, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 418, 421, 422, 424, 801, 425, 418, 421, 422, 424, 420, 425, 823, 419, 965, 835, 1216, 1208, 420, 824, 417, 417, 417, 417, 417, 417, 426, 429, 427, 428, 806, 827, 426, 429, 427, 428, 418, 430, 813, 431, 421, 432, 433, 430, 424, 431, 437, 432, 433, 821, 835, 824, 437, 425, 427, 434, 432, 418, 421, 422, 424, 434, 425, 827, 429, 438, 439, 440, 1045, 435, 806, 438, 439, 440, 441, 435, 431, 426, 813, 428, 441, 442, 832, 426, 429, 427, 428, 442, 435, 821, 840, 449, 430, 433, 430, 435, 431, 449, 432, 433, 450, 451, 435, 437, 453, 434, 450, 451, 454, 439, 453, 440, 434, 449, 454, 456, 1081, 449, 1045, 455, 834, 456, 438, 439, 440, 455, 435, 832, 1081, 457, 441, 441, 840, 450, 454, 457, 458, 459, 442, 463, 462, 466, 458, 459, 836, 463, 462, 466, 449, 460, 451, 834, 456, 464, 467, 460, 837, 450, 451, 464, 467, 453, 455, 468, 457, 454, 460, 470, 469, 468, 459, 472, 456, 470, 469, 836, 455, 472, 471, 464, 1207, 458, 462, 1204, 471, 839, 457, 837, 463, 467, 899, 460, 1197, 458, 459, 473, 463, 462, 466, 474, 889, 473, 881, 464, 1196, 474, 460, 902, 470, 833, 464, 467, 475, 468, 469, 471, 839, 476, 475, 899, 468, 477, 472, 476, 470, 469, 481, 477, 472, 477, 480, 889, 481, 886, 482, 471, 480, 473, 902, 474, 482, 483, 482, 484, 477, 485, 881, 483, 483, 484, 476, 485, 473, 487, 833, 488, 474, 498, 905, 487, 475, 499, 890, 498, 488, 500, 501, 499, 481, 475, 504, 500, 501, 480, 476, 886, 504, 909, 477, 505, 488, 485, 913, 481, 506, 505, 487, 480, 488, 905, 506, 482, 838, 508, 906, 488, 885, 890, 483, 508, 484, 913, 485, 489, 489, 489, 489, 489, 489, 909, 487, 490, 490, 490, 490, 490, 490, 491, 1195, 491, 491, 491, 491, 491, 491, 492, 883, 492, 492, 492, 492, 492, 492, 509, 511, 512, 885, 838, 906, 509, 511, 512, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 514, 515, 516, 518, 519, 520, 514, 515, 516, 518, 519, 520, 521, 522, 887, 1026, 900, 883, 521, 522, 513, 513, 513, 513, 513, 513, 523, 525, 524, 527, 526, 528, 523, 525, 524, 527, 526, 528, 525, 907, 1190, 1184, 525, 1183, 529, 519, 514, 518, 1026, 520, 529, 900, 1182, 521, 524, 526, 887, 514, 515, 516, 518, 519, 520, 908, 1177, 530, 527, 531, 528, 521, 522, 530, 533, 531, 534, 523, 535, 529, 533, 911, 534, 907, 535, 523, 525, 524, 527, 526, 528, 542, 543, 544, 545, 548, 547, 542, 543, 544, 545, 548, 547, 529, 549, 550, 954, 551, 530, 908, 549, 550, 549, 551, 552, 535, 553, 534, 963, 531, 552, 556, 553, 589, 530, 911, 531, 556, 544, 589, 559, 533, 548, 534, 1176, 535, 559, 954, 560, 542, 543, 545, 547, 551, 560, 1169, 1168, 1167, 542, 543, 544, 545, 548, 547, 561, 1165, 1159, 550, 963, 555, 561, 549, 550, 552, 551, 555, 557, 555, 562, 563, 555, 552, 557, 553, 562, 563, 564, 557, 556, 559, 555, 973, 564, 566, 565, 567, 568, 559, 569, 566, 565, 567, 568, 560, 569, 560, 570, 561, 573, 575, 574, 576, 570, 557, 573, 575, 574, 576, 1048, 566, 973, 561, 562, 577, 563, 891, 555, 914, 567, 577, 564, 565, 972, 557, 591, 562, 563, 576, 579, 1152, 591, 1150, 592, 564, 579, 573, 568, 574, 592, 569, 566, 565, 567, 568, 1048, 569, 593, 570, 596, 914, 575, 1024, 593, 570, 596, 573, 575, 574, 576, 577, 891, 912, 972, 579, 581, 581, 581, 581, 581, 582, 577, 582, 582, 582, 582, 582, 582, 583, 1024, 583, 583, 583, 583, 583, 583, 579, 597, 599, 600, 602, 604, 605, 597, 599, 600, 602, 604, 605, 607, 608, 609, 610, 959, 912, 607, 608, 609, 610, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 612, 652, 675, 675, 675, 675, 675, 676, 676, 676, 676, 676, 684, 686, 687, 652, 983, 1149, 684, 686, 687, 612, 612, 612, 612, 612, 612, 677, 959, 677, 677, 677, 677, 677, 677, 983, 960, 1148, 1142, 678, 652, 678, 678, 678, 678, 678, 678, 690, 691, 693, 694, 698, 652, 690, 691, 693, 694, 698, 699, 700, 702, 703, 704, 705, 699, 700, 702, 703, 704, 705, 706, 707, 709, 710, 711, 960, 706, 707, 709, 710, 711, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 712, 761, 1094, 761, 761, 761, 761, 761, 761, 762, 1141, 762, 762, 762, 762, 762, 762, 1097, 1100, 1138, 1094, 712, 712, 712, 712, 712, 712, 768, 770, 771, 773, 774, 778, 768, 770, 771, 773, 774, 778, 779, 781, 782, 784, 786, 787, 779, 781, 782, 784, 786, 787, 789, 790, 791, 793, 794, 795, 789, 790, 791, 793, 794, 795, 796, 797, 798, 986, 1097, 1100, 796, 797, 798, 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, 841, 986, 841, 841, 841, 841, 841, 841, 848, 849, 850, 853, 854, 856, 848, 849, 850, 853, 854, 856, 800, 800, 800, 800, 800, 800, 857, 861, 862, 863, 864, 866, 857, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 867, 868, 869, 870, 871, 872, 873, 875, 876, 877, 878, 982, 873, 875, 876, 877, 878, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 915, 917, 1130, 917, 917, 917, 917, 917, 917, 918, 1129, 918, 918, 918, 918, 918, 918, 982, 1128, 1116, 879, 879, 879, 879, 879, 879, 923, 923, 924, 925, 926, 930, 931, 923, 924, 925, 926, 930, 931, 933, 934, 936, 915, 937, 938, 933, 934, 936, 939, 937, 938, 941, 942, 943, 939, 945, 946, 941, 942, 943, 947, 945, 946, 948, 949, 950, 947, 951, 957, 948, 949, 950, 956, 951, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 961, 962, 964, 974, 975, 976, 977, 979, 984, 981, 985, 993, 994, 996, 1044, 987, 1022, 993, 994, 996, 953, 953, 953, 953, 953, 953, 957, 988, 956, 988, 988, 988, 988, 988, 988, 975, 976, 1110, 1108, 961, 962, 981, 985, 984, 987, 974, 964, 1022, 977, 1044, 1107, 989, 979, 989, 989, 989, 989, 989, 989, 997, 1001, 1002, 1003, 1004, 1005, 997, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1014, 1015, 1016, 1017, 1023, 1012, 1014, 1015, 1016, 1017, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1020, 1025, 1027, 1029, 1035, 1037, 1038, 1041, 1036, 1047, 1035, 1039, 1042, 1043, 1046, 1105, 1089, 1093, 1082, 1104, 1018, 1018, 1018, 1018, 1018, 1018, 1023, 1036, 1025, 1049, 1039, 1049, 1049, 1049, 1049, 1049, 1049, 1087, 1085, 1083, 1020, 1027, 1029, 1042, 1047, 1046, 1041, 1082, 1093, 1037, 1038, 1089, 1050, 1043, 1050, 1050, 1050, 1050, 1050, 1050, 1051, 1054, 1056, 1058, 1059, 1061, 1051, 1054, 1056, 1058, 1059, 1061, 1062, 1063, 1065, 1066, 1067, 1068, 1062, 1063, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1075, 1076, 1069, 1070, 1071, 1072, 1074, 1074, 1074, 1074, 1074, 1078, 1074, 1074, 1074, 1074, 1074, 1074, 1079, 1080, 1088, 1092, 1095, 1096, 1099, 1122, 1098, 1077, 1073, 1102, 1101, 1102, 1102, 1102, 1102, 1102, 1102, 1064, 1074, 1074, 1074, 1074, 1074, 1074, 1076, 1075, 1060, 1103, 1078, 1103, 1103, 1103, 1103, 1103, 1103, 1079, 1092, 1098, 1122, 1123, 1088, 1106, 1096, 1080, 1095, 1101, 1099, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1109, 1111, 1112, 1113, 1114, 1115, 1117, 1118, 1119, 1120, 1126, 1127, 1117, 1118, 1119, 1120, 1121, 1121, 1121, 1121, 1121, 1131, 1121, 1121, 1121, 1121, 1121, 1121, 1123, 1132, 1133, 1134, 1135, 1136, 1137, 1139, 1140, 1143, 1144, 1147, 1170, 1151, 1162, 1057, 1126, 1147, 1127, 1151, 1121, 1121, 1121, 1121, 1121, 1121, 1145, 1239, 1145, 1145, 1145, 1145, 1145, 1145, 1239, 1131, 1055, 1137, 1153, 1140, 1143, 1162, 1136, 1170, 1153, 1175, 1154, 1133, 1134, 1144, 1139, 1132, 1154, 1146, 1135, 1146, 1146, 1146, 1146, 1146, 1146, 1155, 1156, 1157, 1158, 1161, 1163, 1155, 1156, 1157, 1158, 1160, 1160, 1160, 1160, 1160, 1166, 1160, 1160, 1160, 1160, 1160, 1160, 1164, 1171, 1172, 1174, 1173, 1175, 1179, 1185, 1186, 1187, 1163, 1188, 1192, 1185, 1186, 1187, 1161, 1188, 1053, 1052, 1160, 1160, 1160, 1160, 1160, 1160, 1202, 1164, 1033, 1032, 1031, 1166, 1215, 1171, 1172, 1173, 1191, 1194, 1174, 1179, 1180, 1192, 1180, 1180, 1180, 1180, 1180, 1180, 1181, 1193, 1181, 1181, 1181, 1181, 1181, 1181, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1198, 1191, 1199, 1201, 1194, 1212, 1203, 1202, 1215, 1205, 1193, 1205, 1205, 1205, 1205, 1205, 1205, 1218, 1030, 1220, 1189, 1189, 1189, 1189, 1189, 1189, 1234, 1222, 1221, 1213, 1201, 1214, 1198, 1203, 1199, 1206, 1212, 1206, 1206, 1206, 1206, 1206, 1206, 1209, 1210, 1219, 1220, 1228, 1218, 1209, 1210, 1211, 1211, 1211, 1211, 1211, 1221, 1211, 1211, 1211, 1211, 1211, 1211, 1213, 1236, 1214, 1222, 1224, 1234, 1224, 1224, 1224, 1224, 1224, 1224, 1225, 1219, 1225, 1225, 1225, 1225, 1225, 1225, 1211, 1211, 1211, 1211, 1211, 1211, 1226, 1228, 1229, 1230, 1235, 1251, 1226, 1227, 1227, 1227, 1227, 1227, 1237, 1227, 1227, 1227, 1227, 1227, 1227, 1238, 1028, 1253, 1240, 1236, 1240, 1240, 1240, 1240, 1240, 1240, 1250, 1261, 1268, 1229, 1230, 1021, 1251, 1250, 1019, 1227, 1227, 1227, 1227, 1227, 1227, 1259, 1235, 1013, 1238, 1237, 1241, 1000, 1241, 1241, 1241, 1241, 1241, 1241, 1242, 1242, 1242, 1242, 1242, 1253, 1242, 1242, 1242, 1242, 1242, 1242, 1254, 1261, 1254, 1254, 1254, 1254, 1254, 1254, 1255, 1268, 1255, 1255, 1255, 1255, 1255, 1255, 1267, 1259, 999, 998, 1242, 1242, 1242, 1242, 1242, 1242, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1262, 995, 1262, 1262, 1262, 1262, 1262, 1262, 1263, 1274, 1263, 1263, 1263, 1263, 1263, 1263, 992, 991, 1267, 990, 1256, 1256, 1256, 1256, 1256, 1256, 1264, 1264, 1264, 1264, 1264, 980, 1264, 1264, 1264, 1264, 1264, 1264, 1269, 1275, 1269, 1269, 1269, 1269, 1269, 1269, 1270, 1281, 1270, 1270, 1270, 1270, 1270, 1270, 971, 969, 1274, 968, 1264, 1264, 1264, 1264, 1264, 1264, 1271, 1271, 1271, 1271, 1271, 1283, 1271, 1271, 1271, 1271, 1271, 1271, 966, 955, 1275, 952, 944, 1287, 1276, 1275, 1276, 1276, 1276, 1276, 1276, 1276, 940, 1281, 935, 932, 929, 928, 1271, 1271, 1271, 1271, 1271, 1271, 1277, 1283, 1277, 1277, 1277, 1277, 1277, 1277, 1278, 1278, 1278, 1278, 1278, 1287, 1278, 1278, 1278, 1278, 1278, 1278, 1284, 927, 1284, 1284, 1284, 1284, 1284, 1284, 1285, 922, 1285, 1285, 1285, 1285, 1285, 1285, 921, 920, 919, 910, 1278, 1278, 1278, 1278, 1278, 1278, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1289, 901, 1289, 1289, 1289, 1289, 1289, 1289, 1290, 898, 1290, 1290, 1290, 1290, 1290, 1290, 897, 896, 895, 894, 1286, 1286, 1286, 1286, 1286, 1286, 1291, 1291, 1291, 1291, 1291, 893, 1291, 1291, 1291, 1291, 1291, 1291, 1293, 888, 1293, 1293, 1293, 1293, 1293, 1293, 1294, 874, 1294, 1294, 1294, 1294, 1294, 1294, 865, 860, 859, 858, 1291, 1291, 1291, 1291, 1291, 1291, 1295, 1295, 1295, 1295, 1295, 855, 1295, 1295, 1295, 1295, 1295, 1295, 1296, 852, 1296, 1296, 1296, 1296, 1296, 1296, 1297, 851, 1297, 1297, 1297, 1297, 1297, 1297, 847, 846, 845, 844, 1295, 1295, 1295, 1295, 1295, 1295, 1299, 843, 1299, 1299, 1299, 1299, 1299, 1300, 830, 1300, 1300, 1300, 1300, 1300, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1303, 820, 1303, 1303, 1303, 1303, 1303, 1303, 1304, 1304, 1304, 1304, 1305, 1305, 1305, 1305, 1305, 1305, 1306, 1306, 1306, 1306, 1307, 1307, 1308, 1308, 1309, 1309, 1309, 1309, 1310, 1310, 1311, 1311, 1311, 1312, 1312, 1312, 1313, 1313, 1313, 1313, 1314, 1314, 1315, 1315, 1315, 1316, 1316, 1316, 1317, 1317, 1318, 1318, 1318, 1319, 1319, 1320, 819, 1320, 1320, 1321, 1321, 1322, 1322, 1322, 1323, 1323, 1323, 1324, 1324, 1325, 1325, 1325, 1326, 1326, 1326, 1327, 1327, 1327, 1328, 1328, 1329, 1329, 1329, 1330, 818, 1330, 1330, 1331, 1331, 1332, 1332, 1332, 1333, 1333, 1333, 1334, 1334, 1335, 1335, 1335, 1336, 1336, 1336, 1337, 1337, 1337, 1338, 1338, 1338, 1339, 1339, 1340, 1340, 1340, 1341, 1341, 1342, 1342, 1342, 1343, 1343, 1343, 1344, 1344, 1345, 817, 1345, 1345, 1346, 1346, 1347, 1347, 1348, 1348, 1348, 1349, 1349, 1350, 1350, 1350, 1351, 1351, 1351, 1352, 1352, 1352, 1353, 1353, 1353, 1354, 1354, 1355, 1355, 1356, 1356, 1356, 1357, 1357, 1357, 1358, 1358, 1358, 1359, 1359, 1360, 1360, 1360, 1361, 1361, 1361, 1362, 1362, 1363, 1363, 1363, 1364, 1364, 1364, 1365, 816, 1365, 1365, 1366, 1366, 1367, 1367, 1368, 1368, 1369, 1369, 1369, 1370, 1370, 1371, 1371, 1371, 1372, 1372, 1372, 1373, 1373, 1373, 1374, 1374, 1375, 1375, 1376, 1376, 1376, 1377, 1377, 1377, 1378, 1378, 1379, 1379, 1379, 1380, 1380, 1380, 1381, 1381, 1382, 1382, 1382, 1383, 1383, 1384, 1384, 1384, 1385, 1385, 1385, 1386, 1386, 1387, 1387, 1387, 1388, 1388, 1388, 1389, 1389, 1389, 1390, 1390, 1390, 1391, 1391, 1392, 1392, 815, 1392, 1392, 1393, 799, 1393, 1393, 1394, 1394, 1395, 1395, 1396, 1396, 1397, 1397, 1397, 1398, 1398, 1399, 1399, 1399, 1400, 1400, 1400, 1401, 1401, 1402, 1402, 1403, 1403, 1403, 1404, 1404, 1404, 1405, 1405, 1406, 1406, 1406, 1407, 1407, 1407, 1408, 1408, 1409, 1409, 1410, 1410, 1410, 1411, 1411, 1411, 1412, 1412, 1412, 1413, 1413, 1414, 1414, 1414, 1415, 1415, 1415, 1416, 1416, 1416, 1417, 1417, 1417, 1418, 1418, 1418, 1419, 1419, 1419, 1420, 1420, 1421, 1421, 1421, 1422, 1422, 1422, 1423, 1423, 1423, 1424, 1424, 792, 1424, 1424, 1425, 788, 1425, 1425, 1426, 1426, 1427, 1427, 1428, 1428, 1429, 1429, 1430, 1430, 1430, 1431, 1431, 1432, 1432, 1432, 1433, 1433, 1433, 1434, 1434, 1434, 1435, 1435, 1435, 1436, 1436, 1437, 1437, 1438, 1438, 1438, 1439, 1439, 1439, 1440, 1440, 1441, 1441, 1441, 1442, 1442, 1442, 1443, 1443, 1444, 1444, 1444, 1445, 1445, 1446, 1446, 1446, 1447, 1447, 1447, 1448, 1448, 1449, 1449, 1449, 1450, 1450, 1450, 1451, 1451, 1451, 1452, 1452, 1453, 1453, 1453, 1454, 1454, 1454, 1455, 1455, 1455, 1456, 1456, 1456, 1457, 1457, 1457, 1458, 1458, 1458, 1459, 1459, 1460, 1460, 785, 1460, 1460, 1461, 1461, 1462, 1462, 1463, 1463, 1464, 1464, 1465, 1465, 1465, 1466, 1466, 1466, 1467, 1467, 1468, 1468, 1468, 1469, 1469, 1469, 1470, 1470, 1471, 1471, 1471, 1472, 1472, 1472, 1473, 1473, 1474, 1474, 1475, 1475, 1475, 1476, 1476, 1476, 1477, 1477, 1477, 1478, 1478, 1478, 1479, 1479, 1480, 1480, 1480, 1481, 1481, 1481, 1482, 1482, 1482, 1483, 1483, 1483, 1484, 1484, 1484, 1485, 1485, 1485, 1486, 1486, 1486, 1487, 1487, 1487, 1488, 1488, 1489, 1489, 1489, 1490, 1490, 1490, 1491, 1491, 1491, 1492, 1492, 783, 1492, 1492, 1493, 780, 1493, 1493, 1494, 1494, 1495, 1495, 1496, 1496, 1497, 1497, 1497, 1498, 1498, 1498, 1499, 1499, 1500, 1500, 1500, 1501, 1501, 1501, 1502, 1502, 1503, 1503, 1503, 1504, 1504, 1504, 1505, 1505, 1506, 1506, 1506, 1507, 1507, 1507, 1508, 1508, 1508, 1509, 1509, 1509, 1510, 1510, 1511, 1511, 1511, 1512, 1512, 1512, 1513, 1513, 1513, 1514, 1514, 1514, 1515, 1515, 1515, 1516, 1516, 1516, 1517, 1517, 1517, 1518, 1518, 1518, 1519, 1519, 1520, 1520, 777, 1520, 1520, 1521, 776, 1521, 1521, 1522, 1522, 1523, 1523, 1524, 1524, 1524, 1525, 1525, 1525, 1526, 1526, 1526, 1527, 1527, 1527, 1528, 1528, 1529, 1529, 1529, 1530, 1530, 1530, 1531, 1531, 1531, 1532, 1532, 1532, 1533, 1533, 1533, 1534, 1534, 1534, 1535, 1535, 1535, 1536, 1536, 1536, 1537, 1537, 1537, 1538, 1538, 1539, 1539, 1539, 1540, 1540, 1540, 1541, 1541, 1541, 1542, 775, 1542, 1542, 1543, 1543, 1544, 1544, 1545, 1545, 1545, 1546, 1546, 1547, 1547, 1547, 1548, 1548, 1548, 1549, 1549, 1550, 1550, 1550, 1551, 1551, 1551, 1552, 1552, 1552, 1553, 1553, 1553, 1554, 1554, 1554, 1555, 1555, 1555, 1556, 1556, 1556, 1557, 1557, 1557, 1558, 1558, 1559, 769, 1559, 1559, 1560, 1560, 1561, 1561, 1562, 1562, 1563, 1563, 1563, 1564, 1564, 1565, 1565, 1565, 1566, 1566, 1566, 1567, 1567, 1567, 1568, 1568, 1568, 1569, 1569, 1569, 1570, 1570, 1570, 1571, 767, 1571, 1571, 1572, 1572, 1573, 1573, 1574, 1574, 1575, 1575, 1575, 1576, 1576, 1576, 1577, 1577, 1577, 1578, 1578, 1578, 1579, 766, 1579, 1579, 1580, 1580, 1581, 1581, 1582, 1582, 1582, 1583, 1583, 1583, 1584, 765, 1584, 1584, 1585, 1585, 1585, 1586, 764, 1586, 1586, 1587, 760, 1587, 1587, 1588, 755, 1588, 1588, 1589, 752, 1589, 1589, 1590, 742, 1590, 1590, 1591, 737, 1591, 1591, 1592, 734, 1592, 1592, 1593, 733, 1593, 1593, 1594, 732, 1594, 1594, 731, 730, 729, 728, 725, 714, 708, 701, 697, 696, 695, 692, 689, 688, 685, 683, 682, 681, 680, 673, 671, 659, 658, 656, 655, 654, 644, 643, 637, 636, 635, 634, 633, 632, 631, 617, 614, 611, 606, 603, 601, 598, 595, 594, 590, 588, 587, 586, 584, 578, 572, 571, 546, 541, 540, 539, 538, 537, 536, 532, 517, 510, 507, 503, 502, 497, 495, 493, 486, 479, 478, 452, 448, 447, 446, 445, 444, 443, 436, 423, 416, 413, 411, 406, 402, 395, 386, 385, 361, 348, 327, 323, 319, 254, 246, 239, 234, 230, 226, 152, 149, 147, 146, 145, 135, 74, 63, 61, 59, 58, 56, 53, 51, 43, 36, 13, 8, 3, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301 } ; /* Table of booleans, true if rule could match eol. */ static yyconst flex_int32_t yy_rule_can_match_eol[112] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, }; static yy_state_type yy_last_accepting_state; static char *yy_last_accepting_cpos; extern int yy_flex_debug; int yy_flex_debug = 0; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "read_config_lex.l" #line 2 "read_config_lex.l" /* * (C) 2006 by Pablo Neira Ayuso * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * Description: configuration file syntax */ #include #include "read_config_yy.h" #define YY_NO_INPUT 1 #line 2085 "read_config_lex.c" #define INITIAL 0 #ifndef YY_NO_UNISTD_H /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ #include #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif static int yy_init_globals (void ); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int yylex_destroy (void ); int yyget_debug (void ); void yyset_debug (int debug_flag ); YY_EXTRA_TYPE yyget_extra (void ); void yyset_extra (YY_EXTRA_TYPE user_defined ); FILE *yyget_in (void ); void yyset_in (FILE * in_str ); FILE *yyget_out (void ); void yyset_out (FILE * out_str ); int yyget_leng (void ); char *yyget_text (void ); int yyget_lineno (void ); void yyset_lineno (int line_number ); /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap (void ); #else extern int yywrap (void ); #endif #endif #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * ); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void ); #else static int input (void ); #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k */ #define YY_READ_BUF_SIZE 16384 #else #define YY_READ_BUF_SIZE 8192 #endif /* __ia64__ */ #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0) #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_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ size_t 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 /* end tables serialization structures and prototypes */ /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL_IS_OURS 1 extern int yylex (void); #define YY_DECL int yylex (void) #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK break; #endif #define YY_RULE_SETUP \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 57 "read_config_lex.l" #line 2272 "read_config_lex.c" if ( !(yy_init) ) { (yy_init) = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! (yy_start) ) (yy_start) = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_load_buffer_state( ); } while ( 1 ) /* loops until end-of-file is reached */ { yy_cp = (yy_c_buf_p); /* Support of yytext. */ *yy_cp = (yy_hold_char); /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; yy_current_state = (yy_start); yy_match: do { register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 1302 ) 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] != 4851 ); 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; if ( yy_act != YY_END_OF_BUFFER && yy_rule_can_match_eol[yy_act] ) { int yyl; for ( yyl = 0; yyl < yyleng; ++yyl ) if ( yytext[yyl] == '\n' ) yylineno++; ; } do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = (yy_hold_char); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); goto yy_find_action; case 1: YY_RULE_SETUP #line 58 "read_config_lex.l" { return T_UNIX; } YY_BREAK case 2: YY_RULE_SETUP #line 59 "read_config_lex.l" { return T_IPV4_ADDR; } YY_BREAK case 3: YY_RULE_SETUP #line 60 "read_config_lex.l" { return T_IPV6_ADDR; } YY_BREAK case 4: YY_RULE_SETUP #line 61 "read_config_lex.l" { return T_IPV4_DEST_ADDR; } YY_BREAK case 5: YY_RULE_SETUP #line 62 "read_config_lex.l" { return T_IPV6_DEST_ADDR; } YY_BREAK case 6: YY_RULE_SETUP #line 63 "read_config_lex.l" { return T_IPV4_IFACE; } YY_BREAK case 7: YY_RULE_SETUP #line 64 "read_config_lex.l" { return T_IPV6_IFACE; } YY_BREAK case 8: YY_RULE_SETUP #line 65 "read_config_lex.l" { return T_IFACE; } YY_BREAK case 9: YY_RULE_SETUP #line 66 "read_config_lex.l" { return T_MULTICAST; } YY_BREAK case 10: YY_RULE_SETUP #line 67 "read_config_lex.l" { return T_UDP; } YY_BREAK case 11: YY_RULE_SETUP #line 68 "read_config_lex.l" { return T_TCP; } YY_BREAK case 12: YY_RULE_SETUP #line 69 "read_config_lex.l" { return T_HASHSIZE; } YY_BREAK case 13: YY_RULE_SETUP #line 70 "read_config_lex.l" { return T_REFRESH; } YY_BREAK case 14: YY_RULE_SETUP #line 71 "read_config_lex.l" { return T_EXPIRE; } YY_BREAK case 15: YY_RULE_SETUP #line 72 "read_config_lex.l" { return T_TIMEOUT; } YY_BREAK case 16: YY_RULE_SETUP #line 73 "read_config_lex.l" { return T_DELAY; } YY_BREAK case 17: YY_RULE_SETUP #line 74 "read_config_lex.l" { return T_HASHLIMIT; } YY_BREAK case 18: YY_RULE_SETUP #line 75 "read_config_lex.l" { return T_PATH; } YY_BREAK case 19: YY_RULE_SETUP #line 76 "read_config_lex.l" { return T_IGNORE_PROTOCOL; } YY_BREAK case 20: YY_RULE_SETUP #line 77 "read_config_lex.l" { return T_IGNORE_TRAFFIC; } YY_BREAK case 21: YY_RULE_SETUP #line 78 "read_config_lex.l" { return T_STRIP_NAT; } YY_BREAK case 22: YY_RULE_SETUP #line 79 "read_config_lex.l" { return T_BACKLOG; } YY_BREAK case 23: YY_RULE_SETUP #line 80 "read_config_lex.l" { return T_GROUP; } YY_BREAK case 24: YY_RULE_SETUP #line 81 "read_config_lex.l" { return T_PORT; } YY_BREAK case 25: YY_RULE_SETUP #line 82 "read_config_lex.l" { return T_LOG; } YY_BREAK case 26: YY_RULE_SETUP #line 83 "read_config_lex.l" { return T_SYSLOG; } YY_BREAK case 27: YY_RULE_SETUP #line 84 "read_config_lex.l" { return T_LOCK; } YY_BREAK case 28: YY_RULE_SETUP #line 85 "read_config_lex.l" { return T_GENERAL; } YY_BREAK case 29: YY_RULE_SETUP #line 86 "read_config_lex.l" { return T_SYNC; } YY_BREAK case 30: YY_RULE_SETUP #line 87 "read_config_lex.l" { return T_STATS; } YY_BREAK case 31: YY_RULE_SETUP #line 88 "read_config_lex.l" { return T_RELAX_TRANSITIONS; } YY_BREAK case 32: YY_RULE_SETUP #line 89 "read_config_lex.l" { return T_BUFFER_SIZE; /* alias */ } YY_BREAK case 33: YY_RULE_SETUP #line 90 "read_config_lex.l" { return T_BUFFER_SIZE_MAX_GROWN; /* alias */ } YY_BREAK case 34: YY_RULE_SETUP #line 91 "read_config_lex.l" { return T_BUFFER_SIZE_MAX_GROWN; /* alias */ } YY_BREAK case 35: YY_RULE_SETUP #line 92 "read_config_lex.l" { return T_BUFFER_SIZE; } YY_BREAK case 36: YY_RULE_SETUP #line 93 "read_config_lex.l" { return T_BUFFER_SIZE_MAX_GROWN; } YY_BREAK case 37: YY_RULE_SETUP #line 94 "read_config_lex.l" { return T_SYNC_MODE; } YY_BREAK case 38: YY_RULE_SETUP #line 95 "read_config_lex.l" { return T_LISTEN_TO; } YY_BREAK case 39: YY_RULE_SETUP #line 96 "read_config_lex.l" { return T_FAMILY; } YY_BREAK case 40: YY_RULE_SETUP #line 97 "read_config_lex.l" { return T_RESEND_BUFFER_SIZE; } YY_BREAK case 41: YY_RULE_SETUP #line 98 "read_config_lex.l" { return T_RESEND_QUEUE_SIZE; } YY_BREAK case 42: YY_RULE_SETUP #line 99 "read_config_lex.l" { return T_CHECKSUM; } YY_BREAK case 43: YY_RULE_SETUP #line 100 "read_config_lex.l" { return T_WINDOWSIZE; } YY_BREAK case 44: YY_RULE_SETUP #line 101 "read_config_lex.l" { return T_REPLICATE; } YY_BREAK case 45: YY_RULE_SETUP #line 102 "read_config_lex.l" { return T_FOR; } YY_BREAK case 46: YY_RULE_SETUP #line 103 "read_config_lex.l" { return T_WRITE_THROUGH; } YY_BREAK case 47: YY_RULE_SETUP #line 104 "read_config_lex.l" { return T_SYN_SENT; } YY_BREAK case 48: YY_RULE_SETUP #line 105 "read_config_lex.l" { return T_SYN_RECV; } YY_BREAK case 49: YY_RULE_SETUP #line 106 "read_config_lex.l" { return T_ESTABLISHED; } YY_BREAK case 50: YY_RULE_SETUP #line 107 "read_config_lex.l" { return T_FIN_WAIT; } YY_BREAK case 51: YY_RULE_SETUP #line 108 "read_config_lex.l" { return T_CLOSE_WAIT; } YY_BREAK case 52: YY_RULE_SETUP #line 109 "read_config_lex.l" { return T_LAST_ACK; } YY_BREAK case 53: YY_RULE_SETUP #line 110 "read_config_lex.l" { return T_TIME_WAIT; } YY_BREAK case 54: YY_RULE_SETUP #line 111 "read_config_lex.l" { return T_CLOSE; /* alias of CLOSED */ } YY_BREAK case 55: YY_RULE_SETUP #line 112 "read_config_lex.l" { return T_CLOSE; } YY_BREAK case 56: YY_RULE_SETUP #line 113 "read_config_lex.l" { return T_LISTEN; } YY_BREAK case 57: YY_RULE_SETUP #line 114 "read_config_lex.l" { return T_STAT_BUFFER_SIZE; } YY_BREAK case 58: YY_RULE_SETUP #line 115 "read_config_lex.l" { return T_DESTROY_TIMEOUT; } YY_BREAK case 59: YY_RULE_SETUP #line 116 "read_config_lex.l" { return T_SNDBUFF; /* deprecated */ } YY_BREAK case 60: YY_RULE_SETUP #line 117 "read_config_lex.l" { return T_RCVBUFF; /* deprecated */ } YY_BREAK case 61: YY_RULE_SETUP #line 118 "read_config_lex.l" { return T_SNDBUFF; } YY_BREAK case 62: YY_RULE_SETUP #line 119 "read_config_lex.l" { return T_RCVBUFF; } YY_BREAK case 63: YY_RULE_SETUP #line 120 "read_config_lex.l" { return T_FILTER; } YY_BREAK case 64: YY_RULE_SETUP #line 121 "read_config_lex.l" { return T_PROTOCOL; } YY_BREAK case 65: YY_RULE_SETUP #line 122 "read_config_lex.l" { return T_ADDRESS; } YY_BREAK case 66: YY_RULE_SETUP #line 123 "read_config_lex.l" { return T_STATE; } YY_BREAK case 67: YY_RULE_SETUP #line 124 "read_config_lex.l" { return T_ACCEPT; } YY_BREAK case 68: YY_RULE_SETUP #line 125 "read_config_lex.l" { return T_IGNORE; } YY_BREAK case 69: YY_RULE_SETUP #line 126 "read_config_lex.l" { return T_PURGE; } YY_BREAK case 70: YY_RULE_SETUP #line 127 "read_config_lex.l" { return T_FROM; } YY_BREAK case 71: YY_RULE_SETUP #line 128 "read_config_lex.l" { return T_USERSPACE; } YY_BREAK case 72: YY_RULE_SETUP #line 129 "read_config_lex.l" { return T_KERNELSPACE; } YY_BREAK case 73: YY_RULE_SETUP #line 130 "read_config_lex.l" { return T_EVENT_ITER_LIMIT; } YY_BREAK case 74: YY_RULE_SETUP #line 131 "read_config_lex.l" { return T_DEFAULT; } YY_BREAK case 75: YY_RULE_SETUP #line 132 "read_config_lex.l" { return T_POLL_SECS; } YY_BREAK case 76: YY_RULE_SETUP #line 133 "read_config_lex.l" { return T_NETLINK_OVERRUN_RESYNC; } YY_BREAK case 77: YY_RULE_SETUP #line 134 "read_config_lex.l" { return T_NICE; } YY_BREAK case 78: YY_RULE_SETUP #line 135 "read_config_lex.l" { return T_SCHEDULER; } YY_BREAK case 79: YY_RULE_SETUP #line 136 "read_config_lex.l" { return T_TYPE; } YY_BREAK case 80: YY_RULE_SETUP #line 137 "read_config_lex.l" { return T_PRIO; } YY_BREAK case 81: YY_RULE_SETUP #line 138 "read_config_lex.l" { return T_NETLINK_EVENTS_RELIABLE; } YY_BREAK case 82: YY_RULE_SETUP #line 139 "read_config_lex.l" { return T_DISABLE_INTERNAL_CACHE; } YY_BREAK case 83: YY_RULE_SETUP #line 140 "read_config_lex.l" { return T_DISABLE_EXTERNAL_CACHE; } YY_BREAK case 84: YY_RULE_SETUP #line 141 "read_config_lex.l" { return T_OPTIONS; } YY_BREAK case 85: YY_RULE_SETUP #line 142 "read_config_lex.l" { return T_TCP_WINDOW_TRACKING; } YY_BREAK case 86: YY_RULE_SETUP #line 143 "read_config_lex.l" { return T_EXPECT_SYNC; } YY_BREAK case 87: YY_RULE_SETUP #line 144 "read_config_lex.l" { return T_ERROR_QUEUE_LENGTH; } YY_BREAK case 88: YY_RULE_SETUP #line 145 "read_config_lex.l" { return T_HELPER; } YY_BREAK case 89: YY_RULE_SETUP #line 146 "read_config_lex.l" { return T_HELPER_QUEUE_NUM; } YY_BREAK case 90: YY_RULE_SETUP #line 147 "read_config_lex.l" { return T_HELPER_QUEUE_LEN; } YY_BREAK case 91: YY_RULE_SETUP #line 148 "read_config_lex.l" { return T_HELPER_POLICY; } YY_BREAK case 92: YY_RULE_SETUP #line 149 "read_config_lex.l" { return T_HELPER_EXPECT_MAX; } YY_BREAK case 93: YY_RULE_SETUP #line 150 "read_config_lex.l" { return T_HELPER_EXPECT_TIMEOUT; } YY_BREAK case 94: YY_RULE_SETUP #line 152 "read_config_lex.l" { return T_ON; } YY_BREAK case 95: YY_RULE_SETUP #line 153 "read_config_lex.l" { return T_OFF; } YY_BREAK case 96: YY_RULE_SETUP #line 154 "read_config_lex.l" { yylval.val = atoi(yytext); return T_NUMBER; } YY_BREAK case 97: YY_RULE_SETUP #line 155 "read_config_lex.l" { yylval.val = atoi(yytext); return T_SIGNED_NUMBER; } YY_BREAK case 98: YY_RULE_SETUP #line 156 "read_config_lex.l" { yylval.string = strdup(yytext); return T_IP; } YY_BREAK case 99: YY_RULE_SETUP #line 157 "read_config_lex.l" { yylval.string = strdup(yytext); return T_IP; } YY_BREAK case 100: YY_RULE_SETUP #line 158 "read_config_lex.l" { yylval.string = strdup(yytext); return T_PATH_VAL; } YY_BREAK case 101: YY_RULE_SETUP #line 159 "read_config_lex.l" { return T_ALARM; } YY_BREAK case 102: YY_RULE_SETUP #line 160 "read_config_lex.l" { fprintf(stderr, "\nWARNING: Now `persistent' mode " "is called `alarm'. Please, update " "your conntrackd.conf file.\n"); return T_ALARM; } YY_BREAK case 103: YY_RULE_SETUP #line 164 "read_config_lex.l" { return T_FTFW; } YY_BREAK case 104: YY_RULE_SETUP #line 165 "read_config_lex.l" { fprintf(stderr, "\nWARNING: Now `nack' mode " "is called `ftfw'. Please, update " "your conntrackd.conf file.\n"); return T_FTFW; } YY_BREAK case 105: YY_RULE_SETUP #line 169 "read_config_lex.l" { return T_NOTRACK; } YY_BREAK case 106: YY_RULE_SETUP #line 170 "read_config_lex.l" { yylval.string = strdup(yytext); return T_STRING; } YY_BREAK case 107: *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 172 "read_config_lex.l" ; YY_BREAK case 108: YY_RULE_SETUP #line 173 "read_config_lex.l" ; YY_BREAK case 109: /* rule 109 can match eol */ YY_RULE_SETUP #line 174 "read_config_lex.l" ; YY_BREAK case YY_STATE_EOF(INITIAL): #line 176 "read_config_lex.l" { yyterminate(); } YY_BREAK case 110: YY_RULE_SETUP #line 178 "read_config_lex.l" { return yytext[0]; } YY_BREAK case 111: YY_RULE_SETUP #line 180 "read_config_lex.l" ECHO; YY_BREAK #line 2934 "read_config_lex.c" case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; YY_CURRENT_BUFFER_LVALUE->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_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = (yy_c_buf_p); goto yy_find_action; } } else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { (yy_did_buffer_switch_on_eof) = 0; if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: (yy_c_buf_p) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer (void) { register char *dest = YY_CURRENT_BUFFER_LVALUE->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_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->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_LVALUE->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_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { int num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ /* 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. */ yyrealloc((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_LVALUE->yy_buf_size - number_to_move - 1; } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), (size_t) num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart(yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); } (yy_n_chars) += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->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 (void) { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = (yy_start); for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 1302 ) 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 ); */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) { 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 >= 1302 ) 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 == 1301); return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void) #else static int input (void) #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_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ *(yy_c_buf_p) = '\0'; else { /* need more input */ int offset = (yy_c_buf_p) - (yytext_ptr); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart(yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) return EOF; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); if ( c == '\n' ) yylineno++; ; return c; } #endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * * @note This function does not reset the start condition to @c INITIAL . */ void yyrestart (FILE * input_file ) { if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_init_buffer(YY_CURRENT_BUFFER,input_file ); yy_load_buffer_state( ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * */ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) { /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ yyensure_buffer_stack (); 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_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ (yy_did_buffer_switch_on_eof) = 1; } static void yy_load_buffer_state (void) { (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; (yy_hold_char) = *(yy_c_buf_p); } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * * @return the allocated buffer state. */ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yyalloc(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 *) yyalloc(b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer(b,file ); return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * */ void yy_delete_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree((void *) b->yy_ch_buf ); yyfree((void *) b ); } #ifndef __cplusplus extern int isatty (int ); #endif /* __cplusplus */ /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) { int oerrno = errno; yy_flush_buffer(b ); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * */ void yy_flush_buffer (YY_BUFFER_STATE b ) { 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( ); } /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * */ void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) { if (new_buffer == NULL) return; yyensure_buffer_stack(); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) (yy_buffer_stack_top)++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * */ void yypop_buffer_state (void) { if (!YY_CURRENT_BUFFER) return; yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; if ((yy_buffer_stack_top) > 0) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ static void yyensure_buffer_stack (void) { int num_to_alloc; if (!(yy_buffer_stack)) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; (yy_buffer_stack_top) = 0; return; } if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ int grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc ((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); /* zero only the new slots.*/ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; } } /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) { 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) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer(b ); return b; } /** Setup the input buffer state to scan a string. The next call to yylex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) { return yy_scan_bytes(yystr,strlen(yystr) ); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will * scan from a @e copy of @a bytes. * @param yybytes the byte buffer to scan * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len ) { YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; /* Get memory for full buffer, including space for trailing EOB's. */ n = _yybytes_len + 2; buf = (char *) yyalloc(n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer(buf,n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif static void yy_fatal_error (yyconst char* msg ) { (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. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = (yy_hold_char); \ (yy_c_buf_p) = yytext + yyless_macro_arg; \ (yy_hold_char) = *(yy_c_buf_p); \ *(yy_c_buf_p) = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ int yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the current line number. * @param line_number * */ void yyset_lineno (int line_number ) { yylineno = line_number; } /** Set the input stream. This does not discard the current * input buffer. * @param in_str A readable stream. * * @see yy_switch_to_buffer */ void yyset_in (FILE * in_str ) { yyin = in_str ; } void yyset_out (FILE * out_str ) { yyout = out_str ; } int yyget_debug (void) { return yy_flex_debug; } void yyset_debug (int bdebug ) { yy_flex_debug = bdebug ; } static int yy_init_globals (void) { /* Initialization is the same as for the non-reentrant scanner. * This function is called from yylex_destroy(), so don't allocate here. */ /* We do not touch yylineno unless the option is enabled. */ yylineno = 1; (yy_buffer_stack) = 0; (yy_buffer_stack_top) = 0; (yy_buffer_stack_max) = 0; (yy_c_buf_p) = (char *) 0; (yy_init) = 0; (yy_start) = 0; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = (FILE *) 0; yyout = (FILE *) 0; #endif /* For future reference: Set errno on error, since we are called by * yylex_init() */ return 0; } /* yylex_destroy is for both reentrant and non-reentrant scanners. */ int yylex_destroy (void) { /* Pop the buffer stack, destroying each element. */ while(YY_CURRENT_BUFFER){ yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; yypop_buffer_state(); } /* Destroy the stack itself. */ yyfree((yy_buffer_stack) ); (yy_buffer_stack) = NULL; /* Reset the globals. This is important in a non-reentrant scanner so the next time * yylex() is called, initialization will occur. */ yy_init_globals( ); return 0; } /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * s ) { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return (void *) malloc( size ); } void *yyrealloc (void * ptr, yy_size_t size ) { /* 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 ); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 180 "read_config_lex.l" int yywrap() { return 1; }