#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 35 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ #include #include #include #include /* end standard C headers. */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 #endif #include typedef int8_t flex_int8_t; typedef uint8_t flex_uint8_t; typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; #endif /* ! C99 */ /* 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 /* ! 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 extern int yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 #define YY_LESS_LINENO(n) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #endif #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* Stack of input buffers. */ static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ : NULL) /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 0; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart (FILE *input_file ); void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); void yy_delete_buffer (YY_BUFFER_STATE b ); void yy_flush_buffer (YY_BUFFER_STATE b ); void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); void yypop_buffer_state (void ); static void yyensure_buffer_stack (void ); static void yy_load_buffer_state (void ); static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len ); void *yyalloc (yy_size_t ); void *yyrealloc (void *,yy_size_t ); void yyfree (void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #define yytext_ptr yytext static yy_state_type yy_get_previous_state (void ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); static int yy_get_next_buffer (void ); static void yy_fatal_error (yyconst char msg[] ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ (yytext_ptr) = yy_bp; \ (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 126 #define YY_END_OF_BUFFER 127 /* 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[1187] = { 0, 1, 1, 108, 108, 112, 112, 116, 116, 120, 120, 1, 1, 127, 124, 1, 106, 106, 125, 124, 125, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 108, 109, 109, 110, 125, 112, 113, 113, 114, 125, 119, 116, 117, 117, 118, 125, 120, 121, 121, 122, 125, 123, 107, 123, 111, 125, 123, 124, 0, 1, 0, 124, 0, 2, 0, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 108, 0, 112, 0, 119, 0, 116, 120, 0, 123, 0, 123, 0, 123, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 123, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 123, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 52, 124, 124, 124, 124, 124, 6, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 123, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 123, 124, 124, 124, 124, 21, 124, 124, 124, 124, 124, 12, 13, 124, 15, 14, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 104, 124, 124, 124, 124, 3, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 123, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 115, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 24, 124, 124, 124, 124, 124, 124, 124, 25, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 65, 115, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 64, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 22, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 23, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 17, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 20, 124, 53, 54, 124, 51, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 5, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 67, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 90, 89, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 26, 124, 124, 124, 124, 55, 124, 124, 124, 124, 124, 87, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 44, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 4, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 84, 124, 124, 124, 124, 124, 124, 124, 98, 85, 124, 16, 124, 124, 124, 57, 58, 56, 124, 124, 124, 124, 124, 63, 124, 124, 124, 124, 124, 124, 124, 124, 86, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 72, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 32, 33, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 62, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 66, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 103, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 76, 124, 79, 124, 124, 124, 124, 61, 124, 124, 96, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 34, 35, 124, 40, 80, 124, 91, 88, 124, 28, 124, 82, 124, 124, 124, 124, 124, 7, 124, 50, 95, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 68, 124, 124, 105, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 81, 27, 29, 124, 124, 124, 124, 124, 49, 124, 124, 124, 99, 124, 124, 124, 124, 124, 124, 47, 124, 124, 124, 124, 124, 124, 124, 124, 124, 101, 124, 124, 124, 124, 124, 124, 124, 11, 124, 124, 124, 124, 124, 124, 10, 124, 124, 30, 124, 100, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 75, 74, 124, 102, 97, 124, 124, 124, 124, 124, 124, 124, 124, 124, 36, 124, 124, 124, 124, 124, 31, 124, 124, 124, 69, 71, 124, 124, 124, 73, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 18, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 94, 124, 124, 124, 124, 124, 124, 19, 124, 9, 124, 124, 92, 41, 124, 124, 124, 78, 124, 59, 124, 124, 43, 46, 42, 124, 37, 124, 8, 124, 124, 77, 124, 124, 124, 124, 38, 124, 93, 124, 124, 70, 60, 45, 39, 124, 124, 124, 124, 48, 124, 124, 124, 124, 83, 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, 3, 4, 1, 5, 1, 1, 1, 1, 6, 1, 1, 1, 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[1201] = { 0, 0, 0, 37, 40, 44, 51, 63, 75, 56, 68, 87, 108, 2288, 2273, 50, 2375, 2375, 2375, 129, 94, 70, 124, 122, 71, 89, 105, 112, 92, 110, 94, 130, 135, 61, 133, 147, 154, 143, 141, 163, 2272, 2375, 2375, 2375, 58, 2271, 2375, 2375, 2375, 42, 2270, 2279, 2375, 2375, 2375, 181, 2267, 2375, 2375, 2375, 175, 2205, 2375, 187, 2375, 191, 157, 2043, 197, 157, 1759, 208, 1661, 2375, 1448, 190, 201, 184, 192, 72, 203, 194, 209, 62, 215, 211, 212, 214, 216, 213, 219, 221, 224, 234, 238, 226, 223, 243, 235, 244, 247, 245, 246, 252, 253, 138, 254, 256, 262, 258, 260, 261, 265, 270, 268, 267, 1198, 285, 1145, 290, 786, 298, 753, 676, 302, 401, 306, 312, 401, 283, 291, 310, 299, 103, 307, 308, 316, 313, 320, 329, 323, 321, 309, 327, 325, 334, 339, 317, 336, 337, 340, 347, 344, 358, 346, 360, 361, 368, 370, 352, 369, 362, 371, 372, 373, 374, 376, 377, 378, 383, 269, 379, 385, 389, 392, 400, 405, 397, 398, 406, 413, 411, 412, 384, 415, 418, 419, 425, 422, 428, 429, 430, 431, 433, 435, 437, 444, 441, 445, 446, 448, 450, 451, 457, 453, 455, 454, 460, 458, 462, 472, 473, 475, 478, 477, 480, 481, 483, 484, 490, 487, 489, 488, 496, 502, 501, 499, 500, 508, 503, 528, 509, 512, 513, 510, 518, 515, 525, 516, 522, 523, 526, 539, 545, 551, 532, 541, 554, 555, 556, 558, 559, 562, 563, 561, 566, 579, 577, 580, 568, 586, 593, 582, 578, 589, 592, 595, 2375, 597, 599, 600, 601, 602, 2375, 603, 604, 606, 607, 617, 609, 616, 605, 621, 619, 630, 626, 631, 628, 633, 636, 640, 641, 642, 643, 644, 645, 648, 655, 658, 664, 657, 650, 660, 672, 663, 666, 674, 564, 677, 680, 682, 688, 685, 687, 696, 692, 694, 700, 699, 701, 693, 702, 704, 708, 709, 717, 705, 719, 721, 715, 724, 731, 727, 732, 734, 736, 730, 738, 739, 740, 751, 754, 753, 755, 761, 757, 723, 763, 764, 765, 766, 773, 769, 771, 772, 774, 776, 778, 780, 784, 785, 788, 794, 782, 796, 797, 798, 802, 801, 805, 808, 810, 2375, 818, 816, 814, 815, 821, 2375, 2375, 817, 2375, 2375, 822, 824, 830, 837, 833, 827, 826, 840, 835, 846, 843, 852, 854, 848, 850, 859, 860, 862, 865, 864, 871, 866, 873, 875, 876, 879, 878, 887, 893, 880, 2375, 889, 882, 890, 895, 2375, 897, 900, 901, 902, 903, 908, 904, 911, 919, 913, 907, 915, 923, 916, 929, 936, 932, 920, 933, 939, 924, 941, 943, 945, 947, 948, 949, 950, 974, 952, 953, 954, 957, 955, 958, 966, 962, 968, 975, 980, 984, 986, 991, 992, 996, 2375, 998, 997, 999, 1001, 1002, 1003, 1004, 1008, 1006, 1010, 1020, 2375, 1016, 1017, 1025, 1027, 1019, 1033, 1040, 2375, 1037, 1036, 1029, 1042, 1043, 1045, 1047, 959, 1048, 1049, 1053, 1055, 1054, 1056, 1057, 1058, 1070, 1071, 1063, 1075, 1064, 1072, 1009, 1080, 1077, 1079, 1081, 1082, 2375, 319, 1084, 1087, 1085, 1094, 1096, 1092, 1090, 1099, 1101, 1093, 1103, 1110, 1111, 1112, 1114, 1115, 1116, 1120, 1117, 1122, 1123, 1125, 1126, 1127, 1128, 1130, 1131, 2375, 1138, 1139, 1136, 1148, 1159, 1149, 1151, 1166, 1163, 1165, 1167, 1141, 1157, 1174, 1176, 1172, 1178, 1179, 1180, 1181, 1173, 1185, 1183, 1186, 1187, 1189, 1201, 1190, 1204, 1207, 1208, 1211, 1192, 1215, 1216, 1217, 1218, 1219, 2375, 1225, 1227, 1228, 1234, 1230, 1231, 1232, 1237, 1238, 1240, 1246, 1242, 1244, 1247, 1248, 1251, 1245, 1254, 1252, 2375, 1260, 1253, 1256, 1261, 1257, 1269, 1267, 1268, 1276, 1278, 1280, 1284, 1281, 1285, 1288, 1290, 1291, 1297, 1298, 1300, 2375, 1302, 1304, 1305, 1313, 1310, 1306, 1314, 1321, 1315, 1317, 1319, 1322, 1323, 1326, 1327, 1328, 1331, 1330, 1339, 1332, 1345, 1346, 1333, 1354, 2375, 1355, 2375, 2375, 1357, 2375, 1358, 1359, 1340, 1362, 1360, 1364, 1366, 1368, 1370, 1371, 1372, 1377, 1373, 2375, 1379, 1380, 1383, 1381, 1385, 1387, 1388, 1393, 1400, 1389, 1399, 1402, 2375, 1406, 1391, 1412, 1403, 1410, 1414, 1417, 1418, 1420, 1421, 1424, 1425, 1427, 1429, 1431, 1435, 1432, 1433, 1436, 1439, 1441, 1437, 1440, 2375, 2375, 1455, 1450, 1451, 1460, 1462, 1466, 1464, 1465, 1467, 1468, 1473, 1474, 1475, 1477, 1478, 2375, 1484, 1488, 1489, 1491, 2375, 1482, 1481, 1497, 1498, 1501, 2375, 1502, 1503, 1504, 1505, 1506, 1508, 1512, 1513, 1521, 1515, 1518, 1524, 1531, 1525, 1523, 1527, 1539, 1543, 1540, 1545, 1551, 1532, 1534, 1548, 1556, 1558, 1559, 2375, 1565, 1550, 1566, 1552, 1564, 1572, 1569, 1570, 1571, 1573, 1574, 1576, 1578, 1579, 1582, 1585, 1589, 1592, 1584, 1586, 1597, 1598, 2375, 1600, 1608, 1599, 1606, 1607, 1609, 1611, 1615, 1616, 1620, 1624, 1617, 1622, 1632, 1642, 1634, 1628, 1644, 1643, 1621, 1645, 1646, 1652, 1648, 1654, 1650, 2375, 1653, 1659, 1661, 1663, 1667, 1668, 1664, 2375, 2375, 1665, 2375, 1675, 1666, 1679, 2375, 2375, 2375, 1683, 1680, 1681, 1689, 1686, 2375, 1690, 1692, 1694, 1695, 1696, 1699, 1698, 1700, 2375, 1701, 1702, 1703, 1705, 1717, 1709, 1718, 1722, 1725, 1726, 1719, 1712, 1733, 1729, 1727, 1736, 1739, 1740, 1742, 1744, 1743, 1745, 1741, 1747, 1756, 2375, 1759, 1748, 1757, 1768, 1760, 1771, 1764, 1772, 1774, 1775, 1778, 1781, 2375, 2375, 1782, 1785, 1786, 1780, 1790, 1793, 1794, 1796, 1798, 1799, 1800, 1802, 1803, 2375, 1804, 1806, 1810, 1811, 1816, 1826, 1820, 1828, 1830, 1813, 1835, 1837, 2375, 1838, 1840, 1822, 1845, 1831, 1842, 1805, 1846, 1851, 1852, 1854, 2375, 1856, 1857, 1858, 1860, 1861, 1863, 1864, 1865, 1867, 1868, 1875, 1874, 2375, 1873, 2375, 1879, 1881, 1890, 1886, 2375, 1889, 1891, 2375, 1894, 1896, 1899, 1902, 1905, 1910, 1892, 1900, 1911, 1918, 1915, 1907, 1914, 1917, 1922, 2375, 2375, 1926, 2375, 2375, 1929, 2375, 2375, 1931, 2375, 1933, 2375, 1939, 1935, 1937, 1938, 1940, 2375, 1942, 2375, 2375, 1943, 1944, 1947, 1950, 1951, 1954, 1955, 1956, 1957, 1958, 1962, 1964, 1959, 1966, 1970, 1965, 1974, 1975, 1971, 1977, 1980, 2375, 1981, 1990, 2375, 1987, 1984, 1992, 1995, 1994, 1998, 2005, 2001, 2003, 2004, 2375, 2375, 2375, 2006, 2009, 2008, 2014, 2015, 2375, 2018, 2019, 2021, 2375, 2027, 2023, 2025, 2030, 2031, 2032, 2375, 2037, 2039, 2041, 2042, 2048, 2050, 2056, 2054, 2059, 2375, 2055, 2061, 2062, 2063, 2066, 2067, 2069, 2375, 2064, 2070, 2077, 2071, 2074, 2079, 2375, 2081, 2085, 2375, 2087, 2375, 2088, 2091, 2093, 2095, 2100, 2097, 2102, 2106, 2104, 2105, 2375, 2375, 2107, 2375, 2375, 2110, 2111, 2112, 2114, 2117, 2118, 2120, 2123, 2121, 2375, 2124, 2125, 2134, 2135, 2128, 2375, 2136, 2140, 2126, 2375, 2375, 2142, 2148, 2144, 2375, 2150, 2154, 2156, 2157, 2159, 2160, 2161, 2162, 2164, 2165, 2166, 2168, 2173, 2375, 2182, 2174, 2171, 2184, 2187, 2177, 2188, 2179, 2190, 2192, 2198, 2195, 2375, 2201, 2203, 2208, 2210, 2211, 2213, 2375, 2217, 2375, 2220, 2221, 2375, 2375, 2215, 2225, 2222, 2375, 2228, 2375, 2229, 2230, 2375, 2375, 2375, 2232, 2375, 2235, 2375, 2237, 2238, 2375, 2240, 2242, 2244, 2246, 2375, 2248, 2375, 2250, 2251, 2375, 2375, 2375, 2375, 2255, 2254, 2257, 2260, 2375, 2261, 2263, 2264, 2266, 2375, 2375, 2296, 2302, 2308, 2314, 2320, 125, 2326, 2332, 2338, 2344, 2350, 2356, 2362, 2368 } ; static yyconst flex_int16_t yy_def[1201] = { 0, 1186, 1, 1187, 1187, 1188, 1188, 1189, 1189, 1190, 1190, 1191, 1191, 1186, 1192, 1186, 1186, 1186, 1186, 1193, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1194, 1186, 1186, 1186, 1194, 1195, 1186, 1186, 1186, 1195, 1196, 1186, 1186, 1186, 1186, 1196, 1197, 1186, 1186, 1186, 1197, 1198, 1186, 1199, 1186, 1198, 1198, 1192, 1192, 1186, 1200, 1193, 1200, 1186, 1193, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1194, 1194, 1195, 1195, 1196, 1196, 1186, 1197, 1197, 1198, 1198, 1199, 1199, 1198, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1198, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1198, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1198, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1198, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1186, 1186, 1192, 1186, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1198, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1198, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1186, 1186, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1186, 1192, 1186, 1192, 1192, 1192, 1186, 1186, 1186, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1186, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1186, 1192, 1186, 1186, 1192, 1186, 1186, 1192, 1186, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1186, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1186, 1186, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1186, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1186, 1192, 1186, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1186, 1186, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1192, 1192, 1186, 1192, 1186, 1192, 1192, 1186, 1186, 1192, 1192, 1192, 1186, 1192, 1186, 1192, 1192, 1186, 1186, 1186, 1192, 1186, 1192, 1186, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1186, 1192, 1186, 1192, 1192, 1186, 1186, 1186, 1186, 1192, 1192, 1192, 1192, 1186, 1192, 1192, 1192, 1192, 1186, 0, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186 } ; static yyconst flex_int16_t yy_nxt[2415] = { 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, 118, 46, 47, 118, 44, 48, 69, 44, 46, 47, 70, 49, 48, 57, 58, 59, 116, 116, 49, 51, 52, 53, 54, 60, 18, 57, 58, 59, 68, 68, 55, 51, 52, 53, 54, 60, 18, 68, 68, 68, 75, 76, 55, 15, 16, 17, 62, 63, 64, 99, 67, 138, 67, 67, 65, 67, 68, 134, 77, 68, 67, 68, 85, 66, 15, 16, 17, 62, 63, 64, 68, 86, 68, 87, 91, 65, 93, 68, 181, 68, 67, 88, 92, 89, 66, 72, 73, 72, 72, 68, 72, 68, 78, 90, 81, 72, 74, 68, 82, 79, 68, 83, 68, 96, 84, 68, 80, 97, 68, 100, 68, 110, 94, 69, 68, 101, 95, 70, 102, 104, 165, 68, 112, 98, 126, 103, 107, 113, 111, 105, 68, 114, 106, 123, 123, 115, 108, 120, 129, 120, 120, 109, 120, 72, 73, 72, 72, 125, 72, 125, 125, 68, 125, 67, 128, 67, 67, 68, 67, 68, 130, 68, 133, 67, 72, 73, 72, 72, 68, 72, 68, 132, 131, 136, 72, 74, 68, 139, 68, 68, 68, 68, 68, 68, 135, 145, 68, 144, 68, 146, 68, 68, 147, 68, 137, 140, 150, 142, 141, 143, 155, 68, 68, 156, 152, 68, 148, 149, 153, 154, 68, 68, 68, 68, 68, 158, 151, 157, 160, 68, 68, 68, 162, 68, 168, 68, 169, 68, 68, 68, 161, 159, 68, 164, 68, 68, 68, 68, 224, 163, 166, 167, 174, 116, 116, 171, 170, 175, 118, 172, 126, 118, 176, 177, 120, 173, 120, 120, 68, 120, 123, 123, 125, 178, 125, 125, 68, 125, 72, 73, 72, 72, 179, 72, 68, 68, 68, 68, 184, 128, 68, 180, 186, 68, 68, 185, 126, 68, 68, 182, 68, 192, 68, 193, 68, 183, 68, 196, 195, 194, 187, 68, 200, 68, 68, 188, 68, 68, 201, 204, 189, 68, 205, 68, 68, 197, 190, 191, 198, 68, 206, 199, 209, 203, 202, 68, 213, 68, 68, 68, 211, 207, 212, 210, 208, 68, 68, 68, 68, 68, 68, 68, 214, 68, 68, 68, 68, 217, 220, 215, 68, 68, 68, 225, 228, 218, 68, 227, 73, 68, 216, 219, 230, 222, 126, 68, 221, 68, 126, 239, 223, 226, 68, 68, 231, 236, 233, 229, 68, 68, 68, 235, 68, 237, 234, 68, 68, 242, 241, 68, 240, 232, 68, 243, 238, 68, 68, 68, 68, 246, 68, 247, 68, 250, 68, 244, 252, 248, 68, 251, 245, 68, 68, 68, 249, 68, 256, 68, 68, 259, 68, 68, 68, 260, 68, 68, 255, 68, 253, 68, 258, 265, 266, 254, 261, 257, 263, 264, 267, 68, 68, 262, 68, 268, 68, 68, 273, 68, 68, 274, 68, 68, 277, 272, 68, 68, 68, 68, 280, 269, 271, 279, 270, 68, 282, 275, 68, 68, 68, 68, 68, 276, 281, 283, 278, 68, 68, 68, 286, 68, 126, 285, 68, 68, 288, 68, 284, 302, 297, 68, 68, 296, 68, 68, 287, 68, 299, 289, 290, 68, 300, 298, 301, 303, 304, 305, 68, 291, 68, 292, 293, 294, 68, 306, 295, 309, 310, 308, 68, 311, 307, 68, 68, 68, 312, 68, 68, 315, 68, 68, 68, 68, 321, 68, 376, 68, 314, 313, 318, 320, 317, 323, 322, 316, 68, 68, 68, 68, 326, 68, 324, 319, 325, 68, 327, 328, 68, 330, 329, 68, 68, 331, 68, 333, 68, 334, 68, 68, 68, 68, 68, 68, 68, 68, 68, 336, 68, 337, 341, 343, 332, 338, 342, 68, 68, 340, 68, 335, 68, 347, 339, 346, 352, 68, 344, 68, 348, 68, 68, 355, 68, 357, 353, 68, 349, 345, 351, 68, 68, 68, 68, 68, 68, 354, 350, 68, 363, 68, 358, 359, 356, 364, 68, 360, 68, 126, 368, 68, 361, 367, 68, 68, 362, 68, 365, 370, 369, 366, 372, 68, 371, 68, 373, 124, 68, 374, 378, 68, 379, 68, 380, 381, 68, 382, 68, 68, 375, 377, 383, 68, 68, 68, 386, 68, 384, 385, 68, 68, 68, 68, 387, 68, 68, 388, 390, 68, 68, 395, 392, 396, 389, 397, 68, 393, 68, 391, 68, 394, 68, 398, 68, 68, 399, 403, 68, 401, 402, 68, 68, 68, 404, 68, 405, 68, 406, 68, 68, 68, 407, 122, 420, 410, 411, 412, 400, 408, 414, 413, 68, 409, 68, 68, 68, 417, 68, 416, 419, 418, 68, 415, 68, 68, 68, 68, 421, 425, 68, 426, 68, 68, 68, 68, 427, 68, 428, 68, 422, 68, 424, 68, 423, 68, 68, 121, 432, 68, 433, 429, 431, 434, 435, 68, 430, 68, 68, 68, 436, 437, 68, 126, 438, 442, 68, 439, 441, 68, 443, 68, 445, 440, 447, 68, 68, 68, 68, 68, 446, 448, 68, 68, 450, 68, 455, 68, 68, 454, 444, 68, 453, 449, 68, 452, 68, 451, 68, 461, 464, 68, 456, 465, 68, 457, 462, 68, 466, 68, 458, 68, 463, 68, 468, 68, 459, 460, 469, 467, 68, 68, 473, 68, 476, 68, 68, 68, 472, 470, 471, 475, 68, 478, 68, 477, 68, 68, 474, 68, 68, 68, 479, 68, 480, 482, 483, 484, 68, 485, 68, 68, 489, 487, 68, 481, 68, 488, 68, 490, 486, 68, 68, 68, 68, 68, 494, 491, 68, 68, 493, 498, 68, 496, 68, 500, 68, 68, 501, 492, 68, 68, 495, 497, 68, 68, 499, 502, 503, 504, 68, 506, 507, 68, 68, 511, 508, 68, 505, 509, 68, 513, 68, 514, 126, 512, 68, 510, 68, 68, 68, 68, 516, 68, 68, 68, 68, 525, 68, 68, 68, 515, 531, 68, 532, 519, 569, 68, 517, 68, 527, 533, 528, 530, 518, 68, 68, 529, 520, 526, 521, 68, 537, 535, 522, 68, 523, 68, 536, 534, 538, 524, 68, 68, 543, 539, 542, 68, 68, 68, 68, 544, 68, 68, 68, 68, 540, 68, 547, 68, 68, 68, 541, 548, 550, 546, 553, 68, 68, 545, 68, 68, 584, 555, 549, 552, 68, 551, 68, 558, 68, 556, 554, 557, 68, 559, 560, 68, 68, 561, 563, 68, 562, 68, 68, 564, 68, 566, 68, 68, 68, 567, 570, 568, 68, 68, 68, 68, 68, 68, 574, 576, 575, 565, 68, 68, 578, 579, 571, 573, 577, 68, 68, 68, 572, 581, 68, 585, 68, 580, 68, 68, 68, 68, 582, 68, 68, 583, 68, 587, 593, 68, 594, 68, 68, 68, 586, 68, 595, 590, 68, 588, 68, 591, 68, 596, 592, 598, 589, 599, 601, 68, 68, 68, 597, 68, 68, 68, 68, 600, 604, 68, 603, 68, 68, 607, 68, 68, 68, 68, 602, 68, 68, 608, 613, 605, 606, 68, 609, 68, 68, 616, 68, 610, 614, 612, 119, 611, 618, 68, 68, 615, 68, 617, 620, 621, 629, 619, 68, 622, 68, 624, 625, 623, 68, 626, 68, 68, 68, 628, 631, 627, 632, 68, 68, 68, 630, 68, 633, 68, 68, 68, 68, 634, 68, 639, 68, 68, 68, 635, 68, 68, 641, 68, 636, 644, 637, 640, 638, 117, 642, 647, 68, 643, 649, 68, 645, 650, 68, 68, 648, 652, 68, 653, 651, 646, 68, 68, 68, 68, 68, 659, 655, 660, 654, 657, 68, 658, 68, 68, 662, 68, 68, 68, 661, 68, 656, 666, 68, 68, 663, 68, 669, 68, 665, 68, 68, 68, 68, 68, 673, 664, 68, 68, 68, 68, 678, 68, 68, 667, 679, 68, 68, 670, 668, 671, 672, 682, 68, 68, 68, 675, 674, 676, 684, 681, 677, 68, 683, 68, 680, 68, 68, 686, 688, 68, 68, 685, 689, 68, 690, 68, 68, 696, 697, 692, 687, 695, 68, 68, 691, 68, 698, 68, 693, 68, 68, 68, 699, 702, 704, 68, 694, 703, 68, 68, 68, 707, 68, 700, 68, 706, 68, 68, 68, 701, 705, 68, 68, 68, 715, 68, 68, 68, 68, 708, 716, 709, 712, 710, 68, 68, 711, 714, 717, 720, 68, 68, 713, 718, 723, 724, 721, 719, 722, 68, 68, 725, 68, 68, 68, 68, 726, 68, 731, 68, 728, 68, 729, 68, 733, 68, 68, 68, 68, 727, 730, 736, 68, 738, 68, 68, 68, 735, 68, 741, 68, 732, 68, 68, 68, 745, 68, 734, 68, 740, 747, 737, 739, 746, 68, 68, 742, 68, 68, 754, 743, 68, 744, 750, 748, 68, 751, 68, 749, 68, 753, 752, 68, 68, 759, 68, 68, 757, 758, 68, 68, 760, 68, 755, 68, 766, 68, 68, 68, 756, 68, 68, 68, 73, 68, 68, 68, 761, 764, 765, 762, 772, 763, 771, 773, 68, 68, 767, 768, 770, 68, 774, 769, 775, 776, 68, 781, 68, 782, 68, 68, 68, 68, 68, 778, 777, 780, 779, 68, 68, 68, 788, 68, 68, 791, 784, 68, 68, 792, 68, 783, 785, 786, 68, 68, 796, 68, 787, 789, 794, 793, 790, 68, 68, 797, 795, 68, 68, 68, 68, 68, 68, 802, 68, 803, 804, 805, 68, 68, 799, 68, 798, 806, 68, 800, 809, 68, 801, 68, 68, 68, 813, 68, 808, 810, 811, 68, 68, 816, 68, 807, 812, 814, 817, 68, 68, 815, 818, 68, 820, 68, 821, 824, 68, 819, 68, 68, 68, 822, 823, 825, 68, 826, 68, 68, 828, 830, 827, 832, 68, 68, 68, 833, 829, 68, 68, 68, 68, 68, 68, 841, 68, 831, 68, 68, 843, 834, 68, 835, 68, 68, 68, 849, 836, 68, 837, 838, 68, 839, 845, 840, 846, 68, 68, 68, 68, 847, 844, 853, 842, 852, 68, 68, 68, 68, 848, 68, 856, 855, 851, 68, 68, 68, 857, 854, 68, 68, 68, 850, 68, 872, 861, 865, 68, 868, 859, 858, 68, 862, 68, 860, 864, 866, 863, 870, 869, 867, 68, 68, 68, 68, 68, 875, 68, 877, 68, 73, 68, 68, 68, 871, 879, 873, 880, 68, 881, 68, 878, 68, 68, 68, 68, 68, 68, 882, 876, 874, 883, 885, 884, 68, 887, 886, 891, 68, 68, 68, 893, 68, 889, 895, 68, 888, 890, 68, 68, 894, 68, 897, 68, 68, 68, 892, 68, 68, 68, 68, 68, 68, 905, 68, 904, 899, 900, 68, 896, 901, 68, 902, 907, 898, 908, 68, 68, 68, 903, 906, 68, 910, 911, 68, 68, 68, 916, 68, 912, 913, 915, 68, 917, 909, 68, 914, 920, 68, 68, 68, 68, 68, 68, 68, 918, 68, 68, 73, 919, 922, 921, 924, 923, 925, 68, 68, 926, 68, 68, 927, 929, 928, 68, 930, 932, 933, 68, 934, 935, 68, 68, 931, 68, 68, 937, 940, 68, 938, 68, 68, 68, 936, 943, 68, 68, 944, 939, 941, 68, 942, 945, 68, 68, 946, 68, 947, 68, 68, 68, 949, 68, 68, 68, 68, 68, 955, 973, 948, 68, 68, 958, 68, 953, 959, 68, 950, 951, 956, 68, 952, 68, 957, 954, 960, 68, 962, 68, 963, 68, 68, 964, 961, 965, 68, 966, 68, 68, 968, 68, 969, 68, 967, 970, 68, 68, 974, 972, 971, 976, 68, 68, 978, 68, 979, 68, 68, 68, 981, 68, 68, 975, 68, 68, 68, 983, 68, 68, 985, 989, 977, 982, 68, 68, 68, 987, 988, 990, 68, 986, 68, 993, 980, 984, 994, 68, 995, 992, 68, 68, 68, 68, 991, 68, 996, 68, 999, 1001, 68, 68, 1000, 68, 998, 997, 68, 1002, 68, 1003, 1004, 68, 68, 1005, 1008, 68, 68, 1007, 68, 68, 1011, 1006, 1009, 68, 1010, 1013, 1012, 68, 1014, 1015, 68, 1016, 68, 1017, 68, 1018, 68, 1019, 68, 68, 68, 68, 1023, 68, 68, 68, 1022, 1025, 68, 1024, 1027, 68, 68, 1026, 1020, 68, 68, 68, 68, 68, 68, 1021, 1034, 68, 1028, 68, 68, 68, 1030, 1031, 1032, 68, 68, 1029, 1035, 68, 68, 1042, 68, 1033, 1044, 68, 68, 1043, 1038, 68, 1036, 1037, 68, 1040, 1039, 68, 1046, 68, 1041, 68, 68, 1047, 1052, 68, 1045, 1053, 68, 1048, 68, 68, 68, 68, 1059, 68, 68, 1049, 1050, 1058, 1051, 68, 68, 1054, 1062, 68, 68, 1064, 68, 1055, 68, 1056, 68, 1057, 68, 1065, 1060, 68, 68, 68, 1061, 1067, 1068, 1069, 68, 1063, 68, 1070, 68, 68, 68, 1072, 1066, 1073, 1075, 68, 1076, 68, 1077, 1071, 1078, 68, 68, 68, 1074, 1079, 68, 1080, 68, 68, 68, 68, 1082, 68, 68, 1085, 68, 68, 68, 1083, 1081, 68, 1084, 1089, 68, 1086, 68, 1090, 68, 1091, 1087, 1092, 68, 1095, 68, 68, 1088, 1093, 68, 1097, 68, 1099, 68, 1098, 68, 1094, 1100, 68, 1103, 68, 1104, 68, 68, 68, 68, 1096, 1105, 68, 68, 68, 1106, 68, 1101, 1102, 68, 68, 1108, 68, 68, 1111, 68, 68, 68, 68, 1116, 68, 1107, 1110, 1109, 1114, 1118, 68, 68, 68, 1120, 1112, 1119, 68, 1115, 68, 1117, 68, 1121, 1113, 1124, 68, 1125, 68, 1123, 1122, 1126, 68, 1127, 68, 68, 1131, 68, 68, 68, 68, 1128, 68, 68, 68, 1138, 68, 1135, 1134, 68, 1130, 68, 68, 1129, 1132, 68, 1139, 68, 1133, 1140, 68, 1143, 68, 1137, 1144, 68, 68, 1148, 68, 1136, 68, 1142, 1141, 68, 1145, 1150, 68, 1147, 1146, 68, 1153, 68, 1149, 126, 1152, 1154, 68, 1155, 68, 68, 1157, 68, 1151, 68, 1156, 68, 1158, 1159, 68, 68, 68, 1161, 1162, 68, 1160, 1163, 68, 68, 68, 1167, 68, 1164, 1166, 68, 1169, 68, 68, 1168, 68, 1172, 68, 1173, 68, 1174, 68, 1175, 68, 1165, 68, 68, 1177, 1170, 68, 68, 1180, 68, 1171, 1178, 68, 68, 1176, 68, 68, 1185, 68, 124, 122, 1181, 121, 119, 117, 68, 1179, 1186, 1182, 1183, 1186, 1186, 1186, 1186, 1186, 1184, 40, 40, 40, 40, 40, 40, 45, 45, 45, 45, 45, 45, 50, 50, 50, 50, 50, 50, 56, 56, 56, 56, 56, 56, 61, 61, 61, 61, 61, 61, 71, 71, 71, 71, 71, 71, 116, 116, 1186, 1186, 116, 116, 118, 118, 1186, 118, 1186, 118, 120, 1186, 1186, 1186, 1186, 120, 123, 123, 1186, 1186, 123, 123, 125, 1186, 1186, 1186, 1186, 125, 127, 127, 127, 127, 127, 127, 72, 72, 72, 72, 72, 72, 13, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186 } ; static yyconst flex_int16_t yy_chk[2415] = { 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, 44, 44, 6, 7, 7, 7, 7, 9, 7, 10, 10, 10, 33, 83, 7, 8, 8, 8, 8, 10, 8, 21, 24, 79, 21, 21, 8, 11, 11, 11, 11, 11, 11, 33, 20, 83, 20, 20, 11, 20, 25, 79, 21, 28, 20, 30, 24, 11, 12, 12, 12, 12, 12, 12, 133, 25, 26, 26, 28, 12, 30, 29, 133, 27, 1192, 26, 29, 27, 12, 19, 19, 19, 19, 23, 19, 22, 22, 27, 23, 19, 19, 31, 23, 22, 34, 23, 32, 32, 23, 105, 22, 32, 38, 34, 37, 37, 31, 69, 35, 34, 31, 69, 34, 35, 105, 36, 38, 32, 66, 34, 36, 38, 37, 35, 39, 39, 35, 60, 60, 39, 36, 55, 66, 55, 55, 36, 55, 63, 63, 63, 63, 65, 63, 65, 65, 77, 65, 68, 63, 68, 68, 75, 68, 78, 75, 81, 78, 68, 71, 71, 71, 71, 76, 71, 80, 77, 76, 81, 71, 71, 82, 84, 85, 86, 89, 87, 84, 88, 80, 89, 90, 88, 91, 90, 96, 92, 90, 95, 82, 84, 92, 86, 85, 87, 95, 93, 98, 96, 93, 94, 90, 91, 93, 94, 97, 99, 101, 102, 100, 98, 92, 97, 100, 103, 104, 106, 102, 107, 108, 109, 109, 110, 111, 108, 101, 99, 112, 104, 115, 114, 170, 113, 170, 103, 106, 107, 113, 117, 117, 110, 109, 114, 119, 111, 129, 119, 115, 129, 121, 112, 121, 121, 130, 121, 124, 124, 126, 130, 126, 126, 132, 126, 127, 127, 127, 127, 131, 127, 134, 135, 142, 131, 136, 127, 137, 132, 138, 136, 147, 137, 514, 138, 141, 134, 140, 140, 144, 141, 143, 135, 139, 144, 143, 142, 139, 145, 147, 148, 149, 139, 146, 150, 148, 151, 139, 152, 152, 154, 151, 145, 139, 139, 146, 159, 153, 146, 155, 150, 149, 153, 159, 155, 156, 161, 157, 153, 158, 156, 154, 157, 160, 158, 162, 163, 164, 165, 160, 166, 167, 168, 171, 163, 166, 161, 169, 183, 172, 171, 174, 164, 173, 173, 128, 174, 162, 165, 175, 168, 177, 178, 167, 175, 125, 183, 169, 172, 176, 179, 176, 180, 177, 174, 181, 182, 180, 179, 184, 181, 178, 185, 186, 186, 185, 188, 184, 176, 187, 187, 182, 189, 190, 191, 192, 190, 193, 191, 194, 194, 195, 188, 196, 192, 197, 195, 189, 196, 198, 199, 193, 200, 200, 201, 202, 203, 204, 206, 205, 204, 203, 208, 199, 207, 197, 209, 202, 209, 209, 198, 205, 201, 207, 208, 210, 210, 211, 206, 212, 211, 214, 213, 215, 215, 216, 216, 217, 218, 219, 214, 220, 222, 221, 219, 222, 212, 213, 221, 212, 223, 224, 217, 226, 227, 225, 224, 229, 218, 223, 225, 220, 228, 231, 234, 228, 232, 233, 227, 236, 238, 229, 235, 226, 237, 232, 239, 240, 231, 237, 241, 228, 230, 234, 230, 230, 245, 235, 233, 236, 238, 239, 240, 242, 230, 246, 230, 230, 230, 243, 241, 230, 244, 244, 243, 244, 245, 242, 247, 248, 249, 246, 250, 251, 249, 254, 252, 253, 307, 254, 255, 307, 259, 248, 247, 252, 253, 251, 256, 255, 250, 257, 263, 256, 258, 259, 262, 257, 252, 258, 260, 260, 261, 264, 263, 262, 265, 261, 264, 266, 266, 268, 268, 269, 270, 271, 272, 274, 275, 281, 276, 277, 270, 279, 271, 276, 278, 265, 272, 277, 280, 278, 275, 283, 269, 282, 282, 274, 281, 284, 285, 279, 287, 282, 284, 286, 286, 288, 288, 284, 289, 282, 280, 283, 290, 291, 292, 293, 294, 295, 285, 282, 296, 294, 301, 289, 290, 287, 295, 297, 291, 300, 298, 299, 302, 292, 298, 304, 299, 293, 305, 296, 301, 300, 297, 303, 303, 302, 306, 304, 123, 308, 305, 309, 309, 310, 310, 311, 312, 312, 313, 313, 311, 306, 308, 314, 315, 320, 316, 317, 314, 315, 316, 318, 317, 319, 321, 318, 322, 326, 319, 321, 323, 324, 324, 323, 325, 320, 326, 329, 323, 325, 322, 327, 323, 328, 327, 346, 330, 328, 331, 332, 329, 330, 336, 331, 333, 332, 334, 333, 335, 334, 337, 338, 339, 335, 122, 346, 338, 339, 340, 328, 336, 341, 340, 340, 337, 342, 341, 343, 344, 345, 343, 345, 344, 344, 342, 347, 348, 349, 350, 347, 351, 352, 352, 353, 354, 351, 355, 353, 356, 354, 357, 348, 358, 350, 363, 349, 359, 360, 120, 358, 361, 359, 355, 357, 360, 361, 362, 356, 364, 365, 366, 362, 363, 368, 367, 364, 368, 369, 365, 367, 370, 369, 371, 371, 366, 373, 375, 376, 374, 380, 373, 371, 374, 377, 383, 376, 384, 385, 389, 388, 384, 370, 385, 383, 375, 387, 380, 391, 377, 386, 387, 390, 390, 386, 391, 393, 386, 388, 392, 392, 396, 386, 397, 389, 394, 394, 395, 386, 386, 395, 393, 398, 399, 399, 400, 402, 402, 401, 404, 398, 396, 397, 401, 403, 404, 405, 403, 406, 407, 400, 409, 408, 412, 405, 415, 406, 408, 409, 410, 410, 411, 414, 416, 416, 414, 411, 407, 417, 415, 419, 417, 412, 420, 421, 422, 423, 425, 421, 417, 429, 424, 420, 425, 426, 423, 428, 427, 430, 432, 428, 419, 427, 436, 422, 424, 431, 439, 426, 429, 430, 431, 433, 433, 434, 435, 437, 438, 435, 434, 432, 436, 438, 440, 440, 441, 441, 439, 442, 437, 443, 444, 445, 446, 443, 448, 449, 450, 452, 448, 451, 453, 492, 442, 454, 455, 455, 446, 492, 454, 444, 456, 450, 455, 451, 453, 445, 447, 457, 452, 447, 449, 447, 458, 458, 456, 447, 459, 447, 460, 457, 455, 459, 447, 461, 462, 465, 460, 463, 463, 466, 465, 467, 466, 468, 469, 470, 471, 461, 473, 469, 472, 507, 474, 462, 470, 472, 468, 475, 477, 478, 467, 481, 475, 507, 478, 471, 474, 479, 473, 480, 481, 487, 479, 477, 480, 482, 482, 483, 486, 485, 485, 486, 483, 485, 488, 489, 487, 490, 489, 491, 493, 494, 490, 493, 491, 495, 497, 496, 498, 499, 500, 497, 499, 498, 488, 503, 505, 501, 502, 494, 496, 500, 501, 502, 506, 495, 504, 504, 508, 509, 503, 510, 508, 511, 512, 505, 515, 517, 506, 516, 510, 518, 521, 519, 520, 524, 518, 509, 519, 520, 515, 522, 511, 523, 516, 525, 521, 517, 523, 512, 524, 526, 526, 527, 528, 522, 529, 530, 531, 533, 525, 529, 532, 528, 534, 535, 532, 536, 537, 538, 539, 527, 540, 541, 533, 538, 530, 531, 545, 534, 543, 544, 541, 554, 535, 539, 537, 118, 536, 544, 546, 548, 540, 549, 543, 546, 547, 554, 545, 555, 547, 547, 549, 550, 548, 551, 551, 552, 550, 553, 553, 556, 552, 557, 558, 563, 556, 555, 557, 558, 559, 560, 561, 562, 559, 565, 561, 564, 566, 567, 560, 568, 570, 563, 575, 560, 566, 560, 562, 560, 116, 564, 569, 569, 565, 571, 571, 567, 572, 572, 573, 570, 574, 574, 575, 573, 568, 576, 577, 578, 579, 580, 582, 577, 583, 576, 579, 582, 580, 583, 584, 585, 586, 587, 588, 584, 585, 578, 589, 589, 590, 586, 591, 592, 593, 588, 594, 598, 592, 595, 596, 596, 587, 597, 600, 603, 599, 602, 604, 606, 590, 602, 602, 605, 593, 591, 594, 595, 605, 608, 609, 607, 598, 597, 599, 607, 604, 600, 610, 606, 611, 603, 612, 614, 609, 611, 613, 615, 608, 612, 616, 613, 617, 618, 619, 620, 615, 610, 618, 619, 620, 614, 621, 621, 623, 616, 624, 625, 628, 623, 626, 627, 627, 617, 626, 626, 629, 631, 630, 632, 624, 633, 629, 630, 634, 635, 625, 628, 636, 637, 638, 638, 640, 639, 642, 645, 631, 639, 632, 635, 633, 641, 655, 634, 637, 640, 643, 643, 644, 636, 641, 646, 648, 644, 642, 645, 646, 648, 651, 651, 653, 654, 657, 653, 656, 658, 658, 655, 659, 656, 660, 660, 661, 662, 663, 665, 654, 657, 663, 664, 665, 667, 668, 670, 662, 669, 669, 671, 659, 672, 673, 676, 673, 681, 661, 674, 668, 675, 664, 667, 674, 677, 675, 670, 678, 683, 683, 671, 680, 672, 678, 676, 684, 680, 682, 677, 685, 682, 681, 686, 687, 688, 688, 689, 686, 687, 690, 691, 689, 692, 684, 693, 695, 694, 696, 697, 685, 695, 698, 701, 74, 699, 702, 700, 690, 693, 694, 691, 701, 692, 700, 701, 706, 707, 696, 697, 699, 705, 702, 698, 705, 706, 708, 710, 709, 711, 711, 712, 710, 713, 714, 708, 707, 709, 708, 715, 716, 717, 717, 718, 719, 721, 713, 727, 726, 722, 721, 712, 714, 715, 722, 723, 726, 724, 716, 718, 724, 723, 719, 728, 729, 727, 724, 730, 732, 733, 734, 735, 736, 733, 737, 734, 735, 736, 738, 739, 729, 741, 728, 737, 742, 730, 740, 740, 732, 746, 743, 745, 744, 747, 739, 741, 742, 744, 753, 747, 754, 738, 743, 745, 748, 748, 750, 746, 749, 749, 751, 751, 752, 755, 755, 750, 761, 752, 763, 753, 754, 756, 756, 757, 757, 758, 760, 762, 758, 764, 764, 760, 762, 765, 761, 766, 767, 768, 765, 769, 770, 771, 771, 763, 772, 773, 773, 766, 774, 766, 778, 775, 779, 779, 766, 776, 767, 768, 777, 769, 775, 770, 776, 780, 781, 785, 783, 777, 774, 784, 772, 783, 786, 787, 784, 788, 778, 789, 787, 786, 781, 790, 791, 794, 788, 785, 792, 802, 795, 780, 793, 802, 792, 796, 799, 798, 790, 789, 796, 793, 798, 791, 795, 797, 794, 800, 799, 797, 797, 801, 800, 803, 804, 805, 806, 807, 808, 72, 805, 810, 807, 801, 810, 803, 811, 811, 812, 812, 808, 813, 816, 819, 822, 814, 815, 813, 806, 804, 814, 816, 815, 821, 821, 819, 827, 823, 828, 829, 829, 827, 822, 831, 831, 821, 823, 830, 833, 830, 834, 834, 835, 836, 837, 828, 839, 838, 840, 842, 843, 844, 843, 845, 842, 836, 837, 847, 833, 838, 853, 839, 845, 835, 846, 846, 848, 852, 840, 844, 849, 848, 849, 850, 851, 856, 854, 855, 850, 851, 853, 854, 855, 847, 857, 852, 858, 858, 859, 864, 860, 862, 861, 863, 856, 865, 869, 70, 857, 860, 859, 861, 860, 862, 866, 870, 863, 868, 872, 864, 866, 865, 874, 868, 870, 871, 871, 872, 873, 873, 875, 869, 876, 877, 875, 878, 878, 876, 885, 879, 882, 874, 883, 883, 884, 884, 877, 879, 886, 882, 885, 887, 888, 886, 889, 887, 890, 891, 892, 889, 893, 894, 896, 915, 897, 896, 915, 888, 898, 899, 899, 905, 893, 900, 900, 890, 891, 897, 902, 892, 911, 898, 894, 901, 901, 903, 903, 904, 904, 913, 905, 902, 906, 906, 907, 907, 909, 910, 910, 911, 914, 909, 912, 912, 916, 916, 914, 913, 917, 917, 918, 919, 919, 921, 921, 922, 923, 923, 924, 925, 916, 926, 927, 928, 925, 929, 930, 927, 931, 918, 924, 934, 932, 931, 929, 930, 932, 936, 928, 937, 937, 922, 926, 938, 939, 939, 936, 941, 938, 942, 950, 934, 944, 939, 945, 944, 946, 946, 951, 945, 947, 942, 941, 948, 947, 955, 948, 949, 949, 952, 950, 953, 956, 954, 952, 957, 953, 956, 951, 954, 958, 955, 958, 957, 961, 961, 964, 964, 967, 967, 969, 969, 971, 972, 972, 973, 974, 971, 975, 977, 977, 980, 981, 975, 981, 982, 980, 983, 983, 984, 982, 973, 985, 986, 987, 988, 989, 992, 974, 990, 990, 984, 991, 995, 993, 986, 987, 988, 994, 998, 985, 991, 996, 997, 998, 999, 989, 1000, 1000, 1002, 999, 994, 1006, 992, 993, 1005, 996, 995, 1003, 1003, 1007, 997, 1009, 1008, 1005, 1010, 1010, 1002, 1011, 1012, 1006, 1013, 1014, 1011, 1018, 1020, 1020, 1019, 1007, 1008, 1019, 1009, 1021, 1022, 1012, 1024, 1024, 1025, 1026, 1026, 1013, 1029, 1014, 1030, 1018, 1028, 1028, 1021, 1031, 1032, 1033, 1022, 1030, 1031, 1032, 1035, 1025, 1036, 1033, 1037, 1038, 67, 1036, 1029, 1037, 1039, 1039, 1040, 1040, 1041, 1035, 1042, 1042, 1045, 1041, 1038, 1043, 1043, 1045, 1046, 1047, 1048, 1053, 1047, 1049, 1050, 1050, 1051, 1054, 1056, 1048, 1046, 1057, 1049, 1055, 1055, 1051, 1058, 1056, 1060, 1057, 1053, 1058, 1061, 1063, 1063, 1065, 1054, 1060, 1066, 1066, 1067, 1068, 1068, 1067, 1070, 1061, 1069, 1069, 1072, 1071, 1073, 1073, 1074, 1072, 1077, 1065, 1074, 1080, 1081, 1082, 1077, 1083, 1070, 1071, 1084, 1085, 1081, 1086, 1088, 1084, 1087, 1090, 1091, 1098, 1090, 1094, 1080, 1083, 1082, 1087, 1092, 1092, 1093, 1096, 1094, 1085, 1093, 1097, 1088, 1101, 1091, 1103, 1096, 1086, 1101, 1102, 1102, 1105, 1098, 1097, 1103, 1106, 1105, 1107, 1108, 1109, 1109, 1110, 1111, 1112, 1106, 1113, 1114, 1115, 1116, 1116, 1113, 1112, 1121, 1108, 1117, 1120, 1107, 1110, 1124, 1117, 1126, 1111, 1119, 1119, 1122, 1122, 1115, 1123, 1123, 1125, 1127, 1127, 1114, 1128, 1121, 1120, 1130, 1124, 1129, 1129, 1126, 1125, 1132, 1133, 1133, 1128, 61, 1132, 1134, 1134, 1135, 1135, 1136, 1137, 1137, 1130, 1145, 1136, 1139, 1139, 1141, 1141, 1142, 1147, 1145, 1146, 1146, 1142, 1147, 1149, 1151, 1152, 1156, 1156, 1149, 1152, 1158, 1160, 1160, 1161, 1158, 1163, 1164, 1164, 1165, 1165, 1166, 1166, 1168, 1168, 1151, 1170, 1171, 1171, 1161, 1177, 1176, 1178, 1178, 1163, 1176, 1179, 1181, 1170, 1182, 1183, 1184, 1184, 56, 51, 1179, 50, 45, 40, 14, 1177, 13, 1181, 1182, 0, 0, 0, 0, 0, 1183, 1187, 1187, 1187, 1187, 1187, 1187, 1188, 1188, 1188, 1188, 1188, 1188, 1189, 1189, 1189, 1189, 1189, 1189, 1190, 1190, 1190, 1190, 1190, 1190, 1191, 1191, 1191, 1191, 1191, 1191, 1193, 1193, 1193, 1193, 1193, 1193, 1194, 1194, 0, 0, 1194, 1194, 1195, 1195, 0, 1195, 0, 1195, 1196, 0, 0, 0, 0, 1196, 1197, 1197, 0, 0, 1197, 1197, 1198, 0, 0, 0, 0, 1198, 1199, 1199, 1199, 1199, 1199, 1199, 1200, 1200, 1200, 1200, 1200, 1200, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186 } ; 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 "config.h" #include #include #include #include "util/configyyrename.h" #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; }; static struct inc_state parse_stack[MAXINCLUDES]; static YY_BUFFER_STATE include_stack[MAXINCLUDES]; static int config_include_stack_ptr = 0; static int inc_prev = 0; static int num_args = 0; static void config_start_include(const char* filename) { FILE *input; if(strlen(filename) == 0) { ub_c_error_msg("empty include file name"); return; } if(config_include_stack_ptr >= MAXINCLUDES) { ub_c_error_msg("includes nested too deeply, skipped (>%d)", MAXINCLUDES); return; } if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot, strlen(cfg_parser->chroot)) == 0) { filename += strlen(cfg_parser->chroot); } input = fopen(filename, "r"); if(!input) { ub_c_error_msg("cannot open include file '%s': %s", filename, strerror(errno)); return; } LEXOUT(("switch_to_include_file(%s) ", filename)); parse_stack[config_include_stack_ptr].filename = cfg_parser->filename; parse_stack[config_include_stack_ptr].line = cfg_parser->line; include_stack[config_include_stack_ptr] = YY_CURRENT_BUFFER; cfg_parser->filename = strdup(filename); cfg_parser->line = 1; yy_switch_to_buffer(yy_create_buffer(input,YY_BUF_SIZE)); ++config_include_stack_ptr; } static void config_end_include(void) { --config_include_stack_ptr; free(cfg_parser->filename); cfg_parser->filename = parse_stack[config_include_stack_ptr].filename; cfg_parser->line = parse_stack[config_include_stack_ptr].line; yy_delete_buffer(YY_CURRENT_BUFFER); yy_switch_to_buffer(include_stack[config_include_stack_ptr]); } #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 103 "util/configlexer.lex" #ifndef YY_NO_UNPUT #define YY_NO_UNPUT 1 #endif #ifndef YY_NO_INPUT #define YY_NO_INPUT 1 #endif #line 1483 "" #define INITIAL 0 #define quotedstring 1 #define singlequotedstr 2 #define include 3 #define include_quoted 4 #define val 5 #ifndef YY_NO_UNISTD_H /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ #include #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif static int yy_init_globals (void ); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int yylex_destroy (void ); int yyget_debug (void ); void yyset_debug (int debug_flag ); YY_EXTRA_TYPE yyget_extra (void ); void yyset_extra (YY_EXTRA_TYPE user_defined ); FILE *yyget_in (void ); void yyset_in (FILE * in_str ); FILE *yyget_out (void ); void yyset_out (FILE * out_str ); int yyget_leng (void ); char *yyget_text (void ); int yyget_lineno (void ); void yyset_lineno (int line_number ); /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap (void ); #else extern int yywrap (void ); #endif #endif #ifndef 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 fwrite( yytext, yyleng, 1, yyout ) #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 = '*'; \ unsigned 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 123 "util/configlexer.lex" #line 1670 "" 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 >= 1187 ) 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] != 2375 ); 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 124 "util/configlexer.lex" { LEXOUT(("SP ")); /* ignore */ } YY_BREAK case 2: *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 126 "util/configlexer.lex" { LEXOUT(("comment(%s) ", yytext)); /* ignore */ } YY_BREAK case 3: YY_RULE_SETUP #line 128 "util/configlexer.lex" { YDVAR(0, VAR_SERVER) } YY_BREAK case 4: YY_RULE_SETUP #line 129 "util/configlexer.lex" { YDVAR(1, VAR_NUM_THREADS) } YY_BREAK case 5: YY_RULE_SETUP #line 130 "util/configlexer.lex" { YDVAR(1, VAR_VERBOSITY) } YY_BREAK case 6: YY_RULE_SETUP #line 131 "util/configlexer.lex" { YDVAR(1, VAR_PORT) } YY_BREAK case 7: YY_RULE_SETUP #line 132 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_RANGE) } YY_BREAK case 8: YY_RULE_SETUP #line 133 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_PERMIT) } YY_BREAK case 9: YY_RULE_SETUP #line 134 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_AVOID) } YY_BREAK case 10: YY_RULE_SETUP #line 135 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_NUM_TCP) } YY_BREAK case 11: YY_RULE_SETUP #line 136 "util/configlexer.lex" { YDVAR(1, VAR_INCOMING_NUM_TCP) } YY_BREAK case 12: YY_RULE_SETUP #line 137 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP4) } YY_BREAK case 13: YY_RULE_SETUP #line 138 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP6) } YY_BREAK case 14: YY_RULE_SETUP #line 139 "util/configlexer.lex" { YDVAR(1, VAR_DO_UDP) } YY_BREAK case 15: YY_RULE_SETUP #line 140 "util/configlexer.lex" { YDVAR(1, VAR_DO_TCP) } YY_BREAK case 16: YY_RULE_SETUP #line 141 "util/configlexer.lex" { YDVAR(1, VAR_DO_DAEMONIZE) } YY_BREAK case 17: YY_RULE_SETUP #line 142 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 18: YY_RULE_SETUP #line 143 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_INTERFACE) } YY_BREAK case 19: YY_RULE_SETUP #line 144 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE_AUTOMATIC) } YY_BREAK case 20: YY_RULE_SETUP #line 145 "util/configlexer.lex" { YDVAR(1, VAR_SO_RCVBUF) } YY_BREAK case 21: YY_RULE_SETUP #line 146 "util/configlexer.lex" { YDVAR(1, VAR_CHROOT) } YY_BREAK case 22: YY_RULE_SETUP #line 147 "util/configlexer.lex" { YDVAR(1, VAR_USERNAME) } YY_BREAK case 23: YY_RULE_SETUP #line 148 "util/configlexer.lex" { YDVAR(1, VAR_DIRECTORY) } YY_BREAK case 24: YY_RULE_SETUP #line 149 "util/configlexer.lex" { YDVAR(1, VAR_LOGFILE) } YY_BREAK case 25: YY_RULE_SETUP #line 150 "util/configlexer.lex" { YDVAR(1, VAR_PIDFILE) } YY_BREAK case 26: YY_RULE_SETUP #line 151 "util/configlexer.lex" { YDVAR(1, VAR_ROOT_HINTS) } YY_BREAK case 27: YY_RULE_SETUP #line 152 "util/configlexer.lex" { YDVAR(1, VAR_MSG_BUFFER_SIZE) } YY_BREAK case 28: YY_RULE_SETUP #line 153 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SIZE) } YY_BREAK case 29: YY_RULE_SETUP #line 154 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SLABS) } YY_BREAK case 30: YY_RULE_SETUP #line 155 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SIZE) } YY_BREAK case 31: YY_RULE_SETUP #line 156 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SLABS) } YY_BREAK case 32: YY_RULE_SETUP #line 157 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_TTL) } YY_BREAK case 33: YY_RULE_SETUP #line 158 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MIN_TTL) } YY_BREAK case 34: YY_RULE_SETUP #line 159 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_HOST_TTL) } YY_BREAK case 35: YY_RULE_SETUP #line 160 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_LAME_TTL) } YY_BREAK case 36: YY_RULE_SETUP #line 161 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_SLABS) } YY_BREAK case 37: YY_RULE_SETUP #line 162 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) } YY_BREAK case 38: YY_RULE_SETUP #line 163 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) } YY_BREAK case 39: YY_RULE_SETUP #line 164 "util/configlexer.lex" { YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) } YY_BREAK case 40: YY_RULE_SETUP #line 165 "util/configlexer.lex" { YDVAR(1, VAR_JOSTLE_TIMEOUT) } YY_BREAK case 41: YY_RULE_SETUP #line 166 "util/configlexer.lex" { YDVAR(1, VAR_TARGET_FETCH_POLICY) } YY_BREAK case 42: YY_RULE_SETUP #line 167 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) } YY_BREAK case 43: YY_RULE_SETUP #line 168 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_LARGE_QUERIES) } YY_BREAK case 44: YY_RULE_SETUP #line 169 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_GLUE) } YY_BREAK case 45: YY_RULE_SETUP #line 170 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_DNNSEC_STRIPPED) } YY_BREAK case 46: YY_RULE_SETUP #line 171 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_REFERRAL_PATH) } YY_BREAK case 47: YY_RULE_SETUP #line 172 "util/configlexer.lex" { YDVAR(1, VAR_USE_CAPS_FOR_ID) } YY_BREAK case 48: YY_RULE_SETUP #line 173 "util/configlexer.lex" { YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) } YY_BREAK case 49: YY_RULE_SETUP #line 174 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_ADDRESS) } YY_BREAK case 50: YY_RULE_SETUP #line 175 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_DOMAIN) } YY_BREAK case 51: YY_RULE_SETUP #line 176 "util/configlexer.lex" { YDVAR(0, VAR_STUB_ZONE) } YY_BREAK case 52: YY_RULE_SETUP #line 177 "util/configlexer.lex" { YDVAR(1, VAR_NAME) } YY_BREAK case 53: YY_RULE_SETUP #line 178 "util/configlexer.lex" { YDVAR(1, VAR_STUB_ADDR) } YY_BREAK case 54: YY_RULE_SETUP #line 179 "util/configlexer.lex" { YDVAR(1, VAR_STUB_HOST) } YY_BREAK case 55: YY_RULE_SETUP #line 180 "util/configlexer.lex" { YDVAR(1, VAR_STUB_PRIME) } YY_BREAK case 56: YY_RULE_SETUP #line 181 "util/configlexer.lex" { YDVAR(0, VAR_FORWARD_ZONE) } YY_BREAK case 57: YY_RULE_SETUP #line 182 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_ADDR) } YY_BREAK case 58: YY_RULE_SETUP #line 183 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_HOST) } YY_BREAK case 59: YY_RULE_SETUP #line 184 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) } YY_BREAK case 60: YY_RULE_SETUP #line 185 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) } YY_BREAK case 61: YY_RULE_SETUP #line 186 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL) } YY_BREAK case 62: YY_RULE_SETUP #line 187 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_IDENTITY) } YY_BREAK case 63: YY_RULE_SETUP #line 188 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_VERSION) } YY_BREAK case 64: YY_RULE_SETUP #line 189 "util/configlexer.lex" { YDVAR(1, VAR_IDENTITY) } YY_BREAK case 65: YY_RULE_SETUP #line 190 "util/configlexer.lex" { YDVAR(1, VAR_VERSION) } YY_BREAK case 66: YY_RULE_SETUP #line 191 "util/configlexer.lex" { YDVAR(1, VAR_MODULE_CONF) } YY_BREAK case 67: YY_RULE_SETUP #line 192 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR) } YY_BREAK case 68: YY_RULE_SETUP #line 193 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR_FILE) } YY_BREAK case 69: YY_RULE_SETUP #line 194 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_FILE) } YY_BREAK case 70: YY_RULE_SETUP #line 195 "util/configlexer.lex" { YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) } YY_BREAK case 71: YY_RULE_SETUP #line 196 "util/configlexer.lex" { YDVAR(1, VAR_TRUSTED_KEYS_FILE) } YY_BREAK case 72: YY_RULE_SETUP #line 197 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR) } YY_BREAK case 73: YY_RULE_SETUP #line 198 "util/configlexer.lex" { YDVAR(1, VAR_VAL_OVERRIDE_DATE) } YY_BREAK case 74: YY_RULE_SETUP #line 199 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MIN) } YY_BREAK case 75: YY_RULE_SETUP #line 200 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MAX) } YY_BREAK case 76: YY_RULE_SETUP #line 201 "util/configlexer.lex" { YDVAR(1, VAR_BOGUS_TTL) } YY_BREAK case 77: YY_RULE_SETUP #line 202 "util/configlexer.lex" { YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) } YY_BREAK case 78: YY_RULE_SETUP #line 203 "util/configlexer.lex" { YDVAR(1, VAR_VAL_PERMISSIVE_MODE) } YY_BREAK case 79: YY_RULE_SETUP #line 204 "util/configlexer.lex" { YDVAR(1, VAR_VAL_LOG_LEVEL) } YY_BREAK case 80: YY_RULE_SETUP #line 205 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SIZE) } YY_BREAK case 81: YY_RULE_SETUP #line 206 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SLABS) } YY_BREAK case 82: YY_RULE_SETUP #line 207 "util/configlexer.lex" { YDVAR(1, VAR_NEG_CACHE_SIZE) } YY_BREAK case 83: YY_RULE_SETUP #line 208 "util/configlexer.lex" { YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) } YY_BREAK case 84: YY_RULE_SETUP #line 210 "util/configlexer.lex" { YDVAR(1, VAR_ADD_HOLDDOWN) } YY_BREAK case 85: YY_RULE_SETUP #line 211 "util/configlexer.lex" { YDVAR(1, VAR_DEL_HOLDDOWN) } YY_BREAK case 86: YY_RULE_SETUP #line 212 "util/configlexer.lex" { YDVAR(1, VAR_KEEP_MISSING) } YY_BREAK case 87: YY_RULE_SETUP #line 213 "util/configlexer.lex" { YDVAR(1, VAR_USE_SYSLOG) } YY_BREAK case 88: YY_RULE_SETUP #line 214 "util/configlexer.lex" { YDVAR(1, VAR_LOG_TIME_ASCII) } YY_BREAK case 89: YY_RULE_SETUP #line 215 "util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE) } YY_BREAK case 90: YY_RULE_SETUP #line 216 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA) } YY_BREAK case 91: YY_RULE_SETUP #line 217 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA_PTR) } YY_BREAK case 92: YY_RULE_SETUP #line 218 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_INTERVAL) } YY_BREAK case 93: YY_RULE_SETUP #line 219 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_CUMULATIVE) } YY_BREAK case 94: YY_RULE_SETUP #line 220 "util/configlexer.lex" { YDVAR(1, VAR_EXTENDED_STATISTICS) } YY_BREAK case 95: YY_RULE_SETUP #line 221 "util/configlexer.lex" { YDVAR(0, VAR_REMOTE_CONTROL) } YY_BREAK case 96: YY_RULE_SETUP #line 222 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_ENABLE) } YY_BREAK case 97: YY_RULE_SETUP #line 223 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_INTERFACE) } YY_BREAK case 98: YY_RULE_SETUP #line 224 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_PORT) } YY_BREAK case 99: YY_RULE_SETUP #line 225 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_KEY_FILE) } YY_BREAK case 100: YY_RULE_SETUP #line 226 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_CERT_FILE) } YY_BREAK case 101: YY_RULE_SETUP #line 227 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_KEY_FILE) } YY_BREAK case 102: YY_RULE_SETUP #line 228 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_CERT_FILE) } YY_BREAK case 103: YY_RULE_SETUP #line 229 "util/configlexer.lex" { YDVAR(1, VAR_PYTHON_SCRIPT) } YY_BREAK case 104: YY_RULE_SETUP #line 230 "util/configlexer.lex" { YDVAR(0, VAR_PYTHON) } YY_BREAK case 105: YY_RULE_SETUP #line 231 "util/configlexer.lex" { YDVAR(1, VAR_DOMAIN_INSECURE) } YY_BREAK case 106: /* rule 106 can match eol */ YY_RULE_SETUP #line 232 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK /* Quoted strings. Strip leading and ending quotes */ case 107: YY_RULE_SETUP #line 235 "util/configlexer.lex" { BEGIN(quotedstring); LEXOUT(("QS ")); } YY_BREAK case YY_STATE_EOF(quotedstring): #line 236 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 108: YY_RULE_SETUP #line 241 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 109: /* rule 109 can match eol */ YY_RULE_SETUP #line 242 "util/configlexer.lex" { yyerror("newline inside quoted string, no end \""); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 110: YY_RULE_SETUP #line 244 "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 111: YY_RULE_SETUP #line 256 "util/configlexer.lex" { BEGIN(singlequotedstr); LEXOUT(("SQS ")); } YY_BREAK case YY_STATE_EOF(singlequotedstr): #line 257 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 112: YY_RULE_SETUP #line 262 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 113: /* rule 113 can match eol */ YY_RULE_SETUP #line 263 "util/configlexer.lex" { yyerror("newline inside quoted string, no end '"); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 114: YY_RULE_SETUP #line 265 "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 115: YY_RULE_SETUP #line 277 "util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); } YY_BREAK case YY_STATE_EOF(include): #line 279 "util/configlexer.lex" { yyerror("EOF inside include directive"); BEGIN(inc_prev); } YY_BREAK case 116: YY_RULE_SETUP #line 283 "util/configlexer.lex" { LEXOUT(("ISP ")); /* ignore */ } YY_BREAK case 117: /* rule 117 can match eol */ YY_RULE_SETUP #line 284 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++;} YY_BREAK case 118: YY_RULE_SETUP #line 285 "util/configlexer.lex" { LEXOUT(("IQS ")); BEGIN(include_quoted); } YY_BREAK case 119: YY_RULE_SETUP #line 286 "util/configlexer.lex" { LEXOUT(("Iunquotedstr(%s) ", yytext)); config_start_include(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(include_quoted): #line 291 "util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 120: YY_RULE_SETUP #line 295 "util/configlexer.lex" { LEXOUT(("ISTR(%s) ", yytext)); yymore(); } YY_BREAK case 121: /* rule 121 can match eol */ YY_RULE_SETUP #line 296 "util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 122: YY_RULE_SETUP #line 298 "util/configlexer.lex" { LEXOUT(("IQE ")); yytext[yyleng - 1] = '\0'; config_start_include(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(val): #line 304 "util/configlexer.lex" { yy_set_bol(1); /* Set beginning of line, so "^" rules match. */ if (config_include_stack_ptr == 0) { yyterminate(); } else { fclose(yyin); config_end_include(); } } YY_BREAK case 123: YY_RULE_SETUP #line 314 "util/configlexer.lex" { LEXOUT(("unquotedstr(%s) ", yytext)); if(--num_args == 0) { BEGIN(INITIAL); } yylval.str = strdup(yytext); return STRING_ARG; } YY_BREAK case 124: YY_RULE_SETUP #line 318 "util/configlexer.lex" { ub_c_error_msg("unknown keyword '%s'", yytext); } YY_BREAK case 125: YY_RULE_SETUP #line 322 "util/configlexer.lex" { ub_c_error_msg("stray '%s'", yytext); } YY_BREAK case 126: YY_RULE_SETUP #line 326 "util/configlexer.lex" ECHO; YY_BREAK #line 2483 "" case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = (yy_c_buf_p); goto yy_find_action; } } else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { (yy_did_buffer_switch_on_eof) = 0; if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: (yy_c_buf_p) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer (void) { register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; register char *source = (yytext_ptr); register int number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { int num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = YY_CURRENT_BUFFER; int yy_c_buf_p_offset = (int) ((yy_c_buf_p) - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { int new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), (size_t) num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart(yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); } (yy_n_chars) += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state (void) { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = (yy_start); for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 1187 ) 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 >= 1187 ) 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 == 1186); return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void) #else static int input (void) #endif { int c; *(yy_c_buf_p) = (yy_hold_char); if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ *(yy_c_buf_p) = '\0'; else { /* need more input */ int offset = (yy_c_buf_p) - (yytext_ptr); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart(yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) return EOF; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); return c; } #endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * * @note This function does not reset the start condition to @c INITIAL . */ void yyrestart (FILE * input_file ) { if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_init_buffer(YY_CURRENT_BUFFER,input_file ); yy_load_buffer_state( ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * */ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) { /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ yyensure_buffer_stack (); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ (yy_did_buffer_switch_on_eof) = 1; } static void yy_load_buffer_state (void) { (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; (yy_hold_char) = *(yy_c_buf_p); } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * * @return the allocated buffer state. */ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer(b,file ); return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * */ void yy_delete_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree((void *) b->yy_ch_buf ); yyfree((void *) b ); } #ifndef __cplusplus extern int isatty (int ); #endif /* __cplusplus */ /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) { int oerrno = errno; yy_flush_buffer(b ); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * */ void yy_flush_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) yy_load_buffer_state( ); } /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * */ void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) { if (new_buffer == NULL) return; yyensure_buffer_stack(); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) (yy_buffer_stack_top)++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * */ void yypop_buffer_state (void) { if (!YY_CURRENT_BUFFER) return; yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; if ((yy_buffer_stack_top) > 0) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ static void yyensure_buffer_stack (void) { int num_to_alloc; if (!(yy_buffer_stack)) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; (yy_buffer_stack_top) = 0; return; } if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ int grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc ((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); /* zero only the new slots.*/ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; } } /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer(b ); return b; } /** Setup the input buffer state to scan a string. The next call to yylex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) { return yy_scan_bytes(yystr,strlen(yystr) ); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will * scan from a @e copy of @a bytes. * @param bytes the byte buffer to scan * @param len the number of bytes in the buffer pointed to by @a bytes. * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len ) { YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; /* Get memory for full buffer, including space for trailing EOB's. */ n = _yybytes_len + 2; buf = (char *) yyalloc(n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer(buf,n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif static void yy_fatal_error (yyconst char* msg ) { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = (yy_hold_char); \ (yy_c_buf_p) = yytext + yyless_macro_arg; \ (yy_hold_char) = *(yy_c_buf_p); \ *(yy_c_buf_p) = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ int yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the current line number. * @param line_number * */ void yyset_lineno (int line_number ) { yylineno = line_number; } /** Set the input stream. This does not discard the current * input buffer. * @param in_str A readable stream. * * @see yy_switch_to_buffer */ void yyset_in (FILE * in_str ) { yyin = in_str ; } void yyset_out (FILE * out_str ) { yyout = out_str ; } int yyget_debug (void) { return yy_flex_debug; } void yyset_debug (int bdebug ) { yy_flex_debug = bdebug ; } static int yy_init_globals (void) { /* Initialization is the same as for the non-reentrant scanner. * This function is called from yylex_destroy(), so don't allocate here. */ (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 326 "util/configlexer.lex"