#define yy_create_buffer scanYY_create_buffer #define yy_delete_buffer scanYY_delete_buffer #define yy_scan_buffer scanYY_scan_buffer #define yy_scan_string scanYY_scan_string #define yy_scan_bytes scanYY_scan_bytes #define yy_flex_debug scanYY_flex_debug #define yy_init_buffer scanYY_init_buffer #define yy_flush_buffer scanYY_flush_buffer #define yy_load_buffer_state scanYY_load_buffer_state #define yy_switch_to_buffer scanYY_switch_to_buffer #define yyin scanYYin #define yyleng scanYYleng #define yylex scanYYlex #define yyout scanYYout #define yyrestart scanYYrestart #define yytext scanYYtext /* A lexical scanner generated by flex */ /* Scanner skeleton version: * $Header$ */ #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 16384 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 651 #define YY_END_OF_BUFFER 652 static yyconst short int yy_acclist[3820] = { 0, 336, 336,16971,16972,16973, 517, 517, 544, 544, 209, 209, 193, 193, 376, 376, 376, 376, 652, 646, 651, 646, 651, 645, 651, 2, 646, 651, 646, 651, 279, 646, 651, 278, 646, 651, 278, 646, 651, 2, 278, 646, 651, 277, 278, 646, 651, 278, 646, 651, 283, 646, 651, 283, 646, 651, 283, 646, 651, 280, 645, 651, 2, 283, 646, 651, 282, 283, 646, 651, 283, 646, 651, 283, 646, 651, 646, 651, 645, 651, 2, 646, 651, 646, 651, 440, 646, 651, 445, 646, 651, 450, 646, 651, 646, 651, 646, 651, 449, 646, 651, 447, 646, 651, 448, 646, 651, 458, 646, 651, 446, 646, 651, 444, 646, 651, 444, 646, 651, 2, 444, 646, 651, 444, 646, 651, 443, 444, 646, 651, 442, 444, 646, 651, 646, 651, 645, 651, 2, 646, 651, 468, 646, 651, 646, 651, 459, 646, 651, 457, 646, 651, 469, 646, 651, 456, 646, 651, 456, 646, 651, 455, 456, 646, 651, 455, 645, 651, 2, 455, 456, 646, 651, 456, 646, 651, 456, 646, 651, 456, 646, 651, 230, 646, 651, 646, 651, 222, 646, 651, 231, 646, 651, 231, 646, 651, 221, 646, 651, 239, 646, 651, 239, 645, 651, 2, 239, 646, 651, 271, 646, 651, 284, 646, 651, 372, 646, 651, 319, 646, 651, 646, 651, 319, 646, 651, 319, 646, 651, 328, 646, 651, 288, 646, 651, 270, 646, 651, 320, 646, 651, 270, 646, 651, 270, 646, 651, 270, 646, 651, 270, 646, 651, 270, 646, 651, 270, 646, 651, 270, 646, 651, 270, 646, 651, 270, 646, 651, 270, 646, 651, 481, 646, 651, 646, 651, 646, 651, 645, 651, 2, 646, 651, 646, 651, 270, 646, 651, 646, 651, 646, 651, 645, 651, 2, 646, 651, 335, 646, 651, 646, 651, 334, 646, 651, 333, 646, 651, 646, 651, 416, 646, 651, 415, 646, 651, 417, 646, 651, 417, 646, 651, 409, 646, 651, 409, 646, 651, 408, 409, 646, 651, 408, 645, 651, 2, 408, 409, 646, 651, 401, 409, 646, 651, 402, 409, 646, 651, 407, 409, 646, 651, 409, 646, 651, 414, 646, 651, 414, 646, 651, 2, 414, 646, 651, 412, 414, 646, 651, 413, 414, 646, 651, 414, 646, 651, 408, 409, 646, 651, 408, 645, 651, 2, 408, 409, 646, 651, 409, 646, 651, 403, 409, 646, 651, 409, 646, 651, 409, 646, 651, 409, 646, 651, 409, 646, 651, 409, 646, 651, 254, 646, 651, 254, 646, 651, 254, 645, 651, 2, 254, 646, 651, 256, 646, 651, 254, 646, 651, 254, 646, 651, 323, 646, 651, 323, 646, 651, 2, 323, 646, 651, 323, 646, 651, 322, 323, 646, 651, 321, 323, 646, 651, 336, 353, 646, 651, 336, 353, 646, 651, 336, 352, 353, 646, 651, 352, 645, 651, 2, 352, 353, 646, 651, 353, 646, 651, 353, 646, 651, 353, 646, 651, 344, 353, 646, 651, 345, 353, 646, 651, 260, 646, 651, 646, 651, 646, 651, 645, 651, 2, 646, 651, 646, 651, 261, 646, 651, 646, 651, 646, 651, 511, 645, 651, 2, 646, 651, 646, 651, 510, 646, 651, 646, 651, 429, 434, 646, 651, 429, 434, 646, 651, 428, 645, 651, 2, 429, 434, 646, 651, 426, 434, 646, 651, 434, 646, 651, 434, 646, 651, 434, 646, 651, 419, 434, 646, 651, 420, 434, 646, 651, 429, 434, 646, 651, 427, 429, 434, 646, 651, 430, 645, 651, 434, 646, 651, 434, 646, 651, 422, 646, 651, 439, 646, 651, 439, 646, 651, 438, 645, 651, 2, 439, 646, 651, 436, 439, 646, 651, 439, 646, 651, 439, 646, 651, 439, 646, 651, 434, 646, 651, 2, 434, 646, 651, 418, 434, 646, 651, 273, 646, 651, 273, 646, 651, 275, 645, 651, 2, 273, 646, 651, 273, 646, 651, 273, 646, 651, 644, 646, 651, 644, 646, 651, 644, 646, 651, 2, 644, 646, 651, 646, 651, 644, 646, 651, 646, 651, 646, 651, 643, 645, 651, 2, 646, 651, 646, 651, 225, 646, 651, 226, 646, 651, 223, 646, 651, 224, 646, 651, 554, 556, 646, 651, 554, 556, 646, 651, 556, 646, 651, 555, 645, 651, 2, 554, 556, 646, 651, 556, 646, 651, 556, 646, 651, 554, 556, 646, 651, 554, 556, 646, 651, 556, 646, 651, 556, 646, 651, 552, 556, 646, 651, 556, 646, 651, 332, 646, 651, 332, 646, 651, 331, 332, 646, 651, 331, 645, 651, 2, 331, 332, 646, 651, 332, 646, 651, 330, 332, 646, 651, 329, 332, 646, 651, 464, 646, 651, 465, 646, 651, 466, 646, 651, 467, 646, 651, 327, 646, 651, 327, 646, 651, 2, 327, 646, 651, 326, 646, 651, 327, 646, 651, 324, 646, 651, 325, 646, 651, 346, 646, 651, 473, 475, 646, 651, 473, 475, 646, 651, 470, 473, 475, 646, 651, 470, 645, 651, 2, 470, 473, 475, 646, 651, 475, 646, 651, 473, 475, 646, 651, 612, 646, 651, 612, 646, 651, 612, 646, 651, 614, 645, 651, 2, 612, 646, 651, 612, 646, 651, 612, 646, 651, 610, 612, 646, 651, 612, 646, 651, 612, 646, 651, 612, 646, 651, 612, 646, 651, 612, 646, 651, 612, 646, 651, 486, 646, 651, 486, 646, 651, 486, 646, 651, 487, 645, 651, 2, 486, 646, 651, 486, 646, 651, 486, 646, 651, 486, 646, 651, 486, 646, 651, 484, 486, 646, 651, 486, 646, 651, 486, 646, 651, 483, 487, 645, 651, 2, 486, 646, 651, 486, 646, 651, 486, 646, 651, 563, 646, 651, 563, 646, 651, 562, 563, 646, 651, 561, 645, 651, 2, 563, 646, 651, 563, 646, 651, 563, 646, 651, 562, 563, 646, 651, 563, 646, 651, 563, 646, 651, 563, 646, 651, 562, 563, 646, 651, 563, 646, 651, 563, 646, 651, 613, 646, 651, 613, 646, 651, 613, 646, 651, 616, 645, 651, 2, 613, 646, 651, 613, 646, 651, 613, 646, 651, 613, 646, 651, 613, 646, 651, 613, 646, 651, 617, 645, 651, 2, 613, 646, 651, 613, 646, 651, 646, 651, 514, 645, 651, 2, 646, 651, 646, 651, 646, 651, 513, 646, 651, 646, 651, 646, 651, 520, 645, 651, 2, 646, 651, 646, 651, 519, 646, 651, 519, 646, 651, 646, 651, 522, 645, 651, 2, 646, 651, 646, 651, 521, 646, 651, 521, 646, 651, 646, 651, 608, 646, 651, 608, 646, 651, 595, 645, 651, 2, 608, 646, 651, 597, 608, 646, 651, 608, 646, 651, 608, 646, 651, 608, 646, 651, 646, 651, 645, 651, 2, 646, 651, 600, 646, 651, 646, 651, 599, 646, 651, 646, 651, 608, 646, 651, 609, 645, 651, 608, 646, 651, 608, 646, 651, 608, 646, 651, 608, 646, 651, 601, 608, 646, 651, 607, 646, 651, 607, 646, 651, 2, 607, 646, 651, 606, 607, 646, 651, 607, 646, 651, 592, 646, 651, 509, 646, 651, 590, 646, 651, 590, 646, 651, 590, 646, 651, 585, 645, 651, 2, 590, 646, 651, 590, 646, 651, 590, 646, 651, 590, 646, 651, 590, 646, 651, 590, 646, 651, 590, 646, 651,16971,16972,16973, 584, 585, 645, 651, 2, 590, 646, 651, 590, 646, 651,16971,16972,16973, 590, 646, 651, 590, 646, 651, 590, 646, 651, 495, 646, 651, 495, 646, 651, 495, 646, 651, 493, 645, 651, 2, 495, 646, 651, 495, 646, 651, 495, 646, 651, 594, 646, 651, 594, 646, 651, 2, 594, 646, 651, 593, 594, 646, 651, 594, 646, 651, 594, 646, 651, 516, 645, 651, 515, 646, 651, 517, 646, 651, 517, 646, 651, 518, 645, 651, 2, 517, 646, 651, 517, 646, 651, 579, 645, 651, 578, 646, 651, 646, 651, 646, 651, 535, 645, 651, 2, 646, 651, 646, 651, 634, 646, 651, 634, 646, 651, 633, 645, 651, 2, 634, 646, 651, 634, 646, 651, 634, 646, 651, 634, 646, 651, 634, 646, 651, 634, 646, 651, 634, 646, 651, 624, 646, 651, 624, 646, 651, 623, 645, 651, 2, 624, 646, 651, 624, 646, 651, 624, 646, 651, 624, 646, 651, 624, 646, 651, 624, 646, 651, 624, 646, 651,17009, 620, 646, 651, 620, 646, 651, 619, 645, 651, 2, 620, 646, 651, 620, 646, 651, 620, 646, 651, 562, 563, 646, 651, 563, 646, 651, 563, 646, 651, 563, 646, 651, 563, 646, 651, 562, 563, 646, 651, 563, 646, 651, 575, 646, 651, 575, 646, 651, 574, 645, 651, 2, 575, 646, 651, 575, 646, 651, 646, 651, 526, 645, 651, 646, 651, 525, 646, 651, 525, 646, 651, 646, 651, 646, 651, 527, 645, 651, 2, 646, 651, 646, 651, 524, 645, 651, 646, 651, 523, 646, 651, 523, 646, 651, 563, 646, 651, 563, 646, 651, 646, 651, 507, 646, 651, 507, 646, 651, 529, 645, 651, 528, 646, 651, 356, 646, 651, 356, 646, 651, 356, 646, 651, 645, 651, 2, 356, 646, 651, 356, 646, 651, 356, 646, 651, 355, 356, 646, 651, 356, 646, 651, 360, 646, 651, 361, 646, 651, 362, 409, 646, 651, 363, 409, 646, 651, 366, 646, 651, 366, 646, 651, 2, 366, 646, 651, 366, 646, 651, 366, 646, 651, 371, 646, 651, 371, 646, 651, 370, 371, 646, 651, 370, 645, 651, 2, 370, 371, 646, 651, 367, 371, 646, 651, 368, 371, 646, 651, 369, 371, 646, 651, 371, 646, 651, 646, 651, 645, 651, 2, 646, 651, 646, 651, 348, 646, 651, 348, 646, 651, 349, 646, 651, 347, 646, 651, 350, 646, 651, 351, 646, 651, 544, 548, 646, 651, 544, 548, 646, 651, 548, 646, 651, 547, 645, 651, 2, 544, 548, 646, 651, 548, 646, 651, 548, 646, 651, 548, 646, 651, 220, 646, 651, 220, 646, 651, 2, 220, 646, 651, 220, 646, 651, 220, 646, 651, 219, 220, 646, 651, 217, 220, 646, 651, 218, 645, 651, 2, 220, 646, 651, 220, 646, 651, 220, 646, 651, 220, 646, 651, 220, 646, 651, 220, 646, 651, 220, 646, 651, 219, 220, 646, 651, 220, 646, 651, 220, 646, 651, 220, 646, 651, 92, 219, 220, 646, 651, 220, 646, 651, 92, 219, 220, 646, 651, 92, 219, 220, 646, 651, 92, 219, 220, 646, 651, 220, 646, 651, 217, 220, 646, 651, 220, 646, 651, 220, 646, 651, 220, 646, 651, 646, 651, 67, 646, 651, 646, 651, 645, 651, 2, 646, 651, 646, 651, 68, 646, 651, 646, 651, 22, 646, 651, 22, 646, 651, 2, 22, 646, 651, 22, 646, 651, 22, 646, 651, 22, 646, 651, 22, 646, 651, 22, 646, 651, 213, 645, 651, 220, 646, 651, 198, 219, 220, 646, 651, 200, 219, 220, 646, 651, 202, 219, 220, 646, 651, 209, 210, 646, 651, 209, 210, 646, 651, 209, 210, 646, 651, 208, 645, 651, 2, 209, 210, 646, 651, 210, 646, 651, 210, 646, 651, 209, 210, 646, 651, 210, 646, 651, 41, 646, 651, 41, 646, 651, 646, 651, 42, 646, 651, 42, 646, 651, 43, 645, 651, 2, 42, 646, 651, 42, 646, 651, 42, 646, 651, 40, 646, 651, 646, 651, 204, 646, 651, 204, 646, 651, 646, 651, 205, 646, 651, 205, 646, 651, 195, 646, 651, 646, 651, 646, 651, 189, 646, 651, 189, 646, 651, 191, 646, 651, 191, 646, 651, 192, 646, 651, 193, 646, 651, 193, 646, 651, 193, 645, 651, 2, 193, 646, 651, 193, 646, 651, 194, 646, 651, 583, 645, 651, 582, 646, 651, 114, 646, 651, 114, 646, 651, 114, 646, 651, 112, 646, 651, 112, 646, 651, 112, 646, 651, 113, 646, 651, 113, 646, 651, 113, 646, 651, 115, 646, 651, 115, 646, 651, 115, 646, 651, 120, 646, 651, 120, 646, 651, 119, 645, 651, 2, 120, 646, 651, 120, 646, 651, 120, 646, 651, 646, 651, 646, 651, 51, 646, 651, 51, 645, 651, 2, 51, 646, 651, 646, 651, 646, 651, 645, 651, 2, 646, 651, 646, 651, 73, 646, 651,16458, 646, 651, 36, 646, 651, 36, 646, 651, 34, 35, 645, 651, 2, 36, 646, 651, 36, 646, 651, 36, 646, 651, 36, 646, 651, 646, 651, 31, 646, 651, 31, 646, 651, 48, 646, 651, 48, 646, 651, 2, 48, 646, 651, 48, 646, 651, 646, 651, 646, 651, 2, 646, 651, 646, 651, 75, 646, 651, 77, 646, 651, 646, 651, 646, 651, 78, 645, 651, 2, 646, 651, 646, 651, 88, 645, 651, 87, 646, 651, 87, 646, 651, 87, 646, 651, 646, 651, 82, 646, 651, 82, 646, 651, 82, 646, 651, 82, 646, 651, 646, 651, 83, 646, 651, 83, 646, 651, 84, 645, 651, 646, 651, 646, 651, 558, 646, 651, 646, 651, 646, 651, 559, 645, 651, 2, 646, 651, 560, 646, 651, 646, 651, 269, 646, 651, 269, 646, 651, 2, 269, 646, 651, 269, 646, 651, 265, 269, 646, 651, 266, 269, 646, 651, 374, 400, 646, 651, 374, 400, 646, 651, 399, 645, 651, 2, 374, 400, 646, 651, 395, 400, 646, 651, 400, 646, 651, 374, 400, 646, 651, 400, 646, 651, 375, 400, 646, 651, 375, 400, 646, 651, 2, 375, 400, 646, 651, 377, 400, 646, 651, 400, 646, 651, 390, 400, 646, 651, 391, 400, 646, 651, 400, 646, 651, 400, 646, 651, 2, 400, 646, 651, 392, 400, 646, 651, 393, 400, 646, 651, 382, 387, 646, 651, 382, 387, 646, 651, 386, 645, 651, 2, 382, 387, 646, 651, 387, 646, 651, 382, 387, 646, 651, 385, 646, 651, 385, 646, 651, 384, 645, 651, 2, 385, 646, 651, 385, 646, 651, 373, 400, 646, 651, 373, 400, 646, 651, 376, 400, 646, 651, 376, 399, 645, 651, 2, 376, 400, 646, 651, 378, 400, 646, 651, 379, 400, 646, 651, 400, 646, 651, 388, 400, 646, 651, 389, 400, 646, 651, 463, 646, 651, 463, 646, 651, 462, 463, 646, 651, 462, 645, 651, 2, 462, 463, 646, 651, 463, 646, 651, 460, 463, 646, 651, 461, 463, 646, 651, 6, 646, 651, 6, 646, 651, 2, 6, 646, 651, 6, 646, 651, 6, 646, 651, 571, 646, 651, 571, 646, 651, 2, 571, 646, 651, 571, 646, 651, 571, 646, 651, 571, 646, 651, 571, 646, 651, 571, 646, 651, 571, 646, 651, 557, 646, 651, 297, 646, 651, 297, 646, 651, 297, 646, 651, 296, 645, 651, 2, 297, 646, 651, 292, 297, 646, 651, 297, 646, 651, 289, 297, 646, 651, 291, 297, 646, 651, 297, 646, 651, 291, 297, 646, 651, 290, 297, 646, 651, 302, 646, 651, 302, 646, 651, 301, 645, 651, 2, 302, 646, 651, 299, 302, 646, 651, 302, 646, 651, 302, 646, 651, 302, 646, 651, 310, 646, 651, 310, 646, 651, 306, 645, 651, 2, 310, 646, 651, 303, 646, 651, 646, 651, 304, 646, 651, 305, 646, 651, 310, 646, 651, 317, 646, 651, 317, 646, 651, 318, 645, 651, 2, 317, 646, 651, 311, 646, 651, 646, 651, 317, 646, 651, 312, 646, 651, 313, 646, 651, 1, 648, 650, 276, 279, 648, 650, 281, 450, 445, 441, 450, 445, 446, 442, 457, 469, 457, 469, 239, 239, 271, 284, 354, 648, 650, 270, 263, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 264, 270, 648, 650, 333, 408, 407, 407, 408, 406, 255, 336, 336, 1, 336, 336, 352, 352, 338, 339, 648, 337, 650, 261, 261, 510, 510, 429, 429, 1, 429, 432, 648, 433, 650, 429, 427, 429, 432, 648, 433, 650, 431, 437, 437, 648, 437, 650, 435, 275, 275, 274, 644, 644, 1, 644, 644, 649, 647, 648, 644, 647, 650, 643, 1, 643, 648, 650, 554, 554, 1, 554, 572, 553, 650, 554, 552, 552, 551, 553, 650, 331, 327, 327, 1, 327, 327, 648, 327, 650, 346, 473, 473, 1, 473, 470, 473, 470, 474, 471, 648, 472, 473, 650, 637, 642, 648, 565, 650, 610, 611, 640, 640, 641, 640, 640, 564, 565, 650, 638, 488, 483, 485, 640, 485, 640, 641, 483, 485, 640, 485, 640, 485, 640, 485, 640, 562, 562, 562, 611, 564, 565, 650, 636, 513, 512, 513, 520, 519, 519, 650, 522, 521, 521, 521, 650, 598, 599, 599, 604, 591, 592, 509,16971, 16972,16973, 584,16971,16972,16973, 640, 641,16971,16972, 16973, 584, 640, 640, 640,16971,16972,16973, 640, 650, 16971,16972,16973, 493, 494, 515, 517, 517, 1, 517, 517, 648, 517, 650, 578, 535, 1, 535, 648, 650, 635, 631, 648, 631, 650, 611, 632, 632, 626, 627, 621, 648, 621, 650,17009, 622, 622, 618, 648, 618, 650, 562, 562, 525, 525, 650, 527, 1, 527, 648, 650, 523, 523, 650, 507, 507, 650, 528, 528, 355, 355, 358, 357, 359, 364, 365, 370, 369, 369, 347, 347, 544, 544, 1, 544, 546, 648, 546, 650, 545, 546, 650, 219, 217, 216, 215, 216, 216, 92, 197, 212, 648, 211, 650, 219, 177, 196, 105, 92, 219, 92, 219, 196, 105, 92, 219, 92, 219, 92, 219, 217, 3, 211, 650, 67, 67, 68, 68, 21, 21, 648, 21, 650, 211, 650, 198, 219, 198, 200, 219, 200, 202, 219, 202, 209, 209, 1, 209, 209, 209, 207, 648, 206, 650, 209, 41, 41, 650, 40, 204, 204, 650, 205, 205, 650, 189, 189, 650, 191, 191, 650, 193, 193, 1, 193, 193, 648, 193, 650, 582, 114, 114, 1, 114, 114, 648, 114, 650, 112, 112, 1, 112, 112, 648, 112, 650, 113, 113, 1, 113, 113, 648, 113, 650, 115, 115, 1, 115, 115, 648, 115, 650, 51, 51, 1, 51, 51, 648, 650, 73, 16458, 73,16458, 34, 1, 34, 35, 35, 648, 35, 650, 31, 31, 650, 48, 48, 1, 48, 48, 648, 48, 650, 76, 1, 76, 648, 650, 77, 78, 1, 78, 648, 650, 87, 87, 87, 82, 82, 82, 82, 650, 83, 83, 650, 558, 559, 1, 559, 650, 267, 374, 374, 1, 374, 374, 648, 374, 650, 394, 375, 375, 1, 375, 382, 382, 1, 382, 383, 382, 650, 385, 385, 1, 385, 385, 648, 385, 650, 373, 373, 1, 373, 376, 648, 650, 462, 650, 557, 300, 300, 648, 300, 650, 298, 310, 310, 1, 310, 310, 648, 310, 650, 317, 317, 1, 317, 317, 648, 317, 650, 445, 445, 442, 442, 229, 229, 354, 476, 478, 270, 262, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 476, 478, 406, 253, 343, 343, 339, 340, 337, 261, 261, 510, 510, 425, 425, 431, 274, 554, 551, 1, 474, 567, 568, 490, 564, 641, 639, 489, 641, 564, 513, 513, 519, 521, 599, 599, 604, 16971,16972,16973, 641,16971,16972,16973,16971,16972,16973, 16971,16972,16973, 8780, 8817, 622, 622, 622, 525, 523, 507, 528, 528, 528, 355, 355, 347, 215, 215, 216, 92, 92, 97, 97, 96, 92, 178, 174, 180, 101, 102, 103, 100, 104, 92, 92, 219, 92, 219, 92, 219, 68, 68, 199, 201, 203, 209, 204, 205, 73, 16458, 8266, 73,16458, 31, 87, 87, 82, 83, 268, 398, 398, 380, 5, 569, 570, 295, 295, 309, 309, 316, 316, 287, 442, 228, 227, 228, 477, 479, 479, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 287, 477, 287, 479, 342, 341, 342, 424, 423, 424, 554, 566, 490, 489, 615, 586, 8780, 528, 528, 214, 16, 92, 92, 4, 176, 179, 175, 181, 173, 171, 167, 169, 164, 182, 184, 186, 166, 160, 156, 154, 152, 162, 158, 71, 62, 91, 92, 71, 92, 219, 92, 219, 209, 80, 87, 87, 397, 396, 397, 380, 294, 293, 294, 308, 307, 308, 315, 314, 315, 227, 286, 285, 270, 252, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 404, 341, 423, 421, 554, 542, 491, 496, 505, 503, 602, 528, 528, 92, 172, 168, 170, 165, 183, 185, 187, 161, 157, 155, 153, 163, 159, 141, 145, 146, 148, 150, 143, 49, 53, 89, 50, 54, 92, 66, 89, 95, 95, 95, 95, 92, 219, 209, 190, 188, 81, 87, 396, 381, 293, 307, 314, 452, 252, 249, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 251, 258, 270, 404, 410, 550, 554, 580, 499, 541, 496, 505, 503, 500, 602, 605, 515, 630, 9, 7, 8, 92, 142, 147, 149, 151, 144, 137, 139, 133, 135, 132, 89, 89, 58, 110, 39, 55, 108, 92, 66, 66, 66, 95, 97, 95, 92, 95, 92, 95, 95, 92, 219, 99, 209, 190, 190, 188, 188, 116, 454, 451, 249, 251, 272, 241, 244, 243, 270, 247, 270, 270, 270, 236, 270, 270, 240, 250, 270, 270, 270, 270, 411, 554, 540, 499, 501, 500, 482, 489, 8781, 8780, 573, 12, 14, 92, 138, 140, 134, 136, 129, 130, 127, 79, 63, 65, 111, 92, 66, 97, 66, 47, 38, 95, 92, 95, 95, 92, 95, 92, 95, 92, 95, 92, 219, 209, 117, 85, 241, 244, 243, 247, 236, 240, 250, 270, 270, 238, 270, 270, 236, 270, 232, 270, 270, 242, 405, 549, 554, 549, 536, 506, 533, 508, 501, 489, 603, 8779, 8780, 576, 10, 11, 13, 92, 131, 128, 125, 123, 60, 72, 61, 64, 92, 29, 28, 72, 92, 95, 92, 95, 95, 92, 95, 92, 219, 209, 44, 86, 85, 453, 238, 232, 242, 270, 270, 238, 270, 270, 270, 232, 8449, 263,16641, 245, 405, 497, 506, 577, 629, 504, 492, 508, 581, 628, 603, 530, 531, 92, 126, 124, 90, 45, 106, 57, 52, 92, 90, 90, 45, 45, 92, 95, 95, 92, 219, 92, 219, 98, 209, 98, 86, 85, 245, 480, 248, 246, 270, 237, 270, 270, 8449, 262, 259, 497, 502, 504, 498, 492, 538, 596, 15, 92, 121, 46, 70, 17, 37, 109, 32, 92, 17, 17, 32, 32, 92, 95, 92, 95, 92, 92, 94, 96, 118, 86, 248, 246, 237, 480, 480, 270, 237, 270, 270, 537, 539, 539, 534, 502, 498, 92, 122, 56, 19, 69, 92, 19, 19, 92, 95, 92, 95, 94, 92, 92, 91, 94, 92, 94, 92, 92, 270, 270, 233, 532, 92, 59, 92, 92, 23, 92, 95, 92, 95, 93, 92, 233, 235, 270, 233, 543, 107, 30, 92, 95, 92, 95, 92, 92, 18, 33, 235, 235, 270, 95, 95, 92, 95, 95, 95, 92, 95, 95, 92, 95, 92, 92, 20, 234, 24, 92, 95, 95, 92, 95, 92, 92, 234, 234, 25, 27, 92, 95, 95, 92, 95, 92, 95, 92, 95, 92, 95, 92, 92, 95, 92, 95, 92, 95, 92, 92, 92, 95, 92, 95, 92, 92, 92, 95, 92, 95, 92, 26, 92, 95, 92, 95, 92, 92, 95, 92, 95, 92, 95, 92, 95, 92, 95, 92, 95, 92, 95, 92, 95 } ; static yyconst short int yy_accept[4099] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 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, 6, 6, 6, 6, 6, 6, 6, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 15, 16, 17, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 19, 21, 23, 25, 28, 30, 33, 36, 39, 43, 47, 50, 53, 56, 59, 62, 66, 70, 73, 76, 78, 80, 83, 85, 88, 91, 94, 96, 98, 101, 104, 107, 110, 113, 116, 119, 123, 126, 130, 134, 136, 138, 141, 144, 146, 149, 152, 155, 158, 161, 165, 168, 173, 176, 179, 182, 185, 187, 190, 193, 196, 199, 202, 205, 209, 212, 215, 218, 221, 223, 226, 229, 232, 235, 238, 241, 244, 247, 250, 253, 256, 259, 262, 265, 268, 271, 274, 276, 278, 280, 283, 285, 288, 290, 292, 294, 297, 300, 302, 305, 308, 310, 313, 316, 319, 322, 325, 328, 332, 335, 340, 344, 348, 352, 355, 358, 361, 365, 369, 373, 376, 380, 383, 388, 391, 395, 398, 401, 404, 407, 410, 413, 416, 419, 423, 426, 429, 432, 435, 438, 442, 445, 449, 453, 457, 461, 466, 469, 474, 477, 480, 483, 487, 491, 494, 496, 498, 500, 503, 505, 508, 510, 512, 515, 518, 520, 523, 525, 529, 533, 536, 541, 545, 548, 551, 554, 558, 562, 566, 571, 574, 577, 580, 583, 586, 589, 592, 596, 600, 603, 606, 609, 612, 616, 620, 623, 626, 629, 633, 636, 639, 642, 645, 648, 652, 654, 657, 659, 661, 664, 667, 669, 672, 675, 678, 681, 685, 689, 692, 695, 700, 703, 706, 710, 714, 717, 720, 724, 727, 730, 733, 737, 740, 745, 748, 752, 756, 759, 762, 765, 768, 771, 774, 778, 781, 784, 787, 790, 793, 797, 801, 806, 809, 815, 818, 822, 825, 828, 831, 834, 838, 841, 844, 848, 851, 854, 857, 860, 863, 866, 869, 872, 875, 878, 882, 885, 888, 891, 894, 898, 901, 904, 908, 912, 915, 918, 921, 924, 928, 931, 935, 938, 941, 945, 948, 951, 954, 958, 961, 964, 967, 970, 973, 976, 980, 983, 986, 989, 992, 995, 998, 1002, 1005, 1007, 1010, 1013, 1015, 1017, 1020, 1022, 1024, 1027, 1030, 1032, 1035, 1038, 1040, 1043, 1046, 1048, 1051, 1054, 1056, 1059, 1062, 1065, 1069, 1073, 1076, 1079, 1082, 1084, 1086, 1089, 1092, 1094, 1097, 1099, 1102, 1105, 1108, 1111, 1114, 1117, 1121, 1124, 1127, 1131, 1135, 1138, 1141, 1144, 1147, 1150, 1153, 1156, 1160, 1163, 1166, 1169, 1172, 1175, 1181, 1185, 1189, 1195, 1198, 1201, 1204, 1207, 1210, 1213, 1216, 1220, 1223, 1226, 1229, 1232, 1236, 1240, 1243, 1246, 1249, 1252, 1255, 1258, 1261, 1265, 1268, 1271, 1274, 1276, 1278, 1281, 1284, 1286, 1289, 1292, 1295, 1299, 1302, 1305, 1308, 1311, 1314, 1317, 1320, 1323, 1326, 1330, 1333, 1336, 1339, 1342, 1345, 1349, 1352, 1355, 1358, 1362, 1365, 1368, 1372, 1375, 1378, 1381, 1384, 1388, 1391, 1394, 1397, 1400, 1404, 1407, 1409, 1412, 1414, 1417, 1420, 1422, 1424, 1427, 1430, 1432, 1435, 1437, 1440, 1443, 1446, 1449, 1451, 1454, 1457, 1460, 1463, 1466, 1469, 1472, 1474, 1478, 1481, 1484, 1488, 1491, 1494, 1497, 1501, 1505, 1508, 1511, 1515, 1518, 1521, 1524, 1527, 1531, 1534, 1539, 1543, 1547, 1551, 1554, 1556, 1558, 1561, 1563, 1566, 1569, 1572, 1575, 1578, 1581, 1585, 1589, 1592, 1595, 1600, 1603, 1606, 1609, 1612, 1615, 1619, 1622, 1625, 1629, 1633, 1636, 1640, 1643, 1646, 1649, 1652, 1655, 1658, 1662, 1665, 1668, 1671, 1676, 1679, 1684, 1689, 1694, 1697, 1701, 1704, 1707, 1710, 1712, 1715, 1717, 1719, 1722, 1724, 1727, 1729, 1732, 1735, 1739, 1742, 1745, 1748, 1751, 1754, 1757, 1760, 1765, 1770, 1775, 1779, 1783, 1787, 1790, 1795, 1798, 1801, 1805, 1808, 1811, 1814, 1816, 1819, 1822, 1825, 1829, 1832, 1835, 1838, 1840, 1843, 1846, 1848, 1851, 1854, 1857, 1859, 1861, 1864, 1867, 1870, 1873, 1876, 1879, 1882, 1885, 1889, 1892, 1895, 1898, 1901, 1904, 1907, 1910, 1913, 1916, 1919, 1922, 1925, 1928, 1931, 1934, 1937, 1940, 1943, 1946, 1950, 1953, 1956, 1958, 1960, 1963, 1966, 1970, 1972, 1974, 1976, 1979, 1981, 1985, 1987, 1990, 1993, 1997, 2001, 2004, 2007, 2010, 2012, 2015, 2018, 2021, 2024, 2028, 2031, 2033, 2035, 2038, 2040, 2043, 2046, 2048, 2050, 2053, 2056, 2058, 2061, 2064, 2067, 2070, 2072, 2075, 2078, 2081, 2084, 2086, 2089, 2092, 2095, 2097, 2099, 2102, 2104, 2106, 2109, 2112, 2115, 2117, 2120, 2123, 2127, 2130, 2134, 2138, 2142, 2146, 2149, 2154, 2158, 2161, 2165, 2168, 2172, 2176, 2181, 2185, 2188, 2192, 2196, 2199, 2202, 2206, 2210, 2214, 2218, 2222, 2225, 2230, 2233, 2237, 2240, 2243, 2246, 2250, 2253, 2257, 2261, 2265, 2269, 2274, 2278, 2282, 2285, 2289, 2293, 2296, 2299, 2303, 2306, 2311, 2314, 2318, 2322, 2325, 2328, 2332, 2335, 2338, 2341, 2344, 2348, 2351, 2354, 2357, 2360, 2363, 2366, 2369, 2372, 2375, 2378, 2381, 2385, 2389, 2392, 2396, 2400, 2403, 2407, 2411, 2414, 2417, 2420, 2424, 2428, 2431, 2434, 2437, 2440, 2443, 2446, 2450, 2453, 2455, 2458, 2461, 2464, 2467, 2470, 2473, 2477, 2480, 2482, 2485, 2488, 2491, 2491, 2492, 2493, 2494, 2495, 2496, 2496, 2496, 2497, 2498, 2499, 2499, 2499, 2499, 2499, 2500, 2500, 2500, 2501, 2502, 2503, 2503, 2504, 2504, 2505, 2505, 2505, 2506, 2506, 2506, 2506, 2507, 2508, 2508, 2508, 2509, 2509, 2510, 2510, 2510, 2510, 2510, 2510, 2510, 2510, 2510, 2510, 2511, 2512, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2514, 2515, 2515, 2516, 2517, 2517, 2517, 2518, 2519, 2520, 2521, 2522, 2523, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2531, 2532, 2533, 2534, 2535, 2535, 2536, 2536, 2536, 2536, 2536, 2537, 2538, 2538, 2539, 2540, 2541, 2542, 2543, 2544, 2545, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2547, 2547, 2547, 2547, 2547, 2547, 2547, 2548, 2549, 2550, 2552, 2554, 2555, 2555, 2556, 2556, 2556, 2558, 2560, 2560, 2560, 2560, 2560, 2561, 2561, 2562, 2562, 2562, 2562, 2563, 2563, 2564, 2565, 2566, 2568, 2568, 2568, 2570, 2572, 2572, 2572, 2573, 2575, 2577, 2579, 2580, 2580, 2581, 2583, 2585, 2586, 2587, 2588, 2588, 2589, 2589, 2590, 2591, 2593, 2594, 2594, 2595, 2597, 2600, 2600, 2601, 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2609, 2609, 2609, 2610, 2612, 2612, 2613, 2613, 2613, 2614, 2615, 2618, 2619, 2620, 2621, 2623, 2625, 2627, 2628, 2629, 2629, 2630, 2632, 2632, 2634, 2635, 2635, 2636, 2638, 2641, 2641, 2641, 2642, 2644, 2646, 2647, 2647, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2649, 2651, 2652, 2653, 2656, 2656, 2656, 2657, 2658, 2658, 2658, 2658, 2658, 2658, 2658, 2658, 2658, 2658, 2658, 2658, 2658, 2659, 2659, 2659, 2661, 2664, 2667, 2669, 2671, 2673, 2674, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2675, 2676, 2676, 2676, 2676, 2676, 2676, 2676, 2677, 2677, 2677, 2677, 2680, 2680, 2680, 2681, 2681, 2682, 2683, 2683, 2684, 2684, 2685, 2685, 2686, 2688, 2688, 2689, 2689, 2690, 2691, 2693, 2693, 2693, 2694, 2694, 2694, 2694, 2694, 2695, 2695, 2696, 2696, 2696, 2696, 2696, 2696, 2697, 2697, 2697, 2697, 2698, 2699, 2700, 2700, 2700, 2703, 2704, 2704, 2707, 2707, 2707, 2712, 2714, 2715, 2719, 2720, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2725, 2725, 2726, 2726, 2727, 2728, 2729, 2731, 2733, 2735, 2736, 2736, 2737, 2737, 2738, 2739, 2740, 2741, 2742, 2744, 2746, 2747, 2747, 2747, 2747, 2747, 2748, 2749, 2750, 2751, 2753, 2755, 2755, 2756, 2757, 2758, 2760, 2762, 2763, 2763, 2763, 2763, 2764, 2764, 2764, 2765, 2767, 2767, 2768, 2768, 2769, 2770, 2771, 2772, 2772, 2773, 2775, 2775, 2776, 2778, 2778, 2779, 2779, 2780, 2780, 2780, 2780, 2781, 2781, 2782, 2782, 2783, 2784, 2785, 2785, 2786, 2787, 2788, 2789, 2790, 2790, 2790, 2791, 2792, 2792, 2793, 2794, 2796, 2798, 2800, 2800, 2803, 2803, 2803, 2803, 2803, 2803, 2803, 2803, 2803, 2804, 2805, 2806, 2806, 2806, 2808, 2809, 2810, 2810, 2810, 2811, 2811, 2811, 2811, 2811, 2811, 2813, 2815, 2816, 2816, 2816, 2816, 2817, 2817, 2817, 2817, 2817, 2817, 2817, 2817, 2817, 2817, 2817, 2817, 2817, 2817, 2817, 2817, 2818, 2818, 2818, 2818, 2818, 2818, 2818, 2818, 2818, 2819, 2819, 2819, 2819, 2819, 2819, 2819, 2819, 2819, 2819, 2821, 2821, 2823, 2824, 2824, 2824, 2824, 2824, 2824, 2824, 2824, 2824, 2824, 2825, 2825, 2825, 2825, 2825, 2825, 2825, 2825, 2827, 2829, 2831, 2832, 2832, 2832, 2832, 2832, 2833, 2835, 2835, 2836, 2837, 2837, 2837, 2837, 2838, 2838, 2839, 2840, 2842, 2844, 2844, 2844, 2846, 2846, 2846, 2848, 2849, 2849, 2849, 2851, 2852, 2852, 2852, 2854, 2855, 2856, 2857, 2859, 2860, 2860, 2861, 2861, 2863, 2865, 2865, 2866, 2866, 2867, 2869, 2869, 2870, 2870, 2871, 2873, 2873, 2874, 2876, 2876, 2876, 2877, 2879, 2880, 2882, 2883, 2884, 2886, 2888, 2890, 2891, 2892, 2893, 2895, 2897, 2899, 2900, 2901, 2903, 2905, 2907, 2908, 2909, 2911, 2913, 2915, 2916, 2917, 2919, 2921, 2923, 2923, 2923, 2923, 2923, 2924, 2925, 2925, 2926, 2927, 2928, 2929, 2930, 2930, 2930, 2930, 2930, 2932, 2932, 2934, 2934, 2935, 2935, 2936, 2937, 2938, 2940, 2942, 2942, 2942, 2943, 2945, 2946, 2947, 2949, 2951, 2953, 2953, 2954, 2954, 2955, 2956, 2957, 2958, 2959, 2959, 2960, 2960, 2961, 2962, 2963, 2964, 2965, 2966, 2967, 2967, 2968, 2969, 2970, 2972, 2972, 2973, 2975, 2975, 2975, 2976, 2976, 2977, 2977, 2978, 2979, 2980, 2980, 2981, 2981, 2982, 2983, 2985, 2987, 2989, 2990, 2991, 2992, 2994, 2994, 2994, 2995, 2996, 2998, 2999, 3001, 3002, 3003, 3005, 3007, 3009, 3010, 3011, 3013, 3014, 3014, 3014, 3015, 3016, 3017, 3017, 3017, 3017, 3017, 3018, 3018, 3019, 3019, 3019, 3020, 3022, 3024, 3025, 3026, 3027, 3029, 3029, 3029, 3031, 3033, 3034, 3035, 3037, 3037, 3037, 3039, 3041, 3041, 3041, 3041, 3041, 3042, 3042, 3042, 3043, 3043, 3043, 3044, 3044, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3046, 3046, 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, 3049, 3049, 3049, 3050, 3050, 3050, 3051, 3051, 3052, 3053, 3054, 3055, 3056, 3057, 3058, 3059, 3060, 3061, 3062, 3063, 3064, 3065, 3066, 3067, 3068, 3069, 3070, 3071, 3071, 3072, 3072, 3073, 3073, 3073, 3074, 3075, 3075, 3076, 3076, 3077, 3077, 3077, 3077, 3077, 3077, 3078, 3079, 3079, 3080, 3080, 3081, 3082, 3082, 3083, 3083, 3083, 3084, 3084, 3085, 3085, 3086, 3086, 3087, 3088, 3088, 3089, 3089, 3089, 3089, 3089, 3090, 3091, 3091, 3092, 3092, 3092, 3093, 3093, 3094, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3096, 3097, 3097, 3098, 3098, 3098, 3098, 3098, 3098, 3098, 3098, 3098, 3098, 3098, 3098, 3098, 3098, 3099, 3100, 3100, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3102, 3102, 3102, 3102, 3102, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3104, 3104, 3105, 3105, 3106, 3107, 3108, 3108, 3108, 3109, 3109, 3110, 3111, 3111, 3111, 3111, 3111, 3114, 3118, 3121, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3126, 3127, 3128, 3129, 3129, 3129, 3129, 3129, 3129, 3130, 3131, 3132, 3133, 3134, 3135, 3135, 3136, 3136, 3137, 3137, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3139, 3141, 3141, 3141, 3142, 3142, 3143, 3143, 3144, 3144, 3145, 3145, 3146, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3150, 3150, 3150, 3150, 3150, 3150, 3150, 3150, 3150, 3150, 3150, 3151, 3151, 3151, 3151, 3151, 3152, 3152, 3153, 3153, 3153, 3153, 3153, 3154, 3154, 3154, 3154, 3154, 3154, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3158, 3160, 3162, 3162, 3162, 3162, 3162, 3163, 3163, 3164, 3164, 3164, 3165, 3166, 3167, 3167, 3168, 3168, 3168, 3169, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3172, 3172, 3173, 3173, 3175, 3175, 3176, 3177, 3178, 3179, 3180, 3180, 3180, 3181, 3182, 3182, 3183, 3183, 3183, 3183, 3184, 3184, 3185, 3186, 3186, 3187, 3188, 3188, 3189, 3189, 3190, 3190, 3191, 3191, 3192, 3192, 3193, 3193, 3194, 3194, 3195, 3195, 3195, 3195, 3195, 3195, 3196, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3199, 3200, 3201, 3202, 3203, 3204, 3205, 3206, 3207, 3208, 3209, 3210, 3211, 3212, 3213, 3214, 3215, 3216, 3217, 3218, 3219, 3220, 3222, 3224, 3224, 3224, 3224, 3224, 3225, 3227, 3227, 3227, 3228, 3230, 3230, 3230, 3230, 3230, 3231, 3231, 3231, 3231, 3231, 3231, 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, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3235, 3235, 3235, 3235, 3235, 3235, 3235, 3236, 3236, 3236, 3236, 3236, 3236, 3236, 3236, 3236, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 3238, 3239, 3239, 3239, 3239, 3239, 3239, 3239, 3239, 3239, 3239, 3239, 3239, 3240, 3240, 3241, 3242, 3243, 3244, 3244, 3245, 3245, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3247, 3247, 3247, 3247, 3247, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3249, 3249, 3249, 3249, 3250, 3250, 3250, 3251, 3251, 3252, 3252, 3253, 3253, 3253, 3254, 3254, 3255, 3255, 3256, 3256, 3256, 3257, 3257, 3257, 3257, 3257, 3257, 3258, 3258, 3258, 3258, 3259, 3259, 3259, 3259, 3259, 3259, 3259, 3259, 3259, 3259, 3260, 3260, 3261, 3261, 3262, 3262, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3263, 3264, 3264, 3264, 3265, 3265, 3265, 3265, 3265, 3265, 3265, 3266, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3267, 3268, 3268, 3268, 3268, 3268, 3268, 3268, 3268, 3268, 3268, 3268, 3270, 3272, 3272, 3272, 3272, 3273, 3273, 3273, 3273, 3273, 3273, 3273, 3273, 3273, 3275, 3276, 3276, 3276, 3277, 3279, 3279, 3279, 3280, 3281, 3283, 3283, 3284, 3286, 3286, 3287, 3289, 3289, 3289, 3289, 3289, 3289, 3290, 3290, 3291, 3292, 3292, 3292, 3292, 3292, 3292, 3292, 3292, 3292, 3292, 3292, 3292, 3292, 3292, 3292, 3292, 3292, 3292, 3292, 3292, 3293, 3294, 3295, 3296, 3297, 3298, 3299, 3300, 3301, 3302, 3303, 3304, 3305, 3306, 3307, 3308, 3309, 3310, 3311, 3312, 3313, 3313, 3313, 3313, 3314, 3314, 3314, 3315, 3315, 3316, 3316, 3317, 3317, 3317, 3317, 3318, 3318, 3318, 3318, 3318, 3318, 3318, 3318, 3319, 3319, 3319, 3320, 3320, 3321, 3321, 3321, 3321, 3321, 3321, 3321, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3322, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3323, 3324, 3325, 3325, 3325, 3325, 3325, 3325, 3325, 3325, 3325, 3325, 3325, 3326, 3326, 3326, 3326, 3326, 3326, 3326, 3326, 3326, 3327, 3327, 3327, 3328, 3328, 3329, 3329, 3330, 3330, 3330, 3331, 3331, 3332, 3332, 3333, 3333, 3333, 3333, 3333, 3334, 3334, 3334, 3335, 3335, 3335, 3335, 3335, 3335, 3335, 3335, 3335, 3335, 3336, 3336, 3337, 3337, 3338, 3338, 3339, 3339, 3339, 3339, 3339, 3339, 3339, 3339, 3339, 3339, 3340, 3340, 3340, 3340, 3340, 3340, 3340, 3340, 3340, 3340, 3340, 3340, 3340, 3340, 3340, 3340, 3340, 3340, 3341, 3341, 3341, 3341, 3341, 3341, 3341, 3341, 3341, 3342, 3342, 3342, 3342, 3343, 3343, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3344, 3345, 3345, 3345, 3346, 3346, 3347, 3347, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3349, 3349, 3349, 3350, 3350, 3350, 3350, 3350, 3350, 3350, 3350, 3350, 3350, 3350, 3350, 3350, 3351, 3351, 3351, 3351, 3351, 3351, 3352, 3352, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3353, 3354, 3355, 3356, 3357, 3359, 3359, 3359, 3359, 3360, 3360, 3360, 3360, 3361, 3361, 3362, 3362, 3362, 3362, 3362, 3364, 3364, 3364, 3365, 3365, 3366, 3367, 3367, 3368, 3368, 3369, 3369, 3369, 3369, 3370, 3370, 3370, 3371, 3371, 3371, 3371, 3371, 3371, 3371, 3371, 3371, 3371, 3371, 3371, 3371, 3371, 3371, 3371, 3371, 3371, 3372, 3373, 3374, 3375, 3376, 3377, 3378, 3379, 3380, 3381, 3382, 3383, 3384, 3385, 3386, 3387, 3388, 3389, 3390, 3391, 3391, 3391, 3392, 3392, 3392, 3392, 3393, 3394, 3394, 3394, 3394, 3394, 3394, 3394, 3394, 3394, 3395, 3396, 3397, 3397, 3397, 3398, 3398, 3399, 3399, 3399, 3399, 3399, 3399, 3399, 3400, 3400, 3400, 3400, 3401, 3401, 3401, 3401, 3401, 3401, 3401, 3401, 3401, 3401, 3401, 3401, 3401, 3402, 3402, 3403, 3403, 3403, 3403, 3403, 3403, 3403, 3403, 3403, 3403, 3403, 3403, 3404, 3405, 3405, 3405, 3405, 3405, 3405, 3405, 3405, 3405, 3405, 3405, 3405, 3406, 3406, 3407, 3408, 3408, 3409, 3409, 3409, 3409, 3409, 3409, 3409, 3410, 3410, 3410, 3410, 3410, 3410, 3410, 3410, 3410, 3410, 3410, 3410, 3410, 3410, 3410, 3410, 3410, 3410, 3410, 3410, 3410, 3411, 3411, 3411, 3411, 3412, 3412, 3413, 3413, 3413, 3413, 3413, 3413, 3413, 3413, 3413, 3413, 3413, 3414, 3414, 3415, 3415, 3415, 3416, 3416, 3416, 3416, 3417, 3417, 3418, 3418, 3418, 3418, 3418, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3420, 3421, 3421, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3423, 3424, 3424, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3427, 3427, 3427, 3427, 3427, 3428, 3429, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3430, 3432, 3433, 3435, 3437, 3438, 3440, 3440, 3440, 3440, 3441, 3442, 3442, 3442, 3443, 3444, 3445, 3446, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3448, 3448, 3449, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3451, 3451, 3452, 3453, 3454, 3455, 3456, 3457, 3458, 3459, 3460, 3460, 3461, 3462, 3463, 3464, 3465, 3466, 3467, 3468, 3469, 3469, 3470, 3470, 3470, 3470, 3470, 3471, 3471, 3471, 3472, 3472, 3472, 3472, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3474, 3474, 3475, 3475, 3476, 3476, 3476, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3478, 3478, 3478, 3478, 3478, 3479, 3479, 3479, 3480, 3480, 3480, 3480, 3480, 3480, 3480, 3481, 3481, 3481, 3481, 3482, 3483, 3483, 3484, 3484, 3484, 3485, 3485, 3485, 3485, 3486, 3486, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3487, 3488, 3488, 3488, 3488, 3488, 3489, 3489, 3489, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3490, 3491, 3491, 3491, 3491, 3491, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3493, 3493, 3494, 3494, 3494, 3494, 3494, 3495, 3495, 3495, 3495, 3495, 3497, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3499, 3500, 3500, 3500, 3500, 3500, 3500, 3500, 3500, 3500, 3500, 3500, 3501, 3503, 3504, 3506, 3508, 3510, 3512, 3512, 3512, 3512, 3512, 3513, 3513, 3513, 3513, 3514, 3514, 3514, 3514, 3514, 3515, 3515, 3516, 3517, 3518, 3518, 3519, 3519, 3519, 3519, 3519, 3520, 3520, 3520, 3521, 3522, 3522, 3522, 3522, 3522, 3523, 3524, 3524, 3525, 3526, 3527, 3528, 3529, 3529, 3530, 3531, 3531, 3532, 3533, 3534, 3534, 3536, 3537, 3537, 3537, 3538, 3538, 3538, 3539, 3539, 3539, 3539, 3539, 3540, 3540, 3540, 3541, 3542, 3542, 3542, 3542, 3543, 3543, 3543, 3543, 3544, 3544, 3544, 3545, 3545, 3546, 3546, 3546, 3546, 3547, 3547, 3548, 3549, 3550, 3550, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3551, 3552, 3552, 3552, 3553, 3553, 3554, 3554, 3554, 3554, 3554, 3554, 3554, 3555, 3555, 3555, 3555, 3555, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3557, 3558, 3559, 3559, 3559, 3559, 3559, 3559, 3559, 3560, 3560, 3560, 3560, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3562, 3562, 3562, 3562, 3562, 3562, 3562, 3562, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3565, 3567, 3568, 3570, 3572, 3572, 3572, 3573, 3573, 3574, 3574, 3574, 3574, 3575, 3575, 3576, 3577, 3577, 3577, 3577, 3578, 3578, 3578, 3578, 3578, 3579, 3579, 3579, 3580, 3580, 3581, 3582, 3583, 3584, 3585, 3586, 3587, 3587, 3590, 3590, 3590, 3591, 3592, 3592, 3592, 3592, 3593, 3593, 3594, 3595, 3595, 3596, 3597, 3597, 3598, 3599, 3599, 3599, 3600, 3601, 3601, 3601, 3602, 3602, 3602, 3602, 3603, 3604, 3604, 3604, 3604, 3605, 3605, 3606, 3606, 3606, 3606, 3606, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3608, 3609, 3609, 3609, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3610, 3611, 3612, 3613, 3613, 3613, 3613, 3613, 3613, 3614, 3615, 3616, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3619, 3620, 3620, 3620, 3620, 3620, 3620, 3622, 3622, 3622, 3624, 3624, 3624, 3624, 3626, 3627, 3627, 3627, 3627, 3628, 3629, 3629, 3629, 3629, 3629, 3629, 3630, 3631, 3631, 3632, 3633, 3634, 3634, 3635, 3636, 3637, 3639, 3639, 3640, 3640, 3640, 3641, 3641, 3642, 3643, 3644, 3645, 3646, 3646, 3647, 3647, 3647, 3647, 3648, 3649, 3649, 3649, 3649, 3649, 3649, 3649, 3650, 3651, 3652, 3652, 3652, 3652, 3653, 3654, 3654, 3654, 3654, 3655, 3656, 3656, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3658, 3659, 3659, 3659, 3659, 3660, 3661, 3661, 3663, 3665, 3665, 3666, 3666, 3668, 3668, 3668, 3669, 3669, 3669, 3670, 3670, 3671, 3672, 3673, 3673, 3673, 3674, 3674, 3674, 3675, 3676, 3676, 3677, 3678, 3679, 3680, 3681, 3682, 3683, 3684, 3685, 3686, 3686, 3686, 3687, 3687, 3688, 3688, 3688, 3688, 3688, 3689, 3689, 3690, 3691, 3691, 3691, 3692, 3692, 3692, 3692, 3692, 3692, 3692, 3692, 3693, 3694, 3694, 3694, 3696, 3698, 3698, 3699, 3700, 3700, 3701, 3703, 3703, 3705, 3706, 3707, 3707, 3707, 3707, 3707, 3707, 3707, 3708, 3709, 3709, 3710, 3711, 3711, 3712, 3712, 3712, 3713, 3713, 3713, 3714, 3715, 3715, 3715, 3715, 3715, 3715, 3716, 3716, 3718, 3720, 3720, 3720, 3721, 3722, 3722, 3722, 3722, 3722, 3722, 3722, 3723, 3723, 3724, 3725, 3726, 3727, 3728, 3729, 3729, 3729, 3729, 3729, 3731, 3733, 3734, 3735, 3736, 3736, 3737, 3737, 3738, 3738, 3739, 3740, 3740, 3740, 3740, 3740, 3741, 3742, 3744, 3745, 3746, 3748, 3749, 3751, 3752, 3753, 3754, 3754, 3754, 3755, 3755, 3755, 3756, 3756, 3758, 3759, 3761, 3762, 3763, 3763, 3764, 3765, 3765, 3766, 3767, 3769, 3770, 3772, 3774, 3776, 3778, 3779, 3780, 3780, 3781, 3783, 3785, 3786, 3787, 3787, 3789, 3791, 3792, 3793, 3793, 3795, 3797, 3798, 3799, 3801, 3803, 3804, 3806, 3808, 3810, 3812, 3814, 3816, 3818, 3820, 3820 } ; static yyconst int yy_ec[256] = { 0, 1, 1, 1, 1, 1, 2, 1, 1, 3, 4, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 25, 25, 25, 26, 27, 27, 28, 29, 30, 31, 32, 1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 43, 44, 45, 46, 47, 48, 43, 49, 50, 51, 52, 53, 43, 54, 55, 43, 56, 57, 58, 59, 43, 1, 60, 61, 62, 63, 64, 65, 66, 67, 68, 43, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 59, 86, 87, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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[88] = { 0, 1, 1, 2, 3, 4, 2, 5, 6, 7, 1, 5, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 18, 18, 18, 18, 18, 19, 1, 20, 5, 21, 22, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 24, 25, 26, 5, 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, 27, 28, 29 } ; static yyconst long int yy_base[4874] = { 0, 0, 4, 25, 0, 111, 115, 119, 139, 129, 133, 196, 0, 283, 0, 147, 151, 370, 0, 456, 461, 466, 484, 569, 0, 656, 0, 743, 0, 159, 504, 829, 835, 513, 540, 518, 545, 919, 1003, 857, 863, 849, 870, 877, 898, 908, 913, 1088, 0, 1175, 0, 931, 965, 1261, 1268, 951, 955, 1275, 1282, 989, 1290, 998, 1009, 165, 169, 1023, 1043, 1031, 1052, 1295, 1300, 1056, 1305, 1339, 1346, 1385, 1395, 1390, 1400, 1424, 1429, 1444, 1449, 1507, 0, 1456, 1476, 1594, 1681, 1614, 1701, 1768, 1855, 1788, 1875, 1310, 1361, 1942, 0, 2029, 2116, 2203, 2290, 1652, 1656, 2377, 0, 2073, 2160, 1462, 1469, 1483, 1627, 2464, 0, 2551, 0, 2050, 2138, 1739, 1801, 1731, 1814, 2638, 0, 1634, 1641, 2725, 0, 1810, 1888, 2221, 2225, 2308, 2811, 2312, 2816, 2873, 2960, 1895, 1899, 3047, 3134, 1913, 1917, 3221, 3308, 2044, 2065, 2250, 439, 3395, 3482, 2087, 2091, 3569, 0, 3656, 0, 2165, 2338, 2352, 2820, 2838, 2843, 2893, 2919, 3743, 0, 2246, 2980, 3009, 3067, 3830, 3917, 4004, 172, 4091, 4178, 4265, 0, 3094, 3152, 3184, 3268, 4352, 0, 4439, 0, 4526, 0, 3241, 3328, 2134, 2330, 4613, 4699, 3355, 3413, 4785, 4872, 4959, 5046, 5133, 5220, 2850, 2914, 4646, 4733, 5307, 5394, 5481, 5567, 3001, 3081, 5653, 0, 3022, 3087, 3174, 3254, 3261, 3341, 3348, 3368, 3417, 3497, 3427, 3437, 5740, 0, 3503, 3850, 5827, 5914, 2934, 3170, 3194, 3281, 3455, 3518, 3523, 3541, 6001, 0, 3530, 3863, 6088, 0, 6175, 6262, 6349, 6436, 3872, 3876, 6523, 0, 3890, 3950, 3956, 3960, 3965, 4109, 4149, 4628, 4123, 4210, 4225, 4652, 3978, 4113, 4138, 4196, 4237, 4738, 4817, 4904, 4805, 4892, 4200, 4672, 4974, 4980, 5006, 5066, 6610, 0, 5169, 5256, 5017, 5093, 4762, 4846, 5108, 5195,15838,33748,15835,33748,33748, 1, 15822,33748,15833,33748,33748, 2,33748,15832, 1353, 2179, 4634,33748, 3, 6, 3125, 2281, 2333,15805,33748, 3178, 9, 559, 472,33748,33748,33748,33748, 0,33748,15830, 33748, 166,33748, 4169, 842, 1324, 1758,33748,15803,33748, 4658, 10,33748,15828,33748,33748,33748, 168, 116,15761, 33748,15771,33748, 4718, 4757,33748, 6695, 4691, 4744, 829, 102,15811, 4934, 460,15798, 4999,33748,33748, 5087,33748, 5262, 5296, 5342, 5209, 5351, 5355, 5436, 5441, 5470, 5516, 33748, 891, 4859, 5037, 5080,15797, 5346, 1081, 5155, 5164, 5175, 5242, 469,33748, 0, 478,33748,33748,33748, 5283, 33748,15822, 1833, 2095, 2938,33748,33748, 1330, 505,33748, 15821,33748,33748,33748, 508, 5524, 5529, 5558, 532,33748, 4994,15749,15761,15753,15746,33748,15816,33748,33748, 2184, 820,15785,33748,15810,33748, 839,33748,33748, 0, 5863, 1490, 1745, 1843,15803,15753, 922,33748,33748,33748,15749, 5415, 5432, 5503,15780, 5548, 2857, 5589, 5607, 5846,15779, 5874, 2942, 0, 6222,33748, 0,33748,15749, 925,33748, 33748, 5451, 955, 0,33748, 933, 124,33748,33748,15803, 33748,33748,33748,15783, 961, 0,15801,33748,33748,33748, 15800,15796, 153, 971, 496, 0, 536, 870, 0,15779, 980,15795, 144,33748,15794, 1059,33748,33748,33748,33748, 0, 5885, 1037,33748, 0,15776, 999,15775,15731,15730, 1066, 1002, 1046,33748,15791, 2946, 2991, 3029, 1272,33748, 33748,33748,33748,33748,33748, 0, 1433, 0,33748, 1285, 33748,33748, 0,15776, 1408, 3155, 3033, 3198, 1292, 1301, 33748,15789, 2100,33748,33748,15769, 1352, 0, 111, 6743, 809, 5934, 2249, 1362,33748,15783, 3061,33748,33748,15763, 3116, 1392, 463, 6791, 875, 6194,33748, 3287, 5624, 1398, 33748,15781, 5935,33748,33748,15761, 1402, 1307, 964, 5898, 6265, 6281, 3362, 1426,33748,15779, 6189, 5889, 5976, 1447, 1858, 1651, 6282, 1485,33748,33748, 1612, 6208, 6213, 6253, 15759,15751, 6307, 3291, 3461,33748, 3552, 0, 0, 1643, 3560,33748, 3895, 0,15746, 1812, 943,33748,15774,33748, 33748, 1712,15754, 1653,15700, 6295, 6368, 6381,33748,15738, 6385, 3899, 3879,33748, 2170,15689,15694,15681,33748,33748, 15751,33748,33748, 1711,15738, 0,33748,15749, 1807,33748, 33748,15729, 1738, 1007, 866, 426, 6396,33748, 3984, 6455, 1873, 6422, 6645,33748,15747, 3004,33748,33748,15727, 1886, 33748,15745,33748,33748,15725, 1889,33748,15725, 0, 510, 33748, 0, 1912,33748, 0,15740, 1074,33748,15739, 2047, 33748,15740,33748,33748,15720, 1914, 2211, 1210, 1921, 2081, 33748,15738,33748,33748,15718, 4160, 2089,15670, 2257, 2140, 33748,15735,33748,33748, 2177,15668, 6708, 2253, 1589, 6674, 6720, 6714, 2309,33748,15733,33748,33748, 2310,15713,33748, 0, 0, 2347,15729, 1482,33748,15728, 2835,33748, 0, 0, 2812, 933, 1584, 0, 0, 2849,33748, 6822,33748, 15729, 6784, 6829, 6833, 2851,15702, 6870, 4256,33748, 6874, 33748,33748,33748,15723,33748, 6878, 2894,33748,15722, 4938, 5893, 5980,33748,33748, 4852, 2896, 6415, 6501, 6890, 6905, 6234, 6389,33748,15667,33748,33748, 0, 6883,33748,33748, 0, 2983,15658, 3066,33748,15719,33748, 6930, 3091, 0, 4942, 4946, 5121,15633,15705, 0,15698, 4812, 3093, 6903, 1737, 7007, 7079, 7152, 7231, 7304,15639, 1190,15629, 6922, 4152, 6963, 3191,15707, 0, 6909, 6929, 6942,15686, 6946, 5201,33748,15711,33748,15698,15690, 3197,15646,15645,33748, 3260, 7385, 7466, 7547, 0, 5851, 7059, 7091, 7095, 3283, 15687,15643,15642, 0, 3284,15641,33748,15702,33748,33748, 3359,15633, 0, 0, 0, 3361, 0, 0, 3363,33748, 90, 1696, 0, 3370, 0, 3371,33748, 0, 886, 0, 0, 3428,33748,33748, 0, 0, 5291, 3431, 0, 5384, 3440, 0, 5644, 3452, 0, 6420, 3456,33748,15694,33748, 33748, 3488, 3046, 5512, 6475, 5553,33748, 5858, 7013, 6950, 7019, 7033,15667, 7099, 5984,15690, 4712,33748,15689, 848, 3875,15628, 0, 0, 3500, 0, 1674, 0, 3521, 1432, 3093, 1495, 4911,33748, 0,15687, 1830,33748,15685, 3947, 33748, 0, 1675, 2030, 0, 0, 6707, 7097, 0, 0, 0, 3531,33748,15624,15619, 0,15671, 2358,33748,15670, 15646, 3975,33748,15664,33748, 3532,33748, 7117, 0, 6729, 33748, 0,33748,33748, 3848, 0, 0, 7179, 0,33748, 15608,33748,33748, 3854,15662,33748,33748,33748, 0, 3940, 33748, 0,15642, 3892, 0, 1838,33748, 0, 3893, 0, 7193, 5990, 6244, 6505,33748, 6837, 3977,33748,33748,33748, 15660, 7027, 7129, 7159, 4140,33748,33748,33748,15659,33748, 15641, 4228,33748,15657,33748, 4232,15593, 5520, 5600, 4606, 15592, 0,33748,15654, 7199, 7207, 7212,33748,15598,33748, 7226, 4631, 7231,33748,33748,15652,33748,33748,33748,15632, 4637, 0, 0, 7242,33748, 0,33748,15595,33748,33748, 4659, 0, 7258,33748, 0,33748,15594, 4667,33748,33748, 15648,33748,33748,33748,33748,15635, 7264, 4752, 1354, 958, 33748,15644, 7221, 7269,15619, 1717, 7276, 7311, 7330,33748, 1805, 7185, 7342, 4908, 0, 7346,15618, 7350, 7361, 7365, 7380, 7384, 1892, 7404, 7417, 7421,15617, 1933, 4766,15583, 15567,15625, 7429, 7425, 4900, 7453, 4993, 7632, 7432, 2863, 15609,15566, 421, 496,15562,15574, 2005, 1597,15550,15560, 15563, 5026,15566, 2227, 7463, 7458, 1377, 5456, 7487, 7498, 7502,15597, 7507, 7513, 7541, 7579, 7584, 7592, 7596, 7612, 7640, 7653, 7645, 7660, 7710, 7719, 7723, 7729, 7545, 7738, 7624,15600, 7757, 7766, 7770,33748, 7673, 7774, 1834, 5950, 0, 7803, 7761, 7807, 7811, 7819,15554,15566,15558,15551, 7823, 7827,15551,15554,15545,15550, 7831, 7844,33748, 0, 7849, 0, 7860, 7871,15611,33748,15605, 7856, 7880, 0, 15546, 7889,15583, 7893, 7897, 7901, 0, 7905,15582, 7909, 7923, 7935, 0, 0, 7940, 0,15596, 7932, 2066, 5097, 7960, 5007, 2341, 0,33748,33748,15603, 985,33748,33748, 33748,33748,15602,15601, 1333,15600, 1451, 0, 5240, 0, 4129,15583,33748,33748, 0,15598,33748, 2070,15597,15598, 15584,15583, 0, 7536, 0, 4210,15493,33748,33748, 2104, 15429,15428, 4917, 5014,15411, 5327, 7964, 0, 7282, 0, 0, 0, 0,15398, 5090, 5635,15397, 6412, 7968, 7972, 15326,15324, 5136,15311, 6283, 7966,33748,33748,33748, 0, 2101, 5368, 2255,15250, 2124,15257, 2175, 3461,15248, 1311, 15259,15238,15257,15252, 2752,15232,15242, 2217, 7979, 7517, 15292,33748, 3417, 7668, 2951, 5328, 6955, 2925,33748,33748, 5553, 4047, 2965, 2786, 3002, 1404,15252,15247, 5313, 2849, 15250, 7999,33748, 7983, 8003,33748, 8044,33748, 7987, 8048, 3472, 7050, 6187, 3796, 3924,15236,15236, 2973,15235,15240, 15238,15240,15231, 8052, 7995, 7111,15229, 5933, 8056,15280, 15235,15226, 8063,15276,33748, 8075,15268,33748, 8083, 8087, 33748, 8094,15265, 8101,33748,15286, 0, 0, 8118,33748, 15285,15260,33748,15259,15282, 5462, 6328,15225, 8122,15260, 8126, 8130, 8134, 0, 7408, 5269,15214,15213, 6467, 3850, 15213,15208,15213,33748,15268, 0, 2851,15216, 8139,33748, 8143, 8158,15259, 8121, 8200,33748, 8162, 8204, 8164, 8243, 15200, 4657, 3446,15196, 2300,15217,15212, 5806,15211,15214, 6740,33748,15252,33748,15205,15251, 0, 2107, 0, 0, 0, 0,15266,33748, 3019,15265,15265,15262,15261,33748, 33748,33748,33748,15188,15181, 6712,15235,33748,15234,33748, 33748,33748,33748, 6746,15232, 8247, 8259,33748,33748, 6752, 3219,15183, 866, 6994, 3119,15238, 0, 0,15241,33748, 3236,15238,15239,15236,15235,15230, 0, 0,15229, 0, 0, 8263, 8279,15208, 8289, 8268,15207, 8315, 8319, 8274, 0, 8323,33748,33748,33748, 8327,33748,33748, 8345, 8283, 8354, 8361, 8366,15178,15177,15174, 0, 8382, 0,33748, 33748,15159,33748, 7315, 6163,15152, 3189,15168,15154,15147, 15141, 0, 8386, 8390, 8394, 8401, 8405, 8413, 8418, 0, 0, 0,15204, 7761, 7903, 8201, 0,33748,15203, 8430, 8445,15203, 8499,33748, 8427, 6745, 8441, 4183, 4661, 8504, 8449, 4785, 5219, 4822, 8450, 8438, 8537, 4856, 5047,33748, 8519, 8431, 8551, 5311, 8598,15143, 3256, 8603,33748, 5356, 15156, 5840,15152,15146,15153,15156,15128,15199, 8672, 2900, 8751,15192, 8638, 8625, 8614, 7726, 8634, 4933, 5016, 5570, 8647,15191, 7679, 3415, 7544, 2933, 484, 3920, 3228,15136, 15131,15144, 8643, 7943, 5116,15186, 5958, 5150, 8663,15198, 15197, 0, 8715,15176, 8719, 8727, 8509, 0,33748,33748, 33748,15131,15130,33748,15187, 3321, 8832, 8730,15186, 3341, 8913, 8800,15185, 4675, 8994, 8811, 0, 8169, 0, 8777, 8795,15134,15133,33748,33748, 5136,15124,15123, 0, 0, 15122, 0,15185, 0, 0,15184, 0, 0, 5179, 5258, 0, 0, 0, 0, 0, 2827, 0, 0, 0, 0, 0, 8788, 0, 0, 0, 0, 8869, 0, 0, 0, 0, 8874, 0, 0, 0, 0, 8879, 0, 0, 0, 15123,15121,15116, 8672, 8799,33748, 8890, 8896, 8901,15185, 8905, 8909, 8932,15158, 8945, 8949, 8958, 8962, 5455,15181, 33748, 6373,15170,15170,15167,15165,15164,15095,15158, 0, 0, 0, 3557, 0, 0, 0, 4820,33748, 5541, 5899, 15093, 6301, 6320, 0,15078,33748, 4165,15077,15072,15069, 15068, 0, 5282, 3312,15063, 0, 8008, 0, 8143,15062, 0, 0,15001,15005, 0,15063,33748, 6777,15062,15063, 15060, 8975,33748,15035, 0, 7568, 0, 0, 0,33748, 0, 8983, 0,15049, 8994, 0, 6797, 0,33748, 0, 0, 4218, 0, 0, 0, 0, 9025, 0, 8989, 9038, 5346, 3110, 3248, 9031, 1788,15051, 7005,15039, 6959,15001, 0,15045, 9032,33748,33748,33748,33748, 0, 8579, 0, 15044, 9038, 0, 0, 0, 8750, 0,15043, 9052, 0, 0, 4652, 3448,15025, 9063, 9067, 9079, 9083, 9095, 9099, 9103, 9111, 9115, 0,15026, 9129,14973,14974,14981,14972, 33748,15032,15031, 9123, 4764, 4139, 5179, 4792,14983,14963, 14963,14966, 3367,14976,14967, 6330,14976,14970, 4776,14961, 14966,14957,14967, 9137, 9151, 9155,15003,33748, 0, 6494, 33748,15014, 9159, 9163, 9167,33748, 9171, 9191, 9199, 9203, 9207, 9219, 9211, 9239, 9249, 9254, 9267, 9282, 9288, 9295, 9303, 9316, 9335, 9345, 9353, 9364, 9381, 9385, 9392, 9396, 9400, 9420,14999,14998,14997, 5172, 9429,14949,14948,14951, 14957, 9433,33748,33748,15003,15002, 9429, 9440,33748, 9453, 0,14950, 9457, 9461, 9465, 0, 9470, 9474, 9478, 0, 33748,15000,14999, 9481,14993, 5615, 5580,15003,14990, 4905, 14931,14858, 7242,14892, 6977,14891, 6985,14766, 4952, 6343, 14762,14761,14760, 6164,14742, 4669,14750,14750,14750,14743, 14750,14746,14743, 6227,14747,33748,33748,14736, 5464, 5566, 14737,14728,14731,14737,14734,14729,14725,14721,14722,14727, 14718,14717, 7666, 7399, 5841, 6340, 7686,14714,14713,14722, 14723,14710, 5068,14727, 6143, 5135, 5018,33748,14722,14712, 14708,14707, 9505,14710,14718,14714, 4715, 6275,14701,33748, 9487, 9513, 9517,14748,33748,14745,14700, 9522, 9526, 9530, 0, 6363,14698,14701,14713, 6469, 9542, 9534, 9556, 9560, 14694,14703,14704,14691,14694,14705,14706, 6682,14689,14686, 33748,14699,14688,14684,14683,14680,14677,14663, 9565,33748, 33748, 9577,14718, 5291,14668,14668,14662, 6451,33748,33748, 33748, 9582, 9597, 9623, 9602, 9628, 9591, 0,14658,14638, 14629,14620,14612,14590,14595,14583,14618,14577,14568,14570, 9636, 9654, 8750, 6726, 9652,14609, 9672,14610, 8055, 8318, 9684, 9686, 0, 9751,14605, 7076, 9661, 8384, 9672, 6682, 6871, 9702, 7528, 6931, 6412, 7006, 9681, 8657, 9746, 7049, 7242, 8180,33748, 7446, 8211, 7449, 7492, 8422, 7519, 8593, 8629, 8834, 6753, 8915, 8927, 9090, 7587, 9120, 9186,33748, 7651, 7682, 9311, 7059, 7749, 9321, 9339,33748, 7852, 8048, 7189, 8307, 8181, 9409, 9546, 9612, 9659, 7327, 9632,14553, 14553,14543,14490, 9741,14501, 9748,14501,14459,14453,14443, 9758,14423,14423,14405,14415, 7781, 9781,14381,14386,14380, 14378,14385, 7630, 9785, 5439,14378,14367,14346,14347,14334, 14394,33748, 9822, 5545, 7053, 4615, 5470, 5189, 1832, 4826, 5870, 6174, 7959, 4915, 6879, 5914, 4792, 6181, 5006, 4132, 6750, 8219, 6384, 6412, 6919, 6443, 5220, 9735, 9811, 7258, 3394, 6951, 6436, 7106, 7147, 9901, 9980, 6442, 9262, 9666, 8015, 9824, 9829, 9815, 0,14335,14334,14370,14361,14357, 7399,14298,14296,14260,33748,33748, 8269, 8271,14250,14181, 14158, 9850, 9855, 9859,33748, 7742, 6792,14172,33748, 8266, 8316,33748,33748,14158,14129,33748,33748,14185,14135, 9862, 6238, 6376,14111,14086,33748,33748, 7916,33748,33748, 1, 7, 9867,33748, 181, 460, 9881,33748, 876, 896, 9917, 33748, 9868, 0, 9863, 961, 1221, 1256, 1328,33748,33748, 9922, 1439, 1591, 1725, 1811, 1993, 2087, 2128, 2156, 2170, 2251, 2284, 2758, 2917, 2968, 2997, 3002, 3105, 3114, 3138, 3235, 9896,33748,33748, 6696, 9946, 9956, 9962,10006,10011, 10015,10022,10027,10043,10056,10060,10071,10091,10102,10106, 10110,10119,10138,10147,33748,33748, 3264, 3284, 3469, 3812, 33748,33748, 9956, 3835,33748,33748,10132, 6884, 3942, 8323, 3916, 4054, 4054, 4154, 9726, 4184,33748, 4552, 4598, 4659, 4835, 4917, 5009, 7789, 5049, 5084, 5202, 5318, 7216, 5341, 5364, 5377, 5452, 5486, 5538, 5557, 5786, 5778, 5790, 5811, 5809, 5844, 5885, 5901, 6240, 6253, 6266, 6304, 6316, 6751, 6685, 7109, 6706, 6793, 6802,33748, 6826, 6837, 6823, 6824, 6841, 9793,33748, 6862, 6895, 6903, 6928, 6942, 6969, 6964, 7065, 7078, 7174, 7074, 7144, 7187, 7206, 7219, 7223, 8416, 7221, 7222, 7242, 7449, 9967,10175, 7262, 7278, 7283, 7302, 7303, 7309, 7322, 7312, 7320, 7351, 8150, 7865, 7507,33748, 10218,10297,33748, 9804,33748, 9951,33748, 8438, 8493, 8521, 9990, 8539,10066,10157,10164, 7644,10180,10181,10182, 8556, 10187,33748,10189, 8566,10202,10204,33748, 8647, 8678, 7791, 9254, 8678,10217,10219,10225,10227, 7934, 7402,10244, 7416, 10249,33748, 8023, 8749,10250,33748,10255,10257,33748,10259, 33748,10261,33748, 8779,10263,33748,10265,33748,10267,33748, 8792,10271,33748, 7408,10277,10295, 8062,10301,33748, 8863, 8100,10307,33748, 7415,10309,10323, 8872, 8909,10325,10329, 8914,10331,33748,10337,33748,10339,33748,10341,33748,10343, 7408, 7417,10075, 7447,10347, 7492, 7509, 7510, 7532, 7561, 7547, 7562, 7567, 7569, 7597, 7626, 7633, 7719, 8417, 7620, 10361, 7650, 7657, 7722,33748, 7659, 7680, 7685, 7729, 7795, 7731,33748,10430, 8003, 7927, 8037,10373, 7932,10382, 7840, 7993, 8052, 8093, 8167, 8099, 8406, 8603, 8172, 8160, 7868, 8191, 8270, 8278, 8409, 8511, 8354, 8525, 8906, 9178, 8418, 10386, 8333, 8342, 8648, 8968, 8594, 8683, 8747, 8592, 9315, 8585,10385,10509,10588, 7753, 7768, 8938, 7777, 7790, 7873, 10377,10392, 7886, 8020, 8034, 8038, 0, 8573, 8092, 8121, 33748,33748,10403, 8163,33748,33748,33748,10408,33748,33748, 10451,33748,33748,10456, 8116, 8193, 8194, 8200,33748, 8257, 33748,33748, 8268,10212, 8300, 8307, 8389, 8412, 8421, 8416, 8437, 8434, 8439, 8448, 8450, 8468, 8782, 8476, 8542, 8550, 10406,10462,10480,10491,10497,10510,10541,10553,10548,10595, 10623,10627,10631,10635,10663,10674,10678,10707,10715,10719, 10723,10581, 8549,10589, 8565,33748, 8643, 8614,33748, 8677, 33748,10411, 8653, 8661, 8676,10558,33748, 8684, 8689, 8690, 8691, 8720, 8718, 0, 8862, 8720, 8731, 8883, 8735, 9008, 8760, 8765, 8775, 8778, 8784, 8847, 9179, 8844, 8853, 8877, 8877, 8874, 8914, 8910, 8925, 8925, 8948, 8945, 8952, 8973, 9019, 9002, 9022, 9024, 9018, 9034, 9033, 9258, 9358, 9044, 9092,10559, 9055, 9064, 9066, 9063, 9074, 9071, 9075, 9107, 9104, 9128, 9112, 9132, 9152, 9156, 9163, 9154, 9202, 9154, 9166, 9172, 9260,10751,10765, 9186, 9173, 9194, 9194, 9217, 9267, 9229, 9282, 9284, 9260,10772, 9302,10640, 9304,10644, 9324, 9304, 9314,10668,33748,10684,10727,33748,10733,33748, 10779,33748, 9348,10798,33748,10799,33748,10800,33748, 9377, 9315,10804,10806,33748, 9370,10810,33748, 9328,10811,10812, 9442, 9440,10816,10817, 9444,10818,33748,10822,33748,10823, 33748,10831,33748,10850,10854, 9330,10855, 9513,10859, 9377, 10861,10863,33748, 9378,10865, 9384,10867, 9386,10869,10871, 9395,10873, 9396,10875, 9397,10877,10882, 9417,10886,10905, 33748, 9533, 9463,10907,10909, 9548, 9464,10913,10914,33748, 9648, 9656,10918,33748,10919,33748, 9672, 9465,10920, 9467, 10924, 9468,10925, 9469,10926,10930,33748, 9470, 9482,33748, 9483,33748,10757,10960,10964, 9509, 9524, 9525, 9536, 9538, 9541, 9579, 9574, 9578, 9587, 9586,10968,10972, 9718, 9600, 10976,33748,10980, 9605, 9618, 9614, 9655, 9652,10984, 9641, 9661, 9688, 9665, 9670,11046, 9729, 9778, 9762, 9803,10988, 11133, 9749,10992,10996, 9861, 9747, 9888, 9912, 9896, 9857, 9772, 9897, 9773, 9918, 9850,10038, 9877,10009, 9916,11000, 11018,10022,11022,11026, 9899,10015, 9893,10024,10067,10050, 11030,10048,10141,10228,10106,10126, 0,11028,11031,11212, 11291, 9716, 9742,11007, 9731, 9732, 9814,11073,11078,11088, 11103,11092, 9828, 9917, 9960, 0, 9962,11012,33748,10038, 33748,33748,10040,33748,10043,33748,10089,10069,10057,33748, 10067,11117,11121,10067,10070,10098,10100,10105,10097,10094, 10144,10147,10154,10167,10176,10208,10218,11125,10219,10220, 11151,11155,11165,11169,11197,11238,11243,11256,11247,11276, 11324,11328,11332,11336,11340,11368,11376,11380,11385,11201, 11208,11284,33748,10215,10226,11084,33748,10227,10229,10218, 10268,11184, 0,10242,10245,10254,33748,10353,33748,10263, 10262,10397,10278,10398,10279,10376,10300,10288,10294,10297, 10434,10308,10296,10335,10485,10329,10339,10503,10341,10433, 10348,10365,10363,10373,10378,10388,10388,10564,10574,33748, 10392,10394,11288,10409,10411,10414,10427,10435,10441,10439, 10448,33748,33748,10450,10492,10475,10468,10481,10580,10472, 10485,10521,10491,10496,33748,10500,33748,33748,10543,11398, 11264,10622,11344,10541,11396,11397,33748,10547,11413,10550, 11424,10557,11428,11429,10572,11434,10587,11435,10588,11440, 11441,10592,11445,10620,10610,11446,11447,33748,10626,10659, 11451,33748,11462,33748,10676,10617,11468,10620,11478,10622, 11483,10624,11484,11485,33748,11489,33748,10668,11490,33748, 10626,11495,11496,33748,11500,33748,10632,11501,11502,11506, 33748,10696,10660,11508,11517,10698,10662,11523,10663,11533, 11538,10666,11539,10636,10627,10631,11389,11547,11553,33748, 10647,10643,10683,10676,10672,10680,10932,10703,10700,10712, 10711,11557,33748,11563,33748,11569,10744,10749,10761,10765, 10766,11573,10772,11577,11581,10763,10773,10774,10779,11646, 10880,10864,10874,10878, 0,11733,11820,10882,10832,10886, 10870,10884,10935,10933,11566,10941,10999,11029,11038,10994, 11042,11082,11157,11591,11112,11595,11132,11599,10939,11204, 11097,11190,11158,11603,11621,11027,11235,11236,11254,11601, 11619,11899,11978,12057,12136,10873,10882,11610,33748,10982, 10993,11008,11627,33748,11640,33748,11678,11044,11686,11037, 11647,11656,11690,33748,11073,33748,11694,11715,11720,11724, 11120,11751,11122,11120,11108,11765,11111,11755,11769,11129, 11127,11773,11138,33748,11777,11809,11840,11852,11856,11868, 11860,11906,11935,11796,11939,11943,11947,11954,11985,12013, 12023,12017,11792,33748,11145,11153,11185,11699,11159,11164, 11189,33748,11180,11200,11430,11540,11186,11199,11214,11209, 11235,11237,11235,11611,11242,11261,11286,11658,11257,11698, 11255,11705,11283,11295,11280,11287,11295,11287,11307,11299, 11313,11805,11327,11329,11335,11351,11340,11346,11376,33748, 11387,11387,11385,11432,11408,11441,33748,11446,11447,11408, 33748,12045,11784,33748,11448,11896,33748,11450,11897,11975, 33748,12028,33748,11576,11481,12030,12083,11609,11486,12085, 11487,12090,12091,11493,12092,11498,12096,12097,11499,12098, 11503,12102,11505,12103,12104,33748,11515,12108,11604,12110, 33748,12135,12140,33748,11484,11548,11888,11504,11556,11556, 11567,11569,11586,11898,11593,11619,11625,11614,33748,11623, 12034,12170,12052,11623,11635,33748,12174,12178,11641,11670, 11665,11684,12239,11783,11861,11797,12182,12326,12413,11849, 12186,11875,11732,11867,11895,11865,12172,11935,12207,11784, 11946,11934,11954,11952,11965,11959,33748,12211,12215,12234, 11960,11976,12265,12024,12092,12055,12099,12492,12571,12216, 12650,11703,12729,12808,11714,11722,11756,12197,11819,11825, 11828,11889,12271,11901,12201,12284,12292,12342,11905,12275, 12317,12346,11914,12367,11921,12371,11929,12375,12383,11972, 12389,12401,12432,12450,11982,12454,12014,12458,12462,12474, 12478,12530,12524,12470,12534,12538,12542,12578,12617,12606, 12610,12490,11997, 0,33748,11995,11982,12145,12044,12041, 12146,12165,12063,12056,12067,12202,12071,12074,12227,12239, 12068,12074,12096,33748,12240,12100,12280,12249,12123,12149, 33748,12154,33748,12222,12285,12160,33748,12174,33748,33748, 33748,12175,12628,12218,12518,12569,12219,12570,12225,12571, 12250,12629,12450,12654,33748,12659,12660,33748,12679,33748, 12252,12681,12461,12257,12687,12692,33748,12261,12694,12215, 0,33748,12222,12231, 0, 0,12229,12222,12621,12243, 12252,12255,33748,33748,33748,12324,12279,12282,12290,12698, 12717,12887,12467,12376,12427,33748,12371,12380,12974,13061, 12378,12483,33748,12341,12488,12724,12419,12487,12547,12490, 12343,12599,12566,12558,12569,12755,12760,13140,13219,12362, 13298,13385,12324,12319,13472, 0,33748,12338,12348,12764, 12773,12638, 0,33748,12346,12366,12798,12728,12362,12422, 12459,12809,12736,12802,12768,12815,12548,12839,12843,12847, 12852,12857,12888,12894,12917,12525,12489,12485,12923,12927, 12932,12498,12640,12702,12544,12703,12711,12567,33748,12775, 12569,12779,12871, 0,12576,12880,33748,12936,12937,12899, 12585,12596,12676,33748,12943,12616,12621,12681,13020,12964, 33748,12724,12680,12965,12966,33748,12684,13005,12686,13006, 13007,12693,13017,12951,12731,12672,12666,33748,33748,12675, 0,12955,13011,12691,12694, 0,13021, 0,12704,33748, 33748,13551,13080,13106,13110,13118,13130,13136,13030,13171, 13075,13184,13190,13195,13638,13202,13214,13256,13263,13267, 13725,13274,13804,13883,12778,13970,12795,14057,14144,14231, 14318,14405, 0,12722,12739,12751, 0,33748,13049,12760, 13015, 0, 0,13175,13208,12766,13220,12762,13226,13285, 12837,13305,13337,13491,13504,13341,13510,13519,33748,12783, 13295, 0,13016,13096, 0,13098,13102,13122,13149,33748, 13248,33748,12805,12798,12804,33748,13528,12844,13326,13331, 12846,13345,13346,33748,33748,33748,12884,12826,12827,33748, 33748,13299, 0,12899,13351,33748,12854,14484,12979,12904, 12899,13068,12928,13107,12921,13164,13583,14571,12981,12943, 13229,13109,14650,14729,12958,14816,13130,13014,13155,14903, 14990,12965,12964,13356,12972, 0,13368,13376,12978,13588, 13540,13027,13029,13579,33748,13129,13601,13558,13606,13670, 33748, 0,13278,33748,13279,13290,13310,13072,13690,13594, 33748,13112,13596,13614,13087,33748,13677,33748,33748,13149, 13138,15077,13183,13254,13681,13613,13275,13244,13685,13215, 13478,13744,13642,15156,15235,13222,33748, 0,13322, 0, 33748,13240,33748,13261,13553,13245,13294,13295,13291,13302, 13757,13764,13768,13811,13830,13514, 0,13369,13352,13629, 33748,13704,13716,13375,13376,13506,13528,13783,13731,13643, 33748,13802,13460,13463,15322,13388,33748,13608, 0,13428, 0,13839,13434,13844,13796,13848,13865,13884,13876,33748, 13880,33748,13521,13771,13610,13682,15409,13561,13444,13689, 33748, 0,33748,13891,13917,13518,13921,13925,13732,13773, 13929,13777,15496,15583,13599,15670,15757,13600,13536,13712, 13573,13805,33748,13934,13938,14075,13843,13954,33748,14079, 15843,15930,13793,13617,13885,14089,13942,14101,13897,33748, 33748, 0,16017, 0,13761,13766,13798,13718,13845,13800, 13706,13887,13790,13782,14047,14042,13799,14060,13802, 0, 14105,13834,14061,13839,33748,13860,14062,13936,13892,14098, 13876,14086,13891, 0,13891,13955,33748,16103,16132,16161, 16190,16219,16248,16277,16306,16335,16364,16393,16422,16451, 16480,16509,16538,16567,16596,16625,16654,16683,16712,16741, 16770,16799,16828,16857,16886,16915,16944,16973,17002,17031, 17060,17089,17118,17147,17176,17205,17234,17263,17292,17321, 17350,17379,17408,17437,17466,17495,17524,17553,17582,17611, 17640,17669,17698,17727,17756,17785,17814,17843,17872,17901, 17930,17959,17988,18017,18046,18075,18104,18133,18162,18191, 18220,18249,18278,18307,18336,18365,18394,18423,18452,18481, 18510,18539,18568,18597,14104,18625,14126,14073,18647,18675, 18701,18724,14112,18752,14164,18774,14176,14079,18797,18826, 18855,18884,18912,14181,18934,14186,18957,18986,19015,19044, 19073,19102,19131,19160,19189,19218,19247,19276,14108,19305, 19334,19363,14114,19392,19421,19449,19473,14189,19496,19513, 19538,19555,19579,14192,14187,14115,14190,19602,19631,14116, 19660,19689,19718,19747,19776,19793,19818,19847,19876,19893, 19918,19935,19959,19981,14333,20003,14193,20026,20055,14163, 14140,14203,20072,20085,20098,20117,20146,20161,20183,14337, 20202,20227,20252,20281,20310,20333,20353,20376,20393,20418, 20435,20448,20465,20494,20523,14196,20552,20581,20610,20639, 20668,20697,20726,20755,20784,20813,20841,14340,20864,20893, 20922,20939,20964,20993,21022,21051,14202,21080,21109,14339, 21138,21161,21184,21201,21226,21243,14204,21268,21297,21326, 21355,21384,21413,21442,21471,21500,21529,21558,21587,21616, 21645,21674,21703,14205,21732,21761,21790,21819,21848,21877, 21906,21935,14335,21963,21991,14362,22013,14349,22035,22063, 14366,22085,22111,22134,22162,22184,22212,14376,22234,22256, 22284,14379,22306,14368,22329,22358,22387,22416,22445,22473, 22501,14425,14369,22523,22551,14428,14370,22574,22603,22632, 22661,22690,22719,22748,22777,22806,22835,22864,22893,14372, 22922,22951,22980,23009,14378,23038,23067,23095,23119,23147, 14437,14424,23170,23187,23212,23229,23253,23281,14450,14427, 14447,14448,14451,23304,23333,14454,23362,23391,23420,23449, 23478,23507,14466,23536,23553,23578,23607,23636,23653,23678, 23695,23719,23741,23763,23791,14477,14464,23813,14495,14476, 23836,23865,14465,23888,13952,13965,14499,23905,23918,23931, 23944,14505,23957,23970,23998,24015,24044,24059,24081,24109, 14493,14506,24128,24153,24178,24203,24228,24253,24278,24303, 24328,24357,24386,24409,24429,24452,24469,24494,24511,24524, 24541,24570,24599,14507,24628,24657,24686,24715,24744,24773, 24802,24831,24860,24889,24918,24946,24974,14529,14524,24997, 25026,25055,25072,25097,25126,25155,25184,14516,25213,25242, 14520,25271,25294,25317,25334,25359,25376,14522,25401,25430, 25459,25488,25517,25546,25575,25604,25633,25662,25691,25720, 25749,14526,25778,25807,25836,25865,25894,25923,25952,25980, 26008,14591,26030,26052,26080,14594,14528,14603,26102,26125, 26154,26182,26210,14608,26232,26254,26282,14616,26304,26327, 26355,26383,14619,14530,26405,26433,14630,14532,26456,26485, 26514,26542,26570,14642,14536,26592,26620,14645,14539,26643, 26672,26700,26722,26744,26772,14658,14540,14543,26789,14159, 26806,26819,14620,26838,26867,26896,26925,26953,26964,26981, 27000,27028,27056,14682,14547,27075,27100,27125,27154,27182, 27210,14685,14677,14675,27232,14590,14699,27260,27282,27305, 27334,27362,27384,14371,27401,27430,27459,27488,27517,27546, 27575,27604,27633,27662,27691,27720,27749,27778,27807,27836, 27865,27894,27923,27952,27981,28010,28039,28062,28079,28098, 28121,28150,14681,28178,28200,28223,28252,28281,28310,28338, 28355,28384,28413,28442,28471,28500,28529,28558,28587,28616, 28645,28674,28703,28732,28761,28790,28819,28848,28877,28906, 28935,28964,28993,29022,29051,29080,29109,29138,29167,29196, 29225,29254,29283,29312,29341,29370,29399,29428,29457,29480, 29497,29522,29545,29568,29591,29614,29637,29666,14694,29694, 29717,29746,29775,29804,29827,29856,29885,29914,29943,29972, 30001,30030,30059,30088,30117,30146,30175,30204,30233,30262, 30291,30320,30349,30378,30407,30436,30465,30494,30523,30552, 30581,30610,30639,30668,30691,30708,30733,30762,30791,30814, 30837,30860,30883,30912,30941,30969,30992,31021,31044,31073, 31102,31131,31160,31189,31218,31247,31276,31305,31334,31363, 31392,31421,31450,31479,31508,31537,31560,31577,31602,31625, 31648,31671,31694,31717,31746,31775,14709,31803,31826,31855, 31878,31907,31936,31965,31994,32023,32052,32081,32110,32139, 32168,32197,13967,32226,32255,32278,32295,32314,32337,32360, 32389,32418,14713,14096,14632,32446,32469,32498,32521,32550, 32579,32608,32637,32666,32695,14703,32724,14078,32753,32776, 32804,32817,32836,32859,32888,32916,32939,32968,32997,33026, 14350,14695,14696,33054,33077,33106,33135,33158,33187,33216, 33245,14717,33274,14721,33297,33314,33327,33346,33369,33397, 33419,33442,14724,33470,33493,33522,33550,33573,33602,33631, 33660,33689,33718 } ; static yyconst short int yy_def[4874] = { 0, 4098, 4098, 4097, 3, 4099, 4099, 4100, 4100, 4098, 4098, 4097, 11, 4097, 13, 4101, 4101, 4097, 17, 4102, 4102, 4098, 4098, 4097, 23, 4097, 25, 4097, 27, 4098, 4098, 4098, 4098, 4103, 4103, 4104, 4104, 4103, 4103, 4105, 4105, 4106, 4106, 4107, 4107, 4098, 4098, 4097, 47, 4097, 49, 4108, 4108, 4108, 4108, 4098, 4098, 4109, 4109, 4110, 4110, 4111, 4111, 4098, 4098, 4112, 4112, 4113, 4113, 4098, 4098, 4098, 4098, 4114, 4114, 4115, 4115, 4098, 4098, 4098, 4098, 4116, 4116, 4097, 83, 4117, 4117, 4118, 4118, 4119, 4119, 4120, 4120, 4121, 4121, 4121, 4121, 4097, 97, 4122, 4122, 4123, 4123, 4124, 4124, 4097, 105, 4124, 4124, 4098, 4098, 4125, 4125, 4097, 113, 4097, 115, 4126, 4126, 4127, 4127, 4128, 4128, 4097, 123, 4129, 4129, 4097, 127, 4130, 4130, 4131, 4131, 4132, 4132, 4133, 4133, 4134, 4134, 4135, 4135, 4136, 4136, 4137, 4137, 4138, 4138, 4098, 4098, 138, 138, 4139, 4139, 4098, 4098, 4097, 155, 4097, 157, 4098, 4098, 4140, 4140, 4141, 4141, 4142, 4142, 4097, 167, 4098, 4098, 4143, 4143, 4144, 4144, 4097, 175, 4145, 4145, 4097, 179, 4146, 4146, 4146, 4146, 4097, 185, 4097, 187, 4097, 189, 4147, 4147, 4098, 4098, 4148, 4148, 4149, 4149, 4150, 4150, 4151, 4151, 4152, 4152, 4098, 4098, 4098, 4098, 4153, 4153, 4154, 4154, 4155, 4155, 4097, 215, 4156, 4156, 4157, 4157, 4158, 4158, 4159, 4159, 4160, 4160, 4161, 4161, 4097, 229, 4162, 4162, 4163, 4163, 4164, 4164, 4098, 4098, 4165, 4165, 4098, 4098, 4097, 243, 4166, 4166, 4097, 247, 4167, 4167, 4168, 4168, 4098, 4098, 4097, 255, 4169, 4169, 4098, 4098, 4170, 4170, 4171, 4171, 4172, 4172, 4173, 4173, 4174, 4174, 4175, 4175, 4176, 4176, 4173, 4173, 4177, 4177, 4178, 4178, 4179, 4179, 4179, 4179, 4097, 285, 4180, 4180, 4181, 4181, 4182, 4182, 4183, 4183, 4097, 4097, 4184, 4097, 4097, 4097, 4185, 4097, 4184, 4097, 4097, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4186, 4097, 4187, 4097, 4097, 4097, 4097, 4097, 4188, 4097, 4184, 4097, 4097, 4097, 4189, 4190, 4190, 4190, 4097, 4097, 4097, 4191, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4192, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4193, 4097, 4097, 4097, 4097, 4097, 4097, 4194, 4097, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4097, 4195, 4097, 4097, 4097, 4097, 4196, 4197, 4097, 4097, 4097, 4097, 4097, 4097, 4198, 4097, 4097, 4097, 4097, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4199, 4200, 4199, 4097, 4097, 4201, 4202, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4203, 4204, 4097, 4097, 4097, 4097, 4205, 4206, 4207, 4208, 4097, 4207, 4097, 4209, 4097, 4097, 4097, 4097, 4207, 4207, 4097, 4097, 4097, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4210, 4184, 4097, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4211, 4212, 4211, 4211, 4097, 4211, 4213, 4214, 4097, 4213, 4213, 4097, 4097, 4097, 4097, 4215, 4216, 4097, 4097, 4215, 4097, 4097, 4215, 4215, 4097, 4097, 4097, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4217, 4218, 4217, 4097, 4217, 4097, 4097, 4219, 4220, 4221, 4220, 4097, 4220, 4222, 4220, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4223, 4097, 4097, 560, 4097, 4224, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 574, 4097, 4097, 4097, 4225, 4097, 4097, 4184, 4226, 4097, 4097, 4097, 4097, 4226, 4097, 4097, 4097, 4226, 4224, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4227, 4228, 4097, 4097, 4097, 4229, 4230, 4230, 4097, 4097, 4097, 4231, 4232, 4232, 4232, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4233, 4234, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4184, 4097, 4097, 4097, 4235, 4236, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4224, 4097, 4097, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4237, 4238, 4239, 4097, 4238, 4238, 4097, 4240, 4241, 4242, 4097, 4241, 4241, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4243, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4244, 4097, 4184, 4097, 4097, 4097, 4097, 4226, 4097, 4097, 4097, 4097, 4226, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4245, 4246, 4246, 4247, 4248, 4097, 4247, 4247, 4097, 4249, 4250, 4250, 4097, 4097, 4251, 4252, 4252, 4097, 4253, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4254, 4255, 4097, 4097, 4097, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4256, 4256, 4256, 4256, 4097, 4097, 4097, 4257, 4097, 4097, 4258, 4259, 4097, 4097, 4258, 4097, 4097, 4097, 4097, 4184, 4097, 4097, 4097, 4260, 4097, 4097, 4097, 4261, 4097, 4262, 4263, 4264, 4263, 4265, 4263, 4097, 4097, 4266, 4263, 4266, 826, 826, 4261, 4097, 4097, 4264, 4263, 4267, 4268, 4097, 4097, 4097, 4097, 4269, 4270, 4097, 4184, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4271, 4272, 4273, 4274, 4275, 4274, 4097, 4274, 4097, 4097, 4274, 4097, 4276, 4276, 4097, 4097, 4184, 4097, 4097, 4097, 4097, 4277, 4278, 4279, 4279, 4280, 4281, 4281, 4097, 4097, 4097, 4282, 4282, 4283, 4283, 4097, 4284, 4285, 4284, 4284, 4284, 4097, 4097, 4286, 4287, 4288, 4287, 4289, 4290, 4289, 4291, 4292, 4291, 4293, 4294, 4293, 4097, 4184, 4097, 4097, 4097, 4097, 4295, 4296, 4295, 4097, 4295, 4295, 4097, 4097, 4097, 4097, 4297, 4298, 4299, 4300, 4097, 4299, 4299, 4299, 4097, 4301, 4302, 4302, 4303, 4304, 4303, 4303, 4305, 4306, 4305, 4305, 4097, 4307, 4308, 4309, 4097, 4308, 4308, 4097, 4310, 4310, 4310, 4311, 4312, 4313, 4313, 4314, 4315, 4316, 4316, 4097, 4097, 4097, 4317, 4318, 4319, 4097, 4318, 4097, 4318, 4097, 4320, 4097, 4097, 4097, 4097, 4321, 4322, 4097, 4321, 4097, 4097, 4321, 4323, 4324, 4325, 4324, 4097, 4326, 4097, 4097, 4097, 4320, 4097, 4097, 4097, 4327, 4328, 4097, 4327, 4097, 4327, 4329, 4330, 4097, 4329, 4329, 4331, 4332, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4320, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4320, 4097, 4097, 4097, 4097, 4320, 4097, 4097, 4097, 4097, 4333, 4097, 4097, 4334, 4097, 4320, 4097, 4097, 4097, 4097, 4335, 4097, 4097, 4097, 4097, 4097, 4097, 4320, 4097, 4097, 4097, 4097, 4097, 4336, 4337, 4338, 4097, 4337, 4097, 4339, 4097, 4097, 4337, 4340, 4341, 4097, 4340, 4097, 4342, 4340, 4097, 4097, 4320, 4097, 4097, 4097, 4097, 4343, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4344, 4097, 4345, 4097, 4097, 4346, 4347, 4097, 4348, 4349, 4097, 4350, 4351, 4352, 4352, 4353, 4097, 4352, 4097, 4353, 4097, 4097, 4097, 4097, 4097, 4097, 4354, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4355, 4097, 4097, 4356, 4097, 4357, 4097, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4358, 4359, 4097, 4097, 4360, 4097, 4361, 4097, 4362, 4363, 4097, 4097, 4364, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4365, 4366, 4365, 4365, 4097, 4367, 4097, 4097, 4368, 4097, 4369, 4097, 4097, 4097, 4370, 4371, 4372, 4373, 4097, 4097, 4374, 4375, 4376, 4377, 4378, 4379, 4378, 4097, 4380, 4097, 4097, 4097, 4097, 4378, 4378, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4381, 4382, 4381, 4381, 4097, 4097, 4097, 4381, 4383, 4097, 4384, 4383, 4385, 4383, 4383, 4386, 4387, 4386, 4097, 4097, 4097, 4097, 4097, 4386, 4097, 4097, 4097, 4097, 4097, 4097, 4388, 4389, 4388, 4388, 4388, 4390, 4391, 4392, 4393, 4391, 4394, 4391, 4097, 4392, 4392, 4392, 4391, 4097, 4097, 4097, 4097, 4097, 4395, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4396, 4097, 4097, 4097, 4396, 4097, 4097, 4097, 1296, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4397, 4097, 4097, 4097, 4097, 4397, 4097, 4398, 4398, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4398, 4396, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4399, 4400, 4097, 4401, 4402, 4097, 4097, 4403, 4404, 4404, 4097, 4097, 4405, 4406, 4097, 4406, 4405, 4097, 4097, 4097, 4097, 4097, 4407, 4408, 4409, 4410, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4411, 4412, 4097, 4097, 4097, 4097, 4097, 4396, 4097, 4097, 4097, 4097, 4097, 4396, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4413, 4414, 4415, 4414, 4414, 4414, 4416, 4417, 4097, 4418, 4417, 4419, 4417, 4417, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4420, 4097, 4420, 4097, 4097, 4097, 4097, 4097, 4421, 4097, 4422, 4097, 4097, 4423, 4097, 4097, 4097, 4423, 4097, 4424, 4425, 4425, 4426, 4097, 4427, 4426, 4419, 4426, 4426, 4428, 4429, 4429, 4430, 4431, 4431, 4097, 4432, 4097, 4433, 4097, 4097, 4434, 4435, 4436, 4437, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4438, 4438, 4439, 4439, 4440, 4441, 4442, 4441, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4443, 4097, 4097, 4097, 4097, 4097, 4097, 4444, 4445, 4446, 4447, 4448, 4449, 4450, 4451, 4452, 4097, 4448, 4453, 4454, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4445, 4455, 4456, 4448, 4456, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 1601, 1601, 1601, 4097, 4097, 4097, 4097, 4097, 4097, 4448, 4457, 4457, 4458, 4097, 4097, 4459, 4460, 4461, 4462, 4097, 4097, 4097, 4097, 4097, 4097, 4463, 4463, 4464, 4465, 4466, 4466, 4467, 4468, 4469, 4469, 4470, 4471, 4472, 4473, 4472, 4472, 4097, 4472, 4097, 4097, 4097, 4097, 4472, 4097, 4474, 4474, 4097, 4475, 4476, 4477, 4477, 4478, 4479, 4479, 4097, 4097, 4480, 4480, 4481, 4481, 4482, 4483, 4482, 4482, 4482, 4484, 4485, 4486, 4485, 4485, 4485, 4487, 4488, 4487, 4487, 4487, 4489, 4490, 4489, 4489, 4489, 4491, 4492, 4491, 4491, 4491, 4097, 4097, 4097, 4493, 4493, 4097, 4494, 4493, 4494, 4495, 4493, 4493, 4097, 4097, 4496, 4097, 4497, 4498, 4499, 4500, 4097, 4501, 4500, 4495, 4500, 4500, 4500, 4097, 4502, 4503, 4503, 4504, 4505, 4504, 4504, 4504, 4506, 4097, 4507, 4506, 4495, 4506, 4506, 4508, 4509, 4097, 4510, 4509, 4495, 4509, 4509, 4511, 4511, 4511, 4512, 4513, 4514, 4515, 4514, 4516, 4517, 4517, 4097, 4097, 4518, 4519, 4097, 4520, 4519, 4495, 4519, 4097, 4097, 4097, 4521, 4522, 4521, 4521, 4521, 4097, 4523, 4524, 4523, 4097, 4525, 4526, 4527, 4526, 4097, 4526, 4528, 4529, 4528, 4528, 4528, 4530, 4531, 4530, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4532, 4097, 4533, 4097, 4097, 4097, 4097, 4534, 4535, 4534, 4097, 4536, 4534, 4534, 4537, 4538, 4537, 4097, 4539, 4537, 4537, 4097, 4097, 4097, 4540, 4541, 4542, 4097, 4543, 4544, 4097, 4545, 4546, 4547, 4097, 4548, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4549, 4097, 4097, 4550, 4097, 4097, 4551, 4552, 4553, 4554, 4097, 4553, 4553, 4553, 4553, 4553, 4553, 4553, 4553, 4553, 4553, 4553, 4553, 4553, 4553, 4553, 4553, 4553, 4553, 4553, 4097, 4555, 4556, 4557, 4558, 4097, 4559, 4097, 4550, 4097, 4551, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4560, 4097, 4561, 4562, 4563, 4564, 4565, 4566, 4567, 4568, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4569, 4097, 4097, 4097, 4570, 4571, 4570, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4572, 4573, 4574, 4575, 4097, 4097, 4097, 4576, 4577, 4578, 4579, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4580, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4581, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4582, 4583, 4583, 4584, 4585, 4586, 4587, 4588, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4589, 4097, 4589, 4590, 4591, 4591, 4592, 4592, 4593, 4594, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4595, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4596, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4597, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4598, 4097, 4599, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4600, 4601, 4601, 2237, 4097, 4097, 4600, 4602, 4603, 4604, 4605, 4097, 4097, 4606, 4607, 4608, 4097, 4609, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4610, 4611, 4612, 4097, 4097, 4613, 4097, 4097, 4614, 4614, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4615, 4616, 4617, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4618, 4097, 4097, 4097, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 4619, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4620, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4621, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4622, 4623, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4624, 4097, 4625, 4625, 4097, 4626, 4097, 4627, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4628, 4097, 4097, 4097, 4097, 4629, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4630, 4630, 4097, 4631, 4097, 4097, 4097, 4632, 4097, 4097, 4633, 4097, 4634, 4097, 4635, 4097, 4097, 4636, 4097, 4637, 4097, 4638, 4097, 4097, 4639, 4097, 4640, 4640, 4097, 4097, 4641, 4097, 4097, 4097, 4642, 4097, 4643, 4643, 4097, 4097, 4097, 4097, 4097, 4097, 4644, 4097, 4645, 4097, 4646, 4097, 4647, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4648, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4649, 4650, 4651, 4651, 4097, 4097, 4097, 4652, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4653, 4653, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4654, 4655, 4097, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4655, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4656, 4097, 4097, 4657, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4658, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4659, 4659, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4660, 4660, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4661, 4662, 4662, 4663, 4663, 4097, 4097, 4097, 4664, 4097, 4097, 4665, 4097, 4666, 4097, 4667, 4097, 4097, 4668, 4097, 4669, 4097, 4670, 4097, 4097, 4671, 4671, 4672, 4097, 4097, 4673, 4097, 4674, 4674, 4097, 4097, 4097, 4097, 4097, 4097, 4675, 4097, 4676, 4097, 4677, 4097, 4678, 4097, 4097, 4097, 4679, 4679, 4097, 4097, 4680, 4680, 4681, 4097, 4682, 4682, 4683, 4683, 4684, 4684, 4097, 4685, 4685, 4686, 4686, 4687, 4687, 4097, 4688, 4688, 4689, 4097, 4097, 4690, 4690, 4097, 4097, 4691, 4691, 4692, 4097, 4097, 4097, 4693, 4097, 4694, 4097, 4097, 4695, 4695, 4696, 4696, 4697, 4697, 4698, 4698, 4699, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4700, 4701, 4701, 4701, 4701, 4701, 4702, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4703, 4704, 4705, 4706, 4707, 4097, 4097, 4097, 4708, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4709, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4097, 4097, 4710, 4097, 4097, 4097, 4097, 4097, 4097, 4711, 4097, 4712, 4097, 4097, 4713, 4713, 4714, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4715, 4097, 4097, 4097, 4716, 4716, 4717, 4097, 4718, 4718, 4719, 4719, 4720, 4720, 4097, 4721, 4721, 4722, 4722, 4723, 4723, 4097, 4724, 4724, 4097, 4725, 4725, 4726, 4097, 4097, 4097, 4727, 4097, 4728, 4097, 4097, 4729, 4729, 4730, 4730, 4731, 4731, 4732, 4732, 4733, 4097, 4734, 4097, 4097, 4735, 4097, 4736, 4736, 4737, 4097, 4738, 4097, 4739, 4739, 4097, 4740, 4097, 4097, 4741, 4741, 4097, 4097, 4742, 4742, 4743, 4743, 4097, 4744, 4744, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4745, 4746, 4746, 4746, 4746, 4747, 4748, 4749, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4097, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4750, 4750, 4751, 4751, 4752, 4753, 4097, 4097, 4754, 4097, 4755, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4756, 4097, 4756, 4756, 4756, 4097, 4097, 4756, 4756, 4097, 4097, 4756, 4756, 4756, 4756, 4097, 4097, 4097, 4097, 4757, 4757, 4758, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4759, 4760, 4097, 4097, 4761, 4097, 4762, 4762, 4763, 4097, 4764, 4097, 4097, 4765, 4765, 4097, 4097, 4766, 4766, 4767, 4767, 4097, 4768, 4768, 4769, 4769, 4097, 4770, 4770, 4771, 4771, 4772, 4772, 4773, 4097, 4774, 4774, 4097, 4775, 4097, 4097, 4776, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4777, 4778, 4778, 4778, 4778, 4779, 4779, 4778, 4778, 4778, 4778, 4778, 4778, 4778, 4097, 4778, 4778, 4778, 4778, 4778, 4778, 4778, 4778, 4778, 4097, 4778, 4778, 4778, 4778, 4778, 4778, 4778, 4778, 4778, 4778, 4780, 4781, 4782, 4781, 3511, 4783, 4784, 4097, 4097, 4785, 4785, 4786, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4787, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4788, 4788, 4097, 4097, 4788, 4788, 4097, 4788, 4097, 4097, 4788, 4097, 4788, 4097, 4097, 4097, 4789, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4790, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4791, 4792, 4792, 4097, 4793, 4793, 4794, 4794, 4795, 4795, 4097, 4796, 4097, 4097, 4797, 4097, 4798, 4097, 4799, 4799, 4097, 4800, 4800, 4801, 4097, 4802, 4802, 4097, 4803, 4097, 4097, 4097, 4804, 4805, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4806, 4807, 4807, 4807, 4097, 4807, 4807, 4807, 4807, 4807, 4807, 4097, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 4808, 4809, 4810, 4809, 4097, 4097, 4097, 4811, 4812, 4097, 4097, 4097, 4097, 4813, 4814, 4815, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4816, 4816, 4097, 4816, 4816, 4816, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4817, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4818, 4097, 4097, 4097, 4097, 4097, 4819, 4820, 4097, 4097, 4821, 4821, 4822, 4097, 4823, 4823, 4824, 4824, 4097, 4825, 4825, 4097, 4826, 4097, 4097, 4097, 4097, 4097, 4827, 4097, 4097, 4097, 4097, 4828, 4097, 4829, 4097, 4097, 4097, 4830, 4831, 4831, 4831, 4831, 4831, 4831, 4832, 4831, 4832, 4831, 4831, 4831, 4831, 4831, 4831, 4831, 4831, 4831, 4831, 4831, 4833, 4834, 4835, 4097, 4836, 4837, 4838, 4097, 4837, 4839, 3810, 3806, 4097, 4097, 4840, 4097, 4097, 4097, 4841, 4842, 4843, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4844, 4097, 4097, 4844, 4844, 4097, 4097, 4097, 4845, 4846, 4097, 4847, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4848, 4849, 4849, 4097, 4850, 4850, 4851, 4097, 4097, 4097, 4852, 4097, 4097, 4097, 4097, 4097, 4853, 4854, 4097, 4097, 4097, 4855, 4856, 4856, 4856, 4856, 4856, 4856, 4856, 4857, 4856, 4856, 4856, 4856, 4857, 4856, 4858, 4859, 4860, 4097, 4861, 4097, 4861, 4097, 4862, 4097, 4097, 4097, 4097, 4863, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4864, 4097, 4864, 4864, 4097, 4846, 4846, 4097, 4097, 4097, 4097, 4097, 4848, 4865, 4097, 4851, 4851, 4097, 4097, 4097, 4097, 4097, 4097, 4854, 4097, 4097, 4856, 4856, 4856, 4856, 4856, 4856, 4856, 4856, 4857, 4856, 4856, 4858, 4859, 4860, 4097, 3896, 4866, 3896, 4097, 4867, 4097, 3942, 3942, 4097, 4097, 4097, 4097, 4097, 4097, 4864, 4864, 4097, 4097, 4097, 4868, 3896, 4865, 4865, 4097, 4097, 4097, 3942, 3942, 4856, 4856, 4856, 4856, 4856, 4097, 4856, 3954, 3955, 4097, 4867, 4097, 3942, 4869, 4097, 4870, 4097, 4097, 4097, 4097, 4097, 4097, 4864, 4097, 4097, 4097, 4097, 4856, 4856, 4856, 4856, 4097, 3955, 3896, 3942, 4097, 4871, 4097, 4097, 4097, 4097, 4097, 4864, 4856, 4856, 4856, 4856, 4097, 4872, 4017, 4872, 4873, 4017, 4033, 3955, 3896, 3942, 4097, 4097, 4097, 4097, 4856, 4856, 4097, 4856, 4097, 4097, 3955, 3896, 3942, 4097, 4097, 4097, 4856, 4097, 4097, 4051, 4873, 4051, 4017, 4017, 3955, 3896, 3942, 4856, 4033, 4017, 4051, 3896, 3942, 4856, 4051, 4017, 3896, 3942, 4856, 4051, 4017, 3896, 4097, 4051, 4017, 3896, 4051, 4017, 4051, 4017, 4051, 4017, 4051, 4051, 0, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097 } ; static yyconst short int yy_nxt[33836] = { 0, 4097, 297, 4097, 298, 299, 297, 4097, 298, 299, 1091, 1092, 1101, 1118, 2646, 1101, 1118, 1083, 1083, 1089, 2646, 300, 1084, 1084, 1090, 300, 296, 297, 296, 298, 299, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 296, 296, 296, 296, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 296, 296, 296, 303, 1144, 298, 304, 303, 1144, 298, 304, 308, 309, 310, 311, 309, 305, 312, 1237, 1238, 305, 297, 306, 298, 299, 297, 306, 298, 299, 1679, 313, 308, 309, 310, 311, 309, 1259, 312, 1260, 330, 300, 298, 331, 330, 300, 298, 331, 1244, 1245, 1301, 313, 297, 389, 390, 391, 389, 1679, 297, 332, 298, 299, 297, 332, 298, 299, 830, 314, 333, 830, 334, 396, 333, 1083, 334, 1083, 1301, 300, 1084, 831, 1084, 300, 832, 1119, 833, 2649, 1120, 314, 296, 297, 315, 316, 317, 315, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 318, 319, 296, 296, 296, 296, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 296, 296, 296, 296, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 321, 296, 322, 296, 297, 323, 298, 299, 323, 296, 296, 296, 296, 296, 324, 296, 325, 296, 324, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 326, 324, 327, 324, 296, 296, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 325, 296, 296, 296, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 321, 296, 296, 296, 297, 335, 336, 337, 335, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 338, 296, 296, 300, 296, 296, 296, 296, 296, 296, 339, 319, 340, 296, 296, 296, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 296, 296, 296, 296, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 342, 296, 296, 344, 345, 346, 347, 345, 344, 345, 346, 347, 345, 297, 581, 298, 299, 753, 2649, 351, 1104, 1147, 348, 1104, 352, 353, 1148, 348, 1418, 354, 1179, 297, 300, 298, 299, 1180, 1358, 351, 1870, 1089, 355, 754, 352, 353, 1090, 1246, 1247, 354, 1871, 1554, 300, 297, 389, 390, 391, 389, 1301, 1449, 355, 1081, 402, 403, 404, 405, 403, 411, 1083, 298, 412, 1083, 396, 1084, 406, 407, 1084, 349, 408, 413, 414, 409, 349, 350, 1301, 1250, 415, 1081, 350, 402, 403, 404, 405, 403, 411, 1147, 298, 412, 356, 1081, 1148, 406, 407, 2233, 1096, 408, 413, 414, 409, 1102, 1102, 1102, 1102, 415, 1872, 1873, 356, 296, 297, 357, 358, 359, 357, 296, 296, 360, 296, 296, 361, 296, 362, 296, 361, 296, 363, 296, 296, 364, 296, 296, 296, 296, 296, 296, 365, 366, 367, 368, 296, 296, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 370, 296, 296, 296, 369, 369, 371, 369, 372, 369, 369, 369, 373, 369, 369, 374, 375, 369, 376, 369, 369, 377, 378, 379, 380, 369, 369, 369, 369, 381, 296, 382, 296, 297, 383, 384, 385, 383, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 386, 296, 296, 296, 296, 296, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 296, 296, 296, 296, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 296, 296, 388, 296, 297, 389, 390, 391, 389, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 392, 296, 296, 393, 296, 296, 296, 296, 296, 296, 296, 296, 296, 394, 296, 296, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 296, 296, 296, 296, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 296, 296, 296, 297, 1142, 298, 299, 1142, 1147, 297, 397, 298, 299, 1148, 4097, 398, 397, 1110, 1111, 1111, 1110, 398, 300, 434, 1731, 298, 435, 1083, 300, 399, 400, 427, 1084, 428, 429, 399, 400, 427, 1302, 428, 429, 1735, 436, 430, 434, 1251, 298, 435, 1251, 430, 431, 440, 441, 442, 443, 441, 431, 444, 1252, 432, 1687, 2652, 445, 436, 1143, 432, 1169, 1169, 1169, 1169, 446, 1418, 440, 441, 442, 443, 441, 437, 444, 438, 4097, 2652, 297, 445, 298, 299, 399, 297, 1081, 298, 299, 446, 399, 402, 416, 417, 418, 416, 437, 1113, 438, 300, 2076, 1358, 1331, 464, 300, 465, 466, 449, 1209, 467, 419, 1229, 449, 1210, 468, 2077, 1230, 420, 420, 1235, 421, 1395, 469, 297, 1236, 298, 299, 297, 1233, 298, 299, 1233, 447, 448, 1234, 1844, 1418, 464, 473, 465, 466, 473, 300, 467, 474, 4097, 300, 1240, 468, 1844, 450, 422, 1241, 447, 448, 450, 469, 1083, 470, 1237, 1238, 487, 1084, 465, 488, 423, 1254, 424, 1358, 425, 491, 1255, 492, 493, 420, 402, 416, 417, 418, 416, 476, 491, 1301, 492, 493, 1083, 471, 472, 1275, 494, 1269, 2655, 470, 1268, 419, 497, 498, 298, 499, 498, 494, 420, 420, 503, 421, 504, 505, 478, 1301, 500, 1266, 478, 1417, 1266, 501, 497, 498, 298, 499, 498, 471, 472, 506, 1267, 503, 495, 504, 505, 297, 500, 298, 299, 1083, 1257, 501, 422, 495, 1276, 1417, 1273, 509, 510, 1273, 506, 489, 1261, 1456, 300, 1457, 423, 1262, 424, 1274, 425, 1177, 1177, 1177, 1177, 420, 296, 297, 451, 452, 453, 451, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 454, 296, 296, 296, 296, 296, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 296, 296, 296, 296, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, 296, 296, 456, 296, 297, 457, 458, 459, 457, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 460, 296, 296, 296, 296, 296, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 296, 296, 296, 296, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 296, 296, 462, 464, 1622, 475, 466, 1463, 1601, 470, 464, 1464, 475, 466, 470, 1358, 470, 480, 1465, 481, 482, 470, 476, 483, 480, 2656, 481, 482, 1083, 476, 483, 484, 487, 1084, 465, 488, 485, 297, 484, 298, 299, 1281, 297, 485, 298, 299, 1282, 297, 1285, 298, 299, 476, 596, 1292, 605, 606, 300, 1293, 477, 509, 510, 300, 1294, 4097, 2657, 477, 300, 1111, 1111, 1111, 1111, 607, 486, 1184, 1184, 1184, 1184, 1244, 1245, 486, 4097, 512, 513, 514, 515, 513, 470, 470, 512, 521, 514, 515, 521, 470, 470, 516, 1087, 1087, 1087, 1087, 517, 1844, 522, 596, 4097, 605, 606, 523, 1298, 518, 1844, 1991, 519, 1299, 1088, 489, 518, 1992, 1298, 519, 507, 508, 607, 1326, 1888, 507, 508, 525, 526, 527, 528, 526, 297, 1889, 298, 299, 520, 525, 526, 527, 528, 526, 297, 520, 298, 299, 529, 2658, 1083, 4097, 1287, 300, 1081, 1299, 1083, 530, 529, 531, 1298, 1326, 532, 300, 533, 1299, 1288, 530, 297, 531, 298, 299, 532, 297, 533, 298, 299, 1280, 1748, 1081, 534, 535, 1748, 1081, 1298, 534, 535, 300, 537, 1326, 298, 538, 300, 537, 539, 298, 538, 1246, 1247, 539, 545, 546, 547, 548, 546, 1298, 297, 540, 644, 299, 1299, 2661, 540, 297, 549, 644, 299, 2014, 2015, 550, 545, 546, 547, 548, 546, 300, 1492, 651, 1493, 298, 652, 1081, 300, 1081, 549, 1203, 1204, 1204, 1203, 550, 653, 1748, 541, 1298, 542, 1748, 654, 541, 1375, 542, 296, 297, 296, 298, 299, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 296, 296, 296, 296, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 543, 296, 296, 296, 551, 552, 553, 554, 555, 553, 551, 551, 551, 551, 551, 551, 551, 551, 551, 556, 551, 551, 551, 551, 557, 566, 567, 568, 569, 567, 2662, 551, 551, 559, 551, 551, 560, 1298, 651, 570, 298, 652, 1084, 571, 572, 690, 1301, 691, 692, 1481, 1418, 653, 690, 573, 691, 692, 574, 654, 1358, 551, 561, 551, 551, 629, 693, 630, 631, 629, 1083, 630, 631, 693, 1301, 1388, 1878, 632, 1481, 633, 1083, 632, 575, 633, 634, 1084, 1879, 1744, 634, 1081, 551, 551, 551, 551, 552, 562, 554, 555, 562, 551, 551, 551, 551, 551, 551, 551, 551, 551, 563, 551, 551, 551, 551, 564, 566, 576, 577, 578, 576, 1371, 551, 551, 559, 551, 551, 560, 1396, 1358, 579, 1396, 1372, 1101, 571, 580, 1101, 1312, 635, 1763, 1083, 1397, 635, 1680, 573, 1084, 682, 574, 298, 683, 551, 561, 551, 551, 675, 676, 677, 678, 676, 684, 685, 1204, 1204, 1204, 1204, 686, 1763, 1083, 679, 1680, 1554, 575, 1084, 680, 1111, 1111, 1111, 1111, 1561, 551, 551, 551, 581, 582, 583, 584, 585, 583, 581, 581, 581, 581, 581, 581, 581, 581, 581, 586, 581, 581, 581, 581, 587, 596, 597, 598, 599, 597, 2284, 581, 581, 589, 581, 581, 590, 2663, 675, 676, 677, 678, 676, 1101, 600, 1266, 1101, 697, 1266, 698, 699, 682, 679, 298, 683, 2285, 601, 680, 1267, 581, 591, 581, 581, 1083, 684, 685, 700, 1758, 1394, 1759, 686, 1182, 1182, 1182, 1182, 1803, 1923, 1081, 4097, 1393, 602, 1204, 1204, 1204, 1204, 1924, 1183, 1554, 581, 581, 581, 581, 582, 592, 584, 585, 592, 581, 581, 581, 581, 581, 581, 581, 581, 581, 593, 581, 581, 581, 581, 594, 596, 603, 598, 599, 603, 2664, 581, 581, 589, 581, 581, 590, 1083, 697, 1371, 698, 699, 1430, 1118, 604, 735, 1118, 736, 737, 735, 1083, 736, 737, 1083, 2590, 1084, 601, 700, 1084, 581, 591, 581, 581, 745, 738, 746, 747, 745, 738, 746, 747, 1358, 1466, 739, 1372, 1466, 1450, 739, 1461, 1312, 602, 1451, 748, 1462, 1118, 1467, 748, 1118, 581, 581, 581, 296, 297, 608, 609, 610, 608, 296, 296, 296, 296, 296, 296, 296, 296, 296, 611, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 612, 296, 296, 296, 296, 296, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 296, 296, 296, 296, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, 296, 296, 614, 296, 297, 615, 616, 617, 615, 296, 618, 296, 296, 296, 296, 296, 296, 296, 296, 297, 296, 298, 299, 620, 1454, 658, 659, 660, 661, 659, 2665, 296, 296, 296, 296, 296, 1458, 1764, 300, 662, 297, 1459, 298, 299, 663, 1259, 1888, 1260, 629, 643, 644, 631, 643, 664, 1876, 1889, 665, 1877, 296, 300, 296, 296, 297, 1764, 298, 299, 297, 634, 298, 299, 1469, 1182, 1182, 1182, 1182, 1460, 1295, 645, 1472, 1295, 666, 300, 1449, 1473, 1081, 300, 1183, 296, 296, 296, 296, 297, 615, 616, 617, 615, 296, 618, 296, 296, 296, 296, 296, 296, 296, 296, 1296, 296, 646, 297, 620, 298, 299, 658, 667, 668, 669, 667, 296, 296, 296, 296, 296, 1974, 647, 1960, 648, 670, 300, 1477, 1296, 649, 671, 2666, 1470, 629, 643, 644, 631, 643, 297, 664, 298, 299, 672, 296, 1409, 296, 296, 1409, 1974, 1960, 769, 770, 634, 1087, 1087, 1087, 1087, 300, 1197, 1197, 1197, 1197, 645, 1410, 1478, 1981, 673, 2667, 1982, 1479, 1198, 1088, 296, 296, 296, 296, 297, 621, 622, 623, 621, 296, 624, 296, 296, 296, 296, 296, 296, 296, 296, 2668, 296, 646, 702, 626, 703, 704, 702, 709, 703, 704, 709, 296, 627, 296, 296, 296, 705, 647, 1144, 648, 710, 706, 1144, 1463, 649, 706, 1984, 297, 2669, 298, 299, 1323, 727, 707, 1323, 727, 1985, 707, 296, 1474, 296, 296, 1474, 795, 1324, 586, 300, 1325, 1083, 1297, 728, 1464, 1475, 1299, 796, 1358, 2001, 708, 1465, 581, 2002, 708, 753, 1094, 1094, 1094, 1094, 296, 296, 296, 296, 297, 621, 622, 623, 621, 296, 624, 296, 296, 296, 296, 296, 296, 296, 296, 754, 296, 1095, 712, 626, 713, 714, 722, 2670, 723, 724, 1978, 296, 627, 296, 296, 296, 715, 1083, 1083, 1979, 716, 717, 1326, 1084, 297, 725, 298, 299, 1094, 1094, 1094, 1094, 297, 718, 298, 299, 1233, 726, 296, 1233, 296, 296, 1234, 300, 769, 770, 402, 403, 404, 405, 403, 300, 1779, 1095, 1780, 1083, 2671, 718, 771, 772, 1488, 726, 408, 2057, 2058, 409, 1081, 296, 296, 296, 296, 297, 636, 637, 638, 636, 296, 296, 296, 296, 296, 296, 296, 296, 639, 296, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 640, 296, 296, 296, 296, 296, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 296, 296, 296, 296, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 296, 296, 642, 296, 297, 296, 298, 299, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 611, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 296, 296, 296, 296, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 611, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 296, 296, 296, 296, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 656, 296, 296, 296, 296, 297, 296, 687, 299, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 611, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 296, 296, 296, 296, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, 296, 296, 296, 296, 297, 296, 694, 299, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 611, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 296, 296, 296, 296, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 296, 296, 296, 712, 719, 713, 714, 719, 722, 1997, 723, 724, 402, 403, 404, 405, 403, 720, 1083, 1687, 1998, 716, 717, 1498, 771, 772, 2672, 725, 408, 1490, 774, 409, 298, 775, 718, 774, 2012, 298, 775, 726, 1983, 1494, 297, 776, 298, 299, 1495, 1081, 776, 777, 1216, 1216, 1216, 1216, 777, 1083, 1142, 1083, 718, 1142, 1501, 300, 1084, 726, 581, 582, 727, 584, 585, 727, 581, 581, 581, 581, 581, 581, 581, 581, 581, 586, 581, 581, 581, 581, 728, 779, 780, 781, 782, 780, 2046, 581, 581, 729, 581, 581, 730, 783, 784, 2001, 1083, 785, 1083, 2021, 786, 1084, 297, 1084, 298, 299, 1554, 779, 780, 781, 782, 780, 1143, 2046, 2203, 581, 731, 581, 581, 783, 784, 300, 937, 785, 298, 938, 786, 1182, 1182, 1182, 1182, 1222, 1222, 1222, 1222, 1277, 1277, 1277, 1277, 1554, 2006, 939, 1183, 2006, 581, 581, 581, 581, 582, 732, 584, 585, 732, 581, 581, 581, 581, 581, 581, 581, 581, 581, 593, 581, 581, 581, 581, 733, 297, 1986, 298, 299, 4097, 2673, 581, 581, 729, 581, 581, 730, 1277, 1277, 1277, 1277, 795, 1530, 2232, 300, 2008, 889, 1531, 890, 891, 1441, 1442, 796, 1441, 798, 799, 800, 801, 799, 581, 731, 581, 581, 1443, 1456, 892, 1457, 897, 296, 298, 299, 296, 1987, 802, 893, 1277, 1277, 1277, 1277, 1290, 1290, 1290, 1290, 2674, 2010, 803, 898, 2011, 581, 581, 581, 296, 297, 296, 740, 299, 296, 296, 741, 296, 296, 296, 296, 296, 296, 296, 611, 1327, 296, 803, 1327, 743, 798, 799, 800, 801, 799, 1984, 2675, 296, 296, 296, 296, 296, 2676, 1530, 889, 2013, 890, 891, 1533, 804, 897, 296, 298, 299, 296, 1328, 1750, 843, 1751, 298, 844, 803, 1751, 892, 296, 845, 296, 296, 1083, 898, 1558, 846, 893, 1084, 1554, 1559, 847, 1711, 2283, 1328, 1330, 1330, 1330, 1330, 1712, 803, 1713, 2283, 848, 1093, 1094, 1094, 1093, 296, 296, 296, 296, 297, 296, 740, 299, 296, 296, 741, 296, 296, 296, 296, 296, 296, 296, 611, 848, 296, 1095, 843, 743, 298, 844, 1289, 1290, 1289, 1289, 845, 296, 296, 296, 296, 296, 846, 2677, 2078, 1285, 937, 847, 298, 938, 900, 296, 298, 299, 296, 1098, 1098, 1098, 1098, 848, 843, 2678, 298, 844, 296, 939, 296, 296, 845, 901, 297, 2078, 298, 299, 846, 1289, 1290, 1289, 1289, 847, 1095, 1558, 1100, 848, 1096, 1554, 1629, 1640, 1285, 300, 2679, 849, 1641, 296, 296, 296, 296, 297, 296, 749, 299, 296, 296, 750, 296, 296, 296, 296, 296, 296, 296, 611, 1492, 296, 1493, 849, 752, 856, 857, 858, 859, 857, 1554, 2092, 296, 296, 296, 296, 296, 2283, 900, 296, 298, 299, 296, 2074, 860, 903, 296, 298, 299, 296, 2096, 2283, 843, 861, 298, 844, 862, 901, 1558, 296, 845, 296, 296, 1644, 904, 297, 846, 298, 299, 2074, 2235, 847, 1344, 1343, 1344, 1344, 1382, 1382, 1382, 1382, 863, 1664, 1083, 849, 300, 2680, 1665, 1670, 296, 296, 296, 296, 297, 296, 749, 299, 296, 296, 750, 296, 296, 296, 296, 296, 296, 296, 611, 849, 296, 2185, 2186, 752, 856, 857, 858, 859, 857, 1646, 2248, 296, 296, 296, 296, 296, 2702, 903, 296, 298, 299, 296, 2703, 860, 906, 296, 298, 299, 296, 1650, 2249, 868, 861, 869, 870, 862, 904, 2271, 296, 1323, 296, 296, 1323, 907, 906, 296, 298, 299, 296, 1083, 871, 1083, 1324, 1083, 1084, 1325, 1675, 1268, 1678, 863, 1083, 1083, 872, 907, 2271, 1682, 1684, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 755, 296, 296, 296, 296, 296, 296, 296, 611, 872, 296, 1554, 868, 757, 869, 870, 909, 2004, 910, 911, 2004, 296, 296, 296, 296, 296, 915, 916, 917, 918, 916, 871, 1554, 2005, 2318, 912, 915, 916, 917, 918, 916, 1688, 2319, 872, 1694, 919, 1689, 913, 296, 1695, 296, 296, 1844, 1699, 941, 919, 298, 942, 1700, 2617, 296, 1384, 1385, 1384, 1384, 1704, 1844, 872, 1986, 1709, 1705, 913, 2006, 943, 1710, 2006, 2228, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 755, 296, 296, 296, 296, 296, 296, 296, 611, 909, 296, 910, 911, 757, 1083, 927, 2054, 928, 929, 1084, 2055, 296, 296, 296, 296, 296, 1083, 1987, 912, 930, 941, 1741, 298, 942, 931, 297, 296, 298, 299, 1988, 913, 944, 947, 1989, 948, 949, 932, 1745, 296, 943, 296, 296, 1746, 297, 300, 298, 299, 1083, 1083, 944, 2704, 950, 1772, 1084, 913, 1384, 1385, 1384, 1384, 1744, 932, 1081, 300, 1389, 1390, 1389, 1389, 296, 296, 296, 296, 297, 296, 758, 299, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 611, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 296, 296, 296, 296, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 296, 296, 296, 760, 761, 762, 763, 764, 762, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 765, 760, 760, 760, 760, 760, 760, 766, 760, 760, 760, 760, 760, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 760, 760, 760, 760, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 760, 760, 768, 296, 297, 787, 788, 789, 787, 296, 296, 296, 296, 296, 790, 296, 296, 296, 790, 296, 791, 296, 296, 364, 296, 296, 296, 296, 296, 296, 296, 792, 296, 793, 296, 296, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 296, 296, 296, 296, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 296, 296, 296, 805, 806, 805, 298, 807, 805, 805, 805, 805, 805, 805, 808, 805, 805, 805, 805, 805, 805, 805, 805, 809, 927, 2042, 928, 929, 2042, 1304, 805, 805, 805, 805, 805, 805, 1788, 947, 930, 948, 949, 1789, 1083, 931, 1314, 1361, 297, 1084, 963, 299, 297, 1731, 963, 299, 1405, 932, 950, 1405, 805, 805, 805, 805, 2705, 1736, 968, 300, 969, 970, 1737, 300, 1389, 1390, 1389, 1389, 1403, 1403, 1403, 1403, 971, 932, 1083, 1804, 1406, 972, 2708, 1800, 1805, 805, 805, 805, 805, 806, 805, 298, 807, 805, 805, 805, 805, 805, 805, 808, 805, 805, 805, 805, 805, 805, 805, 805, 809, 964, 1554, 1407, 1798, 964, 1081, 805, 805, 805, 805, 805, 805, 1756, 968, 965, 969, 970, 1081, 965, 297, 1408, 298, 299, 297, 1760, 298, 299, 971, 974, 1761, 298, 975, 972, 2711, 805, 805, 805, 805, 300, 2713, 1777, 1000, 300, 1001, 1002, 2234, 1304, 976, 1421, 1420, 1421, 1421, 1083, 2024, 1812, 1003, 977, 1781, 978, 1813, 1004, 1314, 1361, 805, 805, 805, 805, 806, 811, 812, 813, 811, 805, 805, 814, 815, 816, 808, 805, 805, 805, 805, 817, 805, 818, 818, 819, 820, 820, 820, 820, 820, 820, 821, 805, 822, 805, 805, 823, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 805, 825, 805, 805, 824, 824, 824, 824, 824, 826, 824, 827, 824, 824, 824, 824, 824, 828, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 805, 805, 829, 296, 297, 296, 298, 299, 296, 296, 834, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 1978, 974, 300, 298, 975, 1000, 2714, 1001, 1002, 1979, 296, 296, 296, 296, 296, 988, 2009, 981, 989, 1003, 976, 990, 1251, 2386, 1004, 1251, 991, 992, 993, 977, 1006, 978, 1007, 1008, 994, 1252, 2312, 296, 296, 296, 296, 980, 1554, 981, 982, 1627, 1083, 983, 1627, 1009, 2312, 1084, 984, 1471, 1471, 1471, 1471, 1758, 1624, 1759, 985, 1625, 1106, 1106, 1106, 1106, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 834, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 1107, 1006, 300, 1007, 1008, 1029, 2602, 298, 1030, 986, 296, 296, 296, 296, 296, 988, 1266, 981, 989, 1266, 1009, 990, 1031, 1803, 1032, 1081, 991, 992, 993, 1267, 995, 2142, 981, 996, 994, 2715, 990, 296, 296, 296, 296, 991, 1011, 1012, 1013, 1014, 1012, 1083, 990, 994, 2718, 1083, 1084, 991, 1015, 1016, 1084, 2142, 997, 1109, 998, 1017, 1510, 1510, 1510, 1510, 296, 296, 296, 296, 297, 836, 837, 838, 836, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 839, 296, 296, 296, 296, 296, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 296, 296, 296, 296, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 296, 296, 841, 805, 806, 805, 850, 807, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 851, 810, 810, 810, 810, 810, 810, 805, 805, 805, 805, 805, 805, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 805, 805, 805, 805, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 805, 805, 805, 805, 806, 805, 850, 807, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 851, 810, 810, 810, 810, 810, 810, 805, 805, 805, 805, 805, 805, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 805, 805, 805, 805, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 805, 805, 805, 805, 806, 805, 850, 807, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 851, 810, 810, 810, 810, 810, 810, 805, 805, 805, 805, 805, 805, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 805, 805, 805, 805, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 805, 805, 805, 296, 297, 296, 298, 299, 296, 296, 296, 1083, 296, 296, 296, 296, 1819, 2719, 296, 980, 296, 981, 982, 865, 1554, 983, 1087, 1087, 1087, 1087, 984, 296, 296, 296, 296, 866, 1089, 297, 985, 298, 299, 1090, 1825, 995, 1088, 981, 996, 1826, 1844, 990, 1115, 1115, 1115, 1115, 991, 2720, 300, 1844, 296, 866, 296, 296, 994, 1029, 1833, 298, 1030, 880, 2377, 1834, 2587, 997, 1840, 998, 986, 1117, 881, 1841, 1654, 2250, 1031, 882, 1032, 1129, 1129, 1129, 1129, 296, 296, 296, 297, 296, 298, 299, 296, 296, 296, 2143, 296, 296, 296, 296, 881, 1733, 296, 1734, 296, 882, 1131, 865, 1124, 1124, 1124, 1124, 2377, 2721, 2377, 296, 296, 296, 296, 866, 2052, 2143, 297, 2053, 298, 299, 1125, 1011, 1012, 1013, 1014, 1012, 1081, 990, 1129, 1129, 1129, 1129, 991, 1015, 1016, 300, 296, 866, 296, 296, 1017, 1126, 1126, 1126, 1126, 1064, 880, 1065, 1066, 1842, 1081, 1067, 2312, 1131, 1843, 881, 1068, 1069, 1070, 1127, 882, 2312, 2390, 2415, 1071, 296, 296, 296, 297, 296, 298, 299, 296, 296, 296, 296, 296, 296, 296, 296, 2313, 881, 296, 296, 296, 296, 882, 300, 1021, 1022, 1023, 1024, 1022, 1554, 2313, 296, 296, 296, 296, 296, 995, 1012, 1013, 1014, 1012, 1748, 990, 1025, 2153, 1748, 1553, 991, 1015, 1556, 1553, 1857, 1026, 2326, 1027, 994, 1858, 1553, 296, 296, 296, 296, 1557, 1554, 1018, 1064, 1019, 1065, 1066, 2327, 2153, 1067, 1521, 1521, 1521, 1521, 1068, 1069, 1070, 1171, 1171, 1171, 1171, 2156, 1071, 2599, 1553, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 296, 296, 296, 296, 296, 296, 2591, 1172, 296, 296, 296, 296, 2156, 300, 1021, 1022, 1023, 1024, 1022, 2722, 2167, 296, 296, 296, 296, 296, 995, 1012, 1013, 1014, 1012, 1104, 990, 1025, 1104, 1748, 1865, 991, 1015, 1748, 1273, 1866, 1026, 1273, 1027, 994, 2167, 1752, 296, 296, 296, 296, 1753, 1274, 1018, 1554, 1019, 1124, 1124, 1124, 1124, 1519, 1519, 1519, 1519, 1543, 1544, 1545, 1543, 1546, 1547, 1545, 1546, 1554, 2370, 1125, 1520, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 874, 296, 296, 296, 296, 296, 296, 296, 296, 1034, 296, 298, 1035, 876, 2370, 1034, 1038, 298, 1035, 1038, 2596, 296, 296, 296, 296, 296, 1096, 2723, 1036, 1039, 1191, 1191, 1191, 1191, 1040, 1126, 1126, 1126, 1126, 2217, 1037, 1034, 1867, 298, 1035, 2218, 1037, 1868, 296, 1192, 296, 296, 1056, 1127, 1057, 1058, 1956, 2373, 1059, 1554, 1036, 1957, 1142, 1275, 1037, 1142, 1060, 1985, 1268, 1554, 1037, 1061, 1041, 1171, 1171, 1171, 1171, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 874, 296, 296, 296, 296, 296, 296, 296, 296, 1041, 296, 1172, 2601, 876, 1034, 1038, 298, 1035, 1038, 2724, 1062, 296, 296, 296, 296, 296, 2219, 2168, 1039, 1171, 1171, 1171, 1171, 1040, 2397, 1143, 1150, 1150, 1150, 1150, 2220, 1056, 2410, 1057, 1058, 1041, 1890, 1059, 296, 1890, 296, 296, 1285, 2168, 1172, 1060, 1073, 1292, 1074, 1075, 1061, 1131, 1076, 1152, 1955, 1628, 2727, 1077, 1628, 1041, 1545, 1548, 1545, 1545, 2387, 1078, 2406, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 877, 296, 296, 296, 296, 296, 296, 296, 296, 1062, 296, 1285, 1628, 879, 2728, 1628, 1292, 1087, 1087, 1087, 1087, 296, 296, 296, 296, 296, 1087, 1087, 1087, 1087, 1044, 1045, 1046, 1047, 1045, 1088, 1048, 1087, 1087, 1087, 1087, 1049, 1050, 2251, 1088, 2313, 1051, 2335, 296, 1052, 296, 296, 1079, 1080, 2313, 1088, 1073, 1053, 1074, 1075, 2396, 2356, 1076, 1637, 1637, 1637, 1637, 1077, 1554, 2251, 2409, 1150, 1150, 1150, 1150, 1078, 2257, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 877, 296, 296, 296, 296, 296, 296, 296, 296, 1131, 296, 1152, 1554, 879, 1250, 2257, 1081, 1124, 1124, 1124, 1124, 296, 296, 296, 296, 296, 1054, 2589, 1081, 2154, 1044, 1045, 1046, 1047, 1045, 1125, 1048, 1150, 1150, 1150, 1150, 1049, 1050, 2155, 1409, 2729, 1051, 1409, 296, 1052, 296, 296, 1079, 1080, 1158, 2154, 2611, 1053, 1126, 1126, 1126, 1126, 1131, 1410, 1152, 1693, 1081, 1081, 1081, 1081, 2155, 1150, 1150, 1150, 1150, 2258, 1127, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 1131, 296, 1152, 2270, 884, 2258, 1963, 2007, 1153, 1963, 2007, 296, 296, 296, 296, 880, 296, 1054, 2440, 1964, 1320, 1150, 1150, 1150, 1150, 1174, 1174, 1174, 1174, 2270, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 2281, 296, 296, 296, 296, 2282, 1154, 2440, 1131, 2178, 1152, 2018, 1172, 2179, 1176, 2019, 1155, 1131, 2020, 1152, 2730, 1131, 2180, 1152, 1698, 1081, 1081, 1081, 1081, 1998, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 1159, 296, 1156, 1157, 884, 2190, 2731, 1212, 1212, 1212, 1212, 296, 296, 296, 296, 880, 296, 2732, 2191, 1975, 1160, 2192, 1976, 1161, 1212, 1212, 1212, 1212, 1150, 1150, 1150, 1150, 1213, 1150, 1150, 1150, 1150, 1977, 2733, 296, 296, 296, 296, 1231, 1231, 1231, 1231, 2266, 1890, 1213, 2266, 1890, 1891, 1131, 1396, 1152, 2389, 1396, 1131, 2389, 1152, 1232, 1150, 1150, 1150, 1150, 1892, 1397, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 296, 1554, 296, 296, 296, 296, 296, 296, 296, 1131, 296, 1152, 2576, 886, 2194, 1162, 1164, 1212, 1212, 1212, 1212, 296, 296, 296, 887, 1163, 1715, 1716, 1715, 1715, 1150, 1150, 1150, 1150, 1817, 1165, 2734, 1817, 1185, 1185, 1185, 1185, 1213, 1185, 1185, 1185, 1185, 1320, 296, 296, 296, 296, 1818, 1166, 1750, 1131, 1751, 1152, 1167, 2588, 1751, 2735, 1212, 1212, 1212, 1212, 1186, 1715, 1716, 1715, 1715, 1186, 1185, 1185, 1185, 1185, 1554, 296, 296, 296, 297, 296, 298, 299, 296, 296, 296, 1213, 296, 296, 296, 296, 296, 296, 296, 1168, 296, 1187, 2369, 886, 1186, 1554, 1187, 1218, 1218, 1218, 1218, 296, 296, 296, 887, 1188, 2369, 1189, 1323, 1190, 1188, 1323, 1189, 2584, 1190, 1218, 1218, 1218, 1218, 2736, 1975, 1324, 1219, 1976, 1325, 1187, 2737, 2369, 296, 296, 296, 296, 1347, 1348, 1349, 1347, 2369, 2390, 1977, 1188, 1219, 1189, 1287, 1190, 1081, 1350, 2221, 2222, 1351, 2391, 1329, 1703, 1081, 1081, 1081, 1081, 1288, 296, 296, 296, 297, 296, 894, 299, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 296, 296, 296, 296, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 296, 296, 296, 296, 297, 920, 921, 922, 920, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 923, 296, 296, 296, 296, 296, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 296, 296, 296, 296, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, 296, 296, 925, 296, 297, 296, 298, 299, 296, 296, 933, 296, 296, 296, 296, 296, 296, 296, 296, 2006, 296, 2738, 2006, 935, 1218, 1218, 1218, 1218, 1659, 2739, 1081, 296, 296, 296, 296, 296, 1715, 1716, 1715, 1715, 1202, 2061, 1081, 1081, 2740, 2062, 1081, 1081, 2063, 1219, 2741, 1081, 1218, 1218, 1218, 1218, 1081, 2742, 296, 1081, 296, 296, 1265, 1081, 1081, 1554, 1081, 1368, 1369, 1369, 1368, 1519, 1519, 1519, 1519, 2194, 1081, 1219, 1748, 2195, 2743, 1081, 1748, 1081, 2196, 1370, 1520, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 933, 296, 296, 296, 296, 296, 296, 296, 296, 1302, 296, 2592, 1554, 935, 1368, 1319, 1352, 1368, 1319, 1352, 1081, 296, 296, 296, 296, 296, 1081, 1081, 1320, 1267, 2744, 1890, 1370, 1321, 1890, 1925, 1303, 1304, 1356, 1627, 1357, 1358, 1627, 2745, 1359, 1296, 1354, 1360, 296, 1926, 296, 296, 1314, 1361, 2598, 1625, 1362, 1368, 1369, 1369, 1368, 1519, 1519, 1519, 1519, 1728, 1728, 1728, 1728, 1296, 1355, 1809, 1809, 1809, 1809, 1370, 1520, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 296, 296, 296, 296, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 296, 296, 296, 296, 297, 296, 951, 299, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 952, 952, 300, 952, 952, 952, 952, 952, 952, 296, 296, 296, 296, 296, 296, 952, 952, 952, 952, 952, 952, 952, 953, 952, 952, 954, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 296, 296, 296, 296, 952, 952, 952, 952, 952, 952, 952, 953, 952, 952, 954, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 296, 296, 296, 296, 297, 296, 951, 299, 296, 296, 955, 956, 296, 296, 296, 296, 296, 296, 296, 1366, 296, 1554, 1366, 958, 1342, 1343, 1344, 1342, 1554, 2375, 4097, 296, 296, 296, 296, 956, 2390, 1345, 1376, 1376, 1376, 1376, 1321, 1376, 1376, 1376, 1376, 4097, 2408, 1367, 2092, 1226, 2093, 1081, 1328, 2375, 2094, 1081, 296, 959, 296, 296, 1081, 1377, 1124, 1124, 1124, 1124, 1377, 2096, 1081, 4097, 2644, 1367, 1809, 1809, 1809, 1809, 1328, 2593, 2600, 2644, 1125, 1376, 1376, 1376, 1376, 296, 296, 956, 296, 297, 296, 951, 299, 296, 296, 955, 956, 296, 296, 296, 296, 296, 296, 296, 1081, 296, 1377, 2416, 958, 1364, 1373, 1295, 1364, 1373, 1295, 2385, 296, 296, 296, 296, 956, 2416, 1365, 1399, 1399, 1399, 1399, 1321, 1374, 2018, 1748, 2386, 1081, 1081, 1748, 1376, 1376, 1376, 1376, 1354, 1367, 1296, 2746, 296, 959, 296, 296, 1302, 1400, 1748, 1303, 1304, 1356, 1748, 1357, 1358, 1396, 2747, 1363, 1396, 1377, 1360, 1381, 1355, 1367, 1296, 1314, 1361, 2006, 1397, 1362, 2006, 296, 296, 956, 296, 297, 296, 951, 299, 296, 296, 960, 296, 296, 296, 296, 296, 296, 296, 296, 2042, 296, 2748, 2042, 962, 1399, 1399, 1399, 1399, 1733, 2749, 1734, 296, 296, 296, 296, 296, 2644, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1126, 1126, 1126, 1126, 1400, 2644, 2322, 1419, 1420, 1421, 1419, 2323, 1554, 296, 1081, 296, 296, 1400, 1127, 1988, 1422, 1400, 1966, 1989, 1081, 1423, 1522, 1522, 1522, 1522, 1708, 1081, 1081, 1081, 1081, 1523, 1288, 1424, 1081, 1523, 1554, 1967, 296, 296, 296, 296, 297, 296, 951, 299, 296, 296, 960, 296, 296, 296, 296, 296, 296, 296, 296, 1424, 296, 1418, 1554, 962, 1425, 1426, 1427, 1425, 2607, 1554, 2484, 296, 296, 296, 296, 296, 1409, 1428, 2422, 1409, 1325, 2422, 1268, 1718, 1719, 1720, 1719, 1719, 1431, 1432, 2608, 1433, 1434, 1358, 1429, 1410, 1435, 2484, 296, 2444, 296, 296, 1436, 1890, 1437, 1438, 1890, 2423, 1439, 1440, 1522, 1522, 1522, 1522, 1809, 1809, 1809, 1809, 1429, 1523, 2619, 1955, 1601, 1523, 2624, 2444, 2610, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 296, 296, 296, 296, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 296, 296, 296, 296, 297, 296, 298, 299, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 300, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 296, 296, 296, 296, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 296, 296, 296, 1128, 1129, 1129, 1128, 1418, 1888, 1130, 1431, 1432, 1331, 1433, 1434, 1358, 1480, 1889, 1435, 1480, 1466, 1766, 1484, 1466, 1436, 1484, 1437, 1438, 1131, 1267, 1439, 1440, 2475, 1467, 2458, 1365, 1787, 2458, 1081, 1303, 1321, 1356, 1081, 1357, 1358, 1766, 4097, 1081, 1441, 1442, 1360, 1441, 4097, 2430, 1474, 1482, 1483, 1474, 2475, 1362, 1480, 1443, 1132, 1480, 1133, 2431, 2752, 1475, 1134, 1768, 4097, 1135, 1136, 1267, 1137, 1554, 4097, 1138, 1139, 1140, 1141, 1302, 1331, 2754, 1779, 1303, 1780, 1356, 2136, 1357, 1358, 1081, 1506, 1506, 1506, 1506, 1360, 2137, 1081, 1766, 2266, 1482, 1483, 2266, 1798, 1362, 1081, 2514, 1303, 1304, 1305, 1306, 1307, 1308, 2136, 2603, 1309, 1507, 1081, 1310, 1311, 1312, 1313, 2137, 1314, 1315, 1316, 1317, 1318, 1331, 1502, 1502, 1502, 1502, 2514, 2750, 2751, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1810, 1810, 1810, 1810, 1503, 1503, 1503, 1503, 1503, 1503, 1504, 1332, 1333, 1305, 1334, 1335, 1308, 1507, 1811, 1336, 2415, 1507, 1310, 1311, 1312, 1337, 2755, 1338, 1339, 1316, 1317, 1340, 1341, 1506, 1506, 1506, 1506, 1512, 1512, 1512, 1512, 1516, 1516, 1516, 1516, 1529, 1081, 1081, 1513, 1081, 2756, 1888, 1517, 1522, 1522, 1522, 1522, 2757, 1507, 1554, 1889, 2758, 1523, 1514, 1081, 2759, 1523, 1518, 1522, 1522, 1522, 1522, 1633, 1633, 1633, 1633, 1081, 1523, 2476, 2760, 1553, 1523, 1555, 1556, 1553, 1623, 1544, 1545, 1623, 2763, 1515, 1553, 1633, 1633, 1633, 1633, 1557, 1634, 1624, 1554, 1081, 1625, 2597, 1626, 2476, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1723, 1723, 1723, 1723, 1634, 1327, 2764, 1553, 1327, 2007, 1518, 1534, 2007, 1628, 2061, 1535, 1628, 1634, 1554, 1535, 2483, 1634, 1320, 1536, 1534, 1724, 1966, 1553, 1081, 1535, 1556, 1553, 1537, 1538, 1966, 1328, 1081, 1534, 1553, 1539, 1288, 1535, 2609, 1557, 1484, 1535, 2483, 1484, 1288, 1536, 1534, 2765, 1540, 2766, 1541, 1817, 1535, 1365, 1817, 1328, 1537, 1562, 1321, 1715, 1716, 1715, 1715, 1553, 1320, 1723, 1723, 1723, 1723, 1818, 2618, 1563, 1721, 1814, 1814, 1814, 1814, 1722, 2767, 1723, 1723, 1723, 1723, 2768, 1564, 1565, 1566, 1567, 1568, 1569, 1724, 1570, 1571, 2485, 1572, 1573, 1352, 1574, 1575, 1352, 1576, 1577, 1578, 1579, 1724, 1660, 1661, 1660, 1660, 1267, 1564, 1565, 1566, 1567, 1568, 1569, 1554, 1570, 1571, 2485, 1572, 1573, 2464, 1574, 1575, 2464, 1354, 1576, 1577, 1578, 1579, 1580, 1580, 1580, 1580, 1662, 2496, 1661, 1661, 1661, 1661, 1660, 1661, 1660, 1660, 1726, 1723, 1723, 1726, 1766, 1355, 2465, 1580, 2530, 1580, 1580, 1083, 1366, 2585, 1663, 1366, 1769, 2496, 1782, 1782, 1782, 1782, 1663, 2586, 1554, 1724, 1662, 2769, 1766, 1783, 1814, 1814, 1814, 1814, 1580, 2530, 2770, 1581, 1582, 1583, 1584, 1585, 1367, 1784, 1586, 1587, 1663, 1588, 2773, 1589, 1663, 1590, 1768, 1591, 1592, 1593, 1594, 1595, 1596, 1597, 1814, 1814, 1814, 1814, 1598, 1554, 1367, 1553, 2743, 1555, 1556, 1553, 1599, 1599, 1599, 1599, 1599, 1599, 1600, 1793, 2620, 1081, 1766, 1557, 2753, 1081, 1102, 1102, 1102, 1102, 1081, 1081, 1081, 1808, 1081, 1081, 1081, 1081, 1081, 1081, 1087, 1087, 1087, 1087, 1081, 1081, 1081, 1553, 1087, 1087, 1087, 1087, 1081, 1087, 1087, 1087, 1087, 2389, 1088, 2774, 2389, 2621, 1093, 1094, 1094, 1093, 1088, 1124, 1124, 1124, 1124, 1088, 1126, 1126, 1126, 1126, 2538, 1550, 1580, 1580, 1580, 1580, 1830, 1963, 1081, 1125, 1963, 1095, 1081, 1554, 1127, 2771, 2772, 1081, 1081, 1081, 1964, 2775, 1837, 1580, 1081, 1580, 1580, 2538, 1081, 1087, 1087, 1087, 1087, 1081, 1094, 1094, 1094, 1094, 2497, 2776, 1554, 1845, 1845, 1845, 1845, 2777, 1280, 1088, 1081, 2778, 1602, 2780, 1081, 1603, 1604, 1605, 1606, 1607, 1608, 1095, 1609, 1610, 2781, 1611, 2497, 1612, 1095, 1613, 1096, 1614, 1615, 1616, 1617, 1618, 1619, 1597, 1098, 1098, 1098, 1098, 1598, 2782, 2616, 1553, 2229, 1555, 1556, 1553, 1599, 1599, 1599, 1599, 1599, 1599, 1600, 1098, 1098, 1098, 1098, 1557, 1081, 1095, 1081, 1100, 2786, 1081, 1081, 1848, 1848, 1848, 1848, 1106, 1106, 1106, 1106, 1851, 1851, 1851, 1851, 2787, 1095, 2788, 1100, 1553, 2789, 1847, 1853, 1853, 1853, 1853, 1110, 1111, 1111, 1110, 1100, 2790, 1107, 2092, 2550, 2093, 1107, 2791, 2792, 2094, 1620, 1111, 1111, 1111, 1111, 1115, 1115, 1115, 1115, 1550, 1645, 2095, 2096, 2793, 1645, 1645, 2794, 1646, 1645, 1645, 2004, 2550, 1645, 2004, 1645, 1111, 1111, 1111, 1111, 1405, 1117, 1648, 1405, 1648, 1645, 1648, 2005, 2795, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1124, 1124, 1124, 1124, 1855, 1109, 2133, 1129, 1129, 1129, 1129, 1406, 2150, 1645, 1863, 1645, 1645, 1117, 1125, 2158, 2627, 1117, 1113, 1864, 1864, 1864, 1864, 1864, 1126, 1126, 1126, 1126, 1131, 1885, 1885, 1885, 1885, 4097, 1884, 1884, 1884, 1884, 1407, 2845, 1645, 1649, 1127, 2627, 2898, 1649, 1649, 1145, 1650, 1649, 1649, 2500, 2899, 1649, 1887, 1649, 1408, 4097, 1893, 1893, 1893, 1893, 1652, 2503, 1652, 1649, 1652, 2845, 2783, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 2500, 1150, 1150, 1150, 1150, 2901, 1131, 1150, 1150, 1150, 1150, 1323, 2503, 1649, 1323, 1649, 1649, 1131, 2783, 1152, 2504, 1131, 2481, 1152, 1324, 2481, 1131, 1325, 1152, 1265, 1081, 1081, 1131, 1081, 1152, 1150, 1150, 1150, 1150, 1169, 1169, 1169, 1169, 1081, 1649, 1653, 2504, 2904, 1081, 1653, 1653, 2482, 1654, 1653, 1653, 1554, 2507, 1653, 1897, 1653, 1131, 1787, 1152, 1081, 2905, 1895, 1656, 1081, 1656, 1653, 1656, 2796, 1081, 1150, 1150, 1150, 1150, 2906, 1150, 1150, 1150, 1150, 2507, 1898, 1081, 1550, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1653, 2229, 1653, 1653, 1131, 2230, 1152, 2907, 2910, 1131, 2231, 1152, 1150, 1150, 1150, 1150, 1899, 1131, 2521, 1152, 2908, 1131, 1081, 1152, 1171, 1171, 1171, 1171, 2909, 2911, 2912, 1653, 1128, 1129, 1129, 1128, 2913, 1131, 1130, 1152, 1150, 1150, 1150, 1150, 2521, 1150, 1150, 1150, 1150, 1172, 1900, 1901, 1903, 1150, 1150, 1150, 1150, 1131, 2914, 1902, 1150, 1150, 1150, 1150, 1904, 1131, 2007, 1152, 1323, 2007, 1131, 1323, 1152, 1177, 1177, 1177, 1177, 1905, 1131, 1320, 1152, 1324, 1906, 2915, 1325, 1131, 2007, 1152, 2526, 2007, 2813, 1132, 2572, 1133, 2916, 2921, 1554, 1134, 1907, 1320, 1135, 1136, 1909, 1137, 2573, 2574, 1138, 1139, 1140, 1141, 1150, 1150, 1150, 1150, 2526, 2924, 1908, 2813, 1910, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 2527, 1911, 1150, 1150, 1150, 1150, 2925, 2928, 1131, 2225, 1152, 1916, 1916, 1916, 1916, 2266, 1554, 1131, 2266, 1152, 2265, 1131, 2226, 1152, 2929, 2227, 2527, 1131, 2930, 1152, 1918, 1918, 1918, 1918, 1184, 1184, 1184, 1184, 1152, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1921, 1921, 1921, 1921, 2110, 1553, 2917, 1912, 1172, 2212, 1913, 2918, 1553, 2213, 1914, 2725, 2531, 1172, 2725, 1176, 2931, 1172, 2214, 1176, 2926, 2927, 2934, 1176, 1915, 1182, 1182, 1182, 1182, 1184, 1184, 1184, 1184, 1185, 1185, 1185, 1185, 1553, 2531, 2982, 1183, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1927, 1927, 1927, 1927, 1197, 1197, 1197, 1197, 2983, 2985, 2832, 1192, 1186, 2564, 1920, 1192, 1198, 1932, 1932, 1932, 1932, 1202, 2986, 1081, 1081, 2726, 2932, 1081, 1933, 2565, 1554, 2566, 1081, 1203, 1204, 1204, 1203, 2832, 2458, 1936, 1081, 2458, 2933, 1187, 1204, 1204, 1204, 1204, 1937, 1937, 1937, 1937, 1937, 1938, 1939, 1940, 1938, 1188, 1554, 1189, 2536, 1190, 1212, 1212, 1212, 1212, 1943, 1943, 1943, 1943, 1212, 1212, 1212, 1212, 1216, 1216, 1216, 1216, 1218, 1218, 1218, 1218, 1947, 1947, 1947, 1947, 2536, 1213, 2941, 2007, 1553, 1213, 2007, 1556, 1553, 1213, 1218, 1218, 1218, 1218, 2952, 1553, 1320, 1219, 1081, 1081, 1557, 1219, 1222, 1222, 1222, 1222, 1226, 2987, 1081, 1953, 1627, 1554, 1081, 1627, 2992, 1219, 1554, 1081, 1954, 1954, 1954, 1954, 1954, 1624, 1553, 1081, 1625, 1231, 1231, 1231, 1231, 1277, 1277, 1277, 1277, 1289, 1290, 1289, 1289, 1290, 1290, 1290, 1290, 1554, 1945, 1232, 1319, 2844, 1285, 1319, 1344, 1343, 1344, 1344, 1344, 1343, 1344, 1344, 2937, 1320, 1949, 1081, 1323, 2939, 1321, 1323, 1342, 1343, 1344, 1342, 1347, 1348, 1349, 1347, 2844, 1324, 1296, 1554, 1325, 1345, 1268, 1766, 1628, 1350, 1321, 1628, 1351, 1554, 2594, 1081, 1081, 1304, 1968, 1306, 1969, 1970, 1328, 2595, 1971, 1554, 1296, 1972, 1311, 1312, 1313, 1766, 1314, 1315, 1316, 1317, 1973, 2023, 1343, 1344, 2023, 1347, 1348, 1349, 1347, 1364, 1328, 1554, 1364, 1368, 1369, 1369, 1368, 2005, 1350, 1768, 1373, 1351, 1365, 1373, 2942, 2936, 1554, 1321, 2848, 2110, 1553, 1370, 1376, 1376, 1376, 1376, 2537, 1553, 1374, 1354, 2031, 2031, 2031, 2031, 1376, 1376, 1376, 1376, 2993, 1766, 1367, 1382, 1382, 1382, 1382, 2848, 2994, 1377, 1384, 1385, 1384, 1384, 2537, 1355, 2938, 1377, 1553, 1554, 2872, 1377, 2943, 1381, 2995, 1554, 1367, 1389, 1390, 1389, 1389, 1399, 1399, 1399, 1399, 2038, 2038, 2038, 2038, 1399, 1399, 1399, 1399, 1403, 1403, 1403, 1403, 2872, 1419, 1420, 1421, 1419, 1421, 1420, 1421, 1421, 1400, 2876, 1766, 2457, 1400, 1422, 2457, 2944, 1400, 2997, 1423, 1425, 1426, 1427, 1425, 1421, 1420, 1421, 1421, 2104, 2033, 1659, 1424, 1081, 1428, 2946, 1766, 1325, 2876, 1268, 1554, 1431, 1432, 2499, 1433, 1434, 2499, 1554, 2998, 1435, 1081, 1429, 1554, 3001, 3008, 1436, 1424, 1437, 1438, 1081, 1768, 1439, 1440, 2048, 1420, 1421, 2048, 1425, 1426, 1427, 1425, 1554, 2133, 2040, 2501, 1429, 2541, 2501, 2109, 2005, 1428, 2112, 1553, 1325, 1431, 1432, 1081, 1433, 1434, 1553, 1766, 2951, 1435, 1424, 1557, 2945, 2950, 1429, 1436, 1554, 1437, 1438, 2541, 2502, 1439, 1440, 2049, 1420, 1421, 2049, 2069, 2070, 2069, 2069, 2953, 3009, 3010, 1424, 1553, 2050, 3011, 1429, 2072, 2070, 2072, 2072, 1502, 1502, 1502, 1502, 2659, 1506, 1506, 1506, 1506, 2073, 1424, 1510, 1510, 1510, 1510, 2604, 1502, 1502, 1502, 1502, 1521, 1521, 1521, 1521, 1554, 1504, 1502, 1502, 1502, 1502, 1507, 2605, 1554, 2606, 1424, 1503, 1503, 1503, 1503, 1503, 1503, 1504, 2631, 2632, 2637, 2083, 2083, 2083, 2083, 2083, 2083, 1504, 2085, 2085, 2085, 2085, 1506, 1506, 1506, 1506, 1512, 1512, 1512, 1512, 1516, 1516, 1516, 1516, 2631, 2632, 2637, 1513, 2110, 1553, 2954, 1517, 2539, 1507, 2955, 3012, 1553, 1507, 1519, 1519, 1519, 1519, 1514, 1554, 2638, 2540, 1518, 1521, 1521, 1521, 1521, 2712, 1554, 1520, 1522, 1522, 1522, 1522, 2539, 1522, 1522, 1522, 1522, 1523, 1554, 1553, 3014, 1523, 1523, 1515, 2638, 2540, 1523, 3015, 1529, 1081, 1081, 2712, 1081, 1543, 1544, 1545, 1543, 1546, 1547, 1545, 1546, 1545, 1548, 1545, 1545, 2965, 2087, 1081, 1546, 1547, 1545, 1546, 2101, 2102, 1545, 2101, 1518, 2966, 2958, 1081, 1545, 1548, 1545, 1545, 2919, 2103, 2469, 2919, 2104, 2505, 1554, 1597, 2505, 1554, 2132, 2470, 1598, 2132, 2174, 2174, 2174, 2174, 1554, 1081, 2105, 2105, 2105, 2105, 2105, 2105, 2106, 1553, 2469, 1555, 1556, 1553, 2149, 2157, 2506, 2149, 2157, 2470, 1553, 2133, 2779, 3016, 1553, 1557, 1553, 1554, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 2134, 2801, 2135, 2920, 2138, 2956, 2139, 2150, 2158, 2160, 2947, 2140, 2779, 1553, 3017, 2161, 2162, 3018, 2141, 3019, 2151, 2152, 2963, 3020, 3021, 2159, 2134, 2801, 1553, 2135, 2138, 1550, 2139, 3022, 3023, 2160, 2175, 2140, 1637, 1637, 1637, 1637, 2161, 2162, 3024, 2141, 2151, 2152, 2169, 2169, 2169, 2169, 2159, 2144, 2145, 2146, 3025, 1554, 1550, 2116, 2117, 2118, 2119, 2120, 2121, 2802, 2122, 2123, 2147, 2124, 2125, 1554, 2126, 2127, 3028, 2128, 2129, 2130, 2131, 2148, 2176, 2176, 2176, 2176, 2803, 2116, 2117, 2118, 2119, 2120, 2121, 2802, 2122, 2123, 2147, 2124, 2125, 2163, 2126, 2127, 2164, 2957, 2128, 2129, 2130, 2131, 2148, 1830, 2170, 1081, 2803, 2806, 2165, 1081, 2166, 2959, 2820, 2171, 1081, 1081, 1081, 2172, 2508, 2163, 2173, 2508, 2164, 2181, 2181, 2181, 2181, 1554, 2187, 2187, 2187, 2187, 2825, 2806, 1554, 2165, 1554, 2166, 2820, 2176, 2176, 2176, 2176, 3029, 3030, 1554, 2177, 2509, 3051, 2996, 2174, 2174, 2174, 2174, 2510, 3054, 1554, 2510, 2825, 2181, 2181, 2181, 2181, 2169, 2169, 2169, 2169, 1554, 1623, 1544, 1545, 1623, 2187, 2187, 2187, 2187, 1554, 2996, 2706, 2976, 1554, 1624, 2973, 2511, 1625, 2188, 1626, 2948, 2240, 1554, 1554, 2240, 2182, 2189, 2970, 2949, 2209, 1715, 1716, 1715, 1715, 1624, 2183, 1597, 2241, 1554, 2210, 2830, 1598, 2211, 3055, 1553, 2709, 1555, 1556, 1553, 1599, 1599, 1599, 1599, 1599, 1599, 1600, 2204, 2489, 1554, 2208, 1557, 2215, 2223, 2490, 2491, 2205, 2830, 2831, 2835, 2206, 2224, 2216, 2207, 1633, 1633, 1633, 1633, 2242, 2242, 2242, 2242, 3058, 2967, 2489, 1553, 1633, 1633, 1633, 1633, 3059, 2490, 2491, 1645, 2831, 2835, 3060, 1645, 1645, 1634, 1646, 1645, 1645, 1634, 3063, 1645, 3064, 1645, 1837, 2457, 1081, 1634, 2457, 2971, 1081, 1550, 1597, 1645, 3065, 1081, 3066, 1598, 2103, 1554, 1553, 2104, 1555, 1556, 1553, 1599, 1599, 1599, 1599, 1599, 1599, 1600, 1660, 1661, 1660, 1660, 1557, 3067, 1645, 2849, 1645, 1645, 1693, 1081, 1081, 1081, 1081, 3068, 3070, 3071, 1661, 1661, 1661, 1661, 1715, 1716, 1715, 1715, 2244, 1649, 1553, 3073, 1662, 1649, 1649, 2849, 1650, 1649, 1649, 1645, 1653, 1649, 2972, 1649, 1653, 1653, 2860, 1654, 1653, 1653, 1663, 2867, 1653, 1649, 1653, 3075, 1663, 1081, 1081, 2512, 1550, 1645, 2512, 3076, 1653, 1645, 1645, 3026, 1646, 1645, 1645, 3077, 2860, 1645, 1663, 1645, 3027, 2867, 1649, 3078, 1649, 1649, 1648, 3079, 1648, 1645, 1648, 2725, 2513, 1653, 2725, 1653, 1653, 1698, 1081, 1081, 1081, 1081, 1703, 1081, 1081, 1081, 1081, 1708, 1081, 1081, 1081, 1081, 3072, 1649, 1645, 3072, 1645, 1645, 1718, 1719, 1720, 1719, 1719, 2875, 1653, 1715, 1716, 1715, 1715, 1718, 1719, 1720, 1719, 1719, 1715, 1716, 1715, 1715, 1715, 1716, 1715, 1715, 2881, 3080, 2515, 1645, 1649, 2515, 3082, 2875, 1649, 1649, 1554, 1650, 1649, 1649, 2517, 3067, 1649, 2517, 1649, 1723, 1723, 1723, 1723, 3083, 3084, 1652, 2881, 1652, 1649, 1652, 3085, 2516, 2262, 2262, 2262, 2262, 1726, 1723, 1723, 1726, 2882, 2265, 2887, 2518, 1724, 1726, 1723, 1723, 1726, 1728, 1728, 1728, 1728, 1649, 2960, 1649, 1649, 1724, 3086, 2961, 2984, 1724, 1782, 1782, 1782, 1782, 2882, 3087, 2887, 1793, 1724, 1081, 1554, 1783, 3088, 1081, 1809, 1809, 1809, 1809, 1081, 1081, 1081, 3089, 1649, 1653, 2984, 1784, 1081, 1653, 1653, 2279, 1654, 1653, 1653, 3074, 2018, 1653, 3074, 1653, 2280, 2280, 2280, 2280, 2280, 3090, 1656, 2018, 1656, 1653, 1656, 1808, 1081, 1081, 1081, 1081, 2264, 1081, 1814, 1814, 1814, 1814, 1081, 1081, 1081, 1810, 1810, 1810, 1810, 2291, 1081, 2968, 2969, 3091, 1653, 2295, 1653, 1653, 2292, 2292, 2292, 2292, 2292, 1811, 2296, 2296, 2296, 2296, 2296, 2299, 1845, 1845, 1845, 1845, 1098, 1098, 1098, 1098, 2300, 2300, 2300, 2300, 2300, 3092, 3088, 1653, 1102, 1102, 1102, 1102, 1848, 1848, 1848, 1848, 3093, 1095, 3094, 2519, 3095, 1095, 2519, 1100, 1848, 1848, 1848, 1848, 2302, 2302, 2302, 2302, 1851, 1851, 1851, 1851, 3096, 3097, 3101, 1100, 1851, 1851, 1851, 1851, 1853, 1853, 1853, 1853, 2520, 2522, 2423, 1100, 2522, 1107, 3102, 3103, 3104, 1107, 2304, 2304, 2304, 2304, 2310, 3105, 2061, 1107, 1884, 1884, 1884, 1884, 3106, 2311, 2311, 2311, 2311, 2311, 1847, 3107, 2523, 1145, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1893, 1893, 1893, 1893, 1150, 1150, 1150, 1150, 1169, 1169, 1169, 1169, 1150, 1150, 1150, 1150, 2061, 1887, 3108, 2919, 3081, 1887, 2919, 3081, 1109, 1131, 3109, 2525, 3103, 1131, 2525, 1152, 1150, 1150, 1150, 1150, 1554, 1131, 3110, 1152, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 2150, 1131, 3111, 1152, 1150, 1150, 1150, 1150, 3112, 1131, 3113, 1152, 3114, 1131, 3116, 1152, 3117, 1131, 3118, 1152, 2962, 1131, 3115, 1152, 1150, 1150, 1150, 1150, 1895, 1131, 2336, 1152, 3120, 3121, 1150, 1150, 1150, 1150, 3122, 1150, 1150, 1150, 1150, 3098, 2337, 2338, 3098, 2240, 3115, 1131, 2240, 1152, 1150, 1150, 1150, 1150, 3123, 2340, 2339, 1131, 1624, 1152, 3124, 1625, 1131, 2341, 1152, 1150, 1150, 1150, 1150, 2833, 2342, 1150, 1150, 1150, 1150, 1131, 3125, 1152, 1150, 1150, 1150, 1150, 2834, 2343, 3119, 3126, 1150, 1150, 1150, 1150, 1131, 3127, 1152, 3128, 2528, 2833, 1131, 2528, 1152, 1150, 1150, 1150, 1150, 1131, 2532, 1152, 3129, 2532, 2834, 2344, 3119, 1131, 2345, 1152, 2465, 1554, 2467, 2346, 1150, 1150, 1150, 1150, 2535, 2529, 1131, 2535, 1152, 2482, 1150, 1150, 1150, 1150, 3133, 2533, 2347, 3132, 1150, 1150, 1150, 1150, 2487, 3099, 2502, 1131, 3099, 1152, 2348, 1916, 1916, 1916, 1916, 2158, 3100, 1131, 2349, 1152, 2974, 2350, 3133, 3131, 2351, 1131, 3132, 1152, 1916, 1916, 1916, 1916, 1918, 1918, 1918, 1918, 2975, 3144, 1152, 1174, 1174, 1174, 1174, 1177, 1177, 1177, 1177, 1921, 1921, 1921, 1921, 3131, 2352, 2506, 2509, 1152, 2542, 1172, 3151, 2542, 2511, 2353, 2513, 3144, 1172, 3154, 1176, 1921, 1921, 1921, 1921, 2516, 2518, 2520, 1176, 2354, 1927, 1927, 1927, 1927, 1932, 1932, 1932, 1932, 3151, 2543, 2362, 1938, 1939, 1940, 1938, 1933, 3154, 2523, 1176, 2363, 2363, 2363, 2363, 2363, 1940, 1939, 1940, 1940, 1943, 1943, 1943, 1943, 1212, 1212, 1212, 1212, 1216, 1216, 1216, 1216, 1920, 1947, 1947, 1947, 1947, 1218, 1218, 1218, 1218, 1222, 1222, 1222, 1222, 1213, 3159, 3160, 3165, 1213, 2031, 2031, 2031, 2031, 2366, 2529, 2533, 2543, 1219, 2545, 2547, 2549, 1219, 2367, 2367, 2367, 2367, 2367, 2023, 1343, 1344, 2023, 3159, 3160, 3165, 1377, 1376, 1376, 1376, 1376, 1382, 1382, 1382, 1382, 2005, 2038, 2038, 2038, 2038, 1399, 1399, 1399, 1399, 1403, 1403, 1403, 1403, 2048, 1420, 1421, 2048, 1377, 3204, 1381, 1945, 2049, 1420, 1421, 2049, 2544, 1400, 3178, 2544, 2005, 1400, 3205, 3206, 1949, 2050, 2049, 1420, 1421, 2049, 1425, 1426, 1427, 1425, 1424, 2069, 2070, 2069, 2069, 2050, 3211, 2033, 1424, 1428, 3178, 2545, 1325, 2069, 2070, 2069, 2069, 3189, 2445, 2445, 2445, 2445, 1424, 3192, 1424, 3212, 1429, 1510, 1510, 1510, 1510, 3213, 1424, 1502, 1502, 1502, 1502, 3214, 2085, 2085, 2085, 2085, 2040, 1504, 3189, 3215, 1424, 3216, 2546, 3192, 1429, 2546, 2083, 2083, 2083, 2083, 2083, 2083, 1504, 1502, 1502, 1502, 1502, 1507, 1506, 1506, 1506, 1506, 2169, 2169, 2169, 2169, 2101, 2102, 1545, 2101, 3217, 2547, 2083, 2083, 2083, 2083, 2083, 2083, 1504, 2103, 3218, 3219, 2104, 1507, 2101, 2102, 1545, 2101, 1597, 2548, 3220, 2466, 2548, 1598, 2466, 3221, 2240, 2103, 3224, 2240, 2104, 2105, 2105, 2105, 2105, 2105, 2105, 2106, 1597, 1624, 3227, 2486, 1625, 1598, 2486, 3228, 2087, 3229, 2549, 3195, 2467, 2105, 2105, 2105, 2105, 2105, 2105, 2106, 2109, 3196, 2109, 2112, 1553, 2112, 1553, 2468, 2471, 3201, 2472, 1553, 2487, 1553, 3230, 2473, 1557, 3195, 1557, 3231, 2919, 3234, 2474, 2919, 2477, 2478, 2479, 3196, 2716, 2488, 3235, 2716, 3238, 2468, 2471, 3201, 2472, 3239, 1550, 2480, 1553, 2473, 1553, 2174, 2174, 2174, 2174, 3236, 1554, 2474, 2176, 2176, 2176, 2176, 1554, 3237, 2488, 2717, 1550, 1597, 2181, 2181, 2181, 2181, 1598, 2480, 1554, 1553, 1554, 1553, 1554, 1553, 2461, 2461, 2461, 2461, 2461, 2461, 1600, 2492, 3255, 1554, 2493, 2187, 2187, 2187, 2187, 2575, 2575, 2575, 2575, 1554, 1554, 3286, 2494, 2762, 2495, 1554, 2762, 2612, 3241, 3287, 2613, 3290, 3291, 2492, 2798, 1553, 2493, 2798, 3250, 2614, 2615, 2575, 2575, 2575, 2575, 1637, 1637, 1637, 1637, 2494, 1554, 2495, 2423, 3248, 2242, 2242, 2242, 2242, 1554, 1633, 1633, 1633, 1633, 2465, 3257, 1550, 1553, 3243, 1553, 1554, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 3242, 1634, 2262, 2262, 2262, 2262, 1634, 1726, 1723, 1723, 1726, 1728, 1728, 1728, 1728, 2304, 2304, 2304, 2304, 1554, 2302, 2302, 2302, 2302, 2642, 3244, 1554, 1724, 1553, 2647, 1554, 3292, 1724, 2643, 2643, 2643, 2643, 2643, 2648, 2648, 2648, 2648, 2648, 2650, 2583, 1107, 1554, 3298, 2681, 2681, 2681, 2681, 2651, 2651, 2651, 2651, 2651, 1554, 1550, 1597, 2244, 1145, 1554, 3259, 1598, 1554, 1554, 1553, 1554, 1555, 1556, 1553, 1599, 1599, 1599, 1599, 1599, 1599, 2622, 2653, 3254, 1554, 3249, 1557, 2659, 1554, 2264, 1554, 2654, 2654, 2654, 2654, 2654, 2660, 2660, 2660, 2660, 2660, 1150, 1150, 1150, 1150, 3261, 2800, 1109, 3251, 2800, 1553, 2683, 2683, 2683, 2683, 3269, 3253, 1150, 1150, 1150, 1150, 2706, 2445, 2445, 2445, 2445, 1131, 3256, 1152, 3267, 2707, 2707, 2707, 2707, 2707, 2467, 1131, 3252, 1152, 3299, 1550, 1597, 1131, 3258, 1152, 2804, 1598, 1504, 2804, 1553, 3263, 1555, 1556, 1553, 1599, 1599, 1599, 1599, 1599, 1599, 1600, 1150, 1150, 1150, 1150, 1557, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 2805, 2682, 3300, 1150, 1150, 1150, 1150, 1554, 1150, 1150, 1150, 1150, 1131, 1554, 1152, 1553, 2684, 1131, 3301, 1152, 1554, 1131, 1554, 1152, 1150, 1150, 1150, 1150, 1131, 2999, 1152, 3002, 2623, 1131, 3004, 1152, 1554, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1550, 1554, 2807, 1554, 1131, 2807, 1152, 1150, 1150, 1150, 1150, 2900, 2900, 2900, 2900, 2685, 2686, 1131, 3262, 1152, 1554, 1131, 3268, 1152, 2687, 2688, 3264, 1150, 1150, 1150, 1150, 2808, 1131, 3270, 1152, 3006, 2690, 2689, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 3260, 3272, 1131, 2691, 1152, 1150, 1150, 1150, 1150, 1554, 3271, 2692, 3274, 1131, 2693, 1152, 3304, 1131, 3305, 1152, 3306, 1131, 3308, 1152, 1150, 1150, 1150, 1150, 2709, 1554, 1131, 3309, 1152, 1150, 1150, 1150, 1150, 2710, 2710, 2710, 2710, 2710, 2694, 2809, 1554, 3310, 2809, 2695, 3311, 1131, 2811, 1152, 3312, 2811, 3313, 3314, 2697, 3278, 1131, 2696, 1152, 1502, 1502, 1502, 1502, 2698, 2814, 2816, 2818, 2814, 2816, 2818, 2810, 2822, 2699, 2823, 2822, 3279, 2823, 2812, 2784, 2784, 2784, 2784, 2784, 2784, 1504, 2700, 2826, 3315, 2829, 2826, 3316, 2829, 3275, 2815, 2817, 2819, 3013, 3013, 3013, 3013, 2482, 2836, 2824, 2838, 2836, 3317, 2838, 2701, 1597, 2840, 3318, 2842, 2840, 1598, 2842, 2827, 1553, 2487, 1553, 1554, 1553, 2461, 2461, 2461, 2461, 2461, 2461, 1600, 2499, 1554, 2837, 2499, 2839, 2847, 2851, 3319, 2847, 2851, 2841, 2852, 2843, 2855, 2852, 2857, 2855, 2859, 2857, 2862, 2859, 2864, 2862, 2866, 2864, 3320, 2866, 2869, 1553, 2133, 2869, 3321, 3323, 2525, 2502, 2506, 2525, 3324, 3345, 3346, 2853, 3276, 2509, 3349, 2511, 3350, 2513, 3351, 2516, 3277, 2518, 2870, 2520, 2717, 2870, 3353, 2523, 2874, 1550, 1597, 2874, 3354, 2150, 2878, 1598, 2535, 2878, 1553, 2535, 1553, 1554, 1553, 2461, 2461, 2461, 2461, 2461, 2461, 1600, 2879, 2871, 2883, 2879, 3355, 2883, 2885, 2529, 2889, 2885, 3357, 2889, 3358, 2533, 2891, 2158, 2893, 2891, 2895, 2893, 2896, 2895, 3359, 2896, 2902, 2902, 2902, 2902, 1553, 2880, 3356, 2884, 3360, 3356, 3363, 2886, 3364, 2543, 2922, 2922, 2922, 2922, 3365, 2545, 3366, 2547, 3367, 2549, 3368, 2897, 2900, 2900, 2900, 2900, 2988, 2988, 2988, 2988, 1550, 2902, 2902, 2902, 2902, 2922, 2922, 2922, 2922, 1554, 2977, 2990, 2990, 2990, 2990, 3369, 3072, 3074, 1554, 3072, 3074, 2979, 1554, 3371, 2989, 2681, 2681, 2681, 2681, 2980, 3056, 2018, 2999, 3056, 2977, 3373, 3375, 3002, 1145, 2991, 2903, 3000, 3000, 3000, 3000, 3000, 3003, 3003, 3003, 3003, 3003, 2018, 3376, 3081, 2923, 1597, 3081, 3361, 1553, 3057, 1598, 3377, 3378, 1553, 3362, 1553, 1554, 1553, 2461, 2461, 2461, 2461, 2461, 2461, 1600, 2940, 3379, 3380, 3381, 2964, 3004, 3031, 3031, 3031, 3031, 3006, 2061, 3383, 2977, 3005, 3005, 3005, 3005, 3005, 3007, 3007, 3007, 3007, 3007, 2683, 2683, 2683, 2683, 1553, 3370, 3384, 1131, 3370, 1152, 3385, 1150, 1150, 1150, 1150, 3361, 3386, 1150, 1150, 1150, 1150, 2935, 3374, 3372, 3387, 1131, 3372, 1152, 2061, 3388, 1150, 1150, 1150, 1150, 1550, 1597, 1131, 3389, 1152, 3362, 1598, 3390, 1131, 1553, 1152, 1555, 1556, 1553, 1599, 1599, 1599, 1599, 1599, 1599, 2622, 1131, 3391, 1152, 3392, 1557, 3393, 1150, 1150, 1150, 1150, 3395, 3396, 3397, 1150, 1150, 1150, 1150, 3398, 1150, 1150, 1150, 1150, 3399, 3062, 2762, 3032, 3062, 2762, 1553, 3098, 3400, 1131, 3098, 1152, 3401, 2805, 3034, 3033, 1131, 3099, 1152, 2808, 3099, 1131, 2810, 1152, 3050, 3050, 3050, 3050, 3100, 2812, 2717, 2423, 3052, 3052, 3052, 3052, 1550, 1597, 1150, 1150, 1150, 1150, 1598, 3053, 2815, 1553, 3035, 1555, 1556, 1553, 1599, 1599, 1599, 1599, 1599, 1599, 1600, 3036, 3394, 2817, 2819, 1557, 3037, 1131, 2824, 1152, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 2827, 2798, 3394, 1553, 2798, 2800, 2981, 2837, 2800, 1131, 2839, 1152, 2841, 1131, 2843, 1152, 2853, 1131, 3405, 1152, 3414, 1131, 2871, 1152, 1150, 1150, 1150, 1150, 3417, 3135, 2465, 3038, 3135, 1550, 2467, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 3039, 3405, 3136, 3414, 3040, 3136, 1131, 2880, 1152, 2884, 2886, 3417, 3042, 2897, 3445, 2805, 3041, 1131, 3446, 1152, 3418, 1131, 3447, 1152, 3448, 1150, 1150, 1150, 1150, 3423, 3449, 3137, 3428, 3047, 3047, 3047, 3047, 3048, 3048, 3048, 3048, 1150, 1150, 1150, 1150, 3139, 3418, 3439, 3139, 3044, 1131, 3141, 1152, 3442, 3141, 3423, 3043, 3045, 1131, 3428, 1152, 3450, 1131, 3451, 1152, 3452, 1131, 3453, 1152, 1502, 1502, 1502, 1502, 3439, 2808, 2902, 2902, 2902, 2902, 3442, 2810, 3455, 3046, 1502, 1502, 1502, 1502, 3456, 2784, 2784, 2784, 2784, 2784, 2784, 1504, 3457, 1597, 3143, 3049, 3458, 3143, 1598, 2784, 2784, 2784, 2784, 2784, 2784, 1504, 2105, 2105, 2105, 2105, 2105, 2105, 2106, 3146, 3148, 3150, 3146, 3148, 3150, 2822, 3460, 3153, 2822, 2812, 3153, 3156, 2829, 3157, 3156, 2829, 3157, 3161, 3163, 3167, 3161, 3163, 3167, 3169, 3171, 3461, 3169, 3171, 2815, 2817, 2819, 3462, 3173, 3463, 2482, 3173, 2824, 3464, 3465, 3469, 2827, 2487, 3158, 3470, 3130, 3471, 3162, 3164, 2837, 3472, 1554, 3174, 2839, 2841, 3174, 3176, 2847, 1550, 3176, 2847, 3179, 2843, 2851, 3179, 3182, 2851, 2855, 3182, 2857, 2855, 2859, 2857, 3183, 2859, 2862, 3183, 2864, 2862, 2866, 2864, 3175, 2866, 1554, 3185, 3177, 2502, 3185, 2869, 1554, 3180, 2869, 2506, 1554, 2853, 3481, 2509, 1554, 2511, 1554, 2513, 1554, 3184, 1554, 2516, 1554, 2518, 3188, 2520, 2874, 3188, 3190, 2874, 3186, 3190, 2878, 3194, 2523, 2878, 3194, 3198, 3200, 2889, 3198, 3200, 2889, 2891, 2893, 2895, 2891, 2893, 2895, 3203, 3476, 3454, 3203, 2871, 3454, 2529, 3475, 3191, 3483, 3474, 3515, 2533, 2880, 3484, 3482, 3480, 2884, 2886, 2543, 1554, 3477, 1554, 2545, 2547, 2549, 1554, 3516, 1554, 2897, 3207, 3208, 3209, 3207, 3210, 3210, 3210, 3210, 3222, 3222, 3222, 3222, 3223, 3223, 3223, 3223, 3225, 3225, 3225, 3225, 2922, 2922, 2922, 2922, 3232, 3232, 3232, 3232, 2902, 2902, 2902, 2902, 3207, 3208, 3209, 3207, 3210, 3210, 3210, 3210, 3222, 3222, 3222, 3222, 3485, 1554, 3488, 3288, 3486, 1554, 3288, 1554, 3302, 1554, 3498, 3302, 1554, 1554, 3223, 3223, 3223, 3223, 3225, 3225, 3225, 3225, 2922, 2922, 2922, 2922, 3232, 3232, 3232, 3232, 2977, 1554, 3289, 2977, 3454, 1554, 3303, 3454, 3519, 1554, 1554, 2979, 1554, 1554, 3281, 2978, 3226, 3233, 1597, 3520, 3491, 1554, 2978, 1598, 2977, 1554, 1553, 2977, 1553, 1554, 1553, 2461, 2461, 2461, 2461, 2461, 2461, 1600, 3489, 2988, 2988, 2988, 2988, 3521, 3293, 3293, 3293, 3293, 1553, 3294, 3348, 1553, 3265, 3348, 2990, 2990, 2990, 2990, 3297, 3297, 3297, 3297, 3266, 3273, 3490, 1554, 1553, 2989, 3504, 3295, 3295, 3295, 3295, 3240, 3296, 3522, 3524, 3492, 2977, 3057, 1554, 2977, 2991, 3307, 3307, 3307, 3307, 3013, 3013, 3013, 3013, 3322, 3322, 3322, 3322, 1554, 1550, 3245, 3245, 3245, 3529, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3493, 3245, 1554, 3247, 3031, 3031, 3031, 3031, 3325, 3325, 3325, 3325, 3245, 3245, 3245, 3245, 3245, 3500, 3326, 3326, 3326, 3326, 3327, 3327, 3327, 3327, 3495, 1554, 1554, 1131, 3533, 1152, 3535, 1131, 3536, 1152, 3537, 3062, 3541, 3245, 3062, 3245, 3245, 1131, 3544, 1152, 3496, 1131, 3545, 1152, 1150, 1150, 1150, 1150, 3050, 3050, 3050, 3050, 3546, 3562, 1554, 3343, 3343, 3343, 3343, 3563, 2717, 3057, 3245, 3245, 3245, 2977, 3344, 3564, 1554, 1131, 3502, 1152, 3565, 2978, 3494, 2978, 2979, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 3329, 3329, 3329, 3329, 2977, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 3361, 1554, 1554, 3328, 3566, 1150, 1150, 1150, 1150, 3501, 3567, 3569, 1131, 3403, 1152, 1553, 3403, 1131, 3570, 1152, 1554, 1131, 3499, 1152, 3571, 3333, 3333, 3333, 3333, 3572, 1131, 3283, 1152, 3052, 3052, 3052, 3052, 3382, 3382, 3382, 3382, 3573, 3404, 3574, 3053, 3284, 1597, 3575, 3577, 3330, 3334, 1598, 1152, 3505, 1553, 3506, 1555, 1556, 1553, 1599, 1599, 1599, 1599, 1599, 1599, 1600, 3331, 3578, 1989, 3581, 1557, 3332, 3507, 1150, 1150, 1150, 1150, 3337, 3337, 3337, 3337, 3338, 3338, 3338, 3338, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 3406, 1553, 3579, 3406, 3582, 1131, 3335, 1152, 3583, 1131, 3584, 1152, 2018, 1131, 2018, 1152, 3579, 1131, 3585, 1152, 3586, 1131, 3285, 1152, 1150, 1150, 1150, 1150, 3587, 3407, 3588, 1550, 3047, 3047, 3047, 3047, 3048, 3048, 3048, 3048, 3589, 1150, 1150, 1150, 1150, 3207, 3208, 3209, 3207, 1131, 3590, 1152, 3135, 3409, 3336, 3135, 3409, 1131, 3340, 1152, 1597, 1131, 3591, 1152, 3592, 1598, 1131, 3339, 1152, 3139, 3593, 2061, 3139, 2105, 2105, 2105, 2105, 2105, 2105, 2106, 3141, 2805, 3137, 3141, 3143, 3410, 3568, 3143, 3410, 3568, 3146, 3148, 3341, 3146, 3148, 2061, 3150, 3412, 2808, 3150, 3412, 3153, 3156, 3416, 3153, 3156, 3416, 3420, 3342, 2810, 3420, 3594, 3595, 2812, 3411, 3402, 3596, 3597, 3422, 2815, 2817, 3422, 3598, 3599, 3167, 2819, 3413, 3167, 3600, 3601, 2824, 2827, 3158, 3602, 3169, 3137, 3162, 3169, 1550, 3171, 3173, 3425, 3171, 3173, 3425, 3427, 3430, 3164, 3427, 3430, 3606, 3182, 3432, 2837, 3182, 3432, 3434, 3188, 3435, 3434, 3188, 3435, 3438, 2839, 3194, 3438, 3158, 3194, 2841, 2843, 3175, 3162, 3164, 3440, 3177, 3180, 3440, 3606, 3175, 3198, 2853, 3184, 3198, 3177, 3180, 3186, 2871, 3436, 3184, 3200, 3186, 3191, 3200, 2880, 3443, 3203, 3356, 3443, 3203, 3356, 3191, 3630, 3441, 3209, 3208, 3209, 3209, 3631, 2884, 3209, 3208, 3209, 3209, 3222, 3222, 3222, 3222, 3633, 2886, 3459, 3459, 3459, 3459, 3444, 2897, 3225, 3225, 3225, 3225, 3232, 3232, 3232, 3232, 3466, 3466, 3466, 3466, 3468, 3468, 3468, 3468, 3487, 3487, 3487, 3487, 3487, 3487, 3459, 3459, 3459, 3459, 3225, 3225, 3225, 3225, 3497, 3497, 3497, 3497, 3466, 3466, 3466, 3466, 2977, 1554, 3613, 3518, 3576, 1554, 3518, 3576, 3634, 1554, 3635, 3281, 2978, 1554, 3468, 3468, 3468, 3468, 2977, 2978, 3293, 3293, 3293, 3293, 2977, 3294, 3636, 3637, 3613, 3281, 2978, 1554, 3289, 3295, 3295, 3295, 3295, 2978, 3296, 3616, 3525, 3623, 2977, 3525, 3467, 1597, 3638, 3639, 1553, 3302, 1598, 3580, 3302, 1553, 3580, 1553, 1554, 1553, 2461, 2461, 2461, 2461, 2461, 2461, 1600, 3616, 1553, 3623, 3526, 3640, 3503, 3297, 3297, 3297, 3297, 3641, 3642, 3303, 2977, 3523, 3523, 3523, 3523, 3527, 3643, 3646, 3527, 3307, 3307, 3307, 3307, 3370, 3348, 1553, 3370, 3348, 2977, 3647, 3372, 3648, 3528, 3372, 3528, 3528, 3528, 3528, 3528, 3528, 3530, 3530, 3530, 3530, 3473, 3531, 3531, 3531, 3531, 3532, 3532, 3532, 3532, 3057, 3649, 1550, 3245, 3245, 3245, 3650, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3651, 3245, 1554, 3247, 3534, 3534, 3534, 3534, 3542, 3542, 3542, 3542, 3245, 3245, 3245, 3245, 3245, 3678, 3538, 3538, 3538, 3538, 3543, 3543, 3543, 3543, 3322, 3322, 3322, 3322, 3325, 3325, 3325, 3325, 3683, 3547, 3684, 3605, 3289, 3245, 3605, 3245, 3245, 3539, 3658, 3343, 3343, 3343, 3343, 3554, 3554, 3554, 3554, 1554, 1554, 1131, 3344, 1152, 3382, 3382, 3382, 3382, 3326, 3326, 3326, 3326, 3404, 1554, 3245, 3245, 3245, 3245, 3245, 3245, 1149, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 1131, 3245, 1152, 3479, 3246, 3540, 3327, 3327, 3327, 3327, 3653, 3246, 3245, 3245, 3245, 3245, 3245, 3665, 1150, 1150, 1150, 1150, 3329, 3329, 3329, 3329, 3550, 3550, 3550, 3550, 3631, 1131, 1554, 1152, 1150, 1150, 1150, 1150, 3654, 3245, 3246, 3245, 3245, 1131, 1554, 1152, 3685, 1131, 1554, 1152, 1554, 3551, 3686, 1152, 3632, 3632, 3632, 3632, 1554, 1131, 3687, 1152, 3608, 3409, 3454, 3608, 3409, 3454, 3245, 3245, 3245, 3508, 1150, 1150, 1150, 1150, 1598, 3548, 1554, 2978, 3655, 2978, 2979, 2978, 3509, 3509, 3509, 3509, 3509, 3509, 3510, 3407, 3137, 3549, 3659, 2977, 3661, 1131, 3657, 1152, 3552, 3333, 3333, 3333, 3333, 1150, 1150, 1150, 1150, 3556, 3556, 3556, 3556, 3337, 3337, 3337, 3337, 1554, 1554, 1553, 3338, 3338, 3338, 3338, 3688, 3689, 3334, 3660, 1152, 1554, 1131, 3694, 1152, 3553, 3557, 1554, 1152, 1554, 1131, 3695, 1152, 3610, 1554, 1554, 3610, 1131, 3696, 1152, 1554, 3284, 3508, 1150, 1150, 1150, 1150, 1598, 3700, 3667, 2978, 1554, 2978, 2979, 2978, 3509, 3509, 3509, 3509, 3509, 3509, 3510, 3411, 3662, 3555, 3666, 2977, 3540, 1131, 3668, 1152, 3559, 3559, 3559, 3559, 3561, 3561, 3561, 3561, 3669, 3670, 1150, 1150, 1150, 1150, 3671, 3612, 3672, 3416, 3612, 1553, 3416, 3644, 3644, 3644, 3644, 1131, 3701, 1152, 1554, 1131, 3705, 1152, 3673, 3558, 3707, 1131, 3512, 1152, 1597, 3645, 3645, 3645, 3645, 1598, 3413, 3721, 3158, 3722, 3723, 3284, 2977, 2105, 2105, 2105, 2105, 2105, 2105, 2106, 2977, 1554, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 3614, 3560, 3420, 3614, 2977, 3420, 3674, 3422, 3617, 3425, 3422, 3617, 3425, 3427, 3619, 3430, 3427, 3619, 3430, 3432, 3434, 3622, 3432, 3434, 3622, 3438, 1554, 3625, 3438, 3615, 3625, 3162, 3724, 1554, 3725, 3603, 3164, 3618, 3175, 3728, 3729, 3676, 3177, 3620, 3180, 3730, 1550, 3731, 3184, 3186, 3436, 3732, 3626, 3734, 3191, 3626, 3441, 3629, 2977, 1597, 3629, 3735, 3568, 3726, 1598, 3568, 3726, 1553, 3675, 1555, 1556, 1553, 1599, 1599, 1599, 1599, 1599, 1599, 1600, 3677, 2018, 3627, 3727, 1557, 3737, 3727, 3444, 3644, 3644, 3644, 3644, 3466, 3466, 3466, 3466, 3468, 3468, 3468, 3468, 3632, 3632, 3632, 3632, 3656, 3656, 3656, 3656, 1553, 3487, 3487, 3487, 3487, 3487, 3487, 3518, 3741, 1554, 3518, 3525, 3576, 1554, 3525, 3576, 3514, 3663, 3663, 3663, 3663, 3644, 3644, 3644, 3644, 3644, 3644, 3644, 3644, 3742, 1550, 2061, 2977, 3744, 1554, 3746, 3289, 3733, 1554, 3526, 3733, 3747, 1554, 2979, 3645, 3645, 3645, 3645, 3748, 3580, 3736, 2980, 3580, 3736, 3461, 1597, 2977, 3404, 3407, 3740, 1598, 1554, 3740, 1553, 3411, 1553, 1554, 1553, 2461, 2461, 2461, 2461, 2461, 2461, 1600, 3466, 3466, 3466, 3466, 3664, 1553, 3523, 3523, 3523, 3523, 3530, 3530, 3530, 3530, 3413, 3738, 3436, 1554, 3738, 3690, 3745, 3441, 3690, 3745, 3498, 3444, 3739, 3527, 1553, 3764, 3527, 3652, 3766, 3767, 3770, 2977, 3691, 3771, 3691, 3691, 3691, 3691, 3691, 3691, 3528, 3773, 3528, 3528, 3528, 3528, 3528, 3528, 3531, 3531, 3531, 3531, 3774, 3775, 1550, 3245, 3245, 3245, 3776, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3777, 3245, 3692, 3479, 3246, 3692, 3532, 3532, 3532, 3532, 3778, 3246, 3245, 3245, 3245, 3245, 3245, 3779, 1554, 3528, 1554, 3528, 3528, 3528, 3528, 3528, 3528, 3534, 3534, 3534, 3534, 3697, 3697, 3697, 3697, 3538, 3538, 3538, 3538, 3245, 3246, 3245, 3245, 3554, 3554, 3554, 3554, 3804, 1554, 3702, 3702, 3702, 3702, 1554, 3815, 1554, 3698, 1554, 3816, 3819, 3539, 3542, 3542, 3542, 3542, 3820, 3794, 3824, 3245, 3245, 3245, 3245, 3245, 3245, 3703, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3825, 3245, 3826, 3479, 3246, 3543, 3543, 3543, 3543, 1554, 3784, 3246, 3245, 3245, 3245, 3245, 3245, 1554, 3699, 3786, 3787, 3792, 3540, 3704, 3704, 3704, 3704, 3706, 3706, 3706, 3706, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 3245, 3246, 3245, 3245, 3554, 3554, 3554, 3554, 3550, 3550, 3550, 3550, 3710, 3710, 3710, 3710, 3827, 1131, 1554, 1152, 3796, 1131, 3785, 1152, 3720, 3720, 3720, 3720, 3752, 3245, 3245, 3245, 2977, 3551, 1554, 1152, 3761, 1149, 1554, 1554, 2977, 1554, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 3605, 3708, 3752, 3605, 2977, 3709, 1150, 1150, 1150, 1150, 3761, 3828, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 3556, 3556, 3556, 3556, 3714, 3714, 3714, 3714, 3783, 3404, 3699, 1131, 3799, 1152, 3793, 3830, 3839, 1131, 3797, 1152, 1870, 1131, 3840, 1152, 3831, 3557, 1554, 1152, 3842, 1149, 3795, 3750, 3608, 3610, 3750, 3608, 3610, 1554, 3284, 3508, 3715, 3715, 3715, 3715, 1598, 1554, 3712, 2978, 1554, 2978, 2979, 2978, 3509, 3509, 3509, 3509, 3509, 3509, 3510, 3711, 3751, 3407, 3411, 2977, 3776, 1131, 3713, 3716, 3719, 3719, 3719, 3719, 3561, 3561, 3561, 3561, 3798, 3845, 1554, 3559, 3559, 3559, 3559, 3772, 3772, 3772, 3772, 1553, 3801, 3800, 3846, 3612, 3848, 1131, 3612, 1152, 1597, 1131, 3802, 1152, 3692, 1598, 3843, 3692, 1131, 3843, 1152, 2018, 3853, 2105, 2105, 2105, 2105, 2105, 2105, 2106, 3754, 3284, 3508, 3754, 3413, 3755, 3758, 1598, 3755, 3758, 2978, 2061, 2978, 2979, 2978, 3509, 3509, 3509, 3509, 3509, 3509, 3510, 1132, 3744, 3717, 3760, 2977, 3622, 3760, 3615, 3622, 3749, 3854, 3625, 3756, 3618, 3625, 3718, 3763, 1140, 3629, 3763, 3855, 3629, 3780, 3780, 3780, 3780, 3844, 3726, 1553, 3844, 3726, 3856, 3620, 3615, 3436, 3727, 1550, 3618, 3727, 3620, 3441, 3781, 3781, 3781, 3781, 3627, 3627, 3444, 3772, 3772, 3772, 3772, 3710, 3710, 3710, 3710, 3866, 3868, 3284, 3508, 3714, 3714, 3714, 3714, 1598, 1554, 3869, 2977, 3234, 2977, 2977, 2977, 3679, 3679, 3679, 3679, 3679, 3679, 3680, 3780, 3780, 3780, 3780, 2977, 3781, 3781, 3781, 3781, 3690, 3860, 3872, 3690, 3829, 3829, 3829, 3829, 1554, 3821, 3873, 3847, 3821, 1554, 3847, 3849, 3877, 3691, 3849, 3691, 3691, 3691, 3691, 3691, 3691, 3895, 3691, 3860, 3691, 3691, 3691, 3691, 3691, 3691, 3697, 3697, 3697, 3697, 3704, 3704, 3704, 3704, 3805, 3898, 3902, 3702, 3702, 3702, 3702, 3284, 1597, 3706, 3706, 3706, 3706, 1598, 2201, 3903, 1553, 3698, 1555, 1556, 1553, 1599, 1599, 1599, 1599, 1599, 1599, 1600, 3703, 3905, 3909, 3913, 1557, 3832, 3832, 3832, 3832, 3833, 3833, 3833, 3833, 3710, 3710, 3710, 3710, 3916, 1150, 1150, 1150, 1150, 2327, 3835, 3835, 3835, 3835, 1132, 1553, 3717, 1131, 2061, 1152, 3927, 1131, 3928, 1152, 3733, 3699, 3751, 3733, 3756, 3718, 1131, 1140, 1152, 3736, 3682, 3836, 3736, 1152, 3866, 3934, 3935, 1150, 1150, 1150, 1150, 1550, 1597, 3714, 3714, 3714, 3714, 1598, 3740, 3939, 1553, 3740, 1553, 1554, 1553, 2461, 2461, 2461, 2461, 2461, 2461, 1600, 1131, 3941, 1152, 1554, 3715, 3715, 3715, 3715, 1554, 3834, 3719, 3719, 3719, 3719, 3720, 3720, 3720, 3720, 3837, 3841, 3841, 3841, 3841, 3738, 3851, 1554, 3738, 3851, 1553, 1131, 3745, 3716, 1554, 3745, 3739, 1131, 3852, 1152, 3865, 3865, 3865, 3865, 3772, 3772, 3772, 3772, 3945, 1554, 3944, 3782, 3838, 3859, 3754, 3862, 3859, 3754, 3862, 3957, 1550, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3788, 3768, 3788, 3789, 3788, 3751, 3615, 3756, 1554, 3947, 1554, 3788, 3768, 3768, 3768, 3768, 3768, 3758, 3760, 3863, 3758, 3760, 3863, 3871, 3871, 3871, 3871, 3821, 3923, 3763, 3821, 3923, 3763, 3875, 3875, 3875, 3875, 3962, 1597, 3768, 3788, 3768, 3768, 1598, 3966, 3967, 3618, 3620, 3864, 3968, 3943, 2105, 2105, 2105, 2105, 2105, 2105, 2106, 3627, 2110, 1553, 3904, 3904, 3904, 3904, 3969, 3952, 1553, 3768, 3768, 3768, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3790, 3769, 3790, 3791, 3790, 3865, 3865, 3865, 3865, 1553, 1554, 3790, 3769, 3769, 3769, 3769, 3769, 2110, 1553, 3970, 3857, 3844, 1554, 3925, 3844, 1553, 3925, 3847, 3971, 1550, 3847, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 3769, 3790, 3769, 3769, 4097, 4097, 4097, 4097, 3926, 1554, 1554, 3926, 1554, 1554, 3946, 1553, 4097, 4097, 4097, 4097, 3830, 1554, 4097, 4097, 4097, 4097, 3977, 3864, 3961, 3769, 3769, 3769, 3508, 1554, 3982, 3849, 3939, 1598, 3849, 1554, 2978, 2201, 2978, 2979, 2978, 3509, 3509, 3509, 3509, 3509, 3509, 3510, 3879, 3963, 3948, 3953, 2977, 4097, 4097, 4097, 4097, 3907, 3907, 3907, 3907, 3881, 2201, 2110, 1553, 3880, 4097, 4097, 4097, 4097, 1554, 1553, 4097, 4097, 4097, 4097, 1553, 4097, 4097, 4097, 4097, 3983, 1554, 1554, 3871, 3871, 3871, 3871, 3882, 1554, 3908, 3908, 3908, 3908, 1554, 3803, 4097, 4097, 4097, 4097, 1553, 1554, 3910, 3910, 3910, 3910, 3284, 3508, 3829, 3829, 3829, 3829, 1598, 1554, 1554, 2977, 3957, 2977, 2977, 2977, 3679, 3679, 3679, 3679, 3679, 3679, 3680, 3911, 2110, 1553, 3851, 2977, 3986, 3851, 3997, 3274, 1553, 3883, 4097, 4097, 4097, 4097, 3852, 1554, 3884, 4097, 4097, 4097, 4097, 3875, 3875, 3875, 3875, 1554, 3899, 1554, 4097, 4097, 4097, 4097, 3923, 3925, 1554, 3923, 3925, 1553, 1554, 3914, 3914, 3914, 3914, 3887, 3926, 1554, 1554, 3926, 3912, 3841, 3841, 3841, 3841, 3936, 3936, 3936, 3936, 3284, 3508, 3832, 3832, 3832, 3832, 1598, 3976, 3990, 2977, 3976, 2977, 2977, 2977, 3679, 3679, 3679, 3679, 3679, 3679, 3680, 3889, 3999, 3859, 3987, 2977, 3859, 1131, 3930, 1152, 3895, 3930, 3989, 3888, 3833, 3833, 3833, 3833, 3918, 3918, 3918, 3918, 3862, 3933, 3995, 3862, 3933, 3892, 3875, 3875, 3875, 3875, 3751, 3904, 3904, 3904, 3904, 3931, 4000, 1131, 4001, 1152, 4002, 1149, 3915, 3907, 3907, 3907, 3907, 4003, 3937, 3756, 3864, 3908, 3908, 3908, 3908, 3807, 3931, 3284, 3805, 3805, 3805, 3899, 3899, 3805, 3805, 3805, 3806, 3805, 3805, 3805, 3805, 3807, 3805, 3805, 3808, 3997, 3809, 1556, 3808, 3810, 3810, 3810, 3810, 3810, 3810, 3811, 3805, 3805, 3805, 3805, 3812, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3805, 3808, 3805, 3805, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3805, 3805, 3814, 3817, 3817, 3817, 3818, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3817, 3818, 1150, 1150, 1150, 1150, 2110, 1553, 3817, 3817, 3818, 3817, 3817, 3817, 1553, 3835, 3835, 3835, 3835, 4022, 4026, 1150, 1150, 1150, 1150, 3976, 4041, 1131, 3976, 1152, 1150, 1150, 1150, 1150, 1554, 3681, 3817, 3818, 3817, 3817, 3836, 3511, 1152, 1553, 4017, 1597, 1131, 4018, 1152, 1554, 1598, 3918, 3918, 3918, 3918, 1131, 1554, 1152, 2105, 2105, 2105, 2105, 2105, 2105, 2106, 3817, 3817, 3817, 1597, 3918, 3918, 3918, 3918, 1598, 4013, 3899, 1553, 3917, 1553, 1554, 1553, 2461, 2461, 2461, 2461, 2461, 2461, 1600, 3919, 3912, 3914, 3914, 3914, 3914, 3936, 3936, 3936, 3936, 4014, 3910, 3910, 3910, 3910, 4044, 3920, 3980, 4029, 3933, 3980, 3929, 3933, 1554, 1150, 1150, 1150, 1150, 1553, 1150, 1150, 1150, 1150, 3899, 3899, 1550, 3911, 3981, 3981, 3981, 3981, 4040, 3899, 4037, 3878, 3681, 3931, 3998, 3864, 1131, 1554, 1152, 3980, 1554, 1131, 3980, 1152, 4054, 1550, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3885, 3870, 3885, 3886, 3885, 3949, 3931, 1554, 1554, 3915, 3912, 3885, 3870, 3870, 3870, 3870, 3870, 4020, 3974, 3974, 3974, 3974, 3988, 3972, 3973, 3936, 3936, 3936, 3936, 3981, 3981, 3981, 3981, 3936, 3936, 3936, 3936, 4031, 4068, 3870, 3885, 3870, 3870, 3975, 1597, 1152, 1554, 1554, 3899, 1598, 1554, 3992, 4011, 4011, 4011, 4011, 4016, 2105, 2105, 2105, 2105, 2105, 2105, 2106, 4012, 4012, 4012, 4012, 3870, 3870, 3870, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3890, 3876, 3890, 3891, 3890, 3991, 3991, 3991, 3991, 1554, 1554, 3890, 3876, 3876, 3876, 3876, 3876, 4032, 4004, 4004, 4004, 4004, 1554, 4042, 3978, 4006, 4006, 4006, 4006, 1150, 1150, 1150, 1150, 3899, 3681, 1550, 4074, 4077, 3899, 3876, 3890, 3876, 3876, 4005, 4011, 4011, 4011, 4011, 4053, 1554, 4007, 1554, 1152, 4015, 1131, 1554, 1152, 4009, 4009, 4009, 4009, 1554, 3807, 4012, 4012, 4012, 4012, 4047, 3876, 3876, 3876, 3508, 3974, 3974, 3974, 3974, 1598, 3899, 1554, 2978, 1554, 2978, 2979, 2978, 3509, 3509, 3509, 3509, 3509, 3509, 3510, 4009, 4009, 4009, 4009, 2977, 4030, 3975, 4072, 1152, 4024, 4024, 4024, 4024, 4008, 4004, 4004, 4004, 4004, 4006, 4006, 4006, 4006, 4050, 4048, 3681, 1149, 3899, 4079, 1553, 3681, 1554, 3893, 4055, 4067, 4025, 4027, 4027, 4027, 4027, 4005, 4082, 4073, 4084, 4007, 4076, 1152, 4009, 4009, 4009, 4009, 4011, 4011, 4011, 4011, 1150, 1150, 1150, 1150, 3284, 2977, 1149, 4024, 4024, 4024, 4024, 4086, 3899, 2977, 3899, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 1131, 4059, 1152, 4088, 2977, 1554, 4075, 4025, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4045, 4045, 4045, 4045, 4049, 4049, 4049, 4049, 4089, 4056, 4056, 4056, 4056, 4045, 4045, 4045, 4045, 4058, 4058, 4058, 4058, 1554, 3807, 4078, 4091, 4046, 4093, 1152, 3894, 4060, 4060, 4060, 4060, 4028, 4057, 4069, 4095, 4070, 4046, 4096, 1152, 3807, 3284, 3805, 3805, 3805, 1554, 1549, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3895, 3805, 3805, 3805, 2108, 3805, 3765, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3805, 3805, 3805, 3805, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3805, 3805, 3814, 3805, 3805, 3805, 3899, 1554, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3895, 3805, 3805, 3899, 3899, 3899, 1554, 4058, 4058, 4058, 4058, 4061, 4061, 4061, 4061, 3805, 3805, 3805, 3805, 3805, 1105, 4056, 4056, 4056, 4056, 1105, 1181, 3693, 1554, 3899, 3874, 1181, 1149, 4058, 4058, 4058, 4058, 4085, 4085, 4085, 4085, 3899, 3805, 1086, 3805, 3805, 4057, 2285, 3693, 4081, 4087, 1086, 4080, 1146, 1554, 1283, 1086, 1103, 1103, 1103, 1283, 1300, 1416, 1452, 1146, 4083, 1300, 1416, 1452, 4090, 2645, 3805, 3805, 3805, 3805, 3805, 3805, 2641, 1103, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3895, 3805, 3805, 3808, 4094, 1549, 1556, 3808, 1170, 1170, 1170, 1549, 2108, 4092, 3808, 3805, 3805, 3805, 3805, 3812, 1178, 1178, 1178, 1542, 2108, 1217, 1217, 1217, 1542, 1170, 1223, 1223, 1223, 1383, 1383, 1383, 1404, 1404, 1404, 1415, 2641, 1178, 3805, 3808, 3805, 3805, 1217, 1415, 1446, 2640, 1446, 1223, 1415, 1525, 1383, 1446, 1690, 1404, 1525, 1525, 1552, 1690, 1754, 1552, 1775, 1821, 2639, 1754, 1552, 1775, 1821, 3805, 3805, 3805, 3805, 3805, 3805, 2636, 2635, 3805, 3805, 3805, 3806, 3805, 3805, 3805, 3805, 3899, 3805, 3805, 3808, 2634, 3809, 1556, 3808, 3810, 3810, 3810, 3810, 3810, 3810, 3811, 3805, 3805, 3805, 3805, 3812, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3805, 3808, 3805, 3805, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3813, 3805, 3805, 3814, 3805, 3805, 3805, 2633, 2630, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3895, 3805, 3805, 1511, 1511, 1511, 1554, 1638, 1638, 1638, 1729, 1729, 1729, 1086, 3900, 3805, 3805, 3805, 3805, 3805, 3822, 1086, 1762, 1762, 1511, 1762, 1086, 2629, 1638, 2628, 1762, 1729, 1103, 1103, 1103, 1105, 1854, 1854, 1854, 1654, 1105, 3822, 3805, 1650, 3805, 3805, 1170, 1170, 1170, 1178, 1178, 1178, 1646, 1103, 1181, 1946, 1950, 1854, 1283, 1181, 1946, 1950, 1549, 1283, 1300, 2626, 2625, 1170, 1549, 1300, 1178, 3805, 3805, 3805, 3805, 3805, 3805, 2582, 2581, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3895, 3805, 3805, 3805, 2580, 2579, 2113, 3805, 1217, 1217, 1217, 1223, 1223, 1223, 3805, 3805, 3805, 3805, 3805, 3805, 1383, 1383, 1383, 2034, 2578, 2034, 2041, 2577, 2034, 1217, 2571, 2041, 1223, 1404, 1404, 1404, 2570, 2569, 1415, 2568, 2567, 1383, 3805, 3805, 3805, 3805, 1415, 1416, 1446, 1353, 1446, 1415, 1416, 1452, 1404, 1446, 2563, 2562, 1452, 1353, 1511, 1511, 1511, 2088, 1542, 1353, 2561, 2560, 2088, 1542, 1353, 3805, 3805, 3805, 1597, 2089, 1638, 1638, 1638, 1598, 2089, 1511, 1553, 2089, 1553, 1554, 1553, 2461, 2461, 2461, 2461, 2461, 2461, 1600, 1525, 1552, 2559, 1638, 1552, 1525, 1525, 2113, 2113, 1552, 2113, 2245, 1690, 2267, 2558, 2113, 2245, 1690, 1729, 1729, 1729, 1754, 1762, 1762, 2557, 1762, 1754, 1775, 1553, 2267, 1762, 1821, 1775, 2303, 2267, 1946, 1821, 1950, 2303, 1729, 1946, 2034, 1950, 2034, 2041, 2088, 2034, 3942, 2089, 2041, 2088, 2556, 2245, 2089, 2555, 2554, 2089, 2245, 1550, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3950, 3938, 3950, 3951, 3950, 1103, 1103, 1103, 1854, 1854, 1854, 3950, 3938, 3938, 3938, 3938, 3938, 1112, 1112, 1112, 2303, 2553, 1170, 1170, 1170, 2303, 1103, 2552, 2551, 1854, 1178, 1178, 1178, 1217, 1217, 1217, 2463, 2460, 1112, 3938, 3950, 3938, 3938, 1170, 1223, 1223, 1223, 2113, 2113, 2459, 2113, 1178, 2456, 2455, 1217, 2113, 1383, 1383, 1383, 1404, 1404, 1404, 3823, 2454, 2453, 1223, 2452, 3823, 3938, 3938, 3938, 3508, 1511, 1511, 1511, 2451, 1598, 1383, 2450, 2978, 1404, 2978, 2979, 2978, 3509, 3509, 3509, 3509, 3509, 3509, 3510, 2267, 2449, 1511, 2448, 2977, 1638, 1638, 1638, 1729, 1729, 1729, 1762, 1762, 2447, 1762, 1526, 2267, 1762, 1762, 1762, 1762, 2267, 1112, 1112, 1112, 1762, 1638, 3867, 1553, 1729, 1762, 1762, 3693, 1762, 3906, 3823, 3822, 2090, 1762, 3906, 3823, 3867, 3867, 1112, 2443, 3940, 3693, 3867, 3693, 3954, 3822, 2442, 3822, 3693, 2441, 2073, 3867, 3822, 3284, 3508, 3940, 3867, 2439, 3906, 1598, 3940, 2438, 2977, 3906, 2977, 2977, 2977, 3679, 3679, 3679, 3679, 3679, 3679, 3680, 2437, 2436, 2435, 2434, 2977, 2061, 2433, 2432, 2429, 2428, 2427, 2426, 2061, 2425, 2424, 2421, 2420, 2419, 2418, 1393, 1381, 2417, 2390, 2385, 2414, 2413, 2412, 2411, 2018, 2407, 2405, 2018, 2404, 2403, 1998, 2402, 1989, 2401, 2400, 2399, 2398, 2397, 2396, 2395, 2394, 3955, 2393, 2392, 2388, 2387, 2384, 2383, 2382, 2381, 2380, 2379, 2378, 2376, 3284, 3805, 3805, 3805, 2001, 1991, 3805, 3805, 3805, 3806, 3805, 3805, 3805, 3805, 3899, 3805, 3805, 3805, 2374, 3805, 1981, 3805, 3958, 3958, 3958, 3958, 3958, 3958, 3959, 3805, 3805, 3805, 3805, 3805, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3805, 3805, 3805, 3805, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3960, 3805, 3805, 3814, 3805, 3805, 3805, 1285, 1964, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3895, 3805, 3805, 3808, 2372, 3808, 1554, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3805, 3805, 3805, 3805, 3805, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3805, 3808, 3805, 3805, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3965, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3805, 3805, 3814, 3805, 3805, 3805, 2371, 1959, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3895, 3805, 3805, 3805, 1958, 2368, 2113, 3805, 2365, 2365, 2364, 2361, 2361, 2360, 3805, 3805, 3805, 3805, 3805, 3805, 2359, 2358, 2357, 2301, 2355, 2301, 2335, 2332, 2331, 2330, 2329, 2328, 2325, 2324, 2321, 2320, 2317, 2316, 2315, 2314, 2309, 2309, 3805, 3805, 3805, 3805, 2308, 2307, 2306, 2305, 1114, 2301, 2297, 2293, 2289, 2288, 2287, 2286, 2277, 2276, 1777, 1082, 1777, 1777, 2275, 2274, 2273, 2272, 1756, 1756, 1082, 3805, 3805, 3805, 3805, 3805, 3805, 1756, 1756, 3805, 3805, 3805, 3806, 3805, 3805, 3805, 3805, 3807, 3805, 3805, 3808, 1082, 3808, 1554, 3808, 3984, 3984, 3984, 3984, 3984, 3984, 3811, 3805, 3805, 3805, 3805, 3805, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3805, 3808, 3805, 3805, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3985, 3805, 3805, 3814, 3508, 2269, 2268, 1731, 1731, 1598, 1731, 1082, 2978, 1731, 2978, 2979, 2978, 3509, 3509, 3509, 3509, 3509, 3509, 3510, 1731, 1725, 1082, 2261, 2977, 2260, 2259, 2256, 2255, 2254, 2253, 2252, 1668, 1667, 1654, 1650, 1646, 2247, 2246, 1635, 1631, 1631, 2239, 2238, 2237, 2236, 1554, 1554, 1553, 2202, 1550, 2200, 2199, 2198, 2197, 2193, 2184, 2115, 1554, 1554, 2100, 2099, 2098, 2097, 3993, 2095, 2091, 2090, 1526, 1526, 1508, 2082, 2081, 2080, 1490, 1490, 1082, 1490, 3284, 3508, 1490, 2079, 2075, 1477, 1598, 1469, 1469, 2977, 2068, 2977, 2977, 2977, 3679, 3679, 3679, 3679, 3679, 3679, 3680, 2067, 1454, 1454, 1082, 2977, 1454, 1454, 1445, 2066, 1444, 2065, 2064, 2060, 2059, 2056, 2051, 2047, 1976, 1414, 2045, 2044, 2043, 1413, 1411, 1401, 2037, 4097, 1393, 1393, 2036, 2035, 1381, 1379, 2030, 2029, 3994, 1976, 2028, 1312, 2027, 2002, 1997, 1992, 2026, 2025, 1982, 2022, 2017, 2016, 2003, 2000, 1999, 1996, 1995, 1994, 1993, 1990, 1983, 3284, 3805, 3805, 3805, 1980, 1285, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3895, 3805, 3805, 3805, 1285, 3805, 1285, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3805, 3805, 3805, 3805, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 4019, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3805, 3805, 3814, 3805, 3805, 3805, 1285, 1285, 3805, 3805, 3805, 4033, 3805, 3805, 3805, 3805, 3807, 3805, 3805, 4034, 1275, 4034, 2979, 4034, 4035, 4035, 4035, 4035, 4035, 4035, 4036, 3805, 3805, 3805, 3805, 4037, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 3805, 3808, 3805, 3805, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 3805, 3805, 4039, 3805, 3805, 3805, 1962, 1961, 3805, 3805, 3805, 4037, 3805, 3805, 3805, 3805, 3895, 3805, 3805, 4037, 1268, 4037, 2977, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 3805, 3805, 3805, 3805, 4037, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 3805, 3805, 3805, 3805, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 3805, 3805, 4039, 3805, 3805, 3805, 1257, 1257, 3805, 3805, 3805, 4037, 3805, 3805, 3805, 3805, 3895, 3805, 3805, 1082, 1257, 1257, 2979, 1253, 1959, 1243, 1243, 1958, 1951, 1220, 1214, 3805, 3805, 3805, 3805, 4037, 1942, 1934, 1206, 1931, 1930, 1929, 1928, 1196, 1195, 1194, 1193, 1173, 1896, 1883, 1882, 1881, 1880, 1875, 1874, 1869, 1149, 1861, 3805, 3808, 3805, 3805, 1860, 1859, 1856, 1850, 1097, 1091, 1085, 1082, 1839, 1832, 1824, 1082, 1823, 1082, 1820, 1816, 1082, 1815, 1082, 1082, 1799, 1082, 1795, 1082, 1378, 3805, 3805, 4037, 3805, 3805, 3805, 1777, 1777, 3805, 3805, 3805, 4037, 3805, 3805, 3805, 3805, 3895, 3805, 3805, 1774, 1773, 1756, 2979, 1756, 1738, 1731, 1731, 1725, 1082, 1671, 4052, 3805, 3805, 3805, 3805, 4037, 1082, 1671, 1668, 1667, 1666, 1643, 1642, 1639, 1551, 1082, 1635, 1631, 4097, 1621, 1554, 1551, 1550, 1082, 1532, 1526, 1082, 1082, 3805, 3808, 3805, 3805, 1508, 1082, 1490, 1490, 1485, 1082, 1372, 1082, 1372, 1470, 1082, 1460, 1082, 1454, 1454, 1445, 1378, 1082, 1444, 1082, 1268, 1082, 1414, 1082, 1413, 3805, 3805, 4037, 3805, 3805, 3805, 1412, 1411, 3805, 3805, 3805, 1401, 3805, 3805, 3805, 3805, 3895, 3805, 3805, 1398, 1378, 1082, 2977, 1393, 1379, 1378, 1082, 1268, 1082, 1329, 1082, 3805, 3805, 3805, 3805, 1297, 1082, 1285, 1082, 1272, 1271, 1270, 1268, 1257, 1257, 1253, 1243, 1082, 1082, 1239, 1082, 1228, 1220, 1214, 1211, 1208, 1206, 1082, 3805, 3805, 3805, 3805, 1199, 1082, 1196, 1195, 1194, 1193, 1082, 1082, 1173, 1149, 1145, 1123, 1121, 1082, 1114, 1082, 1097, 1082, 1082, 1085, 1082, 4097, 4097, 4097, 4097, 3805, 3805, 3805, 3805, 3805, 4097, 4097, 3805, 3805, 3805, 4033, 3805, 3805, 3805, 3805, 3899, 3805, 3805, 4037, 4097, 4037, 2977, 4037, 4062, 4062, 4062, 4062, 4062, 4062, 4063, 3805, 3805, 3805, 3805, 4037, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 3805, 3805, 3805, 3805, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 3805, 3805, 4039, 3805, 3805, 3805, 4097, 4097, 3805, 3805, 3805, 4037, 3805, 3805, 3805, 3805, 3895, 3805, 3805, 4034, 4097, 4034, 2979, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 3805, 3805, 3805, 3805, 4037, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 3805, 3808, 3805, 3805, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4066, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 4065, 3805, 3805, 4039, 3805, 3805, 3805, 4097, 4097, 3805, 3805, 3805, 4097, 3805, 3805, 3805, 3805, 3895, 3805, 3805, 4097, 4097, 4097, 2977, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4071, 3805, 3805, 3805, 3805, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 3805, 3805, 3805, 3805, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 3805, 3805, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 502, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 524, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 565, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 595, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 650, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 674, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 588, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 888, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 896, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 926, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1099, 1099, 1099, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1099, 1099, 1099, 4097, 4097, 1099, 1108, 1108, 1108, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1108, 4097, 4097, 4097, 1108, 4097, 4097, 4097, 4097, 4097, 1108, 1112, 1112, 1112, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1112, 4097, 4097, 4097, 1112, 1116, 1116, 1116, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1116, 1116, 4097, 4097, 4097, 1116, 1122, 1122, 4097, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1151, 1151, 1151, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1151, 1151, 1151, 4097, 4097, 1151, 1175, 1175, 1175, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1175, 1175, 1175, 4097, 4097, 1175, 1200, 1200, 4097, 4097, 1200, 4097, 1200, 1200, 4097, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 4097, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 4097, 4097, 1200, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1205, 1205, 4097, 4097, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1207, 1207, 4097, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1215, 1215, 1215, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1215, 1215, 4097, 4097, 4097, 1215, 1221, 1221, 1221, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1221, 1221, 4097, 4097, 4097, 1221, 1224, 1224, 4097, 1224, 1224, 4097, 1224, 1224, 4097, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 4097, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 4097, 1224, 4097, 4097, 1224, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1227, 1227, 4097, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1242, 1242, 4097, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1248, 1248, 4097, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 4097, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1263, 4097, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1278, 1278, 4097, 1278, 1278, 4097, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 4097, 1278, 4097, 1278, 1278, 1278, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1284, 1284, 4097, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1291, 1291, 4097, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1353, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1353, 4097, 4097, 4097, 4097, 4097, 1353, 4097, 4097, 4097, 1353, 1353, 4097, 1353, 1380, 1380, 1380, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1380, 1380, 1380, 4097, 4097, 1380, 1386, 1386, 4097, 1386, 1386, 4097, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1387, 4097, 1387, 1387, 1387, 1387, 1387, 4097, 4097, 4097, 1387, 4097, 1387, 1391, 1391, 4097, 1391, 1391, 4097, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1392, 4097, 1392, 1392, 1392, 1392, 1392, 4097, 1392, 4097, 1392, 4097, 1392, 1402, 1402, 1402, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1402, 1402, 4097, 4097, 4097, 1402, 1447, 1447, 4097, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1476, 1476, 4097, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1486, 1486, 4097, 1486, 1486, 4097, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1487, 4097, 1487, 1487, 1487, 1487, 1487, 4097, 4097, 4097, 1487, 4097, 1487, 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, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1496, 1496, 4097, 1496, 1496, 4097, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1497, 4097, 1497, 1497, 1497, 1497, 1497, 4097, 4097, 4097, 1497, 4097, 1497, 1499, 1499, 4097, 1499, 1499, 4097, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1500, 4097, 1500, 1500, 1500, 1500, 1500, 4097, 4097, 4097, 1500, 4097, 1500, 1505, 1505, 1505, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1505, 1505, 4097, 4097, 4097, 1505, 1509, 1509, 1509, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1509, 1509, 4097, 4097, 4097, 1509, 1524, 1524, 1524, 4097, 4097, 4097, 1524, 4097, 4097, 4097, 1524, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1524, 1527, 4097, 4097, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 4097, 1527, 1527, 1527, 1527, 4097, 1527, 1527, 4097, 1527, 1527, 1527, 1527, 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, 1553, 4097, 1553, 1553, 1553, 1553, 1553, 4097, 4097, 4097, 1553, 4097, 1553, 1555, 4097, 1555, 1555, 1555, 1555, 1555, 4097, 4097, 1555, 1555, 4097, 1555, 1560, 4097, 1560, 1560, 1560, 1560, 1560, 4097, 4097, 1560, 1560, 4097, 1560, 1601, 4097, 4097, 1601, 4097, 4097, 1601, 4097, 1601, 1601, 1601, 1601, 1601, 4097, 4097, 1601, 1601, 4097, 1601, 4097, 4097, 4097, 1601, 1630, 1630, 4097, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1632, 1632, 4097, 1632, 1632, 4097, 4097, 4097, 1632, 1636, 1636, 1636, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1636, 1636, 4097, 4097, 4097, 1636, 1647, 4097, 4097, 1647, 4097, 1647, 1647, 1647, 4097, 4097, 1647, 4097, 1647, 1647, 1647, 1647, 1647, 4097, 1647, 1647, 4097, 1647, 4097, 4097, 1647, 1651, 4097, 4097, 1651, 4097, 1651, 1651, 1651, 4097, 4097, 1651, 4097, 1651, 1651, 1651, 1651, 1651, 4097, 1651, 1651, 4097, 1651, 4097, 4097, 1651, 1655, 4097, 4097, 1655, 4097, 1655, 1655, 1655, 4097, 4097, 1655, 4097, 1655, 1655, 1655, 1655, 1655, 4097, 1655, 1655, 4097, 1655, 4097, 4097, 1655, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1669, 4097, 4097, 1669, 1669, 4097, 1669, 4097, 1669, 1669, 1669, 1669, 1669, 4097, 4097, 4097, 1669, 4097, 4097, 4097, 4097, 4097, 1669, 1672, 1672, 4097, 4097, 4097, 4097, 1672, 4097, 1672, 1672, 4097, 4097, 4097, 1672, 1673, 1673, 4097, 1673, 1673, 4097, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1674, 4097, 1674, 1674, 1674, 1674, 1674, 4097, 4097, 4097, 1674, 4097, 1674, 1676, 1676, 4097, 1676, 1676, 4097, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1677, 4097, 1677, 1677, 1677, 1677, 1677, 4097, 4097, 4097, 1677, 4097, 1677, 1681, 4097, 1681, 1681, 1681, 1681, 4097, 4097, 4097, 4097, 1681, 1683, 4097, 4097, 4097, 4097, 4097, 1683, 4097, 1683, 1683, 1683, 1683, 1683, 4097, 4097, 1683, 1683, 4097, 4097, 4097, 4097, 4097, 1683, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 4097, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1691, 4097, 4097, 4097, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1696, 4097, 4097, 4097, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1701, 4097, 4097, 4097, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1706, 4097, 4097, 4097, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1727, 1727, 1727, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1727, 1727, 4097, 4097, 4097, 1727, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 4097, 1730, 1730, 4097, 1730, 1730, 1730, 1730, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1739, 1739, 4097, 1739, 1739, 4097, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1740, 4097, 1740, 1740, 1740, 1740, 1740, 4097, 4097, 4097, 1740, 4097, 1740, 1742, 1742, 4097, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1765, 1765, 4097, 1765, 1765, 4097, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1766, 4097, 4097, 4097, 4097, 4097, 1766, 4097, 1766, 1766, 1766, 1766, 1766, 4097, 4097, 1766, 1766, 4097, 4097, 4097, 4097, 4097, 1766, 1767, 4097, 4097, 4097, 4097, 4097, 1767, 4097, 1767, 1767, 1767, 1767, 1767, 4097, 4097, 1767, 1767, 4097, 1767, 4097, 4097, 4097, 1767, 1768, 4097, 1768, 1768, 1768, 1768, 1768, 4097, 4097, 4097, 1768, 4097, 1768, 1770, 1770, 4097, 1770, 1770, 4097, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1771, 4097, 1771, 1771, 1771, 1771, 1771, 4097, 4097, 4097, 1771, 4097, 1771, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 4097, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1785, 1785, 4097, 1785, 1785, 4097, 1785, 1785, 4097, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 4097, 1785, 1785, 1785, 1785, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1790, 1790, 4097, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1791, 1791, 4097, 1791, 1791, 4097, 1791, 1791, 4097, 4097, 4097, 1791, 1791, 1791, 1791, 1791, 4097, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1794, 1794, 4097, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1796, 1796, 4097, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 4097, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1801, 1801, 4097, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1806, 4097, 4097, 4097, 1806, 4097, 1806, 1806, 4097, 4097, 4097, 1806, 1806, 1806, 1806, 1806, 4097, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 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, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 4097, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1822, 1822, 4097, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1827, 1827, 4097, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1828, 1828, 4097, 1828, 1828, 4097, 1828, 1828, 4097, 4097, 4097, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1831, 1831, 4097, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1835, 1835, 4097, 1835, 1835, 4097, 1835, 1835, 4097, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 4097, 4097, 1835, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1838, 1838, 4097, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1846, 1846, 1846, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1846, 4097, 4097, 4097, 1846, 4097, 4097, 4097, 4097, 4097, 1846, 1099, 1099, 1099, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1099, 1099, 1099, 4097, 4097, 1099, 1849, 1849, 1849, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1849, 4097, 1849, 4097, 4097, 1849, 1108, 1108, 1108, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1108, 4097, 4097, 4097, 1108, 4097, 4097, 4097, 4097, 4097, 1108, 1852, 1852, 1852, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1852, 1852, 4097, 4097, 4097, 1852, 1112, 1112, 1112, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1112, 4097, 4097, 4097, 1112, 1116, 1116, 1116, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1116, 1116, 4097, 4097, 4097, 1116, 1862, 1862, 4097, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1886, 1886, 1886, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1886, 1886, 4097, 4097, 4097, 1886, 1894, 1894, 1894, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1894, 4097, 4097, 4097, 1894, 4097, 4097, 4097, 4097, 4097, 1894, 1151, 1151, 1151, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1151, 1151, 1151, 4097, 4097, 1151, 1917, 1917, 1917, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1917, 4097, 1917, 4097, 4097, 1917, 1919, 1919, 1919, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1919, 4097, 4097, 4097, 1919, 4097, 4097, 4097, 4097, 4097, 1919, 1175, 1175, 1175, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1175, 1175, 1175, 4097, 4097, 1175, 1922, 1922, 1922, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1922, 4097, 1922, 4097, 4097, 1922, 1200, 1200, 4097, 4097, 1200, 4097, 1200, 1200, 4097, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 4097, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 4097, 4097, 1200, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1205, 1205, 4097, 4097, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1935, 1935, 4097, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1941, 1941, 4097, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1944, 1944, 1944, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1944, 4097, 4097, 4097, 1944, 4097, 4097, 4097, 4097, 4097, 1944, 1215, 1215, 1215, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1215, 1215, 4097, 4097, 4097, 1215, 1948, 1948, 1948, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1948, 4097, 4097, 4097, 1948, 4097, 4097, 4097, 4097, 4097, 1948, 1221, 1221, 1221, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1221, 1221, 4097, 4097, 4097, 1221, 1224, 1224, 4097, 1224, 1224, 4097, 1224, 1224, 4097, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 4097, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 4097, 1224, 4097, 4097, 1224, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1952, 1952, 4097, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1248, 1248, 4097, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 4097, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1263, 4097, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1278, 1278, 4097, 1278, 1278, 4097, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 4097, 1278, 4097, 1278, 1278, 1278, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1284, 1284, 4097, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1291, 1291, 4097, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 4097, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 4097, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1353, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1353, 4097, 4097, 4097, 4097, 4097, 1353, 4097, 4097, 4097, 1353, 1353, 4097, 1353, 2032, 2032, 2032, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2032, 4097, 4097, 4097, 2032, 4097, 4097, 4097, 4097, 4097, 2032, 1380, 1380, 1380, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1380, 1380, 1380, 4097, 4097, 1380, 1386, 1386, 4097, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1387, 4097, 1387, 1387, 1387, 1387, 1387, 4097, 4097, 4097, 1387, 4097, 1387, 1391, 1391, 4097, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1392, 4097, 1392, 1392, 1392, 1392, 1392, 4097, 1392, 4097, 1392, 4097, 1392, 2039, 2039, 2039, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2039, 4097, 4097, 4097, 2039, 4097, 4097, 4097, 4097, 4097, 2039, 1402, 1402, 1402, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1402, 1402, 4097, 4097, 4097, 1402, 1447, 1447, 4097, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 4097, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1476, 1476, 4097, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 4097, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 4097, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 1486, 1486, 4097, 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, 1487, 4097, 1487, 1487, 1487, 1487, 1487, 4097, 4097, 4097, 1487, 4097, 1487, 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, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1496, 1496, 4097, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1497, 4097, 1497, 1497, 1497, 1497, 1497, 4097, 4097, 4097, 1497, 4097, 1497, 1499, 1499, 4097, 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, 1500, 4097, 1500, 1500, 1500, 1500, 1500, 4097, 4097, 4097, 1500, 4097, 1500, 1505, 1505, 1505, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1505, 1505, 4097, 4097, 4097, 1505, 2084, 2084, 2084, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2084, 2084, 4097, 4097, 4097, 2084, 2086, 2086, 2086, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2086, 4097, 4097, 4097, 2086, 4097, 4097, 4097, 4097, 4097, 2086, 1509, 1509, 1509, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1509, 1509, 4097, 4097, 4097, 1509, 1524, 1524, 1524, 4097, 4097, 4097, 1524, 4097, 4097, 4097, 1524, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1524, 1527, 4097, 4097, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 4097, 1527, 1527, 1527, 1527, 4097, 1527, 1527, 4097, 1527, 1527, 1527, 1527, 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, 2107, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2107, 2107, 4097, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 2107, 1553, 4097, 1553, 1553, 1553, 1553, 1553, 4097, 4097, 4097, 1553, 4097, 1553, 2109, 4097, 2109, 2109, 2109, 2109, 2109, 4097, 4097, 4097, 2109, 4097, 2109, 1555, 4097, 1555, 1555, 1555, 1555, 1555, 4097, 4097, 1555, 1555, 4097, 1555, 2111, 4097, 2111, 2111, 2111, 2111, 2111, 4097, 4097, 2111, 2111, 4097, 2111, 1560, 4097, 1560, 1560, 1560, 1560, 1560, 4097, 4097, 1560, 1560, 4097, 1560, 2114, 4097, 2114, 2114, 2114, 2114, 2114, 4097, 4097, 4097, 2114, 4097, 2114, 4097, 4097, 4097, 2114, 2201, 4097, 4097, 4097, 4097, 4097, 2201, 4097, 4097, 2201, 2201, 4097, 2201, 4097, 4097, 4097, 4097, 2201, 2201, 2201, 4097, 2201, 1601, 4097, 4097, 1601, 4097, 4097, 1601, 4097, 1601, 1601, 1601, 1601, 1601, 4097, 4097, 1601, 1601, 4097, 1601, 4097, 4097, 4097, 1601, 1630, 1630, 4097, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1632, 1632, 4097, 1632, 1632, 4097, 4097, 4097, 1632, 2243, 2243, 2243, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2243, 4097, 4097, 4097, 2243, 4097, 4097, 4097, 4097, 4097, 2243, 1636, 1636, 1636, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1636, 1636, 4097, 4097, 4097, 1636, 1645, 4097, 4097, 1645, 4097, 1645, 1645, 1645, 4097, 4097, 1645, 4097, 1645, 1645, 1645, 1645, 1645, 4097, 1645, 1645, 4097, 1645, 4097, 4097, 1645, 1647, 4097, 4097, 1647, 4097, 1647, 1647, 1647, 4097, 4097, 1647, 4097, 1647, 1647, 1647, 1647, 1647, 4097, 1647, 1647, 4097, 1647, 4097, 4097, 1647, 1648, 4097, 4097, 1648, 4097, 1648, 1648, 1648, 4097, 4097, 1648, 4097, 1648, 1648, 1648, 1648, 1648, 4097, 1648, 1648, 4097, 1648, 4097, 4097, 1648, 1649, 4097, 4097, 1649, 4097, 1649, 1649, 1649, 4097, 4097, 1649, 4097, 1649, 1649, 1649, 1649, 1649, 4097, 1649, 1649, 4097, 1649, 4097, 4097, 1649, 1651, 4097, 4097, 1651, 4097, 1651, 1651, 1651, 4097, 4097, 1651, 4097, 1651, 1651, 1651, 1651, 1651, 4097, 1651, 1651, 4097, 1651, 4097, 4097, 1651, 1652, 4097, 4097, 1652, 4097, 1652, 1652, 1652, 4097, 4097, 1652, 4097, 1652, 1652, 1652, 1652, 1652, 4097, 1652, 1652, 4097, 1652, 4097, 4097, 1652, 1653, 4097, 4097, 1653, 4097, 1653, 1653, 1653, 4097, 4097, 1653, 4097, 1653, 1653, 1653, 1653, 1653, 4097, 1653, 1653, 4097, 1653, 4097, 4097, 1653, 1655, 4097, 4097, 1655, 4097, 1655, 1655, 1655, 4097, 4097, 1655, 4097, 1655, 1655, 1655, 1655, 1655, 4097, 1655, 1655, 4097, 1655, 4097, 4097, 1655, 1656, 4097, 4097, 1656, 4097, 1656, 1656, 1656, 4097, 4097, 1656, 4097, 1656, 1656, 1656, 1656, 1656, 4097, 1656, 1656, 4097, 1656, 4097, 4097, 1656, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1669, 4097, 4097, 1669, 1669, 4097, 1669, 4097, 1669, 1669, 1669, 1669, 1669, 4097, 4097, 4097, 1669, 4097, 4097, 4097, 4097, 4097, 1669, 1672, 1672, 4097, 4097, 4097, 4097, 1672, 4097, 1672, 1672, 4097, 4097, 4097, 1672, 1673, 1673, 4097, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1674, 4097, 1674, 1674, 1674, 1674, 1674, 4097, 4097, 4097, 1674, 4097, 1674, 1676, 1676, 4097, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1677, 4097, 1677, 1677, 1677, 1677, 1677, 4097, 4097, 4097, 1677, 4097, 1677, 1681, 4097, 1681, 1681, 1681, 1681, 4097, 4097, 4097, 4097, 1681, 1683, 4097, 4097, 4097, 4097, 4097, 1683, 4097, 1683, 1683, 1683, 1683, 1683, 4097, 4097, 1683, 1683, 4097, 4097, 4097, 4097, 4097, 1683, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 4097, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1691, 4097, 4097, 4097, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1696, 4097, 4097, 4097, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1701, 4097, 4097, 4097, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1706, 4097, 4097, 4097, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 2263, 2263, 2263, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2263, 4097, 4097, 4097, 2263, 4097, 4097, 4097, 4097, 4097, 2263, 1727, 1727, 1727, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1727, 1727, 4097, 4097, 4097, 1727, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 4097, 1730, 1730, 4097, 1730, 1730, 1730, 1730, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1739, 1739, 4097, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1740, 4097, 1740, 1740, 1740, 1740, 1740, 4097, 4097, 4097, 1740, 4097, 1740, 1742, 1742, 4097, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1765, 1765, 4097, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1766, 4097, 4097, 4097, 4097, 4097, 1766, 4097, 1766, 1766, 1766, 1766, 1766, 4097, 4097, 1766, 1766, 4097, 4097, 4097, 4097, 4097, 1766, 1767, 4097, 4097, 4097, 4097, 4097, 1767, 4097, 1767, 1767, 1767, 1767, 1767, 4097, 4097, 1767, 1767, 4097, 1767, 4097, 4097, 4097, 1767, 1768, 4097, 1768, 1768, 1768, 1768, 1768, 4097, 4097, 4097, 1768, 4097, 1768, 1770, 1770, 4097, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1771, 4097, 1771, 1771, 1771, 1771, 1771, 4097, 4097, 4097, 1771, 4097, 1771, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 4097, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1785, 1785, 4097, 1785, 1785, 4097, 1785, 1785, 4097, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 4097, 1785, 1785, 1785, 1785, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1791, 1791, 4097, 1791, 1791, 4097, 1791, 1791, 4097, 4097, 4097, 1791, 1791, 1791, 1791, 1791, 4097, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 2278, 2278, 4097, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 1796, 1796, 4097, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 4097, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1801, 1801, 4097, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1806, 4097, 4097, 4097, 1806, 4097, 1806, 1806, 4097, 4097, 4097, 1806, 1806, 1806, 1806, 1806, 4097, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 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, 2290, 2290, 4097, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 1828, 1828, 4097, 1828, 1828, 4097, 1828, 1828, 4097, 4097, 4097, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 2294, 2294, 4097, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 1835, 1835, 4097, 1835, 1835, 4097, 1835, 1835, 4097, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 4097, 4097, 1835, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 2298, 2298, 4097, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 1846, 1846, 1846, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1846, 4097, 4097, 4097, 1846, 4097, 4097, 4097, 4097, 4097, 1846, 1099, 1099, 1099, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1099, 1099, 1099, 4097, 4097, 1099, 1849, 1849, 1849, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1849, 4097, 1849, 4097, 4097, 1849, 1108, 1108, 1108, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1108, 4097, 4097, 4097, 1108, 4097, 4097, 4097, 4097, 4097, 1108, 1852, 1852, 1852, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1852, 1852, 4097, 4097, 4097, 1852, 1886, 1886, 1886, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1886, 1886, 4097, 4097, 4097, 1886, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 4097, 2333, 2333, 2333, 2333, 4097, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2333, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 4097, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 2334, 1894, 1894, 1894, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1894, 4097, 4097, 4097, 1894, 4097, 4097, 4097, 4097, 4097, 1894, 1151, 1151, 1151, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1151, 1151, 1151, 4097, 4097, 1151, 1917, 1917, 1917, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1917, 4097, 1917, 4097, 4097, 1917, 1919, 1919, 1919, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1919, 4097, 4097, 4097, 1919, 4097, 4097, 4097, 4097, 4097, 1919, 1175, 1175, 1175, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1175, 1175, 1175, 4097, 4097, 1175, 1922, 1922, 1922, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1922, 4097, 1922, 4097, 4097, 1922, 1941, 1941, 4097, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1944, 1944, 1944, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1944, 4097, 4097, 4097, 1944, 4097, 4097, 4097, 4097, 4097, 1944, 1215, 1215, 1215, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1215, 1215, 4097, 4097, 4097, 1215, 1948, 1948, 1948, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1948, 4097, 4097, 4097, 1948, 4097, 4097, 4097, 4097, 4097, 1948, 1221, 1221, 1221, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1221, 1221, 4097, 4097, 4097, 1221, 1263, 4097, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1291, 1291, 4097, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 2032, 2032, 2032, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2032, 4097, 4097, 4097, 2032, 4097, 4097, 4097, 4097, 4097, 2032, 1380, 1380, 1380, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1380, 1380, 1380, 4097, 4097, 1380, 2039, 2039, 2039, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2039, 4097, 4097, 4097, 2039, 4097, 4097, 4097, 4097, 4097, 2039, 1402, 1402, 1402, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1402, 1402, 4097, 4097, 4097, 1402, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 4097, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 2071, 2071, 4097, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 4097, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2446, 2446, 2446, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2446, 4097, 4097, 4097, 2446, 2084, 2084, 2084, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2084, 2084, 4097, 4097, 4097, 2084, 2086, 2086, 2086, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2086, 4097, 4097, 4097, 2086, 4097, 4097, 4097, 4097, 4097, 2086, 1509, 1509, 1509, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1509, 1509, 4097, 4097, 4097, 1509, 2107, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2107, 2107, 4097, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 2107, 2109, 4097, 2109, 2109, 2109, 2109, 2109, 4097, 4097, 4097, 2109, 4097, 2109, 2111, 4097, 2111, 2111, 2111, 2111, 2111, 4097, 4097, 2111, 2111, 4097, 2111, 2462, 4097, 4097, 2462, 4097, 4097, 2462, 4097, 2462, 2462, 2462, 2462, 2462, 4097, 4097, 4097, 2462, 4097, 2462, 4097, 4097, 4097, 2462, 2498, 2498, 4097, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2524, 2524, 4097, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2534, 2534, 4097, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2201, 4097, 4097, 4097, 4097, 4097, 2201, 4097, 4097, 2201, 2201, 4097, 2201, 4097, 4097, 4097, 4097, 2201, 2201, 2201, 4097, 2201, 2114, 4097, 2114, 2114, 2114, 2114, 2114, 4097, 4097, 4097, 2114, 4097, 2114, 4097, 4097, 4097, 2114, 1553, 4097, 1553, 1553, 1553, 1553, 1553, 4097, 4097, 4097, 1553, 4097, 1553, 1601, 4097, 4097, 1601, 4097, 4097, 1601, 4097, 1601, 1601, 1601, 1601, 1601, 4097, 4097, 1601, 1601, 4097, 1601, 4097, 4097, 4097, 1601, 2243, 2243, 2243, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2243, 4097, 4097, 4097, 2243, 4097, 4097, 4097, 4097, 4097, 2243, 1636, 1636, 1636, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1636, 1636, 4097, 4097, 4097, 1636, 1645, 4097, 4097, 1645, 4097, 1645, 1645, 1645, 4097, 4097, 1645, 4097, 1645, 1645, 1645, 1645, 1645, 4097, 1645, 1645, 4097, 1645, 4097, 4097, 1645, 1649, 4097, 4097, 1649, 4097, 1649, 1649, 1649, 4097, 4097, 1649, 4097, 1649, 1649, 1649, 1649, 1649, 4097, 1649, 1649, 4097, 1649, 4097, 4097, 1649, 1653, 4097, 4097, 1653, 4097, 1653, 1653, 1653, 4097, 4097, 1653, 4097, 1653, 1653, 1653, 1653, 1653, 4097, 1653, 1653, 4097, 1653, 4097, 4097, 1653, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 2263, 2263, 2263, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2263, 4097, 4097, 4097, 2263, 4097, 4097, 4097, 4097, 4097, 2263, 1727, 1727, 1727, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1727, 1727, 4097, 4097, 4097, 1727, 1108, 1108, 1108, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1108, 4097, 4097, 4097, 1108, 4097, 4097, 4097, 4097, 4097, 1108, 1146, 1146, 1146, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1146, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1146, 1151, 1151, 1151, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1151, 1151, 1151, 4097, 4097, 1151, 1263, 4097, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 2761, 2761, 4097, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2446, 2446, 2446, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2446, 4097, 4097, 4097, 2446, 2785, 2785, 2785, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2785, 2785, 4097, 4097, 4097, 2785, 2462, 4097, 4097, 2462, 4097, 4097, 2462, 4097, 2462, 2462, 2462, 2462, 2462, 4097, 4097, 4097, 2462, 4097, 2462, 4097, 4097, 4097, 2462, 2797, 2797, 4097, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2799, 2799, 4097, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2821, 2821, 4097, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2828, 2828, 4097, 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, 2498, 2498, 4097, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2846, 2846, 4097, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2850, 2850, 4097, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2854, 2854, 4097, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2856, 2856, 4097, 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, 2858, 2858, 4097, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2861, 2861, 4097, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2863, 2863, 4097, 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, 2865, 2865, 4097, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2868, 2868, 4097, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2524, 2524, 4097, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2873, 2873, 4097, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2877, 2877, 4097, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2534, 2534, 4097, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2888, 2888, 4097, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2890, 2890, 4097, 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, 2892, 2892, 4097, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2894, 2894, 4097, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2462, 4097, 4097, 2462, 4097, 4097, 2462, 4097, 2462, 2462, 2462, 2462, 2462, 4097, 4097, 4097, 2462, 4097, 2462, 4097, 4097, 4097, 2462, 1553, 4097, 1553, 1553, 1553, 1553, 1553, 4097, 4097, 4097, 1553, 4097, 1553, 2978, 4097, 4097, 4097, 4097, 4097, 2978, 4097, 2978, 2978, 2978, 2978, 2978, 4097, 4097, 2978, 2978, 4097, 2978, 4097, 4097, 4097, 2978, 1601, 4097, 4097, 1601, 4097, 4097, 1601, 4097, 1601, 1601, 1601, 1601, 1601, 4097, 4097, 1601, 1601, 4097, 1601, 4097, 4097, 4097, 1601, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 1146, 1146, 1146, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1146, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1146, 1151, 1151, 1151, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1151, 1151, 1151, 4097, 4097, 1151, 1263, 4097, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 3061, 3061, 4097, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 4097, 3069, 3069, 3069, 3069, 4097, 3069, 3069, 3069, 3069, 3069, 3069, 2761, 2761, 4097, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2785, 2785, 2785, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2785, 2785, 4097, 4097, 4097, 2785, 2107, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2107, 2107, 4097, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 2107, 2797, 2797, 4097, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2799, 2799, 4097, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 3134, 3134, 4097, 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, 3138, 3138, 4097, 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, 3138, 3140, 3140, 4097, 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, 3142, 3142, 4097, 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, 3145, 3145, 4097, 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, 3147, 3147, 4097, 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, 3149, 3149, 4097, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 2821, 2821, 4097, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 2821, 3152, 3152, 4097, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3155, 3155, 4097, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 2828, 2828, 4097, 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, 3166, 3166, 4097, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3168, 3168, 4097, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3170, 3170, 4097, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3172, 3172, 4097, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 2846, 2846, 4097, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2846, 2850, 2850, 4097, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 2850, 3181, 3181, 4097, 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, 2854, 2854, 4097, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2854, 2856, 2856, 4097, 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, 2858, 2858, 4097, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2858, 2861, 2861, 4097, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2863, 2863, 4097, 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, 2865, 2865, 4097, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2868, 2868, 4097, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 2868, 3187, 3187, 4097, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 2873, 2873, 4097, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2877, 2877, 4097, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 3193, 3193, 4097, 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, 3197, 3197, 4097, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3199, 3199, 4097, 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, 2888, 2888, 4097, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2890, 2890, 4097, 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, 2892, 2892, 4097, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2894, 2894, 4097, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 2894, 3202, 3202, 4097, 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, 2462, 4097, 4097, 2462, 4097, 4097, 2462, 4097, 2462, 2462, 2462, 2462, 2462, 4097, 4097, 4097, 2462, 4097, 2462, 4097, 4097, 4097, 2462, 1553, 4097, 1553, 1553, 1553, 1553, 1553, 4097, 4097, 4097, 1553, 4097, 1553, 3246, 3246, 4097, 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, 2977, 4097, 4097, 4097, 4097, 4097, 2977, 4097, 2977, 2977, 2977, 2977, 2977, 4097, 4097, 2977, 2977, 4097, 4097, 4097, 4097, 4097, 2977, 2978, 4097, 4097, 4097, 4097, 4097, 2978, 4097, 2978, 2978, 2978, 2978, 2978, 4097, 4097, 2978, 2978, 4097, 2978, 4097, 4097, 4097, 2978, 3280, 4097, 4097, 4097, 4097, 4097, 3280, 4097, 3280, 3280, 3280, 3280, 3280, 4097, 4097, 3280, 3280, 4097, 3280, 4097, 4097, 4097, 3280, 3282, 4097, 4097, 4097, 4097, 4097, 3282, 4097, 3282, 3282, 3282, 3282, 3282, 4097, 4097, 3282, 3282, 4097, 3282, 4097, 4097, 4097, 3282, 1601, 4097, 4097, 1601, 4097, 4097, 1601, 4097, 1601, 1601, 1601, 1601, 1601, 4097, 4097, 1601, 1601, 4097, 1601, 4097, 4097, 4097, 1601, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 1151, 1151, 1151, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1151, 1151, 1151, 4097, 4097, 1151, 3347, 3347, 4097, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 1263, 4097, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 3061, 3061, 4097, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3352, 3352, 3352, 3352, 3352, 3352, 3352, 3352, 3352, 3352, 3352, 3352, 3352, 3352, 3352, 3352, 3352, 4097, 3352, 3352, 3352, 3352, 4097, 3352, 3352, 3352, 3352, 3352, 3352, 2107, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2107, 2107, 4097, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 2107, 3134, 3134, 4097, 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, 3408, 3408, 4097, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3138, 3138, 4097, 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, 3138, 3140, 3140, 4097, 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, 3142, 3142, 4097, 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, 3145, 3145, 4097, 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, 3147, 3147, 4097, 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, 3149, 3149, 4097, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3152, 3152, 4097, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3155, 3155, 4097, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3415, 3415, 4097, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3419, 3419, 4097, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3421, 3421, 4097, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3166, 3166, 4097, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3168, 3168, 4097, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3170, 3170, 4097, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3172, 3172, 4097, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3172, 3424, 3424, 4097, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3426, 3426, 4097, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3429, 3429, 4097, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3181, 3181, 4097, 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, 3431, 3431, 4097, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3433, 3433, 4097, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3187, 3187, 4097, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3437, 3437, 4097, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3193, 3193, 4097, 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, 3197, 3197, 4097, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3199, 3199, 4097, 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, 3202, 3202, 4097, 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, 2462, 4097, 4097, 2462, 4097, 4097, 2462, 4097, 2462, 2462, 2462, 2462, 2462, 4097, 4097, 4097, 2462, 4097, 2462, 4097, 4097, 4097, 2462, 1553, 4097, 1553, 1553, 1553, 1553, 1553, 4097, 4097, 4097, 1553, 4097, 1553, 3245, 3245, 4097, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3245, 3246, 3246, 4097, 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, 3478, 3478, 4097, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3280, 4097, 4097, 4097, 4097, 4097, 3280, 4097, 3280, 3280, 3280, 3280, 3280, 4097, 4097, 3280, 3280, 4097, 3280, 4097, 4097, 4097, 3280, 3511, 4097, 4097, 3511, 4097, 4097, 3511, 4097, 3511, 3511, 3511, 3511, 3511, 4097, 4097, 3511, 3511, 4097, 3511, 4097, 4097, 4097, 3511, 3513, 4097, 4097, 4097, 4097, 4097, 3513, 4097, 3513, 3513, 3513, 3513, 3513, 4097, 4097, 3513, 3513, 4097, 4097, 4097, 4097, 4097, 3513, 1601, 4097, 4097, 1601, 4097, 4097, 1601, 4097, 1601, 1601, 1601, 1601, 1601, 4097, 4097, 1601, 1601, 4097, 1601, 4097, 4097, 4097, 1601, 3517, 3517, 4097, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 1151, 1151, 1151, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1151, 1151, 1151, 4097, 4097, 1151, 3347, 3347, 4097, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 3347, 1263, 4097, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 2107, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2107, 2107, 4097, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 2107, 3604, 3604, 4097, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3607, 3607, 4097, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3408, 3408, 4097, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3609, 3609, 4097, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3611, 3611, 4097, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3415, 3415, 4097, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3419, 3419, 4097, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3421, 3421, 4097, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3424, 3424, 4097, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3426, 3426, 4097, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3426, 3429, 3429, 4097, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3429, 3431, 3431, 4097, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3431, 3433, 3433, 4097, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3433, 3621, 3621, 4097, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3437, 3437, 4097, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3437, 3624, 3624, 4097, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3628, 3628, 4097, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 2462, 4097, 4097, 2462, 4097, 4097, 2462, 4097, 2462, 2462, 2462, 2462, 2462, 4097, 4097, 4097, 2462, 4097, 2462, 4097, 4097, 4097, 2462, 1553, 4097, 1553, 1553, 1553, 1553, 1553, 4097, 4097, 4097, 1553, 4097, 1553, 3478, 3478, 4097, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3513, 4097, 4097, 4097, 4097, 4097, 3513, 4097, 3513, 3513, 3513, 3513, 3513, 4097, 4097, 3513, 3513, 4097, 4097, 4097, 4097, 4097, 3513, 3511, 4097, 4097, 3511, 4097, 4097, 3511, 4097, 3511, 3511, 3511, 3511, 3511, 4097, 4097, 3511, 3511, 4097, 3511, 4097, 4097, 4097, 3511, 2978, 4097, 4097, 4097, 4097, 4097, 2978, 4097, 2978, 2978, 2978, 2978, 2978, 4097, 4097, 2978, 2978, 4097, 2978, 4097, 4097, 4097, 2978, 3681, 4097, 4097, 3681, 4097, 4097, 3681, 4097, 3681, 3681, 3681, 3681, 3681, 4097, 4097, 3681, 3681, 4097, 4097, 4097, 4097, 4097, 3681, 1601, 4097, 4097, 1601, 4097, 4097, 1601, 4097, 1601, 1601, 1601, 1601, 1601, 4097, 4097, 1601, 1601, 4097, 1601, 4097, 4097, 4097, 1601, 3517, 3517, 4097, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 1151, 1151, 1151, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1151, 1151, 1151, 4097, 4097, 1151, 1263, 4097, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 4097, 1263, 1263, 1263, 1263, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 2107, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2107, 2107, 4097, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 2107, 3604, 3604, 4097, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3607, 3607, 4097, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3609, 3609, 4097, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3609, 3611, 3611, 4097, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3611, 3753, 3753, 4097, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3757, 3757, 4097, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3759, 3759, 4097, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3621, 3621, 4097, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3624, 3624, 4097, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3762, 3762, 4097, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3628, 3628, 4097, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 3768, 4097, 3768, 3768, 3768, 3768, 4097, 3768, 3768, 3768, 3768, 3768, 3768, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 4097, 3769, 3769, 3769, 3769, 4097, 3769, 3769, 3769, 3769, 3769, 3769, 2462, 4097, 4097, 2462, 4097, 4097, 2462, 4097, 2462, 2462, 2462, 2462, 2462, 4097, 4097, 4097, 2462, 4097, 2462, 4097, 4097, 4097, 2462, 1553, 4097, 1553, 1553, 1553, 1553, 1553, 4097, 4097, 4097, 1553, 4097, 1553, 3511, 4097, 4097, 3511, 4097, 4097, 3511, 4097, 3511, 3511, 3511, 3511, 3511, 4097, 4097, 3511, 3511, 4097, 3511, 4097, 4097, 4097, 3511, 3681, 4097, 4097, 3681, 4097, 4097, 3681, 4097, 3681, 3681, 3681, 3681, 3681, 4097, 4097, 3681, 3681, 4097, 4097, 4097, 4097, 4097, 3681, 2977, 4097, 4097, 4097, 4097, 4097, 2977, 4097, 2977, 2977, 2977, 2977, 2977, 4097, 4097, 2977, 2977, 4097, 4097, 4097, 4097, 4097, 2977, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 4097, 3818, 3818, 3818, 3818, 4097, 3818, 3818, 3818, 3818, 3818, 3818, 1151, 1151, 1151, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1151, 1151, 1151, 4097, 4097, 1151, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 3850, 4097, 3850, 3850, 3850, 3850, 4097, 3850, 3850, 3850, 3850, 3850, 3850, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 3743, 2107, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2107, 2107, 4097, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 2107, 3858, 3858, 4097, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3753, 3753, 4097, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3753, 3861, 3861, 4097, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3757, 3757, 4097, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3757, 3759, 3759, 4097, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3759, 3762, 3762, 4097, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3762, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 4097, 3870, 3870, 3870, 3870, 4097, 3870, 3870, 3870, 3870, 3870, 3870, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3876, 4097, 3876, 3876, 3876, 3876, 4097, 3876, 3876, 3876, 3876, 3876, 3876, 2462, 4097, 4097, 2462, 4097, 4097, 2462, 4097, 2462, 2462, 2462, 2462, 2462, 4097, 4097, 4097, 2462, 4097, 2462, 4097, 4097, 4097, 2462, 1553, 1553, 1553, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1553, 4097, 1553, 1553, 1553, 1553, 1553, 4097, 4097, 4097, 1553, 4097, 1553, 2109, 4097, 2109, 2109, 2109, 2109, 2109, 4097, 4097, 4097, 2109, 4097, 2109, 3511, 4097, 4097, 3511, 4097, 4097, 3511, 4097, 3511, 3511, 3511, 3511, 3511, 4097, 4097, 3511, 3511, 4097, 3511, 4097, 4097, 4097, 3511, 3513, 4097, 4097, 4097, 4097, 4097, 3513, 4097, 3513, 3513, 3513, 3513, 3513, 4097, 4097, 3513, 3513, 4097, 4097, 4097, 4097, 4097, 3513, 3805, 3805, 4097, 4097, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 4097, 3805, 4097, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3897, 4097, 4097, 4097, 4097, 4097, 3897, 4097, 4097, 3897, 3897, 4097, 3897, 4097, 4097, 4097, 4097, 3897, 3897, 3897, 4097, 3897, 3808, 3808, 4097, 4097, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 4097, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3809, 3809, 4097, 4097, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 4097, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3901, 3901, 4097, 4097, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 4097, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 4097, 1657, 1657, 1657, 1657, 1151, 1151, 1151, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1151, 1151, 1151, 4097, 4097, 1151, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 4097, 3921, 3921, 3921, 3921, 4097, 3921, 3921, 3921, 3921, 3921, 3921, 3922, 3922, 4097, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3922, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 4097, 3924, 3924, 3924, 3924, 4097, 3924, 3924, 3924, 3924, 3924, 3924, 2107, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 2107, 2107, 4097, 4097, 4097, 2107, 4097, 4097, 4097, 4097, 4097, 2107, 3858, 3858, 4097, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3861, 3861, 4097, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3932, 3932, 4097, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3932, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 4097, 3938, 3938, 3938, 3938, 4097, 3938, 3938, 3938, 3938, 3938, 3938, 2462, 4097, 4097, 2462, 4097, 4097, 2462, 4097, 2462, 2462, 2462, 2462, 2462, 4097, 4097, 4097, 2462, 4097, 2462, 4097, 4097, 4097, 2462, 1553, 4097, 1553, 1553, 1553, 1553, 1553, 4097, 4097, 4097, 1553, 4097, 1553, 2109, 4097, 2109, 2109, 2109, 2109, 2109, 4097, 4097, 4097, 2109, 4097, 2109, 3511, 4097, 4097, 3511, 4097, 4097, 3511, 4097, 3511, 3511, 3511, 3511, 3511, 4097, 4097, 3511, 3511, 4097, 3511, 4097, 4097, 4097, 3511, 3681, 4097, 4097, 3681, 4097, 4097, 3681, 4097, 3681, 3681, 3681, 3681, 3681, 4097, 4097, 3681, 3681, 4097, 4097, 4097, 4097, 4097, 3681, 3956, 4097, 4097, 4097, 4097, 4097, 3956, 4097, 4097, 3956, 3956, 4097, 3956, 4097, 4097, 4097, 4097, 4097, 3956, 3956, 4097, 3956, 3897, 4097, 4097, 4097, 4097, 4097, 3897, 4097, 4097, 3897, 3897, 4097, 3897, 4097, 4097, 4097, 4097, 3897, 3897, 3897, 4097, 3897, 3901, 3901, 4097, 4097, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 4097, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 1151, 1151, 1151, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 1151, 1151, 1151, 4097, 4097, 1151, 3979, 3979, 4097, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3979, 3805, 3805, 4097, 4097, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 4097, 3805, 4097, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3996, 4097, 4097, 4097, 4097, 4097, 3996, 4097, 4097, 3996, 3996, 4097, 3996, 4097, 4097, 4097, 4097, 4097, 3996, 3996, 4097, 3996, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4010, 4097, 4010, 4010, 4010, 4010, 4097, 4010, 4010, 4010, 4010, 4010, 4010, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4021, 4097, 4021, 4021, 4021, 4021, 4097, 4021, 4021, 4021, 4021, 4021, 4021, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4023, 4097, 4023, 4023, 4023, 4023, 4097, 4023, 4023, 4023, 4023, 4023, 4023, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4043, 4097, 4043, 4043, 4043, 4043, 4097, 4043, 4043, 4043, 4043, 4043, 4043, 4034, 4034, 4097, 4097, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4097, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4037, 4037, 4097, 4097, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4097, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 295, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097 } ; static yyconst short int yy_chk[33836] = { 0, 0, 1, 0, 1, 1, 2, 0, 2, 2, 314, 314, 321, 342, 2290, 321, 342, 300, 306, 313, 2291, 1, 300, 306, 313, 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, 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, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 361, 5, 5, 6, 361, 6, 6, 7, 7, 7, 7, 7, 5, 7, 477, 477, 6, 9, 5, 9, 9, 10, 6, 10, 10, 881, 7, 8, 8, 8, 8, 8, 503, 8, 503, 15, 9, 15, 15, 16, 10, 16, 16, 493, 493, 559, 8, 29, 29, 29, 29, 29, 881, 63, 15, 63, 63, 64, 16, 64, 64, 176, 7, 15, 176, 15, 29, 16, 332, 16, 348, 559, 63, 332, 176, 348, 64, 176, 349, 176, 2294, 349, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 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, 17, 17, 17, 17, 17, 19, 19, 19, 19, 19, 20, 20, 20, 20, 20, 21, 150, 21, 21, 150, 2295, 21, 323, 364, 19, 323, 21, 21, 364, 20, 666, 21, 393, 22, 21, 22, 22, 393, 666, 22, 1133, 396, 21, 150, 22, 22, 396, 495, 495, 22, 1133, 1617, 22, 30, 30, 30, 30, 30, 573, 690, 22, 690, 33, 33, 33, 33, 33, 35, 409, 35, 35, 415, 30, 409, 33, 33, 415, 19, 33, 35, 35, 33, 20, 19, 573, 497, 35, 497, 20, 34, 34, 34, 34, 34, 36, 419, 36, 36, 21, 497, 419, 34, 34, 1617, 323, 34, 36, 36, 34, 322, 322, 322, 322, 36, 1134, 1134, 22, 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, 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, 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, 27, 27, 27, 27, 27, 31, 360, 31, 31, 360, 431, 32, 31, 32, 32, 431, 561, 31, 32, 335, 335, 335, 335, 32, 31, 41, 930, 41, 41, 436, 32, 31, 31, 39, 436, 39, 39, 32, 32, 40, 561, 40, 40, 930, 41, 39, 42, 498, 42, 42, 498, 40, 39, 43, 43, 43, 43, 43, 40, 43, 498, 39, 889, 2298, 43, 42, 360, 40, 382, 382, 382, 382, 43, 665, 44, 44, 44, 44, 44, 41, 44, 41, 575, 2299, 45, 44, 45, 45, 31, 46, 889, 46, 46, 44, 32, 37, 37, 37, 37, 37, 42, 335, 42, 45, 1483, 665, 575, 51, 46, 51, 51, 45, 446, 51, 37, 469, 46, 446, 51, 1483, 469, 37, 37, 476, 37, 627, 51, 55, 476, 55, 55, 56, 473, 56, 56, 473, 43, 43, 473, 1090, 753, 52, 52, 52, 52, 52, 55, 52, 52, 627, 56, 485, 52, 1090, 45, 37, 485, 44, 44, 46, 52, 494, 51, 1238, 1238, 59, 494, 59, 59, 37, 501, 37, 753, 37, 61, 501, 61, 61, 37, 38, 38, 38, 38, 38, 59, 62, 589, 62, 62, 517, 51, 51, 522, 61, 517, 2305, 52, 522, 38, 65, 65, 65, 65, 65, 62, 38, 38, 67, 38, 67, 67, 55, 589, 65, 513, 56, 664, 513, 65, 66, 66, 66, 66, 66, 52, 52, 67, 513, 68, 61, 68, 68, 71, 66, 71, 71, 523, 506, 66, 38, 62, 523, 664, 521, 71, 71, 521, 68, 59, 506, 697, 71, 697, 38, 506, 38, 521, 38, 388, 388, 388, 388, 38, 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, 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, 49, 49, 49, 49, 49, 53, 828, 53, 53, 708, 828, 53, 54, 708, 54, 54, 53, 708, 54, 57, 708, 57, 57, 54, 53, 57, 58, 2306, 58, 58, 529, 54, 58, 57, 60, 529, 60, 60, 57, 69, 58, 69, 69, 540, 70, 58, 70, 70, 540, 72, 549, 72, 72, 60, 95, 549, 95, 95, 69, 550, 53, 72, 72, 70, 550, 588, 2307, 54, 72, 336, 336, 336, 336, 95, 57, 408, 408, 408, 408, 1245, 1245, 58, 588, 73, 73, 73, 73, 73, 53, 53, 74, 74, 74, 74, 74, 54, 54, 73, 309, 309, 309, 309, 73, 1089, 74, 96, 588, 96, 96, 74, 557, 73, 1089, 1310, 73, 557, 309, 60, 74, 1310, 564, 74, 69, 69, 96, 564, 1147, 70, 70, 75, 75, 75, 75, 75, 77, 1147, 77, 77, 73, 76, 76, 76, 76, 76, 78, 74, 78, 78, 75, 2308, 572, 336, 545, 77, 545, 572, 580, 75, 76, 75, 587, 580, 77, 78, 77, 587, 545, 76, 79, 76, 79, 79, 78, 80, 78, 80, 80, 537, 940, 537, 79, 79, 940, 537, 594, 80, 80, 79, 81, 594, 81, 81, 80, 82, 81, 82, 82, 1247, 1247, 82, 85, 85, 85, 85, 85, 600, 109, 81, 109, 109, 600, 2312, 82, 110, 85, 110, 110, 1336, 1336, 85, 86, 86, 86, 86, 86, 109, 745, 111, 745, 111, 111, 537, 110, 537, 86, 441, 441, 441, 441, 86, 111, 942, 81, 604, 81, 942, 111, 82, 604, 82, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 89, 89, 89, 89, 89, 2313, 87, 87, 87, 87, 87, 87, 607, 112, 89, 112, 112, 607, 89, 89, 125, 729, 125, 125, 729, 754, 112, 126, 89, 126, 126, 89, 112, 754, 87, 87, 87, 87, 103, 125, 103, 103, 104, 620, 104, 104, 126, 729, 620, 1138, 103, 729, 103, 634, 104, 89, 104, 103, 634, 1138, 937, 104, 937, 87, 87, 87, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 90, 90, 90, 90, 90, 602, 88, 88, 88, 88, 88, 88, 632, 602, 90, 632, 602, 1096, 90, 90, 1096, 602, 103, 953, 654, 632, 104, 882, 90, 654, 121, 90, 121, 121, 88, 88, 88, 88, 119, 119, 119, 119, 119, 121, 121, 442, 442, 442, 442, 121, 953, 663, 119, 882, 821, 90, 663, 119, 337, 337, 337, 337, 821, 88, 88, 88, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 93, 93, 93, 93, 93, 1815, 91, 91, 91, 91, 91, 91, 2314, 120, 120, 120, 120, 120, 1101, 93, 659, 1101, 129, 659, 129, 129, 122, 120, 122, 122, 1815, 93, 120, 659, 91, 91, 91, 91, 626, 122, 122, 129, 947, 626, 947, 122, 403, 403, 403, 403, 1006, 1179, 1006, 337, 626, 93, 443, 443, 443, 443, 1179, 403, 2209, 91, 91, 91, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 94, 94, 94, 94, 94, 2315, 92, 92, 92, 92, 92, 92, 671, 130, 601, 130, 130, 671, 1113, 94, 139, 1113, 139, 139, 140, 680, 140, 140, 686, 2209, 680, 94, 130, 686, 92, 92, 92, 92, 143, 139, 143, 143, 144, 140, 144, 144, 601, 709, 139, 601, 709, 693, 140, 706, 601, 94, 693, 143, 706, 1118, 709, 144, 1118, 92, 92, 92, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 147, 99, 147, 147, 99, 700, 117, 117, 117, 117, 117, 2316, 99, 99, 99, 99, 99, 700, 954, 147, 117, 148, 700, 148, 148, 117, 1258, 1229, 1258, 107, 107, 107, 107, 107, 117, 1137, 1229, 117, 1137, 99, 148, 99, 99, 153, 954, 153, 153, 154, 107, 154, 154, 710, 404, 404, 404, 404, 710, 553, 107, 717, 553, 117, 153, 1448, 717, 1448, 154, 404, 99, 99, 99, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 553, 100, 107, 193, 100, 193, 193, 118, 118, 118, 118, 118, 100, 100, 100, 100, 100, 1301, 107, 1270, 107, 118, 193, 720, 553, 107, 118, 2317, 720, 108, 108, 108, 108, 108, 159, 118, 159, 159, 118, 100, 645, 100, 100, 645, 1301, 1270, 159, 159, 108, 310, 310, 310, 310, 159, 430, 430, 430, 430, 108, 645, 725, 1305, 118, 2318, 1305, 725, 430, 310, 100, 100, 100, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 2319, 101, 108, 131, 101, 131, 131, 132, 132, 132, 132, 132, 101, 101, 101, 101, 101, 131, 108, 1144, 108, 132, 131, 1144, 707, 108, 132, 1307, 169, 2320, 169, 169, 563, 149, 131, 563, 149, 1307, 132, 101, 719, 101, 101, 719, 169, 563, 149, 169, 563, 728, 563, 149, 707, 719, 728, 169, 707, 1318, 131, 707, 149, 1318, 132, 149, 316, 316, 316, 316, 101, 101, 101, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 149, 102, 316, 133, 102, 133, 133, 135, 2321, 135, 135, 1303, 102, 102, 102, 102, 102, 133, 733, 738, 1303, 133, 133, 733, 738, 194, 135, 194, 194, 317, 317, 317, 317, 160, 133, 160, 160, 1233, 135, 102, 1233, 102, 102, 1233, 194, 160, 160, 161, 161, 161, 161, 161, 160, 968, 317, 968, 743, 2322, 133, 161, 161, 743, 135, 161, 1435, 1435, 161, 968, 102, 102, 102, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 134, 134, 134, 134, 134, 136, 1315, 136, 136, 162, 162, 162, 162, 162, 134, 752, 1686, 1315, 134, 134, 752, 162, 162, 2323, 136, 162, 748, 163, 162, 163, 163, 134, 164, 1334, 164, 164, 136, 1334, 748, 205, 163, 205, 205, 748, 1686, 164, 163, 456, 456, 456, 456, 164, 757, 1130, 765, 134, 1130, 757, 205, 765, 136, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 165, 165, 165, 165, 165, 1417, 137, 137, 137, 137, 137, 137, 165, 165, 1340, 777, 165, 786, 1340, 165, 777, 206, 786, 206, 206, 1600, 166, 166, 166, 166, 166, 1130, 1417, 1600, 137, 137, 137, 137, 166, 166, 206, 235, 166, 235, 235, 166, 405, 405, 405, 405, 462, 462, 462, 462, 526, 526, 526, 526, 1616, 1325, 235, 405, 1325, 137, 137, 137, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 170, 1358, 170, 170, 1328, 2324, 138, 138, 138, 138, 138, 138, 527, 527, 527, 527, 170, 802, 1616, 170, 1328, 213, 802, 213, 213, 676, 676, 170, 676, 171, 171, 171, 171, 171, 138, 138, 138, 138, 676, 1455, 213, 1455, 217, 217, 217, 217, 217, 1358, 171, 213, 528, 528, 528, 528, 547, 547, 547, 547, 2325, 1333, 171, 217, 1333, 138, 138, 138, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 567, 141, 171, 567, 141, 172, 172, 172, 172, 172, 1335, 2326, 141, 141, 141, 141, 141, 2327, 804, 214, 1335, 214, 214, 804, 172, 218, 218, 218, 218, 218, 567, 941, 181, 941, 181, 181, 172, 941, 214, 141, 181, 141, 141, 809, 218, 819, 181, 214, 809, 819, 819, 181, 913, 1812, 567, 571, 571, 571, 571, 913, 172, 913, 1812, 181, 315, 315, 315, 315, 141, 141, 141, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 181, 142, 315, 182, 142, 182, 182, 546, 546, 546, 546, 182, 142, 142, 142, 142, 142, 182, 2328, 1485, 546, 236, 182, 236, 236, 219, 219, 219, 219, 219, 320, 320, 320, 320, 182, 183, 2329, 183, 183, 142, 236, 142, 142, 183, 219, 237, 1485, 237, 237, 183, 548, 548, 548, 548, 183, 320, 833, 320, 182, 315, 833, 833, 847, 548, 237, 2330, 183, 847, 142, 142, 142, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 1491, 145, 1491, 183, 145, 191, 191, 191, 191, 191, 1619, 1537, 145, 145, 145, 145, 145, 1813, 220, 220, 220, 220, 220, 1481, 191, 221, 221, 221, 221, 221, 1537, 1813, 184, 191, 184, 184, 191, 220, 851, 145, 184, 145, 145, 851, 221, 238, 184, 238, 238, 1481, 1619, 184, 578, 578, 578, 578, 614, 614, 614, 614, 191, 860, 865, 184, 238, 2331, 860, 865, 145, 145, 145, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 184, 146, 1587, 1587, 146, 192, 192, 192, 192, 192, 1646, 1646, 146, 146, 146, 146, 146, 2357, 222, 222, 222, 222, 222, 2358, 192, 223, 223, 223, 223, 223, 1650, 1650, 197, 192, 197, 197, 192, 222, 1764, 146, 593, 146, 146, 593, 223, 224, 224, 224, 224, 224, 871, 197, 876, 593, 879, 871, 593, 876, 593, 879, 192, 884, 886, 197, 224, 1764, 884, 886, 146, 146, 146, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 197, 151, 2231, 198, 151, 198, 198, 225, 1323, 225, 225, 1323, 151, 151, 151, 151, 151, 227, 227, 227, 227, 227, 198, 1614, 1323, 1873, 225, 228, 228, 228, 228, 228, 892, 1873, 198, 898, 227, 892, 225, 151, 898, 151, 151, 1843, 901, 239, 228, 239, 239, 901, 2231, 239, 615, 615, 615, 615, 904, 1843, 198, 1308, 907, 904, 225, 1351, 239, 907, 1351, 1614, 151, 151, 151, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 226, 152, 226, 226, 152, 912, 231, 1433, 231, 231, 912, 1433, 152, 152, 152, 152, 152, 935, 1308, 226, 231, 240, 935, 240, 240, 231, 241, 240, 241, 241, 1308, 226, 241, 245, 1308, 245, 245, 231, 939, 152, 240, 152, 152, 939, 242, 241, 242, 242, 962, 976, 242, 2359, 245, 962, 976, 226, 617, 617, 617, 617, 1743, 231, 1743, 242, 621, 621, 621, 621, 152, 152, 152, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 232, 1410, 232, 232, 1410, 1354, 173, 173, 173, 173, 173, 173, 985, 246, 232, 246, 246, 985, 994, 232, 1354, 1354, 253, 994, 253, 253, 254, 931, 254, 254, 643, 232, 246, 643, 173, 173, 173, 173, 2360, 931, 257, 253, 257, 257, 931, 254, 623, 623, 623, 623, 642, 642, 642, 642, 257, 232, 1004, 1009, 643, 257, 2364, 1004, 1009, 173, 173, 173, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 253, 1618, 643, 1000, 254, 1000, 174, 174, 174, 174, 174, 174, 950, 258, 253, 258, 258, 1000, 254, 259, 643, 259, 259, 260, 950, 260, 260, 258, 261, 950, 261, 261, 258, 2369, 174, 174, 174, 174, 259, 2371, 972, 269, 260, 269, 269, 1618, 1355, 261, 669, 669, 669, 669, 972, 1355, 1017, 269, 261, 972, 261, 1017, 269, 1355, 1355, 174, 174, 174, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 1332, 262, 177, 262, 262, 270, 2372, 270, 270, 1332, 177, 177, 177, 177, 177, 265, 1332, 265, 265, 270, 262, 265, 1251, 2373, 270, 1251, 265, 265, 265, 262, 271, 262, 271, 271, 265, 1251, 1866, 177, 177, 177, 177, 263, 2220, 263, 263, 831, 1025, 263, 831, 271, 1866, 1025, 263, 716, 716, 716, 716, 1757, 831, 1757, 263, 831, 334, 334, 334, 334, 177, 177, 177, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 334, 272, 178, 272, 272, 279, 2220, 279, 279, 263, 178, 178, 178, 178, 178, 266, 1266, 266, 266, 1266, 272, 266, 279, 1802, 279, 1802, 266, 266, 266, 1266, 267, 1568, 267, 267, 266, 2374, 267, 178, 178, 178, 178, 267, 273, 273, 273, 273, 273, 1032, 273, 267, 2376, 1036, 1032, 273, 273, 273, 1036, 1568, 267, 334, 267, 273, 768, 768, 768, 768, 178, 178, 178, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 195, 195, 195, 195, 195, 195, 195, 195, 1040, 195, 195, 195, 195, 1040, 2378, 195, 264, 195, 264, 264, 195, 2206, 264, 311, 311, 311, 311, 264, 195, 195, 195, 195, 195, 1052, 207, 264, 207, 207, 1052, 1061, 268, 311, 268, 268, 1061, 1842, 268, 341, 341, 341, 341, 268, 2379, 207, 1842, 195, 195, 195, 195, 268, 280, 1071, 280, 280, 207, 1976, 1071, 2206, 268, 1078, 268, 264, 341, 207, 1078, 1654, 1654, 280, 207, 280, 358, 358, 358, 358, 195, 195, 196, 196, 196, 196, 196, 196, 196, 196, 1569, 196, 196, 196, 196, 207, 927, 196, 927, 196, 207, 358, 196, 354, 354, 354, 354, 1976, 2380, 1976, 196, 196, 196, 196, 196, 1432, 1569, 208, 1432, 208, 208, 354, 274, 274, 274, 274, 274, 927, 274, 359, 359, 359, 359, 274, 274, 274, 208, 196, 196, 196, 196, 274, 355, 355, 355, 355, 291, 208, 291, 291, 1088, 927, 291, 1865, 359, 1088, 208, 291, 291, 291, 355, 208, 1865, 2027, 2027, 291, 196, 196, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 1868, 208, 199, 199, 199, 199, 208, 199, 277, 277, 277, 277, 277, 2217, 1868, 199, 199, 199, 199, 199, 275, 275, 275, 275, 275, 1747, 275, 277, 1572, 1747, 818, 275, 275, 818, 818, 1119, 277, 1879, 277, 275, 1119, 818, 199, 199, 199, 199, 818, 2210, 275, 292, 275, 292, 292, 1879, 1572, 292, 785, 785, 785, 785, 292, 292, 292, 383, 383, 383, 383, 1574, 292, 2217, 818, 199, 199, 199, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 2210, 383, 200, 200, 200, 200, 1574, 200, 278, 278, 278, 278, 278, 2381, 1578, 200, 200, 200, 200, 200, 276, 276, 276, 276, 276, 1104, 276, 278, 1104, 943, 1125, 276, 276, 943, 1273, 1125, 278, 1273, 278, 276, 1578, 943, 200, 200, 200, 200, 943, 1273, 276, 2214, 276, 363, 363, 363, 363, 780, 780, 780, 780, 811, 811, 811, 811, 812, 812, 812, 812, 1608, 1960, 363, 780, 200, 200, 200, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 281, 201, 281, 281, 201, 1960, 282, 282, 282, 282, 282, 2214, 201, 201, 201, 201, 201, 1104, 2382, 281, 282, 421, 421, 421, 421, 282, 366, 366, 366, 366, 1608, 281, 283, 1127, 283, 283, 1608, 282, 1127, 201, 421, 201, 201, 289, 366, 289, 289, 1232, 1969, 289, 2219, 283, 1232, 1142, 1274, 281, 1142, 289, 1969, 1274, 1609, 282, 289, 283, 384, 384, 384, 384, 201, 201, 201, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 283, 202, 384, 2219, 202, 284, 284, 284, 284, 284, 2383, 289, 202, 202, 202, 202, 202, 1609, 1579, 284, 385, 385, 385, 385, 284, 2017, 1142, 369, 369, 369, 369, 1609, 290, 2017, 290, 290, 284, 1230, 290, 202, 1230, 202, 202, 1285, 1579, 385, 290, 293, 1285, 293, 293, 290, 369, 293, 369, 1230, 1625, 2385, 293, 1625, 284, 813, 813, 813, 813, 2013, 293, 2013, 202, 202, 202, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 290, 203, 1293, 1628, 203, 2386, 1628, 1293, 389, 389, 389, 389, 203, 203, 203, 203, 203, 390, 390, 390, 390, 287, 287, 287, 287, 287, 389, 287, 391, 391, 391, 391, 287, 287, 1666, 390, 1867, 287, 1926, 203, 287, 203, 203, 293, 293, 1867, 391, 294, 287, 294, 294, 2016, 1926, 294, 841, 841, 841, 841, 294, 2208, 1666, 2016, 374, 374, 374, 374, 294, 1679, 203, 203, 203, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 374, 204, 374, 2227, 204, 1249, 1679, 1249, 392, 392, 392, 392, 204, 204, 204, 204, 204, 287, 2208, 1249, 1573, 288, 288, 288, 288, 288, 392, 288, 371, 371, 371, 371, 288, 288, 1573, 1406, 2387, 288, 1406, 204, 288, 204, 204, 294, 294, 374, 1573, 2227, 288, 400, 400, 400, 400, 371, 1406, 371, 897, 897, 897, 897, 897, 1573, 372, 372, 372, 372, 1680, 400, 204, 204, 204, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 372, 209, 372, 1763, 209, 1680, 1276, 1326, 371, 1276, 1326, 209, 209, 209, 209, 209, 209, 288, 2074, 1276, 1326, 373, 373, 373, 373, 387, 387, 387, 387, 1763, 375, 375, 375, 375, 376, 376, 376, 376, 1811, 209, 209, 209, 209, 1811, 372, 2074, 373, 1584, 373, 1339, 387, 1584, 387, 1339, 372, 375, 1339, 375, 2388, 376, 1584, 376, 900, 900, 900, 900, 900, 1339, 209, 209, 209, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 375, 210, 373, 373, 210, 1590, 2390, 451, 451, 451, 451, 210, 210, 210, 210, 210, 210, 2391, 1590, 1302, 376, 1590, 1302, 376, 452, 452, 452, 452, 377, 377, 377, 377, 451, 378, 378, 378, 378, 1302, 2392, 210, 210, 210, 210, 472, 472, 472, 472, 1729, 1148, 452, 1729, 1148, 1148, 377, 1396, 377, 1989, 1396, 378, 1989, 378, 472, 379, 379, 379, 379, 1148, 1396, 210, 210, 210, 211, 211, 211, 211, 211, 211, 211, 211, 2207, 211, 211, 211, 211, 211, 211, 211, 379, 211, 379, 2195, 211, 2195, 377, 378, 453, 453, 453, 453, 211, 211, 211, 211, 377, 914, 914, 914, 914, 380, 380, 380, 380, 1038, 378, 2393, 1038, 416, 416, 416, 416, 453, 417, 417, 417, 417, 1038, 211, 211, 211, 211, 1038, 379, 1749, 380, 1749, 380, 379, 2207, 1749, 2394, 455, 455, 455, 455, 416, 916, 916, 916, 916, 417, 418, 418, 418, 418, 2204, 211, 211, 212, 212, 212, 212, 212, 212, 212, 212, 455, 212, 212, 212, 212, 212, 212, 212, 380, 212, 416, 1957, 212, 418, 1610, 417, 457, 457, 457, 457, 212, 212, 212, 212, 416, 1957, 416, 1039, 416, 417, 1039, 417, 2204, 417, 458, 458, 458, 458, 2395, 1331, 1039, 457, 1331, 1039, 418, 2396, 1956, 212, 212, 212, 212, 579, 579, 579, 579, 1956, 1990, 1331, 418, 458, 418, 1286, 418, 1286, 579, 1610, 1610, 579, 1990, 579, 903, 903, 903, 903, 903, 1286, 212, 212, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 2005, 233, 2397, 2005, 233, 459, 459, 459, 459, 856, 2398, 856, 233, 233, 233, 233, 233, 918, 918, 918, 918, 440, 1438, 440, 440, 2399, 1438, 440, 856, 1438, 459, 2400, 440, 461, 461, 461, 461, 856, 2401, 233, 440, 233, 233, 512, 512, 512, 2211, 512, 598, 598, 598, 598, 781, 781, 781, 781, 1592, 512, 461, 1750, 1592, 2402, 512, 1750, 856, 1592, 598, 781, 233, 233, 233, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 590, 234, 2211, 2216, 234, 1368, 562, 583, 1368, 562, 583, 512, 234, 234, 234, 234, 234, 440, 440, 562, 583, 2403, 1180, 1368, 562, 1180, 1180, 590, 590, 590, 1627, 590, 590, 1627, 2404, 590, 562, 583, 590, 234, 1180, 234, 234, 590, 590, 2216, 1627, 590, 599, 599, 599, 599, 782, 782, 782, 782, 925, 925, 925, 925, 562, 583, 1012, 1012, 1012, 1012, 599, 782, 234, 234, 234, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 597, 249, 2212, 597, 249, 576, 576, 576, 576, 2218, 1974, 1353, 249, 249, 249, 249, 249, 2015, 576, 608, 608, 608, 608, 576, 609, 609, 609, 609, 1353, 2015, 597, 1535, 464, 1535, 464, 576, 1974, 1535, 464, 249, 249, 249, 249, 464, 608, 791, 791, 791, 791, 609, 1535, 464, 1353, 2281, 597, 1013, 1013, 1013, 1013, 576, 2212, 2218, 2281, 791, 610, 610, 610, 610, 249, 249, 249, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 464, 250, 610, 2028, 250, 592, 603, 1295, 592, 603, 1295, 1984, 250, 250, 250, 250, 250, 2028, 592, 636, 636, 636, 636, 592, 603, 2405, 1752, 1984, 464, 464, 1752, 613, 613, 613, 613, 592, 603, 1295, 2406, 250, 250, 250, 250, 591, 636, 1753, 591, 591, 591, 1753, 591, 591, 1397, 2407, 591, 1397, 613, 591, 613, 592, 603, 1295, 591, 591, 2006, 1397, 591, 2006, 250, 250, 250, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, 2042, 251, 2408, 2042, 251, 637, 637, 637, 637, 1732, 2409, 1732, 251, 251, 251, 251, 251, 2282, 638, 638, 638, 638, 641, 641, 641, 641, 792, 792, 792, 792, 637, 2282, 1876, 667, 667, 667, 667, 1876, 2223, 251, 1732, 251, 251, 638, 792, 1970, 667, 641, 1288, 1970, 1288, 667, 787, 787, 787, 787, 906, 906, 906, 906, 906, 787, 1288, 667, 1732, 787, 2224, 1288, 251, 251, 251, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 667, 252, 672, 2233, 252, 670, 670, 670, 670, 2223, 2226, 2125, 252, 252, 252, 252, 252, 1409, 670, 2046, 1409, 670, 2046, 670, 915, 915, 915, 915, 915, 672, 672, 2224, 672, 672, 672, 670, 1409, 672, 2125, 252, 2078, 252, 252, 672, 1890, 672, 672, 1890, 2046, 672, 672, 788, 788, 788, 788, 1014, 1014, 1014, 1014, 670, 788, 2233, 1890, 2238, 788, 2238, 2078, 2226, 252, 252, 252, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 357, 357, 357, 357, 673, 2335, 357, 673, 673, 730, 673, 673, 673, 727, 2335, 673, 727, 1466, 957, 732, 1466, 673, 732, 673, 673, 357, 727, 673, 673, 2120, 1466, 2104, 732, 980, 2104, 980, 730, 732, 730, 980, 730, 730, 957, 727, 980, 1441, 1441, 730, 1441, 732, 2058, 1474, 730, 730, 1474, 2120, 730, 1480, 1441, 357, 1480, 357, 2058, 2411, 1474, 357, 957, 727, 357, 357, 1480, 357, 2221, 732, 357, 357, 357, 357, 560, 731, 2413, 1778, 731, 1778, 731, 1566, 731, 731, 980, 762, 762, 762, 762, 731, 1566, 1778, 957, 2267, 731, 731, 2267, 1797, 731, 1797, 2143, 560, 560, 560, 560, 560, 560, 1566, 2221, 560, 762, 1797, 560, 560, 560, 560, 1566, 560, 560, 560, 560, 560, 574, 759, 759, 759, 759, 2143, 2410, 2410, 763, 763, 763, 763, 764, 764, 764, 764, 1016, 1016, 1016, 1016, 759, 759, 759, 759, 759, 759, 759, 574, 574, 574, 574, 574, 574, 763, 1016, 574, 2414, 764, 574, 574, 574, 574, 2415, 574, 574, 574, 574, 574, 574, 767, 767, 767, 767, 770, 770, 770, 770, 776, 776, 776, 776, 798, 798, 798, 770, 798, 2417, 2368, 776, 789, 789, 789, 789, 2418, 767, 2215, 2368, 2419, 789, 770, 798, 2420, 789, 776, 790, 790, 790, 790, 836, 836, 836, 836, 798, 790, 2121, 2421, 820, 790, 820, 820, 820, 830, 830, 830, 830, 2424, 770, 820, 837, 837, 837, 837, 820, 836, 830, 2225, 798, 830, 2215, 830, 2121, 838, 838, 838, 838, 840, 840, 840, 840, 920, 920, 920, 920, 837, 1327, 2425, 820, 1327, 1819, 776, 808, 1819, 832, 2426, 808, 832, 838, 2232, 808, 2124, 840, 1819, 808, 808, 920, 1965, 832, 1965, 808, 832, 832, 808, 808, 1967, 1327, 1967, 808, 832, 808, 1965, 808, 2225, 832, 1484, 808, 2124, 1484, 1967, 808, 808, 2427, 808, 2428, 808, 1817, 808, 1484, 1817, 1327, 808, 822, 1484, 919, 919, 919, 919, 832, 1817, 921, 921, 921, 921, 1817, 2232, 822, 919, 1022, 1022, 1022, 1022, 919, 2429, 922, 922, 922, 922, 2430, 822, 822, 822, 822, 822, 822, 921, 822, 822, 2126, 822, 822, 1352, 822, 822, 1352, 822, 822, 822, 822, 922, 857, 857, 857, 857, 1352, 822, 822, 822, 822, 822, 822, 2205, 822, 822, 2126, 822, 822, 2116, 822, 822, 2116, 1352, 822, 822, 822, 822, 823, 823, 823, 823, 857, 2130, 858, 858, 858, 858, 859, 859, 859, 859, 924, 924, 924, 924, 958, 1352, 2116, 823, 2154, 823, 823, 958, 1366, 2205, 857, 1366, 958, 2130, 978, 978, 978, 978, 858, 2205, 2234, 924, 859, 2431, 958, 978, 1023, 1023, 1023, 1023, 823, 2154, 2432, 823, 823, 823, 823, 823, 1366, 978, 823, 823, 858, 823, 2434, 823, 859, 823, 958, 823, 823, 823, 823, 823, 823, 824, 1024, 1024, 1024, 1024, 824, 2235, 1366, 824, 2412, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 988, 2234, 988, 958, 824, 2412, 988, 1102, 1102, 1102, 1102, 988, 988, 988, 1011, 1011, 1011, 1011, 1011, 988, 1011, 1045, 1045, 1045, 1045, 1011, 1011, 1011, 824, 1046, 1046, 1046, 1046, 1011, 1047, 1047, 1047, 1047, 2389, 1045, 2435, 2389, 2235, 1093, 1093, 1093, 1093, 1046, 1051, 1051, 1051, 1051, 1047, 1053, 1053, 1053, 1053, 2161, 824, 825, 825, 825, 825, 1064, 1963, 1064, 1051, 1963, 1093, 1064, 825, 1053, 2433, 2433, 1064, 1064, 1064, 1963, 2436, 1073, 825, 1073, 825, 825, 2161, 1073, 1087, 1087, 1087, 1087, 1073, 1094, 1094, 1094, 1094, 2131, 2437, 2230, 1097, 1097, 1097, 1097, 2438, 1279, 1087, 1279, 2439, 825, 2441, 1279, 825, 825, 825, 825, 825, 825, 1094, 825, 825, 2442, 825, 2131, 825, 1097, 825, 1093, 825, 825, 825, 825, 825, 825, 826, 1098, 1098, 1098, 1098, 826, 2443, 2230, 826, 2230, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 1099, 1099, 1099, 1099, 826, 1279, 1098, 1279, 1098, 2447, 1073, 1073, 1103, 1103, 1103, 1103, 1106, 1106, 1106, 1106, 1108, 1108, 1108, 1108, 2448, 1099, 2449, 1099, 826, 2450, 1097, 1109, 1109, 1109, 1109, 1110, 1110, 1110, 1110, 1103, 2451, 1106, 1534, 2168, 1534, 1108, 2452, 2453, 1534, 826, 1111, 1111, 1111, 1111, 1112, 1112, 1112, 1112, 826, 852, 1534, 1534, 2454, 852, 852, 2455, 852, 852, 852, 2004, 2168, 852, 2004, 852, 1114, 1114, 1114, 1114, 1405, 1112, 852, 1405, 852, 852, 852, 2004, 2456, 1115, 1115, 1115, 1115, 1116, 1116, 1116, 1116, 1124, 1124, 1124, 1124, 1114, 1106, 2498, 1129, 1129, 1129, 1129, 1405, 2524, 852, 1123, 852, 852, 1115, 1124, 2534, 2251, 1116, 1110, 1123, 1123, 1123, 1123, 1123, 1126, 1126, 1126, 1126, 1129, 1146, 1146, 1146, 1146, 1111, 1145, 1145, 1145, 1145, 1405, 2500, 852, 853, 1126, 2251, 2551, 853, 853, 1145, 853, 853, 853, 2134, 2552, 853, 1146, 853, 1405, 1114, 1149, 1149, 1149, 1149, 853, 2136, 853, 853, 853, 2500, 2444, 1150, 1150, 1150, 1150, 1151, 1151, 1151, 1151, 2134, 1153, 1153, 1153, 1153, 2554, 1149, 1154, 1154, 1154, 1154, 1320, 2136, 853, 1320, 853, 853, 1150, 2444, 1150, 2137, 1151, 2123, 1151, 1320, 2123, 1153, 1320, 1153, 1264, 1264, 1264, 1154, 1264, 1154, 1155, 1155, 1155, 1155, 1169, 1169, 1169, 1169, 1264, 853, 854, 2137, 2556, 1264, 854, 854, 2123, 854, 854, 854, 1615, 2139, 854, 1153, 854, 1155, 1786, 1155, 1786, 2557, 1149, 854, 1786, 854, 854, 854, 2459, 1786, 1156, 1156, 1156, 1156, 2558, 1157, 1157, 1157, 1157, 2139, 1154, 1264, 2459, 1158, 1158, 1158, 1158, 1159, 1159, 1159, 1159, 854, 1615, 854, 854, 1156, 1615, 1156, 2559, 2561, 1157, 1615, 1157, 1160, 1160, 1160, 1160, 1155, 1158, 2147, 1158, 2560, 1159, 1786, 1159, 1171, 1171, 1171, 1171, 2560, 2562, 2563, 854, 1128, 1128, 1128, 1128, 2564, 1160, 1128, 1160, 1161, 1161, 1161, 1161, 2147, 1163, 1163, 1163, 1163, 1171, 1156, 1157, 1158, 1162, 1162, 1162, 1162, 1128, 2565, 1157, 1164, 1164, 1164, 1164, 1159, 1161, 2003, 1161, 1324, 2003, 1163, 1324, 1163, 1177, 1177, 1177, 1177, 1160, 1162, 2003, 1162, 1324, 1160, 2566, 1324, 1164, 2007, 1164, 2151, 2007, 2476, 1128, 2193, 1128, 2567, 2570, 1613, 1128, 1161, 2007, 1128, 1128, 1163, 1128, 2193, 2193, 1128, 1128, 1128, 1128, 1165, 1165, 1165, 1165, 2151, 2572, 1162, 2476, 1163, 1166, 1166, 1166, 1166, 1167, 1167, 1167, 1167, 2152, 1164, 1168, 1168, 1168, 1168, 2573, 2576, 1165, 1613, 1165, 1170, 1170, 1170, 1170, 2266, 1606, 1166, 2266, 1166, 2266, 1167, 1613, 1167, 2577, 1613, 2152, 1168, 2578, 1168, 1173, 1173, 1173, 1173, 1183, 1183, 1183, 1183, 1170, 1174, 1174, 1174, 1174, 1175, 1175, 1175, 1175, 1178, 1178, 1178, 1178, 1554, 1554, 2568, 1165, 1173, 1606, 1166, 2568, 1554, 1606, 1167, 2384, 2155, 1174, 2384, 1174, 2579, 1175, 1606, 1175, 2574, 2574, 2581, 1178, 1168, 1182, 1182, 1182, 1182, 1184, 1184, 1184, 1184, 1185, 1185, 1185, 1185, 1554, 2155, 2625, 1182, 1186, 1186, 1186, 1186, 1191, 1191, 1191, 1191, 1192, 1192, 1192, 1192, 1197, 1197, 1197, 1197, 2626, 2628, 2490, 1186, 1185, 2186, 1173, 1191, 1197, 1198, 1198, 1198, 1198, 1201, 2629, 1201, 1201, 2384, 2580, 1201, 1198, 2186, 2590, 2186, 1201, 1203, 1203, 1203, 1203, 2490, 2458, 1208, 1201, 2458, 2580, 1185, 1204, 1204, 1204, 1204, 1208, 1208, 1208, 1208, 1208, 1209, 1209, 1209, 1209, 1185, 2600, 1185, 2159, 1185, 1212, 1212, 1212, 1212, 1214, 1214, 1214, 1214, 1215, 1215, 1215, 1215, 1216, 1216, 1216, 1216, 1218, 1218, 1218, 1218, 1220, 1220, 1220, 1220, 2159, 1212, 2590, 2287, 1555, 1214, 2287, 1555, 1555, 1215, 1221, 1221, 1221, 1221, 2600, 1555, 2287, 1218, 1201, 1201, 1555, 1220, 1222, 1222, 1222, 1222, 1225, 2630, 1225, 1228, 1624, 2585, 1225, 1624, 2633, 1221, 2588, 1225, 1228, 1228, 1228, 1228, 1228, 1624, 1555, 1225, 1624, 1231, 1231, 1231, 1231, 1277, 1277, 1277, 1277, 1289, 1289, 1289, 1289, 1290, 1290, 1290, 1290, 2213, 1214, 1231, 1319, 2497, 1289, 1319, 1344, 1344, 1344, 1344, 1349, 1349, 1349, 1349, 2585, 1319, 1220, 1225, 1365, 2588, 1319, 1365, 1342, 1342, 1342, 1342, 1345, 1345, 1345, 1345, 2497, 1365, 1319, 2591, 1365, 1342, 1365, 1767, 2241, 1345, 1342, 2241, 1345, 2584, 2213, 1225, 1225, 1296, 1296, 1296, 1296, 1296, 1342, 2213, 1296, 2241, 1319, 1296, 1296, 1296, 1296, 1767, 1296, 1296, 1296, 1296, 1296, 1347, 1347, 1347, 1347, 1350, 1350, 1350, 1350, 1364, 1342, 2586, 1364, 1369, 1369, 1369, 1369, 1347, 1350, 1767, 1373, 1350, 1364, 1373, 2591, 2584, 2592, 1364, 2503, 2109, 2109, 1369, 1376, 1376, 1376, 1376, 2160, 2109, 1373, 1364, 1379, 1379, 1379, 1379, 1380, 1380, 1380, 1380, 2634, 1767, 1373, 1382, 1382, 1382, 1382, 2503, 2635, 1376, 1384, 1384, 1384, 1384, 2160, 1364, 2586, 1379, 2109, 2593, 2527, 1380, 2592, 1380, 2636, 2595, 1373, 1389, 1389, 1389, 1389, 1399, 1399, 1399, 1399, 1401, 1401, 1401, 1401, 1402, 1402, 1402, 1402, 1403, 1403, 1403, 1403, 2527, 1419, 1419, 1419, 1419, 1421, 1421, 1421, 1421, 1399, 2531, 1769, 2457, 1401, 1419, 2457, 2593, 1402, 2639, 1419, 1422, 1422, 1422, 1422, 1427, 1427, 1427, 1427, 2457, 1379, 1658, 1419, 1658, 1422, 2595, 1769, 1422, 2531, 1422, 2599, 1424, 1424, 2132, 1424, 1424, 2132, 2594, 2640, 1424, 1658, 1422, 2598, 2644, 2655, 1424, 1419, 1424, 1424, 1658, 1769, 1424, 1424, 1425, 1425, 1425, 1425, 1428, 1428, 1428, 1428, 2601, 2132, 1401, 2135, 1422, 2163, 2135, 1556, 1425, 1428, 1556, 1556, 1428, 1429, 1429, 1658, 1429, 1429, 1556, 1769, 2599, 1429, 1425, 1556, 2594, 2598, 1428, 1429, 2222, 1429, 1429, 2163, 2135, 1429, 1429, 1430, 1430, 1430, 1430, 1476, 1476, 1476, 1476, 2601, 2656, 2657, 1425, 1556, 1430, 2658, 1428, 1477, 1477, 1477, 1477, 1502, 1502, 1502, 1502, 2660, 1506, 1506, 1506, 1506, 1477, 1430, 1510, 1510, 1510, 1510, 2222, 1503, 1503, 1503, 1503, 1520, 1520, 1520, 1520, 2602, 1502, 1505, 1505, 1505, 1505, 1506, 2222, 2603, 2222, 1430, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 2257, 2258, 2270, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1508, 1508, 1508, 1508, 1509, 1509, 1509, 1509, 1512, 1512, 1512, 1512, 1516, 1516, 1516, 1516, 2257, 2258, 2270, 1512, 2110, 2110, 2602, 1516, 2162, 1508, 2603, 2663, 2110, 1509, 1519, 1519, 1519, 1519, 1512, 2612, 2271, 2162, 1516, 1521, 1521, 1521, 1521, 2370, 2613, 1519, 1522, 1522, 1522, 1522, 2162, 1523, 1523, 1523, 1523, 1522, 2606, 2110, 2665, 1522, 1523, 1512, 2271, 2162, 1523, 2666, 1528, 1528, 1528, 2370, 1528, 1543, 1543, 1543, 1543, 1544, 1544, 1544, 1544, 1545, 1545, 1545, 1545, 2612, 1508, 1528, 1546, 1546, 1546, 1546, 1547, 1547, 1547, 1547, 1516, 2613, 2606, 1528, 1548, 1548, 1548, 1548, 2569, 1547, 2118, 2569, 1547, 2138, 2596, 1549, 2138, 2604, 1565, 2118, 1549, 1565, 1582, 1582, 1582, 1582, 2610, 1528, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1560, 2118, 1560, 1560, 1560, 1571, 1575, 2138, 1571, 1575, 2118, 1560, 1565, 2440, 2667, 1561, 1560, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1565, 2468, 1565, 2569, 1567, 2604, 1567, 1571, 1575, 1576, 2596, 1567, 2440, 1560, 2668, 1576, 1576, 2669, 1567, 2670, 1571, 1571, 2610, 2671, 2672, 1575, 1565, 2468, 1561, 1565, 1567, 1549, 1567, 2673, 2674, 1576, 1582, 1567, 1637, 1637, 1637, 1637, 1576, 1576, 2675, 1567, 1571, 1571, 1581, 1581, 1581, 1581, 1575, 1570, 1570, 1570, 2676, 2605, 1561, 1563, 1563, 1563, 1563, 1563, 1563, 2469, 1563, 1563, 1570, 1563, 1563, 2607, 1563, 1563, 2678, 1563, 1563, 1563, 1563, 1570, 1583, 1583, 1583, 1583, 2470, 1563, 1563, 1563, 1563, 1563, 1563, 2469, 1563, 1563, 1570, 1563, 1563, 1577, 1563, 1563, 1577, 2605, 1563, 1563, 1563, 1563, 1570, 1829, 1581, 1829, 2470, 2472, 1577, 1829, 1577, 2607, 2480, 1581, 1829, 1829, 1829, 1581, 2140, 1577, 1581, 2140, 1577, 1585, 1585, 1585, 1585, 2621, 1588, 1588, 1588, 1588, 2484, 2472, 2619, 1577, 2616, 1577, 2480, 1605, 1605, 1605, 1605, 2679, 2680, 2597, 1583, 2140, 2703, 2638, 1604, 1604, 1604, 1604, 2141, 2705, 1605, 2141, 2484, 1607, 1607, 1607, 1607, 1603, 1603, 1603, 1603, 1604, 1623, 1623, 1623, 1623, 1611, 1611, 1611, 1611, 1607, 2638, 2707, 2621, 1603, 1623, 2619, 2141, 1623, 1588, 1623, 2597, 1629, 1611, 2614, 1629, 1585, 1588, 2616, 2597, 1605, 1714, 1714, 1714, 1714, 1629, 1585, 1599, 1629, 1629, 1605, 2488, 1599, 1605, 2708, 1599, 2710, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1603, 2128, 2617, 1604, 1599, 1607, 1611, 2128, 2128, 1603, 2488, 2489, 2492, 1603, 1611, 1607, 1603, 1633, 1633, 1633, 1633, 1635, 1635, 1635, 1635, 2713, 2614, 2128, 1599, 1636, 1636, 1636, 1636, 2714, 2128, 2128, 1648, 2489, 2492, 2715, 1648, 1648, 1633, 1648, 1648, 1648, 1635, 2718, 1648, 2719, 1648, 1836, 2103, 1836, 1636, 2103, 2617, 1836, 1599, 1601, 1648, 2720, 1836, 2721, 1601, 2103, 2618, 1601, 2103, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1660, 1660, 1660, 1660, 1601, 2722, 1648, 2504, 1648, 1648, 1692, 1692, 1692, 1692, 1692, 2723, 2726, 2727, 1661, 1661, 1661, 1661, 1715, 1715, 1715, 1715, 1635, 1652, 1601, 2729, 1660, 1652, 1652, 2504, 1652, 1652, 1652, 1648, 1656, 1652, 2618, 1652, 1656, 1656, 2514, 1656, 1656, 1656, 1661, 2521, 1656, 1652, 1656, 2731, 1660, 1836, 1836, 2142, 1601, 1647, 2142, 2732, 1656, 1647, 1647, 2677, 1647, 1647, 1647, 2733, 2514, 1647, 1661, 1647, 2677, 2521, 1652, 2734, 1652, 1652, 1647, 2735, 1647, 1647, 1647, 2725, 2142, 1656, 2725, 1656, 1656, 1697, 1697, 1697, 1697, 1697, 1702, 1702, 1702, 1702, 1702, 1707, 1707, 1707, 1707, 1707, 2728, 1652, 1647, 2728, 1647, 1647, 1717, 1717, 1717, 1717, 1717, 2530, 1656, 1718, 1718, 1718, 1718, 1719, 1719, 1719, 1719, 1719, 1721, 1721, 1721, 1721, 1722, 1722, 1722, 1722, 2537, 2736, 2144, 1647, 1651, 2144, 2738, 2530, 1651, 1651, 2608, 1651, 1651, 1651, 2145, 2739, 1651, 2145, 1651, 1723, 1723, 1723, 1723, 2740, 2741, 1651, 2537, 1651, 1651, 1651, 2742, 2144, 1725, 1725, 1725, 1725, 1726, 1726, 1726, 1726, 2538, 1726, 2541, 2145, 1723, 1727, 1727, 1727, 1727, 1728, 1728, 1728, 1728, 1651, 2608, 1651, 1651, 1725, 2743, 2608, 2627, 1726, 1782, 1782, 1782, 1782, 2538, 2744, 2541, 1792, 1727, 1792, 2615, 1782, 2745, 1792, 1809, 1809, 1809, 1809, 1792, 1792, 1792, 2746, 1651, 1655, 2627, 1782, 1792, 1655, 1655, 1795, 1655, 1655, 1655, 2730, 2747, 1655, 2730, 1655, 1795, 1795, 1795, 1795, 1795, 2748, 1655, 2749, 1655, 1655, 1655, 1807, 1807, 1807, 1807, 1807, 1725, 1807, 1814, 1814, 1814, 1814, 1807, 1807, 1807, 1810, 1810, 1810, 1810, 1823, 1807, 2615, 2615, 2750, 1655, 1832, 1655, 1655, 1823, 1823, 1823, 1823, 1823, 1810, 1832, 1832, 1832, 1832, 1832, 1839, 1845, 1845, 1845, 1845, 1846, 1846, 1846, 1846, 1839, 1839, 1839, 1839, 1839, 2751, 2752, 1655, 1847, 1847, 1847, 1847, 1848, 1848, 1848, 1848, 2753, 1845, 2754, 2146, 2755, 1846, 2146, 1846, 1849, 1849, 1849, 1849, 1850, 1850, 1850, 1850, 1851, 1851, 1851, 1851, 2756, 2757, 2760, 1848, 1852, 1852, 1852, 1852, 1853, 1853, 1853, 1853, 2146, 2148, 2761, 1849, 2148, 1850, 2763, 2764, 2765, 1851, 1856, 1856, 1856, 1856, 1864, 2766, 2767, 1852, 1884, 1884, 1884, 1884, 2768, 1864, 1864, 1864, 1864, 1864, 1845, 2769, 2148, 1884, 1885, 1885, 1885, 1885, 1886, 1886, 1886, 1886, 1893, 1893, 1893, 1893, 1894, 1894, 1894, 1894, 1895, 1895, 1895, 1895, 1897, 1897, 1897, 1897, 2770, 1885, 2771, 2609, 2737, 1886, 2609, 2737, 1850, 1893, 2772, 2149, 2773, 1894, 2149, 1894, 1898, 1898, 1898, 1898, 2609, 1897, 2774, 1897, 1899, 1899, 1899, 1899, 1900, 1900, 1900, 1900, 1901, 1901, 1901, 1901, 1903, 1903, 1903, 1903, 2149, 1898, 2775, 1898, 1902, 1902, 1902, 1902, 2776, 1899, 2777, 1899, 2778, 1900, 2780, 1900, 2781, 1901, 2782, 1901, 2609, 1903, 2779, 1903, 1904, 1904, 1904, 1904, 1893, 1902, 1897, 1902, 2786, 2787, 1905, 1905, 1905, 1905, 2788, 1906, 1906, 1906, 1906, 2758, 1898, 1899, 2758, 2239, 2779, 1904, 2239, 1904, 1907, 1907, 1907, 1907, 2789, 1901, 1900, 1905, 2239, 1905, 2790, 2239, 1906, 1902, 1906, 1908, 1908, 1908, 1908, 2491, 1903, 1909, 1909, 1909, 1909, 1907, 2791, 1907, 1910, 1910, 1910, 1910, 2491, 1904, 2783, 2792, 1911, 1911, 1911, 1911, 1908, 2793, 1908, 2794, 2153, 2491, 1909, 2153, 1909, 1912, 1912, 1912, 1912, 1910, 2156, 1910, 2795, 2156, 2491, 1905, 2783, 1911, 1906, 1911, 2797, 2620, 2799, 1907, 1913, 1913, 1913, 1913, 2157, 2153, 1912, 2157, 1912, 2821, 1914, 1914, 1914, 1914, 2803, 2156, 1908, 2802, 1915, 1915, 1915, 1915, 2828, 2759, 2846, 1913, 2759, 1913, 1909, 1916, 1916, 1916, 1916, 2157, 2759, 1914, 1910, 1914, 2620, 1911, 2803, 2801, 1912, 1915, 2802, 1915, 1917, 1917, 1917, 1917, 1918, 1918, 1918, 1918, 2620, 2813, 1916, 1919, 1919, 1919, 1919, 1920, 1920, 1920, 1920, 1921, 1921, 1921, 1921, 2801, 1913, 2850, 2854, 1917, 2164, 1918, 2820, 2164, 2856, 1914, 2858, 2813, 1919, 2825, 1919, 1922, 1922, 1922, 1922, 2861, 2863, 2865, 1921, 1915, 1927, 1927, 1927, 1927, 1932, 1932, 1932, 1932, 2820, 2164, 1937, 1938, 1938, 1938, 1938, 1932, 2825, 2868, 1922, 1937, 1937, 1937, 1937, 1937, 1940, 1940, 1940, 1940, 1943, 1943, 1943, 1943, 1944, 1944, 1944, 1944, 1945, 1945, 1945, 1945, 1918, 1947, 1947, 1947, 1947, 1948, 1948, 1948, 1948, 1949, 1949, 1949, 1949, 1943, 2831, 2832, 2835, 1944, 2031, 2031, 2031, 2031, 1954, 2873, 2877, 2888, 1947, 2890, 2892, 2894, 1948, 1954, 1954, 1954, 1954, 1954, 2023, 2023, 2023, 2023, 2831, 2832, 2835, 2031, 2032, 2032, 2032, 2032, 2033, 2033, 2033, 2033, 2023, 2038, 2038, 2038, 2038, 2039, 2039, 2039, 2039, 2040, 2040, 2040, 2040, 2048, 2048, 2048, 2048, 2032, 2898, 2032, 1943, 2047, 2047, 2047, 2047, 2165, 2038, 2848, 2165, 2048, 2039, 2899, 2901, 1947, 2047, 2049, 2049, 2049, 2049, 2050, 2050, 2050, 2050, 2048, 2069, 2069, 2069, 2069, 2049, 2906, 2031, 2047, 2050, 2848, 2165, 2050, 2072, 2072, 2072, 2072, 2872, 2082, 2082, 2082, 2082, 2049, 2876, 2048, 2907, 2050, 2087, 2087, 2087, 2087, 2908, 2047, 2083, 2083, 2083, 2083, 2909, 2085, 2085, 2085, 2085, 2038, 2082, 2872, 2910, 2049, 2911, 2166, 2876, 2050, 2166, 2083, 2083, 2083, 2083, 2083, 2083, 2083, 2084, 2084, 2084, 2084, 2085, 2086, 2086, 2086, 2086, 2169, 2169, 2169, 2169, 2101, 2101, 2101, 2101, 2912, 2166, 2084, 2084, 2084, 2084, 2084, 2084, 2084, 2101, 2913, 2914, 2101, 2086, 2102, 2102, 2102, 2102, 2105, 2167, 2915, 2117, 2167, 2105, 2117, 2916, 2240, 2102, 2920, 2240, 2102, 2105, 2105, 2105, 2105, 2105, 2105, 2105, 2107, 2240, 2924, 2127, 2240, 2107, 2127, 2925, 2085, 2926, 2167, 2881, 2117, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2111, 2882, 2112, 2111, 2111, 2112, 2112, 2117, 2119, 2887, 2119, 2111, 2127, 2112, 2927, 2119, 2111, 2881, 2112, 2928, 2919, 2930, 2119, 2919, 2122, 2122, 2122, 2882, 2375, 2127, 2931, 2375, 2933, 2117, 2119, 2887, 2119, 2934, 2105, 2122, 2111, 2119, 2112, 2174, 2174, 2174, 2174, 2932, 2936, 2119, 2176, 2176, 2176, 2176, 2228, 2932, 2127, 2375, 2107, 2114, 2181, 2181, 2181, 2181, 2114, 2122, 2946, 2114, 2942, 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2114, 2129, 2951, 2938, 2129, 2187, 2187, 2187, 2187, 2194, 2194, 2194, 2194, 2951, 2953, 2982, 2129, 2422, 2129, 2937, 2422, 2228, 2936, 2983, 2228, 2985, 2986, 2129, 2464, 2114, 2129, 2464, 2946, 2228, 2228, 2229, 2229, 2229, 2229, 2244, 2244, 2244, 2244, 2129, 2939, 2129, 2422, 2942, 2242, 2242, 2242, 2242, 2229, 2243, 2243, 2243, 2243, 2464, 2953, 2114, 2203, 2938, 2203, 2203, 2203, 2203, 2203, 2203, 2203, 2203, 2203, 2203, 2937, 2242, 2262, 2262, 2262, 2262, 2243, 2263, 2263, 2263, 2263, 2264, 2264, 2264, 2264, 2304, 2304, 2304, 2304, 2955, 2302, 2302, 2302, 2302, 2280, 2939, 2950, 2262, 2203, 2292, 2945, 2987, 2263, 2280, 2280, 2280, 2280, 2280, 2292, 2292, 2292, 2292, 2292, 2296, 2203, 2302, 2957, 2993, 2332, 2332, 2332, 2332, 2296, 2296, 2296, 2296, 2296, 2947, 2203, 2236, 2242, 2332, 2967, 2955, 2236, 2949, 2952, 2236, 2965, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2300, 2950, 2948, 2945, 2236, 2311, 2959, 2262, 2954, 2300, 2300, 2300, 2300, 2300, 2311, 2311, 2311, 2311, 2311, 2336, 2336, 2336, 2336, 2957, 2466, 2302, 2947, 2466, 2236, 2337, 2337, 2337, 2337, 2967, 2949, 2338, 2338, 2338, 2338, 2363, 2445, 2445, 2445, 2445, 2336, 2952, 2336, 2965, 2363, 2363, 2363, 2363, 2363, 2466, 2337, 2948, 2337, 2994, 2236, 2237, 2338, 2954, 2338, 2471, 2237, 2445, 2471, 2237, 2959, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2339, 2339, 2339, 2339, 2237, 2340, 2340, 2340, 2340, 2341, 2341, 2341, 2341, 2471, 2336, 2995, 2342, 2342, 2342, 2342, 2958, 2343, 2343, 2343, 2343, 2339, 2966, 2339, 2237, 2338, 2340, 2997, 2340, 2962, 2341, 2968, 2341, 2344, 2344, 2344, 2344, 2342, 3000, 2342, 3003, 2237, 2343, 3005, 2343, 2956, 2345, 2345, 2345, 2345, 2346, 2346, 2346, 2346, 2237, 2972, 2473, 2970, 2344, 2473, 2344, 2347, 2347, 2347, 2347, 2553, 2553, 2553, 2553, 2339, 2340, 2345, 2958, 2345, 2969, 2346, 2966, 2346, 2341, 2342, 2962, 2348, 2348, 2348, 2348, 2473, 2347, 2968, 2347, 3007, 2344, 2343, 2349, 2349, 2349, 2349, 2350, 2350, 2350, 2350, 2351, 2351, 2351, 2351, 2956, 2970, 2348, 2345, 2348, 2352, 2352, 2352, 2352, 2975, 2969, 2346, 2972, 2349, 2347, 2349, 3008, 2350, 3009, 2350, 3011, 2351, 3014, 2351, 2353, 2353, 2353, 2353, 2367, 2976, 2352, 3015, 2352, 2354, 2354, 2354, 2354, 2367, 2367, 2367, 2367, 2367, 2348, 2474, 2973, 3016, 2474, 2349, 3017, 2353, 2475, 2353, 3018, 2475, 3019, 3020, 2351, 2975, 2354, 2350, 2354, 2446, 2446, 2446, 2446, 2351, 2477, 2478, 2479, 2477, 2478, 2479, 2474, 2481, 2352, 2483, 2481, 2976, 2483, 2475, 2446, 2446, 2446, 2446, 2446, 2446, 2446, 2353, 2485, 3021, 2486, 2485, 3022, 2486, 2973, 2477, 2478, 2479, 2664, 2664, 2664, 2664, 2481, 2493, 2483, 2494, 2493, 3023, 2494, 2354, 2461, 2495, 3024, 2496, 2495, 2461, 2496, 2485, 2461, 2486, 2461, 2461, 2461, 2461, 2461, 2461, 2461, 2461, 2461, 2461, 2499, 2974, 2493, 2499, 2494, 2501, 2505, 3025, 2501, 2505, 2495, 2507, 2496, 2508, 2507, 2510, 2508, 2512, 2510, 2515, 2512, 2517, 2515, 2519, 2517, 3026, 2519, 2522, 2461, 2499, 2522, 3027, 3029, 2525, 2501, 2505, 2525, 3030, 3054, 3055, 2507, 2974, 2508, 3058, 2510, 3059, 2512, 3060, 2515, 2974, 2517, 2526, 2519, 3061, 2526, 3064, 2522, 2528, 2461, 2462, 2528, 3065, 2525, 2532, 2462, 2535, 2532, 2462, 2535, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2536, 2526, 2539, 2536, 3066, 2539, 2540, 2528, 2542, 2540, 3070, 2542, 3071, 2532, 2544, 2535, 2546, 2544, 2548, 2546, 2550, 2548, 3073, 2550, 2555, 2555, 2555, 2555, 2462, 2536, 3068, 2539, 3075, 3068, 3077, 2540, 3078, 2542, 2571, 2571, 2571, 2571, 3079, 2544, 3080, 2546, 3082, 2548, 3083, 2550, 2587, 2587, 2587, 2587, 2631, 2631, 2631, 2631, 2462, 2589, 2589, 2589, 2589, 2611, 2611, 2611, 2611, 2587, 2622, 2632, 2632, 2632, 2632, 3084, 3072, 3074, 2589, 3072, 3074, 2622, 2611, 3086, 2631, 2681, 2681, 2681, 2681, 2622, 2712, 3087, 2643, 2712, 2622, 3089, 3091, 2648, 2681, 2632, 2555, 2643, 2643, 2643, 2643, 2643, 2648, 2648, 2648, 2648, 2648, 3092, 3093, 3081, 2571, 2583, 3081, 3076, 2622, 2712, 2583, 3094, 3095, 2583, 3076, 2583, 2583, 2583, 2583, 2583, 2583, 2583, 2583, 2583, 2583, 2589, 3096, 3097, 3101, 2611, 2651, 2682, 2682, 2682, 2682, 2654, 3102, 3104, 2622, 2651, 2651, 2651, 2651, 2651, 2654, 2654, 2654, 2654, 2654, 2683, 2683, 2683, 2683, 2583, 3085, 3105, 2682, 3085, 2682, 3106, 2684, 2684, 2684, 2684, 3090, 3107, 2685, 2685, 2685, 2685, 2583, 3090, 3088, 3108, 2683, 3088, 2683, 3109, 3110, 2686, 2686, 2686, 2686, 2583, 2623, 2684, 3111, 2684, 3114, 2623, 3115, 2685, 2623, 2685, 2623, 2623, 2623, 2623, 2623, 2623, 2623, 2623, 2623, 2623, 2686, 3116, 2686, 3117, 2623, 3118, 2687, 2687, 2687, 2687, 3120, 3121, 3122, 2689, 2689, 2689, 2689, 3123, 2688, 2688, 2688, 2688, 3124, 2716, 2762, 2684, 2716, 2762, 2623, 3098, 3126, 2687, 3098, 2687, 3129, 3134, 2686, 2685, 2689, 3099, 2689, 3138, 3099, 2688, 3140, 2688, 2702, 2702, 2702, 2702, 3099, 3142, 2716, 2762, 2704, 2704, 2704, 2704, 2623, 2624, 2690, 2690, 2690, 2690, 2624, 2704, 3145, 2624, 2687, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2688, 3119, 3147, 3149, 2624, 2689, 2690, 3152, 2690, 2691, 2691, 2691, 2691, 2692, 2692, 2692, 2692, 2693, 2693, 2693, 2693, 2694, 2694, 2694, 2694, 3155, 2798, 3119, 2624, 2798, 2800, 2624, 3166, 2800, 2691, 3168, 2691, 3170, 2692, 3172, 2692, 3181, 2693, 3132, 2693, 3154, 2694, 3187, 2694, 2695, 2695, 2695, 2695, 3159, 2804, 2798, 2690, 2804, 2624, 2800, 2696, 2696, 2696, 2696, 2697, 2697, 2697, 2697, 2691, 3132, 2806, 3154, 2692, 2806, 2695, 3193, 2695, 3197, 3199, 3159, 2694, 3202, 3204, 2804, 2693, 2696, 3205, 2696, 3160, 2697, 3206, 2697, 3211, 2698, 2698, 2698, 2698, 3165, 3212, 2806, 3178, 2699, 2699, 2699, 2699, 2700, 2700, 2700, 2700, 2701, 2701, 2701, 2701, 2807, 3160, 3192, 2807, 2696, 2698, 2809, 2698, 3196, 2809, 3165, 2695, 2697, 2699, 3178, 2699, 3213, 2700, 3214, 2700, 3215, 2701, 3216, 2701, 2784, 2784, 2784, 2784, 3192, 2807, 2903, 2903, 2903, 2903, 3196, 2809, 3218, 2698, 2785, 2785, 2785, 2785, 3219, 2784, 2784, 2784, 2784, 2784, 2784, 2784, 3220, 2796, 2811, 2701, 3221, 2811, 2796, 2785, 2785, 2785, 2785, 2785, 2785, 2785, 2796, 2796, 2796, 2796, 2796, 2796, 2796, 2814, 2816, 2818, 2814, 2816, 2818, 2822, 3227, 2823, 2822, 2811, 2823, 2826, 2829, 2830, 2826, 2829, 2830, 2833, 2834, 2836, 2833, 2834, 2836, 2838, 2840, 3228, 2838, 2840, 2814, 2816, 2818, 3229, 2842, 3230, 2822, 2842, 2823, 3231, 3233, 3236, 2826, 2829, 2830, 3237, 2796, 3238, 2833, 2834, 2836, 3239, 3249, 2844, 2838, 2840, 2844, 2845, 2847, 2796, 2845, 2847, 2849, 2842, 2851, 2849, 2852, 2851, 2855, 2852, 2857, 2855, 2859, 2857, 2860, 2859, 2862, 2860, 2864, 2862, 2866, 2864, 2844, 2866, 3242, 2867, 2845, 2847, 2867, 2869, 3251, 2849, 2869, 2851, 3243, 2852, 3249, 2855, 3244, 2857, 3241, 2859, 3248, 2860, 3252, 2862, 3250, 2864, 2870, 2866, 2874, 2870, 2875, 2874, 2867, 2875, 2878, 2879, 2869, 2878, 2879, 2883, 2885, 2889, 2883, 2885, 2889, 2891, 2893, 2895, 2891, 2893, 2895, 2896, 3243, 3217, 2896, 2870, 3217, 2874, 3242, 2875, 3251, 3241, 3286, 2878, 2879, 3252, 3250, 3248, 2883, 2885, 2889, 3254, 3244, 3253, 2891, 2893, 2895, 3269, 3287, 3256, 2896, 2904, 2904, 2904, 2904, 2905, 2905, 2905, 2905, 2917, 2917, 2917, 2917, 2918, 2918, 2918, 2918, 2921, 2921, 2921, 2921, 2923, 2923, 2923, 2923, 2929, 2929, 2929, 2929, 2940, 2940, 2940, 2940, 2943, 2943, 2943, 2943, 2944, 2944, 2944, 2944, 2960, 2960, 2960, 2960, 3253, 2940, 3256, 2984, 3254, 2943, 2984, 3260, 2998, 2944, 3269, 2998, 3257, 2960, 2961, 2961, 2961, 2961, 2963, 2963, 2963, 2963, 2964, 2964, 2964, 2964, 2971, 2971, 2971, 2971, 2978, 2961, 2984, 2979, 3259, 2963, 2998, 3259, 3290, 2964, 3276, 2978, 3258, 2971, 2979, 2979, 2921, 2929, 2935, 3291, 3260, 3259, 2979, 2935, 2978, 3261, 2935, 2979, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 3257, 2988, 2988, 2988, 2988, 3292, 2989, 2989, 2989, 2989, 2978, 2989, 3056, 2979, 2963, 3056, 2990, 2990, 2990, 2990, 2992, 2992, 2992, 2992, 2963, 2971, 3258, 3262, 2935, 2988, 3276, 2991, 2991, 2991, 2991, 2935, 2991, 3298, 3300, 3261, 2978, 3056, 3271, 2979, 2990, 3012, 3012, 3012, 3012, 3013, 3013, 3013, 3013, 3028, 3028, 3028, 3028, 3265, 2935, 2941, 2941, 2941, 3305, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 3262, 2941, 3267, 2941, 3031, 3031, 3031, 3031, 3032, 3032, 3032, 3032, 2941, 2941, 2941, 2941, 2941, 3271, 3033, 3033, 3033, 3033, 3034, 3034, 3034, 3034, 3265, 3263, 3273, 3031, 3311, 3031, 3313, 3032, 3314, 3032, 3315, 3062, 3317, 2941, 3062, 2941, 2941, 3033, 3320, 3033, 3267, 3034, 3321, 3034, 3035, 3035, 3035, 3035, 3050, 3050, 3050, 3050, 3323, 3345, 3272, 3051, 3051, 3051, 3051, 3346, 3062, 3347, 2941, 2941, 2941, 2980, 3051, 3349, 3270, 3035, 3273, 3035, 3350, 2980, 3263, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 3036, 3036, 3036, 3036, 2980, 3037, 3037, 3037, 3037, 3039, 3039, 3039, 3039, 3351, 3277, 3278, 3035, 3353, 3038, 3038, 3038, 3038, 3272, 3354, 3357, 3036, 3131, 3036, 2980, 3131, 3037, 3358, 3037, 3279, 3039, 3270, 3039, 3359, 3040, 3040, 3040, 3040, 3360, 3038, 2980, 3038, 3052, 3052, 3052, 3052, 3103, 3103, 3103, 3103, 3361, 3131, 3362, 3052, 2980, 2981, 3363, 3365, 3037, 3040, 2981, 3040, 3277, 2981, 3278, 2981, 2981, 2981, 2981, 2981, 2981, 2981, 2981, 2981, 2981, 3038, 3366, 3369, 3371, 2981, 3039, 3279, 3041, 3041, 3041, 3041, 3042, 3042, 3042, 3042, 3043, 3043, 3043, 3043, 3044, 3044, 3044, 3044, 3045, 3045, 3045, 3045, 3133, 2981, 3367, 3133, 3373, 3041, 3040, 3041, 3374, 3042, 3375, 3042, 3376, 3043, 3377, 3043, 3367, 3044, 3378, 3044, 3379, 3045, 2981, 3045, 3046, 3046, 3046, 3046, 3380, 3133, 3381, 2981, 3047, 3047, 3047, 3047, 3048, 3048, 3048, 3048, 3383, 3049, 3049, 3049, 3049, 3207, 3207, 3207, 3207, 3046, 3384, 3046, 3135, 3136, 3041, 3135, 3136, 3047, 3045, 3047, 3130, 3048, 3385, 3048, 3386, 3130, 3049, 3044, 3049, 3139, 3387, 3388, 3139, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3141, 3135, 3136, 3141, 3143, 3144, 3355, 3143, 3144, 3355, 3146, 3148, 3046, 3146, 3148, 3389, 3150, 3151, 3139, 3150, 3151, 3153, 3156, 3157, 3153, 3156, 3157, 3161, 3049, 3141, 3161, 3391, 3392, 3143, 3144, 3130, 3393, 3394, 3163, 3146, 3148, 3163, 3395, 3396, 3167, 3150, 3151, 3167, 3398, 3399, 3153, 3156, 3157, 3400, 3169, 3408, 3161, 3169, 3130, 3171, 3173, 3174, 3171, 3173, 3174, 3176, 3179, 3163, 3176, 3179, 3405, 3182, 3183, 3167, 3182, 3183, 3185, 3188, 3189, 3185, 3188, 3189, 3190, 3169, 3194, 3190, 3415, 3194, 3171, 3173, 3174, 3419, 3421, 3195, 3176, 3179, 3195, 3405, 3424, 3198, 3182, 3183, 3198, 3426, 3429, 3185, 3188, 3189, 3431, 3200, 3433, 3190, 3200, 3194, 3201, 3203, 3356, 3201, 3203, 3356, 3437, 3445, 3195, 3208, 3208, 3208, 3208, 3446, 3198, 3209, 3209, 3209, 3209, 3222, 3222, 3222, 3222, 3448, 3200, 3224, 3224, 3224, 3224, 3201, 3203, 3226, 3226, 3226, 3226, 3232, 3232, 3232, 3232, 3234, 3234, 3234, 3234, 3235, 3235, 3235, 3235, 3255, 3255, 3255, 3255, 3255, 3255, 3264, 3264, 3264, 3264, 3266, 3266, 3266, 3266, 3268, 3268, 3268, 3268, 3274, 3274, 3274, 3274, 3280, 3264, 3414, 3288, 3364, 3266, 3288, 3364, 3449, 3268, 3450, 3280, 3280, 3274, 3275, 3275, 3275, 3275, 3281, 3280, 3293, 3293, 3293, 3293, 3280, 3293, 3451, 3452, 3414, 3281, 3281, 3275, 3288, 3295, 3295, 3295, 3295, 3281, 3295, 3418, 3301, 3439, 3281, 3301, 3234, 3240, 3453, 3455, 3280, 3302, 3240, 3368, 3302, 3240, 3368, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3418, 3281, 3439, 3301, 3456, 3274, 3297, 3297, 3297, 3297, 3457, 3458, 3302, 3280, 3299, 3299, 3299, 3299, 3303, 3460, 3464, 3303, 3307, 3307, 3307, 3307, 3370, 3348, 3240, 3370, 3348, 3281, 3465, 3372, 3469, 3303, 3372, 3303, 3303, 3303, 3303, 3303, 3303, 3308, 3308, 3308, 3308, 3240, 3309, 3309, 3309, 3309, 3310, 3310, 3310, 3310, 3348, 3470, 3240, 3246, 3246, 3246, 3471, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3472, 3246, 3483, 3246, 3312, 3312, 3312, 3312, 3318, 3318, 3318, 3318, 3246, 3246, 3246, 3246, 3246, 3512, 3316, 3316, 3316, 3316, 3319, 3319, 3319, 3319, 3322, 3322, 3322, 3322, 3325, 3325, 3325, 3325, 3515, 3325, 3516, 3403, 3517, 3246, 3403, 3246, 3246, 3316, 3483, 3343, 3343, 3343, 3343, 3334, 3334, 3334, 3334, 3474, 3490, 3325, 3343, 3325, 3382, 3382, 3382, 3382, 3326, 3326, 3326, 3326, 3403, 3476, 3246, 3246, 3246, 3247, 3247, 3247, 3334, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3247, 3326, 3247, 3326, 3247, 3247, 3316, 3327, 3327, 3327, 3327, 3474, 3247, 3247, 3247, 3247, 3247, 3247, 3490, 3328, 3328, 3328, 3328, 3329, 3329, 3329, 3329, 3331, 3331, 3331, 3331, 3475, 3327, 3480, 3327, 3330, 3330, 3330, 3330, 3476, 3247, 3247, 3247, 3247, 3328, 3475, 3328, 3519, 3329, 3486, 3329, 3484, 3331, 3520, 3331, 3447, 3447, 3447, 3447, 3482, 3330, 3521, 3330, 3406, 3409, 3454, 3406, 3409, 3454, 3247, 3247, 3247, 3282, 3332, 3332, 3332, 3332, 3282, 3328, 3485, 3282, 3480, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3282, 3406, 3409, 3330, 3484, 3282, 3486, 3332, 3482, 3332, 3331, 3333, 3333, 3333, 3333, 3335, 3335, 3335, 3335, 3336, 3336, 3336, 3336, 3337, 3337, 3337, 3337, 3492, 3488, 3282, 3338, 3338, 3338, 3338, 3522, 3524, 3333, 3485, 3333, 3491, 3335, 3529, 3335, 3332, 3336, 3494, 3336, 3493, 3337, 3533, 3337, 3410, 3496, 3501, 3410, 3338, 3535, 3338, 3495, 3282, 3283, 3339, 3339, 3339, 3339, 3283, 3537, 3492, 3283, 3502, 3283, 3283, 3283, 3283, 3283, 3283, 3283, 3283, 3283, 3283, 3410, 3488, 3335, 3491, 3283, 3333, 3339, 3493, 3339, 3340, 3340, 3340, 3340, 3342, 3342, 3342, 3342, 3494, 3495, 3341, 3341, 3341, 3341, 3496, 3412, 3501, 3416, 3412, 3283, 3416, 3461, 3461, 3461, 3461, 3340, 3540, 3340, 3504, 3342, 3545, 3342, 3502, 3339, 3547, 3341, 3283, 3341, 3402, 3463, 3463, 3463, 3463, 3402, 3412, 3563, 3416, 3566, 3567, 3283, 3284, 3402, 3402, 3402, 3402, 3402, 3402, 3402, 3284, 3506, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3284, 3417, 3341, 3420, 3417, 3284, 3420, 3504, 3422, 3423, 3425, 3422, 3423, 3425, 3427, 3428, 3430, 3427, 3428, 3430, 3432, 3434, 3435, 3432, 3434, 3435, 3438, 3505, 3440, 3438, 3417, 3440, 3420, 3569, 3507, 3570, 3402, 3422, 3423, 3425, 3573, 3574, 3506, 3427, 3428, 3430, 3575, 3402, 3577, 3432, 3434, 3435, 3578, 3442, 3581, 3438, 3442, 3440, 3443, 3284, 3285, 3443, 3582, 3568, 3571, 3285, 3568, 3571, 3285, 3505, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3285, 3507, 3583, 3442, 3572, 3285, 3586, 3572, 3443, 3462, 3462, 3462, 3462, 3467, 3467, 3467, 3467, 3468, 3468, 3468, 3468, 3477, 3477, 3477, 3477, 3481, 3481, 3481, 3481, 3285, 3487, 3487, 3487, 3487, 3487, 3487, 3518, 3589, 3477, 3518, 3525, 3576, 3481, 3525, 3576, 3285, 3489, 3489, 3489, 3489, 3498, 3498, 3498, 3498, 3499, 3499, 3499, 3499, 3590, 3285, 3592, 3510, 3594, 3489, 3596, 3518, 3579, 3498, 3525, 3579, 3598, 3499, 3510, 3500, 3500, 3500, 3500, 3602, 3580, 3585, 3510, 3580, 3585, 3462, 3473, 3510, 3604, 3607, 3588, 3473, 3500, 3588, 3473, 3609, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3503, 3503, 3503, 3503, 3489, 3510, 3523, 3523, 3523, 3523, 3530, 3530, 3530, 3530, 3611, 3587, 3621, 3503, 3587, 3526, 3595, 3624, 3526, 3595, 3499, 3628, 3587, 3527, 3473, 3630, 3527, 3473, 3633, 3634, 3637, 3510, 3526, 3638, 3526, 3526, 3526, 3526, 3526, 3526, 3527, 3640, 3527, 3527, 3527, 3527, 3527, 3527, 3531, 3531, 3531, 3531, 3641, 3642, 3473, 3478, 3478, 3478, 3646, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3478, 3647, 3478, 3528, 3478, 3478, 3528, 3532, 3532, 3532, 3532, 3648, 3478, 3478, 3478, 3478, 3478, 3478, 3649, 3664, 3528, 3671, 3528, 3528, 3528, 3528, 3528, 3528, 3534, 3534, 3534, 3534, 3536, 3536, 3536, 3536, 3538, 3538, 3538, 3538, 3478, 3478, 3478, 3478, 3539, 3539, 3539, 3539, 3680, 3657, 3541, 3541, 3541, 3541, 3654, 3683, 3661, 3536, 3658, 3684, 3688, 3538, 3542, 3542, 3542, 3542, 3689, 3664, 3695, 3478, 3478, 3478, 3479, 3479, 3479, 3541, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3479, 3696, 3479, 3699, 3479, 3479, 3543, 3543, 3543, 3543, 3667, 3654, 3479, 3479, 3479, 3479, 3479, 3479, 3655, 3536, 3657, 3658, 3661, 3538, 3544, 3544, 3544, 3544, 3546, 3546, 3546, 3546, 3548, 3548, 3548, 3548, 3549, 3549, 3549, 3549, 3479, 3479, 3479, 3479, 3554, 3554, 3554, 3554, 3550, 3550, 3550, 3550, 3551, 3551, 3551, 3551, 3700, 3548, 3653, 3548, 3667, 3549, 3655, 3549, 3562, 3562, 3562, 3562, 3613, 3479, 3479, 3479, 3508, 3550, 3662, 3550, 3623, 3551, 3668, 3665, 3508, 3670, 3508, 3508, 3508, 3508, 3508, 3508, 3508, 3508, 3508, 3508, 3605, 3548, 3613, 3605, 3508, 3549, 3553, 3553, 3553, 3553, 3623, 3701, 3552, 3552, 3552, 3552, 3555, 3555, 3555, 3555, 3556, 3556, 3556, 3556, 3557, 3557, 3557, 3557, 3653, 3605, 3550, 3553, 3670, 3553, 3662, 3707, 3716, 3552, 3668, 3552, 3717, 3555, 3718, 3555, 3707, 3556, 3669, 3556, 3722, 3557, 3665, 3606, 3608, 3610, 3606, 3608, 3610, 3674, 3508, 3509, 3558, 3558, 3558, 3558, 3509, 3673, 3553, 3509, 3675, 3509, 3509, 3509, 3509, 3509, 3509, 3509, 3509, 3509, 3509, 3552, 3606, 3608, 3610, 3509, 3672, 3558, 3555, 3558, 3560, 3560, 3560, 3560, 3561, 3561, 3561, 3561, 3669, 3725, 3672, 3559, 3559, 3559, 3559, 3639, 3639, 3639, 3639, 3509, 3674, 3673, 3728, 3612, 3731, 3560, 3612, 3560, 3603, 3561, 3675, 3561, 3692, 3603, 3723, 3692, 3559, 3723, 3559, 3735, 3741, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3614, 3509, 3511, 3614, 3612, 3616, 3617, 3511, 3616, 3617, 3511, 3742, 3511, 3511, 3511, 3511, 3511, 3511, 3511, 3511, 3511, 3511, 3559, 3743, 3559, 3619, 3511, 3622, 3619, 3614, 3622, 3603, 3746, 3625, 3616, 3617, 3625, 3559, 3626, 3559, 3629, 3626, 3747, 3629, 3650, 3650, 3650, 3650, 3724, 3726, 3511, 3724, 3726, 3748, 3619, 3753, 3622, 3727, 3603, 3757, 3727, 3759, 3625, 3651, 3651, 3651, 3651, 3626, 3762, 3629, 3666, 3666, 3666, 3666, 3698, 3698, 3698, 3698, 3765, 3766, 3511, 3513, 3703, 3703, 3703, 3703, 3513, 3666, 3767, 3513, 3770, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3676, 3676, 3676, 3676, 3513, 3677, 3677, 3677, 3677, 3690, 3752, 3774, 3690, 3705, 3705, 3705, 3705, 3676, 3691, 3775, 3730, 3691, 3677, 3730, 3732, 3779, 3690, 3732, 3690, 3690, 3690, 3690, 3690, 3690, 3805, 3691, 3752, 3691, 3691, 3691, 3691, 3691, 3691, 3697, 3697, 3697, 3697, 3704, 3704, 3704, 3704, 3814, 3807, 3815, 3702, 3702, 3702, 3702, 3513, 3514, 3706, 3706, 3706, 3706, 3514, 3807, 3816, 3514, 3697, 3514, 3514, 3514, 3514, 3514, 3514, 3514, 3514, 3514, 3514, 3702, 3820, 3826, 3828, 3514, 3708, 3708, 3708, 3708, 3709, 3709, 3709, 3709, 3710, 3710, 3710, 3710, 3831, 3711, 3711, 3711, 3711, 3840, 3712, 3712, 3712, 3712, 3704, 3514, 3704, 3708, 3853, 3708, 3854, 3709, 3855, 3709, 3733, 3697, 3858, 3733, 3861, 3704, 3711, 3704, 3711, 3736, 3514, 3712, 3736, 3712, 3867, 3868, 3869, 3713, 3713, 3713, 3713, 3514, 3652, 3714, 3714, 3714, 3714, 3652, 3740, 3874, 3652, 3740, 3652, 3652, 3652, 3652, 3652, 3652, 3652, 3652, 3652, 3652, 3713, 3877, 3713, 3881, 3715, 3715, 3715, 3715, 3880, 3711, 3719, 3719, 3719, 3719, 3720, 3720, 3720, 3720, 3712, 3721, 3721, 3721, 3721, 3738, 3739, 3885, 3738, 3739, 3652, 3715, 3745, 3715, 3883, 3745, 3738, 3719, 3739, 3719, 3764, 3764, 3764, 3764, 3772, 3772, 3772, 3772, 3881, 3890, 3880, 3652, 3713, 3750, 3754, 3755, 3750, 3754, 3755, 3895, 3652, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3750, 3754, 3755, 3879, 3883, 3889, 3659, 3659, 3659, 3659, 3659, 3659, 3758, 3760, 3761, 3758, 3760, 3761, 3773, 3773, 3773, 3773, 3821, 3843, 3763, 3821, 3843, 3763, 3777, 3777, 3777, 3777, 3898, 3749, 3659, 3659, 3659, 3659, 3749, 3902, 3903, 3758, 3760, 3761, 3905, 3879, 3749, 3749, 3749, 3749, 3749, 3749, 3749, 3763, 3789, 3789, 3819, 3819, 3819, 3819, 3909, 3889, 3789, 3659, 3659, 3659, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3783, 3783, 3783, 3783, 3789, 3882, 3660, 3660, 3660, 3660, 3660, 3660, 3791, 3791, 3912, 3749, 3844, 3783, 3846, 3844, 3791, 3846, 3847, 3913, 3749, 3847, 3784, 3784, 3784, 3784, 3785, 3785, 3785, 3785, 3660, 3660, 3660, 3660, 3786, 3786, 3786, 3786, 3848, 3784, 3884, 3848, 3892, 3785, 3882, 3791, 3787, 3787, 3787, 3787, 3916, 3786, 3788, 3788, 3788, 3788, 3928, 3932, 3897, 3660, 3660, 3660, 3678, 3787, 3935, 3849, 3940, 3678, 3849, 3788, 3678, 3897, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3784, 3899, 3884, 3892, 3678, 3790, 3790, 3790, 3790, 3824, 3824, 3824, 3824, 3786, 3899, 3886, 3886, 3785, 3792, 3792, 3792, 3792, 3790, 3886, 3793, 3793, 3793, 3793, 3678, 3794, 3794, 3794, 3794, 3941, 3943, 3792, 3796, 3796, 3796, 3796, 3787, 3793, 3825, 3825, 3825, 3825, 3794, 3678, 3797, 3797, 3797, 3797, 3886, 3796, 3827, 3827, 3827, 3827, 3678, 3679, 3829, 3829, 3829, 3829, 3679, 3797, 3950, 3679, 3956, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3827, 3891, 3891, 3851, 3679, 3943, 3851, 3962, 3792, 3891, 3793, 3798, 3798, 3798, 3798, 3851, 3948, 3794, 3799, 3799, 3799, 3799, 3800, 3800, 3800, 3800, 3944, 3964, 3798, 3802, 3802, 3802, 3802, 3923, 3925, 3799, 3923, 3925, 3891, 3800, 3830, 3830, 3830, 3830, 3797, 3926, 3802, 3947, 3926, 3827, 3841, 3841, 3841, 3841, 3872, 3872, 3872, 3872, 3679, 3681, 3832, 3832, 3832, 3832, 3681, 3927, 3948, 3681, 3927, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3799, 3966, 3859, 3944, 3681, 3859, 3832, 3860, 3832, 3959, 3860, 3947, 3798, 3833, 3833, 3833, 3833, 3836, 3836, 3836, 3836, 3862, 3863, 3959, 3862, 3863, 3802, 3875, 3875, 3875, 3875, 3859, 3904, 3904, 3904, 3904, 3860, 3967, 3833, 3968, 3833, 3969, 3836, 3830, 3907, 3907, 3907, 3907, 3970, 3872, 3862, 3863, 3908, 3908, 3908, 3908, 3978, 3979, 3681, 3682, 3682, 3682, 3984, 3985, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3996, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3685, 3685, 3685, 3685, 3685, 3685, 3685, 3685, 3685, 3685, 3685, 3685, 3685, 3685, 3685, 3685, 3685, 3685, 3685, 3685, 3685, 3834, 3834, 3834, 3834, 3951, 3951, 3685, 3685, 3685, 3685, 3685, 3685, 3951, 3835, 3835, 3835, 3835, 4000, 4003, 3837, 3837, 3837, 3837, 3976, 4019, 3834, 3976, 3834, 3838, 3838, 3838, 3838, 3986, 3994, 3685, 3685, 3685, 3685, 3835, 3993, 3835, 3951, 3993, 3857, 3837, 3994, 3837, 4013, 3857, 3911, 3911, 3911, 3911, 3838, 3987, 3838, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3685, 3685, 3685, 3782, 3918, 3918, 3918, 3918, 3782, 3986, 3965, 3782, 3834, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3782, 3837, 3835, 3914, 3914, 3914, 3914, 3887, 3887, 3887, 3887, 3987, 3910, 3910, 3910, 3910, 4026, 3838, 3930, 4013, 3933, 3930, 3857, 3933, 3887, 3917, 3917, 3917, 3917, 3782, 3919, 3919, 3919, 3919, 4035, 4038, 3857, 3910, 3934, 3934, 3934, 3934, 4018, 3998, 4039, 3782, 4018, 3930, 3965, 3933, 3917, 4015, 3917, 3980, 3946, 3919, 3980, 3919, 4041, 3782, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3887, 3980, 3953, 3990, 3914, 3910, 3795, 3795, 3795, 3795, 3795, 3795, 3998, 3920, 3920, 3920, 3920, 3946, 3917, 3919, 3937, 3937, 3937, 3937, 3945, 3945, 3945, 3945, 3949, 3949, 3949, 3949, 4015, 4054, 3795, 3795, 3795, 3795, 3920, 3929, 3920, 3945, 4016, 4020, 3929, 3949, 3953, 3982, 3982, 3982, 3982, 3990, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3983, 3983, 3983, 3983, 3795, 3795, 3795, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3801, 3952, 3952, 3952, 3952, 3989, 4029, 3801, 3801, 3801, 3801, 3801, 3801, 4016, 3971, 3971, 3971, 3971, 3952, 4020, 3929, 3972, 3972, 3972, 3972, 3973, 3973, 3973, 3973, 4065, 4040, 3929, 4068, 4071, 4066, 3801, 3801, 3801, 3801, 3971, 3988, 3988, 3988, 3988, 4040, 4014, 3972, 4030, 3972, 3989, 3973, 4032, 3973, 4005, 4005, 4005, 4005, 3988, 4073, 3992, 3992, 3992, 3992, 4029, 3801, 3801, 3801, 3803, 3974, 3974, 3974, 3974, 3803, 4042, 4070, 3803, 3992, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3803, 3975, 3975, 3975, 3975, 3803, 4014, 3974, 4066, 3974, 4002, 4002, 4002, 4002, 3973, 4004, 4004, 4004, 4004, 4006, 4006, 4006, 4006, 4032, 4030, 4053, 3975, 4069, 4074, 3803, 4067, 4047, 3803, 4042, 4053, 4002, 4007, 4007, 4007, 4007, 4004, 4077, 4067, 4079, 4006, 4070, 4006, 4009, 4009, 4009, 4009, 4011, 4011, 4011, 4011, 4008, 4008, 4008, 4008, 3803, 3804, 4007, 4024, 4024, 4024, 4024, 4082, 4055, 3804, 4072, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 4008, 4047, 4008, 4084, 3804, 4059, 4069, 4024, 4025, 4025, 4025, 4025, 4027, 4027, 4027, 4027, 4028, 4028, 4028, 4028, 4031, 4031, 4031, 4031, 4086, 4044, 4044, 4044, 4044, 4045, 4045, 4045, 4045, 4057, 4057, 4057, 4057, 4031, 4088, 4072, 4089, 4028, 4091, 4028, 3804, 4048, 4048, 4048, 4048, 4008, 4044, 4055, 4093, 4059, 4045, 4095, 4045, 4096, 3804, 3806, 3806, 3806, 4048, 4445, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 4446, 3806, 4803, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3808, 3808, 3808, 4075, 4076, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 3808, 4078, 4083, 4087, 3808, 4046, 4046, 4046, 4046, 4050, 4050, 4050, 4050, 3808, 3808, 3808, 3808, 3808, 4188, 4056, 4056, 4056, 4056, 4188, 4198, 4814, 4050, 4092, 4828, 4198, 4046, 4058, 4058, 4058, 4058, 4081, 4081, 4081, 4081, 4090, 3808, 4185, 3808, 3808, 4056, 2284, 4814, 4076, 4083, 4185, 4075, 4193, 4081, 4219, 4185, 4187, 4187, 4187, 4219, 4223, 4236, 4240, 4193, 4078, 4223, 4236, 4240, 4087, 2283, 3808, 3808, 3808, 3809, 3809, 3809, 2279, 4187, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 3809, 4092, 4261, 3809, 3809, 4195, 4195, 4195, 4261, 4590, 4090, 3809, 3809, 3809, 3809, 3809, 3809, 4197, 4197, 4197, 4260, 4590, 4204, 4204, 4204, 4260, 4195, 4206, 4206, 4206, 4228, 4228, 4228, 4234, 4234, 4234, 4235, 2278, 4197, 3809, 3809, 3809, 3809, 4204, 4235, 4237, 2275, 4237, 4206, 4235, 4257, 4228, 4237, 4286, 4234, 4257, 4257, 4262, 4286, 4307, 4262, 4317, 4334, 2274, 4307, 4262, 4317, 4334, 3809, 3809, 3809, 3810, 3810, 3810, 2268, 2261, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 2260, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3810, 3811, 3811, 3811, 2259, 2254, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 3811, 4255, 4255, 4255, 3811, 4270, 4270, 4270, 4298, 4298, 4298, 4343, 3811, 3811, 3811, 3811, 3811, 3811, 4841, 4343, 4310, 4310, 4255, 4310, 4343, 2253, 4270, 2252, 4310, 4298, 4346, 4346, 4346, 4348, 4351, 4351, 4351, 2250, 4348, 4841, 3811, 2249, 3811, 3811, 4358, 4358, 4358, 4362, 4362, 4362, 2248, 4346, 4364, 4373, 4377, 4351, 4390, 4364, 4373, 4377, 4624, 4390, 4395, 2247, 2246, 4358, 4624, 4395, 4362, 3811, 3811, 3811, 3812, 3812, 3812, 2201, 2200, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 2199, 2198, 3812, 3812, 4372, 4372, 4372, 4376, 4376, 4376, 3812, 3812, 3812, 3812, 3812, 3812, 4401, 4401, 4401, 4402, 2197, 4402, 4410, 2196, 4402, 4372, 2192, 4410, 4376, 4409, 4409, 4409, 2191, 2190, 4411, 2189, 2188, 4401, 3812, 3812, 3812, 3812, 4411, 4412, 4413, 4423, 4413, 4411, 4412, 4416, 4409, 4413, 2185, 2184, 4416, 4423, 4436, 4436, 4436, 4437, 4443, 4423, 2183, 2182, 4437, 4443, 4423, 3812, 3812, 3812, 3878, 4440, 4461, 4461, 4461, 3878, 4440, 4436, 3878, 4440, 3878, 3878, 3878, 3878, 3878, 3878, 3878, 3878, 3878, 3878, 4439, 4447, 2180, 4461, 4447, 4439, 4439, 4452, 4452, 4447, 4452, 4462, 4484, 4499, 2179, 4452, 4462, 4484, 4498, 4498, 4498, 4508, 4511, 4511, 2178, 4511, 4508, 4518, 3878, 4499, 4511, 4532, 4518, 4547, 4499, 4564, 4532, 4568, 4547, 4498, 4564, 4575, 4568, 4575, 4579, 4587, 4575, 3878, 4588, 4579, 4587, 2177, 4605, 4588, 2175, 2173, 4588, 4605, 3878, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 4542, 4542, 4542, 4546, 4546, 4546, 3888, 3888, 3888, 3888, 3888, 3888, 4548, 4548, 4548, 4616, 2172, 4554, 4554, 4554, 4616, 4542, 2171, 2170, 4546, 4558, 4558, 4558, 4563, 4563, 4563, 2115, 2108, 4548, 3888, 3888, 3888, 3888, 4554, 4567, 4567, 4567, 4593, 4593, 2106, 4593, 4558, 2100, 2099, 4563, 4593, 4574, 4574, 4574, 4578, 4578, 4578, 4815, 2098, 2097, 4567, 2096, 4815, 3888, 3888, 3888, 3893, 4586, 4586, 4586, 2095, 3893, 4574, 2094, 3893, 4578, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 3893, 4613, 2093, 4586, 2092, 3893, 4604, 4604, 4604, 4612, 4612, 4612, 4614, 4614, 2091, 4614, 2090, 4613, 4653, 4653, 4614, 4653, 4613, 4617, 4617, 4617, 4653, 4604, 4826, 3893, 4612, 4709, 4709, 4787, 4709, 4842, 4843, 4813, 2089, 4709, 4842, 4843, 4852, 4826, 4617, 2077, 4854, 4787, 4826, 4787, 3893, 4813, 2076, 4813, 4787, 2075, 2073, 4852, 4813, 3893, 3894, 4854, 4852, 2068, 4863, 3894, 4854, 2067, 3894, 4863, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 3894, 2066, 2065, 2064, 2063, 3894, 2062, 2060, 2059, 2057, 2056, 2055, 2054, 2053, 2052, 2051, 2045, 2044, 2043, 2037, 2036, 2034, 2029, 2026, 2025, 2024, 2022, 2021, 2020, 2019, 2014, 2012, 2011, 2010, 2009, 2008, 2002, 2001, 2000, 1999, 1998, 1997, 1996, 1995, 1994, 1993, 3894, 1992, 1991, 1988, 1985, 1983, 1982, 1981, 1980, 1979, 1978, 1977, 1975, 3894, 3896, 3896, 3896, 1973, 1972, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 1971, 3896, 1968, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3900, 3900, 3900, 1966, 1964, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 1962, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3900, 3901, 3901, 3901, 1961, 1959, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 3901, 1958, 1955, 3901, 3901, 1953, 1952, 1942, 1936, 1935, 1931, 3901, 3901, 3901, 3901, 3901, 3901, 1930, 1929, 1928, 1925, 1924, 1923, 1892, 1887, 1883, 1882, 1881, 1880, 1878, 1877, 1875, 1874, 1872, 1871, 1870, 1869, 1863, 1862, 3901, 3901, 3901, 3901, 1860, 1859, 1858, 1857, 1855, 1844, 1838, 1831, 1822, 1820, 1818, 1816, 1794, 1784, 1781, 1780, 1779, 1776, 1774, 1773, 1770, 1765, 1761, 1760, 1759, 3901, 3901, 3901, 3942, 3942, 3942, 1758, 1755, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 1751, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3942, 3954, 1739, 1738, 1737, 1736, 3954, 1735, 1734, 3954, 1733, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 1730, 1724, 1720, 1713, 3954, 1712, 1711, 1676, 1673, 1671, 1668, 1667, 1663, 1662, 1653, 1649, 1645, 1643, 1642, 1634, 1631, 1630, 1626, 1622, 1621, 1620, 1612, 1602, 3954, 1598, 1597, 1596, 1595, 1594, 1593, 1591, 1586, 1562, 1559, 1553, 1541, 1540, 1539, 1538, 3954, 1536, 1532, 1526, 1525, 1524, 1507, 1504, 1499, 1496, 1495, 1494, 1493, 1492, 3954, 3955, 1489, 1486, 1482, 1475, 3955, 1469, 1467, 3955, 1465, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 1464, 1459, 1458, 1457, 3955, 1456, 1453, 1446, 1445, 1443, 1440, 1439, 1437, 1436, 1434, 1431, 1423, 1418, 1415, 1413, 1412, 1411, 1408, 1407, 1400, 1398, 1395, 1394, 1392, 1391, 1386, 1383, 1377, 1374, 1372, 3955, 1371, 1370, 1367, 1363, 1362, 1361, 1360, 1359, 1357, 1356, 1341, 1338, 1337, 1321, 1317, 1316, 1314, 1313, 1312, 1311, 1309, 1306, 3955, 3995, 3995, 3995, 1304, 1294, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 1292, 3995, 1291, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 4017, 4017, 4017, 1287, 1284, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 1275, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4033, 4033, 4033, 1272, 1271, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 1267, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4033, 4034, 4034, 4034, 1262, 1261, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 1260, 1259, 1256, 4034, 1252, 1246, 1244, 1243, 1237, 1227, 1219, 1213, 4034, 4034, 4034, 4034, 4034, 1211, 1207, 1205, 1196, 1195, 1194, 1193, 1190, 1189, 1188, 1187, 1172, 1152, 1143, 1141, 1140, 1139, 1136, 1135, 1132, 1131, 1122, 4034, 4034, 4034, 4034, 1121, 1120, 1117, 1107, 1095, 1092, 1086, 1081, 1077, 1068, 1060, 1056, 1049, 1044, 1041, 1037, 1034, 1031, 1029, 1021, 1003, 995, 991, 974, 971, 4034, 4034, 4034, 4036, 4036, 4036, 970, 967, 4036, 4036, 4036, 4036, 4036, 4036, 4036, 4036, 4036, 4036, 4036, 965, 964, 949, 4036, 946, 932, 929, 926, 923, 909, 872, 4036, 4036, 4036, 4036, 4036, 4036, 868, 866, 863, 862, 861, 849, 848, 846, 845, 843, 839, 834, 829, 827, 817, 815, 814, 806, 803, 794, 779, 774, 4036, 4036, 4036, 4036, 766, 761, 747, 744, 739, 735, 726, 722, 718, 715, 712, 705, 702, 699, 696, 688, 685, 682, 679, 675, 662, 658, 655, 651, 648, 4036, 4036, 4036, 4037, 4037, 4037, 647, 646, 4037, 4037, 4037, 640, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 635, 633, 629, 4037, 625, 612, 611, 596, 586, 582, 570, 566, 4037, 4037, 4037, 4037, 556, 552, 544, 525, 520, 519, 518, 516, 505, 502, 500, 492, 491, 487, 484, 480, 468, 460, 454, 450, 445, 444, 434, 4037, 4037, 4037, 4037, 432, 427, 425, 424, 423, 422, 411, 402, 386, 365, 362, 352, 350, 344, 339, 330, 318, 308, 303, 301, 297, 295, 0, 0, 0, 4037, 4037, 4051, 4051, 4051, 0, 0, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 0, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4051, 4052, 4052, 4052, 0, 0, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 0, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4052, 4063, 4063, 4063, 0, 0, 4063, 4063, 4063, 0, 4063, 4063, 4063, 4063, 4063, 4063, 4063, 0, 0, 0, 4063, 0, 0, 0, 0, 0, 0, 0, 4063, 4063, 4063, 4063, 4063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4063, 4063, 4063, 4063, 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, 4063, 4063, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4101, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4103, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4104, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4108, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4109, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4110, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4113, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4117, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4124, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4127, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4131, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4134, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4135, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4137, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4139, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4140, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4143, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4145, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4146, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4147, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4148, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4150, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4152, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4153, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4154, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4155, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4157, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4159, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4161, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4162, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4165, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4167, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4169, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4170, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4173, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4176, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4178, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4179, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4180, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4181, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4184, 4186, 4186, 4186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4186, 4186, 4186, 0, 0, 4186, 4189, 4189, 4189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4189, 0, 0, 0, 4189, 0, 0, 0, 0, 0, 4189, 4190, 4190, 4190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4190, 0, 0, 0, 4190, 4191, 4191, 4191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4191, 4191, 0, 0, 0, 4191, 4192, 4192, 0, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4192, 4194, 4194, 4194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4194, 4194, 4194, 0, 0, 4194, 4196, 4196, 4196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4196, 4196, 4196, 0, 0, 4196, 4199, 4199, 0, 0, 4199, 0, 4199, 4199, 0, 4199, 4199, 4199, 4199, 4199, 4199, 4199, 0, 4199, 4199, 4199, 4199, 4199, 4199, 4199, 4199, 4199, 0, 0, 4199, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4200, 4201, 4201, 0, 0, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4201, 4202, 4202, 0, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4202, 4203, 4203, 4203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4203, 4203, 0, 0, 0, 4203, 4205, 4205, 4205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4205, 4205, 0, 0, 0, 4205, 4207, 4207, 0, 4207, 4207, 0, 4207, 4207, 0, 4207, 4207, 4207, 4207, 4207, 4207, 4207, 0, 4207, 4207, 4207, 4207, 4207, 4207, 4207, 0, 4207, 0, 0, 4207, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4209, 4209, 0, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4210, 4210, 0, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4211, 4211, 0, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 0, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4215, 0, 0, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 0, 4215, 4215, 4215, 4215, 0, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 0, 4215, 4215, 4215, 4215, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4216, 4217, 4217, 0, 4217, 4217, 0, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 0, 4217, 0, 4217, 4217, 4217, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4218, 4220, 4220, 0, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4222, 4222, 0, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4225, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4226, 0, 0, 0, 0, 0, 4226, 0, 0, 0, 4226, 4226, 0, 4226, 4227, 4227, 4227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4227, 4227, 4227, 0, 0, 4227, 4229, 4229, 0, 4229, 4229, 0, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4229, 4230, 0, 4230, 4230, 4230, 4230, 4230, 0, 0, 0, 4230, 0, 4230, 4231, 4231, 0, 4231, 4231, 0, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4231, 4232, 0, 4232, 4232, 4232, 4232, 4232, 0, 4232, 0, 4232, 0, 4232, 4233, 4233, 4233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4233, 4233, 0, 0, 0, 4233, 4238, 4238, 0, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4242, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4244, 4244, 0, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4244, 4245, 4245, 0, 4245, 4245, 0, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4246, 0, 4246, 4246, 4246, 4246, 4246, 0, 0, 0, 4246, 0, 4246, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4248, 4249, 4249, 0, 4249, 4249, 0, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4249, 4250, 0, 4250, 4250, 4250, 4250, 4250, 0, 0, 0, 4250, 0, 4250, 4251, 4251, 0, 4251, 4251, 0, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4251, 4252, 0, 4252, 4252, 4252, 4252, 4252, 0, 0, 0, 4252, 0, 4252, 4253, 4253, 4253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4253, 4253, 0, 0, 0, 4253, 4254, 4254, 4254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4254, 4254, 0, 0, 0, 4254, 4256, 4256, 4256, 0, 0, 0, 4256, 0, 0, 0, 4256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4256, 4258, 0, 0, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 0, 4258, 4258, 4258, 4258, 0, 4258, 4258, 0, 4258, 4258, 4258, 4258, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4263, 0, 4263, 4263, 4263, 4263, 4263, 0, 0, 0, 4263, 0, 4263, 4264, 0, 4264, 4264, 4264, 4264, 4264, 0, 0, 4264, 4264, 0, 4264, 4265, 0, 4265, 4265, 4265, 4265, 4265, 0, 0, 4265, 4265, 0, 4265, 4266, 0, 0, 4266, 0, 0, 4266, 0, 4266, 4266, 4266, 4266, 4266, 0, 0, 4266, 4266, 0, 4266, 0, 0, 0, 4266, 4267, 4267, 0, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4268, 4268, 0, 4268, 4268, 0, 0, 0, 4268, 4269, 4269, 4269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4269, 4269, 0, 0, 0, 4269, 4271, 0, 0, 4271, 0, 4271, 4271, 4271, 0, 0, 4271, 0, 4271, 4271, 4271, 4271, 4271, 0, 4271, 4271, 0, 4271, 0, 0, 4271, 4272, 0, 0, 4272, 0, 4272, 4272, 4272, 0, 0, 4272, 0, 4272, 4272, 4272, 4272, 4272, 0, 4272, 4272, 0, 4272, 0, 0, 4272, 4273, 0, 0, 4273, 0, 4273, 4273, 4273, 0, 0, 4273, 0, 4273, 4273, 4273, 4273, 4273, 0, 4273, 4273, 0, 4273, 0, 0, 4273, 4274, 4274, 0, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 0, 4274, 4274, 0, 4274, 4274, 4274, 4274, 0, 4274, 4274, 4274, 4274, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4276, 0, 0, 4276, 4276, 0, 4276, 0, 4276, 4276, 4276, 4276, 4276, 0, 0, 0, 4276, 0, 0, 0, 0, 0, 4276, 4277, 4277, 0, 0, 0, 0, 4277, 0, 4277, 4277, 0, 0, 0, 4277, 4278, 4278, 0, 4278, 4278, 0, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4279, 0, 4279, 4279, 4279, 4279, 4279, 0, 0, 0, 4279, 0, 4279, 4280, 4280, 0, 4280, 4280, 0, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4281, 0, 4281, 4281, 4281, 4281, 4281, 0, 0, 0, 4281, 0, 4281, 4282, 0, 4282, 4282, 4282, 4282, 0, 0, 0, 0, 4282, 4283, 0, 0, 0, 0, 0, 4283, 0, 4283, 4283, 4283, 4283, 4283, 0, 0, 4283, 4283, 0, 0, 0, 0, 0, 4283, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 0, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4285, 4287, 0, 0, 0, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4288, 4289, 0, 0, 0, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4290, 4291, 0, 0, 0, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4292, 4293, 0, 0, 0, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4297, 4297, 4297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4297, 4297, 0, 0, 0, 4297, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 0, 4299, 4299, 0, 4299, 4299, 4299, 4299, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4301, 4301, 0, 4301, 4301, 0, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4302, 0, 4302, 4302, 4302, 4302, 4302, 0, 0, 0, 4302, 0, 4302, 4303, 4303, 0, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4303, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4304, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4311, 4311, 0, 4311, 4311, 0, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4312, 0, 0, 0, 0, 0, 4312, 0, 4312, 4312, 4312, 4312, 4312, 0, 0, 4312, 4312, 0, 0, 0, 0, 0, 4312, 4313, 0, 0, 0, 0, 0, 4313, 0, 4313, 4313, 4313, 4313, 4313, 0, 0, 4313, 4313, 0, 4313, 0, 0, 0, 4313, 4314, 0, 4314, 4314, 4314, 4314, 4314, 0, 0, 0, 4314, 0, 4314, 4315, 4315, 0, 4315, 4315, 0, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4316, 0, 4316, 4316, 4316, 4316, 4316, 0, 0, 0, 4316, 0, 4316, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 0, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4321, 4321, 0, 4321, 4321, 0, 4321, 4321, 0, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 0, 4321, 4321, 4321, 4321, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4323, 4323, 0, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4324, 4324, 0, 4324, 4324, 0, 4324, 4324, 0, 0, 0, 4324, 4324, 4324, 4324, 4324, 0, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4324, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4325, 4326, 4326, 0, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4326, 4327, 4327, 0, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 0, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4327, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4328, 4329, 4329, 0, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4331, 0, 0, 0, 4331, 0, 4331, 4331, 0, 0, 0, 4331, 4331, 4331, 4331, 4331, 0, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 0, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4333, 4335, 4335, 0, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4336, 4336, 0, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4337, 4337, 0, 4337, 4337, 0, 4337, 4337, 0, 0, 0, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4339, 4339, 0, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4340, 4340, 0, 4340, 4340, 0, 4340, 4340, 0, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 4340, 0, 0, 4340, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4342, 4342, 0, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4342, 4344, 4344, 4344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4344, 0, 0, 0, 4344, 0, 0, 0, 0, 0, 4344, 4345, 4345, 4345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4345, 4345, 4345, 0, 0, 4345, 4347, 4347, 4347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4347, 0, 4347, 0, 0, 4347, 4349, 4349, 4349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4349, 0, 0, 0, 4349, 0, 0, 0, 0, 0, 4349, 4350, 4350, 4350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4350, 4350, 0, 0, 0, 4350, 4352, 4352, 4352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4352, 0, 0, 0, 4352, 4353, 4353, 4353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4353, 4353, 0, 0, 0, 4353, 4354, 4354, 0, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4354, 4355, 4355, 4355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4355, 4355, 0, 0, 0, 4355, 4356, 4356, 4356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4356, 0, 0, 0, 4356, 0, 0, 0, 0, 0, 4356, 4357, 4357, 4357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4357, 4357, 4357, 0, 0, 4357, 4359, 4359, 4359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4359, 0, 4359, 0, 0, 4359, 4360, 4360, 4360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4360, 0, 0, 0, 4360, 0, 0, 0, 0, 0, 4360, 4361, 4361, 4361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4361, 4361, 4361, 0, 0, 4361, 4363, 4363, 4363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4363, 0, 4363, 0, 0, 4363, 4365, 4365, 0, 0, 4365, 0, 4365, 4365, 0, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 0, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 0, 0, 4365, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4367, 4367, 0, 0, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4368, 4368, 0, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4369, 4369, 0, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4369, 4370, 4370, 4370, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4370, 0, 0, 0, 4370, 0, 0, 0, 0, 0, 4370, 4371, 4371, 4371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4371, 4371, 0, 0, 0, 4371, 4374, 4374, 4374, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4374, 0, 0, 0, 4374, 0, 0, 0, 0, 0, 4374, 4375, 4375, 4375, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4375, 4375, 0, 0, 0, 4375, 4378, 4378, 0, 4378, 4378, 0, 4378, 4378, 0, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 0, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 0, 4378, 0, 0, 4378, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4380, 4380, 0, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4380, 4381, 4381, 0, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 0, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4381, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4382, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4383, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4384, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4385, 4386, 0, 0, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 0, 4386, 4386, 4386, 4386, 0, 4386, 4386, 4386, 4386, 4386, 4386, 4386, 0, 4386, 4386, 4386, 4386, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4387, 4388, 4388, 0, 4388, 4388, 0, 4388, 4388, 4388, 4388, 4388, 4388, 4388, 4388, 4388, 4388, 4388, 4388, 4388, 4388, 4388, 4388, 4388, 0, 4388, 0, 4388, 4388, 4388, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4389, 4391, 4391, 0, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4391, 4392, 4392, 0, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4392, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4394, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 0, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 4396, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 0, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 4397, 4398, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4398, 0, 0, 0, 0, 0, 4398, 0, 0, 0, 4398, 4398, 0, 4398, 4399, 4399, 4399, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4399, 0, 0, 0, 4399, 0, 0, 0, 0, 0, 4399, 4400, 4400, 4400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4400, 4400, 4400, 0, 0, 4400, 4403, 4403, 0, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4403, 4404, 0, 4404, 4404, 4404, 4404, 4404, 0, 0, 0, 4404, 0, 4404, 4405, 4405, 0, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4406, 0, 4406, 4406, 4406, 4406, 4406, 0, 4406, 0, 4406, 0, 4406, 4407, 4407, 4407, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4407, 0, 0, 0, 4407, 0, 0, 0, 0, 0, 4407, 4408, 4408, 4408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4408, 4408, 0, 0, 0, 4408, 4414, 4414, 0, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4414, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4415, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4418, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4419, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 0, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4421, 4421, 0, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 0, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 0, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4424, 4424, 0, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4424, 4425, 0, 4425, 4425, 4425, 4425, 4425, 0, 0, 0, 4425, 0, 4425, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4426, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4427, 4428, 4428, 0, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4428, 4429, 0, 4429, 4429, 4429, 4429, 4429, 0, 0, 0, 4429, 0, 4429, 4430, 4430, 0, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4430, 4431, 0, 4431, 4431, 4431, 4431, 4431, 0, 0, 0, 4431, 0, 4431, 4432, 4432, 4432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4432, 4432, 0, 0, 0, 4432, 4433, 4433, 4433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4433, 4433, 0, 0, 0, 4433, 4434, 4434, 4434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4434, 0, 0, 0, 4434, 0, 0, 0, 0, 0, 4434, 4435, 4435, 4435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4435, 4435, 0, 0, 0, 4435, 4438, 4438, 4438, 0, 0, 0, 4438, 0, 0, 0, 4438, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4438, 4441, 0, 0, 4441, 4441, 4441, 4441, 4441, 4441, 4441, 4441, 4441, 4441, 4441, 4441, 4441, 0, 4441, 4441, 4441, 4441, 0, 4441, 4441, 0, 4441, 4441, 4441, 4441, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4442, 4444, 0, 0, 4444, 0, 0, 0, 0, 0, 0, 0, 4444, 4444, 0, 0, 0, 4444, 0, 0, 0, 0, 0, 4444, 4448, 0, 4448, 4448, 4448, 4448, 4448, 0, 0, 0, 4448, 0, 4448, 4449, 0, 4449, 4449, 4449, 4449, 4449, 0, 0, 0, 4449, 0, 4449, 4450, 0, 4450, 4450, 4450, 4450, 4450, 0, 0, 4450, 4450, 0, 4450, 4451, 0, 4451, 4451, 4451, 4451, 4451, 0, 0, 4451, 4451, 0, 4451, 4453, 0, 4453, 4453, 4453, 4453, 4453, 0, 0, 4453, 4453, 0, 4453, 4454, 0, 4454, 4454, 4454, 4454, 4454, 0, 0, 0, 4454, 0, 4454, 0, 0, 0, 4454, 4455, 0, 0, 0, 0, 0, 4455, 0, 0, 4455, 4455, 0, 4455, 0, 0, 0, 0, 4455, 4455, 4455, 0, 4455, 4456, 0, 0, 4456, 0, 0, 4456, 0, 4456, 4456, 4456, 4456, 4456, 0, 0, 4456, 4456, 0, 4456, 0, 0, 0, 4456, 4457, 4457, 0, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4458, 4458, 0, 4458, 4458, 0, 0, 0, 4458, 4459, 4459, 4459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4459, 0, 0, 0, 4459, 0, 0, 0, 0, 0, 4459, 4460, 4460, 4460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4460, 4460, 0, 0, 0, 4460, 4463, 0, 0, 4463, 0, 4463, 4463, 4463, 0, 0, 4463, 0, 4463, 4463, 4463, 4463, 4463, 0, 4463, 4463, 0, 4463, 0, 0, 4463, 4464, 0, 0, 4464, 0, 4464, 4464, 4464, 0, 0, 4464, 0, 4464, 4464, 4464, 4464, 4464, 0, 4464, 4464, 0, 4464, 0, 0, 4464, 4465, 0, 0, 4465, 0, 4465, 4465, 4465, 0, 0, 4465, 0, 4465, 4465, 4465, 4465, 4465, 0, 4465, 4465, 0, 4465, 0, 0, 4465, 4466, 0, 0, 4466, 0, 4466, 4466, 4466, 0, 0, 4466, 0, 4466, 4466, 4466, 4466, 4466, 0, 4466, 4466, 0, 4466, 0, 0, 4466, 4467, 0, 0, 4467, 0, 4467, 4467, 4467, 0, 0, 4467, 0, 4467, 4467, 4467, 4467, 4467, 0, 4467, 4467, 0, 4467, 0, 0, 4467, 4468, 0, 0, 4468, 0, 4468, 4468, 4468, 0, 0, 4468, 0, 4468, 4468, 4468, 4468, 4468, 0, 4468, 4468, 0, 4468, 0, 0, 4468, 4469, 0, 0, 4469, 0, 4469, 4469, 4469, 0, 0, 4469, 0, 4469, 4469, 4469, 4469, 4469, 0, 4469, 4469, 0, 4469, 0, 0, 4469, 4470, 0, 0, 4470, 0, 4470, 4470, 4470, 0, 0, 4470, 0, 4470, 4470, 4470, 4470, 4470, 0, 4470, 4470, 0, 4470, 0, 0, 4470, 4471, 0, 0, 4471, 0, 4471, 4471, 4471, 0, 0, 4471, 0, 4471, 4471, 4471, 4471, 4471, 0, 4471, 4471, 0, 4471, 0, 0, 4471, 4472, 4472, 0, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 0, 4472, 4472, 0, 4472, 4472, 4472, 4472, 0, 4472, 4472, 4472, 4472, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4473, 4474, 0, 0, 4474, 4474, 0, 4474, 0, 4474, 4474, 4474, 4474, 4474, 0, 0, 0, 4474, 0, 0, 0, 0, 0, 4474, 4475, 4475, 0, 0, 0, 0, 4475, 0, 4475, 4475, 0, 0, 0, 4475, 4476, 4476, 0, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4476, 4477, 0, 4477, 4477, 4477, 4477, 4477, 0, 0, 0, 4477, 0, 4477, 4478, 4478, 0, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4478, 4479, 0, 4479, 4479, 4479, 4479, 4479, 0, 0, 0, 4479, 0, 4479, 4480, 0, 4480, 4480, 4480, 4480, 0, 0, 0, 0, 4480, 4481, 0, 0, 0, 0, 0, 4481, 0, 4481, 4481, 4481, 4481, 4481, 0, 0, 4481, 4481, 0, 0, 0, 0, 0, 4481, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 0, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4483, 4485, 0, 0, 0, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4485, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4486, 4487, 0, 0, 0, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4487, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4488, 4489, 0, 0, 0, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4489, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4491, 0, 0, 0, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4491, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4492, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4495, 4496, 4496, 4496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4496, 0, 0, 0, 4496, 0, 0, 0, 0, 0, 4496, 4497, 4497, 4497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4497, 4497, 0, 0, 0, 4497, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 0, 4500, 4500, 0, 4500, 4500, 4500, 4500, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4502, 4502, 0, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4503, 0, 4503, 4503, 4503, 4503, 4503, 0, 0, 0, 4503, 0, 4503, 4504, 4504, 0, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4510, 4512, 4512, 0, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4512, 4513, 0, 0, 0, 0, 0, 4513, 0, 4513, 4513, 4513, 4513, 4513, 0, 0, 4513, 4513, 0, 0, 0, 0, 0, 4513, 4514, 0, 0, 0, 0, 0, 4514, 0, 4514, 4514, 4514, 4514, 4514, 0, 0, 4514, 4514, 0, 4514, 0, 0, 0, 4514, 4515, 0, 4515, 4515, 4515, 4515, 4515, 0, 0, 0, 4515, 0, 4515, 4516, 4516, 0, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4516, 4517, 0, 4517, 4517, 4517, 4517, 4517, 0, 0, 0, 4517, 0, 4517, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 0, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4520, 4521, 4521, 0, 4521, 4521, 0, 4521, 4521, 0, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 0, 4521, 4521, 4521, 4521, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4522, 4523, 4523, 0, 4523, 4523, 0, 4523, 4523, 0, 0, 0, 4523, 4523, 4523, 4523, 4523, 0, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4525, 4525, 0, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4525, 4526, 4526, 0, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 0, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4528, 4528, 0, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4529, 4530, 0, 0, 0, 4530, 0, 4530, 4530, 0, 0, 0, 4530, 4530, 4530, 4530, 4530, 0, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4531, 4533, 4533, 0, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4533, 4534, 4534, 0, 4534, 4534, 0, 4534, 4534, 0, 0, 0, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4536, 4536, 0, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4537, 4537, 0, 4537, 4537, 0, 4537, 4537, 0, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 0, 0, 4537, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4539, 4539, 0, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4540, 4540, 4540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4540, 0, 0, 0, 4540, 0, 0, 0, 0, 0, 4540, 4541, 4541, 4541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4541, 4541, 4541, 0, 0, 4541, 4543, 4543, 4543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4543, 0, 4543, 0, 0, 4543, 4544, 4544, 4544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4544, 0, 0, 0, 4544, 0, 0, 0, 0, 0, 4544, 4545, 4545, 4545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4545, 4545, 0, 0, 0, 4545, 4549, 4549, 4549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4549, 4549, 0, 0, 0, 4549, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 0, 4550, 4550, 4550, 4550, 0, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 0, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 4551, 4552, 4552, 4552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4552, 0, 0, 0, 4552, 0, 0, 0, 0, 0, 4552, 4553, 4553, 4553, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4553, 4553, 4553, 0, 0, 4553, 4555, 4555, 4555, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4555, 0, 4555, 0, 0, 4555, 4556, 4556, 4556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4556, 0, 0, 0, 4556, 0, 0, 0, 0, 0, 4556, 4557, 4557, 4557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4557, 4557, 4557, 0, 0, 4557, 4559, 4559, 4559, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4559, 0, 4559, 0, 0, 4559, 4560, 4560, 0, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4560, 4561, 4561, 4561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4561, 0, 0, 0, 4561, 0, 0, 0, 0, 0, 4561, 4562, 4562, 4562, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4562, 4562, 0, 0, 0, 4562, 4565, 4565, 4565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4565, 0, 0, 0, 4565, 0, 0, 0, 0, 0, 4565, 4566, 4566, 4566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4566, 4566, 0, 0, 0, 4566, 4569, 0, 0, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 0, 4569, 4569, 4569, 4569, 0, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 0, 4569, 4569, 4569, 4569, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4570, 4571, 4571, 0, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4571, 4572, 4572, 4572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4572, 0, 0, 0, 4572, 0, 0, 0, 0, 0, 4572, 4573, 4573, 4573, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4573, 4573, 4573, 0, 0, 4573, 4576, 4576, 4576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4576, 0, 0, 0, 4576, 0, 0, 0, 0, 0, 4576, 4577, 4577, 4577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4577, 4577, 0, 0, 0, 4577, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 0, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4580, 4581, 4581, 0, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 0, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4582, 4582, 4582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4582, 0, 0, 0, 4582, 4583, 4583, 4583, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4583, 4583, 0, 0, 0, 4583, 4584, 4584, 4584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4584, 0, 0, 0, 4584, 0, 0, 0, 0, 0, 4584, 4585, 4585, 4585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4585, 4585, 0, 0, 0, 4585, 4589, 0, 0, 4589, 0, 0, 0, 0, 0, 0, 0, 4589, 4589, 0, 0, 0, 4589, 0, 0, 0, 0, 0, 4589, 4591, 0, 4591, 4591, 4591, 4591, 4591, 0, 0, 0, 4591, 0, 4591, 4592, 0, 4592, 4592, 4592, 4592, 4592, 0, 0, 4592, 4592, 0, 4592, 4594, 0, 0, 4594, 0, 0, 4594, 0, 4594, 4594, 4594, 4594, 4594, 0, 0, 0, 4594, 0, 4594, 0, 0, 0, 4594, 4595, 4595, 0, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4595, 4596, 4596, 0, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4596, 4597, 4597, 0, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4597, 4598, 0, 0, 0, 0, 0, 4598, 0, 0, 4598, 4598, 0, 4598, 0, 0, 0, 0, 4598, 4598, 4598, 0, 4598, 4599, 0, 4599, 4599, 4599, 4599, 4599, 0, 0, 0, 4599, 0, 4599, 0, 0, 0, 4599, 4600, 0, 4600, 4600, 4600, 4600, 4600, 0, 0, 0, 4600, 0, 4600, 4601, 0, 0, 4601, 0, 0, 4601, 0, 4601, 4601, 4601, 4601, 4601, 0, 0, 4601, 4601, 0, 4601, 0, 0, 0, 4601, 4602, 4602, 4602, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4602, 0, 0, 0, 4602, 0, 0, 0, 0, 0, 4602, 4603, 4603, 4603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4603, 4603, 0, 0, 0, 4603, 4606, 0, 0, 4606, 0, 4606, 4606, 4606, 0, 0, 4606, 0, 4606, 4606, 4606, 4606, 4606, 0, 4606, 4606, 0, 4606, 0, 0, 4606, 4607, 0, 0, 4607, 0, 4607, 4607, 4607, 0, 0, 4607, 0, 4607, 4607, 4607, 4607, 4607, 0, 4607, 4607, 0, 4607, 0, 0, 4607, 4608, 0, 0, 4608, 0, 4608, 4608, 4608, 0, 0, 4608, 0, 4608, 4608, 4608, 4608, 4608, 0, 4608, 4608, 0, 4608, 0, 0, 4608, 4609, 4609, 0, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 0, 4609, 4609, 0, 4609, 4609, 4609, 4609, 0, 4609, 4609, 4609, 4609, 4610, 4610, 4610, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4610, 0, 0, 0, 4610, 0, 0, 0, 0, 0, 4610, 4611, 4611, 4611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4611, 4611, 0, 0, 0, 4611, 4615, 4615, 4615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4615, 0, 0, 0, 4615, 0, 0, 0, 0, 0, 4615, 4618, 4618, 4618, 0, 0, 0, 0, 0, 0, 0, 4618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4618, 4619, 4619, 4619, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4619, 4619, 4619, 0, 0, 4619, 4620, 0, 0, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 0, 4620, 4620, 4620, 4620, 0, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 0, 4620, 4620, 4620, 4620, 4621, 4621, 0, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4621, 4622, 4622, 4622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4622, 0, 0, 0, 4622, 4623, 4623, 4623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4623, 4623, 0, 0, 0, 4623, 4625, 0, 0, 4625, 0, 0, 4625, 0, 4625, 4625, 4625, 4625, 4625, 0, 0, 0, 4625, 0, 4625, 0, 0, 0, 4625, 4626, 4626, 0, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4626, 4627, 4627, 0, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4628, 4628, 0, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4628, 4629, 4629, 0, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4630, 4630, 0, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4630, 4631, 4631, 0, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4632, 4632, 0, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4632, 4633, 4633, 0, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4633, 4634, 4634, 0, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4634, 4635, 4635, 0, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4636, 4636, 0, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4636, 4637, 4637, 0, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4638, 4638, 0, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4638, 4639, 4639, 0, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4640, 4640, 0, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4640, 4641, 4641, 0, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4641, 4642, 4642, 0, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4642, 4643, 4643, 0, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4643, 4644, 4644, 0, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4645, 4645, 0, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4645, 4646, 4646, 0, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4647, 4647, 0, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4648, 0, 0, 4648, 0, 0, 4648, 0, 4648, 4648, 4648, 4648, 4648, 0, 0, 0, 4648, 0, 4648, 0, 0, 0, 4648, 4649, 0, 4649, 4649, 4649, 4649, 4649, 0, 0, 0, 4649, 0, 4649, 4650, 0, 0, 0, 0, 0, 4650, 0, 4650, 4650, 4650, 4650, 4650, 0, 0, 4650, 4650, 0, 4650, 0, 0, 0, 4650, 4651, 0, 0, 4651, 0, 0, 4651, 0, 4651, 4651, 4651, 4651, 4651, 0, 0, 4651, 4651, 0, 4651, 0, 0, 0, 4651, 4652, 4652, 0, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 4652, 0, 4652, 4652, 0, 4652, 4652, 4652, 4652, 0, 4652, 4652, 4652, 4652, 4654, 4654, 4654, 0, 0, 0, 0, 0, 0, 0, 4654, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4654, 4655, 4655, 4655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4655, 4655, 4655, 0, 0, 4655, 4656, 0, 0, 4656, 4656, 4656, 4656, 4656, 4656, 4656, 4656, 0, 4656, 4656, 4656, 4656, 0, 4656, 4656, 4656, 4656, 4656, 4656, 4656, 0, 4656, 4656, 4656, 4656, 4657, 4657, 0, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4657, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 4658, 0, 4658, 4658, 4658, 4658, 0, 4658, 4658, 4658, 4658, 4658, 4658, 4659, 4659, 0, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4659, 4660, 4660, 4660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4660, 4660, 0, 0, 0, 4660, 4661, 0, 0, 4661, 0, 0, 0, 0, 0, 0, 0, 4661, 4661, 0, 0, 0, 4661, 0, 0, 0, 0, 0, 4661, 4662, 4662, 0, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4663, 4663, 0, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4663, 4664, 4664, 0, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4665, 4665, 0, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4665, 4666, 4666, 0, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4667, 4667, 0, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4667, 4668, 4668, 0, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4668, 4669, 4669, 0, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4670, 4670, 0, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4670, 4671, 4671, 0, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4672, 4672, 0, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4673, 4673, 0, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4674, 4674, 0, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4675, 4675, 0, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4676, 4676, 0, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4677, 4677, 0, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4678, 4678, 0, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4678, 4679, 4679, 0, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4680, 4680, 0, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4680, 4681, 4681, 0, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4681, 4682, 4682, 0, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4682, 4683, 4683, 0, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4683, 4684, 4684, 0, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4685, 4685, 0, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4685, 4686, 4686, 0, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4687, 4687, 0, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4687, 4688, 4688, 0, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4688, 4689, 4689, 0, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4689, 4690, 4690, 0, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4690, 4691, 4691, 0, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4692, 4692, 0, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4692, 4693, 4693, 0, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4694, 4694, 0, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4694, 4695, 4695, 0, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4695, 4696, 4696, 0, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4696, 4697, 4697, 0, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4697, 4698, 4698, 0, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4699, 4699, 0, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4700, 0, 0, 4700, 0, 0, 4700, 0, 4700, 4700, 4700, 4700, 4700, 0, 0, 0, 4700, 0, 4700, 0, 0, 0, 4700, 4701, 0, 4701, 4701, 4701, 4701, 4701, 0, 0, 0, 4701, 0, 4701, 4702, 4702, 0, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4702, 4703, 0, 0, 0, 0, 0, 4703, 0, 4703, 4703, 4703, 4703, 4703, 0, 0, 4703, 4703, 0, 0, 0, 0, 0, 4703, 4704, 0, 0, 0, 0, 0, 4704, 0, 4704, 4704, 4704, 4704, 4704, 0, 0, 4704, 4704, 0, 4704, 0, 0, 0, 4704, 4705, 0, 0, 0, 0, 0, 4705, 0, 4705, 4705, 4705, 4705, 4705, 0, 0, 4705, 4705, 0, 4705, 0, 0, 0, 4705, 4706, 0, 0, 0, 0, 0, 4706, 0, 4706, 4706, 4706, 4706, 4706, 0, 0, 4706, 4706, 0, 4706, 0, 0, 0, 4706, 4707, 0, 0, 4707, 0, 0, 4707, 0, 4707, 4707, 4707, 4707, 4707, 0, 0, 4707, 4707, 0, 4707, 0, 0, 0, 4707, 4708, 4708, 0, 4708, 4708, 4708, 4708, 4708, 4708, 4708, 4708, 4708, 4708, 4708, 4708, 4708, 0, 4708, 4708, 0, 4708, 4708, 4708, 4708, 0, 4708, 4708, 4708, 4708, 4710, 4710, 4710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4710, 4710, 4710, 0, 0, 4710, 4711, 4711, 0, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4711, 4712, 0, 0, 4712, 4712, 4712, 4712, 4712, 4712, 4712, 4712, 0, 4712, 4712, 4712, 4712, 0, 4712, 4712, 4712, 4712, 4712, 4712, 4712, 0, 4712, 4712, 4712, 4712, 4713, 4713, 0, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4713, 4714, 4714, 4714, 4714, 4714, 4714, 4714, 4714, 4714, 4714, 4714, 4714, 4714, 4714, 4714, 4714, 4714, 0, 4714, 4714, 4714, 4714, 0, 4714, 4714, 4714, 4714, 4714, 4714, 4715, 0, 0, 4715, 0, 0, 0, 0, 0, 0, 0, 4715, 4715, 0, 0, 0, 4715, 0, 0, 0, 0, 0, 4715, 4716, 4716, 0, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4716, 4717, 4717, 0, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4718, 4718, 0, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4719, 4719, 0, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4719, 4720, 4720, 0, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4721, 4721, 0, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4721, 4722, 4722, 0, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4723, 4723, 0, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4723, 4724, 4724, 0, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4724, 4725, 4725, 0, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4726, 4726, 0, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4727, 4727, 0, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4727, 4728, 4728, 0, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4728, 4729, 4729, 0, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4729, 4730, 4730, 0, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4730, 4731, 4731, 0, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4731, 4732, 4732, 0, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4732, 4733, 4733, 0, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4734, 4734, 0, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4735, 4735, 0, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4736, 4736, 0, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4737, 4737, 0, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4738, 4738, 0, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4739, 4739, 0, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4740, 4740, 0, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4741, 4741, 0, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4742, 4742, 0, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4743, 4743, 0, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4744, 4744, 0, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4744, 4745, 0, 0, 4745, 0, 0, 4745, 0, 4745, 4745, 4745, 4745, 4745, 0, 0, 0, 4745, 0, 4745, 0, 0, 0, 4745, 4746, 0, 4746, 4746, 4746, 4746, 4746, 0, 0, 0, 4746, 0, 4746, 4747, 4747, 0, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4748, 4748, 0, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4749, 4749, 0, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4750, 0, 0, 0, 0, 0, 4750, 0, 4750, 4750, 4750, 4750, 4750, 0, 0, 4750, 4750, 0, 4750, 0, 0, 0, 4750, 4751, 0, 0, 4751, 0, 0, 4751, 0, 4751, 4751, 4751, 4751, 4751, 0, 0, 4751, 4751, 0, 4751, 0, 0, 0, 4751, 4752, 0, 0, 0, 0, 0, 4752, 0, 4752, 4752, 4752, 4752, 4752, 0, 0, 4752, 4752, 0, 0, 0, 0, 0, 4752, 4753, 0, 0, 4753, 0, 0, 4753, 0, 4753, 4753, 4753, 4753, 4753, 0, 0, 4753, 4753, 0, 4753, 0, 0, 0, 4753, 4754, 4754, 0, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4754, 4755, 4755, 0, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 0, 4755, 4755, 0, 4755, 4755, 4755, 4755, 0, 4755, 4755, 4755, 4755, 4756, 4756, 4756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4756, 4756, 4756, 0, 0, 4756, 4757, 4757, 0, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4758, 0, 0, 4758, 4758, 4758, 4758, 4758, 4758, 4758, 4758, 0, 4758, 4758, 4758, 4758, 0, 4758, 4758, 4758, 4758, 4758, 4758, 4758, 0, 4758, 4758, 4758, 4758, 4759, 0, 0, 4759, 0, 0, 0, 0, 0, 0, 0, 4759, 4759, 0, 0, 0, 4759, 0, 0, 0, 0, 0, 4759, 4760, 4760, 0, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4761, 4761, 0, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4762, 4762, 0, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4762, 4763, 4763, 0, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4764, 4764, 0, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4765, 4765, 0, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4766, 4766, 0, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4767, 4767, 0, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4768, 4768, 0, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4769, 4769, 0, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4769, 4770, 4770, 0, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4770, 4771, 4771, 0, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4771, 4772, 4772, 0, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4773, 4773, 0, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4774, 4774, 0, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4775, 4775, 0, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4775, 4776, 4776, 0, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4776, 4777, 0, 0, 4777, 0, 0, 4777, 0, 4777, 4777, 4777, 4777, 4777, 0, 0, 0, 4777, 0, 4777, 0, 0, 0, 4777, 4778, 0, 4778, 4778, 4778, 4778, 4778, 0, 0, 0, 4778, 0, 4778, 4779, 4779, 0, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4780, 0, 0, 0, 0, 0, 4780, 0, 4780, 4780, 4780, 4780, 4780, 0, 0, 4780, 4780, 0, 0, 0, 0, 0, 4780, 4781, 0, 0, 4781, 0, 0, 4781, 0, 4781, 4781, 4781, 4781, 4781, 0, 0, 4781, 4781, 0, 4781, 0, 0, 0, 4781, 4782, 0, 0, 0, 0, 0, 4782, 0, 4782, 4782, 4782, 4782, 4782, 0, 0, 4782, 4782, 0, 4782, 0, 0, 0, 4782, 4783, 0, 0, 4783, 0, 0, 4783, 0, 4783, 4783, 4783, 4783, 4783, 0, 0, 4783, 4783, 0, 0, 0, 0, 0, 4783, 4784, 0, 0, 4784, 0, 0, 4784, 0, 4784, 4784, 4784, 4784, 4784, 0, 0, 4784, 4784, 0, 4784, 0, 0, 0, 4784, 4785, 4785, 0, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4785, 4786, 4786, 0, 4786, 4786, 4786, 4786, 4786, 4786, 4786, 4786, 4786, 4786, 4786, 4786, 4786, 0, 4786, 4786, 0, 4786, 4786, 4786, 4786, 0, 4786, 4786, 4786, 4786, 4788, 4788, 4788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4788, 4788, 4788, 0, 0, 4788, 4789, 0, 0, 4789, 4789, 4789, 4789, 4789, 4789, 4789, 4789, 0, 4789, 4789, 4789, 4789, 0, 4789, 4789, 4789, 4789, 4789, 4789, 4789, 0, 4789, 4789, 4789, 4789, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4791, 0, 0, 4791, 0, 0, 0, 0, 0, 0, 0, 4791, 4791, 0, 0, 0, 4791, 0, 0, 0, 0, 0, 4791, 4792, 4792, 0, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4793, 4793, 0, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4794, 4794, 0, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4795, 4795, 0, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4795, 4796, 4796, 0, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4797, 4797, 0, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4797, 4798, 4798, 0, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4799, 4799, 0, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4800, 4800, 0, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4800, 4801, 4801, 0, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4801, 4802, 4802, 0, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804, 4804, 0, 4804, 4804, 4804, 4804, 0, 4804, 4804, 4804, 4804, 4804, 4804, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 0, 4805, 4805, 4805, 4805, 0, 4805, 4805, 4805, 4805, 4805, 4805, 4806, 0, 0, 4806, 0, 0, 4806, 0, 4806, 4806, 4806, 4806, 4806, 0, 0, 0, 4806, 0, 4806, 0, 0, 0, 4806, 4807, 0, 4807, 4807, 4807, 4807, 4807, 0, 0, 0, 4807, 0, 4807, 4808, 0, 0, 4808, 0, 0, 4808, 0, 4808, 4808, 4808, 4808, 4808, 0, 0, 4808, 4808, 0, 4808, 0, 0, 0, 4808, 4809, 0, 0, 4809, 0, 0, 4809, 0, 4809, 4809, 4809, 4809, 4809, 0, 0, 4809, 4809, 0, 0, 0, 0, 0, 4809, 4810, 0, 0, 0, 0, 0, 4810, 0, 4810, 4810, 4810, 4810, 4810, 0, 0, 4810, 4810, 0, 0, 0, 0, 0, 4810, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4811, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 4812, 0, 4812, 4812, 4812, 4812, 0, 4812, 4812, 4812, 4812, 4812, 4812, 4816, 4816, 4816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4816, 4816, 4816, 0, 0, 4816, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 0, 4817, 4817, 4817, 4817, 0, 4817, 4817, 4817, 4817, 4817, 4817, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4818, 4819, 0, 0, 4819, 0, 0, 0, 0, 0, 0, 0, 4819, 4819, 0, 0, 0, 4819, 0, 0, 0, 0, 0, 4819, 4820, 4820, 0, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4821, 4821, 0, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4822, 4822, 0, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4822, 4823, 4823, 0, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4823, 4824, 4824, 0, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4824, 4825, 4825, 0, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4825, 4827, 4827, 4827, 4827, 4827, 4827, 4827, 4827, 4827, 4827, 4827, 4827, 4827, 4827, 4827, 4827, 4827, 0, 4827, 4827, 4827, 4827, 0, 4827, 4827, 4827, 4827, 4827, 4827, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 0, 4829, 4829, 4829, 4829, 0, 4829, 4829, 4829, 4829, 4829, 4829, 4830, 0, 0, 4830, 0, 0, 4830, 0, 4830, 4830, 4830, 4830, 4830, 0, 0, 0, 4830, 0, 4830, 0, 0, 0, 4830, 4831, 4831, 4831, 0, 0, 0, 0, 0, 0, 0, 0, 4831, 0, 4831, 4831, 4831, 4831, 4831, 0, 0, 0, 4831, 0, 4831, 4832, 0, 4832, 4832, 4832, 4832, 4832, 0, 0, 0, 4832, 0, 4832, 4833, 0, 0, 4833, 0, 0, 4833, 0, 4833, 4833, 4833, 4833, 4833, 0, 0, 4833, 4833, 0, 4833, 0, 0, 0, 4833, 4834, 0, 0, 0, 0, 0, 4834, 0, 4834, 4834, 4834, 4834, 4834, 0, 0, 4834, 4834, 0, 0, 0, 0, 0, 4834, 4835, 4835, 0, 0, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 0, 4835, 0, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4836, 0, 0, 0, 0, 0, 4836, 0, 0, 4836, 4836, 0, 4836, 0, 0, 0, 0, 4836, 4836, 4836, 0, 4836, 4837, 4837, 0, 0, 4837, 4837, 4837, 4837, 4837, 4837, 4837, 4837, 4837, 0, 4837, 4837, 4837, 4837, 4837, 4837, 4837, 4837, 4837, 4837, 4837, 4837, 4837, 4837, 4837, 4838, 4838, 0, 0, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 0, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4839, 4839, 0, 0, 4839, 4839, 4839, 4839, 4839, 4839, 4839, 4839, 4839, 0, 4839, 4839, 4839, 4839, 4839, 4839, 4839, 4839, 4839, 4839, 4839, 4839, 4839, 4839, 4839, 4840, 4840, 0, 4840, 4840, 4840, 4840, 4840, 4840, 4840, 4840, 4840, 4840, 4840, 4840, 4840, 0, 4840, 4840, 0, 4840, 4840, 4840, 4840, 0, 4840, 4840, 4840, 4840, 4844, 4844, 4844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4844, 4844, 4844, 0, 0, 4844, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 0, 4845, 4845, 4845, 4845, 0, 4845, 4845, 4845, 4845, 4845, 4845, 4846, 4846, 0, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 0, 4847, 4847, 4847, 4847, 0, 4847, 4847, 4847, 4847, 4847, 4847, 4848, 0, 0, 4848, 0, 0, 0, 0, 0, 0, 0, 4848, 4848, 0, 0, 0, 4848, 0, 0, 0, 0, 0, 4848, 4849, 4849, 0, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4849, 4850, 4850, 0, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4850, 4851, 4851, 0, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4853, 4853, 4853, 4853, 4853, 4853, 4853, 4853, 4853, 4853, 4853, 4853, 4853, 4853, 4853, 4853, 4853, 0, 4853, 4853, 4853, 4853, 0, 4853, 4853, 4853, 4853, 4853, 4853, 4855, 0, 0, 4855, 0, 0, 4855, 0, 4855, 4855, 4855, 4855, 4855, 0, 0, 0, 4855, 0, 4855, 0, 0, 0, 4855, 4856, 0, 4856, 4856, 4856, 4856, 4856, 0, 0, 0, 4856, 0, 4856, 4857, 0, 4857, 4857, 4857, 4857, 4857, 0, 0, 0, 4857, 0, 4857, 4858, 0, 0, 4858, 0, 0, 4858, 0, 4858, 4858, 4858, 4858, 4858, 0, 0, 4858, 4858, 0, 4858, 0, 0, 0, 4858, 4859, 0, 0, 4859, 0, 0, 4859, 0, 4859, 4859, 4859, 4859, 4859, 0, 0, 4859, 4859, 0, 0, 0, 0, 0, 4859, 4860, 0, 0, 0, 0, 0, 4860, 0, 0, 4860, 4860, 0, 4860, 0, 0, 0, 0, 0, 4860, 4860, 0, 4860, 4861, 0, 0, 0, 0, 0, 4861, 0, 0, 4861, 4861, 0, 4861, 0, 0, 0, 0, 4861, 4861, 4861, 0, 4861, 4862, 4862, 0, 0, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 0, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 4864, 4864, 4864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4864, 4864, 4864, 0, 0, 4864, 4865, 4865, 0, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4866, 4866, 0, 0, 4866, 4866, 4866, 4866, 4866, 4866, 4866, 4866, 4866, 0, 4866, 0, 4866, 4866, 4866, 4866, 4866, 4866, 4866, 4866, 4866, 4866, 4866, 4866, 4866, 4867, 0, 0, 0, 0, 0, 4867, 0, 0, 4867, 4867, 0, 4867, 0, 0, 0, 0, 0, 4867, 4867, 0, 4867, 4868, 4868, 4868, 4868, 4868, 4868, 4868, 4868, 4868, 4868, 4868, 4868, 4868, 4868, 4868, 4868, 4868, 0, 4868, 4868, 4868, 4868, 0, 4868, 4868, 4868, 4868, 4868, 4868, 4869, 4869, 4869, 4869, 4869, 4869, 4869, 4869, 4869, 4869, 4869, 4869, 4869, 4869, 4869, 4869, 4869, 0, 4869, 4869, 4869, 4869, 0, 4869, 4869, 4869, 4869, 4869, 4869, 4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870, 4870, 0, 4870, 4870, 4870, 4870, 0, 4870, 4870, 4870, 4870, 4870, 4870, 4871, 4871, 4871, 4871, 4871, 4871, 4871, 4871, 4871, 4871, 4871, 4871, 4871, 4871, 4871, 4871, 4871, 0, 4871, 4871, 4871, 4871, 0, 4871, 4871, 4871, 4871, 4871, 4871, 4872, 4872, 0, 0, 4872, 4872, 4872, 4872, 4872, 4872, 4872, 4872, 4872, 0, 4872, 4872, 4872, 4872, 4872, 4872, 4872, 4872, 4872, 4872, 4872, 4872, 4872, 4872, 4872, 4873, 4873, 0, 0, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 0, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097, 4097 } ; 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 "scanner.l" #define INITIAL 0 /****************************************************************************** * * $Id$ * * Copyright (C) 1997-2000 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. * * All output generated with Doxygen is not covered by this license. * */ #line 18 "scanner.l" /* * includes */ #include #include #include #include #include #include "qtbc.h" #include #include #include #include "scanner.h" #include "entry.h" #include "doxygen.h" #include "message.h" #include "config.h" #include "util.h" #include "index.h" #include "defargs.h" #include "language.h" #include "outputlist.h" #ifndef WIN32 #include #endif #define YY_NEVER_INTERACTIVE 1 MemberGroupDict memberGroupDict(1009); // dictionary of the member groups heading /* ----------------------------------------------------------------- * * statics */ static bool insideArgumentList; static QCString className; static QCString memberName; static QCString refName; static OutputList * outDoc; static QCString code; static QCString linkRef; static QCString linkText; static QCString codeBlock; static const char * inputString; static int inputPosition; static int lastContext; static int lastCContext; static int lastDocContext; static int lastDocRelContext; static int lastCPPContext; static int lastSkipSharpContext; static int lastSkipRoundContext; static int lastBriefContext; static int lastVerbState; static int lastStringContext; static int lastCurlyContext; static int lastRoundContext; static int lastSquareContext; static int lastCodeState; static int lastAfterDocContext; static int lastGroupContext; static int lastMemberGroupContext; static int lastFormulaContext; static int lastAnchorContext; static int lastInitializerContext; static int lastClassTemplSpecContext; static int nextDefContext; static int overloadContext; static Protection protection; static Protection baseProt; static int sharpCount = 0 ; static int roundCount = 0 ; static int curlyCount = 0 ; static int squareCount = 0 ; static int ifCount = 0 ; static Entry* current_root = 0 ; static Entry* global_root = 0 ; static Entry* current = 0 ; static Entry* previous = 0 ; static Entry* tempEntry = 0 ; static int yyLineNr = 0 ; static int anonCount = 0 ; static char yyFileName[2048] ; static int lastMemberGroupLine; static bool sig; static bool slot; static bool gstat; static bool removeSlashes; static Specifier virt; static Specifier baseVirt; static bool exampleDoc; static QCString exampleName; static QCString htmlUrl,htmlText; static QCString currentIncludeFile; static QCString msType,msName,msArgs; static int memberGroupId = -1; static int includeFileOffset = 0; static int includeFileLength = 0; static bool firstLine; static bool isTypedef; static bool inParamBlock; static bool inRetValBlock; static bool inExceptionBlock; static bool inSeeBlock; static bool inReturnBlock; static bool inAuthorBlock; static bool inDeprecatedBlock; static bool inVersionBlock; static bool inDateBlock; static bool inBugBlock; static bool inPreBlock; static bool inPostBlock; static bool inInvarBlock; static bool inWarningBlock; static bool inParBlock; static bool firstSeeArg; static char afterDocTerminator; static int tmpDocType; static QCString sectionLabel; static QCString sectionTitle; static SectionInfo::SectionType sectionType; static QCString funcPtrType; static QCString templateStr; static QCString baseName; static QCString *specName; static QCString formulaText; static QCString sectionRef; // state variable for reading the argument list of a function static int argRoundCount; static int argSharpCount; static int currentArgumentContext; static int lastCopyArgStringContext; static int lastCopyArgContext; static int currentListIndentLevel; static QCString *copyArgString; static QCString fullArgString; static ArgumentList *currentArgumentList; static QCString *currentTemplateSpec; static QCString curImageName; static char lastCopyArgChar; static QCString *pCopyRoundString; static QCString *pCopyCurlyString; static QCString *pCopyQuotedString; //----------------------------------------------------------------------------- static void initParser() { insideArgumentList=FALSE; className.resize(0); memberName.resize(0); refName=""; code.resize(0); linkRef.resize(0); linkText.resize(0); codeBlock.resize(0); htmlUrl.resize(0); htmlText.resize(0); currentIncludeFile.resize(0); sectionLabel.resize(0); sectionTitle.resize(0); baseName.resize(0); formulaText.resize(0); protection = Public; baseProt = Public; sharpCount = 0; roundCount = 0; curlyCount = 0; ifCount = 0; memberGroupId = -1; sig = FALSE; slot = FALSE; gstat = FALSE; virt = Normal; baseVirt = Normal; includeFileOffset = 0; includeFileLength = 0; firstLine = TRUE; isTypedef = FALSE; inParamBlock = FALSE; inRetValBlock = FALSE; inExceptionBlock = FALSE; inSeeBlock = FALSE; inReturnBlock = FALSE; inAuthorBlock = FALSE; inDeprecatedBlock = FALSE; inVersionBlock = FALSE; inDateBlock = FALSE; inBugBlock = FALSE; inPreBlock = FALSE; inPostBlock = FALSE; inInvarBlock = FALSE; inWarningBlock = FALSE; inParBlock = FALSE; firstSeeArg = FALSE; } //----------------------------------------------------------------------------- void scanString(const char *s); //----------------------------------------------------------------------------- class TableElem { public: TableElem(int r,int c); ~TableElem(); int getRow() { return row; } int getCol() { return col; } OutputList *outputList() { return ol; } private: OutputList *ol; int row; int col; }; TableElem::TableElem(int r,int c) { //printf("TableElem::TableElem(%d,%d)\n",r,c); ol=new OutputList(outDoc); outDoc=ol; row=r; col=c; } TableElem::~TableElem() { //printf("TableElem::~TableElem(%d,%d)\n",row,col); delete ol; ol=0; } class Table { public: Table(); ~Table(); void newRow(); void newElem(); private: OutputList *parentDoc; QList *elemList; int curRow; int curCol; int rows; int cols; }; Table::Table() { parentDoc=outDoc; elemList=new QList; elemList->setAutoDelete(TRUE); curRow=curCol=rows=cols=0; } Table::~Table() { //printf("Table::~Table()\n"); // use elemList & cols & rows if (cols>0 && rows>0) { parentDoc->startTable(cols); TableElem *e=elemList->first(); while (e) { if (e->getRow()>0) { if (e->getCol()==0) { if (e->getRow()>1) parentDoc->endTableRow(); parentDoc->nextTableRow(); } else { parentDoc->nextTableColumn(); } *parentDoc+=*e->outputList(); parentDoc->endTableColumn(); } e=elemList->next(); } parentDoc->endTable(); } delete elemList; elemList=0; outDoc=parentDoc; } void Table::newRow() { //printf("Table::newRow()\n"); curRow++; if (curRow>rows) rows=curRow; curCol=0; } void Table::newElem() { //printf("Table::newElem(%d,%d)\n",curRow,curCol); TableElem *te = new TableElem(curRow,curCol); elemList->append(te); curCol++; if (curCol>cols) cols=curCol; } static QStack tableStack; static Table *curTable; static void startTable() { //printf("startTable()\n"); curTable=new Table; tableStack.push(curTable); } static void endTable() { //printf("endTable()\n"); delete tableStack.pop(); // the destructor adds the table to the stream! curTable=tableStack.top(); } //----------------------------------------------------------------------------- static void lineCount() { for( const char* c = yytext ; *c ; ++c ) yyLineNr += (*c == '\n') ; } static void endArgumentList() { if (insideArgumentList) { insideArgumentList=FALSE; outDoc->endItemList(); } } static void addType( Entry* current ) { if( current->type.length() ) current->type += ' ' ; current->type += current->name ; current->name.resize(0) ; if( current->type.length() ) current->type += ' ' ; current->type += current->args ; current->args.resize(0) ; current->argList->clear(); } static void includeFile(OutputList &ol,const char *fileName,bool quiet) { //FileInfo *f; bool ambig; FileDef *fd; if ((fd=findFileDef(&exampleNameDict,fileName,ambig))) { currentIncludeFile=fileToString(fd->absFilePath()); includeFileOffset=0; includeFileLength=currentIncludeFile.length(); OutputList codeFrag(&ol); parseCode(codeFrag,0,currentIncludeFile,exampleDoc,exampleName); if (!quiet) { ol.startCodeFragment(); ol+=codeFrag; ol.endCodeFragment(); } } else if (ambig) { warn("Include file name %s is ambigious.\n",fileName); warn("Possible candidates:\n"); //includeFileList.writeMatches(fileName); showFileDefMatches(&exampleNameDict,fileName); } else { warn("Warning: example file %s is not found. ",fileName); warn("Check your EXAMPLE_PATH\n"); } } static void verbIncludeFile(OutputList &ol,const char *name) { //FileInfo *f; bool ambig; FileDef *fd; if ((fd=findFileDef(&exampleNameDict,name,ambig))) { ol.startCodeFragment(); ol.codify(fileToString(fd->absFilePath())); ol.endCodeFragment(); } else if (ambig) { warn("Include file name %s is ambigious.\n",name); warn("Possible candidates:\n"); showFileDefMatches(&exampleNameDict,name); } else { warn("Warning: example file %s is not found. ",name); warn("Check your EXAMPLE_PATH\n"); } } static QCString stripQuotes(const char *s) { QCString name; if (s==0 || *s==0) return name; name=s; if (name.at(0)=='"' && name.at(name.length()-1)=='"') { name=name.mid(1,name.length()-2); } return name; } static QCString stripKnownExtensions(const char *text) { QCString result=text; if (result.right(4)==".tex") result=result.left(result.length()-4); else if (result.right(5)==".html") result=result.left(result.length()-5); //printf("%s stripKnowExtensions(%s)\n",result.data(),text); return result; } static void skipLine(OutputList &ol,const char *key) { bool found=FALSE; while (!found) { QCString s; char c; while ( includeFileOffset listIndentStack; static bool insideItemList = FALSE; static void addListItemMarker(const char *marker) { // find the actual position at which the bullet was found int indent=0; const char *p=marker; char c; while ((c=*p++)) { if (c=='\t') { indent+=Config::tabSize - (indent%Config::tabSize); } else { indent++; } } //printf("list marker found at column %d\n",indent); if (!insideItemList) { outDoc->startItemList(); outDoc->writeListItem(); listIndentStack.push(new int(indent)); insideItemList=TRUE; } else { int *pPrevIndent = listIndentStack.top(); if (*pPrevIndent==indent) // new item at the same indent level { outDoc->writeListItem(); } else if (*pPrevIndentstartItemList(); outDoc->writeListItem(); listIndentStack.push(new int(indent)); } else // end sub item list { listIndentStack.pop(); delete pPrevIndent; outDoc->endItemList(); // safe guard against wrong indenting if (listIndentStack.isEmpty()) { insideItemList=FALSE; warn("Warning: list item with invalid indent found!\n"); } else { outDoc->writeListItem(); } } } } static void forceEndItemList() { int *indent; while ((indent=listIndentStack.pop())!=0) { outDoc->endItemList(); delete indent; } insideItemList=FALSE; } #if 0 static void tryEndItemList() { if (listIndentStack.count()==1) // no subitems => end list { outDoc->endItemList(); delete listIndentStack.pop(); insideItemList=FALSE; } } #endif //----------------------------------------------------------------- static bool inBlock() { return inParamBlock || inRetValBlock || inSeeBlock || inReturnBlock || inAuthorBlock || inVersionBlock || inDateBlock || inWarningBlock || inBugBlock || inParBlock || inExceptionBlock || inDeprecatedBlock || inPreBlock || inPostBlock || inInvarBlock; } static void endBlock() { if (inParamBlock || inRetValBlock || inExceptionBlock) { outDoc->endDescTableData(); outDoc->endDescTable(); } outDoc->endDescList(); inParamBlock=inRetValBlock=inSeeBlock=inReturnBlock=inAuthorBlock= inVersionBlock=inDateBlock=inBugBlock=inWarningBlock= inParBlock=inExceptionBlock=inDeprecatedBlock=inPreBlock=inPostBlock= inInvarBlock=FALSE; } static void addSection() { //printf("New section pageName=%s label=%s title=%s\n", // current->name.data(),sectionLabel.data(),sectionTitle.data()); if (sectionLabel.isEmpty()) return; if (sectionDict[sectionLabel]==0) { SectionInfo *si=new SectionInfo(sectionLabel,sectionTitle,sectionType); //printf("Adding section addr=%p label=`%s' sectionTitle=`%s' fileName=%s\n",si,sectionLabel.data(),sectionTitle.data(),si->fileName.data()); sectionDict.insert(sectionLabel,si); current->anchors->append(new QCString(sectionLabel)); } else { warn("Warning: Duplicate label %s found!\n",sectionLabel.data()); } } // Adds a formula text to the list/dictionary of formulas if it was // not already added. Returns the label of the formula. static QCString addFormula() { QCString formLabel; QCString fText=formulaText.simplifyWhiteSpace(); Formula *f=0; if ((f=formulaDict[fText])==0) { f = new Formula(fText); formulaList.append(f); formulaDict.insert(fText,f); formLabel.sprintf("\\form#%d",f->getId()); formulaNameDict.insert(formLabel,f); } else { formLabel.sprintf("\\form#%d",f->getId()); } return formLabel; } static bool nameIsOperator(QCString &name) { return name.right(8)=="operator" && (name.length()==8 || !isId(name.at(name.length()-9))); } static void checkDocs() { if ((current->brief.length()>2 && current->brief.at(0)=='<' && current->brief.at(1)==' ') || (current->doc.length()>2 && current->doc.at(0)=='<' && current->doc.at(1)==' ') ) { warn("Warning: Found lonely '<' symbol at the start of the documentation " "at line %d of %s\n",yyLineNr,yyFileName); } } //static bool curLatexState; //static bool curManState; //static bool curHtmlState; // //static void storeOutputListState() //{ // curLatexState = outDoc->isEnabled(OutputGenerator::Latex); // curHtmlState = outDoc->isEnabled(OutputGenerator::Html); // curManState = outDoc->isEnabled(OutputGenerator::Man); //} // //static void restoreOutputListState() //{ // if (curLatexState) // outDoc->enable(OutputGenerator::Latex); // else // outDoc->disable(OutputGenerator::Latex); // if (curHtmlState) // outDoc->enable(OutputGenerator::Html); // else // outDoc->disable(OutputGenerator::Html); // if (curManState) // outDoc->enable(OutputGenerator::Man); // else // outDoc->disable(OutputGenerator::Man); //} enum ImageTypes { IT_Html, IT_Latex }; // search for an image in the imageNameDict and if found // copies the image to the output directory (which is the // html directory if type==0 or the latex directory if type==1) static QCString findAndCopyImage(const char *fileName,ImageTypes type) { QCString result; bool ambig; FileDef *fd; if ((fd=findFileDef(&imageNameDict,fileName,ambig))) { QFile inImage(fd->absFilePath()); if (inImage.open(IO_ReadOnly)) { result = fileName; int i; if ((i=result.findRev('/'))!=-1 || (i=result.findRev('\\'))!=-1) { result.right(result.length()-i-1); } QCString outputDir; switch(type) { case IT_Html: outputDir = Config::htmlOutputDir; break; case IT_Latex: outputDir = Config::latexOutputDir; break; } QCString outputFile = outputDir+"/"+result; QFile outImage(outputFile); if (outImage.open(IO_WriteOnly)) // copy the image { char *buffer = new char[inImage.size()]; inImage.readBlock(buffer,inImage.size()); outImage.writeBlock(buffer,inImage.size()); outImage.flush(); delete buffer; } else { warn("Warning: could not write output image %s\n",outputFile.data()); } } else { warn("Warning: could not open image %s\n",fileName); } } else if (ambig) { warn("Warning: image file name %s is ambigious.\n",fileName); warn("Possible candidates:\n"); //includeFileList.writeMatches(fileName); showFileDefMatches(&imageNameDict,fileName); } else { result=fileName; if (result.left(5)!="http:") { warn("Warning: image file %s is not found in IMAGE_PATH: " "assuming external image. ",fileName); } } return result; } /* ----------------------------------------------------------------- */ //static void addToBody(const char *text); //static void addToBodyCond(const char *text); /* ----------------------------------------------------------------- */ #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 && inputString[inputPosition] ) { *buf = inputString[inputPosition++] ; //printf("%d (%c)\n",*buf,*buf); c++; buf++; } return c; } //ATTR ((({BN}+[^\>]+)/">")?) #define Define 1 #define DefineArg 2 #define DefineEnd 3 #define Include 4 #define ClassName 5 #define ClassVar 6 #define ClassTemplSpec 7 #define Bases 8 #define BasesProt 9 #define NextSemi 10 #define FindMembers 11 #define FindMemberName 12 #define FindFields 13 #define FindFieldArg 14 #define Function 15 #define FuncRound 16 #define ExcpRound 17 #define FuncQual 18 #define Operator 19 #define Array 20 #define Curly 21 #define Using 22 #define UsingDirective 23 #define NameSpaceDocArg1 24 #define SkipCurly 25 #define SkipCurlyCpp 26 #define SkipCurlyEndDoc 27 #define SkipString 28 #define SkipInits 29 #define SkipCPP 30 #define SkipCPPBlock 31 #define SkipComment 32 #define SkipCxxComment 33 #define SkipCurlyBlock 34 #define SkipRoundBlock 35 #define SkipCode 36 #define Sharp 37 #define SkipSharp 38 #define SkipRound 39 #define SkipSquare 40 #define TypedefName 41 #define Comment 42 #define Doc 43 #define JavaDoc 44 #define ClassDoc 45 #define LineDoc 46 #define DefLineDoc 47 #define ClassDocArg1 48 #define ClassDocArg2 49 #define ClassDocArg3 50 #define ClassDocFunc 51 #define ClassDocFuncPtr 52 #define ClassDocFuncQual 53 #define ClassDocFuncSkipLine 54 #define ClassDocFuncExc 55 #define ClassDocDefine 56 #define ClassDocRelates 57 #define ClassDocBrief 58 #define ClassDocOverload 59 #define ClassDefineArgs 60 #define GroupDocArg1 61 #define GroupDocArg2 62 #define GroupName 63 #define GroupHeader 64 #define AfterDoc 65 #define AfterDocBrief 66 #define AfterDocLine 67 #define PageDoc 68 #define PageDocTitle 69 #define PageDocArg1 70 #define PageDocArg2 71 #define FileDocArg1 72 #define FileDocArg2 73 #define ExampleDoc 74 #define ExampleDocArg1 75 #define EnumDoc 76 #define EnumDocArg1 77 #define FuncPtr 78 #define EndFuncPtr 79 #define FuncFunc 80 #define FuncFuncEnd 81 #define FuncFuncType 82 #define MemberSpec 83 #define MemberSpecSkip 84 #define SkipVerbatim 85 #define Text 86 #define DocScan 87 #define DocParam 88 #define DocException 89 #define DocHtmlScan 90 #define DocLatexScan 91 #define DocEmphasis 92 #define DocBold 93 #define DocCode 94 #define DocCodeBlock 95 #define DocInternal 96 #define DocLink 97 #define DocLinkText 98 #define DocSkipWord 99 #define DocInclude 100 #define DocDontInclude 101 #define DocDescItem 102 #define DocHtmlLink 103 #define DocHtmlAnchor 104 #define DocHtmlHref1 105 #define DocHtmlHref2 106 #define DocBaseClass 107 #define DocSkiplineKey 108 #define DocSkipKey 109 #define DocLineKey 110 #define DocUntilKey 111 #define DocKeyEnd 112 #define DocPar 113 #define DocRefName 114 #define DocVerbatim 115 #define DocVerbInc 116 #define DocIndexWord 117 #define DocRef 118 #define DocRefArg 119 #define DocRefArgStart 120 #define DocRefItem 121 #define DocRefItemName 122 #define DocImage 123 #define DocHtmlImageName 124 #define DocLatexImageName 125 #define DocLatexImageWidth 126 #define SectionLabel 127 #define SectionTitle 128 #define SkipTemplate 129 #define EndTemplate 130 #define CopyArgString 131 #define CopyArgRound 132 #define CopyArgSharp 133 #define CopyArgComment 134 #define CopyArgCommentLine 135 #define ReadFuncArgType 136 #define ReadTempArgs 137 #define Specialization 138 #define DocSkipHtmlComment 139 #define ReadFormulaShort 140 #define ReadFormulaLong 141 #define AnchorLabel 142 #define ReadInitializer 143 #define CopyString 144 #define CopyRound 145 #define CopyCurly 146 /* 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 1050 "scanner.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 >= 4098 ) 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] != 33748 ); 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; } 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 1052 "scanner.l" { // new file if (memberGroupId!=-1) { warn("Warning: Missing \\endmgroup in file %s\n",yyFileName); memberGroupId=-1; } yyLineNr= 0 ; // there is always an extra newline at the start of the file int i; for( i = 0 ; yytext[i+1] != 6 ; i++ ) yyFileName[i] = yytext[i+1] ; yyFileName[i] = 0 ; msg("Parsing file %s...\n",yyFileName); current_root = global_root ; initParser(); current->reset(); int sec=guessSection(yyFileName); if (sec) { current->name = yyFileName; current->name = current->name; current->section = sec; current_root->addSubEntry(current); current = new Entry; } BEGIN( FindMembers ); } YY_BREAK case 2: YY_RULE_SETUP #line 1078 "scanner.l" YY_BREAK /* ^{BL} { if (insideArgumentList) { insideArgumentList=FALSE; outDoc->endItemList(); } else { outDoc->newParagraph(); } if (inBlock()) endBlock(); } */ case 3: YY_RULE_SETUP #line 1093 "scanner.l" { /* found list item marker */ addListItemMarker(yytext); } YY_BREAK case 4: YY_RULE_SETUP #line 1096 "scanner.l" { BEGIN(DocSkipHtmlComment); } YY_BREAK case 5: YY_RULE_SETUP #line 1097 "scanner.l" { BEGIN(DocScan); } YY_BREAK case 6: YY_RULE_SETUP #line 1098 "scanner.l" YY_BREAK case 7: YY_RULE_SETUP #line 1099 "scanner.l" { outDoc->writeCopyright(); } YY_BREAK case 8: YY_RULE_SETUP #line 1100 "scanner.l" { outDoc->writeQuote(); } YY_BREAK case 9: YY_RULE_SETUP #line 1101 "scanner.l" { outDoc->writeUmlaut(yytext[1]); } YY_BREAK case 10: YY_RULE_SETUP #line 1102 "scanner.l" { outDoc->writeAcute(yytext[1]); } YY_BREAK case 11: YY_RULE_SETUP #line 1103 "scanner.l" { outDoc->writeGrave(yytext[1]); } YY_BREAK case 12: YY_RULE_SETUP #line 1104 "scanner.l" { outDoc->writeCirc(yytext[1]); } YY_BREAK case 13: YY_RULE_SETUP #line 1105 "scanner.l" { outDoc->writeTilde(yytext[1]); } YY_BREAK case 14: YY_RULE_SETUP #line 1106 "scanner.l" { outDoc->writeSharpS(); } YY_BREAK case 15: YY_RULE_SETUP #line 1107 "scanner.l" { outDoc->writeRing(yytext[1]); } YY_BREAK case 16: YY_RULE_SETUP #line 1108 "scanner.l" { QCString envvar=&yytext[2]; envvar=envvar.left(envvar.length()-1); outDoc->docify(getenv(envvar)); } YY_BREAK case 17: *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 1113 "scanner.l" { outDoc->pushGeneratorState(); /*storeOutputListState();*/ outDoc->disableAllBut(OutputGenerator::Html); BEGIN(DocHtmlScan); } YY_BREAK case 18: *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 1118 "scanner.l" { /*restoreOutputListState();*/ outDoc->popGeneratorState(); BEGIN(DocScan); } YY_BREAK case 19: *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 1123 "scanner.l" { /*storeOutputListState();*/ outDoc->pushGeneratorState(); outDoc->disableAllBut(OutputGenerator::Latex); BEGIN(DocLatexScan); } YY_BREAK case 20: *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 1129 "scanner.l" { /*restoreOutputListState();*/ outDoc->popGeneratorState(); BEGIN(DocScan); } YY_BREAK case 21: YY_RULE_SETUP #line 1134 "scanner.l" { outDoc->writeString(yytext); } YY_BREAK case 22: YY_RULE_SETUP #line 1137 "scanner.l" { char c[2]; c[0]=*yytext;c[1]='\0'; outDoc->writeString(c); } YY_BREAK case 23: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 11; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 1142 "scanner.l" YY_BREAK case 24: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 14; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 1143 "scanner.l" { writeMemberList(*outDoc); } YY_BREAK case 25: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 15; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 1144 "scanner.l" { writeClassHierarchy(*outDoc); } YY_BREAK case 26: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 19; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 1145 "scanner.l" { writeAnnotatedClassList(*outDoc); } YY_BREAK case 27: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 15; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 1146 "scanner.l" { /*TODO: fix this writeHeaderFileList(*outDoc); */ } YY_BREAK case 28: *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 1147 "scanner.l" { BEGIN( DocSkipWord ); } YY_BREAK case 29: *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 1148 "scanner.l" { BEGIN( DocSkipWord ); } YY_BREAK case 30: *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 1149 "scanner.l" { BEGIN( DocVerbInc ); } YY_BREAK case 31: YY_RULE_SETUP #line 1150 "scanner.l" { verbIncludeFile(*outDoc,stripQuotes(yytext)); BEGIN( DocScan ); } YY_BREAK case 32: *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 1154 "scanner.l" { outDoc->startCodeFragment(); BEGIN(DocVerbatim); } YY_BREAK case 33: *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 1158 "scanner.l" { outDoc->endCodeFragment(); BEGIN(DocScan); } YY_BREAK case 34: YY_RULE_SETUP #line 1162 "scanner.l" { //printf("docifying: %s\n",yytext); outDoc->codify(yytext); } YY_BREAK case 35: YY_RULE_SETUP #line 1166 "scanner.l" { outDoc->codify(yytext); } YY_BREAK case 36: YY_RULE_SETUP #line 1169 "scanner.l" { //printf("char %c\n",*yytext); char c[2];c[0]=*yytext;c[1]='\0'; outDoc->codify(c); } YY_BREAK case 37: *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 1174 "scanner.l" { if (!Config::internalDocsFlag) { outDoc->newParagraph(); scanString(theTranslator->trForInternalUseOnly()+"\n"); //outDoc->writeString("For internal use only.\n"); BEGIN( DocInternal ); } } YY_BREAK case 38: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 6; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 1183 "scanner.l" { outDoc->newParagraph(); scanString(theTranslator->trReimplementedForInternalReasons()+"\n"); } YY_BREAK case 39: *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 1187 "scanner.l" { BEGIN( DocLink ); } YY_BREAK case 40: YY_RULE_SETUP #line 1188 "scanner.l" { BEGIN( DocScan ); } YY_BREAK case 41: YY_RULE_SETUP #line 1189 "scanner.l" { linkRef = stripKnownExtensions(yytext); linkText = ""; BEGIN( DocLinkText ); } YY_BREAK case 42: YY_RULE_SETUP #line 1194 "scanner.l" { linkText += *yytext; } YY_BREAK case 43: YY_RULE_SETUP #line 1195 "scanner.l" { linkText += " "; } YY_BREAK case 44: YY_RULE_SETUP #line 1196 "scanner.l" { // <- needed for things like \endlink. //printf("GenerateLink className=`%s' linkRef=`%s' linkText=`%s'\n", // className.data(),linkRef.data(),linkText.data()); generateLink(*outDoc,className,linkRef,inSeeBlock,linkText.stripWhiteSpace()); BEGIN( DocScan ); } YY_BREAK /* "@ref"{B}+ { BEGIN(DocRef); } {SCOPENAME} { generateLink(*outDoc,className,yytext,TRUE,0); BEGIN( DocScan ); } */ case 45: *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 1211 "scanner.l" { warn("Warning: \\endlink without \\link " "in documentation of %s\n", refName.data()); } YY_BREAK case 46: *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 1214 "scanner.l" { BEGIN(DocIndexWord); } YY_BREAK case 47: YY_RULE_SETUP #line 1217 "scanner.l" { Formula *formula=formulaNameDict[yytext]; if (formula) { QCString formName; formName.sprintf("form-%d.gif",formula->getId()); outDoc->writeFormula(formName,formula->getFormulaText()); } } YY_BREAK case 48: YY_RULE_SETUP #line 1226 "scanner.l" { //printf("Adding %s to index\n",yytext); outDoc->addToIndex(yytext,0); BEGIN(DocScan); } YY_BREAK case 49: *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 1231 "scanner.l" { if (insideArgumentList) { outDoc->writeListItem(); } else { outDoc->startItemList(); outDoc->writeListItem(); insideArgumentList=TRUE; } } YY_BREAK case 50: YY_RULE_SETUP #line 1243 "scanner.l" { BEGIN(DocPar); } YY_BREAK case 51: YY_RULE_SETUP #line 1246 "scanner.l" { endArgumentList(); if (inBlock()) endBlock(); inParBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); outDoc->docify(((QCString)yytext).stripWhiteSpace()); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); BEGIN(DocScan); } 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 1258 "scanner.l" { endArgumentList(); if (!inWarningBlock) { if (inBlock()) endBlock(); inWarningBlock=TRUE; outDoc->startDescList(); //outDoc->writeBoldString("Warning: "); outDoc->startBold(); scanString(theTranslator->trWarning()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->writeDescItem(); } } 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 1277 "scanner.l" { endArgumentList(); if (!inBugBlock) { if (inBlock()) endBlock(); inBugBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); scanString(theTranslator->trBugsAndLimitations()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->writeDescItem(); } } YY_BREAK case 54: *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 1295 "scanner.l" { endArgumentList(); if (!inPreBlock) { if (inBlock()) endBlock(); inPreBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); scanString(theTranslator->trPrecondition()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->writeDescItem(); } } YY_BREAK case 55: *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 1313 "scanner.l" { endArgumentList(); if (!inPostBlock) { if (inBlock()) endBlock(); inPostBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); scanString(theTranslator->trPostcondition()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->writeDescItem(); } } YY_BREAK case 56: *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 1331 "scanner.l" { endArgumentList(); if (!inInvarBlock) { if (inBlock()) endBlock(); inInvarBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); scanString(theTranslator->trInvariant()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->writeDescItem(); } } YY_BREAK case 57: *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 1349 "scanner.l" { endArgumentList(); if (!inVersionBlock) { if (inBlock()) endBlock(); inVersionBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); scanString(theTranslator->trVersion()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->writeDescItem(); } } 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 1367 "scanner.l" { endArgumentList(); if (!inDateBlock) { if (inBlock()) endBlock(); inDateBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); scanString(theTranslator->trDate()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->writeDescItem(); } } YY_BREAK case 59: *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 1385 "scanner.l" { endArgumentList(); if (!inDeprecatedBlock) { if (inBlock()) endBlock(); inDeprecatedBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); scanString(theTranslator->trDeprecated()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->writeDescItem(); } } YY_BREAK case 60: *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 1403 "scanner.l" { endArgumentList(); if (!inAuthorBlock) { if (inBlock()) endBlock(); inAuthorBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); scanString(theTranslator->trAuthors()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->docify(", "); } } YY_BREAK case 61: *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 1421 "scanner.l" { endArgumentList(); if (!inReturnBlock) { if (inBlock()) endBlock(); inReturnBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); scanString(theTranslator->trReturns()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } } YY_BREAK case 62: *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 1435 "scanner.l" { endArgumentList(); if (!inSeeBlock) { if (inBlock()) endBlock(); inSeeBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); scanString(theTranslator->trSeeAlso()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->docify(", "); } } 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 1453 "scanner.l" { endArgumentList(); if (!inParamBlock) { if (inBlock()) endBlock(); inParamBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); scanString(theTranslator->trParameters()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); outDoc->startDescTable(); } else { outDoc->endDescTableData(); } BEGIN(DocParam); } YY_BREAK case 64: *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 1473 "scanner.l" { endArgumentList(); if (!inRetValBlock) { if (inBlock()) endBlock(); inRetValBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); scanString(theTranslator->trReturnValues()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); outDoc->startDescTable(); } else { outDoc->endDescTableData(); } BEGIN(DocParam); } YY_BREAK case 65: *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 1493 "scanner.l" { endArgumentList(); if (!inExceptionBlock) { if (inBlock()) endBlock(); inExceptionBlock=TRUE; outDoc->startDescList(); outDoc->startBold(); scanString(theTranslator->trExceptions()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); outDoc->startDescTable(); } else { outDoc->endDescTableData(); } BEGIN(DocException); } YY_BREAK case 66: YY_RULE_SETUP #line 1513 "scanner.l" YY_BREAK case 67: YY_RULE_SETUP #line 1514 "scanner.l" { outDoc->startDescTableTitle(); outDoc->startEmphasis(); outDoc->docify(yytext); outDoc->endEmphasis(); outDoc->endDescTableTitle(); outDoc->startDescTableData(); BEGIN(DocScan); } YY_BREAK case 68: YY_RULE_SETUP #line 1523 "scanner.l" { outDoc->startDescTableTitle(); outDoc->startEmphasis(); outDoc->docify(yytext); outDoc->endEmphasis(); outDoc->endDescTableTitle(); outDoc->startDescTableData(); BEGIN(DocScan); } YY_BREAK case 69: YY_RULE_SETUP #line 1532 "scanner.l" { QCString secName=&yytext[9]; // skip "\section " secName=secName.left(secName.length()-1); // remove \n //printf("SectionName %s found\n",secName.data()); SectionInfo *sec; if ((sec=sectionDict[secName])) { //printf("Title %s\n",sec->title.data()); outDoc->writeSection(sec->label,sec->title, sec->type==SectionInfo::Subsection); } } YY_BREAK case 70: YY_RULE_SETUP #line 1544 "scanner.l" { QCString secName=&yytext[8]; secName=secName.left(secName.length()-1); SectionInfo *sec; if ((sec=sectionDict[secName])) { outDoc->writeAnchor(sec->label); } } YY_BREAK case 71: YY_RULE_SETUP #line 1553 "scanner.l" { BEGIN(DocRefName); } YY_BREAK case 72: YY_RULE_SETUP #line 1556 "scanner.l" { BEGIN(DocRefItem); } YY_BREAK case 73: YY_RULE_SETUP #line 1559 "scanner.l" { QCString ref=yytext; SectionInfo *sec; if ((sec=sectionDict[ref])) { QCString text; if (sec->title.isEmpty()) text=sec->label; else text=sec->title; if (sec->type==SectionInfo::Anchor) { outDoc->writeSectionRefAnchor(sec->fileName,sec->label,text); } else { //printf(" ref sec=%p sec->fileName=%s\n",sec,sec->fileName.data()); outDoc->writeSectionRef(sec->fileName,sec->label,text); } } else if (!generateLink(*outDoc,className,yytext,TRUE,0)) { warn("Warning: reference to unknown section %s!\n",yytext); outDoc->writeBoldString(" unknown reference!"); } BEGIN(DocScan); } YY_BREAK case 74: YY_RULE_SETUP #line 1586 "scanner.l" { sectionRef=yytext; BEGIN(DocRefArgStart); } YY_BREAK case 75: YY_RULE_SETUP #line 1590 "scanner.l" { BEGIN(DocRefArg); } YY_BREAK case 76: YY_RULE_SETUP #line 1593 "scanner.l" { yytext[yyleng-1]='\0'; QCString text=substitute(yytext,"\\\\","\\"); SectionInfo *sec; if ((sec=sectionDict[sectionRef])) { if (sec->type==SectionInfo::Anchor) { outDoc->writeSectionRefAnchor(sec->fileName,sec->label,text); } else { outDoc->writeSectionRef(sec->fileName,sec->label,text); } } else if (!generateLink(*outDoc,className,sectionRef,TRUE,text)) { warn("Warning: reference to unknown section %s!\n",sectionRef.data()); outDoc->writeBoldString("unknown reference!"); } BEGIN(DocScan); } YY_BREAK case 77: YY_RULE_SETUP #line 1615 "scanner.l" { sectionRef=yytext; BEGIN(DocRefItemName); } YY_BREAK case 78: *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 1619 "scanner.l" { SectionInfo *sec; QCString text=yytext; if ((sec=sectionDict[sectionRef])) { outDoc->writeSectionRefItem(sec->fileName,sec->label,text.stripWhiteSpace()); } else { warn("Warning: reference to unknown section %s!\n",sectionRef.data()); outDoc->writeBoldString("unknown reference!"); } BEGIN(DocScan); } YY_BREAK case 79: YY_RULE_SETUP #line 1633 "scanner.l" { BEGIN(DocImage); } YY_BREAK case 80: YY_RULE_SETUP #line 1636 "scanner.l" { BEGIN(DocHtmlImageName); } YY_BREAK case 81: YY_RULE_SETUP #line 1639 "scanner.l" { BEGIN(DocLatexImageName); } YY_BREAK case 82: YY_RULE_SETUP #line 1642 "scanner.l" { curImageName = findAndCopyImage(stripQuotes(yytext),IT_Html); if (!curImageName.isEmpty()) { /*storeOutputListState();*/ outDoc->pushGeneratorState(); outDoc->disableAllBut(OutputGenerator::Html); outDoc->writeImage(curImageName,0,0); /*restoreOutputListState();*/ outDoc->popGeneratorState(); } BEGIN(DocScan); } YY_BREAK case 83: YY_RULE_SETUP #line 1655 "scanner.l" { curImageName = findAndCopyImage(stripQuotes(yytext),IT_Latex); if (curImageName.isEmpty()) BEGIN(DocScan); else BEGIN(DocLatexImageWidth); } YY_BREAK case 84: YY_RULE_SETUP #line 1662 "scanner.l" { // no width specified /*storeOutputListState();*/ outDoc->pushGeneratorState(); outDoc->disableAllBut(OutputGenerator::Latex); outDoc->writeImage(curImageName,0,0); /*restoreOutputListState();*/ outDoc->popGeneratorState(); BEGIN(DocScan); } YY_BREAK case 85: YY_RULE_SETUP #line 1671 "scanner.l" { /*storeOutputListState();*/ outDoc->pushGeneratorState(); outDoc->disableAllBut(OutputGenerator::Latex); outDoc->writeImage(curImageName,yytext,0); /*restoreOutputListState();*/ outDoc->popGeneratorState(); BEGIN(DocScan); } YY_BREAK case 86: YY_RULE_SETUP #line 1680 "scanner.l" { /*storeOutputListState();*/ outDoc->pushGeneratorState(); outDoc->disableAllBut(OutputGenerator::Latex); outDoc->writeImage(curImageName,0,yytext); /*restoreOutputListState();*/ outDoc->popGeneratorState(); BEGIN(DocScan); } YY_BREAK case 87: YY_RULE_SETUP #line 1689 "scanner.l" { warn("Warning: %s is an unsupported output format for \\image\n",yytext); } YY_BREAK case 88: YY_RULE_SETUP #line 1692 "scanner.l" { warn("Warning: invalid \\image command found!\n"); outDoc->enableAll(); BEGIN(DocScan); } YY_BREAK case 89: YY_RULE_SETUP #line 1697 "scanner.l" { outDoc->startCodeFragment(); codeBlock.resize(0); BEGIN( DocCodeBlock ); } YY_BREAK case 90: *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 1702 "scanner.l" { warn("Warning: \\endcode without
 or \\code "
    					       "in the documentation of %s\n",refName.data()); 
					}
	YY_BREAK
case 91:
YY_RULE_SETUP
#line 1706 "scanner.l"
{
  					  generateRef(*outDoc,className,yytext,inSeeBlock);
  					}
	YY_BREAK
case 92:
YY_RULE_SETUP
#line 1709 "scanner.l"
{ 
					  generateRef(*outDoc,className,yytext,inSeeBlock);
					} 
	YY_BREAK
case 93:
YY_RULE_SETUP
#line 1712 "scanner.l"
{ 
				          QCString oName=yytext;
					  generateRef(*outDoc,className,
					              removeRedundantWhiteSpace(oName),inSeeBlock);
					}
	YY_BREAK
case 94:
YY_RULE_SETUP
#line 1717 "scanner.l"
{ 
    					  QCString oName=yytext;
					  generateRef(*outDoc,className,
					              removeRedundantWhiteSpace(oName),inSeeBlock);
					}
	YY_BREAK
case 95:
YY_RULE_SETUP
#line 1722 "scanner.l"
{ outDoc->writeHtmlLink(yytext,yytext); }
	YY_BREAK
case 96:
YY_RULE_SETUP
#line 1723 "scanner.l"
{ outDoc->writeMailLink(yytext); }
	YY_BREAK
case 97:
YY_RULE_SETUP
#line 1724 "scanner.l"
{
					  generateFileRef(*outDoc,yytext);
					}
	YY_BREAK
case 98:
*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 1727 "scanner.l"
{ // needed to match things like \endcode. (note the dot)
				          parseCode(*outDoc,className,codeBlock,exampleDoc,exampleName);
					  //printf("Code block\n-------------\n%s\n--------------\n",codeBlock.data());
					  outDoc->endCodeFragment();
					  BEGIN( DocScan ); 
					}
	YY_BREAK
case 99:
YY_RULE_SETUP
#line 1733 "scanner.l"
{ 
				          parseCode(*outDoc,className,codeBlock,exampleDoc,exampleName);
					  //printf("Code block\n-------------\n%s\n--------------\n",codeBlock.data());
					  outDoc->endCodeFragment();
					  BEGIN( DocScan ); 
					}
	YY_BREAK
case 100:
YY_RULE_SETUP
#line 1739 "scanner.l"
{ BEGIN( DocEmphasis ); }
	YY_BREAK
case 101:
YY_RULE_SETUP
#line 1740 "scanner.l"
{ BEGIN( DocEmphasis ); }
	YY_BREAK
case 102:
YY_RULE_SETUP
#line 1741 "scanner.l"
{ BEGIN( DocBold ); }
	YY_BREAK
case 103:
YY_RULE_SETUP
#line 1742 "scanner.l"
{ BEGIN( DocCode ); }
	YY_BREAK
case 104:
YY_RULE_SETUP
#line 1743 "scanner.l"

	YY_BREAK
case 105:
YY_RULE_SETUP
#line 1744 "scanner.l"
{ outDoc->lineBreak(); }
	YY_BREAK
case 106:
YY_RULE_SETUP
#line 1745 "scanner.l"
{ BEGIN( DocInclude ); }
	YY_BREAK
case 107:
YY_RULE_SETUP
#line 1746 "scanner.l"
{ BEGIN( DocDontInclude ); }
	YY_BREAK
case 108:
YY_RULE_SETUP
#line 1747 "scanner.l"
{ BEGIN( DocSkipKey ); }	
	YY_BREAK
case 109:
YY_RULE_SETUP
#line 1748 "scanner.l"
{ BEGIN( DocSkiplineKey ); firstLine=TRUE; }
	YY_BREAK
case 110:
YY_RULE_SETUP
#line 1749 "scanner.l"
{ BEGIN( DocLineKey ); firstLine=TRUE; }
	YY_BREAK
case 111:
YY_RULE_SETUP
#line 1750 "scanner.l"
{ BEGIN( DocUntilKey ); firstLine=TRUE; }
	YY_BREAK
case 112:
YY_RULE_SETUP
#line 1751 "scanner.l"
{ 
  					  if (includeFileLength>0) 
					    skipUntil(yytext); 
  					  BEGIN( DocScan );
					}
	YY_BREAK
case 113:
YY_RULE_SETUP
#line 1756 "scanner.l"
{ 
  					  if (includeFileLength>0) 
					  {
					    if (firstLine) outDoc->startCodeFragment();
					    firstLine=FALSE;
					    showLine(*outDoc,yytext); 
					    BEGIN( DocKeyEnd );
					  }
					  else
					  {
  					    BEGIN( DocScan );
					  }
					}
	YY_BREAK
case 114:
YY_RULE_SETUP
#line 1769 "scanner.l"
{ 
  					  if (includeFileLength>0) 
					  {
					    if (firstLine) outDoc->startCodeFragment();
					    firstLine=FALSE;
					    skipLine(*outDoc,yytext); 
					    BEGIN( DocKeyEnd );
					  }
					  else
					  {
  					    BEGIN( DocScan );
					  }
					}
	YY_BREAK
case 115:
YY_RULE_SETUP
#line 1782 "scanner.l"
{ 
  					  if (includeFileLength>0) 
					  {
					    if (firstLine) outDoc->startCodeFragment();
					    firstLine=FALSE;
					    showUntil(*outDoc,yytext); 
					    BEGIN( DocKeyEnd );
					  }
					  else
					  {
  					    BEGIN( DocScan );
					  }
					}
	YY_BREAK
case 116:
YY_RULE_SETUP
#line 1795 "scanner.l"
{ BEGIN(DocLineKey); }
	YY_BREAK
case 117:
YY_RULE_SETUP
#line 1796 "scanner.l"
{ BEGIN(DocUntilKey); }
	YY_BREAK
case 118:
YY_RULE_SETUP
#line 1797 "scanner.l"
{ BEGIN(DocSkiplineKey); }
	YY_BREAK
case 119:
YY_RULE_SETUP
#line 1798 "scanner.l"

	YY_BREAK
case YY_STATE_EOF(DocKeyEnd):
#line 1799 "scanner.l"
{
  					  if (!firstLine) outDoc->endCodeFragment();
					  yyterminate();
  					}
	YY_BREAK
case 120:
YY_RULE_SETUP
#line 1803 "scanner.l"
{
  					  unput(*yytext);
  					  if (!firstLine) outDoc->endCodeFragment();
					  BEGIN( DocScan );
  					}
	YY_BREAK
case 121:
YY_RULE_SETUP
#line 1808 "scanner.l"

	YY_BREAK
case 122:
YY_RULE_SETUP
#line 1809 "scanner.l"

	YY_BREAK
case 123:
YY_RULE_SETUP
#line 1810 "scanner.l"
{ outDoc->startBold(); }
	YY_BREAK
case 124:
YY_RULE_SETUP
#line 1811 "scanner.l"
{ outDoc->endBold(); }
	YY_BREAK
case 125:
YY_RULE_SETUP
#line 1812 "scanner.l"
{ outDoc->startCenter(); }
	YY_BREAK
case 126:
YY_RULE_SETUP
#line 1813 "scanner.l"
{ outDoc->endCenter(); }
	YY_BREAK
case 127:
YY_RULE_SETUP
#line 1814 "scanner.l"
{ 
  					  startTable();
  					  /*outDoc->startTable();*/ }
	YY_BREAK
case 128:
YY_RULE_SETUP
#line 1817 "scanner.l"
{
 					  endTable(); 
  					  /*outDoc->endTable();*/ 
					}
	YY_BREAK
case 129:
YY_RULE_SETUP
#line 1821 "scanner.l"

	YY_BREAK
case 130:
YY_RULE_SETUP
#line 1822 "scanner.l"
{ outDoc->startSmall(); }
	YY_BREAK
case 131:
YY_RULE_SETUP
#line 1823 "scanner.l"
{ outDoc->endSmall(); }
	YY_BREAK
case 132:
YY_RULE_SETUP
#line 1824 "scanner.l"

	YY_BREAK
case 133:
YY_RULE_SETUP
#line 1825 "scanner.l"

	YY_BREAK
case 134:
YY_RULE_SETUP
#line 1826 "scanner.l"

	YY_BREAK
case 135:
YY_RULE_SETUP
#line 1827 "scanner.l"

	YY_BREAK
case 136:
YY_RULE_SETUP
#line 1828 "scanner.l"

	YY_BREAK
case 137:
YY_RULE_SETUP
#line 1829 "scanner.l"

	YY_BREAK
case 138:
YY_RULE_SETUP
#line 1830 "scanner.l"

	YY_BREAK
case 139:
YY_RULE_SETUP
#line 1831 "scanner.l"
{ outDoc->startTypewriter(); }
	YY_BREAK
case 140:
YY_RULE_SETUP
#line 1832 "scanner.l"
{ outDoc->endTypewriter(); }
	YY_BREAK
case 141:
YY_RULE_SETUP
#line 1833 "scanner.l"
{ outDoc->startTypewriter(); }
	YY_BREAK
case 142:
YY_RULE_SETUP
#line 1834 "scanner.l"
{ outDoc->endTypewriter(); }
	YY_BREAK
case 143:
YY_RULE_SETUP
#line 1835 "scanner.l"
{ outDoc->startEmphasis(); }
	YY_BREAK
case 144:
YY_RULE_SETUP
#line 1836 "scanner.l"
{ outDoc->endEmphasis(); }
	YY_BREAK
case 145:
YY_RULE_SETUP
#line 1837 "scanner.l"
{ 
                                          /*storeOutputListState();*/
  					  outDoc->pushGeneratorState();
                                          outDoc->disableAllBut(OutputGenerator::Html);
					  outDoc->writeString(yytext); 
                                          /*restoreOutputListState();*/
					  outDoc->popGeneratorState();
					}
	YY_BREAK
case 146:
YY_RULE_SETUP
#line 1845 "scanner.l"
{ 
  					  outDoc->startCodeFragment();
  					  codeBlock.resize(0);
					  BEGIN( DocCodeBlock ); 
					}
	YY_BREAK
case 147:
YY_RULE_SETUP
#line 1850 "scanner.l"
{ 
  					  warn("Warning: 
without
 or \\code"
    					         "in the documentation of %s\n",refName.data()); 
					}
	YY_BREAK
case 148:
YY_RULE_SETUP
#line 1854 "scanner.l"
{ outDoc->startSubscript(); }
	YY_BREAK
case 149:
YY_RULE_SETUP
#line 1855 "scanner.l"
{ outDoc->endSubscript(); }
	YY_BREAK
case 150:
YY_RULE_SETUP
#line 1856 "scanner.l"
{ outDoc->startSuperscript(); }
	YY_BREAK
case 151:
YY_RULE_SETUP
#line 1857 "scanner.l"
{ outDoc->endSuperscript(); }
	YY_BREAK
case 152:
YY_RULE_SETUP
#line 1858 "scanner.l"
{ if (curTable) curTable->newRow(); }
	YY_BREAK
case 153:
YY_RULE_SETUP
#line 1859 "scanner.l"

	YY_BREAK
case 154:
YY_RULE_SETUP
#line 1860 "scanner.l"
{ if (curTable) curTable->newElem(); }
	YY_BREAK
case 155:
YY_RULE_SETUP
#line 1861 "scanner.l"

	YY_BREAK
case 156:
YY_RULE_SETUP
#line 1862 "scanner.l"
{ outDoc->startEnumList(); 
  					  currentListIndentLevel++;
					}
	YY_BREAK
case 157:
YY_RULE_SETUP
#line 1865 "scanner.l"
{ outDoc->endEnumList(); 
  					  currentListIndentLevel--;
					}
	YY_BREAK
case 158:
YY_RULE_SETUP
#line 1868 "scanner.l"
{ outDoc->startItemList(); 
					  currentListIndentLevel++;
					}
	YY_BREAK
case 159:
YY_RULE_SETUP
#line 1871 "scanner.l"
{ outDoc->endItemList(); 
  					  currentListIndentLevel--;
					}
	YY_BREAK
case 160:
YY_RULE_SETUP
#line 1874 "scanner.l"
{ outDoc->writeListItem(); }
	YY_BREAK
case 161:
YY_RULE_SETUP
#line 1875 "scanner.l"

	YY_BREAK
case 162:
YY_RULE_SETUP
#line 1876 "scanner.l"
{ outDoc->startTypewriter(); }
	YY_BREAK
case 163:
YY_RULE_SETUP
#line 1877 "scanner.l"
{ outDoc->endTypewriter(); }
	YY_BREAK
case 164:
YY_RULE_SETUP
#line 1878 "scanner.l"
{ outDoc->startEmphasis(); }
	YY_BREAK
case 165:
YY_RULE_SETUP
#line 1879 "scanner.l"
{ outDoc->endEmphasis(); }
	YY_BREAK
case 166:
YY_RULE_SETUP
#line 1880 "scanner.l"
{ outDoc->writeRuler(); }
	YY_BREAK
case 167:
YY_RULE_SETUP
#line 1881 "scanner.l"
{ outDoc->startDescription(); 
					  currentListIndentLevel++;
					}
	YY_BREAK
case 168:
YY_RULE_SETUP
#line 1884 "scanner.l"
{ outDoc->endDescription(); 
  					  currentListIndentLevel--;
					}
	YY_BREAK
case 169:
YY_RULE_SETUP
#line 1887 "scanner.l"
{ outDoc->startDescItem(); }
	YY_BREAK
case 170:
YY_RULE_SETUP
#line 1888 "scanner.l"

	YY_BREAK
case 171:
YY_RULE_SETUP
#line 1889 "scanner.l"
{ outDoc->endDescItem(); }
	YY_BREAK
case 172:
YY_RULE_SETUP
#line 1890 "scanner.l"

	YY_BREAK
case 173:
YY_RULE_SETUP
#line 1891 "scanner.l"
{ outDoc->lineBreak(); }
	YY_BREAK
case 174:
YY_RULE_SETUP
#line 1892 "scanner.l"
{ outDoc->startEmphasis(); }
	YY_BREAK
case 175:
YY_RULE_SETUP
#line 1893 "scanner.l"
{ outDoc->endEmphasis(); }
	YY_BREAK
case 176:
YY_RULE_SETUP
#line 1894 "scanner.l"

	YY_BREAK
case 177:
YY_RULE_SETUP
#line 1895 "scanner.l"
{ BEGIN(DocHtmlLink); }
	YY_BREAK
case 178:
YY_RULE_SETUP
#line 1896 "scanner.l"
{ outDoc->startBold(); }
	YY_BREAK
case 179:
YY_RULE_SETUP
#line 1897 "scanner.l"
{ outDoc->endBold(); }
	YY_BREAK
case 180:
YY_RULE_SETUP
#line 1898 "scanner.l"
{ 
  					  if (inBlock()) endBlock();
  					  outDoc->newParagraph(); }
	YY_BREAK
case 181:
YY_RULE_SETUP
#line 1901 "scanner.l"

	YY_BREAK
case 182:
YY_RULE_SETUP
#line 1902 "scanner.l"
{ outDoc->startTitle(); }
	YY_BREAK
case 183:
YY_RULE_SETUP
#line 1903 "scanner.l"
{ outDoc->endTitle(); }
	YY_BREAK
case 184:
YY_RULE_SETUP
#line 1904 "scanner.l"
{ outDoc->startSubsection(); }
	YY_BREAK
case 185:
YY_RULE_SETUP
#line 1905 "scanner.l"
{ outDoc->endSubsection(); }
	YY_BREAK
case 186:
YY_RULE_SETUP
#line 1906 "scanner.l"
{ outDoc->startSubsubsection(); }
	YY_BREAK
case 187:
YY_RULE_SETUP
#line 1907 "scanner.l"
{ outDoc->endSubsubsection(); }
	YY_BREAK
case 188:
YY_RULE_SETUP
#line 1908 "scanner.l"
{ BEGIN(DocHtmlAnchor); }
	YY_BREAK
case 189:
YY_RULE_SETUP
#line 1909 "scanner.l"
{ outDoc->writeAnchor(yytext); } 
	YY_BREAK
case 190:
YY_RULE_SETUP
#line 1910 "scanner.l"
{ 
  					  htmlUrl.resize(0);
					  htmlText.resize(0);
  					  BEGIN(DocHtmlHref1); }
	YY_BREAK
case 191:
YY_RULE_SETUP
#line 1914 "scanner.l"
{ 
  					  htmlUrl=yytext; 
					}
	YY_BREAK
case 192:
YY_RULE_SETUP
#line 1917 "scanner.l"
{ BEGIN(DocHtmlHref2); }
	YY_BREAK
case 193:
YY_RULE_SETUP
#line 1918 "scanner.l"
{ htmlText+=yytext; }
	YY_BREAK
/*
\n			{ htmlText+='\n'; }
  */
case 194:
YY_RULE_SETUP
#line 1922 "scanner.l"
{ 
  					  outDoc->writeHtmlLink(htmlUrl,htmlText);
  					  unput(*yytext); 
					  BEGIN(DocScan); 
					}
	YY_BREAK
case 195:
YY_RULE_SETUP
#line 1927 "scanner.l"
{ BEGIN(DocScan); }
	YY_BREAK
case 196:
YY_RULE_SETUP
#line 1928 "scanner.l"
{
  					  outDoc->docify(&yytext[1]);
  					}
	YY_BREAK
case 197:
YY_RULE_SETUP
#line 1931 "scanner.l"
{
  					  outDoc->docify(yytext+1);
  					}
	YY_BREAK
case 198:
YY_RULE_SETUP
#line 1934 "scanner.l"
{ 
  					  outDoc->startEmphasis();
  					  linkifyText(*outDoc,className,0,yytext);
					  outDoc->endEmphasis();
					  BEGIN( DocScan );
					}
	YY_BREAK
case 199:
YY_RULE_SETUP
#line 1940 "scanner.l"
{
  					  outDoc->startEmphasis();
  					  generateRef(*outDoc,className,yytext,inSeeBlock);
					  outDoc->endEmphasis();
					  BEGIN( DocScan );
  					}
	YY_BREAK
case 200:
YY_RULE_SETUP
#line 1946 "scanner.l"
{ 
  					  outDoc->startBold();
  					  linkifyText(*outDoc,className,0,yytext);
					  outDoc->endBold();
					  BEGIN( DocScan );
					}
	YY_BREAK
case 201:
YY_RULE_SETUP
#line 1952 "scanner.l"
{
  					  outDoc->startBold();
  					  generateRef(*outDoc,className,yytext,inSeeBlock);
					  outDoc->endBold();
					  BEGIN( DocScan );
  					}
	YY_BREAK
case 202:
YY_RULE_SETUP
#line 1958 "scanner.l"
{ 
  					  outDoc->startTypewriter();
  					  linkifyText(*outDoc,className,0,yytext);
					  outDoc->endTypewriter();
					  BEGIN( DocScan );
					}
	YY_BREAK
case 203:
YY_RULE_SETUP
#line 1964 "scanner.l"
{
  					  outDoc->startTypewriter();
  					  generateRef(*outDoc,className,yytext,inSeeBlock);
					  outDoc->endTypewriter();
					  BEGIN( DocScan );
  					}
	YY_BREAK
case 204:
YY_RULE_SETUP
#line 1970 "scanner.l"
{
					  includeFile(*outDoc,stripQuotes(yytext),FALSE); 
					  BEGIN( DocScan );
  					}
	YY_BREAK
case 205:
YY_RULE_SETUP
#line 1974 "scanner.l"
{
  					  includeFile(*outDoc,stripQuotes(yytext),TRUE);
					  BEGIN( DocScan );
  					}
	YY_BREAK
case 206:
YY_RULE_SETUP
#line 1978 "scanner.l"
{ codeBlock += yytext; }
	YY_BREAK
case 207:
YY_RULE_SETUP
#line 1979 "scanner.l"
{ codeBlock += yytext; }
	YY_BREAK
case 208:
YY_RULE_SETUP
#line 1980 "scanner.l"
{ codeBlock += '\n'; }
	YY_BREAK
case 209:
YY_RULE_SETUP
#line 1981 "scanner.l"
{ codeBlock += yytext; }
	YY_BREAK
case 210:
YY_RULE_SETUP
#line 1982 "scanner.l"
{ codeBlock += *yytext; }
	YY_BREAK
case 211:
YY_RULE_SETUP
#line 1983 "scanner.l"
{ 
					  outDoc->docify(yytext);
					}
	YY_BREAK
case 212:
YY_RULE_SETUP
#line 1986 "scanner.l"
{ 
  					  outDoc->docify(yytext);
					}
	YY_BREAK
case 213:
YY_RULE_SETUP
#line 1989 "scanner.l"
{ outDoc->writeChar('\n'); }
	YY_BREAK
case 214:
YY_RULE_SETUP
#line 1990 "scanner.l"
{ // new paragraph & start of a list
  					  if (insideArgumentList)
					  {
					    insideArgumentList=FALSE;
					    outDoc->endItemList();
					  }
					  else if (insideItemList)
					  {
					    forceEndItemList();
					  }
					  else
					  {
					    outDoc->newParagraph(); 
					  }
					  if (inBlock()) endBlock();
  					  addListItemMarker(strrchr(yytext,'\n')+1);
					}
	YY_BREAK
case 215:
YY_RULE_SETUP
#line 2007 "scanner.l"
{ // new paragraph
  					  if (insideArgumentList)
					  {
					    insideArgumentList=FALSE;
					    outDoc->endItemList();
					  }
					  else if (insideItemList)
					  {
					    forceEndItemList();
					  }
					  else
					  {
					    outDoc->newParagraph(); 
					  }
					  if (inBlock()) endBlock();
					}
	YY_BREAK
case 216:
*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 2023 "scanner.l"
{ 
  					  outDoc->writeChar(' '); 
					}
	YY_BREAK
case 217:
YY_RULE_SETUP
#line 2026 "scanner.l"
{
  					  outDoc->writeChar(' '); 
  					}
	YY_BREAK
case 218:
YY_RULE_SETUP
#line 2029 "scanner.l"
{
  					  outDoc->writeChar('\n'); 
  					}
	YY_BREAK
case 219:
YY_RULE_SETUP
#line 2032 "scanner.l"
{ 
					  outDoc->docify(yytext);
					}
	YY_BREAK
case 220:
YY_RULE_SETUP
#line 2035 "scanner.l"
{ 
					  outDoc->writeChar(*yytext);
					}
	YY_BREAK
case 221:
YY_RULE_SETUP
#line 2038 "scanner.l"
{
  					  curlyCount=0;
  					  BEGIN(SkipCurlyBlock); 
					}
	YY_BREAK
case 222:
YY_RULE_SETUP
#line 2042 "scanner.l"
{
  				 	  roundCount=0;
  					  BEGIN(SkipRoundBlock);
  					}
	YY_BREAK
case 223:
YY_RULE_SETUP
#line 2046 "scanner.l"
{
					  ++roundCount;
  					}
	YY_BREAK
case 224:
YY_RULE_SETUP
#line 2049 "scanner.l"
{
  					  if (roundCount )
					    --roundCount ;
					  else
					    BEGIN( NextSemi ) ;
  					}
	YY_BREAK
case 225:
YY_RULE_SETUP
#line 2055 "scanner.l"
{
  					  ++curlyCount ; 
					}
	YY_BREAK
case 226:
YY_RULE_SETUP
#line 2058 "scanner.l"
{ 
  				          if( curlyCount )
					  {
					    --curlyCount ;
					  }
					  else
					    BEGIN( NextSemi ) ;
					}
	YY_BREAK
case 227:
YY_RULE_SETUP
#line 2066 "scanner.l"

	YY_BREAK
case 228:
YY_RULE_SETUP
#line 2067 "scanner.l"

	YY_BREAK
case 229:
YY_RULE_SETUP
#line 2068 "scanner.l"

	YY_BREAK
case 230:
YY_RULE_SETUP
#line 2069 "scanner.l"
{
  					  lastStringContext=NextSemi;
					  BEGIN(SkipString);
  					}
	YY_BREAK
case 231:
YY_RULE_SETUP
#line 2073 "scanner.l"
{ 
  					  unput(*yytext);
  					  BEGIN( FindMembers ) ; 
					}
	YY_BREAK
case 232:
YY_RULE_SETUP
#line 2077 "scanner.l"
{ current->sig = sig = TRUE;
					  current->slot = slot = FALSE;
					  current->protection = protection = Public ;
					  current->type.resize(0); 
					  current->name.resize(0); 
					  current->args.resize(0);
					  current->argList->clear();
					  lineCount() ;
					}
	YY_BREAK
case 233:
YY_RULE_SETUP
#line 2087 "scanner.l"
{
					  current->protection = protection = Public ;
					  current->slot = slot = TRUE;
					  current->sig = sig = FALSE;
					  current->type.resize(0); 
					  current->name.resize(0); 
					  current->args.resize(0);
					  current->argList->clear();
					  lineCount();
					}
	YY_BREAK
case 234:
YY_RULE_SETUP
#line 2098 "scanner.l"
{
					  current->protection = protection = Protected ;
					  current->slot = slot = TRUE;
					  current->sig = sig = FALSE;
					  current->type.resize(0); 
					  current->name.resize(0); 
					  current->args.resize(0);
					  current->argList->clear();
					  lineCount();
					}
	YY_BREAK
case 235:
YY_RULE_SETUP
#line 2109 "scanner.l"
{
					  current->protection = protection = Private ;
					  current->slot = slot = TRUE;
					  current->sig = sig = FALSE;
					  current->type.resize(0); 
					  current->name.resize(0); 
					  current->args.resize(0);
					  current->argList->clear();
					  lineCount();
					}
	YY_BREAK
case 236:
YY_RULE_SETUP
#line 2120 "scanner.l"
{ 
					  current->protection = protection = Public ;
					  current->slot = slot = FALSE;
					  current->sig = sig = FALSE;
					  current->type.resize(0); 
					  current->name.resize(0); 
					  current->args.resize(0);
					  current->argList->clear();
					  lineCount() ;
					}
	YY_BREAK
case 237:
YY_RULE_SETUP
#line 2130 "scanner.l"
{ 
  					  current->protection = protection = Protected ;
					  current->slot = slot = FALSE;
					  current->sig = sig = FALSE;
					  current->type.resize(0); 
					  current->name.resize(0); 
					  current->args.resize(0);
					  current->argList->clear();
					  lineCount() ;
					}
	YY_BREAK
case 238:
YY_RULE_SETUP
#line 2140 "scanner.l"
{ 
  					  current->protection = protection = Private ;
					  current->slot = slot = FALSE;
					  current->sig = sig = FALSE;
					  current->type.resize(0); 
					  current->name.resize(0); 
					  current->args.resize(0);
					  current->argList->clear();
					  lineCount() ;
					}
	YY_BREAK
case 239:
YY_RULE_SETUP
#line 2150 "scanner.l"
{
  					  lineCount();
  					}
	YY_BREAK
case 240:
YY_RULE_SETUP
#line 2153 "scanner.l"
{ //current->type += " static ";
  					  current->stat = TRUE;
					  lineCount();
					}
	YY_BREAK
case 241:
YY_RULE_SETUP
#line 2157 "scanner.l"
{
  					  current->stat = FALSE;
					  lineCount();
  					}
	YY_BREAK
case 242:
YY_RULE_SETUP
#line 2161 "scanner.l"
{ current->type += " virtual ";
					  current->virt = Virtual;
					  lineCount();
					}
	YY_BREAK
case 243:
YY_RULE_SETUP
#line 2165 "scanner.l"
{ current->inLine = TRUE;
                                          lineCount(); 
                                        }
	YY_BREAK
case 244:
YY_RULE_SETUP
#line 2168 "scanner.l"
{ // IDL import keyword
  					  BEGIN( NextSemi );
  					}
	YY_BREAK
case 245:
YY_RULE_SETUP
#line 2171 "scanner.l"
{ lineCount(); }
	YY_BREAK
case 246:
YY_RULE_SETUP
#line 2172 "scanner.l"
{ 
  					  isTypedef=FALSE;
					  current->section = Entry::NAMESPACE_SEC;
					  current->type = "namespace" ;
					  current->fileName  = yyFileName;
					  current->startLine = yyLineNr;
					  current->bodyLine  = yyLineNr;
					  lineCount();
  					  BEGIN( ClassName ); 
					}
	YY_BREAK
case 247:
YY_RULE_SETUP
#line 2182 "scanner.l"
{ 
  					  isTypedef=FALSE;
					  current->section = Entry::NAMESPACE_SEC;
					  current->type = "module" ;
					  current->fileName  = yyFileName;
					  current->startLine = yyLineNr;
					  current->bodyLine  = yyLineNr;
					  lineCount();
  					  BEGIN( ClassName ); 
					}
	YY_BREAK
case 248:
YY_RULE_SETUP
#line 2192 "scanner.l"
{
  					  isTypedef=FALSE;
					  current->section = Entry::INTERFACE_SEC;
					  addType( current ) ;
					  current->type += " interface" ;
					  current->fileName  = yyFileName;
					  current->startLine = yyLineNr;
					  current->bodyLine  = yyLineNr;
					  lineCount();
					  BEGIN( ClassName );
  					}
	YY_BREAK
case 249:
YY_RULE_SETUP
#line 2203 "scanner.l"
{ 
					  isTypedef=((QCString)yytext).find("typedef")!=-1;
  					  current->section = Entry::CLASS_SEC;
					  addType( current ) ;
					  current->type += " class" ;
					  current->fileName  = yyFileName;
					  current->startLine = yyLineNr;
					  current->bodyLine  = yyLineNr;
					  lineCount() ;
					  BEGIN( ClassName ) ;
					}
	YY_BREAK
case 250:
YY_RULE_SETUP
#line 2214 "scanner.l"
{ 
					  isTypedef=((QCString)yytext).find("typedef")!=-1;
  					  current->section = Entry::STRUCT_SEC ;
					  addType( current ) ;
					  current->type += " struct" ;
					  current->fileName  = yyFileName;
					  current->startLine = yyLineNr;
					  current->bodyLine  = yyLineNr;
					  lineCount() ;
					  BEGIN( ClassName ) ;
					}
	YY_BREAK
case 251:
YY_RULE_SETUP
#line 2225 "scanner.l"
{ 
					  isTypedef=((QCString)yytext).find("typedef")!=-1;
  					  current->section = Entry::UNION_SEC ;
					  addType( current ) ;
					  current->type += " union" ;
					  current->fileName  = yyFileName;
					  current->startLine = yyLineNr;
					  current->bodyLine  = yyLineNr;
					  lineCount() ;
					  BEGIN( ClassName ) ;
					}
	YY_BREAK
case 252:
YY_RULE_SETUP
#line 2236 "scanner.l"
{ 
					  isTypedef=((QCString)yytext).find("typedef")!=-1;
  					  current->section = Entry::ENUM_SEC ;
					  addType( current ) ;
					  current->type += " enum" ;
					  current->fileName  = yyFileName;
					  current->startLine = yyLineNr;
					  current->bodyLine  = yyLineNr;
					  lineCount() ;
					  BEGIN( ClassName ) ;
					}
	YY_BREAK
case 253:
*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 2247 "scanner.l"
{
  					  lineCount();
    					  current->name += yytext ;
					  current->name = current->name.simplifyWhiteSpace();
					  BEGIN( FindMembers ) ;
  					}
	YY_BREAK
case 254:
YY_RULE_SETUP
#line 2253 "scanner.l"
{ 
    					  current->name += *yytext ;
					}
	YY_BREAK
case 255:
YY_RULE_SETUP
#line 2256 "scanner.l"
{ /* skip guided templ specifiers */ }
	YY_BREAK
case 256:
YY_RULE_SETUP
#line 2257 "scanner.l"
{
					  current->name = current->name.simplifyWhiteSpace();
					  unput(*yytext);
					  BEGIN( FindMembers ) ;
					}
	YY_BREAK
case 257:
YY_RULE_SETUP
#line 2262 "scanner.l"
{ 
  					  lineCount();
					  // class template specifier already found => member template specifier
					  // already inside class => member template specifier
					  if (current->tArgList || (current_root->section&Entry::COMPOUND_MASK))
					  {
					    //printf("-------> member template\n");
					    if (current->mtArgList)
					    {
					      current->mtArgList->clear();
                                            }
					    else
					    {
					      current->mtArgList = new ArgumentList;
					      current->mtArgList->setAutoDelete(TRUE);
					    }
					    currentArgumentList = current->mtArgList;
					  }
					  else // class template specifier
					  {
					    //printf("-------> class template\n");
					    if (current->tArgList)
					    {
					      current->tArgList->clear();
                                            }
					    else
					    {
					      current->tArgList = new ArgumentList;
					      current->tArgList->setAutoDelete(TRUE);
					    }
					    currentArgumentList = current->tArgList;
					  }
					  templateStr="<";
					  fullArgString = templateStr.copy();
					  copyArgString = &templateStr;
					  currentArgumentContext = FindMembers;
					  //printf("Start template list\n");
					  BEGIN( ReadTempArgs );
  					}
	YY_BREAK
case 258:
YY_RULE_SETUP
#line 2301 "scanner.l"
{ 
					  current->startLine=yyLineNr; 
                                          lineCount(); 
                                          BEGIN(Using); 
                                        }
	YY_BREAK
case 259:
YY_RULE_SETUP
#line 2306 "scanner.l"
{ lineCount(); BEGIN(UsingDirective); }
	YY_BREAK
case 260:
YY_RULE_SETUP
#line 2307 "scanner.l"
{ BEGIN(FindMembers); }
	YY_BREAK
case 261:
YY_RULE_SETUP
#line 2308 "scanner.l"
{ current->name=yytext;
                                          current->fileName = yyFileName; 
  					  current->section=Entry::USINGDIR_SEC;
					  //printf("Found using directive %s\n",yytext);
					  current_root->addSubEntry(current);
					  current             = new Entry ;
					  current->protection = protection ;
				          current->sig        = sig;
					  current->virt       = virt;
					  current->stat       = gstat;
					  current->slot       = slot;
					  BEGIN(Using);
  					}
	YY_BREAK
case 262:
YY_RULE_SETUP
#line 2321 "scanner.l"
{ // guided template decl
					  QCString n=yytext;
					  addType( current );
					  current->name=n.left(n.length()-2);
					}
	YY_BREAK
case 263:
*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 2326 "scanner.l"
{
  					  sharpCount=0;
					  lineCount();
					  addType( current );
  					  current->name=yytext;
					  current->name=current->name.stripWhiteSpace();
					  current->scopeSpec.resize(0);
					  currentTemplateSpec = ¤t->scopeSpec;
					  if (nameIsOperator(current->name))
					    BEGIN( Operator );
					  else
					    BEGIN( EndTemplate );
					}
	YY_BREAK
case 264:
*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 2339 "scanner.l"
{
  					  sharpCount=0;
					  lineCount();
  					  current->name+=((QCString)yytext).stripWhiteSpace();
					  current->memberSpec.resize(0);
					  currentTemplateSpec = ¤t->memberSpec;
					  if (nameIsOperator(current->name))
					    BEGIN( Operator );
					  else
					    BEGIN( EndTemplate );
  					}
	YY_BREAK
/*
"<"			{
					  sharpCount++; 
  					}
">"			{
  					  if (--sharpCount<=0)
					  {
					    BEGIN(FindMembers);
					  }
  					}
.
  */
case 265:
YY_RULE_SETUP
#line 2363 "scanner.l"
{ 
  					  current->name+='<';
  					  *currentTemplateSpec+='<'; 
					  sharpCount++; 
					}
	YY_BREAK
case 266:
YY_RULE_SETUP
#line 2368 "scanner.l"
{
  					  current->name+='>';
					  *currentTemplateSpec+='>';
					  if (--sharpCount<=0)
					  {  
					    //printf("Found %s\n",current->name.data());
					    BEGIN(FindMembers);
					  }
					}
	YY_BREAK
case 267:
YY_RULE_SETUP
#line 2377 "scanner.l"
{ 
  					  lineCount();
  					  current->name+='>';
					  *currentTemplateSpec+='>';
					  if (--sharpCount<=0)
					  {
					    current->args = "(";
					    currentArgumentContext = FuncQual;
					    fullArgString = current->args.copy();
					    copyArgString = ¤t->args;
					    //printf("Found %s\n",current->name.data());
					    BEGIN( ReadFuncArgType ) ;
					  }
					}
	YY_BREAK
case 268:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp -= 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_RULE_SETUP
#line 2391 "scanner.l"
{
  					  lineCount();
  					  current->name+='>';
  					  *currentTemplateSpec+='>';
					  if (--sharpCount<=0)
					  {
					    BEGIN(FindMemberName);
					  }
  					}
	YY_BREAK
case 269:
YY_RULE_SETUP
#line 2400 "scanner.l"
{ 
  					  current->name+=*yytext;
  					  *currentTemplateSpec+=*yytext; 
					}
	YY_BREAK
case 270:
YY_RULE_SETUP
#line 2404 "scanner.l"
{ 
					  lineCount();
					  if (YY_START==FindMembers)
					  {
					    addType( current ) ;
					    current->name  = yytext;
					  }
					  else
					  {
					    current->name += yytext;
					  }
				          QCString tmp=yytext;
					  if (nameIsOperator(tmp)) 
					    BEGIN( Operator );
					  else
					    BEGIN(FindMembers);
					}
	YY_BREAK
case 271:
YY_RULE_SETUP
#line 2421 "scanner.l"
{ lastCPPContext = YY_START; 
					  BEGIN( SkipCPP ) ; 
					}
	YY_BREAK
case 272:
YY_RULE_SETUP
#line 2424 "scanner.l"
{
  					  current->bodyLine = yyLineNr;
  					  BEGIN( Define );
  					}
	YY_BREAK
case 273:
YY_RULE_SETUP
#line 2428 "scanner.l"

	YY_BREAK
case 274:
YY_RULE_SETUP
#line 2429 "scanner.l"
{ yyLineNr++ ; }
	YY_BREAK
case 275:
YY_RULE_SETUP
#line 2430 "scanner.l"
{ yyLineNr++ ;
					  BEGIN( lastCPPContext) ;
					}
	YY_BREAK
case 276:
*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 2433 "scanner.l"
{
  					  current->bodyLine = yyLineNr;
  					  current->name = yytext;
					  BEGIN( DefineArg );
  					}
	YY_BREAK
case 277:
YY_RULE_SETUP
#line 2438 "scanner.l"
{
  					  //printf("Define with args\n");
  					  current->args += ')';
  					  BEGIN( DefineEnd );
  					}
	YY_BREAK
case 278:
YY_RULE_SETUP
#line 2443 "scanner.l"
{
  					  current->args += *yytext;
  					}
	YY_BREAK
case 279:
YY_RULE_SETUP
#line 2446 "scanner.l"
{
  					  //printf("Define `%s' without args\n",yytext);
  					  current->bodyLine = yyLineNr;
  					  current->name = yytext;
					  BEGIN(DefineEnd);
  					}
	YY_BREAK
case 280:
YY_RULE_SETUP
#line 2452 "scanner.l"
{
  					  //printf("End define\n");
					  yyLineNr++;
					  current->fileName   = yyFileName;
					  current->startLine  = yyLineNr;
					  current->type.resize(0);
  					  current->args       = current->args.simplifyWhiteSpace();
  					  current->name       = current->name.stripWhiteSpace();
					  current->section    = Entry::DEFINE_SEC;
					  current_root->addSubEntry(current);
					  current             = new Entry ;
					  current->protection = protection ;
				          current->sig        = sig;
					  current->virt       = virt;
					  current->stat       = gstat;
					  current->slot       = slot;
					  BEGIN(FindMembers);
  					}
	YY_BREAK
case 281:
YY_RULE_SETUP
#line 2470 "scanner.l"
{
  					  yyLineNr++;
  					}
	YY_BREAK
case 282:
YY_RULE_SETUP
#line 2473 "scanner.l"
{
					  lastStringContext=DefineEnd;
					  BEGIN(SkipString);
  					}
	YY_BREAK
case 283:
YY_RULE_SETUP
#line 2477 "scanner.l"

	YY_BREAK
case 284:
YY_RULE_SETUP
#line 2479 "scanner.l"
{ current->name += yytext ; }
	YY_BREAK
case 285:
YY_RULE_SETUP
#line 2480 "scanner.l"
{
  					  lineCount();
					  if (current->bodyLine==-1)
					    current->bodyLine=yyLineNr;
					  lastAfterDocContext = YY_START;
					  afterDocTerminator = ';';
					  if (yytext[yyleng-3]=='/')
					  {
					    current->brief.resize(0);
					    BEGIN(AfterDocLine);
					  }
					  else if (yytext[yyleng-2]=='*' && Config::autoBriefFlag)
					  {
					    current->brief.resize(0);
					    BEGIN(AfterDocBrief);
					  }
					  else
					  {
					    current->doc.resize(0);
					    BEGIN(AfterDoc);
					  }
  					}
	YY_BREAK
case 286:
YY_RULE_SETUP
#line 2502 "scanner.l"
{
  					  lineCount();
					  lastAfterDocContext = YY_START;
					  afterDocTerminator = ',';
					  if (yytext[yyleng-3]=='/')
					  {
					    current->brief.resize(0);
					    BEGIN(AfterDocLine);
					  }
					  else if (yytext[yyleng-2]=='*' && Config::autoBriefFlag)
					  {
					    current->brief.resize(0);
					    BEGIN(AfterDocBrief);
					  }
					  else
					  {
					    current->doc.resize(0);
					    BEGIN(AfterDoc);
					  }
  					}
	YY_BREAK
case 287:
YY_RULE_SETUP
#line 2522 "scanner.l"
{
  					  lineCount();
					  lastAfterDocContext = YY_START;
					  if (YY_START==DefineEnd)
					    afterDocTerminator = '\n';
					  else
					    afterDocTerminator = 0;
					  if (yytext[yyleng-3]=='/')
					  {
					    current->brief.resize(0);
					    BEGIN(AfterDocLine);
					  }
					  else if (yytext[yyleng-2]=='*' && Config::autoBriefFlag)
					  {
					    current->brief.resize(0);
					    BEGIN(AfterDocBrief);
					  }
					  else
					  {
					    current->doc.resize(0);
					    BEGIN(AfterDoc);
					  }
  					}
	YY_BREAK
case 288:
YY_RULE_SETUP
#line 2545 "scanner.l"
{
  					  current->bodyLine = yyLineNr;
					  lastInitializerContext = YY_START;
					  BEGIN(ReadInitializer);
  					}
	YY_BREAK
/* Read initializer rules */
case 289:
YY_RULE_SETUP
#line 2551 "scanner.l"
{
  					  lastRoundContext=YY_START;
  					  pCopyRoundString=¤t->initializer;
					  roundCount=0;
  					  current->initializer+=*yytext; 
  					  BEGIN(CopyRound);
  					}
	YY_BREAK
case 290:
YY_RULE_SETUP
#line 2558 "scanner.l"
{
  					  lastCurlyContext=YY_START;
  					  pCopyCurlyString=¤t->initializer;
					  curlyCount=0;
  					  current->initializer+=*yytext; 
  					  BEGIN(CopyCurly);
  					}
	YY_BREAK
case 291:
YY_RULE_SETUP
#line 2565 "scanner.l"
{
  					  //printf(">> initializer `%s' <<\n",current->initializer.data());
  					  unput(*yytext);
  					  BEGIN(lastInitializerContext);
  					}
	YY_BREAK
case 292:
YY_RULE_SETUP
#line 2570 "scanner.l"
{
                                          lastStringContext=YY_START;
  					  current->initializer+=*yytext; 
  					  pCopyQuotedString=¤t->initializer;
					  BEGIN(CopyString);
					}
	YY_BREAK
case 293:
YY_RULE_SETUP
#line 2576 "scanner.l"

	YY_BREAK
case 294:
YY_RULE_SETUP
#line 2577 "scanner.l"

	YY_BREAK
case 295:
YY_RULE_SETUP
#line 2578 "scanner.l"

	YY_BREAK
case 296:
YY_RULE_SETUP
#line 2579 "scanner.l"
{
  					  current->initializer+=*yytext;
					  yyLineNr++;
  					}
	YY_BREAK
case 297:
YY_RULE_SETUP
#line 2583 "scanner.l"
{ 
  					  current->initializer+=*yytext; 
					}
	YY_BREAK
/* generic quoted string copy rules */
case 298:
YY_RULE_SETUP
#line 2588 "scanner.l"
{
  					  *pCopyQuotedString+=yytext;
  					}
	YY_BREAK
case 299:
YY_RULE_SETUP
#line 2591 "scanner.l"
{ 
  					  *pCopyQuotedString+=*yytext;
  					  BEGIN( lastStringContext ); 
					}
	YY_BREAK
case 300:
YY_RULE_SETUP
#line 2595 "scanner.l"
{
  					  *pCopyQuotedString+=yytext;
  					}
	YY_BREAK
case 301:
YY_RULE_SETUP
#line 2598 "scanner.l"
{
  					  *pCopyQuotedString+=*yytext;
  					  yyLineNr++;
  					}
	YY_BREAK
case 302:
YY_RULE_SETUP
#line 2602 "scanner.l"
{
  					  *pCopyQuotedString+=*yytext;
  					}
	YY_BREAK
/* generic round bracket list copy rules */
case 303:
YY_RULE_SETUP
#line 2607 "scanner.l"
{
					  *pCopyRoundString+=*yytext;
  					  pCopyQuotedString=pCopyRoundString;
					  lastStringContext=YY_START;
					  BEGIN(CopyString);
					}
	YY_BREAK
case 304:
YY_RULE_SETUP
#line 2613 "scanner.l"
{
  					  *pCopyRoundString+=*yytext;
  					  roundCount++;
  					}
	YY_BREAK
case 305:
YY_RULE_SETUP
#line 2617 "scanner.l"
{
  					  *pCopyRoundString+=*yytext;
					  if (--roundCount<0)
					    BEGIN(lastRoundContext);
  					}
	YY_BREAK
case 306:
YY_RULE_SETUP
#line 2622 "scanner.l"
{
  					  yyLineNr++;
  					  *pCopyRoundString+=*yytext;
  					}
	YY_BREAK
case 307:
YY_RULE_SETUP
#line 2626 "scanner.l"
{ *pCopyRoundString+=yytext; }
	YY_BREAK
case 308:
YY_RULE_SETUP
#line 2627 "scanner.l"
{ *pCopyRoundString+=yytext; }
	YY_BREAK
case 309:
YY_RULE_SETUP
#line 2628 "scanner.l"
{ *pCopyRoundString+=yytext; }
	YY_BREAK
case 310:
YY_RULE_SETUP
#line 2629 "scanner.l"
{
  					  *pCopyRoundString+=yytext;
  					}
	YY_BREAK
/* generic curly bracket list copy rules */
case 311:
YY_RULE_SETUP
#line 2634 "scanner.l"
{
					  *pCopyCurlyString+=*yytext;
  					  pCopyQuotedString=pCopyCurlyString;
					  lastStringContext=YY_START;
					  BEGIN(CopyString);
					}
	YY_BREAK
case 312:
YY_RULE_SETUP
#line 2640 "scanner.l"
{
  					  *pCopyCurlyString+=*yytext;
					  curlyCount++;
  					}
	YY_BREAK
case 313:
YY_RULE_SETUP
#line 2644 "scanner.l"
{
					  *pCopyCurlyString+=*yytext;
					  if (--curlyCount<0)
					    BEGIN(lastCurlyContext); 
  					}
	YY_BREAK
case 314:
YY_RULE_SETUP
#line 2649 "scanner.l"
{ *pCopyCurlyString+=yytext; }
	YY_BREAK
case 315:
YY_RULE_SETUP
#line 2650 "scanner.l"
{ *pCopyCurlyString+=yytext; }
	YY_BREAK
case 316:
YY_RULE_SETUP
#line 2651 "scanner.l"
{ *pCopyCurlyString+=yytext; }
	YY_BREAK
case 317:
YY_RULE_SETUP
#line 2652 "scanner.l"
{
  					  *pCopyCurlyString+=yytext;
  					}
	YY_BREAK
case 318:
YY_RULE_SETUP
#line 2655 "scanner.l"
{
  					  yyLineNr++;
					  *pCopyCurlyString+=*yytext;
  					}
	YY_BREAK
case 319:
YY_RULE_SETUP
#line 2660 "scanner.l"
{ 
  					  QCString oldType = current->type.copy();
					  QCString oldDocs = current->doc.copy();
  					  if ( *yytext != ':')
					  {
					    if (current->bodyLine==-1)
					    {
					      current->bodyLine = yyLineNr;
					    }
					    current->type=current->type.simplifyWhiteSpace();
					    current->args=current->args.simplifyWhiteSpace();
					    current->name=current->name.stripWhiteSpace();
					    current->section = Entry::VARIABLE_SEC ;
					    current->fileName = yyFileName;
					    current->startLine = yyLineNr;
					    current_root->addSubEntry( current ) ;
					    current = new Entry ;
					    // variable found 
					    current->section = Entry::EMPTY_SEC ;
					    current->protection = protection;
					    current->slot = slot = FALSE;
					    current->sig = sig = FALSE;
					    current->virt = Normal; 
					    current->stat = gstat;
					  }
					  // skip expression or bitfield if needed
					  if ( *yytext == ':') 
					  {
					    BEGIN( NextSemi );
					  }
					  else 
					  {
					    if ( *yytext == ',' )
					    {
					      int i=oldType.length(); 
					      while (i>0 && (oldType[i-1]=='*' || oldType[i-1]==' ')) i--;
					      current->type = oldType.left(i);
					      current->doc  = oldDocs;
					    }
					    BEGIN( FindMembers ) ;
					  }
					}
	YY_BREAK
case 320:
YY_RULE_SETUP
#line 2703 "scanner.l"
{ 
					  if (current->name.isEmpty()) // IDL function property
					  {
					    squareCount=1;
					    lastSquareContext = YY_START;
					    BEGIN(SkipSquare);
					  }
					  else
					  {
  					    current->args += yytext ;
					    squareCount=1;
					    BEGIN( Array ) ;
					  }
					}
	YY_BREAK
case 321:
YY_RULE_SETUP
#line 2717 "scanner.l"
{ current->args += *yytext ;
					  if (--squareCount<=0)
	                                     BEGIN( FindMembers ) ;
					}
	YY_BREAK
case 322:
YY_RULE_SETUP
#line 2721 "scanner.l"
{ current->args += *yytext ;
					  squareCount++;	
					}
	YY_BREAK
case 323:
YY_RULE_SETUP
#line 2724 "scanner.l"
{ current->args += *yytext ; }
	YY_BREAK
case 324:
YY_RULE_SETUP
#line 2725 "scanner.l"
{ squareCount++; }
	YY_BREAK
case 325:
YY_RULE_SETUP
#line 2726 "scanner.l"
{
  					  if (--squareCount<=0)
					    BEGIN( lastSquareContext );
  					}
	YY_BREAK
case 326:
YY_RULE_SETUP
#line 2730 "scanner.l"
{
  					  lastStringContext=YY_START;
  				          BEGIN( SkipString ); 
					}
	YY_BREAK
case 327:
YY_RULE_SETUP
#line 2734 "scanner.l"

	YY_BREAK
case 328:
YY_RULE_SETUP
#line 2735 "scanner.l"
{ addType( current ) ;
					  current->type += yytext ;
					  BEGIN( Sharp ) ;
					}
	YY_BREAK
case 329:
YY_RULE_SETUP
#line 2739 "scanner.l"
{ current->type += *yytext ;
					  if (--sharpCount<=0)
	                                     BEGIN( FindMembers ) ;
					}
	YY_BREAK
case 330:
YY_RULE_SETUP
#line 2743 "scanner.l"
{ current->type += *yytext ;
					  sharpCount++;	
					}
	YY_BREAK
case 331:
YY_RULE_SETUP
#line 2746 "scanner.l"
{
  					  lineCount();
					}
	YY_BREAK
case 332:
YY_RULE_SETUP
#line 2749 "scanner.l"
{ current->type += *yytext ; }
	YY_BREAK
case 333:
YY_RULE_SETUP
#line 2750 "scanner.l"
{
  					  current->name = yytext;
					}
	YY_BREAK
case 334:
YY_RULE_SETUP
#line 2753 "scanner.l"
{
  					  lastInitializerContext = YY_START;
  					  BEGIN(ReadInitializer);
  					}
	YY_BREAK
case 335:
YY_RULE_SETUP
#line 2757 "scanner.l"
{
					  //printf("adding `%s' `%s' `%s' to enum `%s'\n",
					  //     current->type.data(), current->name.data(),
					  //     current->args.data(), current_root->name.data());
					  current->fileName   = yyFileName;
					  current->startLine  = yyLineNr;
					  current->type       = "@"; // enum marker
  					  current->args       = current->args.simplifyWhiteSpace();
  					  current->name       = current->name.stripWhiteSpace();
					  current->section    = Entry::VARIABLE_SEC;
					  // add to the scope of the enum
					  current_root->addSubEntry(current);
					  current             = new Entry(*current);
					  // add to the scope surrounding the enum (copy!)
					  current_root->parent->addSubEntry(current);
					  current             = new Entry ;
					  current->protection = protection ;
				          current->sig        = sig;
					  current->virt       = virt;
					  current->stat       = gstat;
					  current->slot       = slot;
  					}
	YY_BREAK
/*
","			{ unput(*yytext); BEGIN(FindFields); }
  */
case 336:
YY_RULE_SETUP
#line 2782 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 337:
YY_RULE_SETUP
#line 2783 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 338:
YY_RULE_SETUP
#line 2784 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 339:
YY_RULE_SETUP
#line 2785 "scanner.l"
{ current->program += yytext ;
					  lastContext = Curly ;
					  BEGIN( Comment ) ;
					}
	YY_BREAK
case 340:
YY_RULE_SETUP
#line 2789 "scanner.l"
{ current->program += yytext ;
					  ++yyLineNr ;
					  lastContext = Curly ;
					  BEGIN( Comment ) ;
					}
	YY_BREAK
case 341:
YY_RULE_SETUP
#line 2794 "scanner.l"
{ current->program += yytext; }
	YY_BREAK
case 342:
YY_RULE_SETUP
#line 2795 "scanner.l"
{ current->program += yytext; }
	YY_BREAK
case 343:
YY_RULE_SETUP
#line 2796 "scanner.l"
{ current->program += yytext; }
	YY_BREAK
case 344:
YY_RULE_SETUP
#line 2797 "scanner.l"
{ current->program += yytext ;
					  ++curlyCount ;
					}
	YY_BREAK
case 345:
YY_RULE_SETUP
#line 2800 "scanner.l"
{ //err("Curly count=%d\n",curlyCount);
  					  if ( curlyCount>0 )
					  {
					    current->program += yytext ;
					    --curlyCount ;
					  }
					  else
					  {
					    current->endBodyLine = yyLineNr;
					    QCString &cn = current->name;
					    //QCString rn = stripAnnonymousScope(current_root->name);
					    QCString rn = current_root->name.copy();
					    //printf("cn=`%s' rn=`%s'\n",cn.data(),rn.data());
					    if (!cn.isEmpty() && !rn.isEmpty() && 
					      (current_root->section & Entry::SCOPE_MASK))
					    {
					      cn.prepend(rn+"::");
					    }
					    if (isTypedef && cn.isEmpty())
					    {
					      //printf("Typedef Name\n");
					      BEGIN( TypedefName );
					    }
					    else
					    {
					      if (current->section == Entry::ENUM_SEC)
					      {
					        current->program+=','; // add field terminator
					      }
					      // add compound definition to the tree
  					      current->args = current->args.simplifyWhiteSpace();
  					      current->type = current->type.simplifyWhiteSpace();
  					      current->name = current->name.stripWhiteSpace();
					      //printf("adding `%s' `%s' `%s' brief=%s\n",current->type.data(),current->name.data(),current->args.data(),current->brief.data());
					      current_root->addSubEntry( current ) ;
					      current = new Entry(*current);
					      if (current->section==Entry::NAMESPACE_SEC || 
						  current->section==Entry::INTERFACE_SEC
						 )
					      { // namespaces and interfaces ends with a closing bracket without semicolon
						current->reset();
						current->protection = protection ;
						current->sig = sig;
						current->virt = virt;
						current->stat = gstat;
						current->slot = slot;
						BEGIN( FindMembers ) ;
					      }
					      else
						BEGIN( MemberSpec ) ;
					    }
					  }
					}
	YY_BREAK
case 346:
YY_RULE_SETUP
#line 2853 "scanner.l"
{
  					  if (current->section == Entry::ENUM_SEC)
					  {
					    current->program+=","; // add field terminator
					  }
  				          current->name=yytext;
					  if (current_root->section & Entry::SCOPE_MASK)
					  {
					    current->name.prepend(current_root->name+"::");
					  }
  					  current->args = current->args.simplifyWhiteSpace();
  					  current->type = current->type.simplifyWhiteSpace();
					  //printf("Adding compound %s %s %s\n",current->type.data(),current->name.data(),current->args.data());
					  current_root->addSubEntry( current ) ;
					  current = new Entry;
					  current->protection = protection ;
					  current->sig = sig;
					  current->virt = virt;
					  current->stat = gstat;
					  current->slot = slot;
  					  BEGIN(MemberSpecSkip); 
  					}
	YY_BREAK
case 347:
YY_RULE_SETUP
#line 2875 "scanner.l"
{ // the [] part could be improved.
  					  lineCount();
  					  int i=0,l=yyleng,j;
					  while (iname.isEmpty())
					   /* && (current->section & Entry::COMPOUND_MASK)) */
					  { 
					    // see if the compound does not have a name or is inside another
					    // annonymous compound. If so we insert a 
					    // special `annonymous' variable.
					    Entry *p=current_root;
					    while (p)
					    {
					      // only look for class scopes, not namespace scopes
					      if (p->section & Entry::COMPOUND_MASK)
					      {
						//printf("Trying scope `%s'\n",p->name.data());
						int i=p->name.findRev("::");
						int pi = (i==-1) ? 0 : i+2;
						if (p->name.at(pi)=='@')
						{
						  // annonymous compound inside -> insert dummy variable name
						  //printf("Adding annonymous variable for scope %s\n",p->name.data());
						  msName.sprintf("@%d",anonCount++); 
						  break;
						}
					      }
					      p=p->parent;
					    }
					  }
					  if (!msName.isEmpty())
					  {
  					    Entry *varEntry=new Entry;
					    varEntry->protection = current->protection ;
					    varEntry->sig = current->sig;
					    varEntry->virt = current->virt;
					    varEntry->stat = current->stat;
					    varEntry->slot = current->slot;
					    varEntry->section = Entry::VARIABLE_SEC;
					    varEntry->name = msName.stripWhiteSpace();
					    varEntry->type = current->type.simplifyWhiteSpace()+" ";
					    varEntry->args = msArgs; //current->args.simplifyWhiteSpace();
					    //if (!current->name.isEmpty() && current->name[0]!='@' && 
					    //    current->parent->section & Entry::COMPOUND_MASK)
					    //  varEntry->type+=current->parent->name+"::";
					    if (isTypedef)
					      varEntry->type.prepend("typedef ");
					    varEntry->type+=current->name+msType;
					    varEntry->fileName = yyFileName;
					    varEntry->startLine = yyLineNr;
					    varEntry->doc = current->doc.copy();
					    varEntry->brief = current->brief.copy();
					    //printf("Add: type=`%s',name=`%s',args=`%s'\n",
					    //      varEntry->type.data(),varEntry->name.data(),varEntry->args.data());
					    current_root->addSubEntry(varEntry);
					  }
					  if (*yytext==';')
					  {
					    msType.resize(0);
					    msName.resize(0);
					    msArgs.resize(0);
					    isTypedef=FALSE;
					    current->reset();
					    current->protection = protection ;
					    current->sig = sig;
					    current->virt = virt;
					    current->stat = gstat;
					    current->slot = slot;
					    BEGIN( FindMembers );
					  }
  					}					
	YY_BREAK
case 349:
YY_RULE_SETUP
#line 2957 "scanner.l"
{ 
  					  lastInitializerContext=YY_START;
  					  BEGIN(ReadInitializer);
  					  /* BEGIN(MemberSpecSkip); */
					}
	YY_BREAK
/*
"{"			{
  					  curlyCount=0;
					  lastCurlyContext = MemberSpecSkip;
					  previous = current;
  					  BEGIN(SkipCurly);
  					}
  */
case 350:
YY_RULE_SETUP
#line 2970 "scanner.l"
{ BEGIN(MemberSpec); }
	YY_BREAK
case 351:
YY_RULE_SETUP
#line 2971 "scanner.l"
{ unput(';'); BEGIN(MemberSpec); }
	YY_BREAK
case 352:
YY_RULE_SETUP
#line 2972 "scanner.l"
{ current->program += yytext ;
					  lineCount() ;
					}
	YY_BREAK
case 353:
YY_RULE_SETUP
#line 2975 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 354:
YY_RULE_SETUP
#line 2977 "scanner.l"
{
  					  current->bodyLine = yyLineNr;
  					  lineCount();
  					  addType(current);
					  funcPtrType=yytext;
					  //current->type += yytext;
					  BEGIN( FuncPtr );
  					}
	YY_BREAK
case 355:
YY_RULE_SETUP
#line 2985 "scanner.l"
{
  					  current->name = yytext;
					  BEGIN( EndFuncPtr );
  					}
	YY_BREAK
case 356:
YY_RULE_SETUP
#line 2989 "scanner.l"
{
  					  //printf("Error: FuncPtr `%c' unexpected at line %d of %s\n",*yytext,yyLineNr,yyFileName);
  					}
	YY_BREAK
case 357:
*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 2992 "scanner.l"
{ // a variable with extra braces
 					  lineCount();
					  current->type+=funcPtrType.data()+1;
  					  BEGIN(FindMembers);
  					}
	YY_BREAK
case 358:
*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 2997 "scanner.l"
{ // a variable function
  					  lineCount();
					  current->type+=funcPtrType+")";
					  BEGIN(FindMembers);
  					}
	YY_BREAK
case 359:
*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 3002 "scanner.l"
{
  					  lineCount();
					  current->type+=funcPtrType.data();
					  current->args += ")";
					  BEGIN(FindMembers);
  					}
	YY_BREAK
case 360:
YY_RULE_SETUP
#line 3008 "scanner.l"
{ // a function returning a function
  					  current->args += *yytext ;
					  roundCount=0;
					  BEGIN( FuncFunc );
  					}
	YY_BREAK
case 361:
YY_RULE_SETUP
#line 3013 "scanner.l"
{
  					  BEGIN(FindMembers);
  					}
	YY_BREAK
case 362:
YY_RULE_SETUP
#line 3016 "scanner.l"
{
  					  current->args += *yytext ;
  					  ++roundCount;
					}
	YY_BREAK
case 363:
YY_RULE_SETUP
#line 3020 "scanner.l"
{
  					  current->args += *yytext ;
  					  if ( roundCount )
					    --roundCount;
					  else
					  {
					    BEGIN(FuncFuncEnd);
					  }
  					}
	YY_BREAK
case 364:
YY_RULE_SETUP
#line 3029 "scanner.l"
{
  					  lineCount();
					  current->type+=funcPtrType+")(";
					  BEGIN(FuncFuncType);
  					}
	YY_BREAK
case 365:
*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 3034 "scanner.l"
{
  					  lineCount();
					  current->type+=funcPtrType.data()+1;
  					  BEGIN(Function);
  					}
	YY_BREAK
case 366:
YY_RULE_SETUP
#line 3039 "scanner.l"
{
  					  current->args += *yytext;
  					}
	YY_BREAK
case 367:
YY_RULE_SETUP
#line 3042 "scanner.l"
{
  					  current->type += *yytext;
					  roundCount++;
  					}
	YY_BREAK
case 368:
YY_RULE_SETUP
#line 3046 "scanner.l"
{
  					  current->type += *yytext;
  					  if (roundCount)
					    --roundCount;
					  else
					    BEGIN(Function);
					}
	YY_BREAK
case 369:
YY_RULE_SETUP
#line 3053 "scanner.l"
{ lineCount() ; current->type += ", " ; }
	YY_BREAK
case 370:
YY_RULE_SETUP
#line 3054 "scanner.l"
{ lineCount() ; current->type += ' ' ; }
	YY_BREAK
case 371:
YY_RULE_SETUP
#line 3055 "scanner.l"
{
  					  current->type += *yytext;
  					}
	YY_BREAK
case 372:
YY_RULE_SETUP
#line 3058 "scanner.l"
{ current->args = yytext;
  					  current->bodyLine = yyLineNr;
					  currentArgumentContext = FuncQual;
					  fullArgString=current->args.copy();
					  copyArgString=¤t->args;
					  BEGIN( ReadFuncArgType ) ;
					  //printf(">>> Read function arguments!\n");
					}
	YY_BREAK
/*
"("{BN}*("void"{BN}*)?")"	{
  					  lineCount();
  					  current->args = "()"; 
  					  BEGIN( FuncQual );
  					}
  */
/*- Function argument reading rules ---------------------------------------*/
case 373:
YY_RULE_SETUP
#line 3076 "scanner.l"
{ *copyArgString+=yytext; 
  					  fullArgString+=yytext;
  					}
	YY_BREAK
case 374:
YY_RULE_SETUP
#line 3079 "scanner.l"
{ *copyArgString+=yytext; 
					  fullArgString+=yytext;
					}
	YY_BREAK
case 375:
YY_RULE_SETUP
#line 3082 "scanner.l"
{ 
  					  *copyArgString+=yytext; 
  					  fullArgString+=yytext;
  					}
	YY_BREAK
case 376:
YY_RULE_SETUP
#line 3086 "scanner.l"
{
  					  *copyArgString+=" ";
  					  fullArgString+=" ";
  					  lineCount();
  					}
	YY_BREAK
case 377:
YY_RULE_SETUP
#line 3091 "scanner.l"
{
  					  *copyArgString+=*yytext;
  					  fullArgString+=*yytext;
					  lastCopyArgStringContext = YY_START;
  					  BEGIN( CopyArgString );
  					}
	YY_BREAK
case 378:
YY_RULE_SETUP
#line 3097 "scanner.l"
{
  					  *copyArgString+=*yytext;
  					  fullArgString+=*yytext;
  					  argRoundCount=0; 
					  lastCopyArgContext = YY_START;
					  BEGIN( CopyArgRound ); 
  					}
	YY_BREAK
case 379:
YY_RULE_SETUP
#line 3104 "scanner.l"
{ 
  					  *copyArgString+=*yytext;
  					  fullArgString+=*yytext;
					  stringToArgumentList(fullArgString,current->argList);
					  BEGIN( currentArgumentContext );
					}
	YY_BREAK
/* a special comment */
case 380:
YY_RULE_SETUP
#line 3111 "scanner.l"
{ 
  					  fullArgString+=yytext;
  					  lastCopyArgChar=0;
					  if (yytext[1]=='/')
					    BEGIN( CopyArgCommentLine );
					  else
  					    BEGIN( CopyArgComment );
  					}
	YY_BREAK
/* `)' followed by a special comment */
case 381:
YY_RULE_SETUP
#line 3120 "scanner.l"
{
  					  lineCount();
					  lastCopyArgChar=*yytext;
					  QCString text=&yytext[1];
					  text=text.stripWhiteSpace();
					  fullArgString+=text;
					  if (text.find("//")!=-1)
					    BEGIN( CopyArgCommentLine );
					  else
					    BEGIN( CopyArgComment );
  					}
	YY_BREAK
case 382:
YY_RULE_SETUP
#line 3131 "scanner.l"
{ fullArgString+=yytext; }
	YY_BREAK
case 383:
YY_RULE_SETUP
#line 3132 "scanner.l"
{ fullArgString+=yytext; 
  					  if (lastCopyArgChar!=0)
					    unput(lastCopyArgChar); 
                                          BEGIN( ReadFuncArgType ); 
					}
	YY_BREAK
case 384:
YY_RULE_SETUP
#line 3137 "scanner.l"
{ fullArgString+=yytext;
  					  if (lastCopyArgChar!=0)
					    unput(lastCopyArgChar);
					  BEGIN( ReadFuncArgType );
  					}
	YY_BREAK
case 385:
YY_RULE_SETUP
#line 3142 "scanner.l"
{ fullArgString+=yytext; }
	YY_BREAK
case 386:
YY_RULE_SETUP
#line 3143 "scanner.l"
{ fullArgString+=*yytext; yyLineNr++; }
	YY_BREAK
case 387:
YY_RULE_SETUP
#line 3144 "scanner.l"
{ fullArgString+=*yytext; }
	YY_BREAK
case 388:
YY_RULE_SETUP
#line 3145 "scanner.l"
{
					  *copyArgString+=*yytext;
					  fullArgString+=*yytext;
					  argSharpCount=0;
					  BEGIN( CopyArgSharp );
					}
	YY_BREAK
case 389:
YY_RULE_SETUP
#line 3151 "scanner.l"
{
					  *copyArgString+=*yytext;
					  fullArgString+=*yytext;
					  //printf("end template list %s\n",copyArgString->data());
					  stringToArgumentList(fullArgString,currentArgumentList);
					  BEGIN( currentArgumentContext );
					}
	YY_BREAK
case 390:
YY_RULE_SETUP
#line 3158 "scanner.l"
{
  					  argRoundCount++;
					  *copyArgString+=*yytext;
					  fullArgString+=*yytext;
  					}
	YY_BREAK
case 391:
YY_RULE_SETUP
#line 3163 "scanner.l"
{
					  *copyArgString+=*yytext;
					  fullArgString+=*yytext;
					  if (argRoundCount>0) 
					    argRoundCount--;
					  else 
					    BEGIN( lastCopyArgContext );
  					}
	YY_BREAK
case 392:
YY_RULE_SETUP
#line 3171 "scanner.l"
{
  					  argSharpCount++;
					  *copyArgString+=*yytext;
					  fullArgString+=*yytext;
  					}
	YY_BREAK
case 393:
YY_RULE_SETUP
#line 3176 "scanner.l"
{
  					  *copyArgString+=*yytext;
  					  fullArgString+=*yytext;
					  if (argRoundCount>0)
					    argRoundCount--;
					  else
					    BEGIN( ReadTempArgs );
  					}
	YY_BREAK
case 394:
YY_RULE_SETUP
#line 3184 "scanner.l"
{
  					  *copyArgString+=yytext;
  					  fullArgString+=yytext;
  					}
	YY_BREAK
case 395:
YY_RULE_SETUP
#line 3188 "scanner.l"
{
  					  *copyArgString+=*yytext;
  					  fullArgString+=*yytext;
					  BEGIN( lastCopyArgStringContext );
  					}
	YY_BREAK
case 396:
YY_RULE_SETUP
#line 3193 "scanner.l"
{ 
                                          *copyArgString+=yytext; 
                                          fullArgString+=yytext; 
					}
	YY_BREAK
case 397:
YY_RULE_SETUP
#line 3197 "scanner.l"
{ 
  					  *copyArgString+=yytext; 
  					  fullArgString+=yytext; 
					}
	YY_BREAK
case 398:
YY_RULE_SETUP
#line 3201 "scanner.l"
{ 
  					  *copyArgString+=yytext; 
  					  fullArgString+=yytext; 
					}
	YY_BREAK
case 399:
YY_RULE_SETUP
#line 3205 "scanner.l"
{ 
  					  yyLineNr++; 
					  *copyArgString+=*yytext; 
					  fullArgString+=*yytext; 
					}
	YY_BREAK
case 400:
YY_RULE_SETUP
#line 3210 "scanner.l"
{ 
  					  *copyArgString+=*yytext; 
  					  fullArgString+=*yytext; 
					}
	YY_BREAK
/*------------------------------------------------------------------------*/
case 401:
YY_RULE_SETUP
#line 3220 "scanner.l"
{ current->args += *yytext ;
					  ++roundCount ;
					}
	YY_BREAK
case 402:
YY_RULE_SETUP
#line 3223 "scanner.l"
{ current->args += *yytext ; 
					  if ( roundCount )
					    --roundCount ;
				          else
					    BEGIN( FuncQual ) ;
					}
	YY_BREAK
/*
"#"				{ lastCPPContext = YY_START;
  					  BEGIN(SkipCPP);
					}
  */
case 403:
YY_RULE_SETUP
#line 3234 "scanner.l"
{ unput(*yytext); BEGIN( Function ); }
	YY_BREAK
case 404:
YY_RULE_SETUP
#line 3235 "scanner.l"
{ 
  					  lineCount() ; 
  					  current->args += " const "; 
					  current->argList->constSpecifier=TRUE;
					}
	YY_BREAK
case 405:
YY_RULE_SETUP
#line 3240 "scanner.l"
{ 
  					  lineCount() ; 
  					  current->args += " volatile "; 
					  current->argList->volatileSpecifier=TRUE;
					}
	YY_BREAK
case 406:
YY_RULE_SETUP
#line 3245 "scanner.l"
{ 
  					  lineCount() ; 
					  current->args += " = 0"; 
					  current->virt = Pure; 
					  current->argList->pureSpecifier=TRUE;
					}
	YY_BREAK
case 407:
YY_RULE_SETUP
#line 3251 "scanner.l"
{ 
  					  lineCount() ; 
					  current->args += ", " ; 
					}
	YY_BREAK
case 408:
YY_RULE_SETUP
#line 3255 "scanner.l"
{ 
  					  lineCount() ; 
					  current->args += ' ' ; 
					}
	YY_BREAK
case 409:
YY_RULE_SETUP
#line 3259 "scanner.l"
{ current->args += *yytext; }
	YY_BREAK
case 410:
YY_RULE_SETUP
#line 3260 "scanner.l"
{ 
  					  current->exception = " throw (" ;
					  lineCount() ;
					  BEGIN( ExcpRound ) ;
					}
	YY_BREAK
case 411:
YY_RULE_SETUP
#line 3265 "scanner.l"
{
  					  current->exception = " raises (" ;
					  lineCount() ;
					  BEGIN( ExcpRound ) ;
  					}
	YY_BREAK
case 412:
YY_RULE_SETUP
#line 3270 "scanner.l"
{ current->exception += *yytext ;
					  ++roundCount ;
					}
	YY_BREAK
case 413:
YY_RULE_SETUP
#line 3273 "scanner.l"
{ current->exception += *yytext ; 
					  if ( roundCount )
					    --roundCount ;
				          else
					    BEGIN( FuncQual ) ;
					}
	YY_BREAK
case 414:
YY_RULE_SETUP
#line 3279 "scanner.l"
{
  					  current->exception += yytext;
  					}
	YY_BREAK
case 415:
YY_RULE_SETUP
#line 3282 "scanner.l"
{ current->type += current->name ;
					  current->name  = current->args ;
					  current->args  = yytext ;
					  BEGIN( FuncRound ) ;
					}
	YY_BREAK
case 416:
YY_RULE_SETUP
#line 3287 "scanner.l"
{ lastCPPContext = YY_START;
  					  BEGIN(SkipCPP);
					}	
	YY_BREAK
case 417:
YY_RULE_SETUP
#line 3290 "scanner.l"
{ 
					  current->name=current->name.simplifyWhiteSpace();
  					  current->type=current->type.simplifyWhiteSpace();
  					  current->args=current->args.simplifyWhiteSpace();
					  QCString &cn=current->name;
					  QCString &rn=current_root->name;
					  //printf("current_root->name=`%s'\n",rn.data());
  					  //printf("Function: `%s' `%s' `%s'\n",current->type.data(),cn.data(),current->args.data());
					  int i;
					  if ((i=cn.findRev("::"))!=-1) // name contains scope
					  {
					    if (cn.left(i)==rn.right(i)) // scope name is redundant
					    {
                                              cn=cn.right(cn.length()-i-2); // strip scope
					      //printf("new name=`%s'\n",cn.data());
					    }
					  }
					  //if (cname.left(current_root->name.length()+2)==current_root->name+"::") 
					  //{ // strip redundant scope
					  //  current->name=current->name.right(current->name.length()-current_root->name.length()-2);
					  //  printf("new name=`%s'\n",current->name.data());
					  //}
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  if (*yytext!=';' || (current_root->section&Entry::SCOPE_MASK) )
					  {
					    int tempArg=current->name.find('<');
					    QCString tempName;
					    if (tempArg==-1) 
					      tempName=current->name;
					    else
					      tempName=current->name.left(tempArg);
					    if (current->type.isEmpty() && tempName.find("operator")==-1 && 
						(tempName.find('*')!=-1 || tempName.find('&')!=-1))
					    {
					      //printf("Scanner.l: found in class variable: `%s' `%s' `%s'\n",
					      //   current->type.data(),current->name.data(),current->args.data());
					      current->section = Entry::VARIABLE_SEC ;
					    }
					    else	      
					    {
					      //printf("Scanner.l: found in class function: `%s' `%s' `%s'\n",
					      //   current->type.data(),current->name.data(),current->args.data());
					      current->section = Entry::FUNCTION_SEC ;
					    }
					  }
					  else // a global function prototype or function variable
					  {
					    //printf("Scanner.l: prototype? type=`%s' name=`%s' args=`%s'\n",current->type.data(),current->name.data(),current->args.data());
					    QRegExp re("([^)]*)");
					    if (!current->type.isEmpty() && 
						(current->type.find(re,0)!=-1 || current->type.left(8)=="typedef "))
					    {
					      //printf("Scanner.l: found function variable!\n");
					      current->section = Entry::VARIABLE_SEC;
					    }
					    else
					    {
					      //printf("Scanner.l: found prototype\n");
  					      current->section = Entry::FUNCTION_SEC;
					      current->proto = TRUE;
					    }
					  }
					  //printf("Adding entry `%s' inLine`%d' bodyLine=`%d'\n",
					  //    current->name.data(),current->inLine,current->bodyLine);
					  previous = current;
					  current_root->addSubEntry(current);
					  current = new Entry ;
					  current->protection = protection;
				          current->sig = sig;
					  current->virt = virt;
					  current->stat = gstat;
					  current->slot = slot;
					  current->mGrpId = memberGroupId;
					  lastCurlyContext = FindMembers;
					  if( *yytext == '{' )
					  {
					    if (current_root->section & Entry::COMPOUND_MASK)
					      previous->inLine = TRUE;
					    //addToBody(yytext);
					    curlyCount=0;
					    BEGIN( SkipCurly ) ;
					  }
					  else if( *yytext == ':' )
					  {
					    //addToBody(yytext);
					    BEGIN( SkipInits ) ;
					  }
					  else
					  {
					    if (previous->section!=Entry::VARIABLE_SEC)
					      previous->bodyLine=-1; // a function/member declaration
					    BEGIN( FindMembers ) ;
					  }
					}
	YY_BREAK
case 418:
YY_RULE_SETUP
#line 3386 "scanner.l"
{ 
  				          //addToBody(yytext);
  				          lastCurlyContext = FindMembers;
					  curlyCount=0;
  					  BEGIN( SkipCurly ) ; 
					}
	YY_BREAK
case 419:
YY_RULE_SETUP
#line 3392 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  ++curlyCount ; 
					}
	YY_BREAK
case 420:
YY_RULE_SETUP
#line 3396 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  if( curlyCount )
					  {
					    --curlyCount ;
					  }
					  else
					  {
					    previous->endBodyLine=yyLineNr;
					    BEGIN( lastCurlyContext ) ;
					  }
					}
	YY_BREAK
case 421:
YY_RULE_SETUP
#line 3408 "scanner.l"
{ 
  					  if ( curlyCount )
					  {
					    //addToBody(yytext);
					    --curlyCount ;
					  }
					  else
					  {
					    current->endBodyLine=yyLineNr;
					    lineCount();
					    tempEntry = current; // temporarily switch to the previous entry
					    current = previous;
					    current->doc.resize(0);
					    current->brief.resize(0);
					    lastAfterDocContext = SkipCurlyEndDoc;
					    afterDocTerminator = '}';
					    if (yytext[yyleng-3]=='/')
					      BEGIN(AfterDocLine);
					    else if (yytext[yyleng-2]=='*' && Config::autoBriefFlag)
					      BEGIN(AfterDocBrief);
					    else
					      BEGIN(AfterDoc);
					  }
					}
	YY_BREAK
case 422:
YY_RULE_SETUP
#line 3432 "scanner.l"
{
  				          //addToBody("}");
					  current = tempEntry;
  					  BEGIN( lastCurlyContext );
  					}
	YY_BREAK
case 423:
YY_RULE_SETUP
#line 3437 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 424:
YY_RULE_SETUP
#line 3440 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 425:
YY_RULE_SETUP
#line 3443 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 426:
YY_RULE_SETUP
#line 3446 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  lastStringContext=SkipCurly;
  				          BEGIN( SkipString ); 
					}
	YY_BREAK
case 427:
YY_RULE_SETUP
#line 3451 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  BEGIN( SkipCurlyCpp ); 
					}
	YY_BREAK
case 428:
YY_RULE_SETUP
#line 3455 "scanner.l"
{
  					  yyLineNr++;
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 429:
YY_RULE_SETUP
#line 3459 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 430:
YY_RULE_SETUP
#line 3462 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  yyLineNr++; 
  					  lastCurlyContext = FindMembers;
  					  BEGIN( SkipCurly ); 
					}
	YY_BREAK
case 431:
YY_RULE_SETUP
#line 3468 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  yyLineNr++; 
					}
	YY_BREAK
case 432:
YY_RULE_SETUP
#line 3472 "scanner.l"
{
  				          //addToBody(yytext);
  					  lastCContext = YY_START;
					  BEGIN(SkipComment);
  					}
	YY_BREAK
case 433:
YY_RULE_SETUP
#line 3477 "scanner.l"
{
  				          //addToBody(yytext);
  					  lastCContext = YY_START;
					  BEGIN(SkipCxxComment);
  					}
	YY_BREAK
case 434:
YY_RULE_SETUP
#line 3482 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 435:
YY_RULE_SETUP
#line 3485 "scanner.l"
{
  				          //addToBodyCond(yytext);
  					}
	YY_BREAK
case 436:
YY_RULE_SETUP
#line 3488 "scanner.l"
{ 
  				          //addToBodyCond(yytext);
  					  BEGIN( lastStringContext ); 
					}
	YY_BREAK
case 437:
YY_RULE_SETUP
#line 3492 "scanner.l"
{
  				          //addToBodyCond(yytext);
  					}
	YY_BREAK
case 438:
YY_RULE_SETUP
#line 3495 "scanner.l"
{
  					  yyLineNr++;
  				          //addToBodyCond(yytext);
  					}
	YY_BREAK
case 439:
YY_RULE_SETUP
#line 3499 "scanner.l"
{
  				          //addToBodyCond(yytext);
  					}
	YY_BREAK
case 440:
YY_RULE_SETUP
#line 3502 "scanner.l"
{ 
					  current->section = Entry::EMPTY_SEC ;
					  current->type.resize(0) ;
					  current->name.resize(0) ;
					  current->args.resize(0) ;
					  current->argList->clear();
					  BEGIN( FindMembers ) ;
					}
	YY_BREAK
case 441:
*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 3510 "scanner.l"
{
  					  sharpCount = 0;
  					  current->name = yytext ;
					  lineCount();
					  lastClassTemplSpecContext = ClassVar;
					  BEGIN( ClassTemplSpec );
					}
	YY_BREAK
case 442:
YY_RULE_SETUP
#line 3517 "scanner.l"
{
					  current->name += yytext;
  					  if (--sharpCount<=0)
					  {
					    current->name = removeRedundantWhiteSpace(current->name);
					    BEGIN( lastClassTemplSpecContext );
					  }
					}
	YY_BREAK
case 443:
YY_RULE_SETUP
#line 3525 "scanner.l"
{
  					  current->name += yytext;
  					  sharpCount++;
  					}
	YY_BREAK
case 444:
YY_RULE_SETUP
#line 3529 "scanner.l"
{
  					  current->name += yytext;
					}
	YY_BREAK
case 445:
YY_RULE_SETUP
#line 3532 "scanner.l"
{ 
					  current->name = yytext ;
					  lineCount();
					  BEGIN( ClassVar );
					}
	YY_BREAK
case 446:
YY_RULE_SETUP
#line 3537 "scanner.l"
{
					  if (isTypedef)
					  {
					  //  typedefDict.insert(yytext,new QCString(current->name));
					  //  current->type.prepend("typedef ");
					  //  current->extends
					    current->extends->append(
					      new BaseInfo(yytext,Public,Normal)
					    );
					  }
  					  current->type += ' ' ;
					  current->type += current->name ;
					  current->name = yytext ;
					  //BEGIN( FindMembers );
  					}
	YY_BREAK
case 447:
YY_RULE_SETUP
#line 3552 "scanner.l"
{
                                          // probably a function anyway
                                          unput(*yytext);
					  BEGIN( FindMembers );
					}
	YY_BREAK
case 448:
YY_RULE_SETUP
#line 3557 "scanner.l"
{ 
  					  current->type.resize(0);
					  if (current->section == Entry::INTERFACE_SEC)
					    baseProt=Public;
					  else  
					    baseProt=Private;
                                          baseVirt=Normal;
					  baseName.resize(0);
					  BEGIN( BasesProt ) ;
					}
	YY_BREAK
case 449:
YY_RULE_SETUP
#line 3567 "scanner.l"
{
    					  unput(*yytext);
					  BEGIN( FindMembers );
    					}
	YY_BREAK
case 450:
YY_RULE_SETUP
#line 3571 "scanner.l"
{ current->fileName = yyFileName ;
					  current->startLine = yyLineNr ;
					  current->name = removeRedundantWhiteSpace(current->name);
					  if (current->name.isEmpty() && !isTypedef) // anonymous compound
					    current->name.sprintf("@%d",anonCount++);
					  curlyCount=0;
					  BEGIN( Curly ) ;
					}
	YY_BREAK
case 451:
YY_RULE_SETUP
#line 3579 "scanner.l"
{ baseVirt = Virtual; }
	YY_BREAK
case 452:
YY_RULE_SETUP
#line 3580 "scanner.l"
{ baseProt = Public; }
	YY_BREAK
case 453:
YY_RULE_SETUP
#line 3581 "scanner.l"
{ baseProt = Protected; }
	YY_BREAK
case 454:
YY_RULE_SETUP
#line 3582 "scanner.l"
{ baseProt = Private; }
	YY_BREAK
case 455:
YY_RULE_SETUP
#line 3583 "scanner.l"
{}
	YY_BREAK
case 456:
YY_RULE_SETUP
#line 3584 "scanner.l"
{ unput(*yytext); BEGIN(Bases); }
	YY_BREAK
case 457:
YY_RULE_SETUP
#line 3585 "scanner.l"
{ 
  					  //current->extends->append(
					  //  new BaseInfo(yytext,baseProt,baseVirt)
					  //) ;
  					  if (*yytext != ':')
  					    baseName += yytext;
					  else
					    baseName += (yytext+2);
					  current->args += ' ';
					  if (*yytext != ':')
					    current->args += yytext;
					  else
					    current->args += (yytext+2);
					}
	YY_BREAK
case 458:
YY_RULE_SETUP
#line 3599 "scanner.l"
{ current->name += *yytext;
  					  sharpCount=1; 
					  lastSkipSharpContext = YY_START;
					  specName = ¤t->name;
					  BEGIN ( Specialization );
					}
	YY_BREAK
case 459:
YY_RULE_SETUP
#line 3605 "scanner.l"
{ baseName += *yytext;
  					  sharpCount=1; 
					  lastSkipSharpContext = YY_START;
					  specName = &baseName;
					  BEGIN ( Specialization );
					}
	YY_BREAK
case 460:
YY_RULE_SETUP
#line 3611 "scanner.l"
{ *specName += *yytext;
  					  sharpCount++;
  					}
	YY_BREAK
case 461:
YY_RULE_SETUP
#line 3614 "scanner.l"
{
  					  *specName += *yytext;
  					  if (--sharpCount<=0)
					    BEGIN(lastSkipSharpContext);
  					}
	YY_BREAK
case 462:
YY_RULE_SETUP
#line 3619 "scanner.l"
{ lineCount(); *specName +=' '; }
	YY_BREAK
case 463:
YY_RULE_SETUP
#line 3620 "scanner.l"
{
  					  *specName += *yytext;
  					}
	YY_BREAK
case 464:
YY_RULE_SETUP
#line 3623 "scanner.l"
{ ++sharpCount; }
	YY_BREAK
case 465:
YY_RULE_SETUP
#line 3624 "scanner.l"
{ if (--sharpCount<=0)
					    BEGIN ( lastSkipSharpContext );
					}
	YY_BREAK
case 466:
YY_RULE_SETUP
#line 3627 "scanner.l"
{ ++roundCount; }
	YY_BREAK
case 467:
YY_RULE_SETUP
#line 3628 "scanner.l"
{ if (--roundCount<=0)
					    BEGIN ( lastSkipRoundContext );
					}
	YY_BREAK
case 468:
YY_RULE_SETUP
#line 3631 "scanner.l"
{ current->args += ',' ; 
					  current->name = removeRedundantWhiteSpace(current->name);
  					  if (!baseName.isEmpty())
  					    current->extends->append(
					      new BaseInfo(baseName,baseProt,baseVirt)
					    );
					  baseProt=Private;
					  baseVirt=Normal;
					  baseName.resize(0);
					  BEGIN(BasesProt);
					}
	YY_BREAK
case 469:
YY_RULE_SETUP
#line 3642 "scanner.l"
{ current->fileName = yyFileName ;
					  current->startLine = yyLineNr ;
					  current->name = removeRedundantWhiteSpace(current->name);
  					  if (!baseName.isEmpty())
  					    current->extends->append(
					      new BaseInfo(baseName,baseProt,baseVirt)
					    );
					  curlyCount=0;
					  BEGIN( Curly ) ;
					}
	YY_BREAK
case 470:
YY_RULE_SETUP
#line 3652 "scanner.l"
{ current->program += yytext ;
					  lineCount() ;
					}
	YY_BREAK
case 471:
YY_RULE_SETUP
#line 3655 "scanner.l"
{ current->program += yytext ; } 
	YY_BREAK
case 472:
YY_RULE_SETUP
#line 3656 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 473:
YY_RULE_SETUP
#line 3657 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 474:
YY_RULE_SETUP
#line 3658 "scanner.l"
{ current->program += yytext ;
					  BEGIN( lastContext ) ;
					}
	YY_BREAK
case 475:
YY_RULE_SETUP
#line 3661 "scanner.l"
{ current->program += *yytext ; }
	YY_BREAK
case 476:
YY_RULE_SETUP
#line 3663 "scanner.l"
{ 
  					  //printf("Start doc block at %d\n",yyLineNr);
					  removeSlashes=(yytext[1]=='/');
					  tmpDocType=-1;
					  if (YY_START==Curly)
					    current->doc+="\n\n";
					  else
  					    current->doc.resize(0);
					  lastDocContext = YY_START;
					  if (current_root->section & Entry::SCOPE_MASK)
					    current->inside = current_root->name+"::";
					  BEGIN( Doc );
					}
	YY_BREAK
case 477:
*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 3676 "scanner.l"
{
  					  removeSlashes=(yytext[1]=='/');
					  lastDocContext = YY_START;
					  if (current_root->section & Entry::SCOPE_MASK)
					    current->inside = current_root->name+"::";
					  if (!Config::autoBriefFlag) // use the Qt style
					  {
					    tmpDocType=-1;
					    if (YY_START==Curly)
					      current->doc+="\n\n";
					    else
  					      current->doc.resize(0);
					    BEGIN( Doc );
					  }
					  else // Use the javadoc style
					  {
					    if (YY_START==Curly)
					    {
					      tmpDocType=-1;
					      current->doc+="\n\n";
					      lastDocContext = Curly;
					      BEGIN( Doc );
					    }
					    else
					    {  
					      tmpDocType=Doc;
					      current->doc.resize(0);
					      current->brief.resize(0);
					      BEGIN( JavaDoc );
					    }
					  }
  					}
	YY_BREAK
case 478:
YY_RULE_SETUP
#line 3708 "scanner.l"
{ 
  					  current->brief.resize(0);
					  tmpDocType=-1;
					  lastDocContext = YY_START;
					  if (current_root->section & Entry::SCOPE_MASK)
					    current->inside = current_root->name+"::";
					  BEGIN( LineDoc );
					}
	YY_BREAK
case 479:
*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 3716 "scanner.l"
{ 
  					  current->brief.resize(0);
					  tmpDocType=-1;
					  lastDocContext = YY_START;
					  if (current_root->section & Entry::SCOPE_MASK)
					    current->inside = current_root->name+"::";
					  BEGIN( LineDoc );
					}
	YY_BREAK
case 480:
YY_RULE_SETUP
#line 3724 "scanner.l"

	YY_BREAK
case 481:
YY_RULE_SETUP
#line 3725 "scanner.l"
{
  					  current->type.resize(0);
  					  current->name.resize(0);
  					  current->args.resize(0);
					  current->argList->clear();
					  curlyCount=0;
					  BEGIN( SkipCurlyBlock );
					  	
  					}
	YY_BREAK
case 482:
YY_RULE_SETUP
#line 3734 "scanner.l"
{
  					  lastBriefContext=tmpDocType;
  					  BEGIN( ClassDocBrief ); 
					}
	YY_BREAK
case 483:
YY_RULE_SETUP
#line 3738 "scanner.l"
{
					  lineCount();
					  if (!current->brief.stripWhiteSpace().isEmpty())
					  {
					    BEGIN( tmpDocType );
					  }
 					} 
	YY_BREAK
case 484:
YY_RULE_SETUP
#line 3745 "scanner.l"
{
  					  unput(*yytext);
					  BEGIN(Doc);
  					}
	YY_BREAK
case 485:
*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 3749 "scanner.l"
{
  					  //printf("---> removing %s\n",yytext);
  					}
	YY_BREAK
/*
[^\n\@\*\.\\]+			{
  					  current->brief+=yytext;
  					}
  */
case 486:
YY_RULE_SETUP
#line 3757 "scanner.l"
{
  				          //printf("---> copy %c\n",*yytext);
  					  current->brief+=*yytext;
  					}
	YY_BREAK
case 487:
YY_RULE_SETUP
#line 3761 "scanner.l"
{
  					  current->brief+=' ';
					  lineCount();
  					}
	YY_BREAK
case 488:
YY_RULE_SETUP
#line 3765 "scanner.l"
{
  					  lineCount();
					  current->brief+=".";
					  BEGIN( tmpDocType );
					}
	YY_BREAK
case 489:
YY_RULE_SETUP
#line 3770 "scanner.l"
{ 
  					  current->doc+=yytext;
					  BEGIN( tmpDocType );
  					}
	YY_BREAK
case 490:
YY_RULE_SETUP
#line 3774 "scanner.l"
{
					  current->section = Entry::MEMBERDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
  					  BEGIN( ClassDocFunc ); 
					}
	YY_BREAK
case 491:
YY_RULE_SETUP
#line 3780 "scanner.l"
{
  					  nextDefContext = YY_START==LineDoc ? DefLineDoc : ClassDoc;
  					  current->section = Entry::DEFINEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
  					  BEGIN( ClassDocDefine );
  					}
	YY_BREAK
case 492:
YY_RULE_SETUP
#line 3787 "scanner.l"
{ 
  					  overloadContext = YY_START;
  					  BEGIN( ClassDocOverload ); 
					}
	YY_BREAK
case 493:
*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 3791 "scanner.l"
{
					  QCString orgDoc = current->doc;
					  current->doc = getOverloadDocs();
					  current->doc += "\n\n";
					  current->doc += orgDoc;
  					  BEGIN( overloadContext  );
  				        }
	YY_BREAK
case 494:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp -= 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_RULE_SETUP
#line 3798 "scanner.l"
{
					  QCString orgDoc = current->doc;
					  current->doc = getOverloadDocs();
					  current->doc += "\n\n";
					  current->doc += orgDoc;
  					  BEGIN( overloadContext );
  					}
	YY_BREAK
case 495:
YY_RULE_SETUP
#line 3805 "scanner.l"
{ unput(*yytext);
  					  current->section = Entry::OVERLOADDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( ClassDocFunc ); 
					}
	YY_BREAK
case 496:
YY_RULE_SETUP
#line 3811 "scanner.l"
{
  					  current->section = Entry::ENUMDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( EnumDocArg1 );
  					}
	YY_BREAK
case 497:
YY_RULE_SETUP
#line 3817 "scanner.l"
{
  					  current->section = Entry::GROUPDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( GroupDocArg1 );
  					}
	YY_BREAK
case 498:
YY_RULE_SETUP
#line 3823 "scanner.l"
{
  					  current->section = Entry::NAMESPACEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
  					  BEGIN( NameSpaceDocArg1 );
  					}
	YY_BREAK
case 499:
YY_RULE_SETUP
#line 3829 "scanner.l"
{
  					  current->section = Entry::CLASSDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( ClassDocArg1 ); 
					}
	YY_BREAK
case 500:
YY_RULE_SETUP
#line 3835 "scanner.l"
{
  					  current->section = Entry::UNIONDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( ClassDocArg1 ); 
					}
	YY_BREAK
case 501:
YY_RULE_SETUP
#line 3841 "scanner.l"
{
  					  current->section = Entry::STRUCTDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( ClassDocArg1 ); 
					}
	YY_BREAK
case 502:
YY_RULE_SETUP
#line 3847 "scanner.l"
{
  					  current->section = Entry::INTERFACEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( ClassDocArg1 ); 
					}
	YY_BREAK
case 503:
YY_RULE_SETUP
#line 3853 "scanner.l"
{
  					  current->section = Entry::PAGEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( PageDocArg1 );
  					}
	YY_BREAK
case 504:
YY_RULE_SETUP
#line 3859 "scanner.l"
{
  					  current->section = Entry::MAINPAGEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( PageDocArg2 );
  					}
	YY_BREAK
case 505:
YY_RULE_SETUP
#line 3865 "scanner.l"
{
  					  current->section = Entry::FILEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( FileDocArg1 );
  					}
	YY_BREAK
case 506:
YY_RULE_SETUP
#line 3871 "scanner.l"
{
 					  current->section = Entry::EXAMPLE_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
 					  BEGIN( ExampleDocArg1 );
					}
	YY_BREAK
case 507:
YY_RULE_SETUP
#line 3877 "scanner.l"
{
				          current->name = stripQuotes(yytext);	
					  BEGIN( ExampleDoc );
					}
	YY_BREAK
case 508:
YY_RULE_SETUP
#line 3881 "scanner.l"
{ 
  					  lastDocRelContext = YY_START;
  					  BEGIN( ClassDocRelates ); 
					}
	YY_BREAK
case 509:
YY_RULE_SETUP
#line 3885 "scanner.l"
{ 
  					  current->relates = yytext;
					  BEGIN( lastDocRelContext );
					}
	YY_BREAK
case 510:
YY_RULE_SETUP
#line 3889 "scanner.l"
{
  					  current->name = yytext;
					  newDocState();
  					}
	YY_BREAK
case 511:
YY_RULE_SETUP
#line 3893 "scanner.l"
{
  					  warn("Warning: missing argument after "
					       "\\namespace at line %d of %s.\n",yyLineNr,yyFileName);
  					  yyLineNr++;
  					}
	YY_BREAK
case 512:
*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 3898 "scanner.l"
{
					  current->name = yytext;
					  // prepend outer scope name 
					  if (current_root->section & Entry::SCOPE_MASK)
					  {
					    current->name.prepend(current_root->name+"::");
					  }
					  lastClassTemplSpecContext = ClassDocArg2;
					  BEGIN( ClassTemplSpec );
  					}
	YY_BREAK
case 513:
YY_RULE_SETUP
#line 3908 "scanner.l"
{
					  current->name = yytext;
					  // prepend outer scope name 
					  if (current_root->section & Entry::SCOPE_MASK)
					  {
					    current->name.prepend(current_root->name+"::");
					  }
					  BEGIN( ClassDocArg2 );
					}
	YY_BREAK
case 514:
YY_RULE_SETUP
#line 3917 "scanner.l"
{
  					  warn("Warning: missing argument after "
					       "\\class at line %d of %s.\n",yyLineNr,yyFileName);
  					  yyLineNr++;
					  
  					}
	YY_BREAK
case 515:
YY_RULE_SETUP
#line 3923 "scanner.l"
{
  					  current->name = yytext;
					  if (current->name.right(5)==".html") 
					    current->name=current->name.left(current->name.length()-5);
					  BEGIN(GroupDocArg2);
  					}
	YY_BREAK
case 516:
YY_RULE_SETUP
#line 3929 "scanner.l"
{
  					  warn("Warning: missing argument after "
					       "\\defgroup at line %d of %s.\n",yyLineNr,yyFileName);
					  yyLineNr++;
					  BEGIN( Doc );
  					}
	YY_BREAK
case 517:
YY_RULE_SETUP
#line 3935 "scanner.l"
{
					  current->type = yytext;
					  current->type = current->type.stripWhiteSpace();
					  newDocState();
  					}
	YY_BREAK
case 518:
YY_RULE_SETUP
#line 3940 "scanner.l"
{
 					  newDocState();
  					}
	YY_BREAK
case 519:
YY_RULE_SETUP
#line 3943 "scanner.l"
{
  					  //printf("ClassDocArg2=%s\n",yytext);
					  current->includeFile = stripQuotes(yytext);
					  BEGIN( ClassDocArg3 );
					}
	YY_BREAK
case 520:
YY_RULE_SETUP
#line 3948 "scanner.l"
{ yyLineNr++; 
					  newDocState();
					}
	YY_BREAK
case 521:
YY_RULE_SETUP
#line 3951 "scanner.l"
{
  					  //printf("ClassDocArg3=%s\n",yytext);
 					  current->includeName = yytext;
  					  newDocState();
					}
	YY_BREAK
case 522:
YY_RULE_SETUP
#line 3956 "scanner.l"
{ yyLineNr++; 
  					  newDocState();
					}
	YY_BREAK
case 523:
YY_RULE_SETUP
#line 3959 "scanner.l"
{
  					  current->name = stripQuotes(yytext);
					  newDocState();
  				        }
	YY_BREAK
case 524:
YY_RULE_SETUP
#line 3963 "scanner.l"
{
  					  current->name = yyFileName;
  					  yyLineNr++;
					  newDocState();
  					}
	YY_BREAK
case 525:
YY_RULE_SETUP
#line 3968 "scanner.l"
{
					  current->name = stripQuotes(yytext);
					  BEGIN( PageDocArg2 ); 
					}
	YY_BREAK
case 526:
YY_RULE_SETUP
#line 3972 "scanner.l"
{
  					  warn("Warning: missing argument after "
					       "\\page at line %d of %s.\n",yyLineNr,yyFileName);
  					  yyLineNr++;
					  BEGIN( Doc );
  					}
	YY_BREAK
case 527:
YY_RULE_SETUP
#line 3978 "scanner.l"
{
  				          yyLineNr++;
					  current->args = yytext;
					  BEGIN( PageDoc );
					}
	YY_BREAK
case 528:
YY_RULE_SETUP
#line 3983 "scanner.l"
{
  					  current->name = yytext;
					  if (current_root->section & Entry::SCOPE_MASK)
					  {
					    current->name.prepend(current_root->name+"::");
					  }
  					  newDocState();
  					}
	YY_BREAK
case 529:
YY_RULE_SETUP
#line 3991 "scanner.l"
{
  					  warn("Warning: missing argument after "
					       "\\enum at line %d of %s.\n",yyLineNr,yyFileName);
  					  yyLineNr++;
					  BEGIN( Doc );
  					}
	YY_BREAK
case 530:
YY_RULE_SETUP
#line 3997 "scanner.l"
{
  					  current->doc+=yytext;
  					}
	YY_BREAK
case 531:
YY_RULE_SETUP
#line 4000 "scanner.l"
{
  					  sectionType=SectionInfo::Section;
  					  BEGIN(SectionLabel);
  					}
	YY_BREAK
case 532:
YY_RULE_SETUP
#line 4004 "scanner.l"
{
  					  sectionType=SectionInfo::Subsection;
  					  BEGIN(SectionLabel);
  					}
	YY_BREAK
case 533:
YY_RULE_SETUP
#line 4008 "scanner.l"
{
  					  //printf("--> mgroup found!\n");
  					  lastMemberGroupContext = YY_START;
					  if (memberGroupId!=-1)
					  {
  					    warn("Warning: ignoring nested mgroup command "
					         "at line %d of %s. Previous command was found at line %d\n",
						 yyLineNr,yyFileName,lastMemberGroupLine);
					  }
					  else
					  {
					    memberGroupId   = newMemberGroupId();
					    current->mGrpId = memberGroupId;
					    lastMemberGroupLine = yyLineNr;
					  }
					  BEGIN(GroupHeader);
  					}
	YY_BREAK
case 534:
*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 4025 "scanner.l"
{
  					  //printf("--> endmgroup found!\n");
  					  memberGroupId = -1;
					  current->mGrpId = -1;
  					}
	YY_BREAK
case 535:
*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 4030 "scanner.l"
{
					  QCString header = ((QCString)yytext).stripWhiteSpace();
  					  memberGroupDict.insert(memberGroupId,
					                         new MemberGroup(memberGroupId,header)
								);
  					  BEGIN(lastMemberGroupContext);
  					}
	YY_BREAK
case 536:
YY_RULE_SETUP
#line 4037 "scanner.l"
{
  					  lastAnchorContext = YY_START;
  					  sectionType=SectionInfo::Anchor;
					  BEGIN(AnchorLabel);
  					}
	YY_BREAK
case 537:
*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 4042 "scanner.l"
{
					  current->doc+="\\\\verbatim";
					}
	YY_BREAK
case 538:
*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 4045 "scanner.l"
{
					  lastVerbState=YY_START;
					  current->doc+="\\verbatim";
  					  BEGIN(SkipVerbatim);
  					}
	YY_BREAK
case 539:
YY_RULE_SETUP
#line 4050 "scanner.l"
{
  					  current->doc+=yytext;
  					}
	YY_BREAK
case 540:
*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 4053 "scanner.l"
{
  					  current->doc+="\\\\code";
  					}
	YY_BREAK
case 541:
*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 4056 "scanner.l"
{
  					  lastCodeState=YY_START;
					  current->doc+="\\code";
					  BEGIN(SkipCode);
					}
	YY_BREAK
case 542:
YY_RULE_SETUP
#line 4061 "scanner.l"
{
  					  lastCodeState=YY_START;
					  current->doc+="
";
					  BEGIN(SkipCode);
  					}
	YY_BREAK
case 543:
*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 4066 "scanner.l"
{
  					  current->doc+=yytext;
  					  BEGIN(lastVerbState);
  					}
	YY_BREAK
case 544:
YY_RULE_SETUP
#line 4070 "scanner.l"
{
  					  current->doc+=yytext;
  					}
	YY_BREAK
case 545:
YY_RULE_SETUP
#line 4073 "scanner.l"
{
  					  if (!removeSlashes)
					    current->doc+=yytext;
  					}
	YY_BREAK
/*
^"//"({B}*"*"+)?		{
  					  if (!removeSlashes)
					    current->doc+=yytext;
  					}
^{B}*"*"+			
  */
case 546:
YY_RULE_SETUP
#line 4084 "scanner.l"
{ 
  					  current->doc+=yytext; 
  					}
	YY_BREAK
case 547:
YY_RULE_SETUP
#line 4087 "scanner.l"
{
  					  yyLineNr++;
					  current->doc+=*yytext;
  					}
	YY_BREAK
case 548:
YY_RULE_SETUP
#line 4091 "scanner.l"
{
  					  current->doc+=*yytext;
  					}
	YY_BREAK
case 549:
YY_RULE_SETUP
#line 4094 "scanner.l"
{
  					  current->doc+="\\endcode";
					  BEGIN(lastCodeState);
  					}
	YY_BREAK
case 550:
YY_RULE_SETUP
#line 4098 "scanner.l"
{
  					  current->doc+="
"; BEGIN(lastCodeState); } YY_BREAK case 551: YY_RULE_SETUP #line 4102 "scanner.l" { if (!removeSlashes) current->doc+=yytext; } YY_BREAK case 552: YY_RULE_SETUP #line 4106 "scanner.l" YY_BREAK case 553: YY_RULE_SETUP #line 4107 "scanner.l" { current->doc+=yytext; } YY_BREAK case 554: YY_RULE_SETUP #line 4110 "scanner.l" { current->doc+=yytext; } YY_BREAK case 555: YY_RULE_SETUP #line 4113 "scanner.l" { yyLineNr++; current->doc+=*yytext; } YY_BREAK case 556: YY_RULE_SETUP #line 4117 "scanner.l" { current->doc+=*yytext; } YY_BREAK case 557: YY_RULE_SETUP #line 4120 "scanner.l" { sectionLabel=yytext; addSection(); current->doc += "\\anchor "+sectionLabel+"\n"; BEGIN(lastAnchorContext); } YY_BREAK case 558: YY_RULE_SETUP #line 4126 "scanner.l" { sectionLabel=yytext; sectionTitle.resize(0); BEGIN(SectionTitle); } YY_BREAK case 559: *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 4131 "scanner.l" { sectionTitle+=yytext; sectionTitle=sectionTitle.stripWhiteSpace(); addSection(); current->doc += "\\section "+sectionLabel+"\n"; BEGIN(PageDoc); } YY_BREAK case 560: YY_RULE_SETUP #line 4138 "scanner.l" { sectionTitle+=yytext; } YY_BREAK case 561: YY_RULE_SETUP #line 4141 "scanner.l" { yyLineNr++ ; current->doc+=yytext; } YY_BREAK case 562: YY_RULE_SETUP #line 4142 "scanner.l" { current->doc += yytext; } YY_BREAK case 563: YY_RULE_SETUP #line 4143 "scanner.l" { current->doc += yytext; } YY_BREAK case 564: YY_RULE_SETUP #line 4144 "scanner.l" YY_BREAK case 565: YY_RULE_SETUP #line 4145 "scanner.l" { current->doc += yytext; } YY_BREAK case 566: YY_RULE_SETUP #line 4146 "scanner.l" { current->doc += &yytext[1]; } YY_BREAK case 567: YY_RULE_SETUP #line 4149 "scanner.l" { lastFormulaContext = YY_START; formulaText="$"; BEGIN(ReadFormulaShort); } YY_BREAK case 568: YY_RULE_SETUP #line 4154 "scanner.l" { lastFormulaContext = YY_START; formulaText="\\["; BEGIN(ReadFormulaLong); } YY_BREAK case 569: YY_RULE_SETUP #line 4159 "scanner.l" { formulaText+="$"; if (lastFormulaContext==ClassDocBrief || lastFormulaContext==LineDoc || lastFormulaContext==JavaDoc ) current->brief += addFormula(); else current->doc += addFormula(); BEGIN(lastFormulaContext); } YY_BREAK case 570: YY_RULE_SETUP #line 4170 "scanner.l" { formulaText+="\\]"; if (lastFormulaContext==ClassDocBrief || lastFormulaContext==LineDoc || lastFormulaContext==JavaDoc ) current->brief += addFormula(); else current->doc += addFormula(); BEGIN(lastFormulaContext); } YY_BREAK case 571: YY_RULE_SETUP #line 4181 "scanner.l" { formulaText+=*yytext; } YY_BREAK case 572: YY_RULE_SETUP #line 4182 "scanner.l" { checkDocs(); if (YY_START==SkipCode) // premature end of code block { err("Error: comment block ended inside \\code ... \\endcode block at line %d in %s!\n", yyLineNr,yyFileName); current->doc += "\\endcode\n\n"; BEGIN( lastDocContext ); } else if (YY_START==ClassDocBrief && lastBriefContext==Doc) { current->doc += "\n\n"; BEGIN( lastDocContext ); } else { current->doc += "\n\n"; //printf("Add docs for class %s\n",current->name.data()); current_root->addSubEntry(current); current = new Entry ; current->protection = protection ; current->sig = sig; current->virt = virt; current->stat = gstat; current->slot = slot; } BEGIN( FindMembers ); } YY_BREAK case 573: YY_RULE_SETUP #line 4211 "scanner.l" { current->args.resize(0); current->argList->clear(); BEGIN( PageDocTitle); } YY_BREAK case 574: YY_RULE_SETUP #line 4216 "scanner.l" { yyLineNr++; current->args+=" "; } YY_BREAK case 575: YY_RULE_SETUP #line 4217 "scanner.l" { current->args+=yytext; } YY_BREAK case 576: YY_RULE_SETUP #line 4218 "scanner.l" { BEGIN( PageDoc ); } YY_BREAK case 577: YY_RULE_SETUP #line 4219 "scanner.l" { lastGroupContext = YY_START; lineCount(); BEGIN( GroupName ); } YY_BREAK case 578: YY_RULE_SETUP #line 4224 "scanner.l" { current->groups->append( new QCString(yytext) ); } YY_BREAK case 579: YY_RULE_SETUP #line 4229 "scanner.l" { yyLineNr++; BEGIN( lastGroupContext ); } YY_BREAK case 580: YY_RULE_SETUP #line 4232 "scanner.l" { lastBriefContext=YY_START; BEGIN( ClassDocBrief ); } YY_BREAK case 581: YY_RULE_SETUP #line 4236 "scanner.l" { BEGIN( DocBaseClass ); } YY_BREAK case 582: YY_RULE_SETUP #line 4237 "scanner.l" { //printf("Adding base class %s\n",yytext); current->extends->append( new BaseInfo(yytext,Public,Normal) ); } YY_BREAK case 583: YY_RULE_SETUP #line 4243 "scanner.l" { yyLineNr++; BEGIN( ClassDoc ); } YY_BREAK case 584: YY_RULE_SETUP #line 4244 "scanner.l" { current->brief=current->brief.stripWhiteSpace(); if (!current->doc.isEmpty()) current->doc+="

"; yyLineNr++; BEGIN( lastBriefContext ); } YY_BREAK case 585: YY_RULE_SETUP #line 4250 "scanner.l" { yyLineNr++ ; current->brief += " "; } YY_BREAK case 586: YY_RULE_SETUP #line 4251 "scanner.l" YY_BREAK case 587: YY_RULE_SETUP #line 4252 "scanner.l" { current->brief=current->brief.stripWhiteSpace(); BEGIN( lastBriefContext ); } YY_BREAK case 588: YY_RULE_SETUP #line 4256 "scanner.l" { BEGIN( lastBriefContext ); } YY_BREAK case 589: YY_RULE_SETUP #line 4259 "scanner.l" { lastBriefContext=YY_START; BEGIN( ClassDocBrief ); } YY_BREAK case 590: YY_RULE_SETUP #line 4263 "scanner.l" { current->brief += *yytext; } YY_BREAK case 591: *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 4264 "scanner.l" { current->name = yytext; BEGIN( ClassDefineArgs ); } YY_BREAK case 592: YY_RULE_SETUP #line 4268 "scanner.l" { current->name = yytext; if (nextDefContext==ClassDoc) newDocState(); else BEGIN( nextDefContext ); } YY_BREAK case 593: YY_RULE_SETUP #line 4275 "scanner.l" { current->args+=")"; if (nextDefContext==ClassDoc) newDocState(); else BEGIN( nextDefContext ); } YY_BREAK case 594: YY_RULE_SETUP #line 4282 "scanner.l" { current->args+= yytext; } YY_BREAK case 595: YY_RULE_SETUP #line 4285 "scanner.l" { yyLineNr++; current->name = current->name.stripWhiteSpace(); if (current->section == Entry::MEMBERDOC_SEC && current->args.isEmpty()) current->section = Entry::VARIABLEDOC_SEC; newDocState(); } YY_BREAK case 596: YY_RULE_SETUP #line 4292 "scanner.l" { current->name+=yytext; } YY_BREAK case 597: YY_RULE_SETUP #line 4295 "scanner.l" { current->args+=*yytext; currentArgumentContext = ClassDocFuncQual; fullArgString = current->args.copy(); copyArgString = ¤t->args; BEGIN( ReadFuncArgType ) ; } YY_BREAK case 598: YY_RULE_SETUP #line 4302 "scanner.l" { current->name+="(*"; BEGIN( ClassDocFuncPtr ); } YY_BREAK case 599: YY_RULE_SETUP #line 4306 "scanner.l" { current->name+=yytext; } YY_BREAK case 600: YY_RULE_SETUP #line 4309 "scanner.l" { current->name+=')'; BEGIN( ClassDocFunc ); } YY_BREAK case 601: YY_RULE_SETUP #line 4313 "scanner.l" { BEGIN( ClassDocFuncSkipLine); } YY_BREAK case 602: YY_RULE_SETUP #line 4316 "scanner.l" { current->args += " const "; current->argList->constSpecifier=TRUE; } YY_BREAK case 603: YY_RULE_SETUP #line 4320 "scanner.l" { current->args += " volatile "; current->argList->volatileSpecifier=TRUE; } YY_BREAK case 604: YY_RULE_SETUP #line 4324 "scanner.l" { current->args += " = 0"; current->virt = Pure; current->argList->pureSpecifier=TRUE; } YY_BREAK case 605: YY_RULE_SETUP #line 4329 "scanner.l" { current->exception = "throw("; BEGIN(ClassDocFuncExc); } YY_BREAK case 606: YY_RULE_SETUP #line 4333 "scanner.l" { current->exception += ')'; BEGIN(ClassDocFuncQual); } YY_BREAK case 607: YY_RULE_SETUP #line 4337 "scanner.l" { current->exception += *yytext; } YY_BREAK case 608: YY_RULE_SETUP #line 4340 "scanner.l" { current->name += *yytext; } YY_BREAK case 609: YY_RULE_SETUP #line 4343 "scanner.l" { yyLineNr++; current->name = current->name.stripWhiteSpace(); newDocState(); } YY_BREAK case 610: YY_RULE_SETUP #line 4348 "scanner.l" { current->doc += yytext; } YY_BREAK case 611: YY_RULE_SETUP #line 4349 "scanner.l" { current->doc += yytext; } YY_BREAK case 612: YY_RULE_SETUP #line 4350 "scanner.l" { current->doc += *yytext; } YY_BREAK case 613: YY_RULE_SETUP #line 4351 "scanner.l" { current->brief += *yytext; } YY_BREAK case 614: YY_RULE_SETUP #line 4352 "scanner.l" { yyLineNr++; current->doc += *yytext; } YY_BREAK case 615: YY_RULE_SETUP #line 4353 "scanner.l" { lineCount(); } YY_BREAK case 616: YY_RULE_SETUP #line 4354 "scanner.l" { yyLineNr++; BEGIN( lastDocContext ); } YY_BREAK case 617: YY_RULE_SETUP #line 4358 "scanner.l" { yyLineNr++; unput('/');unput('*'); BEGIN( ClassDoc ); } YY_BREAK case 618: YY_RULE_SETUP #line 4364 "scanner.l" { current->brief+=yytext; } YY_BREAK case 619: YY_RULE_SETUP #line 4365 "scanner.l" { yyLineNr++; if (afterDocTerminator!=0) unput(afterDocTerminator); BEGIN(lastAfterDocContext); } YY_BREAK case 620: YY_RULE_SETUP #line 4371 "scanner.l" { current->brief+=yytext; } YY_BREAK case 621: YY_RULE_SETUP #line 4372 "scanner.l" { current->brief+=yytext; } YY_BREAK case 622: *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 4373 "scanner.l" YY_BREAK case 623: YY_RULE_SETUP #line 4374 "scanner.l" { current->brief+=yytext; yyLineNr++; } YY_BREAK case 624: YY_RULE_SETUP #line 4375 "scanner.l" { current->brief+=*yytext; } YY_BREAK case 625: YY_RULE_SETUP #line 4376 "scanner.l" { yyLineNr++; if (!current->brief.stripWhiteSpace().isEmpty()) BEGIN(AfterDoc); } YY_BREAK case 626: YY_RULE_SETUP #line 4380 "scanner.l" { if (afterDocTerminator!=0) unput(afterDocTerminator); BEGIN(lastAfterDocContext); } YY_BREAK case 627: *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 4385 "scanner.l" { BEGIN(AfterDoc); } YY_BREAK case 628: YY_RULE_SETUP #line 4386 "scanner.l" { current->brief+="\\internal"; } YY_BREAK case 629: YY_RULE_SETUP #line 4389 "scanner.l" { current->doc+="\\internal"; } YY_BREAK case 630: YY_RULE_SETUP #line 4392 "scanner.l" { BEGIN(AfterDocBrief); } YY_BREAK case 631: YY_RULE_SETUP #line 4393 "scanner.l" { current->doc+=yytext; } YY_BREAK case 632: *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 4394 "scanner.l" YY_BREAK case 633: YY_RULE_SETUP #line 4395 "scanner.l" { current->doc+=yytext; yyLineNr++; } YY_BREAK case 634: YY_RULE_SETUP #line 4396 "scanner.l" { current->doc+=*yytext; } YY_BREAK case 635: YY_RULE_SETUP #line 4397 "scanner.l" { if (afterDocTerminator!=0) unput(afterDocTerminator); BEGIN(lastAfterDocContext); } YY_BREAK case 636: YY_RULE_SETUP #line 4402 "scanner.l" { current->doc += "\n\n"; err("Warning: unexpected end of " "documentation block found in " "file %s at line %d\n",yyFileName,yyLineNr); BEGIN( lastDocContext ); } YY_BREAK case 637: YY_RULE_SETUP #line 4409 "scanner.l" { checkDocs(); current->doc += "\n\n"; //printf("End of docs at line %d\n",yyLineNr); BEGIN( lastDocContext ); } YY_BREAK case 638: YY_RULE_SETUP #line 4415 "scanner.l" { unput('/');unput('*'); BEGIN( tmpDocType ); } YY_BREAK case 639: YY_RULE_SETUP #line 4419 "scanner.l" { current->doc += yytext; } YY_BREAK case 640: *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 4422 "scanner.l" YY_BREAK case 641: YY_RULE_SETUP #line 4423 "scanner.l" { current->doc+=' '; } YY_BREAK case 642: YY_RULE_SETUP #line 4426 "scanner.l" { current->doc += yytext; } YY_BREAK case 643: *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 4427 "scanner.l" { BEGIN( lastCContext ) ; } YY_BREAK case 644: YY_RULE_SETUP #line 4430 "scanner.l" YY_BREAK case 645: YY_RULE_SETUP #line 4431 "scanner.l" { yyLineNr++ ; } YY_BREAK case 646: YY_RULE_SETUP #line 4432 "scanner.l" YY_BREAK case 647: YY_RULE_SETUP #line 4433 "scanner.l" YY_BREAK case 648: YY_RULE_SETUP #line 4434 "scanner.l" { lastCContext = YY_START ; BEGIN( SkipComment ) ; } YY_BREAK case 649: YY_RULE_SETUP #line 4437 "scanner.l" { BEGIN( lastCContext ) ; } YY_BREAK case 650: YY_RULE_SETUP #line 4438 "scanner.l" { lastCContext = YY_START ; BEGIN( SkipCxxComment ) ; } YY_BREAK case 651: YY_RULE_SETUP #line 4442 "scanner.l" ECHO; YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(Define): case YY_STATE_EOF(DefineArg): case YY_STATE_EOF(DefineEnd): case YY_STATE_EOF(Include): case YY_STATE_EOF(ClassName): case YY_STATE_EOF(ClassVar): case YY_STATE_EOF(ClassTemplSpec): case YY_STATE_EOF(Bases): case YY_STATE_EOF(BasesProt): case YY_STATE_EOF(NextSemi): case YY_STATE_EOF(FindMembers): case YY_STATE_EOF(FindMemberName): case YY_STATE_EOF(FindFields): case YY_STATE_EOF(FindFieldArg): case YY_STATE_EOF(Function): case YY_STATE_EOF(FuncRound): case YY_STATE_EOF(ExcpRound): case YY_STATE_EOF(FuncQual): case YY_STATE_EOF(Operator): case YY_STATE_EOF(Array): case YY_STATE_EOF(Curly): case YY_STATE_EOF(Using): case YY_STATE_EOF(UsingDirective): case YY_STATE_EOF(NameSpaceDocArg1): case YY_STATE_EOF(SkipCurly): case YY_STATE_EOF(SkipCurlyCpp): case YY_STATE_EOF(SkipCurlyEndDoc): case YY_STATE_EOF(SkipString): case YY_STATE_EOF(SkipInits): case YY_STATE_EOF(SkipCPP): case YY_STATE_EOF(SkipCPPBlock): case YY_STATE_EOF(SkipComment): case YY_STATE_EOF(SkipCxxComment): case YY_STATE_EOF(SkipCurlyBlock): case YY_STATE_EOF(SkipRoundBlock): case YY_STATE_EOF(SkipCode): case YY_STATE_EOF(Sharp): case YY_STATE_EOF(SkipSharp): case YY_STATE_EOF(SkipRound): case YY_STATE_EOF(SkipSquare): case YY_STATE_EOF(TypedefName): case YY_STATE_EOF(Comment): case YY_STATE_EOF(Doc): case YY_STATE_EOF(JavaDoc): case YY_STATE_EOF(ClassDoc): case YY_STATE_EOF(LineDoc): case YY_STATE_EOF(DefLineDoc): case YY_STATE_EOF(ClassDocArg1): case YY_STATE_EOF(ClassDocArg2): case YY_STATE_EOF(ClassDocArg3): case YY_STATE_EOF(ClassDocFunc): case YY_STATE_EOF(ClassDocFuncPtr): case YY_STATE_EOF(ClassDocFuncQual): case YY_STATE_EOF(ClassDocFuncSkipLine): case YY_STATE_EOF(ClassDocFuncExc): case YY_STATE_EOF(ClassDocDefine): case YY_STATE_EOF(ClassDocRelates): case YY_STATE_EOF(ClassDocBrief): case YY_STATE_EOF(ClassDocOverload): case YY_STATE_EOF(ClassDefineArgs): case YY_STATE_EOF(GroupDocArg1): case YY_STATE_EOF(GroupDocArg2): case YY_STATE_EOF(GroupName): case YY_STATE_EOF(GroupHeader): case YY_STATE_EOF(AfterDoc): case YY_STATE_EOF(AfterDocBrief): case YY_STATE_EOF(AfterDocLine): case YY_STATE_EOF(PageDoc): case YY_STATE_EOF(PageDocTitle): case YY_STATE_EOF(PageDocArg1): case YY_STATE_EOF(PageDocArg2): case YY_STATE_EOF(FileDocArg1): case YY_STATE_EOF(FileDocArg2): case YY_STATE_EOF(ExampleDoc): case YY_STATE_EOF(ExampleDocArg1): case YY_STATE_EOF(EnumDoc): case YY_STATE_EOF(EnumDocArg1): case YY_STATE_EOF(FuncPtr): case YY_STATE_EOF(EndFuncPtr): case YY_STATE_EOF(FuncFunc): case YY_STATE_EOF(FuncFuncEnd): case YY_STATE_EOF(FuncFuncType): case YY_STATE_EOF(MemberSpec): case YY_STATE_EOF(MemberSpecSkip): case YY_STATE_EOF(SkipVerbatim): case YY_STATE_EOF(Text): case YY_STATE_EOF(DocScan): case YY_STATE_EOF(DocParam): case YY_STATE_EOF(DocException): case YY_STATE_EOF(DocHtmlScan): case YY_STATE_EOF(DocLatexScan): case YY_STATE_EOF(DocEmphasis): case YY_STATE_EOF(DocBold): case YY_STATE_EOF(DocCode): case YY_STATE_EOF(DocCodeBlock): case YY_STATE_EOF(DocInternal): case YY_STATE_EOF(DocLink): case YY_STATE_EOF(DocLinkText): case YY_STATE_EOF(DocSkipWord): case YY_STATE_EOF(DocInclude): case YY_STATE_EOF(DocDontInclude): case YY_STATE_EOF(DocDescItem): case YY_STATE_EOF(DocHtmlLink): case YY_STATE_EOF(DocHtmlAnchor): case YY_STATE_EOF(DocHtmlHref1): case YY_STATE_EOF(DocHtmlHref2): case YY_STATE_EOF(DocBaseClass): case YY_STATE_EOF(DocSkiplineKey): case YY_STATE_EOF(DocSkipKey): case YY_STATE_EOF(DocLineKey): case YY_STATE_EOF(DocUntilKey): case YY_STATE_EOF(DocPar): case YY_STATE_EOF(DocRefName): case YY_STATE_EOF(DocVerbatim): case YY_STATE_EOF(DocVerbInc): case YY_STATE_EOF(DocIndexWord): case YY_STATE_EOF(DocRef): case YY_STATE_EOF(DocRefArg): case YY_STATE_EOF(DocRefArgStart): case YY_STATE_EOF(DocRefItem): case YY_STATE_EOF(DocRefItemName): case YY_STATE_EOF(DocImage): case YY_STATE_EOF(DocHtmlImageName): case YY_STATE_EOF(DocLatexImageName): case YY_STATE_EOF(DocLatexImageWidth): case YY_STATE_EOF(SectionLabel): case YY_STATE_EOF(SectionTitle): case YY_STATE_EOF(SkipTemplate): case YY_STATE_EOF(EndTemplate): case YY_STATE_EOF(CopyArgString): case YY_STATE_EOF(CopyArgRound): case YY_STATE_EOF(CopyArgSharp): case YY_STATE_EOF(CopyArgComment): case YY_STATE_EOF(CopyArgCommentLine): case YY_STATE_EOF(ReadFuncArgType): case YY_STATE_EOF(ReadTempArgs): case YY_STATE_EOF(Specialization): case YY_STATE_EOF(DocSkipHtmlComment): case YY_STATE_EOF(ReadFormulaShort): case YY_STATE_EOF(ReadFormulaLong): case YY_STATE_EOF(AnchorLabel): case YY_STATE_EOF(ReadInitializer): case YY_STATE_EOF(CopyString): case YY_STATE_EOF(CopyRound): case YY_STATE_EOF(CopyCurly): 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 >= 4098 ) 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 >= 4098 ) 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 == 4097); 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 4442 "scanner.l" //---------------------------------------------------------------------------- //static void addToBody(const char *text) //{ // if (Config::includeSourceFlag) // previous->body+=text; //} //static void addToBodyCond(const char *text) //{ // if (Config::includeSourceFlag && lastStringContext==SkipCurly) // previous->body+=text; //} //---------------------------------------------------------------------------- void scanString(const char *s) { const char *oldInputString = inputString; int oldInputPosition = inputPosition; int oldRule = YY_START; YY_BUFFER_STATE oldBuffer = YY_CURRENT_BUFFER; yy_switch_to_buffer(yy_create_buffer(scanYYin, YY_BUF_SIZE)); inputString = s; inputPosition = 0; BEGIN( Text ); scanYYlex(); yy_delete_buffer(YY_CURRENT_BUFFER); yy_switch_to_buffer(oldBuffer); inputString = oldInputString; inputPosition = oldInputPosition; BEGIN( oldRule ); } //---------------------------------------------------------------------------- static void newDocState() { if (tmpDocType!=-1) { tmpDocType=ClassDoc; BEGIN(JavaDoc); } else { BEGIN(ClassDoc); } } //---------------------------------------------------------------------------- void parseCompounds(Entry *rt) { //printf("parseCompounds(%s)\n",rt->name.data()); EntryListIterator eli(*rt->sublist); Entry *ce; for (;(ce=eli.current());++eli) { if (!ce->program.isEmpty()) { //printf("-- %s ---------\n%s\n---------------\n", // ce->name.data(),ce->program.data()); // init scanner state inputString = ce->program; inputPosition = 0; scanYYrestart( scanYYin ) ; if (ce->section==Entry::ENUM_SEC) BEGIN( FindFields ) ; else BEGIN( FindMembers ) ; current_root = ce ; strcpy( yyFileName, ce->fileName ) ; yyLineNr = ce->startLine ; //printf("---> Inner block starts at line %d\n",yyLineNr); //current->reset(); current = new Entry; // set default protection based on the compound type if( ce->section==Entry::CLASS_SEC ) // class current->protection = protection = Private ; else if (ce->section == Entry::ENUM_SEC ) // enum current->protection = protection = ce->protection; else if (!ce->name.isEmpty() && ce->name.at(0)=='@') // anonymous union current->protection = protection = ce->protection; else // named struct, union, or interface current->protection = protection = Public ; sig = FALSE; slot = FALSE; gstat = FALSE; virt = Normal; scanYYlex() ; delete current; current=0; ce->program.resize(0); } parseCompounds(ce); } } //---------------------------------------------------------------------------- void parseMain(Entry *rt) { initParser(); anonCount = 0; protection = Public; sig = FALSE; slot = FALSE; gstat = FALSE; virt = Normal; current_root = rt; global_root = rt; current = new Entry; inputString = rt->program; inputPosition = 0; ifCount=0; scanYYrestart( scanYYin ); BEGIN( FindMembers ); scanYYlex(); rt->program.resize(0); delete current; current=0; parseCompounds(rt); } //---------------------------------------------------------------------------- void parseDocument(OutputList &ol,const QCString &docString) { //inParamBlock=inSeeBlock=inReturnBlock=FALSE; curTable = 0; outDoc = new OutputList(&ol); currentIncludeFile.resize(0); includeFileOffset=0; includeFileLength=0; currentListIndentLevel=0; if (!docString) return; linkRef = ""; linkText = ""; inputString = docString; inputPosition = 0; scanYYrestart( scanYYin ); BEGIN( DocScan ); insideArgumentList = FALSE; scanYYlex(); if (insideArgumentList) { insideArgumentList=FALSE; outDoc->endItemList(); } if (insideItemList) { forceEndItemList(); } if (inBlock()) endBlock(); if (currentListIndentLevel!=0) { if (!refName.isEmpty()) { warn("Warning: Documentation block of %s ended in the middle " "of a list (indent level %d)!\n",refName.data(), currentListIndentLevel); } else if (!exampleName.isEmpty()) { warn("Warning: Documentation block of %s ended in the middle " "of a list (indent level %d)!\n",exampleName.data(), currentListIndentLevel); } else { warn("Warning: Documentation block ended in the middle " "of a list (indent level %d)!\n",currentListIndentLevel); } } ol+=*outDoc; delete outDoc; outDoc=0; return; } //---------------------------------------------------------------------------- void parseDoc(OutputList &ol,const char *clName, const char *memName,const QCString &docString) { //printf("Doc---------\n%s\n---------\n",docString.data()); initParser(); initParseCodeContext(); exampleDoc=FALSE; // do not cross reference with member docs className=clName; memberName=memName; if (memName) { refName=className+"::"+memberName; } else if (clName) { refName=className; } else { refName=""; } parseDocument(ol,docString); } //---------------------------------------------------------------------------- void parseText(OutputList &ol,const QCString &txtString) { if (txtString.isEmpty()) return; inputString = txtString; outDoc = new OutputList(&ol); inputPosition = 0; scanYYrestart( scanYYin ); BEGIN( Text ); scanYYlex(); if (memberGroupId!=-1) { warn("Warning: Missing \\endmgroup in file %s\n",yyFileName); memberGroupId=-1; } ol+=*outDoc; delete outDoc; outDoc=0; return; } //---------------------------------------------------------------------------- void parseExample(OutputList &ol,const QCString &docString, const char *fileName) { initParser(); initParseCodeContext(); exampleDoc=TRUE; // cross reference with member docs exampleName=fileName; refName="example "+exampleName; parseDocument(ol,docString); } //---------------------------------------------------------------------------- extern "C" { // some bogus code to keep the compiler happy void scannerYYdummy() { yy_flex_realloc(0,0); } }