#include "config.h" #include "util/configyyrename.h" #line 3 "" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 6 #define YY_FLEX_SUBMINOR_VERSION 0 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ #include #include #include #include /* end standard C headers. */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 #endif #include typedef int8_t flex_int8_t; typedef uint8_t flex_uint8_t; typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; /* Limits of integral types. */ #ifndef INT8_MIN #define INT8_MIN (-128) #endif #ifndef INT16_MIN #define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN #define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX #define INT8_MAX (127) #endif #ifndef INT16_MAX #define INT16_MAX (32767) #endif #ifndef INT32_MAX #define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX #define UINT8_MAX (255U) #endif #ifndef UINT16_MAX #define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX #define UINT32_MAX (4294967295U) #endif #endif /* ! C99 */ #endif /* ! FLEXINT_H */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ /* C99 requires __STDC__ to be defined as 1. */ #if defined (__STDC__) #define YY_USE_CONST #endif /* defined (__STDC__) */ #endif /* ! __cplusplus */ #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN (yy_start) = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START (((yy_start) - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart(yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k. * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. * Ditto for the __ia64__ case accordingly. */ #define YY_BUF_SIZE 32768 #else #define YY_BUF_SIZE 16384 #endif /* __ia64__ */ #endif /* The state buf must be large enough to hold one state per character in the main buffer. */ #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #endif extern yy_size_t yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 #define YY_LESS_LINENO(n) #define YY_LINENO_REWIND_TO(ptr) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ yy_size_t yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ yy_size_t yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* Stack of input buffers. */ static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ : NULL) /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static yy_size_t yy_n_chars; /* number of characters read into yy_ch_buf */ yy_size_t yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 0; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart (FILE *input_file ); void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); void yy_delete_buffer (YY_BUFFER_STATE b ); void yy_flush_buffer (YY_BUFFER_STATE b ); void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); void yypop_buffer_state (void ); static void yyensure_buffer_stack (void ); static void yy_load_buffer_state (void ); static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len ); void *yyalloc (yy_size_t ); void *yyrealloc (void *,yy_size_t ); void yyfree (void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #ifdef yytext_ptr #undef yytext_ptr #endif #define yytext_ptr yytext static yy_state_type yy_get_previous_state (void ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); static int yy_get_next_buffer (void ); #if defined(__GNUC__) && __GNUC__ >= 3 __attribute__((__noreturn__)) #endif 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 203 #define YY_END_OF_BUFFER 204 /* 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[1997] = { 0, 1, 1, 185, 185, 189, 189, 193, 193, 197, 197, 1, 1, 204, 201, 1, 183, 183, 202, 2, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 202, 185, 186, 186, 187, 202, 189, 190, 190, 191, 202, 196, 193, 194, 194, 195, 202, 197, 198, 198, 199, 202, 200, 184, 2, 188, 200, 202, 201, 0, 1, 2, 2, 2, 2, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 185, 0, 189, 0, 196, 0, 193, 197, 0, 200, 0, 2, 2, 200, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 200, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 200, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 77, 201, 201, 201, 201, 201, 201, 8, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 88, 200, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 200, 201, 201, 201, 201, 201, 37, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 159, 201, 14, 15, 201, 18, 17, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 145, 201, 201, 201, 201, 201, 201, 201, 201, 3, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 200, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 192, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 40, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 41, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 20, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 96, 201, 192, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 112, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 95, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 75, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 25, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 38, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 39, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 28, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 174, 201, 201, 201, 201, 201, 201, 201, 32, 201, 33, 201, 201, 201, 78, 201, 79, 201, 201, 76, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 7, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 152, 201, 201, 201, 201, 98, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 29, 201, 201, 201, 201, 201, 201, 201, 128, 201, 127, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 16, 201, 201, 201, 201, 201, 201, 201, 201, 201, 42, 201, 201, 201, 201, 201, 201, 201, 201, 201, 81, 80, 201, 201, 201, 201, 201, 201, 201, 201, 122, 201, 201, 201, 201, 201, 201, 201, 201, 89, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 60, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 64, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 36, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 125, 126, 201, 201, 201, 201, 201, 201, 201, 201, 201, 6, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 26, 201, 201, 201, 201, 201, 201, 201, 201, 118, 201, 201, 201, 201, 201, 201, 201, 201, 201, 138, 201, 119, 201, 201, 150, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 27, 201, 201, 201, 201, 84, 201, 85, 201, 83, 201, 201, 201, 201, 201, 201, 201, 94, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 173, 201, 201, 120, 201, 201, 201, 201, 201, 123, 201, 149, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 74, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 34, 201, 201, 22, 201, 201, 201, 201, 19, 201, 103, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 49, 51, 201, 201, 201, 201, 201, 201, 201, 201, 201, 160, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 86, 201, 201, 201, 201, 201, 201, 201, 93, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 97, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 144, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 111, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 107, 201, 113, 201, 201, 201, 201, 201, 92, 201, 201, 70, 201, 136, 201, 201, 201, 201, 201, 151, 201, 201, 201, 201, 201, 201, 201, 165, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 110, 201, 201, 201, 201, 201, 52, 53, 201, 201, 201, 201, 201, 35, 59, 114, 201, 129, 201, 153, 124, 201, 201, 45, 201, 116, 201, 201, 201, 201, 201, 9, 201, 201, 201, 73, 201, 201, 201, 201, 178, 201, 135, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 99, 164, 201, 201, 201, 201, 201, 201, 201, 201, 146, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 115, 201, 201, 44, 46, 201, 201, 201, 201, 201, 201, 201, 72, 201, 201, 201, 201, 176, 201, 201, 201, 201, 140, 23, 24, 201, 201, 201, 201, 201, 201, 201, 201, 69, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 142, 139, 201, 201, 201, 201, 201, 201, 201, 201, 201, 43, 201, 201, 201, 201, 201, 201, 201, 201, 13, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 12, 201, 201, 21, 201, 201, 201, 182, 201, 47, 201, 148, 141, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 106, 105, 201, 201, 201, 201, 143, 137, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 54, 201, 201, 201, 177, 201, 201, 147, 201, 201, 201, 201, 201, 201, 201, 201, 48, 201, 201, 82, 201, 100, 102, 130, 201, 201, 201, 104, 201, 201, 154, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 161, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 131, 201, 201, 175, 201, 201, 30, 201, 201, 201, 201, 4, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 157, 201, 201, 201, 201, 201, 201, 201, 201, 163, 201, 201, 134, 201, 201, 201, 201, 201, 201, 201, 201, 57, 201, 31, 181, 158, 201, 11, 201, 201, 201, 201, 201, 201, 132, 61, 201, 201, 201, 109, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 162, 90, 201, 87, 201, 201, 201, 63, 67, 62, 201, 55, 201, 10, 201, 201, 201, 179, 201, 201, 108, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 68, 66, 201, 56, 201, 121, 201, 201, 133, 201, 201, 201, 201, 101, 50, 201, 201, 201, 201, 201, 201, 201, 91, 65, 58, 201, 180, 201, 201, 201, 156, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 71, 201, 155, 172, 201, 201, 201, 201, 201, 201, 5, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 117, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 168, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 166, 201, 169, 170, 201, 201, 201, 201, 201, 167, 171, 0 } ; static yyconst YY_CHAR yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 5, 6, 1, 1, 1, 7, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 9, 10, 1, 11, 1, 1, 1, 12, 1, 1, 1, 1, 1, 1, 13, 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, 1, 39, 1, 1, 1, 1, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst YY_CHAR yy_meta[66] = { 0, 1, 2, 3, 4, 5, 1, 6, 1, 1, 1, 1, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst flex_uint16_t yy_base[2011] = { 0, 0, 0, 63, 66, 69, 71, 77, 83, 88, 91, 129, 135, 354, 275, 95, 5728, 5728, 5728, 107, 110, 142, 180, 108, 145, 152, 186, 50, 149, 121, 182, 210, 177, 254, 137, 225, 229, 205, 227, 273, 116, 271, 5728, 5728, 5728, 94, 268, 5728, 5728, 5728, 96, 261, 295, 5728, 5728, 5728, 299, 256, 5728, 5728, 5728, 102, 250, 5728, 318, 5728, 141, 322, 228, 326, 111, 0, 330, 0, 0, 257, 235, 277, 324, 310, 266, 323, 314, 125, 312, 348, 322, 326, 341, 320, 351, 339, 359, 357, 374, 209, 362, 378, 392, 358, 373, 386, 404, 389, 405, 410, 398, 379, 424, 409, 435, 414, 432, 422, 430, 431, 429, 445, 218, 441, 464, 456, 450, 455, 477, 481, 472, 460, 483, 224, 174, 220, 150, 172, 524, 206, 159, 272, 122, 528, 536, 0, 495, 519, 307, 515, 525, 513, 520, 514, 528, 542, 539, 547, 468, 557, 601, 552, 546, 540, 549, 559, 564, 580, 573, 574, 581, 572, 592, 598, 625, 586, 611, 602, 633, 640, 639, 632, 623, 651, 650, 660, 661, 656, 649, 658, 654, 659, 653, 671, 680, 689, 669, 677, 690, 678, 691, 703, 688, 711, 705, 707, 704, 702, 718, 729, 730, 740, 721, 716, 733, 741, 737, 746, 757, 739, 743, 748, 750, 738, 769, 778, 781, 454, 786, 790, 767, 777, 794, 789, 802, 799, 798, 804, 800, 810, 806, 803, 814, 813, 809, 842, 841, 827, 831, 828, 847, 833, 840, 857, 853, 854, 868, 855, 869, 874, 880, 895, 509, 873, 882, 879, 896, 901, 889, 903, 917, 912, 906, 919, 914, 924, 916, 935, 944, 928, 954, 941, 952, 951, 959, 937, 967, 971, 984, 974, 1029, 977, 981, 993, 989, 994, 991, 1002, 964, 1000, 1008, 1009, 1020, 1011, 969, 1019, 1030, 1040, 1038, 1046, 1055, 551, 1056, 1047, 1061, 1064, 1082, 1075, 1081, 1068, 1066, 1088, 1087, 1089, 1095, 1091, 1065, 1098, 1111, 1116, 1123, 1109, 1130, 1127, 1121, 1138, 1137, 1136, 1114, 1144, 1133, 1141, 1147, 1169, 1167, 1152, 1174, 5728, 1176, 1160, 1178, 1179, 1162, 1171, 5728, 1194, 1164, 1193, 1189, 1208, 1213, 1211, 1196, 1229, 1200, 1203, 1227, 1221, 1223, 1210, 1233, 1279, 1237, 1240, 1245, 1270, 1262, 1249, 1272, 1256, 1276, 1267, 1289, 1296, 1291, 1293, 1308, 1312, 1300, 1302, 1318, 5728, 1322, 1266, 1329, 1316, 1320, 1323, 1243, 1340, 1358, 1343, 1354, 1344, 1360, 1361, 1347, 1373, 1349, 1372, 1375, 1381, 1378, 1380, 1387, 1374, 1389, 1377, 1393, 1402, 1399, 1401, 1390, 1413, 1407, 1404, 1424, 1417, 1414, 1420, 1441, 1443, 1439, 1423, 1416, 1452, 1445, 1451, 1459, 1442, 1447, 1462, 1461, 1469, 1465, 1478, 1487, 1492, 1488, 1479, 1485, 1504, 1496, 1506, 1500, 1502, 1513, 1505, 1508, 1514, 1516, 1533, 1532, 1542, 1544, 1520, 1547, 1535, 1538, 1531, 1534, 1563, 1548, 1555, 1561, 1566, 1571, 1572, 1568, 1573, 1588, 1597, 1580, 1598, 1593, 1577, 1595, 1604, 1600, 1610, 1616, 1624, 1615, 1619, 1625, 1627, 1630, 1635, 1642, 1643, 1628, 1662, 1650, 5728, 1654, 1638, 1660, 1661, 1657, 1682, 1672, 1665, 1668, 1716, 5728, 1681, 5728, 5728, 1686, 5728, 5728, 1670, 1699, 1700, 1713, 1715, 1765, 1707, 1706, 1692, 1719, 1718, 1729, 1746, 1743, 1752, 1732, 1751, 1755, 1759, 1763, 1749, 1771, 1770, 1792, 1802, 1786, 1793, 1787, 1794, 1804, 1808, 1816, 1819, 1814, 1818, 1815, 1829, 1820, 1821, 1832, 1830, 1825, 1831, 1846, 1859, 1841, 5728, 1852, 1853, 1866, 1856, 1871, 1848, 1850, 1881, 5728, 1864, 1873, 1882, 1875, 1888, 1886, 1898, 1890, 1896, 1897, 1909, 1908, 1912, 1921, 1904, 1922, 1924, 1932, 1933, 1936, 1925, 1946, 1945, 1934, 1956, 1960, 1959, 1952, 1951, 1972, 1954, 1975, 1976, 1980, 1973, 1986, 1977, 1968, 1984, 1985, 2030, 2009, 2016, 2003, 1997, 2023, 2011, 2029, 2017, 2028, 2036, 2037, 2060, 2054, 2056, 2050, 2058, 2068, 2080, 2082, 2109, 2077, 2079, 2086, 2081, 2095, 2098, 2097, 2104, 2102, 2112, 2122, 5728, 2092, 2111, 2124, 2120, 2138, 2141, 2131, 2145, 2147, 2136, 2148, 2140, 2161, 2144, 2155, 2158, 2167, 2171, 2165, 5728, 2168, 2172, 2174, 2192, 2195, 2199, 2193, 2205, 2212, 2196, 5728, 2194, 2215, 2224, 2227, 2220, 2218, 2226, 2223, 2232, 2219, 2233, 2239, 2251, 2242, 2247, 2252, 2264, 2268, 2254, 2270, 2262, 2265, 2266, 2269, 2291, 2283, 2289, 5728, 2285, 2295, 2290, 2293, 2306, 2310, 2299, 2318, 2308, 2300, 2315, 2312, 106, 2313, 2325, 2317, 2322, 5728, 2335, 90, 2339, 2328, 2337, 2342, 2352, 2355, 2362, 2345, 2351, 2363, 2356, 2358, 2366, 2361, 2372, 2375, 2382, 2379, 2395, 2385, 2406, 2403, 2404, 2399, 2412, 2392, 2416, 2409, 2402, 2422, 2426, 5728, 2440, 2437, 2432, 2431, 2436, 2448, 2449, 2438, 2435, 2442, 2462, 2464, 2465, 2471, 5728, 2470, 2467, 2478, 2473, 2491, 2487, 2515, 2482, 2476, 2489, 2503, 2497, 2512, 2523, 2524, 2517, 2518, 2528, 2529, 2531, 2526, 2536, 2543, 2520, 2540, 2544, 2559, 2542, 2583, 2577, 176, 2555, 5728, 2571, 2573, 2562, 2581, 2585, 2582, 2560, 2586, 2600, 2602, 2598, 2593, 2595, 2617, 2631, 5728, 2630, 2629, 2620, 2635, 2622, 2636, 2641, 2627, 2637, 2645, 2647, 2643, 2650, 2666, 2653, 2670, 2674, 2672, 5728, 2547, 2657, 2678, 2690, 2679, 2668, 2680, 2689, 2682, 2684, 2673, 2694, 2699, 2700, 2710, 2706, 2727, 2705, 2709, 2712, 2733, 2735, 2718, 2737, 5728, 2729, 2763, 2744, 2750, 2764, 2756, 2747, 2768, 2762, 2757, 2752, 2769, 2777, 2774, 2761, 2790, 2780, 2783, 2799, 2801, 2791, 2797, 2803, 2808, 2809, 2818, 2814, 2825, 2829, 2821, 2810, 2841, 2824, 2851, 2852, 2854, 5728, 2857, 2856, 2858, 2845, 2859, 2848, 2847, 2869, 2892, 2850, 2876, 2879, 2880, 2874, 2883, 2903, 2908, 2886, 2893, 2896, 2897, 2904, 2890, 2906, 2913, 2925, 2922, 2937, 2939, 2942, 2938, 2941, 2940, 2956, 5728, 2927, 2957, 2954, 2966, 2945, 2967, 2964, 5728, 2961, 5728, 2971, 2981, 2996, 5728, 2995, 5728, 2999, 2984, 5728, 2998, 3003, 2990, 2985, 2993, 3008, 3006, 3015, 3012, 3009, 3017, 2997, 3027, 3037, 3028, 3044, 5728, 3050, 3033, 3039, 3056, 3054, 3042, 3043, 3052, 3055, 3065, 3068, 3076, 3071, 3089, 5728, 3079, 3087, 3077, 3095, 5728, 3081, 3098, 3085, 3090, 3124, 3111, 3104, 3112, 3108, 3116, 3126, 3119, 3132, 3131, 3125, 3135, 3123, 3140, 3138, 3143, 3156, 3147, 3158, 3146, 3157, 3159, 3167, 3168, 3162, 3182, 3172, 3176, 3173, 3184, 5728, 3197, 3190, 3193, 3186, 3208, 3209, 3200, 5728, 3211, 5728, 3214, 3222, 3229, 3227, 3228, 3224, 3225, 3243, 3238, 3237, 3248, 3259, 3249, 3255, 3245, 3257, 3264, 3266, 5728, 3254, 3265, 3284, 3272, 3291, 3282, 3293, 3292, 3295, 5728, 3306, 3298, 3312, 3307, 3318, 3303, 3330, 3319, 3333, 5728, 5728, 3310, 3339, 3325, 3331, 3334, 3345, 3346, 3337, 5728, 3348, 3350, 3363, 3366, 3373, 3374, 3359, 3358, 5728, 3369, 3383, 3377, 3380, 3376, 3390, 3393, 3396, 3397, 3395, 3410, 3399, 3418, 3419, 5728, 3420, 3422, 3427, 3423, 3428, 3429, 3430, 3417, 3436, 3444, 3447, 3446, 3451, 3468, 3449, 3456, 3452, 3477, 3462, 3481, 3463, 3485, 3483, 3490, 3488, 5728, 3496, 3480, 3500, 3476, 3505, 3512, 3504, 3507, 3502, 3510, 3528, 3515, 5728, 3545, 3524, 3523, 3506, 3532, 3542, 3534, 3541, 3551, 3556, 5728, 5728, 3555, 3560, 3559, 3566, 3567, 3562, 3579, 3569, 3581, 5728, 3572, 3540, 3578, 3585, 3606, 3613, 3584, 3605, 3607, 3594, 3599, 3608, 3624, 3611, 3604, 3622, 3621, 3625, 3631, 3635, 3647, 3633, 3628, 3648, 3661, 3649, 3651, 3652, 3671, 3668, 3681, 3686, 3657, 3673, 3691, 5728, 3677, 3690, 3684, 3676, 3697, 3680, 3709, 3703, 5728, 3711, 3705, 3719, 3720, 3707, 3716, 3721, 3725, 3728, 5728, 3730, 5728, 3736, 3732, 5728, 3733, 3740, 3741, 3742, 3738, 3754, 3766, 3769, 3779, 3762, 5728, 3783, 3759, 3771, 3778, 5728, 3782, 5728, 3775, 5728, 3793, 3785, 3789, 3796, 3814, 3790, 3794, 5728, 3817, 3805, 3826, 3819, 3809, 3821, 3822, 3831, 3811, 3832, 3844, 5728, 3842, 3845, 5728, 3851, 3864, 3849, 3868, 3872, 5728, 3871, 5728, 3861, 3881, 3858, 3877, 3885, 3891, 3892, 3883, 3893, 3890, 3898, 3902, 3908, 5728, 3907, 3917, 3905, 3920, 3912, 3918, 3937, 3936, 3944, 3910, 3943, 3948, 3951, 3947, 3945, 5728, 3954, 3961, 5728, 3949, 3940, 3967, 3953, 5728, 3984, 5728, 3986, 3976, 3970, 3989, 3999, 3993, 4000, 3982, 4003, 4005, 4008, 4040, 3996, 4018, 5728, 5728, 4006, 4015, 4014, 4042, 4027, 4026, 4019, 4045, 4047, 5728, 4030, 4051, 4035, 4034, 4054, 4046, 4036, 4060, 4071, 4053, 4079, 4062, 4073, 5728, 4074, 4067, 4072, 4078, 4082, 4095, 4083, 5728, 4108, 4109, 4100, 4102, 4101, 4117, 4121, 4125, 4111, 4119, 4136, 4138, 4133, 4142, 4149, 4135, 4151, 4139, 4155, 4156, 4148, 5728, 4153, 4161, 4152, 4168, 4169, 4164, 4183, 4188, 4172, 4173, 4175, 4174, 4203, 5728, 4185, 4184, 4191, 4217, 4208, 4209, 4222, 4197, 4224, 4218, 5728, 4214, 4232, 4213, 4216, 4236, 4234, 4241, 4243, 4233, 4253, 4260, 4251, 4263, 5728, 4252, 5728, 4266, 4270, 4280, 4282, 4284, 5728, 4273, 4286, 5728, 4269, 5728, 4289, 4298, 4285, 4302, 4317, 5728, 4320, 4307, 4322, 4312, 4313, 4309, 4325, 5728, 4331, 4334, 4338, 4340, 4336, 4339, 4343, 4342, 4348, 4355, 4347, 4365, 5728, 4361, 4373, 4380, 4381, 4383, 5728, 5728, 4376, 4392, 4388, 4353, 4395, 5728, 5728, 5728, 4394, 5728, 4384, 5728, 5728, 4404, 4397, 5728, 4399, 5728, 4405, 4412, 4398, 4406, 4422, 5728, 4411, 4423, 4434, 5728, 4433, 4441, 4425, 4429, 5728, 4445, 5728, 4446, 4456, 4439, 4454, 4447, 4448, 4463, 4452, 4449, 4476, 4470, 4472, 4475, 4483, 4469, 4465, 4486, 4474, 4478, 4480, 4494, 4492, 4507, 4503, 4499, 4501, 4519, 4526, 4529, 4532, 4535, 5728, 5728, 4520, 4525, 4515, 4521, 4545, 4546, 4542, 4548, 5728, 4538, 4552, 4553, 4550, 4559, 4564, 4565, 4562, 4575, 4585, 4599, 4572, 4581, 4584, 4592, 4580, 4586, 4609, 4602, 5728, 4607, 4601, 5728, 5728, 4595, 4622, 4618, 4617, 4619, 4635, 4634, 5728, 4624, 4636, 4648, 4641, 5728, 4650, 4651, 4653, 4655, 5728, 5728, 5728, 4656, 4647, 4645, 4662, 4668, 4674, 4667, 4680, 5728, 4672, 4685, 4697, 4676, 4692, 4693, 4698, 4699, 4712, 4706, 4709, 4710, 5728, 5728, 4703, 4725, 4718, 4723, 4726, 4719, 4732, 4736, 4715, 5728, 4744, 4743, 4733, 4745, 4755, 4756, 4768, 4757, 5728, 4754, 4759, 4761, 4776, 4770, 4778, 4775, 4777, 4782, 4794, 4799, 4800, 4805, 5728, 4802, 4806, 5728, 4809, 4804, 4797, 5728, 4814, 5728, 4820, 5728, 5728, 4803, 4821, 4834, 4840, 4844, 4851, 4852, 4835, 4841, 4858, 4856, 4859, 5728, 5728, 4864, 4842, 4860, 4861, 5728, 5728, 4867, 4857, 4868, 4871, 4876, 4883, 4877, 4886, 4898, 4888, 4908, 4910, 4913, 4901, 4915, 4892, 4895, 4918, 4923, 4926, 5728, 4881, 4928, 4933, 5728, 4929, 4925, 5728, 4941, 4949, 4957, 4953, 4948, 4969, 4954, 4955, 5728, 4965, 4960, 5728, 4952, 5728, 5728, 5728, 4966, 4982, 4976, 5728, 4990, 4996, 5728, 5002, 4998, 4986, 5009, 4987, 5010, 4993, 5020, 4994, 5018, 5728, 5012, 5013, 5026, 5017, 5037, 5023, 5027, 5029, 5044, 5046, 5034, 5049, 5047, 5728, 5062, 5063, 5728, 5065, 5064, 5728, 5067, 5057, 5058, 5053, 5728, 5082, 5074, 5073, 5086, 5097, 5079, 5090, 5085, 5103, 5104, 5110, 5728, 5106, 5094, 5113, 5115, 5100, 5127, 5131, 5126, 5728, 5128, 5117, 5728, 5135, 5134, 5137, 5145, 5152, 5156, 5157, 5154, 5728, 5160, 5728, 5728, 5728, 5164, 5728, 5167, 5155, 5153, 5161, 5168, 5166, 5728, 5728, 5177, 5174, 5184, 5728, 5179, 5182, 5198, 5178, 5200, 5192, 5191, 5196, 5194, 5217, 5728, 5728, 5204, 5728, 5220, 5228, 5229, 5728, 5728, 5728, 5232, 5728, 5234, 5728, 5236, 5221, 5231, 5728, 5243, 5235, 5728, 5246, 5244, 5251, 5254, 5257, 5262, 5249, 5260, 5261, 5263, 5278, 5266, 5269, 5728, 5728, 5286, 5728, 5292, 5728, 5288, 5298, 5728, 5287, 5302, 5289, 5300, 5728, 5728, 5305, 5310, 5293, 5306, 5309, 5321, 5324, 5728, 5728, 5728, 5314, 5728, 5318, 5323, 5332, 5728, 5331, 5334, 5333, 5335, 5338, 5350, 5341, 5337, 5363, 5362, 5372, 5376, 5373, 5377, 5360, 5379, 5390, 5374, 5391, 5728, 5380, 5728, 5728, 5389, 5396, 5397, 5399, 5398, 5400, 5728, 5406, 5409, 5416, 5417, 5412, 5405, 5436, 5415, 5444, 5443, 5446, 5447, 5435, 5453, 5450, 5457, 5440, 5463, 5469, 5466, 5470, 5728, 5471, 5468, 5473, 5475, 5493, 5484, 5480, 5500, 5503, 5508, 5498, 5510, 5506, 5511, 5515, 5517, 5519, 5520, 5728, 5538, 5545, 5533, 5534, 5540, 5535, 5555, 5556, 5548, 5551, 5559, 5564, 5562, 5728, 5566, 5728, 5728, 5568, 5575, 5578, 5576, 5587, 5728, 5728, 5728, 5636, 5643, 5650, 5657, 5664, 82, 5671, 5678, 5685, 5692, 5699, 5706, 5713, 5720 } ; static yyconst flex_int16_t yy_def[2011] = { 0, 1996, 1, 1997, 1997, 1998, 1998, 1999, 1999, 2000, 2000, 2001, 2001, 1996, 2002, 1996, 1996, 1996, 1996, 2003, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2004, 1996, 1996, 1996, 2004, 2005, 1996, 1996, 1996, 2005, 2006, 1996, 1996, 1996, 1996, 2006, 2007, 1996, 1996, 1996, 2007, 2008, 1996, 2009, 1996, 2008, 2008, 2002, 2002, 1996, 2010, 2003, 2010, 2003, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2004, 2004, 2005, 2005, 2006, 2006, 1996, 2007, 2007, 2008, 2008, 2009, 2009, 2008, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2008, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2008, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2008, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2008, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 1996, 1996, 2002, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2008, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2008, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 1996, 2002, 2002, 2002, 1996, 2002, 1996, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 1996, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 1996, 2002, 1996, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 1996, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 1996, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 1996, 1996, 1996, 2002, 1996, 2002, 1996, 1996, 2002, 2002, 1996, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 1996, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 1996, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 1996, 2002, 2002, 2002, 1996, 2002, 1996, 2002, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 1996, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 1996, 2002, 1996, 1996, 1996, 2002, 2002, 2002, 1996, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 1996, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 1996, 1996, 1996, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 1996, 2002, 2002, 2002, 1996, 1996, 1996, 2002, 1996, 2002, 1996, 2002, 2002, 2002, 1996, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 1996, 2002, 1996, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 1996, 1996, 2002, 1996, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 1996, 1996, 0, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996 } ; static yyconst flex_uint16_t yy_nxt[5794] = { 0, 14, 15, 16, 17, 18, 19, 18, 14, 14, 14, 14, 18, 20, 14, 21, 22, 23, 24, 14, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 14, 14, 14, 14, 40, 20, 14, 21, 22, 23, 24, 14, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 14, 14, 14, 14, 42, 43, 44, 42, 43, 44, 47, 48, 47, 48, 49, 96, 49, 52, 53, 54, 55, 68, 18, 52, 53, 54, 55, 69, 18, 58, 59, 60, 58, 59, 60, 70, 129, 129, 131, 71, 45, 131, 96, 45, 136, 136, 50, 73, 50, 73, 73, 70, 73, 843, 56, 71, 68, 73, 68, 68, 56, 68, 86, 75, 76, 61, 68, 139, 61, 15, 16, 17, 63, 64, 65, 15, 16, 17, 63, 64, 65, 77, 87, 69, 74, 69, 98, 69, 66, 86, 75, 76, 131, 78, 66, 131, 88, 154, 69, 139, 79, 112, 69, 90, 97, 142, 67, 80, 77, 87, 89, 91, 67, 98, 69, 66, 129, 129, 139, 69, 78, 66, 69, 88, 154, 929, 69, 79, 112, 69, 90, 97, 142, 99, 80, 81, 137, 89, 91, 82, 92, 100, 83, 93, 84, 85, 135, 101, 106, 134, 94, 102, 95, 69, 69, 170, 121, 69, 122, 69, 99, 103, 81, 69, 196, 104, 82, 92, 100, 83, 93, 84, 85, 123, 101, 106, 113, 94, 102, 95, 114, 105, 69, 121, 117, 122, 69, 69, 103, 144, 115, 124, 104, 116, 118, 69, 125, 132, 119, 120, 123, 130, 69, 113, 69, 69, 69, 114, 105, 107, 143, 117, 69, 108, 136, 136, 144, 115, 124, 109, 116, 118, 110, 125, 126, 119, 120, 139, 127, 111, 149, 69, 128, 137, 69, 135, 107, 143, 134, 133, 108, 133, 133, 69, 133, 132, 109, 145, 130, 110, 69, 126, 69, 211, 69, 127, 111, 149, 73, 128, 73, 73, 138, 73, 138, 138, 68, 138, 68, 68, 73, 68, 73, 73, 145, 73, 68, 146, 148, 150, 73, 155, 152, 153, 69, 151, 158, 69, 161, 69, 147, 69, 1996, 163, 156, 141, 159, 69, 1996, 69, 69, 69, 160, 69, 146, 148, 150, 74, 155, 152, 153, 157, 151, 158, 164, 161, 69, 147, 69, 162, 163, 165, 1996, 159, 1996, 69, 1996, 166, 69, 160, 167, 171, 176, 172, 69, 69, 69, 177, 157, 69, 178, 164, 1996, 168, 169, 174, 162, 184, 165, 175, 69, 69, 180, 173, 166, 69, 69, 167, 171, 176, 172, 179, 181, 69, 177, 1996, 69, 178, 183, 69, 168, 169, 174, 182, 184, 69, 175, 186, 185, 180, 173, 69, 69, 190, 189, 1996, 69, 69, 179, 181, 187, 69, 191, 192, 188, 183, 193, 1996, 194, 69, 182, 69, 304, 197, 186, 185, 69, 69, 69, 69, 190, 189, 69, 195, 222, 198, 201, 187, 69, 191, 192, 188, 69, 193, 200, 194, 202, 69, 207, 203, 197, 69, 69, 69, 206, 199, 205, 69, 208, 1996, 195, 69, 198, 201, 1996, 69, 1996, 1996, 209, 69, 204, 200, 1996, 202, 69, 207, 203, 1996, 69, 343, 69, 206, 199, 205, 133, 208, 133, 133, 138, 133, 138, 138, 139, 138, 210, 209, 73, 204, 73, 73, 212, 73, 214, 213, 216, 215, 69, 217, 218, 1996, 69, 69, 69, 219, 220, 232, 69, 69, 221, 405, 406, 210, 69, 230, 233, 69, 223, 212, 1996, 214, 213, 216, 215, 141, 217, 231, 69, 69, 235, 69, 219, 220, 232, 69, 69, 221, 69, 224, 69, 69, 230, 233, 234, 1996, 69, 236, 69, 237, 1996, 238, 241, 69, 231, 239, 1996, 235, 240, 242, 250, 69, 69, 69, 1996, 243, 224, 225, 248, 69, 69, 234, 226, 1996, 236, 69, 237, 227, 238, 241, 1996, 69, 239, 228, 229, 240, 242, 69, 244, 249, 69, 69, 243, 245, 225, 248, 251, 254, 252, 226, 69, 1996, 1996, 255, 227, 246, 256, 247, 253, 257, 228, 229, 69, 1996, 69, 244, 249, 258, 259, 260, 245, 69, 69, 251, 262, 261, 263, 265, 69, 69, 255, 1996, 246, 256, 247, 253, 264, 266, 69, 69, 69, 267, 69, 69, 258, 69, 270, 69, 69, 69, 69, 262, 261, 263, 265, 268, 269, 272, 69, 271, 69, 276, 273, 264, 266, 280, 69, 69, 267, 69, 277, 274, 275, 270, 279, 278, 282, 69, 69, 69, 69, 283, 268, 269, 272, 281, 271, 284, 286, 273, 290, 69, 69, 69, 69, 293, 69, 277, 274, 275, 69, 279, 278, 282, 287, 139, 289, 69, 283, 285, 69, 292, 281, 294, 291, 295, 296, 290, 69, 69, 299, 288, 69, 297, 298, 300, 69, 69, 69, 69, 69, 287, 69, 289, 301, 69, 285, 69, 292, 69, 294, 291, 302, 296, 303, 307, 69, 299, 288, 305, 297, 298, 300, 306, 308, 310, 69, 312, 69, 309, 1996, 301, 314, 315, 317, 1996, 69, 69, 1996, 302, 69, 303, 307, 311, 313, 69, 305, 316, 69, 69, 306, 308, 310, 69, 321, 318, 309, 69, 69, 69, 315, 69, 69, 69, 319, 69, 320, 325, 69, 69, 311, 313, 69, 69, 316, 322, 323, 324, 326, 1996, 327, 321, 318, 328, 329, 330, 69, 69, 331, 1996, 69, 319, 69, 320, 325, 1996, 337, 1996, 332, 69, 69, 69, 322, 323, 324, 326, 69, 327, 344, 333, 328, 329, 69, 69, 69, 331, 69, 334, 335, 339, 336, 350, 338, 337, 340, 332, 347, 69, 69, 341, 342, 345, 69, 69, 346, 344, 333, 348, 69, 69, 351, 69, 349, 354, 334, 335, 339, 336, 69, 338, 352, 340, 357, 347, 69, 69, 341, 342, 345, 353, 69, 346, 69, 355, 348, 69, 356, 351, 358, 349, 354, 69, 359, 69, 362, 69, 69, 352, 69, 360, 367, 361, 366, 69, 1996, 1996, 353, 69, 368, 371, 355, 1996, 392, 356, 69, 358, 69, 398, 1996, 359, 69, 362, 363, 69, 369, 364, 360, 365, 361, 366, 69, 69, 370, 69, 372, 368, 371, 373, 69, 374, 376, 386, 385, 69, 384, 387, 69, 1996, 69, 363, 69, 369, 364, 69, 365, 375, 69, 1996, 390, 370, 69, 372, 388, 69, 373, 389, 374, 376, 139, 385, 69, 384, 69, 69, 391, 393, 395, 396, 397, 69, 394, 69, 375, 377, 378, 390, 402, 69, 69, 388, 69, 399, 389, 379, 400, 380, 381, 382, 69, 69, 383, 391, 393, 395, 396, 397, 401, 394, 69, 69, 377, 378, 404, 422, 403, 408, 1996, 69, 399, 69, 379, 400, 380, 381, 382, 69, 69, 383, 407, 409, 410, 412, 415, 401, 69, 69, 411, 413, 414, 404, 69, 403, 408, 69, 69, 69, 419, 69, 418, 416, 1996, 420, 421, 1996, 69, 407, 409, 410, 412, 415, 69, 69, 417, 411, 413, 414, 69, 69, 69, 424, 69, 423, 425, 419, 69, 418, 416, 69, 420, 421, 426, 427, 1996, 428, 429, 432, 430, 434, 69, 417, 69, 431, 433, 69, 436, 69, 424, 1996, 423, 425, 69, 435, 69, 438, 1996, 437, 69, 426, 427, 69, 428, 429, 69, 430, 434, 69, 69, 69, 431, 433, 69, 436, 439, 69, 440, 441, 69, 442, 435, 443, 438, 69, 437, 444, 447, 448, 451, 453, 445, 69, 446, 69, 1996, 69, 457, 1996, 69, 1996, 69, 439, 69, 440, 441, 69, 442, 69, 443, 69, 69, 452, 444, 447, 448, 451, 449, 445, 450, 446, 69, 454, 455, 456, 69, 69, 460, 69, 461, 458, 465, 69, 464, 1996, 69, 462, 1996, 1996, 452, 69, 463, 69, 69, 449, 69, 450, 1996, 499, 454, 455, 456, 459, 69, 460, 69, 461, 466, 465, 69, 464, 69, 473, 462, 474, 69, 475, 494, 463, 69, 478, 476, 69, 1996, 479, 69, 1996, 69, 480, 459, 477, 69, 482, 1996, 466, 467, 481, 483, 69, 473, 468, 474, 469, 475, 69, 1996, 1996, 478, 69, 69, 470, 479, 69, 471, 69, 480, 484, 477, 69, 482, 472, 69, 467, 481, 483, 486, 485, 468, 488, 469, 487, 69, 491, 69, 490, 69, 489, 470, 69, 492, 471, 493, 69, 484, 69, 1996, 498, 472, 497, 496, 69, 1996, 486, 485, 69, 488, 495, 487, 69, 491, 69, 490, 69, 489, 139, 69, 492, 500, 493, 501, 502, 69, 503, 498, 504, 497, 496, 511, 507, 506, 505, 508, 69, 495, 509, 69, 69, 512, 510, 69, 513, 69, 514, 515, 500, 516, 69, 502, 517, 503, 69, 504, 69, 69, 511, 507, 506, 505, 508, 519, 518, 520, 521, 522, 69, 69, 69, 69, 523, 69, 69, 524, 69, 69, 526, 525, 1996, 527, 1996, 69, 533, 69, 69, 528, 538, 69, 519, 518, 520, 521, 539, 69, 529, 69, 69, 523, 69, 530, 524, 69, 532, 531, 525, 534, 527, 69, 69, 533, 69, 69, 528, 535, 69, 536, 541, 69, 69, 539, 537, 529, 540, 543, 1996, 545, 530, 546, 550, 532, 531, 544, 534, 69, 547, 69, 69, 69, 542, 69, 535, 69, 536, 541, 548, 69, 69, 537, 549, 540, 543, 551, 545, 69, 546, 69, 69, 552, 544, 69, 554, 547, 553, 69, 555, 542, 556, 557, 558, 559, 560, 548, 69, 69, 561, 549, 562, 566, 551, 69, 563, 69, 69, 1996, 552, 564, 69, 554, 565, 553, 69, 555, 567, 556, 69, 558, 69, 560, 69, 69, 69, 561, 69, 568, 570, 571, 574, 69, 69, 572, 69, 1996, 564, 573, 69, 565, 575, 578, 569, 567, 576, 579, 1996, 577, 581, 69, 69, 69, 69, 69, 568, 570, 69, 574, 580, 586, 69, 582, 69, 1996, 573, 69, 69, 575, 578, 569, 583, 576, 579, 69, 577, 581, 584, 585, 587, 69, 589, 69, 591, 588, 69, 580, 69, 594, 582, 69, 69, 69, 590, 1996, 592, 69, 597, 583, 69, 595, 593, 1996, 596, 584, 585, 587, 69, 589, 598, 591, 588, 69, 599, 69, 594, 69, 69, 602, 69, 590, 600, 592, 69, 597, 601, 603, 595, 593, 69, 596, 605, 606, 604, 69, 69, 598, 607, 69, 608, 599, 609, 613, 69, 69, 602, 69, 69, 600, 69, 614, 612, 601, 603, 139, 610, 615, 69, 605, 606, 604, 69, 69, 611, 607, 616, 608, 617, 609, 69, 618, 629, 619, 69, 1996, 620, 69, 614, 612, 69, 69, 69, 610, 615, 69, 621, 1996, 69, 627, 69, 611, 69, 616, 1996, 617, 628, 631, 630, 629, 619, 69, 69, 620, 633, 641, 69, 632, 1996, 1996, 643, 645, 69, 621, 622, 644, 627, 642, 623, 69, 69, 624, 1996, 628, 631, 630, 69, 69, 625, 646, 650, 626, 641, 69, 632, 69, 69, 643, 69, 69, 647, 622, 644, 1996, 642, 623, 649, 651, 624, 69, 1996, 648, 69, 652, 653, 625, 646, 650, 626, 634, 635, 655, 636, 69, 1996, 637, 69, 647, 654, 69, 638, 69, 69, 649, 651, 69, 639, 640, 648, 69, 652, 653, 657, 69, 656, 69, 634, 635, 655, 636, 69, 69, 637, 658, 660, 654, 659, 638, 662, 663, 661, 665, 664, 639, 640, 666, 69, 69, 667, 657, 668, 656, 69, 69, 69, 1996, 670, 669, 676, 673, 658, 660, 69, 659, 69, 662, 663, 661, 69, 664, 671, 672, 674, 677, 69, 69, 69, 668, 69, 69, 69, 69, 675, 670, 669, 69, 673, 678, 679, 69, 69, 69, 69, 680, 681, 682, 686, 671, 672, 674, 677, 69, 683, 684, 1996, 685, 69, 687, 69, 675, 69, 691, 69, 69, 678, 1996, 69, 688, 690, 69, 680, 681, 682, 686, 69, 689, 69, 697, 693, 683, 684, 69, 685, 69, 687, 69, 692, 704, 691, 695, 696, 69, 69, 694, 688, 690, 69, 698, 69, 699, 69, 700, 689, 701, 697, 693, 69, 69, 69, 702, 703, 707, 708, 692, 69, 1996, 695, 696, 69, 69, 694, 706, 69, 709, 698, 705, 699, 710, 700, 1996, 701, 69, 69, 713, 69, 69, 702, 703, 714, 716, 715, 711, 69, 69, 69, 717, 69, 719, 706, 712, 709, 720, 705, 718, 710, 69, 69, 721, 722, 1996, 713, 69, 69, 724, 69, 714, 69, 715, 711, 69, 69, 725, 717, 726, 719, 728, 712, 723, 69, 727, 718, 729, 69, 69, 721, 69, 69, 69, 730, 1996, 139, 1996, 1996, 737, 69, 69, 69, 1996, 725, 1996, 726, 739, 728, 738, 723, 740, 727, 69, 729, 742, 741, 1996, 1996, 69, 744, 730, 731, 743, 732, 69, 737, 69, 733, 746, 734, 745, 69, 69, 739, 735, 738, 1996, 740, 69, 736, 747, 742, 741, 69, 69, 69, 744, 750, 731, 743, 732, 69, 69, 748, 733, 746, 734, 745, 751, 752, 753, 735, 754, 749, 755, 69, 736, 747, 1996, 69, 756, 69, 763, 69, 750, 69, 773, 762, 1996, 1996, 748, 765, 1996, 69, 766, 751, 752, 753, 764, 754, 749, 767, 69, 768, 69, 69, 69, 69, 757, 763, 771, 69, 774, 758, 762, 759, 769, 69, 765, 770, 69, 766, 69, 69, 772, 764, 760, 69, 767, 69, 768, 776, 777, 761, 69, 757, 69, 69, 1996, 774, 758, 775, 759, 769, 778, 69, 770, 69, 779, 69, 782, 772, 780, 760, 781, 783, 69, 784, 776, 791, 761, 69, 786, 69, 785, 69, 69, 787, 775, 69, 69, 778, 69, 69, 789, 779, 788, 782, 790, 780, 69, 781, 783, 69, 784, 792, 69, 794, 793, 786, 69, 785, 69, 69, 787, 795, 69, 69, 796, 69, 798, 789, 797, 788, 799, 790, 800, 801, 802, 803, 1996, 1996, 792, 804, 794, 793, 1996, 69, 69, 69, 69, 69, 795, 805, 69, 796, 806, 798, 807, 797, 69, 799, 808, 812, 801, 802, 809, 69, 813, 810, 69, 811, 815, 69, 69, 69, 817, 814, 69, 69, 805, 69, 69, 806, 816, 807, 819, 69, 69, 808, 812, 818, 820, 809, 69, 813, 810, 69, 811, 815, 822, 823, 69, 817, 814, 821, 69, 69, 824, 69, 827, 816, 825, 819, 826, 828, 829, 69, 818, 69, 69, 69, 830, 69, 69, 69, 832, 822, 823, 833, 835, 831, 821, 834, 836, 824, 839, 827, 69, 825, 69, 826, 837, 829, 69, 69, 69, 840, 69, 830, 69, 838, 842, 832, 69, 69, 833, 841, 831, 844, 834, 69, 845, 69, 846, 69, 852, 69, 69, 837, 69, 850, 69, 69, 840, 847, 853, 69, 838, 842, 69, 849, 848, 69, 841, 851, 844, 856, 854, 845, 69, 846, 69, 857, 69, 855, 858, 69, 850, 859, 69, 861, 847, 864, 862, 860, 69, 69, 849, 848, 69, 69, 851, 69, 856, 854, 69, 69, 69, 863, 857, 69, 855, 858, 865, 866, 859, 69, 861, 867, 69, 862, 860, 868, 69, 869, 870, 69, 874, 871, 69, 872, 876, 873, 1996, 1996, 863, 69, 1996, 877, 69, 865, 866, 875, 69, 878, 867, 69, 69, 69, 868, 69, 869, 870, 69, 874, 871, 69, 872, 876, 873, 69, 880, 879, 881, 882, 877, 69, 883, 884, 875, 69, 878, 885, 888, 887, 69, 69, 889, 886, 69, 69, 69, 69, 894, 69, 890, 69, 1996, 880, 879, 881, 882, 69, 69, 883, 884, 891, 893, 895, 885, 888, 887, 892, 896, 889, 886, 69, 903, 69, 69, 897, 69, 890, 898, 69, 69, 899, 69, 902, 904, 69, 905, 69, 891, 893, 895, 69, 906, 900, 892, 896, 69, 901, 69, 903, 69, 908, 897, 907, 910, 898, 69, 909, 899, 911, 902, 904, 69, 905, 914, 912, 913, 915, 919, 906, 918, 69, 920, 916, 69, 965, 69, 69, 922, 69, 907, 910, 69, 69, 909, 69, 911, 69, 69, 917, 69, 914, 912, 913, 915, 69, 921, 918, 930, 69, 916, 69, 69, 69, 1996, 922, 69, 931, 1996, 1996, 928, 938, 933, 935, 69, 1996, 917, 936, 69, 69, 932, 69, 934, 921, 923, 930, 939, 944, 937, 924, 69, 925, 69, 926, 931, 927, 69, 928, 938, 933, 69, 69, 69, 941, 69, 69, 940, 932, 942, 934, 943, 923, 69, 939, 69, 937, 924, 69, 925, 69, 926, 69, 927, 946, 945, 947, 948, 950, 952, 955, 941, 949, 1996, 940, 951, 942, 69, 943, 953, 69, 954, 69, 1996, 958, 957, 966, 69, 959, 69, 69, 69, 945, 947, 948, 69, 69, 69, 956, 949, 960, 69, 951, 69, 961, 69, 953, 69, 954, 962, 69, 958, 957, 69, 963, 959, 967, 69, 964, 968, 970, 969, 972, 976, 971, 956, 69, 960, 69, 975, 69, 961, 69, 69, 69, 973, 962, 974, 69, 69, 69, 963, 69, 967, 69, 964, 977, 970, 969, 69, 69, 971, 978, 979, 69, 980, 975, 981, 983, 69, 69, 982, 973, 985, 974, 69, 69, 984, 987, 69, 69, 986, 69, 977, 988, 989, 997, 1996, 69, 978, 979, 990, 980, 1996, 981, 983, 993, 69, 982, 69, 985, 994, 991, 69, 984, 69, 992, 69, 986, 995, 1996, 988, 989, 996, 69, 998, 999, 69, 990, 1000, 69, 1001, 69, 993, 1005, 1003, 69, 69, 994, 1996, 1002, 69, 69, 69, 69, 1004, 995, 1006, 69, 69, 996, 1007, 998, 999, 69, 1008, 1000, 69, 1001, 1011, 69, 1005, 1003, 69, 1009, 1012, 1014, 1002, 1010, 1015, 69, 69, 1004, 1023, 1006, 1013, 1016, 69, 1007, 69, 1020, 69, 1008, 69, 1021, 1017, 1011, 1018, 69, 69, 69, 1009, 1012, 1014, 69, 1010, 1015, 1019, 69, 1022, 1024, 69, 1013, 1016, 69, 69, 1025, 1020, 1026, 69, 1027, 1021, 1017, 1028, 1018, 1032, 1030, 1031, 1034, 1033, 1029, 69, 1035, 1038, 1019, 69, 1022, 69, 69, 1996, 69, 69, 69, 1025, 69, 1026, 69, 69, 69, 69, 1028, 1036, 1032, 1030, 1031, 1037, 1033, 1029, 1039, 69, 1038, 1040, 1041, 1042, 69, 1043, 69, 1045, 1046, 69, 69, 1996, 1044, 69, 1051, 1047, 69, 1053, 1048, 1049, 69, 1050, 69, 69, 1052, 1039, 69, 69, 1040, 1041, 1042, 1054, 1043, 69, 69, 1046, 69, 1055, 69, 1044, 1056, 1051, 1047, 69, 1053, 1048, 1049, 1057, 1050, 1058, 1065, 1052, 69, 1060, 1059, 69, 1061, 69, 1054, 1996, 1066, 1062, 1067, 1071, 1055, 1063, 1069, 69, 69, 69, 69, 69, 69, 1068, 1057, 69, 1058, 1065, 1064, 1073, 1060, 1059, 1072, 1061, 69, 1074, 69, 69, 1062, 1067, 1070, 69, 1063, 1069, 69, 1075, 69, 69, 1076, 1996, 1068, 69, 1077, 1078, 1079, 1064, 1073, 1080, 1081, 1072, 1083, 69, 1074, 1082, 69, 69, 1084, 1070, 1086, 1087, 69, 1089, 1090, 69, 1085, 69, 69, 69, 69, 69, 1078, 1079, 1088, 69, 1080, 1081, 69, 1083, 69, 69, 1082, 1091, 69, 1084, 1092, 69, 1087, 69, 1089, 1090, 1093, 1085, 1094, 1095, 1096, 1996, 1097, 69, 69, 1088, 1098, 1996, 1099, 69, 1102, 1100, 1101, 69, 1091, 69, 1104, 1092, 69, 69, 69, 1106, 1105, 1093, 1103, 1094, 69, 1096, 69, 1097, 69, 69, 69, 1098, 1108, 1099, 1110, 1102, 1100, 1101, 1107, 69, 1109, 1104, 69, 1111, 1115, 69, 1114, 1105, 1112, 1103, 69, 69, 1113, 69, 1120, 69, 1121, 1116, 1996, 69, 1123, 69, 1126, 69, 69, 1107, 1131, 1109, 1122, 69, 1111, 1115, 69, 1114, 1117, 1112, 1125, 1118, 69, 1113, 1127, 1133, 69, 1121, 1116, 69, 69, 1123, 1124, 1119, 69, 1129, 1132, 69, 1136, 1122, 1128, 69, 69, 69, 69, 1117, 1130, 1125, 1118, 69, 69, 1127, 1135, 69, 1137, 1138, 69, 1134, 69, 1124, 1119, 69, 1129, 1132, 69, 69, 1143, 1128, 1139, 1144, 1140, 1142, 1141, 1130, 69, 69, 69, 69, 1147, 1135, 69, 1137, 1138, 1145, 1134, 69, 69, 1146, 1149, 1151, 69, 69, 1152, 1143, 69, 1139, 1148, 1140, 1142, 1141, 69, 1150, 69, 1996, 69, 1147, 1153, 1156, 69, 1154, 1145, 69, 1155, 1160, 1146, 69, 1151, 1157, 69, 1152, 1161, 1162, 1158, 1148, 1163, 1165, 69, 69, 1150, 69, 1159, 1164, 69, 1153, 1156, 1170, 1154, 1169, 1167, 1155, 69, 1168, 69, 69, 1157, 69, 69, 69, 1162, 1158, 1171, 1163, 1165, 1166, 1174, 69, 69, 1159, 1164, 1173, 1172, 69, 1175, 69, 1169, 1167, 69, 69, 1168, 1177, 1178, 1176, 69, 69, 1179, 69, 1180, 69, 1183, 1181, 1166, 1174, 69, 69, 69, 1184, 1173, 1172, 1996, 1175, 69, 1182, 1186, 1189, 1192, 1187, 1177, 1178, 1176, 1185, 69, 1179, 69, 1180, 1188, 1183, 1181, 1190, 1191, 69, 69, 69, 1184, 69, 1194, 1193, 69, 1195, 1182, 1186, 1199, 69, 1187, 1196, 69, 69, 1185, 1197, 69, 1201, 69, 1188, 1204, 1198, 1190, 1191, 69, 69, 1200, 1207, 1202, 1194, 1193, 69, 1203, 1996, 1206, 1199, 69, 69, 1196, 69, 69, 1205, 1197, 69, 1201, 69, 1209, 1213, 1198, 1208, 1210, 69, 69, 1200, 69, 1202, 69, 1211, 1212, 1203, 1214, 1206, 1216, 1215, 69, 69, 1218, 1219, 1205, 69, 1217, 1222, 69, 1209, 1213, 69, 1208, 1210, 1226, 69, 69, 1220, 69, 69, 1211, 1212, 69, 1214, 1223, 69, 1215, 1221, 1224, 1218, 1219, 1225, 69, 1217, 1228, 69, 1227, 69, 69, 69, 1229, 69, 1231, 1996, 1220, 1996, 1230, 1236, 1233, 1996, 1232, 1223, 69, 1234, 1221, 1224, 1237, 1235, 1225, 69, 69, 69, 69, 1227, 69, 69, 1242, 1229, 1238, 69, 69, 69, 69, 1230, 1236, 1233, 1241, 1232, 69, 1243, 1234, 1239, 1240, 1237, 1235, 1244, 69, 1246, 69, 69, 1245, 69, 1247, 69, 69, 1238, 1249, 1248, 69, 1250, 1251, 1253, 1252, 1241, 69, 69, 1254, 1255, 1239, 1240, 69, 1257, 1244, 1256, 1246, 1261, 1258, 1245, 69, 69, 1259, 1274, 69, 69, 1248, 69, 1250, 69, 1260, 1252, 69, 1996, 69, 1254, 1262, 1263, 1264, 1266, 69, 1268, 1256, 1265, 69, 1258, 69, 1267, 69, 69, 69, 69, 1269, 1291, 69, 1272, 69, 1260, 1270, 69, 1276, 1273, 1271, 1262, 1263, 1264, 1266, 69, 69, 1279, 1265, 1277, 69, 1280, 1267, 1275, 69, 1282, 69, 1269, 1278, 1281, 1272, 1996, 69, 69, 69, 1276, 1273, 69, 1284, 1283, 1996, 1285, 1290, 69, 1279, 1287, 1277, 69, 69, 1296, 1275, 69, 69, 1286, 69, 1278, 1281, 1293, 69, 69, 1288, 69, 1289, 1292, 69, 1284, 1283, 1294, 1285, 1290, 69, 69, 1287, 69, 1295, 1297, 69, 69, 1996, 1299, 1286, 1298, 1996, 1300, 1293, 1301, 69, 1288, 1305, 1289, 1292, 69, 1302, 1312, 1303, 1304, 69, 69, 69, 69, 69, 1306, 1297, 69, 1309, 69, 1299, 1311, 1298, 1307, 1300, 1308, 1301, 69, 69, 1305, 69, 69, 1310, 1302, 69, 1303, 1304, 69, 1313, 69, 1315, 69, 1306, 1314, 1317, 1309, 1319, 1320, 1311, 1316, 1307, 1318, 1308, 69, 69, 69, 1321, 69, 69, 1310, 1322, 1323, 1324, 69, 1325, 1313, 1326, 69, 1327, 1996, 1314, 1317, 1331, 1328, 69, 1329, 1316, 69, 1318, 69, 1330, 1332, 69, 69, 1333, 1336, 69, 69, 1996, 1324, 69, 1325, 69, 1335, 1334, 1327, 69, 69, 1337, 1338, 1328, 1340, 1329, 69, 1996, 1341, 1339, 1330, 1332, 69, 1342, 69, 1336, 69, 1344, 69, 1343, 69, 1345, 1348, 1335, 1334, 69, 1346, 1347, 69, 69, 69, 1340, 1996, 1350, 69, 1341, 1339, 69, 1351, 69, 1342, 69, 69, 1349, 1344, 69, 1343, 69, 1345, 69, 69, 69, 1353, 1346, 1347, 1352, 1354, 1355, 1356, 1359, 1350, 1996, 1360, 69, 1362, 1351, 1357, 1366, 69, 1361, 1349, 69, 1996, 1363, 1369, 69, 1370, 1358, 69, 1353, 69, 1365, 1352, 1354, 69, 1356, 1359, 69, 69, 1360, 1364, 69, 69, 1357, 69, 1367, 1361, 1368, 69, 69, 1363, 1369, 69, 69, 1358, 69, 1371, 1372, 1365, 1373, 1374, 1996, 1375, 1996, 69, 1376, 1377, 1364, 69, 1379, 69, 1996, 1367, 69, 1368, 1378, 69, 1996, 69, 1380, 69, 69, 1381, 1371, 1372, 69, 1373, 1374, 1385, 1375, 69, 69, 1376, 1377, 1383, 1382, 1379, 1384, 1386, 1387, 1996, 69, 1378, 69, 69, 1388, 1380, 1391, 69, 1381, 69, 1389, 1390, 1392, 1394, 1385, 1393, 69, 1400, 1395, 69, 1383, 1382, 69, 1384, 1386, 1387, 69, 1396, 1397, 69, 69, 1388, 1398, 1391, 1401, 69, 1406, 1389, 1390, 69, 1394, 69, 1393, 69, 1399, 1395, 1402, 1403, 69, 69, 69, 69, 1407, 1413, 1396, 1397, 69, 1404, 1408, 1398, 69, 1401, 1405, 69, 1410, 69, 69, 1996, 69, 1409, 69, 1399, 1411, 1402, 1403, 69, 69, 1412, 69, 1407, 1413, 1416, 1417, 1414, 1404, 1408, 1415, 1418, 1419, 1405, 1420, 1423, 1996, 1422, 69, 69, 1409, 1421, 69, 1411, 1425, 69, 69, 69, 1412, 69, 69, 69, 1416, 69, 1414, 69, 69, 1415, 1418, 1419, 1424, 1420, 1423, 69, 1422, 1426, 1428, 1427, 1421, 69, 1429, 1425, 69, 1430, 1431, 1433, 1434, 1432, 69, 1440, 1996, 1442, 1435, 1996, 69, 1436, 69, 1424, 69, 1444, 1448, 69, 1426, 1428, 1427, 69, 1437, 1429, 69, 1443, 1430, 69, 69, 1434, 1432, 69, 1440, 69, 69, 1435, 69, 1438, 1436, 1441, 1446, 1439, 69, 69, 1445, 1447, 69, 69, 1450, 1437, 1454, 1449, 1443, 1457, 69, 69, 1451, 1452, 69, 1453, 1455, 1458, 69, 69, 69, 1456, 1441, 1446, 69, 1460, 69, 1445, 1447, 69, 69, 69, 1459, 1454, 1449, 69, 1457, 69, 69, 1451, 1452, 1461, 1453, 1455, 69, 1462, 69, 1465, 1456, 1463, 1464, 69, 1460, 1466, 1467, 69, 69, 69, 69, 1459, 1468, 1470, 69, 69, 1469, 1471, 69, 69, 1461, 1472, 1473, 1475, 1462, 1474, 1465, 1476, 1463, 1464, 1477, 69, 1466, 1467, 1478, 1479, 69, 69, 69, 1468, 1470, 1480, 1484, 1469, 69, 69, 1481, 69, 1472, 1473, 1475, 1485, 1474, 69, 1476, 69, 1482, 69, 1486, 1483, 1488, 69, 1479, 1487, 1490, 1491, 1489, 1493, 1480, 69, 1494, 69, 69, 1481, 69, 69, 1492, 1496, 69, 1498, 1495, 1502, 1996, 1482, 69, 69, 1483, 69, 69, 69, 1487, 69, 69, 1489, 1493, 1499, 1497, 69, 1500, 1504, 69, 1503, 1505, 1492, 69, 69, 1498, 1495, 69, 69, 69, 69, 1506, 1501, 1507, 1509, 1508, 1511, 1996, 69, 69, 69, 1499, 1497, 69, 1500, 1504, 69, 1503, 1505, 1510, 1513, 1514, 69, 1515, 1517, 1516, 1512, 1520, 69, 1501, 1507, 1509, 1508, 69, 69, 1518, 1519, 1522, 69, 69, 1525, 69, 69, 69, 1523, 1528, 1510, 69, 1514, 69, 1515, 1517, 1516, 1512, 1520, 1521, 1524, 69, 69, 69, 1526, 69, 1518, 1519, 1522, 1529, 69, 1525, 69, 1532, 1530, 1523, 1527, 1531, 1533, 1996, 69, 69, 69, 1540, 1996, 1534, 1521, 1524, 1996, 69, 1538, 1526, 69, 1535, 1541, 69, 1529, 1539, 69, 69, 1532, 1530, 69, 1527, 1531, 1542, 1536, 1543, 1537, 69, 1540, 69, 1534, 69, 69, 69, 1544, 1538, 69, 1545, 1535, 1541, 1546, 1547, 1539, 1548, 1549, 69, 1552, 1550, 1551, 69, 1542, 1536, 1543, 1537, 69, 1553, 69, 1554, 1555, 69, 69, 1544, 1996, 1563, 69, 1556, 1560, 69, 1547, 69, 1548, 1549, 69, 1552, 1550, 1551, 1557, 1559, 69, 1558, 1562, 69, 1553, 69, 1554, 69, 69, 69, 1561, 69, 69, 1564, 1556, 1560, 69, 69, 1567, 1565, 1566, 1573, 69, 1996, 69, 1557, 1559, 1569, 1558, 1562, 69, 1568, 1570, 1572, 69, 1571, 1575, 1561, 1574, 1578, 1564, 1579, 69, 1580, 1576, 69, 1565, 1566, 1573, 69, 69, 1577, 69, 69, 1569, 1581, 1582, 69, 1568, 1570, 1572, 69, 1571, 69, 69, 1574, 69, 69, 69, 1584, 1583, 1576, 1585, 69, 69, 69, 1587, 1586, 1577, 1589, 69, 69, 1581, 1582, 1588, 1590, 1591, 1592, 1996, 1597, 1598, 69, 69, 1593, 69, 1595, 1584, 1583, 69, 1585, 1594, 1596, 69, 69, 1586, 1599, 1600, 1608, 69, 1601, 69, 1588, 1590, 1591, 69, 69, 69, 69, 69, 1602, 1593, 69, 1595, 69, 1603, 69, 1604, 1594, 1596, 1605, 1606, 1607, 69, 1600, 69, 1612, 1601, 1609, 69, 69, 1611, 69, 1610, 69, 69, 69, 1602, 69, 1614, 69, 1615, 1603, 69, 1604, 1616, 69, 1605, 1606, 1607, 1617, 1613, 69, 1612, 69, 1609, 1618, 1619, 1611, 69, 1610, 69, 1621, 69, 1620, 1622, 1614, 69, 1615, 1623, 1626, 1632, 1616, 1624, 1627, 69, 1625, 1617, 1613, 69, 69, 69, 1631, 1618, 1619, 69, 69, 1628, 1996, 69, 1635, 1620, 69, 1630, 1633, 69, 1623, 1626, 69, 1629, 1624, 1627, 69, 1625, 1634, 69, 69, 1636, 69, 1631, 69, 1639, 69, 69, 1628, 1637, 1638, 1635, 1641, 69, 1630, 1633, 69, 1643, 69, 69, 1629, 1640, 1642, 1644, 1646, 1634, 69, 1647, 1636, 69, 1645, 1650, 1639, 1648, 69, 69, 1637, 1638, 69, 69, 69, 1649, 1653, 1651, 1643, 1655, 69, 1652, 1640, 69, 1644, 1646, 1654, 69, 1647, 69, 69, 1645, 1650, 1656, 1648, 69, 1658, 69, 1657, 1659, 1660, 1661, 1649, 1653, 1651, 69, 69, 69, 1652, 1662, 69, 1664, 69, 1654, 1666, 1663, 1667, 1996, 1668, 1670, 1656, 1996, 69, 69, 69, 1657, 1659, 1660, 1661, 69, 1669, 1665, 1671, 69, 1672, 69, 69, 1996, 69, 69, 1673, 69, 1663, 69, 69, 1668, 1670, 1674, 1676, 1675, 69, 1677, 1679, 1680, 1681, 69, 69, 1669, 1665, 1671, 69, 1672, 69, 1678, 69, 1683, 1682, 1673, 69, 1684, 1686, 1687, 1685, 69, 1674, 1676, 1675, 1688, 1677, 1679, 69, 69, 1689, 1690, 1996, 69, 69, 69, 1696, 1691, 1678, 69, 1683, 1682, 69, 1693, 1692, 69, 69, 1685, 69, 1694, 1695, 69, 1688, 1996, 69, 69, 1697, 1698, 1690, 69, 1699, 69, 69, 1696, 1691, 1996, 1996, 1700, 69, 69, 1693, 1692, 69, 1701, 1702, 1704, 1694, 1695, 1703, 69, 69, 69, 1705, 1697, 1698, 1708, 1712, 1699, 1706, 1707, 69, 69, 69, 69, 1700, 69, 1710, 69, 1709, 1711, 1701, 1702, 1704, 1996, 69, 1703, 69, 1714, 1715, 1705, 1713, 69, 69, 69, 69, 1706, 1707, 1716, 69, 1717, 1718, 1722, 1720, 1710, 1723, 1709, 1711, 1721, 1719, 1724, 69, 1726, 1725, 69, 1714, 69, 69, 1713, 69, 69, 69, 69, 69, 1727, 1716, 69, 1717, 1718, 1722, 1720, 69, 1723, 1728, 1729, 1721, 1719, 69, 69, 1726, 1725, 1730, 1731, 1732, 1734, 1733, 1735, 1741, 1996, 1996, 1737, 69, 69, 1736, 1738, 1739, 1740, 69, 69, 69, 1728, 69, 1742, 1745, 1743, 1744, 1996, 1749, 69, 69, 1732, 1763, 1733, 69, 69, 69, 69, 69, 69, 1746, 1736, 69, 1739, 1740, 69, 69, 1747, 1748, 69, 1742, 1745, 1743, 1744, 69, 69, 1750, 1751, 1752, 69, 1753, 69, 1754, 1758, 69, 1755, 69, 1746, 1756, 1996, 69, 1757, 1759, 69, 1747, 1748, 69, 1996, 1760, 69, 1766, 1767, 1764, 1750, 1751, 1752, 69, 1753, 69, 1754, 1758, 69, 1755, 69, 1761, 1756, 69, 1762, 1757, 1759, 1769, 69, 1765, 69, 69, 1760, 69, 69, 1767, 1764, 1768, 69, 1770, 1771, 1772, 1776, 1773, 1996, 1775, 69, 1774, 1761, 1780, 1778, 1762, 1777, 69, 69, 1779, 1765, 69, 69, 69, 69, 1781, 69, 1782, 1768, 69, 1770, 1771, 1772, 1776, 69, 69, 1775, 1783, 69, 1784, 1780, 1778, 1785, 1777, 1786, 69, 1779, 1789, 1788, 1787, 1790, 69, 1781, 1792, 1782, 69, 69, 1791, 1793, 69, 1795, 1794, 69, 69, 1783, 69, 1784, 69, 1798, 1785, 1797, 69, 1799, 1796, 1801, 1788, 1787, 1790, 69, 69, 1792, 69, 69, 1800, 1791, 1802, 69, 69, 1794, 69, 1803, 1807, 69, 1805, 1804, 69, 69, 1797, 69, 1799, 1796, 1801, 1806, 69, 1809, 1810, 69, 1811, 1808, 1813, 1800, 1812, 1802, 69, 1816, 69, 69, 1803, 69, 1814, 1805, 1804, 69, 1815, 1996, 1817, 69, 69, 1820, 1806, 1818, 69, 69, 69, 69, 1808, 69, 1819, 1812, 1821, 1822, 1816, 69, 69, 1823, 1825, 1814, 1824, 69, 1826, 1815, 69, 1817, 1827, 69, 69, 1829, 1818, 1830, 69, 1828, 1832, 1831, 69, 1819, 1833, 69, 1822, 1836, 69, 1837, 1823, 69, 69, 1824, 69, 1826, 1839, 1838, 69, 1827, 1840, 69, 1829, 69, 1830, 69, 1828, 1832, 1831, 1834, 1835, 1842, 1841, 1843, 69, 69, 69, 1844, 1845, 69, 1846, 1847, 69, 69, 1838, 69, 1848, 1840, 1849, 1853, 1850, 1852, 1854, 69, 1851, 1856, 1834, 1835, 1842, 1841, 69, 69, 69, 69, 69, 69, 1855, 1846, 69, 69, 1857, 1861, 69, 1848, 69, 69, 69, 1850, 1852, 1854, 1858, 1851, 69, 1859, 1860, 69, 69, 69, 1864, 1862, 69, 1863, 69, 1855, 1865, 1866, 1867, 1857, 1861, 69, 69, 1870, 69, 1868, 69, 1869, 69, 1858, 69, 1871, 1859, 1860, 69, 1873, 1872, 1864, 1862, 1875, 1863, 1874, 1876, 1865, 1866, 1867, 1878, 69, 1877, 1996, 69, 69, 1868, 1879, 1869, 1882, 1881, 1883, 69, 69, 1884, 69, 69, 1872, 69, 69, 69, 1880, 1874, 1876, 1885, 1889, 1892, 69, 69, 1877, 69, 1886, 1887, 69, 1879, 69, 1882, 1881, 69, 1888, 1890, 69, 1891, 1893, 69, 69, 69, 69, 1880, 1894, 69, 1885, 1889, 69, 1895, 1896, 1897, 1900, 1886, 1887, 1898, 1899, 69, 1902, 1903, 1901, 1888, 1890, 1904, 1891, 69, 69, 69, 69, 1908, 1996, 69, 69, 1996, 1909, 1996, 1895, 69, 1897, 69, 1905, 69, 1898, 1899, 69, 69, 1903, 1901, 69, 69, 1904, 1906, 1907, 69, 1912, 1910, 1908, 69, 1911, 1913, 69, 1909, 69, 69, 1914, 1915, 1916, 1905, 1918, 1919, 69, 69, 69, 69, 69, 1920, 69, 69, 1906, 1907, 69, 1912, 1910, 1921, 1922, 1911, 1913, 1917, 1923, 69, 1924, 1914, 1915, 1916, 1925, 1918, 1919, 1926, 1928, 69, 1929, 69, 69, 1930, 1933, 1934, 1927, 1931, 1996, 1996, 1921, 69, 69, 69, 1917, 69, 69, 1924, 69, 69, 1932, 1925, 1943, 1936, 1926, 1935, 1996, 1929, 69, 69, 69, 1937, 1938, 1927, 1931, 69, 69, 69, 69, 69, 1939, 1940, 1941, 1942, 69, 69, 1945, 1932, 69, 1943, 1936, 69, 1935, 1944, 69, 69, 69, 1946, 1937, 1938, 1947, 1951, 1952, 1948, 1949, 1996, 1950, 1939, 1940, 1941, 1942, 1954, 1996, 1945, 69, 69, 1953, 1956, 1996, 69, 1944, 1996, 69, 69, 1946, 69, 69, 1947, 1959, 69, 1948, 1949, 69, 1950, 1955, 1958, 69, 1957, 1954, 1960, 1962, 1964, 69, 1953, 1961, 69, 1963, 69, 69, 69, 69, 1965, 69, 1966, 69, 1959, 1967, 1969, 1971, 69, 1996, 1955, 1958, 69, 1957, 1968, 1960, 1962, 1964, 1996, 1972, 1961, 69, 1963, 1973, 1996, 1975, 69, 1965, 69, 1966, 1970, 69, 1967, 1969, 69, 1996, 69, 1974, 69, 69, 1976, 1968, 1981, 69, 1977, 69, 1972, 69, 69, 1985, 1973, 1978, 1975, 1979, 1980, 1982, 1996, 1970, 1984, 1986, 1987, 69, 69, 69, 1974, 1988, 69, 1976, 69, 1981, 1989, 1977, 1990, 69, 1991, 1983, 69, 1994, 1978, 69, 1979, 1980, 1982, 69, 69, 1984, 1986, 69, 1995, 1996, 69, 1996, 69, 1996, 69, 1992, 69, 1989, 1993, 1990, 1996, 1991, 1983, 69, 69, 1996, 69, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 69, 1996, 1996, 1996, 1996, 1996, 1996, 1992, 1996, 1996, 1993, 41, 41, 41, 41, 41, 41, 41, 46, 46, 46, 46, 46, 46, 46, 51, 51, 51, 51, 51, 51, 51, 57, 57, 57, 57, 57, 57, 57, 62, 62, 62, 62, 62, 62, 62, 72, 72, 1996, 72, 72, 72, 72, 129, 129, 1996, 1996, 1996, 129, 129, 131, 131, 1996, 1996, 131, 1996, 131, 133, 1996, 1996, 1996, 1996, 1996, 133, 136, 136, 1996, 1996, 1996, 136, 136, 138, 1996, 1996, 1996, 1996, 1996, 138, 140, 140, 1996, 140, 140, 140, 140, 73, 73, 1996, 73, 73, 73, 73, 13, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996 } ; static yyconst flex_int16_t yy_chk[5794] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 4, 4, 4, 5, 5, 6, 6, 5, 27, 6, 7, 7, 7, 7, 2002, 7, 8, 8, 8, 8, 27, 8, 9, 9, 9, 10, 10, 10, 15, 45, 45, 50, 15, 3, 50, 27, 4, 61, 61, 5, 19, 6, 19, 19, 70, 19, 717, 7, 70, 40, 19, 40, 40, 8, 40, 23, 20, 20, 9, 40, 724, 10, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 20, 23, 717, 19, 23, 29, 20, 11, 23, 20, 20, 132, 21, 12, 132, 24, 83, 29, 138, 21, 34, 83, 25, 28, 66, 11, 21, 20, 23, 24, 25, 12, 29, 34, 11, 130, 130, 66, 21, 21, 12, 24, 24, 83, 802, 28, 21, 34, 25, 25, 28, 66, 30, 21, 22, 136, 24, 25, 22, 26, 30, 22, 26, 22, 22, 135, 30, 32, 133, 26, 30, 26, 802, 32, 95, 37, 22, 37, 30, 30, 31, 22, 26, 118, 31, 22, 26, 30, 22, 26, 22, 22, 37, 30, 32, 35, 26, 30, 26, 35, 31, 37, 37, 36, 37, 95, 31, 31, 76, 35, 38, 31, 35, 36, 118, 38, 131, 36, 36, 37, 129, 35, 35, 38, 68, 36, 35, 31, 33, 75, 36, 76, 33, 137, 137, 76, 35, 38, 33, 35, 36, 33, 38, 39, 36, 36, 62, 39, 33, 80, 33, 39, 57, 75, 52, 33, 75, 51, 56, 33, 56, 56, 80, 56, 46, 33, 77, 41, 33, 39, 39, 14, 144, 77, 39, 33, 80, 64, 39, 64, 64, 67, 64, 67, 67, 69, 67, 69, 69, 72, 69, 72, 72, 77, 72, 69, 78, 79, 81, 72, 84, 82, 82, 144, 81, 86, 79, 89, 84, 78, 82, 13, 91, 85, 64, 87, 89, 0, 86, 81, 78, 88, 87, 78, 79, 81, 72, 84, 82, 82, 85, 81, 86, 92, 89, 91, 78, 88, 90, 91, 93, 0, 87, 0, 85, 0, 94, 90, 88, 94, 96, 99, 97, 93, 99, 92, 100, 85, 96, 101, 92, 0, 94, 94, 98, 90, 107, 93, 98, 100, 94, 103, 97, 94, 97, 107, 94, 96, 99, 97, 102, 104, 101, 100, 0, 103, 101, 106, 98, 94, 94, 98, 105, 107, 106, 98, 109, 108, 103, 97, 102, 104, 112, 111, 0, 109, 105, 102, 104, 110, 111, 113, 114, 110, 106, 115, 0, 116, 113, 105, 108, 223, 119, 109, 108, 116, 114, 115, 112, 112, 111, 110, 117, 154, 120, 122, 110, 119, 113, 114, 110, 117, 115, 121, 116, 123, 122, 127, 124, 119, 223, 123, 121, 126, 120, 125, 127, 128, 0, 117, 120, 120, 122, 0, 154, 0, 0, 142, 126, 124, 121, 0, 123, 124, 127, 124, 0, 125, 258, 128, 126, 120, 125, 134, 128, 134, 134, 139, 134, 139, 139, 142, 139, 143, 142, 140, 124, 140, 140, 145, 140, 147, 146, 149, 148, 258, 150, 151, 0, 147, 149, 145, 151, 152, 159, 143, 148, 153, 307, 307, 143, 146, 157, 160, 150, 155, 145, 0, 147, 146, 149, 148, 140, 150, 158, 152, 159, 162, 151, 151, 152, 159, 158, 153, 153, 160, 155, 307, 157, 157, 160, 161, 0, 155, 163, 161, 164, 0, 165, 167, 162, 158, 166, 0, 162, 166, 168, 173, 167, 164, 165, 0, 169, 155, 156, 171, 163, 166, 161, 156, 0, 163, 171, 164, 156, 165, 167, 0, 168, 166, 156, 156, 166, 168, 169, 170, 172, 156, 173, 169, 170, 156, 171, 174, 176, 175, 156, 172, 0, 0, 177, 156, 170, 178, 170, 175, 179, 156, 156, 178, 0, 170, 170, 172, 180, 181, 182, 170, 177, 174, 174, 184, 183, 185, 187, 176, 175, 177, 0, 170, 178, 170, 175, 186, 188, 184, 180, 179, 189, 188, 186, 180, 183, 192, 185, 187, 181, 182, 184, 183, 185, 187, 190, 191, 194, 192, 193, 189, 197, 195, 186, 188, 201, 193, 195, 189, 190, 198, 196, 196, 192, 200, 199, 203, 198, 191, 194, 196, 204, 190, 191, 194, 202, 193, 205, 206, 195, 209, 203, 197, 202, 200, 212, 201, 198, 196, 196, 199, 200, 199, 203, 207, 209, 208, 204, 204, 205, 208, 211, 202, 213, 210, 214, 215, 209, 205, 206, 218, 207, 210, 216, 217, 219, 212, 219, 215, 207, 211, 207, 216, 208, 220, 213, 205, 217, 211, 218, 213, 210, 221, 215, 222, 226, 214, 218, 207, 224, 216, 217, 219, 225, 227, 229, 226, 231, 220, 228, 0, 220, 233, 234, 236, 0, 227, 221, 0, 221, 222, 222, 226, 230, 232, 224, 224, 235, 229, 225, 225, 227, 229, 228, 240, 237, 228, 232, 231, 234, 234, 230, 237, 233, 238, 236, 239, 244, 240, 235, 230, 232, 239, 238, 235, 241, 242, 243, 245, 0, 246, 240, 237, 247, 248, 249, 243, 245, 250, 0, 244, 238, 247, 239, 244, 0, 253, 0, 251, 248, 242, 241, 241, 242, 243, 245, 246, 246, 259, 252, 247, 248, 250, 251, 253, 250, 249, 252, 252, 255, 252, 264, 254, 253, 256, 251, 261, 252, 254, 257, 257, 260, 259, 255, 260, 259, 252, 262, 261, 256, 265, 260, 263, 268, 252, 252, 255, 252, 264, 254, 266, 256, 271, 261, 257, 262, 257, 257, 260, 267, 263, 260, 265, 269, 262, 268, 270, 265, 272, 263, 268, 267, 273, 270, 275, 272, 266, 266, 269, 274, 278, 274, 277, 271, 0, 0, 267, 275, 279, 281, 269, 0, 294, 270, 273, 272, 281, 300, 0, 273, 277, 275, 276, 274, 280, 276, 274, 276, 274, 277, 279, 278, 280, 276, 282, 279, 281, 283, 280, 284, 285, 289, 288, 294, 287, 289, 282, 0, 300, 276, 283, 280, 276, 285, 276, 284, 287, 0, 292, 280, 288, 282, 290, 284, 283, 291, 284, 285, 290, 288, 292, 287, 289, 291, 293, 295, 297, 298, 299, 295, 296, 293, 284, 286, 286, 292, 304, 296, 297, 290, 299, 301, 291, 286, 302, 286, 286, 286, 301, 298, 286, 293, 295, 297, 298, 299, 303, 296, 286, 302, 286, 286, 306, 322, 305, 309, 0, 304, 301, 303, 286, 302, 286, 286, 286, 305, 309, 286, 308, 310, 311, 313, 316, 303, 306, 308, 312, 314, 315, 306, 310, 305, 309, 311, 322, 316, 319, 315, 318, 317, 0, 320, 321, 0, 313, 308, 310, 311, 313, 316, 314, 312, 317, 312, 314, 315, 318, 317, 319, 324, 321, 323, 325, 319, 320, 318, 317, 323, 320, 321, 326, 327, 0, 328, 329, 332, 330, 334, 327, 317, 324, 331, 333, 334, 336, 325, 324, 0, 323, 325, 330, 335, 326, 338, 0, 337, 329, 326, 327, 328, 328, 329, 336, 330, 334, 333, 332, 331, 331, 333, 337, 336, 339, 335, 340, 341, 338, 342, 335, 344, 338, 341, 337, 345, 348, 349, 352, 354, 346, 345, 347, 348, 0, 352, 358, 0, 340, 0, 339, 339, 349, 340, 341, 342, 342, 344, 344, 346, 347, 353, 345, 348, 349, 352, 351, 346, 351, 347, 354, 355, 356, 357, 353, 351, 360, 358, 361, 359, 365, 360, 364, 0, 361, 362, 0, 0, 353, 355, 363, 365, 357, 351, 356, 351, 0, 394, 355, 356, 357, 359, 363, 360, 364, 361, 366, 365, 362, 364, 359, 368, 362, 369, 366, 370, 389, 363, 368, 372, 371, 369, 0, 373, 394, 0, 370, 374, 359, 371, 373, 376, 0, 366, 367, 375, 377, 375, 368, 367, 369, 367, 370, 372, 0, 0, 372, 389, 377, 367, 373, 371, 367, 374, 374, 378, 371, 376, 376, 367, 367, 367, 375, 377, 380, 379, 367, 382, 367, 381, 378, 385, 380, 384, 381, 383, 367, 379, 386, 367, 388, 384, 378, 385, 0, 393, 367, 392, 391, 382, 0, 380, 379, 383, 382, 390, 381, 391, 385, 386, 384, 392, 383, 388, 393, 386, 395, 388, 396, 397, 390, 398, 393, 399, 392, 391, 404, 402, 401, 400, 402, 395, 390, 403, 397, 399, 405, 403, 402, 406, 404, 407, 408, 395, 409, 398, 397, 410, 398, 396, 399, 400, 401, 404, 402, 401, 400, 402, 412, 411, 413, 414, 415, 405, 403, 411, 406, 416, 413, 408, 417, 409, 407, 419, 418, 0, 420, 0, 410, 424, 412, 418, 421, 429, 414, 412, 411, 413, 414, 430, 416, 422, 417, 415, 416, 421, 422, 417, 420, 423, 422, 418, 425, 420, 419, 424, 424, 430, 423, 421, 426, 425, 427, 432, 429, 422, 430, 428, 422, 431, 433, 0, 435, 422, 436, 440, 423, 422, 434, 425, 428, 437, 426, 435, 427, 432, 432, 426, 436, 427, 432, 438, 433, 431, 428, 439, 431, 433, 441, 435, 434, 436, 438, 437, 442, 434, 440, 444, 437, 443, 439, 445, 432, 446, 447, 448, 449, 450, 438, 441, 445, 451, 439, 452, 455, 441, 446, 452, 442, 444, 0, 442, 453, 443, 444, 454, 443, 448, 445, 456, 446, 450, 448, 451, 450, 447, 453, 449, 451, 454, 457, 458, 459, 461, 452, 455, 459, 456, 0, 453, 460, 461, 454, 462, 465, 457, 456, 463, 466, 0, 464, 468, 465, 458, 457, 466, 463, 457, 458, 464, 461, 467, 473, 459, 469, 460, 0, 460, 462, 468, 462, 465, 457, 470, 463, 466, 469, 464, 468, 471, 472, 474, 470, 476, 467, 478, 475, 471, 467, 474, 481, 469, 472, 473, 475, 477, 0, 479, 481, 484, 470, 478, 482, 480, 0, 483, 471, 472, 474, 476, 476, 485, 478, 475, 480, 486, 482, 481, 477, 479, 489, 484, 477, 487, 479, 483, 484, 488, 490, 482, 480, 485, 483, 492, 493, 491, 488, 486, 485, 494, 489, 495, 486, 496, 500, 487, 490, 489, 491, 496, 487, 492, 501, 498, 488, 490, 493, 497, 502, 501, 492, 493, 491, 494, 495, 497, 494, 503, 495, 504, 496, 498, 505, 517, 506, 500, 0, 507, 504, 501, 498, 502, 503, 497, 497, 502, 507, 508, 0, 508, 511, 517, 497, 506, 503, 0, 504, 514, 519, 518, 517, 506, 511, 505, 507, 521, 523, 514, 520, 0, 0, 525, 527, 525, 508, 509, 526, 511, 524, 509, 518, 519, 509, 0, 514, 519, 518, 524, 523, 509, 528, 532, 509, 523, 520, 520, 521, 509, 525, 527, 526, 529, 509, 526, 0, 524, 509, 531, 533, 509, 528, 0, 530, 532, 534, 535, 509, 528, 532, 509, 522, 522, 537, 522, 530, 0, 522, 529, 529, 536, 537, 522, 533, 531, 531, 533, 534, 522, 522, 530, 535, 534, 535, 539, 536, 538, 522, 522, 522, 537, 522, 539, 538, 522, 540, 542, 536, 541, 522, 544, 545, 543, 547, 546, 522, 522, 548, 542, 544, 549, 539, 550, 538, 540, 543, 545, 0, 552, 551, 558, 555, 540, 542, 541, 541, 546, 544, 545, 543, 547, 546, 553, 554, 556, 559, 550, 552, 548, 550, 551, 549, 554, 555, 557, 552, 551, 558, 555, 560, 561, 553, 557, 559, 556, 562, 564, 565, 569, 553, 554, 556, 559, 562, 566, 567, 0, 568, 560, 570, 569, 557, 570, 574, 564, 565, 560, 0, 567, 571, 573, 561, 562, 564, 565, 569, 573, 571, 566, 580, 576, 566, 567, 568, 568, 574, 570, 576, 575, 587, 574, 578, 579, 571, 575, 577, 571, 573, 578, 581, 577, 582, 580, 583, 571, 584, 580, 576, 581, 582, 579, 585, 586, 590, 591, 575, 587, 0, 578, 579, 584, 583, 577, 589, 585, 592, 581, 588, 582, 593, 583, 0, 584, 586, 588, 595, 589, 593, 585, 586, 596, 598, 597, 594, 590, 591, 596, 599, 592, 601, 589, 594, 592, 602, 588, 600, 593, 595, 594, 603, 604, 0, 595, 601, 600, 606, 603, 596, 597, 597, 594, 599, 598, 607, 599, 608, 601, 610, 594, 605, 610, 609, 600, 611, 602, 607, 603, 604, 605, 609, 612, 0, 606, 0, 0, 614, 611, 612, 608, 0, 607, 0, 608, 616, 610, 615, 605, 617, 609, 617, 611, 619, 618, 0, 0, 616, 621, 612, 613, 620, 613, 614, 614, 619, 613, 623, 613, 622, 615, 621, 616, 613, 615, 0, 617, 618, 613, 624, 619, 618, 622, 620, 613, 621, 626, 613, 620, 613, 623, 624, 625, 613, 623, 613, 622, 627, 628, 629, 613, 630, 625, 631, 628, 613, 624, 0, 626, 632, 627, 635, 629, 626, 625, 646, 634, 0, 0, 625, 637, 0, 630, 638, 627, 628, 629, 636, 630, 625, 639, 634, 640, 635, 631, 637, 632, 633, 635, 643, 636, 647, 633, 634, 633, 641, 646, 637, 642, 638, 638, 640, 639, 644, 636, 633, 642, 639, 641, 640, 649, 650, 633, 633, 633, 647, 643, 0, 647, 633, 648, 633, 641, 651, 649, 642, 644, 652, 648, 655, 644, 653, 633, 654, 656, 652, 657, 649, 664, 633, 655, 659, 650, 658, 657, 651, 660, 648, 659, 653, 651, 654, 656, 662, 652, 661, 655, 663, 653, 660, 654, 656, 661, 657, 666, 658, 668, 667, 659, 664, 658, 662, 666, 660, 669, 663, 667, 670, 668, 672, 662, 671, 661, 673, 663, 674, 675, 677, 678, 0, 0, 666, 678, 668, 667, 0, 669, 672, 677, 670, 675, 669, 679, 671, 670, 679, 672, 680, 671, 673, 673, 681, 685, 675, 677, 682, 674, 686, 683, 678, 684, 688, 682, 686, 681, 690, 687, 684, 679, 679, 683, 680, 679, 689, 680, 692, 685, 687, 681, 685, 691, 693, 682, 688, 686, 683, 690, 684, 688, 695, 696, 691, 690, 687, 694, 689, 692, 697, 695, 700, 689, 698, 692, 699, 701, 702, 697, 691, 693, 698, 699, 703, 694, 700, 696, 706, 695, 696, 707, 709, 705, 694, 708, 710, 697, 713, 700, 702, 698, 705, 699, 711, 702, 703, 707, 701, 714, 708, 703, 706, 712, 716, 706, 711, 714, 707, 715, 705, 718, 708, 709, 719, 713, 720, 710, 728, 716, 718, 711, 715, 726, 720, 712, 714, 721, 729, 721, 712, 716, 719, 725, 723, 726, 715, 727, 718, 732, 730, 719, 723, 720, 727, 733, 725, 731, 734, 728, 726, 735, 732, 737, 721, 740, 738, 736, 733, 729, 725, 723, 730, 735, 727, 736, 732, 730, 738, 731, 734, 739, 733, 737, 731, 734, 741, 742, 735, 739, 737, 743, 740, 738, 736, 744, 742, 745, 746, 741, 750, 747, 744, 748, 752, 749, 0, 0, 739, 750, 0, 753, 743, 741, 742, 751, 748, 754, 743, 753, 746, 747, 744, 745, 745, 746, 752, 750, 747, 749, 748, 752, 749, 751, 757, 755, 758, 759, 753, 754, 760, 761, 751, 755, 754, 762, 765, 764, 760, 759, 766, 763, 765, 761, 758, 764, 772, 757, 767, 766, 0, 757, 755, 758, 759, 762, 763, 760, 761, 768, 770, 773, 762, 765, 764, 769, 774, 766, 763, 767, 780, 768, 769, 775, 773, 767, 776, 772, 770, 777, 775, 779, 781, 780, 782, 774, 768, 770, 773, 779, 783, 778, 769, 774, 777, 778, 781, 780, 776, 785, 775, 784, 787, 776, 783, 786, 777, 788, 779, 781, 782, 782, 791, 789, 790, 792, 796, 783, 795, 784, 797, 793, 778, 840, 787, 788, 799, 795, 784, 787, 785, 786, 786, 792, 788, 789, 790, 794, 791, 791, 789, 790, 792, 793, 798, 795, 803, 796, 793, 799, 794, 797, 0, 799, 840, 805, 0, 0, 801, 811, 807, 809, 803, 0, 794, 809, 798, 811, 806, 807, 808, 798, 800, 803, 812, 817, 810, 800, 805, 800, 806, 800, 805, 800, 801, 801, 811, 807, 808, 810, 800, 814, 809, 812, 813, 806, 815, 808, 816, 800, 816, 812, 817, 810, 800, 815, 800, 813, 800, 814, 800, 819, 818, 821, 822, 824, 826, 829, 814, 823, 0, 813, 825, 815, 818, 816, 827, 823, 828, 825, 0, 832, 831, 841, 828, 833, 822, 821, 819, 818, 821, 822, 824, 826, 829, 830, 823, 834, 827, 825, 832, 835, 830, 827, 831, 828, 836, 833, 832, 831, 835, 837, 833, 842, 841, 838, 843, 845, 844, 847, 851, 846, 830, 834, 834, 845, 850, 836, 835, 838, 850, 837, 848, 836, 849, 842, 844, 846, 837, 848, 842, 849, 838, 852, 845, 844, 847, 843, 846, 852, 853, 851, 854, 850, 855, 857, 852, 853, 856, 848, 859, 849, 857, 855, 858, 861, 858, 854, 860, 859, 852, 862, 863, 871, 0, 862, 852, 853, 865, 854, 0, 855, 857, 867, 856, 856, 865, 859, 868, 866, 860, 858, 861, 866, 863, 860, 869, 0, 862, 863, 870, 867, 872, 873, 871, 865, 874, 868, 875, 875, 867, 879, 877, 870, 874, 868, 0, 876, 879, 873, 866, 869, 878, 869, 880, 872, 876, 870, 881, 872, 873, 878, 882, 874, 877, 875, 885, 881, 879, 877, 882, 883, 886, 888, 876, 884, 889, 880, 885, 878, 897, 880, 887, 890, 886, 881, 883, 894, 884, 882, 887, 895, 891, 885, 892, 888, 889, 895, 883, 886, 888, 891, 884, 889, 893, 890, 896, 898, 894, 887, 890, 897, 892, 899, 894, 900, 893, 902, 895, 891, 903, 892, 907, 905, 906, 909, 908, 904, 896, 909, 911, 893, 905, 896, 908, 907, 0, 911, 898, 899, 899, 900, 900, 903, 902, 904, 906, 903, 910, 907, 905, 906, 910, 908, 904, 912, 909, 911, 913, 914, 915, 915, 916, 912, 918, 919, 913, 914, 0, 917, 916, 924, 920, 919, 926, 921, 922, 924, 923, 910, 920, 925, 912, 921, 922, 913, 914, 915, 927, 916, 917, 923, 919, 925, 928, 918, 917, 929, 924, 920, 926, 926, 921, 922, 930, 923, 931, 937, 925, 928, 933, 932, 927, 934, 937, 927, 0, 938, 935, 939, 943, 928, 935, 941, 929, 932, 930, 934, 933, 931, 940, 930, 941, 931, 937, 935, 947, 933, 932, 945, 934, 939, 948, 935, 938, 935, 939, 942, 945, 935, 941, 943, 949, 940, 942, 951, 0, 940, 947, 953, 954, 956, 935, 947, 957, 958, 945, 960, 948, 948, 959, 954, 959, 961, 942, 963, 964, 958, 966, 967, 960, 962, 951, 949, 967, 956, 953, 954, 956, 965, 957, 957, 958, 962, 960, 961, 965, 959, 968, 964, 961, 969, 963, 964, 966, 966, 967, 970, 962, 971, 973, 974, 0, 975, 968, 970, 965, 976, 0, 977, 974, 980, 978, 979, 969, 968, 975, 982, 969, 978, 979, 971, 984, 983, 970, 981, 971, 973, 974, 980, 975, 977, 981, 976, 976, 986, 977, 989, 980, 978, 979, 985, 982, 988, 982, 983, 990, 995, 985, 994, 983, 991, 981, 984, 990, 993, 988, 998, 993, 999, 996, 0, 995, 1001, 989, 1004, 986, 996, 985, 1009, 988, 1000, 991, 990, 995, 994, 994, 997, 991, 1003, 997, 999, 993, 1005, 1011, 1001, 999, 996, 998, 1000, 1001, 1002, 997, 1002, 1007, 1010, 1004, 1014, 1000, 1006, 1009, 997, 1007, 1003, 997, 1008, 1003, 997, 1006, 1005, 1005, 1013, 1008, 1015, 1016, 1011, 1012, 1010, 1002, 997, 1012, 1007, 1010, 1016, 1014, 1021, 1006, 1017, 1022, 1018, 1020, 1019, 1008, 1013, 1017, 1015, 1018, 1025, 1013, 1021, 1015, 1016, 1023, 1012, 1019, 1020, 1024, 1028, 1030, 1023, 1025, 1031, 1021, 1024, 1017, 1026, 1018, 1020, 1019, 1022, 1029, 1026, 0, 1031, 1025, 1032, 1034, 1029, 1033, 1023, 1030, 1033, 1039, 1024, 1028, 1030, 1036, 1034, 1031, 1040, 1041, 1036, 1026, 1042, 1044, 1032, 1033, 1029, 1036, 1038, 1043, 1038, 1032, 1034, 1048, 1033, 1047, 1046, 1033, 1039, 1046, 1043, 1044, 1036, 1041, 1042, 1040, 1041, 1036, 1049, 1042, 1044, 1045, 1052, 1047, 1046, 1038, 1043, 1051, 1050, 1045, 1053, 1052, 1047, 1046, 1048, 1050, 1046, 1055, 1057, 1054, 1057, 1051, 1058, 1053, 1059, 1049, 1062, 1060, 1045, 1052, 1054, 1058, 1055, 1063, 1051, 1050, 0, 1053, 1060, 1061, 1064, 1067, 1070, 1064, 1055, 1057, 1054, 1063, 1062, 1058, 1059, 1059, 1065, 1062, 1060, 1068, 1069, 1061, 1064, 1063, 1063, 1065, 1072, 1071, 1068, 1073, 1061, 1064, 1078, 1072, 1064, 1074, 1067, 1070, 1063, 1075, 1078, 1080, 1069, 1065, 1083, 1075, 1068, 1069, 1071, 1074, 1079, 1087, 1081, 1072, 1071, 1080, 1082, 0, 1085, 1078, 1073, 1081, 1074, 1075, 1082, 1084, 1075, 1085, 1080, 1079, 1089, 1093, 1075, 1088, 1090, 1083, 1084, 1079, 1087, 1081, 1088, 1091, 1092, 1082, 1094, 1085, 1097, 1096, 1094, 1093, 1099, 1100, 1084, 1089, 1098, 1103, 1090, 1089, 1093, 1096, 1088, 1090, 1107, 1091, 1092, 1101, 1100, 1098, 1091, 1092, 1099, 1094, 1104, 1097, 1096, 1102, 1105, 1099, 1100, 1106, 1101, 1098, 1109, 1102, 1108, 1105, 1103, 1104, 1111, 1107, 1113, 0, 1101, 0, 1112, 1118, 1115, 0, 1114, 1104, 1106, 1116, 1102, 1105, 1119, 1117, 1106, 1118, 1108, 1109, 1111, 1108, 1112, 1114, 1123, 1111, 1120, 1113, 1115, 1116, 1117, 1112, 1118, 1115, 1122, 1114, 1119, 1124, 1116, 1120, 1121, 1119, 1117, 1125, 1120, 1127, 1122, 1121, 1126, 1125, 1128, 1123, 1127, 1120, 1130, 1129, 1126, 1131, 1132, 1134, 1133, 1122, 1129, 1131, 1135, 1137, 1120, 1121, 1124, 1139, 1125, 1138, 1127, 1143, 1140, 1126, 1140, 1128, 1141, 1153, 1138, 1130, 1129, 1133, 1131, 1132, 1142, 1133, 1135, 0, 1134, 1135, 1144, 1144, 1144, 1145, 1137, 1147, 1138, 1144, 1139, 1140, 1145, 1146, 1143, 1141, 1153, 1144, 1148, 1173, 1146, 1151, 1142, 1142, 1150, 1148, 1155, 1152, 1150, 1144, 1144, 1144, 1145, 1152, 1151, 1158, 1144, 1156, 1147, 1159, 1146, 1154, 1154, 1163, 1156, 1148, 1157, 1162, 1151, 0, 1173, 1157, 1155, 1155, 1152, 1150, 1165, 1164, 0, 1166, 1172, 1158, 1158, 1168, 1156, 1162, 1159, 1178, 1154, 1164, 1163, 1167, 1167, 1157, 1162, 1175, 1165, 1166, 1169, 1169, 1170, 1174, 1172, 1165, 1164, 1176, 1166, 1172, 1174, 1168, 1168, 1170, 1177, 1179, 1178, 1175, 0, 1181, 1167, 1180, 0, 1182, 1175, 1183, 1181, 1169, 1187, 1170, 1174, 1182, 1184, 1194, 1185, 1186, 1186, 1179, 1176, 1180, 1183, 1188, 1179, 1185, 1191, 1177, 1181, 1193, 1180, 1189, 1182, 1190, 1183, 1188, 1187, 1187, 1184, 1189, 1192, 1184, 1194, 1185, 1186, 1190, 1195, 1193, 1196, 1191, 1188, 1195, 1198, 1191, 1200, 1201, 1193, 1197, 1189, 1199, 1190, 1192, 1195, 1197, 1202, 1198, 1199, 1192, 1202, 1203, 1204, 1204, 1205, 1195, 1206, 1196, 1208, 0, 1195, 1198, 1212, 1209, 1201, 1210, 1197, 1200, 1199, 1205, 1211, 1213, 1211, 1208, 1214, 1218, 1213, 1202, 0, 1204, 1210, 1205, 1203, 1217, 1215, 1208, 1209, 1206, 1219, 1220, 1209, 1222, 1210, 1212, 0, 1223, 1221, 1211, 1213, 1215, 1224, 1218, 1218, 1221, 1227, 1214, 1225, 1217, 1229, 1233, 1217, 1215, 1222, 1230, 1232, 1219, 1220, 1223, 1222, 0, 1235, 1224, 1223, 1221, 1225, 1236, 1227, 1224, 1230, 1232, 1234, 1227, 1229, 1225, 1236, 1229, 1233, 1234, 1235, 1238, 1230, 1232, 1237, 1239, 1240, 1241, 1244, 1235, 0, 1245, 1237, 1248, 1236, 1243, 1254, 1244, 1246, 1234, 1241, 0, 1250, 1257, 1238, 1258, 1243, 1239, 1238, 1245, 1253, 1237, 1239, 1250, 1241, 1244, 1246, 1240, 1245, 1252, 1248, 1243, 1243, 1253, 1255, 1246, 1256, 1254, 1257, 1250, 1257, 1252, 1258, 1243, 1255, 1260, 1261, 1253, 1262, 1263, 0, 1264, 0, 1261, 1265, 1266, 1252, 1264, 1268, 1268, 0, 1255, 1256, 1256, 1267, 1260, 0, 1263, 1269, 1265, 1266, 1270, 1260, 1261, 1262, 1262, 1263, 1275, 1264, 1267, 1269, 1265, 1266, 1272, 1270, 1268, 1273, 1276, 1277, 0, 1272, 1267, 1270, 1273, 1278, 1269, 1283, 1277, 1270, 1275, 1279, 1281, 1284, 1286, 1275, 1285, 1285, 1292, 1287, 1283, 1272, 1270, 1276, 1273, 1276, 1277, 1278, 1288, 1289, 1281, 1279, 1278, 1290, 1283, 1293, 1286, 1299, 1279, 1281, 1284, 1286, 1290, 1285, 1287, 1291, 1287, 1294, 1295, 1292, 1288, 1289, 1291, 1300, 1306, 1288, 1289, 1293, 1297, 1301, 1290, 1294, 1293, 1298, 1299, 1303, 1297, 1295, 0, 1306, 1302, 1301, 1291, 1304, 1294, 1295, 1298, 1302, 1305, 1300, 1300, 1306, 1308, 1309, 1307, 1297, 1301, 1307, 1310, 1311, 1298, 1313, 1317, 0, 1316, 1304, 1303, 1302, 1314, 1317, 1304, 1319, 1307, 1305, 1311, 1305, 1310, 1308, 1316, 1308, 1309, 1307, 1319, 1313, 1307, 1310, 1311, 1318, 1313, 1317, 1314, 1316, 1321, 1324, 1323, 1314, 1318, 1325, 1319, 1325, 1326, 1327, 1329, 1330, 1328, 1324, 1335, 0, 1339, 1331, 0, 1330, 1332, 1321, 1318, 1323, 1341, 1345, 1326, 1321, 1324, 1323, 1328, 1333, 1325, 1335, 1340, 1326, 1327, 1329, 1330, 1328, 1331, 1335, 1332, 1339, 1331, 1333, 1334, 1332, 1336, 1343, 1334, 1341, 1340, 1342, 1344, 1336, 1345, 1347, 1333, 1352, 1346, 1340, 1355, 1344, 1343, 1349, 1350, 1349, 1351, 1353, 1356, 1352, 1351, 1355, 1354, 1336, 1343, 1334, 1358, 1342, 1342, 1344, 1346, 1354, 1347, 1357, 1352, 1346, 1350, 1355, 1358, 1353, 1349, 1350, 1359, 1351, 1353, 1356, 1360, 1360, 1364, 1354, 1361, 1363, 1364, 1358, 1365, 1366, 1357, 1365, 1361, 1363, 1357, 1367, 1369, 1366, 1359, 1368, 1371, 1367, 1369, 1359, 1372, 1373, 1375, 1360, 1374, 1364, 1376, 1361, 1363, 1377, 1368, 1365, 1366, 1378, 1379, 1373, 1375, 1374, 1367, 1369, 1380, 1383, 1368, 1371, 1372, 1381, 1379, 1372, 1373, 1375, 1384, 1374, 1376, 1376, 1380, 1382, 1377, 1385, 1382, 1387, 1378, 1379, 1386, 1389, 1390, 1388, 1393, 1380, 1383, 1394, 1386, 1381, 1381, 1382, 1388, 1391, 1396, 1384, 1398, 1395, 1401, 0, 1382, 1391, 1385, 1382, 1387, 1395, 1393, 1386, 1389, 1390, 1388, 1393, 1399, 1397, 1394, 1400, 1403, 1398, 1402, 1404, 1391, 1396, 1397, 1398, 1395, 1401, 1402, 1404, 1403, 1405, 1400, 1407, 1409, 1408, 1411, 0, 1399, 1408, 1407, 1399, 1397, 1400, 1400, 1403, 1409, 1402, 1404, 1410, 1413, 1414, 1414, 1415, 1418, 1416, 1412, 1421, 1405, 1400, 1407, 1409, 1408, 1411, 1412, 1419, 1420, 1423, 1420, 1418, 1426, 1421, 1410, 1416, 1424, 1429, 1410, 1413, 1414, 1415, 1415, 1418, 1416, 1412, 1421, 1422, 1425, 1419, 1426, 1423, 1427, 1422, 1419, 1420, 1423, 1430, 1424, 1426, 1425, 1435, 1432, 1424, 1428, 1434, 1436, 0, 1429, 1432, 1427, 1443, 0, 1437, 1422, 1425, 0, 1428, 1440, 1427, 1430, 1437, 1445, 1434, 1430, 1441, 1443, 1435, 1435, 1432, 1440, 1428, 1434, 1446, 1438, 1447, 1438, 1436, 1443, 1437, 1437, 1438, 1447, 1441, 1448, 1440, 1445, 1449, 1437, 1445, 1451, 1452, 1441, 1453, 1454, 1446, 1457, 1455, 1456, 1448, 1446, 1438, 1447, 1438, 1452, 1459, 1456, 1460, 1461, 1454, 1455, 1448, 0, 1469, 1449, 1462, 1466, 1451, 1452, 1453, 1453, 1454, 1457, 1457, 1455, 1456, 1463, 1465, 1459, 1464, 1468, 1460, 1459, 1463, 1460, 1461, 1464, 1462, 1467, 1466, 1465, 1470, 1462, 1466, 1469, 1467, 1474, 1472, 1473, 1482, 1482, 0, 1468, 1463, 1465, 1476, 1464, 1468, 1472, 1475, 1479, 1481, 1470, 1480, 1487, 1467, 1483, 1493, 1470, 1495, 1473, 1497, 1489, 1479, 1472, 1473, 1482, 1474, 1475, 1492, 1476, 1489, 1476, 1498, 1499, 1481, 1475, 1479, 1481, 1480, 1480, 1487, 1483, 1483, 1493, 1499, 1495, 1501, 1500, 1489, 1503, 1492, 1497, 1500, 1505, 1504, 1492, 1508, 1503, 1498, 1498, 1499, 1507, 1509, 1510, 1512, 0, 1518, 1519, 1501, 1504, 1514, 1509, 1516, 1501, 1500, 1510, 1503, 1515, 1517, 1507, 1505, 1504, 1520, 1521, 1529, 1516, 1522, 1508, 1507, 1509, 1510, 1512, 1514, 1518, 1519, 1522, 1523, 1514, 1521, 1516, 1517, 1524, 1515, 1525, 1515, 1517, 1526, 1527, 1528, 1520, 1521, 1529, 1533, 1522, 1530, 1528, 1524, 1532, 1525, 1531, 1531, 1526, 1523, 1523, 1532, 1535, 1533, 1536, 1524, 1527, 1525, 1537, 1530, 1526, 1527, 1528, 1538, 1534, 1535, 1533, 1534, 1530, 1539, 1540, 1532, 1538, 1531, 1539, 1542, 1537, 1541, 1543, 1535, 1536, 1536, 1544, 1549, 1556, 1537, 1547, 1550, 1549, 1548, 1538, 1534, 1540, 1547, 1550, 1554, 1539, 1540, 1548, 1541, 1551, 0, 1542, 1559, 1541, 1543, 1553, 1557, 1544, 1544, 1549, 1556, 1552, 1547, 1550, 1553, 1548, 1558, 1551, 1552, 1560, 1554, 1554, 1559, 1563, 1557, 1558, 1551, 1561, 1562, 1559, 1565, 1560, 1553, 1557, 1563, 1567, 1561, 1562, 1552, 1564, 1566, 1568, 1570, 1558, 1567, 1571, 1560, 1564, 1569, 1574, 1563, 1572, 1571, 1568, 1561, 1562, 1569, 1565, 1572, 1573, 1580, 1576, 1567, 1582, 1570, 1577, 1564, 1580, 1568, 1570, 1581, 1566, 1571, 1577, 1574, 1569, 1574, 1583, 1572, 1576, 1585, 1573, 1584, 1586, 1588, 1589, 1573, 1580, 1576, 1583, 1582, 1584, 1577, 1590, 1581, 1593, 1588, 1581, 1595, 1591, 1596, 0, 1600, 1602, 1583, 0, 1586, 1585, 1589, 1584, 1586, 1588, 1589, 1591, 1601, 1594, 1603, 1602, 1604, 1601, 1590, 0, 1593, 1594, 1605, 1595, 1591, 1596, 1600, 1600, 1602, 1606, 1609, 1607, 1603, 1610, 1612, 1613, 1614, 1606, 1604, 1601, 1594, 1603, 1609, 1604, 1605, 1611, 1612, 1616, 1615, 1605, 1607, 1617, 1619, 1620, 1618, 1610, 1606, 1609, 1607, 1623, 1610, 1612, 1613, 1614, 1624, 1625, 0, 1611, 1615, 1616, 1631, 1626, 1611, 1623, 1616, 1615, 1618, 1628, 1627, 1619, 1620, 1618, 1617, 1629, 1630, 1631, 1623, 0, 1625, 1628, 1633, 1634, 1625, 1626, 1635, 1624, 1627, 1631, 1626, 0, 0, 1636, 1629, 1635, 1628, 1627, 1630, 1637, 1638, 1640, 1629, 1630, 1639, 1634, 1633, 1636, 1642, 1633, 1634, 1645, 1649, 1635, 1643, 1644, 1642, 1637, 1638, 1640, 1636, 1643, 1647, 1644, 1646, 1648, 1637, 1638, 1640, 0, 1639, 1639, 1646, 1651, 1652, 1642, 1650, 1648, 1645, 1649, 1647, 1643, 1644, 1653, 1650, 1654, 1656, 1661, 1659, 1647, 1663, 1646, 1648, 1660, 1657, 1665, 1651, 1669, 1668, 1661, 1651, 1652, 1653, 1650, 1656, 1668, 1660, 1654, 1657, 1670, 1653, 1659, 1654, 1656, 1661, 1659, 1663, 1663, 1671, 1672, 1660, 1657, 1665, 1669, 1669, 1668, 1673, 1674, 1675, 1677, 1676, 1678, 1685, 0, 0, 1682, 1670, 1675, 1679, 1682, 1683, 1684, 1671, 1676, 1683, 1671, 1672, 1688, 1690, 1689, 1689, 0, 1694, 1673, 1674, 1675, 1709, 1676, 1678, 1689, 1677, 1679, 1684, 1685, 1691, 1679, 1682, 1683, 1684, 1688, 1690, 1692, 1693, 1691, 1688, 1690, 1689, 1689, 1692, 1694, 1695, 1696, 1697, 1709, 1698, 1693, 1699, 1703, 1695, 1700, 1697, 1691, 1701, 0, 1703, 1702, 1704, 1704, 1692, 1693, 1696, 0, 1705, 1701, 1713, 1714, 1710, 1695, 1696, 1697, 1698, 1698, 1699, 1699, 1703, 1700, 1700, 1702, 1706, 1701, 1705, 1707, 1702, 1704, 1717, 1706, 1711, 1714, 1707, 1705, 1710, 1713, 1714, 1710, 1716, 1711, 1718, 1719, 1720, 1723, 1721, 0, 1722, 1716, 1721, 1706, 1732, 1726, 1707, 1725, 1720, 1717, 1728, 1711, 1728, 1719, 1722, 1723, 1733, 1718, 1734, 1716, 1726, 1718, 1719, 1720, 1723, 1725, 1732, 1722, 1736, 1721, 1737, 1732, 1726, 1737, 1725, 1739, 1734, 1728, 1742, 1741, 1740, 1743, 1733, 1733, 1745, 1734, 1741, 1743, 1744, 1746, 1736, 1748, 1747, 1745, 1747, 1736, 1737, 1737, 1740, 1752, 1737, 1751, 1739, 1753, 1750, 1755, 1741, 1740, 1743, 1742, 1744, 1745, 1750, 1751, 1754, 1744, 1756, 1753, 1748, 1747, 1746, 1757, 1761, 1755, 1759, 1758, 1752, 1756, 1751, 1757, 1753, 1750, 1755, 1760, 1760, 1764, 1765, 1754, 1767, 1762, 1770, 1754, 1768, 1756, 1758, 1773, 1759, 1762, 1757, 1761, 1771, 1759, 1758, 1773, 1772, 0, 1775, 1771, 1772, 1778, 1760, 1776, 1764, 1765, 1768, 1767, 1762, 1770, 1777, 1768, 1779, 1780, 1773, 1777, 1776, 1781, 1783, 1771, 1782, 1780, 1784, 1772, 1775, 1775, 1785, 1782, 1778, 1788, 1776, 1789, 1781, 1787, 1791, 1790, 1788, 1777, 1792, 1779, 1780, 1794, 1791, 1796, 1781, 1783, 1784, 1782, 1787, 1784, 1799, 1797, 1785, 1785, 1800, 1789, 1788, 1790, 1789, 1797, 1787, 1791, 1790, 1793, 1793, 1802, 1801, 1803, 1794, 1792, 1796, 1804, 1805, 1793, 1806, 1808, 1800, 1799, 1797, 1801, 1812, 1800, 1814, 1818, 1815, 1817, 1819, 1802, 1816, 1823, 1793, 1793, 1802, 1801, 1803, 1816, 1806, 1815, 1804, 1805, 1822, 1806, 1808, 1817, 1824, 1829, 1812, 1812, 1819, 1814, 1818, 1815, 1817, 1819, 1826, 1816, 1823, 1827, 1828, 1822, 1829, 1826, 1832, 1830, 1827, 1831, 1824, 1822, 1833, 1833, 1834, 1824, 1829, 1832, 1831, 1840, 1834, 1835, 1833, 1838, 1828, 1826, 1830, 1841, 1827, 1828, 1838, 1846, 1842, 1832, 1830, 1850, 1831, 1848, 1851, 1833, 1833, 1834, 1854, 1835, 1852, 0, 1840, 1851, 1835, 1855, 1838, 1859, 1858, 1860, 1841, 1842, 1861, 1852, 1846, 1842, 1848, 1855, 1850, 1857, 1848, 1851, 1862, 1866, 1869, 1854, 1858, 1852, 1857, 1863, 1864, 1863, 1855, 1859, 1859, 1858, 1860, 1865, 1867, 1861, 1868, 1872, 1864, 1865, 1862, 1866, 1857, 1874, 1868, 1862, 1866, 1869, 1876, 1877, 1879, 1882, 1863, 1864, 1880, 1881, 1867, 1886, 1887, 1885, 1865, 1867, 1888, 1868, 1872, 1879, 1876, 1881, 1895, 0, 1874, 1887, 0, 1897, 0, 1876, 1877, 1879, 1882, 1889, 1880, 1880, 1881, 1885, 1888, 1887, 1885, 1889, 1886, 1888, 1890, 1891, 1895, 1901, 1898, 1895, 1897, 1899, 1902, 1890, 1897, 1898, 1891, 1903, 1904, 1905, 1889, 1907, 1908, 1901, 1899, 1903, 1902, 1904, 1909, 1908, 1905, 1890, 1891, 1907, 1901, 1898, 1910, 1911, 1899, 1902, 1906, 1912, 1906, 1913, 1903, 1904, 1905, 1914, 1907, 1908, 1915, 1917, 1915, 1918, 1910, 1909, 1919, 1925, 1926, 1916, 1921, 0, 0, 1910, 1911, 1913, 1918, 1906, 1912, 1914, 1913, 1916, 1921, 1924, 1914, 1936, 1928, 1915, 1927, 0, 1918, 1924, 1917, 1919, 1929, 1931, 1916, 1921, 1925, 1926, 1928, 1927, 1929, 1932, 1933, 1934, 1935, 1936, 1931, 1938, 1924, 1932, 1936, 1928, 1935, 1927, 1937, 1938, 1933, 1934, 1939, 1929, 1931, 1940, 1944, 1945, 1941, 1942, 0, 1943, 1932, 1933, 1934, 1935, 1947, 0, 1938, 1943, 1937, 1946, 1949, 0, 1947, 1937, 0, 1940, 1939, 1939, 1941, 1942, 1940, 1953, 1945, 1941, 1942, 1944, 1943, 1948, 1951, 1946, 1950, 1947, 1954, 1956, 1958, 1948, 1946, 1955, 1950, 1957, 1954, 1949, 1951, 1953, 1959, 1955, 1960, 1956, 1953, 1961, 1963, 1965, 1959, 0, 1948, 1951, 1958, 1950, 1962, 1954, 1956, 1958, 0, 1966, 1955, 1957, 1957, 1967, 0, 1969, 1963, 1959, 1960, 1960, 1964, 1961, 1961, 1963, 1965, 0, 1962, 1968, 1964, 1966, 1970, 1962, 1976, 1967, 1972, 1968, 1966, 1969, 1970, 1980, 1967, 1973, 1969, 1974, 1975, 1977, 0, 1964, 1979, 1981, 1982, 1974, 1975, 1977, 1968, 1983, 1972, 1970, 1976, 1976, 1984, 1972, 1986, 1973, 1989, 1978, 1980, 1992, 1973, 1981, 1974, 1975, 1977, 1978, 1979, 1979, 1981, 1982, 1993, 0, 1984, 0, 1983, 0, 1986, 1990, 1989, 1984, 1991, 1986, 0, 1989, 1978, 1990, 1992, 0, 1991, 0, 0, 0, 0, 0, 0, 0, 0, 1993, 0, 0, 0, 0, 0, 0, 1990, 0, 0, 1991, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2003, 2003, 0, 2003, 2003, 2003, 2003, 2004, 2004, 0, 0, 0, 2004, 2004, 2005, 2005, 0, 0, 2005, 0, 2005, 2006, 0, 0, 0, 0, 0, 2006, 2007, 2007, 0, 0, 0, 2007, 2007, 2008, 0, 0, 0, 0, 0, 2008, 2009, 2009, 0, 2009, 2009, 2009, 2009, 2010, 2010, 0, 2010, 2010, 2010, 2010, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996 } ; static yy_state_type yy_last_accepting_state; static char *yy_last_accepting_cpos; extern int yy_flex_debug; int yy_flex_debug = 0; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected static int yy_more_flag = 0; static int yy_more_len = 0; #define yymore() ((yy_more_flag) = 1) #define YY_MORE_ADJ (yy_more_len) #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "util/configlexer.lex" #line 2 "util/configlexer.lex" /* * configlexer.lex - lexical analyzer for unbound config file * * Copyright (c) 2001-2006, NLnet Labs. All rights reserved * * See LICENSE for the license. * */ /* because flex keeps having sign-unsigned compare problems that are unfixed*/ #if defined(__clang__)||(defined(__GNUC__)&&((__GNUC__ >4)||(defined(__GNUC_MINOR__)&&(__GNUC__ ==4)&&(__GNUC_MINOR__ >=2)))) #pragma GCC diagnostic ignored "-Wsign-compare" #endif #include #include #include #ifdef HAVE_GLOB_H # include #endif #include "util/config_file.h" #include "util/configparser.h" void ub_c_error(const char *message); #if 0 #define LEXOUT(s) printf s /* used ONLY when debugging */ #else #define LEXOUT(s) #endif /** avoid warning in about fwrite return value */ #define ECHO ub_c_error_msg("syntax error at text: %s", yytext) /** A parser variable, this is a statement in the config file which is * of the form variable: value1 value2 ... nargs is the number of values. */ #define YDVAR(nargs, var) \ num_args=(nargs); \ LEXOUT(("v(%s%d) ", yytext, num_args)); \ if(num_args > 0) { BEGIN(val); } \ return (var); struct inc_state { char* filename; int line; YY_BUFFER_STATE buffer; struct inc_state* next; }; static struct inc_state* config_include_stack = NULL; static int inc_depth = 0; static int inc_prev = 0; static int num_args = 0; void init_cfg_parse(void) { config_include_stack = NULL; inc_depth = 0; inc_prev = 0; num_args = 0; } static void config_start_include(const char* filename) { FILE *input; struct inc_state* s; char* nm; if(inc_depth++ > 100000) { ub_c_error_msg("too many include files"); return; } if(*filename == '\0') { ub_c_error_msg("empty include file name"); return; } s = (struct inc_state*)malloc(sizeof(*s)); if(!s) { ub_c_error_msg("include %s: malloc failure", filename); return; } if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot, strlen(cfg_parser->chroot)) == 0) { filename += strlen(cfg_parser->chroot); } nm = strdup(filename); if(!nm) { ub_c_error_msg("include %s: strdup failure", filename); free(s); return; } input = fopen(filename, "r"); if(!input) { ub_c_error_msg("cannot open include file '%s': %s", filename, strerror(errno)); free(s); free(nm); return; } LEXOUT(("switch_to_include_file(%s)\n", filename)); s->filename = cfg_parser->filename; s->line = cfg_parser->line; s->buffer = YY_CURRENT_BUFFER; s->next = config_include_stack; config_include_stack = s; cfg_parser->filename = nm; cfg_parser->line = 1; yy_switch_to_buffer(yy_create_buffer(input,YY_BUF_SIZE)); } static void config_start_include_glob(const char* filename) { /* check for wildcards */ #ifdef HAVE_GLOB glob_t g; size_t i; int r, flags; if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') && !strchr(filename, '{') && !strchr(filename, '~'))) { flags = 0 #ifdef GLOB_ERR | GLOB_ERR #endif #ifdef GLOB_NOSORT | GLOB_NOSORT #endif #ifdef GLOB_BRACE | GLOB_BRACE #endif #ifdef GLOB_TILDE | GLOB_TILDE #endif ; memset(&g, 0, sizeof(g)); if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot, strlen(cfg_parser->chroot)) == 0) { filename += strlen(cfg_parser->chroot); } r = glob(filename, flags, NULL, &g); if(r) { /* some error */ globfree(&g); if(r == GLOB_NOMATCH) return; /* no matches for pattern */ config_start_include(filename); /* let original deal with it */ return; } /* process files found, if any */ for(i=0; i<(size_t)g.gl_pathc; i++) { config_start_include(g.gl_pathv[i]); } globfree(&g); return; } #endif /* HAVE_GLOB */ config_start_include(filename); } static void config_end_include(void) { struct inc_state* s = config_include_stack; --inc_depth; if(!s) return; free(cfg_parser->filename); cfg_parser->filename = s->filename; cfg_parser->line = s->line; yy_delete_buffer(YY_CURRENT_BUFFER); yy_switch_to_buffer(s->buffer); config_include_stack = s->next; free(s); } #ifndef yy_set_bol /* compat definition, for flex 2.4.6 */ #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer(yyin,YY_BUF_SIZE ); \ yy_current_buffer->yy_ch_buf[0] = ((at_bol)?'\n':' '); \ } #endif #define YY_NO_INPUT 1 #line 187 "util/configlexer.lex" #ifndef YY_NO_UNPUT #define YY_NO_UNPUT 1 #endif #ifndef YY_NO_INPUT #define YY_NO_INPUT 1 #endif #line 2598 "" #define INITIAL 0 #define quotedstring 1 #define singlequotedstr 2 #define include 3 #define include_quoted 4 #define val 5 #ifndef YY_NO_UNISTD_H /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ #include #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif static int yy_init_globals (void ); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int yylex_destroy (void ); int yyget_debug (void ); void yyset_debug (int debug_flag ); YY_EXTRA_TYPE yyget_extra (void ); void yyset_extra (YY_EXTRA_TYPE user_defined ); FILE *yyget_in (void ); void yyset_in (FILE * _in_str ); FILE *yyget_out (void ); void yyset_out (FILE * _out_str ); yy_size_t yyget_leng (void ); char *yyget_text (void ); int yyget_lineno (void ); void yyset_lineno (int _line_number ); /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap (void ); #else extern int yywrap (void ); #endif #endif #ifndef YY_NO_UNPUT #endif #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * ); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void ); #else static int input (void ); #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k */ #define YY_READ_BUF_SIZE 16384 #else #define YY_READ_BUF_SIZE 8192 #endif /* __ia64__ */ #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ size_t n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else \ { \ errno=0; \ while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ }\ \ #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #endif /* end tables serialization structures and prototypes */ /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL_IS_OURS 1 extern int yylex (void); #define YY_DECL int yylex (void) #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK /*LINTED*/break; #endif #define YY_RULE_SETUP \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { yy_state_type yy_current_state; char *yy_cp, *yy_bp; int yy_act; if ( !(yy_init) ) { (yy_init) = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! (yy_start) ) (yy_start) = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_load_buffer_state( ); } { #line 207 "util/configlexer.lex" #line 2821 "" while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ { (yy_more_len) = 0; if ( (yy_more_flag) ) { (yy_more_len) = (yy_c_buf_p) - (yytext_ptr); (yy_more_flag) = 0; } yy_cp = (yy_c_buf_p); /* Support of yytext. */ *yy_cp = (yy_hold_char); /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; yy_current_state = (yy_start); yy_match: do { YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 1997 ) 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] != 5728 ); 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 208 "util/configlexer.lex" { LEXOUT(("SP ")); /* ignore */ } YY_BREAK case 2: YY_RULE_SETUP #line 210 "util/configlexer.lex" { /* note that flex makes the longest match and '.' is any but not nl */ LEXOUT(("comment(%s) ", yytext)); /* ignore */ } YY_BREAK case 3: YY_RULE_SETUP #line 213 "util/configlexer.lex" { YDVAR(0, VAR_SERVER) } YY_BREAK case 4: YY_RULE_SETUP #line 214 "util/configlexer.lex" { YDVAR(1, VAR_QNAME_MINIMISATION) } YY_BREAK case 5: YY_RULE_SETUP #line 215 "util/configlexer.lex" { YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) } YY_BREAK case 6: YY_RULE_SETUP #line 216 "util/configlexer.lex" { YDVAR(1, VAR_NUM_THREADS) } YY_BREAK case 7: YY_RULE_SETUP #line 217 "util/configlexer.lex" { YDVAR(1, VAR_VERBOSITY) } YY_BREAK case 8: YY_RULE_SETUP #line 218 "util/configlexer.lex" { YDVAR(1, VAR_PORT) } YY_BREAK case 9: YY_RULE_SETUP #line 219 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_RANGE) } YY_BREAK case 10: YY_RULE_SETUP #line 220 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_PERMIT) } YY_BREAK case 11: YY_RULE_SETUP #line 221 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_AVOID) } YY_BREAK case 12: YY_RULE_SETUP #line 222 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_NUM_TCP) } YY_BREAK case 13: YY_RULE_SETUP #line 223 "util/configlexer.lex" { YDVAR(1, VAR_INCOMING_NUM_TCP) } YY_BREAK case 14: YY_RULE_SETUP #line 224 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP4) } YY_BREAK case 15: YY_RULE_SETUP #line 225 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP6) } YY_BREAK case 16: YY_RULE_SETUP #line 226 "util/configlexer.lex" { YDVAR(1, VAR_PREFER_IP6) } YY_BREAK case 17: YY_RULE_SETUP #line 227 "util/configlexer.lex" { YDVAR(1, VAR_DO_UDP) } YY_BREAK case 18: YY_RULE_SETUP #line 228 "util/configlexer.lex" { YDVAR(1, VAR_DO_TCP) } YY_BREAK case 19: YY_RULE_SETUP #line 229 "util/configlexer.lex" { YDVAR(1, VAR_TCP_UPSTREAM) } YY_BREAK case 20: YY_RULE_SETUP #line 230 "util/configlexer.lex" { YDVAR(1, VAR_TCP_MSS) } YY_BREAK case 21: YY_RULE_SETUP #line 231 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_TCP_MSS) } YY_BREAK case 22: YY_RULE_SETUP #line 232 "util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 23: YY_RULE_SETUP #line 233 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 24: YY_RULE_SETUP #line 234 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 25: YY_RULE_SETUP #line 235 "util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 26: YY_RULE_SETUP #line 236 "util/configlexer.lex" { YDVAR(1, VAR_USE_SYSTEMD) } YY_BREAK case 27: YY_RULE_SETUP #line 237 "util/configlexer.lex" { YDVAR(1, VAR_DO_DAEMONIZE) } YY_BREAK case 28: YY_RULE_SETUP #line 238 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 29: YY_RULE_SETUP #line 239 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 30: YY_RULE_SETUP #line 240 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_INTERFACE) } YY_BREAK case 31: YY_RULE_SETUP #line 241 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE_AUTOMATIC) } YY_BREAK case 32: YY_RULE_SETUP #line 242 "util/configlexer.lex" { YDVAR(1, VAR_SO_RCVBUF) } YY_BREAK case 33: YY_RULE_SETUP #line 243 "util/configlexer.lex" { YDVAR(1, VAR_SO_SNDBUF) } YY_BREAK case 34: YY_RULE_SETUP #line 244 "util/configlexer.lex" { YDVAR(1, VAR_SO_REUSEPORT) } YY_BREAK case 35: YY_RULE_SETUP #line 245 "util/configlexer.lex" { YDVAR(1, VAR_IP_TRANSPARENT) } YY_BREAK case 36: YY_RULE_SETUP #line 246 "util/configlexer.lex" { YDVAR(1, VAR_IP_FREEBIND) } YY_BREAK case 37: YY_RULE_SETUP #line 247 "util/configlexer.lex" { YDVAR(1, VAR_CHROOT) } YY_BREAK case 38: YY_RULE_SETUP #line 248 "util/configlexer.lex" { YDVAR(1, VAR_USERNAME) } YY_BREAK case 39: YY_RULE_SETUP #line 249 "util/configlexer.lex" { YDVAR(1, VAR_DIRECTORY) } YY_BREAK case 40: YY_RULE_SETUP #line 250 "util/configlexer.lex" { YDVAR(1, VAR_LOGFILE) } YY_BREAK case 41: YY_RULE_SETUP #line 251 "util/configlexer.lex" { YDVAR(1, VAR_PIDFILE) } YY_BREAK case 42: YY_RULE_SETUP #line 252 "util/configlexer.lex" { YDVAR(1, VAR_ROOT_HINTS) } YY_BREAK case 43: YY_RULE_SETUP #line 253 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_BUFFER_SIZE) } YY_BREAK case 44: YY_RULE_SETUP #line 254 "util/configlexer.lex" { YDVAR(1, VAR_MSG_BUFFER_SIZE) } YY_BREAK case 45: YY_RULE_SETUP #line 255 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SIZE) } YY_BREAK case 46: YY_RULE_SETUP #line 256 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SLABS) } YY_BREAK case 47: YY_RULE_SETUP #line 257 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SIZE) } YY_BREAK case 48: YY_RULE_SETUP #line 258 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SLABS) } YY_BREAK case 49: YY_RULE_SETUP #line 259 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_TTL) } YY_BREAK case 50: YY_RULE_SETUP #line 260 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) } YY_BREAK case 51: YY_RULE_SETUP #line 261 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MIN_TTL) } YY_BREAK case 52: YY_RULE_SETUP #line 262 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_HOST_TTL) } YY_BREAK case 53: YY_RULE_SETUP #line 263 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_LAME_TTL) } YY_BREAK case 54: YY_RULE_SETUP #line 264 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_SLABS) } YY_BREAK case 55: YY_RULE_SETUP #line 265 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) } YY_BREAK case 56: YY_RULE_SETUP #line 266 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) } YY_BREAK case 57: YY_RULE_SETUP #line 267 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) } YY_BREAK case 58: YY_RULE_SETUP #line 268 "util/configlexer.lex" { YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) } YY_BREAK case 59: YY_RULE_SETUP #line 269 "util/configlexer.lex" { YDVAR(1, VAR_JOSTLE_TIMEOUT) } YY_BREAK case 60: YY_RULE_SETUP #line 270 "util/configlexer.lex" { YDVAR(1, VAR_DELAY_CLOSE) } YY_BREAK case 61: YY_RULE_SETUP #line 271 "util/configlexer.lex" { YDVAR(1, VAR_TARGET_FETCH_POLICY) } YY_BREAK case 62: YY_RULE_SETUP #line 272 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) } YY_BREAK case 63: YY_RULE_SETUP #line 273 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_LARGE_QUERIES) } YY_BREAK case 64: YY_RULE_SETUP #line 274 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_GLUE) } YY_BREAK case 65: YY_RULE_SETUP #line 275 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) } YY_BREAK case 66: YY_RULE_SETUP #line 276 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) } YY_BREAK case 67: YY_RULE_SETUP #line 277 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_REFERRAL_PATH) } YY_BREAK case 68: YY_RULE_SETUP #line 278 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) } YY_BREAK case 69: YY_RULE_SETUP #line 279 "util/configlexer.lex" { YDVAR(1, VAR_USE_CAPS_FOR_ID) } YY_BREAK case 70: YY_RULE_SETUP #line 280 "util/configlexer.lex" { YDVAR(1, VAR_CAPS_WHITELIST) } YY_BREAK case 71: YY_RULE_SETUP #line 281 "util/configlexer.lex" { YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) } YY_BREAK case 72: YY_RULE_SETUP #line 282 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_ADDRESS) } YY_BREAK case 73: YY_RULE_SETUP #line 283 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_DOMAIN) } YY_BREAK case 74: YY_RULE_SETUP #line 284 "util/configlexer.lex" { YDVAR(1, VAR_PREFETCH_KEY) } YY_BREAK case 75: YY_RULE_SETUP #line 285 "util/configlexer.lex" { YDVAR(1, VAR_PREFETCH) } YY_BREAK case 76: YY_RULE_SETUP #line 286 "util/configlexer.lex" { YDVAR(0, VAR_STUB_ZONE) } YY_BREAK case 77: YY_RULE_SETUP #line 287 "util/configlexer.lex" { YDVAR(1, VAR_NAME) } YY_BREAK case 78: YY_RULE_SETUP #line 288 "util/configlexer.lex" { YDVAR(1, VAR_STUB_ADDR) } YY_BREAK case 79: YY_RULE_SETUP #line 289 "util/configlexer.lex" { YDVAR(1, VAR_STUB_HOST) } YY_BREAK case 80: YY_RULE_SETUP #line 290 "util/configlexer.lex" { YDVAR(1, VAR_STUB_PRIME) } YY_BREAK case 81: YY_RULE_SETUP #line 291 "util/configlexer.lex" { YDVAR(1, VAR_STUB_FIRST) } YY_BREAK case 82: YY_RULE_SETUP #line 292 "util/configlexer.lex" { YDVAR(1, VAR_STUB_SSL_UPSTREAM) } YY_BREAK case 83: YY_RULE_SETUP #line 293 "util/configlexer.lex" { YDVAR(0, VAR_FORWARD_ZONE) } YY_BREAK case 84: YY_RULE_SETUP #line 294 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_ADDR) } YY_BREAK case 85: YY_RULE_SETUP #line 295 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_HOST) } YY_BREAK case 86: YY_RULE_SETUP #line 296 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_FIRST) } YY_BREAK case 87: YY_RULE_SETUP #line 297 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } YY_BREAK case 88: YY_RULE_SETUP #line 298 "util/configlexer.lex" { YDVAR(0, VAR_VIEW) } YY_BREAK case 89: YY_RULE_SETUP #line 299 "util/configlexer.lex" { YDVAR(1, VAR_VIEW_FIRST) } YY_BREAK case 90: YY_RULE_SETUP #line 300 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) } YY_BREAK case 91: YY_RULE_SETUP #line 301 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) } YY_BREAK case 92: YY_RULE_SETUP #line 302 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL) } YY_BREAK case 93: YY_RULE_SETUP #line 303 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_IDENTITY) } YY_BREAK case 94: YY_RULE_SETUP #line 304 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_VERSION) } YY_BREAK case 95: YY_RULE_SETUP #line 305 "util/configlexer.lex" { YDVAR(1, VAR_IDENTITY) } YY_BREAK case 96: YY_RULE_SETUP #line 306 "util/configlexer.lex" { YDVAR(1, VAR_VERSION) } YY_BREAK case 97: YY_RULE_SETUP #line 307 "util/configlexer.lex" { YDVAR(1, VAR_MODULE_CONF) } YY_BREAK case 98: YY_RULE_SETUP #line 308 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR) } YY_BREAK case 99: YY_RULE_SETUP #line 309 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR_FILE) } YY_BREAK case 100: YY_RULE_SETUP #line 310 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_FILE) } YY_BREAK case 101: YY_RULE_SETUP #line 311 "util/configlexer.lex" { YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) } YY_BREAK case 102: YY_RULE_SETUP #line 312 "util/configlexer.lex" { YDVAR(1, VAR_TRUSTED_KEYS_FILE) } YY_BREAK case 103: YY_RULE_SETUP #line 313 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR) } YY_BREAK case 104: YY_RULE_SETUP #line 314 "util/configlexer.lex" { YDVAR(1, VAR_VAL_OVERRIDE_DATE) } YY_BREAK case 105: YY_RULE_SETUP #line 315 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MIN) } YY_BREAK case 106: YY_RULE_SETUP #line 316 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MAX) } YY_BREAK case 107: YY_RULE_SETUP #line 317 "util/configlexer.lex" { YDVAR(1, VAR_BOGUS_TTL) } YY_BREAK case 108: YY_RULE_SETUP #line 318 "util/configlexer.lex" { YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) } YY_BREAK case 109: YY_RULE_SETUP #line 319 "util/configlexer.lex" { YDVAR(1, VAR_VAL_PERMISSIVE_MODE) } YY_BREAK case 110: YY_RULE_SETUP #line 320 "util/configlexer.lex" { YDVAR(1, VAR_IGNORE_CD_FLAG) } YY_BREAK case 111: YY_RULE_SETUP #line 321 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED) } YY_BREAK case 112: YY_RULE_SETUP #line 322 "util/configlexer.lex" { YDVAR(1, VAR_FAKE_DSA) } YY_BREAK case 113: YY_RULE_SETUP #line 323 "util/configlexer.lex" { YDVAR(1, VAR_VAL_LOG_LEVEL) } YY_BREAK case 114: YY_RULE_SETUP #line 324 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SIZE) } YY_BREAK case 115: YY_RULE_SETUP #line 325 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SLABS) } YY_BREAK case 116: YY_RULE_SETUP #line 326 "util/configlexer.lex" { YDVAR(1, VAR_NEG_CACHE_SIZE) } YY_BREAK case 117: YY_RULE_SETUP #line 327 "util/configlexer.lex" { YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) } YY_BREAK case 118: YY_RULE_SETUP #line 329 "util/configlexer.lex" { YDVAR(1, VAR_ADD_HOLDDOWN) } YY_BREAK case 119: YY_RULE_SETUP #line 330 "util/configlexer.lex" { YDVAR(1, VAR_DEL_HOLDDOWN) } YY_BREAK case 120: YY_RULE_SETUP #line 331 "util/configlexer.lex" { YDVAR(1, VAR_KEEP_MISSING) } YY_BREAK case 121: YY_RULE_SETUP #line 332 "util/configlexer.lex" { YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) } YY_BREAK case 122: YY_RULE_SETUP #line 333 "util/configlexer.lex" { YDVAR(1, VAR_USE_SYSLOG) } YY_BREAK case 123: YY_RULE_SETUP #line 334 "util/configlexer.lex" { YDVAR(1, VAR_LOG_IDENTITY) } YY_BREAK case 124: YY_RULE_SETUP #line 335 "util/configlexer.lex" { YDVAR(1, VAR_LOG_TIME_ASCII) } YY_BREAK case 125: YY_RULE_SETUP #line 336 "util/configlexer.lex" { YDVAR(1, VAR_LOG_QUERIES) } YY_BREAK case 126: YY_RULE_SETUP #line 337 "util/configlexer.lex" { YDVAR(1, VAR_LOG_REPLIES) } YY_BREAK case 127: YY_RULE_SETUP #line 338 "util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE) } YY_BREAK case 128: YY_RULE_SETUP #line 339 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA) } YY_BREAK case 129: YY_RULE_SETUP #line 340 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA_PTR) } YY_BREAK case 130: YY_RULE_SETUP #line 341 "util/configlexer.lex" { YDVAR(1, VAR_UNBLOCK_LAN_ZONES) } YY_BREAK case 131: YY_RULE_SETUP #line 342 "util/configlexer.lex" { YDVAR(1, VAR_INSECURE_LAN_ZONES) } YY_BREAK case 132: YY_RULE_SETUP #line 343 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_INTERVAL) } YY_BREAK case 133: YY_RULE_SETUP #line 344 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_CUMULATIVE) } YY_BREAK case 134: YY_RULE_SETUP #line 345 "util/configlexer.lex" { YDVAR(1, VAR_EXTENDED_STATISTICS) } YY_BREAK case 135: YY_RULE_SETUP #line 346 "util/configlexer.lex" { YDVAR(0, VAR_REMOTE_CONTROL) } YY_BREAK case 136: YY_RULE_SETUP #line 347 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_ENABLE) } YY_BREAK case 137: YY_RULE_SETUP #line 348 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_INTERFACE) } YY_BREAK case 138: YY_RULE_SETUP #line 349 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_PORT) } YY_BREAK case 139: YY_RULE_SETUP #line 350 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_USE_CERT) } YY_BREAK case 140: YY_RULE_SETUP #line 351 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_KEY_FILE) } YY_BREAK case 141: YY_RULE_SETUP #line 352 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_CERT_FILE) } YY_BREAK case 142: YY_RULE_SETUP #line 353 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_KEY_FILE) } YY_BREAK case 143: YY_RULE_SETUP #line 354 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_CERT_FILE) } YY_BREAK case 144: YY_RULE_SETUP #line 355 "util/configlexer.lex" { YDVAR(1, VAR_PYTHON_SCRIPT) } YY_BREAK case 145: YY_RULE_SETUP #line 356 "util/configlexer.lex" { YDVAR(0, VAR_PYTHON) } YY_BREAK case 146: YY_RULE_SETUP #line 357 "util/configlexer.lex" { YDVAR(1, VAR_DOMAIN_INSECURE) } YY_BREAK case 147: YY_RULE_SETUP #line 358 "util/configlexer.lex" { YDVAR(1, VAR_MINIMAL_RESPONSES) } YY_BREAK case 148: YY_RULE_SETUP #line 359 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_ROUNDROBIN) } YY_BREAK case 149: YY_RULE_SETUP #line 360 "util/configlexer.lex" { YDVAR(1, VAR_MAX_UDP_SIZE) } YY_BREAK case 150: YY_RULE_SETUP #line 361 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_PREFIX) } YY_BREAK case 151: YY_RULE_SETUP #line 362 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_SYNTHALL) } YY_BREAK case 152: YY_RULE_SETUP #line 363 "util/configlexer.lex" { YDVAR(1, VAR_DEFINE_TAG) } YY_BREAK case 153: YY_RULE_SETUP #line 364 "util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE_TAG) } YY_BREAK case 154: YY_RULE_SETUP #line 365 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL_TAG) } YY_BREAK case 155: YY_RULE_SETUP #line 366 "util/configlexer.lex" { YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) } YY_BREAK case 156: YY_RULE_SETUP #line 367 "util/configlexer.lex" { YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) } YY_BREAK case 157: YY_RULE_SETUP #line 368 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL_VIEW) } YY_BREAK case 158: YY_RULE_SETUP #line 369 "util/configlexer.lex" { YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) } YY_BREAK case 159: YY_RULE_SETUP #line 370 "util/configlexer.lex" { YDVAR(0, VAR_DNSTAP) } YY_BREAK case 160: YY_RULE_SETUP #line 371 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_ENABLE) } YY_BREAK case 161: YY_RULE_SETUP #line 372 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } YY_BREAK case 162: YY_RULE_SETUP #line 373 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) } YY_BREAK case 163: YY_RULE_SETUP #line 374 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_VERSION) } YY_BREAK case 164: YY_RULE_SETUP #line 375 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_IDENTITY) } YY_BREAK case 165: YY_RULE_SETUP #line 376 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_VERSION) } YY_BREAK case 166: YY_RULE_SETUP #line 377 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) } YY_BREAK case 167: YY_RULE_SETUP #line 379 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) } YY_BREAK case 168: YY_RULE_SETUP #line 381 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) } YY_BREAK case 169: YY_RULE_SETUP #line 383 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) } YY_BREAK case 170: YY_RULE_SETUP #line 385 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } YY_BREAK case 171: YY_RULE_SETUP #line 387 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } YY_BREAK case 172: YY_RULE_SETUP #line 389 "util/configlexer.lex" { YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) } YY_BREAK case 173: YY_RULE_SETUP #line 390 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT) } YY_BREAK case 174: YY_RULE_SETUP #line 391 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT) } YY_BREAK case 175: YY_RULE_SETUP #line 392 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_SLABS) } YY_BREAK case 176: YY_RULE_SETUP #line 393 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SLABS) } YY_BREAK case 177: YY_RULE_SETUP #line 394 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_SIZE) } YY_BREAK case 178: YY_RULE_SETUP #line 395 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SIZE) } YY_BREAK case 179: YY_RULE_SETUP #line 396 "util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) } YY_BREAK case 180: YY_RULE_SETUP #line 397 "util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) } YY_BREAK case 181: YY_RULE_SETUP #line 398 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_FACTOR) } YY_BREAK case 182: YY_RULE_SETUP #line 399 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_FACTOR) } YY_BREAK case 183: /* rule 183 can match eol */ YY_RULE_SETUP #line 400 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK /* Quoted strings. Strip leading and ending quotes */ case 184: YY_RULE_SETUP #line 403 "util/configlexer.lex" { BEGIN(quotedstring); LEXOUT(("QS ")); } YY_BREAK case YY_STATE_EOF(quotedstring): #line 404 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 185: YY_RULE_SETUP #line 409 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 186: /* rule 186 can match eol */ YY_RULE_SETUP #line 410 "util/configlexer.lex" { yyerror("newline inside quoted string, no end \""); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 187: YY_RULE_SETUP #line 412 "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 188: YY_RULE_SETUP #line 424 "util/configlexer.lex" { BEGIN(singlequotedstr); LEXOUT(("SQS ")); } YY_BREAK case YY_STATE_EOF(singlequotedstr): #line 425 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 189: YY_RULE_SETUP #line 430 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 190: /* rule 190 can match eol */ YY_RULE_SETUP #line 431 "util/configlexer.lex" { yyerror("newline inside quoted string, no end '"); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 191: YY_RULE_SETUP #line 433 "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 192: YY_RULE_SETUP #line 445 "util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); } YY_BREAK case YY_STATE_EOF(include): #line 447 "util/configlexer.lex" { yyerror("EOF inside include directive"); BEGIN(inc_prev); } YY_BREAK case 193: YY_RULE_SETUP #line 451 "util/configlexer.lex" { LEXOUT(("ISP ")); /* ignore */ } YY_BREAK case 194: /* rule 194 can match eol */ YY_RULE_SETUP #line 452 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++;} YY_BREAK case 195: YY_RULE_SETUP #line 453 "util/configlexer.lex" { LEXOUT(("IQS ")); BEGIN(include_quoted); } YY_BREAK case 196: YY_RULE_SETUP #line 454 "util/configlexer.lex" { LEXOUT(("Iunquotedstr(%s) ", yytext)); config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(include_quoted): #line 459 "util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 197: YY_RULE_SETUP #line 463 "util/configlexer.lex" { LEXOUT(("ISTR(%s) ", yytext)); yymore(); } YY_BREAK case 198: /* rule 198 can match eol */ YY_RULE_SETUP #line 464 "util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 199: YY_RULE_SETUP #line 466 "util/configlexer.lex" { LEXOUT(("IQE ")); yytext[yyleng - 1] = '\0'; config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(val): #line 472 "util/configlexer.lex" { LEXOUT(("LEXEOF ")); yy_set_bol(1); /* Set beginning of line, so "^" rules match. */ if (!config_include_stack) { yyterminate(); } else { fclose(yyin); config_end_include(); } } YY_BREAK case 200: YY_RULE_SETUP #line 483 "util/configlexer.lex" { LEXOUT(("unquotedstr(%s) ", yytext)); if(--num_args == 0) { BEGIN(INITIAL); } yylval.str = strdup(yytext); return STRING_ARG; } YY_BREAK case 201: YY_RULE_SETUP #line 487 "util/configlexer.lex" { ub_c_error_msg("unknown keyword '%s'", yytext); } YY_BREAK case 202: YY_RULE_SETUP #line 491 "util/configlexer.lex" { ub_c_error_msg("stray '%s'", yytext); } YY_BREAK case 203: YY_RULE_SETUP #line 495 "util/configlexer.lex" ECHO; YY_BREAK #line 3998 "" case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = (yy_c_buf_p); goto yy_find_action; } } else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { (yy_did_buffer_switch_on_eof) = 0; if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: (yy_c_buf_p) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of user's declarations */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer (void) { char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; char *source = (yytext_ptr); yy_size_t number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (yy_size_t) ((yy_c_buf_p) - (yytext_ptr)) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { int num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; int yy_c_buf_p_offset = (int) ((yy_c_buf_p) - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { yy_size_t new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart(yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); } (yy_n_chars) += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state (void) { yy_state_type yy_current_state; char *yy_cp; yy_current_state = (yy_start); for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 1997 ) 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 ) { int yy_is_jam; char *yy_cp = (yy_c_buf_p); YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 1997 ) 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 == 1996); return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void) #else static int input (void) #endif { int c; *(yy_c_buf_p) = (yy_hold_char); if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ *(yy_c_buf_p) = '\0'; else { /* need more input */ yy_size_t offset = (yy_c_buf_p) - (yytext_ptr); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart(yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) return EOF; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); return c; } #endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * * @note This function does not reset the start condition to @c INITIAL . */ void yyrestart (FILE * input_file ) { if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_init_buffer(YY_CURRENT_BUFFER,input_file ); yy_load_buffer_state( ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * */ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) { /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ yyensure_buffer_stack (); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ (yy_did_buffer_switch_on_eof) = 1; } static void yy_load_buffer_state (void) { (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; (yy_hold_char) = *(yy_c_buf_p); } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * * @return the allocated buffer state. */ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = (yy_size_t)size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer(b,file ); return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * */ void yy_delete_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree((void *) b->yy_ch_buf ); yyfree((void *) b ); } /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) { int oerrno = errno; yy_flush_buffer(b ); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * */ void yy_flush_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) yy_load_buffer_state( ); } /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * */ void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) { if (new_buffer == NULL) return; yyensure_buffer_stack(); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) (yy_buffer_stack_top)++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * */ void yypop_buffer_state (void) { if (!YY_CURRENT_BUFFER) return; yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; if ((yy_buffer_stack_top) > 0) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ static void yyensure_buffer_stack (void) { yy_size_t num_to_alloc; if (!(yy_buffer_stack)) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */ (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; (yy_buffer_stack_top) = 0; return; } if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ yy_size_t grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc ((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); /* zero only the new slots.*/ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; } } /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer(b ); return b; } /** Setup the input buffer state to scan a string. The next call to yylex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) { return yy_scan_bytes(yystr,strlen(yystr) ); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will * scan from a @e copy of @a bytes. * @param yybytes the byte buffer to scan * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len ) { YY_BUFFER_STATE b; char *buf; yy_size_t n; yy_size_t i; /* Get memory for full buffer, including space for trailing EOB's. */ n = _yybytes_len + 2; buf = (char *) yyalloc(n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer(buf,n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif static void yy_fatal_error (yyconst char* msg ) { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ yy_size_t yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = (yy_hold_char); \ (yy_c_buf_p) = yytext + yyless_macro_arg; \ (yy_hold_char) = *(yy_c_buf_p); \ *(yy_c_buf_p) = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ yy_size_t yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the current line number. * @param _line_number 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 ) { int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * s ) { int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return (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 495 "util/configlexer.lex"