#include "config.h" #include "util/configyyrename.h" #line 3 "" #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 6 #define YY_FLEX_SUBMINOR_VERSION 1 #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 */ /* TODO: this is always defined, so inline it */ #define yyconst const #if defined(__GNUC__) && __GNUC__ >= 3 #define yynoreturn __attribute__((__noreturn__)) #else #define yynoreturn #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 #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #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 #define YY_LESS_LINENO(n) #define YY_LINENO_REWIND_TO(ptr) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ yy_size_t 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_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. */ int 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 = NULL; /**< 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 = NULL; 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 = NULL, *yyout = NULL; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #ifdef yytext_ptr #undef yytext_ptr #endif #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 yynoreturn 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; \ (yytext_ptr) -= (yy_more_len); \ yyleng = (int) (yy_cp - (yytext_ptr)); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 257 #define YY_END_OF_BUFFER 258 /* 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[2537] = { 0, 1, 1, 239, 239, 243, 243, 247, 247, 251, 251, 1, 1, 258, 255, 1, 237, 237, 256, 2, 256, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 239, 240, 240, 241, 256, 243, 244, 244, 245, 256, 250, 247, 248, 248, 249, 256, 251, 252, 252, 253, 256, 254, 238, 2, 242, 256, 254, 255, 0, 1, 2, 2, 2, 2, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 239, 0, 243, 0, 250, 0, 247, 251, 0, 254, 0, 2, 2, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 99, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 83, 255, 255, 255, 255, 255, 255, 8, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 103, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 43, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 186, 255, 14, 15, 255, 18, 17, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 98, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 172, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 3, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255, 255, 255, 255, 231, 255, 255, 230, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 246, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 46, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 47, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 161, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 20, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 118, 255, 255, 246, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 213, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 136, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 117, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 81, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 28, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 29, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 44, 255, 255, 255, 255, 255, 255, 255, 255, 255, 97, 255, 255, 255, 96, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 45, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 137, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 34, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 201, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 38, 255, 39, 255, 255, 255, 255, 84, 255, 85, 255, 255, 255, 82, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 7, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 179, 255, 255, 255, 255, 120, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 35, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 153, 255, 152, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 16, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 48, 255, 255, 255, 255, 255, 255, 255, 160, 255, 255, 255, 255, 255, 87, 86, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 147, 255, 255, 255, 255, 255, 255, 255, 255, 104, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 66, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 70, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 42, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 150, 151, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 6, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 211, 255, 255, 232, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 32, 255, 255, 255, 255, 255, 255, 255, 255, 143, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 165, 255, 144, 255, 255, 177, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 33, 255, 255, 255, 255, 255, 255, 101, 91, 255, 92, 255, 255, 90, 255, 255, 255, 255, 255, 255, 255, 255, 115, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 200, 255, 255, 255, 255, 255, 255, 255, 255, 145, 255, 255, 255, 255, 255, 148, 255, 255, 176, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 80, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 40, 255, 255, 255, 22, 255, 255, 255, 255, 255, 19, 255, 255, 255, 23, 255, 125, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 55, 57, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 215, 255, 255, 255, 187, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 93, 255, 255, 255, 255, 255, 255, 255, 255, 114, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 226, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 119, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 171, 255, 255, 255, 255, 255, 255, 255, 255, 235, 255, 255, 255, 255, 255, 255, 255, 135, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 130, 255, 138, 255, 255, 255, 255, 255, 107, 255, 255, 255, 76, 255, 255, 255, 255, 163, 255, 255, 255, 255, 255, 178, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 192, 255, 255, 255, 255, 255, 255, 100, 255, 255, 255, 255, 255, 255, 255, 255, 255, 134, 255, 255, 255, 255, 255, 58, 59, 255, 255, 255, 255, 255, 41, 255, 255, 255, 255, 255, 65, 139, 255, 154, 255, 180, 149, 255, 255, 255, 51, 255, 141, 255, 255, 255, 255, 255, 9, 255, 255, 255, 79, 255, 255, 255, 255, 205, 255, 255, 255, 162, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 133, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 121, 214, 255, 255, 255, 255, 191, 255, 255, 255, 255, 255, 255, 255, 255, 173, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 229, 255, 140, 255, 255, 255, 50, 52, 255, 255, 255, 255, 255, 255, 255, 78, 255, 255, 255, 255, 203, 255, 255, 255, 210, 255, 255, 255, 255, 255, 167, 30, 24, 26, 255, 255, 255, 255, 255, 31, 25, 27, 255, 255, 255, 255, 255, 255, 75, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 169, 166, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 49, 255, 102, 255, 255, 255, 255, 255, 255, 255, 255, 116, 13, 255, 255, 255, 255, 255, 255, 255, 255, 255, 224, 255, 227, 255, 255, 255, 255, 255, 255, 12, 255, 255, 21, 255, 255, 255, 209, 255, 255, 255, 212, 53, 255, 175, 255, 168, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 129, 128, 255, 255, 255, 255, 255, 255, 255, 170, 164, 255, 255, 255, 216, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 60, 255, 255, 255, 204, 255, 255, 255, 255, 255, 174, 255, 255, 255, 255, 255, 255, 255, 255, 233, 234, 54, 255, 255, 255, 88, 89, 255, 122, 255, 124, 255, 155, 255, 255, 255, 127, 255, 255, 181, 255, 255, 255, 255, 255, 109, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 188, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 156, 255, 255, 202, 255, 228, 255, 255, 255, 36, 255, 255, 255, 255, 4, 255, 255, 108, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 184, 255, 255, 255, 255, 255, 255, 255, 217, 255, 255, 255, 255, 255, 255, 190, 255, 255, 159, 255, 255, 255, 255, 255, 255, 255, 255, 255, 63, 255, 37, 208, 255, 185, 255, 255, 11, 255, 255, 255, 255, 255, 255, 157, 67, 255, 255, 255, 255, 255, 132, 255, 255, 255, 255, 255, 111, 255, 255, 255, 255, 255, 255, 255, 255, 255, 189, 105, 255, 94, 95, 255, 255, 255, 69, 73, 68, 255, 61, 255, 255, 255, 10, 255, 255, 255, 206, 255, 255, 255, 255, 131, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 74, 72, 255, 62, 225, 255, 255, 255, 146, 255, 255, 158, 255, 255, 255, 255, 255, 255, 123, 56, 255, 255, 255, 255, 255, 218, 255, 255, 255, 255, 255, 255, 255, 106, 71, 112, 113, 64, 255, 207, 126, 255, 255, 255, 255, 183, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 77, 255, 182, 255, 199, 222, 255, 255, 255, 255, 255, 255, 255, 255, 255, 5, 255, 255, 255, 223, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 110, 255, 255, 255, 255, 255, 255, 255, 255, 255, 142, 255, 255, 255, 255, 255, 255, 255, 255, 255, 219, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 236, 255, 255, 195, 255, 255, 255, 255, 255, 220, 255, 255, 255, 255, 255, 255, 221, 255, 255, 255, 193, 255, 196, 197, 255, 255, 255, 255, 255, 194, 198, 0 } ; static yyconst YY_CHAR yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 5, 6, 1, 1, 1, 7, 1, 1, 1, 1, 1, 8, 1, 1, 1, 9, 1, 10, 11, 1, 12, 1, 1, 1, 13, 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, 14, 1, 1, 1, 1, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 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, 1, 1 } ; static yyconst YY_CHAR yy_meta[41] = { 0, 1, 2, 3, 4, 5, 1, 6, 1, 1, 1, 1, 1, 7, 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_uint16_t yy_base[2551] = { 0, 0, 0, 38, 41, 44, 46, 59, 65, 71, 77, 90, 112, 1707, 1624, 81, 4963, 4963, 4963, 96, 52, 106, 63, 107, 111, 70, 117, 128, 131, 57, 88, 76, 133, 139, 130, 141, 143, 153, 162, 172, 174, 186, 149, 1352, 4963, 4963, 4963, 107, 1178, 4963, 4963, 4963, 186, 1148, 1090, 4963, 4963, 4963, 206, 984, 4963, 4963, 4963, 210, 751, 4963, 214, 4963, 218, 155, 722, 222, 173, 0, 229, 0, 0, 180, 185, 85, 198, 223, 224, 216, 230, 231, 232, 233, 114, 235, 242, 243, 241, 237, 246, 247, 256, 253, 259, 263, 268, 267, 270, 271, 272, 276, 277, 285, 280, 294, 284, 279, 288, 298, 289, 300, 303, 310, 304, 308, 313, 314, 316, 318, 326, 317, 335, 322, 325, 332, 337, 338, 342, 343, 345, 347, 339, 348, 346, 652, 371, 604, 359, 414, 376, 327, 250, 380, 163, 384, 388, 0, 380, 363, 390, 373, 385, 386, 387, 382, 389, 394, 392, 396, 408, 398, 406, 416, 415, 417, 419, 411, 422, 423, 424, 439, 425, 440, 432, 434, 441, 442, 443, 447, 457, 450, 444, 451, 465, 468, 472, 454, 476, 471, 461, 479, 481, 489, 490, 485, 487, 488, 491, 493, 203, 495, 496, 497, 498, 501, 504, 505, 508, 506, 510, 512, 521, 517, 528, 518, 527, 519, 537, 539, 523, 546, 532, 547, 550, 551, 558, 541, 530, 554, 555, 556, 557, 561, 568, 570, 571, 572, 579, 563, 574, 580, 581, 582, 583, 584, 589, 585, 596, 592, 599, 601, 597, 594, 603, 607, 605, 618, 615, 622, 617, 620, 625, 623, 627, 630, 631, 632, 633, 634, 636, 637, 638, 640, 643, 645, 648, 647, 660, 661, 656, 657, 662, 665, 669, 667, 673, 676, 682, 683, 684, 687, 688, 689, 692, 694, 695, 693, 700, 703, 706, 707, 709, 716, 711, 712, 719, 718, 721, 730, 714, 734, 720, 742, 738, 739, 745, 747, 741, 744, 740, 4963, 746, 756, 771, 757, 768, 781, 763, 758, 776, 778, 782, 784, 788, 789, 798, 791, 796, 797, 794, 799, 800, 811, 806, 807, 813, 818, 820, 821, 823, 832, 822, 824, 825, 833, 834, 831, 839, 848, 838, 844, 846, 851, 850, 852, 857, 863, 866, 874, 855, 871, 869, 878, 879, 880, 882, 884, 885, 886, 894, 892, 890, 897, 891, 893, 901, 903, 904, 906, 909, 910, 912, 4963, 916, 918, 920, 921, 922, 923, 4963, 925, 924, 926, 933, 929, 947, 932, 934, 946, 955, 936, 950, 957, 952, 958, 959, 961, 960, 962, 965, 968, 969, 970, 990, 972, 974, 971, 978, 979, 995, 986, 1003, 988, 1011, 999, 976, 1001, 1012, 1005, 1015, 1007, 1017, 1018, 1023, 1021, 1024, 1029, 1025, 4963, 1032, 1033, 1045, 1034, 1035, 1038, 1042, 1047, 1048, 854, 1049, 1056, 1058, 1050, 1065, 1063, 1064, 1066, 1068, 1069, 1070, 1071, 1080, 1077, 1083, 1085, 1094, 1092, 1096, 1099, 1076, 1098, 1100, 1101, 1102, 1104, 1106, 1107, 1114, 1112, 1110, 1113, 1115, 1123, 1121, 1120, 1129, 1122, 1130, 1124, 1133, 1139, 1136, 1143, 1151, 1146, 1149, 1153, 1154, 1156, 1147, 1160, 1162, 1165, 1166, 1168, 1169, 1176, 1171, 1180, 1182, 1186, 1172, 1174, 1193, 1189, 1198, 1196, 1195, 1203, 1201, 1204, 1205, 1212, 1207, 1209, 1210, 1221, 1208, 1211, 1233, 1222, 1219, 1229, 1230, 1234, 1235, 1237, 1238, 1239, 1240, 1241, 1242, 1246, 1247, 1243, 1252, 1248, 1272, 1250, 1254, 1257, 1259, 1267, 1268, 1270, 1274, 1276, 1279, 1281, 1280, 1282, 1284, 1291, 1283, 1292, 1289, 1300, 1293, 1302, 1303, 1304, 1306, 1307, 1308, 1314, 1316, 1321, 1310, 1322, 1326, 1327, 1332, 1329, 4963, 1323, 1339, 1334, 1337, 1335, 1340, 1350, 1345, 1346, 1348, 1349, 1356, 4963, 1351, 4963, 4963, 1355, 4963, 4963, 1362, 1357, 1370, 1359, 1376, 1379, 1367, 1380, 1388, 1401, 1384, 1383, 1391, 1385, 1392, 1387, 1399, 1393, 1396, 1397, 1407, 1414, 1416, 1422, 1415, 1418, 1425, 1423, 1426, 1428, 1430, 1432, 1434, 1433, 1438, 1435, 1442, 4963, 1439, 1452, 1455, 1453, 1454, 1457, 1458, 1459, 1462, 1461, 1463, 1470, 1464, 1471, 1478, 1474, 4963, 1475, 1476, 1481, 1480, 1487, 1483, 1491, 1494, 1492, 1496, 1497, 1498, 1499, 4963, 1501, 1509, 1500, 1511, 1504, 1512, 1513, 1514, 1517, 1518, 1519, 1520, 1524, 1526, 1528, 1529, 1530, 1539, 1542, 1531, 1534, 1546, 1547, 1550, 1549, 1558, 1553, 1561, 1556, 1557, 1559, 1562, 1564, 1574, 1578, 1565, 1577, 1580, 1587, 1582, 1584, 1586, 1589, 1591, 1588, 1592, 1597, 1600, 1598, 4963, 1599, 1601, 4963, 1606, 1607, 1629, 1608, 1610, 1612, 1611, 1616, 1618, 1625, 1621, 1643, 1639, 1644, 1631, 1647, 1649, 1641, 1651, 1656, 1657, 1664, 1660, 1666, 1671, 1667, 1669, 1688, 1668, 1673, 1676, 1679, 1674, 1677, 1684, 1681, 1683, 1685, 1698, 1699, 4963, 1706, 1709, 1701, 1705, 1716, 1717, 1711, 1613, 1715, 1713, 1725, 1723, 1721, 1726, 1727, 1728, 1733, 1734, 1735, 1745, 4963, 1736, 1737, 1741, 1746, 1749, 1752, 1755, 1758, 1762, 1770, 1738, 4963, 1765, 1772, 1773, 1775, 1768, 1769, 1776, 1779, 1780, 1790, 1783, 1785, 1786, 1791, 1793, 1797, 1799, 1800, 1802, 4963, 1806, 1801, 1809, 1816, 1819, 1811, 1808, 1821, 1822, 1823, 1825, 1828, 1833, 1835, 1831, 1832, 4963, 1830, 1844, 1847, 1834, 1839, 1849, 1850, 1851, 1853, 1860, 1862, 1855, 1858, 1867, 1859, 1868, 1864, 1875, 1872, 1874, 1873, 1877, 4963, 1879, 1881, 124, 1885, 1886, 1884, 1888, 1891, 1900, 1903, 1904, 1893, 1905, 1906, 1907, 1908, 1912, 1896, 1916, 1914, 1917, 1919, 1924, 1922, 1925, 1926, 1928, 4963, 1934, 1932, 1941, 1939, 1949, 1943, 1945, 1950, 1951, 1957, 1956, 4963, 1959, 1960, 1963, 1964, 1967, 1968, 1966, 1972, 1973, 1974, 1979, 1976, 1978, 1980, 1982, 1984, 1987, 1992, 1993, 1994, 4963, 2004, 1995, 1999, 1996, 2005, 2006, 2020, 2008, 2011, 2015, 2021, 2029, 2017, 2023, 2039, 2035, 2026, 2040, 2041, 2045, 2043, 2047, 2051, 2053, 2054, 2055, 2062, 2063, 2059, 2061, 2066, 2069, 2074, 2076, 4963, 2077, 2078, 2071, 2079, 2091, 2083, 2092, 2094, 2095, 2096, 2098, 2099, 2102, 2100, 2101, 2103, 2109, 2111, 2118, 2112, 2120, 2122, 4963, 2123, 2125, 2128, 2132, 2129, 2136, 2133, 2137, 2139, 2141, 2142, 2143, 2144, 4963, 2150, 2151, 2155, 2152, 2154, 2164, 2161, 2166, 2167, 2168, 4963, 2175, 2176, 2173, 2177, 2180, 2182, 2183, 2185, 2186, 4963, 2187, 2188, 2196, 4963, 2197, 2195, 2192, 2193, 2199, 2198, 2202, 2200, 2204, 2208, 2214, 2218, 2210, 2222, 4963, 2221, 2231, 2223, 2228, 2224, 2234, 2235, 2237, 2239, 2243, 2252, 2244, 2247, 2251, 2254, 2255, 2256, 2259, 2262, 4963, 2260, 2263, 2264, 2267, 2266, 2268, 2276, 2272, 2269, 2275, 2278, 2279, 2289, 2285, 2295, 2286, 2296, 2301, 2297, 2303, 2299, 2306, 2313, 2314, 2315, 2317, 4963, 2322, 2319, 2324, 2310, 2325, 2326, 2327, 2329, 2331, 2332, 2337, 2335, 2336, 2344, 2353, 2345, 2348, 2350, 2354, 2362, 2346, 2357, 2358, 2366, 2359, 2361, 2363, 2368, 2370, 2371, 2374, 2385, 2388, 2381, 2395, 2396, 2375, 2377, 2397, 2398, 2402, 4963, 2400, 2399, 2383, 2407, 2410, 2412, 2415, 2416, 2413, 2418, 2422, 2430, 2426, 4963, 2427, 4963, 2428, 2429, 2431, 2441, 4963, 2438, 4963, 2440, 2443, 2444, 4963, 2447, 2451, 2446, 2448, 2454, 2456, 2457, 2461, 2458, 2463, 2464, 2466, 2469, 2470, 2474, 2476, 2477, 2480, 2478, 2481, 4963, 2492, 2483, 2485, 2489, 2493, 2495, 2487, 2496, 2502, 2504, 2505, 2506, 2510, 2518, 2513, 2520, 4963, 2517, 2522, 2519, 2523, 4963, 2524, 2526, 2534, 2528, 2532, 2530, 2536, 2540, 2537, 2543, 2551, 2552, 2553, 2547, 2555, 2559, 2561, 2568, 2565, 2570, 2567, 2573, 2574, 2575, 2576, 2583, 2585, 2582, 2595, 2578, 2588, 2581, 2597, 2590, 2591, 2598, 2599, 2600, 2603, 2604, 2612, 2605, 2607, 2609, 2610, 4963, 2620, 2616, 2621, 2628, 2622, 2624, 2630, 2632, 2633, 2634, 2639, 2635, 2640, 4963, 2643, 4963, 2641, 2652, 2660, 2645, 2653, 2657, 2655, 2661, 2664, 2665, 2667, 2675, 2679, 2668, 2673, 2680, 2681, 2684, 2682, 4963, 2685, 2687, 2689, 2691, 2692, 2697, 2703, 2699, 2696, 2706, 2712, 2721, 4963, 2719, 2716, 2723, 2731, 2724, 2732, 2733, 4963, 2717, 2728, 2741, 2736, 2743, 4963, 4963, 2738, 2740, 2745, 2747, 2744, 2754, 2750, 2751, 2755, 2762, 2767, 2693, 2764, 4963, 2766, 2756, 2768, 2773, 2779, 2780, 2777, 2770, 4963, 2781, 2788, 2771, 2783, 2791, 2789, 2792, 2794, 2795, 2805, 2800, 2802, 2803, 2807, 2808, 2817, 4963, 2814, 2818, 2822, 2823, 2824, 2825, 2810, 2829, 2831, 2832, 2833, 2834, 2836, 2837, 2839, 2845, 2840, 2841, 2847, 2859, 2842, 2855, 2857, 2862, 2865, 2869, 2871, 2858, 2873, 2861, 2875, 2880, 2881, 2889, 2884, 4963, 2892, 2876, 2897, 2888, 2890, 2899, 2900, 2908, 2903, 2904, 2905, 2912, 2907, 4963, 2920, 2895, 2921, 2918, 2911, 2934, 2930, 2931, 2932, 2936, 2933, 2937, 2940, 2941, 2942, 2945, 4963, 4963, 2946, 2947, 2949, 2950, 2954, 2957, 2952, 2969, 2956, 2958, 4963, 2962, 2977, 2964, 2972, 2981, 2986, 2988, 2985, 2983, 2973, 2976, 2989, 2991, 2996, 2997, 2998, 3006, 3002, 3003, 3004, 4963, 3007, 3005, 4963, 3009, 3011, 3010, 3012, 3030, 3013, 3025, 3032, 3019, 3033, 3034, 3035, 3043, 3039, 3042, 3045, 3049, 3058, 3050, 3059, 3051, 3060, 3068, 4963, 3063, 3065, 3064, 3066, 3073, 3070, 3080, 3071, 4963, 3079, 3078, 3085, 3088, 3090, 3082, 3099, 3094, 3096, 3097, 3095, 4963, 3105, 4963, 3106, 3107, 4963, 3108, 3111, 3112, 3114, 3115, 3116, 3122, 3126, 3098, 3128, 3129, 3130, 3131, 3133, 3140, 3132, 4963, 3141, 3136, 3139, 3143, 3144, 3145, 4963, 4963, 3151, 4963, 3155, 3157, 4963, 3159, 3161, 3166, 3162, 3163, 3165, 3169, 3170, 4963, 3176, 3172, 3180, 3177, 3182, 3184, 3185, 3187, 3188, 3189, 3194, 4963, 3190, 3193, 3202, 3191, 3195, 3208, 3207, 3198, 4963, 3216, 3217, 3206, 3220, 3222, 4963, 3223, 3226, 4963, 3227, 3231, 3233, 3234, 3235, 3238, 3240, 3236, 3242, 3250, 3246, 3247, 3248, 4963, 3249, 3252, 3258, 3263, 3255, 3253, 3267, 3269, 3275, 3271, 3281, 3272, 3282, 3285, 3288, 3276, 3289, 3291, 3292, 3293, 4963, 3294, 3298, 3299, 4963, 3295, 3296, 3302, 3307, 3311, 4963, 3309, 3312, 3313, 4963, 3322, 4963, 3323, 3314, 3315, 3319, 3324, 3332, 3326, 3339, 3334, 3336, 3342, 3343, 3351, 3346, 3352, 3348, 4963, 4963, 3355, 3357, 3361, 3363, 3364, 3359, 3366, 3373, 3369, 3376, 3377, 3385, 4963, 3386, 3378, 3387, 4963, 3380, 3388, 3381, 3392, 3389, 3395, 3396, 3400, 3397, 3402, 3403, 3406, 3409, 3410, 3419, 4963, 3411, 3414, 3416, 3420, 3421, 3422, 3423, 3424, 4963, 3426, 3437, 3431, 3425, 3442, 3446, 3447, 3450, 3452, 3453, 3454, 3457, 3460, 3462, 3465, 4963, 3466, 3455, 3463, 3464, 3474, 3478, 3479, 3481, 3482, 3485, 3487, 3488, 3489, 4963, 3490, 3492, 3493, 3497, 3499, 3501, 3503, 3504, 3510, 3494, 3511, 3514, 3516, 4963, 3518, 3519, 3521, 3523, 3525, 3522, 3528, 3529, 4963, 3531, 3532, 3539, 3534, 3547, 3540, 3427, 4963, 3545, 3550, 3551, 3537, 3553, 3554, 3558, 3559, 3565, 3561, 3567, 3568, 3569, 3571, 3574, 3577, 3578, 3581, 3579, 3584, 4963, 3585, 4963, 3589, 3590, 3600, 3601, 3592, 4963, 3597, 3603, 3599, 4963, 3604, 3606, 3609, 3607, 4963, 3617, 3621, 3611, 3613, 3628, 4963, 3630, 3632, 3633, 3640, 3642, 3644, 3623, 3645, 3639, 3641, 3647, 3648, 4963, 3650, 3653, 3658, 3659, 3652, 3661, 4963, 3660, 3662, 3663, 3667, 3668, 3669, 3676, 3673, 3675, 4963, 3678, 3681, 3689, 3684, 3685, 4963, 4963, 3690, 3695, 3697, 3691, 3698, 4963, 3701, 3708, 3703, 3707, 3709, 4963, 4963, 3711, 4963, 3712, 4963, 4963, 3714, 3716, 3723, 4963, 3725, 4963, 3726, 3727, 3713, 3731, 3732, 4963, 3733, 3734, 3736, 4963, 3738, 3745, 3740, 3741, 4963, 3743, 3744, 3748, 4963, 3749, 3755, 3757, 3759, 3751, 3760, 3764, 3768, 3771, 3773, 3776, 3777, 3778, 3779, 3781, 3783, 3785, 3787, 3791, 3788, 3792, 3793, 3794, 3797, 3798, 3804, 3801, 3806, 3807, 3808, 3809, 3811, 3812, 3815, 4963, 3816, 3817, 3819, 3820, 3822, 3826, 3830, 3829, 3838, 3840, 4963, 4963, 3843, 3845, 3846, 3847, 4963, 3848, 3849, 3850, 3851, 3852, 3853, 3856, 3854, 4963, 3859, 3860, 3865, 3862, 3870, 3875, 3876, 3877, 3878, 3881, 3879, 3884, 3886, 3893, 3889, 3890, 3892, 3894, 3900, 3901, 3903, 3902, 3910, 3912, 3916, 4963, 3906, 4963, 3913, 3917, 3919, 4963, 4963, 3923, 3924, 3929, 3918, 3926, 3931, 3932, 4963, 3934, 3935, 3941, 3942, 4963, 3945, 3946, 3948, 4963, 3951, 3952, 3954, 3956, 3958, 4963, 4963, 4963, 4963, 3959, 3962, 3963, 3964, 3969, 4963, 4963, 4963, 3967, 3968, 3970, 3973, 3974, 3979, 4963, 3980, 3983, 3985, 3986, 3992, 3997, 3998, 3989, 4006, 3999, 4002, 4007, 4008, 4010, 4012, 4963, 4963, 4014, 4015, 4025, 4016, 4023, 4026, 4029, 4030, 4031, 4017, 4034, 4036, 4037, 4963, 4043, 4963, 4039, 4045, 4038, 4047, 4048, 4052, 4053, 4055, 4963, 4963, 4051, 4058, 4062, 4066, 4063, 4059, 4069, 4072, 4067, 4963, 4073, 4963, 4074, 4075, 4083, 4090, 4085, 4087, 4963, 4091, 4095, 4963, 4076, 4096, 4097, 4963, 4098, 4102, 4104, 4963, 4963, 4106, 4963, 4107, 4963, 4109, 4113, 4116, 4118, 4119, 4121, 4123, 4126, 4128, 4131, 4132, 4133, 4140, 4136, 4137, 4963, 4963, 4145, 4138, 4142, 4152, 4149, 4151, 4154, 4963, 4963, 4157, 4156, 4160, 4963, 4158, 4165, 4159, 4166, 4167, 4169, 4170, 4173, 4175, 4178, 4179, 4180, 4187, 4190, 4192, 4195, 4196, 4182, 4197, 4199, 4200, 4204, 4963, 4206, 4207, 4203, 4963, 4213, 4209, 4215, 4217, 4218, 4963, 4219, 4226, 4228, 4229, 4230, 4240, 4231, 4233, 4963, 4963, 4963, 4236, 4241, 4243, 4963, 4963, 4246, 4963, 4247, 4963, 4248, 4963, 4249, 4251, 4253, 4963, 4256, 4263, 4963, 4258, 4265, 4260, 4266, 4268, 4963, 4276, 4272, 4278, 4282, 4275, 4279, 4284, 4286, 4294, 4287, 4291, 4963, 4292, 4295, 4297, 4301, 4302, 4299, 4298, 4305, 4306, 4308, 4313, 4309, 4320, 4317, 4963, 4323, 4327, 4963, 4324, 4963, 4329, 4330, 4332, 4963, 4334, 4331, 4338, 4339, 4963, 4340, 4342, 4963, 4343, 4348, 4350, 4344, 4352, 4354, 4355, 4357, 4360, 4363, 4368, 4963, 4362, 4364, 4376, 4379, 4380, 4381, 4371, 4963, 4382, 4385, 4386, 4394, 4391, 4393, 4963, 4396, 4397, 4963, 4399, 4401, 4402, 4403, 4406, 4413, 4415, 4419, 4420, 4963, 4422, 4963, 4963, 4404, 4963, 4410, 4426, 4963, 4429, 4424, 4430, 4431, 4434, 4436, 4963, 4963, 4435, 4443, 4439, 4445, 4446, 4963, 4442, 4448, 4452, 4453, 4454, 4963, 4455, 4456, 4458, 4459, 4464, 4461, 4466, 4467, 4469, 4963, 4963, 4470, 4963, 4963, 4472, 4481, 4485, 4963, 4963, 4963, 4487, 4963, 4492, 4496, 4495, 4963, 4498, 4500, 4501, 4963, 4503, 4504, 4505, 4506, 4963, 4507, 4508, 4512, 4520, 4523, 4514, 4526, 4524, 4538, 4516, 4527, 4528, 4530, 4534, 4535, 4541, 4545, 4963, 4963, 4547, 4963, 4963, 4549, 4554, 4556, 4963, 4550, 4558, 4963, 4562, 4563, 4564, 4565, 4567, 4569, 4963, 4963, 4570, 4473, 4571, 4572, 4574, 4963, 4577, 4581, 4579, 4584, 4583, 4585, 4590, 4963, 4963, 4963, 4963, 4963, 4591, 4963, 4963, 4586, 4595, 4587, 4596, 4963, 4598, 4600, 4608, 4612, 4601, 4604, 4615, 4617, 4619, 4618, 4620, 4623, 4622, 4625, 4627, 4624, 4630, 4631, 4641, 4644, 4635, 4646, 4647, 4648, 4651, 4649, 4652, 4661, 4657, 4659, 4660, 4963, 4662, 4963, 4663, 4963, 4963, 4665, 4668, 4670, 4672, 4682, 4686, 4673, 4675, 4683, 4963, 4684, 4685, 4689, 4963, 4690, 4692, 4694, 4695, 4696, 4698, 4700, 4701, 4703, 4707, 4712, 4714, 4722, 4723, 4715, 4725, 4727, 4718, 4734, 4731, 4739, 4963, 4729, 4735, 4740, 4741, 4742, 4749, 4744, 4745, 4750, 4963, 4753, 4755, 4757, 4746, 4756, 4759, 4768, 4766, 4770, 4963, 4748, 4776, 4773, 4778, 4780, 4782, 4784, 4785, 4789, 4790, 4794, 4798, 4786, 4799, 4800, 4802, 4801, 4963, 4809, 4803, 4963, 4805, 4811, 4812, 4813, 4814, 4963, 4818, 4821, 4823, 4824, 4827, 4828, 4963, 4830, 4834, 4836, 4963, 4839, 4963, 4963, 4841, 4837, 4838, 4848, 4850, 4963, 4963, 4963, 4871, 4878, 4885, 4892, 4899, 88, 4906, 4913, 4920, 4927, 4934, 4941, 4948, 4955 } ; static yyconst flex_int16_t yy_def[2551] = { 0, 2536, 1, 2537, 2537, 2538, 2538, 2539, 2539, 2540, 2540, 2541, 2541, 2536, 2542, 2536, 2536, 2536, 2536, 2543, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2544, 2536, 2536, 2536, 2544, 2545, 2536, 2536, 2536, 2545, 2546, 2536, 2536, 2536, 2536, 2546, 2547, 2536, 2536, 2536, 2547, 2548, 2536, 2549, 2536, 2548, 2548, 2542, 2542, 2536, 2550, 2543, 2550, 2543, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2544, 2544, 2545, 2545, 2546, 2546, 2536, 2547, 2547, 2548, 2548, 2549, 2549, 2548, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2548, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2548, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2548, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2548, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2536, 2536, 2542, 2536, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2548, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2548, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2536, 2542, 2542, 2542, 2542, 2536, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2536, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2542, 2536, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2542, 2536, 2542, 2536, 2536, 2542, 2542, 2542, 2536, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2536, 2542, 2542, 2542, 2536, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2536, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2536, 2536, 2542, 2536, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2536, 2542, 2542, 2542, 2536, 2536, 2542, 2536, 2542, 2536, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2536, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2536, 2536, 2542, 2536, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2542, 2536, 2536, 2542, 2542, 2542, 2536, 2536, 2536, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2542, 2536, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 2536, 2536, 2536, 2542, 2536, 2536, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2536, 2542, 2536, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2542, 2542, 2542, 2536, 2542, 2542, 2542, 2536, 2542, 2536, 2536, 2542, 2542, 2542, 2542, 2542, 2536, 2536, 0, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536 } ; static yyconst flex_uint16_t yy_nxt[5004] = { 0, 14, 15, 16, 17, 18, 19, 18, 14, 14, 14, 14, 14, 18, 20, 21, 22, 23, 24, 25, 26, 14, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 14, 14, 14, 42, 44, 45, 46, 44, 45, 46, 49, 50, 49, 50, 51, 47, 51, 70, 47, 70, 70, 52, 70, 52, 54, 55, 56, 57, 70, 18, 54, 55, 56, 57, 71, 18, 58, 60, 61, 62, 71, 81, 58, 60, 61, 62, 72, 71, 63, 101, 73, 91, 70, 71, 63, 15, 16, 17, 65, 66, 67, 75, 71, 75, 75, 71, 75, 68, 103, 155, 102, 92, 75, 76, 139, 139, 69, 15, 16, 17, 65, 66, 67, 71, 71, 82, 77, 78, 71, 68, 79, 71, 83, 86, 71, 93, 84, 87, 69, 85, 88, 149, 89, 90, 80, 71, 95, 71, 71, 94, 71, 104, 97, 167, 96, 98, 71, 108, 71, 105, 71, 109, 99, 112, 100, 106, 71, 113, 111, 107, 71, 118, 149, 114, 117, 119, 115, 110, 72, 71, 149, 138, 73, 116, 122, 120, 152, 123, 121, 71, 127, 71, 128, 141, 124, 131, 141, 71, 125, 126, 153, 129, 71, 71, 135, 132, 154, 130, 136, 133, 134, 143, 137, 143, 143, 71, 143, 146, 146, 75, 71, 75, 75, 148, 75, 148, 148, 70, 148, 70, 70, 151, 70, 71, 75, 156, 75, 75, 70, 75, 71, 71, 300, 157, 158, 75, 76, 71, 71, 71, 71, 160, 71, 169, 71, 163, 161, 159, 71, 71, 71, 164, 162, 71, 71, 173, 174, 147, 165, 166, 71, 168, 170, 71, 171, 178, 71, 177, 172, 184, 71, 175, 176, 180, 71, 71, 181, 71, 71, 71, 179, 189, 187, 71, 71, 190, 71, 71, 194, 182, 183, 71, 71, 186, 185, 71, 71, 193, 191, 195, 196, 71, 188, 192, 198, 71, 199, 71, 197, 201, 71, 71, 203, 200, 202, 71, 204, 71, 206, 208, 71, 71, 145, 71, 71, 71, 213, 217, 209, 71, 205, 207, 71, 71, 210, 211, 218, 214, 216, 71, 212, 215, 71, 219, 71, 71, 71, 221, 222, 71, 71, 226, 71, 71, 71, 71, 141, 229, 223, 141, 232, 225, 228, 220, 231, 224, 230, 233, 139, 139, 71, 143, 227, 143, 143, 235, 143, 146, 146, 148, 71, 148, 148, 75, 148, 75, 75, 149, 75, 71, 234, 236, 71, 71, 71, 151, 71, 71, 237, 71, 238, 71, 241, 71, 240, 71, 244, 239, 242, 247, 249, 243, 246, 71, 250, 71, 248, 251, 71, 245, 252, 144, 71, 71, 71, 253, 71, 260, 255, 71, 71, 71, 71, 256, 262, 263, 267, 261, 257, 71, 265, 71, 254, 264, 258, 259, 71, 71, 71, 71, 71, 71, 268, 269, 71, 274, 270, 71, 71, 275, 271, 71, 280, 272, 71, 276, 283, 273, 71, 266, 277, 281, 71, 285, 282, 71, 284, 288, 71, 71, 291, 287, 278, 71, 279, 286, 71, 289, 71, 290, 293, 294, 71, 292, 71, 71, 71, 71, 71, 295, 71, 297, 71, 71, 71, 71, 299, 296, 71, 303, 301, 71, 71, 71, 304, 71, 302, 71, 298, 71, 308, 310, 312, 305, 71, 71, 71, 306, 71, 315, 71, 309, 307, 318, 71, 71, 317, 71, 319, 71, 320, 311, 313, 314, 71, 316, 71, 322, 71, 321, 329, 323, 326, 71, 71, 324, 325, 71, 71, 328, 331, 71, 149, 71, 71, 71, 332, 330, 71, 337, 71, 338, 335, 336, 333, 71, 327, 71, 71, 71, 341, 71, 334, 339, 340, 342, 71, 71, 71, 71, 71, 71, 71, 350, 348, 343, 71, 346, 349, 71, 351, 71, 345, 71, 71, 344, 71, 353, 71, 354, 71, 142, 71, 357, 71, 347, 356, 352, 358, 360, 355, 359, 71, 362, 71, 71, 363, 71, 368, 71, 71, 364, 71, 366, 71, 367, 361, 71, 71, 71, 71, 71, 373, 71, 71, 71, 374, 71, 365, 376, 71, 378, 71, 372, 71, 71, 370, 369, 380, 140, 371, 382, 375, 71, 71, 377, 381, 71, 71, 71, 379, 383, 71, 385, 71, 384, 71, 390, 389, 391, 71, 386, 387, 71, 388, 395, 396, 393, 397, 71, 71, 71, 394, 398, 71, 71, 71, 392, 404, 71, 71, 71, 71, 406, 402, 403, 405, 71, 399, 401, 71, 400, 408, 71, 71, 407, 71, 413, 71, 71, 416, 71, 409, 71, 415, 71, 71, 71, 71, 71, 417, 412, 410, 418, 411, 422, 427, 71, 414, 419, 420, 71, 421, 428, 423, 71, 71, 71, 71, 71, 429, 71, 71, 71, 71, 432, 440, 424, 149, 430, 425, 439, 426, 71, 71, 149, 438, 431, 433, 437, 71, 434, 441, 435, 436, 71, 454, 442, 71, 450, 443, 444, 452, 71, 451, 71, 455, 453, 71, 71, 445, 71, 446, 447, 448, 71, 71, 449, 71, 462, 457, 71, 456, 71, 71, 71, 71, 71, 458, 463, 461, 468, 470, 71, 71, 460, 467, 459, 71, 474, 71, 464, 469, 465, 466, 71, 472, 71, 71, 71, 71, 71, 71, 471, 473, 477, 478, 479, 71, 71, 71, 71, 485, 484, 476, 71, 71, 481, 482, 480, 486, 71, 475, 71, 483, 71, 488, 71, 71, 71, 489, 71, 71, 596, 71, 487, 493, 490, 496, 497, 71, 491, 492, 71, 498, 500, 71, 494, 71, 495, 503, 71, 499, 501, 502, 71, 71, 71, 506, 71, 504, 71, 71, 71, 510, 511, 508, 71, 71, 71, 71, 71, 507, 512, 71, 509, 505, 515, 71, 514, 71, 71, 516, 71, 520, 519, 71, 71, 513, 71, 523, 521, 518, 71, 524, 71, 517, 71, 71, 71, 71, 71, 71, 71, 534, 526, 71, 527, 522, 71, 71, 71, 529, 71, 537, 535, 525, 533, 536, 528, 530, 532, 531, 71, 71, 538, 540, 71, 543, 71, 542, 539, 71, 541, 71, 71, 71, 71, 71, 71, 546, 549, 71, 545, 550, 71, 71, 71, 71, 71, 552, 71, 544, 71, 574, 71, 71, 551, 547, 548, 565, 147, 553, 71, 564, 71, 554, 71, 555, 562, 563, 566, 71, 556, 569, 557, 71, 567, 71, 568, 71, 571, 71, 558, 71, 570, 559, 560, 71, 71, 576, 572, 71, 561, 71, 71, 573, 577, 71, 579, 71, 71, 71, 575, 578, 582, 71, 583, 586, 71, 149, 71, 71, 580, 588, 71, 589, 581, 587, 71, 584, 585, 71, 590, 71, 71, 71, 71, 594, 599, 592, 591, 598, 71, 597, 71, 601, 593, 595, 600, 71, 71, 71, 71, 603, 71, 71, 71, 71, 606, 605, 610, 602, 71, 71, 145, 611, 71, 604, 613, 71, 614, 71, 607, 609, 615, 608, 612, 616, 71, 618, 71, 617, 71, 619, 71, 71, 71, 71, 71, 620, 71, 623, 71, 71, 627, 622, 71, 626, 71, 71, 71, 71, 628, 632, 630, 621, 71, 71, 71, 71, 71, 625, 633, 624, 629, 71, 71, 639, 635, 71, 634, 631, 71, 636, 641, 71, 638, 637, 640, 71, 642, 645, 71, 71, 144, 71, 643, 71, 647, 71, 71, 646, 71, 648, 644, 650, 71, 651, 71, 652, 655, 71, 71, 654, 71, 71, 659, 71, 71, 653, 71, 656, 71, 660, 142, 649, 71, 658, 71, 661, 657, 662, 71, 666, 665, 71, 664, 663, 668, 71, 667, 71, 71, 671, 71, 669, 670, 71, 672, 71, 71, 71, 677, 71, 71, 71, 71, 71, 71, 680, 673, 682, 684, 674, 679, 71, 683, 71, 71, 687, 675, 676, 678, 685, 681, 71, 71, 689, 686, 71, 71, 71, 691, 71, 71, 71, 71, 71, 71, 71, 688, 697, 71, 71, 71, 690, 71, 698, 71, 692, 71, 693, 694, 71, 695, 71, 696, 699, 701, 703, 702, 700, 704, 71, 71, 705, 71, 711, 71, 706, 71, 707, 71, 708, 712, 71, 71, 71, 71, 71, 71, 709, 715, 710, 720, 71, 714, 71, 71, 71, 722, 713, 716, 718, 719, 721, 71, 717, 71, 71, 71, 723, 71, 71, 149, 725, 71, 724, 726, 730, 71, 728, 71, 731, 727, 729, 732, 71, 71, 71, 734, 736, 71, 71, 737, 71, 733, 739, 71, 742, 71, 71, 738, 71, 740, 71, 71, 744, 741, 735, 747, 71, 71, 745, 71, 71, 71, 71, 140, 748, 743, 71, 71, 71, 746, 71, 762, 752, 71, 760, 749, 753, 757, 71, 754, 751, 71, 759, 758, 750, 761, 755, 71, 763, 756, 71, 71, 765, 767, 71, 71, 71, 780, 71, 71, 775, 764, 71, 71, 71, 782, 779, 71, 71, 784, 71, 766, 71, 768, 769, 776, 770, 781, 71, 771, 777, 778, 783, 785, 772, 71, 71, 71, 786, 71, 773, 774, 787, 71, 71, 788, 71, 71, 789, 71, 791, 71, 795, 71, 71, 71, 71, 794, 790, 71, 71, 800, 801, 71, 792, 802, 793, 803, 796, 797, 804, 799, 798, 71, 71, 71, 71, 805, 71, 71, 71, 806, 71, 71, 71, 71, 807, 808, 810, 811, 813, 71, 71, 816, 814, 71, 71, 71, 809, 71, 815, 71, 71, 812, 71, 818, 819, 820, 71, 823, 821, 822, 71, 71, 817, 71, 825, 71, 71, 71, 71, 71, 71, 830, 832, 71, 824, 828, 826, 833, 71, 831, 71, 71, 71, 71, 827, 835, 71, 71, 71, 71, 834, 829, 842, 71, 836, 71, 841, 71, 71, 71, 71, 837, 838, 71, 845, 839, 840, 843, 71, 846, 850, 71, 844, 848, 849, 71, 71, 847, 71, 71, 851, 857, 71, 852, 859, 71, 71, 71, 71, 860, 71, 71, 856, 71, 71, 853, 864, 868, 854, 855, 862, 867, 858, 71, 866, 861, 71, 71, 863, 71, 871, 71, 873, 71, 865, 71, 71, 71, 71, 876, 149, 71, 870, 875, 869, 878, 71, 71, 71, 71, 71, 872, 877, 874, 880, 71, 71, 71, 892, 71, 71, 71, 71, 893, 883, 71, 881, 71, 879, 896, 71, 943, 882, 71, 71, 884, 894, 885, 71, 898, 71, 886, 897, 887, 899, 895, 900, 888, 71, 889, 71, 901, 71, 71, 890, 904, 71, 903, 71, 891, 71, 905, 902, 907, 908, 71, 71, 912, 913, 71, 914, 906, 911, 71, 915, 71, 71, 71, 71, 910, 71, 909, 71, 71, 928, 71, 71, 925, 71, 924, 71, 929, 71, 71, 71, 916, 917, 71, 918, 926, 927, 930, 2536, 919, 931, 920, 934, 71, 71, 936, 71, 932, 935, 933, 71, 71, 921, 922, 71, 940, 71, 937, 71, 923, 71, 71, 71, 939, 946, 938, 71, 941, 71, 944, 71, 71, 71, 71, 945, 942, 949, 947, 71, 71, 71, 71, 71, 71, 955, 948, 71, 951, 953, 954, 71, 71, 950, 2536, 71, 956, 966, 71, 952, 960, 71, 957, 961, 71, 958, 962, 959, 71, 964, 965, 71, 968, 963, 71, 71, 71, 969, 71, 71, 970, 71, 71, 971, 972, 71, 71, 967, 973, 71, 978, 71, 71, 2536, 980, 974, 71, 71, 976, 71, 975, 977, 982, 71, 983, 71, 71, 71, 71, 979, 985, 986, 71, 981, 71, 71, 991, 71, 988, 984, 987, 990, 71, 989, 992, 71, 993, 71, 71, 71, 995, 71, 994, 1000, 71, 1001, 71, 71, 71, 71, 71, 71, 1002, 1003, 1005, 71, 996, 999, 997, 1007, 71, 998, 1006, 71, 1004, 71, 71, 71, 1009, 71, 1013, 71, 1014, 1008, 71, 71, 71, 1010, 71, 1016, 71, 1012, 1017, 71, 71, 1011, 1015, 1021, 71, 71, 71, 71, 1020, 71, 1018, 71, 1027, 71, 1019, 1023, 71, 71, 71, 1031, 71, 1030, 1022, 71, 1024, 71, 1033, 1036, 71, 1034, 1026, 1028, 71, 1029, 1025, 71, 71, 71, 71, 71, 71, 1035, 1037, 1032, 71, 1040, 71, 1042, 71, 71, 1046, 71, 1038, 1039, 71, 1043, 71, 71, 71, 1041, 71, 1044, 2536, 1049, 71, 1051, 71, 1055, 1045, 1056, 1047, 71, 1048, 71, 1052, 71, 1053, 71, 1050, 1054, 1057, 71, 71, 71, 1059, 1058, 1061, 1062, 71, 71, 1066, 71, 71, 1060, 1064, 71, 71, 1067, 71, 71, 71, 1069, 1063, 1070, 71, 71, 71, 1065, 71, 1071, 71, 71, 71, 1072, 71, 1068, 71, 1074, 1076, 71, 1077, 1075, 1081, 1073, 71, 71, 71, 71, 71, 1078, 1086, 71, 1080, 1079, 1082, 1085, 71, 71, 71, 1088, 71, 1087, 1090, 71, 1083, 1084, 1092, 71, 1089, 71, 1091, 1093, 71, 71, 1097, 71, 2536, 1095, 71, 1094, 1096, 71, 1104, 1108, 1105, 1106, 1098, 71, 1107, 1099, 1100, 71, 71, 71, 1101, 71, 1112, 71, 1110, 71, 1102, 1109, 1111, 71, 1103, 71, 71, 71, 1118, 1119, 1115, 71, 1114, 71, 71, 71, 1120, 1121, 71, 1113, 1116, 71, 1127, 71, 1128, 1117, 71, 1122, 71, 71, 71, 71, 1123, 1130, 1124, 71, 1125, 1134, 1126, 1129, 1133, 1132, 1135, 71, 71, 1131, 71, 71, 71, 1137, 71, 71, 71, 71, 71, 71, 1139, 1136, 1141, 1143, 1138, 71, 1145, 71, 71, 1142, 1144, 1140, 1148, 1149, 71, 1151, 71, 1146, 71, 71, 1152, 71, 1153, 1150, 71, 71, 1154, 1156, 71, 71, 1147, 1158, 71, 71, 1159, 71, 1162, 71, 71, 71, 71, 2536, 1165, 1155, 1164, 1157, 71, 71, 71, 1166, 71, 71, 1167, 1169, 1160, 1170, 1161, 71, 1163, 1168, 71, 1171, 71, 71, 71, 1176, 1177, 1179, 1173, 71, 1174, 71, 71, 71, 1178, 1172, 71, 1175, 71, 71, 1183, 71, 71, 71, 71, 1180, 1187, 1188, 71, 71, 1182, 71, 71, 71, 71, 71, 71, 1181, 71, 1195, 71, 1192, 1184, 1185, 71, 1189, 71, 1186, 1191, 1193, 71, 1190, 1194, 1200, 71, 1199, 1196, 71, 71, 71, 71, 1204, 1198, 1202, 71, 1197, 1205, 71, 1206, 1201, 71, 71, 1207, 71, 1208, 71, 1203, 1214, 1212, 71, 71, 1213, 1216, 71, 1217, 1209, 1210, 71, 71, 1211, 71, 71, 71, 1215, 1218, 71, 71, 1222, 71, 71, 71, 1227, 71, 71, 71, 71, 1219, 1228, 71, 1221, 1225, 71, 71, 1223, 71, 71, 1220, 1226, 1224, 1233, 1229, 71, 71, 1230, 1231, 71, 1234, 1232, 1238, 1235, 1237, 71, 71, 71, 1236, 71, 1239, 71, 1242, 71, 1240, 1241, 71, 1247, 1248, 1244, 71, 1246, 1243, 71, 71, 71, 1249, 71, 1250, 71, 1245, 1251, 71, 1252, 71, 71, 71, 71, 1254, 71, 1258, 71, 71, 1253, 1257, 71, 71, 71, 1264, 1255, 1260, 1256, 1261, 1265, 71, 71, 71, 1266, 71, 1262, 71, 1259, 1267, 71, 71, 1263, 1272, 71, 71, 71, 1276, 71, 71, 71, 1275, 1268, 71, 1269, 71, 1270, 71, 71, 1273, 1271, 71, 71, 1274, 71, 1277, 1289, 1278, 71, 1279, 71, 1281, 71, 1284, 1280, 71, 1283, 1290, 1285, 1282, 1286, 1287, 71, 71, 71, 71, 71, 71, 1288, 71, 1298, 1293, 1296, 1291, 71, 1294, 1300, 71, 1292, 71, 71, 1297, 71, 71, 1301, 71, 1302, 1303, 1295, 71, 1299, 1307, 1308, 71, 71, 71, 71, 71, 71, 1312, 1304, 1311, 1313, 1305, 1314, 71, 1315, 71, 71, 1306, 71, 71, 1309, 71, 71, 71, 1310, 1318, 71, 1319, 1321, 71, 1322, 71, 71, 71, 1316, 1317, 71, 1325, 71, 71, 1329, 71, 1320, 1327, 71, 71, 1323, 1326, 1330, 71, 1332, 71, 71, 71, 1328, 71, 71, 1324, 71, 1335, 71, 1337, 71, 1334, 71, 1331, 1338, 71, 71, 1342, 71, 71, 1336, 1333, 1340, 1343, 1339, 71, 1341, 71, 71, 71, 1344, 1349, 1347, 71, 1346, 1351, 71, 1353, 1350, 1345, 71, 71, 71, 71, 1355, 71, 71, 71, 1348, 71, 1359, 71, 1357, 71, 1354, 71, 1352, 71, 1360, 71, 71, 1356, 1364, 71, 1365, 1361, 71, 2536, 1363, 1371, 71, 1358, 1366, 1362, 71, 71, 71, 1368, 71, 1373, 1369, 1372, 71, 1374, 71, 1377, 1367, 1376, 71, 1378, 71, 71, 1370, 71, 1379, 1380, 71, 71, 71, 71, 1385, 71, 1386, 1391, 71, 71, 71, 1375, 71, 1381, 1387, 71, 1388, 71, 71, 1382, 1390, 1383, 71, 1384, 71, 71, 71, 71, 1389, 1392, 71, 71, 71, 1400, 71, 1393, 71, 71, 1394, 71, 1396, 1397, 1398, 71, 1399, 1395, 1405, 71, 71, 71, 1403, 71, 1401, 1407, 1402, 71, 1408, 71, 1404, 71, 71, 71, 71, 1406, 1409, 1410, 71, 71, 71, 1413, 71, 1416, 71, 1415, 1417, 1424, 1414, 1412, 1422, 71, 71, 1411, 71, 1418, 71, 1419, 1423, 71, 71, 1426, 1420, 71, 71, 1421, 71, 71, 1433, 1428, 1427, 1425, 71, 1430, 71, 1432, 1431, 1434, 71, 71, 71, 71, 1429, 71, 71, 1436, 71, 1435, 71, 1443, 71, 71, 71, 1440, 1438, 71, 71, 1437, 71, 1439, 1445, 1446, 71, 1447, 1442, 71, 1444, 1449, 1480, 1441, 1450, 71, 1456, 1451, 1454, 71, 71, 1448, 71, 1455, 71, 1458, 71, 71, 1459, 1461, 1452, 71, 1460, 1453, 71, 71, 71, 1457, 1465, 71, 1463, 71, 1462, 71, 71, 1464, 71, 71, 71, 1467, 71, 1474, 1466, 71, 71, 1468, 1471, 71, 71, 71, 1469, 1473, 1470, 1472, 1479, 71, 1475, 71, 1482, 71, 71, 71, 1476, 71, 71, 1484, 71, 1477, 1478, 1483, 71, 1485, 71, 71, 71, 1481, 71, 1486, 1487, 1488, 1491, 71, 71, 1492, 71, 71, 1489, 71, 71, 1490, 1493, 1494, 1499, 71, 1495, 71, 71, 1496, 71, 1503, 71, 71, 1502, 71, 1504, 1500, 1497, 71, 1498, 1505, 71, 71, 1506, 1501, 1508, 71, 71, 71, 71, 1510, 1507, 1511, 71, 1512, 71, 71, 71, 71, 1509, 71, 71, 1516, 71, 71, 71, 71, 1517, 1520, 71, 1525, 71, 1518, 1514, 1515, 1513, 1519, 1526, 1521, 71, 1524, 71, 71, 71, 1523, 71, 71, 1527, 1530, 71, 1531, 1522, 1532, 71, 1533, 71, 1535, 71, 1528, 71, 71, 1529, 1534, 1538, 71, 71, 1536, 1540, 71, 1539, 1542, 1541, 71, 71, 71, 1544, 71, 1546, 1543, 71, 1537, 71, 1547, 71, 71, 1548, 1549, 71, 71, 71, 1556, 71, 71, 1560, 2536, 71, 71, 1545, 1558, 1550, 1551, 1552, 71, 1559, 71, 71, 1553, 1561, 1554, 1555, 1563, 1557, 1564, 1562, 71, 71, 71, 71, 71, 1568, 71, 71, 1570, 1565, 71, 71, 71, 1573, 1574, 71, 71, 71, 1577, 71, 71, 1566, 71, 1567, 71, 1575, 71, 71, 71, 1569, 1571, 1579, 71, 1572, 71, 1578, 1580, 1585, 1576, 71, 1582, 1586, 71, 71, 1584, 1589, 71, 71, 1581, 1588, 1590, 71, 1583, 71, 1587, 71, 71, 1591, 71, 71, 1592, 71, 1593, 1594, 1597, 1595, 71, 71, 71, 1600, 1601, 1596, 71, 71, 71, 71, 71, 71, 1604, 71, 71, 71, 71, 71, 1598, 1609, 1610, 1613, 1603, 71, 1607, 1611, 1602, 1599, 1605, 71, 1606, 2536, 1608, 1612, 71, 1616, 71, 71, 71, 71, 1614, 1621, 1622, 71, 1617, 1615, 71, 71, 1629, 71, 1623, 1618, 1626, 71, 71, 71, 1627, 1630, 1619, 1620, 1624, 1628, 71, 71, 71, 1625, 1633, 71, 71, 71, 71, 1638, 71, 1635, 71, 71, 1632, 71, 1640, 1634, 1636, 1631, 71, 71, 71, 1643, 71, 1641, 1642, 71, 1644, 1645, 71, 1646, 71, 1637, 1639, 1648, 71, 71, 71, 71, 71, 71, 1649, 1650, 1647, 1651, 1652, 71, 71, 71, 71, 1654, 1653, 71, 71, 1659, 71, 71, 71, 1658, 1664, 1655, 1656, 1661, 71, 1657, 1660, 1663, 71, 1662, 71, 71, 71, 71, 71, 71, 1670, 1668, 71, 1665, 1669, 71, 71, 71, 1672, 71, 71, 71, 1671, 1666, 1675, 1667, 1679, 71, 1676, 1673, 1674, 71, 1677, 71, 1678, 71, 1684, 71, 71, 71, 1686, 71, 71, 1687, 1688, 71, 71, 1680, 71, 1681, 1682, 1683, 71, 71, 1689, 1685, 71, 1692, 71, 1690, 71, 71, 1693, 71, 71, 71, 71, 71, 1691, 71, 71, 71, 1695, 1696, 71, 1697, 1700, 1704, 71, 1694, 1699, 1703, 71, 71, 71, 1705, 1702, 1707, 1708, 1701, 1698, 1706, 71, 71, 1709, 1711, 71, 1710, 71, 71, 1712, 1713, 71, 71, 1716, 1714, 1718, 71, 1715, 71, 71, 71, 71, 1721, 71, 1720, 71, 1717, 71, 1722, 1726, 1723, 71, 71, 71, 71, 71, 1727, 71, 71, 1724, 71, 1729, 1732, 71, 1719, 1728, 1736, 1725, 71, 1733, 2536, 1731, 71, 1730, 71, 1734, 71, 71, 1735, 1737, 71, 71, 1738, 1747, 1739, 1741, 71, 71, 1743, 1742, 71, 1744, 1740, 71, 71, 1749, 71, 71, 71, 71, 71, 71, 1745, 71, 71, 1746, 1750, 71, 1753, 1754, 1751, 1752, 71, 1755, 71, 1748, 71, 71, 71, 71, 71, 1756, 1761, 1762, 71, 1757, 1760, 71, 71, 71, 1758, 71, 1759, 1763, 1765, 1767, 1770, 71, 1769, 71, 1771, 71, 1766, 1772, 71, 1774, 1764, 71, 71, 1768, 1777, 71, 1775, 71, 1779, 1778, 71, 71, 1773, 1782, 71, 1776, 71, 1783, 71, 1780, 71, 1787, 71, 71, 1788, 71, 1791, 1781, 71, 1786, 1789, 1784, 71, 1792, 1793, 71, 71, 71, 1795, 71, 71, 1794, 1785, 1790, 71, 71, 71, 71, 71, 1796, 1798, 71, 1800, 1803, 71, 71, 71, 1797, 1806, 71, 1807, 71, 71, 1801, 1799, 71, 1802, 1809, 71, 71, 71, 1805, 1804, 71, 1812, 71, 1808, 1813, 71, 71, 71, 71, 71, 71, 71, 71, 71, 1811, 1879, 1814, 71, 1810, 1815, 1824, 1820, 1823, 71, 1825, 1816, 1818, 1822, 71, 1819, 1817, 1821, 71, 71, 1828, 1829, 71, 1830, 71, 71, 71, 71, 1826, 71, 1833, 1827, 71, 1836, 71, 71, 71, 71, 71, 1832, 1831, 1834, 1837, 1838, 1835, 1842, 71, 1839, 1841, 1843, 71, 71, 1845, 71, 71, 1840, 1847, 71, 1848, 71, 71, 71, 71, 1852, 71, 71, 71, 1851, 1854, 71, 1844, 71, 1846, 71, 1849, 71, 71, 1858, 1857, 1856, 1850, 1860, 71, 71, 1853, 1861, 71, 1864, 71, 1855, 71, 71, 1859, 71, 71, 71, 1869, 71, 1862, 1868, 71, 71, 1873, 71, 71, 1863, 71, 2536, 1867, 71, 1865, 71, 71, 1870, 1866, 1871, 1872, 71, 1875, 71, 1877, 1878, 71, 71, 1874, 71, 71, 1881, 1882, 1880, 71, 71, 1876, 71, 1883, 1886, 1887, 71, 1884, 71, 71, 71, 1888, 71, 1890, 1898, 71, 1885, 1889, 71, 71, 71, 1893, 71, 1892, 1894, 71, 71, 1895, 1896, 1899, 71, 71, 1902, 71, 1891, 1903, 1897, 1908, 71, 1901, 71, 71, 71, 1904, 71, 71, 1900, 71, 71, 1910, 71, 1905, 71, 1906, 71, 1907, 2536, 1911, 71, 1909, 1914, 1915, 71, 1912, 71, 1913, 1918, 1916, 1919, 71, 1920, 71, 1917, 71, 71, 1923, 1921, 1924, 1926, 1922, 71, 71, 71, 71, 1925, 71, 71, 1927, 71, 71, 1931, 71, 1928, 71, 71, 1932, 1929, 1933, 1934, 71, 71, 71, 71, 71, 71, 1935, 1937, 1930, 71, 71, 71, 1944, 1941, 1936, 71, 1943, 71, 71, 1940, 71, 1945, 1938, 71, 1939, 1949, 71, 71, 1948, 1951, 1942, 71, 71, 71, 1950, 1946, 1947, 71, 1953, 71, 71, 1956, 1954, 71, 1958, 71, 1952, 1957, 1960, 71, 71, 71, 1962, 71, 71, 71, 71, 1959, 71, 1955, 1961, 1964, 1968, 1965, 1966, 71, 1967, 71, 71, 71, 1969, 1970, 1963, 71, 71, 71, 71, 1975, 71, 1972, 71, 1977, 71, 71, 1980, 71, 71, 71, 1974, 1976, 71, 71, 1983, 71, 1973, 1971, 1984, 71, 1979, 71, 1978, 71, 71, 1986, 1985, 1981, 71, 1987, 1982, 1990, 71, 1989, 1991, 71, 1992, 71, 1988, 1993, 71, 71, 71, 71, 1996, 71, 1997, 71, 1999, 71, 2000, 71, 71, 1994, 2001, 71, 71, 71, 71, 1998, 1995, 71, 71, 2003, 2002, 71, 2006, 2008, 71, 2004, 71, 71, 71, 71, 2009, 71, 71, 2015, 2005, 71, 71, 71, 2007, 71, 71, 2012, 71, 2020, 2016, 2014, 71, 2011, 2024, 71, 71, 2022, 2010, 2013, 2017, 2023, 2021, 2025, 71, 2018, 71, 2026, 2019, 71, 2027, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 2038, 71, 2029, 2039, 71, 71, 2035, 71, 2028, 2041, 71, 2030, 2032, 2031, 2040, 71, 2034, 2033, 2036, 2037, 71, 71, 71, 71, 71, 2042, 71, 2044, 2050, 71, 2051, 71, 2052, 2043, 71, 71, 2045, 71, 71, 71, 2046, 2047, 2048, 2049, 2056, 71, 71, 71, 71, 2060, 2054, 71, 2053, 2059, 2061, 71, 2055, 71, 71, 2062, 2063, 71, 71, 71, 71, 2057, 2058, 2065, 71, 71, 2064, 71, 2069, 2070, 71, 2073, 71, 71, 2071, 71, 71, 2074, 2066, 2067, 2076, 2077, 71, 71, 2068, 2072, 71, 71, 2081, 71, 2075, 2082, 71, 71, 2084, 71, 2078, 71, 2086, 71, 71, 2087, 2085, 71, 71, 71, 2079, 2080, 71, 71, 71, 71, 2083, 2092, 71, 71, 2094, 2089, 2090, 2091, 71, 71, 2095, 2093, 71, 2088, 71, 71, 2097, 2099, 71, 2100, 2102, 71, 2096, 2105, 2098, 2103, 71, 71, 71, 2106, 2101, 71, 2108, 2107, 2104, 71, 71, 71, 2111, 71, 2112, 71, 2110, 71, 71, 71, 71, 2114, 2115, 2119, 2117, 2109, 71, 2116, 71, 71, 2113, 2118, 71, 71, 71, 2123, 2120, 71, 2121, 71, 71, 71, 71, 2122, 2125, 2124, 71, 2128, 71, 2127, 71, 71, 2126, 2129, 71, 71, 71, 2134, 71, 2130, 2132, 71, 71, 2131, 2133, 71, 71, 2135, 2139, 71, 71, 2141, 71, 2136, 2143, 71, 71, 71, 71, 71, 2148, 2137, 2147, 2154, 2138, 2140, 71, 2142, 71, 2144, 71, 2145, 2149, 71, 71, 2151, 2150, 2146, 71, 71, 71, 71, 2157, 2152, 2158, 71, 2159, 71, 2160, 71, 71, 2153, 71, 2155, 2536, 2156, 71, 2163, 2164, 71, 2165, 71, 71, 2167, 71, 2166, 71, 2168, 2169, 71, 2161, 71, 2162, 2171, 71, 71, 71, 2174, 2175, 71, 71, 71, 2177, 71, 2176, 71, 2170, 2178, 71, 2181, 2173, 2180, 71, 2172, 71, 71, 2184, 71, 2183, 71, 71, 71, 71, 71, 2179, 2185, 2187, 2186, 71, 71, 71, 2189, 71, 71, 2192, 2196, 71, 2182, 71, 2190, 2191, 71, 71, 71, 2200, 71, 2188, 2195, 2193, 2198, 71, 2201, 2194, 71, 2202, 71, 2203, 2197, 71, 71, 71, 2199, 71, 71, 2205, 2206, 71, 71, 2211, 71, 71, 2208, 71, 2212, 2204, 2214, 71, 2216, 71, 2215, 71, 71, 71, 2209, 2213, 2217, 2207, 2210, 2220, 71, 2218, 71, 71, 71, 71, 2221, 71, 2224, 2228, 71, 2219, 2222, 2225, 71, 71, 2227, 71, 2226, 2223, 71, 71, 71, 71, 2229, 71, 2235, 71, 2234, 2230, 71, 2240, 71, 2232, 71, 2237, 2236, 71, 2238, 71, 71, 2239, 71, 2233, 2245, 2231, 71, 2244, 2241, 71, 71, 2246, 71, 71, 2242, 2248, 71, 2247, 71, 2243, 71, 71, 2253, 2251, 2255, 71, 71, 2249, 71, 71, 2258, 71, 71, 71, 2250, 71, 71, 2261, 2252, 71, 71, 2262, 71, 71, 2257, 2256, 2254, 71, 2259, 2260, 2265, 71, 2266, 2268, 71, 2263, 2270, 71, 71, 2264, 2271, 71, 2273, 71, 71, 71, 71, 2276, 71, 2267, 2269, 2275, 71, 71, 71, 2280, 71, 71, 71, 2272, 2274, 2283, 71, 2284, 71, 2277, 71, 2285, 71, 71, 2281, 71, 2279, 2290, 71, 2278, 71, 71, 71, 2282, 2291, 2288, 71, 2292, 2295, 71, 2286, 2287, 2293, 2298, 71, 2289, 2296, 71, 71, 71, 71, 2297, 2294, 71, 71, 2300, 2303, 2299, 2301, 71, 2306, 71, 71, 2307, 71, 71, 2309, 71, 2310, 71, 71, 71, 71, 2302, 71, 2311, 2304, 2305, 71, 2313, 2314, 71, 2315, 71, 2308, 2312, 2316, 71, 71, 2318, 71, 2319, 71, 2317, 71, 2321, 2322, 71, 71, 71, 2320, 2326, 71, 71, 71, 2329, 2323, 71, 2325, 2327, 71, 71, 2331, 71, 71, 2330, 71, 2328, 2324, 2332, 71, 71, 71, 71, 71, 2335, 71, 71, 2337, 71, 2333, 2338, 71, 2336, 71, 71, 2334, 71, 71, 2349, 71, 71, 2347, 2339, 2396, 2343, 2340, 2341, 2350, 71, 2342, 2344, 2345, 71, 2352, 71, 2346, 2351, 2348, 2353, 71, 2354, 2355, 71, 71, 2357, 71, 2356, 71, 71, 2360, 71, 71, 71, 71, 71, 71, 2362, 2375, 2361, 71, 2366, 71, 2359, 71, 2365, 2358, 2367, 71, 2363, 2368, 71, 71, 2364, 71, 71, 71, 2369, 71, 2370, 2373, 2371, 71, 71, 2372, 2374, 71, 2379, 2380, 71, 2536, 2377, 2382, 71, 2383, 71, 2384, 71, 71, 2378, 2376, 2385, 71, 2386, 71, 2388, 71, 2387, 2381, 2389, 71, 71, 71, 71, 2392, 71, 2394, 71, 71, 71, 71, 2398, 71, 2401, 2391, 71, 2390, 71, 2400, 71, 2393, 71, 71, 71, 71, 71, 2395, 2403, 71, 71, 2399, 2402, 2407, 71, 71, 2397, 71, 2409, 71, 71, 2404, 2405, 71, 2417, 2406, 2410, 71, 2408, 2411, 2413, 71, 2414, 2415, 71, 2416, 71, 71, 71, 71, 2412, 71, 71, 71, 71, 2426, 71, 2418, 2428, 71, 71, 2429, 2427, 2421, 71, 2419, 2420, 2423, 2425, 2430, 71, 2424, 2431, 71, 2422, 71, 71, 71, 71, 2434, 71, 71, 2435, 2432, 2439, 2436, 71, 2441, 71, 71, 71, 71, 71, 2445, 71, 2433, 2438, 71, 2446, 71, 2440, 71, 71, 2437, 71, 2449, 2443, 2447, 2442, 2450, 2444, 71, 71, 71, 71, 71, 2451, 2452, 71, 71, 2448, 71, 2456, 71, 71, 71, 2458, 71, 2455, 71, 71, 2453, 71, 2454, 2463, 2464, 71, 2460, 2461, 2457, 2467, 71, 2459, 71, 71, 2469, 2462, 71, 2468, 2471, 2465, 71, 71, 2470, 71, 2466, 71, 2475, 71, 2472, 71, 2473, 2478, 71, 71, 2476, 2474, 2477, 71, 71, 71, 71, 2483, 71, 71, 71, 2480, 71, 71, 71, 2486, 2487, 71, 2479, 71, 71, 71, 2485, 71, 2481, 2482, 2490, 2484, 2488, 2491, 71, 2489, 71, 2494, 71, 2495, 2493, 71, 2497, 2492, 71, 2498, 71, 2500, 71, 2501, 71, 2496, 71, 71, 71, 2502, 2505, 71, 71, 2503, 2499, 2509, 71, 2506, 2507, 2508, 71, 71, 71, 71, 71, 71, 2504, 71, 2510, 2512, 2514, 71, 2516, 71, 71, 71, 71, 2520, 2517, 2521, 71, 2511, 2513, 71, 2515, 71, 71, 2524, 2525, 71, 71, 2527, 71, 2518, 2519, 2528, 71, 2526, 71, 71, 71, 71, 2522, 71, 2523, 2529, 2530, 2536, 2531, 2534, 71, 2535, 71, 2536, 2536, 2536, 2536, 2536, 2532, 2533, 43, 43, 43, 43, 43, 43, 43, 48, 48, 48, 48, 48, 48, 48, 53, 53, 53, 53, 53, 53, 53, 59, 59, 59, 59, 59, 59, 59, 64, 64, 64, 64, 64, 64, 64, 74, 74, 2536, 74, 74, 74, 74, 139, 139, 2536, 2536, 2536, 139, 139, 141, 141, 2536, 2536, 141, 2536, 141, 143, 2536, 2536, 2536, 2536, 2536, 143, 146, 146, 2536, 2536, 2536, 146, 146, 148, 2536, 2536, 2536, 2536, 2536, 148, 150, 150, 2536, 150, 150, 150, 150, 75, 75, 2536, 75, 75, 75, 75, 13, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536 } ; static yyconst flex_int16_t yy_chk[5004] = { 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, 3, 3, 3, 4, 4, 4, 5, 5, 6, 6, 5, 3, 6, 20, 4, 20, 20, 5, 20, 6, 7, 7, 7, 7, 20, 7, 8, 8, 8, 8, 29, 8, 7, 9, 9, 9, 22, 22, 8, 10, 10, 10, 15, 25, 9, 29, 15, 25, 2542, 31, 10, 11, 11, 11, 11, 11, 11, 19, 79, 19, 19, 30, 19, 11, 31, 79, 30, 25, 19, 19, 47, 47, 11, 12, 12, 12, 12, 12, 12, 21, 23, 23, 21, 21, 24, 12, 21, 88, 23, 24, 26, 26, 23, 24, 12, 23, 24, 876, 24, 24, 21, 27, 27, 34, 28, 26, 32, 32, 28, 88, 27, 28, 33, 33, 35, 32, 36, 33, 28, 35, 28, 32, 42, 35, 34, 32, 37, 37, 69, 35, 36, 37, 35, 33, 72, 38, 148, 42, 72, 35, 38, 37, 69, 38, 37, 39, 39, 40, 39, 52, 38, 40, 52, 77, 38, 38, 77, 39, 78, 41, 41, 40, 78, 39, 41, 40, 40, 58, 41, 58, 58, 80, 58, 63, 63, 66, 204, 66, 66, 68, 66, 68, 68, 71, 68, 71, 71, 66, 71, 83, 74, 80, 74, 74, 71, 74, 81, 82, 204, 81, 82, 74, 74, 84, 85, 86, 87, 83, 89, 90, 93, 86, 84, 82, 92, 90, 91, 86, 85, 94, 95, 93, 93, 146, 87, 87, 97, 89, 90, 96, 91, 97, 98, 96, 92, 100, 99, 94, 95, 99, 101, 100, 99, 102, 103, 104, 98, 103, 102, 105, 106, 103, 111, 108, 106, 99, 99, 110, 107, 101, 100, 112, 114, 105, 104, 107, 108, 109, 102, 104, 110, 113, 111, 115, 109, 113, 116, 118, 115, 112, 114, 119, 115, 117, 117, 119, 120, 121, 145, 122, 125, 123, 122, 124, 119, 127, 116, 118, 128, 124, 119, 120, 125, 122, 123, 129, 121, 122, 126, 126, 130, 131, 136, 127, 128, 132, 133, 132, 134, 138, 135, 137, 142, 134, 129, 142, 137, 131, 133, 126, 136, 130, 135, 138, 140, 140, 153, 144, 132, 144, 144, 153, 144, 147, 147, 149, 155, 149, 149, 150, 149, 150, 150, 152, 150, 159, 152, 154, 156, 157, 158, 150, 160, 154, 155, 162, 156, 161, 158, 163, 157, 165, 161, 156, 159, 164, 165, 160, 163, 166, 166, 164, 164, 167, 171, 162, 168, 143, 168, 167, 169, 168, 170, 170, 169, 172, 173, 174, 176, 169, 172, 173, 176, 171, 169, 178, 175, 179, 168, 174, 169, 169, 175, 177, 180, 181, 182, 186, 177, 178, 183, 182, 179, 185, 187, 183, 180, 191, 185, 180, 184, 184, 188, 181, 194, 175, 184, 186, 188, 190, 187, 189, 189, 192, 193, 190, 195, 191, 184, 192, 184, 190, 195, 193, 196, 194, 197, 198, 199, 196, 200, 201, 197, 198, 202, 199, 203, 201, 205, 206, 207, 208, 203, 200, 209, 207, 205, 210, 211, 213, 208, 212, 206, 214, 202, 215, 212, 214, 216, 209, 217, 219, 221, 210, 216, 218, 224, 213, 211, 221, 220, 218, 220, 232, 222, 226, 223, 215, 217, 217, 222, 219, 223, 225, 231, 224, 231, 226, 229, 225, 227, 227, 228, 228, 229, 230, 232, 233, 234, 235, 236, 230, 233, 231, 237, 238, 243, 239, 236, 237, 234, 238, 229, 239, 240, 241, 242, 244, 235, 240, 241, 243, 242, 245, 246, 247, 248, 249, 251, 251, 249, 244, 250, 247, 250, 253, 252, 257, 246, 252, 256, 245, 254, 254, 255, 255, 258, 141, 260, 258, 259, 248, 257, 253, 259, 261, 256, 260, 262, 263, 264, 261, 264, 265, 268, 263, 267, 265, 266, 266, 268, 267, 262, 269, 270, 271, 272, 273, 273, 274, 275, 276, 274, 277, 265, 276, 278, 278, 279, 272, 281, 280, 270, 269, 280, 139, 271, 282, 275, 284, 285, 277, 281, 282, 283, 286, 279, 283, 287, 285, 289, 284, 288, 287, 286, 288, 290, 285, 285, 291, 285, 291, 291, 289, 292, 292, 293, 294, 290, 293, 295, 296, 297, 288, 298, 298, 301, 299, 300, 300, 296, 297, 299, 302, 294, 295, 303, 294, 302, 304, 305, 301, 306, 307, 308, 309, 310, 314, 303, 307, 309, 311, 310, 316, 312, 70, 311, 306, 304, 312, 305, 314, 316, 313, 308, 312, 313, 315, 313, 317, 315, 318, 319, 324, 322, 317, 318, 323, 320, 326, 321, 320, 326, 315, 64, 319, 315, 324, 315, 327, 329, 333, 323, 319, 320, 322, 332, 320, 326, 320, 321, 330, 332, 327, 328, 329, 328, 328, 331, 334, 330, 335, 333, 331, 331, 336, 328, 337, 328, 328, 328, 338, 339, 328, 341, 340, 335, 344, 334, 342, 343, 340, 345, 346, 336, 340, 339, 345, 347, 348, 349, 338, 344, 337, 347, 351, 350, 341, 346, 342, 343, 351, 349, 352, 353, 356, 354, 357, 358, 348, 350, 354, 355, 355, 361, 355, 359, 360, 361, 360, 353, 364, 362, 357, 358, 356, 362, 365, 352, 366, 359, 363, 363, 368, 367, 369, 364, 463, 374, 463, 370, 362, 368, 365, 369, 370, 371, 366, 367, 372, 371, 373, 376, 368, 375, 368, 376, 373, 372, 374, 375, 377, 378, 379, 379, 380, 377, 381, 382, 383, 383, 384, 381, 386, 388, 385, 389, 384, 380, 385, 387, 382, 378, 388, 390, 387, 391, 392, 389, 393, 393, 392, 394, 395, 386, 396, 396, 394, 391, 398, 398, 399, 390, 400, 401, 402, 403, 406, 405, 407, 408, 400, 409, 401, 395, 411, 408, 412, 403, 415, 411, 409, 399, 407, 410, 402, 405, 406, 405, 413, 410, 412, 414, 416, 417, 418, 416, 413, 414, 415, 417, 419, 420, 422, 421, 423, 419, 422, 424, 418, 423, 425, 426, 427, 431, 429, 425, 430, 417, 440, 440, 432, 433, 424, 420, 421, 432, 59, 426, 435, 431, 437, 427, 428, 428, 429, 430, 433, 434, 428, 436, 428, 439, 434, 441, 435, 436, 437, 443, 428, 445, 436, 428, 428, 438, 442, 442, 438, 444, 428, 446, 447, 439, 443, 449, 445, 448, 450, 452, 441, 444, 448, 451, 449, 452, 454, 455, 457, 458, 446, 455, 459, 456, 447, 454, 460, 450, 451, 456, 457, 461, 462, 464, 467, 461, 466, 459, 458, 465, 465, 464, 466, 468, 460, 462, 467, 469, 470, 468, 471, 470, 472, 473, 474, 475, 473, 472, 476, 469, 484, 477, 54, 476, 476, 471, 478, 478, 479, 479, 474, 475, 480, 474, 477, 481, 481, 483, 480, 482, 482, 484, 485, 483, 486, 487, 488, 485, 489, 488, 490, 491, 492, 487, 494, 491, 493, 495, 492, 496, 493, 497, 495, 486, 499, 498, 501, 497, 503, 490, 498, 489, 494, 500, 502, 502, 500, 504, 499, 496, 506, 500, 504, 505, 501, 500, 503, 507, 505, 508, 509, 514, 53, 510, 506, 508, 510, 511, 512, 509, 513, 511, 507, 512, 515, 513, 516, 514, 517, 517, 518, 516, 519, 520, 521, 522, 526, 515, 527, 518, 521, 522, 48, 511, 523, 520, 524, 523, 519, 524, 525, 528, 527, 529, 526, 525, 530, 528, 529, 532, 531, 533, 530, 531, 532, 534, 533, 533, 535, 536, 537, 538, 542, 539, 540, 543, 537, 540, 534, 541, 543, 535, 539, 546, 542, 541, 545, 545, 536, 536, 538, 544, 540, 547, 548, 547, 544, 544, 549, 550, 549, 551, 552, 553, 554, 555, 556, 559, 546, 555, 557, 558, 561, 548, 563, 556, 560, 550, 564, 551, 552, 565, 553, 566, 554, 557, 559, 561, 560, 558, 562, 567, 568, 563, 569, 569, 562, 564, 570, 565, 571, 566, 570, 572, 574, 573, 575, 578, 576, 567, 573, 568, 578, 580, 572, 577, 579, 582, 580, 571, 574, 576, 577, 579, 581, 575, 583, 584, 585, 581, 586, 587, 588, 583, 592, 582, 584, 588, 589, 586, 590, 589, 585, 587, 590, 591, 593, 599, 592, 594, 594, 595, 595, 597, 591, 596, 596, 600, 601, 603, 595, 602, 597, 600, 604, 602, 599, 593, 605, 606, 607, 603, 608, 609, 605, 612, 43, 606, 601, 615, 610, 619, 604, 621, 621, 610, 618, 619, 607, 610, 612, 624, 610, 609, 620, 618, 615, 608, 620, 610, 622, 622, 610, 623, 625, 624, 626, 629, 628, 631, 633, 633, 626, 628, 623, 630, 632, 635, 635, 632, 636, 637, 637, 634, 625, 627, 627, 627, 629, 627, 634, 638, 627, 630, 631, 636, 638, 627, 639, 642, 640, 639, 643, 627, 627, 640, 641, 645, 641, 644, 646, 642, 647, 644, 648, 648, 649, 651, 650, 653, 647, 643, 652, 656, 653, 654, 654, 645, 656, 646, 657, 649, 650, 658, 652, 651, 657, 659, 660, 658, 659, 661, 662, 663, 660, 665, 664, 666, 668, 661, 662, 664, 665, 667, 667, 669, 670, 668, 671, 673, 674, 663, 670, 669, 676, 675, 666, 678, 673, 674, 675, 677, 678, 676, 677, 679, 681, 671, 680, 680, 682, 683, 684, 685, 689, 687, 685, 687, 691, 679, 683, 681, 688, 688, 685, 690, 692, 693, 694, 682, 690, 695, 696, 697, 698, 689, 684, 697, 699, 691, 700, 696, 701, 702, 703, 706, 692, 693, 707, 700, 694, 695, 698, 704, 701, 705, 705, 699, 703, 704, 708, 709, 702, 711, 710, 706, 712, 713, 707, 714, 715, 716, 712, 717, 715, 714, 718, 711, 719, 722, 708, 718, 722, 709, 710, 717, 721, 713, 720, 720, 716, 723, 721, 717, 724, 725, 726, 727, 727, 719, 728, 725, 731, 729, 730, 730, 732, 724, 729, 723, 732, 733, 735, 737, 734, 738, 726, 731, 728, 734, 740, 741, 743, 743, 744, 746, 745, 788, 744, 738, 747, 735, 748, 733, 747, 750, 788, 737, 14, 749, 740, 745, 741, 742, 749, 754, 742, 748, 742, 750, 746, 751, 742, 752, 742, 757, 751, 751, 753, 742, 754, 755, 753, 756, 742, 758, 755, 752, 756, 757, 759, 760, 761, 762, 762, 763, 755, 760, 761, 764, 763, 765, 768, 766, 759, 764, 758, 769, 772, 772, 770, 773, 769, 771, 768, 775, 773, 776, 774, 777, 765, 766, 767, 767, 770, 771, 774, 13, 767, 775, 767, 778, 778, 779, 781, 783, 776, 779, 777, 784, 781, 767, 767, 782, 785, 787, 782, 790, 767, 789, 785, 786, 784, 791, 783, 793, 786, 792, 789, 791, 794, 795, 796, 790, 787, 794, 792, 797, 798, 799, 802, 803, 812, 800, 793, 804, 796, 798, 799, 800, 805, 795, 0, 806, 802, 812, 807, 797, 806, 808, 803, 807, 809, 804, 808, 805, 810, 810, 811, 814, 815, 809, 818, 819, 811, 815, 815, 816, 816, 817, 820, 816, 817, 821, 822, 814, 818, 824, 823, 825, 826, 0, 825, 819, 823, 827, 821, 828, 820, 822, 827, 829, 828, 830, 831, 835, 832, 824, 830, 831, 834, 826, 840, 836, 837, 839, 834, 829, 832, 836, 837, 835, 838, 838, 839, 841, 842, 843, 841, 844, 840, 846, 845, 847, 851, 848, 849, 846, 854, 847, 848, 849, 852, 855, 842, 845, 843, 854, 852, 844, 853, 853, 851, 856, 857, 858, 856, 859, 860, 862, 861, 855, 863, 865, 860, 857, 861, 863, 867, 859, 864, 864, 866, 858, 862, 868, 869, 871, 870, 868, 867, 872, 865, 874, 875, 875, 866, 870, 879, 877, 878, 880, 880, 879, 869, 881, 871, 885, 882, 885, 891, 883, 874, 877, 882, 878, 872, 883, 884, 886, 887, 888, 889, 884, 886, 881, 890, 889, 893, 891, 892, 894, 895, 895, 887, 888, 897, 892, 896, 898, 899, 890, 900, 893, 0, 898, 903, 900, 902, 902, 894, 903, 896, 905, 897, 904, 900, 907, 900, 908, 899, 900, 904, 906, 909, 910, 906, 905, 908, 909, 912, 911, 914, 914, 915, 907, 911, 916, 917, 915, 920, 918, 919, 917, 910, 918, 921, 922, 923, 912, 925, 919, 926, 924, 927, 920, 928, 916, 929, 922, 924, 930, 925, 923, 929, 921, 931, 932, 933, 936, 938, 926, 935, 937, 928, 927, 930, 933, 935, 939, 940, 937, 942, 936, 939, 943, 931, 932, 941, 944, 938, 947, 940, 941, 941, 945, 945, 948, 0, 943, 951, 942, 944, 946, 947, 951, 948, 949, 946, 950, 950, 946, 946, 949, 952, 953, 946, 955, 955, 954, 953, 956, 946, 952, 954, 957, 946, 958, 959, 960, 961, 962, 958, 963, 957, 964, 961, 962, 963, 964, 965, 956, 959, 966, 966, 972, 967, 960, 967, 965, 968, 970, 971, 973, 965, 970, 965, 975, 965, 974, 965, 968, 973, 972, 974, 974, 976, 971, 977, 978, 979, 976, 980, 981, 983, 984, 982, 985, 978, 975, 980, 982, 977, 986, 984, 987, 989, 981, 983, 979, 987, 988, 988, 990, 990, 985, 991, 993, 991, 994, 993, 989, 995, 997, 994, 996, 996, 999, 986, 998, 998, 1000, 999, 1001, 1002, 1002, 1003, 1004, 1005, 0, 1005, 995, 1004, 997, 1007, 1008, 1010, 1007, 1011, 1009, 1008, 1010, 1000, 1011, 1001, 1013, 1003, 1009, 1012, 1012, 1014, 1015, 1016, 1018, 1019, 1021, 1014, 1020, 1015, 1018, 1019, 1021, 1020, 1013, 1022, 1016, 1023, 1024, 1025, 1025, 1026, 1028, 1029, 1022, 1030, 1032, 1034, 1035, 1024, 1033, 1030, 1032, 1037, 1036, 1039, 1023, 1038, 1038, 1040, 1035, 1026, 1028, 1041, 1033, 1044, 1029, 1034, 1036, 1042, 1033, 1037, 1043, 1043, 1042, 1039, 1047, 1045, 1049, 1051, 1048, 1041, 1045, 1050, 1040, 1048, 1048, 1049, 1044, 1052, 1053, 1050, 1054, 1051, 1055, 1047, 1055, 1054, 1056, 1058, 1054, 1057, 1059, 1058, 1052, 1053, 1060, 1057, 1053, 1061, 1062, 1063, 1056, 1059, 1064, 1067, 1063, 1065, 1068, 1069, 1069, 1071, 1070, 1072, 1075, 1060, 1070, 1074, 1062, 1067, 1076, 1073, 1064, 1077, 1078, 1061, 1068, 1065, 1075, 1071, 1080, 1082, 1072, 1073, 1079, 1076, 1074, 1080, 1077, 1079, 1081, 1083, 1085, 1078, 1087, 1081, 1084, 1084, 1086, 1082, 1083, 1088, 1089, 1090, 1086, 1097, 1088, 1085, 1089, 1090, 1091, 1091, 1092, 1092, 1095, 1087, 1094, 1094, 1095, 1096, 1098, 1099, 1100, 1097, 1101, 1101, 1102, 1103, 1096, 1100, 1105, 1106, 1104, 1107, 1098, 1103, 1099, 1104, 1107, 1107, 1109, 1114, 1108, 1110, 1105, 1111, 1102, 1108, 1108, 1112, 1106, 1113, 1115, 1116, 1118, 1117, 1119, 1113, 1120, 1116, 1109, 1117, 1110, 1121, 1111, 1122, 1123, 1114, 1112, 1124, 1130, 1115, 1131, 1118, 1130, 1119, 1127, 1120, 1138, 1122, 1125, 1125, 1121, 1126, 1124, 1131, 1126, 1123, 1127, 1128, 1128, 1129, 1132, 1133, 1137, 1136, 1129, 1134, 1138, 1134, 1136, 1132, 1139, 1134, 1140, 1140, 1133, 1141, 1144, 1137, 1142, 1143, 1141, 1145, 1142, 1143, 1134, 1146, 1139, 1147, 1148, 1148, 1150, 1152, 1153, 1147, 1154, 1154, 1144, 1153, 1155, 1145, 1157, 1157, 1159, 1159, 1155, 1146, 1160, 1161, 1150, 1165, 1163, 1166, 1152, 1163, 1164, 1164, 1166, 1167, 1167, 1168, 1169, 1171, 1160, 1161, 1170, 1170, 1172, 1173, 1174, 1174, 1165, 1172, 1175, 1176, 1168, 1171, 1175, 1177, 1177, 1178, 1179, 1181, 1173, 1180, 1182, 1169, 1185, 1180, 1186, 1182, 1190, 1179, 1187, 1176, 1184, 1184, 1188, 1188, 1189, 1191, 1181, 1178, 1186, 1189, 1185, 1192, 1187, 1193, 1194, 1195, 1190, 1195, 1193, 1196, 1192, 1197, 1198, 1199, 1196, 1191, 1201, 1197, 1203, 1199, 1202, 1202, 1204, 1206, 1194, 1207, 1207, 1209, 1204, 1211, 1201, 1210, 1198, 1208, 1208, 1212, 1214, 1203, 1212, 1213, 1213, 1209, 1215, 0, 1211, 1217, 1219, 1206, 1214, 1210, 1216, 1217, 1218, 1216, 1220, 1219, 1216, 1218, 1221, 1220, 1222, 1223, 1215, 1222, 1224, 1224, 1226, 1223, 1216, 1225, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1235, 1232, 1237, 1237, 1233, 1231, 1221, 1232, 1227, 1233, 1236, 1234, 1239, 1240, 1228, 1236, 1229, 1234, 1230, 1238, 1241, 1242, 1243, 1235, 1238, 1244, 1245, 1247, 1246, 1248, 1239, 1249, 1250, 1240, 1246, 1242, 1243, 1244, 1253, 1245, 1241, 1252, 1252, 1254, 1256, 1249, 1257, 1247, 1254, 1248, 1255, 1255, 1258, 1250, 1259, 1260, 1261, 1263, 1253, 1256, 1257, 1262, 1264, 1268, 1260, 1266, 1263, 1271, 1262, 1263, 1271, 1261, 1259, 1269, 1269, 1272, 1258, 1274, 1264, 1273, 1266, 1270, 1270, 1275, 1273, 1266, 1276, 1277, 1268, 1278, 1281, 1279, 1275, 1274, 1272, 1282, 1277, 1279, 1278, 1277, 1280, 1280, 1283, 1284, 1286, 1276, 1285, 1288, 1282, 1289, 1281, 1290, 1290, 1291, 1292, 1327, 1286, 1284, 1296, 1293, 1283, 1295, 1285, 1292, 1293, 1294, 1294, 1289, 1297, 1291, 1295, 1327, 1288, 1295, 1298, 1301, 1296, 1299, 1302, 1309, 1294, 1301, 1299, 1299, 1303, 1303, 1305, 1304, 1306, 1297, 1310, 1305, 1298, 1304, 1306, 1307, 1302, 1311, 1312, 1309, 1316, 1307, 1317, 1311, 1310, 1313, 1320, 1318, 1313, 1319, 1321, 1312, 1322, 1323, 1313, 1318, 1321, 1324, 1331, 1316, 1320, 1317, 1319, 1326, 1325, 1322, 1328, 1330, 1330, 1326, 1332, 1323, 1337, 1341, 1332, 1333, 1324, 1325, 1331, 1336, 1333, 1334, 1335, 1339, 1328, 1342, 1334, 1335, 1336, 1340, 1340, 1344, 1341, 1343, 1345, 1337, 1346, 1347, 1339, 1342, 1343, 1348, 1349, 1344, 1350, 1351, 1345, 1348, 1352, 1352, 1353, 1351, 1362, 1353, 1349, 1346, 1356, 1347, 1354, 1354, 1357, 1356, 1350, 1358, 1358, 1359, 1360, 1361, 1360, 1357, 1361, 1363, 1362, 1364, 1365, 1366, 1367, 1359, 1368, 1369, 1366, 1370, 1372, 1373, 1376, 1367, 1370, 1371, 1374, 1374, 1368, 1364, 1365, 1363, 1369, 1375, 1371, 1377, 1373, 1378, 1383, 1375, 1372, 1385, 1379, 1376, 1379, 1380, 1380, 1371, 1381, 1381, 1382, 1382, 1384, 1384, 1377, 1386, 1393, 1378, 1383, 1387, 1387, 1388, 1385, 1389, 1390, 1388, 1392, 1390, 1395, 1389, 1396, 1394, 1392, 1396, 1393, 1407, 1386, 1394, 1397, 1397, 1398, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1399, 1407, 0, 1410, 1403, 1395, 1406, 1400, 1400, 1400, 1409, 1406, 1406, 1408, 1400, 1408, 1401, 1402, 1410, 1404, 1411, 1409, 1412, 1413, 1414, 1416, 1411, 1415, 1415, 1417, 1417, 1412, 1418, 1419, 1420, 1420, 1421, 1421, 1424, 1425, 1426, 1426, 1427, 1413, 1430, 1414, 1428, 1424, 1432, 1429, 1433, 1416, 1418, 1428, 1435, 1419, 1437, 1427, 1429, 1435, 1425, 1431, 1431, 1436, 1438, 1444, 1433, 1439, 1445, 1436, 1430, 1438, 1440, 1439, 1432, 1443, 1437, 1442, 1440, 1441, 1441, 1446, 1442, 1447, 1443, 1444, 1447, 1445, 1448, 1449, 1450, 1450, 1451, 1446, 1452, 1453, 1454, 1457, 1451, 1456, 1454, 1459, 1461, 1460, 1462, 1464, 1448, 1460, 1461, 1464, 1453, 1467, 1457, 1462, 1452, 1449, 1454, 1465, 1456, 0, 1459, 1463, 1463, 1466, 1466, 1468, 1469, 1470, 1465, 1471, 1472, 1472, 1467, 1465, 1473, 1471, 1477, 1474, 1473, 1468, 1475, 1475, 1477, 1479, 1476, 1478, 1469, 1470, 1474, 1476, 1476, 1478, 1480, 1474, 1481, 1483, 1485, 1484, 1486, 1487, 1481, 1484, 1488, 1490, 1480, 1487, 1489, 1483, 1485, 1479, 1493, 1492, 1489, 1493, 1497, 1490, 1492, 1494, 1494, 1495, 1495, 1496, 1496, 1486, 1488, 1498, 1499, 1502, 1500, 1501, 1517, 1498, 1499, 1500, 1497, 1501, 1502, 1504, 1506, 1507, 1509, 1506, 1504, 1510, 1511, 1512, 1512, 1513, 1514, 1511, 1517, 1507, 1509, 1514, 1515, 1510, 1513, 1516, 1516, 1515, 1518, 1519, 1520, 1521, 1524, 1522, 1523, 1521, 1527, 1518, 1522, 1528, 1523, 1526, 1526, 1529, 1530, 1531, 1524, 1519, 1528, 1520, 1534, 1534, 1529, 1526, 1527, 1536, 1530, 1537, 1531, 1539, 1541, 1540, 1542, 1543, 1543, 1544, 1541, 1544, 1545, 1545, 1546, 1536, 1549, 1537, 1539, 1540, 1548, 1551, 1546, 1542, 1550, 1550, 1552, 1548, 1553, 1554, 1551, 1555, 1556, 1557, 1560, 1563, 1549, 1561, 1558, 1564, 1553, 1554, 1567, 1555, 1558, 1562, 1562, 1552, 1557, 1561, 1571, 1566, 1565, 1563, 1560, 1565, 1566, 1558, 1556, 1564, 1569, 1570, 1567, 1570, 1572, 1569, 1573, 1575, 1571, 1572, 1576, 1578, 1576, 1573, 1579, 1579, 1575, 1580, 1581, 1582, 1585, 1582, 1583, 1581, 1584, 1578, 1586, 1583, 1587, 1584, 1588, 1589, 1590, 1592, 1587, 1588, 1593, 1597, 1585, 1596, 1590, 1594, 1594, 1580, 1589, 1598, 1586, 1595, 1595, 0, 1593, 1598, 1592, 1599, 1596, 1601, 1603, 1597, 1599, 1600, 1607, 1600, 1607, 1601, 1602, 1602, 1604, 1604, 1603, 1605, 1605, 1601, 1606, 1608, 1609, 1609, 1610, 1611, 1613, 1617, 1618, 1606, 1614, 1615, 1606, 1610, 1619, 1614, 1615, 1611, 1613, 1620, 1617, 1623, 1608, 1621, 1624, 1625, 1630, 1631, 1618, 1624, 1625, 1632, 1619, 1623, 1627, 1629, 1633, 1620, 1635, 1621, 1627, 1629, 1631, 1634, 1634, 1633, 1637, 1635, 1638, 1630, 1636, 1636, 1638, 1627, 1639, 1640, 1632, 1641, 1642, 1639, 1644, 1642, 1641, 1641, 1643, 1637, 1647, 1647, 1640, 1648, 1648, 1652, 1643, 1649, 1650, 1650, 1651, 1651, 1653, 1654, 1644, 1655, 1649, 1652, 1648, 1654, 1655, 1656, 1656, 1657, 1661, 1658, 1664, 1666, 1657, 1648, 1653, 1658, 1660, 1662, 1665, 1668, 1660, 1662, 1667, 1665, 1668, 1669, 1670, 1672, 1661, 1671, 1671, 1672, 1673, 1674, 1666, 1664, 1675, 1667, 1674, 1676, 1677, 1680, 1670, 1669, 1681, 1677, 1682, 1673, 1678, 1678, 1683, 1684, 1685, 1686, 1687, 1692, 1689, 1748, 1676, 1748, 1680, 1691, 1675, 1681, 1691, 1686, 1690, 1690, 1692, 1682, 1684, 1689, 1693, 1685, 1683, 1687, 1694, 1695, 1695, 1696, 1696, 1697, 1697, 1698, 1699, 1706, 1693, 1700, 1700, 1694, 1701, 1702, 1702, 1707, 1708, 1703, 1705, 1699, 1698, 1701, 1703, 1705, 1701, 1709, 1709, 1706, 1708, 1710, 1710, 1711, 1712, 1712, 1713, 1707, 1714, 1714, 1715, 1715, 1716, 1717, 1719, 1720, 1720, 1721, 1728, 1719, 1722, 1722, 1711, 1723, 1713, 1724, 1716, 1725, 1726, 1726, 1725, 1724, 1717, 1727, 1727, 1729, 1721, 1728, 1730, 1731, 1731, 1723, 1733, 1734, 1726, 1735, 1738, 1736, 1737, 1737, 1729, 1736, 1739, 1740, 1742, 1742, 1743, 1730, 1745, 0, 1735, 1753, 1733, 1744, 1747, 1738, 1734, 1739, 1740, 1750, 1744, 1746, 1746, 1747, 1751, 1752, 1743, 1754, 1755, 1751, 1752, 1750, 1756, 1757, 1745, 1759, 1753, 1756, 1757, 1758, 1754, 1760, 1761, 1762, 1758, 1763, 1760, 1768, 1764, 1755, 1759, 1765, 1766, 1768, 1763, 1767, 1762, 1764, 1769, 1771, 1765, 1766, 1769, 1773, 1774, 1774, 1777, 1761, 1775, 1767, 1779, 1779, 1773, 1781, 1775, 1776, 1776, 1780, 1783, 1771, 1784, 1786, 1781, 1785, 1776, 1790, 1777, 1791, 1777, 0, 1783, 1788, 1780, 1786, 1788, 1789, 1784, 1800, 1785, 1791, 1789, 1792, 1792, 1794, 1794, 1790, 1795, 1796, 1797, 1795, 1798, 1800, 1796, 1802, 1797, 1803, 1798, 1799, 1799, 1801, 1801, 1804, 1805, 1805, 1807, 1802, 1811, 1808, 1807, 1803, 1808, 1809, 1809, 1810, 1814, 1812, 1815, 1816, 1810, 1812, 1804, 1817, 1818, 1819, 1820, 1817, 1811, 1821, 1819, 1822, 1820, 1816, 1824, 1821, 1814, 1825, 1815, 1826, 1827, 1828, 1825, 1828, 1818, 1826, 1831, 1834, 1827, 1822, 1824, 1832, 1832, 1833, 1835, 1835, 1833, 1837, 1838, 1839, 1831, 1837, 1840, 1840, 1838, 1841, 1844, 1844, 1846, 1857, 1849, 1839, 1850, 1834, 1841, 1849, 1855, 1850, 1851, 1851, 1853, 1853, 1855, 1856, 1856, 1857, 1846, 1858, 1859, 1861, 1862, 1863, 1863, 1859, 1865, 1866, 1867, 1868, 1870, 1870, 1871, 1866, 1862, 1865, 1872, 1874, 1874, 1878, 1861, 1858, 1875, 1875, 1868, 1876, 1867, 1877, 1879, 1877, 1876, 1871, 1880, 1878, 1872, 1881, 1881, 1880, 1882, 1882, 1883, 1883, 1879, 1884, 1884, 1885, 1886, 1887, 1887, 1888, 1888, 1889, 1890, 1890, 1891, 1891, 1893, 1885, 1892, 1892, 1894, 1895, 1896, 1889, 1886, 1897, 1898, 1894, 1893, 1900, 1897, 1899, 1899, 1895, 1901, 1902, 1903, 1904, 1900, 1905, 1906, 1906, 1896, 1907, 1909, 1910, 1898, 1911, 1912, 1903, 1913, 1912, 1907, 1905, 1914, 1902, 1916, 1916, 1915, 1914, 1901, 1904, 1909, 1915, 1913, 1917, 1917, 1910, 1918, 1918, 1911, 1921, 1921, 1922, 1923, 1924, 1926, 1927, 1928, 1929, 1930, 1931, 1933, 1933, 1932, 1923, 1935, 1935, 1936, 1930, 1938, 1922, 1937, 1937, 1924, 1927, 1926, 1936, 1939, 1929, 1928, 1931, 1932, 1940, 1941, 1942, 1943, 1945, 1938, 1944, 1940, 1946, 1946, 1947, 1947, 1948, 1939, 1949, 1950, 1941, 1951, 1948, 1952, 1942, 1943, 1944, 1945, 1952, 1953, 1954, 1956, 1955, 1956, 1950, 1961, 1949, 1955, 1957, 1957, 1951, 1958, 1963, 1958, 1959, 1959, 1964, 1971, 1965, 1953, 1954, 1963, 1968, 1969, 1961, 1972, 1969, 1970, 1970, 1973, 1973, 1974, 1971, 1976, 1977, 1974, 1964, 1965, 1977, 1978, 1978, 1979, 1968, 1972, 1981, 1982, 1983, 1983, 1976, 1985, 1985, 1986, 1987, 1987, 1979, 1988, 1989, 1989, 1994, 1994, 1988, 1995, 1996, 1997, 1981, 1982, 2002, 2003, 1998, 2004, 1986, 2002, 2005, 2006, 2004, 1996, 1997, 1998, 2007, 2009, 2005, 2003, 2010, 1995, 2011, 2012, 2007, 2010, 2016, 2011, 2013, 2013, 2006, 2016, 2009, 2014, 2014, 2015, 2018, 2017, 2012, 2019, 2019, 2018, 2015, 2017, 2020, 2021, 2022, 2022, 2023, 2023, 2021, 2026, 2027, 2029, 2035, 2027, 2028, 2031, 2029, 2020, 2030, 2028, 2028, 2031, 2026, 2030, 2032, 2033, 2034, 2035, 2032, 2036, 2033, 2037, 2038, 2044, 2042, 2034, 2037, 2036, 2040, 2042, 2043, 2040, 2045, 2046, 2038, 2043, 2052, 2047, 2048, 2048, 2049, 2044, 2046, 2053, 2057, 2045, 2047, 2054, 2056, 2049, 2055, 2055, 2060, 2057, 2058, 2052, 2059, 2059, 2062, 2064, 2065, 2074, 2066, 2053, 2065, 2074, 2054, 2056, 2066, 2058, 2068, 2060, 2069, 2062, 2067, 2067, 2071, 2069, 2068, 2064, 2072, 2075, 2076, 2078, 2078, 2071, 2079, 2079, 2080, 2080, 2083, 2083, 2085, 2072, 2087, 2075, 0, 2076, 2088, 2088, 2089, 2089, 2090, 2090, 2091, 2092, 2092, 2091, 2093, 2093, 2094, 2094, 2085, 2095, 2087, 2096, 2096, 2097, 2098, 2099, 2100, 2100, 2101, 2105, 2104, 2099, 2101, 2106, 2095, 2104, 2104, 2107, 2098, 2106, 2108, 2097, 2109, 2107, 2110, 2110, 2109, 2114, 2113, 2117, 2119, 2115, 2105, 2113, 2115, 2114, 2118, 2120, 2121, 2118, 2122, 2123, 2120, 2124, 2124, 2108, 2125, 2119, 2119, 2126, 2127, 2128, 2128, 2134, 2117, 2123, 2121, 2126, 2129, 2129, 2122, 2130, 2130, 2131, 2131, 2125, 2132, 2133, 2135, 2127, 2136, 2137, 2133, 2134, 2142, 2138, 2140, 2140, 2141, 2136, 2145, 2141, 2132, 2144, 2144, 2146, 2146, 2145, 2147, 2148, 2150, 2137, 2142, 2147, 2135, 2138, 2151, 2151, 2148, 2152, 2153, 2154, 2156, 2152, 2157, 2155, 2161, 2161, 2150, 2153, 2155, 2155, 2162, 2157, 2163, 2156, 2154, 2166, 2168, 2170, 2172, 2162, 2173, 2173, 2174, 2172, 2163, 2176, 2179, 2179, 2168, 2181, 2176, 2174, 2177, 2177, 2180, 2182, 2177, 2183, 2170, 2185, 2166, 2186, 2183, 2180, 2189, 2185, 2186, 2187, 2190, 2181, 2188, 2188, 2187, 2191, 2182, 2192, 2194, 2193, 2191, 2195, 2195, 2197, 2189, 2193, 2198, 2199, 2199, 2203, 2202, 2190, 2200, 2201, 2202, 2192, 2204, 2205, 2203, 2206, 2208, 2198, 2197, 2194, 2207, 2200, 2201, 2206, 2210, 2207, 2209, 2209, 2204, 2212, 2212, 2215, 2205, 2213, 2213, 2217, 2217, 2218, 2222, 2219, 2221, 2221, 2208, 2210, 2219, 2223, 2224, 2226, 2226, 2227, 2229, 2232, 2215, 2218, 2230, 2230, 2231, 2231, 2222, 2233, 2232, 2234, 2235, 2227, 2236, 2224, 2237, 2237, 2223, 2241, 2238, 2242, 2229, 2238, 2235, 2239, 2239, 2243, 2247, 2233, 2234, 2241, 2246, 2243, 2236, 2244, 2244, 2245, 2246, 2249, 2245, 2242, 2250, 2251, 2249, 2252, 2247, 2250, 2253, 2254, 2254, 2252, 2256, 2256, 2257, 2259, 2259, 2260, 2260, 2261, 2262, 2272, 2251, 2263, 2261, 2253, 2253, 2274, 2263, 2264, 2264, 2265, 2265, 2257, 2262, 2266, 2266, 2267, 2269, 2269, 2272, 2278, 2267, 2275, 2275, 2277, 2277, 2279, 2280, 2274, 2281, 2281, 2285, 2282, 2286, 2278, 2287, 2280, 2282, 2291, 2286, 2288, 2288, 2289, 2287, 2292, 2285, 2279, 2289, 2293, 2294, 2295, 2297, 2298, 2293, 2299, 2300, 2295, 2302, 2291, 2297, 2301, 2294, 2303, 2304, 2292, 2305, 2308, 2311, 2311, 2370, 2305, 2298, 2370, 2302, 2299, 2300, 2312, 2312, 2301, 2303, 2303, 2313, 2317, 2317, 2304, 2313, 2308, 2319, 2319, 2320, 2320, 2321, 2320, 2323, 2323, 2321, 2324, 2325, 2327, 2327, 2328, 2329, 2330, 2332, 2333, 2329, 2341, 2328, 2334, 2334, 2337, 2325, 2341, 2333, 2324, 2335, 2335, 2330, 2336, 2336, 2339, 2332, 2338, 2342, 2343, 2337, 2344, 2338, 2340, 2339, 2345, 2346, 2339, 2340, 2340, 2345, 2346, 2347, 0, 2343, 2348, 2348, 2351, 2351, 2354, 2354, 2358, 2344, 2342, 2355, 2355, 2356, 2356, 2359, 2359, 2358, 2347, 2361, 2361, 2362, 2363, 2364, 2364, 2365, 2366, 2366, 2369, 2371, 2372, 2372, 2373, 2376, 2363, 2375, 2362, 2377, 2375, 2376, 2365, 2379, 2378, 2380, 2390, 2392, 2369, 2378, 2381, 2387, 2373, 2377, 2387, 2391, 2393, 2371, 2395, 2391, 2396, 2399, 2379, 2380, 2400, 2400, 2381, 2392, 2397, 2390, 2393, 2396, 2398, 2397, 2398, 2401, 2399, 2402, 2404, 2403, 2405, 2395, 2407, 2406, 2410, 2408, 2409, 2409, 2401, 2411, 2411, 2412, 2412, 2410, 2404, 2415, 2402, 2403, 2406, 2408, 2413, 2413, 2407, 2414, 2414, 2405, 2416, 2417, 2418, 2420, 2417, 2419, 2421, 2418, 2415, 2422, 2419, 2423, 2424, 2424, 2425, 2422, 2427, 2429, 2432, 2432, 2416, 2421, 2433, 2433, 2434, 2423, 2435, 2438, 2420, 2439, 2436, 2427, 2434, 2425, 2437, 2429, 2436, 2440, 2442, 2443, 2437, 2438, 2439, 2444, 2446, 2435, 2447, 2444, 2448, 2449, 2450, 2447, 2451, 2443, 2452, 2453, 2440, 2454, 2442, 2452, 2453, 2455, 2449, 2450, 2446, 2456, 2456, 2448, 2457, 2460, 2458, 2451, 2463, 2457, 2460, 2454, 2458, 2459, 2459, 2461, 2455, 2462, 2464, 2468, 2461, 2465, 2462, 2468, 2464, 2469, 2465, 2463, 2466, 2466, 2470, 2471, 2472, 2473, 2474, 2475, 2481, 2470, 2488, 2473, 2476, 2476, 2478, 2478, 2469, 2479, 2482, 2480, 2475, 2483, 2471, 2472, 2480, 2474, 2479, 2481, 2485, 2479, 2484, 2484, 2486, 2485, 2483, 2490, 2488, 2482, 2489, 2489, 2491, 2491, 2492, 2492, 2493, 2486, 2494, 2495, 2500, 2493, 2496, 2496, 2497, 2494, 2490, 2500, 2498, 2497, 2498, 2499, 2499, 2501, 2502, 2504, 2503, 2507, 2495, 2509, 2501, 2503, 2506, 2506, 2509, 2510, 2511, 2512, 2513, 2513, 2510, 2515, 2515, 2502, 2504, 2516, 2507, 2517, 2518, 2518, 2519, 2519, 2520, 2522, 2522, 2511, 2512, 2523, 2523, 2520, 2524, 2530, 2531, 2526, 2516, 2529, 2517, 2524, 2526, 0, 2529, 2532, 2532, 2533, 2533, 0, 0, 0, 0, 0, 2530, 2531, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2540, 2540, 2540, 2540, 2540, 2540, 2540, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2543, 2543, 0, 2543, 2543, 2543, 2543, 2544, 2544, 0, 0, 0, 2544, 2544, 2545, 2545, 0, 0, 2545, 0, 2545, 2546, 0, 0, 0, 0, 0, 2546, 2547, 2547, 0, 0, 0, 2547, 2547, 2548, 0, 0, 0, 0, 0, 2548, 2549, 2549, 0, 2549, 2549, 2549, 2549, 2550, 2550, 0, 2550, 2550, 2550, 2550, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536 } ; 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 static int yy_more_flag = 0; static int yy_more_len = 0; #define yymore() ((yy_more_flag) = 1) #define YY_MORE_ADJ (yy_more_len) #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "./util/configlexer.lex" #line 2 "./util/configlexer.lex" /* * configlexer.lex - lexical analyzer for unbound config file * * Copyright (c) 2001-2006, NLnet Labs. All rights reserved * * See LICENSE for the license. * */ /* because flex keeps having sign-unsigned compare problems that are unfixed*/ #if defined(__clang__)||(defined(__GNUC__)&&((__GNUC__ >4)||(defined(__GNUC_MINOR__)&&(__GNUC__ ==4)&&(__GNUC_MINOR__ >=2)))) #pragma GCC diagnostic ignored "-Wsign-compare" #endif #include #include #ifdef HAVE_GLOB_H # include #endif #include "util/config_file.h" #include "util/configparser.h" void ub_c_error(const char *message); #if 0 #define LEXOUT(s) printf s /* used ONLY when debugging */ #else #define LEXOUT(s) #endif /** avoid warning in about fwrite return value */ #define ECHO ub_c_error_msg("syntax error at text: %s", yytext) /** A parser variable, this is a statement in the config file which is * of the form variable: value1 value2 ... nargs is the number of values. */ #define YDVAR(nargs, var) \ num_args=(nargs); \ LEXOUT(("v(%s%d) ", yytext, num_args)); \ if(num_args > 0) { BEGIN(val); } \ return (var); struct inc_state { char* filename; int line; YY_BUFFER_STATE buffer; struct inc_state* next; }; static struct inc_state* config_include_stack = NULL; static int inc_depth = 0; static int inc_prev = 0; static int num_args = 0; void init_cfg_parse(void) { config_include_stack = NULL; inc_depth = 0; inc_prev = 0; num_args = 0; } static void config_start_include(const char* filename) { FILE *input; struct inc_state* s; char* nm; if(inc_depth++ > 100000) { ub_c_error_msg("too many include files"); return; } if(*filename == '\0') { ub_c_error_msg("empty include file name"); return; } s = (struct inc_state*)malloc(sizeof(*s)); if(!s) { ub_c_error_msg("include %s: malloc failure", filename); return; } if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot, strlen(cfg_parser->chroot)) == 0) { filename += strlen(cfg_parser->chroot); } nm = strdup(filename); if(!nm) { ub_c_error_msg("include %s: strdup failure", filename); free(s); return; } input = fopen(filename, "r"); if(!input) { ub_c_error_msg("cannot open include file '%s': %s", filename, strerror(errno)); free(s); free(nm); return; } LEXOUT(("switch_to_include_file(%s)\n", filename)); s->filename = cfg_parser->filename; s->line = cfg_parser->line; s->buffer = YY_CURRENT_BUFFER; s->next = config_include_stack; config_include_stack = s; cfg_parser->filename = nm; cfg_parser->line = 1; yy_switch_to_buffer(yy_create_buffer(input,YY_BUF_SIZE)); } static void config_start_include_glob(const char* filename) { /* check for wildcards */ #ifdef HAVE_GLOB glob_t g; size_t i; int r, flags; if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') && !strchr(filename, '{') && !strchr(filename, '~'))) { flags = 0 #ifdef GLOB_ERR | GLOB_ERR #endif #ifdef GLOB_NOSORT | GLOB_NOSORT #endif #ifdef GLOB_BRACE | GLOB_BRACE #endif #ifdef GLOB_TILDE | GLOB_TILDE #endif ; memset(&g, 0, sizeof(g)); if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot, strlen(cfg_parser->chroot)) == 0) { filename += strlen(cfg_parser->chroot); } r = glob(filename, flags, NULL, &g); if(r) { /* some error */ globfree(&g); if(r == GLOB_NOMATCH) return; /* no matches for pattern */ config_start_include(filename); /* let original deal with it */ return; } /* process files found, if any */ for(i=0; i<(size_t)g.gl_pathc; i++) { config_start_include(g.gl_pathv[i]); } globfree(&g); return; } #endif /* HAVE_GLOB */ config_start_include(filename); } static void config_end_include(void) { struct inc_state* s = config_include_stack; --inc_depth; if(!s) return; free(cfg_parser->filename); cfg_parser->filename = s->filename; cfg_parser->line = s->line; yy_delete_buffer(YY_CURRENT_BUFFER); yy_switch_to_buffer(s->buffer); config_include_stack = s->next; free(s); } #ifndef yy_set_bol /* compat definition, for flex 2.4.6 */ #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer(yyin,YY_BUF_SIZE ); \ yy_current_buffer->yy_ch_buf[0] = ((at_bol)?'\n':' '); \ } #endif #define YY_NO_INPUT 1 #line 186 "./util/configlexer.lex" #ifndef YY_NO_UNPUT #define YY_NO_UNPUT 1 #endif #ifndef YY_NO_INPUT #define YY_NO_INPUT 1 #endif #line 2582 "" #define INITIAL 0 #define quotedstring 1 #define singlequotedstr 2 #define include 3 #define include_quoted 4 #define val 5 #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 YY_NO_UNPUT #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, (size_t) 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 = '*'; \ int 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 = (int) fread(buf, 1, (yy_size_t) 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 /*LINTED*/break; #endif #define YY_RULE_SETUP \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { yy_state_type yy_current_state; char *yy_cp, *yy_bp; int yy_act; 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( ); } { #line 206 "./util/configlexer.lex" #line 2805 "" while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ { (yy_more_len) = 0; if ( (yy_more_flag) ) { (yy_more_len) = (yy_c_buf_p) - (yytext_ptr); (yy_more_flag) = 0; } yy_cp = (yy_c_buf_p); /* Support of yytext. */ *yy_cp = (yy_hold_char); /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; yy_current_state = (yy_start); yy_match: do { 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 >= 2537 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c]; ++yy_cp; } while ( yy_base[yy_current_state] != 4963 ); yy_find_action: yy_act = yy_accept[yy_current_state]; if ( yy_act == 0 ) { /* have to back up */ yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); yy_act = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = (yy_hold_char); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); goto yy_find_action; case 1: YY_RULE_SETUP #line 207 "./util/configlexer.lex" { LEXOUT(("SP ")); /* ignore */ } YY_BREAK case 2: YY_RULE_SETUP #line 209 "./util/configlexer.lex" { /* note that flex makes the longest match and '.' is any but not nl */ LEXOUT(("comment(%s) ", yytext)); /* ignore */ } YY_BREAK case 3: YY_RULE_SETUP #line 212 "./util/configlexer.lex" { YDVAR(0, VAR_SERVER) } YY_BREAK case 4: YY_RULE_SETUP #line 213 "./util/configlexer.lex" { YDVAR(1, VAR_QNAME_MINIMISATION) } YY_BREAK case 5: YY_RULE_SETUP #line 214 "./util/configlexer.lex" { YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) } YY_BREAK case 6: YY_RULE_SETUP #line 215 "./util/configlexer.lex" { YDVAR(1, VAR_NUM_THREADS) } YY_BREAK case 7: YY_RULE_SETUP #line 216 "./util/configlexer.lex" { YDVAR(1, VAR_VERBOSITY) } YY_BREAK case 8: YY_RULE_SETUP #line 217 "./util/configlexer.lex" { YDVAR(1, VAR_PORT) } YY_BREAK case 9: YY_RULE_SETUP #line 218 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_RANGE) } YY_BREAK case 10: YY_RULE_SETUP #line 219 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_PERMIT) } YY_BREAK case 11: YY_RULE_SETUP #line 220 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_AVOID) } YY_BREAK case 12: YY_RULE_SETUP #line 221 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_NUM_TCP) } YY_BREAK case 13: YY_RULE_SETUP #line 222 "./util/configlexer.lex" { YDVAR(1, VAR_INCOMING_NUM_TCP) } YY_BREAK case 14: YY_RULE_SETUP #line 223 "./util/configlexer.lex" { YDVAR(1, VAR_DO_IP4) } YY_BREAK case 15: YY_RULE_SETUP #line 224 "./util/configlexer.lex" { YDVAR(1, VAR_DO_IP6) } YY_BREAK case 16: YY_RULE_SETUP #line 225 "./util/configlexer.lex" { YDVAR(1, VAR_PREFER_IP6) } YY_BREAK case 17: YY_RULE_SETUP #line 226 "./util/configlexer.lex" { YDVAR(1, VAR_DO_UDP) } YY_BREAK case 18: YY_RULE_SETUP #line 227 "./util/configlexer.lex" { YDVAR(1, VAR_DO_TCP) } YY_BREAK case 19: YY_RULE_SETUP #line 228 "./util/configlexer.lex" { YDVAR(1, VAR_TCP_UPSTREAM) } YY_BREAK case 20: YY_RULE_SETUP #line 229 "./util/configlexer.lex" { YDVAR(1, VAR_TCP_MSS) } YY_BREAK case 21: YY_RULE_SETUP #line 230 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_TCP_MSS) } YY_BREAK case 22: YY_RULE_SETUP #line 231 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 23: YY_RULE_SETUP #line 232 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 24: YY_RULE_SETUP #line 233 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 25: YY_RULE_SETUP #line 234 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 26: YY_RULE_SETUP #line 235 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 27: YY_RULE_SETUP #line 236 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 28: YY_RULE_SETUP #line 237 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 29: YY_RULE_SETUP #line 238 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 30: YY_RULE_SETUP #line 239 "./util/configlexer.lex" { YDVAR(1, VAR_TLS_CERT_BUNDLE) } YY_BREAK case 31: YY_RULE_SETUP #line 240 "./util/configlexer.lex" { YDVAR(1, VAR_TLS_CERT_BUNDLE) } YY_BREAK case 32: YY_RULE_SETUP #line 241 "./util/configlexer.lex" { YDVAR(1, VAR_USE_SYSTEMD) } YY_BREAK case 33: YY_RULE_SETUP #line 242 "./util/configlexer.lex" { YDVAR(1, VAR_DO_DAEMONIZE) } YY_BREAK case 34: YY_RULE_SETUP #line 243 "./util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 35: YY_RULE_SETUP #line 244 "./util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 36: YY_RULE_SETUP #line 245 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_INTERFACE) } YY_BREAK case 37: YY_RULE_SETUP #line 246 "./util/configlexer.lex" { YDVAR(1, VAR_INTERFACE_AUTOMATIC) } YY_BREAK case 38: YY_RULE_SETUP #line 247 "./util/configlexer.lex" { YDVAR(1, VAR_SO_RCVBUF) } YY_BREAK case 39: YY_RULE_SETUP #line 248 "./util/configlexer.lex" { YDVAR(1, VAR_SO_SNDBUF) } YY_BREAK case 40: YY_RULE_SETUP #line 249 "./util/configlexer.lex" { YDVAR(1, VAR_SO_REUSEPORT) } YY_BREAK case 41: YY_RULE_SETUP #line 250 "./util/configlexer.lex" { YDVAR(1, VAR_IP_TRANSPARENT) } YY_BREAK case 42: YY_RULE_SETUP #line 251 "./util/configlexer.lex" { YDVAR(1, VAR_IP_FREEBIND) } YY_BREAK case 43: YY_RULE_SETUP #line 252 "./util/configlexer.lex" { YDVAR(1, VAR_CHROOT) } YY_BREAK case 44: YY_RULE_SETUP #line 253 "./util/configlexer.lex" { YDVAR(1, VAR_USERNAME) } YY_BREAK case 45: YY_RULE_SETUP #line 254 "./util/configlexer.lex" { YDVAR(1, VAR_DIRECTORY) } YY_BREAK case 46: YY_RULE_SETUP #line 255 "./util/configlexer.lex" { YDVAR(1, VAR_LOGFILE) } YY_BREAK case 47: YY_RULE_SETUP #line 256 "./util/configlexer.lex" { YDVAR(1, VAR_PIDFILE) } YY_BREAK case 48: YY_RULE_SETUP #line 257 "./util/configlexer.lex" { YDVAR(1, VAR_ROOT_HINTS) } YY_BREAK case 49: YY_RULE_SETUP #line 258 "./util/configlexer.lex" { YDVAR(1, VAR_EDNS_BUFFER_SIZE) } YY_BREAK case 50: YY_RULE_SETUP #line 259 "./util/configlexer.lex" { YDVAR(1, VAR_MSG_BUFFER_SIZE) } YY_BREAK case 51: YY_RULE_SETUP #line 260 "./util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SIZE) } YY_BREAK case 52: YY_RULE_SETUP #line 261 "./util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SLABS) } YY_BREAK case 53: YY_RULE_SETUP #line 262 "./util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SIZE) } YY_BREAK case 54: YY_RULE_SETUP #line 263 "./util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SLABS) } YY_BREAK case 55: YY_RULE_SETUP #line 264 "./util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_TTL) } YY_BREAK case 56: YY_RULE_SETUP #line 265 "./util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) } YY_BREAK case 57: YY_RULE_SETUP #line 266 "./util/configlexer.lex" { YDVAR(1, VAR_CACHE_MIN_TTL) } YY_BREAK case 58: YY_RULE_SETUP #line 267 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_HOST_TTL) } YY_BREAK case 59: YY_RULE_SETUP #line 268 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_LAME_TTL) } YY_BREAK case 60: YY_RULE_SETUP #line 269 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_SLABS) } YY_BREAK case 61: YY_RULE_SETUP #line 270 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) } YY_BREAK case 62: YY_RULE_SETUP #line 271 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) } YY_BREAK case 63: YY_RULE_SETUP #line 272 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) } YY_BREAK case 64: YY_RULE_SETUP #line 273 "./util/configlexer.lex" { YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) } YY_BREAK case 65: YY_RULE_SETUP #line 274 "./util/configlexer.lex" { YDVAR(1, VAR_JOSTLE_TIMEOUT) } YY_BREAK case 66: YY_RULE_SETUP #line 275 "./util/configlexer.lex" { YDVAR(1, VAR_DELAY_CLOSE) } YY_BREAK case 67: YY_RULE_SETUP #line 276 "./util/configlexer.lex" { YDVAR(1, VAR_TARGET_FETCH_POLICY) } YY_BREAK case 68: YY_RULE_SETUP #line 277 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) } YY_BREAK case 69: YY_RULE_SETUP #line 278 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_LARGE_QUERIES) } YY_BREAK case 70: YY_RULE_SETUP #line 279 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_GLUE) } YY_BREAK case 71: YY_RULE_SETUP #line 280 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) } YY_BREAK case 72: YY_RULE_SETUP #line 281 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) } YY_BREAK case 73: YY_RULE_SETUP #line 282 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_REFERRAL_PATH) } YY_BREAK case 74: YY_RULE_SETUP #line 283 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) } YY_BREAK case 75: YY_RULE_SETUP #line 284 "./util/configlexer.lex" { YDVAR(1, VAR_USE_CAPS_FOR_ID) } YY_BREAK case 76: YY_RULE_SETUP #line 285 "./util/configlexer.lex" { YDVAR(1, VAR_CAPS_WHITELIST) } YY_BREAK case 77: YY_RULE_SETUP #line 286 "./util/configlexer.lex" { YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) } YY_BREAK case 78: YY_RULE_SETUP #line 287 "./util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_ADDRESS) } YY_BREAK case 79: YY_RULE_SETUP #line 288 "./util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_DOMAIN) } YY_BREAK case 80: YY_RULE_SETUP #line 289 "./util/configlexer.lex" { YDVAR(1, VAR_PREFETCH_KEY) } YY_BREAK case 81: YY_RULE_SETUP #line 290 "./util/configlexer.lex" { YDVAR(1, VAR_PREFETCH) } YY_BREAK case 82: YY_RULE_SETUP #line 291 "./util/configlexer.lex" { YDVAR(0, VAR_STUB_ZONE) } YY_BREAK case 83: YY_RULE_SETUP #line 292 "./util/configlexer.lex" { YDVAR(1, VAR_NAME) } YY_BREAK case 84: YY_RULE_SETUP #line 293 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_ADDR) } YY_BREAK case 85: YY_RULE_SETUP #line 294 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_HOST) } YY_BREAK case 86: YY_RULE_SETUP #line 295 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_PRIME) } YY_BREAK case 87: YY_RULE_SETUP #line 296 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_FIRST) } YY_BREAK case 88: YY_RULE_SETUP #line 297 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_SSL_UPSTREAM) } YY_BREAK case 89: YY_RULE_SETUP #line 298 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_SSL_UPSTREAM) } YY_BREAK case 90: YY_RULE_SETUP #line 299 "./util/configlexer.lex" { YDVAR(0, VAR_FORWARD_ZONE) } YY_BREAK case 91: YY_RULE_SETUP #line 300 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_ADDR) } YY_BREAK case 92: YY_RULE_SETUP #line 301 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_HOST) } YY_BREAK case 93: YY_RULE_SETUP #line 302 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_FIRST) } YY_BREAK case 94: YY_RULE_SETUP #line 303 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } YY_BREAK case 95: YY_RULE_SETUP #line 304 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } YY_BREAK case 96: YY_RULE_SETUP #line 305 "./util/configlexer.lex" { YDVAR(0, VAR_AUTH_ZONE) } YY_BREAK case 97: YY_RULE_SETUP #line 306 "./util/configlexer.lex" { YDVAR(1, VAR_ZONEFILE) } YY_BREAK case 98: YY_RULE_SETUP #line 307 "./util/configlexer.lex" { YDVAR(1, VAR_MASTER) } YY_BREAK case 99: YY_RULE_SETUP #line 308 "./util/configlexer.lex" { YDVAR(1, VAR_URL) } YY_BREAK case 100: YY_RULE_SETUP #line 309 "./util/configlexer.lex" { YDVAR(1, VAR_FOR_DOWNSTREAM) } YY_BREAK case 101: YY_RULE_SETUP #line 310 "./util/configlexer.lex" { YDVAR(1, VAR_FOR_UPSTREAM) } YY_BREAK case 102: YY_RULE_SETUP #line 311 "./util/configlexer.lex" { YDVAR(1, VAR_FALLBACK_ENABLED) } YY_BREAK case 103: YY_RULE_SETUP #line 312 "./util/configlexer.lex" { YDVAR(0, VAR_VIEW) } YY_BREAK case 104: YY_RULE_SETUP #line 313 "./util/configlexer.lex" { YDVAR(1, VAR_VIEW_FIRST) } YY_BREAK case 105: YY_RULE_SETUP #line 314 "./util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) } YY_BREAK case 106: YY_RULE_SETUP #line 315 "./util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) } YY_BREAK case 107: YY_RULE_SETUP #line 316 "./util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL) } YY_BREAK case 108: YY_RULE_SETUP #line 317 "./util/configlexer.lex" { YDVAR(1, VAR_SEND_CLIENT_SUBNET) } YY_BREAK case 109: YY_RULE_SETUP #line 318 "./util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_ZONE) } YY_BREAK case 110: YY_RULE_SETUP #line 319 "./util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) } YY_BREAK case 111: YY_RULE_SETUP #line 320 "./util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) } YY_BREAK case 112: YY_RULE_SETUP #line 321 "./util/configlexer.lex" { YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) } YY_BREAK case 113: YY_RULE_SETUP #line 322 "./util/configlexer.lex" { YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) } YY_BREAK case 114: YY_RULE_SETUP #line 323 "./util/configlexer.lex" { YDVAR(1, VAR_HIDE_IDENTITY) } YY_BREAK case 115: YY_RULE_SETUP #line 324 "./util/configlexer.lex" { YDVAR(1, VAR_HIDE_VERSION) } YY_BREAK case 116: YY_RULE_SETUP #line 325 "./util/configlexer.lex" { YDVAR(1, VAR_HIDE_TRUSTANCHOR) } YY_BREAK case 117: YY_RULE_SETUP #line 326 "./util/configlexer.lex" { YDVAR(1, VAR_IDENTITY) } YY_BREAK case 118: YY_RULE_SETUP #line 327 "./util/configlexer.lex" { YDVAR(1, VAR_VERSION) } YY_BREAK case 119: YY_RULE_SETUP #line 328 "./util/configlexer.lex" { YDVAR(1, VAR_MODULE_CONF) } YY_BREAK case 120: YY_RULE_SETUP #line 329 "./util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR) } YY_BREAK case 121: YY_RULE_SETUP #line 330 "./util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR_FILE) } YY_BREAK case 122: YY_RULE_SETUP #line 331 "./util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_FILE) } YY_BREAK case 123: YY_RULE_SETUP #line 332 "./util/configlexer.lex" { YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) } YY_BREAK case 124: YY_RULE_SETUP #line 333 "./util/configlexer.lex" { YDVAR(1, VAR_TRUSTED_KEYS_FILE) } YY_BREAK case 125: YY_RULE_SETUP #line 334 "./util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR) } YY_BREAK case 126: YY_RULE_SETUP #line 335 "./util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) } YY_BREAK case 127: YY_RULE_SETUP #line 336 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_OVERRIDE_DATE) } YY_BREAK case 128: YY_RULE_SETUP #line 337 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MIN) } YY_BREAK case 129: YY_RULE_SETUP #line 338 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MAX) } YY_BREAK case 130: YY_RULE_SETUP #line 339 "./util/configlexer.lex" { YDVAR(1, VAR_BOGUS_TTL) } YY_BREAK case 131: YY_RULE_SETUP #line 340 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) } YY_BREAK case 132: YY_RULE_SETUP #line 341 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_PERMISSIVE_MODE) } YY_BREAK case 133: YY_RULE_SETUP #line 342 "./util/configlexer.lex" { YDVAR(1, VAR_AGGRESSIVE_NSEC) } YY_BREAK case 134: YY_RULE_SETUP #line 343 "./util/configlexer.lex" { YDVAR(1, VAR_IGNORE_CD_FLAG) } YY_BREAK case 135: YY_RULE_SETUP #line 344 "./util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED) } YY_BREAK case 136: YY_RULE_SETUP #line 345 "./util/configlexer.lex" { YDVAR(1, VAR_FAKE_DSA) } YY_BREAK case 137: YY_RULE_SETUP #line 346 "./util/configlexer.lex" { YDVAR(1, VAR_FAKE_SHA1) } YY_BREAK case 138: YY_RULE_SETUP #line 347 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_LOG_LEVEL) } YY_BREAK case 139: YY_RULE_SETUP #line 348 "./util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SIZE) } YY_BREAK case 140: YY_RULE_SETUP #line 349 "./util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SLABS) } YY_BREAK case 141: YY_RULE_SETUP #line 350 "./util/configlexer.lex" { YDVAR(1, VAR_NEG_CACHE_SIZE) } YY_BREAK case 142: YY_RULE_SETUP #line 351 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) } YY_BREAK case 143: YY_RULE_SETUP #line 353 "./util/configlexer.lex" { YDVAR(1, VAR_ADD_HOLDDOWN) } YY_BREAK case 144: YY_RULE_SETUP #line 354 "./util/configlexer.lex" { YDVAR(1, VAR_DEL_HOLDDOWN) } YY_BREAK case 145: YY_RULE_SETUP #line 355 "./util/configlexer.lex" { YDVAR(1, VAR_KEEP_MISSING) } YY_BREAK case 146: YY_RULE_SETUP #line 356 "./util/configlexer.lex" { YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) } YY_BREAK case 147: YY_RULE_SETUP #line 357 "./util/configlexer.lex" { YDVAR(1, VAR_USE_SYSLOG) } YY_BREAK case 148: YY_RULE_SETUP #line 358 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_IDENTITY) } YY_BREAK case 149: YY_RULE_SETUP #line 359 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_TIME_ASCII) } YY_BREAK case 150: YY_RULE_SETUP #line 360 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_QUERIES) } YY_BREAK case 151: YY_RULE_SETUP #line 361 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_REPLIES) } YY_BREAK case 152: YY_RULE_SETUP #line 362 "./util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE) } YY_BREAK case 153: YY_RULE_SETUP #line 363 "./util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA) } YY_BREAK case 154: YY_RULE_SETUP #line 364 "./util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA_PTR) } YY_BREAK case 155: YY_RULE_SETUP #line 365 "./util/configlexer.lex" { YDVAR(1, VAR_UNBLOCK_LAN_ZONES) } YY_BREAK case 156: YY_RULE_SETUP #line 366 "./util/configlexer.lex" { YDVAR(1, VAR_INSECURE_LAN_ZONES) } YY_BREAK case 157: YY_RULE_SETUP #line 367 "./util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_INTERVAL) } YY_BREAK case 158: YY_RULE_SETUP #line 368 "./util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_CUMULATIVE) } YY_BREAK case 159: YY_RULE_SETUP #line 369 "./util/configlexer.lex" { YDVAR(1, VAR_EXTENDED_STATISTICS) } YY_BREAK case 160: YY_RULE_SETUP #line 370 "./util/configlexer.lex" { YDVAR(1, VAR_SHM_ENABLE) } YY_BREAK case 161: YY_RULE_SETUP #line 371 "./util/configlexer.lex" { YDVAR(1, VAR_SHM_KEY) } YY_BREAK case 162: YY_RULE_SETUP #line 372 "./util/configlexer.lex" { YDVAR(0, VAR_REMOTE_CONTROL) } YY_BREAK case 163: YY_RULE_SETUP #line 373 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_ENABLE) } YY_BREAK case 164: YY_RULE_SETUP #line 374 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_INTERFACE) } YY_BREAK case 165: YY_RULE_SETUP #line 375 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_PORT) } YY_BREAK case 166: YY_RULE_SETUP #line 376 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_USE_CERT) } YY_BREAK case 167: YY_RULE_SETUP #line 377 "./util/configlexer.lex" { YDVAR(1, VAR_SERVER_KEY_FILE) } YY_BREAK case 168: YY_RULE_SETUP #line 378 "./util/configlexer.lex" { YDVAR(1, VAR_SERVER_CERT_FILE) } YY_BREAK case 169: YY_RULE_SETUP #line 379 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_KEY_FILE) } YY_BREAK case 170: YY_RULE_SETUP #line 380 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_CERT_FILE) } YY_BREAK case 171: YY_RULE_SETUP #line 381 "./util/configlexer.lex" { YDVAR(1, VAR_PYTHON_SCRIPT) } YY_BREAK case 172: YY_RULE_SETUP #line 382 "./util/configlexer.lex" { YDVAR(0, VAR_PYTHON) } YY_BREAK case 173: YY_RULE_SETUP #line 383 "./util/configlexer.lex" { YDVAR(1, VAR_DOMAIN_INSECURE) } YY_BREAK case 174: YY_RULE_SETUP #line 384 "./util/configlexer.lex" { YDVAR(1, VAR_MINIMAL_RESPONSES) } YY_BREAK case 175: YY_RULE_SETUP #line 385 "./util/configlexer.lex" { YDVAR(1, VAR_RRSET_ROUNDROBIN) } YY_BREAK case 176: YY_RULE_SETUP #line 386 "./util/configlexer.lex" { YDVAR(1, VAR_MAX_UDP_SIZE) } YY_BREAK case 177: YY_RULE_SETUP #line 387 "./util/configlexer.lex" { YDVAR(1, VAR_DNS64_PREFIX) } YY_BREAK case 178: YY_RULE_SETUP #line 388 "./util/configlexer.lex" { YDVAR(1, VAR_DNS64_SYNTHALL) } YY_BREAK case 179: YY_RULE_SETUP #line 389 "./util/configlexer.lex" { YDVAR(1, VAR_DEFINE_TAG) } YY_BREAK case 180: YY_RULE_SETUP #line 390 "./util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE_TAG) } YY_BREAK case 181: YY_RULE_SETUP #line 391 "./util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL_TAG) } YY_BREAK case 182: YY_RULE_SETUP #line 392 "./util/configlexer.lex" { YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) } YY_BREAK case 183: YY_RULE_SETUP #line 393 "./util/configlexer.lex" { YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) } YY_BREAK case 184: YY_RULE_SETUP #line 394 "./util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL_VIEW) } YY_BREAK case 185: YY_RULE_SETUP #line 395 "./util/configlexer.lex" { YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) } YY_BREAK case 186: YY_RULE_SETUP #line 396 "./util/configlexer.lex" { YDVAR(0, VAR_DNSTAP) } YY_BREAK case 187: YY_RULE_SETUP #line 397 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_ENABLE) } YY_BREAK case 188: YY_RULE_SETUP #line 398 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } YY_BREAK case 189: YY_RULE_SETUP #line 399 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) } YY_BREAK case 190: YY_RULE_SETUP #line 400 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_VERSION) } YY_BREAK case 191: YY_RULE_SETUP #line 401 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_IDENTITY) } YY_BREAK case 192: YY_RULE_SETUP #line 402 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_VERSION) } YY_BREAK case 193: YY_RULE_SETUP #line 403 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) } YY_BREAK case 194: YY_RULE_SETUP #line 405 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) } YY_BREAK case 195: YY_RULE_SETUP #line 407 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) } YY_BREAK case 196: YY_RULE_SETUP #line 409 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) } YY_BREAK case 197: YY_RULE_SETUP #line 411 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } YY_BREAK case 198: YY_RULE_SETUP #line 413 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } YY_BREAK case 199: YY_RULE_SETUP #line 415 "./util/configlexer.lex" { YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) } YY_BREAK case 200: YY_RULE_SETUP #line 416 "./util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT) } YY_BREAK case 201: YY_RULE_SETUP #line 417 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT) } YY_BREAK case 202: YY_RULE_SETUP #line 418 "./util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_SLABS) } YY_BREAK case 203: YY_RULE_SETUP #line 419 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SLABS) } YY_BREAK case 204: YY_RULE_SETUP #line 420 "./util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_SIZE) } YY_BREAK case 205: YY_RULE_SETUP #line 421 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SIZE) } YY_BREAK case 206: YY_RULE_SETUP #line 422 "./util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) } YY_BREAK case 207: YY_RULE_SETUP #line 423 "./util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) } YY_BREAK case 208: YY_RULE_SETUP #line 424 "./util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_FACTOR) } YY_BREAK case 209: YY_RULE_SETUP #line 425 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_FACTOR) } YY_BREAK case 210: YY_RULE_SETUP #line 426 "./util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP_TAG) } YY_BREAK case 211: YY_RULE_SETUP #line 427 "./util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP) } YY_BREAK case 212: YY_RULE_SETUP #line 428 "./util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP_DATA) } YY_BREAK case 213: YY_RULE_SETUP #line 429 "./util/configlexer.lex" { YDVAR(0, VAR_DNSCRYPT) } YY_BREAK case 214: YY_RULE_SETUP #line 430 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_ENABLE) } YY_BREAK case 215: YY_RULE_SETUP #line 431 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PORT) } YY_BREAK case 216: YY_RULE_SETUP #line 432 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER) } YY_BREAK case 217: YY_RULE_SETUP #line 433 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) } YY_BREAK case 218: YY_RULE_SETUP #line 434 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) } YY_BREAK case 219: YY_RULE_SETUP #line 435 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) } YY_BREAK case 220: YY_RULE_SETUP #line 436 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) } YY_BREAK case 221: YY_RULE_SETUP #line 438 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) } YY_BREAK case 222: YY_RULE_SETUP #line 440 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) } YY_BREAK case 223: YY_RULE_SETUP #line 441 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) } YY_BREAK case 224: YY_RULE_SETUP #line 442 "./util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_ENABLED) } YY_BREAK case 225: YY_RULE_SETUP #line 443 "./util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) } YY_BREAK case 226: YY_RULE_SETUP #line 444 "./util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_HOOK) } YY_BREAK case 227: YY_RULE_SETUP #line 445 "./util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_MAX_TTL) } YY_BREAK case 228: YY_RULE_SETUP #line 446 "./util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_WHITELIST) } YY_BREAK case 229: YY_RULE_SETUP #line 447 "./util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_STRICT) } YY_BREAK case 230: YY_RULE_SETUP #line 448 "./util/configlexer.lex" { YDVAR(0, VAR_CACHEDB) } YY_BREAK case 231: YY_RULE_SETUP #line 449 "./util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_BACKEND) } YY_BREAK case 232: YY_RULE_SETUP #line 450 "./util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_SECRETSEED) } YY_BREAK case 233: YY_RULE_SETUP #line 451 "./util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISHOST) } YY_BREAK case 234: YY_RULE_SETUP #line 452 "./util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISPORT) } YY_BREAK case 235: YY_RULE_SETUP #line 453 "./util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) } YY_BREAK case 236: YY_RULE_SETUP #line 454 "./util/configlexer.lex" { YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) } YY_BREAK case 237: /* rule 237 can match eol */ YY_RULE_SETUP #line 455 "./util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK /* Quoted strings. Strip leading and ending quotes */ case 238: YY_RULE_SETUP #line 458 "./util/configlexer.lex" { BEGIN(quotedstring); LEXOUT(("QS ")); } YY_BREAK case YY_STATE_EOF(quotedstring): #line 459 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 239: YY_RULE_SETUP #line 464 "./util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 240: /* rule 240 can match eol */ YY_RULE_SETUP #line 465 "./util/configlexer.lex" { yyerror("newline inside quoted string, no end \""); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 241: YY_RULE_SETUP #line 467 "./util/configlexer.lex" { LEXOUT(("QE ")); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } yytext[yyleng - 1] = '\0'; yylval.str = strdup(yytext); if(!yylval.str) yyerror("out of memory"); return STRING_ARG; } YY_BREAK /* Single Quoted strings. Strip leading and ending quotes */ case 242: YY_RULE_SETUP #line 479 "./util/configlexer.lex" { BEGIN(singlequotedstr); LEXOUT(("SQS ")); } YY_BREAK case YY_STATE_EOF(singlequotedstr): #line 480 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 243: YY_RULE_SETUP #line 485 "./util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 244: /* rule 244 can match eol */ YY_RULE_SETUP #line 486 "./util/configlexer.lex" { yyerror("newline inside quoted string, no end '"); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 245: YY_RULE_SETUP #line 488 "./util/configlexer.lex" { LEXOUT(("SQE ")); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } yytext[yyleng - 1] = '\0'; yylval.str = strdup(yytext); if(!yylval.str) yyerror("out of memory"); return STRING_ARG; } YY_BREAK /* include: directive */ case 246: YY_RULE_SETUP #line 500 "./util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); } YY_BREAK case YY_STATE_EOF(include): #line 502 "./util/configlexer.lex" { yyerror("EOF inside include directive"); BEGIN(inc_prev); } YY_BREAK case 247: YY_RULE_SETUP #line 506 "./util/configlexer.lex" { LEXOUT(("ISP ")); /* ignore */ } YY_BREAK case 248: /* rule 248 can match eol */ YY_RULE_SETUP #line 507 "./util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++;} YY_BREAK case 249: YY_RULE_SETUP #line 508 "./util/configlexer.lex" { LEXOUT(("IQS ")); BEGIN(include_quoted); } YY_BREAK case 250: YY_RULE_SETUP #line 509 "./util/configlexer.lex" { LEXOUT(("Iunquotedstr(%s) ", yytext)); config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(include_quoted): #line 514 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 251: YY_RULE_SETUP #line 518 "./util/configlexer.lex" { LEXOUT(("ISTR(%s) ", yytext)); yymore(); } YY_BREAK case 252: /* rule 252 can match eol */ YY_RULE_SETUP #line 519 "./util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 253: YY_RULE_SETUP #line 521 "./util/configlexer.lex" { LEXOUT(("IQE ")); yytext[yyleng - 1] = '\0'; config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(val): #line 527 "./util/configlexer.lex" { LEXOUT(("LEXEOF ")); yy_set_bol(1); /* Set beginning of line, so "^" rules match. */ if (!config_include_stack) { yyterminate(); } else { fclose(yyin); config_end_include(); } } YY_BREAK case 254: YY_RULE_SETUP #line 538 "./util/configlexer.lex" { LEXOUT(("unquotedstr(%s) ", yytext)); if(--num_args == 0) { BEGIN(INITIAL); } yylval.str = strdup(yytext); return STRING_ARG; } YY_BREAK case 255: YY_RULE_SETUP #line 542 "./util/configlexer.lex" { ub_c_error_msg("unknown keyword '%s'", yytext); } YY_BREAK case 256: YY_RULE_SETUP #line 546 "./util/configlexer.lex" { ub_c_error_msg("stray '%s'", yytext); } YY_BREAK case 257: YY_RULE_SETUP #line 550 "./util/configlexer.lex" ECHO; YY_BREAK #line 4254 "" 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 user's declarations */ } /* 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) { char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; char *source = (yytext_ptr); yy_size_t 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 = (yy_size_t) ((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_LVALUE; 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,(yy_size_t) (b->yy_buf_size + 2) ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = NULL; 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), 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 ((int) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ int 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,(yy_size_t) 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) { yy_state_type yy_current_state; char *yy_cp; yy_current_state = (yy_start); for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { 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 >= 2537 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) 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 ) { int yy_is_jam; char *yy_cp = (yy_c_buf_p); 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 >= 2537 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c]; yy_is_jam = (yy_current_state == 2536); return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT #endif #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 0; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); return c; } #endif /* 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((yy_size_t) (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 ); } /* 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; /* After all that talk, this was set to 1 anyways... */ (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. */ yy_size_t 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 NULL; 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 = (int) (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 = NULL; 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,(int) 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; yy_size_t i; /* Get memory for full buffer, including space for trailing EOB's. */ n = (yy_size_t) _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 yynoreturn 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. */ \ yy_size_t 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 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. */ (yy_buffer_stack) = NULL; (yy_buffer_stack_top) = 0; (yy_buffer_stack_max) = 0; (yy_c_buf_p) = NULL; (yy_init) = 0; (yy_start) = 0; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = NULL; yyout = NULL; #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 ) { 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 ) { int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return 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 realloc(ptr, size); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 550 "./util/configlexer.lex"