#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 5 #define YY_FLEX_SUBMINOR_VERSION 37 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ #include #include #include #include /* end standard C headers. */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 #endif #include typedef int8_t flex_int8_t; typedef uint8_t flex_uint8_t; typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; /* Limits of integral types. */ #ifndef INT8_MIN #define INT8_MIN (-128) #endif #ifndef INT16_MIN #define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN #define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX #define INT8_MAX (127) #endif #ifndef INT16_MAX #define INT16_MAX (32767) #endif #ifndef INT32_MAX #define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX #define UINT8_MAX (255U) #endif #ifndef UINT16_MAX #define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX #define UINT32_MAX (4294967295U) #endif #endif /* ! C99 */ #endif /* ! FLEXINT_H */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ /* C99 requires __STDC__ to be defined as 1. */ #if defined (__STDC__) #define YY_USE_CONST #endif /* defined (__STDC__) */ #endif /* ! __cplusplus */ #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN (yy_start) = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START (((yy_start) - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart(yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #define YY_BUF_SIZE 16384 #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 yy_size_t 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) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ yy_size_t yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* Stack of input buffers. */ static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ : NULL) /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static yy_size_t yy_n_chars; /* number of characters read into yy_ch_buf */ yy_size_t yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 0; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart (FILE *input_file ); void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); void yy_delete_buffer (YY_BUFFER_STATE b ); void yy_flush_buffer (YY_BUFFER_STATE b ); void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); void yypop_buffer_state (void ); static void yyensure_buffer_stack (void ); static void yy_load_buffer_state (void ); static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len ); void *yyalloc (yy_size_t ); void *yyrealloc (void *,yy_size_t ); void yyfree (void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #define yytext_ptr yytext static yy_state_type yy_get_previous_state (void ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); static int yy_get_next_buffer (void ); static void yy_fatal_error (yyconst char msg[] ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ (yytext_ptr) = yy_bp; \ (yytext_ptr) -= (yy_more_len); \ yyleng = (size_t) (yy_cp - (yytext_ptr)); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 174 #define YY_END_OF_BUFFER 175 /* 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[1731] = { 0, 1, 1, 156, 156, 160, 160, 164, 164, 168, 168, 1, 1, 175, 172, 1, 154, 154, 173, 2, 173, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 156, 157, 157, 158, 173, 160, 161, 161, 162, 173, 167, 164, 165, 165, 166, 173, 168, 169, 169, 170, 173, 171, 155, 2, 159, 173, 171, 172, 0, 1, 2, 2, 2, 2, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 156, 0, 160, 0, 167, 0, 164, 168, 0, 171, 0, 2, 2, 171, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 171, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 171, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 70, 172, 172, 172, 172, 172, 6, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 171, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 171, 172, 172, 172, 172, 172, 30, 172, 172, 172, 172, 172, 172, 172, 172, 135, 172, 12, 13, 172, 15, 14, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 128, 172, 172, 172, 172, 172, 172, 3, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 171, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 163, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 33, 172, 172, 172, 172, 172, 172, 172, 172, 172, 34, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 85, 163, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 84, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 68, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 20, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 31, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 32, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 22, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 148, 172, 172, 172, 172, 172, 172, 26, 172, 27, 172, 172, 172, 71, 172, 72, 172, 69, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 5, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 87, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 23, 172, 172, 172, 172, 172, 112, 111, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 35, 172, 172, 172, 172, 172, 172, 172, 172, 74, 73, 172, 172, 172, 172, 172, 172, 172, 108, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 53, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 57, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 110, 172, 172, 172, 172, 172, 172, 172, 172, 172, 4, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 105, 172, 172, 172, 172, 172, 172, 172, 172, 172, 121, 172, 106, 172, 133, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 21, 172, 172, 172, 172, 76, 172, 77, 75, 172, 172, 172, 172, 172, 172, 172, 83, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 107, 172, 172, 172, 172, 132, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 67, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 28, 172, 172, 17, 172, 172, 172, 16, 172, 92, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 42, 44, 172, 172, 172, 172, 172, 172, 172, 172, 136, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 78, 172, 172, 172, 172, 172, 172, 82, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 86, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 127, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 96, 172, 100, 172, 172, 172, 172, 81, 172, 172, 63, 172, 119, 172, 172, 172, 172, 134, 172, 172, 172, 172, 172, 172, 172, 141, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 99, 172, 172, 172, 172, 172, 45, 46, 172, 29, 52, 101, 172, 113, 109, 172, 172, 38, 172, 103, 172, 172, 172, 172, 172, 7, 172, 66, 172, 172, 172, 150, 172, 118, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 88, 140, 172, 172, 172, 172, 172, 172, 172, 172, 129, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 102, 172, 37, 39, 172, 172, 172, 172, 172, 65, 172, 172, 172, 149, 172, 172, 172, 172, 123, 18, 19, 172, 172, 172, 172, 172, 172, 172, 62, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 125, 122, 172, 172, 172, 172, 172, 172, 172, 172, 36, 172, 172, 172, 172, 172, 172, 172, 11, 172, 172, 172, 172, 172, 172, 172, 172, 10, 172, 172, 172, 153, 172, 40, 172, 131, 124, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 95, 94, 172, 172, 126, 120, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 47, 172, 130, 172, 172, 172, 172, 172, 172, 41, 172, 172, 172, 89, 91, 114, 172, 172, 172, 93, 172, 172, 172, 172, 172, 172, 172, 172, 172, 137, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 24, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 139, 172, 172, 117, 172, 172, 172, 172, 172, 172, 172, 50, 172, 25, 172, 9, 172, 172, 172, 172, 115, 54, 172, 172, 172, 98, 172, 172, 172, 172, 172, 172, 172, 138, 79, 172, 172, 172, 172, 56, 60, 55, 172, 48, 172, 8, 172, 151, 172, 172, 97, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 61, 59, 172, 49, 172, 172, 116, 172, 172, 90, 43, 172, 172, 172, 172, 172, 172, 80, 58, 51, 152, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 64, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 104, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 144, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 142, 172, 145, 146, 172, 172, 172, 172, 172, 143, 147, 0 } ; static yyconst flex_int32_t yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 5, 6, 1, 1, 1, 7, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 9, 10, 1, 11, 1, 1, 1, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 13, 1, 1, 1, 1, 14, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst flex_int32_t yy_meta[40] = { 0, 1, 2, 3, 4, 5, 1, 6, 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_int16_t yy_base[1745] = { 0, 0, 0, 37, 40, 44, 51, 63, 75, 56, 68, 87, 108, 2883, 2837, 50, 3431, 3431, 3431, 129, 94, 70, 104, 130, 90, 92, 115, 127, 95, 84, 111, 137, 148, 50, 150, 161, 158, 154, 167, 182, 2287, 3431, 3431, 3431, 70, 2251, 3431, 3431, 3431, 42, 1839, 1625, 3431, 3431, 3431, 199, 1573, 3431, 3431, 3431, 141, 1198, 3431, 203, 3431, 207, 122, 861, 213, 120, 0, 224, 0, 0, 103, 147, 140, 206, 171, 170, 208, 210, 211, 200, 226, 217, 214, 225, 227, 232, 180, 230, 235, 242, 229, 246, 247, 240, 249, 252, 253, 257, 258, 259, 261, 262, 267, 268, 269, 274, 275, 276, 278, 280, 284, 283, 286, 282, 290, 292, 299, 303, 293, 296, 812, 318, 609, 321, 447, 327, 359, 174, 332, 164, 336, 340, 0, 317, 333, 341, 311, 335, 337, 339, 342, 349, 346, 352, 355, 376, 357, 345, 360, 49, 359, 361, 367, 368, 372, 370, 369, 378, 371, 373, 382, 392, 399, 400, 401, 386, 408, 404, 411, 417, 413, 415, 402, 418, 414, 419, 423, 416, 425, 429, 426, 432, 435, 433, 302, 437, 443, 439, 440, 441, 454, 460, 457, 456, 446, 461, 467, 466, 475, 463, 464, 473, 474, 477, 483, 488, 486, 489, 479, 491, 493, 494, 492, 502, 500, 503, 505, 512, 508, 509, 511, 513, 515, 517, 518, 519, 521, 525, 531, 524, 523, 529, 530, 539, 541, 542, 547, 554, 548, 549, 550, 556, 558, 560, 562, 566, 567, 574, 570, 571, 579, 572, 573, 588, 580, 591, 581, 583, 585, 593, 595, 599, 615, 601, 610, 604, 605, 606, 608, 637, 612, 620, 611, 623, 641, 622, 633, 644, 643, 645, 651, 646, 652, 653, 656, 655, 654, 660, 661, 662, 663, 674, 673, 667, 685, 681, 682, 664, 683, 689, 690, 697, 693, 694, 695, 696, 698, 701, 704, 708, 3431, 710, 705, 712, 713, 715, 3431, 716, 717, 718, 719, 724, 723, 735, 721, 733, 738, 740, 734, 741, 742, 743, 763, 745, 750, 752, 748, 753, 760, 756, 767, 770, 772, 775, 774, 754, 777, 778, 780, 783, 788, 791, 794, 795, 796, 797, 801, 802, 803, 804, 808, 816, 810, 822, 811, 828, 831, 825, 833, 835, 841, 818, 837, 840, 843, 845, 846, 847, 853, 850, 852, 856, 857, 854, 860, 870, 862, 873, 875, 877, 878, 880, 881, 883, 889, 863, 887, 893, 894, 886, 888, 898, 905, 906, 914, 907, 915, 912, 916, 923, 924, 917, 925, 928, 929, 930, 931, 933, 932, 935, 938, 939, 945, 942, 943, 948, 953, 955, 957, 958, 959, 962, 963, 967, 965, 966, 975, 976, 978, 980, 979, 982, 986, 981, 988, 991, 3431, 1001, 995, 992, 998, 892, 1003, 1005, 1031, 3431, 1007, 3431, 3431, 1006, 3431, 3431, 1008, 1009, 1010, 1018, 1054, 1019, 1011, 1012, 1025, 1027, 1032, 1033, 1020, 1041, 1044, 1046, 1038, 1045, 1048, 1052, 1062, 1049, 1059, 1069, 1071, 1080, 1081, 1079, 1078, 1083, 1085, 1068, 1087, 1088, 1090, 1094, 1101, 1097, 3431, 1098, 1100, 1099, 1104, 1106, 1108, 3431, 1109, 1110, 1112, 1114, 1117, 1118, 1120, 1122, 1123, 1124, 1127, 1128, 1125, 1132, 1135, 1145, 1151, 1144, 1137, 1147, 1150, 1153, 1157, 1165, 1161, 1154, 1162, 1168, 1166, 1170, 1177, 1167, 1179, 1171, 1173, 1178, 1180, 1201, 1181, 1184, 1188, 1187, 1189, 1191, 1193, 1211, 1203, 1209, 1216, 1219, 1208, 1220, 1225, 1228, 1235, 1226, 1227, 1230, 1237, 1195, 1240, 1239, 1242, 1246, 1251, 1248, 3431, 1258, 1254, 1255, 1259, 1262, 1260, 1264, 1266, 1263, 1268, 1269, 1270, 1276, 1283, 3431, 1271, 1277, 1281, 1286, 1287, 1288, 1294, 1297, 1304, 3431, 1306, 1307, 1309, 1300, 1302, 1310, 1313, 1314, 1318, 1319, 1315, 1322, 1325, 1327, 1328, 1329, 1333, 1332, 1334, 1339, 1341, 1340, 1343, 1342, 1346, 1344, 1351, 1357, 1361, 1358, 1365, 1362, 1366, 1367, 1372, 1369, 1374, 1370, 1371, 3431, 125, 1376, 1377, 1375, 1391, 1393, 1394, 1397, 1384, 1400, 1401, 1403, 1385, 1405, 1407, 1409, 1410, 1411, 1412, 1415, 1419, 1422, 1413, 1430, 1421, 1425, 1431, 1423, 1435, 1437, 1378, 1438, 1443, 1444, 1441, 1445, 1446, 1449, 1450, 1454, 1451, 1452, 1453, 3431, 1469, 1461, 1455, 1467, 1471, 1478, 1474, 1479, 1481, 1482, 1488, 1484, 1490, 1492, 1498, 1496, 1501, 1486, 1489, 1508, 1509, 1510, 1512, 1511, 1502, 3431, 1514, 1517, 1519, 1531, 1521, 1522, 1528, 1524, 1533, 1523, 1540, 1534, 1543, 3431, 1544, 1545, 1546, 1553, 1554, 1556, 1557, 1559, 1560, 1561, 1563, 1564, 1567, 1570, 1572, 1575, 3431, 1581, 1584, 1585, 1591, 1583, 1577, 1587, 1594, 1589, 1595, 1602, 1599, 1600, 1603, 1604, 1605, 1601, 1607, 1608, 1611, 1610, 1612, 3431, 1628, 1625, 1629, 1636, 1630, 1640, 1639, 1631, 1641, 1624, 1645, 1646, 1647, 1648, 1649, 1652, 1654, 1655, 1656, 1657, 1658, 1659, 1667, 1661, 1662, 1675, 1676, 1679, 1678, 1681, 1687, 1688, 1689, 3431, 1693, 1694, 1695, 1696, 1697, 1703, 1705, 1701, 1706, 1707, 1708, 1709, 1718, 1711, 1717, 1719, 1721, 1714, 1722, 1724, 1731, 1729, 1737, 1735, 1742, 1744, 3431, 1745, 1753, 1749, 1755, 1747, 1761, 3431, 1757, 3431, 1764, 1770, 1773, 3431, 1777, 3431, 1779, 3431, 1723, 1780, 1772, 1758, 1760, 1784, 1782, 1786, 1788, 1790, 1792, 1793, 1762, 1794, 1795, 3431, 1798, 1796, 1801, 1806, 1799, 1803, 1809, 1805, 1815, 1807, 1826, 1820, 1827, 1824, 1829, 1830, 3431, 1831, 1832, 1834, 1837, 1841, 1848, 1845, 1842, 1849, 1835, 1853, 1863, 1861, 1852, 1864, 1865, 1866, 1872, 1868, 1869, 1876, 1873, 1877, 1879, 1880, 1882, 1881, 1884, 1892, 1886, 1888, 1889, 3431, 1898, 1890, 1894, 1902, 1904, 3431, 3431, 1913, 1915, 1916, 1907, 1917, 1909, 1922, 1924, 1930, 1936, 1919, 1927, 1929, 1932, 1937, 1938, 1941, 1943, 1944, 1950, 1945, 1948, 3431, 1958, 1952, 1960, 1961, 1963, 1969, 1968, 1971, 3431, 3431, 1976, 1972, 1973, 1975, 1982, 1979, 1978, 3431, 1986, 1988, 1993, 1997, 1999, 2000, 1987, 1990, 2008, 1989, 2011, 2001, 2012, 2014, 2020, 2016, 2017, 2019, 2022, 2023, 2030, 3431, 2027, 2032, 2034, 2037, 2038, 2039, 2040, 2043, 2041, 2044, 2045, 2053, 2054, 2056, 2057, 2058, 2062, 2059, 2066, 2068, 2069, 2075, 2071, 3431, 2085, 2072, 2086, 2082, 2084, 2087, 2094, 2091, 2092, 2093, 2095, 2097, 2096, 2099, 2100, 2101, 2108, 3431, 2109, 2120, 2106, 2116, 2122, 2114, 2124, 2127, 2129, 3431, 2130, 2137, 2134, 2136, 2139, 2141, 2133, 2144, 2147, 2148, 2149, 2150, 2155, 2157, 2152, 2158, 2160, 2161, 2163, 2168, 2175, 2165, 2169, 2182, 2181, 2190, 2192, 2178, 2188, 2196, 2193, 2194, 2195, 2197, 2206, 2199, 2208, 2202, 3431, 2209, 2210, 2216, 2218, 2213, 2219, 2223, 2220, 2227, 3431, 2224, 3431, 2230, 3431, 2231, 2235, 2232, 2237, 2238, 2239, 2240, 2245, 2253, 2241, 3431, 2259, 2247, 2254, 2257, 3431, 2262, 3431, 3431, 2249, 2267, 2273, 2269, 2274, 2270, 2277, 3431, 2278, 2279, 2282, 2280, 2284, 2288, 2290, 2291, 2292, 2293, 2294, 3431, 2296, 2295, 2298, 2306, 3431, 2304, 2309, 2310, 2312, 2319, 2320, 2322, 2311, 2323, 2331, 2328, 3431, 2330, 2324, 2335, 2332, 2337, 2344, 2340, 2346, 2341, 2342, 2350, 2355, 2356, 3431, 2358, 2360, 3431, 2359, 2361, 2362, 3431, 2367, 3431, 2369, 2370, 2366, 2371, 2377, 2374, 2387, 2379, 2384, 2389, 2382, 2393, 2396, 2390, 3431, 3431, 2400, 2397, 2402, 2407, 2403, 2405, 2409, 2412, 3431, 2413, 2416, 2417, 2418, 2419, 2425, 2420, 2427, 2428, 2422, 2429, 2430, 2431, 3431, 2435, 2439, 2441, 2444, 2442, 2445, 3431, 2447, 2448, 2449, 2453, 2455, 2469, 2472, 2474, 2464, 2476, 2479, 2481, 2482, 2484, 2486, 2487, 3431, 2452, 2489, 2490, 2492, 2493, 2494, 2495, 2496, 2503, 2499, 2505, 3431, 2507, 2508, 2510, 2516, 2513, 2520, 2517, 2521, 2524, 2525, 2526, 2527, 2528, 2529, 2534, 2536, 2535, 2538, 2540, 2553, 2542, 3431, 2545, 3431, 2549, 2555, 2562, 2559, 3431, 2561, 2563, 3431, 2566, 3431, 2564, 2569, 2570, 2580, 3431, 2582, 2571, 2583, 2575, 2577, 2573, 2588, 3431, 2593, 2595, 2600, 2596, 2586, 2594, 2603, 2602, 2604, 2610, 2611, 3431, 2612, 2613, 2619, 2615, 2459, 3431, 3431, 2620, 3431, 3431, 3431, 2625, 3431, 3431, 2626, 2630, 3431, 2633, 3431, 2639, 2635, 2627, 2616, 2637, 3431, 2641, 3431, 2649, 2645, 2646, 3431, 2648, 3431, 2650, 2651, 2652, 2654, 2657, 2665, 2668, 2658, 2660, 2662, 2669, 2671, 2672, 2673, 2676, 2679, 2680, 2682, 2684, 2685, 2686, 2687, 2689, 2690, 2691, 2699, 2704, 3431, 3431, 2692, 2701, 2694, 2707, 2708, 2710, 2713, 2714, 3431, 2721, 2723, 2718, 2722, 2724, 2726, 2729, 2728, 2734, 2740, 2736, 2738, 2739, 2741, 3431, 2743, 3431, 3431, 2746, 2748, 2750, 2752, 2755, 3431, 2756, 2764, 2757, 3431, 2769, 2759, 2772, 2775, 3431, 3431, 3431, 2776, 2765, 2779, 2780, 2781, 2782, 2783, 3431, 2784, 2789, 2790, 2792, 2797, 2803, 2798, 2800, 2809, 2811, 3431, 3431, 2817, 2814, 2815, 2804, 2806, 2816, 2822, 2819, 3431, 2823, 2825, 2828, 2829, 2830, 2832, 2835, 3431, 2834, 2836, 2840, 2846, 2842, 2848, 2849, 2850, 3431, 2852, 2854, 2858, 3431, 2862, 3431, 2865, 3431, 3431, 2860, 2868, 2871, 2876, 2878, 2882, 2866, 2872, 2888, 2890, 2887, 3431, 3431, 2879, 2897, 3431, 3431, 2893, 2894, 2895, 2896, 2898, 2901, 2902, 2906, 2903, 2904, 2907, 2909, 2915, 2917, 2918, 2919, 2923, 2926, 3431, 2924, 3431, 2929, 2931, 2932, 2933, 2935, 2940, 3431, 2941, 2939, 2934, 3431, 3431, 3431, 2952, 2953, 2955, 3431, 2956, 2958, 2945, 2960, 2963, 2962, 2971, 2969, 2973, 3431, 2970, 2975, 2977, 2974, 2979, 2982, 2983, 2984, 2986, 2985, 2996, 2987, 3000, 3003, 3431, 3005, 2993, 3009, 3001, 2997, 3017, 3021, 3007, 3012, 3014, 3023, 3018, 3025, 3027, 3028, 3036, 3033, 3038, 3431, 3040, 3029, 3431, 3041, 3035, 3052, 3043, 3054, 3056, 3058, 3431, 3060, 3431, 3061, 3431, 3065, 3066, 3068, 3069, 3431, 3431, 3070, 3072, 3076, 3431, 3077, 3073, 3079, 3080, 3083, 3084, 3086, 3431, 3431, 3087, 3089, 3093, 3090, 3431, 3431, 3431, 3099, 3431, 3102, 3431, 3095, 3431, 3104, 3108, 3431, 3110, 3112, 3114, 3115, 3116, 3117, 3119, 3120, 3118, 3122, 3431, 3431, 3127, 3431, 3130, 3133, 3431, 3134, 3135, 3431, 3431, 3144, 3141, 3142, 3143, 3145, 3148, 3431, 3431, 3431, 3431, 3149, 3150, 3152, 3154, 3151, 3156, 3157, 3159, 3161, 3158, 3166, 3175, 3168, 3176, 3183, 3181, 3431, 3177, 3179, 3189, 3190, 3186, 3188, 3187, 3194, 3196, 3197, 3199, 3202, 3204, 3211, 3203, 3213, 3218, 3219, 3220, 3207, 3232, 3229, 3230, 3217, 3231, 3238, 3234, 3235, 3431, 3239, 3240, 3241, 3242, 3245, 3247, 3243, 3256, 3263, 3249, 3251, 3261, 3266, 3267, 3268, 3269, 3271, 3270, 3431, 3272, 3273, 3279, 3281, 3282, 3284, 3285, 3286, 3291, 3292, 3294, 3296, 3301, 3431, 3297, 3431, 3431, 3305, 3306, 3307, 3312, 3314, 3431, 3431, 3431, 3339, 3346, 3353, 3360, 3367, 94, 3374, 3381, 3388, 3395, 3402, 3409, 3416, 3423 } ; static yyconst flex_int16_t yy_def[1745] = { 0, 1730, 1, 1731, 1731, 1732, 1732, 1733, 1733, 1734, 1734, 1735, 1735, 1730, 1736, 1730, 1730, 1730, 1730, 1737, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1738, 1730, 1730, 1730, 1738, 1739, 1730, 1730, 1730, 1739, 1740, 1730, 1730, 1730, 1730, 1740, 1741, 1730, 1730, 1730, 1741, 1742, 1730, 1743, 1730, 1742, 1742, 1736, 1736, 1730, 1744, 1737, 1744, 1737, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1738, 1738, 1739, 1739, 1740, 1740, 1730, 1741, 1741, 1742, 1742, 1743, 1743, 1742, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1742, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1742, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1742, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1742, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1730, 1730, 1736, 1730, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1742, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1742, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1730, 1736, 1736, 1736, 1730, 1736, 1730, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1730, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1730, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1730, 1736, 1730, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1730, 1736, 1736, 1736, 1730, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1730, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1730, 1736, 1730, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1730, 1730, 1736, 1730, 1730, 1730, 1736, 1730, 1730, 1736, 1736, 1730, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1730, 1736, 1736, 1736, 1730, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1730, 1730, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1730, 1730, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1730, 1736, 1730, 1736, 1730, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1730, 1736, 1736, 1730, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1730, 1730, 1730, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1730, 1736, 1730, 1736, 1736, 1736, 1736, 1730, 1730, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1730, 1736, 1736, 1736, 1736, 1730, 1730, 1730, 1736, 1730, 1736, 1730, 1736, 1730, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1730, 1736, 1730, 1736, 1736, 1730, 1736, 1736, 1730, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1730, 1730, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1730, 1736, 1730, 1730, 1736, 1736, 1736, 1736, 1736, 1730, 1730, 0, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730 } ; static yyconst flex_int16_t yy_nxt[3471] = { 0, 14, 15, 16, 17, 18, 19, 18, 14, 14, 14, 14, 18, 20, 21, 14, 22, 23, 24, 25, 14, 26, 27, 28, 29, 30, 31, 32, 33, 34, 14, 35, 36, 37, 38, 39, 14, 14, 14, 14, 41, 42, 43, 41, 42, 43, 126, 46, 47, 126, 44, 48, 69, 44, 46, 47, 70, 49, 48, 57, 58, 59, 68, 68, 49, 51, 52, 53, 54, 60, 18, 57, 58, 59, 124, 124, 55, 51, 52, 53, 54, 60, 18, 68, 104, 219, 74, 75, 55, 15, 16, 17, 62, 63, 64, 67, 67, 68, 67, 67, 65, 67, 95, 68, 76, 68, 67, 85, 68, 66, 15, 16, 17, 62, 63, 64, 68, 68, 77, 138, 87, 65, 69, 94, 68, 78, 70, 86, 68, 88, 66, 72, 79, 72, 72, 134, 72, 89, 134, 96, 68, 72, 73, 68, 90, 131, 131, 91, 80, 137, 68, 97, 81, 68, 92, 82, 93, 83, 84, 98, 68, 68, 101, 68, 139, 99, 102, 68, 117, 100, 118, 68, 105, 140, 68, 109, 113, 134, 106, 110, 68, 107, 103, 68, 68, 119, 114, 132, 108, 111, 115, 116, 112, 68, 120, 68, 122, 144, 156, 121, 123, 128, 143, 128, 128, 72, 128, 72, 72, 133, 72, 133, 133, 68, 133, 67, 136, 67, 67, 68, 67, 68, 141, 68, 68, 67, 72, 68, 72, 72, 68, 72, 148, 145, 149, 142, 72, 73, 68, 68, 68, 146, 68, 68, 151, 68, 147, 152, 68, 155, 161, 158, 150, 68, 159, 68, 153, 157, 154, 68, 68, 162, 68, 165, 163, 68, 68, 166, 160, 169, 68, 68, 68, 170, 68, 68, 168, 167, 172, 175, 68, 68, 68, 171, 164, 173, 177, 68, 68, 68, 178, 68, 185, 68, 174, 68, 68, 68, 176, 68, 187, 181, 179, 68, 182, 68, 68, 180, 186, 68, 183, 184, 68, 189, 192, 68, 68, 258, 195, 190, 188, 194, 124, 124, 68, 126, 191, 196, 126, 128, 134, 128, 128, 197, 128, 193, 131, 131, 133, 200, 133, 133, 72, 133, 72, 72, 68, 72, 68, 199, 68, 198, 68, 136, 68, 68, 201, 205, 68, 68, 208, 130, 68, 206, 207, 68, 209, 203, 68, 202, 68, 216, 68, 68, 68, 204, 220, 217, 218, 221, 68, 68, 68, 68, 68, 68, 68, 227, 210, 68, 232, 68, 228, 211, 222, 68, 223, 224, 212, 68, 225, 226, 231, 213, 230, 68, 233, 234, 236, 214, 215, 229, 68, 68, 68, 68, 239, 68, 235, 241, 238, 68, 240, 237, 68, 242, 68, 68, 68, 68, 68, 68, 68, 243, 244, 245, 68, 246, 68, 68, 248, 249, 68, 256, 250, 68, 68, 252, 68, 247, 68, 260, 68, 68, 68, 263, 68, 259, 251, 68, 129, 253, 264, 254, 255, 262, 257, 68, 266, 134, 68, 261, 267, 68, 68, 272, 68, 68, 270, 68, 68, 269, 271, 274, 273, 265, 68, 68, 68, 268, 68, 275, 68, 279, 277, 276, 68, 280, 281, 68, 282, 68, 68, 283, 68, 68, 68, 68, 284, 286, 289, 287, 278, 68, 288, 68, 68, 291, 68, 285, 293, 68, 68, 292, 68, 68, 68, 290, 68, 298, 68, 68, 68, 303, 68, 300, 68, 68, 68, 297, 295, 294, 68, 68, 68, 296, 302, 304, 299, 305, 301, 308, 68, 306, 68, 68, 307, 312, 313, 314, 68, 68, 68, 68, 309, 310, 311, 68, 320, 68, 315, 68, 319, 68, 322, 68, 321, 318, 316, 68, 68, 317, 326, 68, 68, 68, 68, 68, 336, 328, 323, 324, 68, 68, 68, 329, 68, 330, 68, 331, 325, 68, 332, 327, 68, 333, 68, 334, 68, 337, 335, 342, 68, 340, 68, 338, 339, 134, 68, 68, 341, 68, 127, 68, 68, 68, 344, 343, 68, 352, 345, 346, 353, 68, 356, 68, 68, 355, 354, 361, 347, 357, 348, 349, 350, 358, 68, 351, 359, 363, 68, 362, 366, 360, 68, 364, 68, 68, 68, 68, 365, 369, 370, 368, 68, 68, 68, 68, 68, 68, 375, 376, 367, 68, 68, 68, 68, 68, 388, 371, 68, 372, 373, 374, 379, 381, 68, 68, 378, 384, 383, 377, 382, 385, 68, 68, 68, 380, 68, 387, 386, 389, 68, 68, 391, 392, 68, 68, 68, 68, 68, 68, 397, 396, 68, 390, 394, 68, 68, 398, 395, 68, 400, 68, 401, 68, 68, 393, 68, 68, 68, 68, 68, 403, 68, 404, 68, 68, 399, 402, 405, 409, 410, 412, 411, 408, 68, 68, 68, 406, 407, 68, 413, 68, 68, 68, 68, 416, 68, 418, 428, 68, 417, 68, 430, 68, 68, 68, 414, 68, 429, 419, 415, 68, 432, 420, 68, 421, 426, 427, 68, 434, 422, 68, 423, 68, 431, 68, 68, 439, 68, 68, 424, 68, 433, 440, 68, 436, 435, 445, 441, 134, 425, 437, 68, 444, 438, 68, 68, 68, 68, 443, 442, 450, 68, 68, 68, 68, 449, 446, 453, 68, 448, 68, 68, 125, 447, 451, 452, 68, 458, 68, 455, 463, 459, 68, 454, 460, 68, 456, 461, 68, 457, 462, 68, 464, 68, 465, 68, 466, 68, 470, 467, 68, 68, 468, 68, 469, 68, 68, 68, 474, 471, 68, 472, 68, 68, 68, 475, 68, 68, 480, 477, 68, 68, 68, 68, 478, 483, 476, 473, 479, 494, 68, 484, 481, 68, 482, 68, 485, 68, 68, 486, 68, 68, 488, 68, 493, 490, 68, 68, 68, 68, 495, 489, 68, 68, 68, 492, 496, 491, 68, 497, 553, 487, 499, 500, 498, 68, 68, 68, 501, 503, 506, 502, 68, 504, 68, 68, 68, 68, 510, 508, 505, 507, 511, 68, 68, 68, 512, 514, 68, 68, 68, 68, 68, 68, 509, 68, 513, 519, 68, 68, 524, 520, 68, 68, 526, 68, 515, 516, 68, 517, 521, 518, 527, 68, 523, 68, 522, 68, 68, 68, 529, 525, 68, 68, 528, 68, 68, 68, 534, 533, 536, 537, 532, 530, 535, 68, 68, 531, 68, 134, 68, 68, 68, 539, 542, 543, 68, 540, 68, 546, 544, 68, 68, 538, 541, 68, 549, 547, 68, 550, 548, 68, 545, 68, 551, 68, 68, 68, 68, 68, 68, 68, 68, 566, 565, 564, 552, 563, 68, 68, 68, 554, 561, 562, 574, 68, 578, 68, 577, 575, 555, 68, 68, 68, 580, 581, 556, 576, 68, 579, 557, 68, 582, 558, 68, 68, 68, 583, 68, 68, 559, 584, 68, 560, 68, 567, 568, 585, 569, 68, 588, 570, 68, 589, 590, 586, 571, 587, 68, 68, 593, 68, 572, 573, 592, 594, 595, 591, 68, 68, 68, 68, 596, 68, 597, 68, 600, 68, 68, 603, 68, 598, 601, 599, 68, 602, 605, 68, 68, 68, 68, 68, 604, 608, 68, 610, 68, 607, 68, 68, 68, 612, 68, 609, 68, 615, 606, 68, 68, 613, 68, 611, 68, 68, 68, 68, 621, 68, 68, 620, 614, 626, 68, 616, 617, 68, 624, 68, 619, 618, 629, 622, 625, 623, 68, 68, 630, 68, 631, 628, 68, 68, 627, 68, 68, 634, 632, 68, 636, 633, 637, 68, 68, 641, 638, 68, 68, 68, 68, 643, 68, 68, 639, 68, 635, 640, 644, 134, 68, 68, 68, 68, 645, 646, 68, 657, 642, 68, 68, 68, 647, 68, 649, 68, 661, 68, 682, 648, 134, 658, 650, 68, 660, 68, 651, 662, 652, 663, 68, 68, 653, 68, 654, 659, 666, 664, 68, 655, 665, 68, 68, 668, 656, 673, 667, 68, 68, 68, 68, 670, 68, 672, 679, 669, 671, 68, 674, 68, 678, 68, 68, 675, 68, 676, 680, 683, 68, 684, 68, 681, 687, 68, 688, 689, 68, 68, 685, 690, 68, 68, 68, 677, 68, 68, 68, 686, 68, 693, 68, 68, 68, 68, 692, 698, 691, 696, 68, 68, 702, 694, 695, 68, 697, 68, 700, 701, 68, 68, 68, 699, 703, 706, 707, 708, 68, 704, 705, 68, 710, 711, 68, 712, 68, 709, 68, 713, 68, 68, 714, 68, 68, 715, 716, 68, 68, 68, 720, 718, 68, 68, 717, 724, 68, 722, 723, 68, 727, 68, 68, 68, 719, 726, 68, 68, 68, 721, 730, 728, 725, 68, 68, 68, 68, 68, 68, 735, 68, 729, 736, 738, 731, 68, 741, 732, 734, 739, 742, 68, 68, 733, 737, 68, 68, 740, 744, 68, 68, 68, 748, 68, 68, 68, 68, 743, 68, 68, 68, 68, 68, 747, 746, 745, 782, 750, 68, 68, 756, 749, 757, 751, 753, 68, 754, 68, 68, 755, 752, 68, 760, 758, 68, 68, 759, 68, 764, 68, 762, 68, 767, 68, 68, 68, 68, 68, 761, 68, 771, 769, 763, 68, 765, 68, 68, 68, 772, 68, 766, 774, 768, 773, 68, 68, 770, 775, 777, 68, 778, 68, 68, 776, 780, 68, 779, 68, 68, 68, 68, 783, 786, 68, 68, 68, 68, 68, 68, 68, 781, 787, 784, 785, 791, 68, 794, 797, 795, 788, 792, 68, 790, 68, 789, 68, 793, 800, 68, 796, 799, 801, 68, 68, 803, 68, 68, 806, 68, 807, 68, 798, 68, 68, 68, 805, 68, 802, 804, 808, 68, 809, 68, 810, 813, 68, 68, 815, 816, 811, 812, 814, 68, 68, 68, 68, 68, 823, 68, 817, 818, 68, 824, 68, 819, 68, 68, 68, 68, 820, 827, 821, 68, 822, 828, 68, 825, 68, 68, 829, 831, 826, 832, 835, 68, 830, 837, 68, 68, 68, 68, 838, 834, 836, 839, 833, 841, 68, 68, 843, 68, 68, 845, 68, 68, 68, 844, 68, 68, 840, 847, 68, 850, 849, 68, 848, 68, 132, 842, 68, 854, 68, 852, 855, 846, 68, 853, 68, 68, 68, 857, 68, 851, 68, 856, 68, 858, 861, 68, 68, 859, 864, 860, 68, 68, 68, 68, 68, 68, 68, 870, 68, 68, 862, 68, 68, 68, 865, 130, 868, 874, 876, 863, 866, 867, 871, 869, 877, 68, 68, 873, 878, 68, 68, 68, 68, 872, 875, 879, 883, 68, 880, 881, 68, 68, 68, 885, 884, 882, 68, 68, 68, 68, 68, 887, 889, 68, 892, 68, 68, 68, 68, 68, 68, 886, 68, 68, 888, 899, 890, 901, 68, 891, 895, 893, 896, 897, 894, 900, 68, 68, 898, 68, 68, 902, 68, 908, 909, 903, 905, 907, 68, 68, 68, 910, 904, 911, 68, 68, 68, 68, 68, 916, 906, 913, 68, 917, 68, 918, 68, 68, 68, 68, 68, 914, 68, 912, 924, 68, 923, 915, 68, 68, 68, 919, 68, 68, 68, 68, 920, 952, 922, 929, 68, 925, 68, 932, 921, 933, 68, 926, 68, 927, 931, 928, 934, 68, 930, 68, 68, 937, 68, 935, 68, 938, 936, 941, 68, 942, 68, 945, 68, 68, 943, 68, 68, 68, 939, 68, 940, 964, 944, 949, 947, 68, 948, 68, 68, 956, 946, 950, 68, 951, 68, 68, 953, 68, 955, 68, 959, 68, 954, 68, 957, 68, 961, 68, 68, 68, 68, 68, 958, 68, 68, 966, 68, 969, 68, 963, 68, 68, 68, 960, 68, 968, 970, 976, 965, 962, 68, 967, 975, 973, 971, 68, 977, 979, 972, 68, 974, 68, 68, 981, 68, 68, 68, 68, 984, 68, 68, 982, 68, 980, 129, 978, 68, 68, 990, 987, 68, 985, 988, 68, 68, 991, 992, 68, 68, 993, 983, 995, 986, 996, 989, 994, 68, 997, 68, 68, 68, 68, 1002, 68, 68, 998, 1001, 68, 68, 1004, 1005, 68, 68, 1006, 68, 68, 68, 68, 999, 68, 1000, 68, 1013, 68, 68, 68, 1003, 68, 1011, 68, 1007, 1010, 1012, 68, 1008, 1009, 1019, 68, 1017, 68, 1018, 1014, 68, 1015, 68, 1016, 1020, 1023, 68, 1021, 68, 68, 68, 1024, 68, 1022, 1025, 68, 1026, 68, 1032, 1027, 68, 1028, 68, 68, 1029, 68, 1031, 1030, 1033, 68, 68, 68, 1034, 1035, 68, 1040, 68, 68, 68, 1037, 1036, 68, 1042, 68, 1043, 68, 1048, 1045, 1050, 1039, 1046, 68, 1041, 68, 68, 1038, 68, 1053, 1044, 1047, 1051, 68, 68, 1049, 68, 68, 68, 1055, 68, 68, 1061, 68, 68, 1056, 1054, 68, 1052, 1057, 1058, 68, 68, 68, 68, 68, 1059, 1065, 68, 1060, 1062, 1063, 68, 1066, 68, 68, 68, 1067, 1073, 1068, 1071, 1064, 1072, 68, 1069, 1070, 68, 68, 1075, 68, 1078, 68, 68, 1074, 68, 68, 1082, 68, 68, 1076, 1081, 1083, 68, 1079, 1084, 68, 1086, 68, 1077, 68, 1080, 1085, 68, 68, 68, 68, 68, 1088, 68, 68, 68, 1087, 1089, 1092, 1098, 1093, 1090, 1097, 68, 68, 1091, 68, 68, 68, 68, 1096, 1102, 68, 1094, 1095, 1104, 68, 1105, 68, 68, 1107, 68, 68, 1106, 1108, 68, 1100, 1099, 1101, 1103, 1109, 1111, 68, 1113, 68, 68, 68, 68, 1114, 1115, 1110, 68, 68, 68, 68, 68, 68, 68, 1125, 68, 68, 68, 1127, 1116, 1117, 1118, 68, 1112, 68, 68, 1119, 1123, 1120, 1121, 68, 1122, 68, 1124, 1129, 1130, 68, 1131, 68, 1132, 68, 1135, 1126, 68, 1128, 68, 68, 1133, 1139, 68, 68, 1138, 68, 68, 1142, 68, 1134, 68, 1144, 1141, 68, 1137, 1143, 68, 68, 68, 68, 1147, 68, 1136, 1140, 68, 1150, 68, 68, 1146, 68, 68, 1156, 68, 1145, 68, 1154, 1148, 68, 68, 1155, 1152, 1151, 1153, 1159, 68, 1149, 1162, 68, 1157, 1163, 68, 68, 1161, 1158, 1164, 1160, 1166, 68, 1165, 68, 1169, 68, 68, 68, 68, 68, 68, 1171, 68, 1168, 1174, 68, 1176, 1167, 1170, 68, 1172, 68, 68, 68, 1179, 1178, 68, 1177, 1180, 68, 1181, 68, 68, 68, 1175, 1173, 68, 68, 1183, 1185, 68, 1184, 1187, 68, 68, 68, 1182, 1190, 68, 1186, 68, 68, 68, 68, 68, 1188, 1189, 1195, 68, 1192, 68, 1197, 68, 1196, 127, 1191, 68, 68, 1198, 1193, 68, 1194, 68, 1199, 1204, 68, 1202, 1205, 1201, 1203, 68, 1207, 68, 68, 1200, 1210, 68, 68, 1209, 1211, 68, 68, 68, 68, 1206, 68, 1214, 68, 1212, 1208, 125, 68, 1215, 68, 68, 68, 68, 68, 68, 68, 1224, 68, 1213, 1217, 1223, 1218, 1219, 68, 1216, 68, 1220, 1228, 68, 68, 68, 68, 1221, 1222, 1226, 1225, 1230, 1227, 68, 68, 1231, 68, 68, 68, 1232, 1236, 1233, 68, 1234, 68, 68, 68, 1237, 1240, 68, 1229, 68, 1239, 1243, 68, 68, 68, 1235, 68, 1244, 68, 1241, 1245, 1238, 68, 1247, 1249, 1246, 1248, 68, 68, 1242, 68, 68, 68, 68, 68, 1252, 1250, 1253, 68, 68, 1251, 68, 68, 68, 1254, 1257, 68, 1258, 1262, 68, 1256, 68, 1261, 1255, 68, 1263, 68, 1259, 1264, 68, 1266, 68, 68, 1260, 1269, 68, 1267, 1268, 68, 68, 1265, 1272, 68, 1274, 68, 68, 1270, 68, 1273, 68, 1275, 68, 1271, 1279, 68, 68, 1278, 1276, 68, 68, 68, 68, 68, 1281, 68, 1277, 1284, 68, 1287, 68, 68, 68, 68, 68, 1288, 1283, 1290, 68, 1286, 1289, 1280, 68, 1282, 68, 68, 1285, 68, 68, 1299, 68, 68, 68, 1292, 1300, 68, 68, 1297, 68, 1291, 1315, 1293, 68, 1295, 1383, 1301, 1294, 68, 1296, 1298, 1302, 1303, 68, 1304, 1305, 68, 1306, 68, 1308, 68, 1307, 1309, 68, 1310, 68, 68, 1312, 68, 1313, 68, 68, 1316, 68, 68, 1318, 68, 68, 68, 68, 68, 1322, 1321, 68, 1320, 1311, 1324, 68, 1326, 68, 1314, 68, 68, 1317, 68, 1319, 1323, 68, 1329, 1330, 68, 68, 1325, 1332, 68, 68, 1334, 1328, 68, 68, 68, 68, 68, 68, 1327, 1337, 1331, 1335, 68, 68, 68, 1336, 68, 1341, 68, 1339, 68, 1333, 1343, 68, 1347, 1344, 1346, 68, 1340, 1342, 1338, 68, 1345, 68, 1350, 1351, 1349, 68, 1352, 68, 68, 68, 68, 1348, 68, 1357, 1353, 68, 68, 68, 1355, 68, 1358, 68, 1354, 68, 1356, 1360, 68, 1361, 68, 68, 1363, 1362, 68, 1364, 68, 1367, 1359, 1365, 1366, 68, 68, 68, 68, 1368, 1369, 1370, 68, 1371, 68, 68, 68, 1377, 1372, 1374, 1373, 1376, 68, 68, 68, 68, 1381, 68, 68, 1378, 1380, 68, 68, 1384, 1375, 1382, 1385, 68, 68, 68, 1379, 1387, 68, 1386, 1388, 68, 1389, 68, 1390, 68, 1392, 68, 1394, 68, 1393, 1391, 1395, 68, 68, 1398, 68, 68, 68, 68, 68, 1400, 68, 1399, 1403, 68, 68, 1402, 68, 1397, 68, 1396, 1404, 68, 1401, 1405, 68, 68, 1406, 68, 68, 68, 1408, 1413, 68, 1411, 1407, 68, 68, 1409, 68, 1410, 68, 68, 68, 68, 1414, 68, 68, 68, 68, 1412, 68, 1422, 1423, 1417, 1424, 68, 1419, 68, 1416, 1425, 68, 1420, 1415, 68, 68, 1418, 68, 1421, 1426, 68, 68, 1433, 1428, 1430, 68, 1427, 1434, 68, 68, 68, 68, 1436, 68, 1429, 68, 68, 1431, 1432, 1435, 1442, 68, 1443, 68, 1437, 68, 68, 68, 68, 1438, 68, 1439, 1440, 68, 1441, 68, 1451, 68, 1450, 68, 1445, 1444, 68, 68, 68, 1446, 68, 1454, 1447, 1448, 1455, 68, 68, 1449, 1452, 1457, 68, 1456, 1459, 68, 1453, 1460, 68, 68, 1461, 1458, 68, 68, 68, 68, 68, 68, 1464, 1465, 1462, 1463, 68, 68, 1467, 68, 1474, 1469, 1470, 1472, 68, 68, 1468, 68, 1466, 1473, 68, 68, 1475, 68, 1471, 1476, 68, 1477, 68, 1478, 1481, 68, 68, 68, 68, 1479, 68, 1480, 1482, 68, 68, 1483, 68, 1486, 1484, 68, 68, 68, 1485, 68, 1491, 68, 68, 68, 68, 1489, 1490, 68, 1488, 68, 1487, 1492, 1496, 68, 1498, 68, 68, 68, 1497, 68, 1493, 68, 1500, 1494, 1499, 68, 1495, 68, 1501, 68, 1504, 1505, 68, 68, 1502, 68, 1507, 1730, 68, 68, 1503, 1508, 1509, 68, 1510, 68, 68, 1506, 1511, 68, 1514, 1512, 1517, 1513, 68, 68, 1515, 68, 1516, 1518, 68, 68, 68, 68, 68, 68, 1521, 1525, 68, 68, 68, 68, 1529, 68, 68, 1530, 68, 1519, 1520, 1524, 1522, 1527, 68, 1523, 68, 68, 68, 1532, 1526, 1528, 68, 68, 1531, 68, 1538, 1535, 68, 1540, 68, 68, 68, 68, 68, 1541, 1533, 1730, 68, 68, 68, 1542, 1536, 1534, 68, 1537, 1539, 1543, 1544, 1545, 1546, 68, 68, 1549, 68, 68, 1548, 68, 1547, 68, 1551, 68, 68, 1550, 1553, 1557, 1552, 1555, 68, 68, 68, 1559, 68, 68, 68, 1562, 68, 1563, 68, 1556, 1554, 68, 68, 68, 68, 68, 68, 1564, 1560, 1561, 1568, 1567, 68, 1558, 1570, 68, 68, 1565, 1572, 68, 68, 1566, 68, 1574, 68, 1571, 68, 1573, 68, 1576, 1569, 68, 1575, 68, 1577, 1579, 68, 68, 1578, 1580, 68, 1584, 68, 1582, 68, 1581, 68, 68, 68, 1585, 1589, 1587, 68, 1583, 68, 68, 1592, 68, 1593, 68, 68, 1598, 68, 1730, 1586, 1595, 1588, 1594, 1596, 1590, 1591, 68, 1599, 68, 1600, 68, 1597, 68, 1602, 68, 68, 1603, 1601, 1604, 68, 68, 1606, 68, 68, 68, 1609, 68, 68, 1607, 1605, 68, 68, 1608, 68, 68, 1610, 1611, 68, 68, 1612, 68, 68, 1620, 68, 68, 1618, 1621, 68, 1622, 68, 1614, 1613, 1623, 68, 1615, 1616, 68, 1626, 68, 1617, 1624, 1619, 68, 1625, 68, 1629, 68, 1630, 68, 68, 68, 68, 68, 68, 68, 1637, 68, 1627, 1634, 1635, 1638, 68, 1628, 1639, 68, 1632, 1640, 68, 68, 68, 1642, 1636, 1633, 1643, 1631, 68, 68, 68, 68, 68, 1641, 1645, 68, 68, 68, 68, 68, 1649, 68, 1644, 68, 68, 68, 68, 1657, 68, 1646, 1647, 1648, 1651, 68, 1658, 68, 1653, 1650, 1659, 1654, 1652, 1656, 68, 68, 68, 1663, 68, 1660, 68, 1655, 68, 1667, 1668, 68, 68, 68, 68, 68, 1662, 1665, 1661, 68, 1664, 68, 68, 1666, 68, 1669, 1670, 68, 68, 68, 1730, 1671, 68, 1672, 1677, 1674, 68, 1675, 68, 1680, 1673, 1678, 68, 68, 68, 68, 1676, 1679, 1681, 1682, 1683, 1684, 1685, 1686, 68, 68, 68, 68, 1690, 68, 68, 1688, 1687, 68, 68, 68, 68, 68, 68, 1693, 68, 1697, 68, 1692, 68, 1689, 68, 1698, 1691, 1702, 1696, 68, 1700, 1703, 1694, 1695, 68, 1699, 68, 1701, 1705, 68, 68, 68, 68, 68, 68, 68, 68, 1706, 1707, 1709, 1711, 1712, 68, 1704, 68, 68, 1715, 68, 68, 68, 1718, 1708, 1710, 1719, 68, 68, 1721, 68, 1722, 68, 68, 1713, 1720, 1714, 68, 1724, 1716, 1717, 68, 68, 68, 1723, 1730, 1725, 1728, 68, 1729, 68, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1726, 1727, 40, 40, 40, 40, 40, 40, 40, 45, 45, 45, 45, 45, 45, 45, 50, 50, 50, 50, 50, 50, 50, 56, 56, 56, 56, 56, 56, 56, 61, 61, 61, 61, 61, 61, 61, 71, 71, 1730, 71, 71, 71, 71, 124, 124, 1730, 1730, 1730, 124, 124, 126, 126, 1730, 1730, 126, 1730, 126, 128, 1730, 1730, 1730, 1730, 1730, 128, 131, 131, 1730, 1730, 1730, 131, 131, 133, 1730, 1730, 1730, 1730, 1730, 133, 135, 135, 1730, 135, 135, 135, 135, 72, 72, 1730, 72, 72, 72, 72, 13, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730 } ; static yyconst flex_int16_t yy_chk[3471] = { 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, 3, 3, 3, 4, 4, 4, 49, 5, 5, 49, 3, 5, 15, 4, 6, 6, 15, 5, 6, 9, 9, 9, 153, 33, 6, 7, 7, 7, 7, 9, 7, 10, 10, 10, 44, 44, 7, 8, 8, 8, 8, 10, 8, 21, 33, 153, 21, 21, 8, 11, 11, 11, 11, 11, 11, 1736, 20, 29, 20, 20, 11, 20, 29, 24, 21, 25, 20, 24, 28, 11, 12, 12, 12, 12, 12, 12, 74, 22, 22, 74, 25, 12, 69, 28, 30, 22, 69, 24, 26, 26, 12, 19, 22, 19, 19, 66, 19, 26, 644, 30, 27, 19, 19, 23, 27, 60, 60, 27, 23, 66, 31, 31, 23, 76, 27, 23, 27, 23, 23, 31, 75, 32, 32, 34, 75, 31, 32, 37, 37, 31, 37, 36, 34, 76, 35, 35, 36, 133, 34, 35, 38, 34, 32, 79, 78, 37, 36, 131, 34, 35, 36, 36, 35, 90, 38, 39, 39, 79, 90, 38, 39, 55, 78, 55, 55, 63, 55, 63, 63, 65, 63, 65, 65, 83, 65, 68, 63, 68, 68, 77, 68, 80, 77, 81, 82, 68, 71, 86, 71, 71, 85, 71, 83, 80, 84, 77, 71, 71, 87, 84, 88, 81, 94, 91, 85, 89, 82, 86, 92, 89, 93, 92, 84, 97, 92, 93, 87, 91, 88, 95, 96, 94, 98, 96, 95, 99, 100, 96, 92, 99, 101, 102, 103, 100, 104, 105, 98, 97, 102, 105, 106, 107, 108, 101, 95, 103, 107, 109, 110, 111, 107, 112, 114, 113, 104, 117, 115, 114, 106, 116, 116, 110, 108, 118, 111, 119, 122, 109, 115, 123, 112, 113, 120, 117, 120, 188, 121, 188, 122, 118, 116, 121, 125, 125, 140, 127, 119, 123, 127, 129, 137, 129, 129, 137, 129, 120, 132, 132, 134, 140, 134, 134, 135, 134, 135, 135, 138, 135, 141, 139, 142, 138, 143, 135, 139, 144, 141, 145, 151, 146, 147, 130, 145, 145, 146, 147, 148, 143, 148, 142, 150, 150, 154, 152, 155, 144, 154, 151, 152, 155, 156, 157, 160, 159, 162, 158, 163, 160, 148, 149, 164, 161, 161, 149, 156, 164, 157, 158, 149, 169, 158, 159, 163, 149, 162, 165, 165, 166, 167, 149, 149, 161, 166, 167, 168, 176, 170, 171, 166, 172, 169, 170, 171, 168, 172, 173, 174, 178, 175, 181, 173, 177, 179, 174, 175, 176, 180, 177, 182, 184, 179, 180, 183, 186, 181, 185, 187, 183, 186, 178, 189, 190, 191, 192, 193, 193, 190, 189, 182, 198, 128, 184, 194, 185, 185, 192, 187, 194, 195, 197, 196, 191, 196, 195, 199, 200, 203, 204, 198, 201, 200, 197, 199, 202, 201, 194, 205, 206, 202, 196, 207, 203, 212, 207, 205, 204, 208, 208, 209, 210, 210, 209, 211, 211, 213, 216, 214, 215, 212, 214, 217, 215, 206, 218, 216, 217, 219, 219, 220, 213, 221, 222, 223, 220, 224, 221, 225, 218, 226, 226, 227, 228, 229, 231, 230, 228, 234, 233, 231, 225, 223, 222, 235, 236, 232, 224, 230, 232, 227, 233, 229, 235, 237, 234, 238, 239, 234, 239, 239, 240, 240, 242, 243, 244, 236, 237, 238, 241, 245, 245, 241, 246, 244, 247, 247, 248, 246, 243, 242, 249, 250, 242, 251, 252, 253, 255, 256, 251, 258, 253, 248, 249, 254, 258, 260, 254, 261, 254, 262, 255, 250, 257, 256, 252, 259, 256, 263, 256, 264, 259, 257, 264, 265, 262, 267, 260, 261, 269, 270, 271, 263, 272, 126, 268, 276, 274, 265, 264, 266, 267, 266, 266, 268, 275, 271, 279, 277, 270, 269, 276, 266, 272, 266, 266, 266, 273, 280, 266, 274, 278, 273, 277, 281, 275, 278, 279, 282, 281, 283, 285, 280, 284, 284, 283, 284, 286, 287, 290, 289, 288, 289, 290, 282, 291, 292, 293, 294, 301, 301, 285, 297, 286, 287, 288, 293, 294, 296, 295, 292, 297, 296, 291, 295, 298, 299, 300, 302, 293, 298, 300, 299, 302, 303, 304, 304, 305, 306, 307, 308, 309, 305, 310, 310, 309, 311, 303, 307, 312, 316, 311, 308, 313, 313, 315, 315, 317, 318, 306, 319, 321, 322, 323, 324, 317, 328, 318, 326, 325, 312, 316, 319, 324, 325, 327, 326, 323, 329, 332, 327, 321, 322, 330, 328, 331, 333, 334, 335, 331, 337, 333, 339, 340, 332, 338, 340, 339, 341, 349, 329, 343, 339, 334, 330, 342, 342, 335, 336, 336, 337, 338, 344, 344, 336, 345, 336, 346, 341, 348, 347, 349, 350, 351, 336, 352, 343, 350, 353, 346, 345, 355, 351, 354, 336, 347, 355, 354, 348, 356, 357, 358, 359, 353, 352, 360, 360, 361, 362, 363, 359, 356, 363, 364, 358, 366, 368, 124, 357, 361, 362, 365, 367, 375, 365, 371, 367, 367, 364, 368, 371, 366, 369, 369, 366, 370, 370, 372, 372, 373, 373, 374, 376, 378, 375, 377, 374, 376, 378, 377, 379, 380, 381, 382, 379, 383, 380, 384, 382, 387, 383, 385, 386, 386, 385, 388, 67, 390, 399, 385, 389, 384, 381, 385, 399, 389, 390, 387, 391, 388, 392, 391, 393, 394, 392, 395, 396, 393, 397, 398, 395, 403, 400, 404, 398, 400, 394, 455, 401, 402, 397, 401, 396, 405, 402, 455, 392, 404, 405, 403, 406, 407, 409, 406, 408, 410, 407, 411, 408, 408, 410, 412, 415, 413, 412, 409, 411, 413, 413, 414, 416, 414, 416, 417, 418, 419, 420, 422, 421, 412, 423, 415, 421, 424, 425, 426, 422, 427, 428, 428, 426, 417, 418, 429, 419, 423, 420, 429, 430, 425, 431, 424, 432, 433, 434, 431, 427, 435, 436, 430, 438, 439, 437, 436, 435, 438, 439, 434, 432, 437, 440, 441, 433, 442, 444, 443, 447, 445, 441, 444, 445, 446, 442, 448, 448, 446, 449, 453, 440, 443, 452, 451, 448, 454, 452, 449, 451, 447, 456, 453, 457, 463, 460, 466, 467, 468, 472, 473, 469, 468, 467, 454, 466, 469, 471, 478, 456, 460, 463, 471, 474, 475, 475, 474, 472, 457, 458, 476, 477, 477, 478, 458, 473, 482, 476, 458, 479, 479, 458, 480, 483, 481, 480, 484, 487, 458, 481, 485, 458, 470, 470, 470, 482, 470, 488, 485, 470, 486, 486, 487, 483, 470, 484, 497, 489, 490, 490, 470, 470, 489, 491, 492, 488, 494, 493, 491, 492, 493, 495, 494, 496, 497, 498, 499, 500, 500, 495, 498, 496, 501, 499, 502, 503, 505, 507, 506, 502, 501, 506, 508, 508, 509, 505, 510, 512, 513, 510, 514, 507, 515, 513, 503, 516, 517, 510, 518, 509, 519, 520, 521, 524, 519, 522, 523, 518, 512, 524, 525, 514, 515, 526, 522, 530, 517, 516, 527, 520, 523, 521, 529, 527, 528, 531, 529, 526, 532, 528, 525, 533, 537, 532, 530, 534, 534, 531, 535, 536, 538, 539, 536, 535, 540, 543, 539, 541, 541, 545, 537, 546, 533, 538, 542, 542, 547, 544, 548, 550, 543, 544, 551, 550, 540, 553, 552, 554, 545, 555, 547, 556, 554, 571, 571, 546, 61, 551, 548, 549, 553, 558, 549, 555, 549, 556, 562, 559, 549, 557, 549, 552, 559, 557, 560, 549, 558, 561, 563, 560, 549, 565, 559, 564, 567, 568, 565, 562, 569, 564, 568, 561, 563, 566, 566, 570, 567, 573, 572, 566, 574, 566, 569, 572, 575, 573, 577, 570, 576, 576, 577, 579, 580, 581, 574, 580, 579, 582, 584, 566, 583, 587, 585, 575, 586, 583, 588, 589, 590, 594, 582, 588, 581, 586, 591, 595, 592, 584, 585, 596, 587, 592, 590, 591, 597, 598, 599, 589, 594, 597, 598, 599, 600, 595, 596, 601, 601, 602, 607, 604, 608, 600, 602, 604, 604, 605, 605, 606, 609, 605, 606, 610, 611, 614, 610, 608, 612, 613, 607, 614, 615, 612, 613, 616, 617, 617, 618, 619, 609, 616, 621, 620, 622, 611, 620, 618, 615, 623, 625, 624, 627, 626, 629, 625, 628, 619, 626, 628, 621, 630, 631, 622, 624, 629, 632, 631, 633, 623, 627, 632, 635, 630, 634, 634, 636, 637, 638, 639, 641, 642, 638, 633, 640, 647, 645, 646, 674, 637, 636, 635, 674, 640, 652, 656, 648, 639, 649, 641, 645, 648, 646, 649, 650, 647, 642, 651, 652, 650, 653, 654, 651, 655, 656, 657, 654, 658, 659, 659, 660, 661, 662, 666, 653, 663, 663, 661, 655, 664, 657, 668, 665, 671, 664, 669, 658, 666, 660, 665, 667, 670, 662, 667, 669, 672, 670, 673, 675, 668, 672, 678, 671, 676, 677, 679, 680, 675, 678, 681, 682, 684, 685, 686, 683, 690, 673, 679, 676, 677, 683, 689, 686, 690, 688, 680, 684, 691, 682, 688, 681, 692, 685, 693, 694, 689, 692, 693, 693, 695, 695, 696, 697, 698, 699, 699, 705, 691, 698, 706, 700, 697, 701, 694, 696, 700, 703, 701, 702, 702, 705, 704, 712, 707, 708, 703, 704, 706, 707, 708, 709, 711, 710, 712, 714, 709, 710, 715, 714, 716, 711, 718, 719, 723, 721, 711, 717, 711, 720, 711, 717, 717, 715, 722, 725, 718, 720, 716, 721, 724, 724, 719, 726, 726, 728, 729, 730, 728, 723, 725, 729, 722, 731, 731, 732, 733, 733, 734, 735, 735, 736, 737, 734, 738, 739, 730, 737, 740, 740, 739, 741, 738, 742, 56, 732, 743, 745, 750, 742, 746, 736, 745, 743, 749, 746, 747, 748, 751, 741, 753, 747, 748, 749, 752, 752, 754, 750, 755, 751, 756, 757, 761, 755, 758, 759, 760, 760, 762, 763, 753, 765, 764, 766, 756, 51, 758, 764, 766, 754, 756, 757, 761, 759, 768, 777, 769, 763, 768, 768, 770, 772, 775, 762, 765, 769, 773, 771, 770, 771, 774, 773, 776, 775, 774, 772, 778, 779, 780, 781, 782, 777, 779, 783, 782, 784, 785, 786, 787, 788, 789, 776, 791, 792, 778, 789, 780, 791, 790, 781, 785, 783, 786, 787, 784, 790, 793, 794, 788, 796, 795, 792, 797, 798, 799, 793, 795, 797, 798, 799, 800, 800, 794, 802, 802, 803, 804, 805, 806, 807, 796, 804, 809, 807, 807, 808, 808, 810, 811, 812, 813, 805, 815, 803, 814, 819, 813, 806, 816, 814, 817, 809, 818, 820, 846, 821, 810, 846, 812, 819, 823, 815, 822, 822, 811, 823, 825, 816, 824, 817, 821, 818, 824, 826, 820, 827, 829, 827, 833, 825, 831, 827, 826, 830, 830, 831, 832, 834, 836, 849, 832, 850, 834, 858, 827, 838, 829, 858, 833, 840, 838, 839, 839, 848, 840, 850, 836, 842, 842, 844, 844, 847, 847, 852, 849, 851, 853, 853, 848, 854, 851, 855, 855, 856, 857, 859, 860, 863, 852, 862, 866, 860, 864, 864, 867, 857, 869, 865, 871, 854, 868, 863, 865, 871, 859, 856, 870, 862, 870, 868, 866, 873, 872, 874, 867, 875, 869, 872, 874, 876, 876, 877, 879, 880, 880, 881, 888, 877, 882, 875, 50, 873, 883, 886, 884, 883, 885, 881, 883, 884, 887, 885, 886, 892, 889, 887, 879, 889, 882, 890, 883, 888, 891, 891, 890, 893, 894, 895, 896, 897, 898, 892, 895, 896, 900, 898, 899, 899, 901, 900, 902, 903, 905, 904, 893, 906, 894, 908, 907, 909, 910, 913, 897, 907, 905, 914, 901, 904, 906, 912, 902, 903, 914, 915, 912, 916, 913, 908, 922, 909, 924, 910, 915, 919, 919, 915, 920, 921, 923, 920, 929, 916, 921, 925, 922, 926, 927, 923, 930, 924, 931, 927, 925, 932, 926, 925, 928, 928, 933, 934, 929, 930, 935, 935, 936, 937, 939, 932, 931, 940, 937, 938, 938, 943, 942, 939, 944, 934, 939, 942, 936, 944, 945, 933, 946, 947, 938, 940, 945, 948, 947, 943, 949, 953, 954, 949, 955, 952, 956, 958, 957, 949, 948, 956, 946, 952, 953, 960, 966, 961, 969, 967, 954, 961, 962, 955, 957, 958, 963, 962, 964, 965, 971, 963, 969, 964, 967, 960, 968, 968, 965, 966, 970, 972, 971, 973, 974, 975, 976, 970, 977, 974, 978, 978, 979, 972, 977, 979, 982, 975, 980, 980, 983, 983, 973, 984, 976, 982, 985, 986, 987, 988, 990, 985, 989, 991, 992, 984, 986, 989, 994, 990, 987, 993, 993, 994, 988, 995, 996, 997, 999, 992, 998, 998, 990, 991, 1000, 1000, 1001, 1001, 1002, 1003, 1004, 1007, 1002, 1004, 1003, 996, 995, 997, 999, 1006, 1008, 1009, 1010, 1010, 1006, 1008, 1011, 1011, 1012, 1007, 1013, 1014, 1015, 1012, 1016, 1018, 1017, 1019, 1019, 1020, 1021, 1021, 1013, 1013, 1013, 1026, 1009, 1022, 1024, 1013, 1017, 1014, 1015, 1029, 1016, 1027, 1018, 1024, 1025, 1025, 1026, 1028, 1027, 1030, 1030, 1020, 1031, 1022, 1032, 1034, 1028, 1035, 1040, 1036, 1034, 1037, 1035, 1038, 1038, 1029, 1039, 1040, 1037, 1041, 1032, 1039, 1042, 1043, 1044, 1045, 1043, 1048, 1031, 1036, 1046, 1046, 1047, 1049, 1042, 1050, 1051, 1052, 1052, 1041, 1055, 1050, 1044, 1053, 1056, 1051, 1048, 1047, 1049, 1054, 1054, 1045, 1057, 1061, 1053, 1058, 1058, 1057, 1056, 1053, 1059, 1055, 1060, 1062, 1059, 1059, 1063, 1060, 1064, 1065, 1066, 1063, 1067, 1065, 1069, 1062, 1068, 1071, 1070, 1061, 1064, 1068, 1066, 1070, 1073, 1074, 1074, 1073, 1077, 1071, 1075, 1075, 1076, 1076, 1078, 1080, 1069, 1067, 1079, 1083, 1078, 1080, 1081, 1079, 1083, 1085, 1087, 1089, 1077, 1088, 1088, 1081, 1090, 1091, 1092, 1093, 1096, 1085, 1087, 1093, 1094, 1090, 1099, 1095, 1106, 1094, 45, 1089, 1095, 1100, 1096, 1091, 1101, 1092, 1098, 1098, 1103, 1103, 1100, 1106, 1099, 1101, 1107, 1108, 1109, 1111, 1098, 1111, 1108, 1110, 1110, 1112, 1112, 1114, 1115, 1117, 1107, 1116, 1116, 1118, 1114, 1109, 40, 1119, 1117, 1120, 1121, 1122, 1123, 1124, 1127, 1126, 1127, 1128, 1115, 1119, 1126, 1120, 1121, 1131, 1118, 1129, 1122, 1132, 1132, 1133, 1138, 1134, 1123, 1124, 1129, 1128, 1134, 1131, 1135, 1136, 1135, 1137, 1139, 1144, 1136, 1140, 1137, 1141, 1138, 1143, 1140, 1146, 1141, 1145, 1145, 1133, 1147, 1144, 1148, 1149, 1151, 1152, 1139, 1148, 1149, 1150, 1146, 1150, 1143, 1153, 1152, 1153, 1151, 1152, 1154, 1155, 1147, 1157, 1160, 1158, 1161, 1162, 1157, 1154, 1158, 1168, 1164, 1155, 1166, 1167, 1169, 1160, 1164, 1171, 1166, 1170, 1170, 1162, 1173, 1169, 1161, 1176, 1171, 1174, 1167, 1172, 1172, 1174, 1175, 1179, 1168, 1177, 1177, 1175, 1176, 1178, 1183, 1173, 1182, 1182, 1184, 1184, 1186, 1178, 1187, 1183, 1185, 1185, 1188, 1179, 1189, 1189, 1191, 1188, 1186, 1192, 1193, 1194, 1195, 1197, 1192, 1200, 1187, 1195, 1196, 1198, 1198, 1199, 1201, 1202, 1203, 1199, 1194, 1201, 1205, 1197, 1200, 1191, 1206, 1193, 1207, 1209, 1196, 1208, 1210, 1212, 1212, 1213, 1214, 1203, 1213, 1229, 1215, 1209, 1216, 1202, 1229, 1205, 1304, 1207, 1304, 1214, 1206, 1220, 1208, 1210, 1215, 1216, 1217, 1217, 1218, 1218, 1219, 1219, 1221, 1221, 1220, 1222, 1222, 1223, 1223, 1224, 1225, 1225, 1226, 1226, 1227, 1230, 1230, 1231, 1232, 1232, 1233, 1234, 1235, 1236, 1236, 1235, 1238, 1234, 1224, 1237, 1237, 1239, 1239, 1227, 1241, 1242, 1231, 1243, 1233, 1236, 1245, 1243, 1244, 1244, 1247, 1238, 1246, 1246, 1248, 1248, 1242, 1249, 1250, 1251, 1252, 1253, 1254, 1241, 1251, 1245, 1249, 1255, 1257, 1256, 1250, 1258, 1255, 1259, 1253, 1261, 1247, 1257, 1263, 1261, 1258, 1260, 1265, 1254, 1256, 1252, 1260, 1259, 1266, 1266, 1267, 1265, 1268, 1268, 1270, 1267, 1271, 1275, 1263, 1273, 1275, 1268, 1276, 1277, 1281, 1271, 1285, 1276, 1283, 1270, 1284, 1273, 1278, 1278, 1280, 1280, 1282, 1282, 1281, 1292, 1283, 1286, 1286, 1277, 1284, 1285, 1288, 1293, 1289, 1291, 1288, 1289, 1290, 1290, 1291, 1295, 1294, 1296, 1297, 1292, 1294, 1293, 1296, 1297, 1298, 1300, 1301, 1302, 1303, 1322, 1298, 1301, 1302, 1307, 1307, 1295, 1303, 1311, 1311, 1314, 1321, 1300, 1315, 1315, 1314, 1317, 1317, 1319, 1320, 1320, 1323, 1322, 1319, 1325, 1325, 1323, 1321, 1327, 1328, 1329, 1331, 1331, 1327, 1333, 1334, 1335, 1334, 1336, 1333, 1337, 1337, 1340, 1336, 1341, 1329, 1342, 1328, 1338, 1338, 1335, 1339, 1339, 1343, 1340, 1344, 1345, 1346, 1342, 1347, 1347, 1345, 1341, 1348, 1349, 1343, 1350, 1344, 1351, 1352, 1353, 1354, 1348, 1355, 1356, 1357, 1362, 1346, 1364, 1356, 1357, 1351, 1358, 1358, 1353, 1363, 1350, 1359, 1359, 1354, 1349, 1365, 1366, 1352, 1367, 1355, 1362, 1368, 1369, 1369, 1364, 1366, 1373, 1363, 1371, 1371, 1374, 1372, 1375, 1373, 1376, 1365, 1378, 1377, 1367, 1368, 1372, 1379, 1379, 1380, 1381, 1374, 1382, 1383, 1380, 1384, 1375, 1386, 1376, 1377, 1389, 1378, 1390, 1391, 1391, 1390, 1392, 1382, 1381, 1393, 1395, 1397, 1383, 1400, 1395, 1384, 1386, 1396, 1396, 1407, 1389, 1392, 1399, 1399, 1397, 1401, 1401, 1393, 1402, 1402, 1406, 1406, 1400, 1408, 1409, 1410, 1411, 1412, 1414, 1409, 1410, 1407, 1408, 1415, 1416, 1412, 1417, 1420, 1415, 1416, 1418, 1418, 1420, 1414, 1421, 1411, 1419, 1419, 1429, 1421, 1430, 1417, 1422, 1422, 1423, 1423, 1426, 1429, 1427, 1428, 1431, 1426, 1427, 1433, 1428, 1430, 1432, 1435, 1431, 1436, 1435, 1432, 1437, 1438, 1439, 1433, 1440, 1440, 1443, 1441, 1444, 14, 1438, 1439, 1445, 1437, 1447, 1436, 1441, 1446, 1446, 1448, 1448, 1449, 1450, 1447, 1452, 1443, 1453, 1450, 1444, 1449, 1454, 1445, 1461, 1452, 1456, 1456, 1458, 1458, 1467, 1453, 1462, 1462, 13, 1463, 1468, 1454, 1463, 1464, 1464, 1465, 1465, 1474, 1461, 1466, 1466, 1469, 1467, 1474, 1468, 1471, 1469, 1470, 1470, 1471, 1475, 1478, 1479, 1480, 1481, 1475, 1482, 1479, 1483, 1483, 1484, 1486, 1487, 1487, 1485, 1488, 1488, 1489, 1478, 1478, 1482, 1480, 1485, 1490, 1481, 1491, 1492, 1493, 1490, 1484, 1486, 1494, 1497, 1489, 1495, 1497, 1493, 1499, 1500, 1500, 1501, 1502, 1508, 1503, 1501, 1491, 0, 1507, 1504, 1506, 1502, 1494, 1492, 1518, 1495, 1499, 1503, 1504, 1506, 1507, 1512, 1513, 1513, 1514, 1516, 1512, 1517, 1508, 1519, 1516, 1521, 1520, 1514, 1518, 1522, 1517, 1520, 1523, 1526, 1522, 1524, 1524, 1529, 1527, 1528, 1528, 1529, 1530, 1521, 1519, 1531, 1532, 1533, 1535, 1534, 1537, 1530, 1526, 1527, 1534, 1533, 1542, 1523, 1536, 1536, 1545, 1531, 1538, 1538, 1544, 1532, 1539, 1541, 1541, 1537, 1548, 1539, 1543, 1543, 1535, 1549, 1542, 1550, 1544, 1546, 1546, 1552, 1545, 1547, 1547, 1551, 1551, 1549, 1553, 1548, 1554, 1555, 1561, 1552, 1556, 1554, 1557, 1550, 1564, 1556, 1558, 1558, 1560, 1560, 1563, 1566, 1566, 0, 1553, 1563, 1555, 1561, 1564, 1557, 1557, 1565, 1567, 1567, 1568, 1568, 1565, 1569, 1571, 1571, 1573, 1573, 1569, 1575, 1575, 1576, 1577, 1577, 1578, 1581, 1582, 1582, 1586, 1578, 1576, 1583, 1585, 1581, 1587, 1588, 1583, 1585, 1589, 1590, 1586, 1591, 1594, 1595, 1595, 1597, 1591, 1596, 1596, 1597, 1605, 1588, 1587, 1601, 1601, 1589, 1589, 1603, 1607, 1607, 1590, 1603, 1594, 1608, 1605, 1610, 1611, 1611, 1612, 1612, 1613, 1614, 1615, 1618, 1616, 1617, 1619, 1619, 1608, 1616, 1617, 1622, 1622, 1610, 1624, 1624, 1614, 1625, 1625, 1627, 1628, 1628, 1618, 1615, 1631, 1613, 1632, 1633, 1634, 1631, 1635, 1627, 1633, 1636, 1641, 1642, 1645, 1643, 1641, 1644, 1632, 1646, 1647, 1650, 1648, 1649, 1649, 1634, 1635, 1636, 1643, 1651, 1650, 1653, 1645, 1642, 1651, 1646, 1644, 1648, 1652, 1654, 1658, 1655, 1659, 1652, 1656, 1647, 1655, 1660, 1661, 1662, 1664, 1663, 1660, 1661, 1654, 1658, 1653, 1665, 1656, 1666, 1667, 1659, 1668, 1662, 1663, 1669, 1672, 1670, 0, 1664, 1677, 1665, 1670, 1667, 1671, 1668, 1673, 1673, 1666, 1671, 1681, 1674, 1675, 1676, 1669, 1672, 1674, 1675, 1676, 1677, 1678, 1679, 1679, 1680, 1682, 1678, 1683, 1684, 1685, 1681, 1680, 1683, 1687, 1688, 1689, 1690, 1693, 1687, 1691, 1691, 1692, 1685, 1696, 1682, 1697, 1692, 1684, 1696, 1690, 1694, 1694, 1697, 1688, 1689, 1698, 1693, 1695, 1695, 1699, 1699, 1700, 1701, 1702, 1704, 1703, 1706, 1707, 1700, 1701, 1703, 1706, 1707, 1708, 1698, 1709, 1710, 1710, 1711, 1712, 1713, 1713, 1702, 1704, 1714, 1714, 1715, 1716, 1716, 1717, 1717, 1720, 1708, 1715, 1709, 1718, 1720, 1711, 1712, 1723, 1724, 1725, 1718, 0, 1723, 1726, 1726, 1727, 1727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1724, 1725, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1737, 1737, 0, 1737, 1737, 1737, 1737, 1738, 1738, 0, 0, 0, 1738, 1738, 1739, 1739, 0, 0, 1739, 0, 1739, 1740, 0, 0, 0, 0, 0, 1740, 1741, 1741, 0, 0, 0, 1741, 1741, 1742, 0, 0, 0, 0, 0, 1742, 1743, 1743, 0, 1743, 1743, 1743, 1743, 1744, 1744, 0, 1744, 1744, 1744, 1744, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730 } ; 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. * */ #include #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(strlen(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)); 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 177 "./util/configlexer.lex" #ifndef YY_NO_UNPUT #define YY_NO_UNPUT 1 #endif #ifndef YY_NO_INPUT #define YY_NO_INPUT 1 #endif #line 1968 "" #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 ); yy_size_t yyget_leng (void ); char *yyget_text (void ); int yyget_lineno (void ); void yyset_lineno (int line_number ); /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap (void ); #else extern int yywrap (void ); #endif #endif #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * ); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void ); #else static int input (void ); #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #define YY_READ_BUF_SIZE 8192 #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ size_t n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else \ { \ errno=0; \ while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ }\ \ #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #endif /* end tables serialization structures and prototypes */ /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL_IS_OURS 1 extern int yylex (void); #define YY_DECL int yylex (void) #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK break; #endif #define YY_RULE_SETUP \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 197 "./util/configlexer.lex" #line 2155 "" if ( !(yy_init) ) { (yy_init) = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! (yy_start) ) (yy_start) = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_load_buffer_state( ); } while ( 1 ) /* loops until end-of-file is reached */ { (yy_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 { register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 1731 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } while ( yy_base[yy_current_state] != 3431 ); 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 198 "./util/configlexer.lex" { LEXOUT(("SP ")); /* ignore */ } YY_BREAK case 2: YY_RULE_SETUP #line 200 "./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 203 "./util/configlexer.lex" { YDVAR(0, VAR_SERVER) } YY_BREAK case 4: YY_RULE_SETUP #line 204 "./util/configlexer.lex" { YDVAR(1, VAR_NUM_THREADS) } YY_BREAK case 5: YY_RULE_SETUP #line 205 "./util/configlexer.lex" { YDVAR(1, VAR_VERBOSITY) } YY_BREAK case 6: YY_RULE_SETUP #line 206 "./util/configlexer.lex" { YDVAR(1, VAR_PORT) } YY_BREAK case 7: YY_RULE_SETUP #line 207 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_RANGE) } YY_BREAK case 8: YY_RULE_SETUP #line 208 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_PERMIT) } YY_BREAK case 9: YY_RULE_SETUP #line 209 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_AVOID) } YY_BREAK case 10: YY_RULE_SETUP #line 210 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_NUM_TCP) } YY_BREAK case 11: YY_RULE_SETUP #line 211 "./util/configlexer.lex" { YDVAR(1, VAR_INCOMING_NUM_TCP) } YY_BREAK case 12: YY_RULE_SETUP #line 212 "./util/configlexer.lex" { YDVAR(1, VAR_DO_IP4) } YY_BREAK case 13: YY_RULE_SETUP #line 213 "./util/configlexer.lex" { YDVAR(1, VAR_DO_IP6) } YY_BREAK case 14: YY_RULE_SETUP #line 214 "./util/configlexer.lex" { YDVAR(1, VAR_DO_UDP) } YY_BREAK case 15: YY_RULE_SETUP #line 215 "./util/configlexer.lex" { YDVAR(1, VAR_DO_TCP) } YY_BREAK case 16: YY_RULE_SETUP #line 216 "./util/configlexer.lex" { YDVAR(1, VAR_TCP_UPSTREAM) } YY_BREAK case 17: YY_RULE_SETUP #line 217 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 18: YY_RULE_SETUP #line 218 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 19: YY_RULE_SETUP #line 219 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 20: YY_RULE_SETUP #line 220 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 21: YY_RULE_SETUP #line 221 "./util/configlexer.lex" { YDVAR(1, VAR_DO_DAEMONIZE) } YY_BREAK case 22: YY_RULE_SETUP #line 222 "./util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 23: YY_RULE_SETUP #line 223 "./util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 24: YY_RULE_SETUP #line 224 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_INTERFACE) } YY_BREAK case 25: YY_RULE_SETUP #line 225 "./util/configlexer.lex" { YDVAR(1, VAR_INTERFACE_AUTOMATIC) } YY_BREAK case 26: YY_RULE_SETUP #line 226 "./util/configlexer.lex" { YDVAR(1, VAR_SO_RCVBUF) } YY_BREAK case 27: YY_RULE_SETUP #line 227 "./util/configlexer.lex" { YDVAR(1, VAR_SO_SNDBUF) } YY_BREAK case 28: YY_RULE_SETUP #line 228 "./util/configlexer.lex" { YDVAR(1, VAR_SO_REUSEPORT) } YY_BREAK case 29: YY_RULE_SETUP #line 229 "./util/configlexer.lex" { YDVAR(1, VAR_IP_TRANSPARENT) } YY_BREAK case 30: YY_RULE_SETUP #line 230 "./util/configlexer.lex" { YDVAR(1, VAR_CHROOT) } YY_BREAK case 31: YY_RULE_SETUP #line 231 "./util/configlexer.lex" { YDVAR(1, VAR_USERNAME) } YY_BREAK case 32: YY_RULE_SETUP #line 232 "./util/configlexer.lex" { YDVAR(1, VAR_DIRECTORY) } YY_BREAK case 33: YY_RULE_SETUP #line 233 "./util/configlexer.lex" { YDVAR(1, VAR_LOGFILE) } YY_BREAK case 34: YY_RULE_SETUP #line 234 "./util/configlexer.lex" { YDVAR(1, VAR_PIDFILE) } YY_BREAK case 35: YY_RULE_SETUP #line 235 "./util/configlexer.lex" { YDVAR(1, VAR_ROOT_HINTS) } YY_BREAK case 36: YY_RULE_SETUP #line 236 "./util/configlexer.lex" { YDVAR(1, VAR_EDNS_BUFFER_SIZE) } YY_BREAK case 37: YY_RULE_SETUP #line 237 "./util/configlexer.lex" { YDVAR(1, VAR_MSG_BUFFER_SIZE) } YY_BREAK case 38: YY_RULE_SETUP #line 238 "./util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SIZE) } YY_BREAK case 39: YY_RULE_SETUP #line 239 "./util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SLABS) } YY_BREAK case 40: YY_RULE_SETUP #line 240 "./util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SIZE) } YY_BREAK case 41: YY_RULE_SETUP #line 241 "./util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SLABS) } YY_BREAK case 42: YY_RULE_SETUP #line 242 "./util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_TTL) } YY_BREAK case 43: YY_RULE_SETUP #line 243 "./util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) } YY_BREAK case 44: YY_RULE_SETUP #line 244 "./util/configlexer.lex" { YDVAR(1, VAR_CACHE_MIN_TTL) } YY_BREAK case 45: YY_RULE_SETUP #line 245 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_HOST_TTL) } YY_BREAK case 46: YY_RULE_SETUP #line 246 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_LAME_TTL) } YY_BREAK case 47: YY_RULE_SETUP #line 247 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_SLABS) } YY_BREAK case 48: YY_RULE_SETUP #line 248 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) } YY_BREAK case 49: YY_RULE_SETUP #line 249 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) } YY_BREAK case 50: YY_RULE_SETUP #line 250 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) } YY_BREAK case 51: YY_RULE_SETUP #line 251 "./util/configlexer.lex" { YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) } YY_BREAK case 52: YY_RULE_SETUP #line 252 "./util/configlexer.lex" { YDVAR(1, VAR_JOSTLE_TIMEOUT) } YY_BREAK case 53: YY_RULE_SETUP #line 253 "./util/configlexer.lex" { YDVAR(1, VAR_DELAY_CLOSE) } YY_BREAK case 54: YY_RULE_SETUP #line 254 "./util/configlexer.lex" { YDVAR(1, VAR_TARGET_FETCH_POLICY) } YY_BREAK case 55: YY_RULE_SETUP #line 255 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) } YY_BREAK case 56: YY_RULE_SETUP #line 256 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_LARGE_QUERIES) } YY_BREAK case 57: YY_RULE_SETUP #line 257 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_GLUE) } YY_BREAK case 58: YY_RULE_SETUP #line 258 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) } YY_BREAK case 59: YY_RULE_SETUP #line 259 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) } YY_BREAK case 60: YY_RULE_SETUP #line 260 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_REFERRAL_PATH) } YY_BREAK case 61: YY_RULE_SETUP #line 261 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) } YY_BREAK case 62: YY_RULE_SETUP #line 262 "./util/configlexer.lex" { YDVAR(1, VAR_USE_CAPS_FOR_ID) } YY_BREAK case 63: YY_RULE_SETUP #line 263 "./util/configlexer.lex" { YDVAR(1, VAR_CAPS_WHITELIST) } YY_BREAK case 64: YY_RULE_SETUP #line 264 "./util/configlexer.lex" { YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) } YY_BREAK case 65: YY_RULE_SETUP #line 265 "./util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_ADDRESS) } YY_BREAK case 66: YY_RULE_SETUP #line 266 "./util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_DOMAIN) } YY_BREAK case 67: YY_RULE_SETUP #line 267 "./util/configlexer.lex" { YDVAR(1, VAR_PREFETCH_KEY) } YY_BREAK case 68: YY_RULE_SETUP #line 268 "./util/configlexer.lex" { YDVAR(1, VAR_PREFETCH) } YY_BREAK case 69: YY_RULE_SETUP #line 269 "./util/configlexer.lex" { YDVAR(0, VAR_STUB_ZONE) } YY_BREAK case 70: YY_RULE_SETUP #line 270 "./util/configlexer.lex" { YDVAR(1, VAR_NAME) } YY_BREAK case 71: YY_RULE_SETUP #line 271 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_ADDR) } YY_BREAK case 72: YY_RULE_SETUP #line 272 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_HOST) } YY_BREAK case 73: YY_RULE_SETUP #line 273 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_PRIME) } YY_BREAK case 74: YY_RULE_SETUP #line 274 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_FIRST) } YY_BREAK case 75: YY_RULE_SETUP #line 275 "./util/configlexer.lex" { YDVAR(0, VAR_FORWARD_ZONE) } YY_BREAK case 76: YY_RULE_SETUP #line 276 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_ADDR) } YY_BREAK case 77: YY_RULE_SETUP #line 277 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_HOST) } YY_BREAK case 78: YY_RULE_SETUP #line 278 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_FIRST) } YY_BREAK case 79: YY_RULE_SETUP #line 279 "./util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) } YY_BREAK case 80: YY_RULE_SETUP #line 280 "./util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) } YY_BREAK case 81: YY_RULE_SETUP #line 281 "./util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL) } YY_BREAK case 82: YY_RULE_SETUP #line 282 "./util/configlexer.lex" { YDVAR(1, VAR_HIDE_IDENTITY) } YY_BREAK case 83: YY_RULE_SETUP #line 283 "./util/configlexer.lex" { YDVAR(1, VAR_HIDE_VERSION) } YY_BREAK case 84: YY_RULE_SETUP #line 284 "./util/configlexer.lex" { YDVAR(1, VAR_IDENTITY) } YY_BREAK case 85: YY_RULE_SETUP #line 285 "./util/configlexer.lex" { YDVAR(1, VAR_VERSION) } YY_BREAK case 86: YY_RULE_SETUP #line 286 "./util/configlexer.lex" { YDVAR(1, VAR_MODULE_CONF) } YY_BREAK case 87: YY_RULE_SETUP #line 287 "./util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR) } YY_BREAK case 88: YY_RULE_SETUP #line 288 "./util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR_FILE) } YY_BREAK case 89: YY_RULE_SETUP #line 289 "./util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_FILE) } YY_BREAK case 90: YY_RULE_SETUP #line 290 "./util/configlexer.lex" { YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) } YY_BREAK case 91: YY_RULE_SETUP #line 291 "./util/configlexer.lex" { YDVAR(1, VAR_TRUSTED_KEYS_FILE) } YY_BREAK case 92: YY_RULE_SETUP #line 292 "./util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR) } YY_BREAK case 93: YY_RULE_SETUP #line 293 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_OVERRIDE_DATE) } YY_BREAK case 94: YY_RULE_SETUP #line 294 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MIN) } YY_BREAK case 95: YY_RULE_SETUP #line 295 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MAX) } YY_BREAK case 96: YY_RULE_SETUP #line 296 "./util/configlexer.lex" { YDVAR(1, VAR_BOGUS_TTL) } YY_BREAK case 97: YY_RULE_SETUP #line 297 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) } YY_BREAK case 98: YY_RULE_SETUP #line 298 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_PERMISSIVE_MODE) } YY_BREAK case 99: YY_RULE_SETUP #line 299 "./util/configlexer.lex" { YDVAR(1, VAR_IGNORE_CD_FLAG) } YY_BREAK case 100: YY_RULE_SETUP #line 300 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_LOG_LEVEL) } YY_BREAK case 101: YY_RULE_SETUP #line 301 "./util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SIZE) } YY_BREAK case 102: YY_RULE_SETUP #line 302 "./util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SLABS) } YY_BREAK case 103: YY_RULE_SETUP #line 303 "./util/configlexer.lex" { YDVAR(1, VAR_NEG_CACHE_SIZE) } YY_BREAK case 104: YY_RULE_SETUP #line 304 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) } YY_BREAK case 105: YY_RULE_SETUP #line 306 "./util/configlexer.lex" { YDVAR(1, VAR_ADD_HOLDDOWN) } YY_BREAK case 106: YY_RULE_SETUP #line 307 "./util/configlexer.lex" { YDVAR(1, VAR_DEL_HOLDDOWN) } YY_BREAK case 107: YY_RULE_SETUP #line 308 "./util/configlexer.lex" { YDVAR(1, VAR_KEEP_MISSING) } YY_BREAK case 108: YY_RULE_SETUP #line 309 "./util/configlexer.lex" { YDVAR(1, VAR_USE_SYSLOG) } YY_BREAK case 109: YY_RULE_SETUP #line 310 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_TIME_ASCII) } YY_BREAK case 110: YY_RULE_SETUP #line 311 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_QUERIES) } YY_BREAK case 111: YY_RULE_SETUP #line 312 "./util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE) } YY_BREAK case 112: YY_RULE_SETUP #line 313 "./util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA) } YY_BREAK case 113: YY_RULE_SETUP #line 314 "./util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA_PTR) } YY_BREAK case 114: YY_RULE_SETUP #line 315 "./util/configlexer.lex" { YDVAR(1, VAR_UNBLOCK_LAN_ZONES) } YY_BREAK case 115: YY_RULE_SETUP #line 316 "./util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_INTERVAL) } YY_BREAK case 116: YY_RULE_SETUP #line 317 "./util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_CUMULATIVE) } YY_BREAK case 117: YY_RULE_SETUP #line 318 "./util/configlexer.lex" { YDVAR(1, VAR_EXTENDED_STATISTICS) } YY_BREAK case 118: YY_RULE_SETUP #line 319 "./util/configlexer.lex" { YDVAR(0, VAR_REMOTE_CONTROL) } YY_BREAK case 119: YY_RULE_SETUP #line 320 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_ENABLE) } YY_BREAK case 120: YY_RULE_SETUP #line 321 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_INTERFACE) } YY_BREAK case 121: YY_RULE_SETUP #line 322 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_PORT) } YY_BREAK case 122: YY_RULE_SETUP #line 323 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_USE_CERT) } YY_BREAK case 123: YY_RULE_SETUP #line 324 "./util/configlexer.lex" { YDVAR(1, VAR_SERVER_KEY_FILE) } YY_BREAK case 124: YY_RULE_SETUP #line 325 "./util/configlexer.lex" { YDVAR(1, VAR_SERVER_CERT_FILE) } YY_BREAK case 125: YY_RULE_SETUP #line 326 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_KEY_FILE) } YY_BREAK case 126: YY_RULE_SETUP #line 327 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_CERT_FILE) } YY_BREAK case 127: YY_RULE_SETUP #line 328 "./util/configlexer.lex" { YDVAR(1, VAR_PYTHON_SCRIPT) } YY_BREAK case 128: YY_RULE_SETUP #line 329 "./util/configlexer.lex" { YDVAR(0, VAR_PYTHON) } YY_BREAK case 129: YY_RULE_SETUP #line 330 "./util/configlexer.lex" { YDVAR(1, VAR_DOMAIN_INSECURE) } YY_BREAK case 130: YY_RULE_SETUP #line 331 "./util/configlexer.lex" { YDVAR(1, VAR_MINIMAL_RESPONSES) } YY_BREAK case 131: YY_RULE_SETUP #line 332 "./util/configlexer.lex" { YDVAR(1, VAR_RRSET_ROUNDROBIN) } YY_BREAK case 132: YY_RULE_SETUP #line 333 "./util/configlexer.lex" { YDVAR(1, VAR_MAX_UDP_SIZE) } YY_BREAK case 133: YY_RULE_SETUP #line 334 "./util/configlexer.lex" { YDVAR(1, VAR_DNS64_PREFIX) } YY_BREAK case 134: YY_RULE_SETUP #line 335 "./util/configlexer.lex" { YDVAR(1, VAR_DNS64_SYNTHALL) } YY_BREAK case 135: YY_RULE_SETUP #line 336 "./util/configlexer.lex" { YDVAR(0, VAR_DNSTAP) } YY_BREAK case 136: YY_RULE_SETUP #line 337 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_ENABLE) } YY_BREAK case 137: YY_RULE_SETUP #line 338 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } YY_BREAK case 138: YY_RULE_SETUP #line 339 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) } YY_BREAK case 139: YY_RULE_SETUP #line 340 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_VERSION) } YY_BREAK case 140: YY_RULE_SETUP #line 341 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_IDENTITY) } YY_BREAK case 141: YY_RULE_SETUP #line 342 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_VERSION) } YY_BREAK case 142: YY_RULE_SETUP #line 343 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) } YY_BREAK case 143: YY_RULE_SETUP #line 345 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) } YY_BREAK case 144: YY_RULE_SETUP #line 347 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) } YY_BREAK case 145: YY_RULE_SETUP #line 349 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) } YY_BREAK case 146: YY_RULE_SETUP #line 351 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } YY_BREAK case 147: YY_RULE_SETUP #line 353 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } YY_BREAK case 148: YY_RULE_SETUP #line 355 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT) } YY_BREAK case 149: YY_RULE_SETUP #line 356 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SLABS) } YY_BREAK case 150: YY_RULE_SETUP #line 357 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SIZE) } YY_BREAK case 151: YY_RULE_SETUP #line 358 "./util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) } YY_BREAK case 152: YY_RULE_SETUP #line 359 "./util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) } YY_BREAK case 153: YY_RULE_SETUP #line 360 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_FACTOR) } YY_BREAK case 154: /* rule 154 can match eol */ YY_RULE_SETUP #line 361 "./util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK /* Quoted strings. Strip leading and ending quotes */ case 155: YY_RULE_SETUP #line 364 "./util/configlexer.lex" { BEGIN(quotedstring); LEXOUT(("QS ")); } YY_BREAK case YY_STATE_EOF(quotedstring): #line 365 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 156: YY_RULE_SETUP #line 370 "./util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 157: /* rule 157 can match eol */ YY_RULE_SETUP #line 371 "./util/configlexer.lex" { yyerror("newline inside quoted string, no end \""); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 158: YY_RULE_SETUP #line 373 "./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 159: YY_RULE_SETUP #line 385 "./util/configlexer.lex" { BEGIN(singlequotedstr); LEXOUT(("SQS ")); } YY_BREAK case YY_STATE_EOF(singlequotedstr): #line 386 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 160: YY_RULE_SETUP #line 391 "./util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 161: /* rule 161 can match eol */ YY_RULE_SETUP #line 392 "./util/configlexer.lex" { yyerror("newline inside quoted string, no end '"); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 162: YY_RULE_SETUP #line 394 "./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 163: YY_RULE_SETUP #line 406 "./util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); } YY_BREAK case YY_STATE_EOF(include): #line 408 "./util/configlexer.lex" { yyerror("EOF inside include directive"); BEGIN(inc_prev); } YY_BREAK case 164: YY_RULE_SETUP #line 412 "./util/configlexer.lex" { LEXOUT(("ISP ")); /* ignore */ } YY_BREAK case 165: /* rule 165 can match eol */ YY_RULE_SETUP #line 413 "./util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++;} YY_BREAK case 166: YY_RULE_SETUP #line 414 "./util/configlexer.lex" { LEXOUT(("IQS ")); BEGIN(include_quoted); } YY_BREAK case 167: YY_RULE_SETUP #line 415 "./util/configlexer.lex" { LEXOUT(("Iunquotedstr(%s) ", yytext)); config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(include_quoted): #line 420 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 168: YY_RULE_SETUP #line 424 "./util/configlexer.lex" { LEXOUT(("ISTR(%s) ", yytext)); yymore(); } YY_BREAK case 169: /* rule 169 can match eol */ YY_RULE_SETUP #line 425 "./util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 170: YY_RULE_SETUP #line 427 "./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 433 "./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 171: YY_RULE_SETUP #line 444 "./util/configlexer.lex" { LEXOUT(("unquotedstr(%s) ", yytext)); if(--num_args == 0) { BEGIN(INITIAL); } yylval.str = strdup(yytext); return STRING_ARG; } YY_BREAK case 172: YY_RULE_SETUP #line 448 "./util/configlexer.lex" { ub_c_error_msg("unknown keyword '%s'", yytext); } YY_BREAK case 173: YY_RULE_SETUP #line 452 "./util/configlexer.lex" { ub_c_error_msg("stray '%s'", yytext); } YY_BREAK case 174: YY_RULE_SETUP #line 456 "./util/configlexer.lex" ECHO; YY_BREAK #line 3213 "" case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = (yy_c_buf_p); goto yy_find_action; } } else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { (yy_did_buffer_switch_on_eof) = 0; if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: (yy_c_buf_p) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer (void) { register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; register char *source = (yytext_ptr); register int number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { yy_size_t 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 ) { yy_size_t new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart(yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); } (yy_n_chars) += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state (void) { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = (yy_start); for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 1731 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) { register int yy_is_jam; register char *yy_cp = (yy_c_buf_p); register YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 1731 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 1730); return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void) #else static int input (void) #endif { int c; *(yy_c_buf_p) = (yy_hold_char); if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ *(yy_c_buf_p) = '\0'; else { /* need more input */ yy_size_t offset = (yy_c_buf_p) - (yytext_ptr); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart(yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) return EOF; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); return c; } #endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * * @note This function does not reset the start condition to @c INITIAL . */ void yyrestart (FILE * input_file ) { if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_init_buffer(YY_CURRENT_BUFFER,input_file ); yy_load_buffer_state( ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * */ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) { /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ yyensure_buffer_stack (); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ (yy_did_buffer_switch_on_eof) = 1; } static void yy_load_buffer_state (void) { (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; (yy_hold_char) = *(yy_c_buf_p); } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * * @return the allocated buffer state. */ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer(b,file ); return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * */ void yy_delete_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree((void *) b->yy_ch_buf ); yyfree((void *) b ); } /* 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) { yy_size_t num_to_alloc; if (!(yy_buffer_stack)) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; (yy_buffer_stack_top) = 0; return; } if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ int grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc ((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); /* zero only the new slots.*/ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; } } /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer(b ); return b; } /** Setup the input buffer state to scan a string. The next call to yylex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) { return yy_scan_bytes(yystr,strlen(yystr) ); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will * scan from a @e copy of @a bytes. * @param yybytes the byte buffer to scan * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _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 = _yybytes_len + 2; buf = (char *) yyalloc(n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer(buf,n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif static void yy_fatal_error (yyconst char* msg ) { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = (yy_hold_char); \ (yy_c_buf_p) = yytext + yyless_macro_arg; \ (yy_hold_char) = *(yy_c_buf_p); \ *(yy_c_buf_p) = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ yy_size_t yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the current line number. * @param line_number * */ void yyset_lineno (int line_number ) { yylineno = line_number; } /** Set the input stream. This does not discard the current * input buffer. * @param in_str A readable stream. * * @see yy_switch_to_buffer */ void yyset_in (FILE * in_str ) { yyin = in_str ; } void yyset_out (FILE * out_str ) { yyout = out_str ; } int yyget_debug (void) { return yy_flex_debug; } void yyset_debug (int bdebug ) { yy_flex_debug = bdebug ; } static int yy_init_globals (void) { /* Initialization is the same as for the non-reentrant scanner. * This function is called from yylex_destroy(), so don't allocate here. */ (yy_buffer_stack) = 0; (yy_buffer_stack_top) = 0; (yy_buffer_stack_max) = 0; (yy_c_buf_p) = (char *) 0; (yy_init) = 0; (yy_start) = 0; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = (FILE *) 0; yyout = (FILE *) 0; #endif /* For future reference: Set errno on error, since we are called by * yylex_init() */ return 0; } /* yylex_destroy is for both reentrant and non-reentrant scanners. */ int yylex_destroy (void) { /* Pop the buffer stack, destroying each element. */ while(YY_CURRENT_BUFFER){ yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; yypop_buffer_state(); } /* Destroy the stack itself. */ yyfree((yy_buffer_stack) ); (yy_buffer_stack) = NULL; /* Reset the globals. This is important in a non-reentrant scanner so the next time * yylex() is called, initialization will occur. */ yy_init_globals( ); return 0; } /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * s ) { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return (void *) malloc( size ); } void *yyrealloc (void * ptr, yy_size_t size ) { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return (void *) realloc( (char *) ptr, size ); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 456 "./util/configlexer.lex"