#define yy_create_buffer codeYY_create_buffer #define yy_delete_buffer codeYY_delete_buffer #define yy_scan_buffer codeYY_scan_buffer #define yy_scan_string codeYY_scan_string #define yy_scan_bytes codeYY_scan_bytes #define yy_flex_debug codeYY_flex_debug #define yy_init_buffer codeYY_init_buffer #define yy_flush_buffer codeYY_flush_buffer #define yy_load_buffer_state codeYY_load_buffer_state #define yy_switch_to_buffer codeYY_switch_to_buffer #define yyin codeYYin #define yyleng codeYYleng #define yylex codeYYlex #define yyout codeYYout #define yyrestart codeYYrestart #define yytext codeYYtext /* A lexical scanner generated by flex */ /* Scanner skeleton version: * $Header: /cvs/root/flex/flex/skel.c,v 1.2 2004/05/07 00:28:17 jkh Exp $ */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #include /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */ #ifdef c_plusplus #ifndef __cplusplus #define __cplusplus #endif #endif #ifdef __cplusplus #include #include /* Use prototypes in function declarations. */ #define YY_USE_PROTOS /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ #if __STDC__ #define YY_USE_PROTOS #define YY_USE_CONST #endif /* __STDC__ */ #endif /* ! __cplusplus */ #ifdef __TURBOC__ #pragma warn -rch #pragma warn -use #include #include #define YY_USE_CONST #define YY_USE_PROTOS #endif #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif #ifdef YY_USE_PROTOS #define YY_PROTO(proto) proto #else #define YY_PROTO(proto) () #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN yy_start = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START ((yy_start - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart( yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #define YY_BUF_SIZE 262144 typedef struct yy_buffer_state *YY_BUFFER_STATE; 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 /* The funky do-while in the following #define is used to turn the definition * int a single C statement (which needs a semi-colon terminator). This * avoids problems with code like: * * if ( condition_holds ) * yyless( 5 ); * else * do_something_else(); * * Prior to using the do-while the compiler would get upset at the * "else" because it interpreted the "if" statement as being all * done when it reached the ';' after the yyless() call. */ /* Return all but the first 'n' matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ *yy_cp = yy_hold_char; \ YY_RESTORE_YY_MORE_OFFSET \ yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, yytext_ptr ) /* The following is because we cannot portably get our hands on size_t * (without autoconf's help, which isn't available because we want * flex-generated scanners to compile on their own). */ typedef unsigned int yy_size_t; struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; /* 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 }; static YY_BUFFER_STATE yy_current_buffer = 0; /* 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". */ #define YY_CURRENT_BUFFER yy_current_buffer /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 1; /* 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 YY_PROTO(( FILE *input_file )); void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer )); void yy_load_buffer_state YY_PROTO(( void )); YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size )); void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b )); void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file )); void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b )); #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer ) YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size )); YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str )); YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len )); static void *yy_flex_alloc YY_PROTO(( yy_size_t )); static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t )); static void yy_flex_free YY_PROTO(( void * )); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (yy_current_buffer->yy_at_bol) #define YY_USES_REJECT #define yywrap() 1 #define YY_SKIP_YYWRAP typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern char *yytext; #define yytext_ptr yytext static yy_state_type yy_get_previous_state YY_PROTO(( void )); static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state )); static int yy_get_next_buffer YY_PROTO(( void )); static void yy_fatal_error YY_PROTO(( yyconst char msg[] )); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ yytext_ptr = yy_bp; \ yyleng = (int) (yy_cp - yy_bp); \ yy_hold_char = *yy_cp; \ *yy_cp = '\0'; \ yy_c_buf_p = yy_cp; #define YY_NUM_RULES 184 #define YY_END_OF_BUFFER 185 static yyconst short int yy_acclist[5946] = { 0, 83, 83, 75, 75, 130, 130, 106, 106, 185, 183, 184, 182, 184, 1, 183, 184, 180, 183, 184, 181, 183, 184, 183, 184, 183, 184, 183, 184, 183, 184, 83, 183, 184, 85, 183, 184, 83, 180, 183, 184, 83, 181, 183, 184, 83, 183, 184, 83, 183, 184, 183, 184, 83, 183, 184, 83, 183, 184, 87, 90, 183, 184, 91, 182, 184, 1, 87, 90, 183, 184, 89, 90, 183, 184, 87, 90, 180, 183, 184, 87, 90, 181, 183, 184, 87, 90, 183, 184, 87, 90, 183, 184, 87, 90, 183, 184, 87, 90, 183, 184, 23, 183, 184, 182, 184, 1, 23, 183, 184, 23, 180, 183, 184, 23, 181, 183, 184, 23, 183, 184, 23, 183, 184, 23, 183, 184, 23, 183, 184, 23, 183, 184, 151, 183, 184, 151, 183, 184, 1, 151, 183, 184, 151, 180, 183, 184, 151, 181, 183, 184, 183, 184, 183, 184, 151, 183, 184, 151, 183, 184, 183, 184, 153, 156, 183, 184, 155, 182, 184, 1, 154, 156, 183, 184, 153, 156, 180, 183, 184, 153, 156, 181, 183, 184, 153, 156, 183, 184, 153, 156, 183, 184, 153, 156, 183, 184, 153, 156, 183, 184, 160, 163, 183, 184, 162, 182, 184, 1, 160, 163, 183, 184, 160, 163, 180, 183, 184, 160, 163, 181, 183, 184, 163, 183, 184, 160, 163, 183, 184, 160, 163, 183, 184, 160, 163, 183, 184, 160, 163, 183, 184, 183, 184, 182, 184, 1, 183, 184, 65, 183, 184, 82, 183, 184, 183, 184, 183, 184, 180, 183, 184, 65, 181, 183, 184, 9, 65, 183, 184, 100, 183, 184, 9, 65, 183, 184, 97, 183, 184, 65, 183, 184, 119, 183, 184, 92, 183, 184, 93, 183, 184, 94, 183, 184, 183, 184, 8271, 183, 184,16462, 16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462,16463,16465, 100, 180, 183, 184, 118, 181, 183, 184, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462, 16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462, 16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462, 16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462,16463,16465, 8271, 183, 184,16462, 16463,16465, 26, 183, 184, 27, 183, 184, 65, 183, 184, 183, 184, 22, 183, 184, 65, 183, 184, 128, 183, 184, 183, 184, 128, 183, 184, 128, 183, 184, 127, 180, 183, 184, 129, 181, 183, 184, 128, 183, 184, 128, 183, 184, 126, 183, 184, 128, 183, 184, 128, 183, 184, 125, 183, 184, 128, 183, 184, 128, 183, 184, 128, 183, 184, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 128, 183, 184, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 124, 183, 184,16528, 128, 183, 184, 128, 183, 184, 128, 183, 184, 164, 183, 184, 164, 183, 184, 182, 184, 1, 164, 183, 184, 82, 164, 183, 184, 164, 183, 184, 164, 183, 184, 129, 164, 181, 183, 184, 164, 183, 184, 164, 183, 184, 164, 183, 184, 8291, 183, 184,16482,16483, 164, 180, 183, 184, 164, 181, 183, 184, 27, 164, 183, 184, 164, 183, 184, 164, 183, 184, 164, 183, 184, 128, 183, 184, 148, 183, 184, 124, 183, 184, 16530,16531, 124, 183, 184,16530,16531, 124, 183, 184, 16530,16531, 124, 183, 184,16530,16531, 124, 183, 184, 16530,16531, 124, 183, 184,16530,16531, 124, 183, 184, 16530,16531, 124, 183, 184,16530,16531, 124, 183, 184, 16530,16531, 124, 183, 184,16530,16531, 124, 183, 184, 16530,16531, 124, 183, 184,16530,16531, 124, 183, 184, 16530,16531, 124, 183, 184,16530,16531, 124, 183, 184, 16530,16531, 124, 183, 184,16530,16531, 124, 183, 184, 16530,16531, 124, 183, 184,16530,16531, 124, 183, 184, 16530,16531, 124, 183, 184,16530,16531, 124, 183, 184, 16530,16531, 124, 183, 184,16530,16531, 124, 183, 184, 16530,16531, 183, 184, 140, 183, 184, 142, 183, 184, 141, 183, 184, 183, 184, 183, 184, 30, 183, 184, 38, 183, 184, 29, 183, 184, 32, 183, 184, 32, 183, 184, 40, 183, 184, 183, 184, 183, 184, 183, 184, 39, 183, 184, 33, 183, 184, 183, 184, 8, 182, 184, 183, 184, 9, 183, 184, 34, 183, 184, 183, 184, 37, 183, 184, 37, 183, 184, 37, 183, 184, 37, 183, 184, 37, 183, 184, 183, 184, 183, 184, 47, 180, 183, 184, 50, 183, 184, 43, 183, 184, 44, 183, 184, 183, 184, 42, 183, 184, 42, 183, 184, 42, 183, 184, 183, 184, 48, 180, 183, 184, 49, 181, 183, 184, 45, 183, 184, 46, 183, 184, 183, 184,16405, 1, 183, 184,16405, 180, 183, 184,16405, 181, 183, 184,16405, 183, 184,16405, 183, 184,16405, 183, 184,16405, 183, 184,16405, 70, 183, 184, 71, 183, 184, 183, 184, 183, 184, 183, 184, 183, 184, 183, 184, 183, 184, 183, 184, 183, 184, 183, 184, 183, 184, 183, 184, 183, 184, 183, 184, 183, 184, 183, 184, 182, 184, 1, 183, 184, 183, 184, 75, 183, 184, 183, 184, 72, 183, 184, 73, 183, 184, 73, 183, 184, 73, 183, 184, 73, 183, 184, 73, 183, 184, 73, 183, 184, 73, 183, 184, 73, 183, 184, 73, 183, 184, 73, 183, 184, 73, 183, 184, 73, 183, 184, 73, 183, 184, 183, 184, 183, 184, 139, 183, 184, 130, 139, 183, 184, 130, 182, 184, 1, 139, 183, 184, 138, 139, 183, 184, 139, 183, 184, 139, 180, 183, 184, 139, 181, 183, 184, 139, 183, 184, 131, 139, 183, 184, 139, 183, 184, 135, 139, 183, 184, 135, 139, 183, 184, 135, 139, 183, 184, 135, 139, 183, 184, 135, 139, 183, 184, 135, 139, 183, 184, 133, 139, 183, 184, 130, 139, 183, 184, 139, 183, 184, 19, 183, 184, 20, 182, 184, 1, 19, 183, 184, 19, 183, 184, 19, 180, 183, 184, 19, 181, 183, 184, 19, 183, 184, 10, 19, 183, 184, 12, 19, 183, 184, 19, 183, 184, 18, 19, 183, 184, 18, 19, 183, 184, 18, 19, 183, 184, 18, 19, 183, 184, 18, 19, 183, 184, 18, 19, 183, 184, 18, 19, 183, 184, 18, 19, 183, 184, 18, 19, 183, 184, 18, 19, 183, 184, 18, 19, 183, 184, 18, 19, 183, 184, 18, 19, 183, 184, 19, 183, 184, 19, 183, 184, 19, 183, 184, 11, 19, 180, 183, 184, 17, 18, 19, 183, 184, 19, 183, 184, 16, 19, 181, 183, 184, 15, 18, 19, 183, 184, 15, 18, 19, 183, 184, 15, 18, 19, 183, 184, 15, 18, 19, 183, 184, 15, 18, 19, 183, 184, 15, 18, 19, 183, 184, 15, 18, 19, 183, 184, 15, 18, 19, 183, 184, 15, 18, 19, 183, 184, 15, 18, 19, 183, 184, 15, 18, 19, 183, 184, 15, 18, 19, 183, 184, 15, 18, 19, 183, 184, 116, 183, 184, 117, 182, 184, 1, 116, 183, 184, 110, 116, 183, 184, 111, 116, 183, 184, 116, 183, 184, 112, 116, 180, 183, 184, 113, 116, 181, 183, 184, 116, 183, 184, 116, 183, 184, 103, 115, 116, 183, 184, 101, 116, 180, 183, 184, 102, 116, 181, 183, 184, 116, 183, 184, 116, 183, 184, 111, 116, 183, 184, 115, 116, 183, 184,16488,16489, 106, 116, 183, 184, 1, 106, 116, 183, 184, 108, 116, 183, 184, 111, 116, 183, 184, 106, 116, 180, 183, 184, 106, 116, 181, 183, 184, 106, 116, 183, 184, 106, 116, 183, 184, 106, 115, 116, 183, 184, 116, 183, 184, 106, 116, 183, 184, 106, 116, 183, 184, 183, 184, 182, 184, 1, 183, 184, 138, 183, 184, 183, 184, 137, 183, 184, 136, 183, 184, 136, 183, 184, 136, 183, 184, 136, 183, 184, 136, 183, 184, 136, 183, 184, 136, 183, 184, 136, 183, 184, 136, 183, 184, 136, 183, 184, 136, 183, 184, 136, 183, 184, 136, 183, 184, 133, 183, 184, 183, 184, 57, 183, 184, 56, 182, 184, 1, 57, 183, 184, 57, 183, 184, 57, 180, 183, 184, 57, 181, 183, 184, 57, 183, 184, 57, 183, 184, 55, 57, 183, 184, 57, 183, 184, 57, 183, 184, 177, 179, 178, 177, 179, 83, 83, 84, 177, 83, 84, 179, 85, 178, 86, 83, 83, 83, 84, 177, 83, 84, 179, 87, 88, 87, 177, 87, 179, 87, 87, 87, 177, 87, 179, 166, 25, 179, 24, 25, 179, 151, 151, 152, 150, 177, 150, 179, 151, 178, 151, 150, 177, 150, 179, 153, 153, 177, 153, 179, 153, 178, 153, 153, 153, 177, 153, 179, 160, 159, 161, 177, 160, 161, 179, 160, 178, 160, 160, 161, 177, 160, 161, 179, 8271,16462,16463,16465, 8271,16462, 16463,16465, 97, 119, 8271, 8273, 8270, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8256, 8271,16446, 16448,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8258, 8271,16450,16462, 16463,16465, 8256, 8271,16446,16448,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 22, 128, 124, 128, 128, 128, 128, 143, 8336, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 61, 124,16528, 124, 16528, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 124,16528, 124,16528, 8291,16482,16483, 8291, 8290, 8291,16482,16483, 8291,16482,16483, 148, 8338, 8339, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 142, 142, 38, 40, 32, 30, 38, 32, 32, 40, 39, 33, 33, 37, 37, 37, 37, 37, 37, 42, 42, 42, 42, 42,16405, 8213, 177,16405, 179, 16405, 8213, 178,16405,16405, 177,16405, 179,16405, 8258, 16450, 73, 75, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 130, 133, 130, 135, 135, 135, 135, 135, 135, 135, 130, 18, 18, 18, 18, 18, 18, 18, 18, 8258, 16450, 18, 18, 18, 18, 18, 18, 18, 18, 18, 17, 18, 17, 18, 13, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 14, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 103, 115, 110, 178, 103, 115, 115,16488,16489, 115, 16488,16489, 8297, 8296, 106, 115, 106, 177, 106, 179, 114, 178, 106, 115, 107, 106, 106, 106, 177, 106, 179, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 55, 55, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 158, 160, 160, 160, 160, 8271,16462, 16463, 8271,16462,16463,16465, 8271,16462,16463, 95, 95, 8272,16464, 120, 8269,16461, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8251, 8271,16443,16444,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 63, 63, 8256, 8271, 63, 8254, 63, 8273, 63, 8270, 63, 63, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8256, 8271,16446,16448,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8258, 8271, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8258, 8271,16450, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271, 8271,16462,16463,16465, 124, 124, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 123, 123, 123, 143, 123, 123, 8336, 123, 123, 124,16528, 124, 16528, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 124,16528, 124,16528, 122, 122, 122, 143, 122, 122, 8336, 122, 122, 124,16528, 61, 61, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 8291,16483, 8291,16483, 8291, 8291,16482,16483, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 123, 123, 123, 8338, 123, 123, 8339, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 122, 122, 122, 8338, 122, 122, 8339, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 32, 33, 37, 37, 37, 37, 42, 42, 42, 42,16405, 16405,16405,16405,16405,16405,16405,16405,16405,16405, 8258, 8269,16461, 73, 73, 73, 73, 73, 122, 122, 122, 122, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 135, 135, 135, 134, 135, 135, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 109, 115, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 175, 176, 172, 174, 175, 170, 171, 172, 83, 175, 83, 83, 176, 83, 83, 83, 83, 174, 175, 83, 170, 83, 83, 87, 175, 87, 87, 176, 87, 87, 87, 87, 174, 175, 87, 170, 87, 87, 149, 176, 153, 175, 153, 153, 176, 153, 153, 153, 153, 174, 175, 153, 170, 153, 153, 158, 160, 160, 160, 160, 8271, 8271,16462,16463, 8271, 16462,16463,16465, 8271, 8271,16462,16463, 8272, 28, 8271, 16462,16463,16465, 8269, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 58, 58, 8251, 8271, 58, 58, 8252, 8273, 58, 8270, 58, 58, 8258, 8271,16450,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8256, 8271, 8254, 8273, 8271,16462,16463,16465, 8271,16462,16463,16465, 8251, 8271, 16443,16444,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 63, 8256, 8271, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8251, 8271,16443,16444,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465,16529, 124, 124,16528, 124,16528, 124,16528, 124,16528, 121, 121, 121, 143, 121, 121, 8336, 121, 121, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 123, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 8291, 8291, 16483, 8291, 8291,16483, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 121, 121, 121, 8338, 121, 121, 8339, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 123, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 32, 32, 33, 37, 37, 37, 37, 42, 42, 42, 42, 175,16405, 8213, 175,16405, 176,16405,16405, 8213,16405, 16405, 174, 175,16405, 8213, 174, 175, 170,16405,16405, 8213,16405, 8258,16450, 73, 8269, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 135, 135, 135, 135, 18, 8258,16450, 18, 18, 18, 18, 18, 18, 18, 18, 18, 14, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 109, 106, 175, 106, 106, 176, 106, 106, 106, 106, 174, 175, 106, 170, 106, 106, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 55, 173, 168, 165, 174, 171, 169, 83, 174, 83, 83, 87, 174, 87, 87, 173, 166, 173, 168, 165, 166, 153, 174, 153, 153, 160, 160, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8251, 8271, 8252, 8273, 8271,16462,16463,16465, 8251, 8271,16443,16444,16462,16463, 16465, 8251, 8271,16443,16444,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 58, 8251, 8271, 8197, 8271,16389,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8251, 8271,16443,16444,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 58, 8256, 8271,16446,16448,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8251, 8271,16443,16444,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465,16529, 8337, 124, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 32, 32, 37, 37, 37, 37, 42, 42, 42, 42, 174,16405, 8213, 174,16405, 8213,16405, 8213, 69, 73, 73, 73, 74, 73, 73, 73, 73, 73, 73, 73, 73, 135,16516, 135, 135, 135, 18, 18, 18, 18, 18, 18, 18, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 15, 18, 106, 174, 106, 106, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 55, 167, 166, 167, 8271,16462,16463,16465, 8269,16461,16465, 8269,16461,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 6, 58, 8251, 8271, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8251, 8271, 8197, 8271, 8197, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8251, 8271,16443,16444,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8251, 8271, 16443,16444,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 96, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 58, 8251, 8271, 58, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528, 124,16528,16482, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 32, 37, 37, 37, 37, 16420, 42, 42, 41, 42, 42, 8269,16461, 73, 74, 73, 73, 73, 8324, 135, 135, 135, 135, 135, 135, 135, 18, 18, 18, 15, 18, 15, 18, 15, 18, 136, 136, 136, 136, 136, 136, 136, 136, 136, 157, 8271,16462,16463,16465,16465,16465, 8269, 8269,16461,16465, 8269,16461,16465,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 6, 8251, 8271, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8251, 8271,16443,16444,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 58, 8251, 8271, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8251, 8271, 8271,16462,16463,16465, 124, 16528, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528,16482,16482, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124, 16530,16531, 124,16530,16531, 124,16530,16531, 124,16530, 16531, 124,16530,16531, 32, 37, 35, 37, 37, 8228, 41, 42, 8269,16461, 73, 73, 135, 135, 135, 135, 135, 135, 135, 18, 15, 18, 136, 136, 136, 136, 158, 8271,16462,16463,16465,16465,16465, 8269,16461,16465, 16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8256,16446,16448, 53, 58, 53, 58, 8251, 8271, 53, 58, 53, 58, 8252, 8273, 53, 58, 8270, 53, 58, 53, 58, 53, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8251, 8271, 16443,16444,16462,16463,16465, 7, 8271, 7, 8271, 8271, 16462,16463,16465, 8251, 8271, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8251, 8271,16443, 16444,16462,16463,16465, 8271,16462,16463,16465, 2, 124, 16528, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 124,16528, 124,16528,16482, 124,16530, 16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 124,16530,16531, 32, 37, 42, 53, 135, 135, 135, 135, 135, 8271,16462,16463,16465,16465, 8269,16461,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 63, 8256, 63, 8254, 63, 8251, 8271, 67, 8269,16461, 58, 58, 8251, 8271, 58, 58, 8252, 8273, 58, 8270, 8271,16462,16463,16465, 58, 58, 4, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8271,16462,16463,16465, 53, 58, 8251, 8271, 53, 58, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 124,16530,16531, 124,16530,16531, 32, 37, 135, 135, 135, 135, 135, 3, 8271,16462,16463, 16465,16465, 8269,16461,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 8256, 8254, 67, 8269,16461, 67, 8269, 52, 8251, 8271, 52, 8252, 8273, 8270, 52, 8252, 8273, 8271, 52, 8273, 52, 8269,16461, 8271,16462,16463,16465, 8271,16462, 16463,16465, 8271,16462,16463,16465, 8251, 8271, 68, 8269, 16461, 124,16528, 124,16528, 124,16528, 124,16528, 124, 16528, 124,16528, 124,16530,16531, 124,16530,16531, 32, 135, 135, 135, 135, 135, 8271,16462,16463,16465,16465, 8269,16461,16465, 8271,16462,16463,16465, 8271,16462,16463, 16465, 76, 8271,16462,16463,16465, 67, 8269, 8269,16461, 51, 8271,16462,16463,16465, 8271,16462,16463,16465, 8269, 8271,16462,16463,16465, 8271,16462,16463,16465, 68, 8269, 16461, 68, 8269, 124,16528, 76, 124,16528, 124,16528, 124,16528, 124,16530,16531, 124,16530,16531,16516, 135, 135, 8271, 8273,16465, 8269,16461,16465, 8271,16462,16463, 16465, 8269, 8271,16462,16463,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 68, 8269, 124,16528, 135, 135, 52, 8273,16465, 8269,16461,16465, 8271,16462,16463,16465, 8271,16462,16463, 8271,16462,16463,16465, 8271, 8271,16462, 16463,16465, 8269,16461,16465, 8269,16461,16465, 8271,16462, 16463,16465, 124,16528, 31,16465, 8269, 8269,16461,16465, 8271,16462,16463,16465, 8269,16461, 8271, 8271,16462,16463, 8271,16462,16463, 8271,16462,16463,16465,16465,16465, 8269, 8269,16461,16465,16465, 6, 8271,16462,16463,16465, 124, 16528,16465, 8271,16462,16463,16465, 8269,16461, 8271, 8271, 16462,16463, 8271,16462,16463,16465,16465, 8269,16461,16465, 16465, 8271,16462,16463,16465, 124,16528, 8271,16462,16463, 16465, 8271,16462,16463,16465,16465, 8269,16461,16465, 54, 8271,16462,16463,16465, 8271,16462,16463,16465,16465, 8269, 16461,16465, 8271,16462,16463,16465, 8271,16462,16463,16465, 16465, 8269,16461,16465, 8271,16462,16463,16465,16465, 8269, 16461,16465, 8271,16462,16463,16465,16465, 8269,16461,16465, 8271,16462,16463,16465,16465, 8271,16462,16463,16465, 8271, 16462,16463,16465, 6, 8271 } ; static yyconst short int yy_accept[2926] = { 0, 1, 1, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 9, 9, 9, 9, 9, 10, 12, 14, 17, 20, 23, 25, 27, 29, 31, 34, 37, 41, 45, 48, 51, 53, 56, 59, 63, 66, 71, 75, 80, 85, 89, 93, 97, 101, 104, 106, 110, 114, 118, 121, 124, 127, 130, 133, 136, 139, 143, 147, 151, 153, 155, 158, 161, 163, 167, 170, 175, 180, 185, 189, 193, 197, 201, 205, 208, 213, 218, 223, 226, 230, 234, 238, 242, 244, 246, 249, 252, 255, 257, 259, 262, 266, 270, 273, 277, 280, 283, 286, 289, 292, 295, 297, 303, 309, 315, 319, 323, 329, 335, 341, 347, 353, 359, 365, 371, 377, 383, 389, 395, 401, 407, 413, 419, 425, 431, 437, 443, 446, 449, 452, 454, 457, 460, 463, 465, 468, 471, 475, 479, 482, 485, 488, 491, 494, 497, 500, 503, 506, 510, 514, 518, 521, 525, 529, 533, 537, 541, 545, 549, 553, 557, 561, 565, 569, 573, 577, 581, 585, 589, 593, 597, 601, 604, 607, 610, 613, 616, 618, 622, 626, 629, 632, 637, 640, 643, 646, 651, 655, 659, 663, 666, 669, 672, 675, 678, 683, 688, 693, 698, 703, 708, 713, 718, 723, 728, 733, 738, 743, 748, 753, 758, 763, 768, 773, 778, 783, 788, 793, 795, 798, 801, 804, 806, 808, 811, 814, 817, 820, 823, 826, 828, 830, 832, 835, 838, 840, 843, 845, 848, 851, 853, 856, 859, 862, 865, 868, 870, 872, 876, 879, 882, 885, 887, 890, 893, 896, 898, 902, 906, 909, 912, 915, 919, 923, 927, 930, 933, 936, 939, 942, 945, 947, 949, 951, 953, 955, 957, 959, 961, 963, 965, 967, 969, 971, 973, 975, 977, 980, 982, 985, 987, 990, 993, 996, 999, 1002, 1005, 1008, 1011, 1014, 1017, 1020, 1023, 1026, 1029, 1031, 1033, 1036, 1040, 1043, 1047, 1051, 1054, 1058, 1062, 1065, 1069, 1072, 1076, 1080, 1084, 1088, 1092, 1096, 1100, 1104, 1107, 1110, 1113, 1117, 1120, 1124, 1128, 1131, 1135, 1139, 1142, 1146, 1150, 1154, 1158, 1162, 1166, 1170, 1174, 1178, 1182, 1186, 1190, 1194, 1197, 1200, 1203, 1208, 1213, 1216, 1221, 1226, 1231, 1236, 1241, 1246, 1251, 1256, 1261, 1266, 1271, 1276, 1281, 1286, 1289, 1292, 1296, 1300, 1304, 1307, 1312, 1317, 1320, 1323, 1328, 1333, 1338, 1341, 1344, 1348, 1354, 1358, 1363, 1367, 1371, 1376, 1381, 1385, 1389, 1394, 1397, 1401, 1405, 1407, 1409, 1412, 1415, 1417, 1420, 1423, 1426, 1429, 1432, 1435, 1438, 1441, 1444, 1447, 1450, 1453, 1456, 1459, 1462, 1464, 1467, 1470, 1474, 1477, 1481, 1485, 1488, 1491, 1495, 1498, 1501, 1501, 1501, 1502, 1503, 1504, 1504, 1504, 1505, 1506, 1507, 1510, 1513, 1515, 1516, 1517, 1518, 1521, 1524, 1525, 1526, 1528, 1530, 1531, 1532, 1534, 1536, 1536, 1536, 1537, 1537, 1539, 1540, 1540, 1542, 1543, 1544, 1544, 1545, 1547, 1549, 1551, 1552, 1554, 1556, 1557, 1559, 1561, 1563, 1564, 1565, 1567, 1569, 1570, 1571, 1573, 1576, 1578, 1579, 1580, 1582, 1585, 1585, 1585, 1585, 1585, 1589, 1593, 1593, 1593, 1593, 1593, 1593, 1594, 1595, 1595, 1595, 1595, 1595, 1595, 1596, 1596, 1597, 1598, 1602, 1602, 1602, 1606, 1610, 1614, 1618, 1622, 1626, 1630, 1634, 1638, 1642, 1646, 1650, 1654, 1658, 1665, 1669, 1673, 1677, 1681, 1685, 1689, 1693, 1697, 1701, 1705, 1709, 1713, 1717, 1723, 1730, 1734, 1738, 1742, 1746, 1750, 1754, 1758, 1762, 1766, 1770, 1774, 1778, 1782, 1786, 1790, 1794, 1798, 1802, 1806, 1810, 1814, 1818, 1822, 1826, 1830, 1834, 1838, 1842, 1846, 1850, 1854, 1858, 1862, 1862, 1862, 1866, 1866, 1867, 1867, 1867, 1868, 1869, 1870, 1870, 1870, 1871, 1872, 1873, 1873, 1874, 1874, 1875, 1877, 1877, 1877, 1879, 1881, 1883, 1885, 1887, 1889, 1891, 1893, 1895, 1897, 1899, 1901, 1903, 1905, 1907, 1909, 1911, 1913, 1915, 1917, 1919, 1921, 1923, 1925, 1927, 1929, 1931, 1933, 1935, 1937, 1940, 1942, 1944, 1946, 1948, 1950, 1952, 1954, 1956, 1958, 1960, 1962, 1964, 1966, 1968, 1970, 1972, 1974, 1976, 1978, 1980, 1982, 1984, 1986, 1988, 1990, 1992, 1994, 1996, 1998, 1998, 1998, 1998, 1998, 2001, 2001, 2001, 2002, 2002, 2003, 2006, 2006, 2006, 2006, 2006, 2009, 2009, 2010, 2010, 2010, 2011, 2011, 2012, 2015, 2018, 2021, 2024, 2027, 2030, 2033, 2036, 2039, 2042, 2045, 2048, 2051, 2054, 2057, 2060, 2063, 2066, 2069, 2072, 2075, 2078, 2081, 2084, 2087, 2090, 2093, 2096, 2099, 2102, 2105, 2108, 2111, 2114, 2117, 2120, 2123, 2126, 2129, 2132, 2135, 2138, 2141, 2144, 2147, 2150, 2153, 2156, 2159, 2162, 2165, 2168, 2171, 2174, 2177, 2180, 2183, 2186, 2189, 2192, 2193, 2194, 2194, 2195, 2196, 2197, 2198, 2199, 2200, 2200, 2201, 2202, 2202, 2202, 2203, 2204, 2204, 2205, 2205, 2206, 2207, 2208, 2209, 2210, 2211, 2211, 2212, 2212, 2213, 2214, 2215, 2216, 2216, 2217, 2218, 2220, 2222, 2224, 2225, 2226, 2228, 2230, 2230, 2230, 2230, 2230, 2230, 2230, 2230, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 2232, 2233, 2233, 2234, 2234, 2234, 2235, 2235, 2235, 2236, 2237, 2238, 2239, 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2250, 2251, 2251, 2251, 2251, 2251, 2252, 2252, 2252, 2252, 2252, 2252, 2253, 2254, 2255, 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2264, 2265, 2266, 2267, 2268, 2269, 2272, 2273, 2274, 2275, 2276, 2277, 2278, 2279, 2280, 2281, 2283, 2283, 2285, 2286, 2288, 2290, 2292, 2294, 2296, 2298, 2300, 2303, 2305, 2307, 2309, 2311, 2313, 2315, 2317, 2319, 2321, 2323, 2323, 2323, 2325, 2327, 2330, 2330, 2333, 2334, 2335, 2336, 2337, 2339, 2341, 2343, 2345, 2346, 2347, 2348, 2350, 2352, 2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2372, 2373, 2374, 2374, 2374, 2374, 2374, 2374, 2374, 2374, 2374, 2374, 2374, 2374, 2374, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2384, 2385, 2386, 2387, 2388, 2389, 2390, 2391, 2392, 2393, 2394, 2394, 2394, 2394, 2394, 2394, 2394, 2395, 2396, 2397, 2398, 2399, 2400, 2401, 2402, 2403, 2404, 2404, 2405, 2406, 2407, 2408, 2409, 2412, 2416, 2416, 2416, 2419, 2420, 2421, 2421, 2421, 2421, 2421, 2423, 2423, 2423, 2423, 2424, 2424, 2424, 2424, 2424, 2424, 2424, 2424, 2424, 2424, 2426, 2430, 2434, 2438, 2442, 2449, 2453, 2457, 2461, 2465, 2469, 2473, 2477, 2481, 2485, 2489, 2490, 2493, 2494, 2497, 2499, 2500, 2501, 2505, 2509, 2513, 2517, 2521, 2525, 2529, 2533, 2537, 2541, 2548, 2552, 2556, 2560, 2564, 2568, 2570, 2574, 2578, 2584, 2588, 2592, 2596, 2600, 2604, 2608, 2612, 2616, 2620, 2624, 2628, 2632, 2636, 2640, 2644, 2648, 2652, 2656, 2660, 2664, 2668, 2672, 2676, 2680, 2684, 2688, 2692, 2696, 2700, 2704, 2708, 2712, 2716, 2720, 2724, 2728, 2732, 2736, 2740, 2744, 2748, 2752, 2753, 2753, 2757, 2757, 2757, 2758, 2758, 2758, 2758, 2758, 2759, 2761, 2763, 2765, 2767, 2769, 2771, 2773, 2775, 2777, 2779, 2781, 2783, 2785, 2787, 2789, 2790, 2791, 2793, 2794, 2796, 2797, 2798, 2800, 2802, 2804, 2806, 2808, 2810, 2812, 2814, 2816, 2818, 2820, 2822, 2824, 2826, 2828, 2829, 2830, 2832, 2833, 2835, 2836, 2837, 2839, 2840, 2841, 2843, 2845, 2847, 2849, 2851, 2853, 2855, 2857, 2859, 2861, 2863, 2865, 2867, 2869, 2871, 2873, 2875, 2877, 2879, 2881, 2883, 2885, 2887, 2889, 2891, 2893, 2895, 2897, 2899, 2901, 2903, 2905, 2907, 2909, 2911, 2913, 2915, 2917, 2919, 2921, 2923, 2923, 2923, 2925, 2925, 2925, 2925, 2925, 2926, 2926, 2929, 2932, 2935, 2938, 2941, 2944, 2947, 2950, 2953, 2956, 2959, 2962, 2965, 2968, 2971, 2974, 2975, 2976, 2978, 2979, 2981, 2984, 2987, 2990, 2993, 2996, 2999, 3002, 3005, 3008, 3011, 3014, 3017, 3020, 3023, 3024, 3025, 3027, 3028, 3030, 3033, 3036, 3039, 3042, 3045, 3048, 3051, 3054, 3057, 3060, 3063, 3066, 3069, 3072, 3075, 3078, 3081, 3084, 3087, 3090, 3093, 3096, 3099, 3102, 3105, 3108, 3111, 3114, 3117, 3120, 3123, 3126, 3129, 3132, 3135, 3138, 3141, 3144, 3147, 3150, 3150, 3151, 3151, 3152, 3153, 3154, 3155, 3156, 3156, 3156, 3157, 3158, 3159, 3160, 3161, 3162, 3163, 3164, 3165, 3166, 3167, 3168, 3169, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3173, 3174, 3175, 3176, 3177, 3178, 3179, 3180, 3181, 3182, 3183, 3184, 3185, 3186, 3187, 3188, 3189, 3190, 3191, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3193, 3194, 3195, 3197, 3198, 3199, 3200, 3201, 3202, 3203, 3204, 3205, 3206, 3207, 3208, 3209, 3210, 3211, 3213, 3215, 3217, 3219, 3221, 3223, 3225, 3227, 3229, 3231, 3233, 3235, 3237, 3237, 3238, 3238, 3238, 3239, 3240, 3241, 3242, 3243, 3244, 3245, 3246, 3247, 3248, 3249, 3250, 3251, 3252, 3253, 3254, 3255, 3256, 3257, 3258, 3259, 3260, 3261, 3262, 3263, 3264, 3265, 3266, 3266, 3266, 3266, 3266, 3266, 3267, 3267, 3268, 3268, 3269, 3269, 3269, 3271, 3272, 3272, 3274, 3274, 3276, 3277, 3279, 3280, 3281, 3282, 3285, 3287, 3288, 3289, 3291, 3292, 3294, 3295, 3296, 3297, 3300, 3302, 3303, 3304, 3304, 3304, 3304, 3304, 3304, 3306, 3308, 3309, 3311, 3312, 3313, 3314, 3317, 3319, 3320, 3321, 3321, 3322, 3322, 3323, 3324, 3325, 3326, 3327, 3327, 3330, 3334, 3335, 3335, 3338, 3338, 3338, 3339, 3339, 3339, 3339, 3339, 3339, 3339, 3339, 3340, 3340, 3340, 3340, 3340, 3340, 3344, 3344, 3344, 3345, 3345, 3345, 3349, 3353, 3357, 3361, 3362, 3365, 3366, 3369, 3371, 3372, 3373, 3379, 3383, 3387, 3391, 3395, 3399, 3403, 3407, 3409, 3409, 3411, 3415, 3419, 3426, 3430, 3434, 3438, 3442, 3446, 3450, 3453, 3457, 3461, 3465, 3469, 3473, 3477, 3481, 3485, 3489, 3493, 3497, 3501, 3505, 3509, 3513, 3517, 3521, 3525, 3529, 3533, 3537, 3541, 3542, 3546, 3550, 3554, 3558, 3562, 3566, 3570, 3574, 3578, 3582, 3586, 3590, 3594, 3601, 3605, 3609, 3613, 3617, 3621, 3625, 3629, 3633, 3637, 3641, 3645, 3645, 3645, 3645, 3646, 3646, 3646, 3646, 3647, 3649, 3651, 3653, 3655, 3656, 3657, 3659, 3660, 3662, 3663, 3664, 3666, 3668, 3670, 3672, 3674, 3676, 3678, 3680, 3682, 3684, 3686, 3688, 3690, 3692, 3694, 3695, 3697, 3699, 3701, 3703, 3705, 3707, 3709, 3711, 3713, 3715, 3717, 3719, 3721, 3723, 3725, 3727, 3729, 3731, 3733, 3735, 3737, 3739, 3741, 3743, 3745, 3747, 3749, 3751, 3753, 3755, 3757, 3759, 3761, 3763, 3765, 3767, 3769, 3771, 3773, 3775, 3777, 3779, 3780, 3782, 3783, 3785, 3785, 3785, 3785, 3785, 3785, 3788, 3791, 3794, 3797, 3798, 3799, 3801, 3802, 3804, 3807, 3810, 3813, 3816, 3819, 3822, 3825, 3828, 3831, 3834, 3837, 3840, 3843, 3846, 3847, 3850, 3853, 3856, 3859, 3862, 3865, 3868, 3871, 3874, 3877, 3880, 3883, 3886, 3889, 3892, 3895, 3898, 3901, 3904, 3907, 3910, 3913, 3916, 3919, 3922, 3925, 3928, 3931, 3934, 3937, 3940, 3943, 3946, 3949, 3952, 3955, 3958, 3961, 3964, 3967, 3970, 3970, 3971, 3972, 3973, 3974, 3975, 3976, 3977, 3977, 3977, 3977, 3978, 3979, 3980, 3981, 3983, 3985, 3986, 3988, 3989, 3990, 3991, 3992, 3995, 3998, 4000, 4001, 4002, 4003, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4005, 4006, 4007, 4007, 4008, 4009, 4010, 4011, 4012, 4013, 4014, 4015, 4016, 4017, 4018, 4019, 4019, 4019, 4019, 4019, 4020, 4021, 4022, 4023, 4026, 4027, 4028, 4029, 4030, 4031, 4032, 4033, 4034, 4035, 4038, 4040, 4042, 4044, 4046, 4048, 4050, 4052, 4054, 4056, 4056, 4057, 4057, 4059, 4060, 4062, 4063, 4064, 4065, 4068, 4070, 4071, 4072, 4073, 4074, 4075, 4076, 4077, 4078, 4079, 4080, 4081, 4082, 4083, 4084, 4085, 4086, 4086, 4087, 4088, 4089, 4089, 4090, 4090, 4091, 4091, 4092, 4092, 4093, 4095, 4096, 4097, 4099, 4100, 4101, 4102, 4104, 4105, 4105, 4107, 4107, 4109, 4110, 4111, 4111, 4111, 4112, 4113, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4121, 4121, 4121, 4125, 4129, 4133, 4137, 4139, 4139, 4141, 4145, 4152, 4159, 4163, 4167, 4171, 4175, 4179, 4182, 4188, 4192, 4196, 4203, 4203, 4207, 4211, 4215, 4219, 4223, 4227, 4231, 4235, 4239, 4243, 4247, 4251, 4255, 4259, 4263, 4267, 4271, 4275, 4279, 4283, 4283, 4283, 4287, 4291, 4295, 4299, 4303, 4307, 4311, 4315, 4319, 4323, 4327, 4331, 4335, 4336, 4343, 4347, 4351, 4355, 4359, 4363, 4370, 4374, 4378, 4382, 4382, 4382, 4383, 4383, 4384, 4385, 4387, 4389, 4391, 4393, 4395, 4397, 4399, 4401, 4403, 4405, 4407, 4409, 4411, 4413, 4413, 4415, 4417, 4419, 4421, 4423, 4425, 4427, 4429, 4431, 4433, 4435, 4437, 4439, 4441, 4443, 4445, 4447, 4449, 4451, 4453, 4455, 4457, 4459, 4461, 4463, 4465, 4467, 4469, 4471, 4473, 4475, 4477, 4479, 4481, 4483, 4485, 4487, 4489, 4491, 4491, 4494, 4497, 4500, 4503, 4506, 4509, 4512, 4515, 4518, 4521, 4524, 4527, 4530, 4533, 4536, 4539, 4542, 4545, 4548, 4551, 4554, 4557, 4560, 4563, 4566, 4569, 4572, 4575, 4578, 4581, 4584, 4587, 4590, 4593, 4596, 4599, 4602, 4605, 4608, 4611, 4614, 4617, 4620, 4623, 4626, 4629, 4632, 4635, 4638, 4641, 4642, 4643, 4644, 4645, 4646, 4647, 4647, 4647, 4647, 4648, 4649, 4650, 4651, 4653, 4655, 4656, 4657, 4658, 4659, 4659, 4660, 4660, 4660, 4660, 4660, 4660, 4660, 4660, 4660, 4660, 4660, 4661, 4661, 4662, 4664, 4665, 4666, 4667, 4668, 4669, 4670, 4671, 4672, 4672, 4672, 4672, 4672, 4674, 4675, 4676, 4677, 4678, 4679, 4680, 4681, 4682, 4683, 4684, 4685, 4687, 4689, 4691, 4693, 4695, 4697, 4699, 4701, 4701, 4701, 4703, 4704, 4705, 4706, 4707, 4708, 4709, 4710, 4711, 4712, 4713, 4714, 4715, 4716, 4717, 4718, 4718, 4718, 4718, 4719, 4719, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4725, 4725, 4725, 4725, 4728, 4731, 4731, 4735, 4739, 4743, 4747, 4751, 4755, 4759, 4763, 4767, 4771, 4773, 4775, 4776, 4780, 4784, 4784, 4788, 4792, 4796, 4800, 4804, 4808, 4812, 4816, 4820, 4824, 4828, 4832, 4836, 4840, 4844, 4851, 4851, 4851, 4855, 4859, 4866, 4870, 4874, 4875, 4879, 4883, 4887, 4891, 4894, 4895, 4899, 4903, 4907, 4907, 4907, 4909, 4911, 4913, 4915, 4917, 4919, 4921, 4923, 4925, 4927, 4929, 4929, 4931, 4933, 4935, 4937, 4939, 4941, 4943, 4945, 4947, 4949, 4951, 4953, 4955, 4957, 4959, 4961, 4963, 4965, 4967, 4969, 4971, 4973, 4975, 4975, 4975, 4976, 4976, 4979, 4982, 4985, 4988, 4991, 4994, 4997, 5000, 5003, 5006, 5009, 5012, 5015, 5018, 5021, 5024, 5027, 5030, 5033, 5036, 5039, 5042, 5045, 5048, 5051, 5054, 5057, 5060, 5063, 5066, 5067, 5068, 5069, 5070, 5072, 5072, 5072, 5072, 5073, 5074, 5076, 5077, 5077, 5077, 5077, 5077, 5077, 5077, 5077, 5079, 5080, 5081, 5082, 5083, 5084, 5084, 5084, 5084, 5084, 5084, 5085, 5086, 5087, 5088, 5089, 5090, 5091, 5092, 5093, 5094, 5095, 5097, 5099, 5101, 5102, 5103, 5104, 5105, 5106, 5107, 5108, 5109, 5110, 5110, 5111, 5111, 5111, 5111, 5111, 5111, 5115, 5115, 5116, 5117, 5118, 5118, 5121, 5121, 5124, 5124, 5124, 5125, 5129, 5133, 5137, 5140, 5144, 5148, 5152, 5156, 5156, 5163, 5167, 5171, 5175, 5179, 5183, 5187, 5191, 5195, 5199, 5202, 5202, 5202, 5206, 5210, 5214, 5218, 5222, 5226, 5230, 5234, 5236, 5236, 5236, 5240, 5240, 5240, 5242, 5244, 5246, 5248, 5250, 5252, 5254, 5254, 5256, 5258, 5260, 5262, 5264, 5266, 5268, 5270, 5272, 5274, 5276, 5278, 5280, 5282, 5282, 5283, 5283, 5283, 5284, 5287, 5290, 5293, 5296, 5299, 5302, 5305, 5308, 5311, 5314, 5317, 5320, 5323, 5326, 5329, 5332, 5335, 5336, 5337, 5339, 5340, 5340, 5341, 5341, 5341, 5342, 5343, 5343, 5343, 5343, 5343, 5345, 5346, 5347, 5347, 5347, 5347, 5347, 5347, 5347, 5347, 5348, 5349, 5350, 5351, 5352, 5353, 5354, 5355, 5357, 5358, 5359, 5360, 5361, 5361, 5361, 5362, 5362, 5362, 5362, 5366, 5367, 5368, 5371, 5371, 5372, 5376, 5380, 5384, 5387, 5389, 5393, 5395, 5399, 5402, 5404, 5406, 5411, 5415, 5419, 5426, 5428, 5429, 5430, 5434, 5436, 5436, 5436, 5436, 5436, 5436, 5436, 5440, 5444, 5448, 5455, 5459, 5459, 5459, 5460, 5462, 5464, 5466, 5466, 5468, 5470, 5472, 5474, 5476, 5478, 5479, 5482, 5485, 5488, 5491, 5494, 5495, 5496, 5496, 5497, 5498, 5498, 5498, 5498, 5498, 5498, 5498, 5498, 5499, 5500, 5501, 5502, 5503, 5503, 5503, 5503, 5503, 5503, 5507, 5508, 5511, 5515, 5519, 5523, 5527, 5529, 5530, 5532, 5534, 5534, 5534, 5534, 5537, 5538, 5541, 5542, 5545, 5547, 5551, 5552, 5553, 5553, 5553, 5553, 5553, 5553, 5554, 5554, 5558, 5562, 5566, 5570, 5572, 5572, 5574, 5576, 5578, 5580, 5582, 5584, 5587, 5590, 5591, 5592, 5592, 5592, 5592, 5592, 5592, 5592, 5593, 5594, 5595, 5596, 5597, 5597, 5597, 5598, 5602, 5603, 5606, 5610, 5614, 5618, 5622, 5623, 5623, 5624, 5627, 5629, 5629, 5630, 5632, 5632, 5635, 5636, 5636, 5636, 5639, 5639, 5640, 5640, 5642, 5642, 5642, 5642, 5643, 5643, 5643, 5645, 5645, 5645, 5645, 5645, 5645, 5649, 5653, 5657, 5659, 5659, 5659, 5659, 5662, 5662, 5664, 5666, 5668, 5670, 5672, 5674, 5677, 5680, 5681, 5681, 5681, 5681, 5681, 5681, 5682, 5683, 5684, 5685, 5686, 5686, 5690, 5691, 5694, 5698, 5702, 5703, 5707, 5709, 5711, 5711, 5712, 5712, 5712, 5712, 5716, 5720, 5720, 5720, 5721, 5721, 5721, 5721, 5721, 5721, 5721, 5725, 5729, 5732, 5734, 5734, 5736, 5737, 5739, 5741, 5743, 5746, 5749, 5749, 5749, 5750, 5750, 5750, 5750, 5750, 5751, 5751, 5752, 5752, 5753, 5754, 5755, 5758, 5762, 5763, 5763, 5763, 5767, 5767, 5767, 5771, 5771, 5771, 5771, 5771, 5775, 5777, 5777, 5779, 5779, 5779, 5779, 5779, 5779, 5780, 5781, 5781, 5783, 5784, 5787, 5791, 5791, 5791, 5791, 5794, 5794, 5798, 5799, 5799, 5803, 5803, 5803, 5803, 5806, 5809, 5809, 5809, 5809, 5813, 5813, 5815, 5815, 5816, 5816, 5816, 5816, 5816, 5817, 5818, 5818, 5821, 5821, 5825, 5825, 5827, 5828, 5828, 5831, 5831, 5831, 5834, 5838, 5838, 5839, 5840, 5841, 5844, 5844, 5844, 5845, 5846, 5846, 5850, 5850, 5852, 5852, 5853, 5857, 5859, 5860, 5860, 5863, 5867, 5868, 5871, 5871, 5872, 5872, 5876, 5876, 5878, 5882, 5886, 5887, 5890, 5891, 5895, 5899, 5900, 5903, 5907, 5911, 5912, 5915, 5919, 5920, 5923, 5927, 5928, 5931, 5935, 5936, 5940, 5944, 5946, 5946 } ; static yyconst int 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, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 22, 22, 22, 22, 22, 22, 23, 23, 24, 25, 26, 27, 28, 1, 29, 30, 31, 32, 33, 34, 35, 36, 36, 37, 38, 39, 40, 36, 36, 41, 42, 36, 43, 44, 45, 36, 36, 46, 47, 48, 36, 49, 50, 51, 52, 53, 1, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 36, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst int yy_meta[83] = { 0, 1, 2, 3, 4, 5, 1, 6, 1, 7, 1, 1, 8, 9, 10, 11, 1, 12, 13, 14, 15, 16, 16, 16, 17, 18, 19, 20, 1, 1, 21, 21, 21, 21, 21, 21, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 23, 24, 25, 1, 26, 21, 21, 21, 21, 21, 21, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 27, 1, 28, 29 } ; static yyconst short int yy_base[3291] = { 0, 0, 3, 8, 58, 63, 77, 82, 116, 135, 139, 143, 193, 196, 226, 223, 256, 307, 22, 389, 33, 471, 96, 553, 156, 635, 169, 717, 173, 799, 199, 881, 200, 962, 975, 1054, 212, 253, 1135, 980, 1139, 1188, 213, 1263, 233, 1345, 260, 1427, 266, 1509, 286, 1591, 996, 1673, 1000, 1755, 1001, 1837, 1005, 1919, 1010, 2001, 1012,10640,25460, 1017,25460,25460,25460, 11,10628, 1031, 19, 0,25460, 0, 0, 21,10627, 0, 1033, 25, 0, 1145, 0,10626, 0, 0, 28,10622, 1149, 35,25460, 1155,25460,25460,25460, 49,10613, 6, 1169, 53, 0, 98, 0, 0, 0,10593, 73,10602, 1178, 74, 0, 1174,25460, 0, 0, 84,10601, 1176, 90, 0, 1180, 0, 0, 0,10584, 102,10592, 1201, 162, 966, 1207, 1231,25460,25460, 2082,10539, 168,25460,25460, 25460,10560,25460, 165, 2067,10562,25460,25460, 965, 2091, 2096,10543,25460,25460, 22, 2068, 153, 229, 1161, 2084, 230, 984, 2069, 101, 89, 2073, 2098, 1153, 1170, 2104, 2110, 2085, 2116, 147,25460,25460, 1041, 2186, 1168, 234, 10548, 0,10545, 223, 2180,25460,10541, 17,25460, 97, 1198,25460, 20,10533, 946, 2194, 2198, 2221,10531, 2225, 2248, 2213, 2233, 2252, 2257, 2277, 2296, 2304, 2191, 2102, 2222, 2242, 2303, 2324, 2328, 2349, 2164, 2356, 2360, 47, 25460, 1231,25460, 2333, 2432, 2436,25460, 2440,10494,25460, 281,10516,10532, 2463,25460,25460,25460, 2389, 2468, 977, 1021,25460, 2456, 2481, 2493, 2511, 2523, 2483, 2504, 2513, 2528, 2535, 2554, 2562, 2357, 2218, 2582, 2575, 2588, 2608, 2612, 2633, 2477, 2640, 2447, 0,25460, 0,25460, 2181, 0, 2605, 246,25460,10513, 1196, 1252, 2636, 2172, 0, 25460,10516, 2673, 2135, 0,25460,25460, 989, 0,10475, 10451,10457,10463, 2223, 0,25460,25460,25460,25460, 2185, 0, 2075,10457, 2666,25460,25460,25460,25460, 184, 271, 1138, 1149, 2559, 2105, 2694, 2705,25460,25460,10481,10440, 228,10437,10433,10437, 1105,10425,10436, 1180, 102,10422, 10416,10426, 2714, 2724, 2732, 2737, 2077,10456,25460, 2747, 2755, 2760, 2764, 2772, 2789, 2798, 2803, 2807, 2832, 2840, 2844, 2871, 2848, 2876,25460, 2880, 2906, 2884,25460, 0, 25460,25460, 2178,25460,10468, 0,10399,10392,10407,10390, 10391,25460, 2913, 2189,25460, 2280,25460, 0,25460,25460, 2221,25460,25460,10447, 0,10407,10372,10378,10365,10367, 2067,10359,10357, 2294,10344,10341,10352, 2382, 2237, 0, 25460, 2338, 0,25460, 0,10373,10338,10343,10332,10333, 2251,10317,10328, 2385,10315,10313,10323,25460, 2571,25460, 25460, 0,10325,25460,25460, 2243,10364, 0,25460,25460, 2818, 2326, 0, 2917, 0, 0,25460, 0, 0, 0, 2329,10362, 2992, 0, 2923, 2433, 2968, 3025, 3029,25460, 0,25460, 0,10333,10297, 2140,10293,10289, 2260,10284, 2159, 2841,10284,10280,10288,25460, 3046,25460, 2927,25460, 0,25460,25460, 2435,10333,10314, 2929, 2470, 2933, 2537, 119, 2091,25460, 2937, 2540, 2448, 2236, 0, 2417, 2209, 25460,25460, 2959, 2547, 2694, 2701, 0,25460, 2495, 2473, 2981, 2587, 2789, 2810,10332, 3020,25460, 2611, 2503,25460, 10330, 2885, 0, 2476,10308,25460, 2636, 2525, 0, 3050, 2931, 2970, 0, 2772, 2777, 0, 3033, 2598, 2960, 3040, 0, 2858, 2811, 2779, 0, 3056, 2632, 3048, 3058, 3086, 10298, 3119, 0, 3124, 3142, 3131,10305, 2880, 3077, 3149, 25460, 3084, 0, 3167,10241, 2342,10227, 3175, 3181,25460, 25460,10234,10266, 3194, 2485, 2231, 3040, 2527, 924, 2611, 2390, 2663, 2811, 2682, 2760, 2869, 1138, 3054, 3275, 2102, 2563, 2307, 2930, 3014, 2478, 2615, 3048, 2895, 2883, 3120, 2995, 2906, 3160,10209, 2327, 3153, 3051, 2954, 3136, 3023, 3096, 2709, 3158, 3159, 3154, 3162, 3166, 3175, 2952, 3178, 3180, 3143, 3182, 3192, 3186, 3190, 3193, 3194, 3244, 2686, 3235, 3204, 3202, 2998, 3207,10219, 3209, 3305, 3326, 3336, 3361, 3256, 3310, 3207,25460, 3318,25460, 3317, 3331,25460, 10239,10234, 3365,25460,10231,25460, 3375,10233,10225, 3390, 3400, 3410, 3428, 3437, 3460, 3464, 3487, 3491, 3514, 3526, 3541, 3551, 3574, 3639, 3602, 3606, 3668, 3680, 3698, 3721, 3741, 3751, 3766, 3776, 3794, 3806, 3878,10179, 3831, 3849, 3907, 3930, 3959, 3963, 3986, 3990, 4013, 4017, 4042, 4054, 3821, 4072, 4081, 3458, 3338, 3365, 3512, 3324, 3408, 3425, 3635, 3537, 3714, 3612, 3475, 3665, 3798, 3744, 3670, 3913, 10227, 3942, 0, 4099, 4060, 4115, 4124, 4147,25460, 4152, 10216,10208, 4159, 4170, 3937, 4178,25460, 4182, 4186,25460, 10206,25460, 4207, 4211, 4236, 4245, 4265, 4277, 4295, 4304, 4322, 4340, 4349, 4369, 4378, 4398, 4423, 4488, 4448, 4457, 4523, 4553, 4578, 4596, 4608, 4628, 4637, 4655, 4667, 4739, 10159, 4692, 4710, 4768, 4798, 4810, 4828, 4837, 4855, 4864, 4882, 4891, 4911, 4923, 4941, 4950, 4978, 4987, 5012, 5016, 5043, 5055, 5075, 5093, 5105, 5125, 5134, 5162, 5166, 5195, 5204, 5213, 0, 0, 3443, 3311, 3332,10201, 3368, 3366, 10199,10198, 3319, 3430, 4090, 3496,25460,10199,10208,10189, 3611, 0, 0,10135,10130,10131,10144, 3455, 0, 3478, 0, 3283,10138,10119, 3708, 2870,25460, 4014, 3973,25460, 4216, 3574, 4246, 4138,10148,10119,10131,10130,10108,10109, 10097, 3556,10088,10088,10086,10080, 1162,10076,10079,10074, 10069,10076,10074, 4403,10110, 4410, 0, 4453, 4283, 3080, 4541, 4549, 4582,10109,10101, 4983, 5238, 5061, 5242, 5130, 5246, 5314, 5274, 5278, 5284, 5346, 5350, 5354, 5379, 5383, 5395, 4435, 4518, 3746, 4697, 4728, 5387,10059,10047,10055, 10043,25460, 5413, 0, 0,10033,10035,10031,10007,10013, 5427, 0, 0,10032, 9998,10010, 9989, 9990, 3566, 9985, 9984, 9987, 9965, 2781, 9962, 9960, 9968, 9966, 4022, 4052, 4082,25460, 0, 0, 9983, 9951, 9964, 9941, 9937, 0, 9924, 9920, 9923, 9910, 2846, 9895, 9892, 9900, 9894, 0, 9939, 3337,25460, 0, 4774, 5250, 5435,25460,25460, 0, 0, 3367, 3176,25460, 5506,25460, 3753, 3332, 3443, 3709, 5471, 0, 0, 9906, 9867, 9880, 9863, 9852, 9856, 5588, 9835, 9839, 9834, 9835, 9820, 9805, 3393, 9801, 9797, 3572, 9781, 5562, 9817, 9816, 9814, 3893, 3809, 9813, 3402, 9824, 3895, 3836, 9788, 3487, 2701, 9799, 3154, 5450, 5533, 3948, 4064, 4222, 5628, 5642, 3433, 4528, 3509, 4212, 4428, 3404, 4082, 4237, 4609, 4668, 3548, 3522, 3581, 4341, 4309, 9784, 3488, 9779, 3542, 3602, 4030, 15, 4188, 4349, 4290, 4465, 3712, 3371, 3722, 3869, 4633, 2677, 4357, 3127, 3756, 5649, 5677, 4929, 5288, 5681,25460, 9778, 5413, 5706, 5475, 5720, 3633, 9747, 5738, 5500, 0, 5746, 9712, 9697, 9686, 9683, 5762, 4943, 9714, 9708, 5557, 5770, 3405, 2223, 3630, 5844, 3555, 2517, 3625, 3650, 2608, 2451, 3711, 3925, 3768, 3704, 25460, 5787, 5884,25460,25460, 9711, 5606, 3929, 3823, 3865, 2991, 3496, 3615, 3948, 3867, 3994, 4035, 5935, 3965, 4075, 3698, 4084, 4067, 5975, 4124, 241, 4188, 3771, 4086, 4219, 3668, 4274, 3351, 3982, 3795, 4036, 3917, 4085, 4488, 3888, 4140, 4387, 3550, 3781, 4258, 2659, 2936, 4287, 3923, 4291, 4150, 4603, 4293, 3527, 2821, 4210, 4418, 3940, 4516, 4518, 4441, 4256, 4069, 3927, 4338, 4372, 4092, 4400, 4285, 5993, 6018, 6025, 9661, 9659, 4682, 4588, 4623, 4657, 9684, 4873, 6035, 5805, 6044, 6053, 6125, 6078, 6082, 6154, 6166, 6196, 6208, 6223, 6235, 6255, 6264,25460, 4946,25460, 9674,25460, 9677, 9668, 6284, 6299, 6311, 6331, 6341, 6359, 6368, 6377, 6386, 6440, 6469, 6481, 6409, 6499, 6511,25460, 5418,25460, 9663,25460, 9662, 9646, 6529, 5876, 5049, 6541, 6603, 6564, 6632, 6568, 6644, 6674, 6686, 6701, 6711, 6721, 6731, 6741, 6756, 6768, 6783, 6795, 6810, 6820, 6830, 6840, 6863, 6867, 6890, 6899, 6917, 6927, 6942, 6957, 6967, 6982, 6992, 7002, 7017, 7040, 7049, 7058, 7076, 7085, 7067, 5714, 5566, 5575, 4646, 5908, 6000, 9643, 5774, 5830, 5901, 5916, 7122, 7131, 7140, 7158, 7230, 7185, 7203, 7259, 7167, 7271, 7302, 7320, 7329, 7338, 7347, 7356, 4846,25460, 9637,25460, 7384, 7393, 7411, 7423, 7441, 7450, 7468, 7477, 7531, 7560, 7572, 7590, 7602, 7620, 7629, 5872,25460, 9636,25460, 7638, 7663, 7725, 7695, 7754, 7766, 7796, 7808, 7691, 7826, 7838, 7866, 7875, 7884, 7902, 7920, 7911, 7940, 7952, 7972, 7981, 7999, 7990, 8017, 8026, 8051, 8063, 8090, 8099, 8117, 8144, 8153, 8126, 8173, 8201, 8205, 8231, 8235, 8260, 8278, 9651, 3651, 0, 9636, 9582, 9590, 9577, 9571, 4317, 9580, 9554, 9552, 9553, 9544, 5184, 6083, 4992, 5085, 5465, 6236, 6243, 5069, 5005, 5114, 9546, 9535, 9530, 9543, 9537, 9511, 4687, 9507, 9499, 9485, 9483, 9491, 9484, 9475, 9483, 9476, 9480, 9478, 6192, 7114, 7505, 4803, 7681, 8296, 6670, 7792, 8303, 7675, 5967, 9506, 9489, 8307, 8313, 8321, 8346, 8350, 8356, 8360, 8385, 8390, 8395, 4767, 4778, 9448, 9456, 9454, 9442, 9430, 9418, 9422, 0, 9431, 9407, 9400, 9414, 9413, 9404, 9405, 9384, 9382, 9384, 9377, 9370, 9369, 9368, 9354, 9348, 9348, 9347, 9337, 9336, 9323, 9317, 9320, 9310, 9308, 9312, 9314, 9346, 25460, 9345, 4850, 0, 6312, 7024, 5399, 4883, 4504, 8071, 8178, 4392, 5790, 4526, 9289, 9281, 9276, 9278, 9277, 9259, 9259, 9243, 9239, 9225, 9225, 9232, 9224, 9220, 9223, 9220, 9215, 9255, 0, 4538, 9248, 4617,25460, 9229,25460, 9233, 25460, 0, 9230,25460,25460, 9224,25460, 9215, 0, 9197, 0, 4916, 8400, 5170, 0, 0, 5924, 6071, 0, 9196, 0, 4010, 5292, 4556, 0, 0, 4717, 4803, 4794, 4947, 9210, 5154, 9187,25460, 0, 9186, 0, 3794, 5448, 4269, 0, 0, 4585, 4640, 5624, 5656, 4225, 4579, 4711, 4722, 4759, 8421, 6547, 8449, 8454, 8481, 8485, 8509, 7851, 0, 4733, 8513, 8525, 8541, 8564, 6110, 6160, 8587,25460, 9137, 9142, 9124, 8595, 8611, 8623, 6184, 6636, 6774, 7564, 9170, 4870, 4774, 9123, 4768,25460, 8628, 8681,25460,25460, 9162, 7273, 6282, 4330, 4932, 4836, 4972, 4383, 4925, 5187, 8686, 8711,25460, 5006, 5192, 8762, 5299, 4449, 4822, 4906, 5051, 5332, 8802, 3390, 4915, 4409, 5014, 5033, 5056, 4970, 5076, 5107, 4978, 9112, 5114, 4613, 5132, 5035, 5165, 9102, 5156, 5103, 5215, 5234, 5236, 8859, 5198, 5395, 4958, 5266, 5469, 5304, 5358, 5275, 5244, 5459, 5487, 5202, 5310, 5694, 4634, 5298, 6351, 5421, 3989, 4784, 5494, 5478, 5477, 5291, 5552, 9101, 9103, 5731, 5963, 5801, 5817, 6083, 6872, 8833, 7500, 8654, 8725,25460, 6873,25460, 9139,25460, 9134, 9122, 8930, 8729, 8890, 8894, 8959, 8971, 8989, 9001, 9016, 9034, 9046, 9061, 9086, 9096, 9111, 6900, 9121, 9136, 9146, 9161, 9171, 9186, 9196, 9206, 9226, 9235, 9253, 9265, 9283, 9292, 9310, 9322, 9337, 9347, 9362, 9372, 9387, 9397, 9412, 9422, 9432, 9442, 9460, 9478, 9487, 9507, 9516, 9534, 9546, 9566, 9576, 9591, 9601, 9621, 9644, 9654, 9664, 9674, 7667, 8578, 5571, 5645, 8717, 8845, 6421, 8798, 9122, 9692, 9701, 9726, 9735, 9744, 7176,25460, 9115,25460, 9805, 9762, 9774, 9834, 9846, 9864, 9876, 9896, 9914, 9926, 9951, 9971, 9980, 9989, 9998, 10023,10041,10050,10068,10077,10086,10104,10113,10139,10148, 10173,10177,10202,10211,10236,10245,10265,10274,10283,10301, 10313,10340,10344,10371,10375,10400,10412,10432,10450,10468, 10494,10498,10523,10543,10552,10561,10588,10613,10625,10650, 10654, 0, 9118, 4921, 9114, 9062, 9060, 9063, 9061, 9044, 9030, 9031, 9036, 9026, 9021, 9009, 5434,25460, 6005, 5649, 5686, 9074, 7497, 6154, 5698,25460, 5730, 6163, 9072, 6216, 5751, 9000, 9004, 8996, 8997, 9005, 8969, 8980, 8984, 8965, 8965, 8959, 8962, 8947, 8863, 0, 8876, 5752, 8981,10720, 9627, 9052,10418,10801,10805,10809,10813,10817,10844,10848, 10856, 8929, 8929, 8933, 8938, 8914, 8905, 8908, 8890, 5834, 5971, 5812, 6062, 6198, 6153, 6294, 6006, 6233, 6197, 8895, 8887, 8857, 8870, 8853, 8861, 8864, 8844, 8846, 8834, 8886, 25460, 5643, 0, 8873, 0, 6412, 8206, 6429, 0, 0, 6586, 6593,10926, 8819, 8825, 8816, 8830, 8812, 8819, 8786, 8798, 8802, 8772, 8776, 8761, 8754, 0, 8799,25460,25460, 8815, 6260, 8814,25460, 8807,25460, 8806,25460, 0, 6226, 6288, 0, 5724, 5778, 8805,25460, 8795, 8794, 6343, 8793, 0, 5409, 5493, 5901, 8765, 5608, 5657,11007, 9780,10529, 11013, 8734, 8715, 8716,11094, 8759, 7429, 5486, 5769, 8703, 5783,11036,11042,25460, 5987,11152, 6432, 5171, 5639, 8702, 8696, 5994,11233, 7761, 5516, 5899, 6118, 8698, 5724, 5711, 5570, 6031, 6052, 8681, 6317, 5857, 5898, 6159, 6242, 6262, 6047, 5807, 6298, 6270, 6308, 6090, 6342, 6351, 8668, 8657, 6344, 8660, 8659, 6049, 5825, 6403, 5875, 6414, 6418, 6438, 5747, 6439, 6335, 8681,11304, 6422, 8650, 6445, 6457, 6474, 6662, 6482, 6500, 6007, 8637, 8631, 7094, 8674,25460, 7149, 10459,11052,11124,11187,11243,11386,11268,11272,11427,11445, 11345,11457,11355, 6461, 8628,11475,11493,11502,11520,11530, 11540,11560,11570,11104,11588,11598,11613,11628,11638,11648, 11663,11673,11698,11713,11723,11733,11748,11760,11775,11785, 11805,11820,11835,11845,11855,11915,11875,11944,11956,11884, 11974,11986,12001,12013, 7374,10873,12031,12043,12068,12072, 12097,12106,12115,12133,12142,12175,12242,12184,12215,12211, 12271,12301,12313,12333,12342,12351,12377,12386,12406,12424, 12433,12442,12451,12469,12478,12498,12510,12528,12540,12560, 12569,12578,12587,12596,12605,12630,12684,12713,12648,12725, 12743,12755,12775,12787,12807, 8657, 2137, 8610, 8605, 8595, 8603, 8603, 8593, 8588, 8572, 8578, 8568, 8568, 6006,25460, 6571, 8614, 6573, 8609, 8553,25460, 8548, 8543, 8531, 8537, 8521, 8524, 8525, 8518, 8504, 8517,10679, 8550,11077,10685, 11191,11183,11218,11880,12812,11341,12837,12275, 8476, 8477, 8484, 8469,12841, 7833,10620,12848, 8486, 8480, 8459, 8463, 8447, 8448, 8426, 8429, 8416, 8411, 8393, 8405, 8388, 8395, 8376, 8388, 8427, 8422, 0, 6817, 6881, 8379,12874, 8370, 8355, 8355, 8355, 8353, 8334, 8341, 8329, 8321, 8326, 8353, 6675, 8355, 8343,25460, 8341,25460, 0, 6427, 6554, 8312, 8270, 8275, 8276,12881, 7958, 8919, 0,10689,12898, 7215, 12933, 5680, 4762, 5133, 6396,12966, 6066, 6212, 6239, 6242, 13016,12972,13011, 6523, 4386, 8274, 6530, 6512, 6272, 6615, 4727, 6648, 6298, 3141, 5389, 5026, 6656, 6505, 5925, 6645, 6718,13087, 8274, 8251, 6657, 6638, 7012, 4853, 6719,25460, 6664, 6709, 5833, 6695,13127,13157, 6698, 6739, 6733, 8247, 8256,10888,13042,13051,13171,13183,13210,13220,13230,13250, 13259,13268, 8218,13277,13286,13306,13315,13335,13344,13353, 13362,13380,13389,13398,13407,13425,13495,13450,13454,13536, 13554,13566,13584,13593,13602,13620, 8427, 9472,13121, 7418, 13638,13650,13670,13682,13700,13709,13718,13744,13753,13773, 13791,13800,13809,13818,13838,13847,13856,13874,13883,13892, 13901,13919,13937,13949,13967,13976,14001,14010,14019,14028, 4856, 8210, 8189, 8200, 9956, 8179, 8189, 8187, 8172, 8144, 0, 8117, 84, 168, 956, 1131, 2268, 2300, 0, 6932, 13153,12180,14046,13526,13047, 7314, 2561, 2893, 3018,14053, 25460, 3243, 3286, 3437, 3700, 3851, 3879, 3902, 4110, 4149, 4239, 4293, 4351, 4457, 4481, 4532, 4603, 4661, 4758, 5052, 5082, 5146, 5213, 6742,25460, 5362, 6868, 5424, 5459, 5486, 6756, 9841,14061,14086,10579,11070,14090, 5581,14115, 7597, 7784, 7044, 6685, 6760, 6783,14132, 6798, 6804, 6807, 6861, 5561,14183, 6882, 6877, 6894, 6878, 6916, 7291, 7050, 6784, 6921,14264, 5600, 5615, 6887, 6778, 6932, 6592, 6931, 6945, 6934, 6966,14224,14269, 5709, 6944, 7103, 5767,14282,14146, 14305,14328,14337,14346,14355, 5914,14378,14388,14398,14413, 14423,14433,14443,14461,14470,14495,14505,14520,14530,14545, 11111,14218, 8267, 8549, 8290,14557,14583,14587,14612,14616, 14642,14660,14672,14699,14708,14717,14726,14746,14758,14776, 14794,14803, 7032, 5922, 0, 5980,11337,25460, 6036, 6109, 25460, 6154, 0, 6197, 6283, 6301, 7264,14828,14833, 6314, 6309, 6405, 6407, 6470, 6472, 6476, 6517, 6584, 6590, 6577, 6636, 6649, 6653, 6726, 6727, 6734, 6783, 6794, 6799, 6886, 7297, 7195, 6846, 6872, 6917, 6957,14840,14845,14870, 8827, 9090, 7219, 7055, 6976, 9908,25460,14875,14903,25460,25460, 6974, 8019, 6970, 7064, 7073,14954,15035,15040,15064, 7004, 0, 6957, 6971, 7034, 7060, 7049, 7072, 7104, 7129, 7166, 7383, 7193, 7081, 7459,25460,15080,15090,15100, 0,15120, 15129,15147,15157,15172,15182,10035,15200,15218,15227,15245, 15254, 7143, 7080, 7098, 7108,25460, 7134, 7149, 7143, 7154, 7160, 7153, 7198, 7196, 7200, 7206, 7207, 7244, 7379, 7288, 7234, 7250, 7365, 7382,15070,15284, 7303, 7304, 7385, 7429, 10308,10444,25460,15288, 7286, 9569, 7301, 9719, 7317,15316, 15332, 7349, 7377,15383, 7465,13186, 7329, 7331, 7335, 7381, 7380,25460, 7376, 7458, 7482, 7442,15423, 9594, 7400,14917, 15298,15350,15453,15465,15480,15500,15520, 7474, 7401, 7427, 7422, 7436, 7458, 7459, 7474, 7480, 7484, 7503, 7489, 7498, 7621, 7518, 7647, 7584,15538,15418, 7669, 7586, 7641, 7564, 10860,10906,25460, 8022,10207, 7563,25460,15552,15569, 7580, 7616, 7679, 9280,25460, 7904,15597,15602,25460,14233,15653, 15729, 7609, 9325,12069,12998, 7591, 7593, 7603, 7718, 7590, 7640, 7758, 7689,15748, 7647, 9929, 7662,10241, 7624,15758, 15623,15762,15785,15800,15810,15835,15861, 8135, 7644, 7648, 7666, 7673, 7686,15839, 7698, 7705,11087, 7708, 7709, 7967, 15873,15879, 7770, 7816, 9953, 7809, 7865, 8663, 8058,25460, 0,10593, 7799, 0, 7713,15947,14158,14690,14908, 7841, 7729, 7747, 8285, 7767, 7800, 7826, 8149,10270, 7777,15896, 7827,16028,16032,16055,16064,16073, 8083, 8237,15448, 7813, 7819,11136, 7820, 7843,11415, 7846, 7856,16100, 7905,16105, 16130, 7901, 8092, 7997,16200, 7873, 0, 8965,16282, 8048, 16364, 7861, 7877, 8050, 7946, 7896,16134, 8333, 8376, 8053, 7895, 7891, 7910, 7923, 7919, 7974,16445,16515, 8078,16597, 0,11703,16679,16761, 7919,16449,16842, 0,16893, 0, 11487, 8262, 8435,16975, 8108, 7943, 8120, 7950,16144, 8489, 25460, 8519, 7957, 7976, 7982,17057,15627,15847, 8616,13767, 8127, 8042,17139,17220,17225, 0, 0, 9041,17276, 8005, 12535, 8653, 8832,15922, 8958, 0, 9571,17358, 8122, 8017, 8093, 8026,17439,16162, 8892, 8066, 0,17457,17464, 0, 8061, 8991, 9123,11421, 0, 8076, 8150, 8572,17474, 8252, 8070, 9233, 9221, 8754, 8155, 8072, 9260, 9084, 8372, 9255, 9514, 9639, 8156,10007,10157, 8157,11266, 8152, 8199, 8156, 8162, 8459,17492,25460,17546,17575,17604,17633,17662,17691, 17720,17749,17778,17807,17836,17865,17894,17923,17952,17980, 18009,18037,18062, 8347,18087,18112,18140,18165,18190, 8455, 8724, 8475,18201, 8535,18214, 8617, 9304, 8649, 9477,18240, 18268,18296,18321, 8675, 9540, 8799, 9775, 8849,18346, 9002, 10098, 9085,18372,10308, 9131,18400,18426, 9156,18455,18484, 9221,10334, 9361,18498,18524,18553,18582,18611,18640,18669, 9386,18697,18722,18748,18776, 8196,18805,18833,18858,18883, 18908,18933,18959, 9407,18987,19012,19038,19066,19091,19116, 10370,19127,19140, 9734,10488,10620,19166, 9431,19194,19219, 19245,19273,10644,11203,19298,11356,11508,19324,19353,19381, 19407,11555,19436,11583,19450,19476,19505,19534,19563,19592, 19621,19650,19679,19708,19737,19766,19795,19824,19853,19882, 19911,19940,19969,19998,20027,20056,20085,20114,20142,20167, 20192,20217,20242,20270,20298, 8231,20323,20351,20380,20409, 20438,20466,20491,20516,20541,20566,20592,20620,20645,20670, 20695,20720,20748,20777,20805,20830, 9854,20841, 9502,20854, 11672,11742,20880,20909,20938,20967,20996,21024,21049,21077, 21105,21131,21159,11929,11995,12038,21185,12153,21214,21243, 21272,21301,21330,12174,10076,21359,21388,21417,21446,21475, 21504,21533,21562,21591,21620,21649,21678,21707,21736,21765, 21794,21823,21852,21881,21910,21939,21968,21997,22026,22055, 22084,22113,22142,22171,22200,22229,22258,22286,22311,22336, 9663,22361,22389,22414,22442,22470,22496,22524,22549,22574, 22599,22625,22653,22678,22703,22731,22756, 9687,22767,22778, 22791,12205,12371,22817,22846,22875,22904,22933,22962,22991, 23020,23048, 9752,23073,23098,12463,23123,12618,23149,23178, 23207,23236,23265,23294,23323,12620, 9870,23337,23363,23392, 23421,23450,23479,23508,23537,23566,23595,23624,23653,23682, 23711,23740,23769,23798,23827,23856,23884,23909,23937,23965, 23993,24021,24046,24071,24099,24110,24121,12642,12655,24147, 24176,24205,24234,24263,24291,10147,24316,24341,12657,12698, 24368,24397,24426,12782,24440,24466,24495,24524,24552,24577, 9882,24605,24630,24655,24680,24708,24733,24758,24769,12802, 12843, 9915,24794,24819,12866,12907,12918,12939,24844,24870, 24898,24923,24948,24974,25003,25032,25061,25090,25119,25148, 25177,25206,25235,25264,25293,25322,25351,25379,25404,25430 } ; static yyconst short int yy_def[3291] = { 0, 2925, 2925, 2926, 2926, 2927, 2927, 2928, 2928, 2929, 2929, 2930, 2930, 2931, 2931, 2925, 2925, 2924, 17, 2924, 19, 2924, 21, 2924, 23, 2924, 25, 2924, 27, 2924, 29, 2924, 31, 2925, 2925, 2924, 35, 2925, 2925, 2932, 2932, 2925, 41, 2924, 43, 2924, 45, 2924, 47, 2924, 49, 2924, 51, 2924, 53, 2924, 55, 2924, 57, 2924, 59, 2924, 61, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2933, 2924, 2933, 2933, 2933, 2933, 2934, 2933, 2933, 2935, 2924, 2935, 2924, 2935, 2935, 2935, 2935, 2935, 2935, 2924, 2936, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2937, 2937, 2937, 2937, 2937, 2924, 2924, 2937, 2937, 2924, 2938, 2924, 2924, 2938, 2938, 2938, 2938, 2938, 2938, 2939, 2924, 2939, 2939, 2939, 2924, 2939, 2939, 2939, 2939, 2924, 2924, 2924, 2924, 2924, 2940, 2941, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2942, 2942, 151, 2924, 2924, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 2924, 2924, 2943, 2924, 2924, 2924, 2924, 2944, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2945, 2945, 2945, 2924, 2945, 2945, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2946, 2941, 2924, 2924, 2924, 2924, 2947, 2924, 2924, 2924, 2948, 2924, 2924, 2924, 2924, 2949, 2949, 2949, 2949, 2949, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 2950, 2924, 2951, 2924, 2924, 2952, 2924, 2924, 2924, 2953, 2953, 2924, 2924, 2924, 2954, 2924, 2955, 2924, 2924, 2956, 2924, 2924, 2924, 2957, 2957, 2957, 2957, 2957, 2924, 2958, 2924, 2924, 2924, 2924, 2924, 2959, 2959, 2959, 2924, 2924, 2924, 2924, 2924, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2961, 2924, 2924, 2924, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2963, 2924, 2924, 2924, 2924, 2924, 2924, 2964, 2924, 2924, 2924, 2924, 2924, 2965, 2965, 2965, 2965, 2965, 2965, 2924, 2924, 2924, 2924, 2924, 2924, 2966, 2924, 2924, 2924, 2924, 2924, 2924, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2924, 2924, 2968, 2924, 2969, 2970, 2924, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2924, 2924, 2924, 2924, 2972, 2973, 2924, 2924, 2924, 2924, 2974, 2924, 2924, 2924, 2924, 2975, 2976, 2977, 2977, 2924, 2978, 2977, 2977, 2977, 2977, 2979, 2980, 2977, 2977, 2924, 2924, 2924, 2924, 2981, 2924, 2982, 2982, 2982, 2982, 2982, 2982, 2982, 2982, 2982, 2982, 2982, 2982, 2982, 2924, 2924, 2924, 2924, 2924, 2983, 2924, 2924, 2924, 2924, 2984, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2985, 2985, 2985, 2924, 2924, 2985, 2985, 2985, 2985, 2986, 2924, 2986, 2986, 2986, 2986, 2986, 2986, 2987, 2987, 2924, 2987, 2924, 2924, 2924, 2924, 2988, 2988, 2924, 2924, 2924, 2924, 2988, 2988, 2924, 2924, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2990, 2924, 2924, 2990, 2990, 2990, 2990, 2924, 2990, 2924, 2924, 2924, 2991, 2992, 2992, 2993, 2924, 2994, 2924, 2995, 2924, 2924, 2996, 2991, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 545, 2924, 2997, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 2992, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 579, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 2998, 2998, 2999, 2924, 2924, 2924, 2924, 2924, 3000, 2924, 2924, 3001, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 3002, 2924, 3003, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 664, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 2924, 2924, 2924, 3004, 3005, 3006, 3004, 2924, 2924, 2924, 3005, 2924, 3007, 3008, 3008, 3009, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 748, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3011, 3011, 2924, 2924, 2924, 3012, 2924, 2924, 3012, 2924, 3012, 2924, 2924, 2924, 2924, 3013, 3014, 3013, 2924, 3015, 3015, 3015, 3015, 3015, 3015, 2924, 3016, 2924, 3016, 3016, 3016, 3016, 2924, 3017, 2924, 3017, 3017, 2924, 3017, 3017, 3017, 3017, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 3018, 3019, 3020, 2924, 3018, 2924, 3019, 2924, 3021, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3020, 3020, 3022, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 2924, 3024, 3024, 3024, 3024, 3024, 3024, 3024, 3024, 3024, 3024, 3024, 3024, 3024, 3024, 3024, 3024, 3024, 3025, 2924, 3025, 2924, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3027, 3028, 3029, 2924, 3027, 3030, 2924, 3030, 2924, 2924, 3031, 3032, 3031, 3031, 2924, 3033, 2924, 3031, 3031, 3031, 3031, 2924, 3034, 3034, 3034, 3034, 3034, 3034, 3034, 3034, 3034, 3034, 3034, 3034, 3034, 3034, 3034, 3034, 3034, 3034, 3034, 3034, 2924, 3035, 3035, 2924, 2924, 2924, 3036, 3036, 3037, 2924, 2924, 3038, 3038, 2924, 3039, 2924, 3040, 3040, 3041, 3042, 3042, 3043, 3043, 3042, 3044, 3042, 3045, 3045, 3046, 3047, 3047, 3048, 3048, 3047, 3049, 3047, 3050, 3050, 3036, 3036, 3038, 3038, 3051, 3051, 3052, 3053, 3053, 3054, 3054, 3053, 3055, 3053, 2924, 2924, 3056, 3057, 3058, 3057, 3059, 3060, 3061, 3061, 3062, 2924, 2924, 2924, 3063, 2924, 3063, 2924, 2924, 3064, 3065, 3066, 3067, 2924, 2924, 2924, 2924, 3068, 3069, 3070, 3071, 2924, 3060, 1066, 1066, 1066, 3060, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 2924, 2924, 2924, 2924, 2924, 2924, 3069, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 3060, 1066, 1066, 1066, 1066, 1066, 2924, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 2924, 2924, 3072, 2924, 2924, 3073, 3074, 3075, 3076, 3077, 2924, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 2924, 2924, 2924, 2924, 2924, 2924, 3077, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 2924, 2924, 2924, 2924, 2924, 2924, 3077, 3078, 2924, 2924, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3079, 3080, 3080, 3081, 3082, 3083, 3084, 2924, 2924, 2924, 3085, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 2924, 2924, 2924, 2924, 2924, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 2924, 2924, 2924, 2924, 2924, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3087, 3088, 3089, 3090, 3091, 3091, 3091, 3091, 2924, 2924, 3092, 3092, 3092, 3092, 3093, 3093, 3094, 3095, 3095, 3096, 3096, 3095, 3097, 3095, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 3098, 3099, 3100, 2924, 3101, 3101, 3101, 3101, 3101, 2924, 2924, 2924, 3102, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 2924, 3103, 2924, 2924, 2924, 2924, 3104, 3104, 3104, 3104, 3104, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3106, 3106, 3106, 3106, 3106, 3106, 3106, 3106, 3106, 3106, 3106, 3106, 3106, 3107, 2924, 2924, 2924, 3108, 3109, 3109, 3110, 3111, 3111, 3112, 3112, 3111, 3113, 3111, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3115, 3116, 2924, 3117, 2924, 2924, 2924, 2924, 3118, 2924, 3119, 3120, 2924, 2924, 3121, 2924, 3122, 3123, 3123, 3123, 3124, 3125, 3126, 3123, 3123, 3127, 3128, 3129, 3129, 3129, 3130, 3131, 3132, 3129, 3129, 3133, 3134, 3135, 3136, 3137, 3136, 2924, 2924, 3138, 3138, 3138, 3139, 3140, 3141, 3138, 3138, 3142, 3143, 2924, 2924, 2924, 3144, 3145, 3146, 3147, 2924, 2924, 3148, 3149, 2924, 2924, 3150, 2924, 3151, 2924, 3151, 2924, 3152, 3152, 3153, 3153, 3154, 2924, 2924, 2924, 2924, 3155, 3155, 3149, 3156, 2924, 2924, 2924, 2924, 1555, 1555, 1555, 1555, 2924, 2924, 2924, 2924, 2924, 2924, 3157, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 2924, 2924, 2924, 1555, 1555, 3149, 1555, 1555, 1555, 1555, 1555, 1555, 2924, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 2924, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1585, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 2924, 2924, 2924, 2924, 3158, 3159, 3159, 3160, 3161, 3161, 3161, 3161, 2924, 2924, 2924, 2924, 2924, 2924, 3162, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 2924, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 2924, 3163, 2924, 3164, 3165, 3165, 3166, 2924, 2924, 3167, 3167, 3167, 3167, 2924, 2924, 2924, 2924, 2924, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 2924, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3167, 3168, 3169, 3170, 3171, 3172, 3172, 3172, 3172, 2924, 2924, 2924, 3173, 3173, 3173, 3173, 3174, 2924, 3174, 3174, 3175, 3176, 3177, 3178, 3174, 2924, 3174, 3179, 3180, 3181, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 3182, 3183, 3184, 2924, 2924, 2924, 3185, 3185, 3185, 3185, 3185, 3185, 3185, 3185, 3185, 3185, 3185, 2924, 2924, 2924, 2924, 3186, 3186, 3186, 3186, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3188, 3188, 3188, 3188, 3188, 3188, 3188, 3188, 3188, 3188, 3189, 2924, 2924, 3190, 3190, 3190, 3191, 3192, 3193, 3190, 3190, 3194, 3195, 2924, 3196, 3196, 3196, 3196, 3196, 3196, 3196, 3196, 3196, 3196, 3196, 3196, 3196, 3197, 3198, 2924, 2924, 3199, 2924, 3200, 2924, 3201, 2924, 3202, 2924, 3203, 3204, 3205, 3206, 3207, 3208, 3209, 2924, 3209, 3210, 2924, 3211, 3212, 3213, 3214, 2924, 2924, 3215, 3216, 3217, 3218, 3219, 3220, 2924, 2924, 2924, 3217, 2924, 3221, 1945, 1945, 1945, 1945, 2924, 2924, 2924, 1945, 3217, 1956, 1945, 1945, 1945, 1945, 1945, 2924, 1945, 1945, 1945, 1956, 2924, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 2924, 2924, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 2924, 1956, 1945, 1945, 1945, 1945, 1945, 1956, 1945, 1945, 1945, 2924, 2924, 2924, 2924, 2924, 3222, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 2026, 2924, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3223, 3224, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3226, 3227, 3228, 3228, 3228, 3228, 2924, 2924, 2924, 3229, 3229, 3229, 3229, 3230, 2924, 3231, 3232, 3233, 3234, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 3235, 3236, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 2924, 2924, 2924, 2924, 3238, 3238, 3238, 3238, 3239, 3239, 3239, 3239, 3239, 3239, 3239, 3239, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 2924, 2924, 3241, 3242, 3243, 3244, 3244, 3244, 3244, 3244, 3244, 3244, 3244, 3244, 3244, 3244, 3244, 3245, 2924, 2924, 3246, 2924, 3247, 2924, 3248, 2924, 2924, 2924, 2924, 2924, 2924, 3249, 3250, 3250, 3251, 3252, 3252, 3253, 3249, 2231, 2231, 2231, 2231, 2924, 2231, 2231, 2231, 2231, 2924, 2924, 2924, 2231, 2231, 2924, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 3249, 2924, 2924, 2231, 2231, 2262, 2231, 2231, 2924, 2231, 2231, 2231, 2231, 2924, 2924, 2231, 2231, 2231, 2924, 2924, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 2924, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3255, 3255, 3256, 3257, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3259, 3260, 3260, 3260, 3260, 2924, 2924, 2924, 3261, 3261, 3261, 3261, 2924, 2924, 2924, 2924, 2924, 2924, 3262, 3263, 3264, 2924, 3264, 3264, 3264, 2924, 2924, 2924, 2924, 2924, 2924, 3265, 3265, 3265, 3265, 3265, 3265, 3265, 3266, 3266, 3266, 3267, 3267, 3267, 3268, 3268, 3268, 3268, 3268, 3268, 3268, 3268, 3268, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2231, 3250, 3269, 3269, 2924, 2924, 3252, 3270, 3252, 3271, 3271, 3272, 2231, 2231, 2231, 2924, 2231, 2231, 2231, 2231, 2924, 2262, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2924, 2924, 2924, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2924, 2924, 2924, 2231, 2924, 2924, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 2924, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 3254, 2924, 3256, 3257, 3257, 3273, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3259, 3260, 3260, 3260, 2924, 2924, 2924, 2924, 2924, 3261, 3274, 2924, 2924, 2924, 3263, 3264, 3264, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 3265, 3265, 3265, 3265, 3265, 3265, 3265, 3266, 3267, 3268, 3268, 3268, 3268, 2924, 2924, 2924, 2924, 2924, 2924, 2231, 3269, 3269, 3252, 2924, 3272, 2231, 2231, 2231, 3275, 2924, 2924, 2924, 2924, 2924, 2924, 3276, 2231, 2231, 2231, 2924, 2924, 2924, 2924, 2231, 2442, 2924, 2924, 2924, 2924, 2924, 2924, 2231, 2231, 2231, 2432, 2231, 2924, 2924, 2924, 3254, 3254, 3254, 3277, 3254, 3254, 3254, 3254, 3254, 3254, 3273, 3258, 3258, 3258, 3258, 3258, 3259, 3260, 2924, 3261, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 3265, 3265, 3265, 3265, 3265, 2924, 2924, 2924, 2924, 2924, 2231, 3269, 3252, 2231, 2231, 2231, 2231, 2924, 2924, 2924, 2924, 3278, 3276, 3278, 2924, 3279, 3279, 3279, 2924, 3279, 2566, 3279, 3280, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2231, 2231, 2231, 2924, 3281, 2924, 3254, 3254, 3254, 3254, 3254, 3254, 3258, 3258, 3259, 3260, 2924, 2924, 2924, 2924, 2924, 2924, 3265, 3265, 3265, 3265, 3265, 2924, 2924, 2924, 2231, 3269, 3252, 2231, 2231, 2231, 2231, 2924, 2924, 2924, 2924, 2924, 3279, 2924, 3279, 3279, 2924, 3279, 3279, 3282, 2924, 2924, 3279, 3279, 2924, 3280, 2924, 3280, 3283, 3282, 3284, 3279, 2924, 2924, 2924, 2924, 2924, 2231, 2231, 2231, 2924, 3285, 3281, 3285, 2924, 2924, 3254, 3254, 3254, 3254, 3254, 3254, 3258, 3258, 3259, 2924, 2924, 2924, 2924, 2924, 3265, 3265, 3265, 3265, 3265, 2924, 2644, 3269, 3252, 2231, 2231, 3286, 2231, 2924, 3279, 2924, 2924, 2710, 2710, 3279, 2644, 2644, 2924, 3279, 3279, 3279, 3279, 2924, 2924, 2924, 2924, 2231, 2231, 2924, 2924, 2924, 3254, 3287, 3254, 3254, 3254, 3258, 3258, 2924, 3288, 2924, 2924, 2924, 2924, 2924, 3265, 2924, 3265, 2924, 3279, 2924, 3269, 3252, 2231, 3279, 3279, 2924, 2644, 2766, 2766, 2924, 3279, 2924, 2924, 2924, 2231, 2924, 2924, 3254, 3288, 3288, 3289, 2924, 2924, 3265, 3265, 2924, 2924, 3269, 2924, 2231, 2924, 2805, 2805, 2924, 2924, 2644, 3279, 3279, 2809, 2924, 2839, 2811, 2828, 2828, 2924, 2924, 2924, 2231, 2924, 3254, 2924, 2924, 3289, 2924, 2924, 2924, 2924, 3279, 3279, 2828, 3290, 2231, 2830, 2924, 3279, 3279, 2833, 2834, 2834, 2924, 2644, 2839, 2856, 2856, 3279, 2828, 2844, 2844, 2924, 2924, 2924, 2231, 2924, 3254, 3279, 2856, 2231, 2863, 3279, 3279, 2869, 2644, 2856, 2828, 3279, 2878, 2924, 2231, 2924, 3254, 2231, 2644, 2856, 2828, 2924, 2231, 2644, 2856, 2828, 2231, 2644, 2856, 2828, 2231, 2856, 2828, 2231, 2856, 2828, 2231, 2856, 2231, 2231, 2924, 0, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924 } ; static yyconst short int yy_nxt[25543] = { 0, 2924, 2924, 65, 66, 71, 65, 66, 71, 510, 511, 65, 66, 67, 68, 74, 67, 68, 1481, 1480, 69, 75, 76, 72, 178, 2924, 481, 178, 77, 70, 179, 482, 70, 640, 486, 71, 489, 78, 71, 487, 495, 490, 180, 499, 637, 496, 641, 635, 500, 67, 503, 68, 67, 222, 68, 504, 562, 75, 79, 76, 80, 65, 66, 80, 481, 74, 83, 84, 486, 509, 85, 75, 76, 512, 637, 567, 86, 87, 81, 90, 83, 84, 90, 88, 85, 93, 94, 78, 517, 521, 86, 87, 89, 518, 522, 95, 96, 91, 239, 524, 514, 239, 97, 514, 525, 529, 89, 75, 79, 76, 530, 98, 86, 515, 87, 640, 240, 533, 100, 93, 94, 100, 534, 562, 637, 988, 86, 635, 87, 95, 96, 95, 99, 96, 989, 562, 101, 103, 65, 104, 103, 110, 65, 104, 110, 98, 113, 114, 105, 106, 107, 842, 105, 106, 107, 108, 115, 116, 71, 111, 849, 71, 598, 117, 109, 95, 99, 96, 109, 597, 549, 71, 118, 549, 71, 278, 222, 538, 278, 850, 481, 562, 539, 550, 105, 482, 106, 562, 105, 72, 106, 827, 115, 72, 116, 119, 113, 114, 119, 122, 123, 283, 278, 626, 283, 278, 115, 116, 627, 124, 125, 126, 827, 120, 304, 71, 127, 304, 71, 72, 72, 572, 118, 573, 2513, 128, 65, 66, 129, 122, 123, 129, 72, 72, 635, 354, 67, 68, 354, 124, 125, 126, 115, 69, 116, 124, 130, 125, 800, 486, 637, 800, 70, 72, 487, 128, 65, 66, 71, 65, 66, 71, 373, 562, 562, 373, 305, 306, 398, 67, 68, 398, 67, 69, 68, 124, 72, 125, 827, 307, 374, 308, 70, 574, 585, 70, 399, 562, 398, 837, 575, 398, 586, 838, 576, 587, 481, 577, 588, 827, 589, 482, 67, 1599, 68, 67, 399, 68, 64, 131, 132, 133, 131, 134, 135, 64, 136, 134, 64, 137, 138, 139, 64, 140, 141, 142, 143, 144, 145, 145, 145, 146, 141, 147, 141, 148, 149, 150, 150, 150, 150, 150, 150, 150, 150, 150, 151, 150, 150, 150, 150, 152, 150, 150, 150, 150, 153, 134, 154, 64, 155, 156, 157, 158, 159, 160, 161, 162, 150, 163, 150, 150, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 150, 150, 150, 175, 134, 176, 177, 64, 64, 65, 66, 64, 181, 135, 64, 182, 183, 184, 137, 185, 186, 187, 188, 189, 190, 64, 191, 64, 64, 64, 64, 192, 193, 194, 195, 70, 196, 196, 196, 196, 196, 196, 196, 196, 196, 197, 196, 196, 196, 196, 198, 196, 196, 196, 196, 67, 64, 68, 199, 200, 201, 202, 203, 204, 205, 206, 207, 196, 208, 196, 196, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 196, 196, 196, 175, 220, 64, 221, 223, 224, 225, 226, 224, 223, 227, 223, 228, 223, 223, 229, 67, 230, 223, 223, 223, 223, 223, 231, 64, 64, 64, 232, 223, 223, 223, 223, 233, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 235, 223, 236, 223, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 223, 223, 237, 238, 64, 64, 65, 66, 64, 181, 135, 64, 182, 183, 184, 137, 185, 186, 187, 188, 189, 241, 242, 191, 64, 64, 64, 64, 64, 193, 194, 195, 70, 243, 243, 243, 243, 243, 243, 243, 243, 243, 244, 243, 243, 243, 243, 245, 243, 243, 243, 243, 67, 64, 68, 199, 246, 247, 248, 249, 250, 251, 252, 253, 243, 254, 243, 243, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 243, 243, 243, 64, 220, 176, 221, 64, 64, 65, 66, 64, 64, 135, 64, 266, 64, 64, 64, 67, 68, 64, 64, 64, 64, 64, 69, 64, 64, 64, 64, 267, 64, 64, 64, 70, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 67, 64, 68, 64, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 269, 64, 64, 64, 64, 270, 65, 66, 270, 64, 64, 64, 271, 272, 272, 64, 67, 68, 272, 64, 64, 64, 64, 69, 64, 64, 64, 273, 274, 64, 64, 64, 70, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 67, 64, 68, 272, 276, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 277, 64, 64, 64, 64, 279, 65, 66, 279, 64, 64, 64, 280, 64, 64, 64, 67, 68, 64, 64, 64, 64, 64, 69, 64, 64, 64, 64, 281, 64, 64, 64, 70, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 67, 64, 68, 64, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 64, 64, 64, 64, 64, 270, 284, 66, 270, 64, 64, 64, 285, 272, 272, 64, 67, 68, 272, 286, 64, 286, 64, 69, 64, 64, 64, 273, 274, 64, 287, 64, 288, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 67, 64, 68, 272, 289, 290, 289, 289, 289, 291, 289, 289, 289, 292, 289, 289, 289, 289, 289, 289, 289, 289, 293, 289, 289, 289, 289, 289, 289, 289, 277, 64, 64, 64, 270, 65, 66, 270, 540, 540, 540, 540, 483, 635, 642, 67, 68, 278, 65, 66, 278, 1070, 69, 65, 310, 562, 273, 64, 67, 68, 541, 70, 486, 311, 312, 72, 483, 487, 398, 273, 313, 398, 431, 431, 70, 431, 431, 445, 64, 314, 445, 67, 467, 68, 477, 467, 399, 477, 562, 479, 432, 432, 479, 555, 67, 446, 68, 556, 2514, 311, 72, 312, 478, 484, 557, 493, 484, 480, 493, 640, 590, 277, 591, 628, 628, 628, 628, 555, 637, 727, 629, 485, 592, 494, 277, 64, 294, 65, 66, 294, 64, 64, 64, 295, 64, 64, 64, 296, 68, 64, 286, 297, 286, 64, 69, 64, 64, 64, 64, 64, 298, 64, 299, 300, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 67, 64, 68, 64, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 302, 301, 301, 301, 301, 303, 301, 301, 301, 301, 277, 64, 64, 64, 71, 65, 66, 71, 315, 65, 310, 315, 827, 64, 479, 305, 306, 479, 501, 311, 312, 501, 72, 827, 506, 507, 316, 506, 307, 842, 308, 70, 480, 827, 64, 314, 502, 633, 484, 843, 633, 484, 508, 479, 827, 527, 479, 520, 527, 479, 520, 67, 479, 68, 562, 311, 485, 312, 65, 66, 515, 480, 562, 528, 2515, 485, 562, 480, 67, 68, 536, 562, 1078, 536, 605, 69, 542, 540, 540, 542, 481, 317, 606, 318, 70, 482, 578, 802, 537, 1372, 607, 609, 637, 608, 480, 610, 579, 634, 541, 319, 540, 540, 540, 540, 67, 580, 68, 1373, 846, 847, 320, 321, 322, 486, 323, 324, 803, 325, 487, 848, 326, 804, 541, 327, 804, 637, 328, 329, 330, 331, 332, 64, 333, 334, 335, 333, 64, 64, 64, 336, 64, 64, 64, 67, 68, 337, 64, 64, 64, 64, 69, 64, 64, 64, 338, 64, 64, 64, 339, 70, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 341, 340, 340, 340, 340, 67, 64, 68, 337, 340, 340, 342, 343, 344, 340, 345, 340, 340, 346, 340, 340, 347, 340, 340, 348, 340, 340, 349, 340, 350, 351, 352, 340, 340, 340, 64, 64, 64, 353, 355, 356, 357, 358, 356, 355, 355, 359, 360, 355, 355, 355, 361, 362, 355, 355, 355, 355, 355, 363, 355, 355, 355, 364, 364, 355, 355, 355, 365, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 361, 355, 362, 355, 366, 366, 366, 367, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 368, 366, 366, 369, 370, 366, 371, 366, 366, 366, 366, 372, 355, 355, 355, 375, 375, 376, 377, 375, 375, 375, 375, 378, 375, 375, 375, 379, 380, 375, 375, 375, 375, 375, 381, 375, 375, 375, 382, 383, 375, 375, 375, 384, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 386, 385, 385, 385, 385, 379, 375, 380, 375, 385, 385, 387, 388, 389, 385, 390, 385, 385, 391, 385, 385, 392, 385, 385, 393, 385, 385, 394, 385, 395, 396, 397, 385, 385, 385, 383, 375, 375, 375, 375, 375, 376, 377, 375, 375, 375, 375, 400, 375, 375, 375, 401, 380, 375, 375, 375, 375, 375, 381, 375, 375, 375, 375, 383, 375, 375, 375, 384, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 379, 375, 380, 375, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 383, 375, 375, 375, 375, 375, 376, 377, 375, 375, 375, 375, 403, 375, 375, 375, 379, 404, 375, 375, 375, 375, 375, 381, 375, 375, 375, 375, 375, 375, 375, 375, 384, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 406, 405, 405, 405, 405, 379, 375, 380, 375, 405, 405, 407, 408, 409, 405, 410, 405, 405, 411, 405, 405, 412, 405, 405, 413, 405, 405, 414, 405, 415, 416, 417, 405, 405, 405, 375, 375, 375, 375, 418, 418, 419, 420, 418, 418, 421, 418, 422, 418, 418, 423, 424, 425, 418, 418, 418, 418, 418, 426, 418, 418, 418, 418, 418, 418, 418, 418, 427, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 429, 418, 430, 418, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 418, 418, 418, 418, 418, 418, 419, 420, 418, 418, 421, 418, 433, 418, 418, 423, 424, 425, 418, 418, 418, 418, 418, 426, 418, 418, 418, 418, 418, 418, 418, 418, 427, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 429, 418, 430, 418, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 418, 418, 418, 418, 435, 435, 419, 436, 435, 435, 437, 435, 438, 435, 435, 435, 439, 440, 435, 435, 435, 435, 435, 441, 435, 435, 435, 435, 435, 435, 435, 435, 442, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 439, 444, 440, 435, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 435, 435, 435, 435, 64, 447, 448, 449, 447, 64, 64, 450, 451, 64, 64, 64, 67, 68, 64, 64, 452, 64, 64, 69, 64, 64, 64, 64, 452, 64, 64, 64, 70, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 453, 454, 453, 453, 453, 453, 67, 64, 68, 64, 453, 453, 455, 456, 457, 453, 458, 453, 453, 459, 453, 453, 460, 453, 453, 461, 453, 453, 462, 453, 463, 464, 465, 453, 453, 453, 466, 64, 64, 64, 468, 468, 469, 470, 468, 468, 468, 468, 471, 468, 468, 468, 472, 473, 468, 468, 468, 468, 468, 474, 468, 468, 468, 468, 468, 468, 468, 468, 475, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 472, 468, 473, 468, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 476, 468, 468, 468, 468, 540, 540, 540, 540, 552, 552, 552, 543, 860, 558, 559, 559, 558, 990, 558, 559, 559, 558, 562, 562, 560, 561, 541, 562, 561, 560, 561, 990, 830, 561, 553, 563, 561, 564, 562, 562, 563, 561, 564, 568, 909, 569, 593, 599, 594, 860, 565, 600, 562, 827, 910, 595, 596, 479, 562, 570, 479, 571, 561, 553, 562, 822, 601, 561, 823, 581, 562, 582, 621, 602, 545, 480, 622, 647, 583, 647, 584, 802, 611, 562, 546, 612, 613, 603, 617, 1089, 623, 618, 604, 647, 806, 682, 614, 806, 624, 615, 619, 616, 638, 795, 625, 638, 795, 620, 631, 540, 540, 631, 483, 481, 632, 639, 643, 807, 482, 643, 643, 966, 2351, 643, 486, 796, 485, 644, 967, 487, 541, 644, 645, 646, 973, 1000, 645, 646, 648, 647, 649, 647, 648, 643, 649, 818, 643, 643, 818, 1000, 643, 704, 650, 974, 644, 705, 481, 647, 644, 645, 646, 482, 996, 645, 646, 648, 647, 649, 647, 648, 643, 649, 486, 643, 820, 651, 996, 487, 481, 681, 797, 644, 647, 482, 647, 997, 645, 646, 647, 562, 647, 593, 648, 733, 649, 733, 683, 647, 652, 647, 684, 657, 479, 658, 647, 479, 647, 659, 647, 733, 647, 765, 562, 647, 660, 685, 1563, 686, 661, 647, 480, 662, 797, 653, 647, 654, 647, 647, 930, 647, 663, 687, 647, 647, 647, 647, 688, 970, 931, 655, 664, 656, 666, 647, 667, 647, 2516, 971, 647, 665, 647, 669, 647, 668, 647, 710, 710, 710, 710, 670, 920, 486, 671, 920, 952, 672, 487, 673, 647, 953, 647, 647, 674, 647, 675, 913, 914, 711, 647, 647, 647, 677, 922, 678, 676, 689, 915, 647, 562, 647, 679, 680, 842, 690, 647, 647, 691, 647, 692, 647, 1091, 647, 693, 647, 484, 647, 694, 484, 562, 695, 696, 723, 723, 723, 723, 647, 1105, 647, 724, 647, 697, 647, 485, 698, 647, 699, 647, 700, 1058, 1059, 701, 647, 733, 647, 733, 647, 708, 647, 706, 702, 647, 709, 647, 998, 707, 764, 703, 647, 733, 647, 733, 647, 999, 647, 712, 710, 710, 712, 710, 710, 710, 710, 710, 710, 710, 710, 934, 935, 959, 713, 481, 562, 480, 960, 993, 482, 711, 936, 728, 729, 711, 728, 1071, 994, 711, 717, 718, 718, 717, 730, 726, 710, 710, 726, 731, 732, 719, 995, 514, 1010, 648, 514, 649, 728, 729, 486, 728, 721, 485, 722, 487, 515, 711, 1010, 730, 728, 729, 562, 728, 731, 732, 1008, 733, 791, 733, 648, 730, 649, 792, 990, 1009, 731, 732, 728, 729, 734, 728, 648, 733, 649, 733, 593, 715, 990, 730, 728, 729, 735, 728, 731, 732, 990, 733, 1066, 733, 648, 730, 649, 733, 562, 733, 731, 732, 1095, 787, 990, 562, 648, 788, 649, 733, 741, 986, 742, 733, 991, 733, 987, 743, 733, 992, 733, 1001, 562, 736, 744, 827, 1002, 733, 745, 733, 747, 746, 479, 828, 733, 479, 733, 737, 829, 738, 748, 1572, 733, 733, 733, 733, 827, 562, 752, 733, 480, 733, 749, 739, 750, 740, 753, 1069, 733, 754, 733, 1011, 755, 751, 756, 733, 1012, 733, 733, 757, 733, 758, 1027, 507, 799, 799, 733, 1028, 760, 799, 761, 759, 2520, 562, 733, 1018, 733, 762, 763, 769, 1019, 733, 733, 1090, 733, 766, 733, 805, 733, 767, 805, 1020, 733, 770, 733, 733, 991, 733, 771, 772, 1021, 1037, 733, 562, 768, 485, 799, 773, 733, 796, 774, 775, 733, 1574, 733, 776, 733, 825, 733, 777, 825, 562, 778, 779, 811, 562, 1070, 811, 733, 1481, 733, 1096, 733, 780, 733, 485, 781, 733, 782, 733, 783, 1480, 485, 784, 733, 831, 733, 807, 831, 1003, 827, 789, 785, 733, 562, 733, 1006, 790, 1004, 786, 733, 827, 733, 832, 797, 854, 854, 854, 854, 833, 1006, 827, 1005, 562, 834, 856, 854, 854, 856, 1007, 1072, 1619, 827, 854, 854, 854, 854, 855, 854, 854, 854, 854, 562, 480, 797, 857, 562, 855, 862, 854, 854, 862, 1074, 1075, 1140, 855, 862, 854, 854, 862, 855, 862, 854, 854, 862, 862, 854, 854, 862, 562, 864, 1112, 865, 862, 854, 854, 862, 1024, 864, 1485, 865, 1485, 1026, 864, 1036, 865, 1025, 864, 866, 865, 862, 854, 854, 862, 1013, 864, 1026, 865, 1036, 862, 854, 854, 862, 1014, 862, 854, 854, 862, 862, 854, 854, 862, 864, 1076, 865, 1016, 988, 1015, 859, 484, 562, 864, 484, 865, 868, 989, 864, 867, 865, 1016, 864, 869, 865, 862, 854, 854, 862, 485, 1017, 870, 1421, 862, 854, 854, 862, 862, 854, 854, 862, 882, 882, 882, 882, 871, 872, 864, 883, 865, 1422, 1034, 1035, 875, 1034, 864, 873, 865, 562, 864, 1073, 865, 874, 562, 862, 854, 854, 862, 827, 885, 854, 854, 885, 886, 886, 887, 886, 887, 887, 887, 887, 1628, 996, 1046, 876, 877, 864, 485, 865, 827, 975, 855, 1047, 976, 977, 878, 996, 1434, 879, 893, 886, 887, 893, 880, 978, 997, 901, 886, 887, 901, 946, 946, 946, 946, 1077, 1435, 957, 480, 881, 957, 479, 562, 484, 479, 485, 484, 479, 888, 1022, 479, 484, 888, 948, 484, 958, 562, 1099, 1023, 480, 889, 485, 2376, 890, 889, 480, 891, 890, 562, 485, 891, 892, 995, 493, 888, 892, 493, 1098, 1029, 562, 949, 888, 887, 887, 887, 887, 889, 1030, 996, 890, 1103, 494, 891, 889, 562, 501, 890, 892, 501, 891, 1092, 1031, 996, 562, 892, 950, 950, 1070, 950, 950, 950, 997, 950, 502, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 562, 1121, 562, 950, 950, 950, 950, 950, 950, 506, 507, 888, 506, 1109, 961, 887, 887, 961, 887, 887, 887, 887, 527, 889, 562, 527, 890, 508, 950, 891, 950, 950, 480, 1032, 892, 982, 887, 887, 982, 520, 528, 993, 520, 562, 1585, 536, 562, 1032, 536, 1102, 994, 1038, 515, 485, 1070, 1145, 1033, 485, 950, 950, 950, 950, 562, 537, 995, 1038, 549, 2521, 888, 549, 1093, 562, 888, 1094, 1039, 540, 540, 540, 540, 550, 889, 1067, 860, 890, 889, 1070, 891, 890, 562, 888, 891, 892, 552, 552, 552, 892, 562, 541, 1068, 562, 1079, 889, 562, 1097, 890, 1108, 1080, 891, 542, 540, 540, 542, 892, 558, 559, 559, 558, 1487, 553, 860, 1042, 1042, 1042, 1042, 560, 561, 480, 1043, 561, 1486, 541, 558, 559, 559, 558, 563, 561, 564, 1048, 1049, 1049, 1048, 560, 561, 562, 1050, 561, 553, 1111, 1104, 1051, 550, 1104, 563, 561, 564, 1056, 1056, 1056, 1056, 1052, 562, 561, 543, 558, 559, 559, 558, 562, 1447, 559, 559, 559, 559, 1100, 560, 561, 1101, 541, 561, 561, 560, 561, 1447, 562, 561, 563, 561, 865, 1110, 1041, 562, 563, 561, 1063, 1063, 2436, 1115, 1128, 1064, 1064, 562, 562, 1113, 1114, 1106, 562, 562, 562, 1065, 562, 1116, 1107, 561, 562, 1118, 1117, 1120, 1054, 561, 1488, 1119, 1488, 562, 1122, 1123, 562, 1124, 562, 1129, 562, 1125, 1127, 1131, 562, 1133, 546, 1126, 562, 1070, 562, 562, 562, 1136, 1134, 633, 1135, 1130, 633, 1132, 562, 1137, 562, 1143, 1144, 562, 1146, 562, 1149, 1147, 1153, 1154, 1063, 1081, 1082, 1083, 1083, 1082, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1084, 1085, 1081, 1081, 1085, 1081, 1081, 1081, 562, 1141, 1138, 1086, 1085, 1087, 1081, 1081, 1081, 562, 1142, 628, 628, 628, 628, 2527, 633, 800, 629, 633, 800, 1139, 634, 638, 643, 594, 638, 643, 1081, 1081, 1085, 1081, 2924, 2924, 2924, 2924, 639, 1156, 804, 2924, 1156, 804, 1150, 1151, 1151, 1150, 648, 802, 649, 1348, 639, 1448, 1088, 560, 561, 1349, 1449, 561, 1081, 1081, 1081, 1081, 1443, 1443, 2528, 561, 865, 631, 540, 540, 631, 643, 800, 632, 643, 800, 634, 1445, 1487, 1486, 1339, 643, 799, 799, 643, 485, 1446, 799, 647, 541, 1232, 561, 644, 648, 647, 649, 643, 645, 646, 643, 647, 562, 647, 648, 647, 649, 643, 644, 647, 643, 1227, 1481, 645, 646, 647, 1480, 643, 644, 648, 643, 649, 2924, 645, 646, 799, 1605, 1479, 644, 648, 1228, 649, 647, 645, 646, 643, 647, 804, 643, 648, 804, 649, 647, 1161, 643, 677, 644, 643, 1229, 1969, 795, 645, 646, 795, 1450, 644, 562, 648, 1465, 649, 645, 646, 818, 1451, 562, 818, 648, 643, 649, 1162, 643, 643, 796, 647, 643, 647, 1466, 1452, 644, 647, 1233, 1562, 644, 645, 646, 647, 1163, 645, 646, 648, 647, 649, 647, 648, 643, 649, 1234, 643, 643, 1165, 2529, 643, 647, 806, 1164, 644, 806, 2924, 2924, 644, 645, 646, 1479, 1514, 645, 646, 648, 1496, 649, 1496, 648, 643, 649, 647, 643, 647, 807, 797, 1226, 647, 1487, 1165, 644, 643, 1486, 1165, 643, 645, 646, 797, 647, 1166, 1242, 648, 644, 649, 647, 562, 643, 645, 646, 643, 647, 1346, 1168, 648, 1347, 649, 643, 644, 1167, 643, 2924, 1368, 645, 646, 1368, 1514, 1586, 644, 648, 1230, 649, 1368, 645, 646, 1368, 647, 562, 647, 648, 643, 649, 647, 643, 1171, 827, 1231, 1627, 647, 1169, 1170, 644, 1498, 1355, 1498, 1237, 645, 646, 1356, 1172, 562, 647, 648, 647, 649, 562, 827, 647, 643, 1477, 1477, 643, 643, 647, 1238, 643, 1616, 811, 678, 644, 811, 1516, 1173, 644, 645, 646, 523, 1070, 645, 646, 648, 1506, 649, 1506, 648, 485, 649, 1174, 1469, 1541, 807, 1470, 1541, 1175, 1176, 1177, 1176, 1176, 1177, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1178, 1176, 1176, 1176, 1176, 1179, 1180, 1176, 1508, 562, 1508, 1181, 1176, 1182, 1176, 1176, 1176, 1184, 643, 562, 647, 643, 1240, 802, 562, 1185, 647, 1573, 1587, 644, 643, 1241, 647, 643, 645, 646, 1176, 1176, 1176, 1176, 648, 644, 649, 647, 562, 1235, 645, 646, 643, 647, 1564, 643, 648, 1236, 649, 647, 594, 1794, 825, 644, 1183, 825, 562, 1453, 645, 646, 1176, 1176, 1176, 1176, 648, 643, 649, 647, 643, 647, 485, 1453, 647, 647, 1247, 1603, 644, 1243, 647, 647, 1454, 645, 646, 1186, 647, 643, 562, 648, 643, 649, 1403, 1187, 562, 1403, 1188, 643, 644, 957, 643, 562, 957, 645, 646, 2530, 1579, 1189, 644, 648, 1596, 649, 643, 645, 646, 643, 865, 958, 647, 648, 647, 649, 643, 644, 647, 643, 1575, 1239, 645, 646, 647, 797, 1190, 644, 648, 1522, 649, 1522, 645, 646, 643, 1481, 1480, 643, 648, 1524, 649, 1524, 647, 1246, 647, 644, 643, 1191, 647, 643, 645, 646, 562, 1475, 647, 562, 648, 644, 649, 1192, 1578, 643, 645, 646, 643, 562, 1193, 1475, 648, 593, 649, 643, 644, 1531, 643, 1531, 1476, 645, 646, 562, 1483, 1194, 644, 648, 1195, 649, 1617, 645, 646, 1206, 1207, 1207, 1206, 648, 1483, 649, 647, 1607, 1244, 1196, 644, 1245, 647, 997, 1165, 645, 646, 562, 647, 1034, 1035, 648, 1034, 649, 1220, 1584, 1197, 1198, 1199, 1198, 1198, 1199, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1200, 1198, 1198, 1198, 1198, 1201, 1202, 1198, 1473, 1205, 1482, 1203, 1198, 1204, 1198, 1198, 1198, 1473, 643, 1482, 562, 643, 562, 1208, 710, 710, 710, 710, 2531, 644, 1209, 1474, 594, 995, 645, 646, 1198, 1198, 1198, 1198, 648, 643, 649, 562, 643, 2532, 711, 1589, 1256, 1257, 1257, 1256, 644, 712, 710, 710, 712, 645, 646, 719, 1481, 1480, 1613, 648, 1480, 649, 1198, 1198, 1198, 1198, 643, 480, 562, 643, 643, 711, 2533, 643, 562, 1609, 562, 644, 562, 1210, 562, 644, 645, 646, 1354, 827, 645, 646, 648, 1583, 649, 562, 648, 643, 649, 1621, 643, 643, 1354, 562, 643, 1576, 1577, 1480, 644, 1636, 827, 1211, 644, 645, 646, 1588, 1631, 645, 646, 648, 562, 649, 1481, 648, 643, 649, 1480, 643, 643, 1352, 827, 643, 1594, 920, 1212, 644, 920, 562, 1353, 644, 645, 646, 1477, 1477, 645, 646, 648, 1165, 649, 562, 648, 827, 649, 643, 523, 922, 643, 1590, 2010, 1517, 1213, 1606, 1214, 920, 644, 643, 920, 562, 643, 645, 646, 1249, 1249, 1249, 1249, 648, 644, 649, 1250, 1493, 1215, 645, 646, 643, 1216, 922, 643, 648, 1493, 649, 562, 562, 643, 920, 644, 643, 920, 1503, 1591, 645, 646, 805, 1005, 644, 805, 648, 1503, 649, 645, 646, 717, 718, 718, 717, 648, 922, 649, 1608, 1217, 485, 1015, 719, 562, 796, 562, 1218, 1252, 1252, 1252, 1252, 562, 1219, 721, 713, 722, 717, 718, 718, 717, 562, 562, 562, 1595, 1221, 594, 1635, 719, 562, 711, 1601, 1222, 1597, 1223, 1360, 827, 1638, 1224, 721, 718, 718, 718, 718, 1225, 717, 718, 718, 717, 1360, 1610, 719, 723, 723, 723, 723, 719, 827, 1361, 724, 797, 562, 721, 2924, 2924, 2924, 2924, 721, 909, 722, 2924, 726, 710, 710, 726, 728, 729, 562, 728, 729, 729, 1104, 729, 1598, 1104, 1519, 730, 562, 715, 485, 730, 731, 732, 711, 1519, 731, 732, 648, 2534, 649, 728, 729, 1614, 728, 728, 729, 1477, 728, 1031, 831, 1477, 730, 831, 1623, 827, 730, 731, 732, 1500, 1494, 731, 732, 648, 497, 649, 562, 648, 832, 649, 728, 729, 1934, 728, 1494, 1504, 827, 1935, 1600, 728, 729, 730, 728, 1007, 1357, 827, 731, 732, 562, 1504, 730, 1259, 648, 1358, 649, 731, 732, 562, 1017, 728, 729, 648, 728, 649, 1916, 1915, 827, 1359, 760, 1602, 730, 728, 729, 1629, 728, 731, 732, 882, 882, 882, 882, 648, 730, 649, 883, 1484, 1484, 731, 732, 728, 729, 1260, 728, 648, 562, 649, 562, 1516, 728, 729, 730, 728, 523, 909, 507, 731, 732, 1511, 1261, 730, 1634, 648, 562, 649, 731, 732, 728, 729, 1618, 728, 648, 1511, 649, 562, 1604, 562, 1263, 730, 1262, 562, 1512, 562, 731, 732, 728, 729, 507, 728, 648, 1509, 649, 1622, 1640, 728, 729, 730, 728, 1520, 1509, 1620, 731, 732, 930, 1263, 730, 1529, 648, 1626, 649, 731, 732, 1520, 1510, 728, 729, 648, 728, 649, 1264, 1529, 1033, 1800, 728, 729, 730, 728, 562, 1801, 1039, 731, 732, 1615, 1265, 730, 1615, 648, 594, 649, 731, 732, 1266, 562, 728, 729, 648, 728, 649, 854, 854, 854, 854, 2535, 1637, 730, 856, 854, 854, 856, 731, 732, 562, 562, 1267, 1268, 648, 1269, 649, 728, 729, 855, 728, 593, 480, 1477, 1270, 562, 855, 1477, 730, 882, 882, 882, 882, 731, 732, 497, 883, 1958, 562, 648, 1501, 649, 728, 729, 562, 728, 1639, 862, 854, 854, 862, 728, 729, 730, 728, 594, 562, 1271, 731, 732, 1484, 1484, 730, 1890, 648, 1890, 649, 731, 732, 864, 562, 865, 523, 648, 1272, 649, 1070, 1517, 1630, 562, 1273, 1176, 1274, 1275, 1176, 1274, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1276, 1176, 1176, 1176, 1176, 1277, 1278, 1176, 1633, 1888, 1965, 1181, 1176, 1182, 1176, 1176, 1176, 562, 1280, 2924, 2924, 2924, 2924, 1888, 728, 729, 2924, 728, 930, 1281, 1487, 1486, 1454, 562, 1486, 730, 1176, 1176, 1176, 1176, 731, 732, 1381, 1381, 1381, 1381, 648, 970, 649, 857, 862, 854, 854, 862, 728, 729, 1611, 728, 1916, 1612, 1279, 562, 1915, 562, 855, 730, 1176, 1176, 1176, 1176, 731, 732, 855, 1070, 865, 1632, 648, 1486, 649, 728, 729, 1481, 728, 862, 854, 854, 862, 1487, 1486, 1156, 730, 1282, 1156, 1480, 1283, 731, 732, 728, 729, 967, 728, 648, 639, 649, 1892, 864, 1892, 865, 730, 728, 729, 1484, 728, 731, 732, 1484, 1910, 1284, 1910, 648, 730, 649, 859, 1500, 1643, 731, 732, 1643, 497, 728, 729, 648, 728, 649, 1525, 1526, 1644, 1525, 728, 729, 730, 728, 1918, 1917, 1285, 731, 732, 1720, 562, 730, 1720, 648, 1527, 649, 731, 732, 728, 729, 1646, 728, 648, 1646, 649, 1286, 1624, 1647, 1980, 730, 728, 729, 1484, 728, 731, 732, 1484, 1625, 974, 1287, 648, 730, 649, 562, 497, 643, 731, 732, 643, 1501, 1368, 1288, 648, 1368, 649, 728, 729, 1913, 728, 1913, 885, 854, 854, 885, 562, 1289, 730, 648, 1290, 649, 2005, 731, 732, 728, 729, 1916, 728, 648, 485, 649, 975, 1487, 855, 1291, 730, 1486, 1487, 1915, 1263, 731, 732, 886, 886, 887, 886, 648, 1541, 649, 1486, 1541, 1292, 1198, 1293, 1294, 1198, 1293, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1295, 1198, 1198, 1198, 1198, 1296, 1297, 1198, 562, 1298, 1918, 1203, 1198, 1204, 1198, 1198, 1198, 1403, 728, 729, 1403, 728, 1917, 1299, 946, 946, 946, 946, 1403, 730, 1300, 1403, 888, 1070, 731, 732, 1198, 1198, 1198, 1198, 648, 865, 649, 562, 889, 1926, 948, 890, 728, 729, 891, 728, 865, 1838, 1918, 892, 1838, 505, 1917, 730, 728, 729, 505, 728, 731, 732, 1198, 1198, 1198, 1198, 648, 730, 649, 949, 2536, 1839, 731, 732, 728, 729, 1070, 728, 648, 1301, 649, 562, 1951, 728, 729, 730, 728, 562, 2011, 1949, 731, 732, 729, 729, 730, 729, 648, 562, 649, 731, 732, 728, 729, 730, 728, 648, 1881, 649, 731, 732, 728, 729, 730, 728, 1302, 1882, 1882, 731, 732, 643, 1303, 730, 643, 648, 802, 649, 731, 732, 728, 729, 562, 728, 648, 1887, 649, 562, 1966, 728, 729, 730, 728, 648, 1887, 649, 731, 732, 1304, 1263, 730, 562, 648, 1956, 649, 731, 732, 1948, 1452, 728, 729, 648, 728, 649, 1305, 1481, 1480, 2448, 1306, 1480, 730, 728, 729, 2503, 728, 731, 732, 1042, 1042, 1042, 1042, 648, 730, 649, 1043, 562, 1307, 731, 732, 728, 729, 802, 728, 648, 643, 649, 507, 643, 728, 729, 730, 728, 1063, 1063, 1308, 731, 732, 1064, 1064, 730, 1070, 648, 1480, 649, 731, 732, 648, 1065, 649, 1309, 648, 562, 649, 2127, 1311, 1310, 728, 729, 1970, 728, 562, 862, 854, 854, 862, 728, 729, 730, 728, 594, 562, 1481, 731, 732, 1959, 1812, 730, 562, 648, 1312, 649, 731, 732, 864, 1487, 865, 1313, 648, 1819, 649, 728, 729, 1314, 728, 728, 729, 1812, 728, 1315, 872, 1063, 730, 1927, 562, 1927, 730, 731, 732, 1993, 1819, 731, 732, 648, 1974, 649, 562, 648, 562, 649, 1316, 1957, 728, 729, 562, 728, 1977, 1263, 1207, 1207, 1207, 1207, 1317, 730, 728, 729, 562, 728, 731, 732, 862, 854, 854, 862, 648, 730, 649, 1320, 1961, 1318, 731, 732, 562, 827, 728, 729, 648, 728, 649, 1971, 562, 2438, 864, 1321, 865, 730, 1982, 1319, 1813, 827, 731, 732, 728, 729, 827, 728, 648, 1813, 649, 562, 1972, 562, 1322, 730, 728, 729, 2537, 728, 731, 732, 827, 1359, 1385, 1967, 648, 730, 649, 562, 827, 1323, 731, 732, 562, 1973, 728, 729, 648, 728, 649, 862, 854, 854, 862, 728, 729, 730, 728, 2538, 1324, 827, 731, 732, 562, 1975, 730, 1817, 648, 1817, 649, 731, 732, 864, 1325, 865, 507, 648, 1327, 649, 1986, 1976, 1326, 728, 729, 562, 728, 728, 729, 1979, 728, 562, 1916, 1915, 730, 562, 1915, 1328, 730, 731, 732, 761, 562, 731, 732, 648, 1477, 649, 2425, 648, 1808, 649, 1820, 1329, 1820, 1330, 728, 729, 1809, 728, 562, 1981, 1387, 826, 1331, 728, 729, 730, 728, 1985, 2539, 1808, 731, 732, 728, 729, 730, 728, 648, 1915, 649, 731, 732, 1332, 562, 730, 1983, 648, 562, 649, 731, 732, 1930, 562, 1930, 1333, 648, 2238, 649, 862, 854, 854, 862, 862, 854, 854, 862, 862, 854, 854, 862, 946, 946, 946, 946, 562, 1334, 1962, 1960, 1335, 562, 864, 2002, 865, 1336, 864, 562, 865, 1991, 864, 562, 865, 1987, 948, 1337, 862, 854, 854, 862, 862, 854, 854, 862, 562, 970, 862, 854, 854, 862, 2924, 2924, 2924, 2924, 1070, 1914, 1988, 2924, 864, 1914, 865, 949, 864, 562, 865, 562, 1384, 497, 864, 1386, 865, 1999, 497, 562, 1388, 1198, 1389, 1390, 1390, 1389, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 562, 1994, 1998, 1391, 1198, 1392, 1198, 1198, 1198, 562, 1393, 872, 1394, 862, 854, 854, 862, 862, 854, 854, 862, 862, 854, 854, 862, 562, 2014, 1995, 1198, 1198, 1198, 1198, 562, 562, 2006, 864, 1964, 865, 562, 864, 2003, 865, 2540, 864, 562, 865, 862, 854, 854, 862, 862, 854, 854, 862, 887, 887, 887, 887, 1198, 1198, 1198, 1198, 862, 854, 854, 862, 562, 1481, 864, 593, 865, 1480, 864, 1480, 865, 1396, 1996, 1916, 1915, 1395, 893, 886, 887, 893, 864, 643, 865, 562, 643, 1398, 1045, 1997, 562, 1397, 901, 886, 887, 901, 480, 1539, 1539, 1539, 946, 946, 946, 946, 827, 648, 888, 649, 1400, 2437, 485, 1401, 1480, 1399, 1914, 1914, 1477, 1477, 889, 1402, 1477, 890, 948, 1539, 891, 827, 523, 562, 1490, 892, 1992, 523, 888, 488, 1814, 827, 961, 887, 887, 961, 1049, 1049, 1049, 1049, 889, 2543, 888, 890, 1814, 949, 891, 1956, 1539, 562, 480, 892, 827, 1361, 889, 1918, 1917, 890, 1052, 1477, 891, 1546, 1546, 1546, 1546, 892, 950, 950, 1547, 950, 950, 950, 2544, 950, 2000, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 888, 562, 2231, 950, 950, 950, 950, 950, 950, 1477, 1477, 562, 889, 1477, 593, 890, 2001, 562, 891, 562, 562, 488, 2013, 892, 2012, 1122, 1491, 2545, 950, 562, 950, 950, 1558, 1559, 1559, 1558, 562, 982, 887, 887, 982, 1249, 1249, 1249, 1249, 2244, 1720, 562, 1250, 1720, 2924, 2924, 2924, 2924, 1560, 485, 1477, 2924, 950, 950, 950, 950, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1557, 594, 1916, 1198, 1198, 1198, 1198, 1198, 1198, 888, 1063, 1063, 562, 2555, 1915, 1064, 1064, 1525, 1526, 562, 1525, 889, 1484, 1484, 890, 1065, 1484, 891, 1198, 1198, 1198, 1198, 892, 1070, 1490, 1527, 1484, 1484, 1720, 488, 1484, 1720, 1532, 1533, 1533, 1532, 1441, 827, 488, 1525, 1526, 1918, 1525, 1491, 561, 2194, 2194, 561, 1198, 1198, 1198, 1198, 2576, 1917, 541, 561, 865, 1527, 827, 1484, 558, 559, 559, 558, 1536, 1537, 1537, 1536, 1063, 2577, 1481, 560, 561, 1484, 1812, 561, 561, 1566, 562, 561, 1566, 561, 563, 561, 564, 2239, 827, 561, 865, 1048, 1049, 1049, 1048, 2004, 562, 1812, 1050, 1718, 710, 710, 1718, 1051, 550, 1049, 1049, 1049, 1049, 827, 1916, 561, 1540, 1052, 1915, 561, 1643, 2924, 2924, 1643, 827, 711, 1535, 1543, 1049, 1049, 1543, 1052, 1644, 2424, 1050, 1056, 1056, 1056, 1056, 1051, 1368, 1838, 543, 1368, 1838, 827, 1544, 1544, 1544, 1052, 2583, 1553, 1553, 1553, 1553, 1070, 562, 541, 1554, 558, 559, 559, 558, 1725, 1725, 1725, 1725, 2247, 1918, 562, 560, 561, 1917, 541, 561, 1054, 1580, 1581, 1581, 1580, 1487, 563, 561, 564, 1486, 1726, 1486, 1582, 561, 1054, 1643, 561, 562, 1643, 643, 594, 2145, 643, 563, 561, 865, 2924, 1644, 1561, 2924, 644, 1646, 1054, 561, 1646, 645, 646, 2457, 1647, 562, 546, 648, 1555, 649, 1256, 1257, 1257, 1256, 1368, 2234, 561, 1368, 1486, 562, 2232, 719, 1556, 1565, 1566, 1567, 1567, 1566, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1568, 1569, 1565, 1565, 1569, 1565, 1565, 1565, 562, 562, 2256, 1570, 1569, 1571, 1565, 1565, 1565, 729, 729, 1650, 729, 1206, 1207, 1207, 1206, 593, 562, 909, 730, 1581, 1581, 1581, 1581, 731, 732, 2177, 1565, 1565, 1569, 1565, 1582, 561, 2451, 648, 561, 649, 1257, 1257, 1257, 1257, 2217, 563, 561, 1252, 1252, 1252, 1252, 719, 562, 2217, 713, 1256, 1257, 1257, 1256, 2251, 1565, 1565, 1565, 1565, 1487, 1486, 719, 2218, 1486, 711, 562, 1070, 561, 1081, 1082, 1083, 1083, 1592, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1084, 1085, 1081, 1081, 1085, 1081, 1081, 1081, 562, 562, 562, 1086, 1085, 1087, 1081, 1081, 1081, 2017, 1070, 2252, 2017, 854, 854, 854, 854, 2924, 1486, 2589, 2924, 1104, 559, 559, 1104, 2018, 2019, 2262, 1081, 1081, 1085, 1081, 560, 561, 715, 855, 561, 1593, 2355, 1150, 1151, 1151, 1150, 563, 561, 865, 1722, 1722, 1722, 1722, 560, 561, 2924, 1723, 561, 2924, 827, 827, 1081, 1081, 1081, 1081, 561, 865, 1151, 1151, 1151, 1151, 711, 1810, 561, 1150, 1151, 1151, 1150, 560, 561, 827, 827, 561, 2178, 643, 560, 561, 643, 2235, 561, 561, 561, 562, 643, 2603, 644, 643, 561, 865, 562, 645, 646, 643, 2240, 644, 643, 648, 2279, 649, 645, 646, 2924, 562, 644, 2924, 648, 561, 649, 645, 646, 2182, 1918, 1917, 561, 648, 1917, 649, 643, 1649, 1724, 643, 643, 2924, 1477, 643, 2924, 562, 1808, 644, 2924, 2248, 2511, 644, 645, 646, 826, 562, 645, 646, 648, 1810, 649, 562, 648, 562, 649, 2255, 562, 1808, 1546, 1546, 1546, 1546, 594, 1651, 2179, 1547, 1566, 1917, 2427, 1566, 1070, 1652, 1653, 1654, 1653, 1653, 1654, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1655, 1653, 1653, 1653, 1653, 1656, 1657, 1653, 1165, 1660, 562, 1658, 1653, 1659, 1653, 1653, 1653, 2924, 643, 1916, 2924, 643, 2260, 2142, 2924, 2924, 2924, 2924, 1487, 644, 643, 2924, 1819, 643, 645, 646, 1653, 1653, 1653, 1653, 648, 644, 649, 2604, 2142, 2245, 645, 646, 628, 628, 628, 628, 648, 1819, 649, 629, 862, 854, 854, 862, 643, 2924, 2924, 643, 2924, 2924, 1653, 1653, 1653, 1653, 1661, 644, 643, 2180, 2605, 643, 645, 646, 855, 562, 865, 1918, 648, 644, 649, 2144, 678, 643, 645, 646, 643, 1916, 1915, 2253, 648, 1915, 649, 2924, 644, 643, 2924, 1484, 643, 645, 646, 1816, 2144, 562, 1484, 648, 644, 649, 1816, 1809, 1662, 645, 646, 2513, 826, 643, 826, 648, 643, 649, 2211, 1810, 1816, 2211, 643, 2184, 644, 643, 909, 1816, 562, 645, 646, 562, 1915, 644, 677, 648, 2212, 649, 645, 646, 1104, 2428, 643, 1104, 648, 643, 649, 1918, 1917, 2183, 1663, 1917, 2924, 644, 2429, 2924, 562, 643, 645, 646, 643, 562, 1664, 1665, 648, 1666, 649, 594, 644, 643, 593, 1477, 643, 645, 646, 1477, 562, 1477, 1667, 648, 644, 649, 2433, 1884, 562, 645, 646, 562, 950, 643, 2254, 648, 643, 649, 1917, 1668, 1955, 2146, 2258, 643, 644, 2211, 643, 2181, 2211, 645, 646, 562, 2257, 1669, 644, 648, 562, 649, 842, 645, 646, 643, 1477, 2212, 643, 648, 562, 649, 1070, 678, 643, 2607, 644, 643, 2608, 562, 2249, 645, 646, 643, 2259, 644, 643, 648, 2250, 649, 645, 646, 643, 2269, 644, 643, 648, 562, 649, 645, 646, 1165, 2261, 644, 562, 648, 562, 649, 645, 646, 1670, 2262, 2007, 562, 648, 643, 649, 2008, 643, 1481, 2265, 1671, 2009, 1480, 562, 1480, 644, 723, 723, 723, 723, 645, 646, 562, 724, 1673, 1916, 648, 1566, 649, 1915, 1566, 1915, 1672, 1674, 1176, 1177, 1176, 1176, 1675, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1178, 1176, 1176, 1176, 1176, 1179, 1180, 1176, 562, 1480, 593, 1181, 1176, 1182, 1176, 1176, 1176, 2267, 643, 562, 2609, 643, 593, 562, 1679, 593, 1915, 562, 2610, 644, 643, 2271, 2237, 643, 645, 646, 1176, 1176, 1176, 1176, 648, 644, 649, 562, 562, 1676, 645, 646, 643, 1070, 562, 643, 648, 2406, 649, 2406, 2268, 1956, 2273, 644, 643, 647, 562, 643, 645, 646, 1176, 1176, 1176, 1176, 648, 644, 649, 2292, 1677, 2611, 645, 646, 643, 562, 2612, 643, 648, 2277, 649, 562, 1678, 562, 2274, 644, 643, 2613, 562, 643, 645, 646, 1533, 1533, 1533, 1533, 648, 644, 649, 562, 1680, 562, 645, 646, 561, 2278, 562, 561, 648, 643, 649, 2432, 643, 643, 541, 561, 643, 1916, 1070, 1918, 644, 2142, 678, 2144, 644, 645, 646, 2614, 2430, 645, 646, 648, 1487, 649, 594, 648, 1486, 649, 1486, 1918, 1681, 561, 2142, 1917, 2144, 1917, 1682, 1198, 1199, 1198, 1198, 1199, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1200, 1198, 1198, 1198, 1198, 1201, 1202, 1198, 677, 562, 1685, 1203, 1198, 1204, 1198, 1198, 1198, 2407, 643, 2407, 1486, 643, 1559, 1559, 1559, 1559, 2615, 1917, 2616, 644, 643, 2617, 562, 643, 645, 646, 1198, 1198, 1198, 1198, 648, 644, 649, 2580, 1946, 1683, 645, 646, 2275, 2276, 2276, 2275, 648, 2434, 649, 562, 862, 854, 854, 862, 643, 2211, 562, 643, 2211, 562, 1198, 1198, 1198, 1198, 1684, 644, 643, 562, 562, 643, 645, 646, 864, 2212, 865, 562, 648, 644, 649, 2618, 2435, 643, 645, 646, 643, 2173, 2446, 1686, 648, 2173, 649, 643, 644, 2445, 643, 2440, 562, 645, 646, 2439, 2450, 643, 644, 648, 643, 649, 562, 645, 646, 562, 1687, 643, 644, 648, 643, 649, 2552, 645, 646, 1841, 562, 643, 644, 648, 643, 649, 1475, 645, 646, 562, 562, 2452, 644, 648, 1688, 649, 643, 645, 646, 643, 1475, 1070, 1690, 648, 562, 649, 1070, 644, 643, 1689, 562, 643, 645, 646, 1558, 1559, 1559, 1558, 648, 644, 649, 909, 930, 643, 645, 646, 643, 562, 2441, 2449, 648, 562, 649, 1691, 644, 643, 1946, 1470, 643, 645, 646, 1692, 2456, 593, 1693, 648, 644, 649, 2546, 562, 643, 645, 646, 643, 562, 562, 1070, 648, 1916, 649, 643, 644, 1915, 643, 1915, 1694, 645, 646, 1695, 562, 643, 644, 648, 643, 649, 562, 645, 646, 562, 2199, 643, 644, 648, 643, 649, 2578, 645, 646, 1696, 970, 2553, 644, 648, 1070, 649, 2199, 645, 646, 2554, 1964, 594, 1697, 648, 643, 649, 1915, 643, 643, 2541, 2542, 643, 2541, 643, 643, 644, 643, 643, 1165, 644, 645, 646, 1698, 1918, 645, 646, 648, 1917, 649, 1917, 648, 643, 649, 562, 643, 648, 648, 649, 649, 1699, 643, 643, 644, 643, 643, 2407, 1700, 645, 646, 562, 562, 644, 2621, 648, 562, 649, 645, 646, 643, 562, 1701, 643, 648, 648, 649, 649, 562, 2622, 643, 644, 1917, 643, 1070, 1838, 645, 646, 1838, 2564, 1702, 644, 648, 1070, 649, 643, 645, 646, 643, 2566, 562, 2565, 648, 1703, 649, 562, 644, 1839, 1070, 2035, 643, 645, 646, 643, 1704, 562, 562, 648, 562, 649, 643, 644, 1705, 643, 1706, 1070, 645, 646, 562, 562, 2570, 644, 648, 2623, 649, 643, 645, 646, 643, 2579, 2581, 562, 648, 1070, 649, 643, 644, 1707, 643, 1061, 562, 645, 646, 1070, 562, 643, 644, 648, 643, 649, 562, 645, 646, 2582, 1165, 1566, 644, 648, 1566, 649, 643, 645, 646, 643, 593, 2648, 1708, 648, 1477, 649, 2624, 644, 1477, 2630, 1477, 1709, 645, 646, 562, 2649, 950, 1165, 648, 643, 649, 1885, 643, 2550, 2550, 2550, 2550, 1710, 643, 2569, 644, 643, 2569, 802, 560, 645, 646, 643, 1070, 644, 643, 648, 2447, 649, 645, 646, 643, 1711, 644, 643, 648, 1477, 649, 645, 646, 643, 1712, 644, 643, 648, 562, 649, 645, 646, 643, 562, 644, 643, 648, 2650, 649, 645, 646, 2017, 562, 644, 2017, 648, 2602, 649, 645, 646, 2584, 562, 1713, 2584, 648, 2585, 649, 2018, 2019, 2651, 677, 1381, 1381, 1381, 1381, 2652, 1714, 1122, 857, 728, 729, 2629, 728, 2653, 2585, 1715, 1956, 1717, 728, 729, 730, 728, 562, 855, 1716, 731, 732, 728, 729, 730, 728, 648, 2659, 649, 731, 732, 643, 2669, 730, 643, 648, 2670, 649, 731, 732, 728, 729, 562, 728, 648, 2361, 649, 802, 1727, 728, 729, 730, 728, 648, 2654, 649, 731, 732, 729, 729, 730, 729, 648, 2655, 649, 731, 732, 728, 729, 730, 728, 648, 2376, 649, 731, 732, 859, 2619, 730, 562, 2619, 2668, 1728, 731, 732, 728, 729, 2376, 728, 648, 2671, 649, 2672, 1729, 2673, 2620, 730, 2420, 2420, 2420, 2420, 731, 732, 2674, 2421, 761, 562, 648, 2656, 649, 1730, 1653, 1731, 1732, 1653, 1731, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1733, 1653, 1653, 1653, 1653, 1734, 1735, 1653, 2627, 562, 1263, 1658, 1653, 1659, 1653, 1653, 1653, 2628, 728, 729, 2675, 728, 1070, 1838, 2676, 1736, 1838, 2677, 2678, 730, 728, 729, 2679, 728, 731, 732, 1653, 1653, 1653, 1653, 648, 730, 649, 1063, 1063, 1839, 731, 732, 1064, 1064, 2567, 2568, 648, 2567, 649, 2680, 2541, 2542, 1065, 2541, 2681, 728, 729, 2682, 728, 2623, 1653, 1653, 1653, 1653, 1737, 2694, 730, 887, 887, 887, 887, 731, 732, 728, 729, 562, 728, 648, 1738, 649, 2694, 2697, 728, 729, 730, 728, 2688, 562, 562, 731, 732, 728, 729, 730, 728, 648, 2687, 649, 731, 732, 728, 729, 730, 728, 648, 1063, 649, 731, 732, 728, 729, 730, 728, 648, 2705, 649, 731, 732, 2683, 2683, 730, 2683, 648, 760, 649, 731, 732, 2317, 2317, 2317, 2317, 648, 2619, 649, 2318, 2619, 2657, 728, 729, 2657, 728, 2697, 1739, 1742, 892, 2716, 728, 729, 730, 728, 2620, 1740, 1741, 731, 732, 2717, 1743, 730, 2718, 648, 2658, 649, 731, 732, 728, 729, 562, 728, 648, 562, 649, 2483, 2483, 2483, 2483, 730, 728, 729, 2484, 728, 731, 732, 2226, 2226, 2226, 2226, 648, 730, 649, 2227, 1744, 2719, 731, 732, 728, 729, 2720, 728, 648, 2652, 649, 2684, 761, 728, 729, 730, 728, 2320, 2689, 2729, 731, 732, 2584, 562, 730, 2584, 648, 2585, 649, 731, 732, 728, 729, 2505, 728, 648, 562, 649, 1263, 2697, 728, 729, 730, 728, 2690, 2511, 2585, 731, 732, 1745, 2710, 730, 562, 648, 2739, 649, 731, 732, 2229, 802, 1746, 1914, 648, 643, 649, 2140, 643, 2740, 1381, 1381, 1381, 1381, 2230, 826, 644, 1836, 562, 2721, 826, 645, 646, 2723, 1747, 1748, 2741, 648, 2140, 649, 2742, 2743, 855, 2738, 1749, 1176, 1274, 1275, 1176, 1750, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1276, 1176, 1176, 1176, 1176, 1277, 1278, 1176, 2744, 2722, 2745, 1181, 1176, 1182, 1176, 1176, 1176, 2746, 728, 729, 2747, 728, 1559, 1559, 1559, 1559, 2748, 2022, 2749, 730, 728, 729, 2697, 728, 731, 732, 1176, 1176, 1176, 1176, 648, 730, 649, 859, 1946, 1751, 731, 732, 728, 729, 2705, 728, 648, 562, 649, 2420, 2420, 2420, 2420, 730, 728, 729, 2421, 728, 731, 732, 1176, 1176, 1176, 1176, 648, 730, 649, 562, 1752, 562, 731, 732, 728, 729, 2754, 728, 648, 2217, 649, 2697, 1753, 728, 729, 730, 728, 2756, 2217, 1383, 731, 732, 728, 729, 730, 728, 648, 2771, 649, 731, 732, 2683, 2683, 730, 2683, 648, 2750, 649, 731, 732, 1754, 2719, 1755, 2772, 648, 2774, 649, 728, 729, 2755, 728, 1718, 710, 710, 1718, 562, 562, 2777, 730, 862, 854, 854, 862, 731, 732, 862, 854, 854, 862, 648, 761, 649, 2777, 711, 2697, 728, 729, 2779, 728, 728, 729, 855, 728, 865, 562, 2710, 730, 864, 1756, 865, 730, 731, 732, 2753, 2775, 731, 732, 648, 2789, 649, 2790, 648, 2773, 649, 562, 2773, 2791, 1757, 1198, 1293, 1294, 1198, 1293, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1295, 1198, 1198, 1198, 1198, 1296, 1297, 1198, 1840, 2776, 2792, 1203, 1198, 1204, 1198, 1198, 1198, 760, 728, 729, 2793, 728, 2794, 1763, 2744, 2242, 2243, 2243, 2242, 730, 728, 729, 2796, 728, 731, 732, 1198, 1198, 1198, 1198, 648, 730, 649, 2797, 2806, 1758, 731, 732, 2924, 2924, 2924, 2924, 648, 562, 649, 2924, 862, 854, 854, 862, 728, 729, 2812, 728, 2802, 562, 1198, 1198, 1198, 1198, 1759, 730, 728, 729, 2697, 728, 731, 732, 864, 2813, 865, 562, 648, 730, 649, 2805, 1760, 2719, 731, 732, 728, 729, 2689, 728, 648, 562, 649, 2924, 2924, 2924, 2924, 730, 728, 729, 562, 728, 731, 732, 2816, 1842, 1070, 562, 648, 730, 649, 2814, 2697, 1160, 731, 732, 2924, 562, 2924, 1761, 648, 1045, 649, 2811, 1762, 2757, 728, 729, 2757, 728, 1539, 1539, 1539, 2821, 2789, 728, 729, 730, 728, 2689, 2822, 1070, 731, 732, 728, 729, 730, 728, 648, 1765, 649, 731, 732, 2387, 1764, 730, 1539, 648, 2823, 649, 731, 732, 728, 729, 2759, 728, 648, 2759, 649, 2824, 2924, 728, 729, 730, 728, 2760, 2825, 2705, 731, 732, 728, 729, 730, 728, 648, 1539, 649, 731, 732, 2835, 2845, 730, 562, 648, 2846, 649, 731, 732, 1766, 2829, 728, 729, 648, 728, 649, 1767, 2815, 1768, 2848, 2815, 2853, 730, 728, 729, 2854, 728, 731, 732, 2226, 2226, 2226, 2226, 648, 730, 649, 2412, 2744, 2798, 731, 732, 2798, 1769, 728, 729, 648, 728, 649, 1771, 2799, 2744, 1770, 728, 729, 730, 728, 2855, 2705, 2870, 731, 732, 728, 729, 730, 728, 648, 2880, 649, 731, 732, 728, 729, 730, 728, 648, 2882, 649, 731, 732, 2697, 1263, 730, 1772, 648, 2789, 649, 731, 732, 728, 729, 2830, 728, 648, 2757, 649, 2414, 2757, 728, 729, 730, 728, 2637, 2637, 2789, 731, 732, 1064, 1064, 730, 2230, 648, 1773, 649, 731, 732, 1839, 2638, 1774, 2623, 648, 2696, 649, 728, 729, 2850, 728, 1775, 2850, 2891, 2759, 2697, 1776, 2759, 730, 728, 729, 2851, 728, 731, 732, 2760, 2839, 2896, 1484, 648, 730, 649, 1484, 1777, 1484, 731, 732, 562, 2898, 2787, 1884, 648, 2787, 649, 1778, 950, 728, 729, 2803, 728, 2788, 2803, 1779, 2900, 2637, 728, 729, 730, 728, 2697, 2847, 1780, 731, 732, 2879, 562, 730, 2879, 648, 2861, 649, 731, 732, 728, 729, 1484, 728, 648, 2879, 649, 562, 2879, 728, 729, 730, 728, 1781, 2901, 2719, 731, 732, 2787, 2906, 730, 2787, 648, 2910, 649, 731, 732, 728, 729, 2788, 728, 648, 2815, 649, 562, 2815, 728, 729, 730, 728, 802, 562, 1263, 731, 732, 2897, 2826, 730, 1782, 648, 2826, 649, 731, 732, 1839, 2881, 728, 729, 648, 728, 649, 2886, 1484, 2361, 562, 1783, 1484, 730, 1484, 562, 562, 562, 731, 732, 950, 1785, 562, 2922, 648, 1885, 649, 2909, 2916, 1263, 728, 729, 2919, 728, 728, 729, 1914, 728, 1784, 1055, 1914, 730, 1914, 2512, 1055, 730, 731, 732, 950, 2689, 731, 732, 648, 950, 649, 1484, 648, 2361, 649, 562, 728, 729, 1786, 728, 728, 729, 2818, 728, 2921, 2818, 2511, 730, 2510, 2819, 1055, 730, 731, 732, 2509, 1055, 731, 732, 648, 1914, 649, 2506, 648, 2505, 649, 728, 729, 2874, 728, 2504, 2874, 1787, 2483, 2483, 2483, 2483, 730, 2466, 2708, 2484, 1788, 731, 732, 728, 729, 2905, 728, 648, 562, 649, 2773, 760, 1789, 2773, 730, 1257, 1257, 1257, 1257, 731, 732, 862, 854, 854, 862, 648, 719, 649, 862, 854, 854, 862, 862, 854, 854, 862, 2458, 1790, 862, 854, 854, 862, 2457, 864, 2444, 865, 862, 854, 854, 862, 864, 2443, 865, 2431, 864, 2410, 865, 2409, 2818, 2408, 864, 2818, 865, 2270, 1989, 2819, 1791, 2216, 864, 2214, 865, 862, 854, 854, 862, 862, 854, 854, 862, 1990, 1843, 862, 854, 854, 862, 862, 854, 854, 862, 872, 872, 636, 636, 864, 1844, 865, 636, 864, 2404, 865, 985, 2924, 2403, 864, 2924, 865, 2402, 864, 2924, 865, 862, 854, 854, 862, 1845, 862, 854, 854, 862, 2401, 862, 854, 854, 862, 970, 2913, 1914, 1914, 562, 970, 1914, 1847, 864, 970, 865, 2199, 1846, 864, 488, 865, 2400, 1848, 864, 488, 865, 1849, 1532, 1533, 1533, 1532, 970, 970, 2317, 2317, 2317, 2317, 2395, 1441, 561, 2318, 2874, 561, 1441, 2874, 2394, 872, 2393, 1850, 541, 561, 865, 2708, 1851, 1914, 1532, 1533, 1533, 1532, 930, 558, 559, 559, 558, 930, 2923, 930, 561, 2923, 930, 561, 560, 561, 930, 2392, 561, 561, 541, 561, 865, 793, 793, 563, 561, 564, 793, 2391, 1536, 1537, 1537, 1536, 1537, 1537, 1537, 1537, 2850, 562, 2390, 2850, 561, 798, 798, 561, 561, 561, 798, 561, 2851, 2875, 561, 561, 865, 909, 2320, 561, 1536, 1537, 1537, 1536, 1939, 1939, 1939, 1939, 909, 909, 2850, 1540, 561, 2850, 1938, 561, 1543, 1049, 1049, 1543, 909, 561, 2851, 561, 865, 561, 1052, 909, 1051, 2389, 2379, 2378, 1543, 1049, 1049, 1543, 2377, 2376, 1052, 1050, 2924, 2924, 2924, 2924, 1051, 808, 808, 2924, 2369, 561, 808, 1544, 1544, 1544, 1052, 1543, 1049, 1049, 1543, 2368, 2367, 2366, 1050, 2904, 2904, 2904, 2904, 1051, 2365, 1718, 710, 710, 1718, 842, 1544, 1544, 1544, 1052, 1543, 1049, 1049, 1543, 842, 842, 1054, 1050, 1553, 1553, 1553, 1553, 1051, 711, 842, 1554, 2364, 842, 2363, 1940, 1940, 1940, 1052, 1918, 2924, 2924, 2924, 2924, 1916, 2874, 541, 2924, 2874, 2362, 1054, 2361, 558, 559, 559, 558, 2708, 1952, 1953, 1953, 1952, 2360, 2924, 560, 561, 812, 812, 561, 1954, 561, 812, 2359, 561, 1054, 563, 561, 564, 2358, 2357, 563, 561, 865, 2858, 643, 2356, 2858, 643, 2355, 2354, 2353, 1555, 2352, 2803, 2708, 644, 2803, 1054, 819, 819, 645, 646, 561, 819, 2697, 1556, 648, 561, 649, 802, 2293, 1953, 1953, 1953, 1953, 2804, 1580, 1581, 1581, 1580, 1945, 2924, 1954, 561, 894, 894, 561, 1582, 561, 894, 2019, 561, 2281, 563, 561, 2280, 2272, 2270, 563, 561, 865, 1581, 1581, 1581, 1581, 1070, 2266, 1722, 1722, 1722, 1722, 2023, 1582, 561, 1723, 643, 561, 2264, 643, 643, 561, 2263, 643, 563, 561, 561, 644, 1070, 794, 711, 644, 645, 646, 794, 794, 645, 646, 648, 794, 649, 2246, 648, 593, 649, 2904, 2904, 2904, 2904, 1070, 2233, 561, 1565, 1963, 1567, 1567, 1963, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1568, 1569, 1565, 1565, 1569, 1565, 1565, 1565, 2225, 2223, 2222, 1570, 1569, 1571, 1565, 1565, 1565, 2221, 678, 2219, 2024, 2216, 1929, 507, 1724, 1725, 1725, 1725, 1725, 1580, 1581, 1581, 1580, 507, 1918, 1916, 1565, 1565, 1569, 1565, 1582, 561, 2214, 1912, 561, 902, 902, 1726, 985, 2209, 902, 563, 561, 865, 2550, 2550, 2550, 2550, 2208, 2858, 643, 2207, 2858, 643, 2206, 560, 1565, 1565, 1565, 1565, 2708, 644, 2924, 2924, 2924, 2924, 645, 646, 561, 2924, 2205, 2204, 648, 970, 649, 1968, 1615, 559, 559, 1615, 862, 854, 854, 862, 2924, 919, 919, 560, 561, 2021, 919, 561, 2203, 862, 854, 854, 862, 2202, 563, 561, 865, 2201, 855, 970, 865, 2200, 2199, 643, 1885, 2858, 643, 643, 2858, 1441, 643, 864, 2892, 865, 644, 2192, 2708, 2191, 644, 645, 646, 561, 2190, 645, 646, 648, 1989, 649, 2189, 648, 2188, 649, 2226, 2226, 2226, 2226, 930, 2187, 2924, 2412, 930, 1990, 1198, 1199, 1198, 1198, 1199, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1200, 1198, 1198, 1198, 1198, 1201, 1202, 1198, 678, 2186, 2185, 1203, 1198, 1204, 1198, 1198, 1198, 2874, 643, 2176, 2874, 643, 1165, 2175, 2696, 2924, 2696, 2696, 2708, 644, 643, 2696, 2174, 643, 645, 646, 1198, 1198, 1198, 1198, 648, 644, 649, 2173, 2414, 2025, 645, 646, 643, 2172, 2858, 643, 648, 2858, 649, 2171, 2170, 2169, 2230, 644, 643, 2708, 2158, 643, 645, 646, 1198, 1198, 1198, 1198, 648, 644, 649, 2893, 2156, 643, 645, 646, 643, 2155, 923, 923, 648, 2154, 649, 923, 644, 2153, 2026, 2152, 2027, 645, 646, 643, 2151, 2150, 643, 648, 842, 649, 2696, 2924, 2696, 2696, 644, 643, 2902, 2696, 643, 645, 646, 862, 854, 854, 862, 648, 644, 649, 2149, 2028, 643, 645, 646, 643, 2148, 842, 2147, 648, 2146, 649, 2029, 644, 1487, 864, 1481, 865, 645, 646, 2030, 2138, 2137, 2136, 648, 2874, 649, 643, 2874, 2135, 643, 2550, 2550, 2550, 2550, 2134, 2708, 643, 644, 2031, 643, 2133, 560, 645, 646, 940, 940, 2032, 644, 648, 940, 649, 643, 645, 646, 643, 2161, 2132, 2131, 648, 2130, 649, 643, 644, 2874, 643, 2129, 2874, 645, 646, 2033, 2128, 809, 644, 648, 2708, 649, 643, 645, 646, 643, 802, 732, 1165, 648, 2075, 649, 643, 644, 1160, 643, 945, 945, 645, 646, 2912, 945, 1158, 644, 648, 2034, 649, 643, 645, 646, 643, 646, 2016, 2015, 648, 1984, 649, 643, 644, 2036, 643, 951, 951, 645, 646, 1978, 951, 677, 644, 648, 1061, 649, 643, 645, 646, 643, 1950, 2903, 1947, 648, 1944, 649, 643, 644, 1943, 643, 1942, 2037, 645, 646, 1517, 1514, 643, 644, 648, 643, 649, 1929, 645, 646, 1501, 1491, 1918, 644, 648, 1165, 649, 2874, 645, 646, 2874, 1487, 643, 2038, 648, 643, 649, 1916, 2708, 2858, 1481, 643, 2858, 644, 643, 2039, 962, 962, 645, 646, 2708, 962, 644, 1479, 648, 1912, 649, 645, 646, 643, 2040, 2798, 643, 648, 2798, 649, 2858, 2041, 1907, 2858, 644, 643, 2826, 1906, 643, 645, 646, 2708, 1905, 2908, 2042, 648, 644, 649, 970, 2043, 1904, 645, 646, 643, 1903, 2696, 643, 648, 1902, 649, 1901, 2712, 643, 1900, 644, 643, 2696, 2696, 2696, 645, 646, 2907, 1899, 644, 2044, 648, 2758, 649, 645, 646, 643, 1898, 2911, 643, 648, 1897, 649, 970, 813, 2046, 2045, 644, 643, 813, 813, 643, 645, 646, 813, 1896, 2696, 1895, 648, 644, 649, 2047, 2712, 643, 645, 646, 643, 2696, 2696, 2696, 648, 1894, 649, 643, 644, 970, 643, 2758, 1893, 645, 646, 1441, 1441, 2696, 644, 648, 2048, 649, 643, 645, 646, 643, 1879, 930, 1878, 648, 1877, 649, 643, 644, 2050, 643, 1876, 2049, 645, 646, 983, 983, 1875, 644, 648, 983, 649, 643, 645, 646, 643, 1874, 1873, 2051, 648, 930, 649, 643, 644, 1872, 643, 1871, 2696, 645, 646, 1040, 1040, 2052, 644, 648, 1040, 649, 643, 645, 646, 643, 930, 1870, 1165, 648, 1869, 649, 643, 644, 909, 643, 1248, 1248, 645, 646, 1868, 1248, 643, 644, 648, 643, 649, 1867, 645, 646, 1866, 2053, 643, 644, 648, 643, 649, 1865, 645, 646, 1380, 1380, 1864, 644, 648, 1380, 649, 2054, 645, 646, 643, 1863, 909, 643, 648, 1862, 649, 1861, 909, 2055, 1860, 644, 2924, 2924, 2924, 2924, 645, 646, 643, 2924, 2056, 643, 648, 1859, 649, 1858, 1857, 643, 2057, 644, 643, 821, 677, 2058, 645, 646, 821, 821, 644, 1856, 648, 821, 649, 645, 646, 1855, 1854, 643, 2059, 648, 643, 649, 1853, 1852, 2858, 1383, 643, 2858, 644, 643, 2060, 1341, 1341, 645, 646, 2708, 1341, 644, 1382, 648, 1834, 649, 645, 646, 643, 842, 1833, 643, 648, 1832, 649, 2062, 1831, 2061, 1830, 644, 643, 1829, 1828, 643, 645, 646, 2924, 1827, 895, 1826, 648, 644, 649, 895, 895, 2063, 645, 646, 895, 842, 643, 1825, 648, 643, 649, 2696, 2924, 2696, 2696, 2064, 643, 644, 2696, 643, 2637, 2637, 645, 646, 2914, 1064, 1064, 644, 648, 1824, 649, 643, 645, 646, 643, 2638, 1823, 2065, 648, 1822, 649, 643, 644, 842, 643, 2727, 2727, 645, 646, 1821, 1064, 1064, 644, 648, 1806, 649, 1805, 645, 646, 2066, 2728, 643, 1804, 648, 643, 649, 1803, 862, 854, 854, 862, 2068, 644, 1802, 1799, 2067, 2069, 645, 646, 2874, 1798, 2070, 2874, 648, 643, 649, 1797, 643, 2637, 864, 2708, 865, 1796, 809, 643, 644, 1165, 643, 1792, 2071, 645, 646, 732, 732, 643, 644, 648, 643, 649, 1255, 645, 646, 1160, 2727, 643, 644, 648, 643, 649, 1165, 645, 646, 1053, 1053, 1158, 644, 648, 1053, 649, 646, 645, 646, 728, 729, 1160, 728, 648, 2160, 649, 1158, 646, 728, 729, 730, 728, 2915, 1793, 1793, 731, 732, 1160, 1793, 730, 1642, 648, 2072, 649, 731, 732, 2695, 1559, 1559, 2695, 648, 2073, 649, 728, 729, 1641, 728, 678, 2076, 2074, 1061, 1557, 728, 729, 730, 728, 1341, 1383, 1560, 731, 732, 728, 729, 730, 728, 648, 1552, 649, 731, 732, 1341, 1341, 730, 1551, 648, 1341, 649, 731, 732, 728, 729, 1550, 728, 648, 1549, 649, 1542, 2077, 1837, 1837, 730, 728, 729, 1837, 728, 731, 732, 1939, 1939, 1939, 1939, 648, 730, 649, 1540, 1045, 903, 731, 732, 1513, 2078, 903, 903, 648, 1513, 649, 903, 1487, 1478, 1052, 2079, 1198, 1293, 1294, 1198, 1293, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1295, 1198, 1198, 1198, 1198, 1296, 1297, 1198, 761, 1481, 1478, 1203, 1198, 1204, 1198, 1198, 1198, 761, 728, 729, 1472, 728, 985, 985, 1471, 2924, 2924, 2924, 2924, 730, 728, 729, 2924, 728, 731, 732, 1198, 1198, 1198, 1198, 648, 730, 649, 1793, 1054, 2080, 731, 732, 728, 729, 1468, 728, 648, 1467, 649, 1464, 1463, 1793, 1793, 730, 728, 729, 1793, 728, 731, 732, 1198, 1198, 1198, 1198, 648, 730, 649, 1908, 1908, 1462, 731, 732, 1908, 1461, 728, 729, 648, 728, 649, 2228, 2228, 1263, 1460, 970, 2228, 730, 2631, 2632, 2632, 2631, 731, 732, 728, 729, 1263, 728, 648, 2633, 649, 2924, 1459, 1458, 2081, 730, 728, 729, 1457, 728, 731, 732, 1456, 1455, 2370, 2370, 648, 730, 649, 2370, 2727, 2727, 731, 732, 970, 1064, 1064, 2082, 648, 1441, 649, 728, 729, 1439, 728, 2728, 2507, 2507, 2507, 2507, 1438, 1437, 730, 1436, 1063, 1063, 2083, 731, 732, 1064, 1064, 728, 729, 648, 728, 649, 1433, 2084, 2508, 1065, 728, 729, 730, 728, 1432, 1431, 2085, 731, 732, 728, 729, 730, 728, 648, 930, 649, 731, 732, 728, 729, 730, 728, 648, 1430, 649, 731, 732, 2858, 2727, 730, 2858, 648, 1429, 649, 731, 732, 1428, 1427, 2708, 2086, 648, 930, 649, 728, 729, 1426, 728, 1263, 1425, 1424, 1423, 1420, 1063, 2508, 730, 1257, 1257, 1257, 1257, 731, 732, 728, 729, 2087, 728, 648, 719, 649, 1419, 1418, 728, 729, 730, 728, 2035, 909, 1417, 731, 732, 760, 1416, 730, 1415, 648, 1414, 649, 731, 732, 728, 729, 909, 728, 648, 2917, 649, 2088, 1413, 728, 729, 730, 728, 1908, 1412, 1411, 731, 732, 728, 729, 730, 728, 648, 1410, 649, 731, 732, 1908, 1908, 730, 1409, 648, 1908, 649, 731, 732, 728, 729, 2089, 728, 648, 1408, 649, 1407, 924, 728, 729, 730, 728, 924, 924, 1406, 731, 732, 924, 1263, 730, 1405, 648, 1383, 649, 731, 732, 1382, 861, 1379, 2090, 648, 1378, 649, 1377, 728, 729, 1376, 728, 1375, 1374, 2091, 1371, 1370, 728, 729, 730, 728, 2370, 1369, 2092, 731, 732, 2874, 842, 730, 2874, 648, 1367, 649, 731, 732, 2370, 2370, 2708, 2093, 648, 2370, 649, 728, 729, 1366, 728, 728, 729, 1365, 728, 2094, 1364, 1363, 730, 1362, 842, 1351, 730, 731, 732, 1350, 2095, 731, 732, 648, 1345, 649, 1344, 648, 1343, 649, 728, 729, 1342, 728, 809, 2695, 1559, 1559, 2695, 728, 729, 730, 728, 1340, 809, 2096, 731, 732, 1338, 802, 730, 802, 648, 2918, 649, 731, 732, 1946, 733, 2098, 732, 648, 1255, 649, 728, 729, 1253, 728, 2097, 2778, 1559, 1559, 2778, 728, 729, 730, 728, 716, 647, 1160, 731, 732, 2099, 1158, 730, 646, 648, 637, 649, 731, 732, 1560, 637, 728, 729, 648, 728, 649, 2778, 1559, 1559, 2778, 728, 729, 730, 728, 1148, 2100, 562, 731, 732, 728, 729, 730, 728, 648, 1061, 649, 731, 732, 1946, 562, 730, 1060, 648, 2102, 649, 731, 732, 728, 729, 2101, 728, 648, 1057, 649, 2691, 2692, 2692, 2691, 730, 728, 729, 1045, 728, 731, 732, 2693, 554, 2103, 944, 648, 730, 649, 516, 944, 944, 731, 732, 510, 944, 507, 2104, 648, 985, 649, 483, 1263, 728, 729, 981, 728, 728, 729, 980, 728, 963, 979, 972, 730, 969, 963, 963, 730, 731, 732, 963, 968, 731, 732, 648, 965, 649, 964, 648, 954, 649, 943, 2105, 728, 729, 942, 728, 728, 729, 939, 728, 938, 937, 933, 730, 932, 794, 2106, 730, 731, 732, 794, 794, 731, 732, 648, 794, 649, 929, 648, 928, 649, 728, 729, 927, 728, 926, 925, 918, 917, 2107, 916, 912, 730, 728, 729, 760, 728, 731, 732, 862, 854, 854, 862, 648, 730, 649, 911, 2109, 2108, 731, 732, 908, 907, 728, 729, 648, 728, 649, 906, 905, 904, 864, 2110, 865, 730, 2692, 2692, 2692, 2692, 731, 732, 728, 729, 483, 728, 648, 2693, 649, 900, 899, 643, 2111, 730, 643, 898, 897, 896, 731, 732, 728, 729, 644, 728, 648, 483, 649, 645, 646, 2112, 861, 730, 853, 648, 852, 649, 731, 732, 2113, 851, 872, 845, 648, 844, 649, 841, 728, 729, 840, 728, 728, 729, 2282, 728, 813, 839, 2114, 730, 836, 813, 813, 730, 731, 732, 813, 835, 731, 732, 648, 824, 649, 817, 648, 816, 649, 728, 729, 815, 728, 2115, 814, 1543, 1049, 1049, 1543, 809, 730, 802, 1050, 483, 716, 731, 732, 1051, 548, 728, 729, 648, 728, 649, 1940, 1940, 1940, 1052, 728, 729, 730, 728, 637, 2116, 635, 731, 732, 728, 729, 730, 728, 648, 637, 649, 731, 732, 637, 2117, 730, 635, 648, 566, 649, 731, 732, 2415, 2416, 2416, 2415, 648, 554, 649, 551, 548, 728, 729, 560, 728, 2118, 2696, 2924, 2696, 2696, 535, 2119, 730, 2696, 1946, 532, 2120, 731, 732, 526, 519, 2121, 1054, 648, 516, 649, 728, 729, 2696, 728, 1263, 483, 2122, 2924, 2924, 2924, 2924, 730, 728, 729, 483, 728, 731, 732, 498, 491, 483, 821, 648, 730, 649, 2924, 821, 821, 731, 732, 2924, 821, 2924, 1263, 648, 2924, 649, 728, 729, 2924, 728, 728, 729, 2924, 728, 895, 2764, 2924, 730, 2924, 895, 895, 730, 731, 732, 895, 2924, 731, 732, 648, 2696, 649, 2173, 648, 2924, 649, 862, 854, 854, 862, 2924, 2123, 2372, 854, 854, 2372, 2415, 2416, 2416, 2415, 2924, 2924, 2124, 2924, 2924, 2924, 2924, 560, 864, 2924, 865, 2924, 2924, 2924, 864, 2924, 865, 761, 1560, 2924, 2418, 2924, 2924, 2924, 2924, 2125, 1198, 1389, 1390, 1390, 1389, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 863, 863, 863, 1391, 1198, 1392, 1198, 1198, 1198, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 1198, 1198, 1198, 1198, 863, 863, 863, 863, 863, 2159, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 1198, 1198, 1198, 1198, 862, 854, 854, 862, 862, 854, 854, 862, 862, 854, 854, 862, 862, 854, 854, 862, 862, 854, 854, 862, 2924, 2924, 864, 2924, 865, 2924, 864, 2924, 865, 2924, 864, 2924, 865, 2924, 864, 2924, 865, 2924, 864, 2924, 865, 2924, 2924, 862, 854, 854, 862, 862, 854, 854, 862, 2924, 2924, 2924, 2162, 862, 854, 854, 862, 2691, 2692, 2692, 2691, 2164, 2163, 864, 2924, 865, 2924, 864, 2693, 865, 728, 729, 872, 728, 2924, 864, 2924, 865, 2924, 2165, 2924, 730, 2924, 2924, 2924, 643, 731, 732, 643, 2924, 2924, 2924, 648, 2924, 649, 2924, 644, 2924, 2924, 2166, 2924, 645, 646, 2692, 2692, 2692, 2692, 648, 2924, 649, 2924, 2321, 2924, 2924, 2693, 2167, 2459, 2924, 2924, 2924, 2924, 2168, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 963, 963, 963, 1198, 1198, 1198, 1198, 1198, 1198, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 1198, 1198, 1198, 1198, 963, 963, 963, 963, 963, 2198, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 1198, 1198, 1198, 1198, 558, 559, 559, 558, 2924, 2924, 1543, 1049, 1049, 1543, 2924, 560, 561, 1050, 2924, 561, 2220, 2924, 1051, 2924, 2924, 2924, 563, 561, 564, 1544, 1544, 1544, 1052, 1952, 1953, 1953, 1952, 2924, 2924, 1953, 1953, 1953, 1953, 2924, 1954, 561, 2924, 2924, 561, 643, 1954, 561, 643, 561, 561, 563, 561, 865, 2924, 2924, 644, 563, 561, 2924, 2924, 645, 646, 2416, 2416, 2416, 2416, 648, 2924, 649, 862, 854, 854, 862, 560, 2924, 2924, 2924, 561, 2924, 2795, 2795, 2795, 2795, 561, 1946, 1054, 558, 559, 559, 558, 2381, 864, 2924, 865, 2924, 2924, 643, 560, 561, 643, 2924, 561, 2924, 2481, 2481, 2481, 2481, 644, 563, 561, 564, 2924, 645, 646, 719, 2283, 643, 2924, 648, 643, 649, 2371, 2924, 2924, 2924, 1726, 2924, 644, 2795, 2795, 2795, 2795, 645, 646, 2924, 561, 2924, 2924, 648, 2381, 649, 2924, 2224, 1565, 2236, 1567, 1567, 2236, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1568, 1569, 1565, 1565, 1569, 1565, 1565, 1565, 2298, 2924, 2924, 1570, 1569, 1571, 1565, 1565, 1565, 2284, 2924, 2924, 862, 854, 854, 862, 643, 2924, 2924, 643, 862, 854, 854, 862, 2924, 2924, 2924, 644, 1565, 1565, 1569, 1565, 645, 646, 864, 2924, 865, 2924, 648, 2924, 649, 2924, 864, 2924, 865, 2924, 903, 862, 854, 854, 862, 903, 903, 2924, 2924, 2924, 903, 2924, 1565, 1565, 1565, 1565, 2241, 1953, 1953, 2241, 2924, 2924, 2285, 864, 2924, 865, 643, 1954, 561, 643, 872, 561, 2924, 2924, 2924, 2924, 872, 644, 563, 561, 865, 2924, 645, 646, 2924, 2924, 2924, 2924, 648, 2858, 649, 643, 2858, 2924, 643, 643, 872, 2924, 643, 2924, 2708, 2924, 644, 2924, 2924, 561, 644, 645, 646, 2924, 1989, 645, 646, 648, 2924, 649, 2924, 648, 2286, 649, 2924, 2924, 2924, 2924, 2924, 1990, 1081, 1082, 1083, 1083, 1082, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1084, 1085, 1081, 1081, 1085, 1081, 1081, 1081, 2924, 2924, 2924, 1086, 1085, 1087, 1081, 1081, 1081, 2924, 2288, 2920, 2289, 2924, 2507, 2507, 2507, 2507, 862, 854, 854, 862, 643, 2924, 2924, 643, 2924, 2924, 1081, 1081, 1085, 1081, 643, 644, 2924, 643, 2508, 2924, 645, 646, 864, 2924, 865, 644, 648, 2924, 649, 924, 645, 646, 594, 2924, 924, 924, 648, 2924, 649, 924, 1081, 1081, 1081, 1081, 1653, 1654, 1653, 1653, 1654, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1655, 1653, 1653, 1653, 1653, 1656, 1657, 1653, 2290, 2373, 2924, 1658, 1653, 1659, 1653, 1653, 1653, 2508, 2795, 2795, 2795, 2795, 2924, 1165, 2894, 2550, 2894, 2894, 2924, 2381, 643, 2924, 2924, 643, 2924, 2708, 1653, 1653, 1653, 1653, 2287, 644, 2924, 2924, 2924, 2924, 645, 646, 643, 2924, 2924, 643, 648, 2924, 649, 2924, 2924, 2924, 2924, 644, 643, 2924, 2924, 643, 645, 646, 1653, 1653, 1653, 1653, 648, 644, 649, 2924, 2924, 2924, 645, 646, 643, 2924, 2924, 643, 648, 2924, 649, 2924, 1165, 2924, 2924, 644, 2696, 2924, 2696, 2696, 645, 646, 643, 2696, 2924, 643, 648, 2924, 649, 2924, 677, 643, 2924, 644, 643, 2924, 2924, 2924, 645, 646, 2291, 2924, 644, 2924, 648, 2924, 649, 645, 646, 643, 2924, 944, 643, 648, 2924, 649, 944, 944, 2294, 643, 644, 944, 643, 2924, 2924, 645, 646, 2924, 2924, 643, 644, 648, 643, 649, 2924, 645, 646, 1165, 2924, 2924, 644, 648, 2842, 649, 2924, 645, 646, 2924, 2924, 643, 2924, 648, 643, 649, 2924, 2924, 2696, 2924, 1444, 643, 644, 1165, 643, 1444, 1444, 645, 646, 2924, 1444, 2295, 644, 648, 2924, 649, 2924, 645, 646, 643, 2924, 2924, 643, 648, 2924, 649, 2924, 1165, 963, 643, 644, 1165, 643, 963, 963, 645, 646, 2924, 963, 2924, 644, 648, 2924, 649, 643, 645, 646, 643, 2924, 2924, 2924, 648, 2924, 649, 2924, 644, 2296, 2924, 2924, 643, 645, 646, 643, 2924, 2297, 2924, 648, 2924, 649, 643, 644, 2924, 643, 2924, 2924, 645, 646, 2924, 2924, 643, 644, 648, 643, 649, 2924, 645, 646, 2924, 2924, 2299, 644, 648, 2924, 649, 643, 645, 646, 643, 2924, 677, 2924, 648, 2924, 649, 643, 644, 2924, 643, 2924, 2924, 645, 646, 2924, 2924, 2300, 644, 648, 813, 649, 2301, 645, 646, 813, 813, 2924, 2924, 648, 813, 649, 643, 2924, 2924, 643, 2924, 2696, 2924, 2696, 2696, 2924, 2302, 644, 2696, 2924, 2924, 643, 645, 646, 643, 2304, 2303, 2924, 648, 2924, 649, 643, 644, 2696, 643, 1165, 2924, 645, 646, 2924, 2924, 643, 644, 648, 643, 649, 2924, 645, 646, 2924, 2924, 2924, 644, 648, 2924, 649, 643, 645, 646, 643, 2924, 2924, 2924, 648, 821, 649, 2924, 644, 643, 821, 821, 643, 645, 646, 821, 2924, 2305, 2306, 648, 644, 649, 2924, 2924, 643, 645, 646, 643, 1165, 2924, 2924, 648, 2696, 649, 643, 644, 2924, 643, 2924, 2924, 645, 646, 2924, 2924, 2924, 644, 648, 678, 649, 2924, 645, 646, 677, 2924, 643, 2924, 648, 643, 649, 2924, 2924, 2924, 2924, 2924, 2924, 644, 2924, 2924, 2924, 643, 645, 646, 643, 2924, 2924, 2924, 648, 2924, 649, 677, 644, 1165, 2924, 2924, 643, 645, 646, 643, 2307, 2924, 2924, 648, 2924, 649, 643, 644, 2924, 643, 2924, 2924, 645, 646, 2924, 2924, 643, 644, 648, 643, 649, 2924, 645, 646, 677, 2924, 2924, 644, 648, 2924, 649, 2924, 645, 646, 2924, 2924, 643, 2924, 648, 643, 649, 862, 854, 854, 862, 643, 2924, 644, 643, 2924, 2924, 1165, 645, 646, 2924, 678, 644, 2924, 648, 2924, 649, 645, 646, 864, 2924, 865, 2924, 648, 2309, 649, 2924, 2924, 2924, 2924, 2308, 1176, 1177, 1176, 1176, 1177, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1178, 1176, 1176, 1176, 1176, 1179, 1180, 1176, 2924, 2310, 2312, 1181, 1176, 1182, 1176, 1176, 1176, 895, 643, 2924, 2924, 643, 895, 895, 872, 2924, 2924, 895, 2924, 644, 643, 2924, 2924, 643, 645, 646, 1176, 1176, 1176, 1176, 648, 644, 649, 2924, 2924, 2924, 645, 646, 643, 2924, 2924, 643, 648, 2924, 649, 2924, 2924, 2924, 678, 644, 643, 2924, 2924, 643, 645, 646, 1176, 1176, 1176, 1176, 648, 644, 649, 2924, 2311, 643, 645, 646, 643, 2924, 2924, 2924, 648, 903, 649, 1165, 644, 643, 903, 903, 643, 645, 646, 903, 2924, 2924, 2924, 648, 644, 649, 2924, 2924, 2924, 645, 646, 728, 729, 2924, 728, 648, 2924, 649, 2314, 2313, 2924, 2924, 730, 728, 729, 2924, 728, 731, 732, 2924, 2924, 2924, 924, 648, 730, 649, 2924, 924, 924, 731, 732, 2315, 924, 2924, 2316, 648, 2924, 649, 728, 729, 2924, 728, 728, 729, 2696, 728, 2924, 2924, 2924, 730, 2697, 2696, 2924, 730, 731, 732, 2924, 2696, 731, 732, 648, 2924, 649, 2924, 648, 2767, 649, 728, 729, 2323, 728, 2924, 2322, 2924, 2924, 2924, 728, 729, 730, 728, 2924, 2924, 2924, 731, 732, 728, 729, 730, 728, 648, 2324, 649, 731, 732, 2325, 2924, 730, 2924, 648, 2924, 649, 731, 732, 728, 729, 2924, 728, 648, 2924, 649, 2924, 2924, 728, 729, 730, 728, 2696, 2924, 2696, 731, 732, 2924, 2924, 730, 2924, 648, 2924, 649, 731, 732, 2924, 2924, 2326, 2924, 648, 2924, 649, 1444, 2924, 2327, 2924, 1263, 1444, 1444, 2924, 728, 729, 1444, 728, 2924, 2372, 854, 854, 2372, 728, 729, 730, 728, 963, 760, 2924, 731, 732, 963, 963, 730, 2328, 648, 963, 649, 731, 732, 855, 2924, 865, 2924, 648, 2924, 649, 2924, 2924, 728, 729, 2924, 728, 728, 729, 2924, 728, 813, 2924, 2924, 730, 2924, 813, 813, 730, 731, 732, 813, 2924, 731, 732, 648, 2924, 649, 2924, 648, 2330, 649, 1263, 1653, 1731, 1732, 1653, 1731, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1733, 1653, 1653, 1653, 1653, 1734, 1735, 1653, 2924, 2924, 2924, 1658, 1653, 1659, 1653, 1653, 1653, 1263, 728, 729, 2924, 728, 862, 854, 854, 862, 2924, 2924, 1263, 730, 2924, 2924, 2924, 2924, 731, 732, 1653, 1653, 1653, 1653, 648, 2924, 649, 2924, 864, 2924, 865, 2924, 728, 729, 2924, 728, 2329, 2924, 2924, 2924, 2924, 2924, 2924, 730, 728, 729, 2924, 728, 731, 732, 1653, 1653, 1653, 1653, 648, 730, 649, 2375, 2924, 2924, 731, 732, 2331, 2924, 728, 729, 648, 728, 649, 2924, 2924, 2924, 2924, 728, 729, 730, 728, 2924, 2924, 2924, 731, 732, 728, 729, 730, 728, 648, 2924, 649, 731, 732, 2924, 2924, 730, 2924, 648, 2924, 649, 731, 732, 1263, 2924, 1263, 2924, 648, 2924, 649, 2924, 728, 729, 2924, 728, 2924, 2924, 2924, 2924, 821, 728, 729, 730, 728, 821, 821, 2924, 731, 732, 821, 2924, 730, 2332, 648, 2924, 649, 731, 732, 2924, 2333, 728, 729, 648, 728, 649, 2924, 2924, 2924, 2924, 2924, 2924, 730, 2334, 2924, 2924, 2924, 731, 732, 728, 729, 2924, 728, 648, 2924, 649, 2924, 2924, 728, 729, 730, 728, 2924, 2924, 2924, 731, 732, 728, 729, 730, 728, 648, 2335, 649, 731, 732, 728, 729, 730, 728, 648, 760, 649, 731, 732, 2924, 2924, 730, 2924, 648, 2924, 649, 731, 732, 728, 729, 2924, 728, 648, 2924, 649, 2336, 895, 728, 729, 730, 728, 895, 895, 2337, 731, 732, 895, 2924, 730, 2924, 648, 2924, 649, 731, 732, 2924, 2924, 728, 729, 648, 728, 649, 2338, 2924, 2340, 2924, 2924, 2924, 730, 728, 729, 2339, 728, 731, 732, 2924, 2924, 2924, 2924, 648, 730, 649, 1263, 2924, 2924, 731, 732, 728, 729, 2924, 728, 648, 2924, 649, 2696, 2924, 2696, 2696, 730, 728, 729, 2696, 728, 731, 732, 2924, 2924, 2341, 2924, 648, 730, 649, 2924, 1263, 2924, 731, 732, 2924, 2924, 728, 729, 648, 728, 649, 2924, 2924, 2924, 2924, 728, 729, 730, 728, 2924, 2924, 761, 731, 732, 728, 729, 730, 728, 648, 760, 649, 731, 732, 728, 729, 730, 728, 648, 2924, 649, 731, 732, 728, 729, 730, 728, 648, 2872, 649, 731, 732, 728, 729, 730, 728, 648, 760, 649, 731, 732, 2924, 2696, 730, 1263, 648, 2924, 649, 731, 732, 1263, 2924, 2924, 2924, 648, 2924, 649, 728, 729, 924, 728, 963, 2924, 760, 924, 924, 963, 963, 730, 924, 2924, 963, 2924, 731, 732, 728, 729, 2924, 728, 648, 2924, 649, 761, 813, 1263, 2924, 730, 2924, 813, 813, 2924, 731, 732, 813, 2924, 2924, 821, 648, 903, 649, 2342, 821, 821, 903, 903, 2924, 821, 2924, 903, 2343, 1176, 1274, 1275, 1176, 1274, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1276, 1176, 1176, 1176, 1176, 1277, 1278, 1176, 2924, 2345, 2924, 1181, 1176, 1182, 1176, 1176, 1176, 924, 728, 729, 2924, 728, 924, 924, 2924, 2924, 2924, 924, 2924, 730, 728, 729, 2924, 728, 731, 732, 1176, 1176, 1176, 1176, 648, 730, 649, 2924, 2924, 2924, 731, 732, 728, 729, 2924, 728, 648, 2924, 649, 2924, 2924, 2924, 761, 730, 728, 729, 2924, 728, 731, 732, 1176, 1176, 1176, 1176, 648, 730, 649, 2924, 2924, 2924, 731, 732, 2344, 2924, 728, 729, 648, 728, 649, 1263, 2924, 2924, 2924, 2924, 2924, 730, 728, 729, 2924, 728, 731, 732, 2924, 2924, 2346, 963, 648, 730, 649, 2924, 963, 963, 731, 732, 2924, 963, 728, 729, 648, 728, 649, 862, 854, 854, 862, 813, 2924, 730, 2924, 2347, 813, 813, 731, 732, 2924, 813, 2348, 2924, 648, 2924, 649, 2924, 2924, 864, 2924, 865, 862, 854, 854, 862, 2380, 2380, 2380, 2380, 2924, 2924, 2349, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 821, 2350, 864, 2924, 865, 821, 821, 2381, 2924, 2381, 821, 2924, 2924, 872, 2924, 2924, 2924, 887, 887, 887, 887, 2924, 2924, 895, 558, 559, 559, 558, 895, 895, 2924, 2924, 2924, 895, 2924, 560, 561, 2924, 2382, 561, 2374, 2415, 2416, 2416, 2415, 2924, 563, 561, 564, 2924, 2383, 2388, 560, 2384, 2385, 2924, 2386, 2924, 2924, 2924, 2924, 892, 2924, 1560, 903, 2418, 2924, 2924, 2924, 903, 903, 2396, 2924, 561, 903, 924, 558, 559, 559, 558, 924, 924, 2924, 2397, 2924, 924, 2398, 560, 561, 2399, 2924, 561, 2411, 2924, 892, 2924, 963, 2924, 563, 561, 564, 963, 963, 2924, 2924, 2924, 963, 2423, 2419, 2426, 1953, 1953, 2426, 2924, 2924, 2242, 2243, 2243, 2242, 2924, 1954, 561, 2924, 2924, 561, 561, 560, 561, 2924, 2924, 561, 563, 561, 865, 2924, 2924, 2924, 563, 561, 865, 2924, 2768, 1559, 2769, 2768, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2697, 2924, 2243, 2243, 2243, 2243, 561, 2241, 1953, 1953, 2241, 2770, 561, 560, 561, 2924, 2924, 561, 1954, 561, 2924, 2924, 561, 2924, 563, 561, 2924, 2924, 2924, 563, 561, 865, 2924, 643, 2924, 2924, 643, 2924, 862, 854, 854, 862, 643, 2924, 644, 643, 2924, 2924, 2924, 645, 646, 561, 2924, 644, 2924, 648, 561, 649, 645, 646, 864, 1989, 865, 2924, 648, 2924, 649, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1990, 1565, 2442, 1567, 1567, 2442, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1568, 1569, 1565, 1565, 1569, 1565, 1565, 1565, 2460, 2924, 2924, 1570, 1569, 1571, 1565, 1565, 1565, 2924, 2924, 872, 2924, 1165, 2924, 2481, 2481, 2481, 2481, 2924, 2924, 2453, 2454, 2454, 2453, 2924, 719, 2924, 1565, 1565, 1569, 1565, 1954, 561, 2924, 2924, 561, 1726, 2924, 722, 2924, 2924, 2924, 563, 561, 865, 2924, 862, 854, 854, 862, 2454, 2454, 2454, 2454, 2924, 2924, 2924, 1565, 1565, 1565, 1565, 1954, 561, 2924, 643, 561, 2924, 643, 864, 561, 865, 2924, 563, 561, 2924, 644, 643, 2924, 2924, 643, 645, 646, 2924, 2924, 2696, 2455, 648, 644, 649, 2924, 2712, 2713, 645, 646, 2924, 2714, 2714, 2696, 648, 561, 649, 2924, 2924, 643, 2924, 2715, 643, 2924, 2924, 2924, 2924, 872, 2924, 643, 644, 2455, 643, 2924, 2461, 645, 646, 2924, 2924, 643, 644, 648, 643, 649, 2924, 645, 646, 2924, 2924, 2924, 644, 648, 2924, 649, 2924, 645, 646, 677, 2924, 643, 2924, 648, 643, 649, 2924, 2924, 2924, 2924, 643, 2924, 644, 643, 2696, 2462, 2713, 645, 646, 643, 2924, 644, 643, 648, 2924, 649, 645, 646, 643, 2924, 644, 643, 648, 2924, 649, 645, 646, 643, 2924, 644, 643, 648, 2463, 649, 645, 646, 2924, 2924, 644, 2924, 648, 678, 649, 645, 646, 2464, 2924, 643, 2924, 648, 643, 649, 2924, 2924, 2924, 2924, 643, 2924, 644, 643, 2465, 2924, 2924, 645, 646, 2924, 2924, 644, 2924, 648, 2924, 649, 645, 646, 2924, 2924, 643, 678, 648, 643, 649, 1165, 2924, 2924, 678, 643, 2924, 644, 643, 2924, 2924, 2924, 645, 646, 643, 2924, 644, 643, 648, 2467, 649, 645, 646, 643, 2924, 644, 643, 648, 2924, 649, 645, 646, 1165, 2924, 644, 2924, 648, 2924, 649, 645, 646, 643, 2924, 2924, 643, 648, 2924, 649, 2468, 2924, 643, 2924, 644, 643, 2924, 2924, 2924, 645, 646, 643, 2924, 644, 643, 648, 2924, 649, 645, 646, 643, 2924, 644, 643, 648, 1165, 649, 645, 646, 2924, 2470, 644, 2469, 648, 2924, 649, 645, 646, 643, 2924, 2924, 643, 648, 2924, 649, 2924, 2924, 2924, 2924, 644, 2924, 2924, 2924, 2924, 645, 646, 2924, 2924, 1165, 2924, 648, 1165, 649, 643, 2924, 2924, 643, 643, 2924, 2924, 643, 2924, 2924, 2924, 644, 2924, 2472, 2924, 644, 645, 646, 2471, 2924, 645, 646, 648, 2924, 649, 2924, 648, 2924, 649, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2473, 1653, 1654, 1653, 1653, 1654, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1655, 1653, 1653, 1653, 1653, 1656, 1657, 1653, 2924, 2924, 2475, 1658, 1653, 1659, 1653, 1653, 1653, 2924, 2476, 2924, 862, 854, 854, 862, 2924, 2924, 2924, 2924, 2924, 2924, 643, 2924, 2924, 643, 2924, 2924, 1653, 1653, 1653, 1653, 2474, 644, 864, 2924, 865, 2924, 645, 646, 643, 2924, 2924, 643, 648, 2924, 649, 2924, 2924, 2924, 2924, 644, 643, 2924, 2924, 643, 645, 646, 1653, 1653, 1653, 1653, 648, 644, 649, 2924, 2924, 2924, 645, 646, 643, 2924, 2924, 643, 648, 2519, 649, 2924, 2477, 643, 2924, 644, 643, 2924, 2924, 2924, 645, 646, 643, 2924, 644, 643, 648, 2924, 649, 645, 646, 1165, 2924, 644, 2924, 648, 2924, 649, 645, 646, 643, 2924, 2924, 643, 648, 2924, 649, 2924, 2924, 2924, 2478, 644, 2924, 2924, 2924, 2924, 645, 646, 728, 729, 2479, 728, 648, 2924, 649, 2924, 2924, 2924, 2924, 730, 728, 729, 2924, 728, 731, 732, 1165, 2924, 2924, 2924, 648, 730, 649, 2924, 2924, 2480, 731, 732, 2924, 2486, 728, 729, 648, 728, 649, 2924, 2924, 2924, 2924, 2924, 2924, 730, 728, 729, 2924, 728, 731, 732, 2924, 2924, 677, 2924, 648, 730, 649, 2924, 2924, 2924, 731, 732, 728, 729, 2924, 728, 648, 2924, 649, 2924, 2924, 728, 729, 730, 728, 2924, 2487, 2924, 731, 732, 728, 729, 730, 728, 648, 2924, 649, 731, 732, 2924, 2924, 730, 2924, 648, 2924, 649, 731, 732, 2488, 2924, 1263, 2924, 648, 2924, 649, 2924, 728, 729, 2924, 728, 2924, 2924, 2924, 2924, 2924, 728, 729, 730, 728, 2924, 2924, 2924, 731, 732, 2924, 2924, 730, 760, 648, 2924, 649, 731, 732, 2924, 2696, 728, 729, 648, 728, 649, 2697, 2696, 2489, 2924, 2924, 2924, 730, 2696, 2924, 2924, 761, 731, 732, 728, 729, 2767, 728, 648, 2924, 649, 2924, 2924, 728, 729, 730, 728, 2490, 2924, 2924, 731, 732, 728, 729, 730, 728, 648, 2924, 649, 731, 732, 728, 729, 730, 728, 648, 2924, 649, 731, 732, 2924, 761, 730, 2924, 648, 761, 649, 731, 732, 2924, 2924, 728, 729, 648, 728, 649, 2924, 2696, 1263, 2696, 728, 729, 730, 728, 2924, 2491, 2924, 731, 732, 728, 729, 730, 728, 648, 2924, 649, 731, 732, 1263, 2924, 730, 2924, 648, 2492, 649, 731, 732, 728, 729, 2924, 728, 648, 2924, 649, 2924, 2924, 728, 729, 730, 728, 2924, 2924, 2924, 731, 732, 728, 729, 730, 728, 648, 2924, 649, 731, 732, 728, 729, 730, 728, 648, 1263, 649, 731, 732, 2924, 2494, 730, 2493, 648, 2924, 649, 731, 732, 728, 729, 2924, 728, 648, 2924, 649, 2924, 2924, 2924, 2924, 730, 2924, 2924, 2924, 2924, 731, 732, 728, 729, 1263, 728, 648, 1263, 649, 2924, 2924, 2924, 2924, 730, 728, 729, 2924, 728, 731, 732, 2924, 2924, 2496, 2924, 648, 730, 649, 2495, 2924, 2924, 731, 732, 728, 729, 2924, 728, 648, 2924, 649, 2924, 2924, 728, 729, 730, 728, 2924, 2924, 2924, 731, 732, 2497, 2924, 730, 2924, 648, 2924, 649, 731, 732, 2924, 2924, 2924, 2924, 648, 2924, 649, 728, 729, 2924, 728, 2499, 2924, 2498, 2924, 2924, 728, 729, 730, 728, 2924, 2924, 2924, 731, 732, 728, 729, 730, 728, 648, 1263, 649, 731, 732, 728, 729, 730, 728, 648, 2924, 649, 731, 732, 2924, 2924, 730, 2500, 648, 2924, 649, 731, 732, 862, 854, 854, 862, 648, 2924, 649, 2380, 2380, 2380, 2380, 2501, 2924, 2924, 2924, 2416, 2416, 2416, 2416, 2924, 2924, 2924, 864, 2924, 865, 2924, 560, 1263, 2924, 2924, 2381, 2924, 2381, 2924, 2924, 2924, 2502, 1946, 2924, 2418, 2416, 2416, 2416, 2416, 2415, 2416, 2416, 2415, 2924, 2924, 2924, 560, 760, 2924, 2924, 560, 2518, 2924, 2924, 2924, 2924, 2522, 1946, 2924, 2418, 2924, 1560, 2924, 2418, 2415, 2416, 2416, 2415, 2523, 2924, 2924, 2524, 2525, 2924, 2526, 560, 2924, 2924, 2924, 892, 2924, 2426, 1953, 1953, 2426, 2924, 1560, 2924, 2418, 2924, 2924, 2924, 1954, 561, 2924, 643, 561, 2924, 643, 2924, 2924, 2924, 2548, 563, 561, 865, 644, 2769, 1559, 2769, 2769, 645, 646, 2924, 2924, 2924, 2924, 648, 2697, 649, 2549, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2810, 561, 2556, 2557, 2558, 2558, 2557, 2556, 2556, 2556, 2556, 2556, 2556, 2556, 2559, 2560, 2556, 2556, 2560, 2556, 2556, 2556, 1165, 2924, 2924, 2561, 2560, 2562, 2556, 2556, 2556, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2481, 2481, 2481, 2481, 2924, 2924, 2453, 2454, 2454, 2453, 2924, 719, 2556, 2556, 2560, 2556, 2563, 1954, 561, 2924, 2696, 561, 1726, 2924, 722, 2924, 2712, 2713, 563, 561, 865, 2714, 2714, 2696, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2715, 2556, 2556, 2556, 2556, 2571, 1953, 1953, 2571, 2924, 2454, 2454, 2454, 2454, 561, 2924, 1954, 561, 2924, 2924, 561, 1954, 561, 643, 2924, 561, 643, 563, 561, 865, 2455, 2924, 563, 561, 644, 2924, 2924, 2924, 2924, 645, 646, 2924, 2924, 2924, 2924, 648, 643, 649, 2924, 643, 2924, 2696, 2924, 2713, 561, 2924, 2924, 644, 2924, 561, 2924, 2572, 645, 646, 2924, 2573, 2924, 2924, 648, 643, 649, 2924, 643, 2574, 2586, 2455, 2924, 2575, 643, 2924, 644, 643, 2924, 2924, 2924, 645, 646, 643, 2924, 644, 643, 648, 2924, 649, 645, 646, 643, 2924, 644, 643, 648, 2924, 649, 645, 646, 2924, 2924, 644, 2924, 648, 2924, 649, 645, 646, 2924, 2924, 1165, 2924, 648, 643, 649, 2587, 643, 2924, 2924, 2924, 2924, 2924, 2924, 643, 644, 2924, 643, 2924, 678, 645, 646, 2924, 2588, 643, 644, 648, 643, 649, 2924, 645, 646, 2924, 2924, 2924, 644, 648, 2924, 649, 643, 645, 646, 643, 2924, 2924, 2924, 648, 2924, 649, 643, 644, 1165, 643, 2924, 2924, 645, 646, 2924, 2924, 643, 644, 648, 643, 649, 2924, 645, 646, 1165, 2590, 643, 644, 648, 643, 649, 2924, 645, 646, 2924, 2924, 2924, 644, 648, 2924, 649, 2924, 645, 646, 643, 2924, 2924, 643, 648, 1165, 649, 2924, 1165, 643, 2924, 644, 643, 2924, 2924, 2924, 645, 646, 2591, 2924, 644, 2924, 648, 2924, 649, 645, 646, 2924, 2924, 2924, 2924, 648, 2924, 649, 643, 2924, 2924, 643, 2924, 2924, 1165, 2924, 2924, 2924, 643, 644, 2924, 643, 2924, 2592, 645, 646, 2924, 2924, 2593, 644, 648, 2924, 649, 643, 645, 646, 643, 2924, 2924, 2924, 648, 2924, 649, 643, 644, 2924, 643, 2924, 2594, 645, 646, 2924, 2924, 2924, 644, 648, 2924, 649, 643, 645, 646, 643, 2924, 2924, 1165, 648, 2924, 649, 2924, 644, 728, 729, 2924, 728, 645, 646, 2924, 2924, 2924, 2924, 648, 730, 649, 2595, 2924, 2924, 731, 732, 2924, 1165, 2924, 2924, 648, 2924, 649, 2924, 728, 729, 677, 728, 728, 729, 2924, 728, 2924, 2924, 2924, 730, 2924, 2924, 2924, 730, 731, 732, 1165, 2924, 731, 732, 648, 2924, 649, 2597, 648, 2924, 649, 728, 729, 2924, 728, 728, 729, 2924, 728, 2924, 2924, 2924, 730, 2924, 2924, 2924, 730, 731, 732, 2924, 2924, 731, 732, 648, 2924, 649, 2924, 648, 1263, 649, 2924, 728, 729, 2924, 728, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 730, 2924, 2924, 2924, 1263, 731, 732, 728, 729, 2924, 728, 648, 2924, 649, 2924, 761, 2924, 2924, 730, 728, 729, 2924, 728, 731, 732, 2924, 2924, 2924, 2924, 648, 730, 649, 2924, 1263, 2924, 731, 732, 2768, 1559, 2769, 2768, 648, 2924, 649, 2924, 2924, 728, 729, 2697, 728, 2924, 2924, 1263, 2924, 2924, 728, 729, 730, 728, 2810, 2924, 2598, 731, 732, 728, 729, 730, 728, 648, 2924, 649, 731, 732, 728, 729, 730, 728, 648, 2924, 649, 731, 732, 2924, 2924, 730, 2924, 648, 1263, 649, 731, 732, 2924, 2924, 728, 729, 648, 728, 649, 2924, 2924, 2924, 2924, 1263, 2924, 730, 728, 729, 2924, 728, 731, 732, 2599, 2924, 2924, 2924, 648, 730, 649, 2924, 2924, 2924, 731, 732, 728, 729, 2924, 728, 648, 2924, 649, 2924, 2924, 1263, 2924, 730, 2924, 2924, 2924, 2600, 731, 732, 728, 729, 2924, 728, 648, 2924, 649, 2924, 1263, 728, 729, 730, 728, 2924, 2924, 2924, 731, 732, 2924, 2924, 730, 2924, 648, 2924, 649, 731, 732, 2924, 2924, 2601, 2924, 648, 2924, 649, 862, 854, 854, 862, 1263, 862, 854, 854, 862, 2924, 2924, 2924, 2416, 2416, 2416, 2416, 2924, 2416, 2416, 2416, 2416, 760, 864, 560, 865, 2924, 2924, 864, 560, 865, 2924, 1263, 2924, 2924, 1946, 2924, 2418, 2924, 2924, 1946, 2924, 2418, 2415, 2416, 2416, 2415, 2924, 2634, 1953, 1953, 2634, 2924, 2924, 560, 2924, 872, 2924, 2924, 1954, 561, 2924, 2160, 561, 2924, 1560, 2924, 2418, 2924, 2924, 563, 561, 2635, 2924, 2625, 2924, 1953, 1953, 1953, 1953, 2924, 2769, 1559, 2769, 2769, 2924, 2924, 1954, 561, 2924, 643, 561, 2697, 643, 2924, 2924, 2924, 561, 563, 561, 2924, 644, 2924, 2810, 2924, 2924, 645, 646, 2924, 2924, 2924, 2626, 648, 2924, 649, 2924, 2924, 2924, 2924, 2730, 2924, 2924, 2924, 2924, 2924, 561, 2639, 2640, 1567, 2641, 2640, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2642, 2643, 2639, 2639, 2643, 2639, 2639, 2639, 2644, 2644, 2644, 2645, 2643, 2646, 2639, 2639, 2639, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2639, 2639, 2643, 2639, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2639, 2639, 2639, 2639, 2567, 2568, 559, 2567, 2924, 2568, 2568, 559, 2568, 2924, 2924, 560, 561, 2924, 2924, 561, 560, 561, 2924, 2924, 561, 2924, 563, 561, 865, 2924, 2924, 563, 561, 2569, 559, 559, 2569, 2924, 2924, 2416, 2416, 2416, 2416, 2924, 560, 561, 2924, 2924, 561, 643, 560, 2924, 643, 561, 2924, 563, 561, 865, 561, 643, 644, 1946, 643, 2418, 2924, 645, 646, 2924, 2924, 643, 644, 648, 643, 649, 2924, 645, 646, 2924, 2924, 2924, 644, 648, 561, 649, 2924, 645, 646, 2647, 2660, 643, 2924, 648, 643, 649, 2924, 2924, 2924, 2924, 643, 2924, 644, 643, 2924, 2924, 2924, 645, 646, 2685, 2924, 644, 2924, 648, 2924, 649, 645, 646, 643, 2924, 2924, 643, 648, 2924, 649, 2662, 2924, 2924, 643, 644, 2661, 643, 2924, 2924, 645, 646, 2924, 2924, 2924, 644, 648, 2924, 649, 643, 645, 646, 643, 1165, 2924, 2924, 648, 2924, 649, 643, 644, 1165, 643, 2924, 2924, 645, 646, 2924, 2924, 2924, 644, 648, 2924, 649, 2924, 645, 646, 728, 729, 2924, 728, 648, 2924, 649, 2924, 2924, 2664, 2924, 730, 2924, 2924, 2924, 2663, 731, 732, 728, 729, 2924, 728, 648, 2924, 649, 2924, 2924, 728, 729, 730, 728, 2924, 2665, 2924, 731, 732, 2924, 2924, 730, 2666, 648, 2924, 649, 731, 732, 728, 729, 2924, 728, 648, 2924, 649, 1165, 2924, 728, 729, 730, 728, 2924, 2924, 2924, 731, 732, 2924, 2924, 730, 2924, 648, 2924, 649, 731, 732, 2924, 2924, 1263, 2924, 648, 2924, 649, 2924, 2924, 2924, 1263, 2924, 2415, 2416, 2416, 2415, 2634, 1953, 1953, 2634, 2924, 2924, 2924, 560, 2924, 2924, 643, 1954, 561, 643, 2924, 561, 2924, 2667, 1560, 2924, 2418, 644, 563, 561, 2635, 2924, 645, 646, 2698, 1953, 2699, 2698, 648, 2924, 649, 2924, 1263, 2924, 2924, 2700, 2701, 2924, 2924, 2701, 2699, 1953, 2699, 2699, 2686, 561, 2702, 2701, 2703, 2924, 2924, 2704, 2701, 2924, 2924, 2701, 2924, 2924, 643, 2924, 2924, 643, 2702, 2701, 2924, 2924, 2924, 2924, 2924, 644, 2924, 2924, 2924, 2701, 645, 646, 2731, 2924, 2924, 2924, 648, 2924, 649, 2924, 2924, 2924, 2924, 2924, 2924, 2701, 2696, 2706, 559, 2707, 2706, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2708, 2701, 2696, 2696, 2701, 2696, 2696, 2696, 2732, 2924, 2924, 2702, 2701, 2709, 2696, 2696, 2696, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2415, 2416, 2416, 2415, 2924, 2724, 1953, 1953, 2724, 2924, 2924, 560, 2696, 2696, 2701, 2696, 1954, 561, 2924, 2924, 561, 2924, 1560, 2924, 2418, 2924, 2924, 563, 561, 2725, 2380, 2380, 2380, 2380, 2924, 643, 2924, 2924, 643, 2924, 2924, 2924, 2696, 2696, 2696, 2696, 644, 643, 2924, 2924, 643, 645, 646, 2381, 561, 2381, 2924, 648, 644, 649, 2924, 2924, 643, 645, 646, 643, 2924, 2924, 2924, 648, 2752, 649, 2924, 644, 2924, 2924, 2924, 2924, 645, 646, 2924, 2924, 728, 729, 648, 728, 649, 2924, 2924, 2924, 2924, 2733, 2924, 730, 2924, 2924, 2924, 2924, 731, 732, 2525, 2924, 728, 729, 648, 728, 649, 892, 2924, 2924, 2924, 2736, 2924, 730, 2924, 2924, 2734, 2924, 731, 732, 2416, 2416, 2416, 2416, 648, 2924, 649, 2924, 2924, 2924, 2924, 560, 2924, 2924, 2698, 1953, 2699, 2698, 2735, 2924, 2924, 2924, 1946, 2924, 2418, 2700, 2701, 2924, 2924, 2701, 2924, 2699, 1953, 2699, 2699, 2924, 2702, 2701, 2703, 2924, 2924, 2924, 2704, 2701, 2924, 2924, 2701, 2924, 2924, 2924, 2924, 2924, 2751, 2702, 2701, 2924, 2924, 2924, 2737, 2706, 559, 2707, 2706, 2701, 2707, 559, 2707, 2707, 2924, 2924, 2708, 2701, 2924, 2924, 2701, 2708, 2701, 2924, 2924, 2701, 2701, 2702, 2701, 2703, 2924, 643, 2702, 2701, 643, 2857, 2416, 2858, 2857, 2924, 2924, 2924, 644, 2924, 2924, 2924, 2826, 645, 646, 2924, 2924, 2924, 2924, 648, 2701, 2781, 2924, 2810, 2924, 2701, 2696, 2761, 1553, 2761, 2761, 2696, 2696, 2696, 2762, 2696, 2696, 2696, 2697, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2763, 2696, 2696, 2696, 2696, 2696, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2696, 2696, 2696, 2696, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2765, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2696, 2696, 2696, 2766, 2696, 2924, 2924, 2924, 2924, 2924, 2712, 2713, 2924, 2924, 2924, 2714, 2714, 2696, 2724, 1953, 1953, 2724, 2924, 2924, 2924, 2715, 2924, 2924, 643, 1954, 561, 643, 643, 561, 2924, 643, 2924, 2924, 2924, 644, 563, 561, 2725, 644, 645, 646, 2924, 2924, 645, 646, 648, 2924, 649, 2924, 648, 643, 649, 2924, 643, 2924, 2924, 2924, 2924, 2924, 2780, 2924, 644, 561, 2924, 2924, 643, 645, 646, 643, 2924, 2924, 2696, 648, 2713, 649, 643, 644, 2924, 643, 2924, 2924, 645, 646, 2924, 2924, 2924, 644, 648, 2924, 649, 2924, 645, 646, 2924, 2924, 2924, 2782, 648, 2924, 649, 728, 729, 2924, 728, 887, 887, 887, 887, 2924, 2924, 2924, 730, 2858, 2416, 2858, 2858, 731, 732, 2924, 2924, 2783, 2924, 648, 2708, 649, 2924, 728, 729, 2924, 728, 2924, 2784, 2924, 2924, 2810, 2731, 2785, 730, 2416, 2416, 2416, 2416, 731, 732, 2415, 2416, 2416, 2415, 648, 560, 649, 2924, 2924, 2924, 2924, 560, 2924, 2924, 2382, 2924, 1946, 643, 2418, 2924, 643, 2924, 1560, 2924, 2418, 2924, 2383, 2924, 644, 2384, 2924, 2924, 2386, 645, 646, 2924, 2924, 892, 2786, 648, 2924, 649, 2924, 2874, 2416, 2858, 2874, 1165, 2924, 2924, 2924, 2924, 2924, 2924, 2708, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2800, 2810, 2801, 2696, 2807, 628, 2807, 2807, 2696, 2696, 2696, 2808, 2696, 2696, 2696, 2697, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2696, 2696, 2696, 2696, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2696, 2696, 2696, 2696, 643, 2924, 2924, 643, 643, 2924, 2924, 643, 2924, 2924, 2924, 644, 2924, 2924, 2924, 644, 645, 646, 2924, 2924, 645, 646, 648, 2924, 649, 2924, 648, 643, 649, 2924, 643, 2924, 2924, 2924, 2924, 2924, 728, 729, 644, 728, 2924, 2924, 2924, 645, 646, 728, 729, 730, 728, 648, 2924, 649, 731, 732, 2924, 2817, 730, 2924, 648, 2924, 649, 731, 732, 2924, 2924, 2924, 1263, 648, 2924, 649, 2731, 2924, 2798, 559, 2707, 2798, 2924, 2416, 2416, 2416, 2416, 2924, 1165, 2826, 2701, 2924, 2924, 2701, 560, 2924, 2924, 2924, 2924, 2924, 2702, 2701, 2703, 2924, 2924, 1946, 1263, 2418, 2415, 2416, 2416, 2415, 643, 2924, 2924, 643, 2924, 2924, 2924, 560, 2924, 2924, 643, 644, 2924, 643, 2924, 2701, 645, 646, 1560, 2924, 2418, 644, 648, 2924, 649, 2924, 645, 646, 2884, 2416, 2858, 2884, 648, 2924, 649, 2924, 2924, 2827, 2924, 2826, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2810, 2924, 2924, 2924, 2849, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2883, 2924, 2828, 2696, 2831, 1056, 2831, 2831, 2696, 2696, 2696, 2832, 2696, 2696, 2696, 2697, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2763, 2696, 2696, 2696, 2696, 2696, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2696, 2696, 2696, 2696, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2696, 2696, 2696, 2834, 2696, 2836, 1151, 2837, 2836, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2708, 2701, 2696, 2696, 2701, 2696, 2696, 2696, 2838, 2838, 2838, 2696, 2701, 2703, 2696, 2696, 2696, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2696, 2696, 2701, 2696, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2838, 2696, 2696, 2696, 2696, 2696, 2840, 2226, 2840, 2840, 2696, 2696, 2696, 2841, 2696, 2696, 2696, 2697, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2696, 2696, 2696, 2696, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2843, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2842, 2696, 2696, 2696, 2844, 2416, 2416, 2416, 2416, 2836, 1151, 2837, 2836, 2924, 2924, 2924, 560, 2924, 2924, 2924, 2708, 2701, 2924, 2924, 2701, 2924, 2924, 1946, 2924, 2418, 2924, 2924, 2701, 2703, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2701, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2856, 2696, 2857, 2416, 2858, 2857, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2799, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2859, 2859, 2859, 2770, 2696, 2860, 2696, 2696, 2696, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2696, 2696, 2696, 2696, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2859, 2696, 2696, 2696, 2696, 2696, 2696, 2924, 2696, 2696, 2696, 2696, 2696, 2862, 2696, 2696, 2696, 2697, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2696, 2696, 2696, 2696, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2696, 2696, 2696, 2696, 2696, 2864, 1533, 2865, 2864, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2697, 2701, 2696, 2696, 2701, 2696, 2696, 2696, 2866, 2866, 2866, 2763, 2701, 2703, 2696, 2696, 2696, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2696, 2696, 2701, 2696, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2696, 2696, 2696, 2696, 2696, 2867, 1042, 2867, 2867, 2696, 2696, 2696, 2868, 2696, 2696, 2696, 2697, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2696, 2696, 2696, 2696, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2696, 2696, 2696, 2696, 2837, 1151, 2837, 2837, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2708, 2701, 2924, 2924, 2701, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2701, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2701, 2696, 2840, 2226, 2840, 2840, 2696, 2696, 2696, 2871, 2696, 2696, 2696, 2697, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2696, 2696, 2696, 2696, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2873, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2872, 2696, 2696, 2696, 2844, 2696, 2876, 2420, 2876, 2876, 2696, 2696, 2696, 2877, 2696, 2696, 2696, 2697, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2696, 2696, 2696, 2696, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2696, 2696, 2696, 2696, 2696, 2884, 2416, 2858, 2884, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2799, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2885, 2885, 2885, 2810, 2696, 2860, 2696, 2696, 2696, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2696, 2696, 2696, 2696, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2696, 2696, 2696, 2696, 2696, 2803, 2924, 2696, 2803, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2697, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2887, 2887, 2887, 2804, 2696, 2696, 2696, 2696, 2696, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2696, 2696, 2696, 2696, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2696, 2696, 2696, 2696, 2864, 1533, 2865, 2864, 2924, 2865, 1533, 2865, 2865, 2924, 2924, 2697, 2701, 2924, 2924, 2701, 2697, 2701, 2924, 2924, 2701, 2924, 2763, 2701, 2703, 2924, 2924, 2763, 2701, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2701, 2924, 2924, 2924, 2924, 2701, 2696, 2888, 1537, 2889, 2888, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2697, 2701, 2696, 2696, 2701, 2696, 2696, 2696, 2890, 2890, 2890, 2696, 2701, 2703, 2696, 2696, 2696, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2696, 2696, 2701, 2696, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2890, 2696, 2696, 2696, 2696, 2696, 2894, 2550, 2894, 2894, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2708, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2895, 2895, 2895, 2696, 2696, 2696, 2696, 2696, 2696, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2696, 2696, 2696, 2696, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2895, 2696, 2696, 2696, 2696, 643, 2924, 2924, 643, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 644, 2924, 2924, 2924, 2924, 645, 646, 2888, 1537, 2889, 2888, 648, 2924, 649, 2889, 1537, 2889, 2889, 2697, 2701, 2924, 2924, 2701, 2924, 643, 2697, 2701, 643, 2924, 2701, 2701, 2703, 2924, 2924, 2924, 644, 2924, 2701, 2924, 2924, 645, 646, 2923, 559, 559, 2923, 648, 2924, 649, 2924, 2924, 2924, 2924, 560, 561, 2924, 2701, 561, 2899, 2924, 2924, 2924, 2924, 2701, 563, 561, 865, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 561, 2924, 2924, 2731, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 488, 488, 2924, 2924, 488, 2924, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 2924, 488, 488, 488, 488, 488, 492, 492, 2924, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 497, 497, 2924, 497, 497, 2924, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 513, 513, 2924, 513, 513, 513, 513, 513, 513, 513, 2924, 513, 513, 513, 2924, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 523, 523, 2924, 2924, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 531, 531, 2924, 531, 531, 531, 531, 531, 531, 531, 2924, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 544, 544, 544, 544, 2924, 544, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 544, 2924, 2924, 2924, 544, 544, 2924, 2924, 2924, 544, 2924, 2924, 544, 547, 547, 2924, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 562, 562, 562, 562, 2924, 2924, 2924, 562, 562, 2924, 562, 2924, 2924, 2924, 562, 562, 562, 562, 2924, 562, 562, 2924, 2924, 562, 562, 630, 630, 630, 630, 2924, 630, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 630, 630, 2924, 2924, 2924, 630, 647, 2924, 2924, 647, 2924, 2924, 2924, 647, 2924, 2924, 2924, 647, 647, 2924, 647, 647, 2924, 647, 2924, 647, 647, 2924, 2924, 2924, 647, 714, 714, 714, 714, 2924, 714, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 714, 2924, 2924, 2924, 714, 714, 2924, 2924, 2924, 714, 2924, 2924, 714, 720, 720, 720, 720, 2924, 2924, 2924, 720, 2924, 2924, 2924, 2924, 2924, 2924, 720, 720, 2924, 720, 2924, 720, 720, 2924, 2924, 2924, 720, 725, 725, 725, 725, 2924, 725, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 725, 725, 2924, 2924, 2924, 725, 733, 733, 2924, 733, 2924, 2924, 2924, 733, 2924, 2924, 2924, 733, 733, 2924, 733, 733, 2924, 733, 2924, 733, 733, 2924, 2924, 2924, 733, 801, 801, 2924, 2924, 2924, 801, 801, 2924, 2924, 2924, 801, 810, 2924, 810, 2924, 2924, 2924, 2924, 810, 810, 2924, 2924, 2924, 810, 826, 826, 2924, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 858, 858, 858, 858, 2924, 858, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 858, 2924, 2924, 2924, 858, 858, 2924, 2924, 2924, 858, 2924, 2924, 858, 863, 863, 863, 863, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 863, 863, 2924, 863, 2924, 863, 863, 2924, 2924, 2924, 863, 884, 884, 884, 884, 2924, 884, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 884, 884, 2924, 2924, 2924, 884, 921, 2924, 2924, 921, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 921, 921, 2924, 2924, 2924, 921, 921, 2924, 2924, 2924, 921, 941, 941, 2924, 941, 2924, 941, 941, 2924, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 947, 947, 947, 947, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 947, 947, 2924, 2924, 2924, 947, 947, 2924, 2924, 947, 947, 950, 950, 2924, 950, 950, 2924, 2924, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 2924, 950, 950, 950, 950, 950, 955, 955, 2924, 955, 955, 2924, 2924, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 2924, 955, 955, 955, 955, 955, 956, 956, 2924, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 984, 984, 2924, 2924, 2924, 984, 984, 2924, 2924, 2924, 984, 488, 488, 2924, 2924, 488, 2924, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 2924, 488, 488, 488, 488, 488, 497, 497, 2924, 497, 497, 2924, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 513, 513, 2924, 513, 513, 513, 513, 513, 513, 513, 2924, 513, 513, 513, 2924, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 523, 523, 2924, 2924, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 531, 531, 2924, 531, 531, 531, 531, 531, 531, 531, 2924, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 562, 562, 562, 562, 2924, 2924, 2924, 562, 562, 2924, 562, 2924, 2924, 2924, 562, 562, 562, 562, 2924, 562, 562, 2924, 2924, 562, 562, 1044, 1044, 1044, 1044, 2924, 1044, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1044, 1044, 2924, 2924, 2924, 1044, 547, 547, 2924, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, 1053, 1053, 1053, 1053, 2924, 1053, 2924, 2924, 1053, 1053, 2924, 2924, 2924, 2924, 2924, 1053, 2924, 2924, 2924, 1053, 1053, 2924, 2924, 2924, 1053, 2924, 2924, 1053, 1062, 1062, 2924, 1062, 1062, 2924, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 2924, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 2924, 1062, 1062, 630, 630, 630, 630, 2924, 630, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 630, 630, 2924, 2924, 2924, 630, 1152, 1152, 1152, 1152, 2924, 2924, 2924, 1152, 1152, 2924, 1152, 2924, 2924, 2924, 1152, 2924, 1152, 1152, 2924, 1152, 1152, 2924, 2924, 1152, 1152, 1155, 2924, 2924, 1155, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1155, 1155, 2924, 1155, 2924, 1155, 1155, 2924, 2924, 2924, 1155, 1157, 2924, 2924, 1157, 2924, 2924, 2924, 2924, 2924, 1157, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1157, 1157, 2924, 2924, 2924, 1157, 647, 2924, 2924, 647, 2924, 2924, 2924, 647, 2924, 2924, 2924, 647, 647, 2924, 647, 647, 2924, 647, 2924, 647, 647, 2924, 2924, 2924, 647, 1159, 1159, 2924, 1159, 1159, 1159, 1159, 1159, 2924, 2924, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 2924, 1159, 1159, 1159, 2924, 1159, 2924, 1159, 2924, 2924, 1159, 720, 720, 720, 720, 2924, 2924, 2924, 720, 2924, 2924, 2924, 2924, 2924, 2924, 720, 720, 2924, 720, 2924, 720, 720, 2924, 2924, 2924, 720, 1251, 1251, 1251, 1251, 2924, 1251, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1251, 1251, 2924, 2924, 2924, 1251, 1254, 1254, 2924, 1254, 1254, 2924, 1254, 1254, 2924, 2924, 1254, 1254, 1254, 1254, 2924, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 2924, 2924, 1254, 725, 725, 725, 725, 2924, 725, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 725, 725, 2924, 2924, 2924, 725, 1258, 1258, 1258, 1258, 2924, 2924, 2924, 1258, 2924, 2924, 2924, 2924, 2924, 2924, 1258, 2924, 2924, 2924, 2924, 1258, 1258, 2924, 2924, 2924, 1258, 733, 733, 2924, 733, 2924, 2924, 2924, 733, 2924, 2924, 2924, 733, 733, 2924, 733, 733, 2924, 733, 2924, 733, 733, 2924, 2924, 2924, 733, 801, 801, 2924, 2924, 2924, 801, 801, 2924, 2924, 2924, 801, 810, 2924, 810, 2924, 2924, 2924, 2924, 810, 810, 2924, 2924, 2924, 810, 826, 826, 2924, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 863, 863, 863, 863, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 863, 863, 2924, 863, 2924, 863, 863, 2924, 2924, 2924, 863, 884, 884, 884, 884, 2924, 884, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 884, 884, 2924, 2924, 2924, 884, 1063, 1063, 2924, 1063, 1063, 2924, 1063, 1063, 1063, 1063, 1063, 1063, 2924, 2924, 2924, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 2924, 1063, 1063, 1404, 2924, 2924, 1404, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1404, 2924, 2924, 1404, 2924, 1404, 1404, 2924, 2924, 2924, 1404, 921, 2924, 2924, 921, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 921, 921, 2924, 2924, 2924, 921, 921, 2924, 2924, 2924, 921, 1440, 1440, 2924, 1440, 2924, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 2924, 1440, 1440, 1440, 1440, 1440, 1442, 1442, 2924, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 947, 947, 947, 947, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 947, 947, 2924, 2924, 2924, 947, 947, 2924, 2924, 947, 947, 950, 950, 2924, 950, 950, 2924, 2924, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 2924, 950, 950, 950, 950, 950, 955, 955, 2924, 955, 955, 2924, 2924, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 2924, 955, 955, 955, 955, 955, 984, 984, 2924, 2924, 2924, 984, 984, 2924, 2924, 2924, 984, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 2924, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 2924, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 488, 488, 2924, 2924, 488, 2924, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 2924, 488, 488, 488, 488, 488, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 497, 497, 2924, 497, 497, 2924, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 523, 523, 2924, 2924, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 531, 531, 2924, 531, 531, 531, 531, 531, 531, 531, 2924, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1534, 1534, 1534, 1534, 2924, 2924, 2924, 2924, 1534, 2924, 1534, 2924, 2924, 2924, 1534, 1534, 1534, 1534, 2924, 1534, 1534, 2924, 2924, 1534, 1534, 562, 562, 562, 562, 2924, 2924, 2924, 562, 562, 2924, 562, 2924, 2924, 2924, 562, 562, 562, 562, 2924, 562, 562, 2924, 2924, 562, 562, 1044, 1044, 1044, 1044, 2924, 1044, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1044, 1044, 2924, 2924, 2924, 1044, 1538, 1538, 1538, 1538, 2924, 2924, 2924, 2924, 1538, 2924, 1538, 2924, 2924, 2924, 1538, 2924, 1538, 1538, 2924, 1538, 1538, 2924, 2924, 1538, 1538, 1053, 1053, 1053, 1053, 2924, 1053, 2924, 2924, 1053, 1053, 2924, 2924, 2924, 2924, 2924, 1053, 2924, 2924, 2924, 1053, 1053, 2924, 2924, 2924, 1053, 2924, 2924, 1053, 1545, 1545, 1545, 1545, 2924, 1545, 2924, 2924, 1545, 2924, 2924, 2924, 2924, 2924, 1545, 1545, 2924, 2924, 2924, 1545, 1545, 2924, 2924, 2924, 1545, 2924, 2924, 1545, 1548, 1548, 1548, 1548, 2924, 1548, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1548, 1548, 2924, 2924, 2924, 1548, 1040, 1040, 1040, 1040, 2924, 1040, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1040, 2924, 2924, 2924, 1040, 1040, 2924, 2924, 2924, 1040, 2924, 2924, 1040, 544, 544, 544, 544, 2924, 544, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 544, 2924, 2924, 2924, 544, 544, 2924, 2924, 2924, 544, 2924, 2924, 544, 1062, 1062, 2924, 1062, 1062, 2924, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 2924, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 2924, 1062, 1062, 1063, 1063, 2924, 1063, 1063, 2924, 1063, 1063, 1063, 1063, 1063, 1063, 2924, 2924, 2924, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 2924, 1063, 1063, 1064, 1064, 2924, 1064, 1064, 2924, 1064, 1064, 2924, 2924, 1064, 1064, 1064, 1064, 2924, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 2924, 2924, 1064, 1152, 1152, 1152, 1152, 2924, 2924, 2924, 1152, 1152, 2924, 1152, 2924, 2924, 2924, 1152, 2924, 1152, 1152, 2924, 1152, 1152, 2924, 2924, 1152, 1152, 1155, 2924, 2924, 1155, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1155, 1155, 2924, 1155, 2924, 1155, 1155, 2924, 2924, 2924, 1155, 1157, 2924, 2924, 1157, 2924, 2924, 2924, 2924, 2924, 1157, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1157, 1157, 2924, 2924, 2924, 1157, 1645, 2924, 2924, 1645, 2924, 2924, 2924, 2924, 1645, 2924, 2924, 2924, 2924, 2924, 1645, 2924, 2924, 2924, 2924, 1645, 1645, 2924, 2924, 2924, 1645, 1648, 2924, 2924, 1648, 2924, 1648, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1648, 1648, 2924, 2924, 2924, 1648, 1159, 1159, 2924, 1159, 1159, 1159, 1159, 1159, 2924, 2924, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 2924, 1159, 1159, 1159, 2924, 1159, 2924, 1159, 2924, 2924, 1159, 647, 2924, 2924, 647, 2924, 2924, 2924, 647, 2924, 2924, 2924, 647, 647, 2924, 647, 647, 2924, 647, 2924, 647, 647, 2924, 2924, 2924, 647, 1719, 1719, 1719, 1719, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1719, 1719, 2924, 2924, 2924, 1719, 1719, 2924, 2924, 2924, 1719, 1251, 1251, 1251, 1251, 2924, 1251, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1251, 1251, 2924, 2924, 2924, 1251, 1721, 2924, 2924, 1721, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1721, 2924, 2924, 2924, 2924, 1721, 1721, 2924, 2924, 2924, 1721, 1248, 1248, 1248, 1248, 2924, 1248, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1248, 2924, 2924, 2924, 1248, 1248, 2924, 2924, 2924, 1248, 2924, 2924, 1248, 714, 714, 714, 714, 2924, 714, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 714, 2924, 2924, 2924, 714, 714, 2924, 2924, 2924, 714, 2924, 2924, 714, 1254, 1254, 2924, 1254, 1254, 2924, 1254, 1254, 2924, 2924, 1254, 1254, 1254, 1254, 2924, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 2924, 2924, 1254, 1258, 1258, 1258, 1258, 2924, 2924, 2924, 1258, 2924, 2924, 2924, 2924, 2924, 2924, 1258, 2924, 2924, 2924, 2924, 1258, 1258, 2924, 2924, 2924, 1258, 733, 733, 2924, 733, 2924, 2924, 2924, 733, 2924, 2924, 2924, 733, 733, 2924, 733, 733, 2924, 733, 2924, 733, 733, 2924, 2924, 2924, 733, 801, 801, 2924, 2924, 2924, 801, 801, 2924, 2924, 2924, 801, 1795, 2924, 1795, 2924, 2924, 2924, 2924, 1795, 1795, 2924, 2924, 2924, 1795, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 826, 826, 2924, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1835, 1835, 1835, 1835, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1835, 1835, 2924, 1835, 2924, 1835, 1835, 2924, 2924, 2924, 1835, 1380, 1380, 1380, 1380, 2924, 1380, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1380, 2924, 2924, 2924, 1380, 1380, 2924, 2924, 2924, 1380, 2924, 2924, 1380, 1837, 1837, 1837, 1837, 2924, 1837, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1837, 2924, 2924, 2924, 1837, 1837, 2924, 2924, 2924, 1837, 2924, 2924, 1837, 863, 863, 863, 863, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 863, 863, 2924, 863, 2924, 863, 863, 2924, 2924, 2924, 863, 1063, 1063, 2924, 1063, 1063, 2924, 1063, 1063, 1063, 1063, 1063, 1063, 2924, 2924, 2924, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 2924, 1063, 1063, 1404, 2924, 2924, 1404, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1404, 2924, 2924, 1404, 2924, 1404, 1404, 2924, 2924, 2924, 1404, 1880, 1880, 2924, 1880, 2924, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 2924, 1880, 1880, 1880, 1880, 1880, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 950, 950, 2924, 950, 950, 2924, 2924, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 2924, 950, 950, 950, 950, 950, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 2924, 1909, 1909, 1909, 2924, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 2924, 1914, 1914, 1914, 2924, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 488, 488, 2924, 2924, 488, 2924, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 2924, 488, 488, 488, 488, 488, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 497, 497, 2924, 497, 497, 2924, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 523, 523, 2924, 2924, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1534, 1534, 1534, 1534, 2924, 2924, 2924, 2924, 1534, 2924, 1534, 2924, 2924, 2924, 1534, 1534, 1534, 1534, 2924, 1534, 1534, 2924, 2924, 1534, 1534, 562, 562, 562, 562, 2924, 2924, 2924, 562, 562, 2924, 562, 2924, 2924, 2924, 562, 562, 562, 562, 2924, 562, 562, 2924, 2924, 562, 562, 1538, 1538, 1538, 1538, 2924, 2924, 2924, 2924, 1538, 2924, 1538, 2924, 2924, 2924, 1538, 2924, 1538, 1538, 2924, 1538, 1538, 2924, 2924, 1538, 1538, 1545, 1545, 1545, 1545, 2924, 1545, 2924, 2924, 1545, 2924, 2924, 2924, 2924, 2924, 1545, 1545, 2924, 2924, 2924, 1545, 1545, 2924, 2924, 2924, 1545, 2924, 2924, 1545, 1548, 1548, 1548, 1548, 2924, 1548, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1548, 1548, 2924, 2924, 2924, 1548, 1941, 1941, 1941, 1941, 2924, 1941, 2924, 2924, 1941, 2924, 2924, 2924, 2924, 2924, 1941, 1941, 2924, 2924, 2924, 1941, 1941, 2924, 2924, 2924, 1941, 2924, 2924, 1941, 544, 544, 544, 544, 2924, 544, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 544, 2924, 2924, 2924, 544, 544, 2924, 2924, 2924, 544, 2924, 2924, 544, 630, 630, 630, 630, 2924, 630, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 630, 630, 2924, 2924, 2924, 630, 1062, 1062, 2924, 1062, 1062, 2924, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 2924, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 2924, 1062, 1062, 1645, 2924, 2924, 1645, 2924, 2924, 2924, 2924, 1645, 2924, 2924, 2924, 2924, 2924, 1645, 2924, 2924, 2924, 2924, 1645, 1645, 2924, 2924, 2924, 1645, 1648, 2924, 2924, 1648, 2924, 1648, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1648, 1648, 2924, 2924, 2924, 1648, 2020, 2924, 2924, 2020, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2020, 2020, 2924, 2020, 2924, 2020, 2020, 2924, 2924, 2924, 2020, 647, 2924, 2924, 647, 2924, 2924, 2924, 647, 2924, 2924, 2924, 647, 647, 2924, 647, 647, 2924, 647, 2924, 647, 647, 2924, 2924, 2924, 647, 1159, 1159, 2924, 1159, 1159, 1159, 1159, 1159, 2924, 2924, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 2924, 1159, 1159, 1159, 2924, 1159, 2924, 1159, 2924, 2924, 1159, 1719, 1719, 1719, 1719, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1719, 1719, 2924, 2924, 2924, 1719, 1719, 2924, 2924, 2924, 1719, 1721, 2924, 2924, 1721, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1721, 2924, 2924, 2924, 2924, 1721, 1721, 2924, 2924, 2924, 1721, 714, 714, 714, 714, 2924, 714, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 714, 2924, 2924, 2924, 714, 714, 2924, 2924, 2924, 714, 2924, 2924, 714, 725, 725, 725, 725, 2924, 725, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 725, 725, 2924, 2924, 2924, 725, 733, 733, 2924, 733, 2924, 2924, 2924, 733, 2924, 2924, 2924, 733, 733, 2924, 733, 733, 2924, 733, 2924, 733, 733, 2924, 2924, 2924, 733, 2126, 2126, 2924, 2924, 2924, 2126, 2126, 2924, 2924, 2924, 2126, 801, 801, 2924, 2924, 2924, 801, 801, 2924, 2924, 2924, 801, 1795, 2924, 1795, 2924, 2924, 2924, 2924, 1795, 1795, 2924, 2924, 2924, 1795, 826, 826, 2924, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 1835, 1835, 1835, 1835, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1835, 1835, 2924, 1835, 2924, 1835, 1835, 2924, 2924, 2924, 1835, 2157, 2157, 2157, 2157, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2157, 2157, 2924, 2157, 2924, 2157, 2157, 2924, 2924, 2924, 2157, 863, 863, 863, 863, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 863, 863, 2924, 863, 2924, 863, 863, 2924, 2924, 2924, 863, 903, 2924, 2924, 903, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 903, 2924, 2924, 2924, 2924, 903, 903, 2924, 2924, 2924, 903, 2193, 2193, 2924, 2193, 2924, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2924, 2193, 2193, 2193, 2193, 2193, 950, 950, 2924, 950, 950, 2924, 2924, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 2924, 950, 950, 950, 950, 950, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2195, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2210, 2210, 2924, 2924, 2924, 2210, 2210, 2924, 2924, 2924, 2210, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 488, 488, 2924, 2924, 488, 2924, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 2924, 488, 488, 488, 488, 488, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 497, 497, 2924, 497, 497, 2924, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 523, 523, 2924, 2924, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 523, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1932, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1933, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 562, 562, 562, 562, 2924, 2924, 2924, 562, 562, 2924, 562, 562, 2924, 2924, 562, 562, 562, 562, 2924, 562, 562, 2924, 2924, 562, 562, 1053, 1053, 1053, 1053, 2924, 1053, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 1053, 2924, 2924, 2924, 1053, 1053, 2924, 2924, 2924, 1053, 2924, 2924, 1053, 1941, 1941, 1941, 1941, 2924, 1941, 2924, 2924, 1941, 2924, 2924, 2924, 2924, 2924, 1941, 1941, 2924, 2924, 2924, 1941, 1941, 2924, 2924, 2924, 1941, 2924, 2924, 1941, 1545, 1545, 1545, 1545, 2924, 1545, 2924, 2924, 1545, 2924, 2924, 2924, 2924, 2924, 1545, 1545, 2924, 2924, 2924, 1545, 1545, 2924, 2924, 2924, 1545, 2924, 2924, 1545, 2228, 2228, 2228, 2228, 2924, 2228, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2228, 2228, 2924, 2924, 2924, 2228, 2924, 2924, 2228, 2020, 2924, 2924, 2020, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2020, 2020, 2924, 2020, 2924, 2020, 2020, 2924, 2924, 2924, 2020, 647, 2924, 2924, 647, 2924, 2924, 2924, 647, 2924, 2924, 2924, 647, 647, 2924, 647, 647, 2924, 647, 2924, 647, 647, 2924, 2924, 2924, 647, 2319, 2319, 2319, 2319, 2924, 2319, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2319, 2319, 2924, 2924, 2924, 2319, 2924, 2924, 2319, 733, 733, 2924, 733, 2924, 2924, 2924, 733, 2924, 2924, 2924, 733, 733, 2924, 733, 733, 2924, 733, 2924, 733, 733, 2924, 2924, 2924, 733, 2126, 2126, 2924, 2924, 2924, 2126, 2126, 2924, 2924, 2924, 2126, 801, 801, 2924, 2924, 2924, 801, 801, 2924, 2924, 2924, 801, 826, 826, 2924, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 2157, 2157, 2157, 2157, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2157, 2157, 2924, 2157, 2924, 2157, 2157, 2924, 2924, 2924, 2157, 863, 863, 863, 863, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 863, 863, 2924, 863, 2924, 863, 863, 2924, 2924, 2924, 863, 895, 895, 895, 895, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 895, 2924, 895, 2924, 895, 895, 895, 2924, 2924, 2924, 895, 895, 950, 950, 2924, 950, 950, 2924, 2924, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 2924, 950, 950, 950, 950, 950, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2196, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2210, 2210, 2924, 2924, 2924, 2210, 2210, 2924, 2924, 2924, 2210, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2215, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2924, 2405, 2405, 2405, 2924, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 562, 562, 562, 562, 2924, 2924, 2924, 562, 562, 2924, 562, 2924, 2924, 2924, 562, 562, 562, 562, 2924, 562, 562, 2924, 2924, 562, 562, 2413, 2413, 2413, 2413, 2924, 2413, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2413, 2413, 2924, 2924, 2924, 2413, 2924, 2924, 2413, 2417, 2417, 2417, 2417, 2924, 2924, 2924, 2417, 2924, 2924, 2924, 2924, 2924, 2924, 2417, 2417, 2924, 2417, 2924, 2417, 2417, 2924, 2924, 2924, 2417, 2422, 2422, 2422, 2422, 2924, 2422, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2422, 2422, 2924, 2924, 2924, 2422, 647, 2924, 2924, 647, 2924, 2924, 2924, 647, 2924, 2924, 2924, 647, 647, 2924, 647, 647, 2924, 647, 2924, 647, 647, 2924, 2924, 2924, 647, 2319, 2319, 2319, 2319, 2924, 2319, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2319, 2319, 2924, 2924, 2924, 2319, 2924, 2924, 2319, 2482, 2482, 2482, 2482, 2924, 2924, 2924, 2482, 2924, 2924, 2924, 2924, 2924, 2924, 2482, 2482, 2924, 2482, 2924, 2482, 2482, 2924, 2924, 2924, 2482, 2485, 2485, 2485, 2485, 2924, 2485, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2485, 2485, 2924, 2924, 2924, 2485, 733, 733, 2924, 733, 2924, 2924, 2924, 733, 2924, 2924, 2924, 733, 733, 2924, 733, 733, 2924, 733, 2924, 733, 733, 2924, 2924, 2924, 733, 801, 801, 2924, 2924, 2924, 801, 801, 2924, 2924, 2924, 801, 2517, 2924, 2924, 2517, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2517, 2517, 2924, 2924, 2924, 2517, 2517, 2924, 2924, 2924, 2517, 863, 863, 863, 863, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 863, 863, 2924, 863, 2924, 863, 863, 2924, 2924, 2924, 863, 2547, 2547, 2547, 2547, 2924, 2924, 2924, 2547, 2924, 2924, 2924, 2924, 2924, 2924, 2547, 2547, 2924, 2547, 2924, 2547, 2547, 2924, 2924, 2924, 2547, 1064, 1064, 2924, 1064, 1064, 2924, 1064, 1064, 2924, 2924, 1064, 1064, 1064, 1064, 2924, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 2924, 2924, 1064, 2422, 2422, 2422, 2422, 2924, 2422, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2422, 2422, 2924, 2924, 2924, 2422, 2551, 2551, 2551, 2551, 2924, 2924, 2924, 2551, 2924, 2924, 2924, 2924, 2924, 2924, 2551, 2924, 2924, 2924, 2924, 2551, 2551, 2924, 2924, 2924, 2551, 2596, 2596, 2596, 2596, 2924, 2924, 2924, 2596, 2924, 2924, 2924, 2924, 2924, 2924, 2596, 2924, 2924, 2924, 2924, 2596, 2596, 2924, 2924, 2924, 2596, 2606, 2606, 2606, 2606, 2606, 2606, 2606, 2606, 2606, 2606, 2606, 2606, 2606, 2606, 2606, 2924, 2606, 2606, 2606, 2606, 2924, 2924, 2606, 2606, 2606, 2606, 2606, 2606, 2606, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 2924, 1081, 1081, 1081, 1081, 2924, 2924, 1081, 1081, 1081, 2924, 1081, 1081, 1081, 2636, 2636, 2924, 2636, 2636, 2924, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2924, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2924, 2636, 2636, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 2924, 1176, 1176, 1176, 1176, 2924, 2924, 1176, 1176, 1176, 2924, 1176, 1176, 1176, 2637, 2637, 2924, 2637, 2637, 2924, 2637, 2637, 2637, 2637, 2637, 2637, 2924, 2924, 2924, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2924, 2637, 2637, 2696, 2696, 2924, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2696, 2711, 2711, 2924, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2711, 2726, 2726, 2924, 2726, 2726, 2924, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2924, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2924, 2726, 2726, 2713, 2713, 2924, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 1063, 1063, 2924, 1063, 1063, 2924, 1063, 1063, 1063, 1063, 1063, 1063, 2924, 2924, 2924, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 2924, 1063, 1063, 2714, 2714, 2924, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2727, 2727, 2924, 2727, 2727, 2924, 2727, 2727, 2727, 2727, 2727, 2727, 2924, 2924, 2924, 2727, 2727, 2727, 2727, 2727, 2727, 2727, 2727, 2727, 2727, 2727, 2924, 2727, 2727, 1062, 1062, 2924, 1062, 1062, 2924, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 2924, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 2924, 1062, 1062, 1159, 1159, 2924, 1159, 1159, 1159, 1159, 1159, 2924, 2924, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 2924, 1159, 1159, 1159, 2924, 1159, 2924, 1159, 2924, 2924, 1159, 2820, 2924, 2924, 2820, 2924, 2820, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2820, 2820, 2924, 2924, 2924, 2820, 2852, 2924, 2924, 2852, 2924, 2924, 2924, 2924, 2852, 2924, 2924, 2924, 2924, 2924, 2852, 2924, 2924, 2924, 2924, 2852, 2852, 2924, 2924, 2924, 2852, 2714, 2714, 2924, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 2714, 63, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924 } ; static yyconst short int yy_chk[25543] = { 0, 0, 0, 1, 1, 2, 2, 2, 2, 99, 99, 3, 3, 1, 1, 3, 2, 2, 1026, 1026, 1, 3, 3, 2, 18, 0, 69, 18, 3, 1, 18, 69, 2, 188, 72, 20, 77, 3, 20, 72, 81, 77, 18, 88, 188, 81, 193, 193, 88, 1, 91, 1, 2, 20, 2, 91, 155, 3, 3, 3, 4, 4, 4, 4, 97, 4, 5, 5, 101, 97, 5, 4, 4, 101, 220, 155, 5, 5, 4, 6, 6, 6, 6, 5, 6, 7, 7, 4, 108, 111, 6, 6, 5, 108, 111, 7, 7, 6, 22, 117, 103, 22, 7, 103, 117, 120, 6, 4, 4, 4, 120, 7, 5, 103, 5, 190, 22, 127, 8, 8, 8, 8, 127, 165, 190, 481, 6, 220, 6, 8, 8, 7, 7, 7, 481, 164, 8, 9, 9, 9, 9, 10, 10, 10, 10, 8, 11, 11, 9, 9, 9, 2363, 10, 10, 10, 9, 11, 11, 24, 10, 329, 24, 165, 11, 9, 8, 8, 8, 10, 164, 138, 26, 11, 138, 26, 28, 24, 130, 28, 329, 144, 174, 130, 138, 9, 144, 9, 157, 10, 26, 10, 309, 11, 28, 11, 12, 12, 12, 12, 13, 13, 30, 32, 174, 30, 32, 12, 12, 174, 13, 13, 13, 309, 12, 36, 42, 13, 36, 42, 30, 32, 157, 12, 157, 2364, 13, 15, 15, 14, 14, 14, 14, 36, 42, 184, 44, 15, 15, 44, 14, 14, 14, 12, 15, 12, 13, 14, 13, 273, 180, 184, 273, 15, 44, 180, 14, 37, 37, 16, 16, 16, 16, 46, 158, 161, 46, 37, 37, 48, 16, 16, 48, 15, 37, 15, 14, 16, 14, 310, 37, 46, 37, 37, 158, 161, 16, 48, 1106, 50, 321, 158, 50, 161, 321, 158, 161, 231, 158, 161, 310, 161, 231, 37, 1106, 37, 16, 50, 16, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 33, 33, 33, 33, 131, 131, 131, 131, 149, 195, 195, 33, 33, 34, 34, 34, 34, 569, 33, 39, 39, 569, 33, 39, 34, 34, 131, 33, 240, 39, 39, 34, 288, 240, 52, 34, 39, 52, 54, 56, 34, 54, 56, 58, 39, 39, 58, 33, 60, 33, 62, 60, 52, 62, 162, 65, 54, 56, 65, 149, 34, 58, 34, 149, 2365, 39, 60, 39, 62, 71, 149, 80, 71, 65, 80, 241, 162, 33, 162, 177, 177, 177, 177, 288, 241, 241, 177, 71, 162, 80, 34, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 38, 38, 38, 38, 40, 40, 40, 40, 311, 40, 83, 38, 38, 83, 90, 40, 40, 90, 38, 312, 93, 93, 40, 93, 38, 325, 38, 38, 83, 311, 40, 40, 90, 179, 100, 325, 179, 100, 93, 113, 312, 119, 113, 110, 119, 122, 110, 38, 122, 38, 168, 40, 100, 40, 41, 41, 110, 113, 159, 119, 2366, 110, 577, 122, 41, 41, 129, 169, 577, 129, 168, 41, 132, 132, 132, 132, 191, 41, 168, 41, 41, 191, 159, 276, 129, 847, 168, 169, 191, 168, 132, 169, 159, 179, 132, 41, 133, 133, 133, 133, 41, 159, 41, 847, 328, 328, 41, 41, 41, 222, 41, 41, 276, 41, 222, 328, 41, 277, 133, 41, 277, 222, 41, 41, 41, 41, 41, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 136, 136, 136, 136, 145, 145, 145, 136, 337, 150, 150, 150, 150, 482, 151, 151, 151, 151, 156, 163, 150, 150, 136, 166, 150, 151, 151, 482, 314, 151, 145, 150, 150, 150, 160, 172, 151, 151, 151, 156, 391, 156, 163, 166, 163, 337, 151, 166, 167, 314, 391, 163, 163, 284, 170, 156, 284, 156, 150, 145, 171, 302, 166, 151, 302, 160, 173, 160, 172, 167, 136, 284, 172, 210, 160, 210, 160, 2127, 170, 580, 136, 170, 170, 167, 171, 580, 173, 171, 167, 210, 279, 210, 170, 279, 173, 170, 171, 170, 185, 270, 173, 185, 270, 171, 178, 178, 178, 178, 300, 363, 178, 185, 196, 279, 363, 196, 197, 456, 2127, 197, 374, 270, 178, 196, 456, 374, 178, 197, 196, 196, 461, 490, 197, 197, 196, 217, 196, 217, 197, 198, 197, 294, 198, 200, 294, 490, 200, 217, 197, 461, 198, 217, 381, 217, 200, 198, 198, 381, 487, 200, 200, 198, 209, 198, 209, 200, 201, 200, 399, 201, 300, 198, 487, 399, 426, 209, 270, 201, 209, 426, 209, 487, 201, 201, 202, 1068, 202, 566, 201, 256, 201, 256, 211, 211, 200, 211, 211, 202, 376, 202, 202, 376, 202, 203, 203, 256, 203, 256, 566, 211, 203, 211, 1068, 212, 203, 212, 376, 203, 294, 201, 203, 201, 203, 204, 411, 204, 204, 212, 205, 212, 205, 212, 212, 459, 411, 201, 204, 201, 205, 204, 205, 204, 2367, 459, 205, 204, 205, 206, 206, 205, 206, 224, 224, 224, 224, 206, 402, 432, 206, 402, 441, 206, 432, 206, 206, 441, 206, 207, 207, 207, 207, 394, 394, 224, 213, 208, 213, 208, 402, 208, 207, 213, 394, 207, 582, 207, 208, 208, 2368, 213, 213, 208, 213, 208, 214, 214, 582, 214, 214, 215, 398, 215, 215, 398, 595, 215, 215, 238, 238, 238, 238, 214, 595, 214, 238, 215, 215, 215, 398, 215, 216, 215, 216, 216, 556, 556, 216, 218, 255, 218, 255, 219, 219, 219, 218, 216, 216, 219, 216, 489, 218, 255, 216, 218, 255, 218, 255, 219, 489, 219, 225, 225, 225, 225, 226, 226, 226, 226, 228, 228, 228, 228, 414, 414, 446, 228, 474, 571, 225, 446, 486, 474, 225, 414, 243, 243, 226, 243, 571, 486, 228, 234, 234, 234, 234, 243, 239, 239, 239, 239, 243, 243, 234, 486, 514, 500, 243, 514, 243, 244, 244, 478, 244, 234, 239, 234, 478, 514, 239, 500, 244, 245, 245, 1076, 245, 244, 244, 499, 265, 265, 265, 244, 245, 244, 265, 509, 499, 245, 245, 246, 246, 244, 246, 245, 265, 245, 265, 1076, 228, 509, 246, 247, 247, 245, 247, 246, 246, 518, 263, 565, 263, 246, 247, 246, 248, 585, 248, 247, 247, 585, 263, 518, 565, 247, 263, 247, 263, 248, 480, 248, 248, 485, 248, 480, 249, 249, 485, 249, 494, 1072, 246, 249, 313, 494, 250, 249, 250, 250, 249, 419, 313, 249, 419, 249, 247, 313, 247, 250, 1072, 251, 250, 251, 250, 313, 568, 252, 252, 419, 252, 251, 247, 251, 247, 252, 568, 251, 252, 251, 502, 252, 251, 252, 252, 502, 252, 253, 253, 253, 253, 528, 508, 272, 272, 254, 528, 254, 272, 254, 253, 2377, 581, 253, 508, 253, 254, 254, 258, 508, 258, 254, 581, 254, 257, 257, 278, 257, 257, 278, 517, 259, 258, 259, 258, 537, 258, 258, 259, 517, 537, 257, 1075, 257, 278, 272, 259, 259, 278, 259, 260, 260, 1075, 260, 260, 261, 304, 261, 261, 304, 570, 261, 261, 283, 586, 570, 283, 260, 1036, 260, 586, 261, 261, 261, 304, 261, 262, 261, 262, 262, 1036, 283, 262, 264, 315, 264, 283, 315, 495, 315, 264, 262, 262, 1126, 262, 496, 264, 495, 262, 264, 316, 264, 315, 278, 333, 333, 333, 333, 316, 496, 315, 495, 572, 316, 334, 334, 334, 334, 496, 572, 1126, 316, 335, 335, 335, 335, 333, 336, 336, 336, 336, 574, 334, 304, 336, 620, 334, 340, 340, 340, 340, 574, 574, 620, 335, 341, 341, 341, 341, 336, 342, 342, 342, 342, 343, 343, 343, 343, 602, 340, 602, 340, 344, 344, 344, 344, 524, 341, 995, 341, 995, 525, 342, 534, 342, 524, 343, 341, 343, 345, 345, 345, 345, 503, 344, 525, 344, 534, 346, 346, 346, 346, 503, 347, 347, 347, 347, 348, 348, 348, 348, 345, 575, 345, 504, 533, 503, 336, 431, 575, 346, 431, 346, 343, 533, 347, 342, 347, 504, 348, 343, 348, 349, 349, 349, 349, 431, 504, 344, 914, 350, 350, 350, 350, 351, 351, 351, 351, 353, 353, 353, 353, 345, 346, 349, 353, 349, 914, 532, 532, 348, 532, 350, 346, 350, 1135, 351, 573, 351, 347, 573, 352, 352, 352, 352, 826, 354, 354, 354, 354, 356, 356, 356, 356, 358, 358, 358, 358, 1135, 512, 548, 349, 349, 352, 354, 352, 826, 462, 354, 548, 462, 462, 349, 512, 935, 350, 357, 357, 357, 357, 351, 462, 512, 373, 373, 373, 373, 434, 434, 434, 434, 576, 935, 445, 357, 352, 445, 469, 576, 477, 469, 373, 477, 479, 356, 521, 479, 484, 358, 434, 484, 445, 589, 589, 521, 469, 356, 477, 2378, 356, 358, 479, 356, 358, 588, 484, 358, 356, 521, 493, 357, 358, 493, 588, 529, 592, 434, 373, 447, 447, 447, 447, 357, 529, 522, 357, 592, 493, 357, 373, 1127, 501, 373, 357, 501, 373, 583, 529, 522, 583, 373, 443, 443, 1127, 443, 443, 443, 522, 443, 501, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 609, 609, 598, 443, 443, 443, 443, 443, 443, 506, 506, 447, 506, 598, 448, 448, 448, 448, 449, 449, 449, 449, 527, 447, 1091, 527, 447, 506, 443, 447, 443, 443, 448, 530, 447, 467, 467, 467, 467, 520, 527, 538, 520, 591, 1091, 536, 624, 530, 536, 591, 538, 539, 520, 467, 591, 624, 530, 520, 443, 443, 443, 443, 584, 536, 538, 539, 549, 2379, 448, 549, 584, 600, 449, 584, 539, 540, 540, 540, 540, 549, 448, 567, 860, 448, 449, 600, 448, 449, 567, 467, 449, 448, 552, 552, 552, 449, 587, 540, 567, 597, 578, 467, 578, 587, 467, 597, 578, 467, 542, 542, 542, 542, 467, 544, 544, 544, 544, 1038, 552, 860, 546, 546, 546, 546, 544, 544, 542, 546, 544, 1038, 542, 545, 545, 545, 545, 544, 544, 544, 550, 550, 550, 550, 545, 545, 601, 550, 545, 552, 601, 593, 550, 550, 593, 545, 545, 545, 554, 554, 554, 554, 550, 2254, 544, 554, 558, 558, 558, 558, 590, 953, 559, 559, 559, 559, 590, 558, 558, 590, 554, 558, 545, 559, 559, 953, 599, 559, 558, 558, 558, 599, 545, 612, 559, 559, 564, 564, 2254, 605, 612, 564, 564, 596, 605, 603, 604, 596, 603, 604, 593, 564, 606, 605, 596, 558, 607, 607, 606, 608, 550, 559, 997, 607, 997, 608, 610, 610, 610, 610, 611, 613, 613, 610, 611, 614, 615, 615, 554, 610, 616, 611, 614, 617, 618, 618, 616, 632, 617, 613, 632, 614, 623, 618, 622, 622, 623, 625, 625, 627, 627, 625, 634, 634, 564, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 621, 621, 619, 579, 579, 579, 579, 579, 579, 619, 621, 628, 628, 628, 628, 2382, 633, 796, 628, 633, 796, 619, 632, 638, 636, 619, 638, 636, 579, 579, 579, 579, 629, 629, 629, 629, 638, 639, 797, 629, 639, 797, 630, 630, 630, 630, 636, 803, 636, 822, 639, 958, 579, 630, 630, 822, 958, 630, 579, 579, 579, 579, 942, 942, 2383, 630, 630, 631, 631, 631, 631, 643, 800, 631, 643, 800, 633, 952, 1032, 1032, 803, 647, 799, 799, 647, 631, 952, 799, 698, 631, 698, 630, 647, 643, 698, 643, 650, 647, 647, 650, 698, 1113, 695, 647, 695, 647, 651, 650, 695, 651, 695, 1010, 650, 650, 695, 1010, 652, 651, 650, 652, 650, 989, 651, 651, 799, 1113, 989, 652, 651, 696, 651, 696, 652, 652, 653, 696, 804, 653, 652, 804, 652, 696, 650, 654, 651, 653, 654, 696, 1593, 795, 653, 653, 795, 959, 654, 1067, 653, 977, 653, 654, 654, 818, 959, 1593, 818, 654, 655, 654, 652, 655, 656, 795, 699, 656, 699, 977, 959, 655, 699, 699, 1067, 656, 655, 655, 699, 652, 656, 656, 655, 700, 655, 700, 656, 657, 656, 700, 657, 658, 654, 2384, 658, 700, 806, 653, 657, 806, 994, 1021, 658, 657, 657, 994, 1021, 658, 658, 657, 1005, 657, 1005, 658, 659, 658, 694, 659, 694, 806, 795, 694, 694, 1016, 655, 659, 660, 1016, 694, 660, 659, 659, 818, 705, 656, 705, 659, 660, 659, 705, 1092, 661, 660, 660, 661, 705, 820, 658, 660, 820, 660, 662, 661, 657, 662, 1023, 842, 661, 661, 842, 1023, 1092, 662, 661, 697, 661, 909, 662, 662, 909, 697, 1134, 697, 662, 663, 662, 697, 663, 660, 832, 697, 1134, 697, 659, 659, 663, 1007, 832, 1007, 702, 663, 663, 832, 661, 1123, 702, 663, 702, 663, 1071, 832, 702, 665, 1024, 1024, 665, 666, 702, 702, 666, 1123, 811, 702, 665, 811, 1024, 662, 666, 665, 665, 1024, 1071, 666, 666, 665, 1015, 665, 1015, 666, 811, 666, 663, 980, 1051, 811, 980, 1051, 663, 664, 664, 664, 664, 664, 664, 664, 664, 664, 664, 664, 664, 664, 664, 664, 664, 664, 664, 664, 664, 1017, 1093, 1017, 664, 664, 664, 664, 664, 664, 665, 667, 1073, 704, 667, 704, 1339, 1069, 666, 704, 1073, 1093, 667, 668, 704, 704, 668, 667, 667, 664, 664, 664, 664, 667, 668, 667, 701, 1074, 701, 668, 668, 669, 701, 1069, 669, 668, 701, 668, 701, 1074, 1339, 825, 669, 664, 825, 1111, 960, 669, 669, 664, 664, 664, 664, 669, 670, 669, 706, 670, 706, 825, 960, 709, 706, 709, 1111, 670, 706, 709, 706, 960, 670, 670, 667, 709, 671, 1101, 670, 671, 670, 884, 668, 1080, 884, 668, 672, 671, 957, 672, 1077, 957, 671, 671, 2385, 1080, 669, 672, 671, 1101, 671, 673, 672, 672, 673, 884, 957, 703, 672, 703, 672, 674, 673, 703, 674, 1077, 703, 673, 673, 703, 825, 670, 674, 673, 1031, 673, 1031, 674, 674, 675, 1518, 1518, 675, 674, 1033, 674, 1033, 708, 708, 708, 675, 676, 671, 708, 676, 675, 675, 1079, 987, 708, 1108, 675, 676, 675, 672, 1079, 691, 676, 676, 691, 1124, 673, 987, 676, 1108, 676, 679, 691, 1039, 679, 1039, 987, 691, 691, 1115, 992, 674, 679, 691, 674, 691, 1124, 679, 679, 680, 680, 680, 680, 679, 992, 679, 707, 1115, 707, 675, 680, 707, 707, 992, 675, 680, 680, 1089, 707, 1034, 1034, 680, 1034, 680, 691, 1089, 676, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 986, 679, 991, 677, 677, 677, 677, 677, 677, 986, 681, 991, 1090, 681, 1095, 680, 710, 710, 710, 710, 2386, 681, 680, 986, 1090, 991, 681, 681, 677, 677, 677, 677, 681, 682, 681, 1120, 682, 2387, 710, 1095, 725, 725, 725, 725, 682, 712, 712, 712, 712, 682, 682, 725, 1000, 1000, 1120, 682, 1000, 682, 677, 677, 677, 677, 683, 712, 1117, 683, 684, 712, 2388, 684, 1129, 1117, 1078, 683, 1144, 681, 1088, 684, 683, 683, 829, 829, 684, 684, 683, 1088, 683, 1138, 684, 685, 684, 1129, 685, 686, 829, 1094, 686, 1078, 1078, 1000, 685, 1144, 829, 682, 686, 685, 685, 1094, 1138, 686, 686, 685, 1099, 685, 1502, 686, 687, 686, 1502, 687, 688, 828, 828, 688, 1099, 919, 683, 687, 919, 1114, 828, 688, 687, 687, 1025, 1025, 688, 688, 687, 684, 687, 1096, 688, 828, 688, 689, 1025, 919, 689, 1096, 1634, 1025, 685, 1114, 686, 920, 689, 690, 920, 1634, 690, 689, 689, 715, 715, 715, 715, 689, 690, 689, 715, 1001, 687, 690, 690, 692, 688, 920, 692, 690, 1001, 690, 1097, 1116, 693, 921, 692, 693, 921, 1011, 1097, 692, 692, 805, 1001, 693, 805, 692, 1011, 692, 693, 693, 714, 714, 714, 714, 693, 921, 693, 1116, 689, 805, 1011, 714, 1103, 805, 1143, 690, 716, 716, 716, 716, 1100, 690, 714, 716, 714, 717, 717, 717, 717, 1102, 1118, 1109, 1100, 692, 1103, 1143, 717, 1147, 716, 1109, 693, 1102, 693, 834, 834, 1147, 693, 717, 718, 718, 718, 718, 693, 720, 720, 720, 720, 834, 1118, 718, 723, 723, 723, 723, 720, 834, 834, 723, 805, 1105, 718, 724, 724, 724, 724, 720, 2389, 720, 724, 726, 726, 726, 726, 728, 728, 1121, 728, 729, 729, 1107, 729, 1105, 1107, 1027, 728, 1131, 716, 726, 729, 728, 728, 726, 1027, 729, 729, 728, 2390, 728, 733, 733, 1121, 733, 734, 734, 1008, 734, 1027, 831, 1008, 733, 831, 1131, 831, 734, 733, 733, 1008, 1002, 734, 734, 733, 1008, 733, 1107, 734, 831, 734, 735, 735, 1527, 735, 1002, 1012, 831, 1527, 1107, 736, 736, 735, 736, 1002, 833, 833, 735, 735, 1136, 1012, 736, 734, 735, 833, 735, 736, 736, 1110, 1012, 737, 737, 736, 737, 736, 1520, 1520, 833, 833, 735, 1110, 737, 738, 738, 1136, 738, 737, 737, 859, 859, 859, 859, 737, 738, 737, 859, 1029, 1029, 738, 738, 739, 739, 736, 739, 738, 1142, 738, 1125, 1029, 740, 740, 739, 740, 1029, 2391, 1019, 739, 739, 1019, 736, 740, 1142, 739, 1112, 739, 740, 740, 741, 741, 1125, 741, 740, 1019, 740, 1149, 1112, 1128, 738, 741, 737, 1130, 1019, 1133, 741, 741, 742, 742, 1018, 742, 741, 1018, 741, 1130, 1149, 743, 743, 742, 743, 1028, 1018, 1128, 742, 742, 2392, 739, 743, 1037, 742, 1133, 742, 743, 743, 1028, 1018, 744, 744, 743, 744, 743, 740, 1037, 1028, 1346, 745, 745, 744, 745, 1145, 1346, 1037, 744, 744, 1122, 741, 745, 1122, 744, 1573, 744, 745, 745, 742, 1573, 746, 746, 745, 746, 745, 854, 854, 854, 854, 2393, 1145, 746, 856, 856, 856, 856, 746, 746, 1146, 2245, 743, 743, 746, 744, 746, 747, 747, 854, 747, 1146, 856, 1009, 745, 1122, 856, 1009, 747, 882, 882, 882, 882, 747, 747, 1009, 882, 1577, 1148, 747, 1009, 747, 749, 749, 1577, 749, 1148, 858, 858, 858, 858, 750, 750, 749, 750, 2245, 1137, 746, 749, 749, 1030, 1030, 750, 1452, 749, 1452, 749, 750, 750, 858, 1595, 858, 1030, 750, 747, 750, 1595, 1030, 1137, 1141, 747, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 1141, 1449, 1587, 748, 748, 748, 748, 748, 748, 1587, 749, 883, 883, 883, 883, 1449, 751, 751, 883, 751, 2394, 750, 1006, 1006, 1449, 1119, 1006, 751, 748, 748, 748, 748, 751, 751, 861, 861, 861, 861, 751, 2395, 751, 861, 862, 862, 862, 862, 752, 752, 1119, 752, 1504, 1119, 748, 1139, 1504, 1140, 861, 752, 748, 748, 748, 748, 752, 752, 862, 1139, 862, 1140, 752, 1006, 752, 753, 753, 1528, 753, 863, 863, 863, 863, 1523, 1523, 1156, 753, 751, 1156, 1528, 751, 753, 753, 754, 754, 2396, 754, 753, 1156, 753, 1454, 863, 1454, 863, 754, 755, 755, 1013, 755, 754, 754, 1013, 1474, 752, 1474, 754, 755, 754, 861, 1013, 1157, 755, 755, 1157, 1013, 756, 756, 755, 756, 755, 1035, 1035, 1157, 1035, 757, 757, 756, 757, 1524, 1524, 753, 756, 756, 1251, 1132, 757, 1251, 756, 1035, 756, 757, 757, 758, 758, 1158, 758, 757, 1158, 757, 754, 1132, 1158, 1605, 758, 759, 759, 1014, 759, 758, 758, 1014, 1132, 2397, 755, 758, 759, 758, 1605, 1014, 1155, 759, 759, 1155, 1014, 1368, 756, 759, 1368, 759, 762, 762, 1476, 762, 1476, 885, 885, 885, 885, 1630, 757, 762, 1155, 757, 1155, 1630, 762, 762, 763, 763, 1529, 763, 762, 885, 762, 2398, 1507, 885, 758, 763, 1507, 1530, 1529, 758, 763, 763, 886, 886, 886, 886, 763, 1541, 763, 1530, 1541, 759, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 2251, 762, 1531, 760, 760, 760, 760, 760, 760, 1403, 764, 764, 1403, 764, 1531, 763, 945, 945, 945, 945, 1404, 764, 763, 1404, 886, 2251, 764, 764, 760, 760, 760, 760, 764, 1403, 764, 2233, 886, 1509, 945, 886, 765, 765, 886, 765, 1404, 1383, 1508, 886, 1383, 1509, 1508, 765, 766, 766, 1509, 766, 765, 765, 760, 760, 760, 760, 765, 766, 765, 945, 2399, 1383, 766, 766, 767, 767, 2233, 767, 766, 764, 766, 1564, 1564, 768, 768, 767, 768, 1562, 1635, 1562, 767, 767, 1275, 1275, 768, 1275, 767, 1635, 767, 768, 768, 769, 769, 1275, 769, 768, 1443, 768, 1275, 1275, 770, 770, 769, 770, 765, 1443, 1443, 769, 769, 1160, 766, 770, 1160, 769, 2351, 769, 770, 770, 771, 771, 2268, 771, 770, 1448, 770, 1588, 1588, 772, 772, 771, 772, 1160, 1448, 1160, 771, 771, 768, 767, 772, 1575, 771, 1575, 771, 772, 772, 1561, 1448, 773, 773, 772, 773, 772, 769, 1492, 1492, 2268, 770, 1492, 773, 774, 774, 2351, 774, 773, 773, 1042, 1042, 1042, 1042, 773, 774, 773, 1042, 1561, 771, 774, 774, 775, 775, 1794, 775, 774, 1177, 774, 1510, 1177, 776, 776, 775, 776, 1062, 1062, 772, 775, 775, 1062, 1062, 776, 1589, 775, 1492, 775, 776, 776, 1177, 1062, 1177, 773, 776, 1589, 776, 1794, 774, 773, 777, 777, 1594, 777, 1594, 866, 866, 866, 866, 778, 778, 777, 778, 1574, 1578, 1354, 777, 777, 1578, 1354, 778, 1574, 777, 775, 777, 778, 778, 866, 1360, 866, 776, 778, 1360, 778, 779, 779, 776, 779, 780, 780, 1354, 780, 776, 866, 1062, 779, 1510, 1618, 1510, 780, 779, 779, 1618, 1360, 780, 780, 779, 1599, 779, 1599, 780, 1576, 780, 777, 1576, 781, 781, 1602, 781, 1602, 777, 1207, 1207, 1207, 1207, 778, 781, 782, 782, 2256, 782, 781, 781, 868, 868, 868, 868, 781, 782, 781, 780, 1583, 779, 782, 782, 1583, 1359, 783, 783, 782, 783, 782, 1596, 1596, 2256, 868, 780, 868, 783, 1607, 779, 1355, 1355, 783, 783, 784, 784, 1359, 784, 783, 1355, 783, 1597, 1597, 1607, 781, 784, 785, 785, 2400, 785, 784, 784, 1355, 1355, 868, 1590, 784, 785, 784, 1590, 1361, 782, 785, 785, 1598, 1598, 786, 786, 785, 786, 785, 870, 870, 870, 870, 787, 787, 786, 787, 2401, 783, 1361, 786, 786, 1600, 1600, 787, 1359, 786, 1359, 786, 787, 787, 870, 784, 870, 1512, 787, 785, 787, 1611, 1601, 784, 788, 788, 2234, 788, 789, 789, 1604, 789, 1611, 1494, 1494, 788, 1601, 1494, 785, 789, 788, 788, 785, 1604, 789, 789, 788, 1352, 788, 2234, 789, 1352, 789, 1361, 786, 1361, 787, 790, 790, 1352, 790, 1606, 1606, 870, 1352, 787, 791, 791, 790, 791, 1610, 2402, 1352, 790, 790, 792, 792, 791, 792, 790, 1494, 790, 791, 791, 788, 1610, 792, 1608, 791, 1958, 791, 792, 792, 1512, 1608, 1512, 789, 792, 1958, 792, 867, 867, 867, 867, 869, 869, 869, 869, 871, 871, 871, 871, 946, 946, 946, 946, 1579, 790, 1584, 1579, 790, 1584, 867, 1627, 867, 791, 869, 1616, 869, 1616, 871, 1627, 871, 1612, 946, 792, 873, 873, 873, 873, 874, 874, 874, 874, 1612, 2403, 875, 875, 875, 875, 1043, 1043, 1043, 1043, 1614, 1503, 1613, 1043, 873, 1503, 873, 946, 874, 1613, 874, 1614, 867, 1503, 875, 869, 875, 1624, 1503, 1624, 871, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 1619, 1619, 1623, 872, 872, 872, 872, 872, 872, 1623, 874, 873, 875, 876, 876, 876, 876, 877, 877, 877, 877, 878, 878, 878, 878, 1639, 1639, 1621, 872, 872, 872, 872, 1631, 1586, 1631, 876, 1586, 876, 1621, 877, 1628, 877, 2406, 878, 1628, 878, 879, 879, 879, 879, 880, 880, 880, 880, 887, 887, 887, 887, 872, 872, 872, 872, 881, 881, 881, 881, 1591, 1447, 879, 1591, 879, 1447, 880, 1447, 880, 877, 1622, 1932, 1932, 876, 893, 893, 893, 893, 881, 1199, 881, 2255, 1199, 878, 1047, 1622, 1622, 877, 901, 901, 901, 901, 893, 1047, 1047, 1047, 947, 947, 947, 947, 1807, 1199, 887, 1199, 880, 2255, 901, 880, 1447, 879, 1519, 1519, 998, 998, 887, 881, 998, 887, 947, 1047, 887, 1807, 1519, 1617, 998, 887, 1617, 1519, 893, 998, 1356, 1356, 961, 961, 961, 961, 1049, 1049, 1049, 1049, 893, 2408, 901, 893, 1356, 947, 893, 1633, 1047, 1633, 961, 893, 1356, 1356, 901, 1933, 1933, 901, 1049, 998, 901, 1054, 1054, 1054, 1054, 901, 955, 955, 1054, 955, 955, 955, 2409, 955, 1625, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 961, 1625, 1948, 955, 955, 955, 955, 955, 955, 999, 999, 1620, 961, 999, 1620, 961, 1626, 1948, 961, 1638, 1637, 999, 1638, 961, 1637, 1636, 999, 2410, 955, 1626, 955, 955, 1065, 1065, 1065, 1065, 1636, 982, 982, 982, 982, 1249, 1249, 1249, 1249, 1965, 1720, 1965, 1249, 1720, 1250, 1250, 1250, 1250, 1065, 982, 999, 1250, 955, 955, 955, 955, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 2418, 1640, 1936, 970, 970, 970, 970, 970, 970, 982, 1087, 1087, 1640, 2431, 1936, 1087, 1087, 1525, 1525, 1971, 1525, 982, 1003, 1003, 982, 1087, 1003, 982, 970, 970, 970, 970, 982, 1971, 1003, 1525, 1004, 1004, 1721, 1003, 1004, 1721, 1040, 1040, 1040, 1040, 1882, 1810, 1004, 1526, 1526, 1937, 1526, 1004, 1040, 1882, 1882, 1040, 970, 970, 970, 970, 2443, 1937, 1040, 1040, 1040, 1526, 1810, 1003, 1041, 1041, 1041, 1041, 1044, 1044, 1044, 1044, 1087, 2444, 1811, 1041, 1041, 1004, 1811, 1041, 1044, 1629, 1959, 1044, 1629, 1040, 1041, 1041, 1041, 1959, 1815, 1044, 1044, 1048, 1048, 1048, 1048, 1629, 2232, 1811, 1048, 1248, 1248, 1248, 1248, 1048, 1048, 1050, 1050, 1050, 1050, 1815, 1923, 1041, 1050, 1048, 1923, 1044, 1643, 1050, 1050, 1643, 1817, 1248, 1041, 1053, 1053, 1053, 1053, 1050, 1643, 2232, 1053, 1056, 1056, 1056, 1056, 1053, 1821, 1838, 1056, 1821, 1838, 1817, 1053, 1053, 1053, 1053, 2455, 1061, 1061, 1061, 1061, 1970, 1970, 1056, 1061, 1066, 1066, 1066, 1066, 1255, 1255, 1255, 1255, 1969, 1924, 1969, 1066, 1066, 1924, 1061, 1066, 1048, 1082, 1082, 1082, 1082, 1453, 1066, 1066, 1066, 1453, 1255, 1453, 1082, 1082, 1050, 1645, 1082, 2001, 1645, 1162, 2001, 1821, 1162, 1082, 1082, 1082, 1862, 1645, 1066, 1862, 1162, 1646, 1053, 1066, 1646, 1162, 1162, 2458, 1646, 1949, 1056, 1162, 1061, 1162, 1256, 1256, 1256, 1256, 1860, 1951, 1082, 1860, 1453, 1951, 1949, 1256, 1061, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1982, 2273, 1982, 1070, 1070, 1070, 1070, 1070, 1070, 1294, 1294, 1162, 1294, 1206, 1206, 1206, 1206, 1995, 1995, 1862, 1294, 1083, 1083, 1083, 1083, 1294, 1294, 1860, 1070, 1070, 1070, 1070, 1083, 1083, 2273, 1206, 1083, 1206, 1257, 1257, 1257, 1257, 1934, 1083, 1083, 1252, 1252, 1252, 1252, 1257, 1976, 1934, 1252, 1258, 1258, 1258, 1258, 1976, 1070, 1070, 1070, 1070, 1497, 1497, 1258, 1934, 1497, 1252, 1997, 1997, 1083, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1977, 1966, 2259, 1098, 1098, 1098, 1098, 1098, 1098, 1644, 1966, 1977, 1644, 1390, 1390, 1390, 1390, 1861, 1497, 2466, 1861, 1104, 1104, 1104, 1104, 1644, 1644, 2259, 1098, 1098, 1098, 1098, 1104, 1104, 1252, 1390, 1104, 1098, 2504, 1150, 1150, 1150, 1150, 1104, 1104, 1104, 1253, 1253, 1253, 1253, 1150, 1150, 1867, 1253, 1150, 1867, 1809, 2139, 1098, 1098, 1098, 1098, 1150, 1150, 1151, 1151, 1151, 1151, 1253, 1809, 1104, 1152, 1152, 1152, 1152, 1151, 1151, 1809, 2139, 1151, 1861, 1161, 1152, 1152, 1161, 1955, 1152, 1151, 1150, 1955, 1163, 2506, 1161, 1163, 1152, 1152, 1962, 1161, 1161, 1164, 1962, 1163, 1164, 1161, 2014, 1161, 1163, 1163, 1863, 2014, 1164, 1863, 1163, 1151, 1163, 1164, 1164, 1867, 1498, 1498, 1152, 1164, 1498, 1164, 1166, 1161, 1253, 1166, 1167, 1647, 1353, 1167, 1647, 1972, 1353, 1166, 1647, 1972, 2509, 1167, 1166, 1166, 1353, 2237, 1167, 1167, 1166, 1353, 1166, 1981, 1167, 1994, 1167, 1981, 1973, 1353, 1546, 1546, 1546, 1546, 1994, 1163, 1863, 1546, 1967, 1498, 2237, 1967, 1973, 1164, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1166, 1167, 1986, 1165, 1165, 1165, 1165, 1165, 1165, 1865, 1168, 1814, 1865, 1168, 1986, 1814, 1547, 1547, 1547, 1547, 1818, 1168, 1169, 1547, 1818, 1169, 1168, 1168, 1165, 1165, 1165, 1165, 1168, 1169, 1168, 2510, 1814, 1967, 1169, 1169, 1556, 1556, 1556, 1556, 1169, 1818, 1169, 1556, 1380, 1380, 1380, 1380, 1170, 1869, 1864, 1170, 1869, 1864, 1165, 1165, 1165, 1165, 1168, 1170, 1171, 1865, 2512, 1171, 1170, 1170, 1380, 1978, 1380, 1820, 1170, 1171, 1170, 1820, 1169, 1172, 1171, 1171, 1172, 1920, 1920, 1978, 1171, 1920, 1171, 1868, 1172, 1173, 1868, 1357, 1173, 1172, 1172, 1357, 1820, 2238, 1358, 1172, 1173, 1172, 1358, 1357, 1170, 1173, 1173, 2514, 1357, 1174, 1358, 1173, 1174, 1173, 1912, 1358, 1357, 1912, 1175, 1869, 1174, 1175, 1864, 1358, 2239, 1174, 1174, 2240, 1920, 1175, 1171, 1174, 1912, 1174, 1175, 1175, 1572, 2238, 1183, 1572, 1175, 1183, 1175, 1921, 1921, 1868, 1172, 1921, 1866, 1183, 2240, 1866, 1979, 1184, 1183, 1183, 1184, 2249, 1173, 1173, 1183, 1174, 1183, 2239, 1184, 1185, 1979, 1445, 1185, 1184, 1184, 1445, 1980, 1445, 1175, 1184, 1185, 1184, 2249, 1445, 1984, 1185, 1185, 2253, 1445, 1186, 1980, 1185, 1186, 1185, 1921, 1183, 1572, 2515, 1984, 1187, 1186, 1929, 1187, 1866, 1929, 1186, 1186, 1572, 1983, 1184, 1187, 1186, 1983, 1186, 2516, 1187, 1187, 1188, 1445, 1929, 1188, 1187, 1985, 1187, 2253, 1185, 1189, 2520, 1188, 1189, 2521, 1975, 1975, 1188, 1188, 1190, 1985, 1189, 1190, 1188, 1975, 1188, 1189, 1189, 1191, 2003, 1190, 1191, 1189, 2003, 1189, 1190, 1190, 1186, 1987, 1191, 1987, 1190, 1991, 1190, 1191, 1191, 1187, 1988, 1632, 1988, 1191, 1195, 1191, 1632, 1195, 1886, 1991, 1188, 1632, 1886, 1632, 1886, 1195, 1724, 1724, 1724, 1724, 1195, 1195, 2235, 1724, 1190, 1888, 1195, 1957, 1195, 1888, 1957, 1888, 1189, 1191, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1996, 1886, 2235, 1192, 1192, 1192, 1192, 1192, 1192, 1998, 1193, 1998, 2522, 1193, 1996, 1999, 1195, 1999, 1888, 2006, 2523, 1193, 1194, 2006, 1957, 1194, 1193, 1193, 1192, 1192, 1192, 1192, 1193, 1194, 1193, 2000, 2002, 1192, 1194, 1194, 1196, 2008, 2008, 1196, 1194, 2218, 1194, 2218, 2002, 2000, 2009, 1196, 1197, 2034, 2009, 1197, 1196, 1196, 1192, 1192, 1192, 1192, 1196, 1197, 1196, 2034, 1193, 2524, 1197, 1197, 1205, 2010, 2525, 1205, 1197, 2012, 1197, 2258, 1194, 2012, 2010, 1205, 1208, 2526, 2248, 1208, 1205, 1205, 1533, 1533, 1533, 1533, 1205, 1208, 1205, 2244, 1196, 2013, 1208, 1208, 1533, 2013, 2247, 1533, 1208, 1210, 1208, 2248, 1210, 1212, 1533, 1533, 1212, 2141, 2258, 2143, 1210, 2141, 1197, 2143, 1212, 1210, 1210, 2527, 2244, 1212, 1212, 1210, 1891, 1210, 2247, 1212, 1891, 1212, 1891, 1892, 1205, 1533, 2141, 1892, 2143, 1892, 1208, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1210, 2448, 1212, 1209, 1209, 1209, 1209, 1209, 1209, 2219, 1211, 2219, 1891, 1211, 1557, 1557, 1557, 1557, 2528, 1892, 2529, 1211, 1213, 2530, 2250, 1213, 1211, 1211, 1209, 1209, 1209, 1209, 1211, 1213, 1211, 2448, 1557, 1209, 1213, 1213, 2011, 2011, 2011, 2011, 1213, 2250, 1213, 2266, 1386, 1386, 1386, 1386, 1214, 2211, 2260, 1214, 2211, 2252, 1209, 1209, 1209, 1209, 1211, 1214, 1215, 2257, 2265, 1215, 1214, 1214, 1386, 2211, 1386, 2271, 1214, 1215, 1214, 2531, 2252, 1216, 1215, 1215, 1216, 2532, 2266, 1213, 1215, 2533, 1215, 1217, 1216, 2265, 1217, 2260, 2423, 1216, 1216, 2257, 2271, 1218, 1217, 1216, 1218, 1216, 2274, 1217, 1217, 2277, 1214, 1219, 1218, 1217, 1219, 1217, 2423, 1218, 1218, 1386, 2272, 1220, 1219, 1218, 1220, 1218, 2404, 1219, 1219, 2261, 2269, 2274, 1220, 1219, 1215, 1219, 1221, 1220, 1220, 1221, 2404, 2277, 1217, 1220, 2279, 1220, 2272, 1221, 1222, 1216, 2278, 1222, 1221, 1221, 1558, 1558, 1558, 1558, 1221, 1222, 1221, 2534, 2535, 1223, 1222, 1222, 1223, 2411, 2261, 2269, 1222, 2424, 1222, 1218, 1223, 1224, 1558, 2536, 1224, 1223, 1223, 1219, 2278, 2279, 1220, 1223, 1224, 1223, 2411, 2446, 1225, 1224, 1224, 1225, 2425, 2440, 2424, 1224, 2196, 1224, 1226, 1225, 2196, 1226, 2196, 1221, 1225, 1225, 1222, 2427, 1227, 1226, 1225, 1227, 1225, 2428, 1226, 1226, 2429, 2537, 1228, 1227, 1226, 1228, 1226, 2446, 1227, 1227, 1223, 2538, 2427, 1228, 1227, 2425, 1227, 2539, 1228, 1228, 2429, 2440, 2428, 1224, 1228, 1229, 1228, 2196, 1229, 1230, 2407, 2407, 1230, 2407, 1648, 1654, 1229, 1648, 1654, 1226, 1230, 1229, 1229, 1225, 2197, 1230, 1230, 1229, 2197, 1229, 2197, 1230, 1231, 1230, 2430, 1231, 1648, 1654, 1648, 1654, 1227, 1232, 1675, 1231, 1232, 1675, 2540, 1228, 1231, 1231, 2434, 2436, 1232, 2543, 1231, 2433, 1231, 1232, 1232, 1233, 2445, 1229, 1233, 1232, 1675, 1232, 1675, 2435, 2544, 1234, 1233, 2197, 1234, 2430, 2370, 1233, 1233, 2370, 2433, 1230, 1234, 1233, 2434, 1233, 1235, 1234, 1234, 1235, 2436, 2437, 2435, 1234, 1231, 1234, 2441, 1235, 2370, 2445, 1675, 1236, 1235, 1235, 1236, 1231, 2449, 2447, 1235, 2451, 1235, 1237, 1236, 1232, 1237, 1233, 2437, 1236, 1236, 2456, 2450, 2441, 1237, 1236, 2545, 1236, 1238, 1237, 1237, 1238, 2447, 2449, 2546, 1237, 2451, 1237, 1239, 1238, 1234, 1239, 2561, 2452, 1238, 1238, 2456, 2563, 1240, 1239, 1238, 1240, 1238, 2554, 1239, 1239, 2450, 1235, 2267, 1240, 1239, 2267, 1239, 1241, 1240, 1240, 1241, 2452, 2572, 1236, 1240, 1446, 1240, 2546, 1241, 1446, 2554, 1446, 1237, 1241, 1241, 2570, 2573, 1446, 1238, 1241, 1242, 1241, 1446, 1242, 2422, 2422, 2422, 2422, 1239, 1243, 2439, 1242, 1243, 2439, 2503, 2422, 1242, 1242, 1244, 2570, 1243, 1244, 1242, 2267, 1242, 1243, 1243, 1247, 1240, 1244, 1247, 1243, 1446, 1243, 1244, 1244, 1245, 1241, 1247, 1245, 1244, 2439, 1244, 1247, 1247, 1246, 2553, 1245, 1246, 1247, 2574, 1247, 1245, 1245, 2017, 2564, 1246, 2017, 1245, 2503, 1245, 1246, 1246, 2457, 2565, 1242, 2457, 1246, 2457, 1246, 2017, 2017, 2575, 1244, 1381, 1381, 1381, 1381, 2576, 1243, 2564, 1381, 1259, 1259, 2553, 1259, 2577, 2457, 1245, 2565, 1247, 1260, 1260, 1259, 1260, 2578, 1381, 1246, 1259, 1259, 1261, 1261, 1260, 1261, 1259, 2583, 1259, 1260, 1260, 2020, 2603, 1261, 2020, 1260, 2604, 1260, 1261, 1261, 1262, 1262, 2579, 1262, 1261, 2605, 1261, 2602, 1259, 1267, 1267, 1262, 1267, 2020, 2578, 2020, 1262, 1262, 1732, 1732, 1267, 1732, 1262, 2579, 1262, 1267, 1267, 1264, 1264, 1732, 1264, 1267, 2607, 1267, 1732, 1732, 1381, 2542, 1264, 2580, 2542, 2602, 1260, 1264, 1264, 1265, 1265, 2608, 1265, 1264, 2609, 1264, 2610, 1261, 2611, 2542, 1265, 2230, 2230, 2230, 2230, 1265, 1265, 2612, 2230, 1267, 2582, 1265, 2580, 1265, 1262, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 2552, 2552, 1264, 1263, 1263, 1263, 1263, 1263, 1263, 2552, 1266, 1266, 2613, 1266, 2582, 2517, 2614, 1265, 2517, 2615, 2616, 1266, 1268, 1268, 2617, 1268, 1266, 1266, 1263, 1263, 1263, 1263, 1266, 1268, 1266, 1571, 1571, 2517, 1268, 1268, 1571, 1571, 2438, 2438, 1268, 2438, 1268, 2618, 2541, 2541, 1571, 2541, 2620, 1269, 1269, 2621, 1269, 2622, 1263, 1263, 1263, 1263, 1266, 2635, 1269, 2376, 2376, 2376, 2376, 1269, 1269, 1270, 1270, 2438, 1270, 1269, 1268, 1269, 2637, 2639, 1271, 1271, 1270, 1271, 2628, 2627, 2628, 1270, 1270, 1272, 1272, 1271, 1272, 1270, 2627, 1270, 1271, 1271, 1273, 1273, 1272, 1273, 1271, 1571, 1271, 1272, 1272, 1274, 1274, 1273, 1274, 1272, 2642, 1272, 1273, 1273, 2623, 2623, 1274, 2623, 1273, 1269, 1273, 1274, 1274, 2075, 2075, 2075, 2075, 1274, 2619, 1274, 2075, 2619, 2581, 1279, 1279, 2581, 1279, 2643, 1270, 1272, 2376, 2647, 1280, 1280, 1279, 1280, 2619, 1271, 1271, 1279, 1279, 2648, 1273, 1280, 2649, 1279, 2581, 1279, 1280, 1280, 1281, 1281, 2624, 1281, 1280, 2629, 1280, 2320, 2320, 2320, 2320, 1281, 1282, 1282, 2320, 1282, 1281, 1281, 1947, 1947, 1947, 1947, 1281, 1282, 1281, 1947, 1279, 2650, 1282, 1282, 1283, 1283, 2651, 1283, 1282, 2653, 1282, 2624, 1280, 1284, 1284, 1283, 1284, 2075, 2629, 2659, 1283, 1283, 2584, 2630, 1284, 2584, 1283, 2584, 1283, 1284, 1284, 1285, 1285, 2669, 1285, 1284, 2656, 1284, 1281, 2645, 1286, 1286, 1285, 1286, 2630, 2670, 2584, 1285, 1285, 1282, 2645, 1286, 2654, 1285, 2671, 1285, 1286, 1286, 1947, 2668, 1283, 1813, 1286, 1650, 1286, 1813, 1650, 2672, 1382, 1382, 1382, 1382, 1947, 1813, 1650, 1382, 2655, 2654, 1813, 1650, 1650, 2656, 1284, 1285, 2673, 1650, 1813, 1650, 2674, 2675, 1382, 2668, 1286, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 2676, 2655, 2677, 1287, 1287, 1287, 1287, 1287, 1287, 2678, 1288, 1288, 2679, 1288, 1559, 1559, 1559, 1559, 2680, 1650, 2682, 1288, 1289, 1289, 2696, 1289, 1288, 1288, 1287, 1287, 1287, 1287, 1288, 1289, 1288, 1382, 1559, 1287, 1289, 1289, 1290, 1290, 2700, 1290, 1289, 2690, 1289, 2420, 2420, 2420, 2420, 1290, 1291, 1291, 2420, 1291, 1290, 1290, 1287, 1287, 1287, 1287, 1290, 1291, 1290, 2684, 1288, 2688, 1291, 1291, 1292, 1292, 2688, 1292, 1291, 2681, 1291, 2701, 1289, 1293, 1293, 1292, 1293, 2690, 2681, 2712, 1292, 1292, 1298, 1298, 1293, 1298, 1292, 2716, 1292, 1293, 1293, 2683, 2683, 1298, 2683, 1293, 2684, 1293, 1298, 1298, 1290, 2717, 1291, 2718, 1298, 2720, 1298, 1299, 1299, 2689, 1299, 1718, 1718, 1718, 1718, 2721, 2689, 2725, 1299, 1389, 1389, 1389, 1389, 1299, 1299, 1384, 1384, 1384, 1384, 1299, 1292, 1299, 2727, 1718, 2702, 1306, 1306, 2729, 1306, 1301, 1301, 1389, 1301, 1389, 2687, 2702, 1306, 1384, 1298, 1384, 1301, 1306, 1306, 2687, 2721, 1301, 1301, 1306, 2739, 1306, 2740, 1301, 2719, 1301, 2723, 2719, 2741, 1299, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1384, 2723, 2742, 1300, 1300, 1300, 1300, 1300, 1300, 1301, 1302, 1302, 2743, 1302, 2745, 1306, 2746, 1964, 1964, 1964, 1964, 1302, 1303, 1303, 2748, 1303, 1302, 1302, 1300, 1300, 1300, 1300, 1302, 1303, 1302, 2749, 2765, 1300, 1303, 1303, 2421, 2421, 2421, 2421, 1303, 2722, 1303, 2421, 1387, 1387, 1387, 1387, 1304, 1304, 2771, 1304, 2753, 2753, 1300, 1300, 1300, 1300, 1302, 1304, 1305, 1305, 2763, 1305, 1304, 1304, 1387, 2772, 1387, 1964, 1304, 1305, 1304, 2763, 1303, 2774, 1305, 1305, 1307, 1307, 2722, 1307, 1305, 2775, 1305, 2174, 2174, 2174, 2174, 1307, 1308, 1308, 2756, 1308, 1307, 1307, 2779, 1387, 2754, 2754, 1307, 1308, 1307, 2775, 2770, 2781, 1308, 1308, 2174, 2776, 2174, 1304, 1308, 1539, 1308, 2770, 1305, 2757, 1309, 1309, 2757, 1309, 1539, 1539, 1539, 2790, 2791, 1310, 1310, 1309, 1310, 2756, 2793, 2776, 1309, 1309, 1311, 1311, 1310, 1311, 1309, 1308, 1309, 1310, 1310, 2174, 1307, 1311, 1539, 1310, 2794, 1310, 1311, 1311, 1312, 1312, 2705, 1312, 1311, 2705, 1311, 2796, 2174, 1314, 1314, 1312, 1314, 2705, 2797, 2799, 1312, 1312, 1313, 1313, 1314, 1313, 1312, 1539, 1312, 1314, 1314, 2806, 2812, 1313, 2802, 1314, 2813, 1314, 1313, 1313, 1309, 2802, 1315, 1315, 1313, 1315, 1313, 1310, 2815, 1311, 2816, 2815, 2821, 1315, 1316, 1316, 2822, 1316, 1315, 1315, 2225, 2225, 2225, 2225, 1315, 1316, 1315, 2225, 2823, 2750, 1316, 1316, 2750, 1312, 1317, 1317, 1316, 1317, 1316, 1314, 2750, 2824, 1313, 1318, 1318, 1317, 1318, 2825, 2826, 2835, 1317, 1317, 1320, 1320, 1318, 1320, 1317, 2846, 1317, 1318, 1318, 1319, 1319, 1320, 1319, 1318, 2848, 1318, 1320, 1320, 2804, 1316, 1319, 1315, 1320, 2853, 1320, 1319, 1319, 1321, 1321, 2804, 1321, 1319, 2694, 1319, 2225, 2694, 1322, 1322, 1321, 1322, 2562, 2562, 2854, 1321, 1321, 2562, 2562, 1322, 2225, 1321, 1317, 1321, 1322, 1322, 2694, 2562, 1318, 2855, 1322, 2862, 1322, 1323, 1323, 2820, 1323, 1319, 2820, 2870, 2759, 2810, 1320, 2759, 1323, 1324, 1324, 2820, 1324, 1323, 1323, 2759, 2810, 2880, 1450, 1323, 1324, 1323, 1450, 1321, 1450, 1324, 1324, 2814, 2882, 2787, 1450, 1324, 2787, 1324, 1321, 1450, 1325, 1325, 2803, 1325, 2787, 2803, 1322, 2886, 2562, 1326, 1326, 1325, 1326, 2803, 2814, 1323, 1325, 1325, 2845, 2829, 1326, 2845, 1325, 2829, 1325, 1326, 1326, 1327, 1327, 1450, 1327, 1326, 2879, 1326, 2881, 2879, 1330, 1330, 1327, 1330, 1324, 2891, 2896, 1327, 1327, 2738, 2901, 1330, 2738, 1327, 2906, 1327, 1330, 1330, 1328, 1328, 2738, 1328, 1330, 2777, 1330, 2847, 2777, 1329, 1329, 1328, 1329, 2738, 2861, 1325, 1328, 1328, 2881, 2918, 1329, 1326, 1328, 2920, 1328, 1329, 1329, 2777, 2847, 1331, 1331, 1329, 1331, 1329, 2861, 1451, 2362, 2897, 1327, 1451, 1331, 1451, 2905, 2913, 2916, 1331, 1331, 1451, 1330, 2921, 2921, 1331, 1451, 1331, 2905, 2913, 1328, 1332, 1332, 2916, 1332, 1333, 1333, 1887, 1333, 1329, 2996, 1887, 1332, 1887, 2360, 2996, 1333, 1332, 1332, 1887, 2897, 1333, 1333, 1332, 1887, 1332, 1451, 1333, 2359, 1333, 2919, 1334, 1334, 1331, 1334, 1335, 1335, 2788, 1335, 2919, 2788, 2358, 1334, 2357, 2788, 3066, 1335, 1334, 1334, 2356, 3066, 1335, 1335, 1334, 1887, 1334, 2354, 1335, 2353, 1335, 1336, 1336, 2842, 1336, 2352, 2842, 1332, 2483, 2483, 2483, 2483, 1336, 2293, 2842, 2483, 1333, 1336, 1336, 1337, 1337, 2900, 1337, 1336, 2900, 1336, 2773, 1334, 1335, 2773, 1337, 2485, 2485, 2485, 2485, 1337, 1337, 1385, 1385, 1385, 1385, 1337, 2485, 1337, 1388, 1388, 1388, 1388, 1393, 1393, 1393, 1393, 2281, 1336, 1394, 1394, 1394, 1394, 2280, 1385, 2264, 1385, 1395, 1395, 1395, 1395, 1388, 2263, 1388, 2246, 1393, 2223, 1393, 2222, 2818, 2221, 1394, 2818, 1394, 2220, 2773, 2818, 1337, 2215, 1395, 2213, 1395, 1396, 1396, 1396, 1396, 1397, 1397, 1397, 1397, 2773, 1388, 1398, 1398, 1398, 1398, 1399, 1399, 1399, 1399, 1385, 1393, 2944, 2944, 1396, 1394, 1396, 2944, 1397, 2212, 1397, 2210, 2819, 2209, 1398, 2819, 1398, 2208, 1399, 2819, 1399, 1400, 1400, 1400, 1400, 1395, 1401, 1401, 1401, 1401, 2207, 1402, 1402, 1402, 1402, 2206, 2909, 1493, 1493, 2909, 2205, 1493, 1397, 1400, 2204, 1400, 2203, 1396, 1401, 1493, 1401, 2202, 1398, 1402, 1493, 1402, 1399, 1532, 1532, 1532, 1532, 2201, 2200, 2317, 2317, 2317, 2317, 2198, 2194, 1532, 2317, 2843, 1532, 2193, 2843, 2192, 1400, 2191, 1401, 1532, 1532, 1532, 2843, 1402, 1493, 1534, 1534, 1534, 1534, 2190, 1535, 1535, 1535, 1535, 2189, 2922, 2188, 1534, 2922, 2187, 1534, 1535, 1535, 2186, 2185, 1535, 1532, 1534, 1534, 1534, 2950, 2950, 1535, 1535, 1535, 2950, 2184, 1536, 1536, 1536, 1536, 1537, 1537, 1537, 1537, 2850, 2922, 2183, 2850, 1536, 2952, 2952, 1536, 1537, 1534, 2952, 1537, 2850, 2843, 1535, 1536, 1536, 2182, 2317, 1537, 1538, 1538, 1538, 1538, 1542, 1542, 1542, 1542, 2181, 2180, 2852, 1542, 1538, 2852, 1535, 1538, 1543, 1543, 1543, 1543, 2179, 1536, 2852, 1538, 1538, 1537, 1542, 2178, 1543, 2177, 2172, 2171, 1544, 1544, 1544, 1544, 2170, 2169, 1543, 1544, 2484, 2484, 2484, 2484, 1544, 2954, 2954, 2484, 2158, 1538, 2954, 1544, 1544, 1544, 1544, 1545, 1545, 1545, 1545, 2156, 2155, 2154, 1545, 2898, 2898, 2898, 2898, 1545, 2153, 1719, 1719, 1719, 1719, 2152, 1545, 1545, 1545, 1545, 1548, 1548, 1548, 1548, 2151, 2150, 1542, 1548, 1553, 1553, 1553, 1553, 1548, 1719, 2149, 1553, 2148, 2147, 2145, 1548, 1548, 1548, 1548, 2144, 1554, 1554, 1554, 1554, 2142, 2859, 1553, 1554, 2859, 2138, 1544, 2137, 1555, 1555, 1555, 1555, 2859, 1566, 1566, 1566, 1566, 2136, 1554, 1555, 1555, 2956, 2956, 1555, 1566, 1566, 2956, 2135, 1566, 1545, 1555, 1555, 1555, 2134, 2133, 1566, 1566, 1566, 2872, 1651, 2132, 2872, 1651, 2131, 2130, 2129, 1553, 2128, 2758, 2872, 1651, 2758, 1548, 2958, 2958, 1651, 1651, 1555, 2958, 2758, 1553, 1651, 1566, 1651, 2126, 2035, 1567, 1567, 1567, 1567, 2758, 1580, 1580, 1580, 1580, 1555, 1554, 1567, 1567, 2964, 2964, 1567, 1580, 1580, 2964, 2018, 1580, 2016, 1567, 1567, 2015, 2007, 2004, 1580, 1580, 1580, 1581, 1581, 1581, 1581, 1993, 1992, 1722, 1722, 1722, 1722, 1651, 1581, 1581, 1722, 1652, 1581, 1990, 1652, 1661, 1567, 1989, 1661, 1581, 1581, 1580, 1652, 1974, 2951, 1722, 1661, 1652, 1652, 2951, 2951, 1661, 1661, 1652, 2951, 1652, 1968, 1661, 1961, 1661, 2904, 2904, 2904, 2904, 1960, 1950, 1581, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1946, 1944, 1943, 1585, 1585, 1585, 1585, 1585, 1585, 1942, 1661, 1935, 1652, 1930, 1928, 1927, 1722, 1725, 1725, 1725, 1725, 1592, 1592, 1592, 1592, 1925, 1917, 1915, 1585, 1585, 1585, 1585, 1592, 1592, 1913, 1911, 1592, 2966, 2966, 1725, 1908, 1906, 2966, 1592, 1592, 1592, 2550, 2550, 2550, 2550, 1905, 2873, 1649, 1904, 2873, 1649, 1903, 2550, 1585, 1585, 1585, 1585, 2873, 1649, 1723, 1723, 1723, 1723, 1649, 1649, 1592, 1723, 1902, 1901, 1649, 1900, 1649, 1592, 1615, 1615, 1615, 1615, 1835, 1835, 1835, 1835, 1723, 2968, 2968, 1615, 1615, 1649, 2968, 1615, 1899, 1837, 1837, 1837, 1837, 1898, 1615, 1615, 1615, 1897, 1835, 1896, 1835, 1895, 1894, 1662, 1884, 2885, 1662, 1663, 2885, 1880, 1663, 1837, 2873, 1837, 1662, 1879, 2885, 1878, 1663, 1662, 1662, 1615, 1877, 1663, 1663, 1662, 1615, 1662, 1876, 1663, 1875, 1663, 2226, 2226, 2226, 2226, 1874, 1873, 1723, 2226, 1872, 1615, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1662, 1871, 1870, 1660, 1660, 1660, 1660, 1660, 1660, 2875, 1664, 1859, 2875, 1664, 1663, 1858, 2808, 2808, 2808, 2808, 2875, 1664, 1665, 2808, 1857, 1665, 1664, 1664, 1660, 1660, 1660, 1660, 1664, 1665, 1664, 1856, 2226, 1660, 1665, 1665, 1666, 1855, 2892, 1666, 1665, 2892, 1665, 1854, 1853, 1852, 2226, 1666, 1667, 2892, 1839, 1667, 1666, 1666, 1660, 1660, 1660, 1660, 1666, 1667, 1666, 2875, 1834, 1668, 1667, 1667, 1668, 1833, 2970, 2970, 1667, 1832, 1667, 2970, 1668, 1831, 1664, 1830, 1665, 1668, 1668, 1669, 1829, 1828, 1669, 1668, 1827, 1668, 2868, 2868, 2868, 2868, 1669, 1670, 2892, 2868, 1670, 1669, 1669, 1842, 1842, 1842, 1842, 1669, 1670, 1669, 1826, 1666, 1671, 1670, 1670, 1671, 1825, 1824, 1823, 1670, 1822, 1670, 1667, 1671, 1819, 1842, 1812, 1842, 1671, 1671, 1668, 1806, 1805, 1804, 1671, 2908, 1671, 1672, 2908, 1803, 1672, 2551, 2551, 2551, 2551, 1802, 2908, 1673, 1672, 1669, 1673, 1801, 2551, 1672, 1672, 2972, 2972, 1670, 1673, 1672, 2972, 1672, 1674, 1673, 1673, 1674, 1842, 1800, 1799, 1673, 1798, 1673, 1676, 1674, 2893, 1676, 1797, 2893, 1674, 1674, 1671, 1796, 1795, 1676, 1674, 2893, 1674, 1677, 1676, 1676, 1677, 1793, 1734, 1672, 1676, 1726, 1676, 1678, 1677, 1659, 1678, 2975, 2975, 1677, 1677, 2908, 2975, 1658, 1678, 1677, 1673, 1677, 1679, 1678, 1678, 1679, 1656, 1642, 1641, 1678, 1609, 1678, 1680, 1679, 1676, 1680, 2978, 2978, 1679, 1679, 1603, 2978, 1674, 1680, 1679, 1570, 1679, 1681, 1680, 1680, 1681, 1563, 2893, 1560, 1680, 1552, 1680, 1682, 1681, 1551, 1682, 1550, 1677, 1681, 1681, 1516, 1513, 1683, 1682, 1681, 1683, 1681, 1511, 1682, 1682, 1500, 1490, 1488, 1683, 1682, 1678, 1682, 2903, 1683, 1683, 2903, 1486, 1684, 1679, 1683, 1684, 1683, 1483, 2903, 2902, 1480, 1685, 2902, 1684, 1685, 1680, 2981, 2981, 1684, 1684, 2902, 2981, 1685, 1478, 1684, 1475, 1684, 1685, 1685, 1686, 1681, 2910, 1686, 1685, 2910, 1685, 2907, 1682, 1472, 2907, 1686, 1687, 2910, 1471, 1687, 1686, 1686, 2907, 1470, 2903, 1683, 1686, 1687, 1686, 1469, 1684, 1468, 1687, 1687, 1688, 1467, 2703, 1688, 1687, 1466, 1687, 1465, 2703, 1689, 1464, 1688, 1689, 2703, 2703, 2703, 1688, 1688, 2902, 1463, 1689, 1685, 1688, 2703, 1688, 1689, 1689, 1690, 1462, 2907, 1690, 1689, 1461, 1689, 1460, 2957, 1687, 1686, 1690, 1691, 2957, 2957, 1691, 1690, 1690, 2957, 1459, 2713, 1458, 1690, 1691, 1690, 1688, 2713, 1692, 1691, 1691, 1692, 2713, 2713, 2713, 1691, 1457, 1691, 1693, 1692, 1456, 1693, 2713, 1455, 1692, 1692, 1442, 1440, 2703, 1693, 1692, 1689, 1692, 1694, 1693, 1693, 1694, 1439, 1438, 1437, 1693, 1436, 1693, 1695, 1694, 1691, 1695, 1435, 1690, 1694, 1694, 2983, 2983, 1434, 1695, 1694, 2983, 1694, 1696, 1695, 1695, 1696, 1433, 1432, 1692, 1695, 1431, 1695, 1697, 1696, 1430, 1697, 1429, 2713, 1696, 1696, 2991, 2991, 1693, 1697, 1696, 2991, 1696, 1698, 1697, 1697, 1698, 1428, 1427, 1694, 1697, 1426, 1697, 1699, 1698, 1425, 1699, 3004, 3004, 1698, 1698, 1424, 3004, 1700, 1699, 1698, 1700, 1698, 1423, 1699, 1699, 1422, 1695, 1701, 1700, 1699, 1701, 1699, 1421, 1700, 1700, 3018, 3018, 1420, 1701, 1700, 3018, 1700, 1696, 1701, 1701, 1702, 1419, 1418, 1702, 1701, 1417, 1701, 1416, 1415, 1697, 1414, 1702, 2318, 2318, 2318, 2318, 1702, 1702, 1703, 2318, 1698, 1703, 1702, 1413, 1702, 1411, 1410, 1704, 1700, 1703, 1704, 2959, 1699, 1701, 1703, 1703, 2959, 2959, 1704, 1409, 1703, 2959, 1703, 1704, 1704, 1408, 1407, 1705, 1701, 1704, 1705, 1704, 1406, 1405, 2911, 1392, 1706, 2911, 1705, 1706, 1702, 3089, 3089, 1705, 1705, 2911, 3089, 1706, 1391, 1705, 1379, 1705, 1706, 1706, 1707, 1378, 1377, 1707, 1706, 1376, 1706, 1704, 1375, 1703, 1374, 1707, 1708, 1373, 1372, 1708, 1707, 1707, 2318, 1371, 2965, 1370, 1707, 1708, 1707, 2965, 2965, 1705, 1708, 1708, 2965, 1369, 1709, 1367, 1708, 1709, 1708, 2877, 2877, 2877, 2877, 1706, 1710, 1709, 2877, 1710, 2636, 2636, 1709, 1709, 2911, 2636, 2636, 1710, 1709, 1366, 1709, 1711, 1710, 1710, 1711, 2636, 1365, 1707, 1710, 1364, 1710, 1712, 1711, 1363, 1712, 2658, 2658, 1711, 1711, 1362, 2658, 2658, 1712, 1711, 1351, 1711, 1350, 1712, 1712, 1708, 2658, 1713, 1349, 1712, 1713, 1712, 1348, 1841, 1841, 1841, 1841, 1710, 1713, 1347, 1345, 1709, 1710, 1713, 1713, 2912, 1344, 1710, 2912, 1713, 1714, 1713, 1343, 1714, 2636, 1841, 2912, 1841, 1342, 1341, 1715, 1714, 1711, 1715, 1338, 1712, 1714, 1714, 1296, 1277, 1716, 1715, 1714, 1716, 1714, 1254, 1715, 1715, 1204, 2658, 1717, 1716, 1715, 1717, 1715, 1713, 1716, 1716, 3151, 3151, 1203, 1717, 1716, 3151, 1716, 1201, 1717, 1717, 1727, 1727, 1182, 1727, 1717, 1841, 1717, 1181, 1179, 1728, 1728, 1727, 1728, 2912, 3168, 3168, 1727, 1727, 1159, 3168, 1728, 1154, 1727, 1714, 1727, 1728, 1728, 2638, 2638, 2638, 2638, 1728, 1715, 1728, 1729, 1729, 1153, 1729, 1717, 1727, 1716, 1086, 1064, 1730, 1730, 1729, 1730, 3014, 1063, 2638, 1729, 1729, 1731, 1731, 1730, 1731, 1729, 1060, 1729, 1730, 1730, 3014, 3014, 1731, 1059, 1730, 3014, 1730, 1731, 1731, 1737, 1737, 1058, 1737, 1731, 1057, 1731, 1052, 1728, 3183, 3183, 1737, 1738, 1738, 3183, 1738, 1737, 1737, 1939, 1939, 1939, 1939, 1737, 1738, 1737, 1939, 1046, 2967, 1738, 1738, 1022, 1729, 2967, 2967, 1738, 1020, 1738, 2967, 996, 993, 1939, 1730, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1737, 990, 988, 1736, 1736, 1736, 1736, 1736, 1736, 1738, 1739, 1739, 985, 1739, 984, 983, 981, 2412, 2412, 2412, 2412, 1739, 1740, 1740, 2412, 1740, 1739, 1739, 1736, 1736, 1736, 1736, 1739, 1740, 1739, 3087, 1939, 1736, 1740, 1740, 1741, 1741, 979, 1741, 1740, 978, 1740, 976, 975, 3087, 3087, 1741, 1742, 1742, 3087, 1742, 1741, 1741, 1736, 1736, 1736, 1736, 1741, 1742, 1741, 3197, 3197, 974, 1742, 1742, 3197, 973, 1743, 1743, 1742, 1743, 1742, 3251, 3251, 1739, 972, 971, 3251, 1743, 2555, 2555, 2555, 2555, 1743, 1743, 1744, 1744, 1740, 1744, 1743, 2555, 1743, 2412, 969, 968, 1741, 1744, 1745, 1745, 967, 1745, 1744, 1744, 966, 965, 3262, 3262, 1744, 1745, 1744, 3262, 2726, 2726, 1745, 1745, 964, 2726, 2726, 1742, 1745, 941, 1745, 1746, 1746, 939, 1746, 2726, 2355, 2355, 2355, 2355, 938, 937, 1746, 936, 2755, 2755, 1743, 1746, 1746, 2755, 2755, 1747, 1747, 1746, 1747, 1746, 934, 1744, 2355, 2755, 1748, 1748, 1747, 1748, 933, 932, 1745, 1747, 1747, 1749, 1749, 1748, 1749, 1747, 931, 1747, 1748, 1748, 1750, 1750, 1749, 1750, 1748, 929, 1748, 1749, 1749, 2914, 2726, 1750, 2914, 1749, 928, 1749, 1750, 1750, 927, 926, 2914, 1746, 1750, 925, 1750, 1751, 1751, 918, 1751, 1747, 917, 916, 915, 913, 2755, 2355, 1751, 2596, 2596, 2596, 2596, 1751, 1751, 1752, 1752, 1748, 1752, 1751, 2596, 1751, 912, 911, 1753, 1753, 1752, 1753, 1750, 910, 908, 1752, 1752, 1749, 907, 1753, 906, 1752, 905, 1752, 1753, 1753, 1754, 1754, 904, 1754, 1753, 2914, 1753, 1751, 900, 1755, 1755, 1754, 1755, 3115, 899, 898, 1754, 1754, 1756, 1756, 1755, 1756, 1754, 897, 1754, 1755, 1755, 3115, 3115, 1756, 896, 1755, 3115, 1755, 1756, 1756, 1757, 1757, 1752, 1757, 1756, 891, 1756, 890, 2971, 1758, 1758, 1757, 1758, 2971, 2971, 889, 1757, 1757, 2971, 1753, 1758, 888, 1757, 865, 1757, 1758, 1758, 864, 855, 853, 1754, 1758, 852, 1758, 851, 1759, 1759, 850, 1759, 849, 848, 1755, 846, 845, 1760, 1760, 1759, 1760, 3236, 844, 1756, 1759, 1759, 2915, 843, 1760, 2915, 1759, 841, 1759, 1760, 1760, 3236, 3236, 2915, 1757, 1760, 3236, 1760, 1761, 1761, 840, 1761, 1762, 1762, 839, 1762, 1758, 838, 837, 1761, 836, 835, 824, 1762, 1761, 1761, 823, 1759, 1762, 1762, 1761, 817, 1761, 816, 1762, 815, 1762, 1763, 1763, 814, 1763, 810, 2695, 2695, 2695, 2695, 1764, 1764, 1763, 1764, 809, 808, 1760, 1763, 1763, 802, 801, 1764, 798, 1763, 2915, 1763, 1764, 1764, 2695, 761, 1762, 731, 1764, 722, 1764, 1765, 1765, 721, 1765, 1761, 2728, 2728, 2728, 2728, 1766, 1766, 1765, 1766, 711, 678, 649, 1765, 1765, 1763, 648, 1766, 645, 1765, 642, 1765, 1766, 1766, 2728, 641, 1767, 1767, 1766, 1767, 1766, 2778, 2778, 2778, 2778, 1768, 1768, 1767, 1768, 626, 1764, 594, 1767, 1767, 1769, 1769, 1768, 1769, 1767, 563, 1767, 1768, 1768, 2778, 562, 1769, 557, 1768, 1766, 1768, 1769, 1769, 1770, 1770, 1765, 1770, 1769, 555, 1769, 2631, 2631, 2631, 2631, 1770, 1771, 1771, 547, 1771, 1770, 1770, 2631, 541, 1767, 2974, 1770, 1771, 1770, 515, 2974, 2974, 1771, 1771, 511, 2974, 505, 1768, 1771, 476, 1771, 475, 1769, 1772, 1772, 465, 1772, 1773, 1773, 464, 1773, 2982, 463, 460, 1772, 458, 2982, 2982, 1773, 1772, 1772, 2982, 457, 1773, 1773, 1772, 455, 1772, 454, 1773, 442, 1773, 427, 1770, 1774, 1774, 423, 1774, 1775, 1775, 417, 1775, 416, 415, 413, 1774, 412, 3011, 1771, 1775, 1774, 1774, 3011, 3011, 1775, 1775, 1774, 3011, 1774, 410, 1775, 409, 1775, 1776, 1776, 408, 1776, 407, 406, 397, 396, 1772, 395, 393, 1776, 1777, 1777, 1773, 1777, 1776, 1776, 1843, 1843, 1843, 1843, 1776, 1777, 1776, 392, 1775, 1774, 1777, 1777, 390, 389, 1778, 1778, 1777, 1778, 1777, 388, 387, 386, 1843, 1775, 1843, 1778, 2632, 2632, 2632, 2632, 1778, 1778, 1779, 1779, 384, 1779, 1778, 2632, 1778, 371, 370, 2021, 1776, 1779, 2021, 369, 368, 367, 1779, 1779, 1780, 1780, 2021, 1780, 1779, 365, 1779, 2021, 2021, 1777, 338, 1780, 332, 2021, 331, 2021, 1780, 1780, 1778, 330, 1843, 327, 1780, 326, 1780, 324, 1781, 1781, 323, 1781, 1782, 1782, 2021, 1782, 3015, 322, 1779, 1781, 320, 3015, 3015, 1782, 1781, 1781, 3015, 319, 1782, 1782, 1781, 303, 1781, 293, 1782, 292, 1782, 1783, 1783, 291, 1783, 1780, 290, 1940, 1940, 1940, 1940, 282, 1783, 275, 1940, 233, 232, 1783, 1783, 1940, 229, 1784, 1784, 1783, 1784, 1783, 1940, 1940, 1940, 1940, 1785, 1785, 1784, 1785, 199, 1781, 194, 1784, 1784, 1786, 1786, 1785, 1786, 1784, 187, 1784, 1785, 1785, 183, 1782, 1786, 181, 1785, 152, 1785, 1786, 1786, 2415, 2415, 2415, 2415, 1786, 146, 1786, 142, 137, 1787, 1787, 2415, 1787, 1783, 2762, 2762, 2762, 2762, 128, 1784, 1787, 2762, 2415, 126, 1784, 1787, 1787, 118, 109, 1784, 1940, 1787, 107, 1787, 1788, 1788, 2762, 1788, 1785, 98, 1786, 2175, 2175, 2175, 2175, 1788, 1789, 1789, 89, 1789, 1788, 1788, 85, 78, 70, 3016, 1788, 1789, 1788, 63, 3016, 3016, 1789, 1789, 2175, 3016, 2175, 1787, 1789, 0, 1789, 1790, 1790, 0, 1790, 1791, 1791, 0, 1791, 3023, 2762, 0, 1790, 0, 3023, 3023, 1791, 1790, 1790, 3023, 0, 1791, 1791, 1790, 2762, 1790, 2175, 1791, 0, 1791, 2157, 2157, 2157, 2157, 0, 1788, 2160, 2160, 2160, 2160, 2228, 2228, 2228, 2228, 0, 0, 1789, 0, 2175, 0, 0, 2228, 2157, 0, 2157, 0, 0, 0, 2160, 0, 2160, 1791, 2228, 0, 2228, 0, 0, 0, 0, 1790, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1844, 1844, 1844, 1844, 1845, 1845, 1845, 1845, 1846, 1846, 1846, 1846, 1847, 1847, 1847, 1847, 1848, 1848, 1848, 1848, 0, 0, 1844, 0, 1844, 0, 1845, 0, 1845, 0, 1846, 0, 1846, 0, 1847, 0, 1847, 0, 1848, 0, 1848, 0, 0, 1849, 1849, 1849, 1849, 1850, 1850, 1850, 1850, 0, 0, 0, 1844, 1851, 1851, 1851, 1851, 2691, 2691, 2691, 2691, 1847, 1846, 1849, 0, 1849, 0, 1850, 2691, 1850, 2076, 2076, 1845, 2076, 0, 1851, 0, 1851, 0, 1848, 0, 2076, 0, 0, 0, 2282, 2076, 2076, 2282, 0, 0, 0, 2076, 0, 2076, 0, 2282, 0, 0, 1849, 0, 2282, 2282, 2692, 2692, 2692, 2692, 2282, 0, 2282, 0, 2076, 0, 0, 2692, 1850, 2282, 0, 0, 0, 0, 1851, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1938, 1938, 1938, 1938, 0, 0, 1941, 1941, 1941, 1941, 0, 1938, 1938, 1941, 0, 1938, 1938, 0, 1941, 0, 0, 0, 1938, 1938, 1938, 1941, 1941, 1941, 1941, 1952, 1952, 1952, 1952, 0, 0, 1953, 1953, 1953, 1953, 0, 1952, 1952, 0, 0, 1952, 2022, 1953, 1953, 2022, 1938, 1953, 1952, 1952, 1952, 0, 0, 2022, 1953, 1953, 0, 0, 2022, 2022, 2416, 2416, 2416, 2416, 2022, 0, 2022, 2159, 2159, 2159, 2159, 2416, 0, 0, 0, 1952, 0, 2747, 2747, 2747, 2747, 1953, 2416, 1941, 1945, 1945, 1945, 1945, 2747, 2159, 0, 2159, 0, 0, 2044, 1945, 1945, 2044, 0, 1945, 1945, 2481, 2481, 2481, 2481, 2044, 1945, 1945, 1945, 0, 2044, 2044, 2481, 2022, 2023, 0, 2044, 2023, 2044, 2159, 0, 0, 0, 2481, 0, 2023, 2792, 2792, 2792, 2792, 2023, 2023, 0, 1945, 0, 0, 2023, 2792, 2023, 0, 1945, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 2044, 0, 0, 1956, 1956, 1956, 1956, 1956, 1956, 2023, 0, 0, 2162, 2162, 2162, 2162, 2024, 0, 0, 2024, 2161, 2161, 2161, 2161, 0, 0, 0, 2024, 1956, 1956, 1956, 1956, 2024, 2024, 2162, 0, 2162, 0, 2024, 0, 2024, 0, 2161, 0, 2161, 0, 3024, 2163, 2163, 2163, 2163, 3024, 3024, 0, 0, 0, 3024, 0, 1956, 1956, 1956, 1956, 1963, 1963, 1963, 1963, 0, 0, 2024, 2163, 0, 2163, 2025, 1963, 1963, 2025, 2161, 1963, 0, 0, 0, 0, 2162, 2025, 1963, 1963, 1963, 0, 2025, 2025, 0, 0, 0, 0, 2025, 2917, 2025, 2027, 2917, 0, 2027, 2028, 2163, 0, 2028, 0, 2917, 0, 2027, 0, 0, 1963, 2028, 2027, 2027, 0, 1963, 2028, 2028, 2027, 0, 2027, 0, 2028, 2025, 2028, 0, 0, 0, 0, 0, 1963, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 0, 0, 0, 2005, 2005, 2005, 2005, 2005, 2005, 0, 2027, 2917, 2028, 0, 2507, 2507, 2507, 2507, 2166, 2166, 2166, 2166, 2031, 0, 0, 2031, 0, 0, 2005, 2005, 2005, 2005, 2033, 2031, 0, 2033, 2507, 0, 2031, 2031, 2166, 0, 2166, 2033, 2031, 0, 2031, 3026, 2033, 2033, 2005, 0, 3026, 3026, 2033, 0, 2033, 3026, 2005, 2005, 2005, 2005, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2031, 2166, 0, 2026, 2026, 2026, 2026, 2026, 2026, 2507, 2795, 2795, 2795, 2795, 0, 2033, 2894, 2894, 2894, 2894, 0, 2795, 2029, 0, 0, 2029, 0, 2894, 2026, 2026, 2026, 2026, 2026, 2029, 0, 0, 0, 0, 2029, 2029, 2030, 0, 0, 2030, 2029, 0, 2029, 0, 0, 0, 0, 2030, 2032, 0, 0, 2032, 2030, 2030, 2026, 2026, 2026, 2026, 2030, 2032, 2030, 0, 0, 0, 2032, 2032, 2036, 0, 0, 2036, 2032, 0, 2032, 0, 2029, 0, 0, 2036, 2841, 2841, 2841, 2841, 2036, 2036, 2037, 2841, 0, 2037, 2036, 0, 2036, 0, 2030, 2038, 0, 2037, 2038, 0, 0, 0, 2037, 2037, 2032, 0, 2038, 0, 2037, 0, 2037, 2038, 2038, 2039, 0, 3027, 2039, 2038, 0, 2038, 3027, 3027, 2036, 2040, 2039, 3027, 2040, 0, 0, 2039, 2039, 0, 0, 2041, 2040, 2039, 2041, 2039, 0, 2040, 2040, 2037, 0, 0, 2041, 2040, 2841, 2040, 0, 2041, 2041, 0, 0, 2042, 0, 2041, 2042, 2041, 0, 0, 2841, 0, 3032, 2043, 2042, 2038, 2043, 3032, 3032, 2042, 2042, 0, 3032, 2039, 2043, 2042, 0, 2042, 0, 2043, 2043, 2045, 0, 0, 2045, 2043, 0, 2043, 0, 2041, 3034, 2046, 2045, 2040, 2046, 3034, 3034, 2045, 2045, 0, 3034, 0, 2046, 2045, 0, 2045, 2047, 2046, 2046, 2047, 0, 0, 0, 2046, 0, 2046, 0, 2047, 2042, 0, 0, 2048, 2047, 2047, 2048, 0, 2043, 0, 2047, 0, 2047, 2049, 2048, 0, 2049, 0, 0, 2048, 2048, 0, 0, 2050, 2049, 2048, 2050, 2048, 0, 2049, 2049, 0, 0, 2045, 2050, 2049, 0, 2049, 2051, 2050, 2050, 2051, 0, 2046, 0, 2050, 0, 2050, 2052, 2051, 0, 2052, 0, 0, 2051, 2051, 0, 0, 2047, 2052, 2051, 3091, 2051, 2048, 2052, 2052, 3091, 3091, 0, 0, 2052, 3091, 2052, 2053, 0, 0, 2053, 0, 2832, 2832, 2832, 2832, 0, 2049, 2053, 2832, 0, 0, 2054, 2053, 2053, 2054, 2051, 2050, 0, 2053, 0, 2053, 2055, 2054, 2832, 2055, 2052, 0, 2054, 2054, 0, 0, 2056, 2055, 2054, 2056, 2054, 0, 2055, 2055, 0, 0, 0, 2056, 2055, 0, 2055, 2057, 2056, 2056, 2057, 0, 0, 0, 2056, 3092, 2056, 0, 2057, 2058, 3092, 3092, 2058, 2057, 2057, 3092, 0, 2053, 2054, 2057, 2058, 2057, 0, 0, 2059, 2058, 2058, 2059, 2055, 0, 0, 2058, 2832, 2058, 2060, 2059, 0, 2060, 0, 0, 2059, 2059, 0, 0, 0, 2060, 2059, 2056, 2059, 0, 2060, 2060, 2057, 0, 2061, 0, 2060, 2061, 2060, 0, 0, 0, 0, 0, 0, 2061, 0, 0, 0, 2062, 2061, 2061, 2062, 0, 0, 0, 2061, 0, 2061, 2058, 2062, 2059, 0, 0, 2063, 2062, 2062, 2063, 2060, 0, 0, 2062, 0, 2062, 2064, 2063, 0, 2064, 0, 0, 2063, 2063, 0, 0, 2065, 2064, 2063, 2065, 2063, 0, 2064, 2064, 2061, 0, 0, 2065, 2064, 0, 2064, 0, 2065, 2065, 0, 0, 2067, 0, 2065, 2067, 2065, 2164, 2164, 2164, 2164, 2070, 0, 2067, 2070, 0, 0, 2062, 2067, 2067, 0, 2063, 2070, 0, 2067, 0, 2067, 2070, 2070, 2164, 0, 2164, 0, 2070, 2065, 2070, 0, 0, 0, 0, 2064, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 0, 2067, 2070, 2066, 2066, 2066, 2066, 2066, 2066, 3104, 2068, 0, 0, 2068, 3104, 3104, 2164, 0, 0, 3104, 0, 2068, 2069, 0, 0, 2069, 2068, 2068, 2066, 2066, 2066, 2066, 2068, 2069, 2068, 0, 0, 0, 2069, 2069, 2071, 0, 0, 2071, 2069, 0, 2069, 0, 0, 0, 2066, 2071, 2072, 0, 0, 2072, 2071, 2071, 2066, 2066, 2066, 2066, 2071, 2072, 2071, 0, 2068, 2073, 2072, 2072, 2073, 0, 0, 0, 2072, 3105, 2072, 2069, 2073, 2074, 3105, 3105, 2074, 2073, 2073, 3105, 0, 0, 0, 2073, 2074, 2073, 0, 0, 0, 2074, 2074, 2077, 2077, 0, 2077, 2074, 0, 2074, 2072, 2071, 0, 0, 2077, 2078, 2078, 0, 2078, 2077, 2077, 0, 0, 0, 3106, 2077, 2078, 2077, 0, 3106, 3106, 2078, 2078, 2073, 3106, 0, 2074, 2078, 0, 2078, 2079, 2079, 0, 2079, 2080, 2080, 2714, 2080, 0, 0, 0, 2079, 2714, 2714, 0, 2080, 2079, 2079, 0, 2714, 2080, 2080, 2079, 0, 2079, 0, 2080, 2714, 2080, 2081, 2081, 2078, 2081, 0, 2077, 0, 0, 0, 2082, 2082, 2081, 2082, 0, 0, 0, 2081, 2081, 2083, 2083, 2082, 2083, 2081, 2079, 2081, 2082, 2082, 2080, 0, 2083, 0, 2082, 0, 2082, 2083, 2083, 2084, 2084, 0, 2084, 2083, 0, 2083, 0, 0, 2085, 2085, 2084, 2085, 2714, 0, 2714, 2084, 2084, 0, 0, 2085, 0, 2084, 0, 2084, 2085, 2085, 0, 0, 2081, 0, 2085, 0, 2085, 3108, 0, 2082, 0, 2083, 3108, 3108, 0, 2086, 2086, 3108, 2086, 0, 2372, 2372, 2372, 2372, 2088, 2088, 2086, 2088, 3114, 2084, 0, 2086, 2086, 3114, 3114, 2088, 2085, 2086, 3114, 2086, 2088, 2088, 2372, 0, 2372, 0, 2088, 0, 2088, 0, 0, 2090, 2090, 0, 2090, 2089, 2089, 0, 2089, 3172, 0, 0, 2090, 0, 3172, 3172, 2089, 2090, 2090, 3172, 0, 2089, 2089, 2090, 0, 2090, 0, 2089, 2088, 2089, 2086, 2087, 2087, 2087, 2087, 2087, 2087, 2087, 2087, 2087, 2087, 2087, 2087, 2087, 2087, 2087, 2087, 2087, 2087, 2087, 2087, 0, 0, 0, 2087, 2087, 2087, 2087, 2087, 2087, 2089, 2091, 2091, 0, 2091, 2168, 2168, 2168, 2168, 0, 0, 2090, 2091, 0, 0, 0, 0, 2091, 2091, 2087, 2087, 2087, 2087, 2091, 0, 2091, 0, 2168, 0, 2168, 0, 2092, 2092, 0, 2092, 2087, 0, 0, 0, 0, 0, 0, 2092, 2093, 2093, 0, 2093, 2092, 2092, 2087, 2087, 2087, 2087, 2092, 2093, 2092, 2168, 0, 0, 2093, 2093, 2091, 0, 2094, 2094, 2093, 2094, 2093, 0, 0, 0, 0, 2095, 2095, 2094, 2095, 0, 0, 0, 2094, 2094, 2096, 2096, 2095, 2096, 2094, 0, 2094, 2095, 2095, 0, 0, 2096, 0, 2095, 0, 2095, 2096, 2096, 2093, 0, 2092, 0, 2096, 0, 2096, 0, 2097, 2097, 0, 2097, 0, 0, 0, 0, 3173, 2098, 2098, 2097, 2098, 3173, 3173, 0, 2097, 2097, 3173, 0, 2098, 2094, 2097, 0, 2097, 2098, 2098, 0, 2095, 2099, 2099, 2098, 2099, 2098, 0, 0, 0, 0, 0, 0, 2099, 2096, 0, 0, 0, 2099, 2099, 2100, 2100, 0, 2100, 2099, 0, 2099, 0, 0, 2101, 2101, 2100, 2101, 0, 0, 0, 2100, 2100, 2102, 2102, 2101, 2102, 2100, 2097, 2100, 2101, 2101, 2103, 2103, 2102, 2103, 2101, 2098, 2101, 2102, 2102, 0, 0, 2103, 0, 2102, 0, 2102, 2103, 2103, 2104, 2104, 0, 2104, 2103, 0, 2103, 2099, 3186, 2105, 2105, 2104, 2105, 3186, 3186, 2100, 2104, 2104, 3186, 0, 2105, 0, 2104, 0, 2104, 2105, 2105, 0, 0, 2106, 2106, 2105, 2106, 2105, 2101, 0, 2103, 0, 0, 0, 2106, 2107, 2107, 2102, 2107, 2106, 2106, 0, 0, 0, 0, 2106, 2107, 2106, 2104, 0, 0, 2107, 2107, 2108, 2108, 0, 2108, 2107, 0, 2107, 2871, 2871, 2871, 2871, 2108, 2109, 2109, 2871, 2109, 2108, 2108, 0, 0, 2105, 0, 2108, 2109, 2108, 0, 2106, 0, 2109, 2109, 0, 0, 2110, 2110, 2109, 2110, 2109, 0, 0, 0, 0, 2111, 2111, 2110, 2111, 0, 0, 2107, 2110, 2110, 2112, 2112, 2111, 2112, 2110, 2108, 2110, 2111, 2111, 2113, 2113, 2112, 2113, 2111, 0, 2111, 2112, 2112, 2114, 2114, 2113, 2114, 2112, 2871, 2112, 2113, 2113, 2115, 2115, 2114, 2115, 2113, 2109, 2113, 2114, 2114, 0, 2871, 2115, 2110, 2114, 0, 2114, 2115, 2115, 2111, 0, 0, 0, 2115, 0, 2115, 2116, 2116, 3188, 2116, 3196, 0, 2112, 3188, 3188, 3196, 3196, 2116, 3188, 0, 3196, 0, 2116, 2116, 2119, 2119, 0, 2119, 2116, 0, 2116, 2114, 3228, 2113, 0, 2119, 0, 3228, 3228, 0, 2119, 2119, 3228, 0, 0, 3229, 2119, 3239, 2119, 2115, 3229, 3229, 3239, 3239, 0, 3229, 0, 3239, 2116, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 2117, 0, 2119, 0, 2117, 2117, 2117, 2117, 2117, 2117, 3240, 2118, 2118, 0, 2118, 3240, 3240, 0, 0, 0, 3240, 0, 2118, 2120, 2120, 0, 2120, 2118, 2118, 2117, 2117, 2117, 2117, 2118, 2120, 2118, 0, 0, 0, 2120, 2120, 2121, 2121, 0, 2121, 2120, 0, 2120, 0, 0, 0, 2117, 2121, 2122, 2122, 0, 2122, 2121, 2121, 2117, 2117, 2117, 2117, 2121, 2122, 2121, 0, 0, 0, 2122, 2122, 2118, 0, 2123, 2123, 2122, 2123, 2122, 2120, 0, 0, 0, 0, 0, 2123, 2124, 2124, 0, 2124, 2123, 2123, 0, 0, 2121, 3244, 2123, 2124, 2123, 0, 3244, 3244, 2124, 2124, 0, 3244, 2125, 2125, 2124, 2125, 2124, 2165, 2165, 2165, 2165, 3260, 0, 2125, 0, 2122, 3260, 3260, 2125, 2125, 0, 3260, 2123, 0, 2125, 0, 2125, 0, 0, 2165, 0, 2165, 2167, 2167, 2167, 2167, 2173, 2173, 2173, 2173, 0, 0, 2124, 2176, 2176, 2176, 2176, 0, 0, 0, 0, 0, 3261, 2125, 2167, 0, 2167, 3261, 3261, 2173, 0, 2173, 3261, 0, 0, 2165, 2176, 0, 2176, 2199, 2199, 2199, 2199, 0, 0, 3265, 2224, 2224, 2224, 2224, 3265, 3265, 0, 0, 0, 3265, 0, 2224, 2224, 0, 2173, 2224, 2167, 2229, 2229, 2229, 2229, 0, 2224, 2224, 2224, 0, 2173, 2176, 2229, 2173, 2173, 0, 2173, 0, 0, 0, 0, 2173, 0, 2229, 3266, 2229, 0, 0, 2176, 3266, 3266, 2199, 0, 2224, 3266, 3267, 2231, 2231, 2231, 2231, 3267, 3267, 0, 2199, 0, 3267, 2199, 2231, 2231, 2199, 0, 2231, 2224, 0, 2199, 0, 3268, 0, 2231, 2231, 2231, 3268, 3268, 0, 0, 0, 3268, 2231, 2229, 2236, 2236, 2236, 2236, 0, 0, 2242, 2242, 2242, 2242, 0, 2236, 2236, 0, 0, 2236, 2231, 2242, 2242, 0, 0, 2242, 2236, 2236, 2236, 0, 0, 0, 2242, 2242, 2242, 0, 2715, 2715, 2715, 2715, 0, 0, 0, 0, 0, 0, 0, 2715, 0, 2243, 2243, 2243, 2243, 2236, 2241, 2241, 2241, 2241, 2715, 2242, 2243, 2243, 0, 0, 2243, 2241, 2241, 0, 0, 2241, 0, 2243, 2243, 0, 0, 0, 2241, 2241, 2241, 0, 2283, 0, 0, 2283, 0, 2375, 2375, 2375, 2375, 2284, 0, 2283, 2284, 0, 0, 0, 2283, 2283, 2243, 0, 2284, 0, 2283, 2241, 2283, 2284, 2284, 2375, 2241, 2375, 0, 2284, 0, 2284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2241, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2283, 0, 0, 2262, 2262, 2262, 2262, 2262, 2262, 0, 0, 2375, 0, 2284, 0, 2319, 2319, 2319, 2319, 0, 0, 2275, 2275, 2275, 2275, 0, 2319, 0, 2262, 2262, 2262, 2262, 2275, 2275, 0, 0, 2275, 2319, 0, 2319, 0, 0, 0, 2275, 2275, 2275, 0, 2371, 2371, 2371, 2371, 2276, 2276, 2276, 2276, 0, 0, 0, 2262, 2262, 2262, 2262, 2276, 2276, 0, 2285, 2276, 0, 2285, 2371, 2275, 2371, 0, 2276, 2276, 0, 2285, 2286, 0, 0, 2286, 2285, 2285, 0, 0, 2646, 2275, 2285, 2286, 2285, 0, 2646, 2646, 2286, 2286, 0, 2646, 2646, 2646, 2286, 2276, 2286, 0, 0, 2287, 0, 2646, 2287, 0, 0, 0, 0, 2371, 0, 2288, 2287, 2276, 2288, 0, 2285, 2287, 2287, 0, 0, 2289, 2288, 2287, 2289, 2287, 0, 2288, 2288, 0, 0, 0, 2289, 2288, 0, 2288, 0, 2289, 2289, 2286, 0, 2290, 0, 2289, 2290, 2289, 0, 0, 0, 0, 2291, 0, 2290, 2291, 2646, 2287, 2646, 2290, 2290, 2292, 0, 2291, 2292, 2290, 0, 2290, 2291, 2291, 2294, 0, 2292, 2294, 2291, 0, 2291, 2292, 2292, 2295, 0, 2294, 2295, 2292, 2288, 2292, 2294, 2294, 0, 0, 2295, 0, 2294, 2289, 2294, 2295, 2295, 2290, 0, 2296, 0, 2295, 2296, 2295, 0, 0, 0, 0, 2297, 0, 2296, 2297, 2291, 0, 0, 2296, 2296, 0, 0, 2297, 0, 2296, 0, 2296, 2297, 2297, 0, 0, 2298, 2294, 2297, 2298, 2297, 2295, 0, 0, 2292, 2299, 0, 2298, 2299, 0, 0, 0, 2298, 2298, 2300, 0, 2299, 2300, 2298, 2296, 2298, 2299, 2299, 2301, 0, 2300, 2301, 2299, 0, 2299, 2300, 2300, 2297, 0, 2301, 0, 2300, 0, 2300, 2301, 2301, 2302, 0, 0, 2302, 2301, 0, 2301, 2298, 0, 2303, 0, 2302, 2303, 0, 0, 0, 2302, 2302, 2304, 0, 2303, 2304, 2302, 0, 2302, 2303, 2303, 2305, 0, 2304, 2305, 2303, 2299, 2303, 2304, 2304, 0, 2301, 2305, 2300, 2304, 0, 2304, 2305, 2305, 2306, 0, 0, 2306, 2305, 0, 2305, 0, 0, 0, 0, 2306, 0, 0, 0, 0, 2306, 2306, 0, 0, 2303, 0, 2306, 2302, 2306, 2308, 0, 0, 2308, 2309, 0, 0, 2309, 0, 0, 0, 2308, 0, 2305, 0, 2309, 2308, 2308, 2304, 0, 2309, 2309, 2308, 0, 2308, 0, 2309, 0, 2309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2306, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 0, 0, 2308, 2307, 2307, 2307, 2307, 2307, 2307, 0, 2309, 0, 2374, 2374, 2374, 2374, 0, 0, 0, 0, 0, 0, 2310, 0, 0, 2310, 0, 0, 2307, 2307, 2307, 2307, 2307, 2310, 2374, 0, 2374, 0, 2310, 2310, 2311, 0, 0, 2311, 2310, 0, 2310, 0, 0, 0, 0, 2311, 2312, 0, 0, 2312, 2311, 2311, 2307, 2307, 2307, 2307, 2311, 2312, 2311, 0, 0, 0, 2312, 2312, 2313, 0, 0, 2313, 2312, 2374, 2312, 0, 2310, 2314, 0, 2313, 2314, 0, 0, 0, 2313, 2313, 2315, 0, 2314, 2315, 2313, 0, 2313, 2314, 2314, 2311, 0, 2315, 0, 2314, 0, 2314, 2315, 2315, 2316, 0, 0, 2316, 2315, 0, 2315, 0, 0, 0, 2312, 2316, 0, 0, 0, 0, 2316, 2316, 2321, 2321, 2313, 2321, 2316, 0, 2316, 0, 0, 0, 0, 2321, 2322, 2322, 0, 2322, 2321, 2321, 2314, 0, 0, 0, 2321, 2322, 2321, 0, 0, 2315, 2322, 2322, 0, 2321, 2323, 2323, 2322, 2323, 2322, 0, 0, 0, 0, 0, 0, 2323, 2324, 2324, 0, 2324, 2323, 2323, 0, 0, 2316, 0, 2323, 2324, 2323, 0, 0, 0, 2324, 2324, 2325, 2325, 0, 2325, 2324, 0, 2324, 0, 0, 2326, 2326, 2325, 2326, 0, 2322, 0, 2325, 2325, 2327, 2327, 2326, 2327, 2325, 0, 2325, 2326, 2326, 0, 0, 2327, 0, 2326, 0, 2326, 2327, 2327, 2324, 0, 2323, 0, 2327, 0, 2327, 0, 2328, 2328, 0, 2328, 0, 0, 0, 0, 0, 2329, 2329, 2328, 2329, 0, 0, 0, 2328, 2328, 0, 0, 2329, 2325, 2328, 0, 2328, 2329, 2329, 0, 2860, 2330, 2330, 2329, 2330, 2329, 2860, 2860, 2326, 0, 0, 0, 2330, 2860, 0, 0, 2327, 2330, 2330, 2331, 2331, 2860, 2331, 2330, 0, 2330, 0, 0, 2332, 2332, 2331, 2332, 2328, 0, 0, 2331, 2331, 2333, 2333, 2332, 2333, 2331, 0, 2331, 2332, 2332, 2334, 2334, 2333, 2334, 2332, 0, 2332, 2333, 2333, 0, 2329, 2334, 0, 2333, 2330, 2333, 2334, 2334, 0, 0, 2335, 2335, 2334, 2335, 2334, 0, 2860, 2331, 2860, 2336, 2336, 2335, 2336, 0, 2332, 0, 2335, 2335, 2337, 2337, 2336, 2337, 2335, 0, 2335, 2336, 2336, 2333, 0, 2337, 0, 2336, 2334, 2336, 2337, 2337, 2338, 2338, 0, 2338, 2337, 0, 2337, 0, 0, 2339, 2339, 2338, 2339, 0, 0, 0, 2338, 2338, 2340, 2340, 2339, 2340, 2338, 0, 2338, 2339, 2339, 2341, 2341, 2340, 2341, 2339, 2335, 2339, 2340, 2340, 0, 2337, 2341, 2336, 2340, 0, 2340, 2341, 2341, 2342, 2342, 0, 2342, 2341, 0, 2341, 0, 0, 0, 0, 2342, 0, 0, 0, 0, 2342, 2342, 2343, 2343, 2339, 2343, 2342, 2338, 2342, 0, 0, 0, 0, 2343, 2344, 2344, 0, 2344, 2343, 2343, 0, 0, 2341, 0, 2343, 2344, 2343, 2340, 0, 0, 2344, 2344, 2345, 2345, 0, 2345, 2344, 0, 2344, 0, 0, 2346, 2346, 2345, 2346, 0, 0, 0, 2345, 2345, 2342, 0, 2346, 0, 2345, 0, 2345, 2346, 2346, 0, 0, 0, 0, 2346, 0, 2346, 2347, 2347, 0, 2347, 2344, 0, 2343, 0, 0, 2348, 2348, 2347, 2348, 0, 0, 0, 2347, 2347, 2349, 2349, 2348, 2349, 2347, 2345, 2347, 2348, 2348, 2350, 2350, 2349, 2350, 2348, 0, 2348, 2349, 2349, 0, 0, 2350, 2346, 2349, 0, 2349, 2350, 2350, 2373, 2373, 2373, 2373, 2350, 0, 2350, 2380, 2380, 2380, 2380, 2347, 0, 0, 0, 2413, 2413, 2413, 2413, 0, 0, 0, 2373, 0, 2373, 0, 2413, 2348, 0, 0, 2380, 0, 2380, 0, 0, 0, 2349, 2413, 0, 2413, 2414, 2414, 2414, 2414, 2417, 2417, 2417, 2417, 0, 0, 0, 2414, 2350, 0, 0, 2417, 2373, 0, 0, 0, 0, 2380, 2414, 0, 2414, 0, 2417, 0, 2417, 2419, 2419, 2419, 2419, 2380, 0, 0, 2380, 2380, 0, 2380, 2419, 0, 0, 0, 2380, 0, 2426, 2426, 2426, 2426, 0, 2419, 0, 2419, 0, 0, 0, 2426, 2426, 0, 2460, 2426, 0, 2460, 0, 0, 0, 2414, 2426, 2426, 2426, 2460, 2767, 2767, 2767, 2767, 2460, 2460, 0, 0, 0, 0, 2460, 2767, 2460, 2419, 0, 0, 0, 0, 0, 0, 0, 0, 2767, 2426, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2460, 0, 0, 2432, 2432, 2432, 2432, 2432, 2432, 0, 0, 0, 0, 0, 0, 0, 2482, 2482, 2482, 2482, 0, 0, 2453, 2453, 2453, 2453, 0, 2482, 2432, 2432, 2432, 2432, 2432, 2453, 2453, 0, 2709, 2453, 2482, 0, 2482, 0, 2709, 2709, 2453, 2453, 2453, 2709, 2709, 2709, 0, 0, 0, 0, 0, 0, 0, 2709, 2432, 2432, 2432, 2432, 2442, 2442, 2442, 2442, 0, 2454, 2454, 2454, 2454, 2453, 0, 2442, 2442, 0, 0, 2442, 2454, 2454, 2459, 0, 2454, 2459, 2442, 2442, 2442, 2453, 0, 2454, 2454, 2459, 0, 0, 0, 0, 2459, 2459, 0, 0, 0, 0, 2459, 2461, 2459, 0, 2461, 0, 2709, 0, 2709, 2442, 0, 0, 2461, 0, 2454, 0, 2442, 2461, 2461, 0, 2442, 0, 0, 2461, 2462, 2461, 0, 2462, 2442, 2459, 2454, 0, 2442, 2463, 0, 2462, 2463, 0, 0, 0, 2462, 2462, 2464, 0, 2463, 2464, 2462, 0, 2462, 2463, 2463, 2465, 0, 2464, 2465, 2463, 0, 2463, 2464, 2464, 0, 0, 2465, 0, 2464, 0, 2464, 2465, 2465, 0, 0, 2461, 0, 2465, 2467, 2465, 2462, 2467, 0, 0, 0, 0, 0, 0, 2468, 2467, 0, 2468, 0, 2463, 2467, 2467, 0, 2464, 2469, 2468, 2467, 2469, 2467, 0, 2468, 2468, 0, 0, 0, 2469, 2468, 0, 2468, 2470, 2469, 2469, 2470, 0, 0, 0, 2469, 0, 2469, 2471, 2470, 2465, 2471, 0, 0, 2470, 2470, 0, 0, 2472, 2471, 2470, 2472, 2470, 0, 2471, 2471, 2467, 2468, 2473, 2472, 2471, 2473, 2471, 0, 2472, 2472, 0, 0, 0, 2473, 2472, 0, 2472, 0, 2473, 2473, 2474, 0, 0, 2474, 2473, 2469, 2473, 0, 2470, 2475, 0, 2474, 2475, 0, 0, 0, 2474, 2474, 2471, 0, 2475, 0, 2474, 0, 2474, 2475, 2475, 0, 0, 0, 0, 2475, 0, 2475, 2476, 0, 0, 2476, 0, 0, 2472, 0, 0, 0, 2477, 2476, 0, 2477, 0, 2473, 2476, 2476, 0, 0, 2474, 2477, 2476, 0, 2476, 2478, 2477, 2477, 2478, 0, 0, 0, 2477, 0, 2477, 2479, 2478, 0, 2479, 0, 2475, 2478, 2478, 0, 0, 0, 2479, 2478, 0, 2478, 2480, 2479, 2479, 2480, 0, 0, 2476, 2479, 0, 2479, 0, 2480, 2486, 2486, 0, 2486, 2480, 2480, 0, 0, 0, 0, 2480, 2486, 2480, 2477, 0, 0, 2486, 2486, 0, 2478, 0, 0, 2486, 0, 2486, 0, 2487, 2487, 2479, 2487, 2488, 2488, 0, 2488, 0, 0, 0, 2487, 0, 0, 0, 2488, 2487, 2487, 2480, 0, 2488, 2488, 2487, 0, 2487, 2486, 2488, 0, 2488, 2489, 2489, 0, 2489, 2490, 2490, 0, 2490, 0, 0, 0, 2489, 0, 0, 0, 2490, 2489, 2489, 0, 0, 2490, 2490, 2489, 0, 2489, 0, 2490, 2487, 2490, 0, 2491, 2491, 0, 2491, 0, 0, 0, 0, 0, 0, 0, 2491, 0, 0, 0, 2488, 2491, 2491, 2492, 2492, 0, 2492, 2491, 0, 2491, 0, 2489, 0, 0, 2492, 2493, 2493, 0, 2493, 2492, 2492, 0, 0, 0, 0, 2492, 2493, 2492, 0, 2490, 0, 2493, 2493, 2768, 2768, 2768, 2768, 2493, 0, 2493, 0, 0, 2494, 2494, 2768, 2494, 0, 0, 2491, 0, 0, 2495, 2495, 2494, 2495, 2768, 0, 2492, 2494, 2494, 2496, 2496, 2495, 2496, 2494, 0, 2494, 2495, 2495, 2497, 2497, 2496, 2497, 2495, 0, 2495, 2496, 2496, 0, 0, 2497, 0, 2496, 2493, 2496, 2497, 2497, 0, 0, 2498, 2498, 2497, 2498, 2497, 0, 0, 0, 0, 2494, 0, 2498, 2499, 2499, 0, 2499, 2498, 2498, 2495, 0, 0, 0, 2498, 2499, 2498, 0, 0, 0, 2499, 2499, 2500, 2500, 0, 2500, 2499, 0, 2499, 0, 0, 2496, 0, 2500, 0, 0, 0, 2497, 2500, 2500, 2501, 2501, 0, 2501, 2500, 0, 2500, 0, 2498, 2502, 2502, 2501, 2502, 0, 0, 0, 2501, 2501, 0, 0, 2502, 0, 2501, 0, 2501, 2502, 2502, 0, 0, 2499, 0, 2502, 0, 2502, 2518, 2518, 2518, 2518, 2500, 2519, 2519, 2519, 2519, 0, 0, 0, 2547, 2547, 2547, 2547, 0, 2548, 2548, 2548, 2548, 2501, 2518, 2547, 2518, 0, 0, 2519, 2548, 2519, 0, 2502, 0, 0, 2547, 0, 2547, 0, 0, 2548, 0, 2548, 2549, 2549, 2549, 2549, 0, 2557, 2557, 2557, 2557, 0, 0, 2549, 0, 2518, 0, 0, 2557, 2557, 0, 2519, 2557, 0, 2549, 0, 2549, 0, 0, 2557, 2557, 2557, 0, 2548, 0, 2558, 2558, 2558, 2558, 0, 2769, 2769, 2769, 2769, 0, 0, 2558, 2558, 0, 2660, 2558, 2769, 2660, 0, 0, 0, 2557, 2558, 2558, 0, 2660, 0, 2769, 0, 0, 2660, 2660, 0, 0, 0, 2549, 2660, 0, 2660, 0, 0, 0, 0, 2660, 0, 0, 0, 0, 0, 2558, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2566, 2567, 2567, 2567, 2567, 0, 2568, 2568, 2568, 2568, 0, 0, 2567, 2567, 0, 0, 2567, 2568, 2568, 0, 0, 2568, 0, 2567, 2567, 2567, 0, 0, 2568, 2568, 2569, 2569, 2569, 2569, 0, 0, 2625, 2625, 2625, 2625, 0, 2569, 2569, 0, 0, 2569, 2586, 2625, 0, 2586, 2567, 0, 2569, 2569, 2569, 2568, 2587, 2586, 2625, 2587, 2625, 0, 2586, 2586, 0, 0, 2588, 2587, 2586, 2588, 2586, 0, 2587, 2587, 0, 0, 0, 2588, 2587, 2569, 2587, 0, 2588, 2588, 2569, 2586, 2590, 0, 2588, 2590, 2588, 0, 0, 0, 0, 2591, 0, 2590, 2591, 0, 0, 0, 2590, 2590, 2625, 0, 2591, 0, 2590, 0, 2590, 2591, 2591, 2592, 0, 0, 2592, 2591, 0, 2591, 2588, 0, 0, 2593, 2592, 2587, 2593, 0, 0, 2592, 2592, 0, 0, 0, 2593, 2592, 0, 2592, 2594, 2593, 2593, 2594, 2590, 0, 0, 2593, 0, 2593, 2595, 2594, 2591, 2595, 0, 0, 2594, 2594, 0, 0, 0, 2595, 2594, 0, 2594, 0, 2595, 2595, 2597, 2597, 0, 2597, 2595, 0, 2595, 0, 0, 2593, 0, 2597, 0, 0, 0, 2592, 2597, 2597, 2598, 2598, 0, 2598, 2597, 0, 2597, 0, 0, 2599, 2599, 2598, 2599, 0, 2594, 0, 2598, 2598, 0, 0, 2599, 2597, 2598, 0, 2598, 2599, 2599, 2600, 2600, 0, 2600, 2599, 0, 2599, 2595, 0, 2601, 2601, 2600, 2601, 0, 0, 0, 2600, 2600, 0, 0, 2601, 0, 2600, 0, 2600, 2601, 2601, 0, 0, 2598, 0, 2601, 0, 2601, 0, 0, 0, 2599, 0, 2626, 2626, 2626, 2626, 2634, 2634, 2634, 2634, 0, 0, 0, 2626, 0, 0, 2661, 2634, 2634, 2661, 0, 2634, 0, 2600, 2626, 0, 2626, 2661, 2634, 2634, 2634, 0, 2661, 2661, 2640, 2640, 2640, 2640, 2661, 0, 2661, 0, 2601, 0, 0, 2640, 2640, 0, 0, 2640, 2641, 2641, 2641, 2641, 2626, 2634, 2640, 2640, 2640, 0, 0, 2641, 2641, 0, 0, 2641, 0, 0, 2662, 0, 0, 2662, 2641, 2641, 0, 0, 0, 0, 0, 2662, 0, 0, 0, 2640, 2662, 2662, 2661, 0, 0, 0, 2662, 0, 2662, 0, 0, 0, 0, 0, 0, 2641, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2644, 2662, 0, 0, 2644, 2644, 2644, 2644, 2644, 2644, 0, 0, 0, 0, 0, 0, 0, 2686, 2686, 2686, 2686, 0, 2657, 2657, 2657, 2657, 0, 0, 2686, 2644, 2644, 2644, 2644, 2657, 2657, 0, 0, 2657, 0, 2686, 0, 2686, 0, 0, 2657, 2657, 2657, 2789, 2789, 2789, 2789, 0, 2663, 0, 0, 2663, 0, 0, 0, 2644, 2644, 2644, 2644, 2663, 2664, 0, 0, 2664, 2663, 2663, 2789, 2657, 2789, 0, 2663, 2664, 2663, 0, 0, 2665, 2664, 2664, 2665, 0, 0, 0, 2664, 2686, 2664, 0, 2665, 0, 0, 0, 0, 2665, 2665, 0, 0, 2666, 2666, 2665, 2666, 2665, 0, 0, 0, 0, 2663, 0, 2666, 0, 0, 0, 0, 2666, 2666, 2789, 0, 2667, 2667, 2666, 2667, 2666, 2789, 0, 0, 0, 2666, 0, 2667, 0, 0, 2664, 0, 2667, 2667, 2685, 2685, 2685, 2685, 2667, 0, 2667, 0, 0, 0, 0, 2685, 0, 0, 2698, 2698, 2698, 2698, 2665, 0, 0, 0, 2685, 0, 2685, 2698, 2698, 0, 0, 2698, 0, 2699, 2699, 2699, 2699, 0, 2698, 2698, 2698, 0, 0, 0, 2699, 2699, 0, 0, 2699, 0, 0, 0, 0, 0, 2685, 2699, 2699, 0, 0, 0, 2667, 2706, 2706, 2706, 2706, 2698, 2707, 2707, 2707, 2707, 0, 0, 2706, 2706, 0, 0, 2706, 2707, 2707, 0, 0, 2707, 2699, 2706, 2706, 2706, 0, 2731, 2707, 2707, 2731, 2857, 2857, 2857, 2857, 0, 0, 0, 2731, 0, 0, 0, 2857, 2731, 2731, 0, 0, 0, 0, 2731, 2706, 2731, 0, 2857, 0, 2707, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2711, 0, 0, 0, 0, 0, 2711, 2711, 0, 0, 0, 2711, 2711, 2711, 2724, 2724, 2724, 2724, 0, 0, 0, 2711, 0, 0, 2730, 2724, 2724, 2730, 2732, 2724, 0, 2732, 0, 0, 0, 2730, 2724, 2724, 2724, 2732, 2730, 2730, 0, 0, 2732, 2732, 2730, 0, 2730, 0, 2732, 2733, 2732, 0, 2733, 0, 0, 0, 0, 0, 2730, 0, 2733, 2724, 0, 0, 2734, 2733, 2733, 2734, 0, 0, 2711, 2733, 2711, 2733, 2735, 2734, 0, 2735, 0, 0, 2734, 2734, 0, 0, 0, 2735, 2734, 0, 2734, 0, 2735, 2735, 0, 0, 0, 2732, 2735, 0, 2735, 2736, 2736, 0, 2736, 2744, 2744, 2744, 2744, 0, 0, 0, 2736, 2858, 2858, 2858, 2858, 2736, 2736, 0, 0, 2733, 0, 2736, 2858, 2736, 0, 2737, 2737, 0, 2737, 0, 2735, 0, 0, 2858, 2734, 2736, 2737, 2751, 2751, 2751, 2751, 2737, 2737, 2752, 2752, 2752, 2752, 2737, 2751, 2737, 0, 0, 0, 0, 2752, 0, 0, 2744, 0, 2751, 2780, 2751, 0, 2780, 0, 2752, 0, 2752, 0, 2744, 0, 2780, 2744, 0, 0, 2744, 2780, 2780, 0, 0, 2744, 2737, 2780, 0, 2780, 0, 2874, 2874, 2874, 2874, 2780, 0, 0, 0, 0, 0, 0, 2874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2751, 2874, 2752, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2782, 0, 0, 2782, 2783, 0, 0, 2783, 0, 0, 0, 2782, 0, 0, 0, 2783, 2782, 2782, 0, 0, 2783, 2783, 2782, 0, 2782, 0, 2783, 2784, 2783, 0, 2784, 0, 0, 0, 0, 0, 2785, 2785, 2784, 2785, 0, 0, 0, 2784, 2784, 2786, 2786, 2785, 2786, 2784, 0, 2784, 2785, 2785, 0, 2783, 2786, 0, 2785, 0, 2785, 2786, 2786, 0, 0, 0, 2785, 2786, 0, 2786, 2782, 0, 2798, 2798, 2798, 2798, 0, 2800, 2800, 2800, 2800, 0, 2784, 2798, 2798, 0, 0, 2798, 2800, 0, 0, 0, 0, 0, 2798, 2798, 2798, 0, 0, 2800, 2786, 2800, 2801, 2801, 2801, 2801, 2817, 0, 0, 2817, 0, 0, 0, 2801, 0, 0, 2849, 2817, 0, 2849, 0, 2798, 2817, 2817, 2801, 0, 2801, 2849, 2817, 0, 2817, 0, 2849, 2849, 2884, 2884, 2884, 2884, 2849, 0, 2849, 0, 0, 2800, 0, 2884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2884, 0, 0, 0, 2817, 0, 0, 0, 0, 0, 0, 0, 2849, 0, 2801, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2805, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2809, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2827, 2827, 2827, 2827, 2836, 2836, 2836, 2836, 0, 0, 0, 2827, 0, 0, 0, 2836, 2836, 0, 0, 2836, 0, 0, 2827, 0, 2827, 0, 0, 2836, 2836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2827, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2830, 2830, 0, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2833, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2834, 2837, 2837, 2837, 2837, 0, 0, 0, 0, 0, 0, 0, 2837, 2837, 0, 0, 2837, 0, 0, 0, 0, 0, 0, 0, 2837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2837, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2856, 2863, 2863, 0, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2864, 2864, 2864, 2864, 0, 2865, 2865, 2865, 2865, 0, 0, 2864, 2864, 0, 0, 2864, 2865, 2865, 0, 0, 2865, 0, 2864, 2864, 2864, 0, 0, 2865, 2865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2864, 0, 0, 0, 0, 2865, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2869, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2883, 0, 0, 2883, 0, 0, 0, 0, 0, 0, 0, 2883, 0, 0, 0, 0, 2883, 2883, 2888, 2888, 2888, 2888, 2883, 0, 2883, 2889, 2889, 2889, 2889, 2888, 2888, 0, 0, 2888, 0, 2899, 2889, 2889, 2899, 0, 2889, 2888, 2888, 0, 0, 0, 2899, 0, 2889, 0, 0, 2899, 2899, 2923, 2923, 2923, 2923, 2899, 0, 2899, 0, 0, 0, 0, 2923, 2923, 0, 2888, 2923, 2883, 0, 0, 0, 0, 2889, 2923, 2923, 2923, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2923, 0, 0, 2899, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2926, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2927, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2928, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2929, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2930, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2931, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2933, 2933, 0, 0, 2933, 0, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 0, 2933, 2933, 2933, 2933, 2933, 2934, 2934, 0, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2935, 2935, 0, 2935, 2935, 0, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2937, 2937, 0, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 0, 2937, 2937, 2937, 0, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2938, 2938, 0, 0, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2939, 2939, 0, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 0, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 2940, 2940, 2940, 2940, 0, 2940, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2940, 0, 0, 0, 2940, 2940, 0, 0, 0, 2940, 0, 0, 2940, 2941, 2941, 0, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2942, 2942, 2942, 2942, 0, 0, 0, 2942, 2942, 0, 2942, 0, 0, 0, 2942, 2942, 2942, 2942, 0, 2942, 2942, 0, 0, 2942, 2942, 2943, 2943, 2943, 2943, 0, 2943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2943, 2943, 0, 0, 0, 2943, 2945, 0, 0, 2945, 0, 0, 0, 2945, 0, 0, 0, 2945, 2945, 0, 2945, 2945, 0, 2945, 0, 2945, 2945, 0, 0, 0, 2945, 2946, 2946, 2946, 2946, 0, 2946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2946, 0, 0, 0, 2946, 2946, 0, 0, 0, 2946, 0, 0, 2946, 2947, 2947, 2947, 2947, 0, 0, 0, 2947, 0, 0, 0, 0, 0, 0, 2947, 2947, 0, 2947, 0, 2947, 2947, 0, 0, 0, 2947, 2948, 2948, 2948, 2948, 0, 2948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2948, 2948, 0, 0, 0, 2948, 2949, 2949, 0, 2949, 0, 0, 0, 2949, 0, 0, 0, 2949, 2949, 0, 2949, 2949, 0, 2949, 0, 2949, 2949, 0, 0, 0, 2949, 2953, 2953, 0, 0, 0, 2953, 2953, 0, 0, 0, 2953, 2955, 0, 2955, 0, 0, 0, 0, 2955, 2955, 0, 0, 0, 2955, 2960, 2960, 0, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2961, 2961, 2961, 2961, 0, 2961, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2961, 0, 0, 0, 2961, 2961, 0, 0, 0, 2961, 0, 0, 2961, 2962, 2962, 2962, 2962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2962, 2962, 0, 2962, 0, 2962, 2962, 0, 0, 0, 2962, 2963, 2963, 2963, 2963, 0, 2963, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2963, 2963, 0, 0, 0, 2963, 2969, 0, 0, 2969, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2969, 2969, 0, 0, 0, 2969, 2969, 0, 0, 0, 2969, 2973, 2973, 0, 2973, 0, 2973, 2973, 0, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2976, 2976, 2976, 2976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2976, 2976, 0, 0, 0, 2976, 2976, 0, 0, 2976, 2976, 2977, 2977, 0, 2977, 2977, 0, 0, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 0, 2977, 2977, 2977, 2977, 2977, 2979, 2979, 0, 2979, 2979, 0, 0, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 0, 2979, 2979, 2979, 2979, 2979, 2980, 2980, 0, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2984, 2984, 0, 0, 0, 2984, 2984, 0, 0, 0, 2984, 2985, 2985, 0, 0, 2985, 0, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 0, 2985, 2985, 2985, 2985, 2985, 2986, 2986, 0, 2986, 2986, 0, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2988, 2988, 0, 2988, 2988, 2988, 2988, 2988, 2988, 2988, 0, 2988, 2988, 2988, 0, 2988, 2988, 2988, 2988, 2988, 2988, 2988, 2988, 2988, 2988, 2988, 2988, 2988, 2988, 2989, 2989, 0, 0, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2990, 2990, 0, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 0, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2992, 2992, 2992, 2992, 0, 0, 0, 2992, 2992, 0, 2992, 0, 0, 0, 2992, 2992, 2992, 2992, 0, 2992, 2992, 0, 0, 2992, 2992, 2993, 2993, 2993, 2993, 0, 2993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2993, 2993, 0, 0, 0, 2993, 2994, 2994, 0, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2995, 2995, 2995, 2995, 0, 2995, 0, 0, 2995, 2995, 0, 0, 0, 0, 0, 2995, 0, 0, 0, 2995, 2995, 0, 0, 0, 2995, 0, 0, 2995, 2997, 2997, 0, 2997, 2997, 0, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 0, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 0, 2997, 2997, 2998, 2998, 2998, 2998, 0, 2998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2998, 2998, 0, 0, 0, 2998, 2999, 2999, 2999, 2999, 0, 0, 0, 2999, 2999, 0, 2999, 0, 0, 0, 2999, 0, 2999, 2999, 0, 2999, 2999, 0, 0, 2999, 2999, 3000, 0, 0, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3000, 3000, 0, 3000, 0, 3000, 3000, 0, 0, 0, 3000, 3001, 0, 0, 3001, 0, 0, 0, 0, 0, 3001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3001, 3001, 0, 0, 0, 3001, 3002, 0, 0, 3002, 0, 0, 0, 3002, 0, 0, 0, 3002, 3002, 0, 3002, 3002, 0, 3002, 0, 3002, 3002, 0, 0, 0, 3002, 3003, 3003, 0, 3003, 3003, 3003, 3003, 3003, 0, 0, 3003, 3003, 3003, 3003, 3003, 3003, 3003, 3003, 0, 3003, 3003, 3003, 0, 3003, 0, 3003, 0, 0, 3003, 3005, 3005, 3005, 3005, 0, 0, 0, 3005, 0, 0, 0, 0, 0, 0, 3005, 3005, 0, 3005, 0, 3005, 3005, 0, 0, 0, 3005, 3006, 3006, 3006, 3006, 0, 3006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3006, 3006, 0, 0, 0, 3006, 3007, 3007, 0, 3007, 3007, 0, 3007, 3007, 0, 0, 3007, 3007, 3007, 3007, 0, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 0, 0, 3007, 3008, 3008, 3008, 3008, 0, 3008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3008, 3008, 0, 0, 0, 3008, 3009, 3009, 3009, 3009, 0, 0, 0, 3009, 0, 0, 0, 0, 0, 0, 3009, 0, 0, 0, 0, 3009, 3009, 0, 0, 0, 3009, 3010, 3010, 0, 3010, 0, 0, 0, 3010, 0, 0, 0, 3010, 3010, 0, 3010, 3010, 0, 3010, 0, 3010, 3010, 0, 0, 0, 3010, 3012, 3012, 0, 0, 0, 3012, 3012, 0, 0, 0, 3012, 3013, 0, 3013, 0, 0, 0, 0, 3013, 3013, 0, 0, 0, 3013, 3017, 3017, 0, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3019, 3019, 3019, 3019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3019, 3019, 0, 3019, 0, 3019, 3019, 0, 0, 0, 3019, 3020, 3020, 3020, 3020, 0, 3020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3020, 3020, 0, 0, 0, 3020, 3021, 3021, 0, 3021, 3021, 0, 3021, 3021, 3021, 3021, 3021, 3021, 0, 0, 0, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 0, 3021, 3021, 3022, 0, 0, 3022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3022, 0, 0, 3022, 0, 3022, 3022, 0, 0, 0, 3022, 3025, 0, 0, 3025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3025, 3025, 0, 0, 0, 3025, 3025, 0, 0, 0, 3025, 3028, 3028, 0, 3028, 0, 3028, 3028, 3028, 3028, 3028, 3028, 3028, 3028, 3028, 3028, 3028, 3028, 3028, 3028, 3028, 3028, 3028, 3028, 0, 3028, 3028, 3028, 3028, 3028, 3029, 3029, 0, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3029, 3030, 3030, 3030, 3030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3030, 3030, 0, 0, 0, 3030, 3030, 0, 0, 3030, 3030, 3031, 3031, 0, 3031, 3031, 0, 0, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 3031, 0, 3031, 3031, 3031, 3031, 3031, 3033, 3033, 0, 3033, 3033, 0, 0, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 0, 3033, 3033, 3033, 3033, 3033, 3035, 3035, 0, 0, 0, 3035, 3035, 0, 0, 0, 3035, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 0, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3036, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 0, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3040, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3042, 3042, 0, 0, 3042, 0, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 0, 3042, 3042, 3042, 3042, 3042, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3047, 3047, 0, 3047, 3047, 0, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3053, 3053, 0, 0, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3057, 3057, 0, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 0, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3059, 3059, 3059, 3059, 0, 0, 0, 0, 3059, 0, 3059, 0, 0, 0, 3059, 3059, 3059, 3059, 0, 3059, 3059, 0, 0, 3059, 3059, 3060, 3060, 3060, 3060, 0, 0, 0, 3060, 3060, 0, 3060, 0, 0, 0, 3060, 3060, 3060, 3060, 0, 3060, 3060, 0, 0, 3060, 3060, 3061, 3061, 3061, 3061, 0, 3061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3061, 3061, 0, 0, 0, 3061, 3062, 3062, 3062, 3062, 0, 0, 0, 0, 3062, 0, 3062, 0, 0, 0, 3062, 0, 3062, 3062, 0, 3062, 3062, 0, 0, 3062, 3062, 3063, 3063, 3063, 3063, 0, 3063, 0, 0, 3063, 3063, 0, 0, 0, 0, 0, 3063, 0, 0, 0, 3063, 3063, 0, 0, 0, 3063, 0, 0, 3063, 3064, 3064, 3064, 3064, 0, 3064, 0, 0, 3064, 0, 0, 0, 0, 0, 3064, 3064, 0, 0, 0, 3064, 3064, 0, 0, 0, 3064, 0, 0, 3064, 3065, 3065, 3065, 3065, 0, 3065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3065, 3065, 0, 0, 0, 3065, 3067, 3067, 3067, 3067, 0, 3067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3067, 0, 0, 0, 3067, 3067, 0, 0, 0, 3067, 0, 0, 3067, 3068, 3068, 3068, 3068, 0, 3068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3068, 0, 0, 0, 3068, 3068, 0, 0, 0, 3068, 0, 0, 3068, 3069, 3069, 0, 3069, 3069, 0, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 0, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 0, 3069, 3069, 3070, 3070, 0, 3070, 3070, 0, 3070, 3070, 3070, 3070, 3070, 3070, 0, 0, 0, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 0, 3070, 3070, 3071, 3071, 0, 3071, 3071, 0, 3071, 3071, 0, 0, 3071, 3071, 3071, 3071, 0, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 0, 0, 3071, 3072, 3072, 3072, 3072, 0, 0, 0, 3072, 3072, 0, 3072, 0, 0, 0, 3072, 0, 3072, 3072, 0, 3072, 3072, 0, 0, 3072, 3072, 3073, 0, 0, 3073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3073, 3073, 0, 3073, 0, 3073, 3073, 0, 0, 0, 3073, 3074, 0, 0, 3074, 0, 0, 0, 0, 0, 3074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3074, 3074, 0, 0, 0, 3074, 3075, 0, 0, 3075, 0, 0, 0, 0, 3075, 0, 0, 0, 0, 0, 3075, 0, 0, 0, 0, 3075, 3075, 0, 0, 0, 3075, 3076, 0, 0, 3076, 0, 3076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3076, 3076, 0, 0, 0, 3076, 3077, 3077, 0, 3077, 3077, 3077, 3077, 3077, 0, 0, 3077, 3077, 3077, 3077, 3077, 3077, 3077, 3077, 0, 3077, 3077, 3077, 0, 3077, 0, 3077, 0, 0, 3077, 3078, 0, 0, 3078, 0, 0, 0, 3078, 0, 0, 0, 3078, 3078, 0, 3078, 3078, 0, 3078, 0, 3078, 3078, 0, 0, 0, 3078, 3079, 3079, 3079, 3079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3079, 3079, 0, 0, 0, 3079, 3079, 0, 0, 0, 3079, 3080, 3080, 3080, 3080, 0, 3080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3080, 3080, 0, 0, 0, 3080, 3081, 0, 0, 3081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3081, 0, 0, 0, 0, 3081, 3081, 0, 0, 0, 3081, 3082, 3082, 3082, 3082, 0, 3082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3082, 0, 0, 0, 3082, 3082, 0, 0, 0, 3082, 0, 0, 3082, 3083, 3083, 3083, 3083, 0, 3083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3083, 0, 0, 0, 3083, 3083, 0, 0, 0, 3083, 0, 0, 3083, 3084, 3084, 0, 3084, 3084, 0, 3084, 3084, 0, 0, 3084, 3084, 3084, 3084, 0, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 0, 0, 3084, 3085, 3085, 3085, 3085, 0, 0, 0, 3085, 0, 0, 0, 0, 0, 0, 3085, 0, 0, 0, 0, 3085, 3085, 0, 0, 0, 3085, 3086, 3086, 0, 3086, 0, 0, 0, 3086, 0, 0, 0, 3086, 3086, 0, 3086, 3086, 0, 3086, 0, 3086, 3086, 0, 0, 0, 3086, 3088, 3088, 0, 0, 0, 3088, 3088, 0, 0, 0, 3088, 3090, 0, 3090, 0, 0, 0, 0, 3090, 3090, 0, 0, 0, 3090, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3094, 3095, 3095, 0, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3098, 3098, 3098, 3098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3098, 3098, 0, 3098, 0, 3098, 3098, 0, 0, 0, 3098, 3099, 3099, 3099, 3099, 0, 3099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3099, 0, 0, 0, 3099, 3099, 0, 0, 0, 3099, 0, 0, 3099, 3100, 3100, 3100, 3100, 0, 3100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3100, 0, 0, 0, 3100, 3100, 0, 0, 0, 3100, 0, 0, 3100, 3101, 3101, 3101, 3101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3101, 3101, 0, 3101, 0, 3101, 3101, 0, 0, 0, 3101, 3102, 3102, 0, 3102, 3102, 0, 3102, 3102, 3102, 3102, 3102, 3102, 0, 0, 0, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 0, 3102, 3102, 3103, 0, 0, 3103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3103, 0, 0, 3103, 0, 3103, 3103, 0, 0, 0, 3103, 3107, 3107, 0, 3107, 0, 3107, 3107, 3107, 3107, 3107, 3107, 3107, 3107, 3107, 3107, 3107, 3107, 3107, 3107, 3107, 3107, 3107, 3107, 0, 3107, 3107, 3107, 3107, 3107, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3111, 3111, 0, 3111, 3111, 0, 0, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 0, 3111, 3111, 3111, 3111, 3111, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3112, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 0, 3116, 3116, 3116, 0, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 0, 3119, 3119, 3119, 0, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3123, 3123, 0, 0, 3123, 0, 3123, 3123, 3123, 3123, 3123, 3123, 3123, 3123, 3123, 3123, 3123, 3123, 3123, 3123, 3123, 3123, 3123, 0, 3123, 3123, 3123, 3123, 3123, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3129, 3129, 0, 3129, 3129, 0, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3132, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3134, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 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, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3138, 3138, 0, 0, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3139, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3140, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3145, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3148, 3148, 3148, 3148, 0, 0, 0, 0, 3148, 0, 3148, 0, 0, 0, 3148, 3148, 3148, 3148, 0, 3148, 3148, 0, 0, 3148, 3148, 3149, 3149, 3149, 3149, 0, 0, 0, 3149, 3149, 0, 3149, 0, 0, 0, 3149, 3149, 3149, 3149, 0, 3149, 3149, 0, 0, 3149, 3149, 3150, 3150, 3150, 3150, 0, 0, 0, 0, 3150, 0, 3150, 0, 0, 0, 3150, 0, 3150, 3150, 0, 3150, 3150, 0, 0, 3150, 3150, 3152, 3152, 3152, 3152, 0, 3152, 0, 0, 3152, 0, 0, 0, 0, 0, 3152, 3152, 0, 0, 0, 3152, 3152, 0, 0, 0, 3152, 0, 0, 3152, 3153, 3153, 3153, 3153, 0, 3153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3153, 3153, 0, 0, 0, 3153, 3154, 3154, 3154, 3154, 0, 3154, 0, 0, 3154, 0, 0, 0, 0, 0, 3154, 3154, 0, 0, 0, 3154, 3154, 0, 0, 0, 3154, 0, 0, 3154, 3155, 3155, 3155, 3155, 0, 3155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3155, 0, 0, 0, 3155, 3155, 0, 0, 0, 3155, 0, 0, 3155, 3156, 3156, 3156, 3156, 0, 3156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3156, 3156, 0, 0, 0, 3156, 3157, 3157, 0, 3157, 3157, 0, 3157, 3157, 3157, 3157, 3157, 3157, 3157, 3157, 0, 3157, 3157, 3157, 3157, 3157, 3157, 3157, 3157, 3157, 3157, 3157, 0, 3157, 3157, 3158, 0, 0, 3158, 0, 0, 0, 0, 3158, 0, 0, 0, 0, 0, 3158, 0, 0, 0, 0, 3158, 3158, 0, 0, 0, 3158, 3159, 0, 0, 3159, 0, 3159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3159, 3159, 0, 0, 0, 3159, 3160, 0, 0, 3160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3160, 3160, 0, 3160, 0, 3160, 3160, 0, 0, 0, 3160, 3161, 0, 0, 3161, 0, 0, 0, 3161, 0, 0, 0, 3161, 3161, 0, 3161, 3161, 0, 3161, 0, 3161, 3161, 0, 0, 0, 3161, 3162, 3162, 0, 3162, 3162, 3162, 3162, 3162, 0, 0, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 0, 3162, 3162, 3162, 0, 3162, 0, 3162, 0, 0, 3162, 3163, 3163, 3163, 3163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3163, 3163, 0, 0, 0, 3163, 3163, 0, 0, 0, 3163, 3164, 0, 0, 3164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3164, 0, 0, 0, 0, 3164, 3164, 0, 0, 0, 3164, 3165, 3165, 3165, 3165, 0, 3165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3165, 0, 0, 0, 3165, 3165, 0, 0, 0, 3165, 0, 0, 3165, 3166, 3166, 3166, 3166, 0, 3166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3166, 3166, 0, 0, 0, 3166, 3167, 3167, 0, 3167, 0, 0, 0, 3167, 0, 0, 0, 3167, 3167, 0, 3167, 3167, 0, 3167, 0, 3167, 3167, 0, 0, 0, 3167, 3169, 3169, 0, 0, 0, 3169, 3169, 0, 0, 0, 3169, 3170, 3170, 0, 0, 0, 3170, 3170, 0, 0, 0, 3170, 3171, 0, 3171, 0, 0, 0, 0, 3171, 3171, 0, 0, 0, 3171, 3174, 3174, 0, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3175, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3182, 3182, 3182, 3182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3182, 3182, 0, 3182, 0, 3182, 3182, 0, 0, 0, 3182, 3184, 3184, 3184, 3184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3184, 3184, 0, 3184, 0, 3184, 3184, 0, 0, 0, 3184, 3185, 3185, 3185, 3185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3185, 3185, 0, 3185, 0, 3185, 3185, 0, 0, 0, 3185, 3187, 0, 0, 3187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3187, 0, 0, 0, 0, 3187, 3187, 0, 0, 0, 3187, 3189, 3189, 0, 3189, 0, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 0, 3189, 3189, 3189, 3189, 3189, 3190, 3190, 0, 3190, 3190, 0, 0, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 0, 3190, 3190, 3190, 3190, 3190, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3198, 3198, 0, 0, 0, 3198, 3198, 0, 0, 0, 3198, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3203, 3203, 0, 0, 3203, 0, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 0, 3203, 3203, 3203, 3203, 3203, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3206, 3206, 0, 3206, 3206, 0, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3212, 3212, 0, 0, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3216, 3217, 3217, 3217, 3217, 0, 0, 0, 3217, 3217, 0, 3217, 3217, 0, 0, 3217, 3217, 3217, 3217, 0, 3217, 3217, 0, 0, 3217, 3217, 3218, 3218, 3218, 3218, 0, 3218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3218, 0, 0, 0, 3218, 3218, 0, 0, 0, 3218, 0, 0, 3218, 3219, 3219, 3219, 3219, 0, 3219, 0, 0, 3219, 0, 0, 0, 0, 0, 3219, 3219, 0, 0, 0, 3219, 3219, 0, 0, 0, 3219, 0, 0, 3219, 3220, 3220, 3220, 3220, 0, 3220, 0, 0, 3220, 0, 0, 0, 0, 0, 3220, 3220, 0, 0, 0, 3220, 3220, 0, 0, 0, 3220, 0, 0, 3220, 3221, 3221, 3221, 3221, 0, 3221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3221, 3221, 0, 0, 0, 3221, 0, 0, 3221, 3222, 0, 0, 3222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3222, 3222, 0, 3222, 0, 3222, 3222, 0, 0, 0, 3222, 3223, 0, 0, 3223, 0, 0, 0, 3223, 0, 0, 0, 3223, 3223, 0, 3223, 3223, 0, 3223, 0, 3223, 3223, 0, 0, 0, 3223, 3224, 3224, 3224, 3224, 0, 3224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3224, 3224, 0, 0, 0, 3224, 0, 0, 3224, 3225, 3225, 0, 3225, 0, 0, 0, 3225, 0, 0, 0, 3225, 3225, 0, 3225, 3225, 0, 3225, 0, 3225, 3225, 0, 0, 0, 3225, 3226, 3226, 0, 0, 0, 3226, 3226, 0, 0, 0, 3226, 3227, 3227, 0, 0, 0, 3227, 3227, 0, 0, 0, 3227, 3230, 3230, 0, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3230, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3232, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3233, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3235, 3235, 3235, 3235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3235, 3235, 0, 3235, 0, 3235, 3235, 0, 0, 0, 3235, 3237, 3237, 3237, 3237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3237, 3237, 0, 3237, 0, 3237, 3237, 0, 0, 0, 3237, 3238, 3238, 3238, 3238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3238, 0, 3238, 0, 3238, 3238, 3238, 0, 0, 0, 3238, 3238, 3241, 3241, 0, 3241, 3241, 0, 0, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 0, 3241, 3241, 3241, 3241, 3241, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3245, 3245, 0, 0, 0, 3245, 3245, 0, 0, 0, 3245, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 0, 3248, 3248, 3248, 0, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3249, 3249, 3249, 3249, 0, 0, 0, 3249, 3249, 0, 3249, 0, 0, 0, 3249, 3249, 3249, 3249, 0, 3249, 3249, 0, 0, 3249, 3249, 3250, 3250, 3250, 3250, 0, 3250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3250, 3250, 0, 0, 0, 3250, 0, 0, 3250, 3252, 3252, 3252, 3252, 0, 0, 0, 3252, 0, 0, 0, 0, 0, 0, 3252, 3252, 0, 3252, 0, 3252, 3252, 0, 0, 0, 3252, 3253, 3253, 3253, 3253, 0, 3253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3253, 3253, 0, 0, 0, 3253, 3254, 0, 0, 3254, 0, 0, 0, 3254, 0, 0, 0, 3254, 3254, 0, 3254, 3254, 0, 3254, 0, 3254, 3254, 0, 0, 0, 3254, 3255, 3255, 3255, 3255, 0, 3255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3255, 3255, 0, 0, 0, 3255, 0, 0, 3255, 3256, 3256, 3256, 3256, 0, 0, 0, 3256, 0, 0, 0, 0, 0, 0, 3256, 3256, 0, 3256, 0, 3256, 3256, 0, 0, 0, 3256, 3257, 3257, 3257, 3257, 0, 3257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3257, 3257, 0, 0, 0, 3257, 3258, 3258, 0, 3258, 0, 0, 0, 3258, 0, 0, 0, 3258, 3258, 0, 3258, 3258, 0, 3258, 0, 3258, 3258, 0, 0, 0, 3258, 3259, 3259, 0, 0, 0, 3259, 3259, 0, 0, 0, 3259, 3263, 0, 0, 3263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3263, 3263, 0, 0, 0, 3263, 3263, 0, 0, 0, 3263, 3264, 3264, 3264, 3264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3264, 3264, 0, 3264, 0, 3264, 3264, 0, 0, 0, 3264, 3269, 3269, 3269, 3269, 0, 0, 0, 3269, 0, 0, 0, 0, 0, 0, 3269, 3269, 0, 3269, 0, 3269, 3269, 0, 0, 0, 3269, 3270, 3270, 0, 3270, 3270, 0, 3270, 3270, 0, 0, 3270, 3270, 3270, 3270, 0, 3270, 3270, 3270, 3270, 3270, 3270, 3270, 3270, 3270, 3270, 3270, 0, 0, 3270, 3271, 3271, 3271, 3271, 0, 3271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3271, 3271, 0, 0, 0, 3271, 3272, 3272, 3272, 3272, 0, 0, 0, 3272, 0, 0, 0, 0, 0, 0, 3272, 0, 0, 0, 0, 3272, 3272, 0, 0, 0, 3272, 3273, 3273, 3273, 3273, 0, 0, 0, 3273, 0, 0, 0, 0, 0, 0, 3273, 0, 0, 0, 0, 3273, 3273, 0, 0, 0, 3273, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 0, 3274, 3274, 3274, 3274, 0, 0, 3274, 3274, 3274, 3274, 3274, 3274, 3274, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 3275, 0, 3275, 3275, 3275, 3275, 0, 0, 3275, 3275, 3275, 0, 3275, 3275, 3275, 3276, 3276, 0, 3276, 3276, 0, 3276, 3276, 3276, 3276, 3276, 3276, 3276, 3276, 0, 3276, 3276, 3276, 3276, 3276, 3276, 3276, 3276, 3276, 3276, 3276, 0, 3276, 3276, 3277, 3277, 3277, 3277, 3277, 3277, 3277, 3277, 3277, 3277, 3277, 3277, 3277, 3277, 3277, 0, 3277, 3277, 3277, 3277, 0, 0, 3277, 3277, 3277, 0, 3277, 3277, 3277, 3278, 3278, 0, 3278, 3278, 0, 3278, 3278, 3278, 3278, 3278, 3278, 0, 0, 0, 3278, 3278, 3278, 3278, 3278, 3278, 3278, 3278, 3278, 3278, 3278, 0, 3278, 3278, 3279, 3279, 0, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3279, 3280, 3280, 0, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3280, 3281, 3281, 0, 3281, 3281, 0, 3281, 3281, 3281, 3281, 3281, 3281, 3281, 3281, 0, 3281, 3281, 3281, 3281, 3281, 3281, 3281, 3281, 3281, 3281, 3281, 0, 3281, 3281, 3282, 3282, 0, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3283, 3283, 0, 3283, 3283, 0, 3283, 3283, 3283, 3283, 3283, 3283, 0, 0, 0, 3283, 3283, 3283, 3283, 3283, 3283, 3283, 3283, 3283, 3283, 3283, 0, 3283, 3283, 3284, 3284, 0, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3285, 3285, 0, 3285, 3285, 0, 3285, 3285, 3285, 3285, 3285, 3285, 0, 0, 0, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 0, 3285, 3285, 3286, 3286, 0, 3286, 3286, 0, 3286, 3286, 3286, 3286, 3286, 3286, 3286, 3286, 0, 3286, 3286, 3286, 3286, 3286, 3286, 3286, 3286, 3286, 3286, 3286, 0, 3286, 3286, 3287, 3287, 0, 3287, 3287, 3287, 3287, 3287, 0, 0, 3287, 3287, 3287, 3287, 3287, 3287, 3287, 3287, 0, 3287, 3287, 3287, 0, 3287, 0, 3287, 0, 0, 3287, 3288, 0, 0, 3288, 0, 3288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3288, 3288, 0, 0, 0, 3288, 3289, 0, 0, 3289, 0, 0, 0, 0, 3289, 0, 0, 0, 0, 0, 3289, 0, 0, 0, 0, 3289, 3289, 0, 0, 0, 3289, 3290, 3290, 0, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924, 2924 } ; static yy_state_type yy_state_buf[YY_BUF_SIZE + 2], *yy_state_ptr; static char *yy_full_match; static int yy_lp; static int yy_looking_for_trail_begin = 0; static int yy_full_lp; static int *yy_full_state; #define YY_TRAILING_MASK 0x2000 #define YY_TRAILING_HEAD_MASK 0x4000 #define REJECT \ { \ *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ \ yy_cp = yy_full_match; /* restore poss. backed-over text */ \ yy_lp = yy_full_lp; /* restore orig. accepting pos. */ \ yy_state_ptr = yy_full_state; /* restore orig. state */ \ yy_current_state = *yy_state_ptr; /* restore curr. state */ \ ++yy_lp; \ goto find_rule; \ } #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "code.l" #define INITIAL 0 /****************************************************************************** * * * * Copyright (C) 1997-2007 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby * granted. No representations are made about the suitability of this software * for any purpose. It is provided "as is" without express or implied warranty. * See the GNU General Public License for more details. * * Documents produced by Doxygen are derivative works derived from the * input used in their production; they are not affected by this license. * */ #line 19 "code.l" /* * includes */ #include #include #include #include #include #include "qtbc.h" #include "entry.h" #include "doxygen.h" #include "message.h" #include "outputlist.h" #include "util.h" #include "membername.h" #include "searchindex.h" #define YY_NEVER_INTERACTIVE 1 // Toggle for some debugging info //#define DBG_CTX(x) fprintf x #define DBG_CTX(x) do { } while(0) #define CLASSBLOCK (int *)4 #define SCOPEBLOCK (int *)8 #define INNERBLOCK (int *)12 /* ----------------------------------------------------------------- * statics */ static CodeOutputInterface * g_code; static ClassSDict *g_codeClassSDict = 0; static QCString g_curClassName; static QStrList g_curClassBases; static QCString g_parmType; static QCString g_parmName; static const char * g_inputString; //!< the code fragment as text static int g_inputPosition; //!< read offset during parsing static int g_inputLines; //!< number of line in the code fragment static int g_yyLineNr; //!< current line number static bool g_needsTermination; static bool g_exampleBlock; static QCString g_exampleName; static QCString g_exampleFile; static bool g_insideTemplate = FALSE; static QCString g_type; static QCString g_name; static QCString g_args; static QCString g_classScope; static QCString g_realScope; static QStack g_scopeStack; //!< 1 if bracket starts a scope, // 2 for internal blocks static int g_anchorCount; static FileDef * g_sourceFileDef; static bool g_lineNumbers; static Definition * g_currentDefinition; static MemberDef * g_currentMemberDef; static bool g_includeCodeFragment; static const char * g_currentFontClass; static bool g_searchingForBody; static bool g_insideBody; static int g_bodyCurlyCount; static QCString g_saveName; static QCString g_saveType; static int g_bracketCount = 0; static int g_curlyCount = 0; static int g_sharpCount = 0; static bool g_inFunctionTryBlock = FALSE; static bool g_inForEachExpression = FALSE; static int g_lastTemplCastContext; static int g_lastSpecialCContext; static int g_lastStringContext; static int g_lastSkipCppContext; static int g_lastVerbStringContext; static int g_memCallContext; static int g_lastCContext; static bool g_insideObjC; static bool g_insideProtocolList; static bool g_lexInit = FALSE; static QStack g_classScopeLengthStack; // context for an Objective-C method call struct ObjCCallCtx { int id; QCString methodName; QCString objectTypeOrName; ClassDef *objectType; MemberDef *objectVar; MemberDef *method; QCString format; int lexState; int braceCount; }; // globals for objective-C method calls static ObjCCallCtx *g_currentCtx=0; static int g_currentCtxId=0; static int g_currentNameId=0; static int g_currentObjId=0; static int g_currentWordId=0; static QStack g_contextStack; static QIntDict g_contextDict; static QIntDict g_nameDict; static QIntDict g_objectDict; static QIntDict g_wordDict; static int g_braceCount=0; static void saveObjCContext(); static void restoreObjCContext(); //------------------------------------------------------------------- /*! Represents a stack of variable to class mappings as found in the * code. Each scope is enclosed in pushScope() and popScope() calls. * Variables are added by calling addVariables() and one can search * for variable using findVariable(). */ class VariableContext { public: static const ClassDef *dummyContext; class Scope : public SDict { public: Scope() : SDict(17) {} }; VariableContext() { m_scopes.setAutoDelete(TRUE); } virtual ~VariableContext() { } void pushScope() { m_scopes.append(new Scope); DBG_CTX((stderr,"** Push var context %d\n",m_scopes.count())); } void popScope() { if (m_scopes.count()>0) { DBG_CTX((stderr,"** Pop var context %d\n",m_scopes.count())); m_scopes.remove(m_scopes.count()-1); } else { DBG_CTX((stderr,"** ILLEGAL: Pop var context\n")); } } void clear() { m_scopes.clear(); m_globalScope.clear(); } void clearExceptGlobal() { DBG_CTX((stderr,"** Clear var context\n")); m_scopes.clear(); } void addVariable(const QCString &type,const QCString &name); ClassDef *findVariable(const QCString &name); int count() const { return m_scopes.count(); } private: Scope m_globalScope; QList m_scopes; }; void VariableContext::addVariable(const QCString &type,const QCString &name) { //printf("VariableContext::addVariable(%s,%s)\n",type.data(),name.data()); QCString ltype = type.simplifyWhiteSpace(); QCString lname = name.simplifyWhiteSpace(); if (ltype.left(7)=="struct ") { ltype = ltype.right(ltype.length()-7); } else if (ltype.left(6)=="union ") { ltype = ltype.right(ltype.length()-6); } if (ltype.isEmpty() || lname.isEmpty()) return; DBG_CTX((stderr,"** addVariable trying: type='%s' name='%s' g_currentDefinition=%s\n", ltype.data(),lname.data(),g_currentDefinition?g_currentDefinition->name().data():"")); Scope *scope = m_scopes.count()==0 ? &m_globalScope : m_scopes.getLast(); ClassDef *varType; int i=0; if ( (varType=g_codeClassSDict->find(ltype)) || // look for class definitions inside the code block (varType=getResolvedClass(g_currentDefinition,g_sourceFileDef,ltype)) // look for global class definitions ) { DBG_CTX((stderr,"** addVariable type='%s' name='%s'\n",ltype.data(),lname.data())); scope->append(lname,varType); // add it to a list } else if ((i=ltype.find('<'))!=-1) { // probably a template class QCString typeName(ltype.left(i)); ClassDef* newDef = 0; QCString templateArgs(ltype.right(ltype.length() - i)); if ( ( // look for class definitions inside the code block (varType=g_codeClassSDict->find(typeName)) || // otherwise look for global class definitions (varType=getResolvedClass(g_currentDefinition,g_sourceFileDef,typeName)) ) && // and it must be a template varType->templateArguments()) { newDef = varType->getVariableInstance( templateArgs ); } if (newDef) { DBG_CTX((stderr,"** addVariable type='%s' templ='%s' name='%s'\n",typeName.data(),templateArgs.data(),lname.data())); scope->append(lname, newDef); } else { // Doesn't seem to be a template. Try just the base name. addVariable(typeName,name); } } else { if (m_scopes.count()>0) // for local variables add a dummy entry so the name // is hidden to avoid false links to global variables with the same name // TODO: make this work for namespaces as well! { DBG_CTX((stderr,"** addVariable: dummy context for '%s'\n",lname.data())); scope->append(lname,dummyContext); } else { DBG_CTX((stderr,"** addVariable: not adding variable!\n")); } } } ClassDef *VariableContext::findVariable(const QCString &name) { if (name.isEmpty()) return 0; ClassDef *result = 0; QListIterator sli(m_scopes); Scope *scope; QCString key = name; // search from inner to outer scope for (sli.toLast();(scope=sli.current());--sli) { result = scope->find(key); if (result) { DBG_CTX((stderr,"** findVariable(%s)=%p\n",name.data(),result)); return result; } } // nothing found -> also try the global scope result=m_globalScope.find(name); DBG_CTX((stderr,"** findVariable(%s)=%p\n",name.data(),result)); return result; } static VariableContext g_theVarContext; const ClassDef *VariableContext::dummyContext = (ClassDef*)0x8; //------------------------------------------------------------------- class CallContext { public: struct Ctx { Ctx() : name(g_name), type(g_type), cd(0) {} QCString name; QCString type; ClassDef *cd; }; CallContext() { m_classList.append(new Ctx); m_classList.setAutoDelete(TRUE); } virtual ~CallContext() {} void setClass(ClassDef *cd) { Ctx *ctx = m_classList.getLast(); if (ctx) { DBG_CTX((stderr,"** Set call context %s (%p)\n",cd==0 ? "" : cd->name().data(),cd)); ctx->cd=cd; } } void pushScope() { m_classList.append(new Ctx); DBG_CTX((stderr,"** Push call context %d\n",m_classList.count())); } void popScope() { if (m_classList.count()>1) { DBG_CTX((stderr,"** Pop call context %d\n",m_classList.count())); Ctx *ctx = m_classList.getLast(); if (ctx) { g_name = ctx->name; g_type = ctx->type; } m_classList.removeLast(); } else { DBG_CTX((stderr,"** ILLEGAL: Pop call context\n")); } } void clear() { DBG_CTX((stderr,"** Clear call context\n")); m_classList.clear(); m_classList.append(new Ctx); } ClassDef *getClass() const { Ctx *ctx = m_classList.getLast(); if (ctx) return ctx->cd; else return 0; } private: QList m_classList; }; static CallContext g_theCallContext; //------------------------------------------------------------------- /*! add class/namespace name s to the scope */ static void pushScope(const char *s) { g_classScopeLengthStack.push(new int(g_classScope.length())); if (g_classScope.isEmpty()) { g_classScope = s; } else { g_classScope += "::"; g_classScope += s; } //printf("pushScope() result: `%s'\n",g_classScope.data()); } /*! remove the top class/namespace name from the scope */ static void popScope() { if (!g_classScopeLengthStack.isEmpty()) { int *pLength = g_classScopeLengthStack.pop(); g_classScope.truncate(*pLength); delete pLength; } else { //err("Error: Too many end of scopes found!\n"); } //printf("popScope() result: `%s'\n",g_classScope.data()); } static void setCurrentDoc(const QCString &name,const QCString &base,const QCString &anchor="") { static bool searchEngineEnabled=Config_getBool("SEARCHENGINE"); if (searchEngineEnabled) { Doxygen::searchIndex->setCurrentDoc(name,base,anchor); } } static void addToSearchIndex(const char *text) { static bool searchEngineEnabled=Config_getBool("SEARCHENGINE"); if (searchEngineEnabled) { Doxygen::searchIndex->addWord(text,FALSE); } } static void setClassScope(const QCString &name) { //printf("setClassScope(%s)\n",name.data()); QCString n=name; n=n.simplifyWhiteSpace(); int ts=n.find('<'); // start of template int te=n.findRev('>'); // end of template //printf("ts=%d te=%d\n",ts,te); if (ts!=-1 && te!=-1 && te>ts) { // remove template from scope n=n.left(ts)+n.right(n.length()-te-1); } g_classScope = n; //printf("--->New class scope `%s'\n",g_classScope.data()); } /*! start a new line of code, inserting a line number if g_sourceFileDef * is TRUE. If a definition starts at the current line, then the line * number is linked to the documentation of that definition. */ static void startCodeLine() { //if (g_currentFontClass) { g_code->endFontClass(); } if (g_sourceFileDef && g_lineNumbers) { //QCString lineNumber,lineAnchor; //lineNumber.sprintf("%05d",g_yyLineNr); //lineAnchor.sprintf("l%05d",g_yyLineNr); Definition *d = g_sourceFileDef->getSourceDefinition(g_yyLineNr); if (!g_includeCodeFragment && d) { g_currentDefinition = d; g_currentMemberDef = g_sourceFileDef->getSourceMember(g_yyLineNr); g_insideBody = FALSE; g_searchingForBody = TRUE; g_realScope = d->name().copy(); g_type.resize(0); g_name.resize(0); g_args.resize(0); g_parmType.resize(0); g_parmName.resize(0); //printf("Real scope: `%s'\n",g_realScope.data()); g_bodyCurlyCount = 0; QCString lineAnchor; lineAnchor.sprintf("l%05d",g_yyLineNr); if (g_currentMemberDef) { g_code->writeLineNumber(g_currentMemberDef->getReference(), g_currentMemberDef->getOutputFileBase(), g_currentMemberDef->anchor(),g_yyLineNr); setCurrentDoc( g_currentMemberDef->qualifiedName(), g_sourceFileDef->getSourceFileBase(), lineAnchor); } else if (d->isLinkableInProject()) { g_code->writeLineNumber(d->getReference(), d->getOutputFileBase(), 0,g_yyLineNr); setCurrentDoc( d->qualifiedName(), g_sourceFileDef->getSourceFileBase(), lineAnchor); } } else { g_code->writeLineNumber(0,0,0,g_yyLineNr); } } g_code->startCodeLine(); if (g_currentFontClass) { g_code->startFontClass(g_currentFontClass); } } static void endFontClass(); static void endCodeLine() { if (g_currentFontClass) { g_code->endFontClass(); } g_code->endCodeLine(); } /*! write a code fragment `text' that may span multiple lines, inserting * line numbers for each line. */ static void codifyLines(char *text) { //printf("codifyLines(%d,\"%s\")\n",g_yyLineNr,text); char *p=text,*sp=p; char c; bool done=FALSE; while (!done) { sp=p; while ((c=*p++) && c!='\n'); if (c=='\n') { g_yyLineNr++; *(p-1)='\0'; g_code->codify(sp); endCodeLine(); if (g_yyLineNrcodify(sp); done=TRUE; } } } /*! writes a link to a fragment \a text that may span multiple lines, inserting * line numbers for each line. If \a text contains newlines, the link will be * split into multiple links with the same destination, one for each line. */ static void writeMultiLineCodeLink(CodeOutputInterface &ol, const char *ref,const char *file, const char *anchor,const char *text, const char *tooltip) { bool done=FALSE; char *p=(char *)text; while (!done) { char *sp=p; char c; while ((c=*p++) && c!='\n'); if (c=='\n') { g_yyLineNr++; *(p-1)='\0'; //printf("writeCodeLink(%s,%s,%s,%s)\n",ref,file,anchor,sp); ol.writeCodeLink(ref,file,anchor,sp,tooltip); endCodeLine(); if (g_yyLineNrfind(name); if (nd) { g_sourceFileDef->addUsingDirective(nd); } } } static void setParameterList(MemberDef *md) { g_classScope = md->getClassDef() ? md->getClassDef()->name().data() : ""; LockingPtr al = md->argumentList(); if (al==0) return; Argument *a = al->first(); while (a) { g_parmName = a->name.copy(); g_parmType = a->type.copy(); int i = g_parmType.find('*'); if (i!=-1) g_parmType = g_parmType.left(i); i = g_parmType.find('&'); if (i!=-1) g_parmType = g_parmType.left(i); g_parmType.stripPrefix("const "); g_parmType=g_parmType.stripWhiteSpace(); g_theVarContext.addVariable(g_parmType,g_parmName); a = al->next(); } } static ClassDef *stripClassName(const char *s) { int pos=0; QCString type = s; QCString className; QCString templSpec; while (extractClassNameFromType(type,pos,className,templSpec)!=-1) { QCString clName=className+templSpec; ClassDef *cd=0; if (!g_classScope.isEmpty()) { cd=getResolvedClass(g_currentDefinition,g_sourceFileDef,g_classScope+"::"+clName); } if (cd==0) { cd=getResolvedClass(g_currentDefinition,g_sourceFileDef,clName); } //printf("stripClass trying `%s' = %p\n",clName.data(),cd); if (cd) { return cd; } } return 0; } static MemberDef *setCallContextForVar(const QCString &name) { if (name.isEmpty()) return 0; //fprintf(stderr,"setCallContextForVar(%s) g_classScope=%s\n",name.data(),g_classScope.data()); int scopeEnd = name.findRev("::"); if (scopeEnd!=-1) // name with explicit scope { QCString scope = name.left(scopeEnd); QCString locName = name.right(name.length()-scopeEnd-2); //printf("explicit scope: name=%s scope=%s\n",locName.data(),scope.data()); ClassDef *mcd = getClass(scope); // TODO: check namespace as well if (mcd && !locName.isEmpty()) { MemberDef *md=mcd->getMemberByName(locName); if (md) { //printf("name=%s scope=%s\n",locName.data(),scope.data()); g_theCallContext.setClass(stripClassName(md->typeString())); return md; } } } MemberName *mn; ClassDef *mcd = g_theVarContext.findVariable(name); if (mcd) // local variable { //fprintf(stderr,"local variable\n"); if (mcd!=VariableContext::dummyContext) { //fprintf(stderr,"local var `%s' mcd=%s\n",name.data(),mcd->name().data()); g_theCallContext.setClass(mcd); } } else { // look for a class member mcd = getClass(g_classScope); if (mcd) { //fprintf(stderr,"Inside class %s\n",mcd->name().data()); MemberDef *md=mcd->getMemberByName(name); if (md) { //fprintf(stderr,"Found member %s\n",md->name().data()); if (g_scopeStack.top()!=CLASSBLOCK) { //fprintf(stderr,"class member `%s' mcd=%s\n",name.data(),mcd->name().data()); g_theCallContext.setClass(stripClassName(md->typeString())); } return md; } } } // look for a global member if ((mn=Doxygen::functionNameSDict->find(name))) { //printf("global var `%s'\n",name.data()); if (mn->count()==1) // global defined only once { MemberDef *md=mn->getFirst(); if (!md->isStatic() || md->getBodyDef()==g_sourceFileDef) { g_theCallContext.setClass(stripClassName(md->typeString())); return md; } return 0; } else if (mn->count()>1) // global defined more than once { MemberDef *md=mn->first(); while (md) { //printf("mn=%p md=%p md->getBodyDef()=%p g_sourceFileDef=%p\n", // mn,md, // md->getBodyDef(),g_sourceFileDef); // in case there are multiple members we could link to, we // only link to members if defined in the same file or // defined as external. if (!md->isStatic() || md->getBodyDef()==g_sourceFileDef) { g_theCallContext.setClass(stripClassName(md->typeString())); //printf("returning member %s in source file %s\n",md->name().data(),g_sourceFileDef->name().data()); return md; } md=mn->next(); } return 0; } } return 0; } static void addDocCrossReference(MemberDef *src,MemberDef *dst) { static bool referencedByRelation = Config_getBool("REFERENCED_BY_RELATION"); static bool referencesRelation = Config_getBool("REFERENCES_RELATION"); static bool callerGraph = Config_getBool("CALLER_GRAPH"); static bool callGraph = Config_getBool("CALL_GRAPH"); if (dst->isTypedef() || dst->isEnumerate()) return; // don't add types //printf("addDocCrossReference src=%s,dst=%s\n",src->name().data(),dst->name().data()); if ((referencedByRelation || callerGraph) && (src->isFunction() || src->isSlot()) ) { dst->addSourceReferencedBy(src); MemberDef *mdDef = dst->memberDefinition(); if (mdDef) { mdDef->addSourceReferencedBy(src); } MemberDef *mdDecl = dst->memberDeclaration(); if (mdDecl) { mdDecl->addSourceReferencedBy(src); } } if ((referencesRelation || callGraph) && (src->isFunction() || src->isSlot()) ) { src->addSourceReferences(dst); MemberDef *mdDef = src->memberDefinition(); if (mdDef) { mdDef->addSourceReferences(dst); } MemberDef *mdDecl = src->memberDeclaration(); if (mdDecl) { mdDecl->addSourceReferences(dst); } } } static bool getLinkInScope(const QCString &c, // scope const QCString &m, // member const char *memberText, // exact text CodeOutputInterface &ol, const char *text ) { MemberDef *md; ClassDef *cd; FileDef *fd; NamespaceDef *nd; GroupDef *gd; //printf("getLinkInScope: trying `%s'::`%s'\n",c.data(),m.data()); if (getDefs(c,m,"()",md,cd,fd,nd,gd,FALSE,g_sourceFileDef) && md->isLinkable()) { //printf("Found!\n"); if (g_exampleBlock) { QCString anchor; anchor.sprintf("a%d",g_anchorCount); //printf("addExampleFile(%s,%s,%s)\n",anchor.data(),g_exampleName.data(), // g_exampleFile.data()); if (md->addExample(anchor,g_exampleName,g_exampleFile)) { ol.writeCodeAnchor(anchor); g_anchorCount++; } } Definition *d = md->getOuterScope()==Doxygen::globalScope ? md->getBodyDef() : md->getOuterScope(); if (md->getGroupDef()) d = md->getGroupDef(); //printf("d=%p linkable=%d\n",d,d?d->isLinkable():0); if (d && d->isLinkable()) { g_theCallContext.setClass(stripClassName(md->typeString())); //printf("g_currentDefinition=%p g_currentMemberDef=%p g_insideBody=%d\n", // g_currentDefinition,g_currentMemberDef,g_insideBody); if (g_currentDefinition && g_currentMemberDef && md!=g_currentMemberDef && g_insideBody) { addDocCrossReference(g_currentMemberDef,md); } //printf("d->getReference()=`%s' d->getOutputBase()=`%s' name=`%s' member name=`%s'\n",d->getReference().data(),d->getOutputFileBase().data(),d->name().data(),md->name().data()); ol.linkableSymbol(g_yyLineNr,md->name(),md, g_currentMemberDef ? g_currentMemberDef : g_currentDefinition); writeMultiLineCodeLink(ol,md->getReference(), md->getOutputFileBase(), md->anchor(), text ? text : memberText, md->briefDescriptionAsTooltip()); addToSearchIndex(text ? text : memberText); return TRUE; } } return FALSE; } static bool getLink(const char *className, const char *memberName, CodeOutputInterface &ol, const char *text=0) { //printf("getLink(%s,%s)\n",className,memberName); QCString m=removeRedundantWhiteSpace(memberName); QCString c=className; if (!getLinkInScope(c,m,memberName,ol,text)) { if (!g_curClassName.isEmpty()) { if (!c.isEmpty()) c.prepend("::"); c.prepend(g_curClassName); return getLinkInScope(c,m,memberName,ol,text); } return FALSE; } return TRUE; } static void generateClassOrGlobalLink(CodeOutputInterface &ol,char *clName, bool typeOnly=FALSE) { int i=0; if (*clName=='~') // correct for matching negated values i.s.o. destructors. { g_code->codify("~"); clName++; } QCString className=clName; if (className.isEmpty()) return; if (g_insideProtocolList) // for Obj-C { className+="-p"; } ClassDef *cd=0,*lcd=0; MemberDef *md=0; bool isLocal=FALSE; //printf("generateClassOrGlobalLink(className=%s)\n",className.data()); if ((lcd=g_theVarContext.findVariable(className))==0) // not a local variable { Definition *d = g_currentDefinition; //printf("d=%p g_sourceFileDef=%p\n",d,g_currentDefinition); cd = getResolvedClass(d,g_sourceFileDef,className,&md); //fprintf(stderr,"non-local variable name=%s context=%d cd=%s md=%s!\n", // className.data(),g_theVarContext.count(),cd?cd->name().data():"", // md?md->name().data():""); if (cd==0 && md==0 && (i=className.find('<'))!=-1) { QCString bareName = className.left(i); //stripTemplateSpecifiersFromScope(className); //fprintf(stderr,"bareName=%s\n",bareName.data()); if (bareName!=className) { cd=getResolvedClass(d,g_sourceFileDef,bareName,&md); // try unspecialized version } } //printf("md=%s\n",md?md->name().data():""); //fprintf(stderr,"is found as a type %s\n",cd?cd->name().data():""); if (cd==0 && md==0) // also see if it is variable or enum or enum value { if (getLink(g_classScope,clName,ol,clName)) { return; } } } else { //printf("local variable!\n"); if (lcd!=VariableContext::dummyContext) { //printf("non-dummy context lcd=%s!\n",lcd->name().data()); g_theCallContext.setClass(lcd); // to following is needed for links to a global variable, but is // no good for a link to a local variable that is also a global symbol. //if (getLink(g_classScope,clName,ol,clName)) //{ //return; //} } isLocal=TRUE; //fprintf(stderr,"is a local variable cd=%p!\n",cd); } if (cd && cd->isLinkable()) // is it a linkable class { //fprintf(stderr,"is linkable class %s\n",clName); if (g_exampleBlock) { QCString anchor; anchor.sprintf("_a%d",g_anchorCount); //printf("addExampleClass(%s,%s,%s)\n",anchor.data(),g_exampleName.data(), // g_exampleFile.data()); if (cd->addExample(anchor,g_exampleName,g_exampleFile)) { ol.writeCodeAnchor(anchor); g_anchorCount++; } } ol.linkableSymbol(g_yyLineNr,cd->name(),cd, g_currentMemberDef ? g_currentMemberDef : g_currentDefinition); writeMultiLineCodeLink(ol,cd->getReference(),cd->getOutputFileBase(),0,clName,cd->briefDescriptionAsTooltip()); addToSearchIndex(className); if (md) { Definition *d = md->getOuterScope()==Doxygen::globalScope ? md->getBodyDef() : md->getOuterScope(); if (md->getGroupDef()) d = md->getGroupDef(); if (d && d->isLinkable() && md->isLinkable() && g_currentMemberDef) { addDocCrossReference(g_currentMemberDef,md); } } } else // not a class, maybe a global member { //printf("class %s not linkable! cd=%p md=%p typeOnly=%d\n",clName,cd,md,typeOnly); if (!isLocal && (md!=0 || (cd==0 && !typeOnly))) // not a class, see if it is a global enum/variable/typedef. { if (md==0) // not found as a typedef { md = setCallContextForVar(clName); //printf("setCallContextForVar(%s) md=%p g_currentDefinition=%p\n",clName,md,g_currentDefinition); if (md && g_currentDefinition) { //fprintf(stderr,"%s accessible from %s? %d md->getOuterScope=%s\n", // md->name().data(),g_currentDefinition->name().data(), // isAccessibleFrom(g_currentDefinition,g_sourceFileDef,md), // md->getOuterScope()->name().data()); } if (md && g_currentDefinition && isAccessibleFrom(g_currentDefinition,g_sourceFileDef,md)==-1) { md=0; // variable not accessible } } if (md) { //printf("is a global md=%p g_currentDefinition=%s\n",md,g_currentDefinition?g_currentDefinition->name().data():""); if (md->isLinkable()) { ol.linkableSymbol(g_yyLineNr,md->name(),md, g_currentMemberDef ? g_currentMemberDef : g_currentDefinition); writeMultiLineCodeLink(ol,md->getReference(),md->getOutputFileBase(),md->anchor(),clName,md->briefDescriptionAsTooltip()); addToSearchIndex(clName); if (g_currentMemberDef) { addDocCrossReference(g_currentMemberDef,md); } return; } } } // nothing found, just write out the word ol.linkableSymbol(g_yyLineNr,clName,0, g_currentMemberDef?g_currentMemberDef:g_currentDefinition); codifyLines(clName); addToSearchIndex(clName); } } static bool generateClassMemberLink(CodeOutputInterface &ol,ClassDef *mcd,const char *memName) { if (mcd) { MemberDef *xmd = mcd->getMemberByName(memName); //printf("generateClassMemberLink(class=%s,member=%s)=%p\n",mcd->name().data(),memName,xmd); if (xmd) { // extract class definition of the return type in order to resolve // a->b()->c() like call chains //printf("type=`%s' args=`%s' class=%s\n", // xmd->typeString(),xmd->argsString(), // xmd->getClassDef()->name().data()); if (g_exampleBlock) { QCString anchor; anchor.sprintf("a%d",g_anchorCount); //printf("addExampleFile(%s,%s,%s)\n",anchor.data(),g_exampleName.data(), // g_exampleFile.data()); if (xmd->addExample(anchor,g_exampleName,g_exampleFile)) { ol.writeCodeAnchor(anchor); g_anchorCount++; } } ClassDef *typeClass = stripClassName(removeAnonymousScopes(xmd->typeString())); //fprintf(stderr,"%s -> typeName=%p\n",xmd->typeString(),typeClass); g_theCallContext.setClass(typeClass); Definition *xd = xmd->getOuterScope()==Doxygen::globalScope ? xmd->getBodyDef() : xmd->getOuterScope(); if (xmd->getGroupDef()) xd = xmd->getGroupDef(); if (xd) { //printf("g_currentDefiniton=%p g_currentMemberDef=%p xmd=%p g_insideBody=%d\n",g_currentDefinition,g_currentMemberDef,xmd,g_insideBody); if (xmd->templateMaster()) xmd = xmd->templateMaster(); // add usage reference if (g_currentDefinition && g_currentMemberDef && /*xmd!=g_currentMemberDef &&*/ g_insideBody) { addDocCrossReference(g_currentMemberDef,xmd); } // write the actual link ol.linkableSymbol(g_yyLineNr,xmd->name(),xmd, g_currentMemberDef ? g_currentMemberDef : g_currentDefinition); writeMultiLineCodeLink(ol,xmd->getReference(), xmd->getOutputFileBase(),xmd->anchor(),memName,xmd->briefDescriptionAsTooltip()); addToSearchIndex(memName); return TRUE; } } } return FALSE; } static void generateMemberLink(CodeOutputInterface &ol,const QCString &varName, char *memName) { //printf("generateMemberLink(object=%s,mem=%s) classScope=%s\n", // varName.data(),memName,g_classScope.data()); if (varName.isEmpty()) return; // look for the variable in the current context ClassDef *vcd = g_theVarContext.findVariable(varName); if (vcd) { if (vcd!=VariableContext::dummyContext) { //printf("Class found!\n"); if (getLink(vcd->name(),memName,ol)) { //printf("Found result!\n"); return; } if (vcd->baseClasses()) { BaseClassListIterator bcli(*vcd->baseClasses()); for ( ; bcli.current() ; ++bcli) { if (getLink(bcli.current()->classDef->name(),memName,ol)) { //printf("Found result!\n"); return; } } } } } else // variable not in current context, maybe it is in a parent context { vcd = getResolvedClass(g_currentDefinition,g_sourceFileDef,g_classScope); if (vcd && vcd->isLinkable()) { //printf("Found class %s for variable `%s'\n",g_classScope.data(),varName.data()); MemberName *vmn=Doxygen::memberNameSDict->find(varName); if (vmn==0) { int vi; QCString vn=varName; QCString scope; if ((vi=vn.findRev("::"))!=-1 || (vi=vn.findRev('.'))!=-1) // explicit scope A::b(), probably static member { ClassDef *jcd = getClass(vn.left(vi)); vn=vn.right(vn.length()-vi-2); vmn=Doxygen::memberNameSDict->find(vn); //printf("Trying name `%s' scope=%s\n",vn.data(),scope.data()); if (vmn) { MemberNameIterator vmni(*vmn); MemberDef *vmd; for (;(vmd=vmni.current());++vmni) { if (/*(vmd->isVariable() || vmd->isFunction()) && */ vmd->getClassDef()==jcd) { //printf("Found variable type=%s\n",vmd->typeString()); ClassDef *mcd=stripClassName(vmd->typeString()); if (mcd && mcd->isLinkable()) { if (generateClassMemberLink(ol,mcd,memName)) return; } } } } } } if (vmn) { //printf("There is a variable with name `%s'\n",varName); MemberNameIterator vmni(*vmn); MemberDef *vmd; for (;(vmd=vmni.current());++vmni) { if (/*(vmd->isVariable() || vmd->isFunction()) && */ vmd->getClassDef()==vcd) { //printf("Found variable type=%s\n",vmd->typeString()); ClassDef *mcd=stripClassName(vmd->typeString()); if (mcd && mcd->isLinkable()) { if (generateClassMemberLink(ol,mcd,memName)) return; } } } } } } // nothing found -> write result as is ol.linkableSymbol(g_yyLineNr,memName,0, g_currentMemberDef?g_currentMemberDef:g_currentDefinition); codifyLines(memName); addToSearchIndex(memName); return; } static void generateFunctionLink(CodeOutputInterface &ol,char *funcName) { //CodeClassDef *ccd=0; ClassDef *ccd=0; QCString locScope=g_classScope.copy(); QCString locFunc=removeRedundantWhiteSpace(funcName); //fprintf(stdout,"*** locScope=%s locFunc=%s\n",locScope.data(),locFunc.data()); int len=2; int i=locFunc.findRev("::"); if (i==-1) i=locFunc.findRev("."),len=1; if (i>0) { locScope=locFunc.left(i); locFunc=locFunc.right(locFunc.length()-i-len).stripWhiteSpace(); int ts=locScope.find('<'); // start of template int te=locScope.findRev('>'); // end of template //printf("ts=%d te=%d\n",ts,te); if (ts!=-1 && te!=-1 && te>ts) { // remove template from scope locScope=locScope.left(ts)+locScope.right(locScope.length()-te-1); } } //printf("generateFunctionLink(%s) classScope=`%s'\n",locFunc.data(),locScope.data()); if (!locScope.isEmpty() && (ccd=g_codeClassSDict->find(locScope))) { //printf("using classScope %s\n",g_classScope.data()); if (ccd->baseClasses()) { BaseClassListIterator bcli(*ccd->baseClasses()); for ( ; bcli.current() ; ++bcli) { if (getLink(bcli.current()->classDef->name(),locFunc,ol,funcName)) { return; } } } } if (!getLink(locScope,locFunc,ol,funcName)) { generateClassOrGlobalLink(ol,funcName); } return; } /*! counts the number of lines in the input */ static int countLines() { const char *p=g_inputString; char c; int count=1; while ((c=*p)) { p++ ; if (c=='\n') count++; } if (p>g_inputString && *(p-1)!='\n') { // last line does not end with a \n, so we add an extra // line and explicitly terminate the line after parsing. count++, g_needsTermination=TRUE; } return count; } static void endFontClass() { if (g_currentFontClass) { g_code->endFontClass(); g_currentFontClass=0; } } static void startFontClass(const char *s) { endFontClass(); g_code->startFontClass(s); g_currentFontClass=s; } //---------------------------------------------------------------------------- // recursively writes a linkified Objective-C method call static void writeObjCMethodCall(ObjCCallCtx *ctx) { if (ctx==0) return; if (ctx->methodName.isEmpty()) return; const char *p = ctx->format.data(); //printf("writeObjCMethodCall(%s) obj=%s method=%s\n", // ctx->format.data(),ctx->objectTypeOrName.data(),ctx->methodName.data()); char c; if (!ctx->objectTypeOrName.isEmpty() && ctx->objectTypeOrName.at(0)!='$') { //printf("Looking for object=%s method=%s\n",ctx->objectTypeOrName.data(), // ctx->methodName.data()); ClassDef *cd = g_theVarContext.findVariable(ctx->objectTypeOrName); if (cd==0) // not a local variable { if (ctx->objectTypeOrName=="self") { if (g_currentDefinition && g_currentDefinition->definitionType()==Definition::TypeClass) { ctx->objectType = (ClassDef *)g_currentDefinition; } } else { ctx->objectType = getResolvedClass( g_currentDefinition, g_sourceFileDef, ctx->objectTypeOrName, &ctx->method); } //printf(" object is class? %p\n",ctx->objectType); if (ctx->objectType) // found class { ctx->method = ctx->objectType->getMemberByName(ctx->methodName); //printf(" yes->method=%s\n",ctx->method?ctx->method->name().data():""); } else if (ctx->method==0) // search for class variable with the same name { //printf(" no\n"); //printf("g_currentDefinition=%p\n",g_currentDefinition); if (g_currentDefinition && g_currentDefinition->definitionType()==Definition::TypeClass) { ctx->objectVar = ((ClassDef *)g_currentDefinition)->getMemberByName(ctx->objectTypeOrName); //printf(" ctx->objectVar=%p\n",ctx->objectVar); if (ctx->objectVar) { ctx->objectType = stripClassName(ctx->objectVar->typeString()); //printf(" ctx->objectType=%p\n",ctx->objectType); if (ctx->objectType) { ctx->method = ctx->objectType->getMemberByName(ctx->methodName); //printf(" ctx->method=%p\n",ctx->method); } } } } } else // local variable { //printf(" object is local variable\n"); if (cd!=VariableContext::dummyContext) { ctx->method = cd->getMemberByName(ctx->methodName); //printf(" class=%p method=%p\n",cd,ctx->method); } } } //printf("["); while ((c=*p++)) // for each character in ctx->format { if (c=='$') { char nc=*p++; if (nc=='$') // escaped $ { g_code->codify("$"); } else // name fragment or reference to a nested call { if (nc=='n') // name fragment { nc=*p++; QCString refIdStr; while (nc!=0 && isdigit(nc)) { refIdStr+=nc; nc=*p++; } p--; int refId=refIdStr.toInt(); QCString *pName = g_nameDict.find(refId); if (pName) { if (ctx->method && ctx->method->isLinkable()) { g_code->linkableSymbol(g_yyLineNr,ctx->method->name(),ctx->method, g_currentMemberDef ? g_currentMemberDef : g_currentDefinition); writeMultiLineCodeLink(*g_code, ctx->method->getReference(), ctx->method->getOutputFileBase(), ctx->method->anchor(), pName->data(), ctx->method->briefDescriptionAsTooltip()); if (g_currentMemberDef) { addDocCrossReference(g_currentMemberDef,ctx->method); } } else { g_code->linkableSymbol(g_yyLineNr,pName->data(),0, g_currentMemberDef ? g_currentMemberDef : g_currentDefinition); codifyLines(pName->data()); } } else { //printf("Invalid name: id=%d\n",refId); } } else if (nc=='o') // reference to potential object name { nc=*p++; QCString refIdStr; while (nc!=0 && isdigit(nc)) { refIdStr+=nc; nc=*p++; } p--; int refId=refIdStr.toInt(); QCString *pObject = g_objectDict.find(refId); if (pObject) { if (*pObject=="self") { if (g_currentDefinition && g_currentDefinition->definitionType()==Definition::TypeClass) { ctx->objectType = (ClassDef *)g_currentDefinition; if (ctx->objectType->categoryOf()) { ctx->objectType = ctx->objectType->categoryOf(); } if (ctx->objectType) { ctx->method = ctx->objectType->getMemberByName(ctx->methodName); } } startFontClass("keyword"); codifyLines(pObject->data()); endFontClass(); } else if (*pObject=="super") { if (g_currentDefinition && g_currentDefinition->definitionType()==Definition::TypeClass) { ClassDef *cd = (ClassDef *)g_currentDefinition; if (cd->categoryOf()) { cd = cd->categoryOf(); } BaseClassList *bcd = cd->baseClasses(); if (bcd) // get direct base class (there should be only one) { BaseClassListIterator bli(*bcd); BaseClassDef *bclass; for (bli.toFirst();(bclass=bli.current());++bli) { if (bclass->classDef->compoundType()!=ClassDef::Protocol) { ctx->objectType = bclass->classDef; if (ctx->objectType) { ctx->method = ctx->objectType->getMemberByName(ctx->methodName); } } } } } startFontClass("keyword"); codifyLines(pObject->data()); endFontClass(); } else if (ctx->objectVar && ctx->objectVar->isLinkable()) // object is class variable { g_code->linkableSymbol(g_yyLineNr,ctx->objectVar->name(),ctx->objectVar, g_currentMemberDef ? g_currentMemberDef : g_currentDefinition); writeMultiLineCodeLink(*g_code, ctx->objectVar->getReference(), ctx->objectVar->getOutputFileBase(), ctx->objectVar->anchor(), pObject->data(), ctx->objectVar->briefDescriptionAsTooltip()); if (g_currentMemberDef) { addDocCrossReference(g_currentMemberDef,ctx->objectVar); } } else if (ctx->objectType && ctx->objectType!=VariableContext::dummyContext && ctx->objectType->isLinkable() ) // object is class name { ClassDef *cd = ctx->objectType; g_code->linkableSymbol(g_yyLineNr,cd->name(),cd, g_currentMemberDef ? g_currentMemberDef : g_currentDefinition); writeMultiLineCodeLink(*g_code, cd->getReference(), cd->getOutputFileBase(), 0, pObject->data(), cd->briefDescriptionAsTooltip()); } else // object still needs to be resolved { ClassDef *cd = getResolvedClass(g_currentDefinition, g_sourceFileDef, *pObject); if (cd && cd->isLinkable()) { if (ctx->objectType==0) ctx->objectType=cd; g_code->linkableSymbol(g_yyLineNr,cd->name(),cd, g_currentMemberDef ? g_currentMemberDef : g_currentDefinition); writeMultiLineCodeLink(*g_code, cd->getReference(), cd->getOutputFileBase(), 0, pObject->data(), cd->briefDescriptionAsTooltip()); } else { g_code->linkableSymbol(g_yyLineNr,pObject->data(),0, g_currentMemberDef ? g_currentMemberDef : g_currentDefinition); codifyLines(pObject->data()); } } } else { //printf("Invalid object: id=%d\n",refId); } } else if (nc=='c') // reference to nested call { nc=*p++; QCString refIdStr; while (nc!=0 && isdigit(nc)) { refIdStr+=nc; nc=*p++; } p--; int refId=refIdStr.toInt(); ObjCCallCtx *ictx = g_contextDict.find(refId); if (ictx) // recurse into nested call { writeObjCMethodCall(ictx); if (ictx->method) // link to nested call successfully { // get the ClassDef representing the method's return type if (QCString(ictx->method->typeString())=="id") { // see if the method name is unique, if so we link to it MemberName *mn=Doxygen::memberNameSDict->find(ctx->methodName); //printf("mn->count=%d ictx->method=%s ctx->methodName=%s\n", // mn==0?-1:(int)mn->count(), // ictx->method->name().data(), // ctx->methodName.data()); if (mn && mn->count()==1) // member name unique { ctx->method = mn->getFirst(); } } else { ctx->objectType = stripClassName(ictx->method->typeString()); if (ctx->objectType) { ctx->method = ctx->objectType->getMemberByName(ctx->methodName); } } //printf(" ***** method=%s -> object=%p\n",ictx->method->name().data(),ctx->objectType); } } else { //printf("Invalid context: id=%d\n",refId); } } else if (nc=='w') // some word { nc=*p++; QCString refIdStr; while (nc!=0 && isdigit(nc)) { refIdStr+=nc; nc=*p++; } p--; int refId=refIdStr.toInt(); QCString *pWord = g_wordDict.find(refId); if (pWord) { g_code->linkableSymbol(g_yyLineNr,pWord->data(),0, g_currentMemberDef ? g_currentMemberDef : g_currentDefinition); codifyLines(pWord->data()); } } else // illegal marker { ASSERT(!"invalid escape sequence"); } } } else // normal non-marker character { char s[2]; s[0]=c;s[1]=0; codifyLines(s); } } //printf("%s %s]\n",ctx->objectTypeOrName.data(),ctx->methodName.data()); //printf("}=(type='%s',name='%s')", // ctx->objectTypeOrName.data(), // ctx->methodName.data()); } // Replaces an Objective-C method name fragment s by a marker of the form // $n12, the number (12) can later be used as a key for obtaining the name // fragment, from g_nameDict static QCString escapeName(const char *s) { QCString result; result.sprintf("$n%d",g_currentNameId); g_nameDict.insert(g_currentNameId,new QCString(s)); g_currentNameId++; return result; } static QCString escapeObject(const char *s) { QCString result; result.sprintf("$o%d",g_currentObjId); g_objectDict.insert(g_currentObjId,new QCString(s)); g_currentObjId++; return result; } static QCString escapeWord(const char *s) { QCString result; result.sprintf("$w%d",g_currentWordId); g_wordDict.insert(g_currentWordId,new QCString(s)); g_currentWordId++; return result; } /* ----------------------------------------------------------------- */ #undef YY_INPUT #define YY_INPUT(buf,result,max_size) result=yyread(buf,max_size); static int yyread(char *buf,int max_size) { int c=0; while( c < max_size && g_inputString[g_inputPosition] ) { *buf = g_inputString[g_inputPosition++] ; c++; buf++; } return c; } #define SkipString 1 #define SkipVerbString 2 #define SkipCPP 3 #define SkipComment 4 #define SkipCxxComment 5 #define RemoveSpecialCComment 6 #define StripSpecialCComment 7 #define Body 8 #define FuncCall 9 #define MemberCall 10 #define MemberCall2 11 #define SkipInits 12 #define ClassName 13 #define PackageName 14 #define ClassVar 15 #define CppCliTypeModifierFollowup 16 #define Bases 17 #define SkipSharp 18 #define ReadInclude 19 #define TemplDecl 20 #define TemplCast 21 #define CallEnd 22 #define ObjCMethod 23 #define ObjCParams 24 #define ObjCParamType 25 #define ObjCCall 26 #define ObjCMName 27 #define ObjCSkipStr 28 #define OldStyleArgs 29 #define UsingName 30 /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap YY_PROTO(( void )); #else extern int yywrap YY_PROTO(( void )); #endif #endif #ifndef YY_NO_UNPUT static void yyunput YY_PROTO(( int c, char *buf_ptr )); #endif #ifndef yytext_ptr static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int )); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen YY_PROTO(( yyconst char * )); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput YY_PROTO(( void )); #else static int input YY_PROTO(( void )); #endif #endif #if YY_STACK_USED static int yy_start_stack_ptr = 0; static int yy_start_stack_depth = 0; static int *yy_start_stack = 0; #ifndef YY_NO_PUSH_STATE static void yy_push_state YY_PROTO(( int new_state )); #endif #ifndef YY_NO_POP_STATE static void yy_pop_state YY_PROTO(( void )); #endif #ifndef YY_NO_TOP_STATE static int yy_top_state YY_PROTO(( void )); #endif #else #define YY_NO_PUSH_STATE 1 #define YY_NO_POP_STATE 1 #define YY_NO_TOP_STATE 1 #endif #ifdef YY_MALLOC_DECL YY_MALLOC_DECL #else #if __STDC__ #ifndef __cplusplus #include #endif #else /* Just try to get by without declaring the routines. This will fail * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int) * or sizeof(void*) != sizeof(int). */ #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #define YY_READ_BUF_SIZE 8192 #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO (void) fwrite( yytext, yyleng, 1, yyout ) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( yy_current_buffer->yy_is_interactive ) \ { \ int c = '*', 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 if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \ && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); #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 /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL int yylex YY_PROTO(( void )) #endif /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK break; #endif #define YY_RULE_SETUP \ if ( yyleng > 0 ) \ yy_current_buffer->yy_at_bol = \ (yytext[yyleng - 1] == '\n'); \ YY_USER_ACTION YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 1698 "code.l" if ( yy_init ) { yy_init = 0; #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 ) yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); yy_load_buffer_state(); } while ( 1 ) /* loops until end-of-file is reached */ { 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_current_state += YY_AT_BOL(); yy_state_ptr = yy_state_buf; *yy_state_ptr++ = yy_current_state; yy_match: do { register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*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 >= 2925 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; *yy_state_ptr++ = yy_current_state; ++yy_cp; } while ( yy_base[yy_current_state] != 25460 ); yy_find_action: yy_current_state = *--yy_state_ptr; yy_lp = yy_accept[yy_current_state]; find_rule: /* we branch to this label when backing up */ for ( ; ; ) /* until we find what rule we matched */ { if ( yy_lp && yy_lp < yy_accept[yy_current_state + 1] ) { yy_act = yy_acclist[yy_lp]; if ( yy_act & YY_TRAILING_HEAD_MASK || yy_looking_for_trail_begin ) { if ( yy_act == yy_looking_for_trail_begin ) { yy_looking_for_trail_begin = 0; yy_act &= ~YY_TRAILING_HEAD_MASK; break; } } else if ( yy_act & YY_TRAILING_MASK ) { yy_looking_for_trail_begin = yy_act & ~YY_TRAILING_MASK; yy_looking_for_trail_begin |= YY_TRAILING_HEAD_MASK; yy_full_match = yy_cp; yy_full_state = yy_state_ptr; yy_full_lp = yy_lp; } else { yy_full_match = yy_cp; yy_full_state = yy_state_ptr; yy_full_lp = yy_lp; break; } ++yy_lp; goto find_rule; } --yy_cp; yy_current_state = *--yy_state_ptr; yy_lp = 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 1: YY_RULE_SETUP #line 1700 "code.l" YY_BREAK case 2: YY_RULE_SETUP #line 1701 "code.l" { startFontClass("preprocessor"); g_code->codify(yytext); BEGIN( ReadInclude ); } YY_BREAK case 3: YY_RULE_SETUP #line 1706 "code.l" { g_insideObjC=TRUE; startFontClass("keyword"); codifyLines(yytext); endFontClass(); if (!g_insideTemplate) BEGIN( ClassName ); } YY_BREAK case 4: YY_RULE_SETUP #line 1714 "code.l" { if (g_insideTemplate) REJECT; startFontClass("keyword"); codifyLines(yytext); endFontClass(); BEGIN( ClassName ); } YY_BREAK case 5: YY_RULE_SETUP #line 1721 "code.l" { if (g_insideTemplate) REJECT; startFontClass("keyword"); codifyLines(yytext); endFontClass(); } YY_BREAK case 6: YY_RULE_SETUP #line 1727 "code.l" { startFontClass("keyword"); codifyLines(yytext); endFontClass(); if (!g_insideTemplate) BEGIN( ClassName ); } YY_BREAK case 7: YY_RULE_SETUP #line 1734 "code.l" { startFontClass("keyword"); codifyLines(yytext); endFontClass(); BEGIN( PackageName ); } YY_BREAK case 8: YY_RULE_SETUP #line 1740 "code.l" { if (!g_insideObjC) REJECT; codifyLines(yytext); BEGIN(Body); } YY_BREAK case 9: YY_RULE_SETUP #line 1745 "code.l" { if (!g_insideObjC || g_insideBody) { g_code->codify(yytext); } else // Start of Objective-C method { //printf("Method!\n"); g_code->codify(yytext); BEGIN(ObjCMethod); } } YY_BREAK case 10: YY_RULE_SETUP #line 1757 "code.l" { g_code->codify(yytext); BEGIN(ObjCParams); } YY_BREAK case 11: YY_RULE_SETUP #line 1761 "code.l" { g_code->codify(yytext); BEGIN(ObjCParamType); } YY_BREAK case 12: YY_RULE_SETUP #line 1765 "code.l" { g_code->codify(yytext); if (*yytext=='{') { g_curlyCount++; if (g_searchingForBody) { g_searchingForBody=FALSE; g_insideBody=TRUE; } if (g_insideBody) g_bodyCurlyCount++; if (!g_curClassName.isEmpty()) // valid class name { pushScope(g_curClassName); DBG_CTX((stderr,"** scope stack push SCOPEBLOCK\n")); g_scopeStack.push(SCOPEBLOCK); } } g_type.resize(0); g_name.resize(0); BEGIN(Body); } YY_BREAK case 13: YY_RULE_SETUP #line 1787 "code.l" { g_code->codify(yytext); } YY_BREAK case 14: YY_RULE_SETUP #line 1790 "code.l" { startFontClass("keywordtype"); g_code->codify(yytext); endFontClass(); g_parmType=yytext; } YY_BREAK case 15: YY_RULE_SETUP #line 1796 "code.l" { generateClassOrGlobalLink(*g_code,yytext); g_parmType=yytext; } YY_BREAK case 16: YY_RULE_SETUP #line 1800 "code.l" { g_code->codify(yytext); BEGIN(ObjCParams); } YY_BREAK case 17: YY_RULE_SETUP #line 1804 "code.l" { g_code->linkableSymbol(g_yyLineNr,yytext,0, g_currentMemberDef?g_currentMemberDef:g_currentDefinition); g_code->codify(yytext); g_parmName=yytext; g_theVarContext.addVariable(g_parmType,g_parmName); g_parmType.resize(0);g_parmName.resize(0); } YY_BREAK case 18: YY_RULE_SETUP #line 1812 "code.l" { generateClassOrGlobalLink(*g_code,yytext); } YY_BREAK case 19: YY_RULE_SETUP #line 1815 "code.l" { g_code->codify(yytext); } YY_BREAK case 20: YY_RULE_SETUP #line 1818 "code.l" { codifyLines(yytext); } YY_BREAK case 21: YY_RULE_SETUP #line 1821 "code.l" { //FileInfo *f; bool ambig; bool found=FALSE; FileDef *fd=0; //printf("looking for include %s\n",yytext); if ((fd=findFileDef(Doxygen::inputNameDict,yytext,ambig)) && fd->isLinkable()) { if (ambig) // multiple input files match the name { //printf("===== yes %s is ambigious\n",yytext); QCString name = convertToQCString(QDir::cleanDirPath(yytext)); if (!name.isEmpty() && g_sourceFileDef) { FileName *fn = Doxygen::inputNameDict->find(name); if (fn) { FileNameIterator fni(*fn); // for each include name for (fni.toFirst();!found && (fd=fni.current());++fni) { // see if this source file actually includes the file found = g_sourceFileDef->isIncluded(fd->absFilePath()); //printf(" include file %s found=%d\n",fd->absFilePath().data(),found); } } } } else // not ambiguous { found = TRUE; } } if (found) { //printf(" include file %s found=%d\n",fd->absFilePath().data(),found); g_code->writeCodeLink(fd->getReference(),fd->getOutputFileBase(),0,yytext,fd->briefDescriptionAsTooltip()); } else { g_code->codify(yytext); } char c=yyinput(); QCString text; text+=c; g_code->codify(text); endFontClass(); BEGIN( Body ); } YY_BREAK case 22: YY_RULE_SETUP #line 1871 "code.l" { startFontClass("preprocessor"); g_lastSkipCppContext = YY_START; g_code->codify(yytext); BEGIN( SkipCPP ) ; } YY_BREAK case 23: YY_RULE_SETUP #line 1877 "code.l" { g_code->codify(yytext); } YY_BREAK case 24: YY_RULE_SETUP #line 1880 "code.l" { codifyLines(yytext); } YY_BREAK case 25: YY_RULE_SETUP #line 1883 "code.l" { g_code->codify(yytext); } YY_BREAK case 26: YY_RULE_SETUP #line 1886 "code.l" { g_theVarContext.pushScope(); DBG_CTX((stderr,"** scope stack push INNERBLOCK\n")); g_scopeStack.push(INNERBLOCK); if (g_searchingForBody) { g_searchingForBody=FALSE; g_insideBody=TRUE; } g_code->codify(yytext); g_curlyCount++; if (g_insideBody) { g_bodyCurlyCount++; } g_type.resize(0); g_name.resize(0); BEGIN( Body ); } YY_BREAK case 27: YY_RULE_SETUP #line 1907 "code.l" { g_theVarContext.popScope(); g_type.resize(0); g_name.resize(0); int *scope = g_scopeStack.pop(); DBG_CTX((stderr,"** scope stack pop SCOPEBLOCK=%d\n",scope==SCOPEBLOCK)); if (scope==SCOPEBLOCK || scope==CLASSBLOCK) { popScope(); } g_code->codify(yytext); //fprintf(stderr,"g_bodyCurlyCount=%d\n",g_bodyCurlyCount); if (--g_bodyCurlyCount<=0) { g_insideBody=FALSE; g_currentMemberDef=0; if (g_currentDefinition) g_currentDefinition=g_currentDefinition->getOuterScope(); } BEGIN(Body); } YY_BREAK case 28: YY_RULE_SETUP #line 1931 "code.l" { //printf("End of objc scope fd=%s\n",g_sourceFileDef->name().data()); if (g_sourceFileDef) { FileDef *fd=g_sourceFileDef; g_insideObjC = fd->name().lower().right(2)==".m" || fd->name().lower().right(3)==".mm"; //printf("insideObjC=%d\n",g_insideObjC); } else { g_insideObjC = FALSE; } if (g_insideBody) { g_theVarContext.popScope(); int *scope = g_scopeStack.pop(); DBG_CTX((stderr,"** scope stack pop SCOPEBLOCK=%d\n",scope==SCOPEBLOCK)); if (scope==SCOPEBLOCK || scope==CLASSBLOCK) { popScope(); } g_insideBody=FALSE; } startFontClass("keyword"); g_code->codify(yytext); endFontClass(); g_currentMemberDef=0; if (g_currentDefinition) g_currentDefinition=g_currentDefinition->getOuterScope(); BEGIN(Body); } YY_BREAK case 29: YY_RULE_SETUP #line 1966 "code.l" { g_code->codify(yytext); g_searchingForBody=FALSE; BEGIN( Body ); } YY_BREAK case 30: YY_RULE_SETUP #line 1971 "code.l" { g_type=g_curClassName.copy(); g_name.resize(0); g_code->codify(yytext); BEGIN( Body ); // variable of type struct * } YY_BREAK case 31: YY_RULE_SETUP #line 1977 "code.l" { startFontClass("keyword"); g_code->codify(yytext); endFontClass(); } YY_BREAK case 32: YY_RULE_SETUP #line 1982 "code.l" { g_curClassName=yytext; addType(); generateClassOrGlobalLink(*g_code,yytext); BEGIN( ClassVar ); } YY_BREAK case 33: YY_RULE_SETUP #line 1988 "code.l" { g_curClassName=yytext; g_curClassName=substitute(g_curClassName,".","::"); //printf("found package: %s\n",g_curClassName.data()); addType(); codifyLines(yytext); } YY_BREAK case 34: YY_RULE_SETUP #line 1995 "code.l" { unput(*yytext); BEGIN( Body ); } YY_BREAK case 35: YY_RULE_SETUP #line 1999 "code.l" { // Java startFontClass("keyword"); codifyLines(yytext); endFontClass(); g_curClassBases.clear(); BEGIN( Bases ); } YY_BREAK case 36: YY_RULE_SETUP #line 2006 "code.l" { //fprintf(stderr,"***** C++/CLI modifier %s on g_curClassName=%s\n",yytext,g_curClassName.data()); startFontClass("keyword"); codifyLines(yytext); endFontClass(); BEGIN( CppCliTypeModifierFollowup ); } YY_BREAK case 37: YY_RULE_SETUP #line 2013 "code.l" { g_type = g_curClassName.copy(); g_name = yytext; if (g_insideBody) { g_theVarContext.addVariable(g_type,g_name); } generateClassOrGlobalLink(*g_code,yytext); } YY_BREAK case 38: YY_RULE_SETUP #line 2022 "code.l" { codifyLines(yytext); g_curClassBases.clear(); BEGIN( Bases ); } YY_BREAK case 39: #line 2028 "code.l" case 40: YY_RULE_SETUP #line 2028 "code.l" { g_theVarContext.pushScope(); g_code->codify(yytext); g_curlyCount++; if (YY_START==ClassVar && g_curClassName.isEmpty()) { g_curClassName = g_name.copy(); } if (g_searchingForBody) { g_searchingForBody=FALSE; g_insideBody=TRUE; } if (g_insideBody) g_bodyCurlyCount++; if (!g_curClassName.isEmpty()) // valid class name { DBG_CTX((stderr,"** scope stack push CLASSBLOCK\n")); g_scopeStack.push(CLASSBLOCK); pushScope(g_curClassName); //fprintf(stderr,"***** g_curClassName=%s\n",g_curClassName.data()); if (getResolvedClass(g_currentDefinition,g_sourceFileDef,g_curClassName)==0) { //printf("Adding new class %s\n",g_curClassName.data()); ClassDef *ncd=new ClassDef("",1, g_curClassName,ClassDef::Class,0,0,FALSE); g_codeClassSDict->append(g_curClassName,ncd); // insert base classes. char *s=g_curClassBases.first(); while (s) { ClassDef *bcd; bcd=g_codeClassSDict->find(s); if (bcd==0) bcd=getResolvedClass(g_currentDefinition,g_sourceFileDef,s); if (bcd && bcd!=ncd) { ncd->insertBaseClass(bcd,s,Public,Normal); } s=g_curClassBases.next(); } } //printf("g_codeClassList.count()=%d\n",g_codeClassList.count()); } else // not a class name -> assume inner block { DBG_CTX((stderr,"** scope stack push INNERBLOCK\n")); g_scopeStack.push(INNERBLOCK); } g_curClassName.resize(0); g_curClassBases.clear(); BEGIN( Body ); } YY_BREAK case 41: YY_RULE_SETUP #line 2079 "code.l" { startFontClass("keyword"); g_code->codify(yytext); endFontClass(); } YY_BREAK case 42: YY_RULE_SETUP #line 2084 "code.l" { //printf("%s:addBase(%s)\n",g_ccd.name.data(),yytext); g_curClassBases.inSort(yytext); generateClassOrGlobalLink(*g_code,yytext); } YY_BREAK case 43: YY_RULE_SETUP #line 2089 "code.l" { g_code->codify(yytext); if (!g_insideObjC) { g_sharpCount=1; BEGIN ( SkipSharp ); } else { g_insideProtocolList=TRUE; } } YY_BREAK case 44: YY_RULE_SETUP #line 2101 "code.l" { g_code->codify(yytext); g_insideProtocolList=FALSE; } YY_BREAK case 45: YY_RULE_SETUP #line 2105 "code.l" { g_code->codify(yytext); ++g_sharpCount; } YY_BREAK case 46: YY_RULE_SETUP #line 2109 "code.l" { g_code->codify(yytext); if (--g_sharpCount<=0) BEGIN ( Bases ); } YY_BREAK case 47: YY_RULE_SETUP #line 2114 "code.l" { g_code->codify(yytext); g_sharpCount=1; BEGIN ( SkipSharp ); } YY_BREAK case 48: YY_RULE_SETUP #line 2119 "code.l" { g_code->codify(yytext); ++g_sharpCount; } YY_BREAK case 49: YY_RULE_SETUP #line 2123 "code.l" { g_code->codify(yytext); if (--g_sharpCount<=0) BEGIN ( Bases ); } YY_BREAK case 50: YY_RULE_SETUP #line 2130 "code.l" { g_code->codify(yytext); } YY_BREAK case 51: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 2135 "code.l" { addType(); generateFunctionLink(*g_code,yytext); g_bracketCount=0; g_args.resize(0); g_name+=yytext; BEGIN( FuncCall ); } YY_BREAK case 52: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 2143 "code.l" { addType(); generateFunctionLink(*g_code,yytext); g_bracketCount=0; g_args.resize(0); g_name+=yytext; BEGIN( FuncCall ); } YY_BREAK case 53: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 2151 "code.l" { startFontClass("keyword"); codifyLines(yytext); endFontClass(); g_insideTemplate=TRUE; g_sharpCount=0; } YY_BREAK case 54: YY_RULE_SETUP #line 2158 "code.l" { startFontClass("keyword"); codifyLines(yytext); endFontClass(); BEGIN(UsingName); } YY_BREAK case 55: YY_RULE_SETUP #line 2164 "code.l" { addUsingDirective(yytext); generateClassOrGlobalLink(*g_code,yytext); BEGIN(Body); } YY_BREAK case 56: YY_RULE_SETUP #line 2168 "code.l" { codifyLines(yytext); BEGIN(Body); } YY_BREAK case 57: YY_RULE_SETUP #line 2169 "code.l" { codifyLines(yytext); BEGIN(Body); } YY_BREAK case 58: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 2170 "code.l" { startFontClass("keyword"); codifyLines(yytext); if (QCString(yytext)=="typedef") { addType(); g_name+=yytext; } endFontClass(); } YY_BREAK case 59: YY_RULE_SETUP #line 2180 "code.l" { startFontClass("keyword"); codifyLines(yytext); endFontClass(); } YY_BREAK case 60: YY_RULE_SETUP #line 2185 "code.l" { startFontClass("keyword"); codifyLines(yytext); endFontClass(); g_name.resize(0);g_type.resize(0); } YY_BREAK case 61: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 2; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 2191 "code.l" { if (!g_inForEachExpression) REJECT; startFontClass("keywordflow"); codifyLines(yytext); endFontClass(); g_name.resize(0);g_type.resize(0); } YY_BREAK case 62: YY_RULE_SETUP #line 2198 "code.l" { startFontClass("keywordflow"); codifyLines(yytext); endFontClass(); g_name.resize(0);g_type.resize(0); g_inForEachExpression = (strcmp(yytext,"for each")==0 || strcmp(yytext, "foreach")==0); BEGIN(FuncCall); } YY_BREAK case 63: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 2206 "code.l" { startFontClass("keywordflow"); codifyLines(yytext); endFontClass(); if (g_inFunctionTryBlock && (strcmp(yytext,"catch")==0 || strcmp(yytext,"finally")==0)) { g_inFunctionTryBlock=FALSE; } } YY_BREAK case 64: YY_RULE_SETUP #line 2215 "code.l" { startFontClass("keywordflow"); codifyLines(yytext); endFontClass(); } YY_BREAK case 65: YY_RULE_SETUP #line 2220 "code.l" { g_code->codify(yytext); g_name.resize(0);g_type.resize(0); if (*yytext==')') { g_theCallContext.popScope(); g_bracketCount--; BEGIN(FuncCall); } } YY_BREAK case 66: YY_RULE_SETUP #line 2230 "code.l" { startFontClass("keywordtype"); g_code->codify(yytext); endFontClass(); addType(); g_name+=yytext; } YY_BREAK case 67: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 7; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 2237 "code.l" { startFontClass("keyword"); g_code->codify(yytext); endFontClass(); g_sharpCount=0; BEGIN(TemplDecl); } YY_BREAK case 68: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 8; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 2244 "code.l" { // template<...> startFontClass("keyword"); g_code->codify(yytext); endFontClass(); g_sharpCount=0; BEGIN(TemplDecl); } YY_BREAK case 69: YY_RULE_SETUP #line 2251 "code.l" { startFontClass("keyword"); codifyLines(yytext); endFontClass(); } YY_BREAK case 70: YY_RULE_SETUP #line 2256 "code.l" { g_code->codify(yytext); g_sharpCount++; } YY_BREAK case 71: YY_RULE_SETUP #line 2260 "code.l" { g_code->codify(yytext); g_sharpCount--; if (g_sharpCount<=0) { BEGIN(Body); } } YY_BREAK case 72: YY_RULE_SETUP #line 2268 "code.l" { startFontClass("keyword"); codifyLines(yytext); endFontClass(); BEGIN( g_lastTemplCastContext ); } YY_BREAK case 73: YY_RULE_SETUP #line 2274 "code.l" { generateClassOrGlobalLink(*g_code,yytext); } YY_BREAK case 74: YY_RULE_SETUP #line 2277 "code.l" { startFontClass("keyword"); codifyLines(yytext); endFontClass(); } YY_BREAK case 75: YY_RULE_SETUP #line 2282 "code.l" { codifyLines(yytext); } YY_BREAK case 76: YY_RULE_SETUP #line 2285 "code.l" { // static_cast( startFontClass("keyword"); codifyLines(yytext); endFontClass(); g_lastTemplCastContext = YY_START; BEGIN(TemplCast); } YY_BREAK case 77: YY_RULE_SETUP #line 2292 "code.l" { // A *pt; int i=QCString(yytext).find('<'); QCString kw = QCString(yytext).left(i).stripWhiteSpace(); if (kw.right(5)=="_cast" && YY_START==Body) { REJECT; } addType(); generateClassOrGlobalLink(*g_code,yytext); g_name+=yytext; } YY_BREAK case 78: YY_RULE_SETUP #line 2303 "code.l" { // "int var;" or "var, var2" or "debug(f) macro" addType(); generateClassOrGlobalLink(*g_code,yytext/*,TRUE*/); g_name+=yytext; } YY_BREAK case 79: YY_RULE_SETUP #line 2308 "code.l" { // p->func() addType(); generateClassOrGlobalLink(*g_code,yytext); g_name+=yytext; } YY_BREAK case 80: YY_RULE_SETUP #line 2313 "code.l" { // (*p)->func() but not "if (p) ..." g_code->codify(yytext); int s=0;while (s=0 && !isId(yytext[e])) e--; QCString varname = ((QCString)yytext).mid(s,e-s+1); addType(); g_name=varname; } YY_BREAK case 81: YY_RULE_SETUP #line 2321 "code.l" { // a() or c::a() or t::a() addType(); generateFunctionLink(*g_code,yytext); //g_theVarContext.addVariable(g_type,yytext); g_bracketCount=0; g_args.resize(0); g_name+=yytext; BEGIN( FuncCall ); } YY_BREAK case 82: YY_RULE_SETUP #line 2330 "code.l" { startFontClass("stringliteral"); g_code->codify(yytext); g_lastStringContext=YY_START; g_inForEachExpression = FALSE; BEGIN( SkipString ); } YY_BREAK case 83: YY_RULE_SETUP #line 2337 "code.l" { g_code->codify(yytext); } YY_BREAK case 84: YY_RULE_SETUP #line 2340 "code.l" { g_code->codify(yytext); } YY_BREAK case 85: YY_RULE_SETUP #line 2343 "code.l" { g_code->codify(yytext); endFontClass(); BEGIN( g_lastStringContext ); } YY_BREAK case 86: YY_RULE_SETUP #line 2348 "code.l" { g_code->codify(yytext); } YY_BREAK case 87: YY_RULE_SETUP #line 2351 "code.l" { g_code->codify(yytext); } YY_BREAK case 88: YY_RULE_SETUP #line 2354 "code.l" { // escaped quote g_code->codify(yytext); } YY_BREAK case 89: YY_RULE_SETUP #line 2357 "code.l" { // end of string g_code->codify(yytext); endFontClass(); BEGIN( g_lastVerbStringContext ); } YY_BREAK case 90: YY_RULE_SETUP #line 2362 "code.l" { g_code->codify(yytext); } YY_BREAK case 91: YY_RULE_SETUP #line 2365 "code.l" { g_code->codify(yytext); } YY_BREAK case 92: YY_RULE_SETUP #line 2368 "code.l" { g_code->codify(yytext); g_name.resize(0);g_type.resize(0); } YY_BREAK case 93: YY_RULE_SETUP #line 2372 "code.l" { if (g_insideTemplate) { g_sharpCount++; } g_code->codify(yytext); } YY_BREAK case 94: YY_RULE_SETUP #line 2379 "code.l" { if (g_insideTemplate) { if (--g_sharpCount<=0) { g_insideTemplate=FALSE; } } g_code->codify(yytext); } YY_BREAK case 95: YY_RULE_SETUP #line 2389 "code.l" { startFontClass("charliteral"); g_code->codify(yytext); endFontClass(); } YY_BREAK case 96: YY_RULE_SETUP #line 2394 "code.l" { g_code->codify(yytext); } YY_BREAK case 97: YY_RULE_SETUP #line 2395 "code.l" { g_code->codify(yytext); g_memCallContext = YY_START; BEGIN( MemberCall ); } YY_BREAK case 98: YY_RULE_SETUP #line 2400 "code.l" { if (g_theCallContext.getClass()) { if (!generateClassMemberLink(*g_code,g_theCallContext.getClass(),yytext)) { g_code->linkableSymbol(g_yyLineNr,yytext,0, g_currentMemberDef?g_currentMemberDef:g_currentDefinition); g_code->codify(yytext); addToSearchIndex(yytext); } g_name.resize(0); } else { g_code->linkableSymbol(g_yyLineNr,yytext,0, g_currentMemberDef?g_currentMemberDef:g_currentDefinition); g_code->codify(yytext); addToSearchIndex(yytext); g_name.resize(0); } g_type.resize(0); g_bracketCount=0; if (g_memCallContext==Body) { BEGIN(FuncCall); } else { BEGIN(g_memCallContext); } } YY_BREAK case 99: YY_RULE_SETUP #line 2431 "code.l" { if (g_theCallContext.getClass()) { //fprintf(stderr,"g_theCallContext.getClass()=%p\n",g_theCallContext.getClass()); if (!generateClassMemberLink(*g_code,g_theCallContext.getClass(),yytext)) { g_code->linkableSymbol(g_yyLineNr,yytext,0, g_currentMemberDef?g_currentMemberDef:g_currentDefinition); g_code->codify(yytext); addToSearchIndex(yytext); } g_name.resize(0); } else { //fprintf(stderr,"no class context!\n"); g_code->codify(yytext); addToSearchIndex(yytext); g_name.resize(0); } g_type.resize(0); BEGIN(g_memCallContext); } YY_BREAK case 100: YY_RULE_SETUP #line 2454 "code.l" { if (g_insideObjC && *yytext=='[') { //printf("Found start of ObjC call!\n"); // start of a method call g_contextDict.setAutoDelete(TRUE); g_nameDict.setAutoDelete(TRUE); g_objectDict.setAutoDelete(TRUE); g_wordDict.setAutoDelete(TRUE); g_contextDict.clear(); g_nameDict.clear(); g_objectDict.clear(); g_wordDict.clear(); g_currentCtxId = 0; g_currentNameId = 0; g_currentObjId = 0; g_currentCtx = 0; g_braceCount = 0; unput('['); BEGIN(ObjCCall); } else { g_code->codify(yytext); g_saveName = g_name.copy(); g_saveType = g_type.copy(); if (*yytext!='[' && !g_type.isEmpty()) { //printf("g_scopeStack.bottom()=%p\n",g_scopeStack.bottom()); if (g_scopeStack.top()!=CLASSBLOCK) { //printf("AddVariable: '%s' '%s' context=%d\n", // g_type.data(),g_name.data(),g_theVarContext.count()); g_theVarContext.addVariable(g_type,g_name); } g_name.resize(0); } if (*yytext==';' || *yytext=='=') { g_type.resize(0); g_name.resize(0); } else if (*yytext=='[') { g_theCallContext.pushScope(); } g_args.resize(0); g_parmType.resize(0); g_parmName.resize(0); } } YY_BREAK /* {ID} { if (strcmp(yytext,"self")==0 || strcmp(yytext,"super")==0) { // TODO: get proper base class for "super" g_theCallContext.setClass(getClass(g_curClassName)); startFontClass("keyword"); g_code->codify(yytext); endFontClass(); } else { generateClassOrGlobalLink(*g_code,yytext); } g_name.resize(0); BEGIN(ObjCMemberCall2); } "[" { g_code->codify(yytext); g_theCallContext.pushScope(); } {ID}":"? { g_name+=yytext; if (g_theCallContext.getClass()) { //printf("Calling method %s\n",g_name.data()); if (!generateClassMemberLink(*g_code,g_theCallContext.getClass(),g_name)) { g_code->codify(yytext); addToSearchIndex(g_name); } } else { g_code->codify(yytext); addToSearchIndex(g_name); } g_name.resize(0); BEGIN(ObjCMemberCall3); } "]" { g_theCallContext.popScope(); g_code->codify(yytext); BEGIN(Body); } */ case 101: YY_RULE_SETUP #line 2551 "code.l" { saveObjCContext(); g_currentCtx->format+=*yytext; BEGIN(ObjCCall); //printf("open\n"); } YY_BREAK case 102: YY_RULE_SETUP #line 2557 "code.l" { g_currentCtx->format+=*yytext; restoreObjCContext(); BEGIN(ObjCMName); if (g_currentCtx==0) { // end of call writeObjCMethodCall(g_contextDict.find(0)); BEGIN(Body); } //printf("close\n"); } YY_BREAK case 103: YY_RULE_SETUP #line 2569 "code.l" { g_currentCtx->format+=escapeObject(yytext); if (g_braceCount==0) { g_currentCtx->objectTypeOrName=yytext; //printf("new type=%s\n",g_currentCtx->objectTypeOrName.data()); BEGIN(ObjCMName); } } YY_BREAK case 104: YY_RULE_SETUP #line 2578 "code.l" { if (g_braceCount==0 && g_currentCtx->methodName.isEmpty()) { g_currentCtx->methodName=yytext; g_currentCtx->format+=escapeName(yytext); } else { g_currentCtx->format+=escapeWord(yytext); } } YY_BREAK case 105: YY_RULE_SETUP #line 2590 "code.l" { if (g_braceCount==0) { g_currentCtx->methodName+=yytext; g_currentCtx->methodName+=":"; } g_currentCtx->format+=escapeName(yytext); } YY_BREAK case 106: YY_RULE_SETUP #line 2598 "code.l" { g_currentCtx->format+=yytext; } YY_BREAK case 107: YY_RULE_SETUP #line 2599 "code.l" { g_currentCtx->format+=yytext; } YY_BREAK case 108: YY_RULE_SETUP #line 2600 "code.l" { g_currentCtx->format+=yytext; BEGIN(g_lastStringContext); } YY_BREAK case 109: YY_RULE_SETUP #line 2603 "code.l" { g_currentCtx->format+=yytext; } YY_BREAK case 110: YY_RULE_SETUP #line 2604 "code.l" { g_currentCtx->format+=yytext; g_lastStringContext=YY_START; BEGIN(ObjCSkipStr); } YY_BREAK case 111: YY_RULE_SETUP #line 2608 "code.l" { g_currentCtx->format+="$$"; } YY_BREAK case 112: YY_RULE_SETUP #line 2609 "code.l" { g_currentCtx->format+=*yytext; g_braceCount++; } YY_BREAK case 113: YY_RULE_SETUP #line 2610 "code.l" { g_currentCtx->format+=*yytext; g_braceCount--; } YY_BREAK case 114: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 2611 "code.l" { // needed to prevent matching the global rule (for C#) g_currentCtx->format+=yytext; } YY_BREAK case 115: YY_RULE_SETUP #line 2614 "code.l" { g_currentCtx->format+=escapeWord(yytext); } YY_BREAK case 116: YY_RULE_SETUP #line 2615 "code.l" { g_currentCtx->format+=*yytext; } YY_BREAK case 117: YY_RULE_SETUP #line 2616 "code.l" { g_currentCtx->format+=*yytext; } YY_BREAK case 118: YY_RULE_SETUP #line 2618 "code.l" { g_theCallContext.popScope(); g_code->codify(yytext); // TODO: nested arrays like: a[b[0]->func()]->func() g_name = g_saveName.copy(); g_type = g_saveType.copy(); } YY_BREAK case 119: YY_RULE_SETUP #line 2625 "code.l" { g_code->codify(yytext); } YY_BREAK case 120: YY_RULE_SETUP #line 2628 "code.l" { g_code->codify(yytext); } YY_BREAK case 121: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 2631 "code.l" { //addParmType(); //g_parmName=yytext; startFontClass("keyword"); g_code->codify(yytext); endFontClass(); } YY_BREAK case 122: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 2638 "code.l" { addParmType(); g_parmName=yytext; startFontClass("keywordtype"); g_code->codify(yytext); endFontClass(); } YY_BREAK case 123: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 2645 "code.l" { addParmType(); g_parmName=yytext; startFontClass("keywordflow"); g_code->codify(yytext); endFontClass(); } YY_BREAK case 124: YY_RULE_SETUP #line 2652 "code.l" { addParmType(); g_parmName=yytext; generateClassOrGlobalLink(*g_code,yytext,!g_insideBody); } YY_BREAK case 125: YY_RULE_SETUP #line 2657 "code.l" { // probably a cast, not a function call g_code->codify(yytext); g_inForEachExpression = FALSE; BEGIN( Body ); } YY_BREAK case 126: YY_RULE_SETUP #line 2662 "code.l" { g_code->codify(yytext); g_theVarContext.addVariable(g_parmType,g_parmName); g_parmType.resize(0);g_parmName.resize(0); } YY_BREAK case 127: YY_RULE_SETUP #line 2667 "code.l" { g_parmType.resize(0);g_parmName.resize(0); g_code->codify(yytext); g_bracketCount++; g_theCallContext.pushScope(); if (YY_START==FuncCall && !g_insideBody) { g_theVarContext.pushScope(); } } YY_BREAK case 128: YY_RULE_SETUP #line 2677 "code.l" { // operator if (strcmp(yytext,"*") && strcmp(yytext,"&") && strcmp(yytext,"^") && strcmp(yytext,"%")) // typically a pointer or reference { // not a * or &, or C++/CLI's ^ or % g_parmType.resize(0);g_parmName.resize(0); } g_code->codify(yytext); } YY_BREAK case 129: YY_RULE_SETUP #line 2688 "code.l" { g_theVarContext.addVariable(g_parmType,g_parmName); g_theCallContext.popScope(); g_inForEachExpression = FALSE; //g_theCallContext.setClass(0); // commented out, otherwise a()->b() does not work for b(). g_code->codify(yytext); if (--g_bracketCount<=0) { if (g_name.isEmpty()) { BEGIN( Body ); } else { BEGIN( CallEnd ); } } } YY_BREAK case 130: YY_RULE_SETUP #line 2706 "code.l" { codifyLines(yytext); } YY_BREAK /* ")"[ \t\n]*[;:] { */ case 131: YY_RULE_SETUP #line 2710 "code.l" { codifyLines(yytext); g_bracketCount=0; if (*yytext==';') g_searchingForBody=FALSE; if (!g_type.isEmpty()) { //fprintf(stderr,"add variable g_type=%s g_name=%s)\n",g_type.data(),g_name.data()); g_theVarContext.addVariable(g_type,g_name); } g_parmType.resize(0);g_parmName.resize(0); g_theCallContext.setClass(0); if (*yytext==';' || g_insideBody) { if (!g_insideBody) { g_theVarContext.popScope(); } g_name.resize(0);g_type.resize(0); BEGIN( Body ); } else { g_bracketCount=0; BEGIN( SkipInits ); } } YY_BREAK case 132: YY_RULE_SETUP #line 2736 "code.l" { startFontClass("keyword"); codifyLines(yytext); endFontClass(); } YY_BREAK case 133: YY_RULE_SETUP #line 2741 "code.l" { if (g_insideBody) { g_theVarContext.pushScope(); } g_theVarContext.addVariable(g_parmType,g_parmName); //g_theCallContext.popScope(); g_parmType.resize(0);g_parmName.resize(0); int index = g_name.findRev("::"); if (index!=-1) { ClassDef *cd=getResolvedClass(Doxygen::globalScope,g_sourceFileDef,g_name.left(index)); if (cd) { setClassScope(cd->name()); } else { setClassScope(g_realScope); } DBG_CTX((stderr,"** scope stack push SCOPEBLOCK\n")); g_scopeStack.push(SCOPEBLOCK); } else { DBG_CTX((stderr,"** scope stack push INNERBLOCK\n")); g_scopeStack.push(INNERBLOCK); } yytext[yyleng-1]='\0'; QCString cv(yytext); if (!cv.stripWhiteSpace().isEmpty()) { startFontClass("keyword"); codifyLines(yytext); endFontClass(); } else // just whitespace { codifyLines(yytext); } g_code->codify("{"); if (g_searchingForBody) { g_searchingForBody=FALSE; g_insideBody=TRUE; } if (g_insideBody) g_bodyCurlyCount++; g_curlyCount++; g_type.resize(0); g_name.resize(0); BEGIN( Body ); } YY_BREAK case 134: YY_RULE_SETUP #line 2792 "code.l" { // function-try-block startFontClass("keyword"); g_code->codify(yytext); endFontClass(); g_inFunctionTryBlock=TRUE; } YY_BREAK case 135: YY_RULE_SETUP #line 2798 "code.l" { if (g_insideBody || !g_parmType.isEmpty()) { REJECT; } // could be K&R style definition addParmType(); g_parmName=yytext; generateClassOrGlobalLink(*g_code,yytext,!g_insideBody); BEGIN(OldStyleArgs); } YY_BREAK case 136: YY_RULE_SETUP #line 2809 "code.l" { addParmType(); g_parmName=yytext; generateClassOrGlobalLink(*g_code,yytext,!g_insideBody); } YY_BREAK case 137: YY_RULE_SETUP #line 2814 "code.l" { g_code->codify(yytext); g_theVarContext.addVariable(g_parmType,g_parmName); if (*yytext==';') g_parmType.resize(0); g_parmName.resize(0); } YY_BREAK case 138: YY_RULE_SETUP #line 2820 "code.l" { startFontClass("preprocessor"); g_lastSkipCppContext = Body; g_code->codify(yytext); BEGIN( SkipCPP ); } YY_BREAK case 139: YY_RULE_SETUP #line 2826 "code.l" { unput(*yytext); if (!g_insideBody) { g_theVarContext.popScope(); } g_name.resize(0);g_args.resize(0); g_parmType.resize(0);g_parmName.resize(0); BEGIN( Body ); } YY_BREAK case 140: YY_RULE_SETUP #line 2836 "code.l" { g_code->codify(yytext); g_type.resize(0); g_name.resize(0); BEGIN( Body ); } YY_BREAK case 141: YY_RULE_SETUP #line 2841 "code.l" { g_code->codify(yytext); g_curlyCount++; if (g_searchingForBody) { g_searchingForBody=FALSE; g_insideBody=TRUE; } if (g_insideBody) g_bodyCurlyCount++; if (g_name.find("::")!=-1) { DBG_CTX((stderr,"** scope stack push SCOPEBLOCK\n")); g_scopeStack.push(SCOPEBLOCK); setClassScope(g_realScope); } else { DBG_CTX((stderr,"** scope stack push INNERBLOCK\n")); g_scopeStack.push(INNERBLOCK); } g_type.resize(0); g_name.resize(0); BEGIN( Body ); } YY_BREAK case 142: YY_RULE_SETUP #line 2864 "code.l" { generateClassOrGlobalLink(*g_code,yytext); } YY_BREAK case 143: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 2867 "code.l" { generateFunctionLink(*g_code,yytext); } YY_BREAK case 144: YY_RULE_SETUP #line 2870 "code.l" { g_name=yytext; generateClassOrGlobalLink(*g_code,yytext); BEGIN( MemberCall2 ); } YY_BREAK case 145: YY_RULE_SETUP #line 2875 "code.l" { g_code->codify(yytext); int s=0;while (!isId(yytext[s])) s++; int e=yyleng-1;while (!isId(yytext[e])) e--; g_name=((QCString)yytext).mid(s,e-s+1); BEGIN( MemberCall2 ); } YY_BREAK case 146: YY_RULE_SETUP #line 2882 "code.l" { if (!g_args.isEmpty()) generateMemberLink(*g_code,g_args,yytext); else generateClassOrGlobalLink(*g_code,yytext); g_args.resize(0); BEGIN( FuncCall ); } YY_BREAK case 147: YY_RULE_SETUP #line 2890 "code.l" { //g_code->codify(yytext); g_name=yytext; generateClassOrGlobalLink(*g_code,yytext); BEGIN( MemberCall2 ); } YY_BREAK case 148: YY_RULE_SETUP #line 2896 "code.l" { g_code->codify(yytext); g_memCallContext = YY_START; BEGIN( MemberCall ); } YY_BREAK case 149: YY_RULE_SETUP #line 2901 "code.l" { g_code->codify(yytext); endFontClass(); BEGIN( g_lastCContext ) ; } YY_BREAK case 150: YY_RULE_SETUP #line 2906 "code.l" { g_code->codify(yytext); } YY_BREAK case 151: YY_RULE_SETUP #line 2909 "code.l" { g_code->codify(yytext); } YY_BREAK case 152: YY_RULE_SETUP #line 2912 "code.l" { g_code->codify(yytext); endFontClass(); BEGIN( g_lastCContext ) ; } YY_BREAK case 153: YY_RULE_SETUP #line 2917 "code.l" { g_code->codify(yytext); } YY_BREAK case 154: YY_RULE_SETUP #line 2920 "code.l" YY_BREAK case 155: YY_RULE_SETUP #line 2921 "code.l" { unput('\n'); endFontClass(); BEGIN( g_lastCContext ) ; } YY_BREAK case 156: YY_RULE_SETUP #line 2926 "code.l" { g_code->codify(yytext); } YY_BREAK case 157: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 2929 "code.l" { g_yyLineNr+=QCString(yytext).contains('\n'); } YY_BREAK case 158: YY_RULE_SETUP #line 2932 "code.l" { g_yyLineNr+=QCString(yytext).contains('\n'); endCodeLine(); if (g_yyLineNrcodify(yytext); g_type.resize(0); g_name.resize(0); BEGIN(g_memCallContext); } YY_BREAK case 165: YY_RULE_SETUP #line 2962 "code.l" { // remove special one-line comment if (Config_getBool("STRIP_CODE_COMMENTS")) { g_yyLineNr+=((QCString)yytext).contains('\n'); endCodeLine(); if (g_yyLineNrcodify(yytext); BEGIN(SkipComment); } } YY_BREAK case 171: YY_RULE_SETUP #line 3065 "code.l" { // remove special one-line comment if (Config_getBool("STRIP_CODE_COMMENTS")) { g_yyLineNr++; endCodeLine(); if (g_yyLineNrcodify(yytext); BEGIN(SkipComment); } } YY_BREAK case 175: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 3; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 3133 "code.l" { // special C comment block half way a line if (YY_START==SkipString) REJECT; if (Config_getBool("STRIP_CODE_COMMENTS")) { g_lastSpecialCContext = YY_START; BEGIN(RemoveSpecialCComment); } else { // check is to prevent getting stuck in skipping C++ comments if (YY_START != SkipCxxComment) { g_lastCContext = YY_START ; } startFontClass("comment"); g_code->codify(yytext); BEGIN(SkipComment); } } YY_BREAK case 176: YY_RULE_SETUP #line 3152 "code.l" { if (YY_START==SkipString) REJECT; if (!Config_getBool("STRIP_CODE_COMMENTS")) { startFontClass("comment"); g_code->codify(yytext); endFontClass(); } } YY_BREAK case 177: YY_RULE_SETUP #line 3161 "code.l" { startFontClass("comment"); g_code->codify(yytext); // check is to prevent getting stuck in skipping C++ comments if (YY_START != SkipCxxComment) { g_lastCContext = YY_START ; } BEGIN( SkipComment ) ; } YY_BREAK case 178: YY_RULE_SETUP #line 3171 "code.l" { // C# verbatim string startFontClass("stringliteral"); g_code->codify(yytext); g_lastVerbStringContext=YY_START; BEGIN(SkipVerbString); } YY_BREAK case 179: YY_RULE_SETUP #line 3177 "code.l" { startFontClass("comment"); g_code->codify(yytext); g_lastCContext = YY_START ; BEGIN( SkipCxxComment ) ; } YY_BREAK case 180: YY_RULE_SETUP #line 3183 "code.l" { g_code->codify(yytext); g_theCallContext.pushScope(); } YY_BREAK case 181: YY_RULE_SETUP #line 3187 "code.l" { g_code->codify(yytext); g_theCallContext.popScope(); } YY_BREAK case 182: YY_RULE_SETUP #line 3191 "code.l" { codifyLines(yytext); } YY_BREAK case 183: YY_RULE_SETUP #line 3194 "code.l" { g_code->codify(yytext); } YY_BREAK /* <*>([ \t\n]*"\n"){2,} { // combine multiple blank lines //QCString sepLine=yytext; //g_code->codify("\n\n"); //g_yyLineNr+=sepLine.contains('\n'); //char sepLine[3]="\n\n"; codifyLines(yytext); } */ case 184: YY_RULE_SETUP #line 3207 "code.l" ECHO; YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(SkipString): case YY_STATE_EOF(SkipVerbString): case YY_STATE_EOF(SkipCPP): case YY_STATE_EOF(SkipComment): case YY_STATE_EOF(SkipCxxComment): case YY_STATE_EOF(RemoveSpecialCComment): case YY_STATE_EOF(StripSpecialCComment): case YY_STATE_EOF(Body): case YY_STATE_EOF(FuncCall): case YY_STATE_EOF(MemberCall): case YY_STATE_EOF(MemberCall2): case YY_STATE_EOF(SkipInits): case YY_STATE_EOF(ClassName): case YY_STATE_EOF(PackageName): case YY_STATE_EOF(ClassVar): case YY_STATE_EOF(CppCliTypeModifierFollowup): case YY_STATE_EOF(Bases): case YY_STATE_EOF(SkipSharp): case YY_STATE_EOF(ReadInclude): case YY_STATE_EOF(TemplDecl): case YY_STATE_EOF(TemplCast): case YY_STATE_EOF(CallEnd): case YY_STATE_EOF(ObjCMethod): case YY_STATE_EOF(ObjCParams): case YY_STATE_EOF(ObjCParamType): case YY_STATE_EOF(ObjCCall): case YY_STATE_EOF(ObjCMName): case YY_STATE_EOF(ObjCSkipStr): case YY_STATE_EOF(OldStyleArgs): case YY_STATE_EOF(UsingName): yyterminate(); 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->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->yy_n_chars; yy_current_buffer->yy_input_file = yyin; yy_current_buffer->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->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->yy_ch_buf[yy_n_chars]; yy_current_state = yy_get_previous_state(); yy_cp = yy_c_buf_p; yy_bp = yytext_ptr + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer() { register char *dest = yy_current_buffer->yy_ch_buf; register char *source = yytext_ptr; register int number_to_move, i; int ret_val; if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( yy_current_buffer->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->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->yy_n_chars = yy_n_chars = 0; else { int num_to_read = yy_current_buffer->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ #ifdef YY_USES_REJECT YY_FATAL_ERROR( "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); #else /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = yy_current_buffer; int yy_c_buf_p_offset = (int) (yy_c_buf_p - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { int new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yy_flex_realloc( (void *) b->yy_ch_buf, b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = yy_current_buffer->yy_buf_size - number_to_move - 1; #endif } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]), yy_n_chars, num_to_read ); yy_current_buffer->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->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; yy_n_chars += number_to_move; yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR; yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; yytext_ptr = &yy_current_buffer->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() { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = yy_start; yy_current_state += YY_AT_BOL(); yy_state_ptr = yy_state_buf; *yy_state_ptr++ = yy_current_state; for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); 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 >= 2925 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; *yy_state_ptr++ = yy_current_state; } 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 ); */ #ifdef YY_USE_PROTOS static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state ) #else static yy_state_type yy_try_NUL_trans( yy_current_state ) yy_state_type yy_current_state; #endif { register int yy_is_jam; register YY_CHAR yy_c = 1; 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 >= 2925 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 2924); if ( ! yy_is_jam ) *yy_state_ptr++ = yy_current_state; return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT #ifdef YY_USE_PROTOS static void yyunput( int c, register char *yy_bp ) #else static void yyunput( c, yy_bp ) int c; register char *yy_bp; #endif { register char *yy_cp = yy_c_buf_p; /* undo effects of setting up yytext */ *yy_cp = yy_hold_char; if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) { /* need to shift things up to make room */ /* +2 for EOB chars. */ register int number_to_move = yy_n_chars + 2; register char *dest = &yy_current_buffer->yy_ch_buf[ yy_current_buffer->yy_buf_size + 2]; register char *source = &yy_current_buffer->yy_ch_buf[number_to_move]; while ( source > yy_current_buffer->yy_ch_buf ) *--dest = *--source; yy_cp += (int) (dest - source); yy_bp += (int) (dest - source); yy_current_buffer->yy_n_chars = yy_n_chars = yy_current_buffer->yy_buf_size; if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) YY_FATAL_ERROR( "flex scanner push-back overflow" ); } *--yy_cp = (char) c; yytext_ptr = yy_bp; yy_hold_char = *yy_cp; yy_c_buf_p = yy_cp; } #endif /* ifndef YY_NO_UNPUT */ #ifdef __cplusplus static int yyinput() #else static int input() #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->yy_ch_buf[yy_n_chars] ) /* This was really a NUL. */ *yy_c_buf_p = '\0'; else { /* need more input */ int offset = yy_c_buf_p - yytext_ptr; ++yy_c_buf_p; switch ( yy_get_next_buffer() ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart( yyin ); /* fall through */ case EOB_ACT_END_OF_FILE: { if ( yywrap() ) return EOF; if ( ! yy_did_buffer_switch_on_eof ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: yy_c_buf_p = yytext_ptr + offset; break; } } } c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */ *yy_c_buf_p = '\0'; /* preserve yytext */ yy_hold_char = *++yy_c_buf_p; yy_current_buffer->yy_at_bol = (c == '\n'); return c; } #ifdef YY_USE_PROTOS void yyrestart( FILE *input_file ) #else void yyrestart( input_file ) FILE *input_file; #endif { if ( ! yy_current_buffer ) yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); yy_init_buffer( yy_current_buffer, input_file ); yy_load_buffer_state(); } #ifdef YY_USE_PROTOS void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer ) #else void yy_switch_to_buffer( new_buffer ) YY_BUFFER_STATE new_buffer; #endif { 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->yy_buf_pos = yy_c_buf_p; yy_current_buffer->yy_n_chars = yy_n_chars; } yy_current_buffer = 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; } #ifdef YY_USE_PROTOS void yy_load_buffer_state( void ) #else void yy_load_buffer_state() #endif { yy_n_chars = yy_current_buffer->yy_n_chars; yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos; yyin = yy_current_buffer->yy_input_file; yy_hold_char = *yy_c_buf_p; } #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_create_buffer( FILE *file, int size ) #else YY_BUFFER_STATE yy_create_buffer( file, size ) FILE *file; int size; #endif { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yy_flex_alloc( 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 *) yy_flex_alloc( 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; } #ifdef YY_USE_PROTOS void yy_delete_buffer( YY_BUFFER_STATE b ) #else void yy_delete_buffer( b ) YY_BUFFER_STATE b; #endif { if ( ! b ) return; if ( b == yy_current_buffer ) yy_current_buffer = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yy_flex_free( (void *) b->yy_ch_buf ); yy_flex_free( (void *) b ); } #ifndef YY_ALWAYS_INTERACTIVE #ifndef YY_NEVER_INTERACTIVE extern int isatty YY_PROTO(( int )); #endif #endif #ifdef YY_USE_PROTOS void yy_init_buffer( YY_BUFFER_STATE b, FILE *file ) #else void yy_init_buffer( b, file ) YY_BUFFER_STATE b; FILE *file; #endif { yy_flush_buffer( b ); b->yy_input_file = file; b->yy_fill_buffer = 1; #if YY_ALWAYS_INTERACTIVE b->yy_is_interactive = 1; #else #if YY_NEVER_INTERACTIVE b->yy_is_interactive = 0; #else b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; #endif #endif } #ifdef YY_USE_PROTOS void yy_flush_buffer( YY_BUFFER_STATE b ) #else void yy_flush_buffer( b ) YY_BUFFER_STATE b; #endif { 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(); } #ifndef YY_NO_SCAN_BUFFER #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size ) #else YY_BUFFER_STATE yy_scan_buffer( base, size ) char *base; yy_size_t size; #endif { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer( b ); return b; } #endif #ifndef YY_NO_SCAN_STRING #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str ) #else YY_BUFFER_STATE yy_scan_string( yy_str ) yyconst char *yy_str; #endif { int len; for ( len = 0; yy_str[len]; ++len ) ; return yy_scan_bytes( yy_str, len ); } #endif #ifndef YY_NO_SCAN_BYTES #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len ) #else YY_BUFFER_STATE yy_scan_bytes( bytes, len ) yyconst char *bytes; int len; #endif { YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; /* Get memory for full buffer, including space for trailing EOB's. */ n = len + 2; buf = (char *) yy_flex_alloc( n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < len; ++i ) buf[i] = bytes[i]; buf[len] = buf[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; } #endif #ifndef YY_NO_PUSH_STATE #ifdef YY_USE_PROTOS static void yy_push_state( int new_state ) #else static void yy_push_state( new_state ) int new_state; #endif { if ( yy_start_stack_ptr >= yy_start_stack_depth ) { yy_size_t new_size; yy_start_stack_depth += YY_START_STACK_INCR; new_size = yy_start_stack_depth * sizeof( int ); if ( ! yy_start_stack ) yy_start_stack = (int *) yy_flex_alloc( new_size ); else yy_start_stack = (int *) yy_flex_realloc( (void *) yy_start_stack, new_size ); if ( ! yy_start_stack ) YY_FATAL_ERROR( "out of memory expanding start-condition stack" ); } yy_start_stack[yy_start_stack_ptr++] = YY_START; BEGIN(new_state); } #endif #ifndef YY_NO_POP_STATE static void yy_pop_state() { if ( --yy_start_stack_ptr < 0 ) YY_FATAL_ERROR( "start-condition stack underflow" ); BEGIN(yy_start_stack[yy_start_stack_ptr]); } #endif #ifndef YY_NO_TOP_STATE static int yy_top_state() { return yy_start_stack[yy_start_stack_ptr - 1]; } #endif #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif #ifdef YY_USE_PROTOS static void yy_fatal_error( yyconst char msg[] ) #else static void yy_fatal_error( msg ) char msg[]; #endif { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ yytext[yyleng] = yy_hold_char; \ yy_c_buf_p = yytext + n; \ yy_hold_char = *yy_c_buf_p; \ *yy_c_buf_p = '\0'; \ yyleng = n; \ } \ while ( 0 ) /* Internal utility routines. */ #ifndef yytext_ptr #ifdef YY_USE_PROTOS static void yy_flex_strncpy( char *s1, yyconst char *s2, int n ) #else static void yy_flex_strncpy( s1, s2, n ) char *s1; yyconst char *s2; int n; #endif { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN #ifdef YY_USE_PROTOS static int yy_flex_strlen( yyconst char *s ) #else static int yy_flex_strlen( s ) yyconst char *s; #endif { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif #ifdef YY_USE_PROTOS static void *yy_flex_alloc( yy_size_t size ) #else static void *yy_flex_alloc( size ) yy_size_t size; #endif { return (void *) malloc( size ); } #ifdef YY_USE_PROTOS static void *yy_flex_realloc( void *ptr, yy_size_t size ) #else static void *yy_flex_realloc( ptr, size ) void *ptr; yy_size_t size; #endif { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return (void *) realloc( (char *) ptr, size ); } #ifdef YY_USE_PROTOS static void yy_flex_free( void *ptr ) #else static void yy_flex_free( ptr ) void *ptr; #endif { free( ptr ); } #if YY_MAIN int main() { yylex(); return 0; } #endif #line 3207 "code.l" /*@ ---------------------------------------------------------------------------- */ static void saveObjCContext() { if (g_currentCtx) { g_currentCtx->format+=QCString().sprintf("$c%d",g_currentCtxId); if (g_braceCount==0 && YY_START==ObjCCall) { g_currentCtx->objectTypeOrName=g_currentCtx->format.mid(1); //printf("new type=%s\n",g_currentCtx->objectTypeOrName.data()); } g_contextStack.push(g_currentCtx); } else { //printf("Trying to save NULL context!\n"); } ObjCCallCtx *newCtx = new ObjCCallCtx; newCtx->id = g_currentCtxId; newCtx->lexState = YY_START; newCtx->braceCount = g_braceCount; newCtx->objectType = 0; newCtx->objectVar = 0; newCtx->method = 0; //printf("save state=%d\n",YY_START); g_contextDict.insert(g_currentCtxId,newCtx); g_currentCtx = newCtx; g_braceCount = 0; g_currentCtxId++; } static void restoreObjCContext() { //printf("restore state=%d->%d\n",YY_START,g_currentCtx->lexState); BEGIN(g_currentCtx->lexState); g_braceCount = g_currentCtx->braceCount; if (!g_contextStack.isEmpty()) { g_currentCtx = g_contextStack.pop(); } else { g_currentCtx = 0; //printf("Trying to pop context while g_contextStack is empty!\n"); } } void resetCCodeParserState() { //printf("***initParseCodeContext()\n"); g_theVarContext.clear(); g_classScopeLengthStack.setAutoDelete(TRUE); g_classScopeLengthStack.clear(); delete g_codeClassSDict; g_codeClassSDict = new ClassSDict(17); g_codeClassSDict->setAutoDelete(TRUE); g_codeClassSDict->clear(); g_curClassBases.clear(); g_anchorCount = 0; } void parseCCode(CodeOutputInterface &od,const char *className,const QCString &s, bool exBlock, const char *exName,FileDef *fd, int startLine,int endLine,bool inlineFragment, MemberDef *memberDef) { //printf("***parseCode() exBlock=%d exName=%s fd=%p\n",exBlock,exName,fd); if (s.isEmpty()) return; if (g_codeClassSDict==0) { resetCCodeParserState(); } g_code = &od; g_inputString = s; g_inputPosition = 0; g_currentFontClass = 0; g_needsTermination = FALSE; g_inFunctionTryBlock = FALSE; if (endLine!=-1) g_inputLines = endLine+1; else g_inputLines = countLines(); if (startLine!=-1) g_yyLineNr = startLine; else g_yyLineNr = 1; g_curlyCount = 0; g_bodyCurlyCount = 0; g_bracketCount = 0; g_sharpCount = 0; g_insideTemplate = FALSE; g_theCallContext.clear(); g_scopeStack.clear(); g_classScope = className; g_exampleBlock = exBlock; g_exampleName = exName; g_sourceFileDef = fd; g_lineNumbers = fd!=0; if (exBlock && fd==0) { // create a dummy filedef for the example g_sourceFileDef = new FileDef("",exName); } if (g_sourceFileDef) { setCurrentDoc(g_sourceFileDef->name(),g_sourceFileDef->getSourceFileBase()); g_insideObjC = g_sourceFileDef->name().lower().right(2)==".m" || g_sourceFileDef->name().lower().right(3)==".mm"; } g_currentDefinition = 0; g_currentMemberDef = 0; g_searchingForBody = exBlock; g_insideBody = FALSE; g_bracketCount = 0; if (!g_exampleName.isEmpty()) { g_exampleFile = convertNameToFile(g_exampleName+"-example"); } g_includeCodeFragment = inlineFragment; //printf("** exBlock=%d exName=%s include=%d\n",exBlock,exName,inlineFragment); startCodeLine(); g_type.resize(0); g_name.resize(0); g_args.resize(0); g_parmName.resize(0); g_parmType.resize(0); if (memberDef) setParameterList(memberDef); codeYYrestart( codeYYin ); BEGIN( Body ); codeYYlex(); g_lexInit=TRUE; if (g_needsTermination) { endFontClass(); g_code->endCodeLine(); } if (exBlock && fd==0) { // delete the temporary file definition used for this example delete g_sourceFileDef; g_sourceFileDef=0; } return; } void codeFreeScanner() { #if defined(YY_FLEX_SUBMINOR_VERSION) if (g_lexInit) { codeYYlex_destroy(); } #endif } #if !defined(YY_FLEX_SUBMINOR_VERSION) extern "C" { // some bogus code to keep the compiler happy void codeYYdummy() { yy_flex_realloc(0,0); } } #elif YY_FLEX_SUBMINOR_VERSION<33 #error "You seem to be using a version of flex newer than 2.5.4 but older than 2.5.33. These versions do NOT work with doxygen! Please use version <=2.5.4 or >=2.5.33 or expect things to be parsed wrongly!" #endif