#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 166 #define YY_END_OF_BUFFER 167 /* 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[1655] = { 0, 1, 1, 148, 148, 152, 152, 156, 156, 160, 160, 1, 1, 167, 164, 1, 146, 146, 165, 2, 165, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 148, 149, 149, 150, 165, 152, 153, 153, 154, 165, 159, 156, 157, 157, 158, 165, 160, 161, 161, 162, 165, 163, 147, 2, 151, 165, 163, 164, 0, 1, 2, 2, 2, 2, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 148, 0, 152, 0, 159, 0, 156, 160, 0, 163, 0, 2, 2, 163, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 163, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 163, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 68, 164, 164, 164, 164, 164, 6, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 163, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 163, 164, 164, 164, 164, 30, 164, 164, 164, 164, 164, 164, 164, 164, 133, 164, 12, 13, 164, 15, 14, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 126, 164, 164, 164, 164, 164, 3, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 163, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 155, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 33, 164, 164, 164, 164, 164, 164, 164, 164, 164, 34, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 83, 155, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 82, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 66, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 20, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 31, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 32, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 22, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 26, 164, 27, 164, 164, 164, 69, 164, 70, 164, 67, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 5, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 85, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 23, 164, 164, 164, 164, 164, 110, 109, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 35, 164, 164, 164, 164, 164, 164, 164, 164, 72, 71, 164, 164, 164, 164, 164, 164, 164, 106, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 52, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 56, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 108, 164, 164, 164, 164, 164, 164, 164, 164, 164, 4, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 103, 164, 164, 164, 164, 164, 164, 164, 119, 164, 104, 164, 131, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 21, 164, 164, 164, 164, 74, 164, 75, 73, 164, 164, 164, 164, 164, 164, 164, 81, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 105, 164, 164, 164, 164, 130, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 65, 164, 164, 164, 164, 164, 164, 164, 164, 28, 164, 164, 17, 164, 164, 164, 16, 164, 90, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 42, 43, 164, 164, 164, 164, 164, 164, 164, 134, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 76, 164, 164, 164, 164, 164, 164, 80, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 84, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 125, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 94, 164, 98, 164, 164, 164, 164, 79, 164, 164, 117, 164, 164, 164, 164, 132, 164, 164, 164, 164, 164, 164, 164, 139, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 97, 164, 164, 164, 164, 164, 44, 45, 164, 29, 51, 99, 164, 111, 107, 164, 164, 38, 164, 101, 164, 164, 164, 164, 164, 7, 164, 64, 116, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 86, 138, 164, 164, 164, 164, 164, 164, 164, 164, 127, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 100, 164, 37, 39, 164, 164, 164, 164, 164, 63, 164, 164, 164, 164, 121, 18, 19, 164, 164, 164, 164, 164, 164, 164, 61, 164, 164, 164, 164, 164, 164, 164, 164, 164, 123, 120, 164, 164, 164, 164, 164, 164, 164, 164, 36, 164, 164, 164, 164, 164, 164, 164, 11, 164, 164, 164, 164, 164, 164, 164, 164, 10, 164, 164, 40, 164, 129, 122, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 93, 92, 164, 124, 118, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 46, 164, 128, 164, 164, 164, 164, 41, 164, 164, 164, 87, 89, 112, 164, 164, 164, 91, 164, 164, 164, 164, 164, 164, 164, 164, 135, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 24, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 137, 164, 164, 115, 164, 164, 164, 164, 164, 164, 164, 49, 164, 25, 164, 9, 164, 164, 113, 53, 164, 164, 164, 96, 164, 164, 164, 164, 164, 164, 136, 77, 164, 164, 164, 164, 55, 59, 54, 164, 47, 164, 8, 164, 164, 95, 164, 164, 164, 164, 164, 164, 164, 164, 164, 60, 58, 164, 48, 164, 114, 164, 164, 88, 164, 164, 164, 164, 164, 164, 78, 57, 50, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 62, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 102, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 142, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 140, 164, 143, 144, 164, 164, 164, 164, 164, 141, 145, 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[1669] = { 0, 0, 0, 37, 40, 44, 51, 63, 75, 56, 68, 87, 108, 2501, 2145, 50, 3281, 3281, 3281, 129, 94, 70, 104, 130, 90, 92, 115, 127, 95, 84, 111, 137, 148, 50, 150, 155, 157, 163, 171, 178, 2001, 3281, 3281, 3281, 70, 1900, 3281, 3281, 3281, 42, 1856, 1448, 3281, 3281, 3281, 195, 1202, 3281, 3281, 3281, 141, 1174, 3281, 202, 3281, 206, 122, 1044, 212, 120, 0, 223, 0, 0, 103, 147, 154, 158, 192, 199, 207, 208, 205, 209, 221, 218, 220, 224, 225, 229, 230, 231, 238, 251, 236, 247, 250, 237, 248, 256, 259, 167, 263, 254, 249, 264, 265, 271, 273, 274, 125, 275, 277, 284, 278, 281, 285, 288, 286, 289, 292, 296, 298, 1016, 308, 746, 315, 650, 326, 474, 368, 319, 301, 330, 334, 0, 327, 331, 337, 314, 305, 333, 335, 343, 340, 346, 349, 370, 350, 339, 352, 49, 356, 354, 353, 361, 363, 362, 366, 372, 365, 377, 386, 382, 394, 401, 388, 387, 403, 399, 407, 410, 406, 182, 395, 411, 342, 412, 409, 414, 416, 418, 419, 427, 423, 426, 425, 435, 429, 433, 441, 436, 444, 447, 446, 450, 451, 457, 455, 453, 456, 462, 461, 464, 471, 476, 477, 479, 465, 475, 482, 483, 484, 494, 488, 491, 495, 501, 497, 498, 499, 505, 503, 506, 507, 508, 509, 515, 519, 513, 512, 514, 527, 528, 530, 531, 536, 537, 538, 539, 543, 545, 546, 549, 547, 553, 561, 557, 559, 560, 566, 567, 569, 575, 571, 568, 572, 579, 581, 582, 584, 602, 591, 587, 590, 574, 597, 599, 608, 600, 607, 609, 615, 613, 623, 630, 626, 627, 631, 634, 635, 636, 639, 638, 641, 643, 644, 646, 647, 657, 659, 660, 670, 666, 667, 648, 673, 664, 674, 681, 679, 680, 682, 683, 684, 686, 688, 692, 3281, 695, 690, 697, 698, 701, 3281, 699, 702, 703, 710, 704, 721, 706, 708, 714, 723, 718, 720, 726, 728, 748, 731, 729, 739, 737, 732, 757, 736, 759, 738, 743, 750, 762, 741, 766, 767, 768, 769, 773, 775, 778, 779, 772, 783, 780, 786, 788, 789, 793, 794, 800, 801, 803, 806, 812, 809, 816, 822, 811, 818, 820, 826, 825, 828, 819, 835, 831, 827, 834, 843, 838, 840, 850, 848, 849, 847, 853, 855, 859, 860, 862, 866, 863, 867, 872, 877, 865, 871, 879, 878, 886, 893, 894, 887, 895, 902, 903, 880, 904, 890, 900, 907, 909, 910, 911, 912, 915, 916, 922, 919, 923, 921, 928, 930, 932, 934, 936, 937, 940, 943, 941, 942, 951, 952, 954, 956, 955, 958, 962, 957, 964, 3281, 972, 971, 968, 974, 976, 977, 979, 1005, 3281, 981, 3281, 3281, 982, 3281, 3281, 985, 983, 986, 993, 1028, 997, 991, 987, 998, 1007, 1008, 1018, 1011, 1020, 1000, 1031, 1022, 1013, 1023, 1037, 1038, 1034, 1025, 1048, 1051, 1057, 1059, 1055, 1056, 1060, 1061, 1063, 1065, 1064, 1067, 1072, 1078, 1074, 3281, 1076, 1075, 1082, 1077, 1084, 3281, 1085, 1086, 1088, 1090, 1094, 1097, 1096, 1098, 1100, 1101, 1099, 1107, 1113, 1103, 1111, 1127, 1129, 1126, 1112, 1128, 1132, 1114, 1133, 1141, 1139, 1138, 1144, 1148, 1145, 1147, 1150, 1151, 1154, 1152, 1153, 1155, 1178, 1159, 1160, 1161, 1164, 1162, 1168, 1170, 1172, 1173, 1180, 1191, 1190, 1192, 1193, 1197, 1205, 1208, 1198, 1201, 1211, 1212, 1217, 1215, 1219, 1221, 1222, 1229, 1226, 3281, 1236, 1237, 1223, 1232, 1233, 1239, 1243, 1244, 1246, 1247, 1248, 1249, 1251, 1255, 3281, 1254, 1256, 1257, 1261, 1262, 1264, 1270, 1275, 1282, 3281, 1285, 1286, 1278, 1283, 1271, 1289, 1288, 1294, 1295, 1296, 1297, 1301, 1304, 1305, 1293, 1312, 1306, 1308, 1310, 1316, 1317, 1318, 1319, 1325, 1104, 1320, 1326, 1336, 1333, 1335, 1338, 1339, 1340, 1345, 1342, 1346, 1343, 1344, 3281, 239, 1347, 1349, 1350, 1356, 1359, 1358, 1365, 1366, 1367, 1368, 1371, 1373, 1374, 1376, 1377, 1378, 1381, 1385, 1382, 1389, 1391, 1394, 1392, 1398, 1399, 1400, 1403, 1402, 1409, 1406, 1411, 1412, 1416, 1417, 1414, 1418, 1420, 1422, 1425, 1424, 1432, 3281, 1435, 1431, 1434, 1436, 1443, 1451, 1447, 1452, 1449, 1454, 1460, 1457, 1459, 1465, 1467, 1469, 1471, 1461, 1472, 1479, 1482, 1480, 1483, 1484, 1481, 3281, 1491, 1473, 1486, 1489, 1494, 1497, 1496, 1499, 1501, 1507, 1508, 1512, 3281, 1515, 1509, 1516, 1520, 1521, 1525, 1522, 1529, 1530, 1531, 1532, 1533, 1542, 1534, 1539, 1537, 3281, 1551, 1553, 1549, 1560, 1547, 1557, 1558, 1562, 1559, 1563, 1570, 1564, 1567, 1571, 1572, 1568, 1566, 1574, 1575, 1577, 1578, 3281, 1595, 1593, 1596, 1597, 1598, 1606, 1581, 1603, 1605, 1582, 1607, 1610, 1609, 1611, 1613, 1616, 1618, 1619, 1620, 1621, 1622, 1623, 1632, 1638, 1626, 1640, 1630, 1642, 1629, 1646, 1652, 1658, 1654, 3281, 1657, 1659, 1660, 1661, 1662, 1668, 1670, 1664, 1666, 1671, 1672, 1673, 1687, 1674, 1676, 1680, 1684, 1678, 1686, 1689, 1700, 1705, 1690, 1696, 1702, 1688, 1713, 1714, 1716, 1698, 1722, 3281, 1706, 3281, 1721, 1727, 1730, 3281, 1732, 3281, 1734, 3281, 1735, 1736, 1729, 1715, 1739, 1741, 1742, 1748, 1723, 1749, 1745, 1751, 1752, 1754, 1755, 3281, 1758, 1761, 1763, 1759, 1765, 1766, 1768, 1769, 1777, 1771, 1783, 1780, 1782, 1784, 3281, 1787, 1788, 1792, 1793, 1796, 1800, 1798, 1797, 1805, 1801, 1809, 1820, 1807, 1816, 1817, 1818, 1819, 1827, 1821, 1823, 1830, 1832, 1825, 1831, 1833, 1835, 1840, 1841, 1847, 1839, 1845, 1846, 3281, 1850, 1848, 1857, 1860, 1858, 3281, 3281, 1862, 1868, 1870, 1866, 1876, 1873, 1877, 1878, 1884, 1881, 1883, 1888, 1890, 1891, 1893, 1894, 1895, 1897, 1898, 3281, 1904, 1902, 1911, 1909, 1907, 1919, 1910, 1921, 3281, 3281, 1917, 1922, 1926, 1928, 1934, 1932, 1931, 3281, 1933, 1936, 1937, 1938, 1941, 1945, 1939, 1950, 1952, 1955, 1956, 1958, 1964, 1960, 1957, 1961, 1974, 1963, 1977, 3281, 1971, 1979, 1981, 1982, 1983, 1984, 1985, 1986, 1988, 1989, 1990, 1995, 2003, 1999, 2002, 2004, 2007, 2008, 2012, 2014, 2015, 2022, 2023, 3281, 2030, 2016, 2032, 2018, 2036, 2037, 2044, 2033, 2029, 2031, 2040, 2041, 2042, 2054, 2048, 2056, 2050, 3281, 2058, 2062, 2064, 2059, 2068, 2065, 2071, 2069, 2073, 3281, 2075, 2081, 2078, 2083, 2085, 2082, 2088, 2086, 2092, 2093, 2094, 2096, 2099, 2101, 2103, 2105, 2110, 2111, 2118, 2116, 2122, 2128, 2120, 2124, 2132, 2126, 2129, 2130, 2134, 2140, 2139, 2148, 2137, 3281, 2141, 2151, 2153, 2154, 2157, 2158, 2147, 3281, 2163, 3281, 2155, 3281, 2165, 2170, 2166, 2171, 2172, 2173, 2174, 2176, 2184, 2175, 3281, 2182, 2185, 2187, 2188, 3281, 2199, 3281, 3281, 2191, 2193, 2200, 2201, 2204, 2208, 2212, 3281, 2202, 2213, 2214, 2216, 2217, 2219, 2220, 2222, 2221, 2223, 2224, 3281, 2230, 2226, 2227, 2237, 3281, 2239, 2241, 2229, 2242, 2248, 2249, 2251, 2252, 2257, 2263, 2259, 3281, 2260, 2261, 2266, 2262, 2269, 2271, 2267, 2268, 3281, 2282, 2283, 3281, 2272, 2284, 2286, 3281, 2289, 3281, 2290, 2291, 2292, 2294, 2298, 2299, 2301, 2293, 2305, 2310, 2307, 2314, 2311, 3281, 3281, 2316, 2322, 2323, 2318, 2326, 2327, 2329, 3281, 2331, 2333, 2334, 2335, 2336, 2337, 2342, 2340, 2343, 2345, 2346, 2348, 2349, 3281, 2352, 2353, 2354, 2359, 2364, 2361, 3281, 2363, 2366, 2365, 2367, 2370, 2371, 2385, 2387, 2379, 2389, 2391, 2394, 2395, 2397, 2399, 2400, 3281, 2401, 2403, 2404, 2408, 2409, 2405, 2410, 2415, 2418, 2420, 2422, 3281, 2425, 2412, 2428, 2426, 2430, 2432, 2433, 2434, 2436, 2440, 2441, 2443, 2444, 2446, 2454, 2451, 3281, 2448, 3281, 2450, 2461, 2469, 2465, 3281, 2463, 2467, 3281, 2470, 2471, 2472, 2481, 3281, 2483, 2475, 2484, 2486, 2477, 2487, 2493, 3281, 2495, 2497, 2502, 2503, 2490, 2504, 2505, 2496, 2507, 2519, 2511, 3281, 2513, 2515, 2526, 2522, 2523, 3281, 3281, 2527, 3281, 3281, 3281, 2532, 3281, 3281, 2533, 2535, 3281, 2537, 3281, 2544, 2540, 2542, 2524, 2543, 3281, 2550, 3281, 3281, 2547, 2551, 2545, 2555, 2557, 2562, 2564, 2554, 2565, 2567, 2568, 2569, 2570, 2571, 2573, 2576, 2574, 2577, 2582, 2578, 2584, 2586, 2587, 2588, 2590, 2606, 3281, 3281, 2594, 2599, 2596, 2601, 2603, 2607, 2608, 2609, 3281, 2616, 2611, 2622, 2613, 2619, 2623, 2624, 2625, 2631, 2638, 2632, 2634, 2635, 2636, 3281, 2639, 3281, 3281, 2642, 2643, 2648, 2645, 2651, 3281, 2653, 2655, 2664, 2666, 3281, 3281, 3281, 2667, 2657, 2661, 2671, 2672, 2659, 2673, 3281, 2675, 2680, 2682, 2683, 2689, 2692, 2699, 2696, 2701, 3281, 3281, 2702, 2703, 2704, 2684, 2705, 2706, 2708, 2710, 3281, 2712, 2711, 2717, 2716, 2718, 2723, 2719, 3281, 2721, 2726, 2731, 2733, 2734, 2736, 2737, 2739, 3281, 2738, 2741, 3281, 2749, 3281, 3281, 2742, 2751, 2753, 2758, 2760, 2764, 2755, 2761, 2770, 2767, 2768, 3281, 3281, 2771, 3281, 3281, 2769, 2774, 2776, 2778, 2781, 2783, 2780, 2784, 2785, 2788, 2790, 2793, 2796, 2797, 2800, 2802, 2803, 2805, 3281, 2807, 3281, 2806, 2813, 2814, 2819, 3281, 2820, 2815, 2808, 3281, 3281, 3281, 2816, 2830, 2832, 3281, 2834, 2835, 2822, 2837, 2836, 2845, 2838, 2847, 3281, 2848, 2849, 2851, 2852, 2853, 2855, 2857, 2858, 2860, 2859, 2869, 2861, 2873, 2870, 3281, 2878, 2874, 2879, 2882, 2884, 2886, 2887, 2888, 2890, 2891, 2892, 2893, 2900, 2896, 2907, 3281, 2910, 2898, 3281, 2911, 2904, 2915, 2922, 2924, 2926, 2927, 3281, 2929, 3281, 2930, 3281, 2934, 2935, 3281, 3281, 2936, 2938, 2941, 3281, 2942, 2939, 2943, 2945, 2948, 2949, 3281, 3281, 2950, 2952, 2956, 2960, 3281, 3281, 3281, 2966, 3281, 2967, 3281, 2973, 2953, 3281, 2958, 2975, 2961, 2977, 2978, 2979, 2980, 2981, 2983, 3281, 3281, 2988, 3281, 2990, 3281, 2991, 2993, 3281, 3001, 2995, 2997, 2998, 3004, 3005, 3281, 3281, 3281, 3006, 3007, 3011, 3012, 3008, 3013, 3014, 3015, 3019, 3016, 3023, 3032, 3020, 3033, 3040, 3036, 3281, 3034, 3038, 3046, 3047, 3044, 3043, 3051, 3052, 3053, 3054, 3055, 3059, 3060, 3064, 3061, 3062, 3071, 3074, 3077, 3073, 3086, 3084, 3087, 3085, 3088, 3095, 3089, 3093, 3281, 3091, 3097, 3098, 3099, 3100, 3105, 3102, 3113, 3118, 3115, 3122, 3109, 3124, 3125, 3126, 3111, 3131, 3127, 3281, 3134, 3135, 3137, 3138, 3141, 3143, 3144, 3147, 3150, 3145, 3154, 3159, 3160, 3281, 3161, 3281, 3281, 3164, 3151, 3155, 3172, 3176, 3281, 3281, 3281, 3189, 3196, 3203, 3210, 3217, 94, 3224, 3231, 3238, 3245, 3252, 3259, 3266, 3273 } ; static yyconst flex_int16_t yy_def[1669] = { 0, 1654, 1, 1655, 1655, 1656, 1656, 1657, 1657, 1658, 1658, 1659, 1659, 1654, 1660, 1654, 1654, 1654, 1654, 1661, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1662, 1654, 1654, 1654, 1662, 1663, 1654, 1654, 1654, 1663, 1664, 1654, 1654, 1654, 1654, 1664, 1665, 1654, 1654, 1654, 1665, 1666, 1654, 1667, 1654, 1666, 1666, 1660, 1660, 1654, 1668, 1661, 1668, 1661, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1662, 1662, 1663, 1663, 1664, 1664, 1654, 1665, 1665, 1666, 1666, 1667, 1667, 1666, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1666, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1666, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1666, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1666, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1654, 1654, 1660, 1654, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1666, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1666, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1654, 1660, 1660, 1660, 1654, 1660, 1654, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1654, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1654, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1654, 1660, 1654, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1654, 1660, 1660, 1660, 1654, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1654, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1654, 1654, 1660, 1654, 1654, 1654, 1660, 1654, 1654, 1660, 1660, 1654, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1654, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1654, 1654, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1654, 1654, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1654, 1660, 1654, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1654, 1660, 1654, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1654, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1654, 1654, 1654, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1654, 1660, 1654, 1660, 1660, 1654, 1654, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1654, 1660, 1660, 1660, 1660, 1654, 1654, 1654, 1660, 1654, 1660, 1654, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1654, 1660, 1654, 1660, 1654, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1654, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1654, 1660, 1654, 1654, 1660, 1660, 1660, 1660, 1660, 1654, 1654, 0, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654 } ; static yyconst flex_int16_t yy_nxt[3321] = { 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, 125, 46, 47, 125, 44, 48, 69, 44, 46, 47, 70, 49, 48, 57, 58, 59, 68, 68, 49, 51, 52, 53, 54, 60, 18, 57, 58, 59, 123, 123, 55, 51, 52, 53, 54, 60, 18, 68, 104, 215, 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, 137, 87, 65, 69, 94, 68, 78, 70, 86, 68, 88, 66, 72, 79, 72, 72, 133, 72, 89, 68, 96, 68, 72, 73, 68, 90, 130, 130, 91, 80, 136, 68, 97, 81, 179, 92, 82, 93, 83, 84, 98, 68, 68, 101, 68, 138, 99, 102, 68, 68, 100, 68, 68, 105, 109, 140, 112, 68, 116, 106, 117, 68, 107, 103, 110, 68, 113, 111, 139, 108, 114, 115, 68, 121, 169, 118, 68, 122, 127, 119, 127, 127, 240, 127, 120, 72, 68, 72, 72, 132, 72, 132, 132, 68, 132, 67, 135, 67, 67, 68, 67, 68, 68, 68, 141, 67, 72, 142, 72, 72, 147, 72, 68, 143, 68, 68, 72, 73, 68, 68, 144, 145, 146, 68, 68, 68, 149, 153, 148, 154, 68, 68, 68, 133, 150, 156, 151, 152, 157, 155, 159, 68, 68, 68, 68, 68, 161, 163, 68, 160, 68, 164, 158, 68, 167, 165, 166, 68, 68, 68, 168, 171, 173, 172, 170, 68, 162, 68, 68, 68, 175, 68, 68, 182, 176, 68, 184, 174, 68, 68, 68, 178, 68, 68, 183, 189, 68, 177, 180, 181, 68, 191, 68, 123, 123, 133, 185, 186, 187, 68, 125, 188, 192, 125, 130, 130, 190, 198, 68, 127, 193, 127, 127, 132, 127, 132, 132, 72, 132, 72, 72, 133, 72, 197, 194, 68, 196, 68, 135, 68, 195, 68, 201, 68, 68, 204, 68, 68, 202, 203, 68, 205, 199, 68, 68, 212, 68, 68, 68, 200, 68, 214, 213, 217, 216, 68, 68, 68, 243, 68, 68, 218, 131, 206, 68, 223, 68, 224, 207, 220, 219, 68, 221, 208, 222, 228, 68, 229, 209, 226, 68, 68, 68, 230, 210, 211, 225, 227, 68, 68, 232, 233, 235, 68, 231, 68, 237, 68, 236, 238, 68, 68, 234, 68, 68, 68, 68, 239, 68, 241, 68, 242, 68, 68, 244, 247, 251, 68, 245, 68, 68, 68, 253, 68, 255, 259, 254, 68, 246, 68, 68, 249, 250, 261, 248, 68, 258, 252, 68, 257, 133, 68, 256, 262, 68, 68, 267, 68, 260, 68, 68, 68, 264, 266, 268, 68, 68, 129, 68, 68, 263, 273, 269, 265, 271, 68, 274, 275, 270, 68, 68, 68, 276, 68, 277, 278, 68, 68, 68, 280, 272, 281, 68, 283, 279, 68, 285, 282, 68, 68, 287, 68, 68, 68, 286, 68, 284, 68, 292, 68, 68, 68, 68, 68, 297, 294, 68, 68, 68, 68, 289, 288, 291, 68, 290, 296, 298, 302, 293, 299, 295, 68, 68, 300, 68, 68, 301, 306, 307, 308, 68, 68, 68, 68, 309, 304, 305, 68, 314, 68, 68, 68, 303, 68, 316, 315, 313, 68, 312, 310, 319, 68, 311, 68, 68, 68, 317, 322, 321, 323, 68, 68, 68, 68, 329, 68, 68, 318, 68, 68, 330, 320, 328, 68, 324, 68, 68, 325, 68, 335, 326, 68, 327, 331, 133, 68, 332, 348, 333, 334, 346, 68, 337, 68, 68, 336, 68, 351, 338, 339, 345, 68, 68, 68, 355, 347, 349, 68, 340, 68, 341, 342, 343, 350, 352, 344, 353, 68, 354, 358, 68, 68, 361, 362, 68, 68, 360, 356, 68, 68, 68, 357, 68, 68, 367, 68, 359, 68, 68, 368, 68, 68, 68, 380, 128, 364, 365, 366, 363, 371, 373, 68, 370, 68, 68, 369, 374, 375, 68, 377, 68, 68, 372, 376, 68, 379, 378, 68, 68, 383, 384, 382, 381, 68, 68, 68, 68, 68, 68, 389, 68, 388, 68, 386, 68, 390, 68, 392, 387, 68, 393, 68, 68, 68, 385, 68, 68, 68, 68, 395, 68, 396, 68, 391, 68, 394, 402, 397, 68, 401, 403, 400, 68, 398, 68, 68, 399, 68, 404, 409, 68, 407, 68, 68, 405, 68, 68, 408, 419, 406, 68, 68, 68, 68, 421, 68, 410, 68, 420, 418, 126, 411, 68, 412, 68, 417, 422, 426, 413, 427, 414, 68, 423, 68, 425, 424, 68, 430, 415, 428, 68, 68, 68, 68, 436, 431, 68, 133, 416, 68, 432, 435, 68, 68, 68, 429, 440, 68, 434, 439, 68, 433, 68, 68, 437, 443, 441, 68, 68, 448, 445, 438, 442, 449, 68, 68, 451, 68, 444, 452, 68, 453, 454, 68, 446, 68, 68, 447, 450, 455, 68, 456, 68, 68, 68, 460, 68, 458, 459, 68, 68, 68, 68, 461, 464, 68, 457, 462, 68, 68, 465, 467, 68, 463, 68, 466, 468, 68, 470, 473, 469, 68, 68, 68, 68, 476, 475, 68, 472, 68, 471, 474, 478, 68, 68, 483, 68, 68, 480, 68, 68, 68, 479, 484, 485, 68, 68, 477, 482, 486, 481, 68, 68, 68, 68, 491, 487, 488, 490, 489, 68, 68, 493, 495, 68, 492, 494, 68, 68, 68, 496, 499, 497, 502, 68, 500, 68, 68, 68, 501, 503, 68, 504, 68, 68, 68, 68, 498, 508, 68, 68, 513, 505, 68, 509, 68, 68, 68, 515, 516, 506, 510, 68, 507, 68, 512, 68, 511, 68, 518, 68, 68, 514, 517, 68, 68, 68, 68, 522, 523, 525, 526, 519, 521, 524, 68, 68, 520, 68, 133, 68, 68, 68, 528, 531, 532, 68, 529, 68, 535, 533, 537, 68, 527, 530, 68, 68, 536, 68, 538, 68, 68, 534, 68, 539, 68, 68, 68, 541, 68, 68, 68, 554, 552, 553, 68, 540, 68, 551, 542, 549, 68, 68, 550, 68, 565, 562, 571, 543, 68, 566, 68, 68, 563, 544, 68, 564, 68, 545, 567, 124, 546, 68, 568, 68, 570, 68, 68, 547, 68, 569, 548, 68, 555, 556, 68, 557, 574, 68, 558, 572, 68, 68, 577, 559, 573, 575, 579, 68, 576, 560, 561, 68, 578, 581, 68, 582, 580, 583, 68, 68, 68, 584, 68, 68, 68, 585, 68, 68, 68, 591, 68, 586, 587, 589, 590, 68, 593, 68, 68, 68, 68, 68, 595, 592, 588, 68, 597, 68, 68, 68, 599, 68, 596, 68, 602, 598, 594, 68, 600, 68, 68, 68, 68, 68, 68, 608, 68, 68, 607, 601, 68, 611, 603, 604, 68, 68, 68, 68, 724, 605, 606, 609, 613, 610, 612, 616, 614, 617, 615, 68, 68, 68, 68, 618, 619, 68, 68, 623, 622, 624, 621, 68, 68, 620, 68, 625, 628, 68, 68, 630, 68, 68, 631, 133, 68, 68, 68, 68, 68, 626, 627, 633, 68, 68, 68, 68, 643, 68, 629, 632, 647, 68, 636, 68, 634, 68, 68, 133, 644, 650, 635, 68, 646, 68, 637, 648, 638, 649, 652, 645, 639, 651, 640, 68, 68, 68, 68, 641, 653, 654, 68, 68, 642, 659, 68, 131, 658, 655, 68, 665, 657, 68, 660, 664, 68, 68, 656, 661, 68, 662, 68, 668, 68, 669, 68, 68, 68, 667, 666, 68, 670, 673, 68, 674, 675, 68, 68, 663, 671, 68, 68, 679, 68, 676, 672, 677, 68, 68, 678, 68, 68, 68, 68, 688, 68, 684, 682, 68, 68, 68, 68, 680, 681, 687, 68, 68, 686, 68, 683, 692, 693, 685, 694, 68, 68, 691, 689, 690, 68, 696, 697, 68, 695, 698, 702, 68, 68, 699, 68, 68, 700, 68, 68, 701, 704, 705, 68, 68, 68, 68, 68, 703, 707, 708, 68, 709, 712, 68, 68, 68, 711, 68, 706, 68, 714, 68, 710, 713, 715, 68, 68, 68, 68, 68, 726, 720, 721, 716, 68, 68, 717, 723, 719, 718, 727, 725, 68, 729, 68, 68, 722, 68, 68, 68, 733, 68, 68, 68, 68, 68, 68, 728, 68, 68, 741, 732, 731, 742, 735, 68, 730, 68, 68, 734, 738, 736, 743, 739, 68, 68, 68, 68, 737, 740, 68, 746, 68, 68, 751, 68, 68, 68, 744, 745, 68, 68, 747, 753, 68, 755, 756, 749, 68, 748, 68, 68, 750, 68, 752, 757, 759, 68, 68, 68, 754, 68, 68, 762, 758, 68, 761, 764, 68, 760, 68, 68, 766, 68, 767, 68, 68, 68, 763, 68, 765, 68, 770, 68, 68, 768, 769, 775, 771, 779, 68, 68, 772, 68, 68, 68, 129, 774, 773, 776, 778, 781, 68, 777, 780, 784, 68, 783, 68, 785, 68, 68, 787, 68, 790, 782, 68, 791, 68, 68, 68, 788, 789, 792, 68, 786, 68, 794, 68, 793, 68, 68, 68, 799, 797, 796, 800, 795, 68, 68, 68, 68, 68, 68, 801, 68, 802, 809, 68, 798, 68, 807, 803, 68, 808, 68, 68, 804, 68, 805, 68, 806, 811, 810, 813, 817, 68, 68, 68, 814, 819, 68, 812, 821, 68, 68, 815, 820, 823, 68, 68, 68, 818, 825, 68, 816, 826, 827, 68, 68, 68, 68, 68, 68, 822, 829, 68, 831, 68, 830, 824, 68, 832, 835, 834, 836, 68, 837, 68, 828, 68, 833, 68, 838, 839, 840, 68, 68, 68, 68, 843, 68, 68, 68, 846, 68, 68, 68, 842, 68, 68, 68, 850, 68, 68, 841, 68, 68, 844, 854, 68, 68, 856, 847, 864, 845, 848, 851, 849, 857, 852, 853, 68, 858, 68, 68, 68, 68, 861, 855, 863, 859, 68, 860, 68, 68, 68, 867, 68, 68, 68, 862, 68, 865, 869, 68, 872, 68, 68, 68, 68, 68, 68, 866, 868, 68, 870, 879, 68, 68, 871, 68, 875, 873, 876, 877, 874, 68, 880, 68, 878, 68, 881, 882, 884, 68, 888, 885, 883, 886, 887, 68, 889, 68, 890, 891, 68, 68, 68, 68, 68, 68, 896, 68, 893, 68, 897, 68, 898, 68, 68, 68, 68, 68, 894, 68, 892, 68, 903, 68, 895, 904, 899, 68, 900, 68, 68, 68, 68, 68, 902, 909, 905, 914, 906, 68, 901, 68, 907, 68, 912, 68, 908, 911, 68, 68, 910, 917, 915, 913, 916, 918, 68, 68, 68, 68, 922, 921, 919, 920, 68, 68, 68, 923, 926, 924, 68, 925, 68, 68, 927, 68, 928, 68, 68, 68, 930, 929, 68, 932, 68, 68, 937, 931, 68, 934, 936, 68, 68, 938, 68, 68, 933, 68, 68, 941, 935, 68, 68, 943, 68, 940, 68, 946, 68, 68, 939, 68, 68, 950, 68, 952, 942, 951, 945, 944, 68, 954, 947, 68, 956, 68, 68, 68, 948, 949, 68, 68, 959, 957, 953, 68, 68, 955, 965, 68, 68, 68, 962, 68, 68, 963, 966, 960, 68, 967, 68, 972, 68, 968, 958, 970, 961, 964, 971, 68, 68, 68, 68, 68, 68, 977, 68, 976, 68, 969, 68, 979, 980, 68, 68, 68, 68, 973, 68, 974, 981, 975, 68, 68, 68, 988, 982, 978, 68, 68, 68, 68, 985, 68, 983, 986, 984, 987, 992, 128, 68, 68, 989, 68, 998, 68, 993, 994, 990, 68, 991, 68, 995, 68, 999, 996, 68, 997, 1000, 68, 68, 68, 1007, 1008, 68, 1001, 68, 68, 1002, 1004, 1006, 68, 1005, 68, 68, 1003, 68, 68, 68, 1015, 68, 68, 1018, 126, 1010, 68, 1009, 68, 1012, 1020, 68, 1011, 68, 68, 68, 1014, 1016, 1023, 1021, 1017, 68, 1013, 68, 1019, 68, 68, 1024, 1025, 1027, 68, 1022, 68, 1031, 1026, 68, 68, 68, 68, 1028, 68, 68, 68, 68, 1035, 68, 1036, 1037, 1029, 68, 1038, 1030, 1032, 1033, 68, 1042, 68, 1034, 1039, 68, 68, 68, 68, 1046, 68, 68, 1040, 68, 68, 1041, 1051, 1049, 1044, 1043, 1045, 68, 1047, 1050, 68, 1048, 1052, 68, 1054, 68, 1053, 68, 68, 68, 68, 68, 68, 1056, 68, 68, 68, 1060, 1057, 1055, 1065, 68, 1058, 1061, 1066, 68, 1059, 124, 68, 68, 68, 1064, 1070, 68, 68, 1063, 1062, 1072, 68, 1073, 68, 68, 68, 1075, 68, 1074, 1067, 1068, 68, 68, 1069, 1077, 1076, 1079, 1071, 68, 68, 68, 68, 68, 1078, 1081, 68, 68, 1082, 1083, 68, 68, 68, 1080, 68, 1084, 1085, 1086, 68, 1088, 68, 1089, 1087, 1093, 68, 1091, 68, 1095, 68, 68, 1090, 1098, 68, 1092, 68, 68, 1100, 1097, 68, 68, 1096, 68, 1103, 68, 1094, 68, 1107, 1101, 68, 1099, 1106, 68, 68, 68, 1110, 68, 68, 1111, 68, 1105, 1109, 1102, 68, 68, 68, 1104, 68, 1112, 1108, 68, 1119, 68, 1117, 68, 1122, 68, 1113, 1114, 1118, 1116, 68, 68, 1115, 1125, 1120, 1126, 68, 1127, 68, 1121, 68, 1128, 68, 1129, 68, 1124, 68, 1132, 68, 68, 68, 1123, 68, 1134, 68, 1137, 1131, 68, 1133, 68, 68, 68, 1135, 1139, 1141, 68, 1130, 68, 68, 1140, 1142, 68, 1143, 68, 68, 68, 1147, 68, 68, 1136, 1144, 1138, 1145, 68, 1146, 68, 68, 1149, 1148, 1151, 68, 68, 68, 68, 68, 68, 68, 1150, 1156, 1158, 1153, 1157, 68, 1160, 68, 68, 1152, 68, 68, 1159, 1154, 68, 1155, 68, 1161, 1168, 1163, 1164, 1165, 68, 68, 68, 68, 1162, 68, 1170, 1166, 1167, 68, 1173, 1171, 1172, 68, 68, 68, 1175, 68, 68, 1169, 68, 68, 68, 68, 68, 68, 1176, 68, 68, 1185, 68, 68, 1178, 1179, 1174, 1180, 1184, 1181, 68, 1177, 68, 1189, 68, 68, 1182, 1183, 1186, 1187, 1191, 68, 68, 1192, 68, 68, 1188, 1193, 1190, 1194, 68, 1197, 68, 68, 68, 68, 68, 1198, 1201, 68, 68, 68, 68, 1195, 68, 68, 1205, 1202, 1200, 1206, 1196, 1203, 1199, 1207, 1204, 68, 68, 68, 1210, 68, 1208, 1209, 68, 68, 68, 68, 68, 68, 1213, 1214, 1218, 68, 68, 1220, 68, 1212, 1217, 1211, 68, 1215, 68, 1219, 1222, 68, 68, 1221, 1225, 68, 1223, 68, 1216, 68, 1226, 1224, 1228, 68, 68, 1229, 1227, 68, 68, 1233, 68, 1230, 68, 1232, 68, 68, 68, 68, 68, 1235, 1241, 68, 1238, 68, 68, 1231, 68, 68, 1242, 68, 68, 1237, 1244, 68, 68, 68, 1239, 1234, 1236, 1240, 68, 1243, 68, 1253, 68, 68, 68, 68, 68, 1246, 1254, 68, 68, 1258, 1249, 1245, 1247, 1251, 1248, 1255, 68, 1250, 1256, 1252, 1257, 1259, 68, 1260, 68, 1262, 68, 1263, 68, 1261, 1264, 68, 68, 1266, 68, 1267, 68, 68, 68, 1270, 68, 68, 68, 1269, 1272, 68, 68, 68, 1274, 68, 1275, 1265, 68, 1276, 1278, 68, 1268, 68, 1280, 68, 1271, 1281, 68, 68, 1273, 68, 1283, 68, 1277, 68, 68, 68, 1284, 68, 1286, 1282, 1279, 68, 68, 1285, 68, 68, 1290, 68, 1288, 68, 1295, 68, 68, 1292, 1293, 68, 1296, 1291, 1289, 1287, 1298, 1294, 68, 1299, 68, 1300, 68, 1301, 68, 1297, 68, 68, 68, 68, 1305, 1302, 68, 1306, 68, 1303, 1304, 1308, 68, 1309, 68, 68, 1311, 68, 68, 1654, 1310, 68, 1313, 1307, 68, 1315, 68, 68, 68, 1312, 1316, 1317, 1318, 68, 68, 68, 68, 1314, 68, 1319, 1322, 1320, 68, 1324, 68, 1325, 68, 1323, 1326, 1321, 68, 1328, 1329, 68, 68, 68, 1331, 68, 68, 1332, 1327, 1330, 1333, 68, 68, 1335, 68, 1336, 68, 1334, 1337, 68, 1338, 68, 68, 68, 68, 1340, 68, 1341, 1342, 68, 68, 1343, 1344, 68, 68, 1347, 68, 1339, 1345, 1346, 1348, 68, 1349, 68, 68, 1350, 68, 68, 68, 68, 68, 1357, 68, 68, 1355, 68, 68, 68, 1352, 1353, 1354, 68, 1351, 68, 1358, 68, 68, 68, 1367, 68, 1356, 1365, 1366, 68, 1361, 68, 1360, 1363, 68, 1359, 68, 1362, 68, 1364, 1368, 68, 68, 68, 68, 1376, 68, 1373, 68, 1369, 1377, 68, 1370, 1371, 68, 1378, 1372, 68, 68, 68, 68, 1375, 1374, 1380, 1379, 1385, 68, 68, 1386, 68, 68, 68, 1381, 68, 68, 1383, 1382, 68, 68, 1384, 68, 1393, 1394, 68, 1388, 1387, 68, 1397, 68, 1389, 68, 1390, 68, 1391, 68, 1395, 68, 1392, 1399, 68, 1400, 68, 68, 1401, 1396, 1403, 68, 68, 68, 1398, 68, 1404, 1405, 1406, 1402, 68, 1407, 68, 68, 68, 1409, 1654, 1410, 1412, 68, 1408, 1413, 68, 1420, 1414, 1415, 68, 1417, 1411, 68, 1416, 68, 68, 68, 68, 68, 68, 1418, 68, 1419, 68, 68, 68, 1423, 1422, 1425, 68, 68, 68, 68, 1421, 68, 1424, 68, 1430, 1428, 68, 1429, 1431, 1426, 1427, 68, 1435, 68, 68, 1437, 68, 68, 68, 68, 1432, 68, 68, 1436, 1439, 1438, 1433, 1440, 1442, 68, 1434, 68, 1444, 68, 1441, 68, 1445, 1446, 68, 1447, 68, 68, 1443, 1448, 68, 1451, 1452, 68, 68, 68, 68, 68, 1453, 1449, 68, 1450, 68, 1454, 68, 1457, 68, 68, 1461, 68, 68, 68, 1455, 1456, 68, 1465, 68, 1466, 1463, 68, 1458, 1460, 68, 68, 1459, 1462, 68, 1468, 68, 68, 1464, 68, 68, 68, 68, 1467, 1474, 1471, 1476, 68, 68, 68, 68, 1469, 1477, 68, 68, 1482, 68, 1472, 1475, 1473, 1470, 1480, 1478, 1479, 68, 1483, 68, 1481, 68, 68, 68, 68, 68, 1485, 1490, 1484, 1488, 1487, 1486, 68, 1492, 68, 68, 68, 1495, 68, 68, 68, 1489, 68, 1496, 68, 68, 68, 68, 68, 1497, 1491, 1494, 1501, 1500, 1493, 1503, 68, 68, 1498, 1505, 68, 68, 1506, 1499, 1507, 68, 68, 1504, 1510, 68, 1511, 68, 1502, 68, 68, 68, 1515, 68, 68, 68, 68, 1508, 1519, 68, 1517, 68, 1513, 68, 1509, 1654, 1516, 68, 1512, 1522, 68, 1514, 1523, 68, 68, 1518, 1520, 1521, 68, 1525, 1524, 1526, 1654, 1527, 1528, 68, 1529, 68, 1530, 68, 68, 1532, 68, 68, 1533, 1531, 1534, 68, 68, 68, 1537, 68, 68, 1535, 68, 68, 68, 1536, 68, 1538, 1539, 68, 68, 68, 1547, 68, 68, 1545, 1548, 68, 1540, 68, 1541, 68, 68, 1542, 1543, 1549, 1550, 68, 68, 1553, 1544, 1546, 1551, 1552, 68, 1555, 68, 1554, 68, 68, 68, 68, 68, 1562, 68, 1559, 1560, 1556, 1563, 68, 1564, 68, 68, 1557, 68, 1566, 68, 1567, 68, 68, 1558, 1561, 68, 1569, 1565, 68, 68, 68, 68, 68, 1568, 1573, 68, 68, 68, 68, 68, 68, 1570, 1581, 68, 68, 1572, 1571, 68, 1575, 1582, 1577, 1574, 1583, 1578, 1580, 1576, 68, 68, 68, 1587, 68, 1584, 68, 1579, 68, 1591, 1592, 68, 68, 1585, 68, 68, 1586, 1589, 1588, 68, 68, 68, 68, 68, 1594, 1590, 1593, 68, 68, 68, 68, 1604, 68, 1601, 1596, 1598, 1599, 1602, 1595, 68, 1597, 68, 68, 1654, 1605, 68, 1600, 1606, 1603, 1609, 1607, 1610, 68, 68, 68, 68, 68, 68, 1614, 68, 1608, 68, 1611, 68, 1617, 68, 68, 68, 68, 1621, 68, 1654, 1612, 68, 1616, 1613, 1615, 68, 1622, 68, 1620, 68, 1624, 68, 1618, 1619, 68, 1625, 1626, 1623, 68, 1629, 68, 68, 68, 68, 1628, 1627, 1632, 68, 1630, 1631, 68, 68, 1633, 68, 68, 1635, 1636, 68, 1639, 68, 68, 68, 1634, 68, 1642, 1643, 68, 68, 1644, 1645, 68, 68, 1637, 1638, 1646, 68, 68, 68, 1640, 1641, 68, 1654, 1648, 1647, 1654, 1649, 1650, 1652, 68, 1654, 1651, 1653, 68, 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, 1654, 71, 71, 71, 71, 123, 123, 1654, 1654, 1654, 123, 123, 125, 125, 1654, 1654, 125, 1654, 125, 127, 1654, 1654, 1654, 1654, 1654, 127, 130, 130, 1654, 1654, 1654, 130, 130, 132, 1654, 1654, 1654, 1654, 1654, 132, 134, 134, 1654, 134, 134, 134, 134, 72, 72, 1654, 72, 72, 72, 72, 13, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654 } ; static yyconst flex_int16_t yy_chk[3321] = { 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, 151, 33, 6, 7, 7, 7, 7, 9, 7, 10, 10, 10, 44, 44, 7, 8, 8, 8, 8, 10, 8, 21, 33, 151, 21, 21, 8, 11, 11, 11, 11, 11, 11, 1660, 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, 110, 30, 27, 19, 19, 23, 27, 60, 60, 27, 23, 66, 31, 31, 23, 110, 27, 23, 27, 23, 23, 31, 75, 32, 32, 34, 75, 31, 32, 76, 35, 31, 36, 77, 34, 35, 77, 36, 37, 37, 34, 37, 101, 34, 32, 35, 38, 36, 35, 76, 34, 36, 36, 39, 39, 101, 37, 173, 39, 55, 38, 55, 55, 173, 55, 38, 63, 78, 63, 63, 65, 63, 65, 65, 79, 65, 68, 63, 68, 68, 82, 68, 80, 81, 83, 78, 68, 71, 79, 71, 71, 84, 71, 85, 80, 86, 84, 71, 71, 87, 88, 81, 82, 83, 89, 90, 91, 85, 89, 84, 90, 94, 97, 92, 631, 86, 92, 87, 88, 92, 91, 93, 95, 98, 104, 96, 93, 95, 96, 103, 94, 99, 96, 92, 100, 99, 97, 98, 102, 105, 106, 100, 103, 105, 104, 102, 107, 95, 108, 109, 111, 107, 112, 114, 113, 107, 115, 115, 106, 113, 116, 118, 109, 117, 119, 114, 119, 120, 108, 111, 112, 121, 120, 122, 124, 124, 132, 115, 116, 117, 140, 126, 118, 121, 126, 131, 131, 119, 140, 139, 128, 122, 128, 128, 133, 128, 133, 133, 134, 133, 134, 134, 136, 134, 139, 136, 137, 138, 141, 134, 142, 137, 138, 143, 149, 144, 145, 176, 143, 143, 144, 145, 146, 141, 146, 148, 148, 150, 154, 153, 142, 152, 150, 149, 153, 152, 155, 157, 156, 176, 160, 158, 154, 130, 146, 147, 158, 159, 159, 147, 156, 155, 161, 156, 147, 157, 162, 163, 163, 147, 160, 162, 167, 166, 164, 147, 147, 159, 161, 164, 174, 165, 166, 168, 169, 164, 165, 170, 168, 169, 171, 172, 170, 167, 178, 171, 175, 177, 172, 179, 174, 180, 175, 181, 182, 177, 180, 183, 184, 178, 186, 185, 183, 185, 188, 187, 191, 186, 189, 179, 187, 191, 182, 182, 192, 181, 190, 190, 184, 192, 189, 194, 193, 188, 193, 195, 196, 197, 199, 191, 198, 200, 197, 194, 196, 198, 202, 201, 129, 203, 208, 193, 203, 199, 195, 201, 204, 204, 205, 200, 209, 205, 206, 206, 207, 207, 208, 210, 211, 212, 210, 202, 211, 214, 213, 209, 215, 215, 212, 213, 216, 217, 218, 219, 220, 216, 217, 214, 222, 222, 221, 223, 224, 225, 226, 227, 224, 230, 229, 231, 227, 219, 218, 221, 228, 220, 226, 228, 231, 223, 229, 225, 232, 233, 230, 234, 235, 230, 235, 235, 236, 236, 237, 238, 239, 237, 233, 234, 240, 241, 241, 242, 244, 232, 243, 243, 242, 240, 245, 239, 238, 246, 247, 238, 248, 249, 246, 244, 249, 248, 249, 250, 251, 255, 252, 253, 254, 256, 245, 265, 253, 254, 247, 252, 257, 250, 258, 259, 251, 260, 259, 251, 263, 251, 255, 264, 262, 256, 265, 257, 258, 263, 266, 260, 267, 269, 259, 261, 268, 261, 261, 262, 270, 268, 271, 272, 264, 266, 273, 261, 272, 261, 261, 261, 267, 269, 261, 270, 274, 271, 275, 276, 277, 278, 278, 275, 278, 277, 273, 279, 280, 281, 274, 283, 282, 283, 284, 276, 285, 286, 284, 287, 288, 295, 295, 127, 280, 281, 282, 279, 287, 288, 289, 286, 290, 291, 285, 289, 290, 297, 292, 293, 294, 287, 291, 292, 294, 293, 296, 298, 298, 299, 297, 296, 300, 301, 299, 302, 303, 304, 304, 305, 303, 306, 301, 310, 305, 307, 307, 302, 309, 309, 311, 312, 315, 300, 313, 316, 317, 319, 311, 321, 312, 322, 306, 318, 310, 319, 313, 323, 318, 320, 317, 325, 315, 326, 320, 316, 324, 321, 326, 327, 324, 328, 331, 322, 330, 334, 325, 332, 323, 336, 333, 338, 332, 333, 342, 327, 339, 332, 331, 125, 328, 329, 329, 340, 330, 334, 338, 329, 339, 329, 335, 335, 337, 337, 336, 341, 342, 329, 340, 343, 344, 345, 346, 348, 343, 351, 347, 329, 348, 344, 347, 349, 350, 353, 341, 352, 352, 346, 351, 354, 345, 355, 356, 349, 355, 353, 357, 358, 359, 357, 350, 354, 359, 359, 360, 361, 361, 356, 362, 362, 363, 364, 364, 358, 367, 363, 358, 360, 365, 365, 366, 368, 373, 369, 370, 366, 368, 369, 371, 370, 376, 372, 371, 374, 375, 367, 372, 377, 374, 375, 377, 379, 373, 380, 376, 377, 378, 378, 381, 377, 384, 382, 383, 381, 384, 383, 385, 380, 386, 379, 382, 385, 387, 388, 390, 389, 391, 387, 395, 390, 392, 386, 391, 392, 396, 393, 384, 389, 393, 388, 394, 398, 397, 406, 398, 394, 395, 397, 396, 399, 402, 400, 401, 408, 399, 400, 400, 401, 403, 402, 404, 403, 406, 409, 404, 404, 405, 407, 405, 407, 410, 408, 411, 412, 413, 414, 403, 412, 415, 416, 417, 409, 418, 413, 420, 417, 419, 419, 420, 410, 414, 421, 411, 422, 416, 423, 415, 424, 422, 425, 426, 418, 421, 427, 429, 430, 428, 426, 427, 429, 430, 423, 425, 428, 431, 432, 424, 433, 435, 434, 438, 436, 432, 435, 436, 437, 433, 439, 439, 437, 441, 443, 431, 434, 442, 441, 439, 444, 442, 445, 446, 438, 447, 443, 450, 453, 457, 445, 456, 458, 463, 459, 457, 458, 462, 444, 459, 456, 446, 450, 461, 464, 453, 470, 464, 461, 470, 447, 448, 465, 465, 466, 462, 448, 468, 463, 473, 448, 466, 123, 448, 467, 467, 469, 469, 472, 474, 448, 478, 468, 448, 460, 460, 460, 471, 460, 473, 477, 460, 471, 475, 476, 476, 460, 472, 474, 478, 67, 475, 460, 460, 479, 477, 480, 480, 481, 479, 482, 483, 484, 481, 483, 482, 485, 486, 484, 487, 489, 488, 490, 490, 485, 486, 488, 489, 491, 492, 493, 496, 495, 498, 492, 495, 491, 487, 497, 497, 499, 501, 502, 499, 503, 496, 504, 502, 498, 493, 505, 499, 507, 506, 508, 511, 509, 510, 508, 514, 616, 507, 501, 512, 511, 503, 504, 515, 519, 513, 522, 616, 505, 506, 509, 513, 510, 512, 516, 514, 517, 515, 518, 516, 520, 517, 518, 519, 521, 523, 523, 522, 524, 521, 526, 525, 520, 524, 525, 528, 527, 529, 530, 530, 528, 531, 531, 532, 534, 535, 533, 536, 526, 527, 533, 538, 539, 540, 542, 538, 541, 529, 532, 542, 543, 536, 544, 534, 545, 546, 61, 539, 545, 535, 537, 541, 547, 537, 543, 537, 544, 547, 540, 537, 546, 537, 549, 548, 550, 551, 537, 547, 548, 552, 555, 537, 553, 556, 56, 552, 549, 553, 556, 551, 554, 554, 555, 557, 558, 550, 554, 560, 554, 559, 559, 561, 560, 562, 563, 569, 558, 557, 565, 561, 564, 564, 565, 567, 570, 571, 554, 562, 567, 568, 571, 572, 568, 563, 569, 573, 574, 570, 575, 576, 577, 578, 580, 579, 576, 574, 582, 580, 583, 584, 572, 573, 579, 585, 586, 578, 587, 575, 585, 586, 577, 587, 588, 596, 584, 582, 583, 589, 589, 590, 594, 588, 592, 594, 590, 595, 592, 592, 593, 593, 598, 597, 593, 596, 597, 606, 599, 600, 601, 602, 595, 599, 600, 603, 601, 604, 604, 605, 608, 603, 609, 598, 610, 606, 607, 602, 605, 607, 611, 612, 613, 614, 617, 618, 612, 613, 608, 615, 618, 609, 615, 611, 610, 619, 617, 620, 621, 621, 619, 614, 622, 623, 624, 625, 626, 628, 629, 625, 627, 632, 620, 633, 634, 635, 624, 623, 636, 627, 635, 622, 637, 636, 626, 632, 628, 637, 633, 638, 639, 640, 641, 629, 634, 642, 640, 643, 644, 645, 645, 646, 647, 638, 639, 648, 650, 641, 647, 649, 649, 650, 643, 651, 642, 652, 654, 644, 653, 646, 651, 653, 655, 656, 657, 648, 659, 658, 656, 652, 661, 655, 658, 660, 654, 662, 663, 660, 666, 661, 664, 665, 667, 657, 668, 659, 669, 664, 671, 670, 662, 663, 669, 665, 674, 675, 672, 666, 676, 674, 677, 51, 668, 667, 670, 672, 676, 678, 671, 675, 679, 680, 678, 682, 679, 679, 681, 681, 683, 684, 677, 685, 685, 686, 684, 691, 682, 683, 686, 687, 680, 688, 688, 689, 687, 690, 692, 701, 693, 691, 690, 694, 689, 693, 695, 698, 694, 696, 697, 695, 702, 696, 701, 703, 692, 700, 698, 697, 704, 700, 706, 705, 697, 707, 697, 708, 697, 703, 702, 705, 709, 709, 710, 714, 706, 711, 711, 704, 714, 713, 715, 707, 713, 716, 716, 717, 719, 710, 718, 718, 708, 719, 720, 720, 721, 722, 723, 724, 726, 715, 722, 728, 724, 727, 723, 717, 725, 725, 728, 727, 730, 734, 731, 732, 721, 730, 726, 731, 732, 733, 734, 735, 736, 738, 733, 737, 737, 739, 741, 740, 746, 742, 745, 736, 740, 743, 744, 744, 747, 748, 735, 749, 750, 738, 748, 758, 761, 750, 741, 758, 739, 742, 745, 743, 752, 746, 747, 753, 752, 752, 754, 755, 756, 755, 749, 757, 753, 759, 754, 760, 757, 762, 761, 764, 763, 765, 756, 766, 759, 763, 767, 766, 768, 769, 770, 771, 772, 773, 760, 762, 776, 764, 773, 780, 778, 765, 774, 769, 767, 770, 771, 768, 775, 774, 777, 772, 779, 775, 776, 778, 781, 782, 779, 777, 780, 781, 782, 783, 784, 784, 786, 786, 783, 787, 788, 789, 790, 791, 793, 788, 794, 791, 791, 792, 792, 795, 796, 797, 799, 789, 800, 787, 803, 797, 801, 790, 798, 793, 802, 794, 804, 798, 811, 805, 808, 796, 803, 799, 808, 800, 809, 795, 815, 801, 806, 806, 810, 802, 805, 807, 818, 804, 811, 809, 807, 810, 812, 812, 813, 831, 814, 816, 815, 813, 814, 820, 816, 836, 818, 822, 820, 821, 821, 830, 822, 824, 824, 826, 826, 828, 829, 829, 828, 832, 831, 833, 834, 836, 830, 838, 833, 835, 835, 837, 837, 839, 840, 832, 841, 842, 840, 834, 844, 847, 842, 845, 839, 846, 846, 848, 849, 838, 850, 851, 850, 853, 852, 841, 851, 845, 844, 852, 854, 847, 855, 856, 856, 854, 857, 848, 849, 859, 860, 860, 857, 853, 861, 862, 855, 864, 863, 866, 865, 863, 864, 868, 863, 865, 861, 867, 866, 871, 871, 869, 867, 859, 869, 862, 863, 870, 872, 873, 874, 875, 870, 877, 876, 878, 875, 881, 868, 876, 878, 879, 879, 882, 880, 883, 872, 884, 873, 880, 874, 888, 885, 886, 887, 881, 877, 889, 890, 887, 893, 884, 892, 882, 885, 883, 886, 892, 50, 894, 896, 888, 895, 899, 899, 893, 894, 889, 902, 890, 900, 895, 901, 900, 895, 904, 896, 901, 903, 905, 906, 907, 908, 908, 902, 909, 907, 903, 905, 906, 910, 905, 911, 912, 904, 913, 914, 915, 915, 916, 917, 919, 45, 910, 920, 909, 919, 912, 921, 923, 911, 922, 925, 921, 914, 916, 924, 922, 917, 929, 913, 924, 920, 926, 930, 925, 926, 929, 931, 923, 932, 933, 926, 935, 934, 937, 933, 930, 938, 939, 940, 943, 938, 941, 939, 940, 931, 942, 941, 932, 934, 935, 944, 945, 945, 937, 942, 946, 947, 951, 948, 949, 950, 952, 943, 954, 949, 944, 954, 952, 947, 946, 948, 957, 950, 953, 953, 951, 955, 955, 958, 958, 957, 959, 960, 961, 962, 963, 964, 960, 965, 966, 967, 964, 961, 959, 968, 968, 962, 965, 969, 970, 963, 40, 971, 969, 972, 967, 973, 973, 974, 966, 965, 975, 975, 976, 976, 977, 982, 978, 984, 977, 970, 971, 978, 979, 972, 981, 979, 983, 974, 989, 981, 990, 983, 988, 982, 985, 985, 986, 986, 987, 991, 992, 993, 984, 987, 988, 988, 988, 995, 989, 997, 990, 988, 994, 994, 992, 996, 996, 999, 1002, 991, 1000, 1000, 993, 1001, 1004, 1002, 999, 1003, 1006, 997, 1005, 1005, 1007, 995, 1009, 1010, 1003, 1011, 1001, 1009, 1010, 1014, 1012, 1013, 1013, 1016, 1014, 1015, 1007, 1012, 1004, 1017, 1018, 1019, 1006, 1020, 1015, 1011, 1021, 1022, 1022, 1020, 1023, 1024, 1024, 1016, 1017, 1021, 1019, 1025, 1026, 1018, 1027, 1023, 1028, 1028, 1029, 1027, 1023, 1031, 1029, 1029, 1030, 1032, 1026, 1034, 1033, 1030, 1035, 1036, 1025, 1033, 1035, 1037, 1038, 1032, 1041, 1034, 1039, 1038, 1043, 1036, 1040, 1043, 14, 1031, 1049, 1040, 1041, 1044, 1044, 1045, 1045, 1046, 1053, 1049, 1047, 1048, 1037, 1046, 1039, 1047, 1051, 1048, 1055, 1057, 1053, 1051, 1056, 1056, 1058, 1059, 1060, 1061, 1064, 1062, 1055, 1061, 1063, 1058, 1062, 1066, 1066, 1063, 1067, 1057, 1068, 1069, 1064, 1059, 1074, 1060, 1075, 1066, 1076, 1068, 1069, 1071, 1071, 1076, 1077, 1082, 1067, 1078, 1078, 1074, 1075, 1079, 1082, 1079, 1080, 1080, 1083, 1084, 1084, 1085, 1086, 1077, 1087, 1088, 1090, 1089, 1091, 1092, 1085, 1095, 1096, 1095, 1101, 1094, 1087, 1088, 1083, 1089, 1094, 1090, 1097, 1086, 1099, 1100, 1100, 1102, 1091, 1092, 1096, 1097, 1102, 1103, 1104, 1103, 1105, 1106, 1099, 1104, 1101, 1105, 1107, 1108, 1109, 1111, 1112, 1114, 1108, 1109, 1113, 1113, 1117, 1118, 1115, 1106, 1116, 1123, 1116, 1114, 1112, 1117, 1107, 1115, 1111, 1118, 1115, 1120, 1121, 1124, 1123, 1125, 1120, 1121, 1127, 1129, 1130, 1131, 1136, 1132, 1127, 1129, 1133, 1133, 1134, 1135, 1135, 1125, 1132, 1124, 1137, 1130, 1139, 1134, 1137, 1138, 1141, 1136, 1140, 1140, 1138, 1144, 1131, 1147, 1141, 1139, 1145, 1145, 1146, 1146, 1144, 1148, 1149, 1150, 1150, 1147, 1152, 1149, 1153, 1154, 1155, 1156, 1157, 1153, 1159, 1159, 1156, 1158, 1160, 1148, 1161, 1162, 1160, 1163, 1164, 1155, 1162, 1166, 1167, 1168, 1157, 1152, 1154, 1158, 1169, 1161, 1171, 1173, 1173, 1170, 1175, 1174, 1176, 1164, 1174, 1177, 1178, 1178, 1168, 1163, 1166, 1170, 1167, 1175, 1181, 1169, 1176, 1171, 1177, 1179, 1179, 1180, 1180, 1182, 1182, 1183, 1183, 1181, 1184, 1184, 1185, 1186, 1186, 1187, 1187, 1188, 1190, 1191, 1191, 1192, 1195, 1190, 1193, 1193, 1194, 1196, 1195, 1203, 1196, 1185, 1197, 1197, 1198, 1198, 1188, 1199, 1200, 1200, 1192, 1202, 1202, 1205, 1194, 1204, 1204, 1206, 1197, 1207, 1208, 1209, 1205, 1210, 1207, 1203, 1199, 1211, 1212, 1206, 1213, 1214, 1211, 1215, 1209, 1219, 1216, 1221, 1217, 1213, 1214, 1216, 1217, 1212, 1210, 1208, 1221, 1215, 1222, 1222, 1226, 1223, 1224, 1224, 1227, 1219, 1223, 1229, 1230, 1231, 1229, 1224, 1235, 1230, 1238, 1226, 1227, 1232, 1232, 1234, 1234, 1236, 1236, 1237, 1239, 13, 1235, 1246, 1238, 1231, 1240, 1240, 1242, 1249, 1243, 1237, 1242, 1243, 1244, 1244, 1245, 1247, 1248, 1239, 1250, 1245, 1248, 1246, 1252, 1250, 1254, 1251, 1255, 1249, 1252, 1247, 1251, 1255, 1256, 1257, 1258, 1276, 1258, 1256, 1261, 1261, 1254, 1257, 1265, 1265, 1268, 1269, 1269, 1271, 1271, 1268, 1273, 1274, 1274, 1275, 1277, 1273, 1284, 1276, 1282, 1277, 1279, 1279, 1283, 1282, 1283, 1289, 1285, 1286, 1286, 1275, 1284, 1285, 1287, 1287, 1288, 1288, 1290, 1289, 1291, 1292, 1293, 1294, 1295, 1296, 1296, 1298, 1294, 1297, 1299, 1301, 1291, 1292, 1293, 1300, 1290, 1302, 1297, 1303, 1304, 1305, 1306, 1306, 1295, 1304, 1305, 1310, 1300, 1312, 1299, 1302, 1311, 1298, 1313, 1301, 1314, 1303, 1307, 1307, 1315, 1316, 1317, 1317, 1320, 1314, 1322, 1310, 1319, 1319, 1311, 1312, 1323, 1320, 1313, 1321, 1324, 1325, 1326, 1316, 1315, 1322, 1321, 1327, 1327, 1329, 1328, 1330, 1331, 1332, 1323, 1328, 1334, 1325, 1324, 1337, 1338, 1326, 1340, 1338, 1339, 1339, 1330, 1329, 1341, 1343, 1343, 1331, 1344, 1332, 1351, 1334, 1355, 1340, 1352, 1337, 1345, 1345, 1346, 1346, 1350, 1350, 1341, 1352, 1353, 1354, 1356, 1344, 1358, 1353, 1354, 1355, 1351, 1359, 1356, 1360, 1361, 1372, 1359, 0, 1360, 1362, 1362, 1358, 1363, 1363, 1372, 1364, 1365, 1365, 1369, 1361, 1364, 1366, 1366, 1369, 1370, 1371, 1373, 1374, 1370, 1375, 1371, 1376, 1379, 1378, 1375, 1374, 1378, 1381, 1380, 1382, 1384, 1373, 1386, 1376, 1383, 1383, 1381, 1387, 1382, 1384, 1379, 1380, 1388, 1389, 1389, 1390, 1391, 1391, 1392, 1395, 1393, 1386, 1396, 1401, 1390, 1393, 1392, 1387, 1395, 1398, 1398, 1388, 1402, 1402, 1403, 1396, 1407, 1403, 1404, 1404, 1405, 1405, 1408, 1401, 1406, 1406, 1409, 1410, 1410, 1411, 1417, 1409, 1414, 1411, 1407, 1418, 1408, 1419, 1414, 1420, 1418, 1423, 1421, 1422, 1422, 1424, 1425, 1417, 1417, 1426, 1426, 1427, 1427, 1424, 1428, 1419, 1421, 1429, 1430, 1420, 1423, 1431, 1429, 1432, 1433, 1425, 1434, 1438, 1436, 1445, 1428, 1436, 1432, 1439, 1439, 1440, 1444, 1449, 1430, 1440, 1441, 1443, 1449, 1455, 1433, 1438, 1434, 1431, 1444, 1441, 1443, 1450, 1450, 1451, 1445, 1453, 1454, 1457, 1456, 1459, 1453, 1458, 1451, 1456, 1455, 1454, 1458, 1460, 1460, 1462, 1463, 1464, 1464, 1465, 1466, 1457, 1467, 1465, 1468, 1469, 1471, 1470, 1473, 1466, 1459, 1463, 1470, 1469, 1462, 1472, 1472, 1475, 1467, 1474, 1474, 1478, 1475, 1468, 1477, 1477, 1479, 1473, 1480, 1480, 1481, 1481, 1471, 1482, 1483, 1484, 1485, 1485, 1486, 1487, 1488, 1478, 1489, 1490, 1487, 1494, 1483, 1489, 1479, 0, 1486, 1497, 1482, 1491, 1491, 1484, 1493, 1493, 1496, 1488, 1490, 1490, 1498, 1496, 1494, 1497, 0, 1498, 1499, 1499, 1500, 1500, 1501, 1501, 1502, 1504, 1504, 1506, 1506, 1502, 1508, 1508, 1509, 1512, 1513, 1513, 1517, 1509, 1514, 1516, 1518, 1512, 1519, 1514, 1516, 1520, 1521, 1524, 1525, 1525, 1536, 1521, 1526, 1526, 1517, 1538, 1518, 1527, 1540, 1519, 1519, 1527, 1531, 1531, 1533, 1536, 1520, 1524, 1533, 1535, 1535, 1539, 1539, 1538, 1541, 1542, 1543, 1544, 1545, 1546, 1546, 1543, 1544, 1540, 1549, 1549, 1551, 1551, 1553, 1541, 1554, 1554, 1557, 1556, 1558, 1559, 1542, 1545, 1556, 1558, 1553, 1560, 1561, 1565, 1566, 1569, 1557, 1565, 1567, 1568, 1570, 1571, 1572, 1574, 1559, 1573, 1573, 1577, 1561, 1560, 1575, 1567, 1574, 1569, 1566, 1575, 1570, 1572, 1568, 1576, 1578, 1582, 1579, 1580, 1576, 1583, 1571, 1579, 1584, 1585, 1587, 1586, 1577, 1584, 1585, 1578, 1582, 1580, 1588, 1589, 1590, 1591, 1592, 1587, 1583, 1586, 1593, 1594, 1596, 1597, 1597, 1595, 1594, 1589, 1591, 1592, 1595, 1588, 1598, 1590, 1601, 1599, 0, 1598, 1600, 1593, 1599, 1596, 1602, 1600, 1603, 1603, 1605, 1602, 1604, 1606, 1608, 1607, 1611, 1601, 1609, 1604, 1607, 1611, 1612, 1613, 1614, 1615, 1615, 1617, 0, 1605, 1616, 1609, 1606, 1608, 1622, 1616, 1626, 1614, 1618, 1618, 1620, 1612, 1613, 1619, 1619, 1620, 1617, 1621, 1623, 1623, 1624, 1625, 1628, 1622, 1621, 1626, 1627, 1624, 1625, 1630, 1631, 1627, 1632, 1633, 1630, 1631, 1634, 1634, 1635, 1636, 1639, 1628, 1637, 1637, 1638, 1638, 1648, 1639, 1640, 1640, 1649, 1632, 1633, 1641, 1641, 1642, 1644, 1635, 1636, 1647, 0, 1644, 1642, 0, 1647, 1648, 1650, 1650, 0, 1649, 1651, 1651, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1661, 1661, 0, 1661, 1661, 1661, 1661, 1662, 1662, 0, 0, 0, 1662, 1662, 1663, 1663, 0, 0, 1663, 0, 1663, 1664, 0, 0, 0, 0, 0, 1664, 1665, 1665, 0, 0, 0, 1665, 1665, 1666, 0, 0, 0, 0, 0, 1666, 1667, 1667, 0, 1667, 1667, 1667, 1667, 1668, 1668, 0, 1668, 1668, 1668, 1668, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654 } ; 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 1910 "" #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 2097 "" 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 >= 1655 ) 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] != 3281 ); 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_MIN_TTL) } YY_BREAK case 44: YY_RULE_SETUP #line 244 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_HOST_TTL) } YY_BREAK case 45: YY_RULE_SETUP #line 245 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_LAME_TTL) } YY_BREAK case 46: YY_RULE_SETUP #line 246 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_SLABS) } YY_BREAK case 47: YY_RULE_SETUP #line 247 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) } YY_BREAK case 48: YY_RULE_SETUP #line 248 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) } YY_BREAK case 49: YY_RULE_SETUP #line 249 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) } YY_BREAK case 50: YY_RULE_SETUP #line 250 "./util/configlexer.lex" { YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) } YY_BREAK case 51: YY_RULE_SETUP #line 251 "./util/configlexer.lex" { YDVAR(1, VAR_JOSTLE_TIMEOUT) } YY_BREAK case 52: YY_RULE_SETUP #line 252 "./util/configlexer.lex" { YDVAR(1, VAR_DELAY_CLOSE) } YY_BREAK case 53: YY_RULE_SETUP #line 253 "./util/configlexer.lex" { YDVAR(1, VAR_TARGET_FETCH_POLICY) } YY_BREAK case 54: YY_RULE_SETUP #line 254 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) } YY_BREAK case 55: YY_RULE_SETUP #line 255 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_LARGE_QUERIES) } YY_BREAK case 56: YY_RULE_SETUP #line 256 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_GLUE) } YY_BREAK case 57: YY_RULE_SETUP #line 257 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) } YY_BREAK case 58: YY_RULE_SETUP #line 258 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) } YY_BREAK case 59: YY_RULE_SETUP #line 259 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_REFERRAL_PATH) } YY_BREAK case 60: YY_RULE_SETUP #line 260 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) } YY_BREAK case 61: YY_RULE_SETUP #line 261 "./util/configlexer.lex" { YDVAR(1, VAR_USE_CAPS_FOR_ID) } YY_BREAK case 62: YY_RULE_SETUP #line 262 "./util/configlexer.lex" { YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) } YY_BREAK case 63: YY_RULE_SETUP #line 263 "./util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_ADDRESS) } YY_BREAK case 64: YY_RULE_SETUP #line 264 "./util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_DOMAIN) } YY_BREAK case 65: YY_RULE_SETUP #line 265 "./util/configlexer.lex" { YDVAR(1, VAR_PREFETCH_KEY) } YY_BREAK case 66: YY_RULE_SETUP #line 266 "./util/configlexer.lex" { YDVAR(1, VAR_PREFETCH) } YY_BREAK case 67: YY_RULE_SETUP #line 267 "./util/configlexer.lex" { YDVAR(0, VAR_STUB_ZONE) } YY_BREAK case 68: YY_RULE_SETUP #line 268 "./util/configlexer.lex" { YDVAR(1, VAR_NAME) } YY_BREAK case 69: YY_RULE_SETUP #line 269 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_ADDR) } YY_BREAK case 70: YY_RULE_SETUP #line 270 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_HOST) } YY_BREAK case 71: YY_RULE_SETUP #line 271 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_PRIME) } YY_BREAK case 72: YY_RULE_SETUP #line 272 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_FIRST) } YY_BREAK case 73: YY_RULE_SETUP #line 273 "./util/configlexer.lex" { YDVAR(0, VAR_FORWARD_ZONE) } YY_BREAK case 74: YY_RULE_SETUP #line 274 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_ADDR) } YY_BREAK case 75: YY_RULE_SETUP #line 275 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_HOST) } YY_BREAK case 76: YY_RULE_SETUP #line 276 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_FIRST) } YY_BREAK case 77: YY_RULE_SETUP #line 277 "./util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) } YY_BREAK case 78: YY_RULE_SETUP #line 278 "./util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) } YY_BREAK case 79: YY_RULE_SETUP #line 279 "./util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL) } YY_BREAK case 80: YY_RULE_SETUP #line 280 "./util/configlexer.lex" { YDVAR(1, VAR_HIDE_IDENTITY) } YY_BREAK case 81: YY_RULE_SETUP #line 281 "./util/configlexer.lex" { YDVAR(1, VAR_HIDE_VERSION) } YY_BREAK case 82: YY_RULE_SETUP #line 282 "./util/configlexer.lex" { YDVAR(1, VAR_IDENTITY) } YY_BREAK case 83: YY_RULE_SETUP #line 283 "./util/configlexer.lex" { YDVAR(1, VAR_VERSION) } YY_BREAK case 84: YY_RULE_SETUP #line 284 "./util/configlexer.lex" { YDVAR(1, VAR_MODULE_CONF) } YY_BREAK case 85: YY_RULE_SETUP #line 285 "./util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR) } YY_BREAK case 86: YY_RULE_SETUP #line 286 "./util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR_FILE) } YY_BREAK case 87: YY_RULE_SETUP #line 287 "./util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_FILE) } YY_BREAK case 88: YY_RULE_SETUP #line 288 "./util/configlexer.lex" { YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) } YY_BREAK case 89: YY_RULE_SETUP #line 289 "./util/configlexer.lex" { YDVAR(1, VAR_TRUSTED_KEYS_FILE) } YY_BREAK case 90: YY_RULE_SETUP #line 290 "./util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR) } YY_BREAK case 91: YY_RULE_SETUP #line 291 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_OVERRIDE_DATE) } YY_BREAK case 92: YY_RULE_SETUP #line 292 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MIN) } YY_BREAK case 93: YY_RULE_SETUP #line 293 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MAX) } YY_BREAK case 94: YY_RULE_SETUP #line 294 "./util/configlexer.lex" { YDVAR(1, VAR_BOGUS_TTL) } YY_BREAK case 95: YY_RULE_SETUP #line 295 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) } YY_BREAK case 96: YY_RULE_SETUP #line 296 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_PERMISSIVE_MODE) } YY_BREAK case 97: YY_RULE_SETUP #line 297 "./util/configlexer.lex" { YDVAR(1, VAR_IGNORE_CD_FLAG) } YY_BREAK case 98: YY_RULE_SETUP #line 298 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_LOG_LEVEL) } YY_BREAK case 99: YY_RULE_SETUP #line 299 "./util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SIZE) } YY_BREAK case 100: YY_RULE_SETUP #line 300 "./util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SLABS) } YY_BREAK case 101: YY_RULE_SETUP #line 301 "./util/configlexer.lex" { YDVAR(1, VAR_NEG_CACHE_SIZE) } YY_BREAK case 102: YY_RULE_SETUP #line 302 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) } YY_BREAK case 103: YY_RULE_SETUP #line 304 "./util/configlexer.lex" { YDVAR(1, VAR_ADD_HOLDDOWN) } YY_BREAK case 104: YY_RULE_SETUP #line 305 "./util/configlexer.lex" { YDVAR(1, VAR_DEL_HOLDDOWN) } YY_BREAK case 105: YY_RULE_SETUP #line 306 "./util/configlexer.lex" { YDVAR(1, VAR_KEEP_MISSING) } YY_BREAK case 106: YY_RULE_SETUP #line 307 "./util/configlexer.lex" { YDVAR(1, VAR_USE_SYSLOG) } YY_BREAK case 107: YY_RULE_SETUP #line 308 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_TIME_ASCII) } YY_BREAK case 108: YY_RULE_SETUP #line 309 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_QUERIES) } YY_BREAK case 109: YY_RULE_SETUP #line 310 "./util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE) } YY_BREAK case 110: YY_RULE_SETUP #line 311 "./util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA) } YY_BREAK case 111: YY_RULE_SETUP #line 312 "./util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA_PTR) } YY_BREAK case 112: YY_RULE_SETUP #line 313 "./util/configlexer.lex" { YDVAR(1, VAR_UNBLOCK_LAN_ZONES) } YY_BREAK case 113: YY_RULE_SETUP #line 314 "./util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_INTERVAL) } YY_BREAK case 114: YY_RULE_SETUP #line 315 "./util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_CUMULATIVE) } YY_BREAK case 115: YY_RULE_SETUP #line 316 "./util/configlexer.lex" { YDVAR(1, VAR_EXTENDED_STATISTICS) } YY_BREAK case 116: YY_RULE_SETUP #line 317 "./util/configlexer.lex" { YDVAR(0, VAR_REMOTE_CONTROL) } YY_BREAK case 117: YY_RULE_SETUP #line 318 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_ENABLE) } YY_BREAK case 118: YY_RULE_SETUP #line 319 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_INTERFACE) } YY_BREAK case 119: YY_RULE_SETUP #line 320 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_PORT) } YY_BREAK case 120: YY_RULE_SETUP #line 321 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_USE_CERT) } YY_BREAK case 121: YY_RULE_SETUP #line 322 "./util/configlexer.lex" { YDVAR(1, VAR_SERVER_KEY_FILE) } YY_BREAK case 122: YY_RULE_SETUP #line 323 "./util/configlexer.lex" { YDVAR(1, VAR_SERVER_CERT_FILE) } YY_BREAK case 123: YY_RULE_SETUP #line 324 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_KEY_FILE) } YY_BREAK case 124: YY_RULE_SETUP #line 325 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_CERT_FILE) } YY_BREAK case 125: YY_RULE_SETUP #line 326 "./util/configlexer.lex" { YDVAR(1, VAR_PYTHON_SCRIPT) } YY_BREAK case 126: YY_RULE_SETUP #line 327 "./util/configlexer.lex" { YDVAR(0, VAR_PYTHON) } YY_BREAK case 127: YY_RULE_SETUP #line 328 "./util/configlexer.lex" { YDVAR(1, VAR_DOMAIN_INSECURE) } YY_BREAK case 128: YY_RULE_SETUP #line 329 "./util/configlexer.lex" { YDVAR(1, VAR_MINIMAL_RESPONSES) } YY_BREAK case 129: YY_RULE_SETUP #line 330 "./util/configlexer.lex" { YDVAR(1, VAR_RRSET_ROUNDROBIN) } YY_BREAK case 130: YY_RULE_SETUP #line 331 "./util/configlexer.lex" { YDVAR(1, VAR_MAX_UDP_SIZE) } YY_BREAK case 131: YY_RULE_SETUP #line 332 "./util/configlexer.lex" { YDVAR(1, VAR_DNS64_PREFIX) } YY_BREAK case 132: YY_RULE_SETUP #line 333 "./util/configlexer.lex" { YDVAR(1, VAR_DNS64_SYNTHALL) } YY_BREAK case 133: YY_RULE_SETUP #line 334 "./util/configlexer.lex" { YDVAR(0, VAR_DNSTAP) } YY_BREAK case 134: YY_RULE_SETUP #line 335 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_ENABLE) } YY_BREAK case 135: YY_RULE_SETUP #line 336 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } YY_BREAK case 136: YY_RULE_SETUP #line 337 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) } YY_BREAK case 137: YY_RULE_SETUP #line 338 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_VERSION) } YY_BREAK case 138: YY_RULE_SETUP #line 339 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_IDENTITY) } YY_BREAK case 139: YY_RULE_SETUP #line 340 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_VERSION) } YY_BREAK case 140: YY_RULE_SETUP #line 341 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) } YY_BREAK case 141: YY_RULE_SETUP #line 343 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) } YY_BREAK case 142: YY_RULE_SETUP #line 345 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) } YY_BREAK case 143: YY_RULE_SETUP #line 347 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) } YY_BREAK case 144: YY_RULE_SETUP #line 349 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } YY_BREAK case 145: YY_RULE_SETUP #line 351 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } YY_BREAK case 146: /* rule 146 can match eol */ YY_RULE_SETUP #line 353 "./util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK /* Quoted strings. Strip leading and ending quotes */ case 147: YY_RULE_SETUP #line 356 "./util/configlexer.lex" { BEGIN(quotedstring); LEXOUT(("QS ")); } YY_BREAK case YY_STATE_EOF(quotedstring): #line 357 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 148: YY_RULE_SETUP #line 362 "./util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 149: /* rule 149 can match eol */ YY_RULE_SETUP #line 363 "./util/configlexer.lex" { yyerror("newline inside quoted string, no end \""); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 150: YY_RULE_SETUP #line 365 "./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 151: YY_RULE_SETUP #line 377 "./util/configlexer.lex" { BEGIN(singlequotedstr); LEXOUT(("SQS ")); } YY_BREAK case YY_STATE_EOF(singlequotedstr): #line 378 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 152: YY_RULE_SETUP #line 383 "./util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 153: /* rule 153 can match eol */ YY_RULE_SETUP #line 384 "./util/configlexer.lex" { yyerror("newline inside quoted string, no end '"); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 154: YY_RULE_SETUP #line 386 "./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 155: YY_RULE_SETUP #line 398 "./util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); } YY_BREAK case YY_STATE_EOF(include): #line 400 "./util/configlexer.lex" { yyerror("EOF inside include directive"); BEGIN(inc_prev); } YY_BREAK case 156: YY_RULE_SETUP #line 404 "./util/configlexer.lex" { LEXOUT(("ISP ")); /* ignore */ } YY_BREAK case 157: /* rule 157 can match eol */ YY_RULE_SETUP #line 405 "./util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++;} YY_BREAK case 158: YY_RULE_SETUP #line 406 "./util/configlexer.lex" { LEXOUT(("IQS ")); BEGIN(include_quoted); } YY_BREAK case 159: YY_RULE_SETUP #line 407 "./util/configlexer.lex" { LEXOUT(("Iunquotedstr(%s) ", yytext)); config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(include_quoted): #line 412 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 160: YY_RULE_SETUP #line 416 "./util/configlexer.lex" { LEXOUT(("ISTR(%s) ", yytext)); yymore(); } YY_BREAK case 161: /* rule 161 can match eol */ YY_RULE_SETUP #line 417 "./util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 162: YY_RULE_SETUP #line 419 "./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 425 "./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 163: YY_RULE_SETUP #line 436 "./util/configlexer.lex" { LEXOUT(("unquotedstr(%s) ", yytext)); if(--num_args == 0) { BEGIN(INITIAL); } yylval.str = strdup(yytext); return STRING_ARG; } YY_BREAK case 164: YY_RULE_SETUP #line 440 "./util/configlexer.lex" { ub_c_error_msg("unknown keyword '%s'", yytext); } YY_BREAK case 165: YY_RULE_SETUP #line 444 "./util/configlexer.lex" { ub_c_error_msg("stray '%s'", yytext); } YY_BREAK case 166: YY_RULE_SETUP #line 448 "./util/configlexer.lex" ECHO; YY_BREAK #line 3115 "" 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 >= 1655 ) 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 >= 1655 ) 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 == 1654); 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 448 "./util/configlexer.lex"