#include "config.h" #include "util/configyyrename.h" #line 2 "" #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 4 #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 #ifndef SIZE_MAX #define SIZE_MAX (~(size_t)0) #endif #endif /* ! C99 */ #endif /* ! FLEXINT_H */ /* begin standard C++ headers. */ /* TODO: this is always defined, so inline it */ #define yyconst const #if defined(__GNUC__) && __GNUC__ >= 3 #define yynoreturn __attribute__((__noreturn__)) #else #define yynoreturn #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an * integer in range [0..255] for use as an array index. */ #define YY_SC_TO_UI(c) ((YY_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 int yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 #define YY_LESS_LINENO(n) #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. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ int yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* Stack of input buffers. */ static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ : NULL) /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = NULL; 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 ( const char *yy_str ); YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len ); void *yyalloc ( yy_size_t ); void *yyrealloc ( void *, yy_size_t ); void yyfree ( void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer( yyin, YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer( yyin, YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ typedef flex_uint8_t YY_CHAR; FILE *yyin = NULL, *yyout = NULL; 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 ); static void yynoreturn yy_fatal_error ( const 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 = (int) (yy_cp - (yytext_ptr)); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 323 #define YY_END_OF_BUFFER 324 /* 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 const flex_int16_t yy_accept[3137] = { 0, 1, 1, 297, 297, 301, 301, 305, 305, 309, 309, 1, 1, 313, 313, 317, 317, 324, 321, 1, 295, 295, 322, 2, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 322, 297, 298, 298, 299, 322, 301, 302, 302, 303, 322, 308, 305, 306, 306, 307, 322, 309, 310, 310, 311, 322, 320, 296, 2, 300, 320, 322, 316, 313, 314, 314, 315, 322, 317, 318, 318, 319, 322, 321, 0, 1, 2, 2, 2, 2, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 297, 0, 301, 0, 308, 0, 305, 309, 0, 320, 0, 2, 2, 320, 316, 0, 313, 317, 0, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 320, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 115, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 123, 321, 321, 321, 321, 321, 321, 321, 320, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 99, 321, 321, 321, 321, 321, 321, 8, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 116, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 128, 321, 320, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 290, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 320, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 57, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 227, 321, 14, 15, 321, 19, 18, 321, 321, 211, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 122, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 209, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 3, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 320, 321, 321, 321, 321, 321, 321, 321, 284, 321, 321, 283, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 304, 321, 321, 321, 321, 321, 321, 321, 56, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 60, 321, 258, 321, 321, 321, 321, 321, 321, 321, 321, 291, 292, 321, 321, 321, 321, 321, 61, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 119, 321, 321, 321, 321, 321, 321, 321, 321, 198, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 21, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 147, 321, 321, 320, 304, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 97, 321, 321, 321, 321, 321, 321, 321, 266, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 170, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 146, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 96, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 32, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 33, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 58, 321, 321, 321, 321, 321, 321, 321, 321, 321, 121, 320, 321, 321, 321, 321, 321, 114, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 59, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 231, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 171, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 47, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 249, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 51, 321, 52, 321, 321, 321, 321, 321, 100, 321, 101, 321, 321, 321, 321, 98, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 7, 321, 320, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 220, 321, 321, 321, 321, 149, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 232, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 48, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 190, 321, 189, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 16, 17, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 62, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 197, 321, 321, 321, 321, 321, 321, 103, 321, 102, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 181, 321, 321, 321, 321, 321, 321, 321, 321, 129, 320, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 81, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 210, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 85, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 55, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 184, 185, 321, 321, 321, 260, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 6, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 264, 321, 321, 321, 321, 321, 321, 285, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 42, 321, 321, 321, 321, 44, 321, 321, 321, 321, 321, 321, 321, 321, 45, 321, 321, 321, 321, 321, 321, 321, 320, 321, 177, 321, 321, 321, 124, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 202, 321, 178, 321, 321, 321, 217, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 46, 321, 321, 321, 321, 321, 321, 321, 321, 321, 126, 108, 321, 109, 321, 321, 321, 107, 321, 321, 321, 321, 321, 321, 321, 321, 144, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 248, 321, 321, 321, 321, 321, 321, 321, 321, 179, 321, 321, 321, 321, 321, 182, 321, 188, 321, 321, 321, 321, 321, 216, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 95, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 120, 321, 321, 321, 321, 321, 321, 53, 321, 321, 321, 26, 321, 321, 321, 321, 321, 321, 321, 321, 321, 20, 321, 321, 321, 321, 321, 321, 27, 36, 321, 154, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 320, 321, 321, 321, 321, 321, 321, 70, 72, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 268, 321, 321, 321, 321, 228, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 110, 321, 321, 321, 321, 321, 321, 321, 321, 321, 143, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 279, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 148, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 208, 321, 321, 321, 321, 321, 321, 321, 321, 321, 288, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 165, 321, 321, 321, 321, 321, 321, 321, 321, 104, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 160, 321, 172, 321, 321, 321, 321, 320, 321, 132, 321, 321, 321, 321, 321, 91, 321, 321, 321, 321, 200, 321, 321, 321, 321, 321, 321, 218, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 240, 321, 321, 321, 321, 321, 321, 321, 321, 321, 125, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 164, 321, 321, 321, 321, 321, 321, 73, 74, 321, 321, 321, 321, 321, 54, 321, 321, 321, 321, 321, 80, 173, 321, 191, 321, 221, 321, 321, 183, 261, 321, 321, 321, 321, 321, 66, 321, 175, 321, 321, 321, 321, 321, 9, 321, 321, 321, 94, 321, 321, 321, 321, 253, 321, 321, 321, 321, 199, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 320, 321, 321, 321, 321, 163, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 150, 321, 267, 321, 321, 321, 321, 321, 239, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 212, 321, 321, 321, 321, 259, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 282, 321, 174, 321, 321, 321, 321, 321, 321, 321, 65, 67, 321, 321, 321, 321, 321, 321, 321, 93, 321, 321, 321, 321, 251, 321, 321, 321, 321, 263, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 204, 34, 28, 30, 321, 321, 321, 321, 321, 321, 321, 321, 321, 35, 321, 29, 31, 321, 321, 321, 321, 321, 321, 321, 321, 90, 321, 321, 321, 321, 321, 321, 320, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 206, 203, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 64, 321, 321, 127, 321, 111, 321, 321, 321, 321, 321, 321, 321, 321, 145, 312, 13, 321, 321, 321, 321, 321, 321, 321, 321, 321, 277, 321, 280, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 12, 321, 321, 22, 321, 321, 321, 257, 321, 321, 321, 321, 265, 321, 321, 321, 68, 321, 214, 321, 321, 321, 321, 205, 321, 321, 63, 321, 321, 321, 321, 23, 321, 43, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 159, 158, 312, 321, 321, 321, 321, 321, 321, 321, 321, 321, 207, 201, 321, 219, 321, 321, 269, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 75, 321, 321, 321, 252, 321, 321, 321, 321, 187, 321, 321, 321, 321, 213, 321, 321, 321, 321, 321, 321, 321, 321, 321, 286, 287, 156, 321, 321, 69, 321, 321, 321, 321, 166, 321, 321, 105, 106, 321, 321, 321, 321, 151, 321, 153, 321, 192, 321, 321, 321, 321, 157, 321, 321, 222, 321, 321, 321, 321, 321, 321, 321, 134, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 230, 321, 321, 321, 321, 321, 321, 321, 24, 321, 262, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 193, 321, 321, 250, 321, 281, 321, 186, 321, 321, 321, 321, 49, 321, 321, 321, 321, 4, 321, 321, 321, 321, 118, 133, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 225, 37, 38, 321, 321, 321, 321, 321, 321, 321, 270, 321, 321, 321, 321, 321, 321, 321, 238, 321, 321, 321, 321, 321, 321, 321, 196, 321, 321, 321, 321, 321, 321, 321, 321, 321, 78, 321, 50, 256, 321, 226, 321, 321, 321, 321, 11, 321, 321, 321, 321, 321, 321, 117, 321, 321, 321, 321, 194, 82, 321, 40, 321, 321, 321, 321, 321, 321, 321, 321, 162, 321, 321, 321, 321, 321, 136, 321, 321, 321, 321, 229, 321, 321, 321, 321, 321, 237, 321, 321, 321, 321, 130, 321, 321, 112, 113, 321, 321, 321, 84, 88, 83, 321, 76, 321, 321, 321, 321, 321, 10, 321, 321, 321, 254, 289, 321, 321, 321, 321, 294, 39, 321, 321, 321, 321, 321, 161, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 89, 87, 321, 77, 278, 321, 321, 321, 321, 321, 321, 321, 180, 321, 321, 321, 321, 321, 195, 321, 321, 321, 321, 321, 321, 321, 321, 152, 71, 321, 321, 321, 321, 321, 271, 321, 321, 321, 321, 321, 321, 321, 234, 321, 321, 233, 131, 321, 86, 137, 138, 141, 142, 139, 140, 79, 321, 255, 321, 321, 321, 321, 155, 321, 321, 321, 321, 321, 224, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 168, 167, 41, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 92, 321, 223, 321, 247, 275, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 5, 321, 321, 215, 321, 321, 276, 321, 321, 321, 321, 321, 321, 321, 321, 321, 235, 25, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 236, 321, 321, 321, 135, 321, 321, 321, 321, 321, 321, 321, 321, 169, 321, 176, 321, 321, 321, 321, 321, 321, 321, 321, 321, 272, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 293, 321, 321, 243, 321, 321, 321, 321, 321, 273, 321, 321, 321, 321, 321, 321, 274, 321, 321, 321, 241, 321, 244, 245, 321, 321, 321, 321, 321, 242, 246, 0 } ; static const 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, 9, 1, 10, 11, 1, 12, 1, 1, 1, 13, 1, 1, 1, 1, 1, 1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 1, 40, 1, 1, 1, 1, 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, 66, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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 const YY_CHAR yy_meta[67] = { 0, 1, 2, 3, 4, 5, 1, 6, 1, 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 const flex_int16_t yy_base[3155] = { 0, 0, 0, 64, 67, 70, 72, 78, 84, 89, 92, 131, 137, 112, 118, 123, 142, 476, 428, 96, 8937, 8937, 8937, 160, 185, 116, 183, 229, 132, 175, 173, 232, 50, 66, 120, 263, 275, 145, 319, 134, 371, 412, 286, 308, 283, 126, 237, 419, 8937, 8937, 8937, 95, 418, 8937, 8937, 8937, 186, 394, 423, 8937, 8937, 8937, 258, 366, 8937, 8937, 8937, 104, 347, 8937, 266, 8937, 167, 349, 346, 376, 8937, 8937, 8937, 356, 303, 8937, 8937, 8937, 146, 281, 368, 234, 0, 388, 0, 0, 291, 270, 235, 193, 259, 339, 367, 340, 177, 226, 395, 373, 384, 377, 368, 410, 411, 309, 429, 357, 408, 438, 444, 416, 458, 455, 443, 467, 480, 471, 452, 469, 479, 484, 501, 489, 498, 494, 505, 513, 528, 500, 514, 523, 540, 363, 522, 519, 554, 539, 250, 549, 573, 571, 566, 550, 535, 576, 600, 585, 558, 595, 586, 601, 603, 273, 179, 268, 205, 208, 648, 241, 194, 187, 180, 654, 660, 0, 605, 138, 664, 168, 128, 341, 609, 652, 639, 644, 654, 653, 655, 646, 668, 667, 650, 666, 673, 651, 680, 697, 256, 706, 750, 703, 696, 692, 710, 712, 701, 694, 723, 716, 724, 731, 707, 740, 730, 756, 757, 798, 758, 749, 776, 290, 767, 805, 325, 760, 779, 806, 787, 783, 807, 810, 814, 786, 809, 817, 801, 824, 825, 819, 840, 850, 849, 841, 843, 842, 865, 861, 845, 860, 851, 876, 877, 880, 874, 879, 897, 883, 891, 886, 910, 889, 914, 900, 901, 916, 919, 935, 925, 929, 909, 928, 922, 938, 937, 920, 946, 927, 943, 968, 961, 964, 973, 956, 960, 958, 965, 978, 972, 987, 991, 988, 980, 187, 984, 1003, 1008, 996, 995, 1013, 1015, 1011, 1017, 1030, 1014, 1032, 1031, 1037, 1041, 1047, 1029, 1054, 1043, 1049, 1044, 1039, 1050, 1066, 1055, 1076, 1064, 1068, 1084, 1070, 1096, 1075, 1103, 1098, 1092, 1135, 1097, 1090, 1100, 1136, 1115, 1109, 1134, 1148, 1164, 1162, 1166, 1143, 1160, 1163, 1121, 1171, 1187, 1179, 1190, 1185, 1110, 1180, 1189, 1206, 1208, 8937, 1198, 1214, 1207, 1221, 1232, 1225, 1215, 1246, 1196, 1250, 1213, 1140, 1234, 1266, 1314, 1254, 1223, 1253, 1257, 1271, 8937, 1294, 1277, 1363, 1292, 1273, 1263, 1299, 1295, 1301, 1296, 1318, 1312, 1259, 1323, 1309, 1332, 1357, 1344, 1354, 1360, 1368, 1364, 1370, 1373, 1371, 1388, 1391, 1397, 1394, 1389, 1401, 1415, 1424, 1399, 1409, 1413, 1418, 1281, 1435, 1423, 1430, 1438, 1441, 1416, 1447, 1451, 1453, 1461, 1462, 1468, 1475, 1476, 1477, 1465, 1478, 1487, 1490, 1494, 1489, 1500, 1502, 1386, 1514, 1510, 1506, 1527, 1520, 1516, 1511, 1525, 1534, 1544, 1528, 1529, 1517, 1536, 1557, 1561, 1552, 1567, 1569, 1556, 1572, 1426, 8937, 1580, 1576, 1578, 1584, 1562, 1590, 8937, 1592, 1594, 1601, 1595, 1589, 1611, 1613, 1609, 1619, 1628, 1620, 1617, 1638, 1629, 1640, 1653, 1637, 1647, 1641, 1639, 1658, 1664, 1657, 1668, 1659, 1674, 1670, 1720, 8937, 1661, 1667, 1688, 1684, 1689, 1700, 1724, 1708, 1717, 1738, 1716, 1763, 1743, 1711, 1748, 1742, 1773, 1751, 1778, 1765, 1760, 1767, 1718, 1761, 1786, 1784, 1758, 1781, 1806, 8937, 1788, 1798, 1819, 1804, 1807, 1808, 1803, 1811, 1608, 1824, 1823, 1830, 1813, 1837, 1846, 1833, 1847, 1840, 1853, 1844, 1850, 1857, 1863, 1859, 1854, 1887, 1881, 1861, 1869, 1896, 1876, 1898, 1904, 1906, 1886, 1897, 1905, 1890, 1903, 1912, 1913, 1893, 1922, 1924, 1917, 1925, 1908, 1942, 1930, 1927, 1943, 1932, 1955, 1944, 1959, 1954, 1949, 1956, 1973, 1952, 1969, 8937, 1985, 1982, 1992, 1994, 1996, 1999, 2003, 1988, 1979, 2000, 2019, 2009, 1990, 2013, 2024, 2023, 2022, 2030, 2031, 2021, 2046, 2041, 2055, 2053, 2040, 2057, 2047, 2060, 2058, 2067, 2073, 2059, 2097, 2068, 2080, 2091, 2082, 2079, 2090, 2100, 2092, 2088, 2094, 2126, 2109, 2118, 2108, 2146, 2121, 2106, 2132, 2123, 2141, 2133, 2136, 2137, 2147, 2145, 2152, 2158, 2167, 2160, 2168, 2159, 2161, 2172, 2181, 2195, 2186, 2179, 2178, 2182, 2194, 2199, 2203, 2202, 2213, 2214, 2207, 2221, 2215, 2234, 2218, 2225, 2239, 2244, 2240, 2250, 2241, 2248, 2246, 2263, 2252, 2267, 2268, 2278, 2265, 2273, 2279, 2277, 2293, 2299, 2303, 2294, 2282, 2295, 2297, 2296, 2319, 2327, 2331, 2323, 8937, 2314, 2344, 2320, 2338, 2337, 2318, 2330, 2356, 2345, 2354, 2350, 2357, 2346, 2408, 8937, 2347, 8937, 8937, 2370, 8937, 8937, 2369, 2373, 8937, 2385, 2376, 2394, 2406, 2414, 2405, 2381, 2397, 2402, 2409, 2457, 2418, 2425, 2421, 2426, 2453, 2465, 2455, 2466, 2472, 2470, 2463, 2474, 2495, 2479, 2503, 2496, 2488, 2506, 2489, 2492, 2504, 2516, 2498, 2514, 2519, 2524, 2533, 2499, 2436, 2544, 2529, 2557, 8937, 2548, 2523, 2559, 2556, 2563, 2562, 2558, 2560, 2566, 2567, 2569, 2552, 2573, 2574, 2579, 2582, 2590, 2594, 2608, 2588, 8937, 2601, 2603, 2587, 2613, 2614, 2616, 2615, 2617, 2597, 2624, 2635, 2632, 2651, 2638, 2636, 2645, 2637, 2663, 8937, 2665, 2656, 2649, 2664, 2650, 2675, 2679, 2662, 2680, 2676, 2681, 2682, 2687, 2691, 2641, 2706, 2707, 2697, 2703, 2714, 2709, 2724, 2721, 2708, 2730, 2718, 2732, 2733, 2727, 2742, 2743, 2757, 2767, 2744, 2769, 2748, 2777, 2778, 2770, 2760, 2771, 2776, 2765, 2788, 2782, 2790, 2784, 2787, 2804, 2792, 2807, 2803, 2817, 2828, 2809, 2829, 2825, 2810, 2815, 2836, 2819, 8937, 2816, 2831, 8937, 2827, 2843, 2889, 2849, 2853, 2846, 2866, 2844, 2875, 2870, 2868, 2876, 2872, 2920, 2895, 2887, 2907, 2902, 2921, 2906, 2919, 2916, 2914, 2925, 2931, 2943, 2880, 2947, 2954, 433, 2960, 2934, 2945, 2941, 2991, 2957, 2966, 2961, 2967, 2976, 2968, 2974, 2993, 2989, 2994, 2985, 3018, 3003, 8937, 3019, 3012, 3006, 3014, 3033, 3024, 3028, 8937, 3034, 3039, 3037, 3036, 3049, 3038, 3054, 3042, 3063, 3051, 3055, 3064, 3070, 3066, 3075, 3041, 8937, 3080, 8937, 3074, 3083, 3068, 3091, 3090, 3094, 3106, 3107, 8937, 8937, 3115, 3104, 3121, 3129, 3114, 8937, 3110, 3150, 3124, 3140, 3130, 3138, 3145, 3141, 3133, 3147, 3168, 3149, 3171, 3160, 3173, 3165, 8937, 3177, 3163, 3176, 3186, 3166, 3189, 3192, 3187, 8937, 3195, 3196, 3204, 3188, 3217, 3211, 3207, 3224, 3228, 3214, 3216, 3213, 3239, 3223, 3250, 3251, 3243, 3244, 3252, 3258, 8937, 3246, 3241, 3263, 3260, 3267, 3271, 3272, 3256, 3270, 3279, 3283, 3284, 3275, 3288, 3277, 3308, 3310, 3297, 3309, 3317, 3299, 3305, 3313, 91, 3303, 3320, 3315, 3306, 8937, 3324, 3328, 3330, 115, 3335, 3338, 3342, 3355, 3357, 3359, 3344, 3368, 3372, 3369, 3371, 3370, 3365, 3376, 3378, 3389, 3388, 3387, 3393, 3392, 8937, 3385, 3395, 3400, 3398, 3417, 3406, 3427, 8937, 3420, 3428, 3425, 3437, 3435, 3434, 3436, 3452, 3431, 3451, 3462, 3453, 3465, 3469, 3470, 3463, 8937, 3483, 3479, 3480, 3466, 3490, 3487, 3493, 3473, 3501, 3500, 3509, 3508, 3498, 3512, 3507, 3510, 3515, 3532, 3525, 3527, 3529, 3535, 8937, 3546, 3530, 3541, 3553, 3543, 3559, 3554, 3583, 3550, 3565, 3562, 3584, 3608, 3574, 3588, 3599, 3602, 3593, 3596, 3609, 3614, 3623, 3606, 3618, 3636, 3644, 3632, 3624, 3629, 3633, 3656, 3581, 3650, 3662, 3667, 3665, 3669, 3692, 3671, 3686, 3664, 8937, 3678, 3688, 3689, 3684, 3722, 3705, 3696, 3699, 3711, 3715, 3702, 3717, 3713, 3748, 3745, 3739, 3741, 3751, 3743, 3744, 3732, 3733, 3759, 3503, 3752, 3761, 3760, 8937, 3766, 3771, 3773, 3772, 3790, 3775, 3797, 3800, 3799, 3784, 3785, 3807, 3789, 3810, 3794, 3815, 3816, 3821, 3811, 8937, 3827, 3824, 3840, 3832, 3844, 3847, 3848, 3856, 3857, 3859, 3817, 3854, 3862, 3850, 8937, 3870, 3873, 3874, 3875, 3883, 3876, 3867, 3893, 3884, 8937, 3894, 3887, 3885, 3903, 3918, 3910, 8937, 3920, 3912, 3897, 3911, 3913, 3915, 3924, 3921, 3930, 3931, 3951, 3946, 3938, 3957, 8937, 3944, 3969, 3948, 3958, 3964, 3960, 3965, 3982, 3990, 3977, 3979, 3988, 8937, 3984, 3999, 3994, 4019, 3991, 4007, 4013, 4011, 4015, 4017, 4018, 4021, 8937, 4022, 4034, 4037, 4038, 4047, 4049, 4050, 4058, 4044, 4053, 4043, 4060, 4066, 4070, 4068, 4079, 4083, 4074, 4082, 4097, 4090, 4101, 4087, 4099, 4106, 4095, 4109, 4122, 4126, 8937, 4112, 4117, 4128, 4113, 4115, 4130, 4134, 4142, 4132, 4138, 4155, 4148, 4144, 4181, 4183, 4147, 4165, 4158, 4161, 4175, 4186, 4176, 4178, 4179, 4201, 4194, 4174, 4214, 4193, 4209, 4219, 4204, 4210, 4211, 4213, 4220, 4222, 4218, 4247, 4241, 4239, 4235, 4252, 4249, 4259, 4240, 4246, 4245, 4281, 8937, 4266, 4264, 4250, 4268, 4278, 4289, 4292, 4303, 4286, 4291, 4302, 4295, 4305, 4313, 4317, 4318, 4322, 4312, 8937, 4319, 8937, 4320, 4343, 4324, 4328, 4330, 8937, 4342, 8937, 4351, 4353, 4340, 4345, 8937, 4355, 4339, 4362, 4372, 4364, 4363, 4368, 4369, 4378, 4375, 4385, 4386, 4382, 4383, 4406, 4401, 4398, 4412, 4403, 4393, 4419, 4402, 4425, 4405, 4429, 4432, 4428, 4433, 8937, 4437, 4435, 4430, 4444, 4449, 4452, 4445, 4460, 4472, 4453, 4462, 4474, 4476, 4464, 4488, 4487, 4491, 4478, 4499, 8937, 4493, 4502, 4494, 4500, 8937, 4511, 4504, 4521, 4523, 4518, 4512, 4520, 4533, 4540, 4519, 4542, 4538, 4568, 4517, 4548, 4563, 8937, 4543, 4551, 4562, 4569, 4561, 4578, 4579, 4575, 4590, 4597, 4589, 4595, 4592, 4585, 4580, 4612, 4602, 4625, 4618, 4630, 4603, 4627, 4628, 4629, 4620, 4613, 4616, 4635, 4637, 4646, 4654, 4655, 4653, 4647, 4650, 4657, 4648, 8937, 4672, 4659, 4678, 4686, 4673, 4675, 4677, 4685, 4681, 4692, 4684, 4711, 4705, 8937, 4709, 8937, 4700, 4719, 4726, 4731, 4727, 4715, 4732, 4737, 4728, 4738, 4740, 4756, 4744, 4753, 4764, 4751, 4765, 4766, 4749, 4779, 4762, 4768, 4767, 4772, 4771, 4791, 8937, 8937, 4780, 4792, 4814, 4795, 4807, 4812, 4820, 4819, 4818, 4806, 4832, 4809, 4825, 8937, 4842, 4834, 4838, 4852, 4845, 4846, 4863, 4871, 4862, 4873, 4868, 8937, 4850, 4861, 4876, 4865, 4890, 4886, 8937, 4877, 8937, 4887, 4888, 4900, 4901, 4869, 4898, 4902, 4904, 4919, 4926, 4927, 4917, 4923, 4912, 4924, 4922, 4934, 4929, 4933, 4936, 4944, 8937, 4948, 4938, 4960, 4961, 4965, 4967, 4968, 4953, 8937, 4969, 4963, 4973, 4979, 4974, 4983, 4984, 4993, 5005, 4997, 5003, 4995, 4996, 5022, 5006, 5001, 5020, 5021, 5024, 5031, 8937, 5030, 5028, 5043, 5040, 5032, 5048, 5049, 5036, 5038, 5051, 5054, 5061, 5063, 5064, 5062, 5065, 5077, 5075, 5078, 5101, 5089, 5088, 5085, 5091, 5087, 8937, 5100, 5104, 5090, 5121, 5118, 5125, 5122, 5129, 5116, 5138, 5140, 5130, 5133, 5139, 5158, 5147, 5152, 8937, 5149, 5146, 5163, 5144, 5167, 5172, 5174, 5178, 5182, 5194, 5168, 5173, 5185, 5184, 8937, 5192, 5189, 5196, 5211, 5199, 5191, 5215, 5209, 5216, 5217, 5201, 5231, 5219, 5223, 5246, 5248, 5233, 8937, 8937, 5252, 5230, 5254, 8937, 5256, 5240, 5267, 5268, 5249, 5262, 5264, 5260, 5258, 5285, 5273, 5287, 8937, 5288, 5283, 5281, 5295, 5310, 5311, 5307, 5304, 5308, 5296, 5300, 5306, 5321, 5314, 5313, 5341, 5326, 5330, 5327, 5334, 5351, 8937, 5336, 5338, 5345, 5352, 5343, 5358, 8937, 5348, 5376, 5375, 5377, 5364, 5384, 5379, 5392, 5372, 5382, 5378, 5405, 5394, 5398, 5389, 5411, 5407, 5401, 5428, 5423, 8937, 5421, 5420, 5413, 5435, 8937, 5442, 5449, 5448, 5451, 5438, 5447, 5454, 5456, 8937, 5455, 5457, 5458, 5446, 5473, 5450, 5485, 5481, 5475, 8937, 5477, 5476, 5491, 8937, 5498, 5504, 5490, 5492, 5500, 5511, 5503, 5502, 5515, 5517, 8937, 5519, 8937, 5530, 5523, 5536, 8937, 5527, 5528, 5538, 5541, 5547, 5544, 5553, 5542, 5552, 5555, 5550, 5560, 5554, 5557, 5584, 5595, 5574, 5582, 5576, 5579, 8937, 5596, 5580, 5590, 5603, 5601, 5600, 5611, 5609, 5602, 8937, 8937, 5613, 8937, 5630, 5618, 5627, 8937, 5629, 5635, 5651, 5631, 5646, 5650, 5653, 5655, 8937, 5657, 5645, 5661, 5665, 5659, 5662, 5673, 5675, 5684, 5671, 5686, 5698, 8937, 5679, 5691, 5705, 5689, 5695, 5706, 5714, 5700, 8937, 5716, 5727, 5722, 5730, 5731, 8937, 5728, 8937, 5732, 5736, 5739, 5758, 5734, 8937, 5766, 5755, 5752, 5744, 5771, 5772, 5778, 5779, 5763, 5780, 5791, 5787, 5762, 5786, 8937, 5785, 5795, 5788, 5815, 5802, 5803, 5825, 5819, 5826, 5814, 5829, 5833, 5822, 5838, 5846, 5831, 5830, 5836, 8937, 5859, 5867, 5849, 5880, 5873, 5865, 8937, 5866, 5874, 5883, 8937, 5872, 5864, 5881, 5887, 5895, 5898, 5902, 5905, 5906, 8937, 5908, 5911, 5904, 5922, 5925, 5917, 8937, 8937, 5936, 8937, 5931, 5933, 5944, 5943, 5914, 5953, 5965, 5958, 5968, 5954, 5970, 5971, 5964, 5957, 6007, 5907, 5983, 5969, 5982, 5985, 8937, 8937, 5987, 6010, 5999, 5993, 6012, 6003, 6000, 6021, 6014, 6022, 6024, 6026, 6027, 8937, 6029, 6035, 6039, 6037, 8937, 6034, 6042, 6044, 6050, 6063, 6054, 6060, 6053, 6070, 6056, 6079, 6081, 6074, 6083, 6087, 6084, 6090, 6093, 6091, 6101, 6107, 8937, 6114, 6102, 6105, 6103, 6111, 6118, 6106, 6130, 6123, 8937, 6128, 6139, 6147, 6153, 6145, 6146, 6148, 6162, 6159, 6165, 6166, 6155, 6175, 6182, 6177, 6173, 8937, 6179, 6187, 6190, 6185, 6196, 6198, 6200, 6199, 6195, 6201, 6205, 6211, 6215, 6229, 6217, 6221, 6222, 6214, 8937, 6234, 6235, 6226, 6250, 6237, 6246, 6248, 6253, 6259, 6249, 6256, 6265, 6267, 8937, 6270, 6262, 6272, 6289, 6274, 6281, 6283, 6276, 6292, 8937, 6302, 6286, 6297, 6295, 6303, 6305, 6299, 6327, 6326, 6336, 6339, 8937, 6329, 6340, 6344, 6312, 6333, 6353, 6356, 6317, 8937, 6370, 6372, 6363, 6352, 6360, 6387, 6380, 6384, 6366, 6379, 6393, 6386, 6394, 6400, 6401, 6411, 6399, 6405, 6413, 8937, 6404, 8937, 6406, 6428, 6439, 6434, 6436, 6426, 8937, 6431, 6433, 6445, 6442, 6450, 8937, 6452, 6438, 6456, 6455, 8937, 6475, 6480, 6468, 6477, 6487, 6491, 8937, 6490, 6493, 6494, 6498, 6502, 6497, 6500, 6495, 6507, 6501, 6516, 6512, 6510, 6515, 6518, 6536, 8937, 6540, 6543, 6547, 6545, 6539, 6529, 6551, 6552, 6556, 8937, 6557, 6533, 6534, 6571, 6560, 6566, 6583, 6570, 6584, 6574, 8937, 6582, 6579, 6597, 6604, 6599, 6598, 8937, 8937, 6589, 6613, 6605, 6610, 6617, 8937, 6616, 6628, 6621, 6638, 6630, 8937, 8937, 6642, 8937, 6631, 8937, 6632, 6634, 8937, 8937, 6647, 6627, 6651, 6657, 6664, 8937, 6667, 8937, 6673, 6669, 6655, 6659, 6680, 8937, 6668, 6663, 6672, 8937, 6679, 6697, 6683, 6678, 8937, 6703, 6706, 6692, 6686, 8937, 6715, 6717, 6713, 6705, 6712, 6720, 6724, 6708, 6727, 6734, 6732, 6735, 6751, 6757, 6758, 6760, 6763, 6753, 6748, 6762, 6768, 6770, 6764, 6774, 6752, 6761, 6781, 6783, 6800, 6805, 6795, 6797, 6804, 6803, 6787, 6812, 6796, 6798, 6819, 6826, 6794, 6821, 6824, 6825, 6836, 6828, 6853, 6847, 6842, 6843, 8937, 6848, 6838, 6855, 6868, 6845, 6874, 6883, 6873, 6889, 6890, 8937, 6893, 8937, 6895, 6881, 6886, 6884, 6877, 8937, 6882, 6907, 6905, 6908, 6922, 6913, 6910, 6916, 6920, 6923, 6943, 8937, 6942, 6924, 6939, 6945, 8937, 6947, 6953, 6949, 6959, 6954, 6963, 6964, 6966, 6969, 6960, 6962, 6992, 6995, 7002, 6980, 6986, 6981, 6994, 6983, 6996, 7009, 7013, 7017, 7018, 7024, 8937, 7012, 8937, 7023, 7019, 7021, 7029, 7030, 7034, 7036, 8937, 8937, 7044, 7050, 7052, 7051, 7056, 7067, 7065, 8937, 7057, 7071, 7068, 7060, 8937, 7070, 7083, 7084, 7086, 8937, 7078, 7079, 7105, 7089, 7095, 7107, 7113, 7099, 7111, 7112, 7119, 8937, 8937, 8937, 8937, 7120, 7101, 7125, 7116, 7131, 7128, 7133, 7149, 7138, 8937, 7157, 8937, 8937, 7154, 7156, 7148, 7158, 7160, 7147, 7164, 7169, 8937, 7152, 7165, 7193, 7184, 7178, 7182, 7201, 7195, 7203, 7188, 7189, 7007, 7205, 7211, 7204, 7209, 7213, 7217, 8937, 8937, 7229, 7218, 7220, 7248, 7222, 7246, 7238, 7226, 7253, 7250, 7249, 7244, 7254, 7239, 7266, 7268, 7265, 7271, 8937, 7267, 7261, 8937, 7278, 8937, 7269, 7295, 7284, 7291, 7294, 7297, 7307, 7305, 8937, 8937, 8937, 7293, 7289, 7296, 7313, 7318, 7316, 7311, 7319, 7328, 8937, 7329, 8937, 7330, 7345, 7348, 7333, 7356, 7359, 7364, 7361, 7354, 7360, 8937, 7357, 7355, 8937, 7363, 7382, 7383, 8937, 7372, 7352, 7378, 7380, 8937, 7401, 7399, 7397, 8937, 7404, 8937, 7386, 7407, 7405, 7416, 8937, 7388, 7413, 8937, 7418, 7419, 7424, 7409, 8937, 7420, 8937, 7428, 7437, 7441, 7450, 7443, 7452, 7440, 7439, 7445, 7461, 7460, 7467, 8937, 8937, 73, 7478, 7466, 7454, 7456, 7484, 7468, 7472, 7487, 7482, 8937, 8937, 7495, 8937, 7488, 7499, 8937, 7479, 7505, 7506, 7503, 7514, 7510, 7516, 7498, 7513, 7524, 7539, 7530, 7526, 7541, 7559, 7533, 7556, 7557, 7560, 7563, 7566, 7546, 7565, 7554, 7569, 7571, 7555, 7579, 8937, 7578, 7597, 7585, 8937, 7604, 7601, 7609, 7605, 8937, 7611, 7606, 7607, 7612, 8937, 7596, 7613, 7625, 7635, 7630, 7651, 7634, 7640, 7646, 8937, 8937, 8937, 7648, 7654, 8937, 7655, 7652, 7633, 7641, 8937, 7656, 7657, 8937, 8937, 7662, 7661, 7671, 7668, 8937, 7678, 8937, 7673, 8937, 7696, 7697, 7698, 7695, 8937, 7703, 7705, 8937, 7707, 7710, 7711, 7718, 7692, 7721, 7715, 8937, 7746, 7738, 7739, 7749, 7732, 7741, 7730, 7747, 7737, 7761, 7733, 7762, 8937, 7759, 7764, 7767, 7774, 7765, 7766, 7777, 8937, 7783, 8937, 7782, 7785, 7796, 7778, 7790, 7788, 7805, 7811, 7792, 7803, 7801, 8937, 7821, 7826, 8937, 7808, 8937, 7831, 8937, 7823, 7825, 7828, 7832, 8937, 7836, 7822, 7834, 7827, 8937, 7850, 7848, 7853, 7860, 8937, 8937, 7847, 7870, 7871, 7859, 7879, 7882, 7863, 7885, 7880, 7884, 7868, 7875, 7873, 7889, 7894, 7896, 7902, 7912, 8937, 8937, 8937, 7910, 7897, 7930, 7926, 7924, 7935, 7915, 8937, 7929, 7936, 7938, 7928, 7940, 7941, 7945, 8937, 7952, 7948, 7921, 7956, 7950, 7957, 7962, 8937, 7978, 7980, 7977, 7967, 7983, 7987, 7990, 7992, 7994, 8937, 7995, 8937, 8937, 7993, 8937, 7975, 7979, 7989, 8017, 8937, 8000, 8009, 8005, 8004, 8029, 8030, 8937, 8038, 8014, 8016, 8032, 8937, 8937, 8042, 8937, 8046, 8043, 8033, 8054, 8039, 8045, 8055, 8058, 8937, 8056, 8057, 8062, 8059, 8073, 8937, 8060, 8069, 8072, 8081, 8937, 8075, 8089, 8094, 8070, 8102, 8937, 8104, 8090, 8118, 8117, 8937, 8103, 8113, 8937, 8937, 8114, 8124, 8121, 8937, 8937, 8937, 8127, 8937, 8133, 8144, 8148, 8157, 8131, 8937, 8159, 8143, 8149, 8937, 8937, 8145, 8146, 8162, 8164, 8937, 8937, 8152, 8171, 8170, 8160, 8153, 8937, 8181, 8173, 8184, 8183, 8202, 8188, 8201, 8204, 8219, 8212, 8193, 8207, 8196, 8220, 8227, 8223, 8221, 8229, 8230, 8235, 8237, 8233, 8937, 8937, 8241, 8937, 8937, 8251, 8253, 8255, 8258, 8261, 8266, 8267, 8937, 8262, 8270, 8263, 8264, 8254, 8937, 8256, 8273, 8269, 8279, 8283, 8285, 8289, 8287, 8937, 8937, 8290, 8302, 8294, 8306, 8291, 8937, 8312, 8328, 8310, 8321, 8311, 8322, 8325, 8937, 8337, 8318, 8937, 8937, 8329, 8937, 8937, 8937, 8937, 8937, 8937, 8937, 8937, 8347, 8937, 8333, 8358, 8359, 8361, 8937, 8339, 8354, 8365, 8352, 8364, 8937, 8353, 8371, 8370, 8381, 8379, 8386, 8380, 8385, 8397, 8368, 8391, 8402, 8392, 8410, 8405, 8403, 8420, 8937, 8937, 8937, 8413, 8414, 8433, 8429, 8435, 8444, 8436, 8439, 8432, 8428, 8443, 8452, 8453, 8442, 8449, 8473, 8460, 8465, 8476, 8462, 8483, 8471, 8469, 8490, 8937, 8478, 8937, 8479, 8937, 8937, 8495, 8498, 8494, 8492, 8512, 8517, 8500, 8503, 8504, 8513, 8528, 8532, 8937, 8515, 8526, 8937, 8520, 8529, 8937, 8531, 8530, 8545, 8539, 8541, 8548, 8544, 8560, 8569, 8937, 8937, 8550, 8556, 8561, 8582, 8579, 8590, 8585, 8588, 8594, 8595, 8583, 8603, 8937, 8589, 8609, 8604, 8937, 8601, 8606, 8611, 8615, 8616, 8613, 8620, 8610, 8937, 8643, 8937, 8619, 8642, 8648, 8630, 8636, 8645, 8659, 8662, 8652, 8937, 8647, 8663, 8669, 8676, 8682, 8679, 8686, 8678, 8668, 8694, 8696, 8701, 8695, 8700, 8689, 8709, 8711, 8937, 8712, 8713, 8937, 8726, 8728, 8718, 8723, 8716, 8937, 8719, 8729, 8735, 8746, 8749, 8744, 8937, 8752, 8761, 8756, 8937, 8760, 8937, 8937, 8762, 8753, 8758, 8766, 8768, 8937, 8937, 8937, 8817, 8824, 8831, 8838, 8845, 8852, 8859, 102, 8866, 8873, 8880, 8887, 8894, 8901, 8908, 8915, 8922, 8929 } ; static const flex_int16_t yy_def[3155] = { 0, 3136, 1, 3137, 3137, 3138, 3138, 3139, 3139, 3140, 3140, 3141, 3141, 3142, 3142, 3143, 3143, 3136, 3144, 3136, 3136, 3136, 3136, 3145, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3146, 3136, 3136, 3136, 3146, 3147, 3136, 3136, 3136, 3147, 3148, 3136, 3136, 3136, 3136, 3148, 3149, 3136, 3136, 3136, 3149, 3150, 3136, 3151, 3136, 3150, 3150, 3152, 3136, 3136, 3136, 3136, 3152, 3153, 3136, 3136, 3136, 3153, 3144, 3144, 3136, 3154, 3145, 3154, 3145, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3146, 3146, 3147, 3147, 3148, 3148, 3136, 3149, 3149, 3150, 3150, 3151, 3151, 3150, 3152, 3152, 3136, 3153, 3153, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3150, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3136, 3144, 3136, 3136, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3150, 3150, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3150, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3150, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3150, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3150, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3136, 3144, 3136, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3150, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3136, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3136, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3136, 3136, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3136, 3144, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3136, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 0, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136 } ; static const flex_int16_t yy_nxt[9004] = { 0, 18, 19, 20, 21, 22, 23, 22, 18, 18, 18, 18, 18, 22, 24, 25, 26, 27, 28, 29, 18, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 18, 18, 18, 45, 46, 24, 25, 26, 27, 28, 29, 18, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 18, 18, 18, 45, 48, 49, 50, 48, 49, 50, 53, 54, 53, 54, 55, 118, 55, 58, 59, 60, 61, 119, 22, 58, 59, 60, 61, 86, 22, 64, 65, 66, 64, 65, 66, 87, 157, 157, 1219, 88, 85, 51, 118, 86, 51, 164, 164, 56, 119, 56, 167, 75, 76, 77, 78, 62, 22, 75, 76, 77, 78, 62, 22, 81, 82, 83, 67, 97, 86, 67, 19, 20, 21, 69, 70, 71, 19, 20, 21, 69, 70, 71, 81, 82, 83, 120, 108, 174, 174, 79, 72, 156, 167, 86, 97, 79, 72, 86, 134, 90, 84, 90, 90, 86, 90, 175, 109, 173, 73, 86, 90, 86, 120, 108, 73, 172, 128, 72, 156, 84, 157, 157, 86, 72, 112, 134, 110, 159, 164, 164, 159, 170, 113, 109, 98, 399, 185, 91, 92, 93, 111, 99, 94, 128, 167, 100, 159, 95, 101, 159, 86, 112, 86, 110, 86, 179, 96, 167, 170, 113, 86, 98, 86, 185, 86, 92, 93, 111, 99, 94, 86, 165, 100, 87, 95, 101, 85, 88, 85, 85, 163, 85, 179, 96, 102, 162, 114, 85, 103, 115, 186, 104, 178, 105, 106, 246, 116, 161, 117, 161, 161, 286, 161, 86, 107, 90, 86, 90, 90, 86, 90, 102, 86, 114, 121, 103, 115, 186, 104, 178, 105, 106, 122, 116, 177, 117, 125, 86, 123, 180, 126, 107, 124, 86, 153, 321, 86, 145, 154, 146, 86, 121, 155, 169, 176, 160, 127, 86, 147, 122, 158, 177, 86, 125, 148, 123, 180, 126, 86, 124, 86, 153, 149, 86, 145, 154, 146, 86, 86, 155, 325, 176, 150, 127, 129, 147, 151, 152, 130, 198, 175, 148, 174, 174, 131, 86, 86, 132, 166, 149, 166, 166, 181, 166, 133, 171, 86, 171, 171, 150, 171, 129, 86, 151, 152, 130, 198, 85, 184, 85, 85, 131, 85, 194, 132, 173, 86, 86, 85, 181, 182, 133, 135, 172, 167, 202, 136, 90, 239, 90, 90, 195, 90, 183, 86, 184, 137, 138, 90, 139, 86, 190, 191, 165, 86, 86, 193, 182, 86, 135, 86, 187, 202, 136, 86, 239, 192, 188, 195, 189, 183, 86, 163, 137, 138, 91, 139, 140, 190, 191, 141, 162, 86, 193, 196, 197, 203, 142, 187, 1088, 206, 143, 144, 192, 188, 86, 189, 86, 86, 86, 199, 200, 204, 86, 140, 160, 158, 141, 201, 205, 211, 196, 197, 203, 142, 86, 86, 206, 143, 144, 86, 207, 213, 3136, 208, 86, 221, 199, 200, 204, 86, 86, 214, 222, 212, 201, 205, 209, 210, 86, 3136, 3136, 86, 216, 3136, 86, 223, 217, 207, 213, 219, 208, 215, 221, 86, 220, 86, 224, 86, 214, 222, 212, 226, 218, 209, 210, 86, 86, 225, 229, 216, 86, 228, 223, 217, 234, 86, 219, 227, 215, 233, 86, 220, 3136, 224, 86, 3136, 86, 86, 226, 218, 230, 86, 231, 3136, 225, 229, 232, 241, 228, 86, 86, 234, 235, 236, 227, 86, 233, 240, 86, 86, 3136, 245, 237, 3136, 86, 255, 242, 230, 238, 231, 247, 86, 261, 232, 241, 86, 86, 243, 254, 235, 236, 244, 3136, 248, 240, 86, 86, 251, 245, 237, 86, 253, 255, 242, 86, 238, 3136, 247, 252, 261, 249, 256, 86, 250, 243, 254, 260, 86, 244, 86, 248, 257, 86, 263, 251, 264, 262, 266, 253, 3136, 258, 86, 86, 267, 3136, 252, 265, 249, 256, 3136, 250, 86, 259, 260, 3136, 3136, 86, 86, 257, 86, 263, 167, 264, 262, 266, 86, 161, 258, 161, 161, 267, 161, 166, 265, 166, 166, 268, 166, 90, 259, 90, 90, 171, 90, 171, 171, 270, 171, 271, 3136, 269, 272, 275, 274, 276, 86, 3136, 281, 273, 279, 86, 278, 86, 282, 280, 283, 86, 86, 86, 86, 86, 86, 277, 270, 284, 271, 169, 269, 272, 275, 274, 276, 86, 86, 86, 273, 279, 285, 278, 86, 282, 280, 283, 295, 287, 3136, 86, 296, 288, 277, 297, 284, 300, 301, 298, 3136, 299, 302, 86, 304, 86, 307, 86, 86, 285, 289, 3136, 86, 305, 86, 295, 3136, 86, 86, 296, 288, 86, 297, 86, 300, 301, 298, 86, 299, 306, 303, 304, 310, 307, 86, 86, 308, 289, 290, 309, 305, 86, 86, 291, 3136, 311, 312, 318, 292, 3136, 3136, 86, 322, 319, 293, 294, 306, 303, 327, 310, 86, 86, 331, 308, 326, 290, 309, 86, 86, 86, 291, 86, 311, 312, 318, 292, 320, 335, 86, 322, 319, 293, 294, 313, 323, 328, 314, 86, 315, 333, 86, 326, 330, 334, 86, 324, 332, 86, 86, 329, 316, 3136, 317, 320, 335, 338, 336, 337, 3136, 86, 313, 341, 86, 314, 339, 315, 86, 86, 86, 330, 86, 86, 324, 332, 3136, 86, 329, 316, 86, 317, 86, 340, 338, 336, 337, 86, 86, 342, 341, 343, 345, 339, 344, 346, 348, 3136, 347, 351, 352, 349, 350, 86, 86, 86, 86, 354, 86, 353, 340, 357, 86, 86, 86, 3136, 342, 363, 343, 345, 359, 344, 346, 86, 86, 347, 351, 352, 86, 350, 358, 355, 356, 3136, 362, 360, 353, 86, 361, 86, 86, 364, 86, 86, 365, 366, 86, 359, 367, 86, 3136, 368, 86, 369, 86, 370, 373, 358, 355, 356, 86, 362, 360, 86, 86, 361, 371, 374, 376, 377, 378, 365, 86, 86, 384, 367, 381, 86, 368, 86, 369, 380, 86, 86, 375, 167, 383, 382, 86, 372, 86, 86, 86, 379, 374, 376, 377, 378, 86, 385, 86, 86, 386, 381, 388, 387, 86, 389, 380, 86, 390, 375, 391, 383, 382, 392, 372, 398, 395, 86, 379, 86, 393, 86, 86, 3136, 397, 86, 86, 386, 396, 86, 387, 394, 389, 86, 86, 390, 400, 391, 401, 86, 392, 86, 398, 402, 404, 86, 403, 393, 86, 86, 405, 397, 86, 406, 407, 396, 86, 86, 394, 409, 408, 411, 410, 400, 86, 401, 413, 412, 417, 86, 402, 404, 86, 403, 86, 86, 86, 405, 86, 414, 406, 407, 416, 418, 3136, 423, 422, 408, 3136, 410, 86, 86, 86, 86, 412, 417, 415, 419, 86, 421, 86, 420, 86, 424, 86, 86, 414, 425, 86, 416, 86, 86, 423, 422, 426, 86, 86, 427, 3136, 429, 428, 433, 430, 415, 419, 86, 421, 86, 420, 86, 424, 86, 434, 431, 425, 435, 86, 86, 436, 445, 443, 426, 444, 3136, 427, 86, 429, 428, 433, 430, 432, 86, 449, 86, 3136, 462, 450, 86, 86, 86, 431, 86, 435, 468, 86, 436, 445, 443, 3136, 444, 86, 86, 3136, 446, 491, 447, 86, 432, 437, 449, 451, 438, 86, 450, 452, 453, 439, 440, 441, 442, 468, 448, 459, 454, 3136, 86, 86, 86, 455, 456, 446, 86, 447, 460, 86, 437, 461, 451, 438, 86, 463, 452, 453, 439, 440, 441, 442, 457, 448, 459, 458, 86, 464, 86, 86, 86, 456, 86, 465, 466, 460, 467, 86, 461, 469, 471, 477, 463, 470, 488, 86, 86, 490, 472, 457, 473, 86, 458, 86, 464, 86, 86, 475, 476, 474, 465, 466, 86, 467, 86, 478, 469, 481, 483, 482, 470, 488, 86, 86, 86, 472, 479, 473, 492, 86, 86, 86, 480, 504, 475, 476, 474, 86, 484, 86, 489, 86, 478, 528, 481, 483, 482, 520, 86, 3136, 86, 485, 521, 479, 486, 492, 487, 505, 493, 480, 504, 506, 86, 503, 494, 484, 86, 489, 495, 86, 86, 519, 555, 86, 507, 86, 496, 3136, 485, 86, 510, 486, 86, 487, 505, 493, 508, 86, 506, 86, 503, 494, 3136, 86, 522, 495, 518, 86, 519, 555, 525, 507, 509, 496, 497, 523, 498, 510, 86, 524, 86, 167, 86, 508, 3136, 86, 526, 86, 530, 499, 527, 522, 500, 518, 501, 86, 502, 525, 86, 509, 86, 497, 523, 498, 86, 531, 524, 3136, 529, 86, 3136, 532, 3136, 526, 3136, 530, 499, 527, 86, 500, 533, 501, 3136, 502, 511, 512, 534, 540, 538, 3136, 86, 541, 531, 535, 513, 529, 514, 515, 516, 536, 86, 517, 537, 86, 539, 583, 86, 533, 545, 86, 86, 511, 512, 534, 86, 538, 86, 86, 541, 86, 535, 513, 543, 514, 515, 516, 536, 542, 517, 537, 544, 539, 86, 546, 86, 86, 547, 86, 551, 548, 86, 549, 550, 86, 552, 86, 558, 86, 553, 543, 563, 554, 3136, 559, 542, 86, 556, 544, 561, 86, 546, 86, 86, 547, 86, 551, 548, 606, 560, 86, 86, 552, 86, 558, 557, 553, 86, 563, 554, 562, 559, 86, 564, 556, 86, 561, 566, 86, 565, 567, 570, 574, 571, 86, 606, 560, 3136, 86, 572, 86, 568, 557, 569, 576, 573, 575, 562, 86, 86, 564, 577, 86, 578, 566, 86, 565, 567, 570, 579, 571, 581, 86, 86, 86, 86, 572, 586, 568, 580, 569, 576, 573, 575, 86, 582, 86, 86, 577, 584, 578, 86, 587, 585, 588, 3136, 579, 86, 581, 86, 591, 589, 590, 86, 586, 597, 580, 86, 86, 592, 595, 86, 582, 86, 86, 593, 584, 86, 598, 596, 585, 588, 86, 594, 86, 86, 86, 591, 589, 590, 599, 86, 597, 86, 601, 600, 592, 595, 602, 3136, 3136, 86, 593, 605, 603, 598, 596, 604, 3136, 86, 594, 607, 611, 86, 86, 3136, 609, 599, 86, 86, 617, 601, 600, 610, 86, 602, 86, 608, 618, 86, 605, 603, 612, 86, 604, 86, 619, 86, 607, 611, 613, 86, 614, 609, 615, 616, 86, 86, 620, 86, 610, 86, 86, 621, 608, 618, 691, 622, 86, 612, 623, 624, 626, 627, 625, 86, 86, 613, 86, 614, 86, 615, 616, 629, 86, 620, 86, 86, 630, 628, 621, 632, 633, 691, 622, 86, 86, 623, 624, 626, 635, 625, 636, 634, 86, 86, 86, 86, 86, 637, 629, 631, 638, 639, 86, 640, 628, 3136, 632, 633, 86, 651, 652, 642, 86, 86, 86, 635, 86, 636, 634, 86, 653, 641, 86, 86, 637, 86, 631, 638, 639, 86, 640, 654, 656, 655, 3136, 3136, 651, 652, 642, 86, 3136, 3136, 667, 86, 86, 3136, 3136, 653, 641, 643, 660, 659, 3136, 663, 644, 86, 645, 657, 654, 656, 655, 658, 646, 86, 647, 676, 86, 648, 649, 667, 3136, 86, 86, 86, 650, 86, 643, 660, 659, 86, 663, 644, 661, 645, 657, 662, 664, 666, 658, 646, 669, 647, 676, 86, 648, 649, 665, 86, 86, 668, 674, 650, 670, 86, 671, 680, 86, 672, 673, 661, 675, 677, 662, 86, 666, 86, 86, 669, 86, 678, 86, 679, 86, 665, 681, 683, 668, 674, 86, 670, 684, 671, 680, 86, 672, 673, 86, 675, 677, 86, 682, 86, 685, 86, 686, 689, 678, 3136, 679, 695, 687, 681, 683, 167, 690, 688, 692, 684, 86, 86, 694, 86, 86, 86, 693, 696, 86, 682, 86, 697, 699, 686, 689, 698, 86, 3136, 695, 687, 86, 86, 700, 690, 688, 692, 701, 86, 702, 694, 86, 713, 704, 693, 86, 703, 705, 86, 706, 714, 709, 86, 698, 86, 86, 707, 716, 86, 708, 700, 86, 86, 710, 701, 86, 702, 86, 711, 86, 704, 86, 715, 703, 705, 712, 706, 86, 709, 717, 718, 722, 719, 707, 86, 3136, 708, 720, 721, 86, 724, 723, 725, 731, 86, 86, 726, 728, 86, 727, 3136, 86, 712, 736, 86, 86, 86, 733, 722, 730, 732, 86, 86, 86, 86, 721, 86, 724, 723, 725, 86, 86, 729, 726, 728, 86, 727, 738, 734, 737, 86, 735, 86, 86, 733, 86, 730, 732, 86, 739, 86, 743, 746, 742, 740, 3136, 745, 748, 741, 729, 86, 86, 86, 744, 738, 734, 737, 86, 735, 747, 86, 750, 86, 86, 86, 749, 739, 86, 743, 746, 742, 740, 751, 745, 748, 741, 752, 86, 759, 753, 744, 86, 755, 756, 3136, 758, 747, 86, 760, 757, 86, 763, 749, 86, 764, 762, 86, 770, 86, 751, 86, 754, 86, 752, 86, 759, 753, 86, 86, 755, 756, 86, 758, 761, 765, 760, 757, 86, 763, 767, 768, 86, 762, 766, 769, 772, 776, 86, 754, 86, 86, 86, 86, 771, 773, 774, 779, 775, 86, 86, 761, 765, 778, 781, 780, 783, 767, 768, 86, 86, 766, 769, 772, 776, 86, 86, 777, 782, 791, 3136, 771, 86, 786, 86, 775, 86, 86, 86, 86, 778, 796, 780, 783, 784, 787, 86, 86, 788, 785, 792, 793, 86, 797, 777, 782, 800, 794, 86, 86, 786, 86, 789, 790, 795, 802, 3136, 86, 796, 86, 86, 86, 787, 86, 805, 788, 86, 792, 793, 86, 797, 798, 801, 806, 794, 86, 807, 86, 86, 789, 790, 795, 802, 803, 808, 809, 799, 86, 804, 815, 86, 805, 86, 810, 3136, 86, 811, 812, 798, 801, 806, 86, 86, 807, 816, 86, 86, 814, 813, 3136, 86, 808, 809, 799, 86, 86, 86, 818, 817, 820, 810, 86, 821, 811, 812, 819, 822, 86, 86, 86, 86, 816, 824, 826, 814, 813, 86, 86, 823, 827, 829, 86, 825, 828, 818, 817, 820, 86, 86, 821, 86, 86, 819, 822, 836, 86, 3136, 3136, 838, 830, 826, 831, 832, 86, 86, 823, 827, 829, 86, 825, 828, 86, 86, 833, 834, 835, 86, 837, 841, 840, 839, 836, 86, 86, 86, 838, 830, 86, 831, 832, 86, 843, 3136, 848, 86, 842, 846, 847, 844, 850, 833, 834, 835, 86, 837, 841, 840, 839, 86, 86, 86, 845, 849, 86, 851, 86, 854, 86, 843, 86, 848, 86, 842, 846, 847, 844, 850, 853, 852, 855, 856, 857, 86, 862, 86, 3136, 86, 86, 845, 849, 858, 851, 86, 854, 859, 3136, 86, 86, 86, 860, 861, 86, 863, 864, 853, 852, 855, 856, 857, 865, 862, 866, 167, 86, 86, 86, 86, 858, 86, 3136, 867, 859, 86, 869, 870, 871, 860, 861, 868, 863, 864, 872, 873, 86, 874, 876, 865, 86, 86, 86, 877, 875, 86, 878, 3136, 879, 86, 867, 3136, 86, 86, 870, 871, 880, 891, 868, 86, 86, 883, 873, 881, 874, 876, 86, 86, 86, 86, 877, 875, 86, 893, 894, 879, 86, 882, 86, 86, 3136, 3136, 892, 880, 891, 3136, 895, 896, 883, 3136, 881, 86, 86, 897, 901, 86, 3136, 3136, 86, 904, 893, 894, 898, 86, 882, 884, 902, 86, 885, 892, 899, 900, 886, 895, 896, 887, 86, 903, 912, 86, 897, 901, 888, 889, 86, 890, 941, 86, 86, 898, 86, 86, 884, 902, 914, 885, 86, 899, 900, 886, 86, 913, 887, 86, 903, 912, 915, 86, 86, 888, 889, 916, 890, 905, 906, 917, 907, 919, 86, 908, 918, 914, 920, 923, 909, 3136, 922, 3136, 913, 3136, 910, 911, 924, 915, 926, 86, 3136, 86, 916, 86, 905, 906, 921, 907, 919, 86, 908, 86, 86, 920, 923, 909, 86, 922, 86, 925, 86, 910, 911, 924, 927, 86, 929, 928, 931, 930, 932, 933, 935, 921, 86, 86, 934, 947, 86, 937, 940, 86, 86, 3136, 86, 86, 925, 936, 943, 86, 86, 927, 86, 929, 928, 931, 930, 932, 933, 935, 86, 938, 86, 934, 939, 86, 937, 940, 942, 86, 86, 944, 946, 948, 936, 86, 945, 950, 3136, 86, 949, 3136, 3136, 952, 951, 954, 955, 953, 938, 957, 86, 939, 3136, 3136, 86, 942, 956, 958, 86, 946, 959, 961, 86, 86, 86, 86, 86, 949, 86, 86, 952, 951, 86, 86, 953, 86, 957, 960, 962, 86, 86, 963, 964, 956, 958, 86, 965, 959, 86, 966, 968, 967, 3136, 86, 86, 3136, 86, 969, 971, 972, 86, 974, 970, 86, 960, 962, 977, 86, 963, 86, 973, 978, 975, 965, 86, 1000, 966, 968, 967, 86, 86, 86, 86, 86, 969, 971, 972, 976, 974, 970, 86, 979, 980, 982, 981, 987, 3136, 973, 86, 975, 983, 86, 86, 86, 86, 984, 986, 86, 989, 988, 990, 86, 3136, 985, 976, 86, 86, 86, 979, 980, 982, 981, 86, 993, 995, 997, 3136, 983, 86, 86, 86, 86, 984, 986, 991, 989, 988, 990, 992, 994, 985, 86, 86, 996, 998, 86, 86, 86, 86, 999, 993, 995, 997, 86, 1001, 1003, 1004, 86, 1002, 1005, 1008, 991, 1006, 86, 3136, 992, 994, 1009, 1007, 86, 996, 998, 86, 86, 86, 86, 999, 1011, 1010, 1012, 86, 1001, 1003, 1004, 86, 1002, 1005, 86, 1014, 1006, 86, 1017, 1013, 86, 1009, 1007, 86, 1019, 86, 86, 1015, 1018, 1016, 1020, 1011, 1010, 1012, 1021, 86, 86, 86, 1022, 1023, 1024, 86, 1014, 1031, 3136, 1025, 1013, 1028, 3136, 1026, 86, 1019, 1029, 86, 1015, 1030, 1016, 1027, 86, 1032, 86, 1021, 86, 86, 86, 1035, 1034, 1024, 1033, 86, 86, 86, 1025, 1037, 1028, 86, 1026, 86, 1036, 1029, 86, 86, 1030, 86, 1027, 86, 1032, 1038, 1039, 1040, 1042, 3136, 1044, 1034, 1041, 1033, 86, 86, 1045, 1043, 86, 1046, 86, 86, 1048, 1036, 1049, 1047, 86, 86, 86, 1050, 86, 1051, 1038, 1039, 1059, 1042, 86, 1044, 86, 167, 86, 1060, 86, 1045, 1043, 1061, 1046, 86, 1052, 1048, 1062, 1049, 1047, 1063, 86, 86, 1050, 86, 1051, 1085, 86, 1059, 3136, 1064, 86, 1067, 1066, 3136, 1060, 1065, 1068, 3136, 1061, 3136, 3136, 1052, 1053, 86, 1054, 86, 1063, 86, 1055, 86, 1056, 1072, 86, 86, 1071, 1057, 1064, 86, 1067, 1066, 1058, 1073, 1065, 1068, 86, 1069, 86, 1075, 1078, 1053, 1070, 1054, 86, 1074, 1079, 1055, 1076, 1056, 1072, 86, 1080, 1071, 1057, 86, 86, 1081, 1077, 1058, 1073, 1082, 1083, 86, 1086, 86, 1075, 1078, 86, 86, 86, 1084, 1074, 1079, 86, 1076, 1087, 1089, 1090, 1080, 86, 1092, 3136, 86, 1081, 1077, 1091, 3136, 1082, 1083, 86, 1100, 86, 1101, 86, 1105, 86, 1102, 1084, 1104, 3136, 1103, 3136, 86, 1106, 1090, 86, 1110, 1092, 86, 86, 3136, 3136, 1091, 1093, 86, 86, 86, 1100, 1094, 1101, 1095, 1105, 86, 1102, 86, 1104, 1096, 1103, 1107, 1108, 1106, 1097, 1098, 86, 1109, 1113, 1114, 86, 1099, 86, 1093, 86, 86, 1111, 1112, 1094, 1115, 1095, 1116, 1117, 1118, 86, 1123, 1096, 86, 1107, 1108, 1135, 1097, 1098, 86, 1109, 86, 1114, 1120, 1099, 86, 86, 1119, 1121, 1111, 1112, 86, 1115, 1122, 1116, 86, 1118, 1125, 1124, 1126, 86, 86, 1127, 86, 86, 86, 86, 1130, 86, 86, 1120, 1129, 1133, 1131, 1119, 1121, 86, 1128, 86, 1132, 1122, 86, 86, 3136, 1125, 1124, 1126, 1139, 1137, 1127, 86, 86, 1134, 86, 1130, 86, 1136, 86, 1129, 1133, 1131, 86, 86, 1138, 1128, 1140, 1132, 86, 1141, 1142, 86, 1143, 1144, 1146, 1139, 1137, 3136, 86, 86, 1134, 1145, 86, 1147, 1136, 1148, 1153, 1150, 1149, 1154, 3136, 1138, 86, 1140, 86, 86, 1141, 1142, 86, 1143, 1144, 1146, 86, 86, 1155, 1156, 1151, 1160, 1145, 86, 1147, 1152, 86, 1153, 1150, 1149, 1154, 86, 86, 1157, 1159, 86, 1158, 1161, 1162, 3136, 86, 1164, 86, 86, 1163, 1155, 1156, 86, 1160, 86, 1165, 86, 86, 1166, 1167, 1168, 1170, 1172, 1179, 1169, 1157, 1159, 86, 1158, 1161, 86, 1171, 86, 86, 1173, 86, 1163, 1174, 86, 1175, 86, 1176, 1165, 86, 86, 1166, 1167, 1168, 1170, 1172, 1178, 1169, 1177, 86, 86, 86, 86, 1180, 1171, 86, 1181, 1173, 86, 86, 1174, 1182, 1175, 1183, 1176, 1184, 3136, 86, 1185, 1187, 86, 1186, 1189, 1178, 86, 1177, 86, 86, 1188, 86, 86, 1190, 1191, 1181, 1192, 1193, 86, 86, 1182, 1195, 1183, 86, 1184, 1194, 1198, 1185, 1187, 1197, 1186, 1189, 1196, 1199, 86, 1200, 86, 1188, 86, 86, 3136, 86, 1203, 1192, 1193, 86, 86, 86, 1201, 1202, 1205, 86, 1194, 86, 1206, 86, 1197, 1204, 86, 1196, 1199, 1208, 86, 1207, 1210, 86, 86, 86, 1209, 1203, 86, 1211, 86, 1212, 86, 1201, 1202, 1205, 86, 86, 1213, 1206, 1214, 86, 1204, 1215, 1216, 1217, 1208, 1220, 1207, 1210, 86, 1218, 86, 1209, 1225, 1221, 86, 1223, 86, 86, 1222, 86, 86, 86, 3136, 1213, 86, 1214, 86, 1224, 86, 1216, 1217, 86, 1220, 1227, 1226, 86, 1218, 1228, 1229, 86, 1221, 167, 1223, 1232, 1230, 1222, 86, 1234, 1233, 86, 1231, 1235, 3136, 86, 1224, 86, 3136, 1237, 1236, 1238, 1227, 1226, 3136, 1239, 1228, 1229, 86, 1241, 86, 1247, 86, 1230, 3136, 3136, 1240, 1233, 86, 1231, 1244, 86, 86, 86, 86, 86, 1237, 1236, 1238, 86, 1242, 86, 1239, 1243, 1245, 1248, 1241, 1246, 86, 1250, 86, 86, 86, 1240, 1249, 86, 86, 1244, 86, 1251, 1257, 86, 1252, 86, 3136, 1258, 1259, 1242, 1253, 86, 1243, 1245, 1248, 1260, 1246, 1263, 1250, 1254, 1261, 1255, 86, 1249, 1256, 86, 1262, 1265, 1251, 1257, 86, 1252, 86, 86, 1258, 1259, 86, 1253, 1266, 86, 86, 86, 86, 3136, 1263, 1267, 1254, 1261, 1255, 1264, 1268, 1256, 1270, 1262, 1265, 1269, 86, 86, 86, 1271, 1272, 1273, 1274, 1275, 1276, 1266, 1280, 86, 86, 1278, 86, 86, 1267, 1277, 86, 86, 1264, 1268, 86, 1270, 1279, 1372, 1269, 1285, 86, 86, 1271, 1272, 86, 1274, 1275, 1276, 86, 1280, 1281, 86, 1278, 1282, 86, 1283, 1277, 1284, 1286, 86, 1287, 86, 86, 1279, 86, 1288, 1285, 1289, 86, 86, 86, 86, 1290, 86, 1291, 1295, 86, 1281, 1294, 1296, 1282, 1292, 1283, 1293, 1284, 1286, 86, 1287, 86, 1297, 86, 86, 1288, 86, 1289, 1298, 86, 1299, 1300, 1290, 1301, 1291, 86, 1304, 86, 1294, 1296, 86, 1292, 1306, 1293, 86, 1302, 1305, 86, 86, 1297, 1303, 3136, 1307, 86, 1314, 1298, 86, 1299, 1300, 86, 1301, 1316, 1333, 1304, 1315, 1318, 3136, 3136, 86, 1306, 1317, 1320, 1319, 1305, 1323, 86, 3136, 86, 86, 1307, 1308, 1314, 86, 1309, 1310, 3136, 1321, 86, 1311, 1333, 86, 1315, 1318, 86, 1312, 1322, 86, 1317, 1313, 1319, 86, 1323, 86, 86, 1325, 1330, 1324, 1308, 86, 1329, 1309, 1310, 86, 1321, 1326, 1311, 1327, 86, 86, 1328, 1331, 1312, 1322, 86, 1335, 1313, 86, 86, 1332, 1336, 86, 1325, 1330, 1324, 3136, 1334, 1329, 1337, 86, 1344, 1338, 1326, 1347, 1327, 86, 3136, 1328, 1331, 3136, 1348, 86, 1345, 1346, 3136, 3136, 1332, 86, 3136, 86, 86, 1351, 86, 1334, 86, 1337, 86, 1344, 1338, 1339, 1347, 1349, 1356, 86, 1340, 1350, 1341, 1348, 1342, 86, 1343, 86, 1354, 86, 86, 1352, 1355, 86, 1351, 1359, 1353, 86, 1358, 1357, 86, 1361, 1339, 86, 1349, 1356, 86, 1340, 1350, 1341, 1360, 1342, 86, 1343, 86, 1354, 86, 1362, 86, 1355, 1363, 1364, 1359, 86, 1369, 1358, 1357, 1368, 1361, 1365, 1366, 1367, 1370, 86, 86, 1374, 1375, 1360, 1371, 3136, 86, 1373, 86, 1376, 86, 86, 86, 1363, 1364, 86, 1377, 1369, 86, 86, 1368, 1379, 1365, 1366, 1367, 1370, 86, 86, 86, 1375, 1380, 1371, 1378, 86, 1373, 1381, 1376, 1382, 86, 86, 86, 1383, 86, 1377, 1384, 1385, 1386, 1387, 1379, 1388, 3136, 86, 86, 1389, 1390, 3136, 86, 86, 3136, 1378, 1391, 86, 1381, 1393, 86, 1392, 86, 86, 1383, 1394, 1395, 1384, 1385, 1386, 86, 1405, 1388, 86, 86, 1396, 1389, 1390, 86, 86, 86, 1397, 1398, 1391, 86, 1399, 1393, 86, 1392, 1401, 86, 1400, 1394, 1395, 1403, 86, 1406, 1402, 1405, 1408, 1404, 1409, 1396, 86, 1410, 1407, 1412, 86, 1397, 1398, 86, 86, 1399, 86, 1415, 1411, 1401, 86, 1400, 86, 86, 1403, 86, 1406, 1402, 86, 1408, 1404, 1413, 1416, 86, 1414, 1407, 86, 1421, 3136, 86, 86, 86, 86, 1417, 1415, 1411, 1419, 1420, 1418, 86, 86, 86, 1422, 86, 1424, 1423, 1427, 3136, 1413, 86, 167, 1414, 1428, 86, 1431, 1425, 1429, 3136, 3136, 86, 1417, 1426, 1430, 1419, 1420, 1418, 86, 86, 86, 86, 1432, 86, 1423, 1427, 86, 1436, 86, 86, 1434, 1428, 86, 1431, 1425, 1429, 1433, 1435, 86, 86, 1426, 1430, 1437, 1438, 1439, 1440, 86, 1442, 1443, 1432, 1441, 3136, 86, 1444, 86, 1445, 86, 1434, 3136, 86, 1454, 1446, 1452, 1433, 1435, 86, 86, 1451, 86, 1437, 1438, 1439, 86, 86, 1442, 1443, 1449, 86, 1447, 1450, 1444, 1448, 1445, 1453, 1455, 86, 1456, 86, 1446, 1452, 86, 1459, 86, 3136, 1451, 1457, 86, 1462, 86, 86, 1458, 1463, 86, 1449, 1465, 1447, 1450, 86, 1448, 3136, 1453, 1455, 1461, 1456, 1460, 86, 1464, 1467, 1459, 86, 1470, 86, 1466, 86, 1462, 86, 86, 86, 1463, 86, 86, 1465, 1471, 1468, 1474, 3136, 1469, 1475, 1477, 1461, 3136, 1460, 86, 1464, 1467, 86, 86, 1470, 1472, 1466, 1473, 86, 86, 1476, 1481, 86, 1478, 86, 86, 1471, 1468, 86, 1479, 1469, 1475, 1477, 86, 1482, 86, 1483, 1480, 1492, 1485, 1484, 86, 1472, 86, 1473, 86, 1486, 1476, 1481, 86, 1478, 1489, 1493, 1487, 86, 1488, 1479, 86, 86, 1491, 1496, 1482, 86, 1483, 1480, 86, 1485, 1484, 1490, 1497, 86, 1494, 86, 1486, 86, 1495, 86, 1500, 1489, 1499, 1487, 86, 1488, 3136, 86, 1498, 1491, 86, 86, 1502, 86, 1503, 86, 1501, 1505, 1490, 1497, 86, 1494, 3136, 1504, 86, 1495, 86, 1500, 86, 1499, 86, 1506, 86, 1507, 1508, 1498, 86, 1514, 1513, 1502, 86, 1503, 86, 1501, 1505, 86, 86, 1509, 1515, 1511, 1504, 1516, 1510, 86, 1512, 1517, 86, 3136, 1506, 86, 1507, 1508, 1518, 86, 1514, 1513, 1519, 1522, 1521, 1520, 1523, 1524, 86, 86, 86, 1515, 86, 86, 1516, 86, 1525, 86, 1517, 1526, 86, 1528, 1527, 3136, 3136, 1518, 3136, 86, 86, 1519, 1529, 1521, 1520, 1523, 1524, 86, 1530, 1531, 86, 1532, 1535, 1533, 1539, 86, 86, 86, 1526, 86, 86, 1527, 1534, 1537, 86, 86, 86, 1536, 86, 1529, 1538, 1540, 1543, 1541, 1544, 1530, 1531, 1545, 1532, 1535, 1533, 86, 1542, 3136, 1551, 86, 86, 86, 1550, 1534, 1537, 86, 86, 86, 1536, 86, 86, 1538, 86, 1543, 1541, 1544, 1546, 1549, 1545, 86, 1547, 1552, 1554, 1542, 86, 1551, 86, 1553, 86, 1550, 1555, 1556, 1560, 1548, 1557, 3136, 3136, 1558, 86, 3136, 1559, 86, 1561, 1546, 1549, 1566, 86, 1547, 1552, 86, 1565, 86, 86, 3136, 1553, 86, 1571, 1555, 1570, 1560, 1548, 1557, 86, 86, 1558, 86, 1562, 1559, 1563, 1561, 1567, 1564, 86, 86, 1568, 1573, 3136, 86, 86, 86, 86, 1569, 86, 1572, 86, 1570, 1575, 1574, 86, 1576, 86, 1578, 1579, 1562, 1577, 1563, 3136, 1567, 1564, 86, 86, 1568, 86, 86, 1580, 86, 1581, 1585, 1569, 1587, 1572, 86, 1582, 86, 1574, 86, 1576, 1583, 1578, 1579, 1584, 1577, 86, 86, 86, 1586, 1597, 1588, 86, 86, 1590, 1580, 86, 1581, 1585, 86, 1587, 1589, 86, 1582, 1592, 1591, 86, 86, 1583, 86, 86, 1584, 1593, 1594, 1595, 1596, 1586, 86, 1588, 1599, 1598, 1590, 86, 1600, 1601, 86, 86, 86, 1589, 86, 86, 1592, 1591, 1603, 1606, 1605, 86, 1602, 3136, 1593, 1594, 1595, 1596, 86, 1604, 1608, 1599, 1598, 1607, 86, 1600, 1601, 86, 86, 86, 1609, 86, 86, 1614, 167, 1603, 86, 1605, 1612, 1602, 1610, 1611, 1613, 86, 86, 1616, 1604, 1608, 86, 1615, 1607, 86, 86, 1619, 1617, 1618, 1620, 1609, 1623, 86, 1614, 86, 1621, 86, 1622, 1612, 1625, 1610, 1611, 1613, 1624, 86, 1616, 86, 1627, 86, 1615, 86, 1629, 1626, 1619, 1617, 1618, 1620, 1645, 1628, 86, 86, 1630, 1621, 86, 1622, 86, 86, 1632, 3136, 1633, 1624, 86, 86, 1631, 86, 1635, 86, 1634, 1629, 1626, 1636, 1637, 1639, 86, 86, 1628, 1638, 3136, 1630, 86, 86, 86, 86, 86, 1632, 86, 1633, 1649, 1646, 1640, 1631, 1650, 1635, 1641, 1634, 86, 1653, 1636, 1637, 1639, 86, 1647, 86, 1638, 86, 86, 1642, 1652, 1654, 1643, 86, 1656, 3136, 86, 1649, 1646, 1640, 1648, 1650, 1655, 1641, 1644, 1651, 86, 86, 86, 1657, 1658, 1647, 1659, 86, 86, 1665, 1642, 1652, 1663, 1643, 86, 1656, 1662, 86, 86, 86, 1660, 1648, 1661, 1655, 86, 1644, 1651, 1664, 86, 86, 1657, 86, 1666, 1659, 86, 1667, 86, 1668, 1669, 1663, 1671, 86, 86, 1662, 1670, 1674, 1672, 1660, 1675, 1661, 1673, 86, 86, 3136, 1664, 86, 3136, 86, 3136, 86, 1681, 1676, 1667, 1677, 86, 1669, 86, 86, 86, 86, 1678, 1670, 1674, 1672, 86, 1675, 86, 1673, 1679, 1682, 1680, 1685, 1683, 1684, 1686, 86, 86, 86, 1676, 86, 1677, 1687, 86, 86, 86, 1688, 86, 1678, 86, 1689, 1690, 1691, 1694, 1696, 3136, 1679, 1682, 1680, 1685, 1683, 1684, 86, 86, 1692, 86, 1693, 86, 86, 1687, 1695, 86, 3136, 1688, 86, 86, 86, 1689, 1690, 1691, 1694, 1696, 86, 1697, 1699, 1703, 1698, 1700, 1702, 1704, 86, 1692, 1701, 1693, 1705, 86, 1707, 1695, 1708, 86, 1709, 86, 1706, 3136, 1710, 86, 3136, 1721, 1712, 86, 1697, 1699, 1703, 1698, 1700, 1702, 86, 86, 86, 1701, 1711, 86, 86, 1707, 1713, 1708, 1714, 86, 86, 1706, 86, 1710, 1715, 1717, 86, 1712, 1716, 1718, 1720, 86, 1719, 86, 1722, 86, 1724, 1723, 86, 1711, 1725, 1726, 1727, 1713, 86, 1714, 86, 86, 86, 86, 86, 1715, 1717, 86, 86, 1716, 1718, 1720, 1728, 1719, 1729, 86, 86, 1724, 1723, 1730, 1732, 1725, 1726, 1727, 1731, 1733, 1734, 86, 86, 1743, 1735, 86, 1739, 1740, 1744, 3136, 1742, 1737, 3136, 1728, 1738, 1729, 86, 86, 1736, 86, 1730, 1732, 86, 1749, 86, 1731, 1733, 1734, 86, 86, 86, 1735, 1746, 1739, 1740, 86, 1741, 1742, 1737, 1745, 1748, 1738, 86, 1747, 86, 1736, 1751, 1750, 86, 1752, 1753, 1754, 86, 1756, 1758, 86, 86, 1755, 1757, 1746, 86, 1759, 86, 1741, 1762, 1768, 1745, 1748, 1763, 3136, 1747, 86, 86, 86, 1750, 86, 1760, 1753, 86, 86, 1756, 86, 1761, 86, 1755, 1757, 86, 86, 1759, 1764, 1765, 1766, 1768, 1767, 1769, 1763, 86, 86, 86, 1770, 86, 1771, 1772, 1760, 1774, 1775, 1777, 1782, 86, 1761, 86, 86, 86, 1776, 86, 1778, 1764, 1765, 1766, 3136, 1767, 1769, 86, 1773, 1780, 1779, 1770, 86, 1771, 86, 1781, 1786, 86, 86, 86, 1784, 86, 86, 1783, 86, 1776, 1787, 1778, 86, 86, 1785, 86, 1788, 86, 1789, 1773, 1780, 1779, 1790, 86, 1791, 1796, 1781, 86, 1793, 1792, 1795, 1784, 86, 1794, 1783, 3136, 1800, 1787, 1798, 86, 86, 1785, 86, 1788, 86, 1789, 86, 86, 167, 1790, 1797, 1791, 86, 86, 1799, 1793, 1792, 1795, 86, 1801, 1794, 1803, 86, 86, 1802, 1798, 1805, 1804, 1806, 1807, 1808, 1809, 86, 1811, 86, 86, 86, 1797, 1810, 1812, 86, 1799, 86, 1813, 86, 86, 1801, 1814, 1803, 1815, 1816, 1802, 1817, 1805, 1804, 1806, 1818, 1808, 1809, 86, 86, 86, 1819, 86, 1820, 1810, 1812, 86, 1821, 86, 86, 86, 1822, 3136, 1814, 86, 1815, 86, 1825, 86, 1826, 1823, 86, 1818, 1824, 1827, 1828, 86, 86, 1819, 86, 1820, 1829, 86, 1830, 1821, 1831, 1838, 1839, 1822, 86, 86, 86, 86, 86, 1825, 1836, 1826, 1823, 1832, 1833, 1824, 1827, 1828, 86, 1837, 86, 86, 1834, 1829, 1840, 1830, 1843, 1831, 86, 1835, 86, 86, 86, 86, 86, 1841, 1842, 1836, 1848, 1844, 1832, 1833, 1847, 86, 86, 1849, 1837, 86, 1845, 1834, 1846, 1840, 1850, 1843, 1851, 1855, 1835, 1852, 1857, 86, 1859, 86, 1841, 1842, 86, 86, 1844, 1853, 86, 1847, 1854, 1858, 86, 86, 1861, 1845, 86, 1846, 1856, 1850, 1860, 86, 86, 86, 1852, 1862, 1863, 86, 1864, 86, 86, 1865, 86, 1867, 1853, 86, 1874, 1854, 1858, 1866, 3136, 86, 1882, 1876, 1872, 1856, 86, 1860, 1877, 1873, 86, 86, 1862, 1863, 1879, 86, 86, 86, 1865, 1878, 1875, 86, 1868, 1869, 1870, 86, 1866, 86, 86, 1871, 1881, 1872, 86, 1886, 86, 86, 1873, 86, 1880, 86, 1883, 1879, 86, 1887, 86, 1884, 1878, 1875, 1888, 1868, 1869, 1870, 86, 1885, 86, 1889, 1871, 1881, 86, 86, 86, 1890, 86, 1891, 1892, 1880, 86, 1883, 1894, 1893, 1887, 1895, 1884, 86, 86, 1888, 86, 1898, 1899, 1896, 1885, 1897, 1889, 86, 1900, 1904, 1901, 1903, 1890, 86, 1891, 86, 86, 1902, 1910, 86, 1893, 86, 1895, 86, 1905, 86, 1906, 86, 1898, 86, 1896, 86, 1897, 1909, 86, 86, 1904, 1901, 1903, 1907, 86, 1911, 1912, 1908, 1902, 1913, 1914, 1915, 86, 1916, 86, 1905, 86, 1906, 86, 86, 1918, 1917, 1920, 1919, 1909, 1925, 86, 86, 1921, 1926, 1907, 86, 1911, 1912, 1908, 86, 1922, 86, 86, 86, 1916, 86, 86, 1923, 86, 86, 1924, 1918, 1917, 1920, 1919, 1927, 86, 1928, 1933, 1921, 1934, 86, 86, 1929, 1931, 86, 3136, 1922, 1932, 86, 1935, 86, 1941, 86, 1923, 1937, 86, 1924, 86, 1930, 86, 1936, 1927, 86, 1928, 1933, 86, 86, 1938, 1939, 1929, 1931, 1952, 86, 1940, 1932, 1942, 1935, 1943, 86, 1945, 1946, 1937, 1944, 1947, 1948, 1930, 86, 1936, 1955, 86, 86, 86, 86, 86, 1938, 1939, 86, 1949, 86, 1954, 1940, 1950, 1942, 86, 1943, 1951, 86, 1946, 86, 1944, 1947, 1948, 86, 1953, 1957, 86, 1956, 1958, 1959, 86, 1961, 86, 1962, 1960, 1949, 86, 1954, 86, 1950, 1963, 1966, 1964, 1951, 1967, 86, 86, 1965, 86, 1971, 1969, 1953, 1957, 86, 1956, 1958, 1959, 3136, 1961, 1973, 86, 1960, 1968, 86, 1970, 1972, 1976, 86, 1974, 1975, 1977, 86, 86, 86, 86, 86, 86, 1969, 1978, 86, 86, 86, 86, 86, 1979, 1980, 1973, 1981, 1986, 1968, 1987, 1970, 1972, 1982, 1983, 1974, 1975, 1977, 86, 1984, 86, 86, 86, 1985, 1989, 1991, 167, 1990, 3136, 3136, 86, 1979, 1980, 3136, 1981, 86, 86, 86, 1988, 1992, 1982, 1983, 1994, 86, 1993, 86, 1984, 86, 86, 86, 1985, 1995, 1991, 1996, 1990, 1997, 86, 1998, 1999, 2001, 86, 2000, 86, 2005, 86, 1988, 1992, 2003, 86, 1994, 2006, 1993, 86, 86, 2002, 86, 2004, 2008, 1995, 2011, 1996, 86, 1997, 86, 1998, 1999, 86, 86, 2000, 86, 2005, 2010, 86, 2007, 2003, 86, 2009, 86, 86, 86, 86, 2002, 86, 2004, 2008, 86, 2011, 2012, 2013, 2015, 2014, 2017, 2016, 3136, 3136, 2018, 2020, 2021, 2010, 86, 2007, 86, 2022, 2009, 86, 86, 2019, 86, 2023, 86, 2024, 2028, 2026, 2027, 2012, 86, 2015, 2014, 2017, 2016, 86, 86, 2018, 2020, 2021, 86, 86, 86, 86, 2022, 2025, 2029, 2030, 2019, 86, 2023, 86, 2024, 86, 2026, 2027, 2031, 2032, 86, 2034, 2036, 2035, 2033, 3136, 3136, 2037, 2038, 86, 3136, 86, 86, 86, 2025, 2029, 2030, 86, 2039, 2040, 3136, 2043, 2041, 2044, 3136, 2031, 2032, 86, 86, 2036, 2035, 2033, 86, 86, 2037, 86, 2042, 86, 2045, 86, 2046, 86, 2047, 86, 86, 2039, 2040, 86, 2043, 2041, 2044, 2048, 2049, 86, 2053, 86, 2050, 86, 2054, 2051, 2055, 86, 2056, 2042, 2058, 2045, 86, 2046, 86, 2047, 2057, 86, 2052, 86, 2059, 2060, 2061, 86, 2048, 2049, 86, 2053, 86, 2050, 2062, 2054, 2051, 86, 86, 2056, 2064, 2058, 2066, 2065, 3136, 2063, 86, 2057, 86, 2052, 2068, 2059, 2060, 2061, 86, 2067, 2069, 2074, 2071, 86, 86, 2062, 86, 86, 86, 2070, 86, 2064, 86, 2066, 2065, 86, 2063, 2072, 2073, 2075, 86, 2068, 3136, 2077, 2084, 2076, 2067, 2069, 86, 2071, 2080, 86, 2078, 2079, 86, 2082, 2070, 2088, 86, 86, 3136, 2083, 86, 2085, 2072, 2073, 2075, 86, 86, 2081, 2077, 2084, 2076, 2086, 86, 86, 86, 2080, 2087, 2078, 2079, 86, 86, 86, 86, 2089, 2090, 86, 2083, 2092, 2085, 86, 2091, 2093, 3136, 3136, 2081, 2094, 86, 86, 2086, 2095, 2098, 2099, 2103, 2087, 2096, 3136, 2100, 2102, 86, 86, 2089, 2090, 2097, 86, 2101, 3136, 86, 2091, 2093, 86, 86, 2104, 2094, 86, 86, 86, 2095, 86, 2099, 2103, 86, 2096, 86, 2100, 2102, 2105, 2107, 2108, 2106, 2097, 86, 2101, 2109, 86, 2112, 2113, 2114, 2110, 2104, 2111, 3136, 2117, 2116, 86, 2119, 2115, 3136, 2118, 86, 86, 86, 86, 2105, 2107, 2108, 2106, 86, 86, 86, 2149, 3136, 2112, 2113, 2114, 86, 86, 2111, 86, 2117, 2116, 2120, 86, 2115, 2121, 2118, 2122, 2123, 2125, 2124, 86, 2126, 2127, 86, 2130, 2128, 3136, 86, 2129, 86, 86, 86, 86, 86, 3136, 2133, 86, 2137, 2120, 86, 2131, 2121, 86, 2122, 2123, 2125, 2124, 86, 2126, 2127, 86, 2130, 2128, 2132, 2134, 2129, 86, 2135, 86, 2136, 2138, 86, 2133, 2139, 2137, 2140, 2141, 2131, 86, 86, 2151, 2142, 2143, 3136, 2144, 2145, 2150, 2146, 86, 86, 2132, 2134, 167, 86, 2135, 2154, 2136, 2138, 2152, 86, 86, 2159, 2140, 86, 86, 86, 86, 2151, 2142, 2143, 2147, 2144, 2145, 2153, 2146, 2148, 2158, 86, 86, 2155, 86, 2160, 86, 2161, 2163, 2152, 2162, 2164, 86, 3136, 2168, 2165, 2166, 2156, 86, 86, 3136, 3136, 86, 2167, 2153, 2169, 86, 2158, 2157, 86, 2155, 86, 2160, 86, 2161, 2171, 3136, 2162, 2164, 2174, 86, 86, 2165, 86, 2156, 86, 86, 2170, 86, 2172, 2167, 2173, 2169, 86, 86, 2157, 86, 2176, 86, 2175, 2177, 86, 2171, 86, 2178, 2180, 2174, 2181, 2179, 86, 2182, 2183, 86, 86, 2170, 86, 2172, 2184, 2173, 86, 2186, 2185, 86, 3136, 2176, 3136, 2175, 2177, 2188, 86, 2190, 2178, 2180, 86, 2181, 2179, 2191, 2182, 86, 2193, 86, 2189, 86, 86, 2184, 2187, 86, 2186, 2185, 86, 86, 2192, 86, 2195, 2194, 2188, 2196, 2190, 2197, 2200, 86, 86, 86, 2191, 86, 86, 86, 2198, 2189, 2199, 86, 2204, 2187, 86, 2201, 2203, 2202, 86, 2192, 3136, 2195, 2194, 86, 2196, 2205, 2197, 2200, 86, 2206, 86, 2207, 2211, 2208, 2209, 2198, 2210, 2199, 2212, 86, 3136, 2214, 2201, 2203, 2202, 86, 86, 86, 86, 2215, 2218, 2219, 2205, 86, 2213, 86, 2206, 2220, 2207, 86, 2208, 2209, 86, 2210, 2216, 86, 86, 2217, 2214, 2224, 2223, 2225, 2227, 86, 2229, 86, 2215, 86, 2219, 86, 2221, 2213, 86, 2222, 2220, 86, 2228, 86, 2232, 2231, 86, 2216, 2226, 2230, 2217, 86, 86, 2223, 86, 86, 86, 86, 2233, 2235, 2234, 86, 2237, 2221, 2239, 2236, 2222, 86, 2238, 2228, 86, 86, 2231, 86, 2240, 2226, 2230, 86, 86, 2241, 2244, 2243, 86, 2245, 2242, 86, 2235, 2234, 2247, 2237, 86, 86, 2236, 86, 3136, 2238, 2251, 2248, 2246, 3136, 2249, 2240, 86, 2256, 86, 86, 86, 2244, 2243, 86, 2245, 2242, 86, 2250, 2253, 86, 2254, 2258, 86, 2252, 2259, 86, 2255, 86, 2248, 2246, 86, 2249, 86, 2257, 86, 2261, 86, 2263, 3136, 2262, 2260, 86, 2264, 86, 2250, 2253, 86, 2254, 2258, 86, 2252, 2259, 86, 2255, 2265, 86, 2266, 86, 2267, 86, 2257, 2268, 86, 86, 2263, 86, 2262, 2260, 2269, 2264, 2277, 2270, 86, 3136, 2274, 2271, 2281, 86, 2275, 2278, 2285, 2265, 2276, 2266, 3136, 2267, 86, 86, 2268, 86, 2272, 3136, 2273, 86, 2280, 2269, 86, 2277, 2270, 86, 86, 2274, 2271, 2281, 86, 2275, 2278, 2279, 2282, 2276, 2283, 2284, 86, 86, 2286, 2287, 86, 2272, 2288, 2273, 86, 2280, 2289, 86, 2290, 2291, 86, 2298, 2293, 2292, 86, 3136, 86, 2299, 2279, 2282, 2294, 2283, 2284, 86, 86, 2286, 2295, 2296, 86, 2288, 86, 86, 2302, 2289, 2300, 2290, 2291, 86, 86, 2293, 2292, 2301, 2297, 86, 86, 86, 2303, 2294, 86, 86, 86, 2304, 2305, 2295, 2296, 86, 3136, 86, 2307, 2302, 2306, 2300, 2312, 2308, 2310, 2309, 2311, 3136, 2301, 2297, 86, 2316, 86, 2303, 2313, 86, 2314, 86, 86, 2305, 167, 2315, 86, 86, 2318, 2307, 86, 2306, 2317, 86, 2308, 2310, 2309, 2311, 86, 2319, 86, 3136, 2316, 86, 86, 2313, 2320, 2314, 2323, 2321, 2322, 2325, 2315, 2324, 2328, 2318, 86, 2326, 2329, 2317, 2327, 2331, 3136, 86, 3136, 86, 2319, 2330, 86, 2333, 2332, 2338, 2337, 2320, 2334, 86, 2321, 2322, 86, 86, 2324, 86, 86, 86, 2326, 86, 86, 2327, 86, 86, 86, 2335, 2336, 2339, 2330, 86, 2333, 2332, 86, 2337, 86, 2334, 2340, 86, 86, 2341, 86, 2342, 2343, 2345, 2346, 2344, 3136, 2348, 2351, 2352, 2347, 86, 2335, 2336, 2339, 86, 86, 2350, 86, 2354, 2357, 86, 86, 2340, 2349, 86, 2341, 86, 2342, 86, 2345, 2346, 2344, 86, 86, 2351, 2352, 2347, 86, 86, 2353, 2355, 86, 2356, 2350, 2358, 2354, 2359, 86, 2360, 2361, 2349, 86, 86, 2363, 2365, 86, 2362, 2366, 3136, 3136, 86, 2364, 2368, 86, 86, 86, 2353, 2355, 2367, 2356, 86, 2358, 2370, 2359, 2371, 2360, 2361, 2372, 86, 86, 86, 2365, 3136, 2362, 2366, 86, 86, 2373, 2364, 2368, 2369, 86, 2374, 2375, 86, 2367, 2376, 86, 86, 2370, 2378, 2371, 86, 2377, 2379, 3136, 2380, 2381, 86, 86, 2382, 86, 86, 86, 2373, 86, 2383, 2369, 2384, 86, 2375, 2385, 2386, 86, 2387, 2388, 2393, 2378, 86, 2392, 2377, 2379, 86, 2380, 2381, 2389, 86, 2382, 86, 2390, 86, 2391, 2394, 2383, 86, 86, 2395, 2397, 86, 86, 86, 2387, 2388, 86, 86, 2396, 2392, 2398, 2401, 86, 86, 86, 2389, 2399, 86, 2400, 2390, 86, 2391, 2394, 2402, 2403, 2404, 86, 2397, 2406, 2409, 2405, 86, 2407, 2408, 3136, 2396, 3136, 86, 2401, 86, 86, 3136, 86, 2399, 2412, 2400, 86, 86, 2410, 86, 2402, 86, 2404, 2411, 86, 2406, 2409, 2405, 86, 2407, 2408, 86, 2413, 2414, 2415, 2416, 86, 2417, 86, 86, 2418, 2412, 2419, 2420, 2421, 2410, 2422, 3136, 2423, 2426, 2411, 3136, 86, 2424, 2427, 86, 86, 86, 2428, 2413, 2414, 86, 86, 2425, 86, 86, 86, 86, 86, 2419, 2420, 2421, 86, 2422, 86, 2423, 2426, 2430, 86, 2429, 2424, 2427, 2431, 2432, 2436, 86, 2433, 86, 2434, 3136, 2425, 86, 2435, 2438, 2437, 2439, 2440, 2442, 86, 86, 86, 86, 86, 3136, 86, 3136, 2429, 86, 86, 86, 2432, 2436, 2441, 2433, 2444, 2434, 86, 2447, 2443, 2435, 2438, 2437, 2439, 86, 2442, 86, 2445, 2446, 86, 86, 86, 2448, 167, 2449, 2450, 2451, 2456, 2453, 3136, 2441, 86, 2444, 86, 2452, 2447, 2443, 86, 86, 2455, 86, 2459, 86, 86, 2445, 2446, 2454, 2457, 86, 2448, 86, 2449, 2450, 2451, 2456, 2453, 2458, 2460, 3136, 2461, 2467, 2452, 2462, 86, 2463, 2465, 2455, 2464, 86, 86, 2468, 2466, 86, 2454, 2457, 3136, 86, 86, 86, 86, 2474, 86, 3136, 2458, 86, 86, 2461, 2467, 86, 2462, 86, 2463, 2465, 2469, 2464, 2470, 2471, 2468, 2466, 2472, 86, 2473, 86, 86, 2475, 86, 2476, 2474, 86, 2477, 2479, 86, 2478, 2482, 2480, 86, 2481, 86, 86, 86, 2469, 2484, 2470, 2471, 2483, 3136, 2472, 3136, 2473, 2487, 2493, 2475, 3136, 2476, 86, 2485, 2477, 86, 86, 2478, 86, 2480, 86, 2481, 86, 2486, 2488, 2492, 86, 86, 2489, 2483, 2490, 2491, 86, 86, 2487, 86, 86, 86, 2494, 86, 2485, 2495, 86, 2496, 2497, 2500, 2499, 2498, 2571, 2501, 2486, 2488, 2492, 86, 86, 2489, 86, 2490, 2491, 86, 2503, 2504, 2502, 2505, 3136, 86, 2506, 86, 86, 86, 2507, 2497, 2500, 2499, 2498, 86, 2501, 2508, 2509, 2511, 86, 2513, 86, 3136, 2510, 86, 86, 2503, 2504, 2502, 86, 86, 86, 2506, 86, 2512, 86, 86, 2518, 2517, 2514, 2515, 86, 86, 2508, 2509, 2511, 86, 2513, 86, 2516, 2510, 2519, 2521, 2525, 2522, 3136, 86, 2523, 2526, 2520, 2524, 2512, 86, 86, 86, 2517, 2514, 2515, 86, 86, 2527, 2530, 86, 2532, 2534, 2531, 2516, 86, 2519, 86, 86, 2522, 86, 86, 2523, 2526, 2520, 2524, 2528, 2529, 86, 86, 2536, 2538, 2533, 86, 86, 2527, 86, 2535, 2532, 86, 2531, 2537, 2541, 3136, 2542, 86, 2543, 2540, 2544, 86, 2539, 86, 2545, 2528, 2529, 86, 3136, 86, 2538, 2533, 2547, 86, 86, 86, 2535, 2548, 86, 2546, 2537, 86, 86, 2542, 2549, 2543, 2540, 86, 2550, 2539, 86, 2545, 2551, 86, 2552, 86, 2553, 2554, 2555, 2547, 86, 2557, 2560, 2556, 2548, 2561, 2546, 3136, 2558, 86, 86, 86, 2559, 2564, 86, 2550, 86, 2565, 86, 86, 86, 2552, 86, 2553, 2554, 2555, 86, 86, 2557, 2560, 2556, 86, 2561, 2562, 2563, 2558, 2566, 2567, 3136, 2559, 86, 2569, 2570, 2568, 86, 2572, 86, 2573, 2576, 2575, 86, 86, 2577, 2579, 2574, 86, 2586, 86, 2580, 3136, 2562, 2563, 2583, 167, 2567, 86, 86, 86, 2569, 2570, 2568, 86, 2572, 86, 2573, 86, 2575, 2578, 2581, 86, 86, 2574, 86, 2582, 86, 2580, 2584, 2585, 86, 2583, 2588, 86, 2587, 2589, 2590, 2592, 2593, 2591, 2594, 2598, 86, 86, 3136, 3136, 2578, 2595, 86, 2597, 86, 2600, 86, 86, 86, 2584, 2585, 86, 86, 2588, 2596, 2587, 2589, 2590, 2592, 86, 2591, 2599, 2598, 86, 86, 86, 86, 86, 2595, 86, 2597, 2601, 2600, 2602, 2604, 2603, 86, 2605, 3136, 2606, 2609, 2596, 86, 2608, 2611, 2607, 2610, 86, 2599, 86, 2615, 86, 86, 86, 86, 86, 2613, 2614, 2601, 3136, 2602, 2604, 2603, 86, 2605, 86, 2606, 2609, 2612, 86, 2608, 86, 2607, 2610, 86, 2617, 86, 86, 2616, 2620, 2619, 2618, 2622, 2613, 2614, 2623, 86, 86, 86, 2621, 2624, 86, 2625, 2626, 3136, 2612, 2627, 2628, 2630, 2629, 3136, 2634, 2617, 86, 2633, 2616, 86, 2619, 2618, 2635, 86, 2636, 86, 86, 86, 86, 2621, 86, 86, 86, 2626, 86, 86, 2627, 2628, 2630, 2629, 2631, 2634, 2632, 86, 2633, 2637, 2639, 2638, 2640, 86, 2641, 86, 2646, 86, 86, 2644, 2642, 86, 2647, 86, 2645, 2643, 2648, 2649, 3136, 3136, 2651, 2631, 86, 2632, 86, 2650, 86, 2639, 2638, 86, 86, 2641, 86, 2646, 86, 2654, 2652, 2642, 86, 2647, 2655, 86, 2643, 86, 86, 86, 2653, 2651, 2656, 86, 2658, 2659, 2650, 86, 2662, 2660, 2657, 2661, 2663, 3136, 3136, 2671, 86, 2652, 86, 86, 86, 2655, 86, 2664, 86, 2665, 2668, 2653, 2669, 86, 2666, 86, 2659, 86, 2674, 86, 2660, 2657, 2661, 86, 86, 2667, 2670, 2673, 3136, 86, 86, 86, 2676, 2672, 2664, 86, 2675, 2668, 2677, 2669, 2678, 86, 86, 2680, 2679, 86, 3136, 86, 2686, 2687, 86, 86, 2667, 2670, 2673, 2683, 2681, 2682, 86, 2676, 2672, 86, 86, 2675, 2684, 2677, 86, 2678, 86, 86, 2680, 2679, 2685, 86, 2688, 2686, 86, 86, 2689, 86, 2691, 2692, 2683, 2681, 2682, 2693, 2690, 86, 2696, 86, 2694, 2684, 2697, 86, 2698, 2695, 86, 2699, 2702, 2685, 2700, 2688, 86, 2701, 86, 2689, 2703, 2691, 2692, 86, 2704, 2707, 2693, 2690, 2709, 2696, 2706, 86, 86, 86, 86, 2698, 86, 86, 2699, 2702, 86, 2700, 86, 86, 2701, 2705, 86, 2703, 86, 2708, 2710, 2704, 2707, 2711, 2712, 86, 86, 2706, 2713, 2714, 2715, 2716, 86, 2721, 2720, 2717, 2718, 3136, 3136, 3136, 3136, 2719, 2705, 86, 86, 3136, 2708, 2710, 86, 2722, 2711, 86, 86, 86, 86, 2713, 86, 2715, 86, 86, 86, 2720, 2717, 2718, 2723, 2724, 2725, 2727, 2719, 2728, 2729, 2726, 86, 2730, 2731, 2732, 2722, 86, 2734, 2735, 86, 86, 86, 2741, 3136, 2736, 2733, 86, 86, 2737, 2739, 2723, 2724, 86, 2727, 86, 2728, 2729, 86, 86, 2730, 86, 86, 86, 86, 2734, 2735, 2738, 86, 86, 2742, 2740, 2736, 2733, 2743, 86, 2737, 2739, 86, 2746, 86, 2744, 2745, 3136, 2747, 86, 2749, 2751, 2748, 2750, 2752, 2753, 2755, 3136, 2738, 3136, 3136, 2742, 2740, 86, 2757, 2743, 86, 86, 86, 86, 2746, 2754, 2744, 2745, 86, 2747, 86, 2749, 86, 2748, 2750, 86, 86, 2755, 2756, 2758, 86, 2759, 2760, 86, 3136, 2757, 86, 2761, 2762, 2764, 2765, 2763, 2754, 2766, 2767, 86, 2768, 86, 86, 3136, 2769, 2770, 86, 86, 86, 2756, 86, 2771, 2759, 2760, 2772, 86, 86, 2773, 86, 2762, 2764, 2765, 2763, 2775, 2766, 2777, 2774, 2768, 86, 2781, 86, 86, 2770, 86, 86, 86, 86, 2778, 2771, 2776, 2779, 2772, 2780, 86, 2773, 2787, 86, 86, 2782, 2783, 2775, 86, 86, 2774, 86, 2784, 2781, 86, 2785, 86, 2786, 86, 2788, 2789, 2778, 86, 2776, 2779, 2790, 2780, 86, 2791, 86, 2792, 86, 2782, 2783, 86, 2797, 2796, 86, 2793, 2784, 2794, 2798, 2785, 2795, 2786, 2800, 2788, 86, 86, 86, 2801, 86, 86, 86, 86, 2791, 2799, 86, 86, 2804, 86, 2802, 86, 2796, 2806, 2793, 2805, 2794, 2798, 2817, 2795, 2803, 2800, 86, 86, 2807, 86, 2801, 2809, 86, 2808, 2810, 2811, 2799, 2812, 86, 86, 2816, 2802, 86, 2814, 2818, 2815, 2805, 86, 2821, 86, 86, 2803, 86, 2819, 86, 2807, 2813, 2822, 86, 86, 2808, 86, 2811, 86, 86, 2823, 2820, 2816, 86, 2825, 2814, 2818, 2815, 86, 2824, 86, 86, 2826, 2827, 2828, 2819, 86, 2829, 2813, 2822, 2830, 2831, 2835, 2832, 86, 3136, 86, 2823, 2820, 86, 2833, 2825, 2838, 2841, 2834, 86, 2824, 2843, 86, 3136, 86, 2828, 86, 86, 86, 2836, 2837, 2830, 2831, 86, 86, 2839, 86, 2840, 86, 86, 2842, 2833, 2845, 86, 2841, 2834, 86, 2844, 86, 2846, 86, 2847, 2849, 2848, 86, 86, 2836, 2837, 2851, 2850, 86, 2852, 2839, 2853, 2840, 86, 2855, 2842, 2857, 2845, 2854, 2861, 2858, 86, 2844, 86, 86, 86, 86, 2849, 2848, 86, 2859, 2856, 2864, 86, 2850, 86, 86, 2860, 86, 86, 86, 86, 2862, 2857, 2863, 2854, 86, 2858, 2865, 2866, 86, 86, 2867, 2868, 2869, 86, 2870, 2859, 2856, 2864, 86, 2871, 86, 86, 2860, 2872, 2874, 2873, 2875, 2862, 2876, 2863, 2877, 3136, 2878, 86, 86, 3136, 86, 86, 2868, 2869, 2879, 2870, 86, 86, 2882, 2885, 86, 86, 2883, 86, 86, 2874, 2873, 2880, 2881, 2876, 2884, 2877, 86, 86, 86, 86, 86, 86, 86, 2886, 86, 2879, 2893, 2887, 2889, 2882, 2885, 86, 86, 2883, 86, 86, 2888, 86, 2880, 2881, 2890, 2884, 2894, 86, 2895, 2896, 2891, 2892, 2897, 2901, 2886, 86, 86, 2893, 2887, 2889, 86, 2898, 2899, 2902, 2903, 2900, 2904, 2888, 86, 86, 86, 2890, 2905, 2894, 2912, 2895, 2896, 2891, 2892, 86, 86, 2906, 2907, 86, 86, 2908, 2909, 86, 2898, 2899, 86, 2903, 2900, 86, 2910, 2911, 3136, 86, 2913, 86, 2914, 2912, 2915, 2919, 2916, 2917, 2918, 2924, 2923, 86, 86, 86, 86, 2922, 86, 86, 2920, 2921, 86, 86, 3136, 2926, 2928, 86, 2927, 86, 86, 2914, 86, 2915, 86, 2916, 2917, 2918, 2924, 2923, 86, 86, 2925, 86, 2922, 2929, 2930, 2920, 2921, 2931, 2936, 86, 2926, 86, 86, 2927, 2932, 2934, 86, 2933, 2939, 2937, 2935, 86, 2943, 2938, 86, 2944, 2940, 2925, 3136, 86, 86, 2930, 86, 2941, 2931, 86, 2946, 2945, 2947, 2948, 86, 2932, 2949, 2942, 2933, 2939, 2937, 86, 86, 86, 2938, 86, 2950, 2940, 2951, 86, 2952, 86, 86, 2953, 2941, 86, 2954, 86, 2945, 86, 2948, 2955, 2956, 86, 2942, 2958, 2957, 2959, 2963, 2961, 2962, 2960, 3136, 86, 3136, 86, 86, 86, 86, 2964, 86, 2967, 2969, 86, 86, 86, 86, 2965, 86, 86, 2966, 86, 86, 2957, 2959, 86, 2961, 2962, 2960, 2968, 2971, 86, 2973, 2970, 2974, 86, 2964, 86, 2967, 86, 2975, 86, 86, 86, 2965, 2972, 86, 2966, 2976, 2977, 3136, 2978, 2983, 3136, 86, 2979, 2968, 2971, 86, 2973, 2970, 2974, 86, 86, 86, 2980, 2981, 2975, 2982, 2984, 86, 2986, 2972, 86, 86, 2985, 2977, 86, 2978, 2983, 86, 86, 2979, 2987, 2988, 86, 2989, 2990, 2991, 86, 3136, 86, 2980, 2981, 2992, 2982, 2984, 2993, 2986, 86, 2997, 2995, 2985, 2994, 86, 86, 86, 2996, 2998, 3004, 86, 86, 3000, 86, 2990, 2991, 86, 86, 3001, 2999, 86, 2992, 86, 86, 2993, 3136, 3007, 2997, 2995, 3002, 2994, 86, 86, 86, 2996, 2998, 3004, 86, 86, 3000, 3003, 3005, 3006, 86, 86, 3001, 2999, 3008, 3010, 86, 3011, 3009, 3012, 3007, 86, 86, 3002, 86, 3014, 3013, 3016, 3018, 86, 3015, 3019, 86, 86, 3003, 3005, 3006, 3017, 3022, 86, 3021, 3008, 3010, 3020, 3011, 3009, 3012, 86, 86, 3023, 3024, 86, 86, 3013, 86, 86, 3026, 3015, 86, 3025, 3027, 86, 86, 86, 3017, 3022, 3028, 3021, 86, 3029, 3020, 86, 86, 3030, 3031, 3032, 3023, 3024, 3033, 86, 3034, 86, 3035, 3026, 86, 3036, 3025, 3038, 86, 3037, 86, 3039, 86, 3028, 3040, 86, 3029, 86, 86, 3042, 3030, 3031, 86, 3041, 3043, 3033, 3044, 3034, 3045, 86, 3047, 86, 3036, 86, 86, 3046, 3037, 86, 3039, 86, 3048, 3040, 86, 86, 3049, 3053, 3052, 3055, 3050, 3136, 3041, 86, 86, 3044, 86, 3045, 86, 3047, 3051, 86, 3136, 3060, 3046, 3054, 3057, 86, 3058, 86, 86, 86, 86, 86, 3053, 3052, 3055, 3050, 3056, 3061, 86, 3059, 86, 3062, 3063, 86, 86, 3051, 3064, 86, 3060, 86, 3054, 3057, 3065, 3058, 3066, 86, 3067, 3068, 3069, 86, 86, 3075, 3136, 3056, 3061, 3070, 3059, 3136, 86, 3063, 3074, 3071, 3072, 3064, 3073, 3136, 3077, 3078, 86, 3065, 3083, 86, 86, 3067, 86, 3069, 3076, 86, 86, 86, 3080, 3087, 3070, 86, 86, 3085, 3136, 3079, 3071, 3072, 86, 3073, 86, 86, 3078, 86, 3081, 3082, 86, 86, 86, 3084, 86, 3076, 86, 86, 3086, 3080, 86, 86, 3136, 3091, 3085, 3088, 3079, 3090, 3089, 3092, 3136, 86, 3093, 3136, 3094, 3081, 3082, 86, 3098, 3096, 3084, 3095, 3105, 86, 86, 3086, 86, 3097, 86, 86, 3091, 3100, 3088, 86, 3090, 3089, 3092, 3101, 3102, 3093, 86, 3094, 3099, 86, 86, 3098, 3096, 3103, 3095, 86, 86, 3104, 3107, 3106, 3097, 3108, 3109, 86, 3100, 86, 86, 3110, 3111, 86, 3101, 3102, 3114, 86, 3112, 3099, 86, 3120, 3136, 3121, 3103, 86, 86, 86, 3104, 3107, 3106, 86, 86, 3109, 3113, 3116, 3115, 3117, 3110, 3111, 86, 3118, 86, 86, 86, 3112, 3119, 86, 3120, 86, 86, 3124, 3122, 3125, 86, 3126, 3127, 86, 3123, 86, 86, 3113, 3116, 3115, 3117, 3128, 86, 3129, 3118, 3130, 3134, 3131, 3135, 3119, 3136, 86, 3132, 86, 3124, 3122, 86, 3133, 3126, 86, 86, 3123, 3136, 86, 3136, 86, 3136, 86, 86, 86, 3129, 3136, 3130, 86, 3131, 86, 3136, 3136, 3136, 3132, 3136, 3136, 3136, 3136, 3133, 47, 47, 47, 47, 47, 47, 47, 52, 52, 52, 52, 52, 52, 52, 57, 57, 57, 57, 57, 57, 57, 63, 63, 63, 63, 63, 63, 63, 68, 68, 68, 68, 68, 68, 68, 74, 74, 74, 74, 74, 74, 74, 80, 80, 80, 80, 80, 80, 80, 89, 89, 3136, 89, 89, 89, 89, 157, 157, 3136, 3136, 3136, 157, 157, 159, 159, 3136, 3136, 159, 3136, 159, 161, 3136, 3136, 3136, 3136, 3136, 161, 164, 164, 3136, 3136, 3136, 164, 164, 166, 3136, 3136, 3136, 3136, 3136, 166, 168, 168, 3136, 168, 168, 168, 168, 171, 3136, 3136, 3136, 3136, 3136, 171, 174, 174, 3136, 3136, 3136, 174, 174, 90, 90, 3136, 90, 90, 90, 90, 17, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136 } ; static const flex_int16_t yy_chk[9004] = { 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, 1, 3, 3, 3, 4, 4, 4, 5, 5, 6, 6, 5, 32, 6, 7, 7, 7, 7, 33, 7, 8, 8, 8, 8, 32, 8, 9, 9, 9, 10, 10, 10, 19, 51, 51, 1032, 19, 3144, 3, 32, 33, 4, 67, 67, 5, 33, 6, 2566, 13, 13, 13, 13, 7, 13, 14, 14, 14, 14, 8, 14, 15, 15, 15, 9, 25, 1032, 10, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 16, 16, 16, 34, 28, 84, 84, 13, 11, 45, 1041, 25, 25, 14, 12, 34, 39, 23, 15, 23, 23, 45, 23, 174, 28, 173, 11, 28, 23, 39, 34, 28, 12, 171, 37, 11, 45, 16, 158, 158, 37, 12, 30, 39, 29, 56, 165, 165, 56, 72, 30, 28, 26, 287, 100, 23, 24, 24, 29, 26, 24, 37, 72, 26, 160, 24, 26, 160, 30, 30, 29, 29, 100, 95, 24, 166, 72, 30, 26, 26, 24, 100, 287, 24, 24, 29, 26, 24, 95, 164, 26, 87, 24, 26, 46, 87, 46, 46, 163, 46, 95, 24, 27, 161, 31, 46, 27, 31, 101, 27, 94, 27, 27, 142, 31, 62, 31, 62, 62, 192, 62, 101, 27, 70, 27, 70, 70, 31, 70, 27, 94, 31, 35, 27, 31, 101, 27, 94, 27, 27, 35, 31, 93, 31, 36, 142, 35, 96, 36, 27, 35, 192, 44, 215, 96, 42, 44, 42, 35, 35, 44, 70, 92, 159, 36, 93, 42, 35, 157, 93, 36, 36, 42, 35, 96, 36, 85, 35, 44, 44, 43, 42, 42, 44, 42, 215, 92, 44, 218, 92, 43, 36, 38, 42, 43, 43, 38, 109, 80, 42, 175, 175, 38, 43, 109, 38, 73, 43, 73, 73, 97, 73, 38, 79, 38, 79, 79, 43, 79, 38, 218, 43, 43, 38, 109, 86, 99, 86, 86, 38, 86, 106, 38, 75, 97, 99, 86, 97, 98, 38, 40, 74, 68, 111, 40, 89, 137, 89, 89, 106, 89, 98, 111, 99, 40, 40, 89, 40, 137, 103, 103, 63, 98, 106, 105, 98, 40, 40, 103, 102, 111, 40, 105, 137, 104, 102, 106, 102, 98, 104, 58, 40, 40, 89, 40, 41, 103, 103, 41, 57, 102, 105, 107, 108, 112, 41, 102, 899, 115, 41, 41, 104, 102, 112, 102, 107, 108, 41, 110, 110, 113, 115, 41, 52, 47, 41, 110, 114, 117, 107, 108, 112, 41, 18, 110, 115, 41, 41, 899, 116, 118, 17, 116, 113, 122, 110, 110, 113, 118, 114, 119, 123, 117, 110, 114, 116, 116, 122, 0, 0, 117, 120, 0, 116, 124, 120, 116, 118, 121, 116, 119, 122, 119, 121, 123, 125, 121, 119, 123, 117, 127, 120, 116, 116, 124, 120, 126, 130, 120, 125, 129, 124, 120, 134, 127, 121, 128, 119, 133, 129, 121, 0, 125, 128, 0, 133, 126, 127, 120, 131, 130, 132, 0, 126, 130, 132, 139, 129, 131, 134, 134, 135, 136, 128, 139, 133, 138, 138, 135, 0, 141, 136, 0, 132, 148, 140, 131, 136, 132, 143, 148, 152, 132, 139, 141, 136, 140, 147, 135, 136, 140, 0, 144, 138, 143, 147, 145, 141, 136, 140, 146, 148, 140, 152, 136, 0, 143, 145, 152, 144, 149, 146, 144, 140, 147, 151, 145, 140, 144, 144, 150, 149, 154, 145, 155, 153, 170, 146, 0, 150, 151, 154, 176, 0, 145, 156, 144, 149, 0, 144, 153, 150, 151, 0, 0, 150, 155, 150, 156, 154, 170, 155, 153, 170, 176, 162, 150, 162, 162, 176, 162, 167, 156, 167, 167, 177, 167, 168, 150, 168, 168, 172, 168, 172, 172, 178, 172, 179, 0, 177, 180, 182, 181, 183, 178, 0, 188, 180, 186, 179, 185, 183, 188, 187, 189, 186, 189, 177, 181, 180, 182, 184, 178, 190, 179, 168, 177, 180, 182, 181, 183, 187, 185, 184, 180, 186, 191, 185, 188, 188, 187, 189, 195, 193, 0, 190, 196, 193, 184, 197, 190, 200, 201, 198, 0, 199, 202, 197, 203, 201, 206, 196, 191, 191, 193, 0, 200, 204, 195, 195, 0, 193, 206, 196, 193, 198, 197, 199, 200, 201, 198, 203, 199, 205, 202, 203, 208, 206, 202, 204, 207, 193, 194, 207, 204, 208, 205, 194, 0, 209, 210, 212, 194, 0, 0, 207, 216, 213, 194, 194, 205, 202, 220, 208, 213, 194, 223, 207, 219, 194, 207, 209, 210, 212, 194, 219, 209, 210, 212, 194, 214, 227, 216, 216, 213, 194, 194, 211, 217, 221, 211, 214, 211, 225, 220, 219, 222, 226, 223, 217, 224, 227, 222, 221, 211, 0, 211, 214, 227, 230, 228, 229, 0, 211, 211, 233, 230, 211, 231, 211, 217, 221, 224, 222, 228, 225, 217, 224, 0, 226, 221, 211, 229, 211, 233, 232, 230, 228, 229, 231, 232, 234, 233, 235, 237, 231, 236, 238, 240, 0, 239, 242, 243, 240, 241, 234, 237, 239, 238, 245, 242, 244, 232, 247, 236, 235, 244, 0, 234, 253, 235, 237, 249, 236, 238, 243, 241, 239, 242, 243, 240, 241, 248, 246, 246, 0, 252, 250, 244, 248, 251, 245, 246, 254, 249, 247, 255, 256, 251, 249, 257, 253, 0, 258, 255, 259, 252, 260, 262, 248, 246, 246, 250, 252, 250, 257, 258, 251, 261, 263, 264, 265, 266, 255, 264, 254, 272, 257, 269, 256, 258, 259, 259, 268, 260, 269, 263, 266, 271, 270, 262, 261, 271, 265, 263, 267, 263, 264, 265, 266, 261, 273, 268, 267, 274, 269, 276, 275, 272, 277, 268, 270, 278, 263, 279, 271, 270, 280, 261, 286, 283, 277, 267, 279, 281, 278, 274, 0, 285, 275, 280, 274, 284, 273, 275, 282, 277, 282, 276, 278, 288, 279, 289, 281, 280, 286, 286, 290, 292, 288, 291, 281, 283, 285, 293, 285, 284, 294, 295, 284, 292, 291, 282, 297, 296, 299, 298, 288, 289, 289, 301, 300, 304, 290, 290, 292, 295, 291, 293, 298, 294, 293, 296, 302, 294, 295, 303, 305, 0, 310, 309, 296, 0, 298, 304, 297, 300, 299, 300, 304, 302, 306, 301, 308, 309, 307, 302, 311, 306, 308, 302, 312, 303, 303, 307, 310, 310, 309, 313, 305, 312, 314, 0, 316, 315, 319, 317, 302, 306, 314, 308, 311, 307, 315, 311, 317, 320, 318, 312, 321, 319, 313, 322, 326, 324, 313, 325, 0, 314, 316, 316, 315, 319, 317, 318, 325, 328, 322, 0, 338, 329, 318, 324, 321, 318, 326, 321, 344, 320, 322, 326, 324, 0, 325, 329, 344, 0, 327, 361, 327, 328, 318, 323, 328, 330, 323, 338, 329, 331, 331, 323, 323, 323, 323, 344, 327, 335, 332, 0, 330, 323, 327, 332, 333, 327, 361, 327, 336, 335, 323, 337, 330, 323, 331, 339, 331, 331, 323, 323, 323, 323, 334, 327, 335, 334, 336, 340, 333, 337, 332, 333, 334, 341, 342, 336, 343, 339, 337, 345, 347, 352, 339, 346, 358, 341, 345, 360, 348, 334, 348, 343, 334, 340, 340, 346, 342, 350, 351, 348, 341, 342, 358, 343, 350, 353, 345, 355, 356, 355, 346, 358, 347, 352, 348, 348, 354, 348, 362, 360, 351, 356, 354, 366, 350, 351, 348, 353, 357, 366, 359, 355, 353, 383, 355, 356, 355, 376, 354, 0, 362, 357, 376, 354, 357, 362, 357, 367, 363, 354, 366, 368, 357, 365, 363, 357, 359, 359, 363, 367, 365, 375, 408, 368, 369, 383, 363, 0, 357, 376, 372, 357, 363, 357, 367, 363, 371, 369, 368, 375, 365, 363, 0, 372, 377, 363, 374, 408, 375, 408, 380, 369, 371, 363, 364, 378, 364, 372, 374, 379, 371, 378, 380, 371, 0, 377, 381, 379, 385, 364, 382, 377, 364, 374, 364, 385, 364, 380, 382, 371, 364, 364, 378, 364, 381, 386, 379, 0, 384, 384, 0, 387, 0, 381, 0, 385, 364, 382, 386, 364, 387, 364, 0, 364, 373, 373, 388, 394, 392, 0, 388, 395, 386, 389, 373, 384, 373, 373, 373, 390, 389, 373, 391, 387, 393, 432, 390, 387, 399, 373, 392, 373, 373, 388, 391, 392, 393, 395, 395, 394, 389, 373, 397, 373, 373, 373, 390, 396, 373, 391, 398, 393, 432, 400, 396, 400, 401, 397, 404, 402, 399, 403, 403, 398, 405, 404, 410, 401, 406, 397, 414, 407, 0, 411, 396, 405, 409, 398, 412, 406, 400, 402, 414, 401, 407, 404, 402, 454, 411, 410, 403, 405, 454, 410, 409, 406, 411, 414, 407, 413, 411, 409, 415, 409, 412, 412, 417, 413, 416, 418, 419, 423, 420, 415, 454, 411, 0, 416, 421, 417, 418, 409, 418, 425, 422, 424, 413, 418, 419, 415, 426, 424, 427, 417, 420, 416, 418, 419, 428, 420, 430, 421, 422, 423, 425, 421, 435, 418, 429, 418, 425, 422, 424, 426, 431, 429, 427, 426, 433, 427, 428, 436, 434, 437, 0, 428, 430, 430, 431, 440, 438, 439, 435, 435, 445, 429, 434, 439, 441, 443, 433, 431, 438, 445, 442, 433, 437, 446, 444, 434, 437, 440, 442, 436, 443, 444, 440, 438, 439, 447, 441, 445, 446, 449, 448, 441, 443, 450, 0, 0, 442, 442, 453, 451, 446, 444, 452, 0, 449, 442, 456, 460, 452, 447, 0, 458, 447, 448, 460, 466, 449, 448, 459, 450, 450, 451, 457, 467, 453, 453, 451, 461, 457, 452, 458, 468, 456, 456, 460, 463, 459, 463, 458, 464, 465, 467, 461, 469, 463, 459, 464, 466, 470, 457, 467, 530, 471, 465, 461, 471, 472, 474, 475, 473, 530, 470, 463, 468, 463, 469, 464, 465, 477, 474, 469, 471, 473, 478, 476, 470, 479, 480, 530, 471, 472, 476, 471, 472, 474, 482, 473, 483, 481, 479, 475, 482, 477, 481, 484, 477, 478, 485, 486, 480, 487, 476, 0, 479, 480, 478, 492, 493, 489, 485, 483, 487, 482, 492, 483, 481, 484, 494, 488, 493, 486, 484, 489, 478, 485, 486, 488, 487, 495, 497, 496, 0, 0, 492, 493, 489, 495, 0, 0, 505, 494, 496, 0, 0, 494, 488, 490, 500, 499, 0, 502, 490, 497, 490, 498, 495, 497, 496, 498, 490, 499, 490, 514, 505, 490, 490, 505, 0, 502, 500, 514, 490, 490, 490, 500, 499, 498, 502, 490, 501, 490, 498, 501, 503, 504, 498, 490, 507, 490, 514, 501, 490, 490, 503, 507, 504, 506, 512, 490, 508, 506, 509, 518, 509, 510, 511, 501, 513, 515, 501, 518, 504, 512, 515, 507, 503, 516, 511, 517, 513, 503, 519, 522, 506, 512, 508, 508, 523, 509, 518, 510, 510, 511, 519, 513, 515, 517, 520, 516, 524, 522, 525, 528, 516, 0, 517, 534, 526, 519, 522, 523, 529, 527, 531, 523, 528, 525, 533, 520, 526, 527, 532, 535, 529, 520, 534, 536, 538, 525, 528, 537, 524, 0, 534, 526, 532, 531, 539, 529, 527, 531, 540, 533, 541, 533, 537, 549, 543, 532, 535, 542, 544, 539, 545, 550, 546, 541, 537, 536, 538, 545, 552, 542, 545, 539, 540, 546, 547, 540, 543, 541, 545, 547, 549, 543, 544, 551, 542, 544, 548, 545, 550, 546, 553, 554, 557, 555, 545, 552, 0, 545, 555, 556, 548, 559, 558, 560, 566, 556, 547, 561, 563, 559, 562, 0, 563, 548, 571, 551, 557, 553, 568, 557, 565, 567, 560, 554, 558, 555, 556, 568, 559, 558, 560, 561, 562, 564, 561, 563, 566, 562, 573, 569, 572, 564, 570, 565, 567, 568, 571, 565, 567, 570, 574, 573, 576, 579, 575, 574, 0, 578, 581, 574, 564, 569, 572, 575, 577, 573, 569, 572, 578, 570, 580, 581, 584, 577, 574, 579, 582, 574, 576, 576, 579, 575, 574, 585, 578, 581, 574, 586, 582, 592, 587, 577, 580, 588, 589, 0, 591, 580, 592, 593, 590, 585, 596, 582, 584, 597, 595, 591, 603, 596, 585, 586, 587, 587, 586, 588, 592, 587, 589, 593, 588, 589, 590, 591, 594, 598, 593, 590, 595, 596, 600, 601, 597, 595, 599, 602, 605, 608, 594, 587, 603, 600, 599, 598, 604, 606, 606, 611, 607, 601, 602, 594, 598, 610, 613, 612, 615, 600, 601, 608, 605, 599, 602, 605, 608, 604, 610, 609, 614, 620, 0, 604, 607, 617, 606, 607, 609, 612, 615, 611, 610, 625, 612, 615, 616, 618, 613, 617, 619, 616, 621, 622, 614, 626, 609, 614, 628, 623, 621, 618, 617, 620, 619, 619, 624, 630, 0, 625, 625, 622, 619, 624, 618, 626, 632, 619, 616, 621, 622, 623, 626, 627, 629, 633, 623, 633, 634, 630, 628, 619, 619, 624, 630, 631, 635, 636, 627, 629, 631, 642, 632, 632, 635, 637, 0, 627, 638, 639, 627, 629, 633, 634, 637, 634, 643, 638, 639, 641, 640, 0, 636, 635, 636, 627, 641, 631, 640, 645, 644, 647, 637, 642, 648, 638, 639, 646, 649, 643, 647, 645, 648, 643, 651, 653, 641, 640, 644, 646, 650, 654, 656, 649, 652, 655, 645, 644, 647, 654, 653, 648, 650, 655, 646, 649, 662, 652, 0, 0, 664, 657, 653, 658, 659, 656, 651, 650, 654, 656, 657, 652, 655, 659, 658, 660, 660, 661, 662, 663, 667, 666, 665, 662, 660, 661, 664, 664, 657, 666, 658, 659, 663, 669, 0, 674, 667, 668, 672, 673, 670, 676, 660, 660, 661, 665, 663, 667, 666, 665, 668, 670, 672, 671, 675, 669, 677, 674, 680, 673, 669, 671, 674, 676, 668, 672, 673, 670, 676, 679, 678, 681, 682, 683, 675, 688, 680, 0, 677, 678, 671, 675, 684, 677, 681, 680, 685, 0, 683, 679, 682, 686, 687, 688, 689, 690, 679, 678, 681, 682, 683, 691, 688, 692, 684, 687, 689, 691, 690, 684, 685, 0, 693, 685, 686, 694, 695, 697, 686, 687, 693, 689, 690, 698, 699, 697, 700, 702, 691, 702, 692, 699, 703, 701, 695, 704, 0, 705, 693, 693, 0, 703, 694, 695, 697, 706, 712, 693, 701, 700, 709, 699, 707, 700, 702, 698, 705, 709, 712, 703, 701, 707, 718, 719, 705, 706, 708, 704, 708, 0, 0, 715, 706, 712, 0, 721, 722, 709, 0, 707, 718, 715, 723, 727, 719, 0, 0, 722, 730, 718, 719, 724, 727, 708, 710, 728, 721, 710, 715, 725, 726, 710, 721, 722, 710, 723, 729, 732, 728, 723, 727, 710, 710, 729, 710, 760, 726, 724, 724, 710, 730, 710, 728, 734, 710, 725, 725, 726, 710, 732, 733, 710, 734, 729, 732, 735, 733, 735, 710, 710, 736, 710, 731, 731, 737, 731, 738, 760, 731, 737, 734, 739, 742, 731, 0, 741, 0, 733, 0, 731, 731, 743, 735, 745, 736, 0, 738, 736, 731, 731, 731, 740, 731, 738, 742, 731, 737, 739, 739, 742, 731, 741, 741, 740, 744, 743, 731, 731, 743, 746, 745, 748, 747, 750, 749, 751, 752, 754, 740, 748, 750, 753, 766, 751, 756, 759, 744, 747, 0, 754, 759, 744, 755, 762, 746, 752, 746, 749, 748, 747, 750, 749, 751, 752, 754, 755, 757, 753, 753, 758, 756, 756, 759, 761, 766, 757, 763, 765, 767, 755, 762, 763, 769, 0, 758, 768, 0, 0, 771, 770, 773, 774, 772, 757, 776, 761, 758, 0, 0, 765, 761, 775, 777, 776, 765, 778, 780, 768, 763, 771, 767, 772, 768, 770, 769, 771, 770, 773, 774, 772, 775, 776, 779, 781, 777, 778, 782, 783, 775, 777, 779, 784, 778, 780, 786, 788, 787, 0, 788, 784, 0, 781, 789, 791, 792, 782, 794, 790, 794, 779, 781, 797, 786, 782, 787, 793, 797, 795, 784, 783, 819, 786, 788, 787, 789, 790, 792, 791, 793, 789, 791, 792, 796, 794, 790, 795, 798, 799, 801, 800, 806, 0, 793, 797, 795, 802, 796, 800, 802, 799, 803, 805, 819, 808, 807, 809, 801, 0, 803, 796, 807, 809, 798, 798, 799, 801, 800, 806, 812, 814, 816, 0, 802, 812, 803, 808, 805, 803, 805, 810, 808, 807, 809, 811, 813, 803, 810, 814, 815, 817, 811, 813, 815, 816, 818, 812, 814, 816, 817, 820, 822, 823, 818, 821, 824, 827, 810, 825, 822, 0, 811, 813, 828, 826, 823, 815, 817, 820, 821, 828, 825, 818, 830, 829, 831, 824, 820, 822, 823, 830, 821, 824, 827, 833, 825, 826, 836, 832, 833, 828, 826, 829, 838, 831, 832, 834, 837, 835, 839, 830, 829, 831, 840, 834, 835, 838, 841, 842, 843, 840, 833, 849, 0, 844, 832, 846, 0, 845, 836, 838, 847, 844, 834, 848, 835, 845, 847, 850, 837, 840, 839, 843, 845, 853, 852, 843, 851, 846, 841, 842, 844, 855, 846, 849, 845, 851, 854, 847, 852, 848, 848, 850, 845, 854, 850, 856, 857, 858, 859, 0, 861, 852, 858, 851, 856, 853, 862, 860, 855, 863, 859, 862, 865, 854, 867, 864, 863, 867, 857, 868, 865, 870, 856, 857, 873, 859, 861, 861, 870, 858, 860, 874, 868, 862, 860, 875, 863, 864, 871, 865, 876, 867, 864, 877, 871, 877, 868, 875, 870, 896, 873, 873, 0, 878, 874, 881, 880, 0, 874, 879, 882, 0, 875, 0, 0, 871, 872, 876, 872, 880, 877, 879, 872, 882, 872, 885, 878, 881, 884, 872, 878, 896, 881, 880, 872, 886, 879, 882, 885, 883, 872, 887, 889, 872, 883, 872, 884, 886, 890, 872, 888, 872, 885, 887, 891, 884, 872, 889, 886, 892, 888, 872, 886, 893, 894, 892, 897, 891, 887, 889, 890, 883, 888, 895, 886, 890, 893, 888, 898, 900, 901, 891, 894, 903, 0, 901, 892, 888, 902, 0, 893, 894, 903, 905, 895, 906, 902, 910, 897, 907, 895, 909, 0, 908, 0, 898, 911, 901, 905, 915, 903, 900, 907, 0, 0, 902, 904, 906, 908, 910, 905, 904, 906, 904, 910, 911, 907, 909, 909, 904, 908, 912, 913, 911, 904, 904, 915, 914, 919, 920, 913, 904, 904, 904, 912, 914, 916, 917, 904, 921, 904, 922, 923, 924, 917, 930, 904, 921, 912, 913, 942, 904, 904, 920, 914, 922, 920, 927, 904, 916, 919, 925, 928, 916, 917, 924, 921, 929, 922, 925, 924, 932, 931, 933, 923, 927, 934, 930, 929, 932, 928, 937, 942, 934, 927, 936, 940, 938, 925, 928, 931, 935, 936, 939, 929, 933, 937, 0, 932, 931, 933, 948, 946, 934, 935, 938, 941, 940, 937, 948, 944, 939, 936, 940, 938, 946, 941, 947, 935, 949, 939, 944, 950, 951, 947, 952, 953, 957, 948, 946, 0, 950, 949, 941, 956, 951, 958, 944, 959, 964, 962, 960, 964, 0, 947, 957, 949, 952, 953, 950, 951, 962, 952, 953, 957, 960, 956, 965, 966, 963, 970, 956, 958, 958, 963, 964, 964, 962, 960, 964, 959, 966, 967, 969, 970, 968, 971, 972, 0, 967, 974, 965, 969, 973, 965, 966, 968, 970, 971, 975, 973, 963, 976, 977, 979, 981, 983, 991, 980, 967, 969, 975, 968, 971, 980, 982, 977, 983, 984, 972, 973, 985, 974, 986, 976, 988, 975, 981, 979, 976, 977, 979, 981, 983, 990, 980, 989, 982, 986, 991, 984, 992, 982, 985, 993, 984, 988, 989, 985, 994, 986, 995, 988, 996, 0, 990, 997, 999, 994, 998, 1001, 990, 993, 989, 999, 997, 1000, 998, 992, 1002, 1003, 993, 1004, 1005, 1001, 995, 994, 1007, 995, 996, 996, 1006, 1011, 997, 999, 1010, 998, 1001, 1009, 1012, 1000, 1013, 1010, 1000, 1004, 1005, 0, 1009, 1016, 1004, 1005, 1002, 1003, 1006, 1014, 1015, 1018, 1016, 1006, 1007, 1019, 1012, 1010, 1017, 1011, 1009, 1012, 1021, 1013, 1020, 1023, 1017, 1014, 1015, 1022, 1016, 1021, 1024, 1023, 1025, 1018, 1014, 1015, 1018, 1019, 1020, 1026, 1019, 1027, 1022, 1017, 1028, 1029, 1030, 1021, 1033, 1020, 1023, 1026, 1031, 1029, 1022, 1039, 1034, 1033, 1036, 1030, 1036, 1035, 1024, 1027, 1025, 0, 1026, 1031, 1027, 1035, 1038, 1028, 1029, 1030, 1034, 1033, 1042, 1040, 1038, 1031, 1043, 1044, 1039, 1034, 1040, 1036, 1047, 1045, 1035, 1042, 1049, 1048, 1043, 1046, 1050, 0, 1044, 1038, 1048, 0, 1052, 1051, 1053, 1042, 1040, 0, 1054, 1043, 1044, 1045, 1056, 1046, 1063, 1047, 1045, 0, 0, 1055, 1048, 1054, 1046, 1059, 1049, 1051, 1053, 1052, 1050, 1052, 1051, 1053, 1055, 1057, 1056, 1054, 1058, 1060, 1064, 1056, 1061, 1063, 1066, 1059, 1058, 1057, 1055, 1065, 1061, 1060, 1059, 1064, 1067, 1071, 1066, 1068, 1065, 0, 1072, 1073, 1057, 1069, 1068, 1058, 1060, 1064, 1074, 1061, 1077, 1066, 1069, 1075, 1069, 1067, 1065, 1069, 1071, 1076, 1079, 1067, 1071, 1073, 1068, 1069, 1072, 1072, 1073, 1079, 1069, 1080, 1076, 1075, 1077, 1074, 0, 1077, 1081, 1069, 1075, 1069, 1078, 1082, 1069, 1084, 1076, 1079, 1083, 1080, 1078, 1082, 1085, 1086, 1088, 1089, 1090, 1091, 1080, 1095, 1081, 1086, 1093, 1083, 1091, 1081, 1092, 1084, 1085, 1078, 1082, 1095, 1084, 1094, 1176, 1083, 1100, 1089, 1090, 1085, 1086, 1088, 1089, 1090, 1091, 1093, 1095, 1096, 1092, 1093, 1097, 1094, 1098, 1092, 1099, 1101, 1100, 1102, 1097, 1096, 1094, 1176, 1103, 1100, 1104, 1102, 1099, 1098, 1103, 1105, 1101, 1106, 1111, 1104, 1096, 1109, 1112, 1097, 1107, 1098, 1108, 1099, 1101, 1106, 1102, 1107, 1113, 1108, 1112, 1103, 1105, 1104, 1114, 1109, 1115, 1116, 1105, 1117, 1106, 1113, 1119, 1115, 1109, 1112, 1111, 1107, 1121, 1108, 1119, 1118, 1120, 1114, 1117, 1113, 1118, 0, 1122, 1116, 1124, 1114, 1121, 1115, 1116, 1120, 1117, 1126, 1142, 1119, 1125, 1128, 0, 0, 1124, 1121, 1127, 1130, 1129, 1120, 1133, 1142, 0, 1118, 1122, 1122, 1123, 1124, 1125, 1123, 1123, 0, 1131, 1128, 1123, 1142, 1129, 1125, 1128, 1126, 1123, 1132, 1127, 1127, 1123, 1129, 1133, 1133, 1123, 1130, 1135, 1139, 1134, 1123, 1131, 1138, 1123, 1123, 1134, 1131, 1136, 1123, 1136, 1132, 1138, 1137, 1140, 1123, 1132, 1139, 1144, 1123, 1137, 1140, 1141, 1145, 1135, 1135, 1139, 1134, 0, 1143, 1138, 1146, 1136, 1149, 1147, 1136, 1151, 1136, 1143, 0, 1137, 1140, 0, 1153, 1141, 1150, 1150, 0, 0, 1141, 1144, 0, 1151, 1146, 1156, 1145, 1143, 1147, 1146, 1149, 1149, 1147, 1148, 1151, 1154, 1160, 1153, 1148, 1155, 1148, 1153, 1148, 1156, 1148, 1150, 1158, 1154, 1155, 1157, 1159, 1148, 1156, 1163, 1157, 1159, 1162, 1161, 1160, 1165, 1148, 1163, 1154, 1160, 1158, 1148, 1155, 1148, 1164, 1148, 1161, 1148, 1165, 1158, 1162, 1166, 1164, 1159, 1167, 1168, 1163, 1157, 1173, 1162, 1161, 1172, 1165, 1169, 1170, 1171, 1174, 1173, 1174, 1178, 1179, 1164, 1175, 0, 1168, 1177, 1169, 1181, 1171, 1172, 1167, 1167, 1168, 1166, 1182, 1173, 1170, 1177, 1172, 1184, 1169, 1170, 1171, 1174, 1175, 1179, 1178, 1179, 1185, 1175, 1183, 1181, 1177, 1186, 1181, 1187, 1182, 1184, 1183, 1188, 1186, 1182, 1189, 1190, 1191, 1192, 1184, 1193, 0, 1190, 1191, 1194, 1195, 0, 1193, 1185, 0, 1183, 1196, 1195, 1186, 1198, 1187, 1197, 1189, 1188, 1188, 1199, 1201, 1189, 1190, 1191, 1192, 1211, 1193, 1194, 1199, 1202, 1194, 1195, 1196, 1197, 1211, 1203, 1204, 1196, 1198, 1205, 1198, 1202, 1197, 1207, 1201, 1206, 1199, 1201, 1209, 1204, 1212, 1208, 1211, 1214, 1210, 1216, 1202, 1203, 1217, 1213, 1219, 1205, 1203, 1204, 1206, 1207, 1205, 1214, 1222, 1218, 1207, 1212, 1206, 1208, 1209, 1209, 1210, 1212, 1208, 1213, 1214, 1210, 1220, 1223, 1222, 1221, 1213, 1216, 1229, 0, 1217, 1218, 1219, 1221, 1224, 1222, 1218, 1227, 1228, 1226, 1220, 1224, 1228, 1230, 1227, 1233, 1231, 1235, 0, 1220, 1223, 1226, 1221, 1236, 1235, 1239, 1234, 1237, 0, 0, 1229, 1224, 1234, 1238, 1227, 1228, 1226, 1231, 1236, 1234, 1237, 1240, 1238, 1231, 1235, 1230, 1244, 1233, 1240, 1242, 1236, 1239, 1239, 1234, 1237, 1241, 1243, 1241, 1242, 1234, 1238, 1245, 1246, 1248, 1249, 1245, 1250, 1251, 1240, 1249, 0, 1248, 1252, 1244, 1253, 1250, 1242, 0, 1243, 1261, 1254, 1258, 1241, 1243, 1246, 1251, 1257, 1253, 1245, 1246, 1248, 1252, 1254, 1250, 1251, 1256, 1249, 1255, 1256, 1252, 1255, 1253, 1259, 1262, 1257, 1263, 1258, 1254, 1258, 1255, 1265, 1261, 0, 1257, 1264, 1259, 1268, 1256, 1265, 1264, 1269, 1263, 1256, 1271, 1255, 1256, 1262, 1255, 0, 1259, 1262, 1267, 1263, 1266, 1266, 1270, 1274, 1265, 1268, 1277, 1267, 1272, 1269, 1268, 1270, 1271, 1264, 1269, 1272, 1274, 1271, 1278, 1275, 1281, 0, 1276, 1282, 1284, 1267, 0, 1266, 1275, 1270, 1274, 1276, 1277, 1277, 1279, 1272, 1280, 1284, 1282, 1283, 1288, 1278, 1285, 1279, 1280, 1278, 1275, 1283, 1286, 1276, 1282, 1284, 1281, 1289, 1285, 1290, 1287, 1299, 1292, 1291, 1286, 1279, 1288, 1280, 1287, 1293, 1283, 1288, 1291, 1285, 1296, 1300, 1294, 1289, 1295, 1286, 1292, 1290, 1298, 1304, 1289, 1296, 1290, 1287, 1294, 1292, 1291, 1297, 1305, 1299, 1301, 1293, 1293, 1297, 1302, 1295, 1308, 1296, 1307, 1294, 1298, 1295, 0, 1300, 1306, 1298, 1304, 1307, 1310, 1308, 1311, 1305, 1309, 1313, 1297, 1305, 1301, 1301, 0, 1312, 1302, 1302, 1306, 1308, 1309, 1307, 1312, 1314, 1310, 1315, 1316, 1306, 1313, 1320, 1319, 1310, 1311, 1311, 1316, 1309, 1313, 1319, 1315, 1317, 1321, 1318, 1312, 1322, 1317, 1314, 1318, 1323, 1321, 0, 1314, 1322, 1315, 1316, 1324, 1320, 1320, 1319, 1325, 1328, 1327, 1326, 1329, 1330, 1330, 1323, 1325, 1321, 1326, 1327, 1322, 1317, 1331, 1318, 1323, 1332, 1324, 1334, 1333, 0, 0, 1324, 0, 1332, 1329, 1325, 1335, 1327, 1326, 1329, 1330, 1328, 1336, 1337, 1335, 1338, 1341, 1339, 1345, 1333, 1336, 1337, 1332, 1338, 1331, 1333, 1340, 1343, 1341, 1334, 1339, 1342, 1340, 1335, 1344, 1346, 1349, 1347, 1350, 1336, 1337, 1351, 1338, 1341, 1339, 1345, 1348, 0, 1356, 1344, 1349, 1343, 1355, 1340, 1343, 1351, 1350, 1342, 1342, 1347, 1356, 1344, 1346, 1349, 1347, 1350, 1352, 1354, 1351, 1348, 1352, 1357, 1359, 1348, 1355, 1356, 1354, 1358, 1357, 1355, 1360, 1361, 1365, 1352, 1362, 0, 0, 1363, 1358, 0, 1364, 1352, 1366, 1352, 1354, 1371, 1362, 1352, 1357, 1359, 1370, 1363, 1360, 0, 1358, 1365, 1378, 1360, 1377, 1365, 1352, 1362, 1364, 1361, 1363, 1366, 1367, 1364, 1368, 1366, 1373, 1369, 1371, 1367, 1375, 1381, 0, 1368, 1369, 1373, 1375, 1376, 1370, 1379, 1377, 1377, 1384, 1383, 1378, 1385, 1379, 1388, 1389, 1367, 1386, 1368, 0, 1373, 1369, 1389, 1385, 1375, 1381, 1376, 1390, 1386, 1391, 1395, 1376, 1397, 1379, 1383, 1392, 1384, 1383, 1388, 1385, 1393, 1388, 1389, 1394, 1386, 1390, 1393, 1392, 1396, 1407, 1398, 1394, 1395, 1400, 1390, 1391, 1391, 1395, 1397, 1397, 1399, 1396, 1392, 1402, 1401, 1400, 1401, 1393, 1398, 1399, 1394, 1403, 1404, 1405, 1406, 1396, 1407, 1398, 1409, 1408, 1400, 1404, 1410, 1411, 1403, 1409, 1406, 1399, 1411, 1402, 1402, 1401, 1413, 1417, 1415, 1405, 1412, 0, 1403, 1404, 1405, 1406, 1408, 1414, 1419, 1409, 1408, 1418, 1410, 1410, 1411, 1414, 1412, 1419, 1420, 1413, 1415, 1424, 1418, 1413, 1417, 1415, 1422, 1412, 1421, 1421, 1423, 1420, 1423, 1426, 1414, 1419, 1421, 1425, 1418, 1422, 1426, 1429, 1427, 1428, 1430, 1420, 1433, 1424, 1424, 1427, 1431, 1430, 1432, 1422, 1435, 1421, 1421, 1423, 1434, 1425, 1426, 1428, 1438, 1429, 1425, 1434, 1440, 1437, 1429, 1427, 1428, 1430, 1455, 1439, 1432, 1431, 1442, 1431, 1433, 1432, 1437, 1439, 1444, 0, 1445, 1434, 1435, 1440, 1443, 1438, 1447, 1443, 1446, 1440, 1437, 1448, 1449, 1451, 1442, 1447, 1439, 1450, 0, 1442, 1455, 1446, 1451, 1448, 1444, 1444, 1445, 1445, 1459, 1456, 1452, 1443, 1460, 1447, 1453, 1446, 1449, 1463, 1448, 1449, 1451, 1453, 1457, 1450, 1450, 1452, 1459, 1454, 1462, 1464, 1454, 1456, 1466, 0, 1460, 1459, 1456, 1452, 1457, 1460, 1465, 1453, 1454, 1461, 1463, 1461, 1457, 1467, 1468, 1457, 1469, 1454, 1462, 1475, 1454, 1462, 1473, 1454, 1466, 1466, 1472, 1464, 1465, 1473, 1470, 1457, 1471, 1465, 1472, 1454, 1461, 1474, 1469, 1467, 1467, 1471, 1476, 1469, 1470, 1477, 1468, 1478, 1479, 1473, 1481, 1475, 1479, 1472, 1480, 1484, 1482, 1470, 1485, 1471, 1483, 1474, 1484, 0, 1474, 1485, 0, 1477, 0, 1483, 1491, 1486, 1477, 1487, 1476, 1479, 1480, 1481, 1482, 1478, 1488, 1480, 1484, 1482, 1486, 1485, 1487, 1483, 1489, 1492, 1490, 1495, 1493, 1494, 1497, 1488, 1492, 1495, 1486, 1493, 1487, 1498, 1491, 1489, 1490, 1499, 1494, 1488, 1498, 1500, 1501, 1502, 1505, 1507, 0, 1489, 1492, 1490, 1495, 1493, 1494, 1497, 1501, 1503, 1502, 1504, 1503, 1499, 1498, 1506, 1505, 0, 1499, 1507, 1504, 1500, 1500, 1501, 1502, 1505, 1507, 1506, 1508, 1509, 1514, 1508, 1511, 1513, 1515, 1513, 1503, 1511, 1504, 1516, 1509, 1518, 1506, 1519, 1511, 1520, 1508, 1517, 0, 1521, 1518, 0, 1531, 1523, 1514, 1508, 1509, 1514, 1508, 1511, 1513, 1515, 1517, 1521, 1511, 1522, 1516, 1519, 1518, 1524, 1519, 1525, 1520, 1522, 1517, 1523, 1521, 1526, 1528, 1525, 1523, 1527, 1529, 1530, 1531, 1529, 1528, 1532, 1526, 1534, 1533, 1524, 1522, 1535, 1536, 1537, 1524, 1533, 1525, 1527, 1529, 1530, 1535, 1534, 1526, 1528, 1537, 1536, 1527, 1529, 1530, 1538, 1529, 1541, 1532, 1541, 1534, 1533, 1542, 1544, 1535, 1536, 1537, 1543, 1545, 1546, 1538, 1542, 1553, 1547, 1544, 1549, 1550, 1553, 0, 1552, 1548, 0, 1538, 1548, 1541, 1550, 1545, 1547, 1552, 1542, 1544, 1546, 1559, 1543, 1543, 1545, 1546, 1549, 1548, 1547, 1547, 1556, 1549, 1550, 1553, 1551, 1552, 1548, 1555, 1558, 1548, 1551, 1557, 1556, 1547, 1561, 1560, 1557, 1562, 1563, 1564, 1555, 1567, 1569, 1559, 1560, 1565, 1568, 1556, 1567, 1570, 1558, 1551, 1572, 1580, 1555, 1558, 1574, 0, 1557, 1568, 1563, 1561, 1560, 1570, 1571, 1563, 1565, 1580, 1567, 1562, 1571, 1564, 1565, 1568, 1569, 1574, 1570, 1576, 1577, 1578, 1580, 1579, 1581, 1574, 1572, 1576, 1577, 1582, 1571, 1583, 1584, 1571, 1585, 1586, 1588, 1593, 1581, 1571, 1578, 1579, 1582, 1587, 1583, 1589, 1576, 1577, 1578, 0, 1579, 1581, 1589, 1584, 1591, 1590, 1582, 1587, 1583, 1584, 1592, 1598, 1591, 1588, 1590, 1595, 1585, 1586, 1594, 1593, 1587, 1599, 1589, 1594, 1592, 1596, 1595, 1600, 1599, 1601, 1584, 1591, 1590, 1602, 1596, 1603, 1609, 1592, 1598, 1605, 1604, 1608, 1595, 1605, 1607, 1594, 0, 1613, 1599, 1611, 1600, 1601, 1596, 1608, 1600, 1602, 1601, 1603, 1604, 1607, 1602, 1610, 1603, 1609, 1611, 1612, 1605, 1604, 1608, 1610, 1614, 1607, 1616, 1612, 1613, 1615, 1611, 1618, 1617, 1619, 1620, 1621, 1622, 1614, 1624, 1618, 1619, 1616, 1610, 1623, 1625, 1622, 1612, 1617, 1626, 1615, 1621, 1614, 1628, 1616, 1629, 1630, 1615, 1631, 1618, 1617, 1619, 1632, 1621, 1622, 1623, 1624, 1620, 1633, 1625, 1634, 1623, 1625, 1629, 1635, 1628, 1626, 1632, 1636, 0, 1628, 1635, 1629, 1636, 1639, 1631, 1640, 1637, 1630, 1632, 1638, 1641, 1642, 1633, 1634, 1633, 1637, 1634, 1643, 1638, 1644, 1635, 1645, 1650, 1651, 1636, 1639, 1642, 1640, 1641, 1643, 1639, 1648, 1640, 1637, 1645, 1646, 1638, 1641, 1642, 1645, 1649, 1644, 1646, 1647, 1643, 1652, 1644, 1656, 1645, 1650, 1647, 1652, 1649, 1648, 1656, 1651, 1654, 1655, 1648, 1660, 1657, 1645, 1646, 1659, 1654, 1647, 1661, 1649, 1655, 1658, 1647, 1658, 1652, 1662, 1656, 1663, 1667, 1647, 1664, 1669, 1662, 1672, 1658, 1654, 1655, 1657, 1660, 1657, 1665, 1659, 1659, 1666, 1670, 1661, 1665, 1674, 1658, 1666, 1658, 1668, 1662, 1673, 1663, 1667, 1664, 1664, 1675, 1676, 1675, 1677, 1673, 1669, 1678, 1672, 1680, 1665, 1670, 1684, 1666, 1670, 1679, 0, 1668, 1692, 1687, 1682, 1668, 1674, 1673, 1687, 1683, 1676, 1682, 1675, 1676, 1689, 1677, 1683, 1678, 1678, 1688, 1685, 1679, 1681, 1681, 1681, 1680, 1679, 1685, 1684, 1681, 1691, 1682, 1688, 1696, 1692, 1687, 1683, 1681, 1690, 1689, 1693, 1689, 1691, 1697, 1697, 1694, 1688, 1685, 1698, 1681, 1681, 1681, 1694, 1695, 1690, 1699, 1681, 1691, 1693, 1695, 1696, 1700, 1699, 1701, 1702, 1690, 1700, 1693, 1706, 1703, 1697, 1707, 1694, 1707, 1698, 1698, 1703, 1711, 1712, 1708, 1695, 1710, 1699, 1711, 1713, 1717, 1714, 1716, 1700, 1701, 1701, 1702, 1714, 1715, 1724, 1706, 1703, 1708, 1707, 1710, 1718, 1718, 1719, 1717, 1711, 1715, 1708, 1716, 1710, 1723, 1712, 1713, 1717, 1714, 1716, 1720, 1720, 1725, 1726, 1721, 1715, 1727, 1728, 1729, 1725, 1730, 1724, 1718, 1719, 1719, 1721, 1723, 1732, 1731, 1734, 1733, 1723, 1739, 1726, 1732, 1735, 1740, 1720, 1733, 1725, 1726, 1721, 1730, 1736, 1734, 1729, 1731, 1730, 1727, 1728, 1737, 1737, 1736, 1738, 1732, 1731, 1734, 1733, 1741, 1735, 1742, 1747, 1735, 1748, 1739, 1741, 1743, 1745, 1740, 0, 1736, 1746, 1742, 1749, 1745, 1756, 1746, 1737, 1752, 1738, 1738, 1749, 1743, 1747, 1750, 1741, 1752, 1742, 1747, 1743, 1748, 1753, 1754, 1743, 1745, 1766, 1750, 1755, 1746, 1757, 1749, 1758, 1756, 1759, 1760, 1752, 1758, 1761, 1762, 1743, 1760, 1750, 1769, 1754, 1753, 1755, 1762, 1758, 1753, 1754, 1761, 1763, 1757, 1768, 1755, 1764, 1757, 1766, 1758, 1765, 1759, 1760, 1764, 1758, 1761, 1762, 1765, 1767, 1771, 1769, 1770, 1773, 1774, 1763, 1775, 1768, 1776, 1774, 1763, 1767, 1768, 1775, 1764, 1778, 1780, 1779, 1765, 1781, 1774, 1773, 1779, 1771, 1785, 1783, 1767, 1771, 1770, 1770, 1773, 1774, 0, 1775, 1788, 1776, 1774, 1782, 1782, 1784, 1787, 1791, 1778, 1789, 1790, 1792, 1790, 1783, 1780, 1779, 1792, 1781, 1783, 1793, 1784, 1787, 1785, 1788, 1789, 1794, 1795, 1788, 1797, 1803, 1782, 1804, 1784, 1787, 1798, 1799, 1789, 1790, 1792, 1791, 1801, 1795, 1798, 1797, 1802, 1806, 1808, 1794, 1807, 0, 0, 1793, 1794, 1795, 0, 1797, 1803, 1799, 1804, 1805, 1809, 1798, 1799, 1812, 1801, 1810, 1805, 1801, 1808, 1807, 1802, 1802, 1814, 1808, 1815, 1807, 1816, 1806, 1818, 1819, 1821, 1809, 1820, 1810, 1825, 1812, 1805, 1809, 1823, 1815, 1812, 1826, 1810, 1818, 1819, 1822, 1814, 1824, 1828, 1814, 1831, 1815, 1816, 1816, 1820, 1818, 1819, 1821, 1825, 1820, 1823, 1825, 1830, 1822, 1827, 1823, 1828, 1829, 1826, 1824, 1830, 1827, 1822, 1831, 1824, 1828, 1829, 1831, 1832, 1833, 1835, 1834, 1837, 1836, 0, 0, 1839, 1840, 1841, 1830, 1834, 1827, 1836, 1842, 1829, 1837, 1840, 1839, 1835, 1843, 1832, 1844, 1850, 1846, 1847, 1832, 1841, 1835, 1834, 1837, 1836, 1833, 1839, 1839, 1840, 1841, 1844, 1843, 1847, 1842, 1842, 1845, 1852, 1853, 1839, 1846, 1843, 1845, 1844, 1850, 1846, 1847, 1854, 1856, 1853, 1858, 1860, 1859, 1857, 0, 0, 1861, 1862, 1854, 0, 1856, 1852, 1859, 1845, 1852, 1853, 1857, 1863, 1865, 0, 1868, 1866, 1869, 0, 1854, 1856, 1866, 1860, 1860, 1859, 1857, 1861, 1858, 1861, 1862, 1867, 1863, 1870, 1865, 1871, 1869, 1872, 1867, 1870, 1863, 1865, 1868, 1868, 1866, 1869, 1873, 1874, 1874, 1878, 1871, 1875, 1872, 1879, 1876, 1880, 1878, 1881, 1867, 1883, 1870, 1873, 1871, 1875, 1872, 1882, 1881, 1876, 1879, 1884, 1885, 1887, 1882, 1873, 1874, 1876, 1878, 1885, 1875, 1888, 1879, 1876, 1880, 1883, 1881, 1890, 1883, 1893, 1891, 0, 1889, 1884, 1882, 1887, 1876, 1896, 1884, 1885, 1887, 1889, 1895, 1897, 1903, 1899, 1888, 1893, 1888, 1890, 1891, 1895, 1898, 1899, 1890, 1896, 1893, 1891, 1897, 1889, 1901, 1902, 1904, 1904, 1896, 0, 1906, 1913, 1905, 1895, 1897, 1903, 1899, 1909, 1902, 1907, 1908, 1898, 1911, 1898, 1918, 1913, 1909, 0, 1912, 1901, 1914, 1901, 1902, 1904, 1905, 1906, 1910, 1906, 1913, 1905, 1916, 1907, 1908, 1910, 1909, 1917, 1907, 1908, 1916, 1914, 1912, 1918, 1919, 1920, 1911, 1912, 1922, 1914, 1917, 1921, 1923, 0, 0, 1910, 1924, 1920, 1921, 1916, 1925, 1927, 1928, 1932, 1917, 1926, 0, 1929, 1931, 1925, 1919, 1919, 1920, 1926, 1923, 1930, 0, 1928, 1921, 1923, 1922, 1924, 1933, 1924, 1926, 1932, 1931, 1925, 1927, 1928, 1932, 1933, 1926, 1929, 1929, 1931, 1935, 1936, 1937, 1935, 1926, 1930, 1930, 1938, 1937, 1940, 1942, 1943, 1938, 1933, 1939, 0, 1947, 1946, 1935, 1949, 1944, 0, 1948, 1947, 1940, 1942, 1936, 1935, 1936, 1937, 1935, 1946, 1939, 1943, 1981, 0, 1940, 1942, 1943, 1938, 1948, 1939, 1944, 1947, 1946, 1950, 1949, 1944, 1951, 1948, 1952, 1953, 1956, 1954, 1950, 1957, 1958, 1951, 1961, 1959, 0, 1952, 1960, 1958, 1953, 1954, 1981, 1956, 0, 1966, 1957, 1970, 1950, 1970, 1964, 1951, 1961, 1952, 1953, 1956, 1954, 1959, 1957, 1958, 1960, 1961, 1959, 1964, 1967, 1960, 1966, 1968, 1967, 1969, 1971, 1964, 1966, 1972, 1970, 1973, 1974, 1964, 1969, 1968, 1983, 1975, 1976, 0, 1977, 1978, 1982, 1979, 1971, 1975, 1964, 1967, 1979, 1973, 1968, 1988, 1969, 1971, 1984, 1978, 1972, 1991, 1973, 1974, 1983, 1976, 1977, 1983, 1975, 1976, 1980, 1977, 1978, 1985, 1979, 1980, 1990, 1984, 1982, 1989, 1985, 1992, 1988, 1993, 1995, 1984, 1994, 1996, 1991, 0, 2000, 1997, 1998, 1989, 1990, 1994, 0, 0, 1993, 1999, 1985, 2002, 1980, 1990, 1989, 1989, 1989, 1992, 1992, 1996, 1993, 2004, 0, 1994, 1996, 2008, 1995, 1997, 1997, 1998, 1989, 1999, 2000, 2003, 2002, 2005, 1999, 2007, 2002, 2007, 2003, 1989, 2005, 2010, 2004, 2009, 2011, 2008, 2004, 2009, 2012, 2014, 2008, 2015, 2013, 2010, 2016, 2017, 2014, 2012, 2003, 2016, 2005, 2018, 2007, 2013, 2020, 2019, 2011, 0, 2010, 0, 2009, 2011, 2022, 2015, 2024, 2012, 2014, 2019, 2015, 2013, 2025, 2016, 2017, 2027, 2018, 2023, 2020, 2022, 2018, 2021, 2021, 2020, 2019, 2023, 2025, 2026, 2024, 2030, 2029, 2022, 2031, 2024, 2032, 2035, 2026, 2030, 2032, 2025, 2031, 2035, 2027, 2033, 2023, 2034, 2033, 2040, 2021, 2029, 2036, 2039, 2037, 2034, 2026, 0, 2030, 2029, 2037, 2031, 2041, 2032, 2035, 2039, 2042, 2036, 2043, 2047, 2044, 2045, 2033, 2046, 2034, 2048, 2040, 0, 2050, 2036, 2039, 2037, 2043, 2044, 2041, 2045, 2051, 2053, 2054, 2041, 2042, 2049, 2050, 2042, 2056, 2043, 2047, 2044, 2045, 2046, 2046, 2052, 2048, 2049, 2052, 2050, 2060, 2059, 2061, 2063, 2054, 2065, 2051, 2051, 2053, 2054, 2056, 2057, 2049, 2052, 2058, 2056, 2059, 2064, 2057, 2068, 2067, 2058, 2052, 2062, 2066, 2052, 2064, 2060, 2059, 2061, 2063, 2062, 2065, 2069, 2071, 2070, 2066, 2073, 2057, 2076, 2072, 2058, 2067, 2075, 2064, 2073, 2068, 2067, 2070, 2077, 2062, 2066, 2071, 2072, 2078, 2081, 2080, 2077, 2082, 2079, 2069, 2071, 2070, 2083, 2073, 2075, 2076, 2072, 2079, 0, 2075, 2087, 2084, 2082, 0, 2085, 2077, 2080, 2093, 2081, 2084, 2078, 2081, 2080, 2082, 2082, 2079, 2085, 2086, 2090, 2083, 2091, 2095, 2090, 2089, 2096, 2086, 2092, 2087, 2084, 2082, 2089, 2085, 2091, 2094, 2093, 2099, 2096, 2101, 0, 2100, 2097, 2094, 2102, 2095, 2086, 2090, 2100, 2091, 2095, 2092, 2089, 2096, 2097, 2092, 2103, 2102, 2104, 2101, 2105, 2105, 2094, 2106, 2099, 2103, 2101, 2104, 2100, 2097, 2107, 2102, 2114, 2108, 2114, 0, 2111, 2109, 2118, 2118, 2112, 2115, 2123, 2103, 2113, 2104, 0, 2105, 2107, 2106, 2106, 2111, 2109, 0, 2109, 2115, 2117, 2107, 2108, 2114, 2108, 2109, 2112, 2111, 2109, 2118, 2113, 2112, 2115, 2116, 2120, 2113, 2121, 2122, 2123, 2116, 2124, 2125, 2117, 2109, 2126, 2109, 2124, 2117, 2127, 2122, 2128, 2129, 2128, 2136, 2131, 2130, 2120, 0, 2121, 2137, 2116, 2120, 2132, 2121, 2122, 2129, 2126, 2124, 2133, 2134, 2127, 2126, 2131, 2125, 2142, 2127, 2138, 2128, 2129, 2130, 2132, 2131, 2130, 2140, 2135, 2136, 2133, 2134, 2143, 2132, 2140, 2137, 2142, 2144, 2145, 2133, 2134, 2135, 0, 2138, 2146, 2142, 2145, 2138, 2151, 2147, 2149, 2147, 2150, 0, 2140, 2135, 2147, 2156, 2143, 2143, 2152, 2149, 2153, 2150, 2145, 2145, 2146, 2155, 2156, 2144, 2158, 2146, 2152, 2145, 2157, 2151, 2147, 2149, 2147, 2150, 2153, 2160, 2155, 0, 2156, 2158, 2157, 2152, 2161, 2153, 2164, 2162, 2163, 2167, 2155, 2165, 2170, 2158, 2162, 2168, 2171, 2157, 2169, 2173, 0, 2160, 0, 2163, 2160, 2172, 2161, 2175, 2174, 2180, 2179, 2161, 2176, 2164, 2162, 2163, 2167, 2165, 2165, 2168, 2169, 2174, 2168, 2172, 2170, 2169, 2173, 2176, 2171, 2177, 2178, 2181, 2172, 2175, 2175, 2174, 2179, 2179, 2178, 2176, 2182, 2180, 2177, 2184, 2181, 2185, 2186, 2188, 2189, 2187, 0, 2191, 2195, 2196, 2190, 2189, 2177, 2178, 2181, 2195, 2196, 2194, 2182, 2198, 2201, 2188, 2184, 2182, 2192, 2185, 2184, 2187, 2185, 2186, 2188, 2189, 2187, 2190, 2191, 2195, 2196, 2190, 2192, 2194, 2197, 2199, 2198, 2200, 2194, 2202, 2198, 2203, 2199, 2205, 2206, 2192, 2201, 2197, 2208, 2210, 2203, 2207, 2213, 0, 0, 2206, 2209, 2215, 2205, 2200, 2202, 2197, 2199, 2214, 2200, 2213, 2202, 2217, 2203, 2219, 2205, 2206, 2220, 2207, 2210, 2209, 2210, 0, 2207, 2213, 2208, 2215, 2221, 2209, 2215, 2216, 2216, 2222, 2223, 2214, 2214, 2226, 2219, 2217, 2217, 2230, 2219, 2221, 2228, 2231, 0, 2234, 2235, 2235, 2220, 2236, 2223, 2228, 2230, 2221, 2231, 2237, 2216, 2238, 2222, 2223, 2240, 2242, 2226, 2243, 2244, 2250, 2230, 2234, 2249, 2228, 2231, 2236, 2234, 2235, 2245, 2244, 2236, 2237, 2246, 2245, 2248, 2252, 2237, 2249, 2238, 2253, 2255, 2240, 2248, 2243, 2243, 2244, 2250, 2242, 2254, 2249, 2257, 2260, 2255, 2252, 2246, 2245, 2258, 2254, 2259, 2246, 2260, 2248, 2252, 2262, 2263, 2264, 2259, 2255, 2266, 2269, 2265, 2253, 2267, 2268, 0, 2254, 0, 2257, 2260, 2265, 2258, 0, 2269, 2258, 2272, 2259, 2266, 2264, 2270, 2262, 2262, 2263, 2264, 2271, 2267, 2266, 2269, 2265, 2268, 2267, 2268, 2270, 2273, 2274, 2275, 2276, 2272, 2277, 2271, 2273, 2278, 2272, 2279, 2280, 2281, 2270, 2282, 0, 2283, 2286, 2271, 0, 2280, 2284, 2287, 2274, 2286, 2279, 2288, 2273, 2274, 2275, 2276, 2285, 2277, 2287, 2281, 2278, 2284, 2279, 2280, 2281, 2282, 2282, 2283, 2283, 2286, 2290, 2285, 2289, 2284, 2287, 2291, 2292, 2296, 2288, 2293, 2289, 2294, 0, 2285, 2296, 2295, 2298, 2297, 2299, 2300, 2302, 2302, 2292, 2298, 2293, 2299, 0, 2290, 0, 2289, 2295, 2294, 2291, 2292, 2296, 2301, 2293, 2304, 2294, 2297, 2307, 2303, 2295, 2298, 2297, 2299, 2300, 2302, 2303, 2305, 2306, 2304, 2305, 2301, 2308, 2307, 2309, 2310, 2311, 2317, 2314, 0, 2301, 2306, 2304, 2314, 2313, 2307, 2303, 2310, 2311, 2316, 2317, 2320, 2309, 2313, 2305, 2306, 2315, 2318, 2308, 2308, 2315, 2309, 2310, 2311, 2317, 2314, 2319, 2321, 0, 2322, 2330, 2313, 2324, 2316, 2326, 2328, 2316, 2327, 2320, 2318, 2332, 2329, 2330, 2315, 2318, 0, 2327, 2332, 2319, 2329, 2338, 2328, 0, 2319, 2321, 2322, 2322, 2330, 2324, 2324, 2326, 2326, 2328, 2333, 2327, 2334, 2335, 2332, 2329, 2336, 2334, 2337, 2333, 2335, 2339, 2338, 2340, 2338, 2337, 2341, 2344, 2339, 2342, 2347, 2345, 2340, 2346, 2336, 2341, 2345, 2333, 2350, 2334, 2335, 2349, 0, 2336, 0, 2337, 2353, 2359, 2339, 0, 2340, 2346, 2351, 2341, 2344, 2342, 2342, 2347, 2345, 2349, 2346, 2351, 2352, 2354, 2358, 2350, 2353, 2355, 2349, 2356, 2357, 2352, 2358, 2353, 2359, 2354, 2355, 2360, 2356, 2351, 2361, 2357, 2362, 2363, 2366, 2365, 2364, 2452, 2367, 2352, 2354, 2358, 2363, 2365, 2355, 2367, 2356, 2357, 2364, 2369, 2370, 2368, 2371, 0, 2360, 2372, 2366, 2361, 2368, 2373, 2363, 2366, 2365, 2364, 2362, 2367, 2375, 2377, 2379, 2452, 2381, 2369, 0, 2378, 2375, 2370, 2369, 2370, 2368, 2371, 2372, 2378, 2372, 2379, 2380, 2377, 2373, 2388, 2387, 2382, 2383, 2380, 2381, 2375, 2377, 2379, 2382, 2381, 2383, 2386, 2378, 2389, 2391, 2396, 2392, 0, 2386, 2394, 2397, 2390, 2395, 2380, 2387, 2389, 2388, 2387, 2382, 2383, 2390, 2394, 2399, 2402, 2397, 2405, 2407, 2404, 2386, 2392, 2389, 2391, 2396, 2392, 2399, 2395, 2394, 2397, 2390, 2395, 2400, 2401, 2404, 2405, 2409, 2411, 2406, 2400, 2401, 2399, 2402, 2408, 2405, 2407, 2404, 2410, 2414, 0, 2419, 2408, 2420, 2413, 2421, 2411, 2412, 2420, 2422, 2400, 2401, 2406, 0, 2409, 2411, 2406, 2424, 2412, 2413, 2410, 2408, 2425, 2422, 2423, 2410, 2414, 2419, 2419, 2426, 2420, 2413, 2421, 2427, 2412, 2424, 2422, 2429, 2423, 2432, 2425, 2433, 2434, 2435, 2424, 2427, 2437, 2441, 2436, 2425, 2442, 2423, 0, 2438, 2437, 2434, 2426, 2439, 2445, 2441, 2427, 2432, 2446, 2433, 2429, 2435, 2432, 2436, 2433, 2434, 2435, 2438, 2442, 2437, 2441, 2436, 2439, 2442, 2443, 2444, 2438, 2447, 2448, 0, 2439, 2445, 2450, 2451, 2449, 2446, 2453, 2444, 2454, 2457, 2456, 2450, 2451, 2458, 2462, 2455, 2443, 2468, 2448, 2463, 0, 2443, 2444, 2465, 2447, 2448, 2449, 2455, 2453, 2450, 2451, 2449, 2456, 2453, 2454, 2454, 2457, 2456, 2461, 2464, 2458, 2462, 2455, 2463, 2464, 2465, 2463, 2466, 2467, 2468, 2465, 2470, 2461, 2469, 2471, 2472, 2474, 2475, 2473, 2476, 2481, 2467, 2474, 0, 0, 2461, 2477, 2472, 2480, 2466, 2485, 2464, 2471, 2470, 2466, 2467, 2469, 2473, 2470, 2478, 2469, 2471, 2472, 2474, 2481, 2473, 2483, 2481, 2477, 2475, 2480, 2476, 2485, 2477, 2478, 2480, 2486, 2485, 2487, 2489, 2488, 2483, 2490, 0, 2491, 2497, 2478, 2487, 2496, 2499, 2492, 2498, 2497, 2483, 2488, 2503, 2496, 2489, 2486, 2498, 2490, 2501, 2502, 2486, 0, 2487, 2489, 2488, 2492, 2490, 2491, 2491, 2497, 2500, 2502, 2496, 2499, 2492, 2498, 2501, 2506, 2500, 2503, 2504, 2510, 2509, 2508, 2512, 2501, 2502, 2513, 2504, 2506, 2508, 2511, 2514, 2511, 2515, 2516, 0, 2500, 2517, 2519, 2522, 2520, 0, 2527, 2506, 2509, 2526, 2504, 2510, 2509, 2508, 2528, 2527, 2529, 2516, 2520, 2512, 2519, 2511, 2513, 2517, 2515, 2516, 2522, 2514, 2517, 2519, 2522, 2520, 2523, 2527, 2524, 2526, 2526, 2531, 2533, 2532, 2535, 2528, 2537, 2529, 2542, 2523, 2524, 2540, 2538, 2537, 2543, 2542, 2540, 2539, 2545, 2546, 0, 0, 2548, 2523, 2533, 2524, 2532, 2547, 2531, 2533, 2532, 2535, 2539, 2537, 2538, 2542, 2548, 2553, 2550, 2538, 2543, 2543, 2554, 2540, 2539, 2545, 2546, 2550, 2552, 2548, 2555, 2547, 2557, 2558, 2547, 2552, 2561, 2559, 2556, 2560, 2562, 0, 0, 2572, 2553, 2550, 2559, 2558, 2554, 2554, 2556, 2563, 2560, 2567, 2569, 2552, 2570, 2555, 2567, 2557, 2558, 2569, 2575, 2570, 2559, 2556, 2560, 2562, 2561, 2568, 2571, 2574, 0, 2568, 2563, 2572, 2580, 2573, 2563, 2573, 2578, 2569, 2581, 2570, 2583, 2567, 2583, 2585, 2584, 2575, 0, 2571, 2590, 2591, 2574, 2580, 2568, 2571, 2574, 2587, 2586, 2586, 2578, 2580, 2573, 2590, 2581, 2578, 2588, 2581, 2586, 2583, 2584, 2585, 2585, 2584, 2589, 2588, 2592, 2590, 2591, 2587, 2593, 2589, 2594, 2595, 2587, 2586, 2586, 2596, 2593, 2592, 2598, 2595, 2597, 2588, 2599, 2594, 2600, 2597, 2598, 2601, 2604, 2589, 2602, 2592, 2593, 2603, 2596, 2593, 2605, 2594, 2595, 2604, 2606, 2609, 2596, 2593, 2612, 2598, 2608, 2606, 2609, 2599, 2600, 2600, 2597, 2601, 2601, 2604, 2602, 2602, 2605, 2603, 2603, 2607, 2607, 2605, 2608, 2610, 2613, 2606, 2609, 2614, 2616, 2612, 2610, 2608, 2617, 2618, 2619, 2621, 2614, 2627, 2626, 2622, 2623, 0, 0, 0, 0, 2624, 2607, 2626, 2613, 0, 2610, 2613, 2617, 2628, 2614, 2616, 2619, 2622, 2623, 2617, 2618, 2619, 2621, 2624, 2627, 2626, 2622, 2623, 2629, 2630, 2631, 2632, 2624, 2633, 2634, 2631, 2628, 2638, 2639, 2641, 2628, 2630, 2643, 2644, 2643, 2632, 2629, 2653, 0, 2646, 2642, 2633, 2644, 2647, 2651, 2629, 2630, 2634, 2632, 2638, 2633, 2634, 2631, 2642, 2638, 2639, 2641, 2646, 2647, 2643, 2644, 2650, 2651, 2650, 2655, 2652, 2646, 2642, 2657, 2653, 2647, 2651, 2652, 2661, 2657, 2659, 2660, 0, 2662, 2655, 2665, 2667, 2664, 2665, 2668, 2669, 2671, 0, 2650, 0, 0, 2655, 2652, 2671, 2673, 2657, 2662, 2659, 2660, 2661, 2661, 2670, 2659, 2660, 2664, 2662, 2665, 2665, 2667, 2664, 2665, 2668, 2669, 2671, 2672, 2675, 2673, 2676, 2677, 2670, 0, 2673, 2672, 2678, 2679, 2681, 2682, 2680, 2670, 2683, 2684, 2681, 2685, 2679, 2685, 0, 2686, 2688, 2683, 2676, 2677, 2672, 2680, 2689, 2676, 2677, 2690, 2675, 2682, 2691, 2678, 2679, 2681, 2682, 2680, 2693, 2683, 2696, 2692, 2685, 2688, 2701, 2684, 2686, 2688, 2689, 2692, 2693, 2690, 2698, 2689, 2694, 2699, 2690, 2700, 2691, 2691, 2707, 2694, 2701, 2702, 2703, 2693, 2698, 2696, 2692, 2699, 2704, 2701, 2703, 2705, 2702, 2706, 2706, 2708, 2710, 2698, 2700, 2694, 2699, 2711, 2700, 2708, 2713, 2707, 2715, 2704, 2702, 2703, 2713, 2722, 2720, 2705, 2717, 2704, 2718, 2723, 2705, 2719, 2706, 2725, 2708, 2710, 2723, 2717, 2727, 2718, 2711, 2725, 2719, 2713, 2724, 2715, 2720, 2730, 2724, 2728, 2722, 2720, 2734, 2717, 2733, 2718, 2723, 2744, 2719, 2729, 2725, 2733, 2728, 2735, 2727, 2727, 2737, 2729, 2736, 2738, 2739, 2724, 2740, 2736, 2730, 2743, 2728, 2739, 2741, 2745, 2742, 2733, 2743, 2748, 2734, 2735, 2729, 2745, 2746, 2744, 2735, 2740, 2749, 2737, 2741, 2736, 2738, 2739, 2742, 2740, 2750, 2747, 2743, 2746, 2755, 2741, 2745, 2742, 2747, 2754, 2748, 2755, 2756, 2757, 2758, 2746, 2749, 2759, 2740, 2749, 2760, 2762, 2766, 2763, 2754, 0, 2750, 2750, 2747, 2760, 2764, 2755, 2768, 2772, 2765, 2772, 2754, 2774, 2758, 0, 2757, 2758, 2765, 2762, 2756, 2767, 2767, 2760, 2762, 2759, 2763, 2770, 2764, 2771, 2766, 2767, 2773, 2764, 2776, 2768, 2772, 2765, 2771, 2775, 2774, 2778, 2770, 2779, 2781, 2780, 2773, 2775, 2767, 2767, 2783, 2782, 2776, 2784, 2770, 2785, 2771, 2781, 2788, 2773, 2793, 2776, 2786, 2798, 2794, 2793, 2775, 2780, 2778, 2794, 2779, 2781, 2780, 2782, 2795, 2791, 2801, 2783, 2782, 2795, 2784, 2796, 2785, 2791, 2786, 2788, 2799, 2793, 2800, 2786, 2798, 2794, 2802, 2803, 2801, 2800, 2805, 2806, 2807, 2799, 2808, 2795, 2791, 2801, 2806, 2811, 2807, 2796, 2796, 2813, 2815, 2814, 2816, 2799, 2817, 2800, 2818, 0, 2819, 2802, 2803, 0, 2808, 2815, 2806, 2807, 2820, 2808, 2805, 2817, 2824, 2828, 2811, 2814, 2825, 2818, 2813, 2815, 2814, 2822, 2823, 2817, 2826, 2818, 2816, 2819, 2822, 2823, 2820, 2825, 2828, 2829, 2824, 2820, 2836, 2830, 2833, 2824, 2828, 2829, 2836, 2825, 2830, 2826, 2831, 2833, 2822, 2823, 2834, 2826, 2837, 2831, 2839, 2840, 2835, 2835, 2841, 2848, 2829, 2834, 2840, 2836, 2830, 2833, 2835, 2842, 2844, 2849, 2850, 2845, 2854, 2831, 2837, 2844, 2839, 2834, 2856, 2837, 2860, 2839, 2840, 2835, 2835, 2845, 2848, 2857, 2857, 2842, 2841, 2858, 2858, 2850, 2842, 2844, 2849, 2850, 2845, 2854, 2859, 2859, 0, 2860, 2862, 2856, 2863, 2860, 2864, 2870, 2867, 2868, 2869, 2877, 2876, 2863, 2857, 2867, 2868, 2875, 2858, 2864, 2873, 2874, 2873, 2877, 0, 2880, 2882, 2859, 2881, 2862, 2876, 2863, 2869, 2864, 2870, 2867, 2868, 2869, 2877, 2876, 2875, 2874, 2879, 2880, 2875, 2883, 2884, 2873, 2874, 2885, 2888, 2879, 2880, 2882, 2881, 2881, 2886, 2887, 2884, 2886, 2891, 2889, 2887, 2889, 2895, 2890, 2891, 2896, 2892, 2879, 0, 2885, 2883, 2884, 2886, 2893, 2885, 2890, 2898, 2897, 2899, 2900, 2888, 2886, 2903, 2894, 2886, 2891, 2889, 2887, 2892, 2895, 2890, 2894, 2906, 2892, 2907, 2893, 2908, 2896, 2897, 2909, 2893, 2900, 2910, 2898, 2897, 2899, 2900, 2911, 2912, 2903, 2894, 2915, 2914, 2916, 2921, 2918, 2920, 2917, 0, 2906, 0, 2907, 2918, 2908, 2920, 2922, 2909, 2925, 2927, 2910, 2914, 2916, 2917, 2923, 2911, 2912, 2924, 2922, 2915, 2914, 2916, 2921, 2918, 2920, 2917, 2926, 2931, 2923, 2933, 2930, 2934, 2924, 2922, 2925, 2925, 2927, 2936, 2926, 2930, 2934, 2923, 2932, 2932, 2924, 2937, 2938, 0, 2939, 2945, 0, 2931, 2940, 2926, 2931, 2933, 2933, 2930, 2934, 2938, 2940, 2936, 2941, 2942, 2936, 2944, 2948, 2945, 2959, 2932, 2939, 2941, 2957, 2938, 2942, 2939, 2945, 2937, 2948, 2940, 2960, 2961, 2959, 2962, 2964, 2965, 2944, 0, 2964, 2941, 2942, 2966, 2944, 2948, 2967, 2959, 2957, 2972, 2970, 2957, 2968, 2967, 2970, 2965, 2971, 2973, 2979, 2960, 2961, 2975, 2962, 2964, 2965, 2968, 2966, 2976, 2974, 2979, 2966, 2972, 2971, 2967, 0, 2982, 2972, 2970, 2977, 2968, 2974, 2976, 2973, 2971, 2973, 2979, 2977, 2975, 2975, 2978, 2980, 2981, 2980, 2982, 2976, 2974, 2983, 2985, 2978, 2986, 2984, 2990, 2982, 2981, 2985, 2977, 2984, 2992, 2991, 2994, 2996, 2983, 2993, 2997, 2990, 2991, 2978, 2980, 2981, 2995, 3000, 2986, 2999, 2983, 2985, 2998, 2986, 2984, 2990, 2999, 2993, 3001, 3002, 2998, 2992, 2991, 2994, 2996, 3004, 2993, 2997, 3003, 3005, 3003, 3000, 2995, 2995, 3000, 3006, 2999, 3004, 3007, 2998, 3001, 3002, 3008, 3009, 3010, 3001, 3002, 3011, 3006, 3012, 3009, 3013, 3004, 3007, 3015, 3003, 3020, 3012, 3017, 3011, 3021, 3005, 3006, 3022, 3008, 3007, 3015, 3017, 3024, 3008, 3009, 3010, 3023, 3025, 3011, 3026, 3012, 3027, 3013, 3029, 3023, 3015, 3022, 3020, 3028, 3017, 3021, 3021, 3026, 3030, 3022, 3027, 3028, 3031, 3037, 3036, 3040, 3033, 0, 3023, 3024, 3029, 3026, 3033, 3027, 3025, 3029, 3034, 3036, 0, 3045, 3028, 3039, 3042, 3034, 3043, 3030, 3037, 3040, 3039, 3031, 3037, 3036, 3040, 3033, 3041, 3046, 3042, 3044, 3043, 3047, 3050, 3045, 3041, 3034, 3051, 3044, 3045, 3050, 3039, 3042, 3052, 3043, 3053, 3051, 3054, 3055, 3056, 3046, 3052, 3063, 0, 3041, 3046, 3057, 3044, 0, 3047, 3050, 3061, 3058, 3059, 3051, 3060, 0, 3065, 3067, 3054, 3052, 3072, 3053, 3060, 3054, 3056, 3056, 3064, 3057, 3063, 3055, 3069, 3078, 3057, 3058, 3059, 3074, 0, 3068, 3058, 3059, 3067, 3060, 3061, 3065, 3067, 3068, 3070, 3071, 3064, 3074, 3069, 3073, 3072, 3064, 3070, 3071, 3076, 3069, 3078, 3073, 0, 3081, 3074, 3079, 3068, 3080, 3079, 3082, 0, 3081, 3083, 0, 3084, 3070, 3071, 3082, 3089, 3086, 3073, 3085, 3096, 3079, 3076, 3076, 3083, 3088, 3088, 3080, 3081, 3091, 3079, 3086, 3080, 3079, 3082, 3092, 3093, 3083, 3084, 3084, 3090, 3085, 3089, 3089, 3086, 3094, 3085, 3096, 3090, 3095, 3098, 3097, 3088, 3099, 3100, 3091, 3091, 3095, 3093, 3101, 3102, 3092, 3092, 3093, 3106, 3094, 3103, 3090, 3102, 3113, 0, 3115, 3094, 3097, 3100, 3098, 3095, 3098, 3097, 3101, 3099, 3100, 3104, 3109, 3107, 3110, 3101, 3102, 3103, 3111, 3104, 3106, 3107, 3103, 3112, 3113, 3113, 3111, 3115, 3118, 3116, 3119, 3112, 3120, 3122, 3109, 3117, 3110, 3116, 3104, 3109, 3107, 3110, 3123, 3117, 3124, 3111, 3126, 3132, 3129, 3133, 3112, 0, 3120, 3130, 3118, 3118, 3116, 3119, 3131, 3120, 3122, 3130, 3117, 0, 3124, 0, 3131, 0, 3126, 3123, 3129, 3124, 0, 3126, 3132, 3129, 3133, 0, 0, 0, 3130, 0, 0, 0, 0, 3131, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3145, 3145, 0, 3145, 3145, 3145, 3145, 3146, 3146, 0, 0, 0, 3146, 3146, 3147, 3147, 0, 0, 3147, 0, 3147, 3148, 0, 0, 0, 0, 0, 3148, 3149, 3149, 0, 0, 0, 3149, 3149, 3150, 0, 0, 0, 0, 0, 3150, 3151, 3151, 0, 3151, 3151, 3151, 3151, 3152, 0, 0, 0, 0, 0, 3152, 3153, 3153, 0, 0, 0, 3153, 3153, 3154, 3154, 0, 3154, 3154, 3154, 3154, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136 } ; 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 #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; int inc_toplevel; }; static struct inc_state* config_include_stack = NULL; static int inc_depth = 0; static int inc_prev = 0; static int num_args = 0; static int inc_toplevel = 0; void init_cfg_parse(void) { config_include_stack = NULL; inc_depth = 0; inc_prev = 0; num_args = 0; inc_toplevel = 0; } static void config_start_include(const char* filename, int toplevel) { FILE *input; struct inc_state* s; char* nm; if(inc_depth+1 > 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)); inc_depth++; s->filename = cfg_parser->filename; s->line = cfg_parser->line; s->buffer = YY_CURRENT_BUFFER; s->inc_toplevel = inc_toplevel; s->next = config_include_stack; config_include_stack = s; cfg_parser->filename = nm; cfg_parser->line = 1; inc_toplevel = toplevel; yy_switch_to_buffer(yy_create_buffer(input, YY_BUF_SIZE)); } static void config_start_include_glob(const char* filename, int toplevel) { /* check for wildcards */ #ifdef HAVE_GLOB glob_t g; int i, r, flags; if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') && !strchr(filename, '{') && !strchr(filename, '~'))) { flags = 0 #ifdef GLOB_ERR | GLOB_ERR #endif /* do not set GLOB_NOSORT so the results are sorted and in a predictable order. */ #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, toplevel); /* let original deal with it */ return; } /* process files found, if any */ for(i=(int)g.gl_pathc-1; i>=0; i--) { config_start_include(g.gl_pathv[i], toplevel); } globfree(&g); return; } #endif /* HAVE_GLOB */ config_start_include(filename, toplevel); } 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; inc_toplevel = s->inc_toplevel; 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 #line 3651 "" #define YY_NO_INPUT 1 #line 191 "util/configlexer.lex" #ifndef YY_NO_UNPUT #define YY_NO_UNPUT 1 #endif #ifndef YY_NO_INPUT #define YY_NO_INPUT 1 #endif #line 3660 "" #line 3662 "" #define INITIAL 0 #define quotedstring 1 #define singlequotedstr 2 #define include 3 #define include_quoted 4 #define val 5 #define include_toplevel 6 #define include_toplevel_quoted 7 #ifndef YY_NO_UNISTD_H /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ #include #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif static int yy_init_globals ( void ); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int yylex_destroy ( void ); int yyget_debug ( void ); void yyset_debug ( int debug_flag ); YY_EXTRA_TYPE yyget_extra ( void ); void yyset_extra ( YY_EXTRA_TYPE user_defined ); FILE *yyget_in ( void ); void yyset_in ( FILE * _in_str ); FILE *yyget_out ( void ); void yyset_out ( FILE * _out_str ); int yyget_leng ( void ); char *yyget_text ( void ); int yyget_lineno ( void ); void yyset_lineno ( int _line_number ); /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap ( void ); #else extern int yywrap ( void ); #endif #endif #ifndef YY_NO_UNPUT #endif #ifndef yytext_ptr static void yy_flex_strncpy ( char *, const char *, int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen ( const 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, (size_t) 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 = '*'; \ int 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 = (int) fread(buf, 1, (yy_size_t) 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 211 "util/configlexer.lex" #line 3886 "" while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ { (yy_more_len) = 0; if ( (yy_more_flag) ) { (yy_more_len) = (int) ((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 >= 3137 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; ++yy_cp; } while ( yy_base[yy_current_state] != 8937 ); 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 212 "util/configlexer.lex" { LEXOUT(("SP ")); /* ignore */ } YY_BREAK case 2: YY_RULE_SETUP #line 214 "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 217 "util/configlexer.lex" { YDVAR(0, VAR_SERVER) } YY_BREAK case 4: YY_RULE_SETUP #line 218 "util/configlexer.lex" { YDVAR(1, VAR_QNAME_MINIMISATION) } YY_BREAK case 5: YY_RULE_SETUP #line 219 "util/configlexer.lex" { YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) } YY_BREAK case 6: YY_RULE_SETUP #line 220 "util/configlexer.lex" { YDVAR(1, VAR_NUM_THREADS) } YY_BREAK case 7: YY_RULE_SETUP #line 221 "util/configlexer.lex" { YDVAR(1, VAR_VERBOSITY) } YY_BREAK case 8: YY_RULE_SETUP #line 222 "util/configlexer.lex" { YDVAR(1, VAR_PORT) } YY_BREAK case 9: YY_RULE_SETUP #line 223 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_RANGE) } YY_BREAK case 10: YY_RULE_SETUP #line 224 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_PERMIT) } YY_BREAK case 11: YY_RULE_SETUP #line 225 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_AVOID) } YY_BREAK case 12: YY_RULE_SETUP #line 226 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_NUM_TCP) } YY_BREAK case 13: YY_RULE_SETUP #line 227 "util/configlexer.lex" { YDVAR(1, VAR_INCOMING_NUM_TCP) } YY_BREAK case 14: YY_RULE_SETUP #line 228 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP4) } YY_BREAK case 15: YY_RULE_SETUP #line 229 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP6) } YY_BREAK case 16: YY_RULE_SETUP #line 230 "util/configlexer.lex" { YDVAR(1, VAR_PREFER_IP4) } YY_BREAK case 17: YY_RULE_SETUP #line 231 "util/configlexer.lex" { YDVAR(1, VAR_PREFER_IP6) } YY_BREAK case 18: YY_RULE_SETUP #line 232 "util/configlexer.lex" { YDVAR(1, VAR_DO_UDP) } YY_BREAK case 19: YY_RULE_SETUP #line 233 "util/configlexer.lex" { YDVAR(1, VAR_DO_TCP) } YY_BREAK case 20: YY_RULE_SETUP #line 234 "util/configlexer.lex" { YDVAR(1, VAR_TCP_UPSTREAM) } YY_BREAK case 21: YY_RULE_SETUP #line 235 "util/configlexer.lex" { YDVAR(1, VAR_TCP_MSS) } YY_BREAK case 22: YY_RULE_SETUP #line 236 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_TCP_MSS) } YY_BREAK case 23: YY_RULE_SETUP #line 237 "util/configlexer.lex" { YDVAR(1, VAR_TCP_IDLE_TIMEOUT) } YY_BREAK case 24: YY_RULE_SETUP #line 238 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_TCP_KEEPALIVE) } YY_BREAK case 25: YY_RULE_SETUP #line 239 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_TCP_KEEPALIVE_TIMEOUT) } YY_BREAK case 26: YY_RULE_SETUP #line 240 "util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 27: YY_RULE_SETUP #line 241 "util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 28: YY_RULE_SETUP #line 242 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 29: YY_RULE_SETUP #line 243 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 30: YY_RULE_SETUP #line 244 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 31: YY_RULE_SETUP #line 245 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 32: YY_RULE_SETUP #line 246 "util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 33: YY_RULE_SETUP #line 247 "util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 34: YY_RULE_SETUP #line 248 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CERT_BUNDLE) } YY_BREAK case 35: YY_RULE_SETUP #line 249 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CERT_BUNDLE) } YY_BREAK case 36: YY_RULE_SETUP #line 250 "util/configlexer.lex" { YDVAR(1, VAR_TLS_WIN_CERT) } YY_BREAK case 37: YY_RULE_SETUP #line 251 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 38: YY_RULE_SETUP #line 252 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 39: YY_RULE_SETUP #line 253 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 40: YY_RULE_SETUP #line 254 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 41: YY_RULE_SETUP #line 255 "util/configlexer.lex" { YDVAR(1, VAR_TLS_SESSION_TICKET_KEYS) } YY_BREAK case 42: YY_RULE_SETUP #line 256 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CIPHERS) } YY_BREAK case 43: YY_RULE_SETUP #line 257 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CIPHERSUITES) } YY_BREAK case 44: YY_RULE_SETUP #line 258 "util/configlexer.lex" { YDVAR(1, VAR_TLS_USE_SNI) } YY_BREAK case 45: YY_RULE_SETUP #line 259 "util/configlexer.lex" { YDVAR(1, VAR_USE_SYSTEMD) } YY_BREAK case 46: YY_RULE_SETUP #line 260 "util/configlexer.lex" { YDVAR(1, VAR_DO_DAEMONIZE) } YY_BREAK case 47: YY_RULE_SETUP #line 261 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 48: YY_RULE_SETUP #line 262 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 49: YY_RULE_SETUP #line 263 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_INTERFACE) } YY_BREAK case 50: YY_RULE_SETUP #line 264 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE_AUTOMATIC) } YY_BREAK case 51: YY_RULE_SETUP #line 265 "util/configlexer.lex" { YDVAR(1, VAR_SO_RCVBUF) } YY_BREAK case 52: YY_RULE_SETUP #line 266 "util/configlexer.lex" { YDVAR(1, VAR_SO_SNDBUF) } YY_BREAK case 53: YY_RULE_SETUP #line 267 "util/configlexer.lex" { YDVAR(1, VAR_SO_REUSEPORT) } YY_BREAK case 54: YY_RULE_SETUP #line 268 "util/configlexer.lex" { YDVAR(1, VAR_IP_TRANSPARENT) } YY_BREAK case 55: YY_RULE_SETUP #line 269 "util/configlexer.lex" { YDVAR(1, VAR_IP_FREEBIND) } YY_BREAK case 56: YY_RULE_SETUP #line 270 "util/configlexer.lex" { YDVAR(1, VAR_IP_DSCP) } YY_BREAK case 57: YY_RULE_SETUP #line 271 "util/configlexer.lex" { YDVAR(1, VAR_CHROOT) } YY_BREAK case 58: YY_RULE_SETUP #line 272 "util/configlexer.lex" { YDVAR(1, VAR_USERNAME) } YY_BREAK case 59: YY_RULE_SETUP #line 273 "util/configlexer.lex" { YDVAR(1, VAR_DIRECTORY) } YY_BREAK case 60: YY_RULE_SETUP #line 274 "util/configlexer.lex" { YDVAR(1, VAR_LOGFILE) } YY_BREAK case 61: YY_RULE_SETUP #line 275 "util/configlexer.lex" { YDVAR(1, VAR_PIDFILE) } YY_BREAK case 62: YY_RULE_SETUP #line 276 "util/configlexer.lex" { YDVAR(1, VAR_ROOT_HINTS) } YY_BREAK case 63: YY_RULE_SETUP #line 277 "util/configlexer.lex" { YDVAR(1, VAR_STREAM_WAIT_SIZE) } YY_BREAK case 64: YY_RULE_SETUP #line 278 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_BUFFER_SIZE) } YY_BREAK case 65: YY_RULE_SETUP #line 279 "util/configlexer.lex" { YDVAR(1, VAR_MSG_BUFFER_SIZE) } YY_BREAK case 66: YY_RULE_SETUP #line 280 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SIZE) } YY_BREAK case 67: YY_RULE_SETUP #line 281 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SLABS) } YY_BREAK case 68: YY_RULE_SETUP #line 282 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SIZE) } YY_BREAK case 69: YY_RULE_SETUP #line 283 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SLABS) } YY_BREAK case 70: YY_RULE_SETUP #line 284 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_TTL) } YY_BREAK case 71: YY_RULE_SETUP #line 285 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) } YY_BREAK case 72: YY_RULE_SETUP #line 286 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MIN_TTL) } YY_BREAK case 73: YY_RULE_SETUP #line 287 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_HOST_TTL) } YY_BREAK case 74: YY_RULE_SETUP #line 288 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_LAME_TTL) } YY_BREAK case 75: YY_RULE_SETUP #line 289 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_SLABS) } YY_BREAK case 76: YY_RULE_SETUP #line 290 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) } YY_BREAK case 77: YY_RULE_SETUP #line 291 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) } YY_BREAK case 78: YY_RULE_SETUP #line 292 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) } YY_BREAK case 79: YY_RULE_SETUP #line 293 "util/configlexer.lex" { YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) } YY_BREAK case 80: YY_RULE_SETUP #line 294 "util/configlexer.lex" { YDVAR(1, VAR_JOSTLE_TIMEOUT) } YY_BREAK case 81: YY_RULE_SETUP #line 295 "util/configlexer.lex" { YDVAR(1, VAR_DELAY_CLOSE) } YY_BREAK case 82: YY_RULE_SETUP #line 296 "util/configlexer.lex" { YDVAR(1, VAR_TARGET_FETCH_POLICY) } YY_BREAK case 83: YY_RULE_SETUP #line 297 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) } YY_BREAK case 84: YY_RULE_SETUP #line 298 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_LARGE_QUERIES) } YY_BREAK case 85: YY_RULE_SETUP #line 299 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_GLUE) } YY_BREAK case 86: YY_RULE_SETUP #line 300 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) } YY_BREAK case 87: YY_RULE_SETUP #line 301 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) } YY_BREAK case 88: YY_RULE_SETUP #line 302 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_REFERRAL_PATH) } YY_BREAK case 89: YY_RULE_SETUP #line 303 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) } YY_BREAK case 90: YY_RULE_SETUP #line 304 "util/configlexer.lex" { YDVAR(1, VAR_USE_CAPS_FOR_ID) } YY_BREAK case 91: YY_RULE_SETUP #line 305 "util/configlexer.lex" { YDVAR(1, VAR_CAPS_WHITELIST) } YY_BREAK case 92: YY_RULE_SETUP #line 306 "util/configlexer.lex" { YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) } YY_BREAK case 93: YY_RULE_SETUP #line 307 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_ADDRESS) } YY_BREAK case 94: YY_RULE_SETUP #line 308 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_DOMAIN) } YY_BREAK case 95: YY_RULE_SETUP #line 309 "util/configlexer.lex" { YDVAR(1, VAR_PREFETCH_KEY) } YY_BREAK case 96: YY_RULE_SETUP #line 310 "util/configlexer.lex" { YDVAR(1, VAR_PREFETCH) } YY_BREAK case 97: YY_RULE_SETUP #line 311 "util/configlexer.lex" { YDVAR(1, VAR_DENY_ANY) } YY_BREAK case 98: YY_RULE_SETUP #line 312 "util/configlexer.lex" { YDVAR(0, VAR_STUB_ZONE) } YY_BREAK case 99: YY_RULE_SETUP #line 313 "util/configlexer.lex" { YDVAR(1, VAR_NAME) } YY_BREAK case 100: YY_RULE_SETUP #line 314 "util/configlexer.lex" { YDVAR(1, VAR_STUB_ADDR) } YY_BREAK case 101: YY_RULE_SETUP #line 315 "util/configlexer.lex" { YDVAR(1, VAR_STUB_HOST) } YY_BREAK case 102: YY_RULE_SETUP #line 316 "util/configlexer.lex" { YDVAR(1, VAR_STUB_PRIME) } YY_BREAK case 103: YY_RULE_SETUP #line 317 "util/configlexer.lex" { YDVAR(1, VAR_STUB_FIRST) } YY_BREAK case 104: YY_RULE_SETUP #line 318 "util/configlexer.lex" { YDVAR(1, VAR_STUB_NO_CACHE) } YY_BREAK case 105: YY_RULE_SETUP #line 319 "util/configlexer.lex" { YDVAR(1, VAR_STUB_SSL_UPSTREAM) } YY_BREAK case 106: YY_RULE_SETUP #line 320 "util/configlexer.lex" { YDVAR(1, VAR_STUB_SSL_UPSTREAM) } YY_BREAK case 107: YY_RULE_SETUP #line 321 "util/configlexer.lex" { YDVAR(0, VAR_FORWARD_ZONE) } YY_BREAK case 108: YY_RULE_SETUP #line 322 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_ADDR) } YY_BREAK case 109: YY_RULE_SETUP #line 323 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_HOST) } YY_BREAK case 110: YY_RULE_SETUP #line 324 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_FIRST) } YY_BREAK case 111: YY_RULE_SETUP #line 325 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_NO_CACHE) } YY_BREAK case 112: YY_RULE_SETUP #line 326 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } YY_BREAK case 113: YY_RULE_SETUP #line 327 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } YY_BREAK case 114: YY_RULE_SETUP #line 328 "util/configlexer.lex" { YDVAR(0, VAR_AUTH_ZONE) } YY_BREAK case 115: YY_RULE_SETUP #line 329 "util/configlexer.lex" { YDVAR(0, VAR_RPZ) } YY_BREAK case 116: YY_RULE_SETUP #line 330 "util/configlexer.lex" { YDVAR(1, VAR_TAGS) } YY_BREAK case 117: YY_RULE_SETUP #line 331 "util/configlexer.lex" { YDVAR(1, VAR_RPZ_ACTION_OVERRIDE) } YY_BREAK case 118: YY_RULE_SETUP #line 332 "util/configlexer.lex" { YDVAR(1, VAR_RPZ_CNAME_OVERRIDE) } YY_BREAK case 119: YY_RULE_SETUP #line 333 "util/configlexer.lex" { YDVAR(1, VAR_RPZ_LOG) } YY_BREAK case 120: YY_RULE_SETUP #line 334 "util/configlexer.lex" { YDVAR(1, VAR_RPZ_LOG_NAME) } YY_BREAK case 121: YY_RULE_SETUP #line 335 "util/configlexer.lex" { YDVAR(1, VAR_ZONEFILE) } YY_BREAK case 122: YY_RULE_SETUP #line 336 "util/configlexer.lex" { YDVAR(1, VAR_MASTER) } YY_BREAK case 123: YY_RULE_SETUP #line 337 "util/configlexer.lex" { YDVAR(1, VAR_URL) } YY_BREAK case 124: YY_RULE_SETUP #line 338 "util/configlexer.lex" { YDVAR(1, VAR_ALLOW_NOTIFY) } YY_BREAK case 125: YY_RULE_SETUP #line 339 "util/configlexer.lex" { YDVAR(1, VAR_FOR_DOWNSTREAM) } YY_BREAK case 126: YY_RULE_SETUP #line 340 "util/configlexer.lex" { YDVAR(1, VAR_FOR_UPSTREAM) } YY_BREAK case 127: YY_RULE_SETUP #line 341 "util/configlexer.lex" { YDVAR(1, VAR_FALLBACK_ENABLED) } YY_BREAK case 128: YY_RULE_SETUP #line 342 "util/configlexer.lex" { YDVAR(0, VAR_VIEW) } YY_BREAK case 129: YY_RULE_SETUP #line 343 "util/configlexer.lex" { YDVAR(1, VAR_VIEW_FIRST) } YY_BREAK case 130: YY_RULE_SETUP #line 344 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) } YY_BREAK case 131: YY_RULE_SETUP #line 345 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) } YY_BREAK case 132: YY_RULE_SETUP #line 346 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL) } YY_BREAK case 133: YY_RULE_SETUP #line 347 "util/configlexer.lex" { YDVAR(1, VAR_SEND_CLIENT_SUBNET) } YY_BREAK case 134: YY_RULE_SETUP #line 348 "util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_ZONE) } YY_BREAK case 135: YY_RULE_SETUP #line 349 "util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) } YY_BREAK case 136: YY_RULE_SETUP #line 350 "util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) } YY_BREAK case 137: YY_RULE_SETUP #line 351 "util/configlexer.lex" { YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) } YY_BREAK case 138: YY_RULE_SETUP #line 352 "util/configlexer.lex" { YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) } YY_BREAK case 139: YY_RULE_SETUP #line 353 "util/configlexer.lex" { YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV4) } YY_BREAK case 140: YY_RULE_SETUP #line 354 "util/configlexer.lex" { YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV6) } YY_BREAK case 141: YY_RULE_SETUP #line 355 "util/configlexer.lex" { YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) } YY_BREAK case 142: YY_RULE_SETUP #line 356 "util/configlexer.lex" { YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) } YY_BREAK case 143: YY_RULE_SETUP #line 357 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_IDENTITY) } YY_BREAK case 144: YY_RULE_SETUP #line 358 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_VERSION) } YY_BREAK case 145: YY_RULE_SETUP #line 359 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_TRUSTANCHOR) } YY_BREAK case 146: YY_RULE_SETUP #line 360 "util/configlexer.lex" { YDVAR(1, VAR_IDENTITY) } YY_BREAK case 147: YY_RULE_SETUP #line 361 "util/configlexer.lex" { YDVAR(1, VAR_VERSION) } YY_BREAK case 148: YY_RULE_SETUP #line 362 "util/configlexer.lex" { YDVAR(1, VAR_MODULE_CONF) } YY_BREAK case 149: YY_RULE_SETUP #line 363 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR) } YY_BREAK case 150: YY_RULE_SETUP #line 364 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR_FILE) } YY_BREAK case 151: YY_RULE_SETUP #line 365 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_FILE) } YY_BREAK case 152: YY_RULE_SETUP #line 366 "util/configlexer.lex" { YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) } YY_BREAK case 153: YY_RULE_SETUP #line 367 "util/configlexer.lex" { YDVAR(1, VAR_TRUSTED_KEYS_FILE) } YY_BREAK case 154: YY_RULE_SETUP #line 368 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR) } YY_BREAK case 155: YY_RULE_SETUP #line 369 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) } YY_BREAK case 156: YY_RULE_SETUP #line 370 "util/configlexer.lex" { YDVAR(1, VAR_ROOT_KEY_SENTINEL) } YY_BREAK case 157: YY_RULE_SETUP #line 371 "util/configlexer.lex" { YDVAR(1, VAR_VAL_OVERRIDE_DATE) } YY_BREAK case 158: YY_RULE_SETUP #line 372 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MIN) } YY_BREAK case 159: YY_RULE_SETUP #line 373 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MAX) } YY_BREAK case 160: YY_RULE_SETUP #line 374 "util/configlexer.lex" { YDVAR(1, VAR_BOGUS_TTL) } YY_BREAK case 161: YY_RULE_SETUP #line 375 "util/configlexer.lex" { YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) } YY_BREAK case 162: YY_RULE_SETUP #line 376 "util/configlexer.lex" { YDVAR(1, VAR_VAL_PERMISSIVE_MODE) } YY_BREAK case 163: YY_RULE_SETUP #line 377 "util/configlexer.lex" { YDVAR(1, VAR_AGGRESSIVE_NSEC) } YY_BREAK case 164: YY_RULE_SETUP #line 378 "util/configlexer.lex" { YDVAR(1, VAR_IGNORE_CD_FLAG) } YY_BREAK case 165: YY_RULE_SETUP #line 379 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED) } YY_BREAK case 166: YY_RULE_SETUP #line 380 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_TTL) } YY_BREAK case 167: YY_RULE_SETUP #line 381 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) } YY_BREAK case 168: YY_RULE_SETUP #line 382 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_REPLY_TTL) } YY_BREAK case 169: YY_RULE_SETUP #line 383 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_CLIENT_TIMEOUT) } YY_BREAK case 170: YY_RULE_SETUP #line 384 "util/configlexer.lex" { YDVAR(1, VAR_FAKE_DSA) } YY_BREAK case 171: YY_RULE_SETUP #line 385 "util/configlexer.lex" { YDVAR(1, VAR_FAKE_SHA1) } YY_BREAK case 172: YY_RULE_SETUP #line 386 "util/configlexer.lex" { YDVAR(1, VAR_VAL_LOG_LEVEL) } YY_BREAK case 173: YY_RULE_SETUP #line 387 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SIZE) } YY_BREAK case 174: YY_RULE_SETUP #line 388 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SLABS) } YY_BREAK case 175: YY_RULE_SETUP #line 389 "util/configlexer.lex" { YDVAR(1, VAR_NEG_CACHE_SIZE) } YY_BREAK case 176: YY_RULE_SETUP #line 390 "util/configlexer.lex" { YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) } YY_BREAK case 177: YY_RULE_SETUP #line 392 "util/configlexer.lex" { YDVAR(1, VAR_ADD_HOLDDOWN) } YY_BREAK case 178: YY_RULE_SETUP #line 393 "util/configlexer.lex" { YDVAR(1, VAR_DEL_HOLDDOWN) } YY_BREAK case 179: YY_RULE_SETUP #line 394 "util/configlexer.lex" { YDVAR(1, VAR_KEEP_MISSING) } YY_BREAK case 180: YY_RULE_SETUP #line 395 "util/configlexer.lex" { YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) } YY_BREAK case 181: YY_RULE_SETUP #line 396 "util/configlexer.lex" { YDVAR(1, VAR_USE_SYSLOG) } YY_BREAK case 182: YY_RULE_SETUP #line 397 "util/configlexer.lex" { YDVAR(1, VAR_LOG_IDENTITY) } YY_BREAK case 183: YY_RULE_SETUP #line 398 "util/configlexer.lex" { YDVAR(1, VAR_LOG_TIME_ASCII) } YY_BREAK case 184: YY_RULE_SETUP #line 399 "util/configlexer.lex" { YDVAR(1, VAR_LOG_QUERIES) } YY_BREAK case 185: YY_RULE_SETUP #line 400 "util/configlexer.lex" { YDVAR(1, VAR_LOG_REPLIES) } YY_BREAK case 186: YY_RULE_SETUP #line 401 "util/configlexer.lex" { YDVAR(1, VAR_LOG_TAG_QUERYREPLY) } YY_BREAK case 187: YY_RULE_SETUP #line 402 "util/configlexer.lex" { YDVAR(1, VAR_LOG_LOCAL_ACTIONS) } YY_BREAK case 188: YY_RULE_SETUP #line 403 "util/configlexer.lex" { YDVAR(1, VAR_LOG_SERVFAIL) } YY_BREAK case 189: YY_RULE_SETUP #line 404 "util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE) } YY_BREAK case 190: YY_RULE_SETUP #line 405 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA) } YY_BREAK case 191: YY_RULE_SETUP #line 406 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA_PTR) } YY_BREAK case 192: YY_RULE_SETUP #line 407 "util/configlexer.lex" { YDVAR(1, VAR_UNBLOCK_LAN_ZONES) } YY_BREAK case 193: YY_RULE_SETUP #line 408 "util/configlexer.lex" { YDVAR(1, VAR_INSECURE_LAN_ZONES) } YY_BREAK case 194: YY_RULE_SETUP #line 409 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_INTERVAL) } YY_BREAK case 195: YY_RULE_SETUP #line 410 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_CUMULATIVE) } YY_BREAK case 196: YY_RULE_SETUP #line 411 "util/configlexer.lex" { YDVAR(1, VAR_EXTENDED_STATISTICS) } YY_BREAK case 197: YY_RULE_SETUP #line 412 "util/configlexer.lex" { YDVAR(1, VAR_SHM_ENABLE) } YY_BREAK case 198: YY_RULE_SETUP #line 413 "util/configlexer.lex" { YDVAR(1, VAR_SHM_KEY) } YY_BREAK case 199: YY_RULE_SETUP #line 414 "util/configlexer.lex" { YDVAR(0, VAR_REMOTE_CONTROL) } YY_BREAK case 200: YY_RULE_SETUP #line 415 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_ENABLE) } YY_BREAK case 201: YY_RULE_SETUP #line 416 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_INTERFACE) } YY_BREAK case 202: YY_RULE_SETUP #line 417 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_PORT) } YY_BREAK case 203: YY_RULE_SETUP #line 418 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_USE_CERT) } YY_BREAK case 204: YY_RULE_SETUP #line 419 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_KEY_FILE) } YY_BREAK case 205: YY_RULE_SETUP #line 420 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_CERT_FILE) } YY_BREAK case 206: YY_RULE_SETUP #line 421 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_KEY_FILE) } YY_BREAK case 207: YY_RULE_SETUP #line 422 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_CERT_FILE) } YY_BREAK case 208: YY_RULE_SETUP #line 423 "util/configlexer.lex" { YDVAR(1, VAR_PYTHON_SCRIPT) } YY_BREAK case 209: YY_RULE_SETUP #line 424 "util/configlexer.lex" { YDVAR(0, VAR_PYTHON) } YY_BREAK case 210: YY_RULE_SETUP #line 425 "util/configlexer.lex" { YDVAR(1, VAR_DYNLIB_FILE) } YY_BREAK case 211: YY_RULE_SETUP #line 426 "util/configlexer.lex" { YDVAR(0, VAR_DYNLIB) } YY_BREAK case 212: YY_RULE_SETUP #line 427 "util/configlexer.lex" { YDVAR(1, VAR_DOMAIN_INSECURE) } YY_BREAK case 213: YY_RULE_SETUP #line 428 "util/configlexer.lex" { YDVAR(1, VAR_MINIMAL_RESPONSES) } YY_BREAK case 214: YY_RULE_SETUP #line 429 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_ROUNDROBIN) } YY_BREAK case 215: YY_RULE_SETUP #line 430 "util/configlexer.lex" { YDVAR(1, VAR_UNKNOWN_SERVER_TIME_LIMIT) } YY_BREAK case 216: YY_RULE_SETUP #line 431 "util/configlexer.lex" { YDVAR(1, VAR_MAX_UDP_SIZE) } YY_BREAK case 217: YY_RULE_SETUP #line 432 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_PREFIX) } YY_BREAK case 218: YY_RULE_SETUP #line 433 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_SYNTHALL) } YY_BREAK case 219: YY_RULE_SETUP #line 434 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_IGNORE_AAAA) } YY_BREAK case 220: YY_RULE_SETUP #line 435 "util/configlexer.lex" { YDVAR(1, VAR_DEFINE_TAG) } YY_BREAK case 221: YY_RULE_SETUP #line 436 "util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE_TAG) } YY_BREAK case 222: YY_RULE_SETUP #line 437 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL_TAG) } YY_BREAK case 223: YY_RULE_SETUP #line 438 "util/configlexer.lex" { YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) } YY_BREAK case 224: YY_RULE_SETUP #line 439 "util/configlexer.lex" { YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) } YY_BREAK case 225: YY_RULE_SETUP #line 440 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL_VIEW) } YY_BREAK case 226: YY_RULE_SETUP #line 441 "util/configlexer.lex" { YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) } YY_BREAK case 227: YY_RULE_SETUP #line 442 "util/configlexer.lex" { YDVAR(0, VAR_DNSTAP) } YY_BREAK case 228: YY_RULE_SETUP #line 443 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_ENABLE) } YY_BREAK case 229: YY_RULE_SETUP #line 444 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_BIDIRECTIONAL) } YY_BREAK case 230: YY_RULE_SETUP #line 445 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } YY_BREAK case 231: YY_RULE_SETUP #line 446 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_IP) } YY_BREAK case 232: YY_RULE_SETUP #line 447 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_TLS) } YY_BREAK case 233: YY_RULE_SETUP #line 448 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_TLS_SERVER_NAME) } YY_BREAK case 234: YY_RULE_SETUP #line 449 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_TLS_CERT_BUNDLE) } YY_BREAK case 235: YY_RULE_SETUP #line 450 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_TLS_CLIENT_KEY_FILE) } YY_BREAK case 236: YY_RULE_SETUP #line 452 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_TLS_CLIENT_CERT_FILE) } YY_BREAK case 237: YY_RULE_SETUP #line 454 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) } YY_BREAK case 238: YY_RULE_SETUP #line 455 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_VERSION) } YY_BREAK case 239: YY_RULE_SETUP #line 456 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_IDENTITY) } YY_BREAK case 240: YY_RULE_SETUP #line 457 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_VERSION) } YY_BREAK case 241: YY_RULE_SETUP #line 458 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) } YY_BREAK case 242: YY_RULE_SETUP #line 460 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) } YY_BREAK case 243: YY_RULE_SETUP #line 462 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) } YY_BREAK case 244: YY_RULE_SETUP #line 464 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) } YY_BREAK case 245: YY_RULE_SETUP #line 466 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } YY_BREAK case 246: YY_RULE_SETUP #line 468 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } YY_BREAK case 247: YY_RULE_SETUP #line 470 "util/configlexer.lex" { YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) } YY_BREAK case 248: YY_RULE_SETUP #line 471 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT) } YY_BREAK case 249: YY_RULE_SETUP #line 472 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT) } YY_BREAK case 250: YY_RULE_SETUP #line 473 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_SLABS) } YY_BREAK case 251: YY_RULE_SETUP #line 474 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SLABS) } YY_BREAK case 252: YY_RULE_SETUP #line 475 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_SIZE) } YY_BREAK case 253: YY_RULE_SETUP #line 476 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SIZE) } YY_BREAK case 254: YY_RULE_SETUP #line 477 "util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) } YY_BREAK case 255: YY_RULE_SETUP #line 478 "util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) } YY_BREAK case 256: YY_RULE_SETUP #line 479 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_FACTOR) } YY_BREAK case 257: YY_RULE_SETUP #line 480 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_FACTOR) } YY_BREAK case 258: YY_RULE_SETUP #line 481 "util/configlexer.lex" { YDVAR(1, VAR_LOW_RTT) } YY_BREAK case 259: YY_RULE_SETUP #line 482 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_NUM) } YY_BREAK case 260: YY_RULE_SETUP #line 483 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 261: YY_RULE_SETUP #line 484 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 262: YY_RULE_SETUP #line 485 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 263: YY_RULE_SETUP #line 486 "util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP_TAG) } YY_BREAK case 264: YY_RULE_SETUP #line 487 "util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP) } YY_BREAK case 265: YY_RULE_SETUP #line 488 "util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP_DATA) } YY_BREAK case 266: YY_RULE_SETUP #line 489 "util/configlexer.lex" { YDVAR(0, VAR_DNSCRYPT) } YY_BREAK case 267: YY_RULE_SETUP #line 490 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_ENABLE) } YY_BREAK case 268: YY_RULE_SETUP #line 491 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PORT) } YY_BREAK case 269: YY_RULE_SETUP #line 492 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER) } YY_BREAK case 270: YY_RULE_SETUP #line 493 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) } YY_BREAK case 271: YY_RULE_SETUP #line 494 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) } YY_BREAK case 272: YY_RULE_SETUP #line 495 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) } YY_BREAK case 273: YY_RULE_SETUP #line 496 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) } YY_BREAK case 274: YY_RULE_SETUP #line 498 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) } YY_BREAK case 275: YY_RULE_SETUP #line 500 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) } YY_BREAK case 276: YY_RULE_SETUP #line 501 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) } YY_BREAK case 277: YY_RULE_SETUP #line 502 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_ENABLED) } YY_BREAK case 278: YY_RULE_SETUP #line 503 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) } YY_BREAK case 279: YY_RULE_SETUP #line 504 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_HOOK) } YY_BREAK case 280: YY_RULE_SETUP #line 505 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_MAX_TTL) } YY_BREAK case 281: YY_RULE_SETUP #line 506 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_WHITELIST) } YY_BREAK case 282: YY_RULE_SETUP #line 507 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_STRICT) } YY_BREAK case 283: YY_RULE_SETUP #line 508 "util/configlexer.lex" { YDVAR(0, VAR_CACHEDB) } YY_BREAK case 284: YY_RULE_SETUP #line 509 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_BACKEND) } YY_BREAK case 285: YY_RULE_SETUP #line 510 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_SECRETSEED) } YY_BREAK case 286: YY_RULE_SETUP #line 511 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISHOST) } YY_BREAK case 287: YY_RULE_SETUP #line 512 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISPORT) } YY_BREAK case 288: YY_RULE_SETUP #line 513 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) } YY_BREAK case 289: YY_RULE_SETUP #line 514 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISEXPIRERECORDS) } YY_BREAK case 290: YY_RULE_SETUP #line 515 "util/configlexer.lex" { YDVAR(0, VAR_IPSET) } YY_BREAK case 291: YY_RULE_SETUP #line 516 "util/configlexer.lex" { YDVAR(1, VAR_IPSET_NAME_V4) } YY_BREAK case 292: YY_RULE_SETUP #line 517 "util/configlexer.lex" { YDVAR(1, VAR_IPSET_NAME_V6) } YY_BREAK case 293: YY_RULE_SETUP #line 518 "util/configlexer.lex" { YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) } YY_BREAK case 294: YY_RULE_SETUP #line 519 "util/configlexer.lex" { YDVAR(2, VAR_TCP_CONNECTION_LIMIT) } YY_BREAK case 295: /* rule 295 can match eol */ YY_RULE_SETUP #line 520 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK /* Quoted strings. Strip leading and ending quotes */ case 296: YY_RULE_SETUP #line 523 "util/configlexer.lex" { BEGIN(quotedstring); LEXOUT(("QS ")); } YY_BREAK case YY_STATE_EOF(quotedstring): #line 524 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 297: YY_RULE_SETUP #line 529 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 298: /* rule 298 can match eol */ YY_RULE_SETUP #line 530 "util/configlexer.lex" { yyerror("newline inside quoted string, no end \""); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 299: YY_RULE_SETUP #line 532 "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 300: YY_RULE_SETUP #line 544 "util/configlexer.lex" { BEGIN(singlequotedstr); LEXOUT(("SQS ")); } YY_BREAK case YY_STATE_EOF(singlequotedstr): #line 545 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 301: YY_RULE_SETUP #line 550 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 302: /* rule 302 can match eol */ YY_RULE_SETUP #line 551 "util/configlexer.lex" { yyerror("newline inside quoted string, no end '"); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 303: YY_RULE_SETUP #line 553 "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 304: YY_RULE_SETUP #line 565 "util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); } YY_BREAK case YY_STATE_EOF(include): #line 567 "util/configlexer.lex" { yyerror("EOF inside include directive"); BEGIN(inc_prev); } YY_BREAK case 305: YY_RULE_SETUP #line 571 "util/configlexer.lex" { LEXOUT(("ISP ")); /* ignore */ } YY_BREAK case 306: /* rule 306 can match eol */ YY_RULE_SETUP #line 572 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++;} YY_BREAK case 307: YY_RULE_SETUP #line 573 "util/configlexer.lex" { LEXOUT(("IQS ")); BEGIN(include_quoted); } YY_BREAK case 308: YY_RULE_SETUP #line 574 "util/configlexer.lex" { LEXOUT(("Iunquotedstr(%s) ", yytext)); config_start_include_glob(yytext, 0); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(include_quoted): #line 579 "util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 309: YY_RULE_SETUP #line 583 "util/configlexer.lex" { LEXOUT(("ISTR(%s) ", yytext)); yymore(); } YY_BREAK case 310: /* rule 310 can match eol */ YY_RULE_SETUP #line 584 "util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 311: YY_RULE_SETUP #line 586 "util/configlexer.lex" { LEXOUT(("IQE ")); yytext[yyleng - 1] = '\0'; config_start_include_glob(yytext, 0); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(val): #line 592 "util/configlexer.lex" { LEXOUT(("LEXEOF ")); yy_set_bol(1); /* Set beginning of line, so "^" rules match. */ if (!config_include_stack) { yyterminate(); } else { int prev_toplevel = inc_toplevel; fclose(yyin); config_end_include(); if(prev_toplevel) return (VAR_FORCE_TOPLEVEL); } } YY_BREAK /* include-toplevel: directive */ case 312: YY_RULE_SETUP #line 606 "util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include_toplevel); } YY_BREAK case YY_STATE_EOF(include_toplevel): #line 609 "util/configlexer.lex" { yyerror("EOF inside include_toplevel directive"); BEGIN(inc_prev); } YY_BREAK case 313: YY_RULE_SETUP #line 613 "util/configlexer.lex" { LEXOUT(("ITSP ")); /* ignore */ } YY_BREAK case 314: /* rule 314 can match eol */ YY_RULE_SETUP #line 614 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK case 315: YY_RULE_SETUP #line 615 "util/configlexer.lex" { LEXOUT(("ITQS ")); BEGIN(include_toplevel_quoted); } YY_BREAK case 316: YY_RULE_SETUP #line 616 "util/configlexer.lex" { LEXOUT(("ITunquotedstr(%s) ", yytext)); config_start_include_glob(yytext, 1); BEGIN(inc_prev); return (VAR_FORCE_TOPLEVEL); } YY_BREAK case YY_STATE_EOF(include_toplevel_quoted): #line 622 "util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 317: YY_RULE_SETUP #line 626 "util/configlexer.lex" { LEXOUT(("ITSTR(%s) ", yytext)); yymore(); } YY_BREAK case 318: /* rule 318 can match eol */ YY_RULE_SETUP #line 627 "util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 319: YY_RULE_SETUP #line 631 "util/configlexer.lex" { LEXOUT(("ITQE ")); yytext[yyleng - 1] = '\0'; config_start_include_glob(yytext, 1); BEGIN(inc_prev); return (VAR_FORCE_TOPLEVEL); } YY_BREAK case 320: YY_RULE_SETUP #line 639 "util/configlexer.lex" { LEXOUT(("unquotedstr(%s) ", yytext)); if(--num_args == 0) { BEGIN(INITIAL); } yylval.str = strdup(yytext); return STRING_ARG; } YY_BREAK case 321: YY_RULE_SETUP #line 643 "util/configlexer.lex" { ub_c_error_msg("unknown keyword '%s'", yytext); } YY_BREAK case 322: YY_RULE_SETUP #line 647 "util/configlexer.lex" { ub_c_error_msg("stray '%s'", yytext); } YY_BREAK case 323: YY_RULE_SETUP #line 651 "util/configlexer.lex" ECHO; YY_BREAK #line 5702 "" 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); int number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr) - 1); for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { int num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; int yy_c_buf_p_offset = (int) ((yy_c_buf_p) - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { int new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yyrealloc( (void *) b->yy_ch_buf, (yy_size_t) (b->yy_buf_size + 2) ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = NULL; 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_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ int 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, (yy_size_t) new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); /* "- 2" to take care of EOB's */ YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2); } (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 >= 3137 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + 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 >= 3137 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; yy_is_jam = (yy_current_state == 3136); 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 */ int offset = (int) ((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 0; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); return c; } #endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * * @note This function does not reset the start condition to @c INITIAL . */ void yyrestart (FILE * input_file ) { if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer( yyin, YY_BUF_SIZE ); } yy_init_buffer( YY_CURRENT_BUFFER, input_file ); yy_load_buffer_state( ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * */ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) { /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ yyensure_buffer_stack (); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ (yy_did_buffer_switch_on_eof) = 1; } static void yy_load_buffer_state (void) { (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; (yy_hold_char) = *(yy_c_buf_p); } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * * @return the allocated buffer state. */ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (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 NULL; 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 = (int) (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 = NULL; 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 (const char * yystr ) { return yy_scan_bytes( yystr, (int) 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 (const char * yybytes, int _yybytes_len ) { YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; /* Get memory for full buffer, including space for trailing EOB's. */ n = (yy_size_t) (_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 yynoreturn yy_fatal_error (const char* msg ) { fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = (yy_hold_char); \ (yy_c_buf_p) = yytext + yyless_macro_arg; \ (yy_hold_char) = *(yy_c_buf_p); \ *(yy_c_buf_p) = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ int yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the current line number. * @param _line_number 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) = NULL; (yy_buffer_stack_top) = 0; (yy_buffer_stack_max) = 0; (yy_c_buf_p) = NULL; (yy_init) = 0; (yy_start) = 0; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = NULL; yyout = NULL; #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, const 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 (const char * s ) { int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return 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 realloc(ptr, size); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 651 "util/configlexer.lex"