#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 175 #define YY_END_OF_BUFFER 176 /* 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[1752] = { 0, 1, 1, 157, 157, 161, 161, 165, 165, 169, 169, 1, 1, 176, 173, 1, 155, 155, 174, 2, 174, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 157, 158, 158, 159, 174, 161, 162, 162, 163, 174, 168, 165, 166, 166, 167, 174, 169, 170, 170, 171, 174, 172, 156, 2, 160, 174, 172, 173, 0, 1, 2, 2, 2, 2, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 157, 0, 161, 0, 168, 0, 165, 169, 0, 172, 0, 2, 2, 172, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 172, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 172, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 70, 173, 173, 173, 173, 173, 173, 6, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 172, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 172, 173, 173, 173, 173, 173, 30, 173, 173, 173, 173, 173, 173, 173, 173, 136, 173, 12, 13, 173, 15, 14, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 129, 173, 173, 173, 173, 173, 173, 3, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 172, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 164, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 33, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 34, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 85, 164, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 84, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 68, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 20, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 31, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 32, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 22, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 149, 173, 173, 173, 173, 173, 173, 26, 173, 27, 173, 173, 173, 71, 173, 72, 173, 69, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 5, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 87, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 23, 173, 173, 173, 173, 173, 113, 112, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 35, 173, 173, 173, 173, 173, 173, 173, 173, 74, 73, 173, 173, 173, 173, 173, 173, 173, 109, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 53, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 57, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 111, 173, 173, 173, 173, 173, 173, 173, 173, 173, 4, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 105, 173, 173, 173, 173, 173, 173, 173, 173, 173, 122, 173, 106, 173, 134, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 21, 173, 173, 173, 173, 76, 173, 77, 75, 173, 173, 173, 173, 173, 173, 173, 83, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 107, 173, 173, 173, 173, 133, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 67, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 28, 173, 173, 17, 173, 173, 173, 16, 173, 92, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 42, 44, 173, 173, 173, 173, 173, 173, 173, 173, 137, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 78, 173, 173, 173, 173, 173, 173, 82, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 86, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 128, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 96, 173, 100, 173, 173, 173, 173, 81, 173, 173, 63, 173, 120, 173, 173, 173, 173, 135, 173, 173, 173, 173, 173, 173, 173, 142, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 99, 173, 173, 173, 173, 173, 45, 46, 173, 29, 52, 101, 173, 114, 110, 173, 173, 38, 173, 103, 173, 173, 173, 173, 173, 7, 173, 173, 66, 173, 173, 173, 151, 173, 119, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 88, 141, 173, 173, 173, 173, 173, 173, 173, 173, 130, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 102, 173, 37, 39, 173, 173, 173, 173, 173, 173, 65, 173, 173, 173, 150, 173, 173, 173, 173, 124, 18, 19, 173, 173, 173, 173, 173, 173, 173, 62, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 126, 123, 173, 173, 173, 173, 173, 173, 173, 173, 36, 173, 173, 173, 173, 173, 173, 173, 11, 173, 173, 173, 173, 173, 173, 173, 173, 10, 173, 173, 173, 173, 154, 173, 40, 173, 132, 125, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 95, 94, 173, 173, 127, 121, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 47, 173, 131, 173, 173, 173, 173, 173, 173, 173, 41, 173, 173, 173, 89, 91, 115, 173, 173, 173, 93, 173, 173, 173, 173, 173, 173, 173, 173, 173, 138, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 24, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 140, 173, 173, 118, 173, 173, 173, 173, 173, 173, 173, 50, 173, 25, 173, 9, 173, 173, 173, 173, 173, 116, 54, 173, 173, 173, 98, 173, 173, 173, 173, 173, 173, 173, 139, 79, 173, 173, 173, 173, 56, 60, 55, 173, 48, 173, 8, 173, 173, 152, 173, 173, 97, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 61, 59, 173, 49, 173, 108, 173, 117, 173, 173, 90, 43, 173, 173, 173, 173, 173, 173, 80, 58, 51, 153, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 64, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 104, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 145, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 143, 173, 146, 147, 173, 173, 173, 173, 173, 144, 148, 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[1766] = { 0, 0, 0, 37, 40, 44, 51, 63, 75, 56, 68, 87, 108, 2487, 2363, 50, 3475, 3475, 3475, 129, 94, 70, 104, 130, 90, 92, 115, 127, 95, 84, 111, 137, 148, 50, 170, 150, 157, 160, 140, 166, 2236, 3475, 3475, 3475, 70, 2188, 3475, 3475, 3475, 42, 1913, 1777, 3475, 3475, 3475, 192, 1681, 3475, 3475, 3475, 141, 1627, 3475, 198, 3475, 202, 122, 1553, 208, 120, 0, 219, 0, 0, 103, 201, 203, 206, 164, 212, 204, 214, 125, 215, 225, 217, 221, 224, 227, 229, 230, 236, 237, 244, 228, 246, 249, 248, 253, 254, 173, 255, 259, 260, 261, 262, 265, 264, 270, 263, 274, 276, 277, 278, 284, 290, 286, 287, 291, 158, 293, 299, 295, 303, 305, 1394, 315, 1200, 319, 1040, 327, 776, 615, 320, 539, 335, 339, 0, 317, 332, 340, 334, 296, 325, 336, 338, 346, 343, 350, 354, 375, 355, 342, 357, 49, 359, 360, 353, 366, 368, 364, 371, 372, 370, 369, 391, 377, 393, 402, 394, 387, 405, 401, 409, 412, 410, 398, 413, 414, 415, 416, 418, 420, 422, 423, 424, 427, 428, 435, 431, 439, 433, 450, 436, 432, 452, 459, 461, 460, 457, 448, 458, 468, 465, 476, 472, 464, 473, 474, 475, 483, 488, 489, 491, 480, 486, 494, 498, 495, 505, 493, 508, 506, 515, 503, 512, 513, 514, 516, 518, 520, 519, 521, 531, 522, 528, 529, 532, 535, 538, 542, 545, 544, 550, 552, 555, 557, 558, 560, 563, 561, 564, 565, 571, 578, 574, 575, 581, 576, 582, 583, 593, 595, 585, 587, 589, 596, 599, 597, 619, 605, 608, 609, 613, 612, 616, 628, 614, 624, 625, 626, 647, 629, 639, 648, 645, 646, 657, 650, 652, 656, 659, 658, 662, 663, 664, 665, 667, 675, 679, 677, 689, 682, 690, 691, 693, 695, 696, 704, 685, 700, 701, 703, 710, 712, 702, 714, 3475, 718, 705, 716, 720, 721, 722, 3475, 725, 727, 728, 730, 731, 732, 738, 735, 737, 743, 744, 746, 749, 750, 751, 771, 755, 752, 762, 760, 756, 773, 758, 780, 769, 778, 785, 782, 786, 788, 789, 791, 792, 795, 809, 794, 796, 802, 803, 813, 805, 816, 818, 819, 820, 822, 830, 824, 827, 832, 840, 843, 845, 851, 833, 847, 849, 855, 856, 857, 839, 863, 861, 864, 865, 869, 867, 872, 876, 874, 879, 880, 887, 875, 889, 881, 836, 895, 893, 898, 900, 891, 902, 904, 910, 907, 908, 909, 922, 913, 924, 916, 927, 933, 669, 915, 929, 923, 935, 936, 937, 938, 939, 943, 944, 946, 952, 940, 949, 956, 954, 963, 951, 964, 966, 969, 970, 971, 972, 980, 973, 974, 984, 982, 987, 986, 990, 988, 997, 995, 3475, 1005, 999, 1001, 1002, 1007, 1008, 1010, 1036, 3475, 1012, 3475, 3475, 1011, 3475, 3475, 1014, 1016, 1017, 1024, 1059, 1025, 1029, 1018, 1031, 1033, 1037, 1038, 1042, 1049, 1051, 1062, 1046, 1052, 1056, 1068, 1069, 1064, 1073, 1080, 1082, 1088, 1089, 1087, 1086, 1093, 1094, 1095, 1098, 1097, 1096, 1100, 1106, 1110, 1107, 3475, 1108, 1109, 1111, 1118, 1116, 1121, 3475, 1053, 1122, 1120, 1123, 1128, 1129, 1130, 1133, 1134, 1135, 1136, 1142, 1138, 1140, 1147, 1151, 1153, 1155, 1157, 1158, 1162, 1163, 1164, 1171, 1169, 1168, 1174, 1178, 1175, 1180, 1182, 1177, 1185, 1183, 1188, 1190, 1191, 1213, 1193, 1194, 1196, 1199, 1198, 1201, 1205, 1206, 1208, 1220, 1226, 1227, 1207, 1230, 1232, 1242, 1239, 1236, 1246, 1243, 1249, 1252, 1250, 1254, 1256, 1258, 1260, 1263, 3475, 1269, 1268, 1266, 1273, 1274, 1272, 1217, 1275, 1276, 1278, 1280, 1282, 1281, 1292, 3475, 1288, 1293, 1289, 1294, 1297, 1298, 1301, 1305, 1313, 1309, 3475, 1317, 1314, 1320, 1319, 1321, 1324, 1325, 1326, 1327, 1329, 1331, 1330, 1335, 1343, 1340, 1333, 1345, 1338, 1350, 1352, 1353, 1354, 1355, 1357, 1358, 1362, 1364, 1368, 1370, 1367, 1378, 1371, 1374, 1379, 1384, 1381, 1383, 1385, 1386, 3475, 442, 1387, 1393, 1389, 1400, 1402, 1398, 1405, 1406, 1407, 1412, 1413, 1396, 1414, 1416, 1419, 1422, 1424, 1423, 1425, 1427, 1431, 1433, 1434, 1436, 1439, 1441, 1442, 1444, 1445, 1451, 1450, 1452, 1453, 1456, 1457, 1458, 1460, 1462, 1465, 1470, 1466, 1473, 3475, 1479, 1475, 1476, 1472, 1478, 1495, 1487, 1496, 1488, 1491, 1498, 1502, 1499, 1505, 1507, 1509, 1511, 1512, 1513, 1519, 1520, 1517, 1521, 1523, 1527, 1524, 3475, 1529, 1530, 1534, 1543, 1536, 1540, 1546, 1544, 1547, 1548, 1556, 1549, 1561, 3475, 1563, 1557, 1551, 1568, 1569, 1572, 1574, 1576, 1577, 1578, 1580, 1581, 1584, 1582, 1587, 1591, 3475, 1595, 1599, 1596, 1607, 1603, 1592, 1604, 1606, 1608, 1609, 1618, 1610, 1614, 1617, 1619, 1620, 1616, 1622, 1623, 1626, 1625, 1633, 3475, 1640, 1642, 1644, 1643, 1646, 1654, 1653, 1650, 1655, 1656, 1658, 1659, 1662, 1663, 1665, 1666, 1667, 1671, 1672, 1673, 1670, 1690, 1668, 1691, 1679, 1692, 1678, 1694, 1677, 1699, 1707, 1708, 1705, 3475, 1710, 1711, 1712, 1713, 1714, 1720, 1722, 1716, 1718, 1723, 1724, 1725, 1739, 1726, 1728, 1732, 1736, 1730, 1738, 1741, 1752, 1742, 1757, 1746, 1748, 1758, 1763, 3475, 1740, 1771, 1768, 1772, 1764, 1779, 3475, 1775, 3475, 1778, 1780, 1790, 3475, 1787, 3475, 1789, 3475, 1791, 1795, 1777, 1797, 1798, 1799, 1800, 1802, 1803, 1805, 1807, 1808, 1809, 1811, 1816, 3475, 1810, 1817, 1824, 1827, 1814, 1818, 1826, 1820, 1837, 1836, 1847, 1833, 1848, 1844, 1846, 1849, 3475, 1850, 1851, 1854, 1856, 1857, 1864, 1862, 1861, 1868, 1865, 1869, 1882, 1878, 1871, 1880, 1881, 1883, 1891, 1884, 1887, 1894, 1895, 1885, 1896, 1897, 1898, 1902, 1905, 1909, 1906, 1908, 1910, 3475, 1915, 1919, 1922, 1921, 1911, 3475, 3475, 1924, 1932, 1936, 1937, 1938, 1925, 1939, 1940, 1950, 1943, 1946, 1952, 1954, 1955, 1956, 1957, 1958, 1959, 1961, 1962, 1963, 1971, 1970, 3475, 1979, 1973, 1986, 1984, 1975, 1992, 1985, 1993, 3475, 3475, 1989, 1994, 1999, 2000, 2006, 2004, 2003, 3475, 2005, 2008, 2009, 2010, 2011, 2013, 2018, 2023, 2027, 2028, 2024, 2032, 2033, 2029, 2035, 2034, 2036, 2037, 2040, 2047, 2052, 3475, 2049, 2056, 2053, 2057, 2059, 2060, 2061, 2064, 2066, 2063, 2067, 2071, 2078, 2074, 2077, 2079, 2081, 2084, 2086, 2090, 2087, 2097, 2098, 3475, 2105, 2093, 2107, 2094, 2109, 2112, 2115, 2114, 2103, 2116, 2117, 2106, 2118, 2122, 2124, 2129, 2125, 3475, 2131, 2135, 2132, 2141, 2142, 2138, 2143, 2146, 2149, 3475, 2152, 2158, 2154, 2155, 2161, 2160, 2163, 2166, 2167, 2169, 2170, 2171, 2176, 2177, 2179, 2180, 2182, 2184, 2183, 2186, 2193, 2196, 2191, 2200, 2203, 2206, 2216, 2213, 2201, 2207, 2222, 2218, 2220, 2221, 2210, 2228, 2225, 2231, 2229, 3475, 2234, 2238, 2243, 2245, 2232, 2240, 2248, 2249, 2250, 3475, 2251, 3475, 2254, 3475, 2257, 2261, 2258, 2262, 2263, 2264, 2268, 2265, 2279, 2273, 3475, 2276, 2267, 2275, 2280, 3475, 2291, 3475, 3475, 2282, 2286, 2298, 2292, 2294, 2299, 2303, 3475, 2304, 2296, 2305, 2308, 2307, 2310, 2312, 2313, 2314, 2315, 2318, 3475, 2321, 2330, 2319, 2327, 3475, 2320, 2340, 2323, 2341, 2331, 2342, 2343, 2344, 2345, 2355, 2351, 2352, 3475, 2353, 2354, 2358, 2359, 2361, 2369, 2366, 2373, 2367, 2376, 2378, 2377, 2370, 3475, 2384, 2387, 3475, 2383, 2390, 2391, 3475, 2393, 3475, 2394, 2397, 2395, 2402, 2404, 2405, 2409, 2398, 2415, 2401, 2413, 2422, 2416, 2418, 3475, 3475, 2428, 2423, 2430, 2433, 2425, 2431, 2435, 2442, 3475, 2436, 2439, 2443, 2445, 2446, 2447, 2448, 2453, 2450, 2455, 2457, 2456, 2458, 3475, 2463, 2459, 2468, 2467, 2469, 2471, 3475, 2473, 2475, 2476, 2479, 2484, 2490, 2495, 2499, 2496, 2501, 2503, 2505, 2506, 2508, 2511, 2512, 3475, 2480, 2514, 2515, 2517, 2518, 2520, 2519, 2523, 2528, 2529, 2521, 2533, 3475, 2530, 2535, 2537, 2543, 2538, 2546, 2547, 2548, 2551, 2552, 2554, 2555, 2556, 2558, 2561, 2562, 2563, 2565, 2567, 2575, 2578, 3475, 2568, 3475, 2576, 2583, 2591, 2589, 3475, 2587, 2592, 3475, 2593, 3475, 2594, 2595, 2596, 2604, 3475, 2607, 2599, 2608, 2610, 2611, 2612, 2614, 3475, 2617, 2620, 2619, 2624, 2626, 2627, 2628, 2630, 2633, 2639, 2636, 3475, 2635, 2640, 2648, 2644, 2647, 3475, 3475, 2653, 3475, 3475, 3475, 2656, 3475, 3475, 2657, 2659, 3475, 2661, 3475, 2668, 2664, 2666, 2667, 2669, 3475, 2671, 2673, 3475, 2675, 2676, 2677, 3475, 2679, 3475, 2680, 2684, 2681, 2688, 2691, 2697, 2699, 2700, 2687, 2701, 2702, 2703, 2704, 2706, 2708, 2710, 2711, 2716, 2717, 2718, 2720, 2721, 2722, 2723, 2724, 2732, 2741, 3475, 3475, 2725, 2733, 2727, 2735, 2738, 2743, 2746, 2752, 3475, 2757, 2750, 2754, 2758, 2748, 2760, 2765, 2767, 2769, 2775, 2762, 2772, 2771, 2774, 3475, 2776, 3475, 3475, 2777, 2779, 2784, 2785, 2788, 2789, 3475, 2792, 2799, 2791, 3475, 2802, 2803, 2808, 2810, 3475, 3475, 3475, 2811, 2805, 2814, 2813, 2815, 2816, 2817, 3475, 2819, 2821, 2824, 2828, 2831, 2833, 2841, 2837, 2839, 2845, 3475, 3475, 2851, 2848, 2849, 2847, 2840, 2850, 2857, 2853, 3475, 2860, 2859, 2861, 2864, 2866, 2867, 2869, 3475, 2870, 2871, 2876, 2880, 2872, 2883, 2884, 2885, 3475, 2887, 2886, 2893, 2888, 3475, 2900, 3475, 2905, 3475, 3475, 2894, 2906, 2908, 2910, 2913, 2916, 2902, 2917, 2923, 2922, 2924, 3475, 3475, 2919, 2932, 3475, 3475, 2926, 2929, 2930, 2933, 2935, 2937, 2938, 2939, 2940, 2941, 2945, 2950, 2951, 2952, 2954, 2955, 2958, 2961, 3475, 2960, 3475, 2965, 2968, 2969, 2962, 2970, 2974, 2975, 3475, 2977, 2976, 2979, 3475, 3475, 3475, 2989, 2990, 2992, 3475, 2993, 2996, 2982, 2995, 3003, 2997, 3011, 2999, 3010, 3475, 3000, 3007, 3013, 3014, 3017, 3020, 3021, 3023, 3025, 3027, 3029, 3032, 3034, 3037, 3475, 3039, 3035, 3041, 3043, 3045, 3046, 3048, 3050, 3052, 3054, 3056, 3058, 3060, 3061, 3062, 3063, 3070, 3069, 3074, 3475, 3078, 3075, 3475, 3079, 3083, 3080, 3089, 3091, 3093, 3095, 3475, 3099, 3475, 3101, 3475, 3104, 3096, 3105, 3107, 3108, 3475, 3475, 3109, 3112, 3115, 3475, 3116, 3118, 3119, 3122, 3123, 3124, 3126, 3475, 3475, 3127, 3129, 3133, 3135, 3475, 3475, 3475, 3143, 3475, 3144, 3475, 3150, 3146, 3475, 3152, 3153, 3475, 3136, 3156, 3158, 3134, 3161, 3162, 3164, 3165, 3163, 3167, 3475, 3475, 3172, 3475, 3174, 3475, 3178, 3475, 3175, 3179, 3475, 3475, 3186, 3184, 3185, 3188, 3191, 3189, 3475, 3475, 3475, 3475, 3192, 3193, 3195, 3197, 3194, 3199, 3200, 3202, 3204, 3201, 3206, 3214, 3218, 3220, 3226, 3222, 3475, 3223, 3227, 3229, 3233, 3230, 3232, 3231, 3234, 3237, 3239, 3240, 3241, 3242, 3249, 3251, 3257, 3259, 3261, 3262, 3255, 3268, 3272, 3269, 3265, 3273, 3280, 3277, 3278, 3475, 3281, 3279, 3282, 3287, 3288, 3285, 3283, 3293, 3303, 3305, 3299, 3295, 3308, 3309, 3311, 3312, 3315, 3313, 3475, 3317, 3319, 3321, 3323, 3325, 3327, 3328, 3329, 3334, 3336, 3338, 3345, 3341, 3475, 3349, 3475, 3475, 3350, 3339, 3351, 3353, 3357, 3475, 3475, 3475, 3383, 3390, 3397, 3404, 3411, 94, 3418, 3425, 3432, 3439, 3446, 3453, 3460, 3467 } ; static yyconst flex_int16_t yy_def[1766] = { 0, 1751, 1, 1752, 1752, 1753, 1753, 1754, 1754, 1755, 1755, 1756, 1756, 1751, 1757, 1751, 1751, 1751, 1751, 1758, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1759, 1751, 1751, 1751, 1759, 1760, 1751, 1751, 1751, 1760, 1761, 1751, 1751, 1751, 1751, 1761, 1762, 1751, 1751, 1751, 1762, 1763, 1751, 1764, 1751, 1763, 1763, 1757, 1757, 1751, 1765, 1758, 1765, 1758, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1759, 1759, 1760, 1760, 1761, 1761, 1751, 1762, 1762, 1763, 1763, 1764, 1764, 1763, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1763, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1763, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1763, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1763, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1751, 1751, 1757, 1751, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1763, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1763, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1751, 1757, 1757, 1757, 1751, 1757, 1751, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1751, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1751, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1751, 1757, 1751, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1751, 1757, 1757, 1757, 1751, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1751, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1751, 1757, 1751, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1751, 1751, 1757, 1751, 1751, 1751, 1757, 1751, 1751, 1757, 1757, 1751, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1751, 1757, 1757, 1757, 1751, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1751, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1751, 1751, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1751, 1757, 1751, 1757, 1751, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1751, 1757, 1757, 1751, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1751, 1751, 1751, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1751, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1751, 1751, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1751, 1757, 1757, 1757, 1757, 1751, 1751, 1751, 1757, 1751, 1757, 1751, 1757, 1757, 1751, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1751, 1757, 1751, 1757, 1751, 1757, 1751, 1757, 1757, 1751, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1751, 1751, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1751, 1757, 1751, 1751, 1757, 1757, 1757, 1757, 1757, 1751, 1751, 0, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751 } ; static yyconst flex_int16_t yy_nxt[3515] = { 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, 127, 46, 47, 127, 44, 48, 69, 44, 46, 47, 70, 49, 48, 57, 58, 59, 68, 68, 49, 51, 52, 53, 54, 60, 18, 57, 58, 59, 125, 125, 55, 51, 52, 53, 54, 60, 18, 68, 104, 221, 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, 139, 87, 65, 69, 94, 68, 78, 70, 86, 68, 88, 66, 72, 79, 72, 72, 135, 72, 89, 68, 96, 68, 72, 73, 68, 90, 132, 132, 91, 80, 138, 68, 97, 81, 68, 92, 82, 93, 83, 84, 98, 148, 68, 101, 68, 110, 99, 102, 121, 111, 100, 68, 68, 122, 68, 118, 114, 119, 68, 112, 68, 123, 113, 103, 68, 124, 115, 68, 192, 105, 116, 117, 120, 106, 171, 129, 144, 129, 129, 107, 129, 72, 108, 72, 72, 134, 72, 134, 134, 109, 134, 67, 137, 67, 67, 68, 67, 68, 68, 140, 68, 67, 72, 142, 72, 72, 68, 72, 68, 68, 146, 68, 72, 73, 150, 68, 143, 141, 68, 68, 145, 68, 68, 68, 68, 152, 147, 156, 149, 157, 68, 68, 151, 162, 159, 153, 154, 160, 68, 155, 68, 163, 68, 68, 158, 164, 166, 68, 68, 68, 167, 161, 170, 68, 68, 68, 68, 68, 68, 68, 173, 169, 172, 177, 68, 165, 168, 174, 68, 179, 68, 68, 68, 180, 176, 175, 178, 181, 68, 187, 68, 68, 189, 183, 68, 68, 184, 68, 182, 68, 68, 185, 188, 68, 196, 194, 186, 68, 203, 68, 125, 125, 190, 191, 127, 132, 132, 127, 193, 197, 129, 135, 129, 129, 199, 129, 195, 198, 134, 68, 134, 134, 72, 134, 72, 72, 68, 72, 68, 201, 68, 200, 68, 137, 68, 207, 68, 68, 204, 210, 68, 208, 209, 202, 68, 205, 211, 68, 68, 68, 218, 68, 206, 68, 68, 219, 220, 222, 68, 223, 68, 224, 68, 68, 68, 68, 68, 230, 212, 68, 229, 68, 235, 213, 226, 225, 228, 227, 214, 233, 234, 68, 236, 215, 232, 68, 231, 68, 68, 216, 217, 238, 68, 237, 241, 68, 68, 239, 243, 68, 242, 244, 240, 68, 68, 246, 68, 68, 68, 68, 68, 245, 68, 247, 68, 249, 68, 68, 68, 252, 251, 68, 68, 255, 259, 68, 68, 68, 248, 68, 68, 253, 250, 68, 262, 261, 135, 254, 265, 263, 257, 258, 68, 256, 68, 260, 68, 266, 267, 264, 269, 135, 68, 68, 68, 68, 270, 275, 68, 68, 274, 273, 68, 272, 276, 277, 68, 68, 68, 68, 68, 268, 282, 271, 68, 280, 279, 68, 283, 284, 68, 278, 68, 68, 285, 68, 286, 68, 68, 68, 287, 289, 68, 281, 292, 288, 290, 68, 291, 68, 68, 293, 68, 294, 296, 295, 68, 68, 68, 68, 68, 301, 68, 68, 68, 68, 68, 297, 303, 307, 306, 300, 68, 68, 298, 68, 68, 305, 299, 68, 302, 304, 68, 135, 308, 311, 68, 317, 68, 68, 309, 315, 316, 310, 68, 313, 68, 318, 314, 68, 312, 68, 68, 324, 68, 68, 326, 68, 68, 68, 322, 323, 325, 319, 321, 68, 320, 330, 68, 68, 68, 328, 68, 327, 332, 68, 68, 68, 333, 68, 334, 68, 340, 68, 335, 329, 339, 68, 331, 68, 68, 68, 336, 68, 341, 337, 346, 338, 344, 68, 342, 343, 68, 135, 345, 348, 68, 68, 68, 133, 68, 357, 347, 68, 356, 349, 350, 362, 68, 68, 68, 360, 68, 68, 358, 351, 359, 352, 353, 354, 361, 363, 355, 68, 365, 366, 367, 370, 364, 68, 68, 68, 68, 368, 68, 372, 68, 369, 373, 374, 68, 68, 68, 68, 379, 371, 68, 68, 68, 68, 380, 68, 376, 68, 375, 518, 377, 378, 383, 68, 385, 68, 382, 68, 386, 381, 68, 387, 389, 68, 388, 384, 390, 68, 68, 68, 392, 68, 391, 68, 68, 395, 393, 396, 68, 68, 68, 68, 68, 68, 397, 400, 394, 398, 68, 401, 68, 399, 68, 404, 68, 402, 68, 405, 68, 68, 68, 403, 407, 68, 406, 68, 68, 408, 68, 68, 68, 417, 410, 68, 415, 68, 68, 414, 416, 409, 413, 68, 68, 411, 68, 412, 421, 68, 68, 68, 68, 418, 423, 68, 68, 433, 68, 419, 68, 422, 68, 435, 420, 131, 424, 434, 432, 68, 425, 68, 426, 68, 437, 431, 436, 427, 68, 428, 68, 439, 68, 438, 440, 68, 68, 429, 68, 68, 441, 68, 68, 445, 68, 135, 68, 430, 446, 449, 442, 443, 68, 68, 450, 68, 451, 448, 444, 68, 447, 454, 455, 68, 452, 453, 68, 456, 68, 68, 68, 458, 68, 460, 68, 463, 466, 68, 457, 464, 68, 467, 68, 68, 459, 468, 68, 465, 461, 68, 68, 462, 469, 68, 470, 68, 471, 68, 497, 68, 475, 68, 473, 474, 472, 68, 68, 68, 479, 478, 476, 68, 477, 68, 68, 68, 480, 68, 482, 68, 485, 488, 68, 483, 68, 68, 68, 484, 481, 68, 68, 68, 490, 489, 491, 486, 487, 68, 494, 68, 498, 68, 493, 68, 495, 68, 502, 496, 68, 499, 68, 500, 68, 501, 68, 505, 492, 68, 68, 68, 68, 507, 506, 68, 508, 68, 68, 509, 504, 512, 503, 510, 68, 68, 68, 513, 511, 68, 516, 68, 514, 520, 517, 68, 519, 68, 68, 68, 68, 68, 68, 521, 525, 68, 68, 515, 68, 530, 526, 68, 532, 68, 68, 522, 68, 523, 68, 524, 527, 531, 533, 529, 528, 68, 68, 534, 68, 536, 535, 68, 68, 68, 68, 68, 68, 540, 539, 542, 541, 538, 68, 545, 68, 537, 68, 543, 68, 135, 68, 549, 68, 544, 548, 546, 550, 68, 547, 68, 552, 68, 555, 68, 68, 556, 554, 68, 553, 68, 68, 551, 68, 68, 68, 557, 68, 559, 68, 68, 68, 572, 558, 571, 570, 569, 68, 68, 560, 567, 568, 68, 580, 68, 584, 68, 583, 561, 68, 68, 68, 586, 130, 562, 68, 582, 585, 563, 68, 581, 564, 68, 588, 68, 68, 68, 589, 565, 68, 587, 566, 68, 573, 574, 68, 575, 68, 591, 576, 590, 68, 68, 595, 577, 592, 68, 621, 593, 594, 578, 579, 596, 68, 599, 68, 600, 601, 598, 68, 68, 68, 68, 602, 597, 603, 68, 68, 68, 68, 68, 68, 610, 68, 604, 605, 607, 608, 612, 68, 68, 68, 68, 68, 68, 615, 606, 611, 609, 68, 614, 68, 617, 68, 68, 68, 68, 619, 616, 613, 622, 68, 68, 68, 618, 620, 68, 68, 68, 68, 628, 68, 627, 68, 623, 68, 624, 633, 631, 636, 68, 637, 626, 625, 68, 629, 68, 630, 68, 632, 68, 68, 638, 634, 635, 68, 68, 68, 643, 644, 641, 68, 68, 640, 68, 645, 648, 68, 68, 639, 68, 68, 650, 68, 651, 135, 68, 642, 68, 646, 647, 68, 653, 68, 68, 652, 68, 68, 649, 68, 664, 68, 68, 128, 68, 654, 668, 656, 68, 68, 68, 68, 665, 671, 657, 655, 68, 667, 669, 658, 68, 659, 670, 68, 666, 660, 672, 661, 673, 68, 68, 677, 662, 68, 675, 68, 702, 663, 674, 68, 680, 679, 68, 681, 676, 68, 68, 678, 682, 68, 683, 685, 68, 68, 686, 68, 689, 68, 690, 68, 687, 68, 694, 68, 688, 691, 68, 696, 684, 68, 695, 68, 68, 692, 697, 68, 68, 68, 68, 68, 693, 68, 700, 68, 68, 68, 705, 703, 698, 699, 709, 68, 68, 708, 701, 68, 68, 68, 704, 707, 68, 68, 713, 706, 68, 714, 715, 712, 68, 717, 710, 718, 68, 716, 711, 720, 68, 68, 722, 721, 68, 723, 68, 68, 68, 719, 724, 68, 68, 68, 68, 728, 68, 68, 68, 730, 68, 731, 68, 726, 732, 68, 725, 68, 734, 735, 68, 727, 68, 733, 729, 738, 736, 68, 737, 68, 68, 68, 68, 739, 68, 68, 743, 744, 746, 68, 749, 68, 750, 742, 68, 68, 740, 68, 68, 741, 747, 68, 745, 748, 752, 68, 68, 756, 68, 751, 68, 68, 68, 68, 68, 754, 68, 753, 755, 758, 68, 126, 764, 68, 765, 68, 757, 68, 761, 68, 766, 759, 68, 68, 68, 762, 763, 767, 760, 68, 68, 68, 772, 68, 770, 775, 68, 768, 769, 68, 68, 68, 68, 779, 68, 771, 773, 777, 68, 780, 68, 68, 774, 68, 783, 781, 68, 776, 68, 68, 778, 68, 68, 786, 782, 785, 788, 68, 68, 68, 68, 784, 790, 68, 68, 68, 791, 68, 787, 68, 794, 789, 68, 68, 792, 793, 795, 68, 799, 68, 68, 803, 68, 68, 796, 68, 68, 798, 797, 802, 807, 805, 800, 801, 68, 68, 804, 808, 68, 806, 814, 809, 68, 68, 811, 68, 68, 813, 812, 68, 815, 816, 68, 810, 68, 818, 68, 817, 68, 68, 68, 823, 824, 820, 68, 819, 68, 68, 68, 825, 68, 68, 826, 821, 68, 831, 68, 68, 822, 827, 833, 68, 832, 68, 828, 836, 829, 68, 830, 837, 68, 68, 834, 68, 68, 68, 68, 838, 68, 835, 68, 840, 844, 68, 68, 841, 839, 846, 68, 848, 68, 845, 842, 847, 850, 68, 68, 849, 852, 68, 843, 68, 854, 68, 68, 68, 853, 68, 68, 68, 856, 68, 859, 858, 68, 857, 851, 863, 68, 68, 861, 864, 68, 68, 855, 862, 68, 860, 865, 866, 68, 68, 870, 68, 68, 68, 68, 68, 868, 867, 873, 68, 869, 68, 68, 68, 68, 68, 879, 68, 68, 874, 68, 68, 135, 871, 877, 875, 883, 872, 68, 876, 886, 880, 878, 885, 887, 68, 882, 68, 68, 68, 890, 68, 881, 884, 892, 68, 888, 889, 68, 68, 68, 68, 893, 68, 68, 891, 894, 68, 68, 898, 68, 68, 68, 68, 901, 68, 68, 68, 68, 895, 909, 897, 68, 68, 68, 899, 133, 896, 900, 902, 904, 903, 905, 906, 907, 68, 68, 68, 913, 68, 908, 910, 911, 915, 68, 914, 912, 917, 918, 916, 68, 919, 68, 68, 920, 68, 68, 68, 68, 68, 925, 68, 922, 68, 926, 68, 927, 68, 68, 68, 68, 68, 923, 68, 921, 68, 932, 68, 924, 933, 928, 68, 929, 68, 68, 68, 68, 68, 931, 938, 934, 68, 935, 68, 930, 944, 936, 68, 941, 942, 937, 940, 68, 68, 939, 950, 945, 943, 68, 68, 947, 131, 946, 68, 948, 951, 68, 68, 952, 955, 68, 953, 68, 68, 68, 68, 958, 949, 957, 954, 959, 960, 68, 961, 68, 68, 68, 964, 956, 962, 68, 963, 68, 68, 68, 68, 969, 68, 68, 967, 68, 971, 68, 68, 68, 68, 68, 966, 974, 68, 968, 68, 68, 68, 973, 68, 976, 965, 970, 68, 979, 68, 68, 977, 972, 975, 978, 980, 68, 981, 983, 68, 68, 982, 985, 984, 986, 987, 989, 68, 991, 68, 68, 68, 68, 68, 68, 994, 988, 68, 992, 68, 68, 990, 1000, 997, 68, 68, 998, 68, 68, 995, 1001, 68, 68, 1002, 68, 1005, 1003, 993, 999, 996, 1006, 68, 1007, 68, 68, 68, 68, 68, 68, 1012, 68, 1011, 1008, 1004, 68, 1014, 1015, 68, 68, 68, 68, 68, 1009, 1016, 1010, 68, 1017, 1023, 68, 68, 1013, 68, 68, 68, 68, 1020, 130, 1021, 68, 1018, 1019, 1022, 68, 1027, 68, 68, 1033, 68, 68, 1024, 1032, 1025, 1029, 1030, 1026, 68, 1031, 1028, 1034, 68, 68, 68, 68, 68, 1035, 1043, 68, 1038, 1042, 68, 1037, 1039, 1041, 68, 1040, 68, 1036, 68, 68, 68, 68, 68, 68, 1051, 68, 68, 68, 1054, 1045, 1044, 1053, 1048, 1047, 68, 68, 1046, 68, 1059, 68, 1050, 1052, 1055, 68, 1056, 1061, 1049, 1057, 68, 68, 68, 1064, 1058, 68, 1062, 1060, 68, 68, 68, 1063, 1066, 1068, 1065, 68, 68, 1072, 1067, 68, 68, 68, 68, 1069, 68, 68, 68, 68, 1076, 68, 1077, 1078, 1079, 1070, 68, 1071, 1073, 1074, 1080, 68, 68, 1075, 1083, 68, 68, 68, 1089, 1085, 68, 68, 68, 68, 68, 68, 1082, 1093, 68, 1081, 1084, 1092, 1086, 1087, 1090, 68, 1088, 68, 1094, 1095, 68, 68, 1091, 1097, 68, 68, 1096, 68, 68, 68, 1099, 68, 68, 1098, 68, 68, 1100, 1103, 1108, 68, 1101, 1109, 68, 1104, 1102, 68, 68, 68, 1113, 68, 1107, 1106, 68, 1115, 68, 68, 1105, 1116, 68, 1117, 1118, 68, 68, 1110, 1111, 68, 68, 1112, 1120, 1119, 1122, 68, 1114, 68, 68, 68, 1124, 68, 1126, 1121, 68, 1125, 68, 68, 68, 68, 68, 1123, 1134, 1136, 68, 1131, 68, 68, 1127, 1128, 1129, 68, 1138, 68, 68, 1130, 1141, 68, 1132, 1133, 68, 1135, 1140, 68, 68, 68, 1146, 1139, 68, 1142, 1143, 68, 1137, 1144, 68, 1150, 68, 68, 1153, 1149, 68, 1154, 68, 68, 1152, 68, 1145, 1148, 68, 68, 1155, 68, 68, 68, 1147, 1159, 1151, 1156, 68, 68, 1162, 68, 68, 1158, 68, 68, 68, 1168, 68, 1157, 128, 1160, 1166, 68, 1167, 68, 1163, 1171, 68, 1165, 1174, 1164, 68, 68, 1161, 68, 1169, 1175, 68, 68, 1178, 1170, 68, 1176, 1172, 68, 1173, 1177, 68, 1181, 68, 1180, 68, 68, 68, 1186, 1183, 68, 1188, 1179, 68, 68, 1182, 68, 68, 1184, 68, 1185, 126, 1190, 68, 1191, 68, 1189, 1192, 68, 1193, 68, 1195, 1187, 68, 68, 68, 68, 1194, 1196, 68, 1197, 1199, 68, 68, 1198, 1202, 68, 68, 68, 68, 68, 1200, 68, 68, 1201, 1208, 1204, 1207, 68, 1209, 68, 68, 1211, 1203, 68, 68, 1205, 68, 1206, 1214, 1213, 68, 1210, 1212, 1215, 1216, 68, 68, 1219, 68, 1221, 68, 1217, 68, 68, 1218, 1222, 1223, 68, 68, 68, 1226, 68, 68, 1220, 68, 1224, 68, 68, 68, 68, 1225, 1227, 68, 68, 68, 68, 1229, 68, 1230, 1231, 1235, 68, 1228, 1232, 68, 68, 1236, 1243, 1239, 1233, 1238, 1237, 1234, 1240, 68, 68, 68, 68, 68, 68, 1242, 1244, 1245, 1241, 1248, 68, 68, 68, 68, 68, 1249, 1253, 68, 68, 1250, 68, 1246, 68, 1256, 1247, 68, 68, 1252, 68, 68, 1257, 1251, 68, 1254, 1258, 68, 68, 68, 1259, 1262, 1255, 1264, 68, 68, 1260, 1263, 68, 1261, 1265, 68, 68, 1266, 68, 68, 68, 1267, 68, 68, 1270, 1271, 68, 68, 1275, 68, 68, 1280, 1269, 1277, 68, 1268, 1274, 1272, 68, 1276, 68, 68, 1278, 68, 1279, 1273, 1282, 68, 68, 1283, 68, 1281, 1285, 68, 1287, 68, 68, 1286, 68, 1288, 68, 68, 1289, 1284, 68, 1291, 1292, 68, 68, 1294, 68, 68, 68, 68, 1290, 68, 1297, 1300, 68, 1301, 68, 68, 68, 68, 68, 1296, 1293, 1303, 68, 1299, 1298, 1295, 68, 68, 68, 1302, 68, 1312, 68, 1751, 68, 68, 1305, 1313, 68, 68, 1310, 1304, 1307, 68, 1328, 1306, 1308, 1309, 1314, 68, 1317, 1311, 1315, 1318, 68, 68, 1316, 1319, 68, 1321, 68, 1322, 68, 1323, 68, 68, 1325, 68, 1320, 1326, 68, 68, 1329, 68, 68, 1331, 68, 68, 68, 68, 68, 1334, 68, 1335, 1324, 1333, 1337, 68, 68, 68, 1327, 1340, 68, 1330, 68, 1332, 68, 68, 1336, 1339, 1343, 1344, 68, 1338, 1346, 68, 68, 68, 1348, 1342, 68, 68, 1341, 68, 68, 68, 1345, 68, 1351, 1349, 68, 68, 68, 1350, 68, 1355, 68, 68, 1353, 1360, 1751, 1357, 1347, 1358, 68, 68, 1356, 68, 1354, 1352, 1359, 1361, 68, 1364, 1363, 1365, 68, 1362, 68, 1366, 68, 68, 68, 68, 68, 68, 1371, 1367, 68, 1372, 1369, 1368, 1374, 68, 1370, 1375, 68, 68, 1377, 68, 68, 68, 1376, 68, 1381, 1373, 68, 1384, 68, 68, 1382, 1378, 1383, 68, 1379, 68, 68, 68, 1385, 68, 1380, 1388, 68, 1391, 68, 68, 1751, 1390, 68, 68, 1387, 1392, 1395, 68, 1394, 1386, 68, 68, 1397, 1389, 1393, 1396, 68, 1398, 1399, 68, 68, 1401, 68, 1402, 68, 1400, 1403, 68, 1404, 68, 68, 68, 68, 1410, 68, 1409, 68, 1407, 68, 68, 68, 1413, 68, 68, 68, 1405, 1408, 68, 1414, 1415, 68, 68, 1406, 1418, 68, 1412, 1417, 1411, 1416, 1419, 68, 1420, 68, 68, 68, 68, 68, 68, 1422, 68, 1428, 68, 1426, 68, 68, 1421, 1423, 1424, 1425, 68, 68, 68, 1429, 68, 68, 68, 68, 68, 68, 1427, 68, 1437, 1438, 1432, 1439, 68, 68, 1434, 68, 1431, 1430, 68, 1435, 1440, 68, 1433, 68, 1436, 1441, 68, 1445, 68, 1443, 68, 1442, 68, 1448, 68, 1444, 1449, 68, 68, 1450, 68, 1451, 68, 1446, 1447, 68, 1453, 68, 1457, 68, 1458, 68, 68, 1452, 68, 68, 68, 68, 1454, 68, 1459, 1455, 1465, 1466, 68, 68, 1456, 1460, 68, 68, 1461, 68, 68, 1469, 1462, 1463, 1470, 1464, 1471, 68, 1467, 1473, 68, 68, 1472, 68, 1468, 1475, 68, 1476, 68, 68, 1477, 68, 68, 68, 68, 68, 1480, 68, 1481, 68, 1474, 1479, 68, 1483, 1485, 1478, 68, 1486, 1488, 68, 1489, 68, 1484, 1482, 1490, 68, 1492, 68, 68, 68, 1491, 1487, 1493, 68, 1494, 68, 68, 68, 68, 68, 1495, 68, 1496, 1498, 1497, 68, 1499, 68, 68, 68, 1500, 1502, 68, 1501, 68, 68, 1507, 68, 68, 68, 68, 1505, 1504, 1506, 68, 1503, 1508, 1512, 68, 1513, 1514, 68, 68, 68, 68, 68, 68, 1509, 1516, 1510, 1515, 68, 68, 1511, 1517, 1519, 1751, 1518, 68, 1521, 68, 1520, 1522, 68, 68, 1524, 68, 1526, 68, 1525, 1527, 68, 1523, 1528, 68, 68, 1531, 68, 1529, 1532, 68, 68, 68, 1534, 68, 1535, 1533, 68, 68, 1530, 68, 68, 1538, 68, 1542, 68, 68, 68, 68, 68, 1546, 1536, 1537, 68, 1547, 1544, 1539, 1541, 68, 68, 68, 1540, 68, 68, 1549, 1543, 68, 1545, 68, 68, 68, 1555, 1552, 68, 1548, 1557, 68, 68, 68, 1559, 1550, 1558, 68, 68, 68, 68, 1553, 68, 1551, 1554, 68, 1556, 1562, 1560, 1563, 1561, 1564, 68, 68, 1567, 68, 68, 1566, 68, 68, 68, 1569, 68, 68, 1568, 1571, 68, 1565, 1570, 1575, 68, 1573, 1577, 68, 68, 1580, 68, 68, 1574, 1572, 68, 1581, 1578, 68, 68, 1579, 68, 1576, 68, 1582, 68, 1588, 68, 1586, 1585, 68, 1590, 68, 68, 1583, 68, 1592, 68, 1584, 68, 1591, 68, 1595, 68, 68, 1598, 68, 1599, 68, 1589, 68, 1587, 68, 1593, 68, 1603, 68, 1596, 68, 68, 68, 68, 1594, 1608, 1601, 1606, 1597, 68, 68, 1600, 1604, 1611, 68, 68, 1602, 1612, 68, 68, 68, 1605, 1607, 68, 1614, 1616, 1609, 1610, 1617, 68, 1618, 68, 1619, 68, 1613, 68, 68, 1615, 1621, 68, 1620, 68, 1622, 1623, 68, 68, 1626, 68, 68, 68, 1624, 1629, 68, 1627, 1625, 68, 68, 1628, 68, 68, 1630, 1631, 68, 68, 68, 1751, 68, 68, 1640, 68, 1632, 1638, 1641, 68, 68, 68, 68, 1633, 1634, 1642, 1635, 1636, 1643, 68, 68, 1637, 68, 1639, 1644, 1645, 68, 1647, 68, 68, 1649, 1650, 68, 1651, 68, 1652, 1646, 68, 68, 68, 68, 68, 1658, 68, 1648, 1655, 1656, 1659, 68, 1660, 68, 68, 1653, 1661, 68, 68, 1663, 1664, 1657, 1654, 68, 68, 68, 1662, 68, 68, 1666, 68, 68, 68, 68, 68, 1670, 68, 1665, 68, 68, 68, 68, 1678, 68, 1669, 68, 1667, 1672, 1668, 1679, 1680, 1674, 1671, 68, 1675, 1673, 1677, 68, 1681, 68, 1684, 68, 68, 1688, 1676, 68, 68, 1689, 68, 68, 68, 68, 68, 68, 1683, 1685, 68, 1686, 68, 68, 68, 68, 1682, 1690, 1691, 1687, 1698, 1693, 68, 1692, 68, 1695, 1696, 1699, 68, 1694, 68, 1701, 68, 1697, 68, 68, 1706, 1702, 68, 1703, 1704, 68, 68, 1700, 1707, 68, 68, 1705, 1711, 1708, 68, 68, 68, 68, 68, 68, 68, 1709, 68, 1714, 68, 68, 1718, 1719, 1713, 1710, 68, 1721, 68, 1712, 1751, 1715, 68, 1717, 1716, 1720, 68, 1722, 68, 1724, 1726, 68, 68, 1723, 68, 68, 68, 1725, 68, 1727, 68, 1728, 68, 1730, 68, 1732, 68, 1733, 68, 1736, 68, 68, 68, 1739, 1729, 1731, 1740, 68, 1751, 68, 1742, 68, 68, 1734, 68, 1735, 1741, 1743, 68, 1737, 1738, 1744, 68, 68, 68, 1749, 68, 1745, 1746, 1750, 68, 1747, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1748, 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, 1751, 71, 71, 71, 71, 125, 125, 1751, 1751, 1751, 125, 125, 127, 127, 1751, 1751, 127, 1751, 127, 129, 1751, 1751, 1751, 1751, 1751, 129, 132, 132, 1751, 1751, 1751, 132, 132, 134, 1751, 1751, 1751, 1751, 1751, 134, 136, 136, 1751, 136, 136, 136, 136, 72, 72, 1751, 72, 72, 72, 72, 13, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751 } ; static yyconst flex_int16_t yy_chk[3515] = { 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, 154, 33, 6, 7, 7, 7, 7, 9, 7, 10, 10, 10, 44, 44, 7, 8, 8, 8, 8, 10, 8, 21, 33, 154, 21, 21, 8, 11, 11, 11, 11, 11, 11, 1757, 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, 82, 30, 27, 19, 19, 23, 27, 60, 60, 27, 23, 66, 31, 31, 23, 38, 27, 23, 27, 23, 23, 31, 82, 32, 32, 35, 35, 31, 32, 38, 35, 31, 36, 119, 38, 37, 37, 36, 37, 78, 35, 39, 39, 35, 32, 34, 39, 36, 100, 119, 34, 36, 36, 37, 34, 100, 55, 78, 55, 55, 34, 55, 63, 34, 63, 63, 65, 63, 65, 65, 34, 65, 68, 63, 68, 68, 75, 68, 76, 80, 75, 77, 68, 71, 77, 71, 71, 79, 71, 81, 83, 80, 85, 71, 71, 84, 86, 77, 76, 87, 84, 79, 88, 94, 89, 90, 85, 81, 89, 83, 90, 91, 92, 84, 93, 92, 86, 87, 92, 93, 88, 95, 94, 97, 96, 91, 95, 96, 98, 99, 101, 96, 92, 99, 102, 103, 104, 105, 109, 107, 106, 102, 98, 101, 106, 108, 95, 97, 103, 110, 108, 111, 112, 113, 108, 105, 104, 107, 109, 114, 115, 116, 117, 117, 111, 115, 118, 112, 120, 110, 122, 142, 113, 116, 121, 122, 121, 114, 123, 142, 124, 126, 126, 117, 118, 128, 133, 133, 128, 120, 123, 130, 138, 130, 130, 138, 130, 121, 124, 135, 143, 135, 135, 136, 135, 136, 136, 139, 136, 141, 140, 144, 139, 145, 136, 140, 146, 152, 147, 143, 148, 146, 146, 147, 141, 148, 144, 149, 157, 149, 151, 151, 153, 145, 155, 156, 152, 153, 155, 160, 156, 158, 157, 159, 164, 163, 161, 162, 162, 149, 150, 161, 166, 166, 150, 159, 158, 160, 159, 150, 164, 165, 170, 167, 150, 163, 165, 162, 167, 169, 150, 150, 168, 176, 167, 171, 172, 168, 169, 173, 171, 172, 174, 170, 173, 175, 176, 174, 177, 178, 179, 180, 175, 181, 177, 182, 179, 183, 184, 185, 182, 181, 186, 187, 185, 188, 189, 194, 191, 178, 188, 193, 183, 180, 190, 191, 190, 651, 184, 194, 192, 187, 187, 200, 186, 192, 189, 195, 195, 196, 193, 197, 199, 201, 196, 198, 197, 198, 202, 206, 203, 201, 200, 202, 199, 203, 204, 205, 207, 208, 209, 204, 196, 209, 198, 214, 207, 206, 210, 210, 211, 215, 205, 211, 212, 212, 213, 213, 220, 216, 218, 214, 216, 217, 208, 219, 215, 217, 224, 218, 219, 222, 220, 221, 221, 223, 222, 225, 226, 227, 223, 228, 228, 229, 231, 230, 232, 234, 224, 230, 234, 233, 227, 235, 236, 225, 233, 237, 232, 226, 238, 229, 231, 239, 134, 235, 237, 240, 242, 242, 241, 236, 241, 241, 236, 243, 239, 244, 243, 240, 245, 238, 246, 247, 248, 248, 250, 250, 249, 251, 252, 246, 247, 249, 244, 245, 253, 244, 254, 255, 256, 258, 252, 254, 251, 256, 257, 259, 260, 257, 263, 257, 264, 261, 265, 258, 253, 260, 261, 255, 262, 266, 268, 259, 267, 262, 259, 267, 259, 265, 270, 263, 264, 271, 272, 266, 268, 274, 273, 277, 132, 275, 271, 267, 269, 270, 269, 269, 276, 278, 279, 280, 274, 276, 282, 272, 269, 273, 269, 269, 269, 275, 277, 269, 283, 279, 280, 281, 284, 278, 285, 286, 281, 284, 282, 288, 286, 289, 283, 287, 287, 290, 287, 292, 291, 292, 285, 293, 294, 295, 296, 293, 297, 289, 419, 288, 419, 290, 291, 296, 298, 297, 300, 295, 299, 298, 294, 302, 299, 301, 309, 300, 296, 302, 301, 303, 304, 304, 305, 303, 306, 307, 307, 305, 308, 310, 311, 315, 312, 308, 319, 309, 312, 306, 310, 313, 313, 314, 311, 316, 316, 320, 314, 318, 318, 321, 322, 323, 315, 320, 325, 319, 326, 327, 321, 328, 329, 330, 331, 323, 332, 329, 333, 331, 328, 330, 322, 327, 334, 335, 325, 336, 326, 335, 337, 338, 339, 342, 332, 337, 341, 345, 343, 347, 333, 344, 336, 343, 344, 334, 131, 338, 343, 342, 349, 339, 340, 340, 346, 346, 341, 345, 340, 350, 340, 348, 348, 352, 347, 349, 351, 353, 340, 354, 355, 350, 356, 357, 354, 360, 358, 361, 340, 355, 358, 351, 352, 362, 363, 359, 365, 360, 357, 353, 359, 356, 363, 364, 364, 361, 362, 366, 365, 367, 368, 369, 367, 370, 369, 372, 371, 373, 373, 366, 371, 371, 374, 374, 379, 368, 375, 401, 372, 370, 385, 375, 370, 376, 376, 377, 377, 378, 380, 401, 381, 382, 378, 380, 381, 379, 382, 383, 384, 386, 385, 383, 387, 384, 386, 388, 389, 387, 391, 389, 390, 390, 393, 392, 389, 394, 398, 393, 389, 388, 395, 396, 400, 395, 394, 396, 391, 392, 397, 398, 399, 402, 406, 397, 403, 399, 402, 406, 400, 404, 403, 405, 404, 407, 405, 408, 409, 396, 410, 411, 412, 409, 411, 410, 414, 412, 420, 416, 413, 408, 415, 407, 413, 413, 422, 415, 416, 414, 417, 418, 421, 417, 421, 418, 418, 420, 423, 424, 425, 426, 427, 432, 422, 426, 428, 429, 417, 430, 431, 427, 433, 433, 437, 431, 423, 435, 424, 434, 425, 428, 432, 434, 430, 429, 436, 438, 435, 439, 437, 436, 440, 441, 442, 443, 445, 446, 441, 440, 443, 442, 439, 444, 446, 448, 438, 447, 444, 450, 449, 452, 450, 451, 445, 449, 447, 451, 454, 448, 453, 453, 457, 456, 458, 459, 457, 454, 456, 453, 460, 461, 452, 462, 468, 465, 458, 471, 460, 472, 473, 478, 474, 459, 473, 472, 471, 474, 476, 461, 465, 468, 477, 476, 479, 480, 480, 479, 462, 463, 481, 482, 482, 129, 463, 483, 478, 481, 463, 487, 477, 463, 484, 484, 485, 488, 518, 485, 463, 489, 483, 463, 475, 475, 475, 486, 475, 492, 487, 475, 486, 490, 491, 491, 475, 488, 493, 518, 489, 490, 475, 475, 492, 494, 495, 495, 496, 497, 494, 499, 498, 496, 497, 498, 493, 499, 500, 501, 502, 505, 504, 503, 506, 506, 500, 501, 503, 504, 508, 507, 509, 511, 512, 508, 513, 512, 502, 507, 505, 515, 511, 514, 514, 520, 516, 519, 521, 516, 513, 509, 519, 522, 523, 524, 515, 516, 525, 526, 527, 528, 525, 530, 524, 531, 520, 529, 521, 530, 528, 533, 532, 534, 523, 522, 533, 526, 534, 527, 535, 529, 536, 537, 535, 531, 532, 538, 539, 540, 540, 541, 538, 543, 542, 537, 541, 542, 545, 544, 546, 536, 549, 545, 547, 547, 548, 548, 551, 539, 550, 543, 544, 552, 550, 553, 554, 549, 556, 557, 546, 558, 556, 560, 559, 127, 561, 551, 560, 553, 562, 563, 568, 564, 557, 563, 554, 552, 555, 559, 561, 555, 591, 555, 562, 565, 558, 555, 564, 555, 565, 566, 567, 568, 555, 569, 566, 570, 591, 555, 565, 573, 571, 570, 572, 572, 567, 571, 575, 569, 572, 574, 572, 573, 576, 578, 574, 577, 577, 579, 578, 580, 575, 581, 582, 582, 576, 579, 583, 585, 572, 587, 583, 586, 585, 580, 586, 590, 588, 589, 592, 593, 581, 594, 589, 595, 597, 596, 594, 592, 587, 588, 598, 600, 602, 597, 590, 598, 601, 603, 593, 596, 604, 605, 603, 595, 606, 604, 605, 602, 607, 607, 600, 608, 609, 606, 601, 611, 608, 612, 612, 611, 611, 612, 614, 613, 615, 609, 613, 616, 617, 618, 619, 617, 620, 622, 621, 619, 626, 620, 623, 615, 621, 628, 614, 625, 623, 624, 624, 616, 627, 622, 618, 627, 625, 629, 626, 630, 631, 632, 633, 628, 634, 635, 632, 633, 635, 636, 638, 637, 639, 631, 640, 638, 629, 639, 642, 630, 636, 643, 634, 637, 641, 641, 644, 645, 646, 640, 647, 645, 648, 649, 652, 643, 654, 642, 644, 647, 653, 125, 655, 663, 656, 657, 646, 655, 652, 656, 657, 648, 658, 659, 660, 653, 654, 658, 649, 661, 662, 664, 663, 665, 661, 666, 666, 659, 660, 667, 669, 668, 670, 670, 671, 662, 664, 668, 672, 671, 673, 674, 665, 675, 674, 672, 676, 667, 677, 678, 669, 679, 680, 677, 673, 676, 679, 682, 681, 683, 684, 675, 681, 685, 686, 687, 682, 688, 678, 689, 685, 680, 690, 692, 683, 684, 686, 691, 690, 698, 693, 695, 696, 697, 687, 699, 695, 689, 688, 693, 699, 697, 691, 692, 701, 703, 696, 700, 704, 698, 705, 700, 700, 702, 702, 705, 707, 704, 703, 706, 706, 707, 708, 701, 709, 709, 710, 708, 711, 712, 713, 714, 715, 711, 716, 710, 714, 715, 717, 716, 718, 720, 717, 712, 719, 719, 722, 723, 713, 718, 722, 724, 720, 726, 718, 725, 718, 727, 718, 725, 725, 729, 723, 728, 730, 731, 733, 726, 738, 724, 67, 728, 732, 732, 737, 729, 727, 734, 734, 737, 736, 733, 730, 736, 739, 739, 740, 738, 741, 741, 731, 742, 743, 743, 744, 745, 742, 746, 747, 749, 745, 748, 748, 747, 750, 746, 740, 753, 751, 758, 750, 754, 753, 755, 744, 751, 754, 749, 755, 756, 757, 759, 760, 760, 756, 761, 762, 764, 758, 757, 763, 765, 759, 769, 766, 763, 767, 768, 768, 770, 771, 764, 773, 772, 61, 761, 766, 764, 772, 762, 774, 765, 776, 769, 767, 774, 776, 776, 771, 777, 779, 778, 779, 780, 770, 773, 781, 783, 777, 778, 782, 781, 784, 785, 782, 786, 787, 780, 783, 788, 789, 787, 790, 791, 792, 798, 790, 796, 793, 794, 795, 784, 798, 786, 804, 802, 800, 788, 56, 785, 789, 791, 793, 792, 794, 795, 796, 797, 799, 801, 802, 803, 797, 799, 800, 804, 805, 803, 801, 806, 807, 805, 808, 808, 806, 807, 810, 810, 811, 812, 813, 814, 815, 817, 812, 818, 815, 815, 816, 816, 819, 820, 821, 823, 813, 824, 811, 827, 821, 825, 814, 822, 817, 826, 818, 828, 822, 838, 829, 831, 820, 827, 823, 833, 824, 834, 819, 833, 825, 830, 830, 831, 826, 829, 832, 835, 828, 838, 834, 832, 836, 842, 836, 51, 835, 840, 836, 839, 839, 841, 840, 843, 845, 841, 857, 847, 843, 848, 848, 836, 847, 842, 849, 851, 851, 853, 853, 849, 855, 857, 845, 855, 856, 856, 858, 859, 860, 861, 862, 862, 863, 860, 864, 864, 865, 866, 867, 871, 868, 859, 867, 875, 861, 869, 872, 876, 866, 878, 869, 858, 863, 873, 873, 877, 874, 871, 865, 868, 872, 874, 882, 875, 877, 880, 879, 876, 879, 878, 880, 881, 883, 884, 885, 885, 881, 883, 886, 888, 889, 889, 882, 890, 886, 891, 892, 884, 893, 892, 895, 894, 892, 893, 897, 890, 894, 896, 898, 895, 901, 898, 896, 888, 892, 891, 899, 900, 900, 902, 903, 899, 904, 906, 910, 905, 907, 904, 901, 897, 905, 907, 908, 908, 909, 911, 912, 913, 902, 909, 903, 914, 910, 916, 915, 917, 906, 918, 916, 919, 925, 913, 50, 914, 921, 911, 912, 915, 922, 921, 924, 923, 928, 928, 933, 917, 925, 918, 923, 924, 919, 929, 924, 922, 929, 930, 931, 932, 934, 935, 930, 937, 937, 933, 936, 938, 932, 934, 935, 936, 934, 939, 931, 940, 941, 942, 943, 944, 945, 945, 946, 947, 948, 948, 939, 938, 947, 942, 941, 950, 949, 940, 953, 952, 956, 944, 946, 948, 952, 949, 954, 943, 949, 955, 958, 954, 957, 950, 962, 955, 953, 957, 959, 963, 956, 959, 962, 958, 964, 965, 966, 959, 968, 967, 970, 966, 963, 971, 972, 973, 974, 971, 975, 972, 973, 974, 964, 976, 965, 967, 968, 975, 977, 980, 970, 978, 978, 979, 983, 984, 980, 981, 982, 985, 984, 986, 987, 977, 988, 988, 976, 979, 987, 981, 982, 985, 989, 983, 992, 989, 990, 990, 994, 986, 993, 993, 995, 992, 996, 997, 998, 995, 1001, 999, 994, 1000, 1002, 996, 999, 1003, 1003, 997, 1004, 1005, 1000, 998, 1006, 1004, 1007, 1008, 1008, 1002, 1001, 1009, 1010, 1010, 1012, 1000, 1011, 1011, 1012, 1013, 1017, 1019, 1005, 1006, 1013, 1014, 1007, 1016, 1014, 1018, 1024, 1009, 1016, 1027, 1018, 1020, 1020, 1022, 1017, 1021, 1021, 1023, 1022, 1025, 1026, 1028, 1019, 1027, 1029, 1029, 1024, 1030, 1032, 1023, 1023, 1023, 1031, 1031, 1034, 1036, 1023, 1035, 1035, 1025, 1026, 1039, 1028, 1034, 1037, 1038, 1040, 1040, 1032, 1041, 1036, 1037, 1042, 1030, 1038, 1044, 1045, 1046, 1047, 1048, 1044, 1045, 1049, 1049, 1048, 1047, 1050, 1039, 1042, 1051, 1052, 1050, 1053, 1054, 1055, 1041, 1054, 1046, 1051, 1056, 1057, 1057, 1058, 1059, 1053, 1060, 1062, 1061, 1063, 1063, 1052, 45, 1055, 1061, 1066, 1062, 1064, 1058, 1065, 1065, 1060, 1068, 1059, 1067, 1072, 1056, 1068, 1064, 1069, 1069, 1073, 1071, 1064, 1078, 1070, 1066, 1071, 1067, 1070, 1070, 1074, 1075, 1073, 1076, 1077, 1074, 1079, 1076, 1080, 1081, 1072, 1079, 1082, 1075, 1081, 1088, 1077, 1084, 1078, 40, 1084, 1085, 1085, 1089, 1082, 1086, 1086, 1087, 1087, 1089, 1080, 1090, 1091, 1092, 1094, 1088, 1090, 1096, 1091, 1094, 1098, 1100, 1092, 1099, 1099, 1101, 1102, 1103, 1105, 1096, 1110, 1104, 1098, 1105, 1101, 1104, 1107, 1106, 1111, 1109, 1109, 1100, 1106, 1112, 1102, 1117, 1103, 1111, 1110, 1118, 1107, 1109, 1112, 1114, 1114, 1120, 1119, 1121, 1121, 1126, 1117, 1119, 1122, 1118, 1122, 1123, 1123, 1125, 1127, 1127, 1129, 1128, 1120, 1130, 1125, 1131, 1132, 1133, 1134, 1126, 1128, 1135, 1139, 1142, 1137, 1130, 1144, 1131, 1132, 1137, 1140, 1129, 1133, 1138, 1146, 1138, 1146, 1142, 1134, 1140, 1139, 1135, 1143, 1143, 1145, 1147, 1148, 1149, 1150, 1145, 1147, 1148, 1144, 1151, 1152, 1153, 1155, 1156, 1151, 1152, 1157, 1157, 1158, 1153, 1159, 1149, 14, 1160, 1150, 1161, 1163, 1156, 1160, 1167, 1161, 1155, 1162, 1158, 1162, 1164, 1166, 1165, 1163, 1165, 1159, 1167, 1172, 1169, 1164, 1166, 1170, 1164, 1169, 1173, 1174, 1170, 1176, 1178, 1180, 1172, 1179, 1185, 1176, 1178, 1187, 1181, 1182, 1182, 1183, 1187, 1174, 1184, 1184, 1173, 1181, 1179, 1188, 1183, 1186, 1190, 1185, 1191, 1186, 1180, 1189, 1189, 1195, 1190, 1198, 1188, 1194, 1194, 1196, 1196, 1199, 1195, 1197, 1197, 1200, 1203, 1198, 1191, 1204, 1200, 1201, 1201, 1205, 1204, 1206, 1207, 1208, 1209, 1199, 1211, 1207, 1210, 1210, 1211, 1212, 1214, 1213, 1215, 1218, 1206, 1203, 1213, 1217, 1209, 1208, 1205, 1220, 1219, 1221, 1212, 1222, 1224, 1224, 13, 1225, 1226, 1215, 1225, 1227, 1241, 1221, 1214, 1218, 1228, 1241, 1217, 1219, 1220, 1226, 1229, 1229, 1222, 1227, 1230, 1230, 1232, 1228, 1231, 1231, 1233, 1233, 1234, 1234, 1235, 1235, 1236, 1237, 1237, 1232, 1238, 1238, 1239, 1242, 1242, 1243, 1244, 1244, 1245, 1247, 1246, 1251, 1247, 1248, 1248, 1236, 1246, 1249, 1249, 1250, 1254, 1239, 1252, 1252, 1243, 1255, 1245, 1256, 1258, 1248, 1251, 1256, 1257, 1257, 1250, 1259, 1259, 1260, 1261, 1261, 1255, 1262, 1263, 1254, 1264, 1265, 1266, 1258, 1267, 1264, 1262, 1268, 1269, 1270, 1263, 1271, 1268, 1272, 1276, 1266, 1273, 0, 1270, 1260, 1271, 1273, 1278, 1269, 1274, 1267, 1265, 1272, 1274, 1279, 1279, 1278, 1280, 1283, 1276, 1281, 1281, 1280, 1284, 1286, 1288, 1289, 1290, 1288, 1281, 1294, 1289, 1284, 1283, 1291, 1291, 1286, 1293, 1293, 1295, 1295, 1296, 1297, 1298, 1294, 1299, 1299, 1290, 1301, 1303, 1303, 1302, 1301, 1296, 1302, 1304, 1297, 1305, 1306, 1307, 1304, 1308, 1298, 1307, 1309, 1310, 1313, 1311, 0, 1309, 1310, 1314, 1306, 1311, 1315, 1316, 1314, 1305, 1317, 1315, 1317, 1308, 1313, 1316, 1320, 1320, 1324, 1324, 1327, 1328, 1328, 1330, 1330, 1327, 1332, 1333, 1333, 1334, 1335, 1332, 1336, 1341, 1338, 1339, 1339, 1336, 1341, 1342, 1343, 1345, 1345, 1347, 1349, 1334, 1338, 1348, 1347, 1348, 1355, 1350, 1335, 1351, 1351, 1343, 1350, 1342, 1349, 1352, 1352, 1353, 1353, 1354, 1356, 1357, 1358, 1359, 1355, 1360, 1361, 1361, 1359, 1362, 1363, 1354, 1356, 1357, 1358, 1364, 1365, 1366, 1362, 1367, 1368, 1369, 1370, 1371, 1376, 1360, 1378, 1370, 1371, 1365, 1372, 1372, 1377, 1367, 1379, 1364, 1363, 1380, 1368, 1373, 1373, 1366, 1381, 1369, 1376, 1382, 1380, 1389, 1378, 1386, 1377, 1383, 1383, 1387, 1379, 1385, 1385, 1388, 1386, 1390, 1387, 1395, 1381, 1382, 1391, 1389, 1392, 1393, 1393, 1394, 1397, 1396, 1388, 1398, 1394, 1400, 1403, 1390, 1404, 1395, 1391, 1404, 1405, 1405, 1406, 1392, 1396, 1407, 1408, 1397, 1412, 1410, 1408, 1398, 1400, 1410, 1403, 1411, 1411, 1406, 1414, 1414, 1415, 1412, 1422, 1407, 1416, 1416, 1417, 1417, 1421, 1421, 1424, 1423, 1425, 1426, 1427, 1424, 1429, 1425, 1430, 1415, 1423, 1431, 1427, 1430, 1422, 1432, 1431, 1433, 1433, 1434, 1434, 1429, 1426, 1435, 1436, 1437, 1437, 1445, 1435, 1436, 1432, 1438, 1438, 1441, 1444, 1442, 1443, 1446, 1441, 1442, 1448, 1443, 1445, 1444, 1447, 1446, 1451, 1450, 1452, 1447, 1450, 1453, 1448, 1454, 1455, 1455, 1456, 1458, 1459, 1462, 1453, 1452, 1454, 1460, 1451, 1456, 1461, 1461, 1462, 1463, 1463, 1464, 1465, 1468, 1467, 1470, 1458, 1465, 1459, 1464, 1469, 1477, 1460, 1467, 1469, 0, 1468, 1472, 1472, 1483, 1470, 1474, 1474, 1478, 1478, 1479, 1480, 1480, 1479, 1481, 1481, 1477, 1482, 1482, 1484, 1485, 1490, 1483, 1486, 1486, 1485, 1487, 1490, 1494, 1491, 1487, 1495, 1496, 1484, 1491, 1497, 1495, 1498, 1499, 1499, 1500, 1501, 1502, 1503, 1503, 1494, 1494, 1504, 1504, 1501, 1496, 1498, 1505, 1506, 1507, 1497, 1508, 1509, 1506, 1500, 1510, 1502, 1513, 1511, 1518, 1513, 1509, 1515, 1505, 1516, 1516, 1517, 1519, 1518, 1507, 1517, 1520, 1521, 1524, 1523, 1510, 1525, 1508, 1511, 1535, 1515, 1521, 1519, 1523, 1520, 1524, 1529, 1530, 1530, 1531, 1533, 1529, 1536, 1534, 1538, 1533, 1540, 1543, 1531, 1535, 1537, 1525, 1534, 1539, 1544, 1537, 1541, 1541, 1539, 1545, 1545, 1546, 1538, 1536, 1547, 1546, 1543, 1548, 1549, 1544, 1550, 1540, 1551, 1547, 1552, 1553, 1553, 1551, 1550, 1554, 1555, 1555, 1559, 1548, 1556, 1558, 1558, 1549, 1560, 1556, 1561, 1561, 1562, 1563, 1564, 1564, 1565, 1565, 1554, 1566, 1552, 1567, 1559, 1568, 1569, 1569, 1562, 1570, 1571, 1572, 1573, 1560, 1574, 1567, 1572, 1563, 1575, 1574, 1566, 1570, 1576, 1576, 1579, 1568, 1578, 1578, 1581, 1583, 1571, 1573, 1582, 1581, 1583, 1575, 1575, 1584, 1584, 1585, 1585, 1586, 1586, 1579, 1587, 1594, 1582, 1589, 1589, 1587, 1591, 1591, 1593, 1593, 1595, 1596, 1596, 1597, 1600, 1594, 1601, 1601, 1597, 1595, 1602, 1604, 1600, 1605, 1606, 1602, 1604, 1607, 1608, 1609, 0, 1610, 1613, 1614, 1614, 1605, 1610, 1615, 1615, 1633, 1616, 1630, 1606, 1607, 1616, 1608, 1608, 1620, 1620, 1622, 1609, 1625, 1613, 1622, 1624, 1624, 1627, 1627, 1628, 1630, 1631, 1631, 1632, 1632, 1633, 1625, 1634, 1635, 1638, 1636, 1637, 1639, 1639, 1628, 1636, 1637, 1642, 1642, 1644, 1644, 1648, 1634, 1646, 1646, 1649, 1649, 1652, 1638, 1635, 1653, 1654, 1652, 1648, 1655, 1657, 1654, 1656, 1662, 1663, 1666, 1664, 1662, 1665, 1653, 1667, 1668, 1671, 1669, 1670, 1670, 1657, 1672, 1655, 1664, 1656, 1671, 1672, 1666, 1663, 1673, 1667, 1665, 1669, 1674, 1673, 1675, 1676, 1677, 1679, 1681, 1668, 1676, 1680, 1682, 1681, 1683, 1685, 1684, 1682, 1686, 1675, 1677, 1687, 1679, 1688, 1689, 1690, 1691, 1674, 1683, 1684, 1680, 1691, 1686, 1692, 1685, 1693, 1688, 1689, 1692, 1698, 1687, 1694, 1694, 1695, 1690, 1696, 1697, 1699, 1695, 1702, 1696, 1697, 1699, 1701, 1693, 1700, 1700, 1703, 1698, 1704, 1701, 1705, 1706, 1709, 1704, 1708, 1710, 1714, 1702, 1713, 1708, 1711, 1712, 1712, 1713, 1706, 1703, 1715, 1715, 1719, 1705, 0, 1709, 1718, 1711, 1710, 1714, 1716, 1716, 1717, 1718, 1720, 1720, 1721, 1717, 1722, 1723, 1725, 1719, 1724, 1721, 1727, 1722, 1728, 1724, 1729, 1727, 1730, 1728, 1731, 1731, 1732, 1733, 1734, 1734, 1723, 1725, 1735, 1735, 0, 1736, 1737, 1737, 1745, 1729, 1739, 1730, 1736, 1738, 1738, 1732, 1733, 1739, 1741, 1744, 1746, 1747, 1747, 1741, 1744, 1748, 1748, 1745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1746, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1758, 1758, 0, 1758, 1758, 1758, 1758, 1759, 1759, 0, 0, 0, 1759, 1759, 1760, 1760, 0, 0, 1760, 0, 1760, 1761, 0, 0, 0, 0, 0, 1761, 1762, 1762, 0, 0, 0, 1762, 1762, 1763, 0, 0, 0, 0, 0, 1763, 1764, 1764, 0, 1764, 1764, 1764, 1764, 1765, 1765, 0, 1765, 1765, 1765, 1765, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751 } ; 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 1987 "" #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 2174 "" 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 >= 1752 ) 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] != 3475 ); 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_PERMIT_SMALL_HOLDDOWN) } YY_BREAK case 109: YY_RULE_SETUP #line 310 "./util/configlexer.lex" { YDVAR(1, VAR_USE_SYSLOG) } YY_BREAK case 110: YY_RULE_SETUP #line 311 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_TIME_ASCII) } YY_BREAK case 111: YY_RULE_SETUP #line 312 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_QUERIES) } YY_BREAK case 112: YY_RULE_SETUP #line 313 "./util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE) } YY_BREAK case 113: YY_RULE_SETUP #line 314 "./util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA) } YY_BREAK case 114: YY_RULE_SETUP #line 315 "./util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA_PTR) } YY_BREAK case 115: YY_RULE_SETUP #line 316 "./util/configlexer.lex" { YDVAR(1, VAR_UNBLOCK_LAN_ZONES) } YY_BREAK case 116: YY_RULE_SETUP #line 317 "./util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_INTERVAL) } YY_BREAK case 117: YY_RULE_SETUP #line 318 "./util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_CUMULATIVE) } YY_BREAK case 118: YY_RULE_SETUP #line 319 "./util/configlexer.lex" { YDVAR(1, VAR_EXTENDED_STATISTICS) } YY_BREAK case 119: YY_RULE_SETUP #line 320 "./util/configlexer.lex" { YDVAR(0, VAR_REMOTE_CONTROL) } YY_BREAK case 120: YY_RULE_SETUP #line 321 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_ENABLE) } YY_BREAK case 121: YY_RULE_SETUP #line 322 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_INTERFACE) } YY_BREAK case 122: YY_RULE_SETUP #line 323 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_PORT) } YY_BREAK case 123: YY_RULE_SETUP #line 324 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_USE_CERT) } YY_BREAK case 124: YY_RULE_SETUP #line 325 "./util/configlexer.lex" { YDVAR(1, VAR_SERVER_KEY_FILE) } YY_BREAK case 125: YY_RULE_SETUP #line 326 "./util/configlexer.lex" { YDVAR(1, VAR_SERVER_CERT_FILE) } YY_BREAK case 126: YY_RULE_SETUP #line 327 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_KEY_FILE) } YY_BREAK case 127: YY_RULE_SETUP #line 328 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_CERT_FILE) } YY_BREAK case 128: YY_RULE_SETUP #line 329 "./util/configlexer.lex" { YDVAR(1, VAR_PYTHON_SCRIPT) } YY_BREAK case 129: YY_RULE_SETUP #line 330 "./util/configlexer.lex" { YDVAR(0, VAR_PYTHON) } YY_BREAK case 130: YY_RULE_SETUP #line 331 "./util/configlexer.lex" { YDVAR(1, VAR_DOMAIN_INSECURE) } YY_BREAK case 131: YY_RULE_SETUP #line 332 "./util/configlexer.lex" { YDVAR(1, VAR_MINIMAL_RESPONSES) } YY_BREAK case 132: YY_RULE_SETUP #line 333 "./util/configlexer.lex" { YDVAR(1, VAR_RRSET_ROUNDROBIN) } YY_BREAK case 133: YY_RULE_SETUP #line 334 "./util/configlexer.lex" { YDVAR(1, VAR_MAX_UDP_SIZE) } YY_BREAK case 134: YY_RULE_SETUP #line 335 "./util/configlexer.lex" { YDVAR(1, VAR_DNS64_PREFIX) } YY_BREAK case 135: YY_RULE_SETUP #line 336 "./util/configlexer.lex" { YDVAR(1, VAR_DNS64_SYNTHALL) } YY_BREAK case 136: YY_RULE_SETUP #line 337 "./util/configlexer.lex" { YDVAR(0, VAR_DNSTAP) } YY_BREAK case 137: YY_RULE_SETUP #line 338 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_ENABLE) } YY_BREAK case 138: YY_RULE_SETUP #line 339 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } YY_BREAK case 139: YY_RULE_SETUP #line 340 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) } YY_BREAK case 140: YY_RULE_SETUP #line 341 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_VERSION) } YY_BREAK case 141: YY_RULE_SETUP #line 342 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_IDENTITY) } YY_BREAK case 142: YY_RULE_SETUP #line 343 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_VERSION) } YY_BREAK case 143: YY_RULE_SETUP #line 344 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) } YY_BREAK case 144: YY_RULE_SETUP #line 346 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) } YY_BREAK case 145: YY_RULE_SETUP #line 348 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) } YY_BREAK case 146: YY_RULE_SETUP #line 350 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) } YY_BREAK case 147: YY_RULE_SETUP #line 352 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } YY_BREAK case 148: YY_RULE_SETUP #line 354 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } YY_BREAK case 149: YY_RULE_SETUP #line 356 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT) } YY_BREAK case 150: YY_RULE_SETUP #line 357 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SLABS) } YY_BREAK case 151: YY_RULE_SETUP #line 358 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SIZE) } YY_BREAK case 152: YY_RULE_SETUP #line 359 "./util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) } YY_BREAK case 153: YY_RULE_SETUP #line 360 "./util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) } YY_BREAK case 154: YY_RULE_SETUP #line 361 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_FACTOR) } YY_BREAK case 155: /* rule 155 can match eol */ YY_RULE_SETUP #line 362 "./util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK /* Quoted strings. Strip leading and ending quotes */ case 156: YY_RULE_SETUP #line 365 "./util/configlexer.lex" { BEGIN(quotedstring); LEXOUT(("QS ")); } YY_BREAK case YY_STATE_EOF(quotedstring): #line 366 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 157: YY_RULE_SETUP #line 371 "./util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 158: /* rule 158 can match eol */ YY_RULE_SETUP #line 372 "./util/configlexer.lex" { yyerror("newline inside quoted string, no end \""); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 159: YY_RULE_SETUP #line 374 "./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 160: YY_RULE_SETUP #line 386 "./util/configlexer.lex" { BEGIN(singlequotedstr); LEXOUT(("SQS ")); } YY_BREAK case YY_STATE_EOF(singlequotedstr): #line 387 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 161: YY_RULE_SETUP #line 392 "./util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 162: /* rule 162 can match eol */ YY_RULE_SETUP #line 393 "./util/configlexer.lex" { yyerror("newline inside quoted string, no end '"); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 163: YY_RULE_SETUP #line 395 "./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 164: YY_RULE_SETUP #line 407 "./util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); } YY_BREAK case YY_STATE_EOF(include): #line 409 "./util/configlexer.lex" { yyerror("EOF inside include directive"); BEGIN(inc_prev); } YY_BREAK case 165: YY_RULE_SETUP #line 413 "./util/configlexer.lex" { LEXOUT(("ISP ")); /* ignore */ } YY_BREAK case 166: /* rule 166 can match eol */ YY_RULE_SETUP #line 414 "./util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++;} YY_BREAK case 167: YY_RULE_SETUP #line 415 "./util/configlexer.lex" { LEXOUT(("IQS ")); BEGIN(include_quoted); } YY_BREAK case 168: YY_RULE_SETUP #line 416 "./util/configlexer.lex" { LEXOUT(("Iunquotedstr(%s) ", yytext)); config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(include_quoted): #line 421 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 169: YY_RULE_SETUP #line 425 "./util/configlexer.lex" { LEXOUT(("ISTR(%s) ", yytext)); yymore(); } YY_BREAK case 170: /* rule 170 can match eol */ YY_RULE_SETUP #line 426 "./util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 171: YY_RULE_SETUP #line 428 "./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 434 "./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 172: YY_RULE_SETUP #line 445 "./util/configlexer.lex" { LEXOUT(("unquotedstr(%s) ", yytext)); if(--num_args == 0) { BEGIN(INITIAL); } yylval.str = strdup(yytext); return STRING_ARG; } YY_BREAK case 173: YY_RULE_SETUP #line 449 "./util/configlexer.lex" { ub_c_error_msg("unknown keyword '%s'", yytext); } YY_BREAK case 174: YY_RULE_SETUP #line 453 "./util/configlexer.lex" { ub_c_error_msg("stray '%s'", yytext); } YY_BREAK case 175: YY_RULE_SETUP #line 457 "./util/configlexer.lex" ECHO; YY_BREAK #line 3237 "" 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 >= 1752 ) 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 >= 1752 ) 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 == 1751); 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 457 "./util/configlexer.lex"