#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 596 #define YY_END_OF_BUFFER 597 static yyconst short int yy_acclist[3584] = { 0, 290, 290,16918,16919,16920, 464, 464, 491, 491, 201, 201, 188, 188, 331, 331, 331, 331, 597, 591, 596, 591, 596, 590, 596, 2, 591, 596, 591, 596, 266, 591, 596, 265, 591, 596, 265, 591, 596, 2, 265, 591, 596, 264, 265, 591, 596, 265, 591, 596, 270, 591, 596, 270, 591, 596, 270, 591, 596, 267, 590, 596, 2, 270, 591, 596, 269, 270, 591, 596, 270, 591, 596, 270, 591, 596, 591, 596, 590, 596, 2, 591, 596, 591, 596, 388, 591, 596, 393, 591, 596, 398, 591, 596, 591, 596, 591, 596, 397, 591, 596, 395, 591, 596, 396, 591, 596, 406, 591, 596, 394, 591, 596, 392, 591, 596, 392, 591, 596, 2, 392, 591, 596, 392, 591, 596, 391, 392, 591, 596, 390, 392, 591, 596, 591, 596, 590, 596, 2, 591, 596, 416, 591, 596, 591, 596, 407, 591, 596, 405, 591, 596, 417, 591, 596, 404, 591, 596, 404, 591, 596, 403, 404, 591, 596, 403, 590, 596, 2, 403, 404, 591, 596, 404, 591, 596, 404, 591, 596, 404, 591, 596, 218, 591, 596, 591, 596, 210, 591, 596, 219, 591, 596, 219, 591, 596, 209, 591, 596, 227, 591, 596, 227, 590, 596, 2, 227, 591, 596, 258, 591, 596, 271, 591, 596, 327, 591, 596, 276, 591, 596, 591, 596, 276, 591, 596, 276, 591, 596, 281, 591, 596, 275, 591, 596, 257, 591, 596, 277, 591, 596, 257, 591, 596, 257, 591, 596, 257, 591, 596, 257, 591, 596, 257, 591, 596, 257, 591, 596, 257, 591, 596, 257, 591, 596, 257, 591, 596, 257, 591, 596, 429, 591, 596, 591, 596, 591, 596, 590, 596, 2, 591, 596, 591, 596, 257, 591, 596, 591, 596, 591, 596, 590, 596, 2, 591, 596, 288, 591, 596, 591, 596, 287, 591, 596, 286, 591, 596, 289, 591, 596, 591, 596, 363, 591, 596, 362, 591, 596, 364, 591, 596, 364, 591, 596, 356, 591, 596, 356, 591, 596, 355, 356, 591, 596, 355, 590, 596, 2, 355, 356, 591, 596, 348, 356, 591, 596, 349, 356, 591, 596, 354, 356, 591, 596, 356, 591, 596, 361, 591, 596, 361, 591, 596, 2, 361, 591, 596, 359, 361, 591, 596, 360, 361, 591, 596, 361, 591, 596, 355, 356, 591, 596, 355, 590, 596, 2, 355, 356, 591, 596, 356, 591, 596, 350, 356, 591, 596, 356, 591, 596, 356, 591, 596, 356, 591, 596, 356, 591, 596, 356, 591, 596, 241, 591, 596, 241, 591, 596, 241, 590, 596, 2, 241, 591, 596, 243, 591, 596, 241, 591, 596, 241, 591, 596, 280, 591, 596, 280, 591, 596, 2, 280, 591, 596, 280, 591, 596, 279, 280, 591, 596, 278, 280, 591, 596, 290, 308, 591, 596, 290, 308, 591, 596, 290, 307, 308, 591, 596, 307, 590, 596, 2, 307, 308, 591, 596, 308, 591, 596, 308, 591, 596, 308, 591, 596, 298, 308, 591, 596, 299, 308, 591, 596, 247, 591, 596, 591, 596, 591, 596, 590, 596, 2, 591, 596, 591, 596, 248, 591, 596, 591, 596, 591, 596, 459, 590, 596, 2, 591, 596, 591, 596, 458, 591, 596, 591, 596, 376, 382, 591, 596, 376, 382, 591, 596, 375, 590, 596, 2, 376, 382, 591, 596, 373, 376, 382, 591, 596, 376, 382, 591, 596, 376, 382, 591, 596, 376, 382, 591, 596, 366, 376, 382, 591, 596, 367, 376, 382, 591, 596, 376, 382, 591, 596, 374, 376, 382, 591, 596, 377, 590, 596, 376, 382, 591, 596, 376, 382, 591, 596, 369, 591, 596, 387, 591, 596, 387, 591, 596, 386, 590, 596, 2, 387, 591, 596, 384, 387, 591, 596, 387, 591, 596, 387, 591, 596, 387, 591, 596, 382, 591, 596, 382, 591, 596, 2, 382, 591, 596, 382, 591, 596, 382, 591, 596, 365, 382, 591, 596, 260, 591, 596, 260, 591, 596, 262, 590, 596, 2, 260, 591, 596, 260, 591, 596, 260, 591, 596, 589, 591, 596, 589, 591, 596, 589, 591, 596, 2, 589, 591, 596, 591, 596, 589, 591, 596, 591, 596, 591, 596, 588, 590, 596, 2, 591, 596, 591, 596, 213, 591, 596, 214, 591, 596, 211, 591, 596, 212, 591, 596, 501, 503, 591, 596, 501, 503, 591, 596, 503, 591, 596, 502, 590, 596, 2, 501, 503, 591, 596, 503, 591, 596, 503, 591, 596, 501, 503, 591, 596, 501, 503, 591, 596, 503, 591, 596, 503, 591, 596, 499, 503, 591, 596, 503, 591, 596, 285, 591, 596, 285, 591, 596, 284, 285, 591, 596, 284, 590, 596, 2, 284, 285, 591, 596, 285, 591, 596, 283, 285, 591, 596, 282, 285, 591, 596, 412, 591, 596, 413, 591, 596, 414, 591, 596, 415, 591, 596, 300, 591, 596, 421, 423, 591, 596, 421, 423, 591, 596, 418, 421, 423, 591, 596, 418, 590, 596, 2, 418, 421, 423, 591, 596, 423, 591, 596, 421, 423, 591, 596, 559, 591, 596, 559, 591, 596, 559, 591, 596, 561, 590, 596, 2, 559, 591, 596, 559, 591, 596, 559, 591, 596, 557, 559, 591, 596, 559, 591, 596, 559, 591, 596, 559, 591, 596, 559, 591, 596, 559, 591, 596, 559, 591, 596, 434, 591, 596, 434, 591, 596, 434, 591, 596, 435, 590, 596, 2, 434, 591, 596, 434, 591, 596, 434, 591, 596, 434, 591, 596, 434, 591, 596, 432, 434, 591, 596, 434, 591, 596, 434, 591, 596, 431, 435, 590, 596, 2, 434, 591, 596, 434, 591, 596, 434, 591, 596, 510, 591, 596, 510, 591, 596, 509, 510, 591, 596, 508, 590, 596, 2, 510, 591, 596, 510, 591, 596, 510, 591, 596, 509, 510, 591, 596, 510, 591, 596, 510, 591, 596, 510, 591, 596, 509, 510, 591, 596, 510, 591, 596, 510, 591, 596, 560, 591, 596, 560, 591, 596, 560, 591, 596, 563, 590, 596, 2, 560, 591, 596, 560, 591, 596, 560, 591, 596, 560, 591, 596, 560, 591, 596, 560, 591, 596, 564, 590, 596, 2, 560, 591, 596, 560, 591, 596, 591, 596, 461, 590, 596, 2, 591, 596, 591, 596, 591, 596, 460, 591, 596, 591, 596, 591, 596, 467, 590, 596, 2, 591, 596, 591, 596, 466, 591, 596, 466, 591, 596, 591, 596, 469, 590, 596, 2, 591, 596, 591, 596, 468, 591, 596, 468, 591, 596, 555, 591, 596, 555, 591, 596, 542, 590, 596, 2, 555, 591, 596, 544, 555, 591, 596, 555, 591, 596, 555, 591, 596, 555, 591, 596, 591, 596, 590, 596, 2, 591, 596, 547, 591, 596, 591, 596, 546, 591, 596, 591, 596, 555, 591, 596, 556, 590, 596, 555, 591, 596, 555, 591, 596, 555, 591, 596, 555, 591, 596, 548, 555, 591, 596, 554, 591, 596, 554, 591, 596, 2, 554, 591, 596, 553, 554, 591, 596, 554, 591, 596, 539, 591, 596, 457, 591, 596, 537, 591, 596, 537, 591, 596, 537, 591, 596, 532, 590, 596, 2, 537, 591, 596, 537, 591, 596, 537, 591, 596, 537, 591, 596, 537, 591, 596, 537, 591, 596, 537, 591, 596,16918,16919,16920, 531, 532, 590, 596, 2, 537, 591, 596, 537, 591, 596,16918,16919,16920, 537, 591, 596, 537, 591, 596, 537, 591, 596, 443, 591, 596, 443, 591, 596, 443, 591, 596, 441, 590, 596, 2, 443, 591, 596, 443, 591, 596, 443, 591, 596, 541, 591, 596, 541, 591, 596, 2, 541, 591, 596, 540, 541, 591, 596, 541, 591, 596, 541, 591, 596, 463, 590, 596, 462, 591, 596, 464, 591, 596, 464, 591, 596, 465, 590, 596, 2, 464, 591, 596, 464, 591, 596, 526, 590, 596, 525, 591, 596, 591, 596, 591, 596, 482, 590, 596, 2, 591, 596, 591, 596, 581, 591, 596, 581, 591, 596, 580, 590, 596, 2, 581, 591, 596, 581, 591, 596, 581, 591, 596, 581, 591, 596, 581, 591, 596, 581, 591, 596, 581, 591, 596, 571, 591, 596, 571, 591, 596, 570, 590, 596, 2, 571, 591, 596, 571, 591, 596, 571, 591, 596, 571, 591, 596, 571, 591, 596, 571, 591, 596, 571, 591, 596,16956, 567, 591, 596, 567, 591, 596, 566, 590, 596, 2, 567, 591, 596, 567, 591, 596, 567, 591, 596, 509, 510, 591, 596, 510, 591, 596, 510, 591, 596, 510, 591, 596, 510, 591, 596, 509, 510, 591, 596, 510, 591, 596, 522, 591, 596, 522, 591, 596, 521, 590, 596, 2, 522, 591, 596, 522, 591, 596, 591, 596, 473, 590, 596, 591, 596, 472, 591, 596, 472, 591, 596, 591, 596, 591, 596, 474, 590, 596, 2, 591, 596, 591, 596, 471, 590, 596, 591, 596, 470, 591, 596, 470, 591, 596, 510, 591, 596, 510, 591, 596, 591, 596, 455, 591, 596, 455, 591, 596, 476, 590, 596, 475, 591, 596, 311, 591, 596, 311, 591, 596, 311, 591, 596, 590, 596, 2, 311, 591, 596, 311, 591, 596, 311, 591, 596, 310, 311, 591, 596, 311, 591, 596, 315, 591, 596, 316, 591, 596, 317, 356, 591, 596, 318, 356, 591, 596, 321, 591, 596, 321, 591, 596, 2, 321, 591, 596, 321, 591, 596, 321, 591, 596, 326, 591, 596, 326, 591, 596, 325, 326, 591, 596, 325, 590, 596, 2, 325, 326, 591, 596, 322, 326, 591, 596, 323, 326, 591, 596, 324, 326, 591, 596, 326, 591, 596, 591, 596, 590, 596, 2, 591, 596, 591, 596, 302, 591, 596, 302, 591, 596, 303, 591, 596, 301, 591, 596, 305, 591, 596, 306, 591, 596, 304, 591, 596, 491, 495, 591, 596, 491, 495, 591, 596, 495, 591, 596, 494, 590, 596, 2, 491, 495, 591, 596, 495, 591, 596, 491, 495, 591, 596, 495, 591, 596, 495, 591, 596, 208, 591, 596, 208, 591, 596, 2, 208, 591, 596, 208, 591, 596, 208, 591, 596, 207, 208, 591, 596, 207, 590, 596, 2, 207, 208, 591, 596, 208, 591, 596, 208, 591, 596, 208, 591, 596, 208, 591, 596, 208, 591, 596, 208, 591, 596, 208, 591, 596, 208, 591, 596, 208, 591, 596, 88, 208, 591, 596, 208, 591, 596, 88, 208, 591, 596, 88, 208, 591, 596, 88, 208, 591, 596, 88, 208, 591, 596, 208, 591, 596, 591, 596, 63, 591, 596, 591, 596, 590, 596, 2, 591, 596, 591, 596, 64, 591, 596, 591, 596, 20, 591, 596, 20, 591, 596, 2, 20, 591, 596, 20, 591, 596, 20, 591, 596, 20, 591, 596, 20, 591, 596, 20, 591, 596, 193, 208, 591, 596, 193, 208, 591, 596, 205, 590, 596, 193, 208, 591, 596, 194, 208, 591, 596, 194, 208, 591, 596, 194, 208, 591, 596, 195, 208, 591, 596, 195, 208, 591, 596, 195, 208, 591, 596, 201, 202, 591, 596, 201, 202, 591, 596, 201, 202, 591, 596, 200, 590, 596, 2, 201, 202, 591, 596, 202, 591, 596, 202, 591, 596, 201, 202, 591, 596, 202, 591, 596, 40, 591, 596, 40, 591, 596, 591, 596, 41, 591, 596, 41, 591, 596, 42, 590, 596, 2, 41, 591, 596, 41, 591, 596, 41, 591, 596, 39, 591, 596, 591, 596, 196, 591, 596, 196, 591, 596, 591, 596, 197, 591, 596, 197, 591, 596, 190, 591, 596, 591, 596, 591, 596, 184, 591, 596, 184, 591, 596, 186, 591, 596, 186, 591, 596, 187, 591, 596, 188, 591, 596, 188, 591, 596, 188, 590, 596, 2, 188, 591, 596, 188, 591, 596, 189, 591, 596, 530, 590, 596, 529, 591, 596, 109, 591, 596, 109, 591, 596, 109, 591, 596, 107, 591, 596, 107, 591, 596, 107, 591, 596, 108, 591, 596, 108, 591, 596, 108, 591, 596, 110, 591, 596, 110, 591, 596, 110, 591, 596, 115, 591, 596, 115, 591, 596, 114, 590, 596, 2, 115, 591, 596, 115, 591, 596, 115, 591, 596, 591, 596, 591, 596, 50, 591, 596, 50, 590, 596, 2, 50, 591, 596, 591, 596, 591, 596, 590, 596, 2, 591, 596, 591, 596, 69, 591, 596,16454, 591, 596, 35, 591, 596, 35, 591, 596, 33, 34, 590, 596, 2, 35, 591, 596, 35, 591, 596, 35, 591, 596, 35, 591, 596, 35, 591, 596, 591, 596, 30, 591, 596, 30, 591, 596, 47, 591, 596, 47, 591, 596, 2, 47, 591, 596, 47, 591, 596, 591, 596, 591, 596, 2, 591, 596, 591, 596, 71, 591, 596, 73, 591, 596, 591, 596, 591, 596, 74, 590, 596, 2, 591, 596, 591, 596, 84, 590, 596, 83, 591, 596, 83, 591, 596, 83, 591, 596, 591, 596, 78, 591, 596, 78, 591, 596, 78, 591, 596, 78, 591, 596, 591, 596, 79, 591, 596, 79, 591, 596, 80, 590, 596, 591, 596, 591, 596, 505, 591, 596, 591, 596, 591, 596, 506, 590, 596, 2, 591, 596, 507, 591, 596, 591, 596, 256, 591, 596, 256, 591, 596, 2, 256, 591, 596, 256, 591, 596, 252, 256, 591, 596, 253, 256, 591, 596, 329, 347, 591, 596, 329, 347, 591, 596, 346, 590, 596, 2, 329, 347, 591, 596, 342, 347, 591, 596, 347, 591, 596, 329, 347, 591, 596, 347, 591, 596, 330, 347, 591, 596, 330, 347, 591, 596, 2, 330, 347, 591, 596, 332, 347, 591, 596, 347, 591, 596, 337, 347, 591, 596, 338, 347, 591, 596, 347, 591, 596, 347, 591, 596, 2, 347, 591, 596, 339, 347, 591, 596, 340, 347, 591, 596, 328, 347, 591, 596, 328, 347, 591, 596, 331, 347, 591, 596, 331, 346, 590, 596, 2, 331, 347, 591, 596, 333, 347, 591, 596, 334, 347, 591, 596, 335, 347, 591, 596, 336, 347, 591, 596, 411, 591, 596, 411, 591, 596, 410, 411, 591, 596, 410, 590, 596, 2, 410, 411, 591, 596, 411, 591, 596, 408, 411, 591, 596, 409, 411, 591, 596, 5, 591, 596, 5, 591, 596, 2, 5, 591, 596, 5, 591, 596, 5, 591, 596, 518, 591, 596, 518, 591, 596, 2, 518, 591, 596, 518, 591, 596, 518, 591, 596, 518, 591, 596, 518, 591, 596, 518, 591, 596, 518, 591, 596, 504, 591, 596, 1, 593, 595, 263, 266, 593, 595, 268, 398, 393, 389, 398, 393, 394, 390, 405, 417, 405, 417, 227, 227, 258, 271, 309, 593, 595, 257, 250, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 251, 257, 593, 595, 286, 355, 354, 354, 355, 353, 242, 290, 290, 1, 290, 290, 307, 307, 292, 293, 593, 291, 595, 248, 248, 458, 458, 380, 379, 593, 381, 595, 374, 379, 593, 381, 595, 378, 385, 385, 593, 385, 595, 383, 262, 262, 261, 589, 589, 1, 589, 589, 594, 592, 593, 589, 592, 595, 588, 1, 588, 593, 595, 501, 501, 1, 501, 519, 500, 595, 501, 499, 499, 498, 500, 595, 284, 300, 421, 421, 1, 421, 418, 421, 418, 422, 419, 593, 420, 421, 595, 584, 587, 593, 512, 595, 557, 558, 586, 586, 511, 512, 595, 585, 436, 431, 433, 586, 433, 586, 431, 433, 586, 433, 586, 509, 509, 509, 558, 511, 512, 595, 583, 460, 460, 467, 466, 466, 595, 469, 468, 468, 595, 545, 546, 546, 551, 538, 539, 457,16918,16919,16920, 531,16918, 16919,16920, 586,16918,16919,16920, 531, 586, 586, 586, 16918,16919,16920, 586, 595,16918,16919,16920, 441, 442, 462, 464, 464, 1, 464, 464, 593, 464, 595, 525, 482, 1, 482, 593, 595, 582, 578, 593, 578, 595, 558, 579, 579, 573, 574, 568, 593, 568, 595,16956, 569, 569, 565, 593, 565, 595, 509, 509, 472, 472, 595, 474, 1, 474, 593, 595, 470, 470, 595, 455, 455, 595, 475, 475, 310, 310, 313, 312, 314, 319, 320, 325, 324, 324, 301, 301, 491, 491, 1, 491, 493, 593, 493, 595, 491, 492, 493, 595, 207, 207, 207, 207, 206, 207, 88, 192, 204, 593, 203, 595, 172, 191, 88, 88, 88, 191, 88, 88, 88, 63, 63, 64, 64, 19, 19, 593, 19, 595, 193, 193, 1, 193, 193, 204, 593, 193, 203, 595, 194, 194, 1, 194, 194, 204, 593, 194, 203, 595, 195, 195, 1, 195, 195, 204, 593, 195, 203, 595, 201, 201, 1, 201, 201, 201, 199, 593, 198, 595, 201, 40, 40, 595, 39, 196, 196, 595, 197, 197, 595, 184, 184, 595, 186, 186, 595, 188, 188, 1, 188, 188, 593, 188, 595, 529, 109, 109, 1, 109, 109, 593, 109, 595, 107, 107, 1, 107, 107, 593, 107, 595, 108, 108, 1, 108, 108, 593, 108, 595, 110, 110, 1, 110, 110, 593, 110, 595, 50, 50, 1, 50, 50, 593, 595, 69,16454, 69,16454, 33, 1, 33, 34, 34, 593, 34, 595, 30, 30, 595, 47, 47, 1, 47, 47, 593, 47, 595, 72, 1, 72, 593, 595, 73, 74, 1, 74, 593, 595, 83, 83, 83, 78, 78, 78, 78, 595, 79, 79, 595, 505, 506, 1, 506, 595, 254, 329, 329, 1, 329, 329, 593, 329, 595, 341, 330, 330, 1, 330, 328, 328, 1, 328, 331, 410, 595, 504, 393, 393, 390, 390, 217, 217, 309, 424, 426, 257, 249, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 424, 426, 353, 240, 297, 297, 293, 294, 291, 248, 248, 458, 458, 372, 372, 381, 381, 381, 378, 261, 501, 498, 1, 422, 514, 515, 438, 511, 437, 511, 460, 460, 466, 468, 546, 546, 551,16918,16919,16920,16918,16919,16920, 16918,16919,16920,16918,16919,16920, 8727, 8764, 569, 569, 569, 472, 470, 455, 475, 475, 475, 310, 310, 301, 491, 206, 207, 206, 207, 88, 88, 93, 93, 92, 88, 173, 169, 175, 97, 98, 99, 96, 100, 88, 88, 88, 88, 64, 64, 201, 196, 197, 69,16454, 8262, 69,16454, 30, 83, 83, 78, 79, 255, 345, 345, 4, 516, 517, 274, 390, 216, 215, 216, 425, 427, 427, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 274, 425, 274, 427, 296, 295, 296, 371, 370, 371, 381, 501, 513, 438, 437, 562, 533, 8727, 475, 475, 491, 206, 207, 15, 88, 88, 3, 171, 174, 170, 176, 168, 166, 162, 164, 159, 177, 179, 181, 161, 155, 151, 149, 147, 157, 153, 67, 58, 87, 88, 67, 88, 88, 201, 76, 83, 83, 344, 343, 344, 215, 273, 272, 257, 239, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 351, 295, 370, 381, 424, 381, 368, 501, 489, 439, 444, 453, 451, 549, 475, 475, 491, 88, 167, 163, 165, 160, 178, 180, 182, 156, 152, 150, 148, 158, 154, 136, 140, 141, 143, 145, 138, 48, 52, 85, 49, 88, 62, 85, 91, 91, 91, 91, 88, 201, 185, 183, 77, 83, 343, 400, 239, 236, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 238, 245, 257, 351, 357, 381, 425, 497, 501, 527, 447, 488, 444, 453, 451, 448, 549, 552, 462, 577, 491, 8, 6, 7, 88, 137, 142, 144, 146, 139, 132, 134, 128, 130, 127, 85, 85, 54, 105, 38, 103, 88, 62, 62, 62, 91, 93, 91, 88, 91, 88, 91, 91, 88, 95, 201, 185, 185, 183, 183, 111, 402, 399, 236, 238, 259, 229, 231, 257, 234, 257, 257, 257, 224, 257, 257, 228, 237, 257, 257, 257, 257, 358, 501, 487, 447, 449, 448, 430, 437, 8728, 8727, 520, 491, 11, 13, 88, 133, 135, 129, 131, 124, 125, 122, 75, 59, 61, 106, 88, 62, 93, 62, 46, 37, 91, 88, 91, 91, 88, 91, 88, 91, 88, 91, 88, 201, 112, 81, 229, 231, 234, 224, 228, 237, 257, 257, 226, 257, 257, 224, 257, 220, 257, 257, 230, 352, 496, 501, 496, 483, 454, 480, 456, 449, 437, 550, 8726, 8727, 523, 491, 9, 10, 12, 88, 126, 123, 120, 118, 56, 68, 57, 60, 88, 28, 27, 68, 88, 91, 88, 91, 91, 88, 91, 88, 201, 43, 82, 81, 401, 226, 220, 230, 257, 257, 226, 257, 257, 257, 220, 8436, 250,16628, 232, 352, 445, 454, 524, 576, 452, 440, 456, 528, 575, 550, 477, 478, 491, 88, 121, 119, 86, 44, 101, 53, 51, 88, 86, 86, 44, 44, 88, 91, 91, 88, 88, 88, 94, 201, 94, 82, 81, 232, 428, 235, 233, 257, 225, 257, 257, 8436, 249, 246, 445, 450, 452, 446, 440, 485, 543, 491, 14, 88, 116, 45, 66, 16, 36, 104, 31, 88, 16, 16, 31, 31, 88, 91, 88, 91, 88, 88, 90, 92, 113, 82, 235, 233, 225, 428, 428, 257, 225, 257, 257, 484, 486, 486, 481, 450, 446, 491, 88, 117, 18, 65, 88, 18, 18, 88, 91, 88, 91, 90, 88, 88, 87, 90, 88, 90, 88, 88, 257, 257, 221, 479, 491, 88, 55, 88, 88, 22, 88, 91, 88, 91, 89, 88, 221, 223, 257, 221, 490, 491, 490, 102, 29, 88, 91, 88, 91, 88, 88, 17, 32, 32, 33, 32, 223, 223, 257, 91, 91, 88, 91, 91, 91, 88, 91, 91, 88, 91, 88, 88, 21, 222, 23, 88, 91, 91, 88, 91, 88, 88, 222, 222, 24, 26, 88, 91, 91, 88, 91, 88, 91, 88, 91, 88, 91, 88, 88, 91, 88, 91, 88, 91, 88, 88, 88, 91, 88, 91, 88, 88, 88, 91, 88, 91, 88, 25, 88, 91, 88, 91, 88, 88, 91, 88, 91, 88, 91, 88, 91, 88, 91, 88, 91, 88, 91, 88, 91 } ; static yyconst short int yy_accept[3920] = { 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, 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, 15, 16, 17, 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, 311, 313, 316, 319, 322, 325, 328, 331, 335, 338, 343, 347, 351, 355, 358, 361, 364, 368, 372, 376, 379, 383, 386, 391, 394, 398, 401, 404, 407, 410, 413, 416, 419, 422, 426, 429, 432, 435, 438, 441, 445, 448, 452, 456, 460, 464, 469, 472, 477, 480, 483, 486, 490, 494, 497, 499, 501, 503, 506, 508, 511, 513, 515, 518, 521, 523, 526, 528, 532, 536, 539, 544, 549, 553, 557, 561, 566, 571, 575, 580, 583, 587, 591, 594, 597, 600, 603, 607, 611, 614, 617, 620, 623, 626, 630, 633, 636, 640, 643, 646, 649, 653, 656, 659, 662, 665, 668, 672, 674, 677, 679, 681, 684, 687, 689, 692, 695, 698, 701, 705, 709, 712, 715, 720, 723, 726, 730, 734, 737, 740, 744, 747, 750, 753, 757, 760, 765, 768, 772, 776, 779, 782, 785, 788, 791, 795, 799, 804, 807, 813, 816, 820, 823, 826, 829, 832, 836, 839, 842, 846, 849, 852, 855, 858, 861, 864, 867, 870, 873, 876, 880, 883, 886, 889, 892, 896, 899, 902, 906, 910, 913, 916, 919, 922, 926, 929, 933, 936, 939, 943, 946, 949, 952, 956, 959, 962, 965, 968, 971, 974, 978, 981, 984, 987, 990, 993, 996, 1000, 1003, 1005, 1008, 1011, 1013, 1015, 1018, 1020, 1022, 1025, 1028, 1030, 1033, 1036, 1038, 1041, 1044, 1046, 1049, 1052, 1055, 1058, 1061, 1065, 1069, 1072, 1075, 1078, 1080, 1082, 1085, 1088, 1090, 1093, 1095, 1098, 1101, 1104, 1107, 1110, 1113, 1117, 1120, 1123, 1127, 1131, 1134, 1137, 1140, 1143, 1146, 1149, 1152, 1156, 1159, 1162, 1165, 1168, 1171, 1177, 1181, 1185, 1191, 1194, 1197, 1200, 1203, 1206, 1209, 1212, 1216, 1219, 1222, 1225, 1228, 1232, 1236, 1239, 1242, 1245, 1248, 1251, 1254, 1257, 1261, 1264, 1267, 1270, 1272, 1274, 1277, 1280, 1282, 1285, 1288, 1291, 1295, 1298, 1301, 1304, 1307, 1310, 1313, 1316, 1319, 1322, 1326, 1329, 1332, 1335, 1338, 1341, 1345, 1348, 1351, 1354, 1358, 1361, 1364, 1368, 1371, 1374, 1377, 1380, 1384, 1387, 1390, 1393, 1396, 1400, 1403, 1405, 1408, 1410, 1413, 1416, 1418, 1420, 1423, 1426, 1428, 1431, 1433, 1436, 1439, 1442, 1445, 1447, 1450, 1453, 1456, 1459, 1462, 1465, 1468, 1470, 1474, 1477, 1480, 1484, 1487, 1490, 1493, 1497, 1501, 1504, 1507, 1511, 1514, 1517, 1520, 1523, 1527, 1530, 1535, 1539, 1543, 1547, 1550, 1552, 1554, 1557, 1559, 1562, 1565, 1568, 1571, 1574, 1577, 1580, 1584, 1588, 1591, 1594, 1599, 1602, 1606, 1609, 1612, 1615, 1618, 1622, 1625, 1628, 1632, 1635, 1640, 1643, 1646, 1649, 1652, 1655, 1658, 1661, 1664, 1667, 1671, 1674, 1678, 1682, 1686, 1690, 1693, 1695, 1698, 1700, 1702, 1705, 1707, 1710, 1712, 1715, 1718, 1722, 1725, 1728, 1731, 1734, 1737, 1741, 1745, 1748, 1752, 1756, 1760, 1764, 1768, 1772, 1776, 1780, 1784, 1788, 1791, 1796, 1799, 1802, 1806, 1809, 1812, 1815, 1817, 1820, 1823, 1826, 1830, 1833, 1836, 1839, 1841, 1844, 1847, 1849, 1852, 1855, 1858, 1860, 1862, 1865, 1868, 1871, 1874, 1877, 1880, 1883, 1886, 1890, 1893, 1896, 1899, 1902, 1905, 1908, 1911, 1914, 1917, 1920, 1923, 1926, 1929, 1932, 1935, 1938, 1941, 1944, 1947, 1951, 1954, 1957, 1959, 1961, 1964, 1967, 1971, 1973, 1975, 1977, 1980, 1982, 1986, 1988, 1991, 1994, 1998, 2002, 2005, 2008, 2011, 2014, 2016, 2019, 2022, 2025, 2028, 2032, 2035, 2037, 2039, 2042, 2044, 2047, 2050, 2052, 2054, 2057, 2060, 2062, 2065, 2068, 2071, 2074, 2076, 2079, 2082, 2085, 2088, 2090, 2093, 2096, 2099, 2101, 2103, 2106, 2108, 2110, 2113, 2116, 2119, 2121, 2124, 2127, 2131, 2134, 2138, 2142, 2146, 2150, 2153, 2158, 2162, 2165, 2169, 2172, 2176, 2180, 2185, 2189, 2192, 2196, 2200, 2203, 2206, 2210, 2214, 2218, 2222, 2226, 2230, 2234, 2239, 2243, 2247, 2251, 2255, 2258, 2261, 2265, 2268, 2273, 2276, 2280, 2284, 2287, 2290, 2294, 2297, 2300, 2303, 2306, 2310, 2313, 2316, 2319, 2322, 2325, 2328, 2331, 2331, 2332, 2333, 2334, 2335, 2336, 2336, 2336, 2337, 2338, 2339, 2339, 2339, 2339, 2340, 2340, 2340, 2341, 2342, 2343, 2343, 2344, 2344, 2345, 2345, 2345, 2346, 2346, 2346, 2346, 2347, 2348, 2348, 2348, 2349, 2349, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2350, 2351, 2352, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2354, 2355, 2355, 2356, 2357, 2357, 2357, 2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2374, 2375, 2375, 2375, 2375, 2375, 2376, 2377, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2384, 2385, 2385, 2385, 2385, 2385, 2385, 2385, 2386, 2386, 2386, 2386, 2386, 2386, 2386, 2387, 2388, 2389, 2391, 2393, 2394, 2394, 2395, 2395, 2395, 2397, 2399, 2399, 2399, 2399, 2399, 2400, 2400, 2401, 2401, 2401, 2401, 2402, 2402, 2403, 2403, 2403, 2404, 2406, 2408, 2408, 2408, 2408, 2409, 2411, 2413, 2414, 2414, 2415, 2417, 2419, 2420, 2421, 2422, 2422, 2423, 2423, 2424, 2425, 2427, 2428, 2428, 2429, 2431, 2434, 2434, 2435, 2435, 2436, 2437, 2438, 2439, 2440, 2441, 2443, 2443, 2443, 2444, 2446, 2446, 2447, 2447, 2447, 2448, 2449, 2452, 2453, 2454, 2455, 2455, 2456, 2458, 2458, 2460, 2461, 2461, 2462, 2464, 2467, 2467, 2467, 2468, 2470, 2472, 2473, 2473, 2474, 2474, 2474, 2474, 2474, 2474, 2474, 2474, 2474, 2474, 2474, 2474, 2474, 2474, 2474, 2474, 2474, 2474, 2474, 2474, 2475, 2476, 2479, 2479, 2479, 2480, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 2482, 2482, 2482, 2484, 2486, 2489, 2491, 2492, 2493, 2493, 2493, 2493, 2493, 2493, 2493, 2493, 2493, 2493, 2493, 2494, 2494, 2494, 2494, 2494, 2494, 2494, 2495, 2495, 2495, 2495, 2498, 2498, 2498, 2499, 2499, 2500, 2500, 2501, 2501, 2502, 2502, 2503, 2505, 2505, 2506, 2506, 2507, 2509, 2509, 2510, 2510, 2510, 2510, 2510, 2511, 2511, 2512, 2512, 2512, 2512, 2512, 2512, 2513, 2513, 2513, 2513, 2514, 2515, 2516, 2516, 2516, 2519, 2520, 2520, 2523, 2523, 2523, 2527, 2529, 2530, 2534, 2535, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2540, 2540, 2541, 2541, 2542, 2543, 2544, 2546, 2548, 2550, 2551, 2551, 2552, 2552, 2553, 2554, 2555, 2556, 2557, 2559, 2561, 2562, 2562, 2562, 2562, 2562, 2563, 2564, 2565, 2566, 2568, 2570, 2570, 2571, 2572, 2573, 2575, 2577, 2578, 2578, 2578, 2578, 2579, 2579, 2579, 2580, 2582, 2582, 2583, 2583, 2584, 2585, 2586, 2587, 2587, 2588, 2590, 2590, 2591, 2593, 2593, 2594, 2594, 2595, 2595, 2595, 2595, 2596, 2596, 2597, 2597, 2598, 2599, 2600, 2600, 2601, 2602, 2603, 2604, 2605, 2605, 2605, 2606, 2607, 2607, 2608, 2609, 2611, 2613, 2615, 2616, 2616, 2619, 2619, 2619, 2619, 2619, 2619, 2619, 2619, 2619, 2620, 2621, 2622, 2623, 2625, 2626, 2626, 2626, 2627, 2627, 2627, 2627, 2627, 2627, 2629, 2631, 2631, 2631, 2631, 2632, 2632, 2632, 2632, 2632, 2632, 2632, 2632, 2632, 2632, 2632, 2632, 2632, 2632, 2632, 2632, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2634, 2634, 2635, 2636, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2638, 2639, 2640, 2640, 2641, 2642, 2642, 2642, 2642, 2643, 2643, 2644, 2645, 2647, 2649, 2649, 2649, 2650, 2651, 2653, 2656, 2659, 2660, 2661, 2663, 2666, 2669, 2670, 2671, 2673, 2676, 2679, 2680, 2681, 2683, 2684, 2684, 2685, 2685, 2687, 2689, 2689, 2690, 2690, 2691, 2693, 2693, 2694, 2694, 2695, 2697, 2697, 2698, 2700, 2700, 2700, 2701, 2703, 2704, 2706, 2707, 2708, 2710, 2712, 2714, 2715, 2716, 2717, 2719, 2721, 2723, 2724, 2725, 2727, 2729, 2731, 2732, 2733, 2735, 2737, 2739, 2740, 2741, 2743, 2745, 2747, 2747, 2747, 2747, 2747, 2748, 2749, 2749, 2750, 2751, 2752, 2753, 2754, 2754, 2754, 2754, 2754, 2756, 2756, 2758, 2758, 2759, 2759, 2760, 2761, 2762, 2764, 2766, 2766, 2766, 2766, 2767, 2769, 2770, 2771, 2773, 2775, 2777, 2777, 2778, 2778, 2779, 2780, 2781, 2782, 2783, 2783, 2784, 2784, 2785, 2786, 2787, 2788, 2789, 2790, 2791, 2791, 2792, 2793, 2794, 2796, 2796, 2797, 2799, 2799, 2799, 2800, 2800, 2801, 2801, 2802, 2803, 2804, 2804, 2805, 2805, 2806, 2807, 2809, 2811, 2813, 2814, 2815, 2816, 2818, 2818, 2818, 2819, 2820, 2822, 2823, 2824, 2824, 2824, 2824, 2824, 2825, 2825, 2826, 2826, 2826, 2826, 2826, 2827, 2827, 2827, 2828, 2828, 2828, 2829, 2829, 2830, 2830, 2830, 2830, 2830, 2830, 2830, 2831, 2831, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2833, 2833, 2833, 2833, 2834, 2834, 2834, 2835, 2835, 2835, 2836, 2836, 2837, 2838, 2839, 2840, 2841, 2842, 2843, 2844, 2845, 2846, 2847, 2848, 2849, 2850, 2851, 2852, 2853, 2854, 2855, 2855, 2856, 2856, 2857, 2857, 2857, 2858, 2859, 2859, 2860, 2860, 2861, 2861, 2861, 2861, 2861, 2861, 2862, 2863, 2863, 2864, 2864, 2865, 2866, 2866, 2867, 2867, 2867, 2868, 2868, 2869, 2869, 2870, 2870, 2871, 2872, 2872, 2873, 2873, 2874, 2875, 2876, 2876, 2876, 2877, 2878, 2878, 2879, 2879, 2879, 2880, 2880, 2881, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2883, 2884, 2884, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2885, 2886, 2886, 2886, 2886, 2886, 2886, 2886, 2886, 2886, 2886, 2886, 2886, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2887, 2888, 2888, 2889, 2889, 2890, 2891, 2892, 2892, 2892, 2893, 2893, 2894, 2895, 2895, 2895, 2895, 2895, 2898, 2901, 2904, 2907, 2907, 2907, 2907, 2907, 2907, 2907, 2907, 2907, 2907, 2907, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2908, 2909, 2910, 2911, 2912, 2912, 2912, 2912, 2912, 2912, 2913, 2914, 2915, 2916, 2917, 2918, 2918, 2919, 2919, 2920, 2920, 2921, 2922, 2922, 2922, 2922, 2922, 2922, 2922, 2922, 2922, 2922, 2922, 2924, 2926, 2927, 2927, 2928, 2928, 2929, 2929, 2929, 2930, 2931, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2934, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2936, 2936, 2936, 2936, 2936, 2937, 2937, 2938, 2938, 2938, 2938, 2938, 2939, 2939, 2939, 2939, 2939, 2939, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2940, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2942, 2943, 2944, 2944, 2945, 2945, 2946, 2946, 2946, 2946, 2947, 2947, 2947, 2948, 2949, 2949, 2949, 2949, 2949, 2949, 2949, 2951, 2951, 2952, 2952, 2954, 2954, 2954, 2955, 2956, 2957, 2958, 2959, 2959, 2959, 2960, 2961, 2961, 2962, 2962, 2962, 2963, 2964, 2964, 2965, 2966, 2966, 2967, 2967, 2967, 2967, 2967, 2967, 2968, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2971, 2971, 2972, 2973, 2974, 2975, 2976, 2977, 2978, 2979, 2980, 2981, 2982, 2983, 2984, 2985, 2986, 2987, 2988, 2989, 2990, 2991, 2993, 2995, 2995, 2995, 2995, 2995, 2996, 2998, 2998, 2998, 2999, 3001, 3001, 3002, 3002, 3002, 3003, 3003, 3003, 3003, 3003, 3003, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3006, 3006, 3006, 3006, 3006, 3006, 3006, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3008, 3008, 3008, 3008, 3008, 3008, 3008, 3008, 3008, 3009, 3009, 3009, 3009, 3009, 3009, 3009, 3009, 3009, 3009, 3009, 3009, 3009, 3010, 3011, 3012, 3012, 3012, 3012, 3012, 3012, 3012, 3012, 3012, 3012, 3012, 3014, 3014, 3015, 3016, 3017, 3018, 3018, 3019, 3019, 3020, 3020, 3020, 3020, 3020, 3020, 3020, 3020, 3020, 3020, 3020, 3020, 3020, 3020, 3020, 3021, 3021, 3021, 3021, 3021, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3023, 3023, 3023, 3023, 3024, 3024, 3024, 3025, 3025, 3026, 3026, 3027, 3027, 3027, 3028, 3028, 3029, 3029, 3030, 3030, 3030, 3031, 3031, 3031, 3031, 3031, 3031, 3032, 3032, 3032, 3032, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 3034, 3034, 3035, 3035, 3036, 3036, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3038, 3038, 3038, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3040, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3043, 3044, 3044, 3044, 3044, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3047, 3048, 3048, 3048, 3049, 3051, 3051, 3051, 3051, 3051, 3051, 3052, 3052, 3053, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3055, 3056, 3057, 3058, 3059, 3060, 3061, 3062, 3063, 3064, 3065, 3066, 3067, 3068, 3069, 3070, 3071, 3072, 3073, 3074, 3074, 3074, 3074, 3075, 3075, 3075, 3076, 3076, 3078, 3079, 3080, 3080, 3081, 3081, 3081, 3081, 3082, 3082, 3082, 3082, 3082, 3082, 3082, 3082, 3083, 3083, 3083, 3084, 3084, 3085, 3085, 3085, 3085, 3085, 3085, 3085, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3088, 3089, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3091, 3091, 3091, 3091, 3091, 3091, 3091, 3091, 3091, 3092, 3092, 3092, 3093, 3093, 3094, 3094, 3095, 3095, 3095, 3096, 3096, 3097, 3097, 3098, 3098, 3098, 3098, 3098, 3099, 3099, 3099, 3100, 3100, 3100, 3100, 3100, 3100, 3100, 3100, 3100, 3100, 3101, 3101, 3102, 3102, 3103, 3103, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3105, 3106, 3106, 3106, 3106, 3106, 3106, 3106, 3106, 3106, 3107, 3107, 3107, 3107, 3108, 3108, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3110, 3110, 3110, 3111, 3111, 3112, 3112, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3115, 3115, 3115, 3115, 3115, 3115, 3116, 3116, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3118, 3119, 3120, 3121, 3122, 3122, 3122, 3122, 3123, 3123, 3123, 3123, 3124, 3124, 3125, 3125, 3125, 3125, 3125, 3125, 3127, 3127, 3127, 3128, 3128, 3128, 3128, 3129, 3129, 3129, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, 3139, 3140, 3141, 3142, 3143, 3144, 3145, 3146, 3147, 3148, 3149, 3149, 3149, 3150, 3150, 3150, 3152, 3152, 3153, 3154, 3154, 3154, 3154, 3154, 3154, 3154, 3154, 3154, 3155, 3156, 3157, 3157, 3157, 3158, 3158, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3160, 3160, 3160, 3160, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3162, 3162, 3163, 3163, 3163, 3163, 3163, 3163, 3163, 3163, 3163, 3163, 3163, 3163, 3164, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3166, 3166, 3166, 3166, 3166, 3166, 3167, 3167, 3168, 3169, 3169, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3171, 3172, 3172, 3172, 3172, 3173, 3173, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3175, 3175, 3176, 3176, 3176, 3177, 3177, 3177, 3177, 3178, 3178, 3179, 3179, 3179, 3179, 3179, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3181, 3182, 3182, 3183, 3183, 3183, 3183, 3183, 3183, 3183, 3183, 3183, 3183, 3183, 3184, 3185, 3185, 3185, 3185, 3185, 3185, 3185, 3186, 3186, 3186, 3186, 3186, 3186, 3186, 3186, 3187, 3187, 3187, 3187, 3187, 3188, 3189, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3190, 3192, 3193, 3195, 3197, 3198, 3199, 3199, 3199, 3199, 3200, 3201, 3201, 3201, 3202, 3203, 3204, 3205, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3207, 3207, 3208, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3210, 3210, 3211, 3212, 3213, 3214, 3215, 3216, 3217, 3218, 3218, 3219, 3220, 3221, 3222, 3223, 3224, 3225, 3226, 3227, 3227, 3228, 3228, 3228, 3228, 3228, 3229, 3229, 3229, 3230, 3230, 3230, 3230, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3231, 3232, 3232, 3233, 3233, 3234, 3234, 3234, 3235, 3235, 3235, 3235, 3235, 3235, 3235, 3236, 3236, 3236, 3236, 3236, 3237, 3237, 3237, 3238, 3238, 3238, 3238, 3238, 3239, 3239, 3239, 3240, 3240, 3240, 3240, 3241, 3242, 3242, 3243, 3243, 3243, 3244, 3244, 3244, 3244, 3245, 3245, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3247, 3247, 3247, 3247, 3247, 3248, 3248, 3248, 3249, 3249, 3249, 3249, 3249, 3249, 3249, 3249, 3249, 3249, 3250, 3250, 3250, 3250, 3251, 3251, 3251, 3251, 3251, 3251, 3251, 3252, 3252, 3253, 3253, 3253, 3253, 3253, 3254, 3254, 3254, 3254, 3254, 3256, 3257, 3257, 3257, 3257, 3257, 3257, 3257, 3257, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3258, 3259, 3259, 3259, 3259, 3259, 3259, 3259, 3259, 3259, 3259, 3259, 3260, 3262, 3263, 3265, 3267, 3269, 3270, 3270, 3270, 3270, 3270, 3271, 3271, 3271, 3271, 3272, 3272, 3272, 3272, 3272, 3272, 3273, 3273, 3274, 3275, 3275, 3276, 3276, 3276, 3276, 3276, 3277, 3277, 3277, 3278, 3279, 3279, 3279, 3279, 3279, 3280, 3281, 3281, 3282, 3283, 3284, 3285, 3286, 3286, 3287, 3288, 3288, 3289, 3290, 3291, 3291, 3293, 3294, 3294, 3294, 3295, 3295, 3295, 3296, 3296, 3296, 3296, 3296, 3297, 3297, 3297, 3298, 3299, 3299, 3299, 3299, 3300, 3300, 3300, 3300, 3301, 3301, 3301, 3302, 3302, 3303, 3303, 3303, 3303, 3304, 3305, 3305, 3306, 3307, 3308, 3308, 3309, 3309, 3309, 3309, 3309, 3309, 3309, 3309, 3309, 3309, 3309, 3309, 3310, 3310, 3310, 3311, 3311, 3312, 3312, 3312, 3312, 3312, 3312, 3312, 3313, 3313, 3313, 3313, 3313, 3314, 3314, 3314, 3314, 3314, 3314, 3314, 3314, 3314, 3314, 3315, 3316, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3318, 3318, 3318, 3318, 3319, 3319, 3319, 3319, 3319, 3319, 3319, 3320, 3320, 3320, 3320, 3320, 3320, 3320, 3321, 3321, 3321, 3321, 3321, 3321, 3321, 3323, 3325, 3326, 3328, 3329, 3329, 3329, 3330, 3330, 3331, 3331, 3331, 3331, 3331, 3332, 3332, 3333, 3334, 3334, 3334, 3334, 3335, 3335, 3335, 3335, 3335, 3336, 3336, 3336, 3337, 3337, 3338, 3339, 3340, 3341, 3342, 3343, 3344, 3344, 3347, 3347, 3347, 3348, 3349, 3349, 3349, 3349, 3350, 3350, 3351, 3352, 3352, 3353, 3354, 3354, 3355, 3356, 3356, 3356, 3357, 3358, 3358, 3358, 3359, 3359, 3359, 3359, 3360, 3361, 3361, 3362, 3362, 3362, 3363, 3363, 3364, 3364, 3364, 3364, 3364, 3365, 3365, 3365, 3365, 3365, 3365, 3365, 3365, 3365, 3365, 3365, 3365, 3366, 3367, 3367, 3367, 3368, 3368, 3368, 3368, 3368, 3368, 3368, 3369, 3370, 3371, 3371, 3371, 3371, 3371, 3371, 3372, 3373, 3374, 3375, 3375, 3375, 3375, 3375, 3375, 3375, 3375, 3375, 3375, 3375, 3377, 3378, 3378, 3378, 3378, 3378, 3379, 3379, 3379, 3380, 3381, 3381, 3381, 3381, 3383, 3384, 3384, 3384, 3384, 3384, 3385, 3386, 3386, 3386, 3386, 3386, 3386, 3387, 3388, 3388, 3389, 3390, 3391, 3391, 3392, 3393, 3394, 3396, 3396, 3397, 3397, 3397, 3398, 3398, 3399, 3400, 3401, 3402, 3403, 3403, 3404, 3404, 3404, 3405, 3405, 3406, 3407, 3407, 3407, 3407, 3407, 3407, 3407, 3408, 3409, 3410, 3410, 3410, 3410, 3411, 3412, 3412, 3412, 3413, 3414, 3414, 3415, 3415, 3415, 3415, 3415, 3415, 3415, 3416, 3417, 3417, 3417, 3418, 3419, 3419, 3421, 3423, 3423, 3424, 3424, 3426, 3426, 3426, 3427, 3427, 3427, 3428, 3428, 3428, 3429, 3430, 3431, 3431, 3431, 3432, 3432, 3432, 3433, 3434, 3434, 3435, 3436, 3437, 3438, 3439, 3440, 3441, 3442, 3443, 3444, 3444, 3445, 3445, 3446, 3446, 3447, 3447, 3447, 3447, 3447, 3448, 3449, 3449, 3449, 3450, 3450, 3450, 3450, 3450, 3450, 3450, 3451, 3452, 3452, 3452, 3454, 3456, 3456, 3457, 3458, 3458, 3459, 3461, 3461, 3463, 3464, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3466, 3467, 3467, 3468, 3469, 3470, 3470, 3471, 3471, 3471, 3472, 3472, 3472, 3473, 3474, 3474, 3474, 3474, 3474, 3474, 3475, 3475, 3477, 3479, 3479, 3479, 3480, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3481, 3482, 3482, 3483, 3484, 3485, 3487, 3488, 3489, 3490, 3490, 3490, 3490, 3490, 3492, 3494, 3495, 3496, 3497, 3497, 3498, 3500, 3501, 3501, 3502, 3502, 3503, 3504, 3504, 3504, 3504, 3504, 3505, 3506, 3508, 3509, 3510, 3512, 3513, 3515, 3516, 3517, 3518, 3518, 3518, 3519, 3519, 3519, 3520, 3520, 3522, 3523, 3525, 3526, 3527, 3527, 3528, 3529, 3529, 3530, 3531, 3533, 3534, 3536, 3538, 3540, 3542, 3543, 3544, 3544, 3545, 3547, 3549, 3550, 3551, 3551, 3553, 3555, 3556, 3557, 3557, 3559, 3561, 3562, 3563, 3565, 3567, 3568, 3570, 3572, 3574, 3576, 3578, 3580, 3582, 3584, 3584 } ; 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, 1, 59, 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, 1, 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, 1, 5, 6, 1, 1, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 17, 17, 17, 17, 17, 18, 1, 19, 1, 20, 21, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 23, 24, 25, 26, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 27, 28, 29 } ; static yyconst long int yy_base[4677] = { 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, 504, 513, 829, 835, 540, 863, 159, 535, 919, 1003, 868, 881, 850, 886, 925, 950, 914, 955, 1088, 0, 1175, 0, 962, 1261, 996, 1017, 975, 1271, 1021, 1279, 1286, 1292, 892, 1299, 165, 499, 1052, 1312, 1039, 1065, 1317, 1321, 1330, 1348, 1362, 1383, 1406, 1418, 1396, 1428, 1440, 1460, 1481, 0, 1567, 1573, 1594, 1681, 1614, 1701, 1768, 1855, 1788, 1875, 1370, 1627, 1942, 0, 2029, 2116, 2203, 2290, 1651, 1731, 2377, 0, 2073, 2160, 1636, 1641, 1725, 1739, 2464, 0, 2551, 0, 2050, 2138, 1811, 1831, 1888, 1912, 2638, 0, 1656, 1721, 2725, 0, 1801, 1897, 2221, 2225, 2308, 2811, 2312, 2816, 2873, 2960, 2044, 2065, 3047, 3134, 1917, 2087, 3221, 3308, 2134, 2165, 2250, 132, 3395, 3482, 2171, 2175, 3569, 0, 3656, 0, 2258, 2335, 2349, 2820, 2838, 2843, 2893, 2918, 3743, 0, 2246, 2923, 2980, 3067, 2850, 2914, 3830, 0, 3917, 4004, 4091, 0, 3010, 3094, 3152, 3184, 3000, 3080, 3087, 3172, 3177, 3241, 3268, 3328, 3020, 3107, 4178, 4264, 3355, 3413, 4350, 4437, 4524, 4611, 4698, 4785, 3197, 3254, 4211, 4298, 4872, 4959, 5046, 5132, 3261, 3341, 5218, 0, 3281, 3348, 3417, 3427, 3437, 3457, 3502, 3514, 3935, 3939, 3522, 3527, 5305, 0, 4022, 4026, 5392, 5479, 3276, 3363, 3368, 3445, 3537, 3542, 3949, 3957, 5566, 0, 3450, 3532, 5653, 0, 5740, 5827, 5914, 6001, 3977, 4217, 6088, 0, 4047, 4065, 3962, 4052, 4193, 4199, 4321, 4407, 4240, 4303, 4384, 4469, 4483, 4556, 4570, 4643, 4370, 4631, 4285, 4457, 4546, 4718, 4745, 4805, 6175, 0, 15097,34016,15090,34016,34016, 1,15077,34016,15088,34016, 34016, 2,34016,15087, 1306, 1355, 1376,34016, 3,15084, 986, 2281, 2991,15059,34016, 3210, 4, 8, 472,34016, 34016,34016,34016, 0,34016,15084,34016, 150,34016, 4309, 856, 1581, 1670,34016,15057,34016, 3471, 172,34016,15081, 34016,34016,34016, 166, 109,15014,34016,15024,34016, 1825, 2179,34016, 6260, 4513, 4602, 466, 4,15057, 3166, 174, 15041, 4583,34016,34016, 4687,34016, 4819, 4824, 4732, 4739, 4831, 4905, 4915, 4921, 4991, 4910,34016, 188, 4995, 5002, 5006,15040, 5066, 559, 4673, 5021, 5034, 5076, 460,34016, 0,34016, 469,34016,34016,34016, 5080,34016,15059, 1046, 1745, 2093,34016,34016, 842, 475,34016,15058,34016,34016, 34016, 478, 4861, 5118, 5123, 505,34016, 4342,14986,14998, 14990,14983,34016,15053,34016,34016, 1463, 507,15022,34016, 15051,34016, 511,34016,34016, 0, 5085, 1467, 1587, 1835, 15044,14994, 517,34016,34016,34016,14990, 5113, 5153, 5163, 15021, 5169, 1845, 5411, 5423, 5427,15020, 5431, 1920,34016, 15045,34016,34016,34016,14989,15024, 531,34016, 5104, 906, 34016,34016, 532, 124,34016,34016,15042,34016,34016,34016, 15022, 820, 0,34016,15040,34016,15020, 858,34016,34016, 15038,15034, 153, 859, 507, 0, 901, 966, 0,15017, 871,15033, 144,34016,15032, 999,34016,34016,34016,34016, 0, 4668, 1056,34016, 0,15011, 883,15010,14966,14965, 1060, 916, 918,34016,15026, 1931, 2097, 2184, 952,34016, 34016,34016,34016,34016,34016, 0,15011, 1014, 2355, 2942, 3024, 972, 1024,34016,15024, 1337,34016,34016,15004, 1059, 0, 852, 6308, 467, 5441, 1061, 1264,34016,15022, 4253, 34016,34016,15002, 2950, 1277, 862, 6356, 928, 5498,34016, 3029, 5437, 1308,34016,15020, 4418,34016,34016,15000, 1333, 1273, 939, 5480, 5723, 5760, 1413, 1425,34016,15018, 4424, 5109, 5512, 1431, 3048, 1832, 5756, 1435,34016,34016, 1612, 5518, 5522, 5816,14998,14990, 5846, 3114, 3155,34016, 3289, 0, 0, 1621, 3374,34016, 3551, 0, 0, 1633,34016, 15015,34016,34016, 1712,14995, 1643,14941, 5858, 5862, 5866, 34016,14986, 5872, 3556, 5876,34016, 829,14940,14945,14938, 34016,34016,15002,34016,34016, 1647,14989, 0,34016,15000, 1804,34016,34016,14980, 1740, 967, 929, 502, 5936,34016, 3981, 5961, 1741, 5915, 5984,34016,14998, 2934,34016,34016, 14978, 1743,34016,14996,34016,34016,14975, 1802,34016,14975, 0, 564,34016, 0, 1894,34016, 0,14990, 1083,34016, 14978, 2047,34016,14979,34016,34016,14953, 2072, 1357, 1211, 2241, 2089,34016,14971,34016,34016,14951, 3985, 2136,14903, 2249, 2140,34016,14968,34016,34016, 2177,14901, 5149, 2178, 2782, 4780, 6210, 6021, 2253,34016,14966,34016,34016, 2260, 14946,34016, 0, 0, 2309,14962, 1335,34016,14961, 2311, 34016, 0, 0, 2322, 1266, 836, 0, 0, 2326,34016, 6273,34016,14962, 5905, 5956, 6279, 2341,14935, 6288, 4071, 34016, 6300,34016,34016,34016,14960,34016, 6306, 2352,34016, 14959, 4502, 4677, 5805,34016,34016, 4506, 2830, 5460, 6063, 6068, 6339, 6343, 6354,34016,14904,34016,34016,34016, 0, 6390,34016,34016, 0, 2845,14895,14894, 2849,34016,14955, 34016, 6414, 2851, 4589, 4593, 4682,14869,14941, 0,14934, 6481, 3086, 1258, 6534, 6606, 6679, 6758, 6831, 6910,14875, 40,14865,14943, 0, 6394, 6398, 6403,14922, 6435, 4767, 34016,14947,34016,14931,14923, 2894,14879,14878, 0, 4950, 34016, 2896, 0, 5205, 3023, 0, 5210, 3109, 0, 6460, 5898, 6439, 6517, 3110,14920,14876,14875, 0, 3175,14874, 34016,14935,34016,34016, 3187,14872, 0, 0, 0, 3190, 0, 0, 3191,34016, 1404, 1371, 0, 3239, 0, 3248, 34016, 0, 1413, 0, 0, 3283,34016,34016, 0, 0, 5465, 3284, 0, 5893, 3326, 0, 6522, 3365, 0, 6527, 3366,34016,14933,34016,34016, 3448, 2872, 4776, 6540, 5173, 5801, 5982, 6531, 6555, 6560, 6616,14906, 6620, 6409,14929, 3007,34016,14928, 1455, 3452, 2069,14867, 0, 0, 3451, 0, 1433, 0, 3942, 1712, 3034, 1804, 4842,34016, 0, 14926, 1475,34016,14925, 4025,34016, 0, 2006, 1860, 0, 0, 3936, 6621, 0, 0, 0, 3955,34016,14864,14859, 0,14922, 4062,34016,14921,14903, 4196,34016,14916,34016, 3978,34016, 6629, 0, 6317,34016, 0,34016,34016, 3979, 0, 0, 4744, 0,34016,14860,34016,34016, 4024,14914, 34016,34016,34016, 0, 6711, 6507, 6586, 6646,34016,34016, 34016,34016,34016,14913, 6655, 6686, 6717, 4032,34016,34016, 34016,14912,34016,14894, 4064,34016,14910,34016, 4066,14846, 4891,14893, 4171,14843, 0,14905,34016,34016,34016,34016, 14881, 6724, 4212, 958, 1334,34016, 6744, 6736,14866, 1390, 6754, 6749, 6770,34016, 1633, 6780, 6800, 4224, 0, 6789, 14793, 6805, 6857, 6861, 6865, 6869, 1892, 6874, 6878, 6886, 14780, 2103, 4173,14746,14658,14708, 6885, 6936, 4311, 6949, 4312, 6995, 6917, 4199,14692,14643, 401,14640,14638,14650, 2760, 1861,14626,14636,14639, 4332,14642, 2227, 6957, 6974, 1662, 4647, 6978, 6986, 6990,14673, 7004, 7021, 7025, 7032, 7076, 7040, 7084, 7088, 7092, 7120, 7126, 7131, 7138, 7159, 7170, 6890, 7178, 7080,14676, 7166, 7187, 7198,34016, 7036, 7206, 1795, 5761, 0, 7215, 7219, 7226, 7234, 7238,14630, 14642,14634,14627, 7244, 7251,14627,14630,14621,14626, 7258, 7264,34016, 0, 7272, 0, 7278, 7283,14687,34016,14681, 7277, 7301, 0,14622, 7312,14664, 7316, 7320, 7324, 0, 7328,14663, 7332, 7346, 7358, 0,14677, 7346,34016, 1875, 4398, 7372, 4315, 4381,34016,34016, 0,14684, 1576,34016, 34016,34016,34016,14683,14679, 1838,14678, 1902, 0, 4235, 0, 4244,14661,34016,34016, 0,14677,34016, 2266,14676, 14677,14674,14673, 0, 7378, 0, 4285,14655,34016,34016, 2016,14603,14602, 4407, 4377,14657, 4497, 7382, 0,14656, 4378, 4930,14655, 5947, 7386, 7392,14654,14653, 4401,14652, 6020, 7375,34016,34016,34016, 0, 3038, 4501, 2009,14591, 2937,14602, 2078, 7203,14593, 885,14604,14583,14596,14591, 775,14571,14581, 2849, 7401,14636,14630,34016,14546, 4758, 6320, 2257,34016,34016, 5122, 3311, 3018, 3197, 2254, 1859, 14500,14483, 5961, 3284,14486, 7408,34016, 7422, 7456,34016, 7427,34016, 7463, 7467, 5759, 3488, 4952,14466,14466, 504, 14465,14470,14468,14470,14461, 7468, 4410, 6462,14459, 5526, 7472,14510,14465,14457, 7482,14507,34016, 7491,14499,34016, 7501, 7505, 7517, 0, 7531,34016,14518, 0, 0, 7537, 34016,14517, 0, 0, 5089, 5189,14460, 7541,14495, 7545, 7549, 7553, 0, 6941, 4457,14449,14448, 4543, 3949,14448, 14443,14448,34016,14503, 0, 3046,14451, 7558,34016, 7562, 7577,14494, 7526, 7608,34016, 7613, 7617, 7575, 7621,14435, 3901, 3937,14428, 2041,14449,14444, 4365,14443,14446, 6451, 34016,14484,34016,14437,14483, 0, 2370, 0, 0, 0, 0,14498,34016, 2996,14497,14498,14495,14494,34016,34016, 34016,34016,14421,14424, 5533,14479,34016,14478,34016,34016, 34016,34016, 6040,14477, 7625, 7641,34016,34016, 6443, 3142, 14428, 3224, 6625, 3198,14483, 0, 0,14486,34016, 3193, 14485,14480,14477,14476,14471, 0, 0,14470, 0, 0, 7655, 7663,14449, 7676, 7667,14426, 7702, 7706, 7710, 0, 7714,34016,34016,34016, 7718,34016,34016, 7732, 7736, 7748, 7752, 7757,14397,14396,14393, 0, 6759, 0,34016,34016, 14378,14377,34016, 5827, 5394,14370, 2118,14387,14373,14366, 14360, 7771, 7775, 7779, 7787, 7791, 7790, 0, 0, 0, 14423, 3335, 7861, 0, 7904,34016,14422, 7803,14422, 7930, 34016, 7803, 5027, 7871, 3994, 4226, 7935, 7802, 4335, 5722, 4477, 7843, 5367, 7968, 4595, 4771,34016, 7833, 7837, 7860, 4958, 7866,14362, 2757, 7894,14379,14374, 4972,14370,14364, 14371,14374,14346,14416, 8038, 1554, 8117, 8196,14410, 8009, 8017, 8029, 7087, 8021, 5479, 5872, 3003, 8064, 5978, 2799, 6992, 3308, 3437, 2923, 3276, 8275, 4010, 3371,14421,14420, 0, 8070,14399, 8101, 8105, 7850, 0,34016,34016,34016, 14354,14353, 0, 7940, 0, 0, 0, 0, 7983, 0, 0, 0, 0, 8110, 0, 0, 0, 0, 7949, 0, 8114, 8149,14360,14359,34016,34016, 4821,14350,14349, 0, 0,14348, 0,14411, 0, 0,14410, 0, 0, 4884, 4905, 0, 0, 0, 0, 0, 2247, 0, 0, 0, 0, 0, 8154, 0, 0, 0, 0, 8159, 0, 0, 0, 0, 8164, 0, 0, 0, 0, 8175, 0, 0, 0,14349,14347,14343, 7898, 8074, 8180, 8187, 8191, 8196, 8223, 8227, 8231, 8235,14386, 8239, 8243, 8251, 8255, 4337, 14409,34016, 4222,14408,14409,14406,14405,14404, 1301,14335, 14398, 0, 0, 0, 4656, 0, 0, 0, 4476,34016, 5810, 4651,14403, 4658, 4978, 0,14400,34016, 4751,14399, 14400,14396,14395, 0, 5028, 4414,14390, 0, 8253, 0, 8255,14389, 0, 0,14318,14321, 0,14379,34016, 6311, 14377,14378,14375, 8301,34016,14350, 0, 6549, 0, 0, 0,34016, 0, 8309, 0,14362, 8252, 0, 8333, 0, 8315, 8347, 152,14364, 7292,14352, 6659,14314, 0, 2328, 3458,14341, 8352, 8360, 8364, 8368, 8372, 8378, 8388, 8404, 8408, 0,14342, 8414,14289,14290,14297,14288,34016,14352, 14351, 8402, 3494, 3545, 4233, 4711,14303,14282,14282, 3257, 14296,14287, 4517,14296,14290, 4492,14281,14286,14277,14287, 8430, 8438, 8444,14323,34016, 0, 6650,34016,14334, 8448, 8452, 8456,34016, 8464, 8480, 8484, 8492, 8497, 8501, 8512, 8540, 8549, 8553, 8559, 8568, 8587, 8596, 8600, 8604, 8608, 8637, 8644, 8648, 8653, 8657, 8533, 8686, 8690,14319,14318, 14317, 4710, 8694,14268,14267,14270,14282, 8698,34016,34016, 14328,14327, 8700, 8702,34016, 8724, 0,14275, 8728, 8732, 8738, 0, 8742, 8746, 8758, 0,34016,14325,14324, 8753, 0, 6793,14320, 4761, 4812,14330,14329, 4552,14270,14269, 6728,14315, 6350,14314, 6469,14259, 4961, 5132,14256,14267, 14266, 5122,14252, 6025,14260,14260,14259,14252,14259,14255, 14242, 4769,14245,34016,34016,14234, 4941, 1687,14234,14225, 14229,14235,14162,14145,14141,14065,14054,14059,13978,13965, 6740, 6897,13962,13891,13899,13888,13875, 4793,13888, 2791, 5117, 3366,34016,13883,13873,13869,13868,13871,13879,13875, 3201, 4910,13862,34016, 8777, 8781, 8785, 0,34016,34016, 13863, 8789, 8793, 8797, 0, 5446,13861,13864,13875, 6330, 8808, 8822, 8827, 8833,13856,13865,13866,13853,13856,13867, 13868, 4140,13850,13847,34016,13860,13849,13845,13844,13841, 13849,13837, 8841,34016,34016, 8847,13897, 5456,13846,13847, 13847, 5805,34016,34016,34016, 8853, 8869, 8882, 8895, 8908, 8864, 0,13848,13846,13835,13812,13810,13799,13789,13796, 13792,13825,13781,13779,13775, 8912, 8916, 8915,13801, 8935, 13786, 6928, 7157, 9006, 9049, 0, 9100,13780, 6447, 8050, 8357, 8927, 5809, 5808, 8908, 6597, 5929, 5902, 5985, 8284, 8902, 8940, 5992, 6016, 7016,34016, 6388, 7044, 6412, 6455, 7412, 6508, 7484, 7496, 7569, 6314, 7908, 7944, 8039, 6533, 8143, 8397,34016, 6615, 6661, 8518, 6327, 6667, 8563, 8613, 34016, 6733, 6747, 6334, 6851, 6752, 8816, 8924, 8962, 8964, 6439, 8980,13733,13733,13728,13715, 9003,13720, 9007,13722, 13704,13706,13696, 9032,13704,13703,13687,13697, 5476, 9037, 13678,13681,13666, 4437, 9041, 5347,13661,13652,13649,13650, 13626,13685,34016, 9171, 1394, 6896, 3371, 5485, 5758, 4398, 4012, 4713, 5737, 5046, 6403, 4879, 2937, 4959, 6607, 5914, 3133, 6248, 6769, 5775, 6625, 5486, 3046, 7277, 9047, 6782, 4365, 5770, 6807, 6463, 6657, 9250, 9329, 5485, 9051, 9055, 9081, 0,13633,13627, 6852,13625,13619,13609,34016,34016, 6948, 7063,13597,13597,13586, 9085, 9090, 9094,34016, 6968, 5885, 4835,13600,34016, 7075, 7115,34016,34016,13585,13557, 34016,34016,13620,13617, 9079,13597,34016,34016, 7511,34016, 34016, 9126, 0, 9130,13567,13492,13475,13463,34016,34016, 9124,13439,13426,13378,13376,13382,13351,13335,13312,13318, 13215,13204,13211,13201,13194,13183,13197,13187,13174, 71, 9136,34016, 477,34016, 6264, 9155, 9172, 9176, 9212, 9205, 9217, 9221, 9233, 9296, 9291, 9285, 9300, 9336, 9366, 9371, 9376, 9387, 9405,34016,34016, 798, 975, 965, 1006,34016, 34016, 9140, 1194,34016,34016, 9309, 6910, 1318, 7301, 1322, 1401, 1542, 1592, 8992, 1645,34016, 1643, 1664, 1728, 1755, 1767, 2018, 7340, 2149, 2295, 2779, 2836, 6079, 2858, 3065, 3176, 3217, 3350, 3426, 3457, 3462, 3475, 3857, 3878, 3977, 4010, 4126, 4194, 4217, 4228, 4275, 4388, 4423, 4464, 4555, 5876, 4566, 4674, 4699,34016, 4756, 4808, 4858, 4921, 4925, 9075,34016, 4947, 5024, 5087, 5344, 5397, 5409, 5420, 5456, 5470, 6238, 5467, 5476, 5693, 5708, 5738, 5894, 7297, 5905, 5912, 5943, 7027, 9251, 9434, 5960, 5983, 5991, 6197, 6229, 6232, 6280, 6303, 6282, 6289, 6327, 9164, 6407,34016, 9476, 9555,34016, 9228,34016, 9279,34016, 7310, 7307, 7346, 9341, 7370, 9355, 9394, 9399, 7064, 9415, 9417, 9419, 7422, 9438, 34016, 9439, 7442, 9449, 9460,34016, 7454, 7536, 7079, 7698, 7536, 9462, 9473, 9474, 9480, 7158, 6445, 9485, 6494, 9504, 34016, 7194, 7540, 9505,34016, 9510, 9512,34016, 9516,34016, 9517,34016, 7700, 9518,34016, 9522,34016, 9523,34016, 7770, 9524,34016, 6467, 9528, 9529, 7200, 9535,34016, 7785, 7372, 9556,34016, 6484, 9562, 9567, 7788, 7820, 9581, 9583, 7847, 9587,34016, 9589,34016, 9594,34016, 9595,34016, 9599, 6480, 6489, 9424, 6542, 9469, 6546, 6576, 6571, 6586, 6648, 6608, 6624, 6629, 6681, 6737, 6748, 7069, 7602, 6756, 6763, 6825, 9603, 6765, 6775, 6814, 6847, 6956, 6879,34016, 9634, 7572, 6944, 6985, 9619, 7079, 9629, 7089, 7215, 7051, 7057, 7628, 7175, 7385, 7622, 7346, 7238, 7705, 7401, 6945, 7425, 7460, 7512, 7589, 8023, 8325, 7506, 7791, 7655, 7707, 7782, 7709, 7511, 7728, 7887, 8074, 7677, 9608, 9713, 9792, 6899, 6905, 7875, 6924, 6992, 7047, 9641, 9663, 7122, 7114, 7131, 8047, 7136, 0, 8046, 7224, 7227,34016,34016, 9651, 7233, 7338, 7339, 7348,34016, 7407,34016,34016, 7380, 9675, 7405, 7426, 7437, 7468, 7483, 7535, 7535, 7595, 7604, 7608, 7615, 7967, 7621, 7615, 7659, 9680, 8114, 9684, 9695, 9714, 9746, 9757, 9762, 9750, 9793, 9799, 9827, 9832, 9836, 9840, 9869, 9877, 9882, 9887, 9916, 9920, 9699, 7667, 9929, 7697,34016, 7753, 7714,34016, 7785, 0, 8264,34016, 9608, 7727, 7737, 7757, 9725,34016, 7780, 7790, 7785, 7795, 7830, 7829, 0, 8080, 7859, 7886, 8205, 7882, 8206, 7884, 7920, 7942, 7939, 7959, 7968, 8263, 7962, 7970, 7988, 7991, 8018, 8031, 8028, 8057, 8074, 8108, 8097, 8116, 8127, 8147, 8136, 8182, 8184, 8194, 8196, 8195, 8383, 8520, 8213, 8250, 9776, 8218, 8228, 8245, 8240, 8261, 8254, 8267, 8273, 8283, 8301, 8301, 8319, 8328, 8327, 8334, 8325, 8367, 8344, 8355, 8373, 8394, 9933, 9948, 8376, 8381, 8385, 8409, 8393, 8411, 8446, 8401, 8449, 8450, 8415, 9968, 8459, 9844, 8461, 9898, 8464, 8516, 8511, 9908, 34016, 9975, 9980,34016, 9981,34016, 9982,34016, 8573, 9994, 34016, 9995,34016, 9996,34016, 8592, 8467,10000,10002,34016, 8631,10012,34016, 8477,10013,10014, 8640, 8641,10018,10019, 8695,10027,34016,10032,34016,10033,34016,10034,34016,10046, 10050, 8479,10051, 8770,10055, 8481,10057,10064,34016, 8496, 10065, 8498,10066, 8500,10070,10071, 8501,10078, 8546,10082, 8550,10087,10088, 8552,10089,10098,34016, 8784, 8553,10102, 10103, 8774, 8554,10109,10110,34016, 8810, 8817,10119,34016, 10120,34016, 8839, 8556,10121, 8565,10125, 8589,10126, 8590, 10130,10134,34016, 8553, 8560, 9959, 8562, 9963,10140,10144, 10164, 8573, 8571, 8595, 8601, 8597, 8599, 8609, 8596, 8600, 8597,10168,10172, 8680, 8640, 8639, 8648, 8643, 8661, 8685, 10176, 8673, 8685, 8699, 8689, 8690,10238, 8748, 8798, 8915, 8882,10180,10325, 8784,10184,10188, 8751, 8862, 8908, 8914, 8931, 8905, 8995, 9095, 8955, 8928, 9000, 9001, 9125, 8863, 10192,10210, 9136, 9183, 9096, 9131, 9042, 9192, 9124, 8949, 10214, 8968, 9210, 9364, 9151, 9194, 0,10212,10216,10404, 10483, 8691, 8712,10196, 8700, 8733, 8739,10236,10271,10277, 10282,10288, 8740, 8770, 9182, 8814, 0, 8872, 9742,34016, 8939, 8950, 8970,34016, 9040,10301,10306, 9039, 9079, 9090, 9125, 9155, 9163, 9181, 9186, 9183, 9203, 9188, 9222, 9232, 10310, 9248, 9246,10314,10318,10346,10356,10360,10374,10389, 10435,10440,10444,10451,10484,10490,10519,10523,10527,10532, 10560,10364,10393,10540,34016, 9242, 9254, 0,10203,34016, 9253, 9254, 9242, 9288,10221, 0, 9263, 9262, 9251,34016, 9461,34016, 9256, 9260, 9537, 9293, 9704, 9286, 9313, 9307, 9309, 9315, 9322, 9710, 9343, 9334, 9349, 9723, 9336, 9343, 9778, 9368, 9417, 9378, 9384, 9396, 9406, 9419, 9437, 9441, 9785, 9853,34016, 9469, 9469,10479, 9485, 9473, 9473, 9481, 9485, 9488, 9493, 9499,34016,34016, 9513, 9559, 9532, 9530, 9542, 9599, 9534, 9540, 9554, 9591, 9565, 9566,34016, 9570, 34016,34016, 9621,10573,10265, 9633,10369, 9620,10403,10430, 34016, 9638,10553, 9650,10570, 9660,10571,10572, 9661,10577, 9677,10583, 9679,10602,10604, 9683,10608, 9701, 9692,10610, 10614,34016, 9784, 9812,10615,34016,10616,34016, 9831, 9715, 10620, 9726,10621, 9727,10622, 9732,10626,10632,34016,10638, 34016, 9758,10653,34016, 9739,10659,10660,34016,10665,34016, 9743,10666,10670,10671,34016, 9841, 9745,10672,10676,10098, 9751,10677, 9757,10678,10683, 9761,10684, 9731, 9719, 9772, 10690,10708,10714,10718, 9791, 9791, 9802, 9806, 9816, 9824, 9903, 9837, 9836, 9840,10722,34016,10726, 9852, 9849, 9856, 9861, 9872,10730, 9879,10734,10738, 9871, 9907, 9916, 9932, 10803,10023,10003,10079,10042, 0,10890,10977,10087,10011, 10097,10028,10140,10091,10145,10723,10202,10135,10206,10402, 10185,10281,10181,10748,10187,10236,10752,10211,10380,10394, 10223,10230,10756,10760,10309,10395,10369,10478,10758,10761, 11056,11135,11214,11293, 9938, 9932,10768,34016, 9948, 9966, 9969,10793,34016,10799,34016,10831, 9979,10835,10157,10004, 10470,10782,10841,34016,10092,34016,10846,10850,10866,10150, 10870,10169,10174,10194,10879,10270,10883,10908,10306,10302, 10912,10312,34016,10921,10927,10932,10936,10996,11008,11024, 11013,10968,11017,11063,11091,11095,11100,11104,11111,11142, 11045,34016,10321,10329,10371,10784,10354,10356,10386,34016, 10380,10395,10463,10472,10381,10398,10416,10412,10439,10455, 10453,10566,10474,10479,10504,10789,10476,10803,10480,10840, 10484,10498,10494,10507,10525,10514,10533,10530,10548,10964, 10571,10565,10565,10583,10568,10577,10584,34016,10580,10583, 10579,10629,10606,10627,10670,34016,10671,10672,10633,34016, 11172,11054,34016,10734,11121,34016,10674,11134,11170,34016, 11171,34016,10757,10675,11176,11181,10792,10737,11182,10741, 11187,11198,10743,11212,10745,11214,11218,10752,11222,10776, 11223,10782,11246,11250,34016,10789,11254,10881,11255,34016, 11259,11260,34016,10778,10851,11264,10799,10800,10813,10809, 10812,10811,10941,10830,10849,10862,11268,10872,11290,11294, 11300,10873,10878,11319,11324,11328,10884,10891,10886,10893, 11372,10961,11026,10983,11333,11459,11546,11024,11337,10995, 11109,11054,10984,11052,11322,11092,11355,11113,11116,11011, 11106,11082,11118,34016,11359,11364,11398,11171,11192,11402, 11207,11149,11212,11185,11625,11704,11406,11783,10897,11862, 11941,10893,10901,11005,11277,10975,10976,10973,10984,11406, 11146,11050,11382,11422,11430,11475,11059,11479,11500,11069, 11504,11073,11508,11087,11515,11519,11097,11535,11523,11527, 11565,11142,11577,11174,11590,11595,11583,11602,11611,11659, 11623,11663,11667,11671,11679,11711,11739,11744,11632,11152, 0,34016,11177,11194,11282,11203,11200,11305,11348,11219, 11219,11226,11370,11273,11292,11371,11384,11285,11299,11308, 34016,11411,11312,11413,11418,11305,11350,34016,11360,34016, 11427,11432,11369,34016,11380,11383,34016,34016,34016,11385, 11754,11426,11702,11732,11444,11751,11454,11752,11462,11753, 11518,11783,34016,11790,11792,34016,11814,34016,11464,11815, 11540,11502,11820,11822,34016,11503,11824,11455, 0,11697, 11464,11480, 0, 0,11499,11490,11828,11520,11527,34016, 11832,11839,11603,11548,11548,11551,11845,11854,12020,11604, 11676,11799,34016,11602,11620,12107,12194,11637,11674,34016, 11636,11623,11888,11641,11700,11635,11658,11713,11809,11742, 11731,11893,11897,12273,12352,11651,12431,12518,11615,11610, 12605, 0,34016,11688,11795,11693,11901,11909,11858, 0, 34016,11696,11701,11942,11862,11696,11708,11714,11948,11934, 11974,11938,11978,11845,11982,11986,11990,12002,12052,12056, 11998,12060,11762,11740,11761,12064,12017,12021,11798,11869, 11871,11804,11903,11908,11816,34016,11913,11841,11953,11969, 0,11838,12012,34016,12073,12068,12046,11854,11848,11918, 34016,12075,11857,11879,11893,11944,12152,12098,34016,11965, 11965,12099,12100,34016,11967,12138,11979,12139,12140,11981, 12149,12144,12027,11969,11971,34016,34016,11982, 0,12153, 12179,11989, 0,12183, 0,11994,12213,12228,12684,12237, 12241,12250,12263,12268,12304,12208,12308,12295,12314,12333, 12337,12771,12378,12384,12405,12409,12858,12413,12937,13016, 12071,13103,12139,13190,13277,13364,13451,13538, 0,12002, 12019,12020, 0,34016,12272,12091,12018,12094, 0, 0, 12359,12388,12026,12418,12055,12431,12438,12134,12457,12468, 12624,12636,12472,12644,12640,34016,12077,12476, 0,12232, 12256, 0,12257,12283,12299,12319,34016,12329,34016,12097, 12090,12100,12105,34016,12720,12158,12364,12394,12159,12396, 12400,34016,34016,34016,12216,12158,12174,34016,34016, 0, 12244,12485,34016,12186,13617,12271,12335,12283,12407,12348, 12265,12238,12637,13704,12410,12244,12639,12445,13783,13862, 12269,13949,12330,12307,12469,14036,14123,12261,12276,12498, 12443,12282, 0,12509,12672,12273,12721,12676,12284,12279, 12680,34016,12351,12732,12715,12807,12791,34016, 0,12503, 34016,12504,12650,12694,12334,12360,12816,12727,34016,12406, 12802,12747,12385,34016,34016,12462,12404,14210,12653,12611, 12811,12631,12473,12669,12463,12825,12890,12635,14289,14368, 12479,34016, 0,12726, 0,34016,12484,34016,12491,12657, 12433,12447,12684,12451,12555,12596,12894,12901,12920,12963, 12914,12755,14455, 0,12701,12684,12817,12763,12929,12933, 12708,12714,12861,12744,12968,12863,12750,34016,12972,12760, 12837,14542,12717,34016,12838, 0,12673,14629, 0,12976, 12685,12980,12996,13017,13006,13023,13010, 0,34016,13051, 34016,12831,12920,12802,12834,14716,12889,12750,12833,34016, 0,12822,34016,34016,13055,13059,12755,13063,13067,12835, 12935,13071,12927,14803,14890,12834,14977,15064,12836,12798, 12925,12864,12992,34016,13208,13212,13221,12976,13076,34016, 13081,15150,15237,13026,12854,13016,13225,13229,13251,13030, 34016,34016, 0,15324, 0,12927,13018,12931,12892,13005, 13011,12917,13180,13003,12970,13193,13188,13019,13195,13029, 0,13382,13043,13181,13032,34016,13045,13354,13109,13177, 13355,13160,13367,13166, 0,13167,13231,34016,15410,15439, 15468,15497,15526,15555,15584,15613,15642,15671,15700,15729, 15758,15787,15816,15845,15874,15903,15932,15961,15990,16019, 16048,16077,16106,16135,16164,16193,16222,16251,16280,16309, 16338,16367,16396,16425,16454,16483,16512,16541,16570,16599, 16628,16657,16686,16715,16744,16773,16802,16831,16860,16889, 16918,16947,16976,17005,17034,17063,17092,17121,17150,17179, 17208,17237,17266,17295,17324,17353,17382,17411,17440,17469, 17498,17527,17556,17585,17614,17643,17672,17701,17730,17759, 17788,13241,17816,17841,13242,17866,17894,17920,17946,13378, 17974,17999,18024,18049,13248,18075,18104,18133,18162,18190, 18215,18240,18265,18291,18320,18349,18378,18407,18436,18465, 18494,13381,18523,18552,18581,13384,18610,18639,18667,18692, 18717,18743,18761,18787,18805,18830,18855,13399,13392,13409, 18881,18910,13412,18939,18968,18997,19026,19055,19073,19099, 19128,19157,19175,19201,19219,19244,19269,19294,19319,13419, 19345,19374,13401,13632,19392,19407,19428,19452,19481,19497, 19522,19547,19573,19602,19631,19660,19689,19718,19747,19776, 19800,19821,19847,19865,19891,19909,19924,19945,19974,20003, 13422,20032,20061,20090,20119,20148,20177,20206,20235,20264, 20293,20321,20346,20372,20401,20430,20448,20474,20503,20532, 20561,13630,20590,20619,20635,20661,20685,20709,20727,20753, 20771,13631,20797,20826,20855,20884,20913,20942,20971,21000, 21029,21058,21087,21116,13633,13651,21144,21172,21197,21222, 13644,21247,21275,21300,21325,21351,21377,21405,21430,21458, 21483,21508,21533,21561,21586,21611,13645,21637,21666,21695, 21724,21753,21781,21809,21834,13658,21859,21887,21912,13659, 21938,21967,21996,22025,22054,22083,22112,22141,22170,13661, 22199,22228,22257,22286,13669,22315,22344,22372,22397,22425, 22450,13672,22476,22494,22520,22538,22563,22591,22616,13675, 13721,13722,13737,22642,22671,13723,22700,22729,22758,22787, 22816,22845,22873,22899,22917,22943,22972,23001,23019,23045, 23063,23088,23113,23138,23166,23191,13724,23216,13747,13749, 23242,23271,23295,13225,13389,13762,23313,23328,23343,13368, 23358,23373,23401,23422,23446,23475,23491,23516,23544,23569, 13755,23595,23624,23653,23682,23711,23740,23769,23798,23822, 23843,23869,23887,23913,23931,23946,23967,23996,24025,13761, 24054,24083,24112,24141,24170,24199,24228,24257,24286,24315, 24344,24372,24400,24425,13796,24451,24480,24509,24527,24553, 24582,24611,24640,13795,24669,24698,24714,24740,24764,24788, 24806,24832,24850,13797,24876,24905,24934,24963,24992,25021, 25050,25079,25108,13798,25136,25164,25189,25214,25239,25267, 25292,13808,25317,25342,25368,25397,25425,25453,25478,25503, 25528,25556,25581,25606,25632,25660,25688,25713,13809,25738, 25766,25791,13810,25817,25846,25875,25904,25932,25960,25985, 13811,26010,26038,26063,13821,26089,26118,26146,26171,26196, 26224,26249,13822,13824,26275,26299,13832,26317,26332,13390, 26353,26382,26411,26440,26468,26483,26501,26522,26550,26578, 26603,13834,26629,26657,26685,26710,13851,26736,26752,26777, 13840,26805,26830,26855,26881,26910,26939,26967,26992,27018, 13411,27042,27071,27100,27129,27158,27187,27216,27245,27274, 27303,27332,27361,27390,27419,27448,27477,27506,27535,27564, 27593,27622,27651,27680,27704,27722,27743,27767,27796,27825, 27841,27866,27891,27917,27946,27975,28004,28033,28062,28090, 28116,28140,28169,28198,28227,28256,28285,28314,28343,28372, 28401,28430,28459,28488,28517,28546,28575,28604,28633,28662, 28691,28720,28749,28778,28807,28836,28865,28894,28923,28952, 28981,29010,29039,29068,29097,29126,29155,29184,29213,29242, 29266,29284,29310,29334,29358,29382,29406,29430,29459,29488, 29504,29529,29555,29584,29613,29642,29671,29700,29724,29753, 29782,29811,29840,29869,29898,29927,29956,29985,30014,30043, 30072,30101,30130,30159,30188,30217,30246,30275,30304,30333, 30362,30391,30420,30449,30478,30507,30536,30565,30589,30607, 30633,30662,30691,30715,30739,30763,30787,30816,30845,30874, 30902,30928,30957,30986,31010,31039,31068,31097,31126,31155, 31184,31213,31242,31271,31300,31329,31358,31387,31416,31445, 31474,31503,31527,31545,31571,31595,31619,31643,31667,31691, 31720,31749,31778,31806,31831,31857,31886,31915,31939,31968, 31997,32026,32055,32084,32113,32142,32171,32200,32229,32258, 13391,32287,32316,32340,32358,32379,32403,32427,32456,32485, 32514,32542,13677,13852,32567,32593,32622,32651,32675,32704, 32733,32762,32791,32820,32849,13877,32878,13606,32907,32931, 32959,32974,32995,33019,33048,33076,33102,33131,33160,13729, 13874,13875,33188,33214,33243,33272,33301,33325,33354,33383, 33412,13890,33441,13901,33465,33483,33498,33519,33543,33571, 33596,33622,13888,33650,33676,33705,33729,33758,33787,33815, 33841,33870,33899,33928,33957,33986 } ; static yyconst short int yy_def[4677] = { 0, 3919, 3919, 3918, 3, 3920, 3920, 3921, 3921, 3919, 3919, 3918, 11, 3918, 13, 3922, 3922, 3918, 17, 3923, 3923, 3919, 3919, 3918, 23, 3918, 25, 3918, 27, 3919, 3919, 3919, 3919, 3924, 3924, 3925, 3925, 3924, 3924, 3926, 3926, 3927, 3927, 3928, 3928, 3919, 3919, 3918, 47, 3918, 49, 3929, 3929, 3929, 3929, 3919, 3919, 3930, 3930, 3931, 3931, 3932, 3932, 3919, 3919, 3933, 3933, 3934, 3934, 3919, 3919, 3919, 3919, 3935, 3935, 3936, 3936, 3919, 3919, 3919, 3919, 3918, 81, 3937, 3937, 3938, 3938, 3939, 3939, 3940, 3940, 3941, 3941, 3941, 3941, 3918, 95, 3942, 3942, 3943, 3943, 3944, 3944, 3918, 103, 3944, 3944, 3919, 3919, 3945, 3945, 3918, 111, 3918, 113, 3946, 3946, 3947, 3947, 3948, 3948, 3918, 121, 3949, 3949, 3918, 125, 3950, 3950, 3951, 3951, 3952, 3952, 3953, 3953, 3954, 3954, 3955, 3955, 3956, 3956, 3957, 3957, 3958, 3958, 3919, 3919, 136, 136, 3959, 3959, 3919, 3919, 3918, 153, 3918, 155, 3919, 3919, 3960, 3960, 3961, 3961, 3962, 3962, 3918, 165, 3919, 3919, 3963, 3963, 3964, 3964, 3918, 173, 3965, 3965, 3918, 177, 3966, 3966, 3966, 3966, 3967, 3967, 3968, 3968, 3969, 3969, 3970, 3970, 3919, 3919, 3971, 3971, 3972, 3972, 3973, 3973, 3974, 3974, 3975, 3975, 3919, 3919, 3919, 3919, 3976, 3976, 3977, 3977, 3978, 3978, 3918, 213, 3979, 3979, 3980, 3980, 3981, 3981, 3982, 3982, 3983, 3983, 3984, 3984, 3918, 227, 3985, 3985, 3986, 3986, 3987, 3987, 3919, 3919, 3988, 3988, 3919, 3919, 3918, 241, 3989, 3989, 3918, 245, 3990, 3990, 3991, 3991, 3919, 3919, 3918, 253, 3992, 3992, 3919, 3919, 3993, 3993, 3994, 3994, 3995, 3995, 3996, 3996, 3997, 3997, 3996, 3996, 3998, 3998, 3999, 3999, 4000, 4000, 4000, 4000, 3918, 279, 3918, 3918, 4001, 3918, 3918, 3918, 4002, 3918, 4001, 3918, 3918, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4003, 3918, 4004, 3918, 3918, 3918, 3918, 3918, 4005, 3918, 4001, 3918, 3918, 3918, 4006, 4007, 4007, 4007, 3918, 3918, 3918, 4008, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4009, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4010, 3918, 3918, 3918, 3918, 3918, 3918, 4011, 3918, 4011, 4011, 4011, 4011, 4011, 4011, 4011, 4011, 4011, 4011, 3918, 4012, 3918, 3918, 3918, 3918, 4013, 4014, 3918, 3918, 3918, 3918, 3918, 3918, 4015, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 4016, 4017, 4016, 3918, 3918, 4018, 4019, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4020, 4021, 3918, 3918, 3918, 3918, 4022, 4023, 3918, 4001, 3918, 3918, 3918, 4024, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 4025, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 4026, 4027, 4026, 4026, 3918, 4026, 4028, 4029, 3918, 4028, 4028, 3918, 3918, 3918, 3918, 4030, 4031, 3918, 3918, 4030, 3918, 3918, 4030, 4030, 3918, 3918, 3918, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4032, 4033, 4034, 4033, 3918, 4033, 4035, 4033, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 4036, 3918, 3918, 543, 3918, 4037, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 557, 3918, 3918, 3918, 4038, 3918, 3918, 4001, 4039, 3918, 3918, 3918, 3918, 4039, 3918, 3918, 3918, 4039, 4037, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4040, 4041, 3918, 3918, 3918, 4042, 4043, 4043, 3918, 3918, 3918, 4044, 4045, 4045, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4046, 4047, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4001, 3918, 3918, 3918, 4048, 4049, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4037, 3918, 3918, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 4050, 4051, 4052, 3918, 4051, 4051, 3918, 4053, 4054, 4055, 3918, 4054, 4054, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4056, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4057, 3918, 4001, 3918, 3918, 3918, 3918, 4039, 3918, 3918, 3918, 3918, 4039, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 4058, 4059, 4059, 4060, 4061, 3918, 4060, 4060, 3918, 4062, 4063, 4063, 3918, 3918, 4064, 4065, 4065, 3918, 4066, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 4067, 4068, 3918, 3918, 3918, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4069, 4069, 4069, 4069, 3918, 3918, 3918, 4070, 3918, 3918, 3918, 4071, 4072, 3918, 3918, 4071, 3918, 4071, 3918, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 4073, 3918, 4074, 4075, 4076, 4075, 4075, 3918, 3918, 4077, 4075, 4078, 4077, 809, 809, 4073, 4079, 4080, 3918, 3918, 3918, 3918, 4081, 4082, 3918, 4001, 3918, 3918, 3918, 3918, 3918, 3918, 4083, 4084, 3918, 4083, 4085, 4086, 4085, 4087, 4088, 4087, 4089, 4090, 4089, 3918, 4089, 3918, 3918, 4089, 3918, 4091, 4091, 3918, 3918, 4001, 3918, 3918, 3918, 3918, 4092, 4093, 4094, 4094, 4095, 4096, 4096, 3918, 3918, 3918, 4097, 4097, 4098, 4098, 3918, 4099, 4100, 4099, 4099, 4099, 3918, 3918, 4101, 4102, 4103, 4102, 4104, 4105, 4104, 4106, 4107, 4106, 4108, 4109, 4108, 3918, 4001, 3918, 3918, 3918, 3918, 4110, 4111, 4110, 3918, 4110, 4110, 3918, 3918, 3918, 3918, 4112, 4113, 4114, 4115, 3918, 4114, 4114, 4114, 4114, 3918, 4116, 4117, 4117, 4118, 4119, 4118, 4118, 4120, 4121, 4120, 4120, 3918, 4122, 4123, 4124, 3918, 4123, 4123, 3918, 4125, 4125, 4125, 4126, 4127, 4128, 4128, 4129, 4130, 4131, 4131, 3918, 3918, 3918, 4132, 4133, 4134, 3918, 4133, 3918, 4133, 3918, 4135, 3918, 3918, 3918, 3918, 4136, 4137, 3918, 4136, 3918, 3918, 4136, 4138, 4139, 4140, 4139, 3918, 4141, 3918, 3918, 3918, 4135, 3918, 3918, 3918, 4142, 4143, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4135, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4135, 3918, 3918, 3918, 3918, 4135, 3918, 3918, 3918, 3918, 4144, 3918, 3918, 4145, 4135, 3918, 3918, 3918, 3918, 4146, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4147, 3918, 4148, 3918, 3918, 4149, 4150, 3918, 4151, 4152, 3918, 4153, 4154, 4155, 4155, 4156, 3918, 4155, 3918, 4156, 3918, 3918, 3918, 3918, 3918, 3918, 4157, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4158, 3918, 3918, 4159, 3918, 4160, 3918, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4160, 4161, 4162, 3918, 3918, 4163, 3918, 4164, 3918, 4165, 4166, 3918, 3918, 4167, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4168, 4169, 4168, 4168, 3918, 4170, 3918, 3918, 4171, 3918, 4172, 3918, 3918, 3918, 4173, 4174, 4175, 4176, 3918, 3918, 4177, 4178, 4179, 4180, 3918, 4181, 3918, 3918, 4182, 3918, 3918, 3918, 3918, 3918, 4182, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4183, 4184, 4183, 4183, 3918, 3918, 3918, 4183, 4185, 3918, 4186, 4185, 4187, 4185, 4185, 4188, 4189, 4188, 3918, 3918, 3918, 3918, 3918, 4188, 3918, 3918, 3918, 3918, 3918, 3918, 4190, 4191, 4192, 4193, 4191, 4194, 4191, 3918, 4192, 4192, 4192, 4191, 3918, 3918, 3918, 3918, 3918, 4195, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4196, 3918, 3918, 4196, 3918, 3918, 1222, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4197, 3918, 3918, 3918, 4197, 4198, 4198, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4198, 4196, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4199, 4200, 4201, 4202, 3918, 3918, 4203, 4204, 4204, 3918, 3918, 4205, 4206, 4206, 3918, 3918, 3918, 3918, 3918, 4207, 4208, 4209, 4210, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4211, 4212, 3918, 3918, 3918, 3918, 3918, 4196, 3918, 3918, 3918, 3918, 3918, 4196, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4213, 4214, 4215, 4214, 4214, 4214, 4216, 4217, 3918, 4218, 4217, 4219, 4217, 4217, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4220, 3918, 4220, 3918, 3918, 3918, 3918, 3918, 4221, 3918, 4222, 3918, 3918, 4223, 3918, 3918, 3918, 4223, 3918, 4224, 4225, 4225, 4226, 3918, 4227, 4226, 4219, 4226, 4226, 4228, 4229, 4229, 4230, 4231, 4231, 3918, 4232, 3918, 4233, 3918, 3918, 4234, 4235, 4236, 4237, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4238, 4238, 4239, 4239, 4240, 4241, 4242, 4241, 3918, 3918, 4241, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4243, 4244, 4245, 4246, 4247, 4248, 4249, 4250, 4251, 3918, 4247, 4252, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4244, 4253, 4254, 4247, 4255, 4254, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4255, 1536, 1536, 4256, 4256, 4257, 3918, 3918, 4258, 4259, 4260, 4261, 3918, 3918, 3918, 3918, 3918, 4262, 4263, 4262, 4262, 4262, 4264, 4265, 4264, 4264, 4264, 4266, 4267, 4266, 4266, 4266, 4268, 4269, 4268, 4268, 3918, 4268, 3918, 3918, 3918, 3918, 4268, 3918, 4270, 4270, 3918, 4271, 4272, 4273, 4273, 4274, 4275, 4275, 3918, 3918, 4276, 4276, 4277, 4277, 4278, 4279, 4278, 4278, 4278, 4280, 4281, 4282, 4281, 4281, 4281, 4283, 4284, 4283, 4283, 4283, 4285, 4286, 4285, 4285, 4285, 4287, 4288, 4287, 4287, 4287, 3918, 3918, 3918, 4289, 4289, 3918, 4290, 4289, 4290, 4291, 4289, 4289, 3918, 3918, 4292, 3918, 4293, 4294, 4295, 4296, 3918, 4297, 4296, 4291, 4296, 4296, 4296, 4296, 3918, 4298, 4299, 4299, 4300, 4301, 4300, 4300, 4300, 4302, 3918, 4303, 4302, 4291, 4302, 4302, 4304, 4305, 3918, 4306, 4305, 4291, 4305, 4305, 4307, 4307, 4307, 4308, 4309, 4310, 4311, 4310, 4312, 4313, 4313, 3918, 3918, 4314, 4315, 3918, 4316, 4315, 4291, 4315, 3918, 3918, 3918, 4317, 4318, 4317, 4317, 4317, 3918, 4319, 4320, 4319, 3918, 4321, 4322, 4323, 4322, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4324, 3918, 3918, 3918, 4325, 4326, 4327, 3918, 4328, 4329, 3918, 4330, 4331, 4332, 3918, 4333, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4334, 3918, 3918, 4335, 3918, 3918, 4336, 4337, 4338, 4339, 3918, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 3918, 4340, 4341, 4342, 4343, 3918, 4344, 3918, 4335, 3918, 4336, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4345, 3918, 4346, 4347, 4348, 4349, 4350, 4351, 4352, 4353, 3918, 3918, 3918, 3918, 4354, 4354, 4354, 3918, 3918, 3918, 3918, 3918, 4355, 3918, 3918, 3918, 4356, 4357, 4356, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4358, 4359, 4360, 4361, 3918, 3918, 3918, 4362, 4363, 4364, 4365, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4366, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4367, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4368, 4369, 4369, 4370, 4371, 4372, 4373, 4374, 3918, 4375, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4376, 3918, 4376, 4377, 4378, 4378, 4379, 4379, 4380, 4381, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4382, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4383, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4384, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4385, 3918, 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, 4387, 4387, 4388, 4388, 2107, 4389, 4390, 4391, 4392, 3918, 3918, 3918, 4393, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4394, 4395, 4396, 3918, 3918, 4397, 4398, 3918, 3918, 4399, 4399, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4400, 4401, 4402, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4403, 3918, 3918, 3918, 3918, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4405, 3918, 3918, 4406, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4407, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4408, 4409, 4410, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4411, 3918, 4412, 4412, 3918, 4413, 3918, 4414, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4415, 3918, 3918, 3918, 3918, 4416, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4417, 4417, 3918, 4418, 3918, 3918, 3918, 4419, 3918, 3918, 4420, 3918, 4421, 3918, 4422, 3918, 3918, 4423, 3918, 4424, 3918, 4425, 3918, 3918, 4426, 3918, 4427, 4427, 3918, 3918, 4428, 3918, 3918, 3918, 4429, 3918, 4430, 4430, 3918, 3918, 3918, 3918, 3918, 3918, 4431, 3918, 4432, 3918, 4433, 3918, 4434, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4435, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4436, 4437, 4438, 4438, 3918, 3918, 3918, 4439, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4440, 3918, 4441, 4441, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4442, 3918, 4443, 3918, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 4443, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4444, 4445, 3918, 3918, 4446, 3918, 3918, 4447, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4448, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4449, 4449, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4450, 4450, 4451, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4452, 4453, 4453, 4454, 4454, 3918, 3918, 3918, 4455, 3918, 3918, 4456, 3918, 4457, 3918, 4458, 3918, 3918, 4459, 3918, 4460, 3918, 4461, 3918, 3918, 4462, 4462, 4463, 3918, 3918, 4464, 3918, 4465, 4465, 3918, 3918, 3918, 3918, 3918, 3918, 4466, 3918, 4467, 3918, 4468, 3918, 4469, 3918, 3918, 3918, 4470, 4470, 3918, 3918, 4471, 4471, 4472, 3918, 4473, 4473, 4474, 4474, 4475, 4475, 3918, 4476, 4476, 4477, 4477, 4478, 4478, 3918, 4479, 4479, 4480, 3918, 3918, 4481, 4481, 3918, 3918, 4482, 4482, 4483, 3918, 3918, 3918, 4484, 3918, 4485, 3918, 3918, 4486, 4486, 4487, 4487, 4488, 4488, 4489, 4489, 4490, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4491, 4492, 4492, 4492, 4492, 4492, 4493, 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, 4492, 4492, 4492, 4492, 4494, 4495, 4496, 4497, 4498, 3918, 3918, 3918, 4499, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4500, 3918, 4501, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 3918, 3918, 4502, 3918, 3918, 3918, 3918, 3918, 3918, 4503, 4504, 3918, 4505, 3918, 3918, 4506, 4506, 4507, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4508, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4509, 3918, 3918, 3918, 4510, 4510, 4511, 3918, 4512, 4512, 4513, 4513, 4514, 4514, 3918, 4515, 4515, 4516, 4516, 4517, 4517, 3918, 4518, 4518, 3918, 4519, 4519, 4520, 3918, 3918, 3918, 4521, 3918, 4522, 3918, 3918, 4523, 4523, 4524, 4524, 4525, 4525, 4526, 4526, 4527, 3918, 4528, 3918, 3918, 4529, 3918, 4530, 4530, 4531, 3918, 4532, 3918, 4533, 4533, 3918, 4534, 3918, 3918, 4535, 4535, 3918, 3918, 4536, 4536, 4537, 4537, 3918, 4538, 4538, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4539, 4540, 4540, 4540, 4540, 4541, 4542, 4543, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 3918, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4544, 4544, 4545, 4545, 4546, 4547, 3918, 3918, 4548, 3918, 4549, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4550, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4551, 3918, 4551, 4551, 4551, 3918, 3918, 4551, 4551, 3918, 3918, 4551, 4551, 4551, 4551, 3918, 3918, 3918, 3918, 4552, 4552, 4553, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4554, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4555, 4556, 3918, 3918, 4557, 3918, 4558, 4558, 4559, 3918, 4560, 3918, 3918, 4561, 4561, 3918, 3918, 4562, 4562, 4563, 4563, 3918, 4564, 4564, 4565, 4565, 3918, 4566, 4566, 4567, 4567, 4568, 4568, 4569, 3918, 4570, 4570, 3918, 4571, 3918, 3918, 4572, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4573, 4574, 4574, 4574, 4574, 4575, 4575, 4574, 4574, 4574, 4574, 4574, 4574, 4574, 3918, 4574, 4574, 4574, 4574, 4574, 4574, 4574, 4574, 3918, 4574, 4574, 4574, 4574, 4574, 4574, 4574, 4574, 4574, 4574, 4576, 4577, 4578, 4577, 3328, 4579, 4580, 3918, 3918, 4581, 4581, 4582, 3918, 3918, 3918, 3918, 4583, 3918, 3918, 3918, 3918, 4584, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4585, 4585, 3918, 3918, 4585, 4585, 3918, 4585, 3918, 3918, 4585, 3918, 4585, 3918, 3918, 3918, 4586, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4587, 3918, 3918, 3918, 4588, 3918, 3918, 3918, 3918, 3918, 4589, 4590, 4590, 3918, 4591, 4591, 4592, 4592, 4593, 4593, 3918, 4594, 3918, 3918, 4595, 3918, 4596, 3918, 4597, 4597, 3918, 4598, 4598, 4599, 3918, 4600, 4600, 3918, 4601, 3918, 3918, 3918, 4602, 4603, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4604, 4605, 4605, 4605, 3918, 4605, 4605, 4605, 4605, 4605, 4605, 3918, 4605, 4605, 4605, 4605, 4605, 4605, 4605, 4605, 4605, 4605, 4605, 4605, 4605, 4606, 4607, 4608, 4607, 3918, 3918, 3918, 4609, 4610, 3918, 3918, 4611, 3918, 3918, 4612, 4613, 4614, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4615, 4615, 3918, 4615, 4615, 4615, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4616, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4617, 3918, 3918, 3918, 4618, 3918, 3918, 4619, 4620, 3918, 3918, 4621, 4621, 4622, 3918, 4623, 4623, 4624, 4624, 3918, 4625, 4625, 3918, 4626, 3918, 3918, 3918, 3918, 3918, 4627, 3918, 3918, 3918, 4628, 3918, 4629, 3918, 3918, 3918, 4630, 4631, 4631, 4631, 4631, 4631, 4631, 4632, 4631, 4632, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4631, 4633, 4634, 4635, 3918, 4636, 4637, 3918, 4637, 3918, 3918, 3625, 3622, 3918, 3918, 4638, 3918, 3918, 4639, 3918, 4640, 4641, 4642, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4643, 3918, 3918, 4643, 4643, 3918, 3918, 3918, 4644, 4645, 3918, 4646, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4647, 3918, 3918, 4648, 4649, 4649, 3918, 4650, 4650, 4651, 3918, 3918, 3918, 4652, 3918, 3918, 3918, 3918, 4653, 4654, 3918, 3918, 3918, 4655, 4656, 4656, 4656, 4656, 4656, 4656, 4656, 4657, 4656, 4656, 4656, 4657, 4656, 4658, 4659, 4660, 3918, 4661, 3918, 4661, 3918, 3918, 3918, 3918, 3918, 4662, 3918, 4663, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 4664, 3918, 4664, 4664, 3918, 4665, 4665, 3918, 3918, 3918, 3918, 4666, 3918, 4667, 4668, 3918, 4651, 4651, 3918, 3918, 3918, 3918, 4654, 3918, 3918, 4656, 4656, 4656, 4656, 4656, 4656, 4656, 4657, 4656, 4656, 4658, 4659, 4660, 3918, 3712, 4669, 3712, 3918, 4670, 3918, 3758, 3758, 3918, 3918, 4662, 3918, 3918, 3918, 3918, 4664, 4664, 3918, 3918, 3918, 4666, 4671, 3712, 4668, 4668, 3918, 3918, 3918, 3758, 3758, 4656, 4656, 4656, 4656, 4656, 3918, 4656, 3769, 3770, 3918, 4670, 3918, 3758, 4672, 3918, 4662, 4673, 3918, 3918, 3918, 3918, 3918, 3918, 4664, 3918, 4666, 3918, 3918, 3918, 4656, 4656, 4656, 4656, 3918, 3770, 3712, 3758, 3918, 4674, 4662, 3918, 3918, 3918, 3918, 3918, 3918, 4664, 4656, 4656, 4656, 4656, 3918, 4675, 3836, 4675, 4676, 3836, 3854, 3770, 3712, 3758, 3918, 3918, 3918, 3918, 4656, 4656, 3918, 4656, 3918, 3918, 3770, 3712, 3758, 3918, 3918, 3918, 4656, 3918, 3918, 3872, 4676, 3872, 3836, 3836, 3770, 3712, 3758, 4656, 3854, 3836, 3872, 3712, 3758, 4656, 3872, 3836, 3712, 3758, 4656, 3872, 3836, 3712, 3918, 3872, 3836, 3712, 3872, 3836, 3872, 3836, 3872, 3836, 3872, 3872, 0, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918 } ; static yyconst short int yy_nxt[34104] = { 0, 3918, 283, 3918, 284, 285, 283, 1035, 284, 285, 1035, 1036, 1036, 1036, 1036, 3918, 1078, 1018, 1018, 1024, 1078, 286, 1019, 1019, 1025, 286, 282, 283, 282, 284, 285, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 282, 282, 282, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 282, 282, 282, 289, 1538, 284, 290, 289, 1517, 284, 290, 294, 295, 296, 297, 295, 291, 298, 1168, 1169, 291, 283, 292, 284, 285, 283, 292, 284, 285, 2513, 299, 294, 295, 296, 297, 295, 1190, 298, 1191, 316, 286, 284, 317, 316, 286, 284, 317, 1175, 1176, 2146, 299, 398, 564, 284, 399, 735, 1018, 283, 318, 284, 285, 1019, 318, 400, 401, 1052, 300, 319, 1052, 320, 402, 319, 1018, 320, 2147, 1053, 286, 1019, 1054, 736, 1081, 1102, 1102, 1102, 1102, 1082, 300, 282, 283, 301, 302, 303, 301, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 304, 305, 282, 282, 282, 282, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 282, 282, 282, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 307, 282, 308, 282, 283, 309, 284, 285, 309, 282, 282, 282, 282, 282, 310, 282, 311, 282, 310, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 312, 310, 313, 310, 282, 282, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 311, 282, 282, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 307, 282, 282, 282, 283, 321, 322, 323, 321, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 324, 282, 282, 286, 282, 282, 282, 282, 282, 282, 325, 305, 326, 282, 282, 282, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 282, 282, 282, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 328, 282, 282, 330, 331, 332, 333, 331, 330, 331, 332, 333, 331, 283, 1076, 284, 285, 1076, 1748, 337, 1038, 1112, 334, 1038, 338, 339, 1113, 334, 1749, 340, 1024, 283, 286, 284, 285, 1025, 1018, 337, 2515, 1018, 341, 1019, 338, 339, 1019, 3918, 283, 340, 284, 285, 286, 283, 375, 376, 377, 375, 1177, 1178, 341, 1864, 283, 375, 376, 377, 375, 286, 1081, 382, 1081, 1228, 383, 1082, 1018, 1082, 1077, 335, 382, 1019, 1142, 383, 335, 336, 398, 1143, 284, 399, 336, 389, 390, 391, 392, 390, 1160, 1166, 400, 401, 342, 1161, 1167, 393, 394, 402, 1030, 395, 1337, 1865, 396, 1110, 1110, 1110, 1110, 1368, 1280, 1016, 342, 282, 283, 343, 344, 345, 343, 282, 282, 346, 282, 282, 347, 282, 348, 282, 347, 282, 349, 282, 282, 350, 282, 282, 282, 282, 282, 282, 351, 352, 353, 354, 282, 282, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 356, 282, 282, 355, 355, 355, 357, 355, 358, 355, 355, 355, 359, 355, 355, 360, 361, 355, 362, 355, 355, 363, 364, 365, 366, 355, 355, 355, 355, 367, 282, 368, 282, 283, 369, 370, 371, 369, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 372, 282, 282, 282, 282, 282, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 282, 282, 282, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 282, 282, 374, 282, 283, 375, 376, 377, 375, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 378, 282, 282, 379, 282, 282, 282, 282, 282, 282, 282, 282, 282, 380, 282, 282, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 282, 282, 282, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 282, 282, 282, 283, 1328, 284, 285, 1328, 1171, 283, 384, 284, 285, 1172, 1875, 385, 384, 1117, 1117, 1117, 1117, 385, 286, 1329, 421, 1876, 284, 422, 286, 386, 387, 1044, 1045, 1045, 1044, 386, 387, 389, 390, 391, 392, 390, 414, 423, 415, 416, 1166, 1018, 2535, 393, 394, 1167, 1019, 395, 417, 414, 396, 415, 416, 1185, 421, 418, 284, 422, 1186, 1337, 481, 417, 482, 483, 419, 1018, 1227, 1280, 418, 1181, 1200, 1016, 424, 423, 425, 1164, 1227, 419, 1164, 484, 386, 1165, 283, 1016, 284, 285, 386, 389, 403, 404, 405, 403, 1227, 427, 428, 429, 430, 428, 1206, 431, 1018, 286, 1227, 1199, 432, 1207, 406, 1047, 424, 436, 425, 1869, 433, 407, 407, 485, 408, 1870, 427, 428, 429, 430, 428, 283, 431, 284, 285, 3918, 1337, 432, 451, 1722, 452, 453, 1018, 1182, 454, 433, 1182, 1019, 1722, 455, 286, 283, 456, 284, 285, 409, 1183, 457, 436, 1255, 437, 1227, 1211, 1027, 1028, 1028, 1027, 1218, 1280, 410, 286, 411, 451, 412, 462, 453, 1336, 1188, 407, 389, 403, 404, 405, 403, 434, 435, 456, 1227, 1029, 1192, 1213, 463, 1016, 451, 1193, 462, 453, 467, 406, 468, 469, 437, 1336, 470, 1214, 407, 407, 456, 408, 434, 435, 471, 463, 2536, 1219, 493, 472, 494, 495, 1220, 2537, 458, 459, 1115, 1115, 1115, 1115, 464, 487, 488, 284, 489, 488, 1197, 496, 465, 1197, 1204, 1116, 409, 1204, 493, 490, 494, 495, 1030, 1198, 491, 464, 1224, 1205, 1249, 473, 410, 1225, 411, 1223, 412, 2538, 1375, 496, 1376, 407, 282, 283, 438, 439, 440, 438, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 441, 282, 282, 282, 282, 282, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 282, 282, 282, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 282, 282, 443, 282, 283, 444, 445, 446, 444, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 447, 282, 282, 282, 282, 282, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 282, 282, 282, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 282, 282, 449, 451, 460, 452, 453, 460, 1382, 454, 461, 2541, 1383, 283, 455, 284, 285, 456, 1472, 1384, 1224, 467, 457, 468, 469, 1250, 1478, 470, 475, 3918, 452, 476, 286, 1018, 475, 471, 452, 476, 1225, 1337, 472, 481, 477, 482, 483, 1642, 3918, 478, 477, 1022, 1022, 1022, 1022, 478, 487, 488, 284, 489, 488, 283, 484, 284, 285, 283, 1018, 284, 285, 1023, 490, 1250, 3918, 1280, 283, 491, 284, 285, 473, 1411, 286, 1412, 1221, 1722, 286, 1221, 499, 500, 458, 459, 2546, 1224, 283, 286, 284, 285, 1225, 1722, 485, 465, 1022, 1022, 1022, 1022, 499, 500, 502, 503, 504, 505, 503, 286, 1222, 479, 579, 2132, 588, 589, 1023, 479, 506, 1022, 1022, 1022, 1022, 507, 2548, 502, 511, 504, 505, 511, 1382, 590, 508, 1035, 1222, 509, 1035, 1023, 283, 512, 284, 285, 497, 498, 513, 1591, 497, 498, 515, 516, 517, 518, 516, 508, 1472, 1598, 509, 286, 1383, 510, 515, 516, 517, 518, 516, 1384, 522, 519, 523, 1249, 283, 1591, 284, 285, 1199, 1656, 520, 1016, 521, 519, 510, 1224, 283, 1016, 284, 285, 1250, 1224, 520, 286, 521, 1224, 1225, 1590, 524, 525, 1297, 2430, 522, 1642, 523, 286, 283, 2549, 284, 285, 1130, 1130, 1130, 1130, 1136, 1137, 1137, 1136, 524, 525, 1646, 1670, 1131, 1671, 1590, 286, 282, 283, 282, 284, 285, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 282, 282, 282, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 282, 282, 282, 528, 529, 530, 531, 529, 1472, 528, 529, 530, 531, 529, 1168, 1169, 2074, 532, 1045, 1045, 1045, 1045, 533, 532, 1137, 1137, 1137, 1137, 533, 534, 535, 536, 537, 538, 536, 534, 534, 534, 534, 534, 534, 534, 534, 534, 539, 534, 534, 534, 534, 540, 549, 550, 551, 552, 550, 2235, 534, 534, 542, 534, 534, 543, 1224, 579, 553, 588, 589, 1019, 554, 555, 1035, 1018, 283, 1035, 626, 285, 1309, 283, 556, 626, 285, 557, 590, 1018, 534, 544, 534, 611, 1314, 612, 613, 286, 672, 1018, 673, 674, 286, 1018, 1019, 614, 3918, 615, 1019, 1765, 2550, 558, 616, 1045, 1045, 1045, 1045, 675, 1766, 534, 534, 534, 534, 535, 545, 537, 538, 545, 534, 534, 534, 534, 534, 534, 534, 534, 534, 546, 534, 534, 534, 534, 547, 549, 559, 560, 561, 559, 2553, 534, 534, 542, 534, 534, 543, 1315, 1660, 562, 1315, 2554, 1660, 554, 563, 672, 617, 673, 674, 633, 1316, 284, 634, 556, 2555, 611, 557, 612, 613, 534, 544, 534, 635, 633, 675, 284, 634, 614, 636, 615, 1115, 1115, 1115, 1115, 616, 2239, 635, 3918, 1018, 1018, 558, 1018, 636, 1019, 1349, 1116, 1019, 2240, 534, 534, 534, 564, 565, 566, 567, 568, 566, 564, 564, 564, 564, 564, 564, 564, 564, 564, 569, 564, 564, 564, 564, 570, 579, 580, 581, 582, 580, 2556, 564, 564, 572, 564, 564, 573, 1799, 679, 617, 680, 681, 1197, 1660, 583, 1197, 1800, 1660, 657, 658, 659, 660, 658, 1018, 2557, 1198, 584, 682, 1019, 564, 574, 564, 661, 1058, 1058, 1058, 1058, 662, 657, 658, 659, 660, 658, 1137, 1137, 1137, 1137, 1175, 1176, 2558, 585, 1059, 661, 1149, 1149, 1149, 1149, 662, 564, 564, 564, 564, 565, 575, 567, 568, 575, 564, 564, 564, 564, 564, 564, 564, 564, 564, 576, 564, 564, 564, 564, 577, 579, 586, 581, 582, 586, 1765, 564, 564, 572, 564, 564, 573, 1293, 664, 1766, 284, 665, 1676, 1052, 587, 1280, 1052, 679, 1294, 680, 681, 666, 667, 1238, 1177, 1178, 584, 668, 1369, 564, 574, 564, 664, 1370, 284, 665, 682, 727, 1676, 728, 729, 1155, 1155, 1155, 1155, 666, 667, 1755, 1889, 1890, 585, 668, 1208, 1208, 1208, 1208, 730, 1756, 564, 564, 564, 282, 283, 591, 592, 593, 591, 282, 282, 282, 282, 282, 282, 282, 282, 282, 594, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 595, 282, 282, 282, 282, 282, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 282, 282, 282, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 282, 282, 597, 282, 283, 598, 599, 600, 598, 282, 601, 282, 282, 282, 282, 282, 282, 282, 282, 717, 282, 718, 719, 603, 1373, 640, 641, 642, 643, 641, 1675, 282, 282, 282, 282, 282, 1377, 1838, 720, 644, 717, 1378, 718, 719, 645, 1856, 1642, 721, 611, 625, 626, 613, 625, 646, 1857, 2559, 647, 1675, 282, 720, 282, 1380, 727, 1838, 728, 729, 1381, 616, 721, 1115, 1115, 1115, 1115, 1208, 1208, 1208, 1208, 627, 1388, 1052, 648, 730, 1052, 1379, 1116, 1931, 1932, 282, 282, 282, 282, 283, 598, 599, 600, 598, 282, 601, 282, 282, 282, 282, 282, 282, 282, 282, 1649, 282, 628, 283, 603, 284, 285, 640, 649, 650, 651, 649, 282, 282, 282, 282, 282, 1862, 629, 1391, 630, 652, 286, 1396, 1392, 631, 653, 1863, 1389, 611, 625, 626, 613, 625, 283, 646, 284, 285, 654, 282, 283, 282, 284, 285, 283, 1967, 284, 285, 616, 1060, 1060, 1060, 1060, 286, 1208, 1208, 1208, 1208, 627, 286, 1397, 1018, 655, 286, 1971, 1398, 1225, 1061, 282, 282, 282, 282, 283, 604, 605, 606, 604, 282, 607, 282, 282, 282, 282, 282, 282, 282, 282, 2562, 282, 628, 684, 609, 685, 686, 684, 691, 685, 686, 691, 282, 282, 282, 282, 282, 687, 629, 1078, 630, 692, 688, 1078, 1385, 631, 688, 1385, 283, 1598, 284, 285, 1393, 709, 689, 1393, 709, 1386, 689, 282, 283, 282, 284, 285, 777, 1394, 569, 286, 1190, 1018, 1191, 710, 751, 752, 1250, 778, 1018, 1016, 690, 286, 564, 1019, 690, 735, 1028, 1028, 1028, 1028, 282, 282, 282, 282, 283, 604, 605, 606, 604, 282, 607, 282, 282, 282, 282, 282, 282, 282, 282, 736, 282, 1029, 694, 609, 695, 696, 704, 1409, 705, 706, 3918, 282, 282, 282, 282, 282, 697, 1018, 1862, 1413, 698, 699, 1407, 779, 1414, 707, 1883, 1722, 1888, 283, 1018, 284, 285, 700, 1018, 1417, 1722, 708, 282, 1420, 282, 751, 752, 389, 390, 391, 392, 390, 286, 1018, 1215, 1216, 1215, 1215, 1019, 753, 754, 700, 2563, 395, 1018, 708, 396, 1211, 1368, 1019, 1016, 282, 282, 282, 282, 283, 618, 619, 620, 618, 282, 282, 282, 282, 282, 282, 282, 282, 621, 282, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 622, 282, 282, 282, 282, 282, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 282, 282, 282, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 623, 282, 282, 624, 282, 283, 282, 284, 285, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 594, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 282, 282, 282, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 594, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 282, 282, 282, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, 282, 282, 282, 282, 283, 282, 669, 285, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 594, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 282, 282, 282, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, 282, 282, 282, 282, 283, 282, 676, 285, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 594, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 282, 282, 282, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 282, 282, 282, 694, 701, 695, 696, 701, 704, 1472, 705, 706, 389, 390, 391, 392, 390, 702, 2058, 2059, 1227, 698, 699, 1400, 753, 754, 1753, 707, 395, 1754, 756, 396, 284, 757, 700, 756, 1018, 284, 757, 708, 2564, 1019, 790, 758, 284, 791, 1227, 2239, 758, 759, 1400, 1449, 792, 2098, 759, 1449, 1450, 1018, 700, 2257, 1453, 793, 1019, 708, 564, 565, 709, 567, 568, 709, 564, 564, 564, 564, 564, 564, 564, 564, 564, 569, 564, 564, 564, 564, 710, 761, 762, 763, 764, 762, 2565, 564, 564, 711, 564, 564, 712, 765, 766, 1879, 1549, 767, 1556, 1880, 768, 1550, 790, 1557, 284, 791, 761, 762, 763, 764, 762, 283, 792, 284, 285, 564, 713, 564, 765, 766, 2566, 793, 767, 1360, 1361, 768, 1360, 777, 1622, 1472, 286, 1216, 1216, 1216, 1216, 1623, 1362, 1624, 778, 1254, 1254, 1254, 1254, 1472, 564, 564, 564, 564, 565, 714, 567, 568, 714, 564, 564, 564, 564, 564, 564, 564, 564, 564, 576, 564, 564, 564, 564, 715, 781, 782, 783, 784, 782, 2104, 564, 564, 711, 564, 564, 712, 1028, 1028, 1028, 1028, 1375, 2444, 1376, 785, 830, 789, 831, 791, 789, 1859, 779, 1644, 1860, 1645, 822, 786, 284, 823, 564, 713, 564, 1029, 824, 832, 283, 1472, 284, 285, 825, 1215, 1216, 1215, 1215, 826, 1268, 1267, 1268, 1268, 1662, 787, 1663, 1561, 1211, 286, 1663, 827, 1562, 564, 564, 564, 282, 283, 282, 722, 285, 282, 282, 723, 282, 282, 282, 282, 282, 282, 282, 594, 1016, 282, 1472, 827, 725, 781, 782, 783, 784, 782, 2092, 2093, 282, 282, 282, 282, 282, 1293, 830, 789, 831, 791, 789, 1852, 788, 834, 789, 831, 791, 789, 1885, 1920, 822, 1886, 284, 823, 786, 832, 1476, 282, 824, 282, 1472, 1477, 835, 283, 825, 284, 285, 1280, 1852, 826, 1294, 1303, 1303, 1303, 1303, 1238, 1920, 2455, 787, 1566, 1575, 827, 286, 2567, 1567, 1576, 282, 282, 282, 282, 283, 282, 722, 285, 282, 282, 723, 282, 282, 282, 282, 282, 282, 282, 594, 827, 282, 1472, 822, 725, 284, 823, 1305, 1306, 1305, 1305, 824, 282, 282, 282, 282, 282, 825, 1058, 1058, 1058, 1058, 826, 834, 789, 831, 791, 789, 837, 789, 831, 791, 789, 1948, 828, 822, 1059, 284, 823, 282, 1018, 282, 835, 824, 1411, 1581, 1412, 838, 283, 825, 284, 285, 1018, 2448, 826, 1018, 1018, 1019, 828, 1948, 1586, 1589, 1032, 1032, 1032, 1032, 828, 286, 282, 282, 282, 282, 283, 282, 731, 285, 282, 282, 732, 282, 282, 282, 282, 282, 282, 282, 594, 1029, 282, 1034, 828, 734, 837, 789, 831, 791, 789, 2568, 1952, 282, 282, 282, 282, 282, 1018, 283, 1887, 284, 285, 1593, 1861, 838, 873, 1018, 874, 875, 2239, 2264, 1595, 840, 841, 842, 843, 841, 286, 1952, 282, 922, 282, 284, 923, 876, 881, 282, 284, 285, 282, 1950, 844, 2569, 877, 1305, 1306, 1305, 1305, 1472, 924, 845, 1599, 1605, 846, 882, 1951, 1600, 1606, 282, 282, 282, 282, 283, 282, 731, 285, 282, 282, 732, 282, 282, 282, 282, 282, 282, 282, 594, 847, 282, 2167, 1472, 734, 840, 841, 842, 843, 841, 2168, 2105, 282, 282, 282, 282, 282, 1610, 873, 1879, 874, 875, 1611, 1896, 844, 881, 282, 284, 285, 282, 1983, 1471, 852, 845, 853, 854, 846, 876, 1471, 282, 922, 282, 284, 923, 882, 283, 877, 284, 285, 1856, 2102, 855, 1310, 1311, 1310, 1310, 1615, 1620, 1857, 924, 847, 1616, 1621, 856, 286, 1884, 1472, 1471, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 737, 282, 282, 282, 282, 282, 282, 282, 594, 856, 282, 2570, 852, 739, 853, 854, 884, 282, 284, 285, 282, 282, 282, 282, 282, 282, 884, 282, 284, 285, 282, 855, 2108, 2246, 2433, 885, 887, 282, 284, 285, 282, 2259, 1517, 856, 283, 885, 284, 285, 282, 932, 282, 933, 934, 1642, 1472, 888, 887, 282, 284, 285, 282, 1018, 1722, 286, 1018, 1647, 1019, 856, 935, 1653, 1648, 1049, 1049, 1049, 1049, 888, 1722, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 737, 282, 282, 282, 282, 282, 282, 282, 594, 1051, 282, 2162, 2571, 739, 890, 282, 284, 285, 282, 2103, 2162, 282, 282, 282, 282, 282, 890, 282, 284, 285, 282, 2572, 2573, 891, 899, 900, 901, 902, 900, 899, 900, 901, 902, 900, 932, 891, 933, 934, 282, 926, 282, 284, 927, 903, 926, 282, 284, 927, 903, 1230, 282, 2574, 2162, 935, 1310, 1311, 1310, 1310, 928, 1322, 1322, 1322, 1322, 928, 1240, 1283, 2162, 282, 282, 282, 282, 283, 282, 740, 285, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 594, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 282, 282, 282, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 282, 282, 282, 742, 743, 744, 745, 746, 744, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, 747, 742, 742, 742, 742, 742, 742, 748, 742, 742, 742, 742, 742, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 742, 742, 742, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 742, 742, 750, 282, 283, 769, 770, 771, 769, 282, 282, 282, 282, 282, 772, 282, 282, 282, 772, 282, 773, 282, 282, 350, 282, 282, 282, 282, 282, 282, 282, 774, 282, 775, 282, 282, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 282, 282, 282, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 282, 282, 282, 789, 790, 794, 795, 796, 794, 789, 789, 797, 798, 799, 792, 789, 789, 789, 789, 800, 789, 800, 801, 802, 800, 800, 800, 800, 800, 800, 803, 789, 804, 789, 789, 805, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 789, 807, 789, 808, 806, 806, 806, 806, 806, 809, 806, 810, 806, 806, 806, 806, 806, 811, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 789, 789, 812, 282, 283, 282, 284, 285, 282, 282, 813, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 2575, 893, 286, 894, 895, 893, 2576, 894, 895, 1678, 282, 282, 282, 282, 282, 283, 1916, 284, 285, 1916, 896, 929, 1657, 283, 896, 284, 285, 1658, 283, 929, 284, 285, 897, 1678, 286, 1018, 897, 282, 282, 282, 1684, 1926, 286, 283, 1927, 948, 285, 286, 1340, 1339, 1340, 1340, 1390, 1390, 1390, 1390, 897, 1680, 1018, 1700, 897, 1928, 286, 1019, 1701, 1929, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 813, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 1678, 911, 286, 912, 913, 911, 1668, 912, 913, 1472, 282, 282, 282, 282, 282, 914, 2015, 1018, 1672, 914, 915, 949, 1019, 1673, 915, 1018, 953, 2577, 954, 955, 1019, 283, 916, 284, 285, 950, 916, 282, 282, 282, 956, 1691, 2015, 1692, 953, 957, 954, 955, 2578, 2437, 286, 1429, 1429, 1429, 1429, 1016, 917, 1018, 956, 1018, 917, 1517, 1019, 957, 1019, 2107, 282, 282, 282, 282, 283, 815, 816, 817, 815, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 818, 282, 282, 282, 282, 282, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 282, 282, 282, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 282, 282, 820, 282, 283, 282, 284, 285, 282, 282, 282, 1018, 282, 282, 282, 282, 1717, 2579, 282, 959, 282, 284, 960, 849, 1689, 959, 1076, 284, 960, 1076, 2279, 282, 282, 282, 282, 850, 1018, 283, 961, 284, 285, 1693, 2280, 283, 961, 948, 285, 962, 1644, 963, 1645, 1038, 1720, 962, 1038, 963, 286, 1721, 282, 850, 282, 1181, 286, 1016, 2163, 1735, 973, 864, 966, 974, 1736, 1182, 975, 2163, 1182, 1016, 865, 976, 977, 978, 1251, 866, 2580, 1251, 1183, 979, 1077, 282, 282, 282, 283, 282, 284, 285, 282, 282, 282, 2016, 282, 282, 282, 282, 865, 1016, 282, 1893, 282, 866, 949, 849, 1252, 1002, 1197, 284, 1003, 1197, 2581, 282, 282, 282, 282, 850, 950, 2016, 283, 1198, 284, 285, 1004, 973, 1005, 966, 974, 1030, 1252, 975, 1040, 1040, 1040, 1040, 976, 977, 978, 286, 282, 850, 282, 965, 979, 966, 967, 1743, 1745, 968, 864, 1834, 1744, 1746, 969, 1076, 1835, 1041, 1076, 865, 2130, 2582, 970, 2130, 866, 1124, 1124, 1124, 1124, 282, 282, 282, 283, 282, 284, 285, 282, 282, 282, 282, 282, 282, 282, 282, 1125, 865, 282, 282, 282, 282, 866, 286, 994, 995, 996, 997, 995, 2026, 971, 282, 282, 282, 282, 282, 1164, 1472, 980, 1164, 966, 981, 1165, 998, 975, 1206, 1211, 1077, 1043, 976, 1199, 1218, 999, 1832, 1000, 2026, 1832, 979, 282, 282, 282, 965, 1204, 966, 967, 1204, 982, 968, 983, 1211, 1472, 1833, 969, 1274, 1218, 1205, 1274, 1935, 1249, 1288, 970, 1936, 1288, 1199, 1937, 2461, 1198, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 282, 282, 282, 282, 282, 282, 1276, 2583, 282, 282, 282, 282, 1289, 286, 1002, 1328, 284, 1003, 1328, 971, 2136, 282, 282, 282, 282, 282, 980, 2436, 966, 981, 1277, 1004, 975, 1005, 1329, 1660, 1289, 976, 2584, 1660, 985, 986, 987, 988, 986, 979, 975, 2136, 282, 282, 282, 976, 989, 990, 982, 1841, 983, 2418, 1841, 979, 1438, 1438, 1438, 1438, 1440, 1440, 1440, 1440, 1842, 2419, 2420, 1063, 1063, 1063, 1063, 1439, 2029, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 858, 282, 282, 282, 282, 282, 282, 282, 282, 1065, 282, 2585, 2586, 860, 1328, 2029, 1007, 1328, 284, 1008, 2175, 282, 282, 282, 282, 282, 985, 986, 987, 988, 986, 1853, 975, 1329, 1854, 1009, 2176, 976, 989, 990, 980, 986, 987, 988, 986, 979, 975, 1010, 282, 1855, 282, 976, 989, 2171, 1060, 1060, 1060, 1060, 2172, 979, 1462, 1463, 1464, 1462, 1465, 1466, 1464, 1465, 991, 2219, 992, 1010, 1061, 1063, 1063, 1063, 1063, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 858, 282, 282, 282, 282, 282, 282, 282, 282, 2219, 282, 1065, 2587, 860, 994, 995, 996, 997, 995, 2589, 2040, 282, 282, 282, 282, 282, 980, 986, 987, 988, 986, 1767, 975, 998, 1767, 1768, 1660, 976, 989, 1656, 1660, 1016, 999, 1660, 1000, 979, 2040, 1660, 282, 1769, 282, 1196, 1016, 1016, 991, 1016, 992, 1022, 1022, 1022, 1022, 1438, 1438, 1438, 1438, 1016, 1464, 1464, 1464, 1464, 1016, 1084, 1084, 1084, 1084, 1023, 1439, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 861, 282, 282, 282, 282, 282, 282, 282, 282, 1065, 282, 1086, 2163, 863, 1007, 1011, 284, 1008, 1011, 1016, 2185, 282, 282, 282, 282, 282, 2163, 1472, 1012, 1084, 1084, 1084, 1084, 1013, 2205, 2264, 1084, 1084, 1084, 1084, 1705, 1007, 1016, 284, 1008, 1010, 1016, 1670, 282, 1671, 282, 1016, 1016, 1016, 1065, 1882, 1086, 2590, 1882, 1016, 1009, 1065, 2218, 1086, 1546, 1546, 1546, 1546, 1246, 1010, 2438, 2218, 1014, 1626, 1627, 1626, 1626, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 861, 282, 282, 282, 282, 282, 282, 282, 282, 1014, 282, 1090, 2041, 863, 1007, 1011, 284, 1008, 1011, 1091, 1255, 282, 282, 282, 282, 282, 2218, 2591, 1012, 1084, 1084, 1084, 1084, 1013, 1084, 1084, 1084, 1084, 2041, 2234, 2218, 1084, 1084, 1084, 1084, 1014, 1642, 1229, 282, 1278, 282, 1279, 1280, 1660, 1065, 2235, 1086, 1660, 1282, 1065, 2236, 1086, 2255, 1401, 1402, 1664, 1065, 1284, 1086, 1014, 1665, 1118, 1118, 1118, 1118, 2592, 2115, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 1087, 282, 1092, 1119, 868, 1715, 2115, 1088, 1715, 2480, 1472, 282, 282, 282, 282, 864, 282, 1089, 1246, 1084, 1084, 1084, 1084, 1716, 1084, 1084, 1084, 1084, 2265, 1084, 1084, 1084, 1084, 2121, 1120, 1084, 1084, 1084, 1084, 282, 282, 282, 2265, 1213, 1065, 1016, 1086, 2593, 1121, 1065, 1122, 1086, 1123, 2443, 1065, 2238, 1086, 1214, 2238, 2121, 1065, 2122, 1086, 1555, 1016, 1016, 1016, 1016, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 2122, 282, 1101, 1472, 868, 1093, 1660, 1095, 1094, 1097, 1660, 282, 282, 282, 282, 864, 282, 1096, 1084, 1084, 1084, 1084, 1104, 1104, 1104, 1104, 2594, 2595, 1098, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1230, 2598, 282, 282, 282, 2051, 1065, 1898, 1086, 2052, 1105, 1022, 1022, 1022, 1022, 1240, 1283, 1105, 2053, 2065, 2222, 1105, 2445, 2066, 1022, 1022, 1022, 1022, 2067, 1023, 1863, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 282, 1023, 282, 282, 282, 282, 282, 282, 282, 1099, 282, 2009, 1472, 870, 1100, 1107, 1107, 1107, 1107, 2135, 2010, 282, 282, 282, 871, 1058, 1058, 1058, 1058, 1060, 1060, 1060, 1060, 1135, 2599, 1016, 1016, 2009, 1315, 1016, 1105, 1315, 1109, 1059, 1016, 2135, 2010, 1061, 282, 282, 282, 1316, 1016, 1162, 1162, 1162, 1162, 2440, 1290, 1291, 1291, 1290, 1145, 1145, 1145, 1145, 2441, 1118, 1118, 1118, 1118, 1163, 1118, 1118, 1118, 1118, 1292, 282, 282, 282, 283, 282, 284, 285, 282, 282, 282, 1146, 282, 282, 282, 282, 282, 282, 282, 1119, 282, 1935, 1399, 870, 1119, 1399, 1145, 1145, 1145, 1145, 2224, 282, 282, 282, 871, 1198, 1145, 1145, 1145, 1145, 1016, 1016, 1145, 1145, 1145, 1145, 1626, 1627, 1626, 1626, 1120, 1146, 3918, 2245, 1853, 1120, 2224, 1854, 282, 282, 282, 1146, 1315, 2258, 1121, 1315, 1122, 1146, 1123, 1121, 1866, 1122, 1855, 1123, 1867, 1316, 3918, 1560, 1016, 1016, 1016, 1016, 1565, 1016, 1016, 1016, 1016, 282, 282, 282, 283, 282, 878, 285, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 282, 282, 282, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 282, 282, 282, 282, 283, 904, 905, 906, 904, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 907, 282, 282, 282, 282, 282, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 908, 282, 282, 282, 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, 282, 282, 909, 282, 283, 282, 284, 285, 282, 282, 918, 282, 282, 282, 282, 282, 282, 282, 282, 2422, 282, 2065, 2033, 920, 1151, 1151, 1151, 1151, 2034, 2035, 2600, 282, 282, 282, 282, 282, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 2033, 1152, 1271, 1272, 1271, 1271, 1245, 2034, 2035, 1245, 282, 1916, 282, 1152, 1916, 1273, 1967, 1152, 1968, 1246, 1253, 1152, 1969, 2601, 1247, 1441, 1441, 1441, 1441, 1604, 1016, 1016, 1016, 1016, 1442, 1971, 1222, 2602, 1442, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 918, 282, 282, 282, 282, 282, 282, 282, 282, 2603, 282, 1222, 1472, 920, 1266, 1267, 1268, 1266, 1472, 1472, 2289, 282, 282, 282, 282, 282, 1228, 1269, 1290, 1291, 1291, 1290, 1247, 2604, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1290, 2605, 1252, 1290, 1292, 2289, 282, 1385, 282, 2413, 1385, 1229, 1230, 1278, 2608, 1279, 1280, 1299, 1292, 1281, 1386, 1299, 1282, 2088, 2609, 2414, 1252, 1240, 1283, 2089, 1517, 1284, 2468, 2454, 2434, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 282, 282, 282, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 930, 282, 282, 282, 282, 283, 282, 936, 285, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 937, 937, 286, 937, 937, 937, 937, 937, 937, 282, 282, 282, 282, 282, 282, 937, 937, 937, 937, 937, 937, 937, 938, 937, 937, 939, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 282, 282, 282, 937, 937, 937, 937, 937, 937, 937, 937, 938, 937, 937, 939, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 282, 282, 282, 282, 283, 282, 936, 285, 282, 282, 940, 941, 282, 282, 282, 282, 282, 282, 282, 1472, 282, 1295, 2027, 943, 1295, 1286, 1767, 2610, 1286, 1767, 1801, 282, 282, 282, 282, 941, 2028, 3918, 1287, 1296, 1472, 2611, 1228, 1247, 1802, 1229, 1230, 1278, 2027, 1279, 1280, 1289, 1472, 1285, 3918, 1276, 1282, 1472, 282, 944, 282, 1240, 1283, 2028, 2612, 1284, 1627, 1627, 1627, 1627, 1438, 1438, 1438, 1438, 1662, 1289, 1663, 2439, 3918, 1277, 1663, 1298, 1298, 1298, 1298, 1439, 2435, 282, 282, 941, 282, 283, 282, 936, 285, 282, 282, 940, 941, 282, 282, 282, 282, 282, 282, 282, 1299, 282, 2462, 2293, 943, 1298, 1298, 1298, 1298, 2452, 2324, 2325, 282, 282, 282, 282, 941, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 2293, 1299, 1318, 1318, 1318, 1318, 1324, 2324, 2325, 1324, 282, 944, 282, 1319, 1967, 2130, 1968, 1319, 2130, 1472, 1969, 1319, 1609, 1016, 1016, 1016, 1016, 1319, 1571, 1572, 1571, 1571, 1970, 1971, 1325, 1425, 1425, 1425, 1425, 282, 282, 941, 282, 283, 282, 936, 285, 282, 282, 945, 282, 282, 282, 282, 282, 282, 282, 282, 1573, 282, 1426, 1472, 947, 2090, 2578, 1326, 1338, 1339, 1340, 1338, 282, 282, 282, 282, 282, 1337, 1844, 2091, 1016, 1341, 2588, 2333, 1574, 1327, 1342, 2613, 1425, 1425, 1425, 1425, 1214, 1344, 1345, 1346, 1344, 1845, 1343, 282, 2332, 282, 2615, 2447, 1350, 1351, 1347, 1352, 1353, 1280, 2333, 1199, 1354, 1426, 1626, 1627, 1626, 1626, 1355, 2616, 1356, 1357, 1343, 1348, 1358, 1359, 2332, 1472, 282, 282, 282, 282, 283, 282, 936, 285, 282, 282, 945, 282, 282, 282, 282, 282, 282, 282, 282, 1348, 282, 2617, 1893, 947, 1221, 1403, 1894, 1221, 1403, 1895, 2334, 282, 282, 282, 282, 282, 2226, 2345, 1287, 2096, 1876, 2621, 1337, 1247, 1393, 1350, 1351, 1393, 1352, 1353, 1280, 2346, 2097, 1354, 1222, 3918, 2334, 1394, 282, 1355, 282, 1356, 1357, 2345, 2622, 1358, 1359, 1441, 1441, 1441, 1441, 2623, 1441, 1441, 1441, 1441, 1442, 2346, 1222, 3918, 1442, 1442, 2226, 2238, 2226, 1442, 2238, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 282, 282, 282, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 282, 282, 282, 282, 283, 282, 284, 285, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 286, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 282, 282, 282, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 282, 282, 282, 1062, 1063, 1063, 1062, 1255, 1472, 1064, 1229, 1765, 1278, 2624, 1279, 1280, 1421, 1421, 1421, 1421, 1766, 1282, 1425, 1425, 1425, 1425, 1401, 1402, 1065, 2625, 1284, 1425, 1425, 1425, 1425, 1422, 1422, 1422, 1422, 1422, 1422, 1423, 2626, 1431, 1431, 1431, 1431, 1426, 2449, 1435, 1435, 1435, 1435, 1691, 1432, 1692, 1426, 2606, 2607, 1699, 1436, 1016, 1066, 1251, 1067, 1016, 1251, 1016, 1068, 1433, 1016, 1069, 1070, 2271, 1071, 1437, 2271, 1072, 1073, 1074, 1075, 1228, 1441, 1441, 1441, 1441, 1058, 1058, 1058, 1058, 2627, 1442, 1844, 1252, 1016, 1442, 1434, 1060, 1060, 1060, 1060, 2628, 2272, 2363, 1059, 2629, 1214, 2630, 1229, 1230, 1231, 1232, 1233, 1234, 1016, 1061, 1235, 1252, 2379, 1236, 1237, 1238, 1239, 2387, 1240, 1241, 1242, 1243, 1244, 1255, 2363, 1437, 1448, 1016, 1016, 2631, 1016, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 2379, 1542, 1542, 1542, 1542, 2387, 1016, 1639, 1639, 1639, 1639, 1256, 1257, 1231, 1258, 1259, 1234, 1543, 1472, 1260, 2349, 1543, 1236, 1237, 1238, 1261, 1543, 1262, 1263, 1242, 1243, 1264, 1265, 1542, 1542, 1542, 1542, 1572, 1572, 1572, 1572, 1399, 1016, 1454, 1399, 2313, 2349, 1455, 2313, 1360, 1361, 1455, 1360, 2352, 1198, 1456, 1454, 1570, 1543, 1016, 1288, 1455, 1362, 1288, 1457, 1458, 1844, 1574, 1016, 1454, 2442, 1459, 2006, 1455, 2314, 2632, 1016, 1455, 1472, 2352, 1214, 1456, 1454, 2399, 1460, 1016, 1461, 2353, 1455, 1468, 1289, 1574, 1457, 1471, 2023, 1471, 1473, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1711, 1711, 1711, 1711, 1474, 2399, 2031, 1016, 2353, 1289, 1571, 1572, 1571, 1571, 1614, 1016, 1016, 1016, 1016, 1619, 1016, 1016, 1016, 1016, 1626, 1627, 1626, 1626, 1471, 2464, 1471, 1479, 1629, 1630, 1631, 1630, 1630, 1632, 2734, 2681, 1573, 1699, 1633, 1016, 2356, 1480, 2735, 1016, 1634, 1634, 1634, 1634, 1016, 1634, 1634, 1634, 1634, 2370, 1481, 1482, 1483, 1484, 1485, 1486, 1574, 1487, 1488, 2681, 1489, 1490, 2356, 1491, 1492, 1635, 1493, 1494, 1495, 1496, 1635, 1711, 1711, 1711, 1711, 2370, 1481, 1482, 1483, 1484, 1485, 1486, 2330, 1487, 1488, 2330, 1489, 1490, 1016, 1491, 1492, 2737, 2740, 1493, 1494, 1495, 1496, 1497, 1497, 1497, 1497, 1634, 1634, 1634, 1634, 1637, 1634, 1634, 1637, 1472, 1403, 2331, 1678, 1403, 1694, 1694, 1694, 1694, 1497, 1018, 1497, 1497, 2741, 1287, 1681, 1695, 1635, 1472, 1247, 2742, 1635, 1711, 1711, 1711, 1711, 1767, 1678, 2375, 1767, 1696, 1712, 1712, 1712, 1712, 1882, 1497, 2743, 1882, 1498, 1499, 1500, 1501, 1502, 2183, 2746, 1503, 1504, 1246, 1505, 1472, 1680, 2446, 1506, 2375, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1712, 1712, 1712, 1712, 1514, 2747, 2748, 1471, 2453, 1471, 1473, 1471, 1515, 1515, 1515, 1515, 1515, 1515, 1516, 1678, 2376, 2744, 2380, 1474, 1710, 1016, 1016, 1016, 1016, 2745, 1016, 1712, 1712, 1712, 1712, 1016, 1016, 1016, 1022, 1022, 1022, 1022, 1841, 1016, 2465, 1841, 2376, 1471, 2380, 1518, 1028, 1028, 1028, 1028, 1882, 1842, 1023, 1882, 1027, 1028, 1028, 1027, 2749, 1032, 1032, 1032, 1032, 1246, 1723, 1723, 1723, 1723, 1448, 1016, 1016, 1029, 1016, 1468, 1497, 1497, 1497, 1497, 2385, 1029, 1032, 1032, 1032, 1032, 1029, 1472, 1034, 1016, 2386, 1029, 1036, 1036, 1036, 1036, 2390, 1497, 1472, 1497, 1497, 1040, 1040, 1040, 1040, 1832, 2385, 1029, 1832, 1034, 2750, 1472, 1726, 1726, 1726, 1726, 2386, 1729, 1729, 1729, 1729, 2751, 2390, 1833, 1519, 1016, 1041, 1520, 1521, 1522, 1523, 1524, 1525, 2756, 1526, 1527, 1472, 1528, 1030, 1034, 2450, 1529, 1041, 1530, 1531, 1532, 1533, 1534, 1535, 1513, 1725, 2757, 2760, 2460, 1514, 2099, 2451, 1471, 2761, 1471, 1472, 1471, 1515, 1515, 1515, 1515, 1515, 1515, 1516, 1731, 1731, 1731, 1731, 1044, 1045, 1045, 1044, 1045, 1045, 1045, 1045, 1049, 1049, 1049, 1049, 1043, 1045, 1045, 1045, 1045, 1049, 1049, 1049, 1049, 2463, 2388, 2762, 1471, 1049, 1049, 1049, 1049, 1102, 1102, 1102, 1102, 1051, 1741, 2389, 1882, 2471, 1733, 1882, 2758, 2759, 1051, 1742, 1742, 1742, 1742, 1742, 2388, 1246, 1051, 2763, 1472, 2544, 1468, 1513, 1063, 1063, 1063, 1063, 1514, 2389, 2545, 1471, 2471, 1471, 1473, 1471, 1515, 1515, 1515, 1515, 1515, 1515, 1516, 1058, 1058, 1058, 1058, 1474, 1324, 1065, 1047, 1324, 1983, 1471, 3918, 2766, 1060, 1060, 1060, 1060, 1471, 1059, 2431, 3918, 1761, 1761, 1761, 1761, 1472, 1472, 2812, 1471, 2432, 1518, 1061, 2130, 1325, 1079, 2130, 2813, 2129, 1762, 1762, 1762, 1762, 1770, 1770, 1770, 1770, 1471, 2815, 2475, 1536, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1468, 1062, 1063, 1063, 1062, 1764, 1326, 1064, 1472, 1065, 1084, 1084, 1084, 1084, 2769, 1472, 2475, 1065, 2786, 1086, 2764, 1065, 2348, 1086, 1327, 2348, 1065, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1065, 2765, 1086, 1084, 1084, 1084, 1084, 1110, 1110, 1110, 1110, 1084, 1084, 1084, 1084, 2350, 2006, 1065, 2350, 1086, 2099, 1065, 2816, 1086, 2100, 1066, 2770, 1067, 1065, 2101, 1086, 1068, 1774, 1772, 1069, 1070, 1065, 1071, 1086, 1472, 1072, 1073, 1074, 1075, 2351, 1472, 2618, 1084, 1084, 1084, 1084, 1104, 1104, 1104, 1104, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1472, 1775, 2476, 1777, 1776, 1065, 2618, 1086, 1472, 1105, 1472, 1778, 1780, 1065, 2649, 1086, 2775, 1065, 2817, 1086, 2482, 1065, 2776, 1086, 1084, 1084, 1084, 1084, 2476, 2668, 1084, 1084, 1084, 1084, 2752, 1084, 1084, 1084, 1084, 2753, 1779, 2649, 1084, 1084, 1084, 1084, 2482, 2771, 2083, 1065, 1783, 1086, 2084, 1781, 2483, 1065, 2668, 1086, 1782, 1784, 1065, 2085, 1086, 1084, 1084, 1084, 1084, 1065, 2773, 1086, 1794, 1794, 1794, 1794, 1084, 1084, 1084, 1084, 1983, 1471, 2483, 1785, 1792, 1792, 1792, 1792, 1471, 2822, 1065, 2823, 1086, 1107, 1107, 1107, 1107, 1105, 1472, 1786, 1787, 1065, 2824, 1086, 1107, 1107, 1107, 1107, 1788, 1789, 2680, 1086, 1797, 1797, 1797, 1797, 1864, 1471, 1105, 2826, 1109, 1115, 1115, 1115, 1115, 1117, 1117, 1117, 1117, 1105, 1790, 1109, 1117, 1117, 1117, 1117, 1116, 2680, 1472, 1109, 1118, 1118, 1118, 1118, 1124, 1124, 1124, 1124, 2684, 1791, 1124, 1124, 1124, 1124, 2778, 2708, 1796, 1803, 1803, 1803, 1803, 1472, 1865, 1125, 1130, 1130, 1130, 1130, 1119, 1125, 1808, 1808, 1808, 1808, 1866, 2684, 1131, 1135, 1867, 1016, 1016, 1809, 2708, 1016, 1136, 1137, 1137, 1136, 1016, 1137, 1137, 1137, 1137, 1812, 2828, 2774, 1016, 2829, 1715, 1120, 1472, 1715, 1813, 1813, 1813, 1813, 1813, 1814, 1815, 1816, 1814, 1246, 2783, 1121, 2832, 1122, 1716, 1123, 1145, 1145, 1145, 1145, 1819, 1819, 1819, 1819, 1145, 1145, 1145, 1145, 1149, 1149, 1149, 1149, 1151, 1151, 1151, 1151, 1823, 1823, 1823, 1823, 2547, 1146, 2614, 2456, 2560, 1146, 2457, 2560, 2637, 1146, 1151, 1151, 1151, 1151, 2638, 2458, 2459, 1152, 1016, 1016, 1829, 1152, 1155, 1155, 1155, 1155, 2547, 1472, 2614, 1830, 1830, 1830, 1830, 1830, 2637, 1152, 1162, 1162, 1162, 1162, 2638, 1196, 1016, 1016, 2639, 1016, 1208, 1208, 1208, 1208, 1215, 1216, 1215, 1215, 1163, 1016, 1216, 1216, 1216, 1216, 1016, 2833, 2834, 1211, 1821, 1245, 1472, 2561, 1245, 2835, 2639, 2782, 1266, 1267, 1268, 1266, 2354, 2642, 1246, 2354, 1825, 2493, 1472, 1247, 2712, 1269, 1268, 1267, 1268, 1268, 1247, 1268, 1267, 1268, 1268, 1222, 1016, 1230, 1846, 1232, 1847, 1848, 1252, 2642, 1849, 2355, 1472, 1850, 1237, 1238, 1239, 2712, 1240, 1241, 1242, 1243, 1851, 2656, 2836, 1222, 1271, 1272, 1271, 1271, 2779, 2785, 1252, 1271, 1272, 1271, 1271, 1274, 1286, 1273, 1274, 1286, 1290, 1291, 1291, 1290, 1273, 1472, 2838, 2656, 1198, 1287, 1295, 2661, 2357, 1295, 1247, 2357, 2787, 2666, 1292, 1298, 1298, 1298, 1298, 2839, 2359, 1276, 1276, 2359, 1296, 1905, 1905, 1905, 1905, 1298, 1298, 1298, 1298, 2661, 2840, 1882, 1289, 2358, 1882, 2666, 1299, 1303, 1303, 1303, 1303, 1277, 1277, 1472, 1246, 2360, 1299, 2788, 1472, 1472, 1299, 1305, 1306, 1305, 1305, 2841, 1289, 1310, 1311, 1310, 1310, 1318, 1318, 1318, 1318, 1912, 1912, 1912, 1912, 1318, 1318, 1318, 1318, 1322, 1322, 1322, 1322, 2842, 1338, 1339, 1340, 1338, 1340, 1339, 1340, 1340, 1319, 2667, 2671, 2361, 1319, 1341, 2361, 2789, 1319, 2685, 1342, 1344, 1345, 1346, 1344, 2794, 2801, 1350, 1351, 1907, 1352, 1353, 1343, 1472, 1347, 1354, 2843, 2667, 2671, 1199, 2844, 1355, 2362, 1356, 1357, 2685, 2754, 1358, 1359, 2754, 1472, 1348, 1922, 1339, 1340, 1922, 1343, 1340, 1339, 1340, 1340, 1344, 1345, 1346, 1344, 1923, 1339, 1340, 1923, 1943, 1944, 1943, 1943, 1914, 1347, 1348, 1350, 1351, 1924, 1352, 1353, 2768, 1343, 1472, 1354, 1946, 1944, 1946, 1946, 1472, 1355, 1348, 1356, 1357, 2790, 1343, 1358, 1359, 1947, 1421, 1421, 1421, 1421, 2755, 2845, 2846, 1343, 1421, 1421, 1421, 1421, 1425, 1425, 1425, 1425, 1348, 1472, 2847, 2848, 1343, 1421, 1421, 1421, 1421, 1423, 2780, 1422, 1422, 1422, 1422, 1422, 1422, 1423, 2781, 2851, 2852, 1426, 2777, 1472, 1957, 1957, 1957, 1957, 1957, 1957, 1423, 1959, 1959, 1959, 1959, 1425, 1425, 1425, 1425, 1429, 1429, 1429, 1429, 1431, 1431, 1431, 1431, 1435, 1435, 1435, 1435, 1472, 2796, 1472, 1432, 1472, 1426, 2853, 1436, 2669, 1426, 1438, 1438, 1438, 1438, 1440, 1440, 1440, 1440, 1433, 2873, 2696, 2670, 1437, 1472, 2806, 1439, 1440, 1440, 1440, 1440, 1441, 1441, 1441, 1441, 2669, 1441, 1441, 1441, 1441, 1442, 2876, 2539, 2784, 1442, 1442, 1434, 2696, 2670, 1442, 1462, 1463, 1464, 1462, 1465, 1466, 1464, 1465, 1464, 1464, 1464, 1464, 2797, 2800, 2877, 1961, 1465, 1466, 1464, 1465, 1976, 1977, 1464, 1976, 2542, 1513, 2881, 2802, 1472, 1437, 1514, 2022, 2005, 2703, 2022, 2005, 2882, 1472, 1978, 1978, 1978, 1978, 1978, 1978, 1979, 2711, 1471, 2883, 1471, 1472, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 2717, 2703, 2023, 2006, 2042, 2042, 2042, 2042, 2047, 2047, 2047, 2047, 2886, 2711, 2030, 2024, 2025, 2030, 2007, 2887, 2008, 1546, 1546, 1546, 1546, 2888, 2717, 2795, 1471, 2798, 2799, 2049, 2049, 2049, 2049, 2718, 2889, 2054, 2054, 2054, 2054, 2024, 2025, 2031, 2007, 1468, 1982, 2008, 1982, 1984, 1471, 1982, 1982, 1982, 1982, 1982, 1982, 1471, 1468, 2723, 2032, 2718, 1474, 2890, 2043, 2060, 2060, 2060, 2060, 1626, 1627, 1626, 1626, 2044, 2891, 1472, 2011, 2045, 2012, 2364, 2046, 2814, 2364, 2013, 2048, 2723, 1471, 2032, 1982, 1471, 2014, 1471, 1473, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 2050, 2011, 2893, 2012, 1474, 2055, 2814, 2365, 2013, 1555, 1016, 1016, 1016, 1016, 2366, 2056, 2014, 2366, 1570, 2894, 1016, 2061, 2803, 2896, 2898, 2017, 2018, 2019, 1471, 2062, 1471, 1989, 1990, 1991, 1992, 1993, 1994, 1016, 1995, 1996, 2020, 1997, 1998, 2367, 1999, 2000, 1016, 2001, 2002, 2003, 2004, 2021, 1560, 1016, 1016, 1016, 1016, 1989, 1990, 1991, 1992, 1993, 1994, 2899, 1995, 1996, 2020, 1997, 1998, 2036, 1999, 2000, 2037, 1016, 2001, 2002, 2003, 2004, 2021, 2042, 2042, 2042, 2042, 2900, 2038, 2901, 2039, 2047, 2047, 2047, 2047, 2054, 2054, 2054, 2054, 2036, 1472, 2849, 2037, 2049, 2049, 2049, 2049, 2902, 1472, 2903, 2850, 2905, 1472, 2368, 1472, 2038, 2368, 2039, 1513, 2890, 1472, 2906, 1642, 1514, 2315, 2907, 1471, 2315, 1471, 1472, 1471, 1515, 1515, 1515, 1515, 1515, 1515, 1516, 2060, 2060, 2060, 2060, 2369, 2075, 1542, 1542, 1542, 1542, 1626, 1627, 1626, 1626, 2076, 2316, 2560, 1472, 2077, 2560, 2791, 2078, 2080, 2908, 2909, 2792, 2086, 1472, 1471, 2079, 2317, 1543, 2081, 2827, 2910, 2082, 2087, 2109, 2109, 2109, 2109, 1542, 1542, 1542, 1542, 1565, 1016, 1016, 1016, 1016, 1571, 1572, 1571, 1571, 1765, 2911, 2317, 2094, 1468, 1513, 2825, 2827, 1543, 1766, 1514, 2095, 1543, 1471, 2804, 1471, 1473, 1471, 1515, 1515, 1515, 1515, 1515, 1515, 1516, 2371, 1573, 2912, 2371, 1474, 2805, 1572, 1572, 1572, 1572, 1604, 1016, 1016, 1016, 1016, 1609, 1016, 1016, 1016, 1016, 1614, 1016, 1016, 1016, 1016, 1574, 1893, 2913, 1471, 2372, 1518, 1619, 1016, 1016, 1016, 1016, 1574, 1627, 1627, 1627, 1627, 1893, 2111, 1629, 1630, 1631, 1630, 1630, 1626, 1627, 1626, 1626, 1629, 1630, 1631, 1630, 1630, 2914, 1468, 1513, 1574, 2915, 2895, 2897, 1514, 2895, 2897, 1471, 2911, 1471, 1472, 1471, 1515, 1515, 1515, 1515, 1515, 1515, 1516, 1017, 1631, 1631, 1631, 1631, 1626, 1627, 1626, 1626, 1626, 1627, 1626, 1626, 1634, 1634, 1634, 1634, 2126, 2126, 2126, 2126, 1637, 1634, 1634, 1637, 2916, 2129, 2917, 1471, 1637, 1634, 1634, 1637, 1639, 1639, 1639, 1639, 1678, 1635, 1678, 2144, 2904, 1635, 2182, 2904, 2918, 1635, 2919, 2920, 2145, 2145, 2145, 2145, 2145, 1635, 1831, 2924, 2272, 1468, 1513, 1831, 1678, 2335, 1678, 1514, 2335, 2925, 1471, 2926, 1471, 1473, 1471, 1515, 1515, 1515, 1515, 1515, 1515, 1516, 1694, 1694, 1694, 1694, 1474, 2927, 1680, 1705, 1680, 1016, 2928, 1695, 2336, 1016, 1711, 1711, 1711, 1711, 1016, 1016, 1016, 1935, 2128, 2929, 2754, 1696, 1016, 2754, 1471, 2337, 1518, 1710, 1016, 1016, 1016, 1016, 1678, 1016, 1678, 2930, 1935, 1472, 1016, 1016, 1016, 2106, 1712, 1712, 1712, 1712, 1016, 1723, 1723, 1723, 1723, 2931, 2337, 2932, 1468, 1032, 1032, 1032, 1032, 1036, 1036, 1036, 1036, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 2926, 1029, 2152, 2152, 2152, 2152, 2793, 2921, 2933, 1029, 2921, 1034, 1729, 1729, 1729, 1729, 2318, 2934, 2935, 1034, 2936, 2374, 2937, 1034, 2374, 2319, 2938, 1041, 1729, 1729, 1729, 1729, 1731, 1731, 1731, 1731, 2160, 1041, 2154, 2154, 2154, 2154, 2318, 2939, 2940, 2161, 2161, 2161, 2161, 2161, 2023, 2319, 2938, 1041, 1761, 1761, 1761, 1761, 2941, 2942, 1725, 2943, 1762, 1762, 1762, 1762, 2944, 1079, 1762, 1762, 1762, 1762, 1770, 1770, 1770, 1770, 1084, 1084, 1084, 1084, 1102, 1102, 1102, 1102, 2945, 2942, 1043, 1764, 1084, 1084, 1084, 1084, 2946, 1764, 2947, 2948, 2949, 1065, 2950, 2951, 2952, 1065, 2953, 1086, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 2314, 1065, 2316, 1086, 1084, 1084, 1084, 1084, 2331, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1065, 2336, 1086, 2351, 1065, 2355, 1086, 1084, 1084, 1084, 1084, 2955, 1065, 2377, 1086, 2922, 2377, 1065, 2922, 1086, 2358, 1065, 2360, 1086, 2362, 2365, 2923, 1772, 1110, 1110, 1110, 1110, 1065, 2186, 1086, 1084, 1084, 1084, 1084, 2955, 2188, 2957, 2378, 2187, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 2189, 2190, 1084, 1084, 1084, 1084, 2381, 2956, 1065, 2381, 1086, 1084, 1084, 1084, 1084, 2957, 2192, 1065, 2367, 1086, 2191, 1065, 2369, 1086, 2372, 2378, 2382, 1065, 2392, 1086, 1084, 1084, 1084, 1084, 2956, 2382, 1065, 2394, 1086, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1065, 2384, 1086, 2968, 2384, 2193, 2396, 2398, 2195, 1065, 3028, 1086, 2194, 1065, 2975, 1086, 2196, 1065, 3029, 1086, 3030, 1065, 3035, 1086, 3036, 1084, 1084, 1084, 1084, 2968, 2031, 2197, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 2975, 1794, 1794, 1794, 1794, 1107, 1107, 1107, 1107, 2200, 1065, 2198, 1086, 3037, 3038, 2199, 3039, 3040, 3041, 1086, 3042, 3043, 2201, 1086, 3044, 2202, 1105, 2978, 2754, 2983, 1105, 2754, 1109, 2984, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1803, 1803, 1803, 1803, 1808, 1808, 1808, 1808, 1814, 1815, 1816, 1814, 2978, 2983, 3047, 1809, 2211, 2984, 2203, 1109, 3048, 3049, 3050, 1109, 3051, 2212, 2212, 2212, 2212, 2212, 1816, 1815, 1816, 1816, 1819, 1819, 1819, 1819, 1145, 1145, 1145, 1145, 2989, 1796, 1149, 1149, 1149, 1149, 1823, 1823, 1823, 1823, 1151, 1151, 1151, 1151, 3052, 3055, 3056, 1146, 3059, 3060, 3057, 1146, 1155, 1155, 1155, 1155, 2989, 2215, 3058, 1472, 3105, 1152, 1472, 3106, 3109, 1152, 2216, 2216, 2216, 2216, 2216, 1905, 1905, 1905, 1905, 1298, 1298, 1298, 1298, 1303, 1303, 1303, 1303, 1912, 1912, 1912, 1912, 1318, 1318, 1318, 1318, 1322, 1322, 1322, 1322, 1472, 1299, 3110, 3111, 3002, 1299, 3117, 1923, 1339, 1340, 1923, 1821, 3016, 1319, 1472, 2391, 3062, 1319, 2391, 3070, 1924, 1922, 1339, 1340, 1922, 1825, 1923, 1339, 1340, 1923, 3002, 3013, 1344, 1345, 1346, 1344, 3118, 1343, 3016, 1924, 1943, 1944, 1943, 1943, 2392, 1347, 1943, 1944, 1943, 1943, 3019, 1343, 2294, 2294, 2294, 2294, 1343, 3069, 3013, 3020, 1907, 1343, 1348, 1429, 1429, 1429, 1429, 3063, 1421, 1421, 1421, 1421, 1914, 3025, 3120, 1343, 3019, 1423, 1472, 1472, 1343, 1421, 1421, 1421, 1421, 3020, 1348, 1957, 1957, 1957, 1957, 1957, 1957, 1423, 1959, 1959, 1959, 1959, 1472, 3025, 1957, 1957, 1957, 1957, 1957, 1957, 1423, 1425, 1425, 1425, 1425, 1976, 1977, 1464, 1976, 2307, 1977, 1464, 2307, 1426, 1513, 1472, 3071, 2393, 1472, 1514, 2393, 2326, 2327, 2328, 1472, 1472, 1426, 1978, 1978, 1978, 1978, 1978, 1978, 1979, 1513, 3083, 2329, 2338, 1472, 1514, 3121, 1472, 2830, 2339, 2340, 3065, 2394, 1978, 1978, 1978, 1978, 1978, 1978, 1979, 2320, 2395, 2321, 2397, 2395, 1472, 2397, 2322, 2329, 2338, 2341, 1472, 3072, 2342, 2323, 3075, 2339, 2340, 1961, 2042, 2042, 2042, 2042, 3073, 1472, 2343, 2320, 2344, 2321, 3064, 2396, 2551, 2398, 2322, 2551, 3074, 2341, 3079, 1468, 2342, 3076, 2323, 2047, 2047, 2047, 2047, 2049, 2049, 2049, 2049, 3124, 1472, 2343, 3091, 2344, 3078, 1472, 1472, 1468, 1982, 2552, 1982, 1984, 1471, 1982, 1982, 1982, 1982, 1982, 1982, 1471, 2054, 2054, 2054, 2054, 1474, 2060, 2060, 2060, 2060, 2421, 2421, 2421, 2421, 3125, 3093, 2421, 2421, 2421, 2421, 2109, 2109, 2109, 2109, 1542, 1542, 1542, 1542, 1472, 1471, 3080, 1982, 1982, 1472, 1982, 1984, 1471, 1982, 1982, 1982, 1982, 1982, 1982, 1471, 2597, 1543, 3081, 2597, 1474, 1543, 1546, 1546, 1546, 1546, 2126, 2126, 2126, 2126, 2487, 1637, 1634, 1634, 1637, 1639, 1639, 1639, 1639, 2488, 2488, 2488, 2488, 2488, 1471, 2272, 1982, 1513, 3126, 3128, 3088, 1635, 1514, 1472, 1472, 1471, 1635, 1471, 1472, 1471, 2310, 2310, 2310, 2310, 2310, 2310, 1516, 2152, 2152, 2152, 2152, 2154, 2154, 2154, 2154, 2493, 2111, 2514, 2514, 2514, 2514, 3129, 1472, 1472, 2494, 2494, 2494, 2494, 2494, 1472, 1079, 2539, 1041, 3130, 1472, 1471, 1084, 1084, 1084, 1084, 2540, 2540, 2540, 2540, 2540, 2307, 1977, 1464, 2307, 1472, 2128, 3077, 3086, 2517, 2517, 2517, 2517, 1084, 1084, 1084, 1084, 1065, 3090, 1086, 1642, 1468, 1471, 3131, 1471, 1472, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1065, 3082, 1086, 1472, 1065, 3087, 1086, 3084, 1084, 1084, 1084, 1084, 1472, 1043, 1472, 1084, 1084, 1084, 1084, 3097, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1471, 3132, 1472, 2634, 2516, 1065, 2634, 1086, 1084, 1084, 1084, 1084, 1065, 3133, 1086, 3134, 2429, 1065, 3119, 1086, 3135, 1065, 3085, 1086, 2518, 3136, 2294, 2294, 2294, 2294, 1468, 1513, 2314, 1065, 3098, 1086, 1514, 3137, 3138, 1471, 3089, 1471, 1473, 1471, 1515, 1515, 1515, 1515, 1515, 1515, 2466, 1423, 3094, 2520, 2636, 1474, 2519, 2636, 3139, 2521, 1084, 1084, 1084, 1084, 3140, 2523, 1084, 1084, 1084, 1084, 2522, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1471, 3142, 1518, 3143, 2316, 3163, 1065, 3164, 1086, 3167, 3168, 3169, 1065, 2552, 1086, 2542, 3171, 1065, 3172, 1086, 3173, 1065, 3175, 1086, 2543, 2543, 2543, 2543, 2543, 3176, 1468, 1513, 1084, 1084, 1084, 1084, 1514, 2640, 2526, 1471, 2640, 1471, 1473, 1471, 1515, 1515, 1515, 1515, 1515, 1515, 1516, 2643, 2525, 2524, 2643, 1474, 3177, 1065, 3178, 1086, 3181, 2527, 1084, 1084, 1084, 1084, 2641, 1084, 1084, 1084, 1084, 3179, 1084, 1084, 1084, 1084, 3182, 1472, 3180, 1471, 2644, 1518, 3183, 1084, 1084, 1084, 1084, 1065, 3184, 1086, 2645, 2528, 1065, 2645, 1086, 2647, 2467, 1065, 2647, 1086, 3185, 1084, 1084, 1084, 1084, 3186, 3187, 3189, 1065, 1468, 1086, 2650, 1893, 2652, 2650, 2654, 2652, 3095, 2654, 2646, 2736, 2736, 2736, 2736, 2648, 3096, 1065, 2530, 1086, 2529, 1421, 1421, 1421, 1421, 2658, 2659, 2531, 2658, 2659, 3191, 2651, 2532, 2653, 3193, 2655, 2662, 2533, 1893, 2662, 2619, 2619, 2619, 2619, 2619, 2619, 1423, 2665, 3174, 2672, 2665, 3174, 2672, 3194, 2331, 2660, 2738, 2738, 2738, 2738, 2674, 2676, 3195, 2674, 2676, 2663, 3179, 2678, 2534, 1513, 2678, 3196, 2348, 3192, 1514, 2348, 2336, 1471, 2673, 1471, 1472, 1471, 2310, 2310, 2310, 2310, 2310, 2310, 1516, 2675, 2677, 2683, 2687, 3197, 2683, 2687, 2679, 2688, 3198, 2691, 2688, 2006, 2691, 2693, 2695, 2698, 2693, 2695, 2698, 2700, 2702, 2705, 2700, 2702, 2705, 2374, 2706, 1471, 2374, 2706, 2351, 2355, 2710, 3199, 2895, 2710, 2689, 2895, 2358, 1935, 2739, 3201, 2360, 2362, 2365, 3202, 3203, 3204, 2367, 2369, 2372, 3205, 1935, 2714, 2023, 2707, 2714, 1468, 1513, 2384, 3206, 2378, 2384, 1514, 2715, 3207, 1471, 2715, 1471, 1472, 1471, 2310, 2310, 2310, 2310, 2310, 2310, 1516, 2719, 3180, 2721, 2719, 2382, 2721, 2725, 3208, 2727, 2725, 2031, 2727, 3209, 2729, 2731, 2716, 2729, 2731, 2732, 3210, 3211, 2732, 2421, 2421, 2421, 2421, 3213, 2879, 1471, 2720, 2879, 2722, 3214, 2807, 3215, 2392, 3216, 2394, 2736, 2736, 2736, 2736, 2396, 2398, 2809, 3217, 3218, 2733, 2738, 2738, 2738, 2738, 2810, 3212, 3219, 1472, 2880, 2807, 1468, 1513, 2818, 2818, 2818, 2818, 1514, 1472, 3220, 1471, 2641, 1471, 1472, 1471, 2310, 2310, 2310, 2310, 2310, 2310, 1516, 3212, 2830, 1471, 2820, 2820, 2820, 2820, 2644, 3224, 2819, 2831, 2831, 2831, 2831, 2831, 2837, 2837, 2837, 2837, 2646, 2514, 2514, 2514, 2514, 2854, 2854, 2854, 2854, 1471, 2648, 2651, 2821, 2807, 1079, 3224, 2517, 2517, 2517, 2517, 2872, 2872, 2872, 2872, 2772, 2897, 2767, 2653, 2897, 2655, 1065, 2904, 1086, 2660, 2904, 1084, 1084, 1084, 1084, 1468, 1513, 1065, 2663, 1086, 3188, 1514, 2885, 3188, 1471, 2885, 1471, 1473, 1471, 1515, 1515, 1515, 1515, 1515, 1515, 2466, 1065, 3233, 1086, 3122, 1474, 2673, 3122, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 2552, 2675, 2677, 1084, 1084, 1084, 1084, 2679, 1084, 1084, 1084, 1084, 3233, 1471, 2689, 1518, 3123, 1065, 2707, 1086, 2716, 1065, 2597, 1086, 3190, 2597, 2720, 3190, 1065, 2855, 1086, 2921, 2722, 1065, 2921, 1086, 2733, 3264, 3265, 1084, 1084, 1084, 1084, 1468, 1513, 1084, 1084, 1084, 1084, 1514, 3247, 2272, 1471, 2856, 1471, 1473, 1471, 1515, 1515, 1515, 1515, 1515, 1515, 1516, 1065, 2857, 1086, 2859, 1474, 2858, 1065, 3236, 1086, 1084, 1084, 1084, 1084, 3247, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 2634, 3266, 1471, 2634, 1518, 2811, 3267, 3236, 1065, 2922, 1086, 3237, 2922, 1065, 2861, 1086, 3268, 1065, 3269, 1086, 2923, 1065, 3242, 1086, 2860, 1084, 1084, 1084, 1084, 2314, 3258, 3270, 1468, 1084, 1084, 1084, 1084, 3237, 1084, 1084, 1084, 1084, 2862, 2869, 2869, 2869, 2869, 3271, 3242, 3272, 1065, 2864, 1086, 3274, 2636, 2863, 3258, 2636, 1065, 3273, 1086, 3275, 3273, 1065, 2959, 1086, 3276, 2959, 1065, 3278, 1086, 2865, 2870, 2870, 2870, 2870, 1084, 1084, 1084, 1084, 3279, 3280, 2866, 2316, 3281, 2874, 2874, 2874, 2874, 1421, 1421, 1421, 1421, 2641, 2867, 2868, 2875, 1065, 3282, 1086, 3283, 1065, 3287, 1086, 1421, 1421, 1421, 1421, 2619, 2619, 2619, 2619, 2619, 2619, 1423, 2736, 2736, 2736, 2736, 2738, 2738, 2738, 2738, 2619, 2619, 2619, 2619, 2619, 2619, 1423, 1513, 2960, 3288, 2871, 2960, 1514, 2963, 2965, 2967, 2963, 2965, 2967, 3289, 1978, 1978, 1978, 1978, 1978, 1978, 1979, 2970, 2972, 2974, 2970, 2972, 2974, 2658, 3290, 2977, 2658, 2961, 2977, 3332, 3333, 3336, 2644, 2646, 2648, 2980, 2665, 2981, 2980, 2665, 2981, 2985, 2987, 1472, 2985, 2987, 2651, 2653, 2655, 3337, 2991, 1472, 2331, 2991, 2660, 2993, 2995, 2997, 2993, 2995, 2997, 3338, 2954, 1472, 2663, 2336, 2982, 3339, 1472, 2998, 2986, 2988, 2998, 3000, 2683, 1468, 3000, 2683, 3003, 2673, 2687, 3003, 1472, 2687, 2675, 2677, 2679, 3006, 2691, 2693, 3006, 2691, 2693, 2695, 3007, 3299, 2695, 3007, 2999, 3293, 3342, 2698, 3001, 2351, 2698, 2700, 3292, 3004, 2700, 2355, 2702, 3009, 2705, 2702, 3009, 2705, 2689, 2358, 2360, 1472, 3301, 3012, 2362, 3008, 3012, 2710, 3014, 1472, 2710, 3014, 2365, 1472, 2714, 3018, 2367, 2714, 3018, 1472, 3295, 2369, 3010, 2372, 3022, 3024, 2725, 3022, 3024, 2725, 2727, 2729, 2707, 2727, 2729, 2731, 2378, 3015, 2731, 3027, 3261, 3294, 3027, 2382, 2716, 2738, 2738, 2738, 2738, 3031, 3032, 3033, 3031, 2720, 2722, 2392, 3298, 1472, 3347, 2394, 2396, 3300, 1472, 1642, 2398, 3303, 3261, 1472, 2733, 3034, 3034, 3034, 3034, 3045, 3045, 3045, 3045, 3046, 3046, 3046, 3046, 3053, 3053, 3053, 3053, 2738, 2738, 2738, 2738, 3031, 3032, 3033, 3031, 3034, 3034, 3034, 3034, 3045, 3045, 3045, 3045, 3107, 1472, 1472, 3107, 3302, 1472, 1472, 3166, 1472, 1472, 3166, 3350, 3307, 1472, 3046, 3046, 3046, 3046, 3053, 3053, 3053, 3053, 2807, 1472, 3304, 2885, 2807, 1472, 2885, 3108, 3352, 1472, 1472, 2809, 3341, 1472, 2880, 3100, 2808, 3353, 2818, 2818, 2818, 2818, 1472, 2808, 2807, 3054, 1513, 3309, 2807, 1472, 3312, 1514, 2552, 3311, 1471, 1472, 1471, 1472, 1471, 2310, 2310, 2310, 2310, 2310, 2310, 1516, 2819, 3222, 1471, 3306, 3222, 3354, 1471, 3112, 3112, 3112, 3112, 3308, 3113, 2820, 2820, 2820, 2820, 3092, 3114, 3114, 3114, 3114, 3315, 3115, 3116, 3116, 3116, 3116, 1471, 3318, 3223, 3319, 2807, 3313, 1472, 3061, 2807, 3127, 3127, 3127, 3127, 2821, 2837, 2837, 2837, 2837, 3141, 3141, 3141, 3141, 2854, 2854, 2854, 2854, 3144, 3144, 3144, 3144, 1468, 3066, 3066, 3066, 1472, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 1065, 3066, 1086, 3068, 1065, 3358, 1086, 3145, 3145, 3145, 3145, 3310, 3066, 3066, 3066, 3066, 3066, 1084, 1084, 1084, 1084, 3147, 3147, 3147, 3147, 2872, 2872, 2872, 2872, 3361, 3225, 3362, 1065, 3225, 1086, 1084, 1084, 1084, 1084, 3066, 3363, 3066, 1065, 3379, 1086, 3321, 1065, 1472, 1086, 3380, 1084, 1084, 1084, 1084, 3161, 3161, 3161, 3161, 1472, 3226, 1065, 2880, 1086, 3273, 2959, 3162, 3273, 2959, 3066, 3066, 3066, 2807, 1472, 1472, 3146, 1065, 3381, 1086, 3382, 2808, 1472, 2808, 2809, 2808, 2808, 2808, 2808, 2808, 2808, 2808, 2808, 3228, 3148, 2641, 3228, 2807, 1084, 1084, 1084, 1084, 3323, 3151, 3151, 3151, 3151, 1084, 1084, 1084, 1084, 3179, 3316, 3149, 3155, 3155, 3155, 3155, 3383, 3384, 3386, 1471, 2961, 1065, 3317, 1086, 3385, 3322, 3152, 3385, 1086, 3387, 1065, 3343, 1086, 3174, 3343, 3102, 3174, 1065, 3388, 1086, 3200, 3200, 3200, 3200, 3389, 3156, 3156, 3156, 3156, 3103, 1513, 1084, 1084, 1084, 1084, 1514, 1472, 3390, 1471, 3344, 1471, 1473, 1471, 1515, 1515, 1515, 1515, 1515, 1515, 1516, 1065, 3150, 1086, 3391, 1474, 3153, 1065, 3392, 1086, 3154, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 2869, 2869, 2869, 2869, 3394, 2870, 2870, 2870, 2870, 3395, 1471, 1867, 1518, 2874, 2874, 2874, 2874, 1065, 3398, 1086, 3324, 1065, 3399, 1086, 2875, 1065, 2963, 1086, 3400, 2963, 1065, 3104, 1086, 1084, 1084, 1084, 1084, 3396, 3157, 3393, 1468, 3401, 3393, 2965, 2967, 3229, 2965, 2967, 3229, 1893, 2970, 3396, 1513, 2970, 3158, 2644, 2972, 1514, 1065, 2972, 1086, 1893, 3402, 3403, 3159, 1978, 1978, 1978, 1978, 1978, 1978, 1979, 2646, 2648, 3230, 2974, 3404, 3231, 2974, 2651, 3231, 2977, 3405, 2980, 2977, 2653, 2980, 3235, 3239, 3241, 3235, 3239, 3241, 2991, 2993, 2995, 2991, 2993, 2995, 2997, 3160, 3406, 2997, 3407, 2655, 3244, 3232, 3221, 3244, 3408, 2660, 3246, 2663, 3409, 3246, 3410, 2982, 2986, 2988, 1935, 1935, 3411, 2673, 2675, 2677, 3412, 3249, 3413, 2679, 3249, 1468, 3414, 3006, 3251, 2999, 3006, 3251, 3415, 3253, 3012, 3001, 3253, 3012, 3254, 3257, 3018, 3254, 3257, 3018, 3259, 3022, 3024, 3259, 3022, 3024, 3004, 3262, 3027, 3416, 3262, 3027, 2689, 3008, 3031, 3032, 3033, 3031, 3010, 2707, 3417, 3418, 3419, 3255, 3015, 2716, 3420, 2961, 2982, 3260, 2720, 2722, 3033, 3032, 3033, 3033, 3263, 2733, 3033, 3032, 3033, 3033, 3034, 3034, 3034, 3034, 3045, 3045, 3045, 3045, 3277, 3277, 3277, 3277, 3053, 3053, 3053, 3053, 3284, 3284, 3284, 3284, 3286, 3286, 3286, 3286, 3305, 3305, 3305, 3305, 3305, 3305, 3277, 3277, 3277, 3277, 3314, 3314, 3314, 3314, 3284, 3284, 3284, 3284, 3286, 3286, 3286, 3286, 2807, 1472, 2986, 2807, 3335, 1472, 2988, 3335, 2999, 1472, 3001, 3100, 2808, 1472, 3100, 2808, 3424, 3004, 3122, 2808, 3166, 3122, 2808, 3166, 2807, 3397, 3431, 2807, 3397, 3112, 3112, 3112, 3112, 3108, 3113, 3114, 3114, 3114, 3114, 3188, 3115, 3008, 3188, 3424, 3285, 1513, 3123, 3010, 1471, 2880, 1514, 1471, 3431, 1471, 3015, 1471, 1472, 1471, 2310, 2310, 2310, 2310, 2310, 2310, 1516, 3434, 3320, 3116, 3116, 3116, 3116, 3340, 3340, 3340, 3340, 3448, 3190, 3345, 2807, 3190, 3345, 2807, 3127, 3127, 3127, 3127, 3348, 3348, 3348, 3348, 3449, 3434, 3451, 1471, 3346, 3452, 3346, 3346, 3346, 3346, 3346, 3346, 3349, 3349, 3349, 3349, 3351, 3351, 3351, 3351, 3453, 3454, 3291, 3455, 3456, 3355, 3355, 3355, 3355, 3359, 3359, 3359, 3359, 1468, 3066, 3066, 3066, 3457, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3356, 3066, 3458, 3068, 3360, 3360, 3360, 3360, 3141, 3141, 3141, 3141, 3066, 3066, 3066, 3066, 3066, 3144, 3144, 3144, 3144, 3441, 3364, 3145, 3145, 3145, 3145, 3459, 1084, 1084, 1084, 1084, 3147, 3147, 3147, 3147, 3460, 3273, 3463, 3066, 3273, 3066, 1065, 3464, 1086, 3465, 3466, 3441, 1065, 3357, 1086, 3467, 3468, 1065, 3494, 1086, 3499, 1065, 3500, 1086, 3200, 3200, 3200, 3200, 3371, 3371, 3371, 3371, 3066, 3066, 3066, 3066, 3066, 3066, 1472, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3365, 3066, 1083, 3297, 3067, 1084, 1084, 1084, 1084, 1472, 1472, 3067, 3066, 3066, 3066, 3066, 3066, 3367, 3367, 3367, 3367, 1472, 3151, 3151, 3151, 3151, 1084, 1084, 1084, 1084, 1065, 3470, 1086, 1084, 1084, 1084, 1084, 1472, 3449, 3066, 3067, 3066, 3368, 3108, 1086, 3501, 3502, 3152, 3503, 1086, 1472, 1065, 1472, 1086, 3161, 3161, 3161, 3161, 1065, 3477, 1086, 3474, 3504, 3423, 3366, 3162, 3423, 3471, 3066, 3066, 3066, 3325, 3373, 3373, 3373, 3373, 1514, 3484, 1472, 2808, 1472, 2808, 2809, 2808, 3326, 3326, 3326, 3326, 3326, 3326, 3327, 3369, 3223, 3372, 3370, 2807, 3357, 3374, 3472, 1086, 3155, 3155, 3155, 3155, 3156, 3156, 3156, 3156, 1472, 1084, 1084, 1084, 1084, 3376, 3376, 3376, 3376, 3506, 1472, 1471, 1084, 1084, 1084, 1084, 3476, 1065, 3478, 1086, 3511, 1065, 3426, 1086, 1472, 3426, 1065, 1472, 1086, 3512, 1065, 1472, 1086, 3513, 1472, 3228, 1472, 1065, 3228, 1086, 3486, 3103, 3325, 3378, 3378, 3378, 3378, 1514, 1642, 3517, 2808, 3226, 2808, 2809, 2808, 3326, 3326, 3326, 3326, 3326, 3326, 3327, 3375, 3479, 2961, 3518, 2807, 1472, 1065, 3475, 1086, 3428, 3430, 3377, 3428, 3430, 3485, 3235, 3483, 1513, 3235, 3482, 3432, 3239, 1514, 3432, 3239, 3487, 3241, 1472, 1471, 3241, 1978, 1978, 1978, 1978, 1978, 1978, 1979, 3435, 3230, 3232, 3435, 1472, 3522, 3505, 2982, 3329, 3524, 3491, 1472, 3433, 2986, 3244, 3538, 3246, 3244, 2988, 3246, 3437, 3103, 2807, 3437, 3249, 3251, 1472, 3249, 3251, 3436, 2807, 1472, 2807, 2807, 2807, 2807, 2807, 2807, 2807, 2807, 2807, 2807, 3488, 2999, 3539, 3001, 2807, 3421, 3253, 3438, 3493, 3253, 3440, 3004, 3008, 3440, 3257, 3443, 1468, 3257, 3443, 3444, 3447, 3489, 3444, 3447, 3450, 3450, 3450, 3450, 3277, 3277, 3277, 3277, 3490, 3540, 3541, 3010, 3542, 3335, 3545, 3255, 3335, 3492, 3385, 3015, 3260, 3385, 3546, 3547, 3445, 3263, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 2807, 1513, 3462, 3462, 3462, 3462, 1514, 3543, 3108, 1471, 3543, 1471, 1473, 1471, 1515, 1515, 1515, 1515, 1515, 1515, 1516, 3284, 3284, 3284, 3284, 1474, 3284, 3284, 3284, 3284, 3286, 3286, 3286, 3286, 3548, 3450, 3450, 3450, 3450, 3473, 3473, 3473, 3473, 3305, 3305, 3305, 3305, 3305, 3305, 1471, 3544, 1518, 1472, 3544, 3549, 3551, 1472, 3480, 3480, 3480, 3480, 3461, 3461, 3461, 3461, 3331, 3461, 3461, 3461, 3461, 3279, 3552, 3393, 3550, 1472, 3393, 3550, 1893, 1472, 1468, 1513, 3554, 3558, 1472, 3343, 1514, 3397, 3343, 1471, 3397, 1471, 1472, 1471, 2310, 2310, 2310, 2310, 2310, 2310, 1516, 3462, 3462, 3462, 3462, 3284, 3284, 3284, 3284, 3340, 3340, 3340, 3340, 3344, 3553, 2807, 3555, 3553, 1472, 3555, 3481, 3557, 1472, 3559, 3557, 3507, 2809, 3556, 3507, 1471, 1935, 3561, 3469, 3345, 2810, 3562, 3345, 3563, 3562, 2807, 3564, 3315, 3508, 3565, 3508, 3508, 3508, 3508, 3508, 3508, 3346, 3566, 3346, 3346, 3346, 3346, 3346, 3346, 3223, 1468, 3066, 3066, 3066, 1471, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3226, 3066, 3509, 3297, 3067, 3509, 3348, 3348, 3348, 3348, 3230, 3067, 3066, 3066, 3066, 3066, 3066, 2807, 3232, 3346, 3255, 3346, 3346, 3346, 3346, 3346, 3346, 3349, 3349, 3349, 3349, 3351, 3351, 3351, 3351, 3514, 3514, 3514, 3514, 3066, 3067, 3066, 3355, 3355, 3355, 3355, 3371, 3371, 3371, 3371, 3359, 3359, 3359, 3359, 3360, 3360, 3360, 3360, 3260, 3263, 3515, 3582, 3519, 3519, 3519, 3519, 3584, 3356, 3066, 3066, 3066, 3066, 3066, 3066, 3585, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3520, 3066, 3570, 3297, 3067, 3521, 3521, 3521, 3521, 3588, 3589, 3067, 3066, 3066, 3066, 3066, 3066, 3523, 3523, 3523, 3523, 3579, 3516, 3367, 3367, 3367, 3367, 3591, 3570, 3357, 1084, 1084, 1084, 1084, 3592, 1084, 1084, 1084, 1084, 3066, 3067, 3066, 3527, 3527, 3527, 3527, 3593, 3579, 3368, 3594, 1086, 1084, 1084, 1084, 1084, 1065, 3595, 1086, 3596, 1472, 1065, 1472, 1086, 3371, 3371, 3371, 3371, 1083, 3066, 3066, 3066, 2807, 3537, 3537, 3537, 3537, 1065, 1472, 1086, 2807, 1472, 2807, 2807, 2807, 2807, 2807, 2807, 2807, 2807, 2807, 2807, 3525, 1472, 1472, 1472, 2807, 3526, 3516, 1472, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 3373, 3373, 3373, 3373, 3531, 3531, 3531, 3531, 1472, 3620, 3603, 3528, 3532, 3532, 3532, 3532, 3600, 1065, 3631, 1086, 3604, 1065, 3632, 1086, 1472, 3374, 1472, 1086, 3615, 1083, 3450, 3450, 3450, 3450, 3611, 3423, 3612, 1065, 3423, 3533, 3609, 3613, 3103, 3325, 3376, 3376, 3376, 3376, 1514, 3593, 1472, 2808, 3529, 2808, 2809, 2808, 3326, 3326, 3326, 3326, 3326, 3326, 3327, 1472, 3223, 3568, 3530, 2807, 3568, 1065, 3601, 1086, 3536, 3536, 3536, 3536, 3610, 3378, 3378, 3378, 3378, 1472, 3635, 3637, 3426, 3428, 3430, 3426, 3428, 3430, 3641, 1471, 1472, 1513, 3569, 3642, 3643, 1065, 1514, 1086, 3614, 3644, 1065, 1066, 1086, 3534, 1978, 1978, 1978, 1978, 1978, 1978, 1979, 3226, 3230, 3232, 3572, 3645, 3535, 3572, 1074, 3103, 3325, 3573, 3656, 3576, 3573, 1514, 3576, 1642, 2808, 3618, 2808, 2809, 2808, 3326, 3326, 3326, 3326, 3326, 3326, 3327, 1748, 3617, 3567, 3433, 2807, 3578, 3440, 1472, 3578, 3440, 3574, 3443, 3436, 3581, 3443, 3447, 3581, 1472, 3447, 3590, 3590, 3590, 3590, 3461, 3461, 3461, 3461, 3657, 1471, 1468, 3462, 3462, 3462, 3462, 3438, 3255, 3597, 3597, 3597, 3597, 3260, 3647, 3445, 3636, 3263, 3598, 3598, 3598, 3598, 3509, 3648, 3602, 3509, 3527, 3527, 3527, 3527, 3659, 3103, 3325, 3660, 3616, 3661, 3660, 1514, 3661, 3662, 2807, 3663, 2807, 2807, 2807, 3495, 3495, 3495, 3495, 3495, 3495, 3496, 3590, 3590, 3590, 3590, 2807, 3597, 3597, 3597, 3597, 3598, 3598, 3598, 3598, 3507, 3665, 3543, 3507, 1472, 3543, 1893, 3544, 3638, 1472, 3544, 3638, 3664, 1472, 3670, 3664, 1935, 3508, 3561, 3508, 3508, 3508, 3508, 3508, 3508, 3508, 3671, 3508, 3508, 3508, 3508, 3508, 3508, 3531, 3531, 3531, 3531, 3646, 3646, 3646, 3646, 3514, 3514, 3514, 3514, 3103, 1513, 3519, 3519, 3519, 3519, 1514, 3666, 3672, 1471, 3666, 1471, 1473, 1471, 1515, 1515, 1515, 1515, 1515, 1515, 1516, 3515, 3673, 3550, 3674, 1474, 3550, 3520, 3521, 3521, 3521, 3521, 3523, 3523, 3523, 3523, 3649, 3649, 3649, 3649, 3650, 3650, 3650, 3650, 3527, 3527, 3527, 3527, 3433, 1471, 3436, 1518, 3531, 3531, 3531, 3531, 1084, 1084, 1084, 1084, 3678, 1065, 3438, 1086, 3445, 1065, 3553, 1086, 3498, 3553, 3516, 3537, 3537, 3537, 3537, 3658, 3658, 3658, 3658, 1468, 1513, 1065, 3684, 1086, 3686, 1514, 3678, 1066, 1471, 3534, 1471, 1472, 1471, 2310, 2310, 2310, 2310, 2310, 2310, 1516, 3557, 3687, 3535, 3557, 1074, 3055, 3652, 3652, 3652, 3652, 1084, 1084, 1084, 1084, 3532, 3532, 3532, 3532, 3536, 3536, 3536, 3536, 3668, 3690, 3694, 3668, 3651, 3555, 1471, 3562, 3555, 3653, 3562, 1086, 3669, 1065, 3711, 1086, 3556, 1065, 3621, 3533, 3718, 1065, 3719, 1086, 1642, 3722, 3638, 3599, 3726, 3638, 3677, 3572, 3680, 3677, 3572, 3680, 1468, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3605, 3586, 3605, 3606, 3605, 3654, 3569, 3433, 3574, 3730, 3655, 3605, 3586, 3586, 3586, 3586, 3586, 3576, 3578, 3681, 3576, 3578, 3681, 3683, 3683, 3683, 3683, 3733, 3581, 2176, 3714, 3581, 3590, 3590, 3590, 3590, 1935, 1513, 3744, 3586, 3605, 3586, 1514, 2072, 3745, 3721, 3436, 3438, 3682, 3746, 1978, 1978, 1978, 1978, 1978, 1978, 1979, 3445, 3689, 3689, 3689, 3689, 3692, 3692, 3692, 3692, 3569, 3574, 3586, 3586, 3586, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3607, 3587, 3607, 3608, 3607, 3597, 3597, 3597, 3597, 3684, 3752, 3607, 3587, 3587, 3587, 3587, 3587, 1983, 1471, 3675, 3598, 3598, 3598, 3598, 3740, 1471, 3753, 3740, 1468, 3683, 3683, 3683, 3683, 3918, 3918, 3918, 3918, 3755, 3757, 3587, 3607, 3587, 3918, 3918, 3918, 3918, 1472, 1472, 3661, 3742, 1472, 3661, 3742, 1472, 1471, 3918, 3918, 3918, 3918, 1472, 3918, 3918, 3918, 3918, 3720, 3720, 3720, 3720, 3587, 3587, 3587, 3325, 1472, 3772, 1472, 3664, 1514, 1472, 3664, 2808, 1472, 2808, 2809, 2808, 3326, 3326, 3326, 3326, 3326, 3326, 3327, 3743, 1472, 3696, 3743, 2807, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1983, 1471, 3918, 3918, 3918, 3918, 3777, 3666, 1471, 1472, 3666, 3697, 3698, 1472, 3764, 1471, 3781, 3668, 3759, 1472, 3668, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3669, 3776, 3761, 3699, 3782, 3619, 3784, 3785, 1471, 1472, 3786, 1472, 3787, 1472, 2072, 3647, 3103, 3325, 3724, 3724, 3724, 3724, 1514, 3677, 1472, 2807, 3677, 2807, 2807, 2807, 3495, 3495, 3495, 3495, 3495, 3495, 3496, 3689, 3689, 3689, 3689, 2807, 3093, 3918, 3918, 3918, 3918, 3725, 3725, 3725, 3725, 3760, 3569, 3748, 1472, 3680, 3748, 3700, 3680, 3751, 1472, 3793, 3751, 3701, 3918, 3918, 3918, 3918, 3692, 3692, 3692, 3692, 3918, 3918, 3918, 3918, 3763, 3727, 3727, 3727, 3727, 1472, 3749, 1472, 3574, 1472, 1472, 3794, 3682, 1472, 3646, 3646, 3646, 3646, 3682, 3103, 3325, 3731, 3731, 3731, 3731, 1514, 3728, 1642, 2807, 3799, 2807, 2807, 2807, 3495, 3495, 3495, 3495, 3495, 3495, 3496, 3649, 3649, 3649, 3649, 2807, 1472, 3755, 3704, 3800, 3705, 3762, 3650, 3650, 3650, 3650, 3735, 3735, 3735, 3735, 3658, 3658, 3658, 3658, 1472, 3778, 1065, 3767, 1086, 3692, 3692, 3692, 3692, 3708, 1472, 3772, 3729, 1065, 2072, 1086, 3814, 1083, 3720, 3720, 3720, 3720, 3715, 3740, 3742, 3768, 3740, 3742, 3783, 3724, 3724, 3724, 3724, 3816, 3817, 3103, 3621, 3621, 3621, 3819, 3732, 3621, 3621, 3621, 3622, 3621, 3621, 3621, 3621, 3623, 3621, 3621, 3624, 3806, 3624, 1473, 3624, 3625, 3625, 3625, 3625, 3625, 3625, 3626, 3621, 3621, 3621, 3621, 3627, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3621, 3624, 3621, 3629, 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, 3621, 3621, 3630, 3633, 3633, 3633, 3634, 3633, 3633, 3633, 3633, 3633, 3633, 3633, 3633, 3633, 3633, 3633, 3633, 3633, 3633, 3633, 3633, 3634, 1084, 1084, 1084, 1084, 1472, 3820, 3633, 3633, 3634, 3633, 3633, 3633, 3652, 3652, 3652, 3652, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1472, 1065, 3743, 1086, 1472, 3743, 1983, 1471, 1983, 1471, 3633, 3634, 3633, 3653, 1471, 1086, 1471, 1065, 3821, 1086, 3715, 1065, 1472, 1086, 3725, 3725, 3725, 3725, 3735, 3735, 3735, 3735, 3731, 3731, 3731, 3731, 3804, 1642, 1472, 3633, 3633, 3633, 1513, 1471, 3805, 1471, 3792, 1514, 3809, 3792, 1471, 3734, 1471, 1472, 1471, 2310, 2310, 2310, 2310, 2310, 2310, 1516, 3729, 3736, 3623, 3749, 3737, 3735, 3735, 3735, 3735, 3715, 3803, 3727, 3727, 3727, 3727, 3715, 1513, 3797, 3815, 3814, 3797, 1514, 1084, 1084, 1084, 1084, 3807, 3711, 1471, 1978, 1978, 1978, 1978, 1978, 1978, 1979, 3728, 3798, 3798, 3798, 3798, 3812, 3818, 3841, 3695, 3792, 3749, 1065, 3792, 1086, 3847, 1472, 3732, 3798, 3798, 3798, 3798, 1472, 1468, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3702, 3688, 3702, 3703, 3702, 3747, 3790, 3790, 3790, 3790, 3729, 3702, 3688, 3688, 3688, 3688, 3688, 3751, 3833, 1468, 3751, 3788, 1084, 1084, 1084, 1084, 3798, 3798, 3798, 3798, 3835, 3791, 3797, 1086, 1472, 3797, 3862, 1513, 1642, 3688, 3702, 3688, 1514, 1472, 3865, 3328, 3682, 1065, 3836, 1086, 1978, 1978, 1978, 1978, 1978, 1978, 1979, 1983, 1471, 3715, 3715, 3749, 3715, 1472, 3715, 1471, 1472, 1472, 3688, 3688, 3688, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3706, 3693, 3706, 3707, 3706, 3789, 1472, 1471, 1472, 3852, 3858, 3706, 3693, 3693, 3693, 3693, 3693, 3795, 3808, 3808, 3808, 3808, 3822, 3822, 3822, 3822, 3497, 3839, 1468, 3824, 3824, 3824, 3824, 3850, 3863, 1472, 3853, 3868, 3837, 3693, 3706, 3693, 3827, 3827, 3827, 3827, 3832, 3823, 1084, 1084, 1084, 1084, 3834, 3875, 3825, 3889, 1086, 3830, 3830, 3830, 3830, 3831, 3831, 3831, 3831, 1472, 3715, 1083, 3693, 3693, 3693, 3325, 1472, 1065, 3861, 1086, 1514, 3895, 3497, 2808, 1472, 2808, 2809, 2808, 3326, 3326, 3326, 3326, 3326, 3326, 3327, 3790, 3790, 3790, 3790, 2807, 3830, 3830, 3830, 3830, 3831, 3831, 3831, 3831, 3845, 3845, 3845, 3845, 3822, 3822, 3822, 3822, 3851, 1472, 3497, 3898, 3791, 1472, 1086, 1471, 3497, 1472, 3709, 3826, 3827, 3827, 3827, 3827, 3874, 3846, 3871, 3715, 3894, 3823, 3848, 3848, 3848, 3848, 3827, 3827, 3827, 3827, 3623, 3869, 3715, 3824, 3824, 3824, 3824, 3103, 2807, 1084, 1084, 1084, 1084, 3715, 1472, 3715, 2807, 1083, 2807, 2807, 2807, 2807, 2807, 2807, 2807, 2807, 2807, 2807, 3825, 3880, 1086, 3900, 2807, 1472, 1065, 3876, 1086, 3830, 3830, 3830, 3830, 3845, 3845, 3845, 3845, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3848, 3866, 3866, 3866, 3866, 3870, 3870, 3870, 3870, 3896, 3881, 3881, 3881, 3881, 3846, 3882, 3882, 3882, 3882, 3897, 3710, 3497, 1472, 3893, 3903, 3890, 3867, 1472, 1086, 3891, 3888, 3849, 1472, 3905, 3103, 3621, 3621, 3621, 3907, 3909, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3711, 3621, 3621, 3621, 3910, 3621, 3623, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3621, 3621, 3621, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3621, 3621, 3630, 3621, 3621, 3621, 3715, 3715, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3711, 3621, 3621, 3715, 1472, 3715, 1472, 3877, 3877, 3877, 3877, 3866, 3866, 3866, 3866, 3621, 3621, 3621, 3621, 3621, 3879, 3879, 3879, 3879, 3877, 3877, 3877, 3877, 3879, 3879, 3879, 3879, 3878, 3912, 3914, 3916, 3867, 3908, 1086, 3917, 3899, 3623, 3621, 1467, 3621, 1083, 1021, 1467, 2512, 3878, 3879, 3879, 3879, 3879, 1021, 1039, 2511, 2510, 2509, 1021, 1039, 1114, 3902, 1021, 1039, 3901, 1114, 3904, 2508, 2507, 1114, 3621, 3621, 3621, 3621, 3621, 3621, 2506, 2505, 3621, 3621, 3621, 3622, 3621, 3621, 3621, 3621, 3715, 3621, 3621, 3624, 2504, 3624, 1472, 3624, 3625, 3625, 3625, 3625, 3625, 3625, 3626, 3621, 3621, 3621, 3621, 3621, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3621, 3624, 3621, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3629, 3621, 3621, 3630, 3621, 3621, 3621, 3715, 3715, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3711, 3621, 3621, 3715, 2503, 1986, 1472, 3906, 3906, 3906, 3906, 1080, 1986, 2502, 3716, 3621, 3621, 3621, 3621, 3621, 1209, 2501, 1080, 1226, 1472, 1209, 1080, 1986, 1226, 1209, 1334, 1335, 1226, 1981, 1986, 3583, 1335, 1981, 1334, 3583, 1335, 2500, 3621, 1334, 3621, 1467, 1365, 1334, 1365, 1467, 3913, 1371, 1467, 1365, 3911, 1467, 1371, 1365, 1444, 1467, 1371, 1601, 1467, 1444, 1444, 3915, 1601, 1444, 2499, 2498, 1601, 3621, 3621, 3621, 3621, 3621, 3621, 2497, 2496, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3711, 3621, 3621, 3621, 2495, 3621, 1986, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3621, 3621, 3621, 3621, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3621, 3621, 3621, 3621, 3621, 3621, 2492, 2491, 3621, 3621, 3621, 3622, 3621, 3621, 3621, 3621, 3715, 3621, 3621, 3624, 2490, 3624, 1473, 3624, 3625, 3625, 3625, 3625, 3625, 3625, 3626, 3621, 3621, 3621, 3621, 3627, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3621, 3624, 3621, 3629, 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, 3621, 3621, 3630, 1513, 2489, 3691, 2147, 2486, 1514, 3691, 2486, 1471, 2485, 1471, 1472, 1471, 2310, 2310, 2310, 2310, 2310, 2310, 1516, 1470, 1666, 1687, 1470, 1719, 2484, 1666, 1687, 1470, 1719, 1666, 1687, 1470, 1719, 1021, 1039, 1114, 2481, 2479, 2478, 1039, 1114, 1021, 2477, 1039, 1114, 2474, 1021, 1471, 1822, 1826, 1021, 1209, 3510, 1822, 1826, 2473, 1209, 1822, 1826, 1226, 1209, 2472, 1908, 2470, 1226, 1915, 3758, 1908, 1226, 2469, 1915, 1908, 3510, 2428, 1915, 2427, 3510, 1468, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3765, 3754, 3765, 3766, 3765, 2426, 2425, 2424, 2423, 1334, 3639, 3765, 3754, 3754, 3754, 3754, 3754, 1334, 1335, 1371, 1962, 2417, 1334, 1335, 1371, 1962, 1334, 1335, 1371, 1962, 3639, 1365, 2416, 1365, 3639, 2415, 2412, 2411, 1365, 3754, 3765, 3754, 1365, 1444, 2410, 1963, 2409, 2408, 1444, 1444, 1963, 2112, 1444, 1963, 1963, 1470, 2112, 1601, 1470, 2407, 2112, 2406, 1601, 1470, 2405, 2404, 1601, 1470, 3754, 3754, 3754, 3325, 2403, 2402, 2401, 2400, 1514, 2131, 2312, 2808, 2309, 2808, 2809, 2808, 3326, 3326, 3326, 3326, 3326, 3326, 3327, 1666, 2131, 1687, 1719, 2807, 1666, 2131, 1687, 1719, 1666, 2131, 1687, 1719, 2153, 1822, 1826, 1908, 2308, 2153, 1822, 1826, 1908, 2153, 1822, 1826, 1908, 1915, 1962, 1471, 1963, 1981, 1915, 1962, 2306, 1963, 1915, 1962, 1963, 1963, 2112, 2305, 2131, 1981, 2304, 2112, 2153, 1981, 2303, 2112, 3769, 2153, 2302, 2301, 2300, 2153, 2299, 2131, 3640, 3103, 3325, 2298, 2131, 3640, 2297, 1514, 2131, 3640, 2807, 3685, 2807, 2807, 2807, 3495, 3495, 3495, 3495, 3495, 3495, 3496, 3723, 3640, 3685, 3685, 2807, 3723, 3640, 2296, 3685, 3723, 3640, 1445, 3685, 3756, 3723, 1964, 3685, 2292, 2291, 3723, 2290, 3685, 1947, 3723, 2288, 3685, 2287, 3756, 2286, 2285, 2284, 2283, 3756, 1935, 2282, 2281, 3756, 2278, 2277, 2276, 2275, 1935, 2274, 2273, 2270, 3770, 2269, 2268, 2267, 2266, 2239, 2234, 2263, 2262, 2261, 2260, 1893, 2256, 3103, 3621, 3621, 3621, 2254, 1893, 3621, 3621, 3621, 3622, 3621, 3621, 3621, 3621, 3715, 3621, 3621, 3621, 2253, 3621, 2252, 3621, 3773, 3773, 3773, 3773, 3773, 3773, 3774, 3621, 3621, 3621, 3621, 3621, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3621, 3621, 3621, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3775, 3621, 3621, 3630, 3621, 3621, 3621, 1876, 2251, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3711, 3621, 3621, 3624, 1867, 3624, 1472, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3621, 3621, 3621, 3621, 3621, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3621, 3624, 3621, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3780, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3779, 3621, 3621, 3630, 3621, 3621, 3621, 2250, 2249, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3711, 3621, 3621, 3621, 2248, 3621, 1986, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3621, 3621, 3621, 3621, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3621, 3621, 3621, 3621, 3621, 3621, 2247, 2246, 3621, 3621, 3621, 3622, 3621, 3621, 3621, 3621, 3623, 3621, 3621, 3624, 2245, 3624, 1472, 3624, 3801, 3801, 3801, 3801, 3801, 3801, 3626, 3621, 3621, 3621, 3621, 3621, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3621, 3624, 3621, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3621, 3621, 3630, 3325, 2244, 2243, 2242, 2241, 1514, 2237, 2236, 2808, 2233, 2808, 2809, 2808, 3326, 3326, 3326, 3326, 3326, 3326, 3327, 2232, 2231, 2230, 2229, 2807, 2228, 2227, 2225, 1879, 1869, 2223, 1859, 1211, 1842, 2221, 2220, 1837, 1836, 2217, 2214, 2214, 2213, 2210, 2210, 2209, 2208, 2207, 2206, 1471, 2151, 2204, 2151, 2185, 2181, 2180, 2179, 2178, 2177, 2174, 2173, 2170, 2169, 2166, 2165, 3810, 2164, 2159, 2159, 2158, 2157, 2156, 2155, 1048, 2151, 2150, 2149, 2148, 2142, 3103, 3325, 2141, 1689, 1017, 1689, 1514, 1689, 2140, 2807, 2139, 2807, 2807, 2807, 3495, 3495, 3495, 3495, 3495, 3495, 3496, 2138, 2137, 1668, 1668, 2807, 1017, 1668, 1668, 1017, 2134, 2133, 1642, 1642, 1642, 1017, 1642, 1642, 1636, 2125, 2124, 2123, 2120, 2119, 2118, 2117, 2116, 1579, 1578, 2114, 2113, 1544, 1540, 1540, 1472, 2073, 3811, 1468, 2071, 2070, 2069, 2068, 2064, 2063, 2057, 1988, 1472, 1472, 1975, 1974, 1973, 1972, 1970, 1966, 1965, 1964, 1445, 1445, 1427, 3103, 3828, 3828, 3829, 3829, 3828, 3829, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3828, 3829, 1956, 1955, 1954, 1409, 1409, 1017, 3828, 3828, 3828, 3828, 3828, 3828, 1409, 1409, 1953, 1949, 1396, 1388, 1388, 1942, 1941, 1373, 1373, 1017, 1373, 1373, 1364, 1940, 1363, 1939, 1938, 1934, 1933, 1930, 3828, 3829, 3828, 1925, 1921, 1854, 1333, 1919, 1918, 1917, 1332, 1330, 1320, 1911, 1910, 1909, 1301, 1904, 1903, 1854, 1902, 1238, 1901, 1880, 1875, 1870, 1900, 1899, 1860, 3828, 3828, 3828, 3621, 3621, 3621, 1897, 1892, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3711, 3621, 3621, 3621, 1891, 3621, 1249, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3621, 3621, 3621, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3838, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3621, 3621, 3630, 3842, 3842, 3842, 3843, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 3842, 1881, 1249, 1878, 1877, 1874, 1873, 3842, 3842, 3842, 3842, 3842, 3842, 1872, 1871, 1868, 1861, 1858, 1211, 1211, 1211, 1211, 1211, 1206, 1840, 1839, 1199, 1188, 1188, 1017, 1188, 1188, 1184, 1837, 1174, 3842, 3844, 3842, 1174, 1836, 1827, 1153, 1147, 1818, 1810, 1139, 1807, 1806, 1805, 1804, 1129, 1128, 1127, 1126, 1106, 1773, 1760, 1759, 1758, 1757, 1752, 1751, 1750, 1747, 3842, 3842, 3842, 3621, 3621, 3621, 1083, 1739, 3621, 3621, 3621, 3854, 3621, 3621, 3621, 3621, 3623, 3621, 3621, 3855, 1738, 3855, 2809, 3855, 3856, 3856, 3856, 3856, 3856, 3856, 3857, 3621, 3621, 3621, 3621, 3858, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3621, 3624, 3621, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3859, 3621, 3621, 3860, 3621, 3621, 3621, 1737, 1734, 3621, 3621, 3621, 3858, 3621, 3621, 3621, 3621, 3711, 3621, 3621, 3858, 1728, 3858, 2807, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3621, 3621, 3621, 3621, 3858, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3621, 3621, 3621, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3621, 3621, 3860, 3621, 3621, 3621, 1031, 1020, 3621, 3621, 3621, 3858, 3621, 3621, 3621, 3621, 3711, 3621, 3621, 1017, 1718, 1249, 2809, 1714, 1017, 1713, 1017, 1017, 1017, 1707, 1017, 3621, 3621, 3621, 3621, 3858, 1300, 1689, 1689, 1686, 1685, 1668, 1668, 1650, 1642, 1642, 1636, 1017, 1582, 1017, 1582, 1579, 1578, 1577, 1552, 1551, 1548, 1469, 3621, 3624, 3621, 1017, 1544, 1540, 3918, 1537, 1472, 1469, 1468, 1017, 1452, 1451, 1445, 1017, 1017, 1427, 1017, 1409, 1409, 1404, 1017, 1294, 1017, 1294, 1389, 1017, 1379, 3621, 3621, 3858, 3621, 3621, 3621, 1017, 1373, 3621, 3621, 3621, 3858, 3621, 3621, 3621, 3621, 3711, 3621, 3621, 1373, 1364, 1300, 2809, 1017, 1363, 1017, 1199, 1017, 1333, 1017, 3873, 3621, 3621, 3621, 3621, 3858, 1332, 1331, 1330, 1320, 1317, 1300, 1017, 1301, 1300, 1017, 1199, 1017, 1253, 1017, 1223, 1017, 1211, 1017, 1203, 1202, 1201, 1199, 3621, 3624, 3621, 1188, 1188, 1184, 1174, 1017, 1159, 1017, 1170, 1017, 1159, 1158, 1017, 1153, 1147, 1144, 1141, 1139, 1017, 1132, 1017, 1129, 1128, 1127, 1126, 1017, 1017, 3621, 3621, 3858, 3621, 3621, 3621, 1106, 1083, 3621, 3621, 3621, 1079, 3621, 3621, 3621, 3621, 3711, 3621, 3621, 1057, 1055, 1017, 2807, 1048, 1017, 1031, 1026, 1017, 1017, 1020, 1017, 3621, 3621, 3621, 3621, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3621, 3621, 3621, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3621, 3621, 3621, 3621, 3621, 3918, 3918, 3621, 3621, 3621, 3854, 3621, 3621, 3621, 3621, 3715, 3621, 3621, 3858, 3918, 3858, 2807, 3858, 3883, 3883, 3883, 3883, 3883, 3883, 3884, 3621, 3621, 3621, 3621, 3858, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3621, 3621, 3621, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3885, 3621, 3621, 3860, 3621, 3621, 3621, 3918, 3918, 3621, 3621, 3621, 3858, 3621, 3621, 3621, 3621, 3711, 3621, 3621, 3855, 3918, 3855, 2809, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3621, 3621, 3621, 3621, 3858, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3621, 3624, 3621, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3887, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3886, 3621, 3621, 3860, 3621, 3621, 3621, 3918, 3918, 3621, 3621, 3621, 3918, 3621, 3621, 3621, 3621, 3711, 3621, 3621, 3918, 3918, 3918, 2807, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3892, 3621, 3621, 3621, 3621, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3621, 3621, 3621, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3621, 3621, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 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, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 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, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 486, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 548, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 578, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 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, 656, 656, 656, 656, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 836, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 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, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 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, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 892, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 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, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 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, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1033, 1033, 1033, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1033, 1033, 1033, 3918, 3918, 1033, 3918, 3918, 3918, 1033, 1037, 1037, 1037, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1037, 3918, 3918, 3918, 1037, 1042, 1042, 1042, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1042, 3918, 3918, 3918, 1042, 3918, 3918, 3918, 1042, 3918, 3918, 1042, 1046, 1046, 1046, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1046, 3918, 3918, 3918, 1046, 1046, 1050, 1050, 1050, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1050, 1050, 3918, 3918, 3918, 1050, 3918, 3918, 3918, 1050, 1056, 1056, 3918, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1085, 1085, 1085, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1085, 1085, 1085, 3918, 3918, 1085, 3918, 3918, 3918, 1085, 1103, 1103, 1103, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1103, 3918, 3918, 3918, 1103, 1108, 1108, 1108, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1108, 1108, 1108, 3918, 3918, 1108, 3918, 3918, 3918, 1108, 1111, 1111, 1111, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1111, 3918, 3918, 3918, 1111, 1133, 1133, 3918, 3918, 3918, 1133, 1133, 3918, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 3918, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 3918, 3918, 1133, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1138, 1138, 3918, 3918, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1140, 1140, 3918, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1148, 1148, 1148, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1148, 1148, 3918, 3918, 3918, 1148, 3918, 3918, 3918, 1148, 1150, 1150, 1150, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1150, 3918, 3918, 3918, 1150, 1154, 1154, 1154, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1154, 1154, 3918, 3918, 3918, 1154, 3918, 3918, 3918, 1154, 1156, 1156, 1156, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1156, 3918, 3918, 3918, 1156, 1157, 1157, 3918, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1173, 1173, 3918, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1179, 1179, 3918, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 3918, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1194, 3918, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1210, 1210, 3918, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1217, 1217, 3918, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1275, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1275, 3918, 3918, 3918, 3918, 3918, 1275, 3918, 3918, 3918, 1275, 1275, 3918, 1275, 3918, 1275, 1302, 1302, 1302, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1302, 1302, 3918, 3918, 3918, 1302, 3918, 3918, 3918, 1302, 1304, 1304, 1304, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1304, 3918, 3918, 3918, 1304, 1307, 1307, 3918, 1307, 3918, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1308, 3918, 1308, 1308, 1308, 1308, 1308, 3918, 3918, 3918, 1308, 3918, 1308, 3918, 1308, 1312, 1312, 3918, 1312, 3918, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1313, 3918, 1313, 1313, 1313, 1313, 1313, 3918, 3918, 3918, 1313, 3918, 1313, 3918, 1313, 1321, 1321, 1321, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1321, 1321, 3918, 3918, 3918, 1321, 3918, 3918, 3918, 1321, 1323, 1323, 1323, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1323, 3918, 3918, 3918, 1323, 1366, 1366, 3918, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1395, 1395, 3918, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1405, 1405, 3918, 1405, 3918, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1406, 3918, 1406, 1406, 1406, 1406, 1406, 3918, 3918, 3918, 1406, 3918, 1406, 3918, 1406, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1415, 1415, 3918, 1415, 3918, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1416, 3918, 1416, 1416, 1416, 1416, 1416, 3918, 3918, 3918, 1416, 3918, 1416, 3918, 1416, 1418, 1418, 3918, 1418, 3918, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1419, 3918, 1419, 1419, 1419, 1419, 1419, 3918, 3918, 3918, 1419, 3918, 1419, 3918, 1419, 1424, 1424, 1424, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1424, 1424, 3918, 3918, 3918, 1424, 3918, 3918, 3918, 1424, 1428, 1428, 1428, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1428, 1428, 3918, 3918, 3918, 1428, 3918, 3918, 3918, 1428, 1430, 1430, 1430, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1430, 3918, 3918, 3918, 1430, 1443, 1443, 1443, 3918, 3918, 1443, 3918, 3918, 3918, 1443, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1443, 3918, 3918, 3918, 1443, 1446, 3918, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 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, 1447, 1447, 1447, 1471, 3918, 1471, 1471, 1471, 1471, 1471, 3918, 3918, 3918, 1471, 3918, 1471, 3918, 1471, 1475, 3918, 1475, 1475, 1475, 1475, 1475, 3918, 3918, 1475, 1475, 3918, 1475, 3918, 1475, 1517, 3918, 3918, 1517, 3918, 3918, 1517, 3918, 1517, 1517, 1517, 1517, 1517, 3918, 3918, 1517, 1517, 3918, 1517, 3918, 1517, 3918, 3918, 1517, 1518, 3918, 3918, 1518, 3918, 3918, 1518, 3918, 1518, 1518, 1518, 1518, 1518, 3918, 3918, 3918, 1518, 3918, 1518, 3918, 1518, 3918, 3918, 1518, 1539, 1539, 3918, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1541, 1541, 3918, 1541, 1541, 3918, 3918, 3918, 1541, 3918, 3918, 3918, 1541, 1545, 1545, 1545, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1545, 1545, 3918, 3918, 3918, 1545, 3918, 3918, 3918, 1545, 1547, 1547, 1547, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1547, 3918, 3918, 3918, 1547, 1553, 3918, 3918, 3918, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1558, 3918, 3918, 3918, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1563, 3918, 3918, 3918, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1580, 3918, 3918, 1580, 1580, 3918, 1580, 3918, 1580, 1580, 1580, 1580, 1580, 3918, 3918, 3918, 1580, 3918, 3918, 3918, 1580, 3918, 3918, 1580, 1583, 1583, 3918, 3918, 3918, 3918, 1583, 3918, 1583, 1583, 3918, 3918, 3918, 1583, 3918, 3918, 3918, 1583, 1584, 1584, 3918, 1584, 3918, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1585, 3918, 1585, 1585, 1585, 1585, 1585, 3918, 3918, 3918, 1585, 3918, 1585, 3918, 1585, 1587, 1587, 3918, 1587, 3918, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1588, 3918, 1588, 1588, 1588, 1588, 1588, 3918, 3918, 3918, 1588, 3918, 1588, 3918, 1588, 1592, 3918, 1592, 1592, 1592, 1592, 3918, 3918, 3918, 3918, 1592, 3918, 3918, 3918, 1592, 1594, 3918, 3918, 3918, 3918, 3918, 1594, 3918, 1594, 1594, 1594, 1594, 1594, 3918, 3918, 1594, 1594, 3918, 3918, 3918, 1594, 3918, 3918, 1594, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 3918, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1602, 3918, 3918, 3918, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1607, 3918, 3918, 3918, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1612, 3918, 3918, 3918, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1617, 3918, 3918, 3918, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1638, 1638, 1638, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1638, 1638, 3918, 3918, 3918, 1638, 3918, 3918, 3918, 1638, 1640, 1640, 1640, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1640, 3918, 3918, 3918, 1640, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 3918, 1641, 1641, 1641, 1641, 1641, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1651, 1651, 3918, 1651, 3918, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1652, 3918, 1652, 1652, 1652, 1652, 1652, 3918, 3918, 3918, 1652, 3918, 1652, 3918, 1652, 1654, 1654, 3918, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1674, 1674, 3918, 1674, 3918, 3918, 3918, 3918, 1674, 3918, 3918, 3918, 1674, 1677, 1677, 3918, 1677, 3918, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1678, 3918, 3918, 3918, 3918, 3918, 1678, 3918, 1678, 1678, 1678, 1678, 1678, 3918, 3918, 1678, 1678, 3918, 3918, 3918, 1678, 3918, 3918, 1678, 1679, 3918, 3918, 3918, 3918, 3918, 1679, 3918, 1679, 1679, 1679, 1679, 1679, 3918, 3918, 1679, 1679, 3918, 1679, 3918, 1679, 3918, 3918, 1679, 1680, 3918, 1680, 1680, 1680, 1680, 1680, 3918, 3918, 3918, 1680, 3918, 1680, 3918, 1680, 1682, 1682, 3918, 1682, 3918, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1683, 3918, 1683, 1683, 1683, 1683, 1683, 3918, 3918, 3918, 1683, 3918, 1683, 3918, 1683, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 3918, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1697, 1697, 3918, 1697, 3918, 1697, 1697, 3918, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 3918, 1697, 1697, 1697, 1697, 1697, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1702, 1702, 3918, 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, 1703, 1703, 3918, 1703, 3918, 1703, 1703, 3918, 3918, 3918, 1703, 1703, 1703, 1703, 1703, 3918, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1706, 1706, 3918, 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, 1706, 1708, 3918, 3918, 3918, 3918, 1708, 1708, 3918, 3918, 3918, 1708, 1708, 1708, 1708, 1708, 3918, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 3918, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1724, 1724, 1724, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1724, 3918, 3918, 3918, 1724, 3918, 3918, 3918, 1724, 3918, 3918, 1724, 1033, 1033, 1033, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1033, 1033, 1033, 3918, 3918, 1033, 3918, 3918, 3918, 1033, 1037, 1037, 1037, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1037, 3918, 3918, 3918, 1037, 1727, 1727, 1727, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1727, 3918, 1727, 3918, 3918, 1727, 3918, 3918, 3918, 1727, 1042, 1042, 1042, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1042, 3918, 3918, 3918, 1042, 3918, 3918, 3918, 1042, 3918, 3918, 1042, 1730, 1730, 1730, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1730, 1730, 3918, 3918, 3918, 1730, 3918, 3918, 3918, 1730, 1732, 1732, 1732, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1732, 3918, 3918, 3918, 1732, 1046, 1046, 1046, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1046, 3918, 3918, 3918, 1046, 1046, 1050, 1050, 1050, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1050, 1050, 3918, 3918, 3918, 1050, 3918, 3918, 3918, 1050, 1740, 1740, 3918, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1763, 1763, 1763, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1763, 1763, 3918, 3918, 3918, 1763, 3918, 3918, 3918, 1763, 1771, 1771, 1771, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1771, 3918, 3918, 3918, 1771, 3918, 3918, 3918, 1771, 3918, 3918, 1771, 1085, 1085, 1085, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1085, 1085, 1085, 3918, 3918, 1085, 3918, 3918, 3918, 1085, 1103, 1103, 1103, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1103, 3918, 3918, 3918, 1103, 1793, 1793, 1793, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1793, 3918, 1793, 3918, 3918, 1793, 3918, 3918, 3918, 1793, 1795, 1795, 1795, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1795, 3918, 3918, 3918, 1795, 3918, 3918, 3918, 1795, 3918, 3918, 1795, 1108, 1108, 1108, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1108, 1108, 1108, 3918, 3918, 1108, 3918, 3918, 3918, 1108, 1111, 1111, 1111, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1111, 3918, 3918, 3918, 1111, 1798, 1798, 1798, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1798, 3918, 1798, 3918, 3918, 1798, 3918, 3918, 3918, 1798, 1133, 1133, 3918, 3918, 3918, 1133, 1133, 3918, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 3918, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 3918, 3918, 1133, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1138, 1138, 3918, 3918, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1811, 1811, 3918, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1817, 1817, 3918, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1820, 1820, 1820, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1820, 3918, 3918, 3918, 1820, 3918, 3918, 3918, 1820, 3918, 3918, 1820, 1148, 1148, 1148, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1148, 1148, 3918, 3918, 3918, 1148, 3918, 3918, 3918, 1148, 1150, 1150, 1150, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1150, 3918, 3918, 3918, 1150, 1824, 1824, 1824, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1824, 3918, 3918, 3918, 1824, 3918, 3918, 3918, 1824, 3918, 3918, 1824, 1154, 1154, 1154, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1154, 1154, 3918, 3918, 3918, 1154, 3918, 3918, 3918, 1154, 1156, 1156, 1156, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1156, 3918, 3918, 3918, 1156, 1828, 1828, 3918, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1831, 1831, 3918, 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, 1179, 1179, 3918, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 3918, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1194, 3918, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1210, 1210, 3918, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1217, 1217, 3918, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 3918, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 3918, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1275, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1275, 3918, 3918, 3918, 3918, 3918, 1275, 3918, 3918, 3918, 1275, 1275, 3918, 1275, 3918, 1275, 1906, 1906, 1906, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1906, 3918, 3918, 3918, 1906, 3918, 3918, 3918, 1906, 3918, 3918, 1906, 1302, 1302, 1302, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1302, 1302, 3918, 3918, 3918, 1302, 3918, 3918, 3918, 1302, 1304, 1304, 1304, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1304, 3918, 3918, 3918, 1304, 1307, 1307, 3918, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1308, 3918, 1308, 1308, 1308, 1308, 1308, 3918, 3918, 3918, 1308, 3918, 1308, 3918, 1308, 1312, 1312, 3918, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1313, 3918, 1313, 1313, 1313, 1313, 1313, 3918, 3918, 3918, 1313, 3918, 1313, 3918, 1313, 1913, 1913, 1913, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1913, 3918, 3918, 3918, 1913, 3918, 3918, 3918, 1913, 3918, 3918, 1913, 1321, 1321, 1321, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1321, 1321, 3918, 3918, 3918, 1321, 3918, 3918, 3918, 1321, 1323, 1323, 1323, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1323, 3918, 3918, 3918, 1323, 1366, 1366, 3918, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 3918, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1395, 1395, 3918, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 3918, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 3918, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1275, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1275, 3918, 3918, 3918, 3918, 3918, 1275, 3918, 3918, 3918, 3918, 1275, 3918, 3918, 3918, 1275, 1405, 1405, 3918, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1406, 3918, 1406, 1406, 1406, 1406, 1406, 3918, 3918, 3918, 1406, 3918, 1406, 3918, 1406, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1415, 1415, 3918, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1416, 3918, 1416, 1416, 1416, 1416, 1416, 3918, 3918, 3918, 1416, 3918, 1416, 3918, 1416, 1418, 1418, 3918, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1419, 3918, 1419, 1419, 1419, 1419, 1419, 3918, 3918, 3918, 1419, 3918, 1419, 3918, 1419, 1424, 1424, 1424, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1424, 1424, 3918, 3918, 3918, 1424, 3918, 3918, 3918, 1424, 1958, 1958, 1958, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1958, 1958, 3918, 3918, 3918, 1958, 3918, 3918, 3918, 1958, 1960, 1960, 1960, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1960, 3918, 3918, 3918, 1960, 3918, 3918, 3918, 1960, 3918, 3918, 1960, 1428, 1428, 1428, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1428, 1428, 3918, 3918, 3918, 1428, 3918, 3918, 3918, 1428, 1430, 1430, 1430, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1430, 3918, 3918, 3918, 1430, 1443, 1443, 1443, 3918, 3918, 1443, 3918, 3918, 3918, 1443, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1443, 3918, 3918, 3918, 1443, 1446, 3918, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 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, 1447, 1447, 1447, 1980, 3918, 3918, 1980, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1980, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 1980, 1471, 3918, 1471, 1471, 1471, 1471, 1471, 3918, 3918, 3918, 1471, 3918, 1471, 3918, 1471, 1982, 3918, 1982, 1982, 1982, 1982, 1982, 3918, 3918, 3918, 1982, 3918, 1982, 3918, 1982, 1985, 3918, 1985, 1985, 1985, 1985, 1985, 3918, 3918, 1985, 1985, 3918, 1985, 3918, 1985, 1475, 3918, 1475, 1475, 1475, 1475, 1475, 3918, 3918, 1475, 1475, 3918, 1475, 3918, 1475, 1987, 3918, 1987, 1987, 1987, 1987, 1987, 3918, 3918, 3918, 1987, 3918, 1987, 3918, 1987, 3918, 3918, 1987, 2072, 3918, 3918, 3918, 3918, 2072, 3918, 3918, 2072, 2072, 3918, 2072, 3918, 3918, 3918, 3918, 2072, 2072, 2072, 3918, 2072, 3918, 3918, 3918, 2072, 1518, 3918, 3918, 1518, 3918, 3918, 1518, 3918, 1518, 1518, 1518, 1518, 1518, 3918, 3918, 3918, 1518, 3918, 1518, 3918, 1518, 3918, 3918, 1518, 1517, 3918, 3918, 1517, 3918, 3918, 1517, 3918, 1517, 1517, 1517, 1517, 1517, 3918, 3918, 1517, 1517, 3918, 1517, 3918, 1517, 3918, 3918, 1517, 1539, 1539, 3918, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1541, 1541, 3918, 1541, 1541, 3918, 3918, 3918, 1541, 3918, 3918, 3918, 1541, 2110, 2110, 2110, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 2110, 3918, 3918, 3918, 2110, 3918, 3918, 3918, 2110, 3918, 3918, 2110, 1545, 1545, 1545, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1545, 1545, 3918, 3918, 3918, 1545, 3918, 3918, 3918, 1545, 1547, 1547, 1547, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1547, 3918, 3918, 3918, 1547, 1553, 3918, 3918, 3918, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1558, 3918, 3918, 3918, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1563, 3918, 3918, 3918, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1580, 3918, 3918, 1580, 1580, 3918, 1580, 3918, 1580, 1580, 1580, 1580, 1580, 3918, 3918, 3918, 1580, 3918, 3918, 3918, 1580, 3918, 3918, 1580, 1583, 1583, 3918, 3918, 3918, 3918, 1583, 3918, 1583, 1583, 3918, 3918, 3918, 1583, 3918, 3918, 3918, 1583, 1584, 1584, 3918, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1585, 3918, 1585, 1585, 1585, 1585, 1585, 3918, 3918, 3918, 1585, 3918, 1585, 3918, 1585, 1587, 1587, 3918, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1588, 3918, 1588, 1588, 1588, 1588, 1588, 3918, 3918, 3918, 1588, 3918, 1588, 3918, 1588, 1592, 3918, 1592, 1592, 1592, 1592, 3918, 3918, 3918, 3918, 1592, 3918, 3918, 3918, 1592, 1594, 3918, 3918, 3918, 3918, 3918, 1594, 3918, 1594, 1594, 1594, 1594, 1594, 3918, 3918, 1594, 1594, 3918, 3918, 3918, 1594, 3918, 3918, 1594, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 3918, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1602, 3918, 3918, 3918, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1607, 3918, 3918, 3918, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1612, 3918, 3918, 3918, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1617, 3918, 3918, 3918, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 2127, 2127, 2127, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 2127, 3918, 3918, 3918, 2127, 3918, 3918, 3918, 2127, 3918, 3918, 2127, 1638, 1638, 1638, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1638, 1638, 3918, 3918, 3918, 1638, 3918, 3918, 3918, 1638, 1640, 1640, 1640, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1640, 3918, 3918, 3918, 1640, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 3918, 1641, 1641, 1641, 1641, 1641, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1651, 1651, 3918, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1652, 3918, 1652, 1652, 1652, 1652, 1652, 3918, 3918, 3918, 1652, 3918, 1652, 3918, 1652, 1654, 1654, 3918, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1674, 1674, 3918, 1674, 3918, 3918, 3918, 3918, 1674, 3918, 3918, 3918, 1674, 1677, 1677, 3918, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1678, 3918, 3918, 3918, 3918, 3918, 1678, 3918, 1678, 1678, 1678, 1678, 1678, 3918, 3918, 1678, 1678, 3918, 3918, 3918, 1678, 3918, 3918, 1678, 1679, 3918, 3918, 3918, 3918, 3918, 1679, 3918, 1679, 1679, 1679, 1679, 1679, 3918, 3918, 1679, 1679, 3918, 1679, 3918, 1679, 3918, 3918, 1679, 1680, 3918, 1680, 1680, 1680, 1680, 1680, 3918, 3918, 3918, 1680, 3918, 1680, 3918, 1680, 1682, 1682, 3918, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1683, 3918, 1683, 1683, 1683, 1683, 1683, 3918, 3918, 3918, 1683, 3918, 1683, 3918, 1683, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 3918, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1697, 1697, 3918, 1697, 3918, 1697, 1697, 3918, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 3918, 1697, 1697, 1697, 1697, 1697, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1703, 1703, 3918, 1703, 3918, 1703, 1703, 3918, 3918, 3918, 1703, 1703, 1703, 1703, 1703, 3918, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 2143, 2143, 3918, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 1708, 3918, 3918, 3918, 3918, 1708, 1708, 3918, 3918, 3918, 1708, 1708, 1708, 1708, 1708, 3918, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1724, 1724, 1724, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1724, 3918, 3918, 3918, 1724, 3918, 3918, 3918, 1724, 3918, 3918, 1724, 1033, 1033, 1033, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1033, 1033, 1033, 3918, 3918, 1033, 3918, 3918, 3918, 1033, 1037, 1037, 1037, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1037, 3918, 3918, 3918, 1037, 1727, 1727, 1727, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1727, 3918, 1727, 3918, 3918, 1727, 3918, 3918, 3918, 1727, 1042, 1042, 1042, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1042, 3918, 3918, 3918, 1042, 3918, 3918, 3918, 1042, 3918, 3918, 1042, 1730, 1730, 1730, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1730, 1730, 3918, 3918, 3918, 1730, 3918, 3918, 3918, 1730, 1732, 1732, 1732, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1732, 3918, 3918, 3918, 1732, 1046, 1046, 1046, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1046, 3918, 3918, 3918, 1046, 1763, 1763, 1763, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1763, 1763, 3918, 3918, 3918, 1763, 3918, 3918, 3918, 1763, 2182, 2182, 2182, 2182, 2182, 2182, 2182, 2182, 2182, 2182, 3918, 2182, 2182, 2182, 2182, 3918, 2182, 2182, 2182, 2182, 2182, 2182, 2182, 2182, 2182, 2182, 2182, 2182, 2182, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 3918, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 2184, 1771, 1771, 1771, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1771, 3918, 3918, 3918, 1771, 3918, 3918, 3918, 1771, 3918, 3918, 1771, 1085, 1085, 1085, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1085, 1085, 1085, 3918, 3918, 1085, 3918, 3918, 3918, 1085, 1103, 1103, 1103, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1103, 3918, 3918, 3918, 1103, 1793, 1793, 1793, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1793, 3918, 1793, 3918, 3918, 1793, 3918, 3918, 3918, 1793, 1795, 1795, 1795, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1795, 3918, 3918, 3918, 1795, 3918, 3918, 3918, 1795, 3918, 3918, 1795, 1108, 1108, 1108, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1108, 1108, 1108, 3918, 3918, 1108, 3918, 3918, 3918, 1108, 1111, 1111, 1111, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1111, 3918, 3918, 3918, 1111, 1798, 1798, 1798, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1798, 3918, 1798, 3918, 3918, 1798, 3918, 3918, 3918, 1798, 1817, 1817, 3918, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1820, 1820, 1820, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1820, 3918, 3918, 3918, 1820, 3918, 3918, 3918, 1820, 3918, 3918, 1820, 1148, 1148, 1148, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1148, 1148, 3918, 3918, 3918, 1148, 3918, 3918, 3918, 1148, 1150, 1150, 1150, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1150, 3918, 3918, 3918, 1150, 1824, 1824, 1824, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1824, 3918, 3918, 3918, 1824, 3918, 3918, 3918, 1824, 3918, 3918, 1824, 1154, 1154, 1154, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1154, 1154, 3918, 3918, 3918, 1154, 3918, 3918, 3918, 1154, 1156, 1156, 1156, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1156, 3918, 3918, 3918, 1156, 1831, 1831, 3918, 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, 1194, 3918, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1217, 1217, 3918, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1906, 1906, 1906, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1906, 3918, 3918, 3918, 1906, 3918, 3918, 3918, 1906, 3918, 3918, 1906, 1302, 1302, 1302, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1302, 1302, 3918, 3918, 3918, 1302, 3918, 3918, 3918, 1302, 1304, 1304, 1304, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1304, 3918, 3918, 3918, 1304, 1913, 1913, 1913, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1913, 3918, 3918, 3918, 1913, 3918, 3918, 3918, 1913, 3918, 3918, 1913, 1321, 1321, 1321, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1321, 1321, 3918, 3918, 3918, 1321, 3918, 3918, 3918, 1321, 1323, 1323, 1323, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1323, 3918, 3918, 3918, 1323, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 3918, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1945, 1945, 3918, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 3918, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 1945, 2295, 2295, 2295, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 2295, 3918, 3918, 3918, 2295, 3918, 3918, 3918, 2295, 1958, 1958, 1958, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1958, 1958, 3918, 3918, 3918, 1958, 3918, 3918, 3918, 1958, 1960, 1960, 1960, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1960, 3918, 3918, 3918, 1960, 3918, 3918, 3918, 1960, 3918, 3918, 1960, 1428, 1428, 1428, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1428, 1428, 3918, 3918, 3918, 1428, 3918, 3918, 3918, 1428, 1430, 1430, 1430, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1430, 3918, 3918, 3918, 1430, 1446, 3918, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1980, 3918, 3918, 1980, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1980, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 1980, 1982, 3918, 1982, 1982, 1982, 1982, 1982, 3918, 3918, 3918, 1982, 3918, 1982, 3918, 1982, 1985, 3918, 1985, 1985, 1985, 1985, 1985, 3918, 3918, 1985, 1985, 3918, 1985, 3918, 1985, 2311, 3918, 3918, 2311, 3918, 3918, 2311, 3918, 2311, 2311, 2311, 2311, 2311, 3918, 3918, 3918, 2311, 3918, 2311, 3918, 2311, 3918, 3918, 2311, 2347, 2347, 3918, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2373, 2373, 3918, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2383, 2383, 3918, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2072, 3918, 3918, 3918, 3918, 2072, 3918, 3918, 2072, 2072, 3918, 2072, 3918, 3918, 3918, 3918, 2072, 2072, 2072, 3918, 2072, 3918, 3918, 3918, 2072, 1987, 3918, 1987, 1987, 1987, 1987, 1987, 3918, 3918, 3918, 1987, 3918, 1987, 3918, 1987, 3918, 3918, 1987, 1471, 3918, 1471, 1471, 1471, 1471, 1471, 3918, 3918, 3918, 1471, 3918, 1471, 3918, 1471, 1517, 3918, 3918, 1517, 3918, 3918, 1517, 3918, 1517, 1517, 1517, 1517, 1517, 3918, 3918, 1517, 1517, 3918, 1517, 3918, 1517, 3918, 3918, 1517, 2110, 2110, 2110, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 2110, 3918, 3918, 3918, 2110, 3918, 3918, 3918, 2110, 3918, 3918, 2110, 1545, 1545, 1545, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1545, 1545, 3918, 3918, 3918, 1545, 3918, 3918, 3918, 1545, 1547, 1547, 1547, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1547, 3918, 3918, 3918, 1547, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 2127, 2127, 2127, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 2127, 3918, 3918, 3918, 2127, 3918, 3918, 3918, 2127, 3918, 3918, 2127, 1638, 1638, 1638, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1638, 1638, 3918, 3918, 3918, 1638, 3918, 3918, 3918, 1638, 1640, 1640, 1640, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1640, 3918, 3918, 3918, 1640, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 3918, 1641, 1641, 1641, 1641, 1641, 1674, 1674, 3918, 1674, 3918, 3918, 3918, 3918, 1674, 3918, 3918, 3918, 1674, 1042, 1042, 1042, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1042, 3918, 3918, 3918, 1042, 3918, 3918, 3918, 1042, 3918, 3918, 1042, 1046, 1046, 1046, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1046, 3918, 3918, 3918, 1046, 1080, 1080, 1080, 3918, 3918, 3918, 3918, 3918, 3918, 1080, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1080, 3918, 3918, 3918, 1080, 1085, 1085, 1085, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1085, 1085, 1085, 3918, 3918, 1085, 3918, 3918, 3918, 1085, 1831, 1831, 3918, 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, 1194, 3918, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 2596, 2596, 3918, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2295, 2295, 2295, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 2295, 3918, 3918, 3918, 2295, 3918, 3918, 3918, 2295, 2620, 2620, 2620, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 2620, 2620, 3918, 3918, 3918, 2620, 3918, 3918, 3918, 2620, 1446, 3918, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 2311, 3918, 3918, 2311, 3918, 3918, 2311, 3918, 2311, 2311, 2311, 2311, 2311, 3918, 3918, 3918, 2311, 3918, 2311, 3918, 2311, 3918, 3918, 2311, 2633, 2633, 3918, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2635, 2635, 3918, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2657, 2657, 3918, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2664, 2664, 3918, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2347, 2347, 3918, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2682, 2682, 3918, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2686, 2686, 3918, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2690, 2690, 3918, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2692, 2692, 3918, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2694, 2694, 3918, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2697, 2697, 3918, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2699, 2699, 3918, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2701, 2701, 3918, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2704, 2704, 3918, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2373, 2373, 3918, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2709, 2709, 3918, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2713, 2713, 3918, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2383, 2383, 3918, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2383, 2724, 2724, 3918, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2726, 2726, 3918, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2728, 2728, 3918, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2730, 2730, 3918, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2311, 3918, 3918, 2311, 3918, 3918, 2311, 3918, 2311, 2311, 2311, 2311, 2311, 3918, 3918, 3918, 2311, 3918, 2311, 3918, 2311, 3918, 3918, 2311, 1471, 3918, 1471, 1471, 1471, 1471, 1471, 3918, 3918, 3918, 1471, 3918, 1471, 3918, 1471, 2808, 3918, 3918, 3918, 3918, 3918, 2808, 3918, 2808, 2808, 2808, 2808, 2808, 3918, 3918, 2808, 2808, 3918, 2808, 3918, 2808, 3918, 3918, 2808, 1517, 3918, 3918, 1517, 3918, 3918, 1517, 3918, 1517, 1517, 1517, 1517, 1517, 3918, 3918, 1517, 1517, 3918, 1517, 3918, 1517, 3918, 3918, 1517, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 3918, 1641, 1641, 1641, 1641, 1641, 1674, 1674, 3918, 1674, 3918, 3918, 3918, 3918, 1674, 3918, 3918, 3918, 1674, 1080, 1080, 1080, 3918, 3918, 3918, 3918, 3918, 3918, 1080, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1080, 3918, 3918, 3918, 1080, 1085, 1085, 1085, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1085, 1085, 1085, 3918, 3918, 1085, 3918, 3918, 3918, 1085, 1831, 1831, 3918, 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, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 1194, 3918, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 2884, 2884, 3918, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 3918, 2892, 2892, 2892, 2892, 3918, 2892, 2892, 2892, 3918, 2892, 2892, 2892, 2596, 2596, 3918, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2596, 2620, 2620, 2620, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 2620, 2620, 3918, 3918, 3918, 2620, 3918, 3918, 3918, 2620, 1446, 3918, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1980, 3918, 3918, 1980, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1980, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 1980, 2633, 2633, 3918, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2633, 2635, 2635, 3918, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2635, 2958, 2958, 3918, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2962, 2962, 3918, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2964, 2964, 3918, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2966, 2966, 3918, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2969, 2969, 3918, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2971, 2971, 3918, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2973, 2973, 3918, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2657, 2657, 3918, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2657, 2976, 2976, 3918, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2979, 2979, 3918, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2664, 2664, 3918, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2664, 2990, 2990, 3918, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2992, 2992, 3918, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2994, 2994, 3918, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2996, 2996, 3918, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2682, 2682, 3918, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2686, 2686, 3918, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 2686, 3005, 3005, 3918, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 2690, 2690, 3918, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2690, 2692, 2692, 3918, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2692, 2694, 2694, 3918, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2697, 2697, 3918, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2697, 2699, 2699, 3918, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2699, 2701, 2701, 3918, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2704, 2704, 3918, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 3011, 3011, 3918, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 2709, 2709, 3918, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2709, 2713, 2713, 3918, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 3017, 3017, 3918, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3021, 3021, 3918, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3023, 3023, 3918, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 2724, 2724, 3918, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2726, 2726, 3918, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2726, 2728, 2728, 3918, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2728, 2730, 2730, 3918, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 2730, 3026, 3026, 3918, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 2311, 3918, 3918, 2311, 3918, 3918, 2311, 3918, 2311, 2311, 2311, 2311, 2311, 3918, 3918, 3918, 2311, 3918, 2311, 3918, 2311, 3918, 3918, 2311, 1471, 3918, 1471, 1471, 1471, 1471, 1471, 3918, 3918, 3918, 1471, 3918, 1471, 3918, 1471, 3067, 3067, 3918, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 2807, 3918, 3918, 3918, 3918, 3918, 2807, 3918, 2807, 2807, 2807, 2807, 2807, 3918, 3918, 2807, 2807, 3918, 3918, 3918, 2807, 3918, 3918, 2807, 2808, 3918, 3918, 3918, 3918, 3918, 2808, 3918, 2808, 2808, 2808, 2808, 2808, 3918, 3918, 2808, 2808, 3918, 2808, 3918, 2808, 3918, 3918, 2808, 3099, 3918, 3918, 3918, 3918, 3918, 3099, 3918, 3099, 3099, 3099, 3099, 3099, 3918, 3918, 3099, 3099, 3918, 3099, 3918, 3099, 3918, 3918, 3099, 3101, 3918, 3918, 3918, 3918, 3918, 3101, 3918, 3101, 3101, 3101, 3101, 3101, 3918, 3918, 3101, 3101, 3918, 3101, 3918, 3101, 3918, 3918, 3101, 1517, 3918, 3918, 1517, 3918, 3918, 1517, 3918, 1517, 1517, 1517, 1517, 1517, 3918, 3918, 1517, 1517, 3918, 1517, 3918, 1517, 3918, 3918, 1517, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 3918, 1641, 1641, 1641, 1641, 1641, 1674, 1674, 3918, 1674, 3918, 3918, 3918, 3918, 1674, 3918, 3918, 3918, 1674, 1085, 1085, 1085, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1085, 1085, 1085, 3918, 3918, 1085, 3918, 3918, 3918, 1085, 1831, 1831, 3918, 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, 3165, 3165, 3918, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 1194, 3918, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 2884, 2884, 3918, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 2884, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3918, 3170, 3170, 3170, 3170, 3918, 3170, 3170, 3170, 3918, 3170, 3170, 3170, 1446, 3918, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1980, 3918, 3918, 1980, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1980, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 1980, 2958, 2958, 3918, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 2958, 3227, 3227, 3918, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 2962, 2962, 3918, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2964, 2964, 3918, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2966, 2966, 3918, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2969, 2969, 3918, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2971, 2971, 3918, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2973, 2973, 3918, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2976, 2976, 3918, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2979, 2979, 3918, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2979, 3234, 3234, 3918, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3238, 3238, 3918, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3240, 3240, 3918, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 2990, 2990, 3918, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2992, 2992, 3918, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2994, 2994, 3918, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2994, 2996, 2996, 3918, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 3243, 3243, 3918, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3245, 3245, 3918, 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, 3248, 3248, 3918, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3005, 3005, 3918, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3250, 3250, 3918, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3252, 3252, 3918, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3011, 3011, 3918, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3011, 3256, 3256, 3918, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3017, 3017, 3918, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3017, 3021, 3021, 3918, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3023, 3023, 3918, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3026, 3026, 3918, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 2311, 3918, 3918, 2311, 3918, 3918, 2311, 3918, 2311, 2311, 2311, 2311, 2311, 3918, 3918, 3918, 2311, 3918, 2311, 3918, 2311, 3918, 3918, 2311, 1471, 3918, 1471, 1471, 1471, 1471, 1471, 3918, 3918, 3918, 1471, 3918, 1471, 3918, 1471, 3066, 3066, 3918, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3067, 3067, 3918, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3296, 3296, 3918, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3099, 3918, 3918, 3918, 3918, 3918, 3099, 3918, 3099, 3099, 3099, 3099, 3099, 3918, 3918, 3099, 3099, 3918, 3099, 3918, 3099, 3918, 3918, 3099, 3328, 3918, 3918, 3328, 3918, 3918, 3328, 3918, 3328, 3328, 3328, 3328, 3328, 3918, 3918, 3328, 3328, 3918, 3328, 3918, 3328, 3918, 3918, 3328, 3330, 3918, 3918, 3918, 3918, 3918, 3330, 3918, 3330, 3330, 3330, 3330, 3330, 3918, 3918, 3330, 3330, 3918, 3918, 3918, 3330, 3918, 3918, 3330, 1517, 3918, 3918, 1517, 3918, 3918, 1517, 3918, 1517, 1517, 1517, 1517, 1517, 3918, 3918, 1517, 1517, 3918, 1517, 3918, 1517, 3918, 3918, 1517, 3334, 3334, 3918, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 3918, 1641, 1641, 1641, 1641, 1641, 1085, 1085, 1085, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1085, 1085, 1085, 3918, 3918, 1085, 3918, 3918, 3918, 1085, 3165, 3165, 3918, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 1194, 3918, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 1446, 3918, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1980, 3918, 3918, 1980, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1980, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 1980, 3422, 3422, 3918, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3425, 3425, 3918, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3227, 3227, 3918, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3227, 3427, 3427, 3918, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3429, 3429, 3918, 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, 3234, 3234, 3918, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3238, 3238, 3918, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3240, 3240, 3918, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3243, 3243, 3918, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3243, 3245, 3245, 3918, 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, 3248, 3248, 3918, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3248, 3250, 3250, 3918, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3250, 3252, 3252, 3918, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3252, 3439, 3439, 3918, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3256, 3256, 3918, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3256, 3442, 3442, 3918, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3446, 3446, 3918, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 2311, 3918, 3918, 2311, 3918, 3918, 2311, 3918, 2311, 2311, 2311, 2311, 2311, 3918, 3918, 3918, 2311, 3918, 2311, 3918, 2311, 3918, 3918, 2311, 1471, 3918, 1471, 1471, 1471, 1471, 1471, 3918, 3918, 3918, 1471, 3918, 1471, 3918, 1471, 3296, 3296, 3918, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3330, 3918, 3918, 3918, 3918, 3918, 3330, 3918, 3330, 3330, 3330, 3330, 3330, 3918, 3918, 3330, 3330, 3918, 3918, 3918, 3330, 3918, 3918, 3330, 3328, 3918, 3918, 3328, 3918, 3918, 3328, 3918, 3328, 3328, 3328, 3328, 3328, 3918, 3918, 3328, 3328, 3918, 3328, 3918, 3328, 3918, 3918, 3328, 2808, 3918, 3918, 3918, 3918, 3918, 2808, 3918, 2808, 2808, 2808, 2808, 2808, 3918, 3918, 2808, 2808, 3918, 2808, 3918, 2808, 3918, 3918, 2808, 3497, 3918, 3918, 3497, 3918, 3918, 3497, 3918, 3497, 3497, 3497, 3497, 3497, 3918, 3918, 3497, 3497, 3918, 3918, 3918, 3497, 3918, 3918, 3497, 1517, 3918, 3918, 1517, 3918, 3918, 1517, 3918, 1517, 1517, 1517, 1517, 1517, 3918, 3918, 1517, 1517, 3918, 1517, 3918, 1517, 3918, 3918, 1517, 3334, 3334, 3918, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 3334, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 3918, 1641, 1641, 1641, 1641, 1641, 3510, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3510, 3918, 3510, 3918, 3918, 3918, 3918, 3510, 3918, 3918, 3918, 3510, 1085, 1085, 1085, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1085, 1085, 1085, 3918, 3918, 1085, 3918, 3918, 3918, 1085, 1194, 3918, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 3918, 1194, 1194, 1194, 1194, 1194, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 1446, 3918, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1980, 3918, 3918, 1980, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1980, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 1980, 3422, 3422, 3918, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3425, 3425, 3918, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3427, 3427, 3918, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3427, 3429, 3429, 3918, 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, 3571, 3571, 3918, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3575, 3575, 3918, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3577, 3577, 3918, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3439, 3439, 3918, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3439, 3442, 3442, 3918, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3580, 3580, 3918, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3446, 3446, 3918, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3446, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3586, 3918, 3586, 3586, 3586, 3586, 3918, 3586, 3586, 3586, 3918, 3586, 3586, 3586, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3587, 3918, 3587, 3587, 3587, 3587, 3918, 3587, 3587, 3587, 3918, 3587, 3587, 3587, 2311, 3918, 3918, 2311, 3918, 3918, 2311, 3918, 2311, 2311, 2311, 2311, 2311, 3918, 3918, 3918, 2311, 3918, 2311, 3918, 2311, 3918, 3918, 2311, 1471, 3918, 1471, 1471, 1471, 1471, 1471, 3918, 3918, 3918, 1471, 3918, 1471, 3918, 1471, 3328, 3918, 3918, 3328, 3918, 3918, 3328, 3918, 3328, 3328, 3328, 3328, 3328, 3918, 3918, 3328, 3328, 3918, 3328, 3918, 3328, 3918, 3918, 3328, 3497, 3918, 3918, 3497, 3918, 3918, 3497, 3918, 3497, 3497, 3497, 3497, 3497, 3918, 3918, 3497, 3497, 3918, 3918, 3918, 3497, 3918, 3918, 3497, 2807, 3918, 3918, 3918, 3918, 3918, 2807, 3918, 2807, 2807, 2807, 2807, 2807, 3918, 3918, 2807, 2807, 3918, 3918, 3918, 2807, 3918, 3918, 2807, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3634, 3918, 3634, 3634, 3634, 3634, 3918, 3634, 3634, 3634, 3918, 3634, 3634, 3634, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 3918, 1641, 1641, 1641, 1641, 1641, 3639, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3639, 3918, 3639, 3918, 3918, 3918, 3918, 3639, 3918, 3918, 3918, 3639, 1085, 1085, 1085, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1085, 1085, 1085, 3918, 3918, 1085, 3918, 3918, 3918, 1085, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 3918, 3667, 3667, 3667, 3667, 3918, 3667, 3667, 3667, 3918, 3667, 3667, 3667, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 3560, 1446, 3918, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1980, 3918, 3918, 1980, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1980, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 1980, 3676, 3676, 3918, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3571, 3571, 3918, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3679, 3679, 3918, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3575, 3575, 3918, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3577, 3577, 3918, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3580, 3580, 3918, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3688, 3918, 3688, 3688, 3688, 3688, 3918, 3688, 3688, 3688, 3918, 3688, 3688, 3688, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3918, 3693, 3693, 3693, 3693, 3918, 3693, 3693, 3693, 3918, 3693, 3693, 3693, 2311, 3918, 3918, 2311, 3918, 3918, 2311, 3918, 2311, 2311, 2311, 2311, 2311, 3918, 3918, 3918, 2311, 3918, 2311, 3918, 2311, 3918, 3918, 2311, 1471, 1471, 1471, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1471, 3918, 1471, 1471, 1471, 1471, 1471, 3918, 3918, 3918, 1471, 3918, 1471, 3918, 1471, 1982, 3918, 1982, 1982, 1982, 1982, 1982, 3918, 3918, 3918, 1982, 3918, 1982, 3918, 1982, 3328, 3918, 3918, 3328, 3918, 3918, 3328, 3918, 3328, 3328, 3328, 3328, 3328, 3918, 3918, 3328, 3328, 3918, 3328, 3918, 3328, 3918, 3918, 3328, 3330, 3918, 3918, 3918, 3918, 3918, 3330, 3918, 3330, 3330, 3330, 3330, 3330, 3918, 3918, 3330, 3330, 3918, 3918, 3918, 3330, 3918, 3918, 3330, 3621, 3621, 3918, 3918, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3918, 3621, 3918, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3713, 3918, 3918, 3918, 3918, 3713, 3918, 3918, 3713, 3713, 3918, 3713, 3918, 3918, 3918, 3918, 3713, 3713, 3713, 3918, 3713, 3918, 3918, 3918, 3713, 3624, 3624, 3918, 3918, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3918, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 3918, 1568, 1568, 1568, 1568, 1568, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 3918, 1641, 1641, 1641, 1641, 1641, 1085, 1085, 1085, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1085, 1085, 1085, 3918, 3918, 1085, 3918, 3918, 3918, 1085, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3918, 3738, 3738, 3738, 3738, 3918, 3738, 3738, 3738, 3918, 3738, 3738, 3738, 3739, 3739, 3918, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3918, 3741, 3741, 3741, 3741, 3918, 3741, 3741, 3741, 3918, 3741, 3741, 3741, 1446, 3918, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1980, 3918, 3918, 1980, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1980, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 1980, 3676, 3676, 3918, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3679, 3679, 3918, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3750, 3750, 3918, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3750, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3754, 3918, 3754, 3754, 3754, 3754, 3918, 3754, 3754, 3754, 3918, 3754, 3754, 3754, 2311, 3918, 3918, 2311, 3918, 3918, 2311, 3918, 2311, 2311, 2311, 2311, 2311, 3918, 3918, 3918, 2311, 3918, 2311, 3918, 2311, 3918, 3918, 2311, 1471, 3918, 1471, 1471, 1471, 1471, 1471, 3918, 3918, 3918, 1471, 3918, 1471, 3918, 1471, 1982, 3918, 1982, 1982, 1982, 1982, 1982, 3918, 3918, 3918, 1982, 3918, 1982, 3918, 1982, 3328, 3918, 3918, 3328, 3918, 3918, 3328, 3918, 3328, 3328, 3328, 3328, 3328, 3918, 3918, 3328, 3328, 3918, 3328, 3918, 3328, 3918, 3918, 3328, 3497, 3918, 3918, 3497, 3918, 3918, 3497, 3918, 3497, 3497, 3497, 3497, 3497, 3918, 3918, 3497, 3497, 3918, 3918, 3918, 3497, 3918, 3918, 3497, 3771, 3918, 3918, 3918, 3918, 3771, 3918, 3918, 3771, 3771, 3918, 3771, 3918, 3918, 3918, 3918, 3918, 3771, 3771, 3918, 3771, 3918, 3918, 3918, 3771, 3713, 3918, 3918, 3918, 3918, 3713, 3918, 3918, 3713, 3713, 3918, 3713, 3918, 3918, 3918, 3918, 3713, 3713, 3713, 3918, 3713, 3918, 3918, 3918, 3713, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 3918, 1641, 1641, 1641, 1641, 1641, 1085, 1085, 1085, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1085, 1085, 1085, 3918, 3918, 1085, 3918, 3918, 3918, 1085, 3739, 3739, 3918, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 3739, 1446, 3918, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 3918, 1446, 1446, 1446, 1446, 1446, 1980, 3918, 3918, 1980, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 1980, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 3918, 1980, 3918, 3918, 1980, 3796, 3796, 3918, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3621, 3621, 3918, 3918, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3918, 3621, 3918, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3621, 3813, 3918, 3918, 3918, 3918, 3813, 3918, 3918, 3813, 3813, 3918, 3813, 3918, 3918, 3918, 3918, 3918, 3813, 3813, 3918, 3813, 3918, 3918, 3918, 3813, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3829, 3918, 3829, 3829, 3829, 3829, 3918, 3829, 3829, 3829, 3918, 3829, 3829, 3829, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3840, 3918, 3840, 3840, 3840, 3840, 3918, 3840, 3840, 3840, 3918, 3840, 3840, 3840, 3844, 3844, 3844, 3844, 3844, 3844, 3844, 3844, 3844, 3844, 3844, 3844, 3844, 3844, 3844, 3844, 3918, 3844, 3844, 3844, 3844, 3918, 3844, 3844, 3844, 3918, 3844, 3844, 3844, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3918, 3864, 3864, 3864, 3864, 3918, 3864, 3864, 3864, 3918, 3864, 3864, 3864, 3855, 3855, 3918, 3918, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3918, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3858, 3858, 3918, 3918, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3918, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 281, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918 } ; static yyconst short int yy_chk[34104] = { 0, 0, 1, 0, 1, 1, 2, 307, 2, 2, 307, 308, 308, 308, 308, 0, 347, 286, 292, 299, 347, 1, 286, 292, 299, 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, 811, 5, 5, 6, 811, 6, 6, 7, 7, 7, 7, 7, 5, 7, 464, 464, 6, 9, 5, 9, 9, 10, 6, 10, 10, 2180, 7, 8, 8, 8, 8, 8, 493, 8, 493, 15, 9, 15, 15, 16, 10, 16, 16, 483, 483, 1713, 8, 35, 148, 35, 35, 148, 318, 63, 15, 63, 63, 318, 16, 35, 35, 328, 7, 15, 328, 15, 35, 16, 334, 16, 1713, 335, 63, 334, 335, 148, 350, 368, 368, 368, 368, 350, 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, 346, 21, 21, 346, 1067, 21, 309, 379, 19, 309, 21, 21, 379, 20, 1067, 21, 383, 22, 21, 22, 22, 383, 396, 22, 2183, 402, 21, 396, 22, 22, 402, 544, 64, 22, 64, 64, 22, 29, 29, 29, 29, 29, 485, 485, 22, 1280, 30, 30, 30, 30, 30, 64, 406, 29, 418, 544, 29, 406, 423, 418, 346, 19, 30, 423, 433, 30, 20, 19, 36, 433, 36, 36, 20, 33, 33, 33, 33, 33, 457, 463, 36, 36, 21, 457, 463, 33, 33, 36, 309, 33, 648, 1280, 33, 374, 374, 374, 374, 672, 648, 672, 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, 627, 31, 31, 627, 472, 32, 31, 32, 32, 472, 1241, 31, 32, 395, 395, 395, 395, 32, 31, 627, 41, 1241, 41, 41, 32, 31, 31, 321, 321, 321, 321, 32, 32, 34, 34, 34, 34, 34, 39, 41, 39, 39, 478, 484, 2206, 34, 34, 478, 484, 34, 39, 40, 34, 40, 40, 491, 42, 39, 42, 42, 491, 736, 61, 40, 61, 61, 39, 507, 542, 736, 40, 487, 507, 487, 41, 42, 41, 460, 556, 40, 460, 61, 31, 460, 45, 487, 45, 45, 32, 37, 37, 37, 37, 37, 542, 43, 43, 43, 43, 43, 512, 43, 513, 45, 556, 512, 43, 513, 37, 321, 42, 45, 42, 1236, 43, 37, 37, 61, 37, 1236, 44, 44, 44, 44, 44, 46, 44, 46, 46, 558, 647, 44, 51, 1024, 51, 51, 519, 488, 51, 44, 488, 519, 1024, 51, 46, 55, 51, 55, 55, 37, 488, 51, 46, 558, 45, 572, 532, 301, 301, 301, 301, 532, 647, 37, 55, 37, 53, 37, 53, 53, 646, 496, 37, 38, 38, 38, 38, 38, 43, 43, 53, 572, 301, 496, 528, 53, 528, 54, 496, 54, 54, 57, 38, 57, 57, 46, 646, 57, 528, 38, 38, 54, 38, 44, 44, 57, 54, 2207, 533, 67, 57, 67, 67, 533, 2208, 51, 51, 390, 390, 390, 390, 53, 65, 65, 65, 65, 65, 503, 67, 55, 503, 511, 390, 38, 511, 68, 65, 68, 68, 301, 503, 65, 54, 540, 511, 546, 57, 38, 540, 38, 546, 38, 2209, 679, 68, 679, 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, 52, 52, 52, 52, 52, 690, 52, 52, 2213, 690, 56, 52, 56, 56, 52, 803, 690, 547, 58, 52, 58, 58, 547, 803, 58, 59, 571, 59, 59, 56, 555, 60, 58, 60, 60, 555, 735, 58, 62, 59, 62, 62, 1649, 571, 59, 60, 295, 295, 295, 295, 60, 66, 66, 66, 66, 66, 69, 62, 69, 69, 70, 563, 70, 70, 295, 66, 563, 571, 735, 71, 66, 71, 71, 58, 727, 69, 727, 536, 1025, 70, 536, 71, 71, 52, 52, 2218, 570, 72, 71, 72, 72, 570, 1025, 62, 56, 296, 296, 296, 296, 72, 72, 73, 73, 73, 73, 73, 72, 536, 59, 93, 1649, 93, 93, 296, 60, 73, 297, 297, 297, 297, 73, 2220, 74, 74, 74, 74, 74, 689, 93, 73, 1030, 536, 73, 1030, 297, 77, 74, 77, 77, 69, 69, 74, 866, 70, 70, 75, 75, 75, 75, 75, 74, 2075, 873, 74, 77, 689, 73, 76, 76, 76, 76, 76, 689, 77, 75, 77, 576, 78, 866, 78, 78, 576, 922, 75, 922, 75, 76, 74, 577, 79, 873, 79, 79, 577, 583, 76, 78, 76, 587, 583, 865, 79, 79, 587, 2075, 78, 914, 78, 79, 80, 2221, 80, 80, 417, 417, 417, 417, 428, 428, 428, 428, 80, 80, 914, 932, 417, 932, 865, 80, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 83, 83, 83, 83, 83, 1516, 84, 84, 84, 84, 84, 1169, 1169, 1516, 83, 322, 322, 322, 322, 83, 84, 429, 429, 429, 429, 84, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 87, 87, 87, 87, 87, 2222, 85, 85, 85, 85, 85, 85, 590, 94, 87, 94, 94, 590, 87, 87, 1035, 603, 107, 1035, 107, 107, 603, 108, 87, 108, 108, 87, 94, 609, 85, 85, 85, 101, 609, 101, 101, 107, 123, 616, 123, 123, 108, 636, 616, 101, 322, 101, 636, 1081, 2223, 87, 101, 323, 323, 323, 323, 123, 1081, 85, 85, 85, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 88, 88, 88, 88, 88, 2225, 86, 86, 86, 86, 86, 86, 614, 925, 88, 614, 2227, 925, 88, 88, 124, 101, 124, 124, 109, 614, 109, 109, 88, 2228, 102, 88, 102, 102, 86, 86, 86, 109, 110, 124, 110, 110, 102, 109, 102, 391, 391, 391, 391, 102, 1868, 110, 323, 645, 653, 88, 662, 110, 645, 653, 391, 662, 1868, 86, 86, 86, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 91, 91, 91, 91, 91, 2229, 89, 89, 89, 89, 89, 89, 1112, 127, 102, 127, 127, 641, 927, 91, 641, 1112, 927, 117, 117, 117, 117, 117, 668, 2230, 641, 91, 127, 668, 89, 89, 89, 117, 340, 340, 340, 340, 117, 118, 118, 118, 118, 118, 430, 430, 430, 430, 1176, 1176, 2231, 91, 340, 118, 443, 443, 443, 443, 118, 89, 89, 89, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 92, 92, 92, 92, 92, 1160, 90, 90, 90, 90, 90, 90, 585, 119, 1160, 119, 119, 939, 1047, 92, 585, 1047, 128, 585, 128, 128, 119, 119, 585, 1178, 1178, 92, 119, 675, 90, 90, 90, 120, 675, 120, 120, 128, 141, 939, 141, 141, 449, 449, 449, 449, 120, 120, 1072, 1260, 1260, 92, 120, 516, 516, 516, 516, 141, 1072, 90, 90, 90, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 137, 97, 137, 137, 97, 682, 115, 115, 115, 115, 115, 938, 97, 97, 97, 97, 97, 682, 1201, 137, 115, 138, 682, 138, 138, 115, 1229, 916, 137, 105, 105, 105, 105, 105, 115, 1229, 2232, 115, 938, 97, 138, 97, 688, 142, 1201, 142, 142, 688, 105, 138, 392, 392, 392, 392, 517, 517, 517, 517, 105, 692, 1052, 115, 142, 1052, 692, 392, 1354, 1354, 97, 97, 97, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 916, 98, 105, 145, 98, 145, 145, 116, 116, 116, 116, 116, 98, 98, 98, 98, 98, 1233, 105, 699, 105, 116, 145, 702, 699, 105, 116, 1233, 702, 106, 106, 106, 106, 106, 146, 116, 146, 146, 116, 98, 151, 98, 151, 151, 152, 1457, 152, 152, 106, 341, 341, 341, 341, 146, 518, 518, 518, 518, 106, 151, 707, 710, 116, 152, 1457, 707, 710, 341, 98, 98, 98, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 2234, 99, 106, 129, 99, 129, 129, 130, 130, 130, 130, 130, 99, 99, 99, 99, 99, 129, 106, 1078, 106, 130, 129, 1078, 691, 106, 130, 691, 167, 1597, 167, 167, 701, 147, 129, 701, 147, 691, 130, 99, 157, 99, 157, 157, 167, 701, 147, 167, 1189, 715, 1189, 147, 157, 157, 715, 167, 720, 1597, 129, 157, 147, 720, 130, 147, 302, 302, 302, 302, 99, 99, 99, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 147, 100, 302, 131, 100, 131, 131, 133, 730, 133, 133, 1252, 100, 100, 100, 100, 100, 131, 725, 1259, 730, 131, 131, 725, 167, 730, 133, 1252, 1720, 1259, 158, 734, 158, 158, 131, 739, 734, 1720, 133, 100, 739, 100, 158, 158, 159, 159, 159, 159, 159, 158, 747, 529, 529, 529, 529, 747, 159, 159, 131, 2235, 159, 759, 133, 159, 529, 1367, 759, 1367, 100, 100, 100, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 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, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 132, 132, 132, 132, 132, 134, 1530, 134, 134, 160, 160, 160, 160, 160, 132, 1504, 1504, 711, 132, 132, 711, 160, 160, 1071, 134, 160, 1071, 161, 160, 161, 161, 132, 162, 768, 162, 162, 134, 2236, 768, 171, 161, 171, 171, 711, 1890, 162, 161, 711, 785, 171, 1530, 162, 788, 785, 793, 132, 1890, 788, 171, 793, 134, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 163, 163, 163, 163, 163, 2237, 135, 135, 135, 135, 135, 135, 163, 163, 1244, 826, 163, 832, 1244, 163, 826, 172, 832, 172, 172, 164, 164, 164, 164, 164, 168, 172, 168, 168, 135, 135, 135, 164, 164, 2239, 172, 164, 658, 658, 164, 658, 168, 897, 1534, 168, 530, 530, 530, 530, 897, 658, 897, 168, 554, 554, 554, 554, 2087, 135, 135, 135, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 169, 169, 169, 169, 169, 1534, 136, 136, 136, 136, 136, 136, 303, 303, 303, 303, 1374, 2087, 1374, 169, 183, 183, 183, 183, 183, 1231, 168, 911, 1231, 911, 179, 169, 179, 179, 136, 136, 136, 303, 179, 183, 191, 1527, 191, 191, 179, 531, 531, 531, 531, 179, 561, 561, 561, 561, 926, 169, 926, 835, 531, 191, 926, 179, 835, 136, 136, 136, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 911, 139, 2097, 179, 139, 170, 170, 170, 170, 170, 1527, 1527, 139, 139, 139, 139, 139, 584, 184, 184, 184, 184, 184, 1227, 170, 185, 185, 185, 185, 185, 1257, 1336, 180, 1257, 180, 180, 170, 184, 802, 139, 180, 139, 802, 802, 185, 192, 180, 192, 192, 584, 1227, 180, 584, 597, 597, 597, 597, 584, 1336, 2097, 170, 838, 844, 180, 192, 2240, 838, 844, 139, 139, 139, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 180, 140, 2091, 181, 140, 181, 181, 598, 598, 598, 598, 181, 140, 140, 140, 140, 140, 181, 349, 349, 349, 349, 181, 186, 186, 186, 186, 186, 187, 187, 187, 187, 187, 1400, 181, 182, 349, 182, 182, 140, 849, 140, 186, 182, 1410, 849, 1410, 187, 203, 182, 203, 203, 855, 2091, 182, 860, 863, 855, 181, 1400, 860, 863, 306, 306, 306, 306, 182, 203, 140, 140, 140, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 306, 143, 306, 182, 143, 188, 188, 188, 188, 188, 2241, 1404, 143, 143, 143, 143, 143, 868, 204, 1258, 204, 204, 868, 1258, 188, 211, 870, 211, 211, 1901, 1901, 870, 189, 189, 189, 189, 189, 204, 1404, 143, 233, 143, 233, 233, 211, 215, 215, 215, 215, 215, 1402, 189, 2242, 211, 600, 600, 600, 600, 1535, 233, 189, 876, 882, 189, 215, 1402, 876, 882, 143, 143, 143, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 189, 144, 1750, 1532, 144, 190, 190, 190, 190, 190, 1750, 1535, 144, 144, 144, 144, 144, 885, 212, 1264, 212, 212, 885, 1264, 190, 216, 216, 216, 216, 216, 1472, 1472, 195, 190, 195, 195, 190, 212, 1472, 144, 234, 144, 234, 234, 216, 235, 212, 235, 235, 1256, 1532, 195, 604, 604, 604, 604, 888, 891, 1256, 234, 190, 888, 891, 195, 235, 1256, 2077, 1472, 144, 144, 144, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 195, 149, 2243, 196, 149, 196, 196, 217, 217, 217, 217, 217, 149, 149, 149, 149, 149, 218, 218, 218, 218, 218, 196, 1538, 1892, 2077, 217, 219, 219, 219, 219, 219, 1892, 1538, 196, 236, 218, 236, 236, 149, 243, 149, 243, 243, 915, 1533, 219, 220, 220, 220, 220, 220, 896, 1721, 236, 920, 915, 896, 196, 243, 920, 915, 327, 327, 327, 327, 220, 1721, 149, 149, 149, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 327, 150, 1743, 2244, 150, 221, 221, 221, 221, 221, 1533, 1743, 150, 150, 150, 150, 150, 222, 222, 222, 222, 222, 2245, 2246, 221, 225, 225, 225, 225, 225, 226, 226, 226, 226, 226, 244, 222, 244, 244, 150, 237, 150, 237, 237, 225, 238, 237, 238, 238, 226, 1276, 238, 2247, 1744, 244, 606, 606, 606, 606, 237, 624, 624, 624, 624, 238, 1276, 1276, 1744, 150, 150, 150, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 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, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 2248, 223, 175, 223, 223, 224, 2249, 224, 224, 942, 175, 175, 175, 175, 175, 239, 1329, 239, 239, 1329, 223, 239, 924, 240, 224, 240, 240, 924, 257, 240, 257, 257, 223, 942, 239, 947, 224, 175, 175, 175, 947, 1351, 240, 251, 1351, 251, 251, 257, 651, 651, 651, 651, 698, 698, 698, 698, 223, 942, 961, 970, 224, 1352, 251, 961, 970, 1352, 175, 175, 175, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 942, 229, 176, 229, 229, 230, 935, 230, 230, 2081, 176, 176, 176, 176, 176, 229, 1485, 979, 935, 230, 229, 251, 979, 935, 230, 998, 255, 2250, 255, 255, 998, 258, 229, 258, 258, 251, 230, 176, 176, 176, 255, 953, 1485, 953, 256, 255, 256, 256, 2251, 2081, 258, 750, 750, 750, 750, 953, 229, 1005, 256, 1009, 230, 1537, 1005, 256, 1009, 1537, 176, 176, 176, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 193, 193, 193, 193, 193, 193, 193, 193, 1013, 193, 193, 193, 193, 1013, 2252, 193, 259, 193, 259, 259, 193, 957, 260, 1064, 260, 260, 1064, 1932, 193, 193, 193, 193, 193, 957, 205, 259, 205, 205, 957, 1932, 252, 260, 252, 252, 259, 1643, 259, 1643, 1038, 1023, 260, 1038, 260, 205, 1023, 193, 193, 193, 1180, 252, 1180, 1745, 1053, 263, 205, 263, 263, 1053, 1182, 263, 1745, 1182, 1180, 205, 263, 263, 263, 550, 205, 2253, 550, 1182, 263, 1064, 193, 193, 194, 194, 194, 194, 194, 194, 194, 194, 1486, 194, 194, 194, 194, 205, 1643, 194, 2254, 194, 205, 252, 194, 550, 273, 1197, 273, 273, 1197, 2255, 194, 194, 194, 194, 194, 252, 1486, 206, 1197, 206, 206, 273, 264, 273, 264, 264, 1038, 550, 264, 320, 320, 320, 320, 264, 264, 264, 206, 194, 194, 194, 261, 264, 261, 261, 1059, 1061, 261, 206, 1163, 1059, 1061, 261, 1076, 1163, 320, 1076, 206, 1640, 2256, 261, 1640, 206, 408, 408, 408, 408, 194, 194, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 408, 206, 197, 197, 197, 197, 206, 197, 271, 271, 271, 271, 271, 1489, 261, 197, 197, 197, 197, 197, 1164, 2101, 265, 1164, 265, 265, 1164, 271, 265, 1205, 1211, 1076, 320, 265, 1205, 1211, 271, 1161, 271, 1489, 1161, 265, 197, 197, 197, 262, 1204, 262, 262, 1204, 265, 262, 265, 1219, 2080, 1161, 262, 566, 1219, 1204, 566, 1357, 1287, 580, 262, 1357, 580, 1287, 1357, 2101, 566, 197, 197, 197, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 566, 2257, 198, 198, 198, 198, 580, 198, 274, 1325, 274, 274, 1325, 262, 1676, 198, 198, 198, 198, 198, 266, 2080, 266, 266, 566, 274, 266, 274, 1325, 1659, 580, 266, 2258, 1659, 267, 267, 267, 267, 267, 266, 267, 1676, 198, 198, 198, 267, 267, 267, 266, 1207, 266, 2064, 1207, 267, 762, 762, 762, 762, 767, 767, 767, 767, 1207, 2064, 2064, 344, 344, 344, 344, 762, 1491, 198, 198, 198, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 344, 199, 2259, 2259, 199, 1328, 1491, 275, 1328, 275, 275, 1756, 199, 199, 199, 199, 199, 268, 268, 268, 268, 268, 1228, 268, 1328, 1228, 275, 1756, 268, 268, 268, 269, 269, 269, 269, 269, 268, 269, 275, 199, 1228, 199, 269, 269, 1753, 352, 352, 352, 352, 1753, 269, 794, 794, 794, 794, 795, 795, 795, 795, 269, 1838, 269, 275, 352, 345, 345, 345, 345, 199, 199, 199, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 1838, 200, 345, 2260, 200, 272, 272, 272, 272, 272, 2262, 1495, 200, 200, 200, 200, 200, 270, 270, 270, 270, 270, 1082, 270, 272, 1082, 1082, 1662, 270, 270, 1655, 1662, 1655, 272, 1664, 272, 270, 1495, 1664, 200, 1082, 200, 502, 502, 502, 270, 502, 270, 375, 375, 375, 375, 763, 763, 763, 763, 502, 796, 796, 796, 796, 502, 355, 355, 355, 355, 375, 763, 200, 200, 200, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 355, 201, 355, 1746, 201, 276, 276, 276, 276, 276, 502, 1802, 201, 201, 201, 201, 201, 1746, 2082, 276, 359, 359, 359, 359, 276, 1802, 2263, 360, 360, 360, 360, 973, 277, 973, 277, 277, 276, 973, 1669, 201, 1669, 201, 973, 973, 973, 359, 1250, 359, 2264, 1250, 973, 277, 360, 1834, 360, 820, 820, 820, 820, 1250, 276, 2082, 1834, 277, 898, 898, 898, 898, 201, 201, 201, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 277, 202, 359, 1496, 202, 278, 278, 278, 278, 278, 360, 712, 202, 202, 202, 202, 202, 1835, 2266, 278, 357, 357, 357, 357, 278, 358, 358, 358, 358, 1496, 1862, 1835, 361, 361, 361, 361, 278, 2132, 712, 202, 712, 202, 712, 712, 928, 357, 1862, 357, 928, 712, 358, 1888, 358, 1888, 712, 712, 928, 361, 712, 361, 278, 928, 403, 403, 403, 403, 2267, 1577, 202, 202, 202, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 357, 207, 361, 403, 207, 1011, 1577, 358, 1011, 2132, 2086, 207, 207, 207, 207, 207, 207, 358, 1011, 362, 362, 362, 362, 1011, 366, 366, 366, 366, 1902, 363, 363, 363, 363, 1590, 403, 364, 364, 364, 364, 207, 207, 207, 1902, 1212, 362, 1212, 362, 2268, 403, 366, 403, 366, 403, 2086, 363, 1867, 363, 1212, 1867, 1590, 364, 1591, 364, 830, 830, 830, 830, 830, 207, 207, 207, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 1591, 208, 366, 2088, 208, 362, 1665, 363, 362, 364, 1665, 208, 208, 208, 208, 208, 208, 363, 365, 365, 365, 365, 369, 369, 369, 369, 2269, 2270, 364, 370, 370, 370, 370, 371, 371, 371, 371, 1277, 2273, 208, 208, 208, 1501, 365, 1277, 365, 1501, 369, 376, 376, 376, 376, 1277, 1277, 370, 1501, 1508, 1847, 371, 2088, 1508, 377, 377, 377, 377, 1508, 376, 1847, 208, 208, 208, 209, 209, 209, 209, 209, 209, 209, 209, 377, 209, 209, 209, 209, 209, 209, 209, 365, 209, 1483, 2084, 209, 365, 373, 373, 373, 373, 1675, 1483, 209, 209, 209, 209, 378, 378, 378, 378, 387, 387, 387, 387, 427, 2274, 427, 427, 1483, 1315, 427, 373, 1315, 373, 378, 427, 1675, 1483, 387, 209, 209, 209, 1315, 427, 459, 459, 459, 459, 2084, 581, 581, 581, 581, 438, 438, 438, 438, 2084, 404, 404, 404, 404, 459, 405, 405, 405, 405, 581, 209, 209, 210, 210, 210, 210, 210, 210, 210, 210, 438, 210, 210, 210, 210, 210, 210, 210, 404, 210, 2275, 709, 210, 405, 709, 439, 439, 439, 439, 1852, 210, 210, 210, 210, 709, 440, 440, 440, 440, 427, 427, 442, 442, 442, 442, 900, 900, 900, 900, 404, 439, 709, 1891, 1255, 405, 1852, 1255, 210, 210, 210, 440, 1316, 1891, 404, 1316, 404, 442, 404, 405, 1848, 405, 1255, 405, 1848, 1316, 709, 834, 834, 834, 834, 834, 837, 837, 837, 837, 837, 210, 210, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, 2066, 231, 2066, 1493, 231, 444, 444, 444, 444, 1493, 1493, 2276, 231, 231, 231, 231, 231, 445, 445, 445, 445, 446, 446, 446, 446, 448, 448, 448, 448, 1493, 444, 562, 562, 562, 562, 545, 1493, 1493, 545, 231, 1916, 231, 445, 1916, 562, 1455, 446, 1455, 545, 562, 448, 1455, 2277, 545, 769, 769, 769, 769, 881, 881, 881, 881, 881, 769, 1455, 545, 2278, 769, 231, 231, 231, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 2279, 232, 545, 1525, 232, 559, 559, 559, 559, 2078, 2096, 1948, 232, 232, 232, 232, 232, 573, 559, 582, 582, 582, 582, 559, 2280, 591, 591, 591, 591, 592, 592, 592, 592, 1290, 2281, 559, 1290, 582, 1948, 232, 1385, 232, 2059, 1385, 573, 573, 573, 2283, 573, 573, 591, 1290, 573, 1385, 592, 573, 1525, 2284, 2059, 559, 573, 573, 1525, 2108, 573, 2108, 2096, 2078, 232, 232, 232, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 2083, 247, 586, 1490, 247, 586, 575, 1113, 2285, 575, 1113, 1113, 247, 247, 247, 247, 247, 1490, 1275, 575, 586, 2079, 2286, 574, 575, 1113, 574, 574, 574, 1490, 574, 574, 586, 2102, 574, 1275, 575, 574, 2094, 247, 247, 247, 574, 574, 1490, 2287, 574, 901, 901, 901, 901, 764, 764, 764, 764, 1661, 586, 1661, 2083, 1275, 575, 1661, 593, 593, 593, 593, 764, 2079, 247, 247, 247, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 593, 248, 2102, 1952, 248, 596, 596, 596, 596, 2094, 1993, 1994, 248, 248, 248, 248, 248, 618, 618, 618, 618, 619, 619, 619, 619, 620, 620, 620, 620, 1952, 596, 623, 623, 623, 623, 625, 1993, 1994, 625, 248, 248, 248, 618, 1454, 2131, 1454, 619, 2131, 1526, 1454, 620, 884, 884, 884, 884, 884, 623, 841, 841, 841, 841, 1454, 1454, 625, 744, 744, 744, 744, 248, 248, 248, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 841, 249, 744, 2090, 249, 1526, 2261, 625, 649, 649, 649, 649, 249, 249, 249, 249, 249, 654, 1214, 1526, 1214, 649, 2261, 1998, 841, 625, 649, 2288, 745, 745, 745, 745, 1214, 652, 652, 652, 652, 1214, 649, 249, 1997, 249, 2290, 2090, 654, 654, 652, 654, 654, 654, 1998, 652, 654, 745, 902, 902, 902, 902, 654, 2291, 654, 654, 649, 652, 654, 654, 1997, 1529, 249, 249, 249, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 652, 250, 2292, 1263, 250, 1221, 714, 1263, 1221, 714, 1263, 1999, 250, 250, 250, 250, 250, 1854, 2003, 714, 1529, 1263, 2296, 655, 714, 1393, 655, 655, 1393, 655, 655, 655, 2004, 1529, 655, 1221, 714, 1999, 1393, 250, 655, 250, 655, 655, 2003, 2297, 655, 655, 770, 770, 770, 770, 2298, 771, 771, 771, 771, 770, 2004, 1221, 714, 770, 771, 1854, 2238, 1854, 771, 2238, 250, 250, 250, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 343, 343, 343, 343, 713, 2092, 343, 713, 2185, 713, 2299, 713, 713, 741, 741, 741, 741, 2185, 713, 746, 746, 746, 746, 713, 713, 343, 2300, 713, 749, 749, 749, 749, 741, 741, 741, 741, 741, 741, 741, 2301, 752, 752, 752, 752, 746, 2092, 758, 758, 758, 758, 1690, 752, 1690, 749, 2282, 2282, 965, 758, 965, 343, 1251, 343, 965, 1251, 1690, 343, 752, 965, 343, 343, 1920, 343, 758, 1920, 343, 343, 343, 343, 543, 772, 772, 772, 772, 773, 773, 773, 773, 2302, 772, 1843, 1251, 1843, 772, 752, 774, 774, 774, 774, 2303, 1920, 2016, 773, 2304, 1843, 2305, 543, 543, 543, 543, 543, 543, 965, 774, 543, 1251, 2027, 543, 543, 543, 543, 2034, 543, 543, 543, 543, 543, 557, 2016, 758, 781, 781, 781, 2306, 781, 815, 815, 815, 815, 816, 816, 816, 816, 2027, 817, 817, 817, 817, 2034, 781, 909, 909, 909, 909, 557, 557, 557, 557, 557, 557, 815, 2085, 557, 2007, 816, 557, 557, 557, 557, 817, 557, 557, 557, 557, 557, 557, 819, 819, 819, 819, 842, 842, 842, 842, 1399, 781, 792, 1399, 1989, 2007, 792, 1989, 1360, 1360, 792, 1360, 2009, 1399, 792, 792, 840, 819, 840, 1288, 792, 1360, 1288, 792, 792, 1845, 842, 1845, 792, 2085, 792, 2347, 792, 1989, 2308, 840, 792, 2104, 2009, 1845, 792, 792, 2041, 792, 840, 792, 2010, 792, 2308, 1288, 842, 792, 801, 2373, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 986, 986, 986, 986, 801, 2041, 2383, 840, 2010, 1288, 843, 843, 843, 843, 887, 887, 887, 887, 887, 890, 890, 890, 890, 890, 903, 903, 903, 903, 801, 2104, 801, 804, 899, 899, 899, 899, 899, 903, 2400, 2349, 843, 1698, 903, 1698, 2012, 804, 2401, 1698, 904, 904, 904, 904, 1698, 905, 905, 905, 905, 2020, 804, 804, 804, 804, 804, 804, 843, 804, 804, 2349, 804, 804, 2012, 804, 804, 904, 804, 804, 804, 804, 905, 987, 987, 987, 987, 2020, 804, 804, 804, 804, 804, 804, 1996, 804, 804, 1996, 804, 804, 1698, 804, 804, 2403, 2405, 804, 804, 804, 804, 805, 805, 805, 805, 906, 906, 906, 906, 908, 908, 908, 908, 2089, 1403, 1996, 943, 1403, 963, 963, 963, 963, 805, 943, 805, 805, 2406, 1403, 943, 963, 906, 2095, 1403, 2407, 908, 988, 988, 988, 988, 1767, 943, 2024, 1767, 963, 995, 995, 995, 995, 1717, 805, 2408, 1717, 805, 805, 805, 805, 805, 1767, 2410, 805, 805, 1717, 805, 2105, 943, 2089, 805, 2024, 805, 805, 805, 805, 805, 805, 806, 996, 996, 996, 996, 806, 2411, 2412, 806, 2095, 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, 943, 2025, 2409, 2028, 806, 985, 985, 985, 985, 985, 2409, 985, 997, 997, 997, 997, 985, 985, 985, 1022, 1022, 1022, 1022, 1841, 985, 2105, 1841, 2025, 806, 2028, 806, 1028, 1028, 1028, 1028, 1881, 1841, 1022, 1881, 1027, 1027, 1027, 1027, 2413, 1032, 1032, 1032, 1032, 1881, 1031, 1031, 1031, 1031, 1447, 1447, 1447, 1028, 1447, 806, 807, 807, 807, 807, 2032, 1027, 1033, 1033, 1033, 1033, 1032, 807, 1032, 1447, 2033, 1031, 1036, 1036, 1036, 1036, 2036, 807, 2093, 807, 807, 1040, 1040, 1040, 1040, 1832, 2032, 1033, 1832, 1033, 2414, 2100, 1037, 1037, 1037, 1037, 2033, 1042, 1042, 1042, 1042, 2415, 2036, 1832, 807, 1447, 1040, 807, 807, 807, 807, 807, 807, 2418, 807, 807, 2103, 807, 1027, 1037, 2093, 807, 1042, 807, 807, 807, 807, 807, 807, 808, 1031, 2419, 2422, 2100, 808, 2100, 2093, 808, 2423, 808, 808, 808, 808, 808, 808, 808, 808, 808, 808, 1043, 1043, 1043, 1043, 1044, 1044, 1044, 1044, 1045, 1045, 1045, 1045, 1046, 1046, 1046, 1046, 1040, 1048, 1048, 1048, 1048, 1049, 1049, 1049, 1049, 2103, 2035, 2424, 808, 1050, 1050, 1050, 1050, 1102, 1102, 1102, 1102, 1046, 1057, 2035, 1882, 2115, 1048, 1882, 2420, 2420, 1049, 1057, 1057, 1057, 1057, 1057, 2035, 1882, 1050, 2425, 2076, 2217, 808, 809, 1063, 1063, 1063, 1063, 809, 2035, 2217, 809, 2115, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 1058, 1058, 1058, 1058, 809, 1324, 1063, 1044, 1324, 1982, 1982, 1045, 2427, 1060, 1060, 1060, 1060, 1982, 1058, 2076, 1048, 1079, 1079, 1079, 1079, 2431, 2448, 2469, 809, 2076, 809, 1060, 2130, 1324, 1079, 2130, 2470, 2130, 1080, 1080, 1080, 1080, 1083, 1083, 1083, 1083, 1982, 2472, 2121, 809, 1084, 1084, 1084, 1084, 1085, 1085, 1085, 1085, 809, 1062, 1062, 1062, 1062, 1080, 1324, 1062, 2432, 1083, 1087, 1087, 1087, 1087, 2431, 1531, 2121, 1084, 2448, 1084, 2426, 1085, 2005, 1085, 1324, 2005, 1062, 1088, 1088, 1088, 1088, 1089, 1089, 1089, 1089, 1087, 2426, 1087, 1090, 1090, 1090, 1090, 1110, 1110, 1110, 1110, 1092, 1092, 1092, 1092, 2008, 2005, 1088, 2008, 1088, 1531, 1089, 2473, 1089, 1531, 1062, 2432, 1062, 1090, 1531, 1090, 1062, 1087, 1083, 1062, 1062, 1092, 1062, 1092, 2438, 1062, 1062, 1062, 1062, 2008, 2439, 2293, 1091, 1091, 1091, 1091, 1104, 1104, 1104, 1104, 1093, 1093, 1093, 1093, 1094, 1094, 1094, 1094, 1095, 1095, 1095, 1095, 2434, 1088, 2122, 1090, 1089, 1091, 2293, 1091, 1523, 1104, 2436, 1090, 1092, 1093, 2325, 1093, 2438, 1094, 2474, 1094, 2135, 1095, 2439, 1095, 1096, 1096, 1096, 1096, 2122, 2339, 1097, 1097, 1097, 1097, 2416, 1098, 1098, 1098, 1098, 2416, 1091, 2325, 1099, 1099, 1099, 1099, 2135, 2434, 1523, 1096, 1094, 1096, 1523, 1093, 2136, 1097, 2339, 1097, 1093, 1095, 1098, 1523, 1098, 1100, 1100, 1100, 1100, 1099, 2436, 1099, 1106, 1106, 1106, 1106, 1101, 1101, 1101, 1101, 1983, 1983, 2136, 1096, 1103, 1103, 1103, 1103, 1983, 2477, 1100, 2478, 1100, 1107, 1107, 1107, 1107, 1106, 2441, 1096, 1097, 1101, 2479, 1101, 1108, 1108, 1108, 1108, 1098, 1099, 2346, 1103, 1111, 1111, 1111, 1111, 1234, 1983, 1107, 2481, 1107, 1115, 1115, 1115, 1115, 1116, 1116, 1116, 1116, 1108, 1100, 1108, 1117, 1117, 1117, 1117, 1115, 2346, 2437, 1111, 1118, 1118, 1118, 1118, 1119, 1119, 1119, 1119, 2352, 1101, 1124, 1124, 1124, 1124, 2441, 2376, 1106, 1125, 1125, 1125, 1125, 2445, 1234, 1119, 1130, 1130, 1130, 1130, 1118, 1124, 1131, 1131, 1131, 1131, 1234, 2352, 1130, 1134, 1234, 1134, 1134, 1131, 2376, 1134, 1136, 1136, 1136, 1136, 1134, 1137, 1137, 1137, 1137, 1141, 2484, 2437, 1134, 2485, 1715, 1118, 2098, 1715, 1141, 1141, 1141, 1141, 1141, 1142, 1142, 1142, 1142, 1715, 2445, 1118, 2489, 1118, 1715, 1118, 1145, 1145, 1145, 1145, 1147, 1147, 1147, 1147, 1148, 1148, 1148, 1148, 1149, 1149, 1149, 1149, 1151, 1151, 1151, 1151, 1153, 1153, 1153, 1153, 2219, 1145, 2289, 2098, 2233, 1147, 2098, 2233, 2317, 1148, 1154, 1154, 1154, 1154, 2318, 2098, 2098, 1151, 1134, 1134, 1158, 1153, 1155, 1155, 1155, 1155, 2219, 2444, 2289, 1158, 1158, 1158, 1158, 1158, 2317, 1154, 1162, 1162, 1162, 1162, 2318, 1195, 1195, 1195, 2319, 1195, 1208, 1208, 1208, 1208, 1215, 1215, 1215, 1215, 1162, 1195, 1216, 1216, 1216, 1216, 1195, 2490, 2491, 1215, 1147, 1245, 2442, 2233, 1245, 2492, 2319, 2444, 1266, 1266, 1266, 1266, 2011, 2321, 1245, 2011, 1153, 2494, 2447, 1245, 2380, 1266, 1268, 1268, 1268, 1268, 1266, 1271, 1271, 1271, 1271, 1245, 1195, 1222, 1222, 1222, 1222, 1222, 1266, 2321, 1222, 2011, 2449, 1222, 1222, 1222, 1222, 2380, 1222, 1222, 1222, 1222, 1222, 2329, 2497, 1245, 1269, 1269, 1269, 1269, 2442, 2447, 1266, 1273, 1273, 1273, 1273, 1274, 1286, 1269, 1274, 1286, 1291, 1291, 1291, 1291, 1273, 2450, 2499, 2329, 1274, 1286, 1295, 2333, 2013, 1295, 1286, 2013, 2449, 2337, 1291, 1298, 1298, 1298, 1298, 2500, 2014, 1274, 1286, 2014, 1295, 1301, 1301, 1301, 1301, 1302, 1302, 1302, 1302, 2333, 2501, 2149, 1295, 2013, 2149, 2337, 1298, 1303, 1303, 1303, 1303, 1274, 1286, 2455, 2149, 2014, 1301, 2450, 2461, 2451, 1302, 1305, 1305, 1305, 1305, 2502, 1295, 1310, 1310, 1310, 1310, 1318, 1318, 1318, 1318, 1320, 1320, 1320, 1320, 1321, 1321, 1321, 1321, 1322, 1322, 1322, 1322, 2503, 1338, 1338, 1338, 1338, 1340, 1340, 1340, 1340, 1318, 2338, 2341, 2015, 1320, 1338, 2015, 2451, 1321, 2353, 1338, 1341, 1341, 1341, 1341, 2455, 2461, 1343, 1343, 1301, 1343, 1343, 1338, 2430, 1341, 1343, 2504, 2338, 2341, 1341, 2505, 1343, 2015, 1343, 1343, 2353, 2417, 1343, 1343, 2417, 2452, 1341, 1344, 1344, 1344, 1344, 1338, 1346, 1346, 1346, 1346, 1347, 1347, 1347, 1347, 1349, 1349, 1349, 1349, 1395, 1395, 1395, 1395, 1320, 1347, 1341, 1348, 1348, 1349, 1348, 1348, 2430, 1344, 2443, 1348, 1396, 1396, 1396, 1396, 2440, 1348, 1347, 1348, 1348, 2452, 1349, 1348, 1348, 1396, 1421, 1421, 1421, 1421, 2417, 2506, 2507, 1344, 1422, 1422, 1422, 1422, 1425, 1425, 1425, 1425, 1347, 2457, 2508, 2509, 1349, 1424, 1424, 1424, 1424, 1421, 2443, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 2443, 2511, 2512, 1425, 2440, 2465, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1427, 1427, 1427, 1427, 1428, 1428, 1428, 1428, 1429, 1429, 1429, 1429, 1431, 1431, 1431, 1431, 1435, 1435, 1435, 1435, 2446, 2457, 2458, 1431, 2460, 1427, 2513, 1435, 2340, 1428, 1438, 1438, 1438, 1438, 1439, 1439, 1439, 1439, 1431, 2536, 2363, 2340, 1435, 2462, 2465, 1438, 1440, 1440, 1440, 1440, 1441, 1441, 1441, 1441, 2340, 1442, 1442, 1442, 1442, 1441, 2538, 2540, 2446, 1441, 1442, 1431, 2363, 2340, 1442, 1462, 1462, 1462, 1462, 1463, 1463, 1463, 1463, 1464, 1464, 1464, 1464, 2458, 2460, 2541, 1427, 1465, 1465, 1465, 1465, 1466, 1466, 1466, 1466, 2543, 1467, 2548, 2462, 2459, 1435, 1467, 1488, 1482, 2370, 1488, 1482, 2549, 2456, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 2379, 1478, 2550, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 2386, 2370, 1488, 1482, 1498, 1498, 1498, 1498, 1499, 1499, 1499, 1499, 2553, 2379, 1492, 1488, 1488, 1492, 1482, 2554, 1482, 1546, 1546, 1546, 1546, 2555, 2386, 2456, 1478, 2459, 2459, 1500, 1500, 1500, 1500, 2387, 2556, 1502, 1502, 1502, 1502, 1488, 1488, 1492, 1482, 1467, 1473, 1482, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1478, 2390, 1492, 2387, 1473, 2557, 1498, 1505, 1505, 1505, 1505, 1625, 1625, 1625, 1625, 1498, 2558, 2463, 1484, 1498, 1484, 2017, 1498, 2471, 2017, 1484, 1499, 2390, 1473, 1492, 1473, 1475, 1484, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1500, 1484, 2561, 1484, 1475, 1502, 2471, 2017, 1484, 1554, 1554, 1554, 1554, 1554, 2018, 1502, 1484, 2018, 1569, 2562, 1569, 1505, 2463, 2564, 2566, 1487, 1487, 1487, 1475, 1505, 1475, 1480, 1480, 1480, 1480, 1480, 1480, 1569, 1480, 1480, 1487, 1480, 1480, 2018, 1480, 1480, 1569, 1480, 1480, 1480, 1480, 1487, 1559, 1559, 1559, 1559, 1559, 1480, 1480, 1480, 1480, 1480, 1480, 2567, 1480, 1480, 1487, 1480, 1480, 1494, 1480, 1480, 1494, 1569, 1480, 1480, 1480, 1480, 1487, 1520, 1520, 1520, 1520, 2568, 1494, 2569, 1494, 1521, 1521, 1521, 1521, 1524, 1524, 1524, 1524, 1494, 1520, 2510, 1494, 1522, 1522, 1522, 1522, 2570, 1521, 2571, 2510, 2573, 1524, 2019, 2453, 1494, 2019, 1494, 1515, 2574, 1522, 2575, 2480, 1515, 1990, 2576, 1515, 1990, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1528, 1528, 1528, 1528, 2019, 1520, 1542, 1542, 1542, 1542, 1626, 1626, 1626, 1626, 1520, 1990, 2560, 1528, 1520, 2560, 2453, 1520, 1522, 2577, 2578, 2453, 1524, 2464, 1515, 1521, 1990, 1542, 1522, 2483, 2579, 1522, 1524, 1544, 1544, 1544, 1544, 1545, 1545, 1545, 1545, 1564, 1564, 1564, 1564, 1564, 1571, 1571, 1571, 1571, 2515, 2580, 1990, 1528, 1515, 1517, 2480, 2483, 1544, 2515, 1517, 1528, 1545, 1517, 2464, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 2021, 1571, 2581, 2021, 1517, 2464, 1572, 1572, 1572, 1572, 1603, 1603, 1603, 1603, 1603, 1608, 1608, 1608, 1608, 1608, 1613, 1613, 1613, 1613, 1613, 1571, 2582, 2583, 1517, 2021, 1517, 1618, 1618, 1618, 1618, 1618, 1572, 1627, 1627, 1627, 1627, 2584, 1544, 1628, 1628, 1628, 1628, 1628, 1629, 1629, 1629, 1629, 1630, 1630, 1630, 1630, 1630, 2585, 1517, 1518, 1572, 2586, 2563, 2565, 1518, 2563, 2565, 1518, 2587, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1631, 1631, 1631, 1631, 1631, 1632, 1632, 1632, 1632, 1633, 1633, 1633, 1633, 1634, 1634, 1634, 1634, 1636, 1636, 1636, 1636, 1637, 1637, 1637, 1637, 2588, 1637, 2589, 1518, 1638, 1638, 1638, 1638, 1639, 1639, 1639, 1639, 1679, 1634, 1681, 1707, 2572, 1636, 2545, 2572, 2590, 1637, 2591, 2592, 1707, 1707, 1707, 1707, 1707, 1638, 2545, 2595, 2596, 1518, 1536, 2545, 1679, 2000, 1681, 1536, 2000, 2598, 1536, 2599, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1694, 1694, 1694, 1694, 1536, 2600, 1679, 1704, 1681, 1704, 2601, 1694, 2000, 1704, 1711, 1711, 1711, 1711, 1704, 1704, 1704, 2602, 1636, 2603, 2454, 1694, 1704, 2454, 1536, 2000, 1536, 1709, 1709, 1709, 1709, 1709, 1679, 1709, 1681, 2604, 2605, 2454, 1709, 1709, 1709, 1536, 1712, 1712, 1712, 1712, 1709, 1723, 1723, 1723, 1723, 2606, 2000, 2607, 1536, 1724, 1724, 1724, 1724, 1725, 1725, 1725, 1725, 1726, 1726, 1726, 1726, 1727, 1727, 1727, 1727, 2608, 1723, 1728, 1728, 1728, 1728, 2454, 2593, 2609, 1724, 2593, 1724, 1729, 1729, 1729, 1729, 1991, 2610, 2611, 1726, 2612, 2022, 2613, 1727, 2022, 1991, 2614, 1728, 1730, 1730, 1730, 1730, 1731, 1731, 1731, 1731, 1742, 1729, 1734, 1734, 1734, 1734, 1991, 2615, 2616, 1742, 1742, 1742, 1742, 1742, 2022, 1991, 2614, 1730, 1761, 1761, 1761, 1761, 2617, 2618, 1723, 2621, 1762, 1762, 1762, 1762, 2622, 1761, 1763, 1763, 1763, 1763, 1770, 1770, 1770, 1770, 1771, 1771, 1771, 1771, 1772, 1772, 1772, 1772, 2623, 2618, 1728, 1762, 1774, 1774, 1774, 1774, 2624, 1763, 2625, 2626, 2627, 1770, 2628, 2629, 2630, 1771, 2631, 1771, 1775, 1775, 1775, 1775, 1776, 1776, 1776, 1776, 2633, 1774, 2635, 1774, 1777, 1777, 1777, 1777, 2657, 1778, 1778, 1778, 1778, 1779, 1779, 1779, 1779, 1775, 2664, 1775, 2682, 1776, 2686, 1776, 1780, 1780, 1780, 1780, 2637, 1777, 2026, 1777, 2594, 2026, 1778, 2594, 1778, 2690, 1779, 2692, 1779, 2694, 2697, 2594, 1770, 1796, 1796, 1796, 1796, 1780, 1774, 1780, 1781, 1781, 1781, 1781, 2637, 1776, 2639, 2026, 1775, 1782, 1782, 1782, 1782, 1783, 1783, 1783, 1783, 1777, 1778, 1784, 1784, 1784, 1784, 2029, 2638, 1781, 2029, 1781, 1785, 1785, 1785, 1785, 2639, 1780, 1782, 2699, 1782, 1779, 1783, 2701, 1783, 2704, 2709, 2713, 1784, 2724, 1784, 1786, 1786, 1786, 1786, 2638, 2029, 1785, 2726, 1785, 1787, 1787, 1787, 1787, 1788, 1788, 1788, 1788, 1789, 1789, 1789, 1789, 1790, 1790, 1790, 1790, 1786, 2030, 1786, 2649, 2030, 1781, 2728, 2730, 1783, 1787, 2734, 1787, 1782, 1788, 2656, 1788, 1784, 1789, 2735, 1789, 2737, 1790, 2742, 1790, 2743, 1791, 1791, 1791, 1791, 2649, 2030, 1785, 1792, 1792, 1792, 1792, 1793, 1793, 1793, 1793, 2656, 1794, 1794, 1794, 1794, 1795, 1795, 1795, 1795, 1788, 1791, 1786, 1791, 2744, 2745, 1787, 2746, 2747, 2748, 1792, 2749, 2750, 1789, 1793, 2751, 1790, 1794, 2661, 2754, 2667, 1795, 2754, 1795, 2668, 1797, 1797, 1797, 1797, 1798, 1798, 1798, 1798, 1803, 1803, 1803, 1803, 1808, 1808, 1808, 1808, 1814, 1814, 1814, 1814, 2661, 2667, 2755, 1808, 1813, 2668, 1791, 1797, 2756, 2757, 2758, 1798, 2759, 1813, 1813, 1813, 1813, 1813, 1816, 1816, 1816, 1816, 1819, 1819, 1819, 1819, 1820, 1820, 1820, 1820, 2671, 1794, 1821, 1821, 1821, 1821, 1823, 1823, 1823, 1823, 1824, 1824, 1824, 1824, 2760, 2762, 2763, 1819, 2765, 2766, 2764, 1820, 1825, 1825, 1825, 1825, 2671, 1830, 2764, 2768, 2812, 1823, 2777, 2813, 2815, 1824, 1830, 1830, 1830, 1830, 1830, 1905, 1905, 1905, 1905, 1906, 1906, 1906, 1906, 1907, 1907, 1907, 1907, 1912, 1912, 1912, 1912, 1913, 1913, 1913, 1913, 1914, 1914, 1914, 1914, 2774, 1905, 2816, 2817, 2684, 1906, 2823, 1921, 1921, 1921, 1921, 1819, 2712, 1912, 2769, 2037, 2768, 1913, 2037, 2777, 1921, 1922, 1922, 1922, 1922, 1823, 1923, 1923, 1923, 1923, 2684, 2708, 1924, 1924, 1924, 1924, 2824, 1921, 2712, 1923, 1943, 1943, 1943, 1943, 2037, 1924, 1946, 1946, 1946, 1946, 2717, 1922, 1956, 1956, 1956, 1956, 1923, 2774, 2708, 2718, 1905, 1921, 1924, 1961, 1961, 1961, 1961, 2769, 1957, 1957, 1957, 1957, 1912, 2723, 2826, 1922, 2717, 1956, 2778, 2790, 1923, 1958, 1958, 1958, 1958, 2718, 1924, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1959, 1959, 1959, 1959, 2771, 2723, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1960, 1960, 1960, 1960, 1976, 1976, 1976, 1976, 1977, 1977, 1977, 1977, 1959, 1978, 2782, 2778, 2038, 2779, 1978, 2038, 1995, 1995, 1995, 2780, 2770, 1960, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1980, 2790, 1995, 2001, 2786, 1980, 2828, 2781, 2831, 2001, 2001, 2771, 2038, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1992, 2039, 1992, 2040, 2039, 2800, 2040, 1992, 1995, 2001, 2002, 2785, 2779, 2002, 1992, 2782, 2001, 2001, 1959, 2042, 2042, 2042, 2042, 2780, 2802, 2002, 1992, 2002, 1992, 2770, 2039, 2224, 2040, 1992, 2224, 2781, 2002, 2786, 1978, 2002, 2783, 1992, 2047, 2047, 2047, 2047, 2049, 2049, 2049, 2049, 2832, 2783, 2002, 2800, 2002, 2785, 2787, 2788, 1980, 1984, 2224, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 2054, 2054, 2054, 2054, 1984, 2060, 2060, 2060, 2060, 2065, 2065, 2065, 2065, 2833, 2802, 2099, 2099, 2099, 2099, 2109, 2109, 2109, 2109, 2110, 2110, 2110, 2110, 2797, 1984, 2787, 1984, 1985, 2099, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 2271, 2109, 2788, 2271, 1985, 2110, 2111, 2111, 2111, 2111, 2126, 2126, 2126, 2126, 2145, 2127, 2127, 2127, 2127, 2128, 2128, 2128, 2128, 2145, 2145, 2145, 2145, 2145, 1985, 2271, 1985, 1987, 2835, 2838, 2797, 2126, 1987, 2784, 2795, 1987, 2127, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 2152, 2152, 2152, 2152, 2154, 2154, 2154, 2154, 2161, 2109, 2181, 2181, 2181, 2181, 2839, 2799, 2789, 2161, 2161, 2161, 2161, 2161, 2796, 2181, 2212, 2152, 2840, 2793, 1987, 2186, 2186, 2186, 2186, 2212, 2212, 2212, 2212, 2212, 2307, 2307, 2307, 2307, 2805, 2126, 2784, 2795, 2187, 2187, 2187, 2187, 2188, 2188, 2188, 2188, 2186, 2799, 2186, 2825, 1987, 2074, 2841, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2074, 2187, 2789, 2187, 2794, 2188, 2796, 2188, 2793, 2190, 2190, 2190, 2190, 2798, 2152, 2806, 2189, 2189, 2189, 2189, 2805, 2191, 2191, 2191, 2191, 2192, 2192, 2192, 2192, 2074, 2842, 2803, 2313, 2186, 2190, 2313, 2190, 2193, 2193, 2193, 2193, 2189, 2843, 2189, 2844, 2074, 2191, 2825, 2191, 2845, 2192, 2794, 2192, 2188, 2846, 2294, 2294, 2294, 2294, 2074, 2106, 2313, 2193, 2806, 2193, 2106, 2847, 2848, 2106, 2798, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2106, 2294, 2803, 2190, 2315, 2106, 2189, 2315, 2849, 2191, 2196, 2196, 2196, 2196, 2850, 2193, 2195, 2195, 2195, 2195, 2192, 2194, 2194, 2194, 2194, 2197, 2197, 2197, 2197, 2106, 2852, 2106, 2853, 2315, 2876, 2196, 2877, 2196, 2881, 2882, 2883, 2195, 2884, 2195, 2216, 2887, 2194, 2888, 2194, 2889, 2197, 2893, 2197, 2216, 2216, 2216, 2216, 2216, 2894, 2106, 2107, 2198, 2198, 2198, 2198, 2107, 2320, 2196, 2107, 2320, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2107, 2322, 2195, 2194, 2322, 2107, 2896, 2198, 2898, 2198, 2900, 2197, 2199, 2199, 2199, 2199, 2320, 2200, 2200, 2200, 2200, 2899, 2201, 2201, 2201, 2201, 2901, 2804, 2899, 2107, 2322, 2107, 2902, 2202, 2202, 2202, 2202, 2199, 2903, 2199, 2323, 2198, 2200, 2323, 2200, 2324, 2107, 2201, 2324, 2201, 2905, 2203, 2203, 2203, 2203, 2906, 2907, 2909, 2202, 2107, 2202, 2326, 2910, 2327, 2326, 2328, 2327, 2804, 2328, 2323, 2402, 2402, 2402, 2402, 2324, 2804, 2203, 2200, 2203, 2199, 2295, 2295, 2295, 2295, 2330, 2332, 2200, 2330, 2332, 2912, 2326, 2201, 2327, 2914, 2328, 2334, 2202, 2915, 2334, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2335, 2891, 2342, 2335, 2891, 2342, 2916, 2330, 2332, 2404, 2404, 2404, 2404, 2343, 2344, 2917, 2343, 2344, 2334, 2913, 2345, 2203, 2310, 2345, 2918, 2348, 2913, 2310, 2348, 2335, 2310, 2342, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2343, 2344, 2350, 2354, 2919, 2350, 2354, 2345, 2356, 2920, 2357, 2356, 2348, 2357, 2359, 2361, 2364, 2359, 2361, 2364, 2366, 2368, 2371, 2366, 2368, 2371, 2374, 2375, 2310, 2374, 2375, 2350, 2354, 2377, 2924, 2895, 2377, 2356, 2895, 2357, 2925, 2404, 2927, 2359, 2361, 2364, 2928, 2929, 2930, 2366, 2368, 2371, 2931, 2932, 2381, 2374, 2375, 2381, 2310, 2311, 2384, 2933, 2377, 2384, 2311, 2385, 2934, 2311, 2385, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2388, 2937, 2389, 2388, 2381, 2389, 2391, 2938, 2393, 2391, 2384, 2393, 2939, 2395, 2397, 2385, 2395, 2397, 2399, 2940, 2941, 2399, 2421, 2421, 2421, 2421, 2943, 2547, 2311, 2388, 2547, 2389, 2944, 2466, 2945, 2391, 2946, 2393, 2433, 2433, 2433, 2433, 2395, 2397, 2466, 2947, 2948, 2399, 2435, 2435, 2435, 2435, 2466, 2942, 2950, 2433, 2547, 2466, 2311, 2429, 2475, 2475, 2475, 2475, 2429, 2435, 2953, 2429, 2958, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2942, 2488, 2466, 2476, 2476, 2476, 2476, 2962, 2956, 2475, 2488, 2488, 2488, 2488, 2488, 2498, 2498, 2498, 2498, 2964, 2514, 2514, 2514, 2514, 2516, 2516, 2516, 2516, 2429, 2966, 2969, 2476, 2466, 2514, 2956, 2517, 2517, 2517, 2517, 2535, 2535, 2535, 2535, 2435, 2897, 2429, 2971, 2897, 2973, 2516, 2904, 2516, 2976, 2904, 2518, 2518, 2518, 2518, 2429, 2467, 2517, 2979, 2517, 2908, 2467, 2551, 2908, 2467, 2551, 2467, 2467, 2467, 2467, 2467, 2467, 2467, 2467, 2467, 2467, 2518, 2978, 2518, 2829, 2467, 2990, 2829, 2519, 2519, 2519, 2519, 2522, 2522, 2522, 2522, 2551, 2992, 2994, 2520, 2520, 2520, 2520, 2996, 2521, 2521, 2521, 2521, 2978, 2467, 3005, 2467, 2829, 2519, 3011, 2519, 3017, 2522, 2597, 2522, 2911, 2597, 3021, 2911, 2520, 2518, 2520, 2921, 3023, 2521, 2921, 2521, 3026, 3028, 3029, 2523, 2523, 2523, 2523, 2467, 2468, 2524, 2524, 2524, 2524, 2468, 3002, 2597, 2468, 2519, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2523, 2520, 2523, 2522, 2468, 2521, 2524, 2983, 2524, 2525, 2525, 2525, 2525, 3002, 2526, 2526, 2526, 2526, 2527, 2527, 2527, 2527, 2528, 2528, 2528, 2528, 2634, 3030, 2468, 2634, 2468, 2468, 3035, 2983, 2525, 2922, 2525, 2984, 2922, 2526, 2524, 2526, 3036, 2527, 3037, 2527, 2922, 2528, 2989, 2528, 2523, 2529, 2529, 2529, 2529, 2634, 3016, 3038, 2468, 2530, 2530, 2530, 2530, 2984, 2531, 2531, 2531, 2531, 2525, 2532, 2532, 2532, 2532, 3039, 2989, 3040, 2529, 2527, 2529, 3042, 2636, 2526, 3016, 2636, 2530, 3041, 2530, 3043, 3041, 2531, 2640, 2531, 3044, 2640, 2532, 3048, 2532, 2528, 2533, 2533, 2533, 2533, 2534, 2534, 2534, 2534, 3049, 3050, 2529, 2636, 3051, 2537, 2537, 2537, 2537, 2619, 2619, 2619, 2619, 2640, 2530, 2531, 2537, 2533, 3052, 2533, 3054, 2534, 3057, 2534, 2620, 2620, 2620, 2620, 2619, 2619, 2619, 2619, 2619, 2619, 2619, 2736, 2736, 2736, 2736, 2738, 2738, 2738, 2738, 2620, 2620, 2620, 2620, 2620, 2620, 2620, 2632, 2642, 3058, 2534, 2642, 2632, 2643, 2645, 2647, 2643, 2645, 2647, 3059, 2632, 2632, 2632, 2632, 2632, 2632, 2632, 2650, 2652, 2654, 2650, 2652, 2654, 2658, 3060, 2659, 2658, 2642, 2659, 3105, 3106, 3109, 2643, 2645, 2647, 2662, 2665, 2666, 2662, 2665, 2666, 2669, 2670, 3063, 2669, 2670, 2650, 2652, 2654, 3110, 2672, 3070, 2658, 2672, 2659, 2674, 2676, 2678, 2674, 2676, 2678, 3111, 2632, 3062, 2662, 2665, 2666, 3117, 3072, 2680, 2669, 2670, 2680, 2681, 2683, 2632, 2681, 2683, 2685, 2672, 2687, 2685, 3065, 2687, 2674, 2676, 2678, 2688, 2691, 2693, 2688, 2691, 2693, 2695, 2696, 3070, 2695, 2696, 2680, 3063, 3120, 2698, 2681, 2683, 2698, 2700, 3062, 2685, 2700, 2687, 2702, 2703, 2705, 2702, 2703, 2705, 2688, 2691, 2693, 3064, 3072, 2706, 2695, 2696, 2706, 2710, 2711, 3069, 2710, 2711, 2698, 3074, 2714, 2715, 2700, 2714, 2715, 3071, 3065, 2702, 2703, 2705, 2719, 2721, 2725, 2719, 2721, 2725, 2727, 2729, 2706, 2727, 2729, 2731, 2710, 2711, 2731, 2732, 3020, 3064, 2732, 2714, 2715, 2739, 2739, 2739, 2739, 2740, 2740, 2740, 2740, 2719, 2721, 2725, 3069, 3078, 3125, 2727, 2729, 3071, 3073, 3119, 2731, 3074, 3020, 3075, 2732, 2741, 2741, 2741, 2741, 2752, 2752, 2752, 2752, 2753, 2753, 2753, 2753, 2761, 2761, 2761, 2761, 2772, 2772, 2772, 2772, 2775, 2775, 2775, 2775, 2776, 2776, 2776, 2776, 2791, 2791, 2791, 2791, 2814, 2772, 3083, 2814, 3073, 2775, 3081, 2879, 3085, 2776, 2879, 3130, 3078, 2791, 2792, 2792, 2792, 2792, 2801, 2801, 2801, 2801, 2808, 3077, 3075, 2885, 2809, 3079, 2885, 2814, 3132, 2792, 3088, 2808, 3119, 2801, 2879, 2809, 2809, 3133, 2818, 2818, 2818, 2818, 3091, 2809, 2808, 2761, 2767, 3081, 2809, 3092, 3085, 2767, 2885, 3083, 2767, 3086, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 2818, 2955, 2808, 3077, 2955, 3134, 2809, 2819, 2819, 2819, 2819, 3079, 2819, 2820, 2820, 2820, 2820, 2801, 2821, 2821, 2821, 2821, 3088, 2821, 2822, 2822, 2822, 2822, 2767, 3091, 2955, 3092, 2808, 3086, 3082, 2767, 2809, 2836, 2836, 2836, 2836, 2820, 2837, 2837, 2837, 2837, 2851, 2851, 2851, 2851, 2854, 2854, 2854, 2854, 2855, 2855, 2855, 2855, 2767, 2773, 2773, 2773, 3095, 2773, 2773, 2773, 2773, 2773, 2773, 2773, 2773, 2773, 2773, 2773, 2773, 2854, 2773, 2854, 2773, 2855, 3136, 2855, 2856, 2856, 2856, 2856, 3082, 2773, 2773, 2773, 2773, 2773, 2857, 2857, 2857, 2857, 2858, 2858, 2858, 2858, 2872, 2872, 2872, 2872, 3139, 2957, 3140, 2856, 2957, 2856, 2859, 2859, 2859, 2859, 2773, 3142, 2773, 2857, 3163, 2857, 3095, 2858, 3097, 2858, 3164, 2860, 2860, 2860, 2860, 2873, 2873, 2873, 2873, 3089, 2957, 2859, 3165, 2859, 3080, 2959, 2873, 3080, 2959, 2773, 2773, 2773, 2810, 3090, 3096, 2857, 2860, 3167, 2860, 3168, 2810, 3080, 2810, 2810, 2810, 2810, 2810, 2810, 2810, 2810, 2810, 2810, 2960, 2859, 2959, 2960, 2810, 2861, 2861, 2861, 2861, 3097, 2862, 2862, 2862, 2862, 2863, 2863, 2863, 2863, 3169, 3089, 2860, 2864, 2864, 2864, 2864, 3171, 3172, 3175, 2810, 2960, 2861, 3090, 2861, 3173, 3096, 2862, 3173, 2862, 3176, 2863, 3121, 2863, 3174, 3121, 2810, 3174, 2864, 3177, 2864, 2926, 2926, 2926, 2926, 3178, 2865, 2865, 2865, 2865, 2810, 2811, 2866, 2866, 2866, 2866, 2811, 3098, 3179, 2811, 3121, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2865, 2861, 2865, 3180, 2811, 2862, 2866, 3181, 2866, 2863, 2867, 2867, 2867, 2867, 2868, 2868, 2868, 2868, 2869, 2869, 2869, 2869, 3183, 2870, 2870, 2870, 2870, 3184, 2811, 3187, 2811, 2874, 2874, 2874, 2874, 2867, 3189, 2867, 3098, 2868, 3191, 2868, 2874, 2869, 2963, 2869, 3192, 2963, 2870, 2811, 2870, 2871, 2871, 2871, 2871, 3185, 2866, 3182, 2811, 3193, 3182, 2965, 2967, 2968, 2965, 2967, 2968, 3194, 2970, 3185, 2954, 2970, 2867, 2963, 2972, 2954, 2871, 2972, 2871, 3195, 3196, 3197, 2868, 2954, 2954, 2954, 2954, 2954, 2954, 2954, 2965, 2967, 2968, 2974, 3198, 2975, 2974, 2970, 2975, 2977, 3199, 2980, 2977, 2972, 2980, 2981, 2985, 2987, 2981, 2985, 2987, 2991, 2993, 2995, 2991, 2993, 2995, 2997, 2871, 3201, 2997, 3202, 2974, 2998, 2975, 2954, 2998, 3203, 2977, 3000, 2980, 3204, 3000, 3205, 2981, 2985, 2987, 3206, 3207, 3209, 2991, 2993, 2995, 3210, 3003, 3211, 2997, 3003, 2954, 3212, 3006, 3007, 2998, 3006, 3007, 3213, 3009, 3012, 3000, 3009, 3012, 3013, 3014, 3018, 3013, 3014, 3018, 3019, 3022, 3024, 3019, 3022, 3024, 3003, 3025, 3027, 3214, 3025, 3027, 3006, 3007, 3031, 3031, 3031, 3031, 3009, 3012, 3215, 3217, 3218, 3013, 3014, 3018, 3219, 3227, 3234, 3019, 3022, 3024, 3032, 3032, 3032, 3032, 3025, 3027, 3033, 3033, 3033, 3033, 3034, 3034, 3034, 3034, 3045, 3045, 3045, 3045, 3047, 3047, 3047, 3047, 3053, 3053, 3053, 3053, 3055, 3055, 3055, 3055, 3056, 3056, 3056, 3056, 3076, 3076, 3076, 3076, 3076, 3076, 3084, 3084, 3084, 3084, 3087, 3087, 3087, 3087, 3093, 3093, 3093, 3093, 3094, 3094, 3094, 3094, 3099, 3084, 3238, 3100, 3107, 3087, 3240, 3107, 3243, 3093, 3245, 3099, 3099, 3094, 3100, 3100, 3224, 3248, 3122, 3099, 3166, 3122, 3100, 3166, 3099, 3186, 3233, 3100, 3186, 3112, 3112, 3112, 3112, 3107, 3112, 3114, 3114, 3114, 3114, 3188, 3114, 3250, 3188, 3224, 3055, 3061, 3122, 3252, 3099, 3166, 3061, 3100, 3233, 3061, 3256, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3237, 3093, 3116, 3116, 3116, 3116, 3118, 3118, 3118, 3118, 3264, 3190, 3123, 3099, 3190, 3123, 3100, 3127, 3127, 3127, 3127, 3128, 3128, 3128, 3128, 3265, 3237, 3267, 3061, 3123, 3268, 3123, 3123, 3123, 3123, 3123, 3123, 3129, 3129, 3129, 3129, 3131, 3131, 3131, 3131, 3269, 3270, 3061, 3271, 3272, 3135, 3135, 3135, 3135, 3137, 3137, 3137, 3137, 3061, 3067, 3067, 3067, 3274, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3135, 3067, 3275, 3067, 3138, 3138, 3138, 3138, 3141, 3141, 3141, 3141, 3067, 3067, 3067, 3067, 3067, 3144, 3144, 3144, 3144, 3258, 3144, 3145, 3145, 3145, 3145, 3276, 3146, 3146, 3146, 3146, 3147, 3147, 3147, 3147, 3278, 3273, 3282, 3067, 3273, 3067, 3144, 3283, 3144, 3287, 3288, 3258, 3145, 3135, 3145, 3289, 3290, 3146, 3329, 3146, 3332, 3147, 3333, 3147, 3200, 3200, 3200, 3200, 3152, 3152, 3152, 3152, 3067, 3067, 3067, 3068, 3068, 3068, 3292, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3146, 3068, 3152, 3068, 3068, 3148, 3148, 3148, 3148, 3294, 3303, 3068, 3068, 3068, 3068, 3068, 3068, 3149, 3149, 3149, 3149, 3300, 3151, 3151, 3151, 3151, 3153, 3153, 3153, 3153, 3148, 3292, 3148, 3150, 3150, 3150, 3150, 3310, 3293, 3068, 3068, 3068, 3149, 3334, 3149, 3336, 3337, 3151, 3338, 3151, 3298, 3153, 3293, 3153, 3161, 3161, 3161, 3161, 3150, 3303, 3150, 3300, 3339, 3222, 3148, 3161, 3222, 3294, 3068, 3068, 3068, 3101, 3154, 3154, 3154, 3154, 3101, 3310, 3304, 3101, 3302, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3149, 3222, 3153, 3150, 3101, 3151, 3154, 3298, 3154, 3155, 3155, 3155, 3155, 3156, 3156, 3156, 3156, 3312, 3157, 3157, 3157, 3157, 3158, 3158, 3158, 3158, 3342, 3306, 3101, 3159, 3159, 3159, 3159, 3302, 3155, 3304, 3155, 3347, 3156, 3225, 3156, 3311, 3225, 3157, 3301, 3157, 3350, 3158, 3308, 3158, 3352, 3309, 3228, 3313, 3159, 3228, 3159, 3312, 3101, 3102, 3160, 3160, 3160, 3160, 3102, 3341, 3354, 3102, 3225, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3157, 3306, 3228, 3357, 3102, 3322, 3160, 3301, 3160, 3229, 3231, 3159, 3229, 3231, 3311, 3235, 3309, 3221, 3235, 3308, 3236, 3239, 3221, 3236, 3239, 3313, 3241, 3318, 3102, 3241, 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3242, 3229, 3231, 3242, 3324, 3362, 3341, 3235, 3102, 3364, 3322, 3319, 3236, 3239, 3244, 3380, 3246, 3244, 3241, 3246, 3247, 3102, 3103, 3247, 3249, 3251, 3321, 3249, 3251, 3242, 3103, 3323, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3103, 3318, 3244, 3383, 3246, 3103, 3221, 3253, 3247, 3324, 3253, 3254, 3249, 3251, 3254, 3257, 3259, 3221, 3257, 3259, 3261, 3262, 3319, 3261, 3262, 3266, 3266, 3266, 3266, 3277, 3277, 3277, 3277, 3321, 3384, 3386, 3253, 3387, 3335, 3390, 3254, 3335, 3323, 3385, 3257, 3259, 3385, 3391, 3392, 3261, 3262, 3279, 3279, 3279, 3279, 3280, 3280, 3280, 3280, 3103, 3104, 3281, 3281, 3281, 3281, 3104, 3388, 3335, 3104, 3388, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3284, 3284, 3284, 3284, 3104, 3285, 3285, 3285, 3285, 3286, 3286, 3286, 3286, 3394, 3295, 3295, 3295, 3295, 3299, 3299, 3299, 3299, 3305, 3305, 3305, 3305, 3305, 3305, 3104, 3389, 3104, 3295, 3389, 3395, 3398, 3299, 3307, 3307, 3307, 3307, 3315, 3315, 3315, 3315, 3104, 3316, 3316, 3316, 3316, 3280, 3399, 3393, 3396, 3307, 3393, 3396, 3400, 3315, 3104, 3291, 3403, 3406, 3316, 3343, 3291, 3397, 3343, 3291, 3397, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3317, 3317, 3317, 3317, 3320, 3320, 3320, 3320, 3340, 3340, 3340, 3340, 3343, 3402, 3327, 3404, 3402, 3317, 3404, 3307, 3405, 3320, 3407, 3405, 3344, 3327, 3404, 3344, 3291, 3409, 3411, 3291, 3345, 3327, 3412, 3345, 3413, 3412, 3327, 3415, 3316, 3344, 3416, 3344, 3344, 3344, 3344, 3344, 3344, 3345, 3420, 3345, 3345, 3345, 3345, 3345, 3345, 3422, 3291, 3296, 3296, 3296, 3327, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3425, 3296, 3346, 3296, 3296, 3346, 3348, 3348, 3348, 3348, 3427, 3296, 3296, 3296, 3296, 3296, 3296, 3327, 3429, 3346, 3439, 3346, 3346, 3346, 3346, 3346, 3346, 3349, 3349, 3349, 3349, 3351, 3351, 3351, 3351, 3353, 3353, 3353, 3353, 3296, 3296, 3296, 3355, 3355, 3355, 3355, 3356, 3356, 3356, 3356, 3359, 3359, 3359, 3359, 3360, 3360, 3360, 3360, 3442, 3446, 3353, 3448, 3358, 3358, 3358, 3358, 3451, 3355, 3296, 3296, 3296, 3297, 3297, 3297, 3452, 3297, 3297, 3297, 3297, 3297, 3297, 3297, 3297, 3297, 3297, 3297, 3297, 3358, 3297, 3431, 3297, 3297, 3361, 3361, 3361, 3361, 3455, 3456, 3297, 3297, 3297, 3297, 3297, 3297, 3363, 3363, 3363, 3363, 3441, 3353, 3367, 3367, 3367, 3367, 3458, 3431, 3355, 3365, 3365, 3365, 3365, 3459, 3366, 3366, 3366, 3366, 3297, 3297, 3297, 3368, 3368, 3368, 3368, 3463, 3441, 3367, 3464, 3367, 3369, 3369, 3369, 3369, 3365, 3465, 3365, 3466, 3474, 3366, 3470, 3366, 3371, 3371, 3371, 3371, 3368, 3297, 3297, 3297, 3325, 3379, 3379, 3379, 3379, 3369, 3475, 3369, 3325, 3482, 3325, 3325, 3325, 3325, 3325, 3325, 3325, 3325, 3325, 3325, 3365, 3486, 3481, 3478, 3325, 3366, 3367, 3484, 3370, 3370, 3370, 3370, 3372, 3372, 3372, 3372, 3373, 3373, 3373, 3373, 3374, 3374, 3374, 3374, 3487, 3496, 3474, 3369, 3375, 3375, 3375, 3375, 3470, 3370, 3499, 3370, 3475, 3372, 3500, 3372, 3479, 3373, 3471, 3373, 3486, 3374, 3450, 3450, 3450, 3450, 3481, 3423, 3482, 3375, 3423, 3375, 3478, 3484, 3325, 3326, 3376, 3376, 3376, 3376, 3326, 3488, 3485, 3326, 3370, 3326, 3326, 3326, 3326, 3326, 3326, 3326, 3326, 3326, 3326, 3488, 3423, 3424, 3372, 3326, 3424, 3376, 3471, 3376, 3377, 3377, 3377, 3377, 3479, 3378, 3378, 3378, 3378, 3491, 3504, 3506, 3426, 3428, 3430, 3426, 3428, 3430, 3512, 3326, 3490, 3421, 3424, 3513, 3516, 3377, 3421, 3377, 3485, 3517, 3378, 3376, 3378, 3376, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3426, 3428, 3430, 3432, 3518, 3376, 3432, 3376, 3326, 3328, 3434, 3533, 3435, 3434, 3328, 3435, 3505, 3328, 3491, 3328, 3328, 3328, 3328, 3328, 3328, 3328, 3328, 3328, 3328, 3534, 3490, 3421, 3432, 3328, 3437, 3440, 3472, 3437, 3440, 3434, 3443, 3435, 3444, 3443, 3447, 3444, 3489, 3447, 3457, 3457, 3457, 3457, 3461, 3461, 3461, 3461, 3535, 3328, 3421, 3462, 3462, 3462, 3462, 3437, 3440, 3467, 3467, 3467, 3467, 3443, 3524, 3444, 3505, 3447, 3468, 3468, 3468, 3468, 3509, 3524, 3472, 3509, 3515, 3515, 3515, 3515, 3539, 3328, 3330, 3540, 3489, 3541, 3540, 3330, 3541, 3542, 3330, 3545, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3330, 3483, 3483, 3483, 3483, 3330, 3492, 3492, 3492, 3492, 3493, 3493, 3493, 3493, 3507, 3548, 3543, 3507, 3483, 3543, 3552, 3544, 3508, 3492, 3544, 3508, 3547, 3493, 3558, 3547, 3559, 3507, 3560, 3507, 3507, 3507, 3507, 3507, 3507, 3508, 3563, 3508, 3508, 3508, 3508, 3508, 3508, 3520, 3520, 3520, 3520, 3522, 3522, 3522, 3522, 3514, 3514, 3514, 3514, 3330, 3331, 3519, 3519, 3519, 3519, 3331, 3549, 3564, 3331, 3549, 3331, 3331, 3331, 3331, 3331, 3331, 3331, 3331, 3331, 3331, 3514, 3565, 3550, 3566, 3331, 3550, 3519, 3521, 3521, 3521, 3521, 3523, 3523, 3523, 3523, 3525, 3525, 3525, 3525, 3526, 3526, 3526, 3526, 3527, 3527, 3527, 3527, 3571, 3331, 3575, 3331, 3531, 3531, 3531, 3531, 3528, 3528, 3528, 3528, 3570, 3525, 3577, 3525, 3580, 3526, 3553, 3526, 3331, 3553, 3514, 3537, 3537, 3537, 3537, 3538, 3538, 3538, 3538, 3331, 3469, 3528, 3583, 3528, 3584, 3469, 3570, 3521, 3469, 3521, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3557, 3585, 3521, 3557, 3521, 3588, 3529, 3529, 3529, 3529, 3530, 3530, 3530, 3530, 3532, 3532, 3532, 3532, 3536, 3536, 3536, 3536, 3556, 3592, 3596, 3556, 3528, 3555, 3469, 3562, 3555, 3529, 3562, 3529, 3556, 3530, 3621, 3530, 3555, 3532, 3630, 3532, 3631, 3536, 3632, 3536, 3636, 3637, 3638, 3469, 3643, 3638, 3568, 3572, 3573, 3568, 3572, 3573, 3469, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3529, 3568, 3572, 3573, 3645, 3530, 3476, 3476, 3476, 3476, 3476, 3476, 3576, 3578, 3579, 3576, 3578, 3579, 3582, 3582, 3582, 3582, 3648, 3581, 3657, 3623, 3581, 3590, 3590, 3590, 3590, 3670, 3567, 3671, 3476, 3476, 3476, 3567, 3623, 3672, 3636, 3576, 3578, 3579, 3673, 3567, 3567, 3567, 3567, 3567, 3567, 3567, 3581, 3591, 3591, 3591, 3591, 3594, 3594, 3594, 3594, 3676, 3679, 3476, 3476, 3476, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3597, 3597, 3597, 3597, 3685, 3686, 3477, 3477, 3477, 3477, 3477, 3477, 3606, 3606, 3567, 3598, 3598, 3598, 3598, 3660, 3606, 3687, 3660, 3567, 3600, 3600, 3600, 3600, 3601, 3601, 3601, 3601, 3691, 3694, 3477, 3477, 3477, 3602, 3602, 3602, 3602, 3600, 3702, 3661, 3663, 3601, 3661, 3663, 3706, 3606, 3603, 3603, 3603, 3603, 3602, 3604, 3604, 3604, 3604, 3635, 3635, 3635, 3635, 3477, 3477, 3477, 3494, 3603, 3711, 3701, 3664, 3494, 3604, 3664, 3494, 3696, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3494, 3665, 3698, 3601, 3665, 3494, 3605, 3605, 3605, 3605, 3607, 3607, 3607, 3607, 3608, 3608, 3609, 3609, 3609, 3609, 3714, 3666, 3608, 3605, 3666, 3602, 3603, 3607, 3701, 3494, 3718, 3668, 3696, 3609, 3668, 3610, 3610, 3610, 3610, 3611, 3611, 3611, 3611, 3668, 3713, 3698, 3604, 3719, 3494, 3722, 3726, 3608, 3610, 3729, 3697, 3730, 3611, 3713, 3733, 3494, 3495, 3641, 3641, 3641, 3641, 3495, 3677, 3700, 3495, 3677, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3495, 3613, 3613, 3613, 3613, 3495, 3609, 3614, 3614, 3614, 3614, 3642, 3642, 3642, 3642, 3697, 3677, 3678, 3613, 3680, 3678, 3610, 3680, 3681, 3614, 3745, 3681, 3611, 3615, 3615, 3615, 3615, 3616, 3616, 3616, 3616, 3618, 3618, 3618, 3618, 3700, 3644, 3644, 3644, 3644, 3615, 3678, 3699, 3680, 3616, 3705, 3746, 3681, 3618, 3646, 3646, 3646, 3646, 3750, 3495, 3497, 3647, 3647, 3647, 3647, 3497, 3644, 3721, 3497, 3753, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3497, 3649, 3649, 3649, 3649, 3497, 3708, 3756, 3614, 3757, 3615, 3699, 3650, 3650, 3650, 3650, 3653, 3653, 3653, 3653, 3658, 3658, 3658, 3658, 3765, 3715, 3649, 3705, 3649, 3692, 3692, 3692, 3692, 3618, 3763, 3771, 3644, 3650, 3715, 3650, 3777, 3653, 3720, 3720, 3720, 3720, 3779, 3740, 3742, 3708, 3740, 3742, 3721, 3724, 3724, 3724, 3724, 3781, 3782, 3497, 3498, 3498, 3498, 3784, 3647, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3763, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3498, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3651, 3651, 3651, 3651, 3760, 3785, 3501, 3501, 3501, 3501, 3501, 3501, 3652, 3652, 3652, 3652, 3655, 3655, 3655, 3655, 3654, 3654, 3654, 3654, 3762, 3651, 3743, 3651, 3768, 3743, 3703, 3703, 3707, 3707, 3501, 3501, 3501, 3652, 3703, 3652, 3707, 3655, 3786, 3655, 3780, 3654, 3759, 3654, 3725, 3725, 3725, 3725, 3728, 3728, 3728, 3728, 3731, 3731, 3731, 3731, 3760, 3783, 3764, 3501, 3501, 3501, 3599, 3703, 3762, 3707, 3744, 3599, 3768, 3744, 3599, 3651, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3599, 3652, 3654, 3795, 3796, 3655, 3735, 3735, 3735, 3735, 3801, 3759, 3727, 3727, 3727, 3727, 3802, 3675, 3748, 3780, 3813, 3748, 3675, 3734, 3734, 3734, 3734, 3764, 3774, 3599, 3675, 3675, 3675, 3675, 3675, 3675, 3675, 3727, 3752, 3752, 3752, 3752, 3774, 3783, 3817, 3599, 3792, 3748, 3734, 3792, 3734, 3821, 3804, 3731, 3798, 3798, 3798, 3798, 3807, 3599, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3612, 3675, 3737, 3737, 3737, 3737, 3727, 3612, 3612, 3612, 3612, 3612, 3612, 3751, 3804, 3675, 3751, 3734, 3736, 3736, 3736, 3736, 3761, 3761, 3761, 3761, 3807, 3737, 3797, 3737, 3834, 3797, 3838, 3747, 3842, 3612, 3612, 3612, 3747, 3761, 3847, 3810, 3751, 3736, 3810, 3736, 3747, 3747, 3747, 3747, 3747, 3747, 3747, 3766, 3766, 3839, 3856, 3797, 3859, 3832, 3815, 3766, 3835, 3850, 3612, 3612, 3612, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3736, 3803, 3766, 3806, 3834, 3860, 3617, 3617, 3617, 3617, 3617, 3617, 3747, 3767, 3767, 3767, 3767, 3787, 3787, 3787, 3787, 3811, 3815, 3747, 3788, 3788, 3788, 3788, 3832, 3839, 3767, 3835, 3850, 3811, 3617, 3617, 3617, 3791, 3791, 3791, 3791, 3803, 3787, 3789, 3789, 3789, 3789, 3806, 3862, 3788, 3875, 3788, 3799, 3799, 3799, 3799, 3800, 3800, 3800, 3800, 3833, 3886, 3791, 3617, 3617, 3617, 3619, 3853, 3789, 3837, 3789, 3619, 3889, 3837, 3619, 3851, 3619, 3619, 3619, 3619, 3619, 3619, 3619, 3619, 3619, 3619, 3790, 3790, 3790, 3790, 3619, 3805, 3805, 3805, 3805, 3809, 3809, 3809, 3809, 3820, 3820, 3820, 3820, 3822, 3822, 3822, 3822, 3833, 3805, 3861, 3892, 3790, 3809, 3790, 3619, 3888, 3868, 3619, 3789, 3823, 3823, 3823, 3823, 3861, 3820, 3853, 3863, 3888, 3822, 3825, 3825, 3825, 3825, 3827, 3827, 3827, 3827, 3894, 3851, 3890, 3824, 3824, 3824, 3824, 3619, 3620, 3826, 3826, 3826, 3826, 3876, 3891, 3887, 3620, 3825, 3620, 3620, 3620, 3620, 3620, 3620, 3620, 3620, 3620, 3620, 3824, 3868, 3824, 3895, 3620, 3880, 3826, 3863, 3826, 3830, 3830, 3830, 3830, 3845, 3845, 3845, 3845, 3846, 3846, 3846, 3846, 3848, 3848, 3848, 3848, 3849, 3849, 3849, 3849, 3852, 3852, 3852, 3852, 3890, 3869, 3869, 3869, 3869, 3845, 3871, 3871, 3871, 3871, 3891, 3620, 3874, 3852, 3887, 3898, 3876, 3849, 3869, 3849, 3880, 3874, 3826, 3871, 3900, 3620, 3622, 3622, 3622, 3903, 3905, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3907, 3622, 3909, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3622, 3624, 3624, 3624, 3893, 3904, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3896, 3897, 3899, 3624, 3865, 3865, 3865, 3865, 3866, 3866, 3866, 3866, 3624, 3624, 3624, 3624, 3624, 3867, 3867, 3867, 3867, 3877, 3877, 3877, 3877, 3878, 3878, 3878, 3878, 3865, 3910, 3912, 3914, 3866, 3904, 3866, 3916, 3893, 3917, 3624, 4244, 3624, 3867, 4002, 4244, 2179, 3877, 3879, 3879, 3879, 3879, 4002, 4005, 2178, 2177, 2176, 4002, 4005, 4015, 3897, 4002, 4005, 3896, 4015, 3899, 2175, 2174, 4015, 3624, 3624, 3624, 3625, 3625, 3625, 2173, 2172, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 2171, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3626, 3626, 3626, 3908, 3911, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3913, 2170, 4250, 3626, 3902, 3902, 3902, 3902, 4010, 4250, 2169, 3626, 3626, 3626, 3626, 3626, 3626, 4032, 2168, 4010, 4036, 3902, 4032, 4010, 4380, 4036, 4032, 4048, 4049, 4036, 4245, 4380, 4601, 4049, 4245, 4048, 4601, 4049, 2167, 3626, 4048, 3626, 4073, 4050, 4048, 4050, 4073, 3911, 4053, 4073, 4050, 3908, 4411, 4053, 4050, 4070, 4411, 4053, 4101, 4411, 4070, 4070, 3913, 4101, 4070, 2166, 2165, 4101, 3626, 3626, 3626, 3627, 3627, 3627, 2164, 2163, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 2162, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3628, 3628, 3628, 2158, 2157, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 2156, 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, 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, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3695, 2155, 4628, 2146, 2144, 3695, 4628, 2143, 3695, 2140, 3695, 3695, 3695, 3695, 3695, 3695, 3695, 3695, 3695, 3695, 4074, 4122, 4132, 4074, 4145, 2139, 4122, 4132, 4074, 4145, 4122, 4132, 4074, 4145, 4146, 4151, 4167, 2133, 2125, 2124, 4151, 4167, 4146, 2123, 4151, 4167, 2118, 4146, 3695, 4176, 4180, 4146, 4190, 4613, 4176, 4180, 2117, 4190, 4176, 4180, 4195, 4190, 2116, 4202, 2114, 4195, 4210, 3695, 4202, 4195, 2113, 4210, 4202, 4613, 2072, 4210, 2071, 4613, 3695, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 3704, 2070, 2069, 2068, 2067, 4211, 4640, 3704, 3704, 3704, 3704, 3704, 3704, 4211, 4212, 4216, 4237, 2063, 4211, 4212, 4216, 4237, 4211, 4212, 4216, 4237, 4640, 4213, 2062, 4213, 4640, 2061, 2058, 2057, 4213, 3704, 3704, 3704, 4213, 4239, 2056, 4240, 2055, 2053, 4239, 4239, 4240, 4261, 4239, 4240, 4240, 4246, 4261, 4280, 4246, 2052, 4261, 2051, 4280, 4246, 2050, 2048, 4280, 4246, 3704, 3704, 3704, 3709, 2046, 2045, 2044, 2043, 3709, 4295, 1988, 3709, 1981, 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, 4304, 4295, 4314, 4324, 3709, 4304, 4295, 4314, 4324, 4304, 4295, 4314, 4324, 4332, 4349, 4353, 4361, 1979, 4332, 4349, 4353, 4361, 4332, 4349, 4353, 4361, 4365, 4373, 3709, 4374, 4377, 4365, 4373, 1975, 4374, 4365, 4373, 4374, 4374, 4392, 1974, 4397, 4377, 1973, 4392, 4401, 4377, 1972, 4392, 3709, 4401, 1971, 1970, 1969, 4401, 1968, 4397, 4614, 3709, 3710, 1967, 4397, 4614, 1966, 3710, 4397, 4614, 3710, 4626, 3710, 3710, 3710, 3710, 3710, 3710, 3710, 3710, 3710, 3710, 4641, 4642, 4652, 4626, 3710, 4641, 4642, 1965, 4626, 4641, 4642, 1964, 4626, 4654, 4663, 1963, 4652, 1951, 1950, 4663, 1949, 4652, 1947, 4663, 1942, 4652, 1941, 4654, 1940, 1939, 1938, 1937, 4654, 1936, 1934, 1933, 4654, 1931, 1930, 1929, 1928, 1927, 1926, 1925, 1919, 3710, 1918, 1917, 1911, 1903, 1900, 1899, 1898, 1897, 1896, 1895, 1894, 1889, 3710, 3712, 3712, 3712, 1887, 1886, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 1885, 3712, 1884, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3716, 3716, 3716, 1883, 1880, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 1879, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3716, 3717, 3717, 3717, 1878, 1877, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 1876, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3717, 3758, 3758, 3758, 1875, 1874, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 1873, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3758, 3769, 1872, 1871, 1870, 1869, 3769, 1866, 1863, 3769, 1861, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 3769, 1860, 1859, 1858, 1857, 3769, 1856, 1855, 1853, 1851, 1850, 1849, 1846, 1844, 1842, 1840, 1839, 1837, 1836, 1833, 1829, 1828, 1818, 1812, 1811, 1807, 1806, 1805, 1804, 3769, 1801, 1800, 1799, 1769, 1764, 1760, 1759, 1758, 1757, 1755, 1754, 1752, 1751, 1749, 1748, 3769, 1747, 1741, 1740, 1738, 1737, 1736, 1735, 1733, 1722, 1718, 1716, 1714, 1706, 3769, 3770, 1696, 1693, 1692, 1691, 3770, 1688, 1686, 3770, 1685, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 3770, 1682, 1677, 1673, 1672, 3770, 1671, 1670, 1667, 1663, 1651, 1650, 1648, 1647, 1646, 1645, 1644, 1641, 1635, 1624, 1623, 1622, 1587, 1584, 1582, 1579, 1578, 1574, 1573, 1552, 1551, 1543, 1540, 1539, 1519, 1514, 3770, 1513, 1512, 1511, 1510, 1509, 1507, 1506, 1503, 1479, 1477, 1471, 1461, 1460, 1459, 1458, 1456, 1452, 1451, 1445, 1444, 1443, 1426, 3770, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 1423, 1418, 1415, 1414, 1413, 1412, 3793, 3793, 3793, 3793, 3793, 3793, 1411, 1408, 1405, 1401, 1394, 1388, 1386, 1384, 1383, 1378, 1377, 1376, 1375, 1372, 1365, 1364, 1362, 1359, 1358, 1356, 1355, 1353, 3793, 3793, 3793, 1350, 1342, 1337, 1334, 1332, 1331, 1330, 1327, 1326, 1319, 1317, 1312, 1307, 1299, 1296, 1294, 1293, 1292, 1289, 1285, 1284, 1283, 1282, 1281, 1279, 1278, 3793, 3793, 3793, 3812, 3812, 3812, 1265, 1262, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 1261, 3812, 1249, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3812, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 3818, 1247, 1246, 1243, 1242, 1240, 1239, 3818, 3818, 3818, 3818, 3818, 3818, 1238, 1237, 1235, 1232, 1230, 1220, 1218, 1217, 1213, 1210, 1206, 1203, 1202, 1198, 1193, 1192, 1191, 1190, 1187, 1183, 1177, 1175, 3818, 3818, 3818, 1174, 1168, 1157, 1152, 1146, 1144, 1140, 1138, 1129, 1128, 1127, 1126, 1123, 1122, 1121, 1120, 1105, 1086, 1077, 1075, 1074, 1073, 1070, 1069, 1068, 1066, 3818, 3818, 3818, 3836, 3836, 3836, 1065, 1056, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 1055, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3854, 3854, 3854, 1054, 1051, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 1041, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3855, 3855, 3855, 1029, 1021, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 3855, 1016, 1014, 1012, 3855, 1010, 1007, 1004, 1002, 994, 980, 976, 959, 3855, 3855, 3855, 3855, 3855, 956, 955, 952, 950, 949, 934, 931, 917, 913, 910, 907, 893, 856, 852, 850, 847, 846, 845, 828, 827, 825, 824, 3855, 3855, 3855, 822, 818, 813, 812, 810, 800, 798, 797, 790, 787, 786, 776, 761, 756, 748, 743, 729, 726, 721, 717, 708, 704, 700, 697, 694, 687, 3855, 3855, 3855, 3857, 3857, 3857, 684, 681, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 3857, 678, 670, 667, 3857, 664, 661, 657, 644, 640, 637, 633, 3857, 3857, 3857, 3857, 3857, 3857, 630, 629, 628, 622, 617, 615, 611, 595, 594, 579, 569, 565, 553, 549, 539, 535, 527, 515, 510, 509, 508, 506, 3857, 3857, 3857, 495, 492, 490, 482, 481, 477, 475, 471, 467, 456, 455, 451, 447, 441, 437, 432, 431, 421, 419, 414, 412, 411, 410, 409, 398, 389, 3857, 3857, 3857, 3858, 3858, 3858, 372, 351, 3858, 3858, 3858, 348, 3858, 3858, 3858, 3858, 3858, 3858, 3858, 338, 336, 330, 3858, 325, 316, 304, 300, 294, 289, 287, 283, 3858, 3858, 3858, 3858, 281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3858, 3858, 3858, 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, 0, 3858, 3858, 3872, 3872, 3872, 0, 0, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 0, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3872, 3873, 3873, 3873, 0, 0, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 0, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3873, 3884, 3884, 3884, 0, 0, 3884, 3884, 3884, 0, 3884, 3884, 3884, 3884, 3884, 3884, 3884, 0, 0, 0, 3884, 0, 0, 0, 0, 0, 0, 0, 3884, 3884, 3884, 3884, 3884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3884, 3884, 3884, 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, 0, 3884, 3884, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3919, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3920, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 3921, 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, 3922, 3922, 3922, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3923, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3924, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3925, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3926, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3927, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3928, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3929, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3930, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 3931, 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, 3932, 3932, 3932, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3933, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3934, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3935, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3936, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3937, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3938, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3939, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3940, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 3941, 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, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3944, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3945, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3946, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3947, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3948, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3949, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3950, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3951, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3952, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3953, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3955, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3956, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3957, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3958, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 3959, 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, 3960, 3960, 3960, 3960, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3961, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3962, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3963, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3964, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3965, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3966, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3967, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3968, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3969, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3970, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3971, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3972, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3973, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3974, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3975, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3976, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3977, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 3978, 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, 3979, 3979, 3979, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3980, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3981, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3982, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3983, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 3984, 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, 3985, 3985, 3985, 3985, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3986, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3987, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3989, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3990, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3993, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 3994, 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, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3996, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3997, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4000, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4003, 4003, 4003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4003, 4003, 4003, 0, 0, 4003, 0, 0, 0, 4003, 4004, 4004, 4004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4004, 0, 0, 0, 4004, 4006, 4006, 4006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4006, 0, 0, 0, 4006, 0, 0, 0, 4006, 0, 0, 4006, 4007, 4007, 4007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4007, 0, 0, 0, 4007, 4007, 4008, 4008, 4008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4008, 4008, 0, 0, 0, 4008, 0, 0, 0, 4008, 4009, 4009, 0, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4009, 4011, 4011, 4011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4011, 4011, 4011, 0, 0, 4011, 0, 0, 0, 4011, 4012, 4012, 4012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4012, 0, 0, 0, 4012, 4013, 4013, 4013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4013, 4013, 4013, 0, 0, 4013, 0, 0, 0, 4013, 4014, 4014, 4014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4014, 0, 0, 0, 4014, 4016, 4016, 0, 0, 0, 4016, 4016, 0, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 0, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 4016, 0, 0, 4016, 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, 4018, 4018, 0, 0, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4019, 4019, 0, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4019, 4020, 4020, 4020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4020, 4020, 0, 0, 0, 4020, 0, 0, 0, 4020, 4021, 4021, 4021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4021, 0, 0, 0, 4021, 4022, 4022, 4022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4022, 4022, 0, 0, 0, 4022, 0, 0, 0, 4022, 4023, 4023, 4023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4023, 0, 0, 0, 4023, 4024, 4024, 0, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4024, 4025, 4025, 0, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4025, 4026, 4026, 0, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 0, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4027, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4028, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4030, 0, 0, 4030, 4030, 4030, 4030, 4030, 4030, 4030, 0, 4030, 4030, 4030, 4030, 0, 4030, 4030, 4030, 4030, 4030, 4030, 4030, 0, 4030, 4030, 4030, 4030, 4030, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4031, 4033, 4033, 0, 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, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4034, 4035, 4035, 0, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4035, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 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, 4038, 4038, 4038, 4038, 4039, 0, 0, 0, 0, 0, 0, 0, 0, 4039, 0, 0, 0, 0, 0, 4039, 0, 0, 0, 4039, 4039, 0, 4039, 0, 4039, 4040, 4040, 4040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4040, 4040, 0, 0, 0, 4040, 0, 0, 0, 4040, 4041, 4041, 4041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4041, 0, 0, 0, 4041, 4042, 4042, 0, 4042, 0, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4043, 0, 4043, 4043, 4043, 4043, 4043, 0, 0, 0, 4043, 0, 4043, 0, 4043, 4044, 4044, 0, 4044, 0, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4044, 4045, 0, 4045, 4045, 4045, 4045, 4045, 0, 0, 0, 4045, 0, 4045, 0, 4045, 4046, 4046, 4046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4046, 4046, 0, 0, 0, 4046, 0, 0, 0, 4046, 4047, 4047, 4047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4047, 0, 0, 0, 4047, 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, 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, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4057, 4057, 0, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4058, 4058, 0, 4058, 0, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4059, 0, 4059, 4059, 4059, 4059, 4059, 0, 0, 0, 4059, 0, 4059, 0, 4059, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4060, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4062, 4062, 0, 4062, 0, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4062, 4063, 0, 4063, 4063, 4063, 4063, 4063, 0, 0, 0, 4063, 0, 4063, 0, 4063, 4064, 4064, 0, 4064, 0, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4064, 4065, 0, 4065, 4065, 4065, 4065, 4065, 0, 0, 0, 4065, 0, 4065, 0, 4065, 4066, 4066, 4066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4066, 4066, 0, 0, 0, 4066, 0, 0, 0, 4066, 4067, 4067, 4067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4067, 4067, 0, 0, 0, 4067, 0, 0, 0, 4067, 4068, 4068, 4068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4068, 0, 0, 0, 4068, 4069, 4069, 4069, 0, 0, 4069, 0, 0, 0, 4069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4069, 0, 0, 0, 4069, 4071, 0, 0, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 0, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 0, 4071, 4071, 4071, 4071, 4071, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4075, 0, 4075, 4075, 4075, 4075, 4075, 0, 0, 0, 4075, 0, 4075, 0, 4075, 4076, 0, 4076, 4076, 4076, 4076, 4076, 0, 0, 4076, 4076, 0, 4076, 0, 4076, 4077, 0, 0, 4077, 0, 0, 4077, 0, 4077, 4077, 4077, 4077, 4077, 0, 0, 4077, 4077, 0, 4077, 0, 4077, 0, 0, 4077, 4078, 0, 0, 4078, 0, 0, 4078, 0, 4078, 4078, 4078, 4078, 4078, 0, 0, 0, 4078, 0, 4078, 0, 4078, 0, 0, 4078, 4079, 4079, 0, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4079, 4080, 4080, 0, 4080, 4080, 0, 0, 0, 4080, 0, 0, 0, 4080, 4081, 4081, 4081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4081, 4081, 0, 0, 0, 4081, 0, 0, 0, 4081, 4082, 4082, 4082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4082, 0, 0, 0, 4082, 4083, 0, 0, 0, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4083, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4084, 4085, 0, 0, 0, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4087, 0, 0, 0, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4088, 4089, 4089, 0, 4089, 4089, 4089, 4089, 4089, 4089, 4089, 4089, 4089, 4089, 4089, 4089, 0, 4089, 4089, 0, 4089, 4089, 4089, 4089, 0, 4089, 4089, 4089, 4089, 4089, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4090, 4091, 0, 0, 4091, 4091, 0, 4091, 0, 4091, 4091, 4091, 4091, 4091, 0, 0, 0, 4091, 0, 0, 0, 4091, 0, 0, 4091, 4092, 4092, 0, 0, 0, 0, 4092, 0, 4092, 4092, 0, 0, 0, 4092, 0, 0, 0, 4092, 4093, 4093, 0, 4093, 0, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4094, 0, 4094, 4094, 4094, 4094, 4094, 0, 0, 0, 4094, 0, 4094, 0, 4094, 4095, 4095, 0, 4095, 0, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4096, 0, 4096, 4096, 4096, 4096, 4096, 0, 0, 0, 4096, 0, 4096, 0, 4096, 4097, 0, 4097, 4097, 4097, 4097, 0, 0, 0, 0, 4097, 0, 0, 0, 4097, 4098, 0, 0, 0, 0, 0, 4098, 0, 4098, 4098, 4098, 4098, 4098, 0, 0, 4098, 4098, 0, 0, 0, 4098, 0, 0, 4098, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 0, 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, 4102, 0, 0, 0, 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, 0, 0, 0, 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, 0, 0, 0, 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, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4112, 4112, 0, 0, 0, 4112, 0, 0, 0, 4112, 4113, 4113, 4113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4113, 0, 0, 0, 4113, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 4114, 0, 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, 0, 4116, 0, 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, 0, 4117, 4117, 4117, 4117, 4117, 0, 0, 0, 4117, 0, 4117, 0, 4117, 4118, 4118, 0, 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, 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, 0, 4125, 0, 0, 0, 0, 4125, 0, 0, 0, 4125, 4126, 4126, 0, 4126, 0, 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, 0, 0, 0, 0, 0, 4127, 0, 4127, 4127, 4127, 4127, 4127, 0, 0, 4127, 4127, 0, 0, 0, 4127, 0, 0, 4127, 4128, 0, 0, 0, 0, 0, 4128, 0, 4128, 4128, 4128, 4128, 4128, 0, 0, 4128, 4128, 0, 4128, 0, 4128, 0, 0, 4128, 4129, 0, 4129, 4129, 4129, 4129, 4129, 0, 0, 0, 4129, 0, 4129, 0, 4129, 4130, 4130, 0, 4130, 0, 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, 0, 4131, 4131, 4131, 4131, 4131, 0, 0, 0, 4131, 0, 4131, 0, 4131, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 0, 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, 0, 4136, 0, 4136, 4136, 0, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 4136, 0, 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, 0, 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, 0, 4139, 0, 4139, 4139, 0, 0, 0, 4139, 4139, 4139, 4139, 4139, 0, 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, 0, 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, 0, 0, 0, 0, 4142, 4142, 0, 0, 0, 4142, 4142, 4142, 4142, 4142, 0, 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, 0, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4147, 4147, 4147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4147, 0, 0, 0, 4147, 0, 0, 0, 4147, 0, 0, 4147, 4148, 4148, 4148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4148, 4148, 4148, 0, 0, 4148, 0, 0, 0, 4148, 4149, 4149, 4149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4149, 0, 0, 0, 4149, 4150, 4150, 4150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4150, 0, 4150, 0, 0, 4150, 0, 0, 0, 4150, 4152, 4152, 4152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4152, 0, 0, 0, 4152, 0, 0, 0, 4152, 0, 0, 4152, 4153, 4153, 4153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4153, 4153, 0, 0, 0, 4153, 0, 0, 0, 4153, 4154, 4154, 4154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4154, 0, 0, 0, 4154, 4155, 4155, 4155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4155, 0, 0, 0, 4155, 4155, 4156, 4156, 4156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4156, 4156, 0, 0, 0, 4156, 0, 0, 0, 4156, 4157, 4157, 0, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4158, 4158, 0, 0, 0, 4158, 0, 0, 0, 4158, 4159, 4159, 4159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4159, 0, 0, 0, 4159, 0, 0, 0, 4159, 0, 0, 4159, 4160, 4160, 4160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4160, 4160, 4160, 0, 0, 4160, 0, 0, 0, 4160, 4161, 4161, 4161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4161, 0, 0, 0, 4161, 4162, 4162, 4162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4162, 0, 4162, 0, 0, 4162, 0, 0, 0, 4162, 4163, 4163, 4163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4163, 0, 0, 0, 4163, 0, 0, 0, 4163, 0, 0, 4163, 4164, 4164, 4164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4164, 4164, 4164, 0, 0, 4164, 0, 0, 0, 4164, 4165, 4165, 4165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4165, 0, 0, 0, 4165, 4166, 4166, 4166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4166, 0, 4166, 0, 0, 4166, 0, 0, 0, 4166, 4168, 4168, 0, 0, 0, 4168, 4168, 0, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 0, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 4168, 0, 0, 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, 0, 0, 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, 0, 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, 0, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4173, 0, 0, 0, 4173, 0, 0, 0, 4173, 0, 0, 4173, 4174, 4174, 4174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4174, 4174, 0, 0, 0, 4174, 0, 0, 0, 4174, 4175, 4175, 4175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4175, 0, 0, 0, 4175, 4177, 4177, 4177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4177, 0, 0, 0, 4177, 0, 0, 0, 4177, 0, 0, 4177, 4178, 4178, 4178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4178, 4178, 0, 0, 0, 4178, 0, 0, 0, 4178, 4179, 4179, 4179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4179, 0, 0, 0, 4179, 4181, 4181, 0, 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, 0, 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, 0, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 0, 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, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4188, 0, 0, 4188, 4188, 4188, 4188, 4188, 4188, 4188, 0, 4188, 4188, 4188, 4188, 0, 4188, 4188, 4188, 4188, 4188, 4188, 4188, 0, 4188, 4188, 4188, 4188, 4188, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4191, 4191, 0, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 4191, 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, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4193, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 0, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 4196, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 0, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4198, 0, 0, 0, 0, 0, 0, 0, 0, 4198, 0, 0, 0, 0, 0, 4198, 0, 0, 0, 4198, 4198, 0, 4198, 0, 4198, 4199, 4199, 4199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4199, 0, 0, 0, 4199, 0, 0, 0, 4199, 0, 0, 4199, 4200, 4200, 4200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4200, 4200, 0, 0, 0, 4200, 0, 0, 0, 4200, 4201, 4201, 4201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4201, 0, 0, 0, 4201, 4203, 4203, 0, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4203, 4204, 0, 4204, 4204, 4204, 4204, 4204, 0, 0, 0, 4204, 0, 4204, 0, 4204, 4205, 4205, 0, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4206, 0, 4206, 4206, 4206, 4206, 4206, 0, 0, 0, 4206, 0, 4206, 0, 4206, 4207, 4207, 4207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4207, 0, 0, 0, 4207, 0, 0, 0, 4207, 0, 0, 4207, 4208, 4208, 4208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4208, 4208, 0, 0, 0, 4208, 0, 0, 0, 4208, 4209, 4209, 4209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4209, 0, 0, 0, 4209, 4214, 4214, 0, 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, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 4217, 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, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4219, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 0, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4221, 4221, 0, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 0, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4221, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 0, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4222, 4223, 0, 0, 0, 0, 0, 0, 0, 0, 4223, 0, 0, 0, 0, 0, 4223, 0, 0, 0, 0, 4223, 0, 0, 0, 4223, 4224, 4224, 0, 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, 0, 4225, 4225, 4225, 4225, 4225, 0, 0, 0, 4225, 0, 4225, 0, 4225, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4227, 4228, 4228, 0, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4228, 4229, 0, 4229, 4229, 4229, 4229, 4229, 0, 0, 0, 4229, 0, 4229, 0, 4229, 4230, 4230, 0, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4230, 4231, 0, 4231, 4231, 4231, 4231, 4231, 0, 0, 0, 4231, 0, 4231, 0, 4231, 4232, 4232, 4232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4232, 4232, 0, 0, 0, 4232, 0, 0, 0, 4232, 4233, 4233, 4233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4233, 4233, 0, 0, 0, 4233, 0, 0, 0, 4233, 4234, 4234, 4234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4234, 0, 0, 0, 4234, 0, 0, 0, 4234, 0, 0, 4234, 4235, 4235, 4235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4235, 4235, 0, 0, 0, 4235, 0, 0, 0, 4235, 4236, 4236, 4236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4236, 0, 0, 0, 4236, 4238, 4238, 4238, 0, 0, 4238, 0, 0, 0, 4238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4238, 0, 0, 0, 4238, 4241, 0, 0, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 0, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 0, 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, 0, 0, 4243, 0, 0, 0, 0, 0, 0, 0, 4243, 4243, 0, 0, 0, 4243, 0, 0, 0, 4243, 0, 0, 4243, 4247, 0, 4247, 4247, 4247, 4247, 4247, 0, 0, 0, 4247, 0, 4247, 0, 4247, 4248, 0, 4248, 4248, 4248, 4248, 4248, 0, 0, 0, 4248, 0, 4248, 0, 4248, 4249, 0, 4249, 4249, 4249, 4249, 4249, 0, 0, 4249, 4249, 0, 4249, 0, 4249, 4251, 0, 4251, 4251, 4251, 4251, 4251, 0, 0, 4251, 4251, 0, 4251, 0, 4251, 4252, 0, 4252, 4252, 4252, 4252, 4252, 0, 0, 0, 4252, 0, 4252, 0, 4252, 0, 0, 4252, 4253, 0, 0, 0, 0, 4253, 0, 0, 4253, 4253, 0, 4253, 0, 0, 0, 0, 4253, 4253, 4253, 0, 4253, 0, 0, 0, 4253, 4254, 0, 0, 4254, 0, 0, 4254, 0, 4254, 4254, 4254, 4254, 4254, 0, 0, 0, 4254, 0, 4254, 0, 4254, 0, 0, 4254, 4255, 0, 0, 4255, 0, 0, 4255, 0, 4255, 4255, 4255, 4255, 4255, 0, 0, 4255, 4255, 0, 4255, 0, 4255, 0, 0, 4255, 4256, 4256, 0, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4256, 4257, 4257, 0, 4257, 4257, 0, 0, 0, 4257, 0, 0, 0, 4257, 4258, 4258, 4258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4258, 0, 0, 0, 4258, 0, 0, 0, 4258, 0, 0, 4258, 4259, 4259, 4259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4259, 4259, 0, 0, 0, 4259, 0, 0, 0, 4259, 4260, 4260, 4260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4260, 0, 0, 0, 4260, 4262, 0, 0, 0, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4264, 0, 0, 0, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4264, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4265, 4266, 0, 0, 0, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 4266, 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, 4267, 4267, 4267, 4268, 4268, 0, 4268, 4268, 4268, 4268, 4268, 4268, 4268, 4268, 4268, 4268, 4268, 4268, 0, 4268, 4268, 0, 4268, 4268, 4268, 4268, 0, 4268, 4268, 4268, 4268, 4268, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4270, 0, 0, 4270, 4270, 0, 4270, 0, 4270, 4270, 4270, 4270, 4270, 0, 0, 0, 4270, 0, 0, 0, 4270, 0, 0, 4270, 4271, 4271, 0, 0, 0, 0, 4271, 0, 4271, 4271, 0, 0, 0, 4271, 0, 0, 0, 4271, 4272, 4272, 0, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4272, 4273, 0, 4273, 4273, 4273, 4273, 4273, 0, 0, 0, 4273, 0, 4273, 0, 4273, 4274, 4274, 0, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4274, 4275, 0, 4275, 4275, 4275, 4275, 4275, 0, 0, 0, 4275, 0, 4275, 0, 4275, 4276, 0, 4276, 4276, 4276, 4276, 0, 0, 0, 0, 4276, 0, 0, 0, 4276, 4277, 0, 0, 0, 0, 0, 4277, 0, 4277, 4277, 4277, 4277, 4277, 0, 0, 4277, 4277, 0, 0, 0, 4277, 0, 0, 4277, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 0, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4278, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4281, 0, 0, 0, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4283, 0, 0, 0, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4284, 4285, 0, 0, 0, 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, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 4286, 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, 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, 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, 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, 4291, 4291, 4291, 4292, 4292, 4292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4292, 0, 0, 0, 4292, 0, 0, 0, 4292, 0, 0, 4292, 4293, 4293, 4293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4293, 4293, 0, 0, 0, 4293, 0, 0, 0, 4293, 4294, 4294, 4294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4294, 0, 0, 0, 4294, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 0, 4296, 4296, 4296, 4296, 4296, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4297, 4298, 4298, 0, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4299, 0, 4299, 4299, 4299, 4299, 4299, 0, 0, 0, 4299, 0, 4299, 0, 4299, 4300, 4300, 0, 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, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 4302, 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, 4303, 4303, 4303, 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, 4307, 4307, 0, 4307, 0, 0, 0, 0, 4307, 0, 0, 0, 4307, 4308, 4308, 0, 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, 0, 0, 0, 0, 0, 4309, 0, 4309, 4309, 4309, 4309, 4309, 0, 0, 4309, 4309, 0, 0, 0, 4309, 0, 0, 4309, 4310, 0, 0, 0, 0, 0, 4310, 0, 4310, 4310, 4310, 4310, 4310, 0, 0, 4310, 4310, 0, 4310, 0, 4310, 0, 0, 4310, 4311, 0, 4311, 4311, 4311, 4311, 4311, 0, 0, 0, 4311, 0, 4311, 0, 4311, 4312, 4312, 0, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4312, 4313, 0, 4313, 4313, 4313, 4313, 4313, 0, 0, 0, 4313, 0, 4313, 0, 4313, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 0, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4315, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4316, 4317, 4317, 0, 4317, 0, 4317, 4317, 0, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 4317, 0, 4317, 4317, 4317, 4317, 4317, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4319, 4319, 0, 4319, 0, 4319, 4319, 0, 0, 0, 4319, 4319, 4319, 4319, 4319, 0, 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, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4322, 0, 0, 0, 0, 4322, 4322, 0, 0, 0, 4322, 4322, 4322, 4322, 4322, 0, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 4322, 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, 4323, 4323, 4323, 4325, 4325, 4325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4325, 0, 0, 0, 4325, 0, 0, 0, 4325, 0, 0, 4325, 4326, 4326, 4326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4326, 4326, 4326, 0, 0, 4326, 0, 0, 0, 4326, 4327, 4327, 4327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4327, 0, 0, 0, 4327, 4328, 4328, 4328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4328, 0, 4328, 0, 0, 4328, 0, 0, 0, 4328, 4329, 4329, 4329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4329, 0, 0, 0, 4329, 0, 0, 0, 4329, 0, 0, 4329, 4330, 4330, 4330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4330, 4330, 0, 0, 0, 4330, 0, 0, 0, 4330, 4331, 4331, 4331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4331, 0, 0, 0, 4331, 4333, 4333, 4333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4333, 0, 0, 0, 4333, 4334, 4334, 4334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4334, 4334, 0, 0, 0, 4334, 0, 0, 0, 4334, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 0, 4335, 4335, 4335, 4335, 0, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4335, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 0, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4336, 4337, 4337, 4337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4337, 0, 0, 0, 4337, 0, 0, 0, 4337, 0, 0, 4337, 4338, 4338, 4338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4338, 4338, 4338, 0, 0, 4338, 0, 0, 0, 4338, 4339, 4339, 4339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4339, 0, 0, 0, 4339, 4340, 4340, 4340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4340, 0, 4340, 0, 0, 4340, 0, 0, 0, 4340, 4341, 4341, 4341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4341, 0, 0, 0, 4341, 0, 0, 0, 4341, 0, 0, 4341, 4342, 4342, 4342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4342, 4342, 4342, 0, 0, 4342, 0, 0, 0, 4342, 4343, 4343, 4343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4343, 0, 0, 0, 4343, 4344, 4344, 4344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4344, 0, 4344, 0, 0, 4344, 0, 0, 0, 4344, 4345, 4345, 0, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4346, 4346, 4346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4346, 0, 0, 0, 4346, 0, 0, 0, 4346, 0, 0, 4346, 4347, 4347, 4347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4347, 4347, 0, 0, 0, 4347, 0, 0, 0, 4347, 4348, 4348, 4348, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4348, 0, 0, 0, 4348, 4350, 4350, 4350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4350, 0, 0, 0, 4350, 0, 0, 0, 4350, 0, 0, 4350, 4351, 4351, 4351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4351, 4351, 0, 0, 0, 4351, 0, 0, 0, 4351, 4352, 4352, 4352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4352, 0, 0, 0, 4352, 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, 0, 0, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 0, 4355, 4355, 4355, 4355, 0, 4355, 4355, 4355, 4355, 4355, 4355, 4355, 0, 4355, 4355, 4355, 4355, 4355, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4357, 4357, 0, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4358, 4358, 4358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4358, 0, 0, 0, 4358, 0, 0, 0, 4358, 0, 0, 4358, 4359, 4359, 4359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4359, 4359, 0, 0, 0, 4359, 0, 0, 0, 4359, 4360, 4360, 4360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4360, 0, 0, 0, 4360, 4362, 4362, 4362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4362, 0, 0, 0, 4362, 0, 0, 0, 4362, 0, 0, 4362, 4363, 4363, 4363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4363, 4363, 0, 0, 0, 4363, 0, 0, 0, 4363, 4364, 4364, 4364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4364, 0, 0, 0, 4364, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 0, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4367, 4367, 0, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 0, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4367, 4368, 4368, 4368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4368, 0, 0, 0, 4368, 0, 0, 0, 4368, 4369, 4369, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4369, 4369, 0, 0, 0, 4369, 0, 0, 0, 4369, 4370, 4370, 4370, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4370, 0, 0, 0, 4370, 0, 0, 0, 4370, 0, 0, 4370, 4371, 4371, 4371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4371, 4371, 0, 0, 0, 4371, 0, 0, 0, 4371, 4372, 4372, 4372, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4372, 0, 0, 0, 4372, 4375, 0, 0, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 0, 4375, 4375, 4375, 4375, 4375, 4375, 4375, 0, 4375, 4375, 4375, 4375, 4375, 4376, 0, 0, 4376, 0, 0, 0, 0, 0, 0, 0, 4376, 4376, 0, 0, 0, 4376, 0, 0, 0, 4376, 0, 0, 4376, 4378, 0, 4378, 4378, 4378, 4378, 4378, 0, 0, 0, 4378, 0, 4378, 0, 4378, 4379, 0, 4379, 4379, 4379, 4379, 4379, 0, 0, 4379, 4379, 0, 4379, 0, 4379, 4381, 0, 0, 4381, 0, 0, 4381, 0, 4381, 4381, 4381, 4381, 4381, 0, 0, 0, 4381, 0, 4381, 0, 4381, 0, 0, 4381, 4382, 4382, 0, 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, 0, 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, 0, 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, 0, 0, 0, 0, 4385, 0, 0, 4385, 4385, 0, 4385, 0, 0, 0, 0, 4385, 4385, 4385, 0, 4385, 0, 0, 0, 4385, 4386, 0, 4386, 4386, 4386, 4386, 4386, 0, 0, 0, 4386, 0, 4386, 0, 4386, 0, 0, 4386, 4387, 0, 4387, 4387, 4387, 4387, 4387, 0, 0, 0, 4387, 0, 4387, 0, 4387, 4388, 0, 0, 4388, 0, 0, 4388, 0, 4388, 4388, 4388, 4388, 4388, 0, 0, 4388, 4388, 0, 4388, 0, 4388, 0, 0, 4388, 4389, 4389, 4389, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4389, 0, 0, 0, 4389, 0, 0, 0, 4389, 0, 0, 4389, 4390, 4390, 4390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4390, 4390, 0, 0, 0, 4390, 0, 0, 0, 4390, 4391, 4391, 4391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4391, 0, 0, 0, 4391, 4393, 4393, 0, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 4393, 0, 4393, 4393, 0, 4393, 4393, 4393, 4393, 0, 4393, 4393, 4393, 4393, 4393, 4394, 4394, 4394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4394, 0, 0, 0, 4394, 0, 0, 0, 4394, 0, 0, 4394, 4395, 4395, 4395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4395, 4395, 0, 0, 0, 4395, 0, 0, 0, 4395, 4396, 4396, 4396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4396, 0, 0, 0, 4396, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 4398, 0, 4398, 4398, 4398, 4398, 4398, 4399, 4399, 0, 4399, 0, 0, 0, 0, 4399, 0, 0, 0, 4399, 4400, 4400, 4400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4400, 0, 0, 0, 4400, 0, 0, 0, 4400, 0, 0, 4400, 4402, 4402, 4402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4402, 0, 0, 0, 4402, 4403, 4403, 4403, 0, 0, 0, 0, 0, 0, 4403, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4403, 0, 0, 0, 4403, 4404, 4404, 4404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4404, 4404, 4404, 0, 0, 4404, 0, 0, 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, 0, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 0, 4406, 4406, 4406, 4406, 0, 4406, 4406, 4406, 4406, 4406, 4406, 4406, 0, 4406, 4406, 4406, 4406, 4406, 4407, 4407, 0, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4407, 4408, 4408, 4408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4408, 0, 0, 0, 4408, 0, 0, 0, 4408, 4409, 4409, 4409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4409, 4409, 0, 0, 0, 4409, 0, 0, 0, 4409, 4410, 0, 0, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 0, 4410, 4410, 4410, 4410, 4410, 4410, 4410, 0, 4410, 4410, 4410, 4410, 4410, 4412, 0, 0, 4412, 0, 0, 4412, 0, 4412, 4412, 4412, 4412, 4412, 0, 0, 0, 4412, 0, 4412, 0, 4412, 0, 0, 4412, 4413, 4413, 0, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 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, 0, 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, 4416, 4416, 0, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4416, 4417, 4417, 0, 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, 0, 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, 0, 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, 0, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 4420, 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, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4421, 4422, 4422, 0, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4422, 4423, 4423, 0, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 4423, 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, 4425, 0, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4425, 4426, 4426, 0, 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, 0, 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, 4429, 0, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 4429, 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, 4431, 0, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4432, 4432, 0, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4432, 4433, 4433, 0, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4434, 4434, 0, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4435, 0, 0, 4435, 0, 0, 4435, 0, 4435, 4435, 4435, 4435, 4435, 0, 0, 0, 4435, 0, 4435, 0, 4435, 0, 0, 4435, 4436, 0, 4436, 4436, 4436, 4436, 4436, 0, 0, 0, 4436, 0, 4436, 0, 4436, 4437, 0, 0, 0, 0, 0, 4437, 0, 4437, 4437, 4437, 4437, 4437, 0, 0, 4437, 4437, 0, 4437, 0, 4437, 0, 0, 4437, 4438, 0, 0, 4438, 0, 0, 4438, 0, 4438, 4438, 4438, 4438, 4438, 0, 0, 4438, 4438, 0, 4438, 0, 4438, 0, 0, 4438, 4439, 4439, 0, 4439, 4439, 4439, 4439, 4439, 4439, 4439, 4439, 4439, 4439, 4439, 4439, 0, 4439, 4439, 0, 4439, 4439, 4439, 4439, 0, 4439, 4439, 4439, 4439, 4439, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 4440, 0, 4440, 4440, 4440, 4440, 4440, 4441, 4441, 0, 4441, 0, 0, 0, 0, 4441, 0, 0, 0, 4441, 4442, 4442, 4442, 0, 0, 0, 0, 0, 0, 4442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4442, 0, 0, 0, 4442, 4443, 4443, 4443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4443, 4443, 4443, 0, 0, 4443, 0, 0, 0, 4443, 4444, 4444, 0, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4444, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4445, 4446, 0, 0, 4446, 4446, 4446, 4446, 4446, 4446, 4446, 0, 4446, 4446, 4446, 4446, 0, 4446, 4446, 4446, 4446, 4446, 4446, 4446, 0, 4446, 4446, 4446, 4446, 4446, 4447, 4447, 0, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 4448, 0, 4448, 4448, 4448, 4448, 0, 4448, 4448, 4448, 0, 4448, 4448, 4448, 4449, 4449, 0, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4449, 4450, 4450, 4450, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4450, 4450, 0, 0, 0, 4450, 0, 0, 0, 4450, 4451, 0, 0, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 0, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 0, 4451, 4451, 4451, 4451, 4451, 4452, 0, 0, 4452, 0, 0, 0, 0, 0, 0, 0, 4452, 4452, 0, 0, 0, 4452, 0, 0, 0, 4452, 0, 0, 4452, 4453, 4453, 0, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4453, 4454, 4454, 0, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4455, 4455, 0, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4455, 4456, 4456, 0, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 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, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4459, 4459, 0, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4460, 4460, 0, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4461, 4461, 0, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4462, 4462, 0, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4462, 4463, 4463, 0, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4464, 4464, 0, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4465, 4465, 0, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4466, 4466, 0, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4466, 4467, 4467, 0, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4467, 4468, 4468, 0, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4469, 4469, 0, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4470, 4470, 0, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4470, 4471, 4471, 0, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4472, 4472, 0, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4473, 4473, 0, 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, 4474, 0, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4474, 4475, 4475, 0, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 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, 4477, 0, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 4477, 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, 4479, 0, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4479, 4480, 4480, 0, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4480, 4481, 4481, 0, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4481, 4482, 4482, 0, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4482, 4483, 4483, 0, 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, 4484, 4484, 0, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4484, 4485, 4485, 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, 4485, 4486, 4486, 0, 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, 4487, 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, 4487, 4488, 4488, 0, 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, 4489, 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, 4489, 4490, 4490, 0, 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, 4491, 0, 0, 4491, 0, 4491, 4491, 4491, 4491, 4491, 0, 0, 0, 4491, 0, 4491, 0, 4491, 0, 0, 4491, 4492, 0, 4492, 4492, 4492, 4492, 4492, 0, 0, 0, 4492, 0, 4492, 0, 4492, 4493, 4493, 0, 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, 0, 0, 0, 0, 0, 4494, 0, 4494, 4494, 4494, 4494, 4494, 0, 0, 4494, 4494, 0, 0, 0, 4494, 0, 0, 4494, 4495, 0, 0, 0, 0, 0, 4495, 0, 4495, 4495, 4495, 4495, 4495, 0, 0, 4495, 4495, 0, 4495, 0, 4495, 0, 0, 4495, 4496, 0, 0, 0, 0, 0, 4496, 0, 4496, 4496, 4496, 4496, 4496, 0, 0, 4496, 4496, 0, 4496, 0, 4496, 0, 0, 4496, 4497, 0, 0, 0, 0, 0, 4497, 0, 4497, 4497, 4497, 4497, 4497, 0, 0, 4497, 4497, 0, 4497, 0, 4497, 0, 0, 4497, 4498, 0, 0, 4498, 0, 0, 4498, 0, 4498, 4498, 4498, 4498, 4498, 0, 0, 4498, 4498, 0, 4498, 0, 4498, 0, 0, 4498, 4499, 4499, 0, 4499, 4499, 4499, 4499, 4499, 4499, 4499, 4499, 4499, 4499, 4499, 4499, 0, 4499, 4499, 0, 4499, 4499, 4499, 4499, 0, 4499, 4499, 4499, 4499, 4499, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 4500, 0, 4500, 4500, 4500, 4500, 4500, 4501, 4501, 0, 4501, 0, 0, 0, 0, 4501, 0, 0, 0, 4501, 4502, 4502, 4502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4502, 4502, 4502, 0, 0, 4502, 0, 0, 0, 4502, 4503, 4503, 0, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 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, 0, 0, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 0, 4505, 4505, 4505, 4505, 0, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 0, 4505, 4505, 4505, 4505, 4505, 4506, 4506, 0, 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, 0, 4507, 4507, 4507, 4507, 0, 4507, 4507, 4507, 0, 4507, 4507, 4507, 4508, 0, 0, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 0, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 0, 4508, 4508, 4508, 4508, 4508, 4509, 0, 0, 4509, 0, 0, 0, 0, 0, 0, 0, 4509, 4509, 0, 0, 0, 4509, 0, 0, 0, 4509, 0, 0, 4509, 4510, 4510, 0, 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, 4511, 4511, 0, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 4511, 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, 4513, 0, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4513, 4514, 4514, 0, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4514, 4515, 4515, 0, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 4515, 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, 4517, 0, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4517, 4518, 4518, 0, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4518, 4519, 4519, 0, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4519, 4520, 4520, 0, 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, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4521, 4522, 4522, 0, 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, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4523, 4524, 4524, 0, 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, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4526, 4527, 4527, 0, 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, 0, 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, 4530, 0, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4530, 4531, 4531, 0, 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, 4532, 4532, 0, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 4532, 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, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4534, 4535, 4535, 0, 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, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4538, 4538, 0, 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, 0, 0, 4539, 0, 0, 4539, 0, 4539, 4539, 4539, 4539, 4539, 0, 0, 0, 4539, 0, 4539, 0, 4539, 0, 0, 4539, 4540, 0, 4540, 4540, 4540, 4540, 4540, 0, 0, 0, 4540, 0, 4540, 0, 4540, 4541, 4541, 0, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4542, 4542, 0, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4543, 4543, 0, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4544, 0, 0, 0, 0, 0, 4544, 0, 4544, 4544, 4544, 4544, 4544, 0, 0, 4544, 4544, 0, 4544, 0, 4544, 0, 0, 4544, 4545, 0, 0, 4545, 0, 0, 4545, 0, 4545, 4545, 4545, 4545, 4545, 0, 0, 4545, 4545, 0, 4545, 0, 4545, 0, 0, 4545, 4546, 0, 0, 0, 0, 0, 4546, 0, 4546, 4546, 4546, 4546, 4546, 0, 0, 4546, 4546, 0, 0, 0, 4546, 0, 0, 4546, 4547, 0, 0, 4547, 0, 0, 4547, 0, 4547, 4547, 4547, 4547, 4547, 0, 0, 4547, 4547, 0, 4547, 0, 4547, 0, 0, 4547, 4548, 4548, 0, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4548, 4549, 4549, 0, 4549, 4549, 4549, 4549, 4549, 4549, 4549, 4549, 4549, 4549, 4549, 4549, 0, 4549, 4549, 0, 4549, 4549, 4549, 4549, 0, 4549, 4549, 4549, 4549, 4549, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 4550, 0, 4550, 4550, 4550, 4550, 4550, 4551, 4551, 4551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4551, 4551, 4551, 0, 0, 4551, 0, 0, 0, 4551, 4552, 4552, 0, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4552, 4553, 0, 0, 4553, 4553, 4553, 4553, 4553, 4553, 4553, 0, 4553, 4553, 4553, 4553, 0, 4553, 4553, 4553, 4553, 4553, 4553, 4553, 0, 4553, 4553, 4553, 4553, 4553, 4554, 0, 0, 4554, 4554, 4554, 4554, 4554, 4554, 4554, 4554, 4554, 4554, 4554, 4554, 0, 4554, 4554, 4554, 4554, 4554, 4554, 4554, 0, 4554, 4554, 4554, 4554, 4554, 4555, 0, 0, 4555, 0, 0, 0, 0, 0, 0, 0, 4555, 4555, 0, 0, 0, 4555, 0, 0, 0, 4555, 0, 0, 4555, 4556, 4556, 0, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4556, 4557, 4557, 0, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4557, 4558, 4558, 0, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4558, 4559, 4559, 0, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 4559, 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, 0, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4562, 4562, 0, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4562, 4563, 4563, 0, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4564, 4564, 0, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4565, 4565, 0, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4565, 4566, 4566, 0, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4566, 4567, 4567, 0, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4567, 4568, 4568, 0, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4569, 4569, 0, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4569, 4570, 4570, 0, 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, 0, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4572, 4573, 0, 0, 4573, 0, 0, 4573, 0, 4573, 4573, 4573, 4573, 4573, 0, 0, 0, 4573, 0, 4573, 0, 4573, 0, 0, 4573, 4574, 0, 4574, 4574, 4574, 4574, 4574, 0, 0, 0, 4574, 0, 4574, 0, 4574, 4575, 4575, 0, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4576, 0, 0, 0, 0, 0, 4576, 0, 4576, 4576, 4576, 4576, 4576, 0, 0, 4576, 4576, 0, 0, 0, 4576, 0, 0, 4576, 4577, 0, 0, 4577, 0, 0, 4577, 0, 4577, 4577, 4577, 4577, 4577, 0, 0, 4577, 4577, 0, 4577, 0, 4577, 0, 0, 4577, 4578, 0, 0, 0, 0, 0, 4578, 0, 4578, 4578, 4578, 4578, 4578, 0, 0, 4578, 4578, 0, 4578, 0, 4578, 0, 0, 4578, 4579, 0, 0, 4579, 0, 0, 4579, 0, 4579, 4579, 4579, 4579, 4579, 0, 0, 4579, 4579, 0, 0, 0, 4579, 0, 0, 4579, 4580, 0, 0, 4580, 0, 0, 4580, 0, 4580, 4580, 4580, 4580, 4580, 0, 0, 4580, 4580, 0, 4580, 0, 4580, 0, 0, 4580, 4581, 4581, 0, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4582, 4582, 0, 4582, 4582, 4582, 4582, 4582, 4582, 4582, 4582, 4582, 4582, 4582, 4582, 0, 4582, 4582, 0, 4582, 4582, 4582, 4582, 0, 4582, 4582, 4582, 4582, 4582, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 4583, 0, 4583, 4583, 4583, 4583, 4583, 4584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4584, 0, 4584, 0, 0, 0, 0, 4584, 0, 0, 0, 4584, 4585, 4585, 4585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4585, 4585, 4585, 0, 0, 4585, 0, 0, 0, 4585, 4586, 0, 0, 4586, 4586, 4586, 4586, 4586, 4586, 4586, 0, 4586, 4586, 4586, 4586, 0, 4586, 4586, 4586, 4586, 4586, 4586, 4586, 0, 4586, 4586, 4586, 4586, 4586, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4587, 4588, 0, 0, 4588, 4588, 4588, 4588, 4588, 4588, 4588, 4588, 4588, 4588, 4588, 4588, 0, 4588, 4588, 4588, 4588, 4588, 4588, 4588, 0, 4588, 4588, 4588, 4588, 4588, 4589, 0, 0, 4589, 0, 0, 0, 0, 0, 0, 0, 4589, 4589, 0, 0, 0, 4589, 0, 0, 0, 4589, 0, 0, 4589, 4590, 4590, 0, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4590, 4591, 4591, 0, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4591, 4592, 4592, 0, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4593, 4593, 0, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4593, 4594, 4594, 0, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 4594, 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, 4598, 0, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4598, 4599, 4599, 0, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4599, 4600, 4600, 0, 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, 4602, 4602, 4602, 4602, 4602, 4602, 4602, 4602, 4602, 4602, 4602, 4602, 4602, 4602, 4602, 4602, 0, 4602, 4602, 4602, 4602, 0, 4602, 4602, 4602, 0, 4602, 4602, 4602, 4603, 4603, 4603, 4603, 4603, 4603, 4603, 4603, 4603, 4603, 4603, 4603, 4603, 4603, 4603, 4603, 0, 4603, 4603, 4603, 4603, 0, 4603, 4603, 4603, 0, 4603, 4603, 4603, 4604, 0, 0, 4604, 0, 0, 4604, 0, 4604, 4604, 4604, 4604, 4604, 0, 0, 0, 4604, 0, 4604, 0, 4604, 0, 0, 4604, 4605, 0, 4605, 4605, 4605, 4605, 4605, 0, 0, 0, 4605, 0, 4605, 0, 4605, 4606, 0, 0, 4606, 0, 0, 4606, 0, 4606, 4606, 4606, 4606, 4606, 0, 0, 4606, 4606, 0, 4606, 0, 4606, 0, 0, 4606, 4607, 0, 0, 4607, 0, 0, 4607, 0, 4607, 4607, 4607, 4607, 4607, 0, 0, 4607, 4607, 0, 0, 0, 4607, 0, 0, 4607, 4608, 0, 0, 0, 0, 0, 4608, 0, 4608, 4608, 4608, 4608, 4608, 0, 0, 4608, 4608, 0, 0, 0, 4608, 0, 0, 4608, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4609, 4610, 4610, 4610, 4610, 4610, 4610, 4610, 4610, 4610, 4610, 4610, 4610, 4610, 4610, 4610, 4610, 0, 4610, 4610, 4610, 4610, 0, 4610, 4610, 4610, 0, 4610, 4610, 4610, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 4611, 0, 4611, 4611, 4611, 4611, 4611, 4612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4612, 0, 4612, 0, 0, 0, 0, 4612, 0, 0, 0, 4612, 4615, 4615, 4615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4615, 4615, 4615, 0, 0, 4615, 0, 0, 0, 4615, 4616, 4616, 4616, 4616, 4616, 4616, 4616, 4616, 4616, 4616, 4616, 4616, 4616, 4616, 4616, 4616, 0, 4616, 4616, 4616, 4616, 0, 4616, 4616, 4616, 0, 4616, 4616, 4616, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4617, 4618, 0, 0, 4618, 4618, 4618, 4618, 4618, 4618, 4618, 4618, 4618, 4618, 4618, 4618, 0, 4618, 4618, 4618, 4618, 4618, 4618, 4618, 0, 4618, 4618, 4618, 4618, 4618, 4619, 0, 0, 4619, 0, 0, 0, 0, 0, 0, 0, 4619, 4619, 0, 0, 0, 4619, 0, 0, 0, 4619, 0, 0, 4619, 4620, 4620, 0, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 4620, 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, 0, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4622, 4623, 4623, 0, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4623, 4624, 4624, 0, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4624, 4625, 4625, 0, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 4627, 0, 4627, 4627, 4627, 4627, 0, 4627, 4627, 4627, 0, 4627, 4627, 4627, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 4629, 0, 4629, 4629, 4629, 4629, 0, 4629, 4629, 4629, 0, 4629, 4629, 4629, 4630, 0, 0, 4630, 0, 0, 4630, 0, 4630, 4630, 4630, 4630, 4630, 0, 0, 0, 4630, 0, 4630, 0, 4630, 0, 0, 4630, 4631, 4631, 4631, 0, 0, 0, 0, 0, 0, 0, 4631, 0, 4631, 4631, 4631, 4631, 4631, 0, 0, 0, 4631, 0, 4631, 0, 4631, 4632, 0, 4632, 4632, 4632, 4632, 4632, 0, 0, 0, 4632, 0, 4632, 0, 4632, 4633, 0, 0, 4633, 0, 0, 4633, 0, 4633, 4633, 4633, 4633, 4633, 0, 0, 4633, 4633, 0, 4633, 0, 4633, 0, 0, 4633, 4634, 0, 0, 0, 0, 0, 4634, 0, 4634, 4634, 4634, 4634, 4634, 0, 0, 4634, 4634, 0, 0, 0, 4634, 0, 0, 4634, 4635, 4635, 0, 0, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 0, 4635, 0, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4635, 4636, 0, 0, 0, 0, 4636, 0, 0, 4636, 4636, 0, 4636, 0, 0, 0, 0, 4636, 4636, 4636, 0, 4636, 0, 0, 0, 4636, 4637, 4637, 0, 0, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 4637, 0, 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, 0, 4638, 4638, 0, 4638, 4638, 4638, 4638, 0, 4638, 4638, 4638, 4638, 4638, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 4639, 0, 4639, 4639, 4639, 4639, 4639, 4643, 4643, 4643, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4643, 4643, 4643, 0, 0, 4643, 0, 0, 0, 4643, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 4644, 0, 4644, 4644, 4644, 4644, 0, 4644, 4644, 4644, 0, 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, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 4646, 0, 4646, 4646, 4646, 4646, 0, 4646, 4646, 4646, 0, 4646, 4646, 4646, 4647, 0, 0, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 0, 4647, 4647, 4647, 4647, 4647, 4647, 4647, 0, 4647, 4647, 4647, 4647, 4647, 4648, 0, 0, 4648, 0, 0, 0, 0, 0, 0, 0, 4648, 4648, 0, 0, 0, 4648, 0, 0, 0, 4648, 0, 0, 4648, 4649, 4649, 0, 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, 4650, 0, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4650, 4651, 4651, 0, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4651, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 4653, 0, 4653, 4653, 4653, 4653, 0, 4653, 4653, 4653, 0, 4653, 4653, 4653, 4655, 0, 0, 4655, 0, 0, 4655, 0, 4655, 4655, 4655, 4655, 4655, 0, 0, 0, 4655, 0, 4655, 0, 4655, 0, 0, 4655, 4656, 0, 4656, 4656, 4656, 4656, 4656, 0, 0, 0, 4656, 0, 4656, 0, 4656, 4657, 0, 4657, 4657, 4657, 4657, 4657, 0, 0, 0, 4657, 0, 4657, 0, 4657, 4658, 0, 0, 4658, 0, 0, 4658, 0, 4658, 4658, 4658, 4658, 4658, 0, 0, 4658, 4658, 0, 4658, 0, 4658, 0, 0, 4658, 4659, 0, 0, 4659, 0, 0, 4659, 0, 4659, 4659, 4659, 4659, 4659, 0, 0, 4659, 4659, 0, 0, 0, 4659, 0, 0, 4659, 4660, 0, 0, 0, 0, 4660, 0, 0, 4660, 4660, 0, 4660, 0, 0, 0, 0, 0, 4660, 4660, 0, 4660, 0, 0, 0, 4660, 4661, 0, 0, 0, 0, 4661, 0, 0, 4661, 4661, 0, 4661, 0, 0, 0, 0, 4661, 4661, 4661, 0, 4661, 0, 0, 0, 4661, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 0, 4662, 4662, 4662, 4662, 4662, 4664, 4664, 4664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4664, 4664, 4664, 0, 0, 4664, 0, 0, 0, 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, 0, 0, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 0, 4666, 4666, 4666, 4666, 4666, 4666, 4666, 0, 4666, 4666, 4666, 4666, 4666, 4667, 0, 0, 4667, 0, 0, 0, 0, 0, 0, 0, 4667, 4667, 0, 0, 0, 4667, 0, 0, 0, 4667, 0, 0, 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, 0, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 0, 4669, 0, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4670, 0, 0, 0, 0, 4670, 0, 0, 4670, 4670, 0, 4670, 0, 0, 0, 0, 0, 4670, 4670, 0, 4670, 0, 0, 0, 4670, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 4671, 0, 4671, 4671, 4671, 4671, 0, 4671, 4671, 4671, 0, 4671, 4671, 4671, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 4672, 0, 4672, 4672, 4672, 4672, 0, 4672, 4672, 4672, 0, 4672, 4672, 4672, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 0, 4673, 4673, 4673, 4673, 0, 4673, 4673, 4673, 0, 4673, 4673, 4673, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 4674, 0, 4674, 4674, 4674, 4674, 0, 4674, 4674, 4674, 0, 4674, 4674, 4674, 4675, 4675, 0, 0, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 0, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4675, 4676, 4676, 0, 0, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 0, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918, 3918 } ; 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-1999 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 lastCodeState; static int lastAfterDocContext; static int lastGroupContext; static int lastMemberGroupContext; static int lastFormulaContext; static int lastAnchorContext; static int nextDefContext; static int overloadContext; static Protection protection; static Protection baseProt; static int bracketCount = 0 ; static int sharpCount = 0 ; static int roundCount = 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 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 ArgumentList *currentArgumentList; static QCString *currentTemplateSpec; static QCString curImageName; //----------------------------------------------------------------------------- static void initParser() { insideArgumentList=FALSE; className.resize(0); memberName.resize(0); refName.resize(0); 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; bracketCount = 0; sharpCount = 0; roundCount = 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; 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; } 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; 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 ( includeFileOffset0 || includeFileOffset==includeFileLength) found=TRUE; } if (s.find(key)!=-1) { ol.writeString(" "); parseCode(ol,className,s,exampleDoc,exampleName); ol.writeString("\n"); } } static void showUntil(OutputList &ol,const char *key) { bool found=FALSE; while (!found) { QCString s; char c; while ( includeFileOffset0) { ol.writeString(" "); parseCode(ol,className,s,exampleDoc,exampleName); ol.writeString("\n"); if (s.find(key)!=-1) found=TRUE; } if (includeFileOffset==includeFileLength) found=TRUE; } } static int newMemberGroupId() { static int curGroupId=0; return curGroupId++; } static void newDocState(); //----------------------------------------------------------------- static bool inBlock() { return inParamBlock || inRetValBlock || inSeeBlock || inReturnBlock || inAuthorBlock || inVersionBlock || inDateBlock || inWarningBlock || inBugBlock || inParBlock || inExceptionBlock || inDeprecatedBlock; } 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=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().data()); 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 TypedefName 40 #define Comment 41 #define Doc 42 #define JavaDoc 43 #define ClassDoc 44 #define LineDoc 45 #define DefLineDoc 46 #define ClassDocArg1 47 #define ClassDocArg2 48 #define ClassDocArg3 49 #define ClassDocFunc 50 #define ClassDocFuncPtr 51 #define ClassDocFuncQual 52 #define ClassDocFuncSkipLine 53 #define ClassDocFuncExc 54 #define ClassDocDefine 55 #define ClassDocRelates 56 #define ClassDocBrief 57 #define ClassDocOverload 58 #define ClassDefineArgs 59 #define GroupDocArg1 60 #define GroupDocArg2 61 #define GroupName 62 #define GroupHeader 63 #define AfterDoc 64 #define AfterDocBrief 65 #define AfterDocLine 66 #define PageDoc 67 #define PageDocTitle 68 #define PageDocArg1 69 #define PageDocArg2 70 #define FileDocArg1 71 #define FileDocArg2 72 #define ExampleDoc 73 #define ExampleDocArg1 74 #define EnumDoc 75 #define EnumDocArg1 76 #define FuncPtr 77 #define EndFuncPtr 78 #define FuncFunc 79 #define FuncFuncEnd 80 #define FuncFuncType 81 #define MemberSpec 82 #define MemberSpecSkip 83 #define SkipVerbatim 84 #define Text 85 #define DocScan 86 #define DocParam 87 #define DocException 88 #define DocHtmlScan 89 #define DocLatexScan 90 #define DocEmphasis 91 #define DocBold 92 #define DocCode 93 #define DocCodeBlock 94 #define DocInternal 95 #define DocLink 96 #define DocLinkText 97 #define DocSkipWord 98 #define DocInclude 99 #define DocDontInclude 100 #define DocDescItem 101 #define DocHtmlLink 102 #define DocHtmlAnchor 103 #define DocHtmlHref1 104 #define DocHtmlHref2 105 #define DocBaseClass 106 #define DocSkiplineKey 107 #define DocSkipKey 108 #define DocLineKey 109 #define DocUntilKey 110 #define DocKeyEnd 111 #define DocPar 112 #define DocRefName 113 #define DocVerbatim 114 #define DocVerbInc 115 #define DocIndexWord 116 #define DocRef 117 #define DocRefArg 118 #define DocRefArgStart 119 #define DocRefItem 120 #define DocRefItemName 121 #define DocImage 122 #define DocHtmlImageName 123 #define DocLatexImageName 124 #define DocLatexImageWidth 125 #define SectionLabel 126 #define SectionTitle 127 #define SkipTemplate 128 #define EndTemplate 129 #define CopyArgString 130 #define CopyArgRound 131 #define CopyArgSharp 132 #define ReadFuncArgType 133 #define ReadTempArgs 134 #define Specialization 135 #define DocSkipHtmlComment 136 #define ReadFormulaShort 137 #define ReadFormulaLong 138 #define AnchorLabel 139 /* 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 940 "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 >= 3919 ) 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] != 34016 ); 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 942 "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 968 "scanner.l" YY_BREAK /* ^{BL} { if (insideArgumentList) { insideArgumentList=FALSE; outDoc->endItemList(); } else { outDoc->newParagraph(); } if (inBlock()) endBlock(); } */ case 3: YY_RULE_SETUP #line 983 "scanner.l" { BEGIN(DocSkipHtmlComment); } YY_BREAK case 4: YY_RULE_SETUP #line 984 "scanner.l" { BEGIN(DocScan); } YY_BREAK case 5: YY_RULE_SETUP #line 985 "scanner.l" YY_BREAK case 6: YY_RULE_SETUP #line 986 "scanner.l" { outDoc->writeCopyright(); } YY_BREAK case 7: YY_RULE_SETUP #line 987 "scanner.l" { outDoc->writeQuote(); } YY_BREAK case 8: YY_RULE_SETUP #line 988 "scanner.l" { outDoc->writeUmlaut(yytext[1]); } YY_BREAK case 9: YY_RULE_SETUP #line 989 "scanner.l" { outDoc->writeAcute(yytext[1]); } YY_BREAK case 10: YY_RULE_SETUP #line 990 "scanner.l" { outDoc->writeGrave(yytext[1]); } YY_BREAK case 11: YY_RULE_SETUP #line 991 "scanner.l" { outDoc->writeCirc(yytext[1]); } YY_BREAK case 12: YY_RULE_SETUP #line 992 "scanner.l" { outDoc->writeTilde(yytext[1]); } YY_BREAK case 13: YY_RULE_SETUP #line 993 "scanner.l" { outDoc->writeSharpS(); } YY_BREAK case 14: YY_RULE_SETUP #line 994 "scanner.l" { outDoc->writeRing(yytext[1]); } YY_BREAK case 15: YY_RULE_SETUP #line 995 "scanner.l" { QCString envvar=&yytext[2]; envvar=envvar.left(envvar.length()-1); outDoc->docify(getenv(envvar)); } YY_BREAK case 16: *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 1000 "scanner.l" { outDoc->disableAllBut(OutputGenerator::Html); BEGIN(DocHtmlScan); } 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 1004 "scanner.l" { outDoc->enableAll(); BEGIN(DocScan); } 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 1008 "scanner.l" { outDoc->disableAllBut(OutputGenerator::Latex); BEGIN(DocLatexScan); } YY_BREAK case 19: YY_RULE_SETUP #line 1012 "scanner.l" { outDoc->writeString(yytext); } YY_BREAK case 20: YY_RULE_SETUP #line 1015 "scanner.l" { char c[2]; c[0]=*yytext;c[1]='\0'; outDoc->writeString(c); } YY_BREAK case 21: *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 1020 "scanner.l" { outDoc->enableAll(); BEGIN(DocScan); } YY_BREAK case 22: *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 1024 "scanner.l" YY_BREAK case 23: *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 1025 "scanner.l" { writeMemberList(*outDoc); } YY_BREAK case 24: *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 1026 "scanner.l" { writeClassHierarchy(*outDoc); } YY_BREAK case 25: *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 1027 "scanner.l" { writeAnnotatedClassList(*outDoc); } YY_BREAK case 26: *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 1028 "scanner.l" { /*TODO: fix this writeHeaderFileList(*outDoc); */ } YY_BREAK case 27: *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 1029 "scanner.l" { BEGIN( DocSkipWord ); } 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 1030 "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 -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 1031 "scanner.l" { BEGIN( DocVerbInc ); } YY_BREAK case 30: YY_RULE_SETUP #line 1032 "scanner.l" { verbIncludeFile(*outDoc,stripQuotes(yytext)); BEGIN( DocScan ); } YY_BREAK case 31: *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 1036 "scanner.l" { outDoc->startCodeFragment(); BEGIN(DocVerbatim); } 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 1040 "scanner.l" { outDoc->endCodeFragment(); BEGIN(DocScan); } YY_BREAK case 33: YY_RULE_SETUP #line 1044 "scanner.l" { //printf("docifying: %s\n",yytext); outDoc->codify(yytext); } YY_BREAK case 34: YY_RULE_SETUP #line 1048 "scanner.l" { outDoc->codify(yytext); } YY_BREAK case 35: YY_RULE_SETUP #line 1051 "scanner.l" { //printf("char %c\n",*yytext); char c[2];c[0]=*yytext;c[1]='\0'; outDoc->codify(c); } YY_BREAK case 36: *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 1056 "scanner.l" { if (!Config::internalDocsFlag) { outDoc->newParagraph(); scanString(theTranslator->trForInternalUseOnly()+"\n"); //outDoc->writeString("For internal use only.\n"); BEGIN( DocInternal ); } } YY_BREAK case 37: *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 1065 "scanner.l" { outDoc->newParagraph(); scanString(theTranslator->trReimplementedForInternalReasons()+"\n"); } YY_BREAK case 38: *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 1069 "scanner.l" { BEGIN( DocLink ); } YY_BREAK case 39: YY_RULE_SETUP #line 1070 "scanner.l" { BEGIN( DocScan ); } YY_BREAK case 40: YY_RULE_SETUP #line 1071 "scanner.l" { linkRef = stripKnownExtensions(yytext); linkText = ""; BEGIN( DocLinkText ); } YY_BREAK case 41: YY_RULE_SETUP #line 1076 "scanner.l" { linkText += *yytext; } YY_BREAK case 42: YY_RULE_SETUP #line 1077 "scanner.l" { linkText += " "; } YY_BREAK case 43: YY_RULE_SETUP #line 1078 "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); BEGIN( DocScan ); } YY_BREAK /* "@ref"{B}+ { BEGIN(DocRef); } {SCOPENAME} { generateLink(*outDoc,className,yytext,TRUE,0); BEGIN( DocScan ); } */ case 44: *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 1093 "scanner.l" { warn("Warning: \\endlink without \\link " "in documentation of %s\n", refName.data()); } YY_BREAK 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 1096 "scanner.l" { BEGIN(DocIndexWord); } YY_BREAK case 46: YY_RULE_SETUP #line 1099 "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 47: YY_RULE_SETUP #line 1108 "scanner.l" { //printf("Adding %s to index\n",yytext); outDoc->addToIndex(yytext,0); BEGIN(DocScan); } YY_BREAK case 48: YY_RULE_SETUP #line 1113 "scanner.l" { if (insideArgumentList) { outDoc->writeListItem(); } else { outDoc->startItemList(); outDoc->writeListItem(); insideArgumentList=TRUE; } } YY_BREAK case 49: YY_RULE_SETUP #line 1125 "scanner.l" { BEGIN(DocPar); } YY_BREAK case 50: YY_RULE_SETUP #line 1128 "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 51: YY_RULE_SETUP #line 1140 "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 52: YY_RULE_SETUP #line 1159 "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 53: YY_RULE_SETUP #line 1177 "scanner.l" { endArgumentList(); if (!inVersionBlock) { if (inBlock()) endBlock(); inVersionBlock=TRUE; outDoc->startDescList(); //outDoc->writeBoldString("Version: "); outDoc->startBold(); scanString(theTranslator->trVersion()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->writeDescItem(); } } YY_BREAK case 54: YY_RULE_SETUP #line 1196 "scanner.l" { endArgumentList(); if (!inDateBlock) { if (inBlock()) endBlock(); inDateBlock=TRUE; outDoc->startDescList(); //outDoc->writeBoldString("Date: "); outDoc->startBold(); scanString(theTranslator->trDate()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->writeDescItem(); } } YY_BREAK case 55: YY_RULE_SETUP #line 1215 "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 56: YY_RULE_SETUP #line 1233 "scanner.l" { endArgumentList(); if (!inAuthorBlock) { if (inBlock()) endBlock(); inAuthorBlock=TRUE; outDoc->startDescList(); //outDoc->writeBoldString("Author(s): "); outDoc->startBold(); scanString(theTranslator->trAuthors()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->docify(", "); } } YY_BREAK case 57: YY_RULE_SETUP #line 1252 "scanner.l" { endArgumentList(); if (!inReturnBlock) { if (inBlock()) endBlock(); inReturnBlock=TRUE; outDoc->startDescList(); //outDoc->writeBoldString("Returns: "); outDoc->startBold(); scanString(theTranslator->trReturns()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } } YY_BREAK case 58: YY_RULE_SETUP #line 1267 "scanner.l" { endArgumentList(); if (!inSeeBlock) { if (inBlock()) endBlock(); inSeeBlock=TRUE; //firstSeeArg=TRUE; outDoc->startDescList(); //outDoc->writeBoldString("See also: "); outDoc->startBold(); scanString(theTranslator->trSeeAlso()+": "); outDoc->endBold(); outDoc->endDescTitle(); outDoc->writeDescItem(); } else { outDoc->docify(", "); } } YY_BREAK case 59: YY_RULE_SETUP #line 1287 "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 60: YY_RULE_SETUP #line 1307 "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 61: YY_RULE_SETUP #line 1327 "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 62: YY_RULE_SETUP #line 1347 "scanner.l" YY_BREAK case 63: YY_RULE_SETUP #line 1348 "scanner.l" { outDoc->startDescTableTitle(); outDoc->startEmphasis(); outDoc->docify(yytext); outDoc->endEmphasis(); outDoc->endDescTableTitle(); outDoc->startDescTableData(); BEGIN(DocScan); } YY_BREAK case 64: YY_RULE_SETUP #line 1357 "scanner.l" { outDoc->startDescTableTitle(); outDoc->startEmphasis(); outDoc->docify(yytext); outDoc->endEmphasis(); outDoc->endDescTableTitle(); outDoc->startDescTableData(); BEGIN(DocScan); } YY_BREAK case 65: YY_RULE_SETUP #line 1366 "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 66: YY_RULE_SETUP #line 1378 "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 67: YY_RULE_SETUP #line 1387 "scanner.l" { BEGIN(DocRefName); } YY_BREAK case 68: YY_RULE_SETUP #line 1390 "scanner.l" { BEGIN(DocRefItem); } YY_BREAK case 69: YY_RULE_SETUP #line 1393 "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 70: YY_RULE_SETUP #line 1420 "scanner.l" { sectionRef=yytext; BEGIN(DocRefArgStart); } YY_BREAK case 71: YY_RULE_SETUP #line 1424 "scanner.l" { BEGIN(DocRefArg); } YY_BREAK case 72: YY_RULE_SETUP #line 1427 "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,yytext,TRUE,text)) { warn("Warning: reference to unknown section %s!\n",sectionRef.data()); outDoc->writeBoldString("unknown reference!"); } BEGIN(DocScan); } YY_BREAK case 73: YY_RULE_SETUP #line 1449 "scanner.l" { sectionRef=yytext; BEGIN(DocRefItemName); } YY_BREAK case 74: *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" { 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 75: YY_RULE_SETUP #line 1467 "scanner.l" { BEGIN(DocImage); } YY_BREAK case 76: YY_RULE_SETUP #line 1470 "scanner.l" { BEGIN(DocHtmlImageName); } YY_BREAK case 77: YY_RULE_SETUP #line 1473 "scanner.l" { BEGIN(DocLatexImageName); } YY_BREAK case 78: YY_RULE_SETUP #line 1476 "scanner.l" { curImageName = findAndCopyImage(stripQuotes(yytext),IT_Html); if (!curImageName.isEmpty()) { storeOutputListState(); outDoc->disableAllBut(OutputGenerator::Html); outDoc->writeImage(curImageName,0,0); restoreOutputListState(); } BEGIN(DocScan); } YY_BREAK case 79: YY_RULE_SETUP #line 1487 "scanner.l" { curImageName = findAndCopyImage(stripQuotes(yytext),IT_Latex); if (curImageName.isEmpty()) BEGIN(DocScan); else BEGIN(DocLatexImageWidth); } YY_BREAK case 80: YY_RULE_SETUP #line 1494 "scanner.l" { // no width specified storeOutputListState(); outDoc->disableAllBut(OutputGenerator::Latex); outDoc->writeImage(curImageName,0,0); restoreOutputListState(); BEGIN(DocScan); } YY_BREAK case 81: YY_RULE_SETUP #line 1501 "scanner.l" { storeOutputListState(); outDoc->disableAllBut(OutputGenerator::Latex); outDoc->writeImage(curImageName,yytext,0); restoreOutputListState(); BEGIN(DocScan); } YY_BREAK case 82: YY_RULE_SETUP #line 1508 "scanner.l" { storeOutputListState(); outDoc->disableAllBut(OutputGenerator::Latex); outDoc->writeImage(curImageName,0,yytext); restoreOutputListState(); BEGIN(DocScan); } YY_BREAK case 83: YY_RULE_SETUP #line 1515 "scanner.l" { warn("Warning: %s is an unsupported output format for \\image\n",yytext); } YY_BREAK case 84: YY_RULE_SETUP #line 1518 "scanner.l" { warn("Warning: invalid \\image command found!\n"); outDoc->enableAll(); BEGIN(DocScan); } YY_BREAK case 85: YY_RULE_SETUP #line 1523 "scanner.l" { outDoc->startCodeFragment(); codeBlock.resize(0); BEGIN( DocCodeBlock ); } YY_BREAK case 86: *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 1528 "scanner.l" { warn("Warning: \\endcode without
 or \\code "
    					       "in the documentation of %s\n",refName.data()); 
					}
	YY_BREAK
case 87:
YY_RULE_SETUP
#line 1532 "scanner.l"
{
  					  generateRef(*outDoc,className,yytext,inSeeBlock);
  					}
	YY_BREAK
case 88:
YY_RULE_SETUP
#line 1535 "scanner.l"
{ 
					  generateRef(*outDoc,className,yytext,inSeeBlock);
					} 
	YY_BREAK
case 89:
YY_RULE_SETUP
#line 1538 "scanner.l"
{ 
				          QCString oName=yytext;
					  generateRef(*outDoc,className,
					              removeRedundantWhiteSpace(oName),inSeeBlock);
					}
	YY_BREAK
case 90:
YY_RULE_SETUP
#line 1543 "scanner.l"
{ 
    					  QCString oName=yytext;
					  generateRef(*outDoc,className,
					              removeRedundantWhiteSpace(oName),inSeeBlock);
					}
	YY_BREAK
case 91:
YY_RULE_SETUP
#line 1548 "scanner.l"
{ outDoc->writeHtmlLink(yytext,yytext); }
	YY_BREAK
case 92:
YY_RULE_SETUP
#line 1549 "scanner.l"
{ outDoc->writeMailLink(yytext); }
	YY_BREAK
case 93:
YY_RULE_SETUP
#line 1550 "scanner.l"
{
					  generateFileRef(*outDoc,yytext);
					}
	YY_BREAK
case 94:
*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 1553 "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 95:
YY_RULE_SETUP
#line 1559 "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 96:
YY_RULE_SETUP
#line 1565 "scanner.l"
{ BEGIN( DocEmphasis ); }
	YY_BREAK
case 97:
YY_RULE_SETUP
#line 1566 "scanner.l"
{ BEGIN( DocEmphasis ); }
	YY_BREAK
case 98:
YY_RULE_SETUP
#line 1567 "scanner.l"
{ BEGIN( DocBold ); }
	YY_BREAK
case 99:
YY_RULE_SETUP
#line 1568 "scanner.l"
{ BEGIN( DocCode ); }
	YY_BREAK
case 100:
YY_RULE_SETUP
#line 1569 "scanner.l"

	YY_BREAK
case 101:
YY_RULE_SETUP
#line 1570 "scanner.l"
{ BEGIN( DocInclude ); }
	YY_BREAK
case 102:
YY_RULE_SETUP
#line 1571 "scanner.l"
{ BEGIN( DocDontInclude ); }
	YY_BREAK
case 103:
YY_RULE_SETUP
#line 1572 "scanner.l"
{ BEGIN( DocSkipKey ); }	
	YY_BREAK
case 104:
YY_RULE_SETUP
#line 1573 "scanner.l"
{ BEGIN( DocSkiplineKey ); firstLine=TRUE; }
	YY_BREAK
case 105:
YY_RULE_SETUP
#line 1574 "scanner.l"
{ BEGIN( DocLineKey ); firstLine=TRUE; }
	YY_BREAK
case 106:
YY_RULE_SETUP
#line 1575 "scanner.l"
{ BEGIN( DocUntilKey ); firstLine=TRUE; }
	YY_BREAK
case 107:
YY_RULE_SETUP
#line 1576 "scanner.l"
{ 
  					  if (includeFileLength>0) 
					    skipUntil(yytext); 
  					  BEGIN( DocScan );
					}
	YY_BREAK
case 108:
YY_RULE_SETUP
#line 1581 "scanner.l"
{ 
  					  if (includeFileLength>0) 
					  {
					    if (firstLine) outDoc->startCodeFragment();
					    firstLine=FALSE;
					    showLine(*outDoc,yytext); 
					    BEGIN( DocKeyEnd );
					  }
					  else
					  {
  					    BEGIN( DocScan );
					  }
					}
	YY_BREAK
case 109:
YY_RULE_SETUP
#line 1594 "scanner.l"
{ 
  					  if (includeFileLength>0) 
					  {
					    if (firstLine) outDoc->startCodeFragment();
					    firstLine=FALSE;
					    skipLine(*outDoc,yytext); 
					    BEGIN( DocKeyEnd );
					  }
					  else
					  {
  					    BEGIN( DocScan );
					  }
					}
	YY_BREAK
case 110:
YY_RULE_SETUP
#line 1607 "scanner.l"
{ 
  					  if (includeFileLength>0) 
					  {
					    if (firstLine) outDoc->startCodeFragment();
					    firstLine=FALSE;
					    showUntil(*outDoc,yytext); 
					    BEGIN( DocKeyEnd );
					  }
					  else
					  {
  					    BEGIN( DocScan );
					  }
					}
	YY_BREAK
case 111:
YY_RULE_SETUP
#line 1620 "scanner.l"
{ BEGIN(DocLineKey); }
	YY_BREAK
case 112:
YY_RULE_SETUP
#line 1621 "scanner.l"
{ BEGIN(DocUntilKey); }
	YY_BREAK
case 113:
YY_RULE_SETUP
#line 1622 "scanner.l"
{ BEGIN(DocSkiplineKey); }
	YY_BREAK
case 114:
YY_RULE_SETUP
#line 1623 "scanner.l"

	YY_BREAK
case YY_STATE_EOF(DocKeyEnd):
#line 1624 "scanner.l"
{
  					  if (!firstLine) outDoc->endCodeFragment();
					  yyterminate();
  					}
	YY_BREAK
case 115:
YY_RULE_SETUP
#line 1628 "scanner.l"
{
  					  unput(*yytext);
  					  if (!firstLine) outDoc->endCodeFragment();
					  BEGIN( DocScan );
  					}
	YY_BREAK
case 116:
YY_RULE_SETUP
#line 1633 "scanner.l"

	YY_BREAK
case 117:
YY_RULE_SETUP
#line 1634 "scanner.l"

	YY_BREAK
case 118:
YY_RULE_SETUP
#line 1635 "scanner.l"
{ outDoc->startBold(); }
	YY_BREAK
case 119:
YY_RULE_SETUP
#line 1636 "scanner.l"
{ outDoc->endBold(); }
	YY_BREAK
case 120:
YY_RULE_SETUP
#line 1637 "scanner.l"
{ outDoc->startCenter(); }
	YY_BREAK
case 121:
YY_RULE_SETUP
#line 1638 "scanner.l"
{ outDoc->endCenter(); }
	YY_BREAK
case 122:
YY_RULE_SETUP
#line 1639 "scanner.l"
{ 
  					  startTable();
  					  /*outDoc->startTable();*/ }
	YY_BREAK
case 123:
YY_RULE_SETUP
#line 1642 "scanner.l"
{
 					  endTable(); 
  					  /*outDoc->endTable();*/ 
					}
	YY_BREAK
case 124:
YY_RULE_SETUP
#line 1646 "scanner.l"

	YY_BREAK
case 125:
YY_RULE_SETUP
#line 1647 "scanner.l"
{ outDoc->startSmall(); }
	YY_BREAK
case 126:
YY_RULE_SETUP
#line 1648 "scanner.l"
{ outDoc->endSmall(); }
	YY_BREAK
case 127:
YY_RULE_SETUP
#line 1649 "scanner.l"

	YY_BREAK
case 128:
YY_RULE_SETUP
#line 1650 "scanner.l"

	YY_BREAK
case 129:
YY_RULE_SETUP
#line 1651 "scanner.l"

	YY_BREAK
case 130:
YY_RULE_SETUP
#line 1652 "scanner.l"

	YY_BREAK
case 131:
YY_RULE_SETUP
#line 1653 "scanner.l"

	YY_BREAK
case 132:
YY_RULE_SETUP
#line 1654 "scanner.l"

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

	YY_BREAK
case 134:
YY_RULE_SETUP
#line 1656 "scanner.l"
{ outDoc->startTypewriter(); }
	YY_BREAK
case 135:
YY_RULE_SETUP
#line 1657 "scanner.l"
{ outDoc->endTypewriter(); }
	YY_BREAK
case 136:
YY_RULE_SETUP
#line 1658 "scanner.l"
{ outDoc->startTypewriter(); }
	YY_BREAK
case 137:
YY_RULE_SETUP
#line 1659 "scanner.l"
{ outDoc->endTypewriter(); }
	YY_BREAK
case 138:
YY_RULE_SETUP
#line 1660 "scanner.l"
{ outDoc->startEmphasis(); }
	YY_BREAK
case 139:
YY_RULE_SETUP
#line 1661 "scanner.l"
{ outDoc->endEmphasis(); }
	YY_BREAK
case 140:
YY_RULE_SETUP
#line 1662 "scanner.l"
{ 
                                          storeOutputListState();
                                          outDoc->disableAllBut(OutputGenerator::Html);
					  outDoc->writeString(yytext); 
                                          restoreOutputListState();
					}
	YY_BREAK
case 141:
YY_RULE_SETUP
#line 1668 "scanner.l"
{ 
  					  outDoc->startCodeFragment();
  					  codeBlock.resize(0);
					  BEGIN( DocCodeBlock ); 
					}
	YY_BREAK
case 142:
YY_RULE_SETUP
#line 1673 "scanner.l"
{ 
  					  warn("Warning: 
without
 or \\code"
    					         "in the documentation of %s\n",refName.data()); 
					}
	YY_BREAK
case 143:
YY_RULE_SETUP
#line 1677 "scanner.l"
{ outDoc->startSubscript(); }
	YY_BREAK
case 144:
YY_RULE_SETUP
#line 1678 "scanner.l"
{ outDoc->endSubscript(); }
	YY_BREAK
case 145:
YY_RULE_SETUP
#line 1679 "scanner.l"
{ outDoc->startSuperscript(); }
	YY_BREAK
case 146:
YY_RULE_SETUP
#line 1680 "scanner.l"
{ outDoc->endSuperscript(); }
	YY_BREAK
case 147:
YY_RULE_SETUP
#line 1681 "scanner.l"
{ if (curTable) curTable->newRow(); }
	YY_BREAK
case 148:
YY_RULE_SETUP
#line 1682 "scanner.l"

	YY_BREAK
case 149:
YY_RULE_SETUP
#line 1683 "scanner.l"
{ if (curTable) curTable->newElem(); }
	YY_BREAK
case 150:
YY_RULE_SETUP
#line 1684 "scanner.l"

	YY_BREAK
case 151:
YY_RULE_SETUP
#line 1685 "scanner.l"
{ outDoc->startEnumList(); 
  					  currentListIndentLevel++;
					}
	YY_BREAK
case 152:
YY_RULE_SETUP
#line 1688 "scanner.l"
{ outDoc->endEnumList(); 
  					  currentListIndentLevel--;
					}
	YY_BREAK
case 153:
YY_RULE_SETUP
#line 1691 "scanner.l"
{ outDoc->startItemList(); 
					  currentListIndentLevel++;
					}
	YY_BREAK
case 154:
YY_RULE_SETUP
#line 1694 "scanner.l"
{ outDoc->endItemList(); 
  					  currentListIndentLevel--;
					}
	YY_BREAK
case 155:
YY_RULE_SETUP
#line 1697 "scanner.l"
{ outDoc->writeListItem(); }
	YY_BREAK
case 156:
YY_RULE_SETUP
#line 1698 "scanner.l"

	YY_BREAK
case 157:
YY_RULE_SETUP
#line 1699 "scanner.l"
{ outDoc->startTypewriter(); }
	YY_BREAK
case 158:
YY_RULE_SETUP
#line 1700 "scanner.l"
{ outDoc->endTypewriter(); }
	YY_BREAK
case 159:
YY_RULE_SETUP
#line 1701 "scanner.l"
{ outDoc->startEmphasis(); }
	YY_BREAK
case 160:
YY_RULE_SETUP
#line 1702 "scanner.l"
{ outDoc->endEmphasis(); }
	YY_BREAK
case 161:
YY_RULE_SETUP
#line 1703 "scanner.l"
{ outDoc->writeRuler(); }
	YY_BREAK
case 162:
YY_RULE_SETUP
#line 1704 "scanner.l"
{ outDoc->startDescription(); 
					  currentListIndentLevel++;
					}
	YY_BREAK
case 163:
YY_RULE_SETUP
#line 1707 "scanner.l"
{ outDoc->endDescription(); 
  					  currentListIndentLevel--;
					}
	YY_BREAK
case 164:
YY_RULE_SETUP
#line 1710 "scanner.l"
{ outDoc->startDescItem(); }
	YY_BREAK
case 165:
YY_RULE_SETUP
#line 1711 "scanner.l"

	YY_BREAK
case 166:
YY_RULE_SETUP
#line 1712 "scanner.l"
{ outDoc->endDescItem(); }
	YY_BREAK
case 167:
YY_RULE_SETUP
#line 1713 "scanner.l"

	YY_BREAK
case 168:
YY_RULE_SETUP
#line 1714 "scanner.l"
{ outDoc->lineBreak(); }
	YY_BREAK
case 169:
YY_RULE_SETUP
#line 1715 "scanner.l"
{ outDoc->startEmphasis(); }
	YY_BREAK
case 170:
YY_RULE_SETUP
#line 1716 "scanner.l"
{ outDoc->endEmphasis(); }
	YY_BREAK
case 171:
YY_RULE_SETUP
#line 1717 "scanner.l"

	YY_BREAK
case 172:
YY_RULE_SETUP
#line 1718 "scanner.l"
{ BEGIN(DocHtmlLink); }
	YY_BREAK
case 173:
YY_RULE_SETUP
#line 1719 "scanner.l"
{ outDoc->startBold(); }
	YY_BREAK
case 174:
YY_RULE_SETUP
#line 1720 "scanner.l"
{ outDoc->endBold(); }
	YY_BREAK
case 175:
YY_RULE_SETUP
#line 1721 "scanner.l"
{ 
  					  if (inBlock()) endBlock();
  					  outDoc->newParagraph(); }
	YY_BREAK
case 176:
YY_RULE_SETUP
#line 1724 "scanner.l"

	YY_BREAK
case 177:
YY_RULE_SETUP
#line 1725 "scanner.l"
{ outDoc->startTitle(); }
	YY_BREAK
case 178:
YY_RULE_SETUP
#line 1726 "scanner.l"
{ outDoc->endTitle(); }
	YY_BREAK
case 179:
YY_RULE_SETUP
#line 1727 "scanner.l"
{ outDoc->startSubsection(); }
	YY_BREAK
case 180:
YY_RULE_SETUP
#line 1728 "scanner.l"
{ outDoc->endSubsection(); }
	YY_BREAK
case 181:
YY_RULE_SETUP
#line 1729 "scanner.l"
{ outDoc->startSubsubsection(); }
	YY_BREAK
case 182:
YY_RULE_SETUP
#line 1730 "scanner.l"
{ outDoc->endSubsubsection(); }
	YY_BREAK
case 183:
YY_RULE_SETUP
#line 1731 "scanner.l"
{ BEGIN(DocHtmlAnchor); }
	YY_BREAK
case 184:
YY_RULE_SETUP
#line 1732 "scanner.l"
{ outDoc->writeAnchor(yytext); } 
	YY_BREAK
case 185:
YY_RULE_SETUP
#line 1733 "scanner.l"
{ 
  					  htmlUrl.resize(0);
					  htmlText.resize(0);
  					  BEGIN(DocHtmlHref1); }
	YY_BREAK
case 186:
YY_RULE_SETUP
#line 1737 "scanner.l"
{ 
  					  htmlUrl=yytext; 
					}
	YY_BREAK
case 187:
YY_RULE_SETUP
#line 1740 "scanner.l"
{ BEGIN(DocHtmlHref2); }
	YY_BREAK
case 188:
YY_RULE_SETUP
#line 1741 "scanner.l"
{ htmlText+=yytext; }
	YY_BREAK
/*
\n			{ htmlText+='\n'; }
  */
case 189:
YY_RULE_SETUP
#line 1745 "scanner.l"
{ 
  					  outDoc->writeHtmlLink(htmlUrl,htmlText);
  					  unput(*yytext); 
					  BEGIN(DocScan); 
					}
	YY_BREAK
case 190:
YY_RULE_SETUP
#line 1750 "scanner.l"
{ BEGIN(DocScan); }
	YY_BREAK
case 191:
YY_RULE_SETUP
#line 1751 "scanner.l"
{
  					  outDoc->docify(&yytext[1]);
  					}
	YY_BREAK
case 192:
YY_RULE_SETUP
#line 1754 "scanner.l"
{
  					  outDoc->docify(yytext+1);
  					}
	YY_BREAK
case 193:
YY_RULE_SETUP
#line 1757 "scanner.l"
{ 
  					  outDoc->startEmphasis();
  					  generateRef(*outDoc,className,yytext,inSeeBlock);
					  outDoc->endEmphasis();
					  BEGIN( DocScan );
					  //addToIndex(yytext);
					}
	YY_BREAK
case 194:
YY_RULE_SETUP
#line 1764 "scanner.l"
{
  					  outDoc->startBold();
  					  generateRef(*outDoc,className,yytext,inSeeBlock);
					  outDoc->endBold();
					  BEGIN( DocScan );
  					}
	YY_BREAK
case 195:
YY_RULE_SETUP
#line 1770 "scanner.l"
{ 
					  outDoc->startTypewriter();
  					  generateRef(*outDoc,className,yytext,inSeeBlock);
					  outDoc->endTypewriter();
					  BEGIN( DocScan );
					}
	YY_BREAK
case 196:
YY_RULE_SETUP
#line 1776 "scanner.l"
{
					  includeFile(*outDoc,stripQuotes(yytext),FALSE); 
					  BEGIN( DocScan );
  					}
	YY_BREAK
case 197:
YY_RULE_SETUP
#line 1780 "scanner.l"
{
  					  includeFile(*outDoc,stripQuotes(yytext),TRUE);
					  BEGIN( DocScan );
  					}
	YY_BREAK
case 198:
YY_RULE_SETUP
#line 1784 "scanner.l"
{ codeBlock += yytext; }
	YY_BREAK
case 199:
YY_RULE_SETUP
#line 1785 "scanner.l"
{ codeBlock += yytext; }
	YY_BREAK
case 200:
YY_RULE_SETUP
#line 1786 "scanner.l"
{ codeBlock += '\n'; }
	YY_BREAK
case 201:
YY_RULE_SETUP
#line 1787 "scanner.l"
{ codeBlock += yytext; }
	YY_BREAK
case 202:
YY_RULE_SETUP
#line 1788 "scanner.l"
{ codeBlock += *yytext; }
	YY_BREAK
case 203:
YY_RULE_SETUP
#line 1789 "scanner.l"
{ 
					  outDoc->docify(yytext);
					}
	YY_BREAK
case 204:
YY_RULE_SETUP
#line 1792 "scanner.l"
{ 
  					  outDoc->docify(yytext);
					}
	YY_BREAK
case 205:
YY_RULE_SETUP
#line 1795 "scanner.l"
{ outDoc->writeChar('\n'); }
	YY_BREAK
case 206:
YY_RULE_SETUP
#line 1796 "scanner.l"
{ 
  					  if (insideArgumentList)
					  {
					    insideArgumentList=FALSE;
					    outDoc->endItemList();
					  }
					  else
					  {
					    outDoc->newParagraph(); 
					  }
					  if (inBlock()) endBlock();
					}
	YY_BREAK
case 207:
YY_RULE_SETUP
#line 1808 "scanner.l"
{ 
  					  outDoc->writeChar(' '); 
					}
	YY_BREAK
case 208:
YY_RULE_SETUP
#line 1811 "scanner.l"
{ 
					  outDoc->writeChar(*yytext);
					}
	YY_BREAK
case 209:
YY_RULE_SETUP
#line 1814 "scanner.l"
{
  					  bracketCount=0;
  					  BEGIN(SkipCurlyBlock); 
					}
	YY_BREAK
case 210:
YY_RULE_SETUP
#line 1818 "scanner.l"
{
  				 	  roundCount=0;
  					  BEGIN(SkipRoundBlock);
  					}
	YY_BREAK
case 211:
YY_RULE_SETUP
#line 1822 "scanner.l"
{
					  ++roundCount;
  					}
	YY_BREAK
case 212:
YY_RULE_SETUP
#line 1825 "scanner.l"
{
  					  if (roundCount )
					    --roundCount ;
					  else
					    BEGIN( NextSemi ) ;
  					}
	YY_BREAK
case 213:
YY_RULE_SETUP
#line 1831 "scanner.l"
{
  					  ++bracketCount ; 
					}
	YY_BREAK
case 214:
YY_RULE_SETUP
#line 1834 "scanner.l"
{ 
  				          if( bracketCount )
					    --bracketCount ;
					  else
					    BEGIN( NextSemi ) ;
					}
	YY_BREAK
case 215:
YY_RULE_SETUP
#line 1840 "scanner.l"

	YY_BREAK
case 216:
YY_RULE_SETUP
#line 1841 "scanner.l"

	YY_BREAK
case 217:
YY_RULE_SETUP
#line 1842 "scanner.l"

	YY_BREAK
case 218:
YY_RULE_SETUP
#line 1843 "scanner.l"
{
  					  lastStringContext=NextSemi;
					  BEGIN(SkipString);
  					}
	YY_BREAK
case 219:
YY_RULE_SETUP
#line 1847 "scanner.l"
{ 
  					  unput(*yytext);
  					  BEGIN( FindMembers ) ; 
					}
	YY_BREAK
case 220:
YY_RULE_SETUP
#line 1851 "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 221:
YY_RULE_SETUP
#line 1861 "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 222:
YY_RULE_SETUP
#line 1872 "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 223:
YY_RULE_SETUP
#line 1883 "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 224:
YY_RULE_SETUP
#line 1894 "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 225:
YY_RULE_SETUP
#line 1904 "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 226:
YY_RULE_SETUP
#line 1914 "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 227:
YY_RULE_SETUP
#line 1924 "scanner.l"
{
  					  lineCount();
  					}
	YY_BREAK
case 228:
YY_RULE_SETUP
#line 1927 "scanner.l"
{ //current->type += " static ";
  					  current->stat = TRUE;
					  lineCount();
					}
	YY_BREAK
case 229:
YY_RULE_SETUP
#line 1931 "scanner.l"
{
  					  current->stat = FALSE;
					  lineCount();
  					}
	YY_BREAK
case 230:
YY_RULE_SETUP
#line 1935 "scanner.l"
{ current->type += " virtual ";
					  current->virt = Virtual;
					  lineCount();
					}
	YY_BREAK
case 231:
YY_RULE_SETUP
#line 1939 "scanner.l"
{ current->inLine = TRUE;
                                          lineCount(); 
                                        }
	YY_BREAK
case 232:
YY_RULE_SETUP
#line 1942 "scanner.l"
{ lineCount(); }
	YY_BREAK
case 233:
YY_RULE_SETUP
#line 1943 "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 234:
YY_RULE_SETUP
#line 1953 "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 235:
YY_RULE_SETUP
#line 1963 "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 236:
YY_RULE_SETUP
#line 1974 "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 237:
YY_RULE_SETUP
#line 1985 "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 238:
YY_RULE_SETUP
#line 1996 "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 239:
YY_RULE_SETUP
#line 2007 "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 240:
*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 2018 "scanner.l"
{
  					  lineCount();
    					  current->name += yytext ;
					  current->name = current->name.simplifyWhiteSpace();
					  BEGIN( FindMembers ) ;
  					}
	YY_BREAK
case 241:
YY_RULE_SETUP
#line 2024 "scanner.l"
{ 
    					  current->name += *yytext ;
					}
	YY_BREAK
case 242:
YY_RULE_SETUP
#line 2027 "scanner.l"
{ /* skip guided templ specifiers */ }
	YY_BREAK
case 243:
YY_RULE_SETUP
#line 2028 "scanner.l"
{
					  current->name = current->name.simplifyWhiteSpace();
					  unput(*yytext);
					  BEGIN( FindMembers ) ;
					}
	YY_BREAK
case 244:
YY_RULE_SETUP
#line 2033 "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="<";
					  copyArgString=&templateStr;
					  currentArgumentContext = FindMembers;
					  //printf("Start template list\n");
					  BEGIN( ReadTempArgs );
  					}
	YY_BREAK
case 245:
YY_RULE_SETUP
#line 2071 "scanner.l"
{ 
					  current->startLine=yyLineNr; 
                                          lineCount(); 
                                          BEGIN(Using); 
                                        }
	YY_BREAK
case 246:
YY_RULE_SETUP
#line 2076 "scanner.l"
{ lineCount(); BEGIN(UsingDirective); }
	YY_BREAK
case 247:
YY_RULE_SETUP
#line 2077 "scanner.l"
{ BEGIN(FindMembers); }
	YY_BREAK
case 248:
YY_RULE_SETUP
#line 2078 "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 249:
YY_RULE_SETUP
#line 2091 "scanner.l"
{ // guided template decl
					  QCString n=yytext;
					  addType( current );
					  current->name=n.left(n.length()-2);
					}
	YY_BREAK
case 250:
*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 2096 "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 251:
*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 2109 "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 252:
YY_RULE_SETUP
#line 2133 "scanner.l"
{ 
  					  current->name+='<';
  					  *currentTemplateSpec+='<'; 
					  sharpCount++; 
					}
	YY_BREAK
case 253:
YY_RULE_SETUP
#line 2138 "scanner.l"
{
  					  current->name+='>';
					  *currentTemplateSpec+='>';
					  if (--sharpCount<=0)
					  {  
					    //printf("Found %s\n",current->name.data());
					    BEGIN(FindMembers);
					  }
					}
	YY_BREAK
case 254:
YY_RULE_SETUP
#line 2147 "scanner.l"
{ 
  					  lineCount();
  					  current->name+='>';
					  *currentTemplateSpec+='>';
					  if (--sharpCount<=0)
					  {
					    current->args = "(";
					    currentArgumentContext = FuncQual;
					    copyArgString=¤t->args;
					    //printf("Found %s\n",current->name.data());
					    BEGIN( ReadFuncArgType ) ;
					  }
					}
	YY_BREAK
case 255:
*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 2160 "scanner.l"
{
  					  lineCount();
  					  current->name+='>';
  					  *currentTemplateSpec+='>';
					  if (--sharpCount<=0)
					  {
					    BEGIN(FindMemberName);
					  }
  					}
	YY_BREAK
case 256:
YY_RULE_SETUP
#line 2169 "scanner.l"
{ 
  					  current->name+=*yytext;
  					  *currentTemplateSpec+=*yytext; 
					}
	YY_BREAK
case 257:
YY_RULE_SETUP
#line 2173 "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 258:
YY_RULE_SETUP
#line 2190 "scanner.l"
{ lastCPPContext = YY_START; 
					  BEGIN( SkipCPP ) ; 
					}
	YY_BREAK
case 259:
YY_RULE_SETUP
#line 2193 "scanner.l"
{
  					  current->bodyLine = yyLineNr;
  					  BEGIN( Define );
  					}
	YY_BREAK
case 260:
YY_RULE_SETUP
#line 2197 "scanner.l"

	YY_BREAK
case 261:
YY_RULE_SETUP
#line 2198 "scanner.l"
{ yyLineNr++ ; }
	YY_BREAK
case 262:
YY_RULE_SETUP
#line 2199 "scanner.l"
{ yyLineNr++ ;
					  BEGIN( lastCPPContext) ;
					}
	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 2202 "scanner.l"
{
  					  current->bodyLine = yyLineNr;
  					  current->name = yytext;
					  BEGIN( DefineArg );
  					}
	YY_BREAK
case 264:
YY_RULE_SETUP
#line 2207 "scanner.l"
{
  					  //printf("Define with args\n");
  					  current->args += ')';
  					  BEGIN( DefineEnd );
  					}
	YY_BREAK
case 265:
YY_RULE_SETUP
#line 2212 "scanner.l"
{
  					  current->args += *yytext;
  					}
	YY_BREAK
case 266:
YY_RULE_SETUP
#line 2215 "scanner.l"
{
  					  //printf("Define `%s' without args\n",yytext);
  					  current->bodyLine = yyLineNr;
  					  current->name = yytext;
					  BEGIN(DefineEnd);
  					}
	YY_BREAK
case 267:
YY_RULE_SETUP
#line 2221 "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 268:
YY_RULE_SETUP
#line 2239 "scanner.l"
{
  					  yyLineNr++;
  					}
	YY_BREAK
case 269:
YY_RULE_SETUP
#line 2242 "scanner.l"
{
					  lastStringContext=DefineEnd;
					  BEGIN(SkipString);
  					}
	YY_BREAK
case 270:
YY_RULE_SETUP
#line 2246 "scanner.l"

	YY_BREAK
case 271:
YY_RULE_SETUP
#line 2248 "scanner.l"
{ current->name += yytext ; }
	YY_BREAK
case 272:
YY_RULE_SETUP
#line 2249 "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 273:
YY_RULE_SETUP
#line 2271 "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 274:
YY_RULE_SETUP
#line 2291 "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 275:
YY_RULE_SETUP
#line 2314 "scanner.l"
{
  					  current->bodyLine=yyLineNr;
  					  BEGIN(NextSemi);
  					}
	YY_BREAK
case 276:
YY_RULE_SETUP
#line 2318 "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 277:
YY_RULE_SETUP
#line 2359 "scanner.l"
{ current->args += yytext ;
					  sharpCount=1;
					  BEGIN( Array ) ;
					}
	YY_BREAK
case 278:
YY_RULE_SETUP
#line 2363 "scanner.l"
{ current->args += *yytext ;
					  if (--sharpCount<=0)
	                                     BEGIN( FindMembers ) ;
					}
	YY_BREAK
case 279:
YY_RULE_SETUP
#line 2367 "scanner.l"
{ current->args += *yytext ;
					  sharpCount++;	
					}
	YY_BREAK
case 280:
YY_RULE_SETUP
#line 2370 "scanner.l"
{ current->args += *yytext ; }
	YY_BREAK
case 281:
YY_RULE_SETUP
#line 2372 "scanner.l"
{ addType( current ) ;
					  current->type += yytext ;
					  BEGIN( Sharp ) ;
					}
	YY_BREAK
case 282:
YY_RULE_SETUP
#line 2376 "scanner.l"
{ current->type += *yytext ;
					  if (--sharpCount<=0)
	                                     BEGIN( FindMembers ) ;
					}
	YY_BREAK
case 283:
YY_RULE_SETUP
#line 2380 "scanner.l"
{ current->type += *yytext ;
					  sharpCount++;	
					}
	YY_BREAK
case 284:
YY_RULE_SETUP
#line 2383 "scanner.l"
{
  					  lineCount();
					}
	YY_BREAK
case 285:
YY_RULE_SETUP
#line 2386 "scanner.l"
{ current->type += *yytext ; }
	YY_BREAK
case 286:
YY_RULE_SETUP
#line 2387 "scanner.l"
{
  					  current->name = yytext;
					}
	YY_BREAK
case 287:
YY_RULE_SETUP
#line 2390 "scanner.l"
{
  					  BEGIN(FindFieldArg);
  					}
	YY_BREAK
case 288:
YY_RULE_SETUP
#line 2393 "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
case 289:
YY_RULE_SETUP
#line 2415 "scanner.l"
{ unput(*yytext); BEGIN(FindFields); }
	YY_BREAK
case 290:
YY_RULE_SETUP
#line 2416 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 291:
YY_RULE_SETUP
#line 2417 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 292:
YY_RULE_SETUP
#line 2418 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 293:
YY_RULE_SETUP
#line 2419 "scanner.l"
{ current->program += yytext ;
					  lastContext = Curly ;
					  BEGIN( Comment ) ;
					}
	YY_BREAK
case 294:
YY_RULE_SETUP
#line 2423 "scanner.l"
{ current->program += yytext ;
					  ++yyLineNr ;
					  lastContext = Curly ;
					  BEGIN( Comment ) ;
					}
	YY_BREAK
case 295:
YY_RULE_SETUP
#line 2428 "scanner.l"
{ current->program += yytext; }
	YY_BREAK
case 296:
YY_RULE_SETUP
#line 2429 "scanner.l"
{ current->program += yytext; }
	YY_BREAK
case 297:
YY_RULE_SETUP
#line 2430 "scanner.l"
{ current->program += yytext; }
	YY_BREAK
case 298:
YY_RULE_SETUP
#line 2431 "scanner.l"
{ current->program += yytext ;
					  ++bracketCount ;
					}
	YY_BREAK
case 299:
YY_RULE_SETUP
#line 2434 "scanner.l"
{ if ( bracketCount )
					  {
					    current->program += yytext ;
					    --bracketCount ;
					  }
					  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 300:
YY_RULE_SETUP
#line 2486 "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 301:
YY_RULE_SETUP
#line 2508 "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.length()>0 && 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 303:
YY_RULE_SETUP
#line 2590 "scanner.l"
{ BEGIN(MemberSpecSkip); }
	YY_BREAK
case 304:
YY_RULE_SETUP
#line 2591 "scanner.l"
{
  					  bracketCount=0;
					  lastCurlyContext = MemberSpecSkip;
					  previous = current;
  					  BEGIN(SkipCurly);
  					}
	YY_BREAK
case 305:
YY_RULE_SETUP
#line 2597 "scanner.l"
{ BEGIN(MemberSpec); }
	YY_BREAK
case 306:
YY_RULE_SETUP
#line 2598 "scanner.l"
{ unput(';'); BEGIN(MemberSpec); }
	YY_BREAK
case 307:
YY_RULE_SETUP
#line 2599 "scanner.l"
{ current->program += yytext ;
					  lineCount() ;
					}
	YY_BREAK
case 308:
YY_RULE_SETUP
#line 2602 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 309:
YY_RULE_SETUP
#line 2604 "scanner.l"
{
  					  current->bodyLine = yyLineNr;
  					  lineCount();
  					  addType(current);
					  funcPtrType=yytext;
					  //current->type += yytext;
					  BEGIN( FuncPtr );
  					}
	YY_BREAK
case 310:
YY_RULE_SETUP
#line 2612 "scanner.l"
{
  					  current->name = yytext;
					  BEGIN( EndFuncPtr );
  					}
	YY_BREAK
case 311:
YY_RULE_SETUP
#line 2616 "scanner.l"
{
  					  //printf("Error: FuncPtr `%c' unexpected at line %d of %s\n",*yytext,yyLineNr,yyFileName);
  					}
	YY_BREAK
case 312:
*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 2619 "scanner.l"
{ // a variable with extra braces
 					  lineCount();
					  current->type+=funcPtrType.data()+1;
  					  BEGIN(FindMembers);
  					}
	YY_BREAK
case 313:
*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 2624 "scanner.l"
{ // a variable function
  					  lineCount();
					  current->type+=funcPtrType+")";
					  BEGIN(FindMembers);
  					}
	YY_BREAK
case 314:
*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 2629 "scanner.l"
{
  					  lineCount();
					  current->type+=funcPtrType.data();
					  current->args += ")";
					  BEGIN(FindMembers);
  					}
	YY_BREAK
case 315:
YY_RULE_SETUP
#line 2635 "scanner.l"
{ // a function returning a function
  					  current->args += *yytext ;
					  bracketCount=0;
					  BEGIN( FuncFunc );
  					}
	YY_BREAK
case 316:
YY_RULE_SETUP
#line 2640 "scanner.l"
{
  					  BEGIN(FindMembers);
  					}
	YY_BREAK
case 317:
YY_RULE_SETUP
#line 2643 "scanner.l"
{
  					  current->args += *yytext ;
  					  ++bracketCount;
					}
	YY_BREAK
case 318:
YY_RULE_SETUP
#line 2647 "scanner.l"
{
  					  current->args += *yytext ;
  					  if ( bracketCount )
					    --bracketCount;
					  else
					  {
					    BEGIN(FuncFuncEnd);
					  }
  					}
	YY_BREAK
case 319:
YY_RULE_SETUP
#line 2656 "scanner.l"
{
  					  lineCount();
					  current->type+=funcPtrType+")(";
					  BEGIN(FuncFuncType);
  					}
	YY_BREAK
case 320:
*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 2661 "scanner.l"
{
  					  lineCount();
					  current->type+=funcPtrType.data()+1;
  					  BEGIN(Function);
  					}
	YY_BREAK
case 321:
YY_RULE_SETUP
#line 2666 "scanner.l"
{
  					  current->args += *yytext;
  					}
	YY_BREAK
case 322:
YY_RULE_SETUP
#line 2669 "scanner.l"
{
  					  current->type += *yytext;
					  bracketCount++;
  					}
	YY_BREAK
case 323:
YY_RULE_SETUP
#line 2673 "scanner.l"
{
  					  current->type += *yytext;
  					  if (bracketCount)
					    --bracketCount;
					  else
					    BEGIN(Function);
					}
	YY_BREAK
case 324:
YY_RULE_SETUP
#line 2680 "scanner.l"
{ lineCount() ; current->type += ", " ; }
	YY_BREAK
case 325:
YY_RULE_SETUP
#line 2681 "scanner.l"
{ lineCount() ; current->type += ' ' ; }
	YY_BREAK
case 326:
YY_RULE_SETUP
#line 2682 "scanner.l"
{
  					  current->type += *yytext;
  					}
	YY_BREAK
case 327:
YY_RULE_SETUP
#line 2685 "scanner.l"
{ current->args = yytext;
  					  current->bodyLine = yyLineNr;
					  currentArgumentContext = FuncQual;
					  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 328:
YY_RULE_SETUP
#line 2702 "scanner.l"
{ *copyArgString+=yytext; }
	YY_BREAK
case 329:
YY_RULE_SETUP
#line 2703 "scanner.l"
{ *copyArgString+=yytext; }
	YY_BREAK
case 330:
YY_RULE_SETUP
#line 2704 "scanner.l"
{ *copyArgString+=yytext; }
	YY_BREAK
case 331:
YY_RULE_SETUP
#line 2705 "scanner.l"
{
  					  *copyArgString+=" ";
  					  lineCount();
  					}
	YY_BREAK
case 332:
YY_RULE_SETUP
#line 2709 "scanner.l"
{
  					  *copyArgString+=*yytext;
					  lastCopyArgStringContext = YY_START;
  					  BEGIN( CopyArgString );
  					}
	YY_BREAK
case 333:
YY_RULE_SETUP
#line 2714 "scanner.l"
{
  					  *copyArgString+=*yytext;
  					  argRoundCount=0; 
					  lastCopyArgContext = YY_START;
					  BEGIN( CopyArgRound ); 
  					}
	YY_BREAK
case 334:
YY_RULE_SETUP
#line 2720 "scanner.l"
{ 
  					  *copyArgString+=*yytext;
					  stringToArgumentList(*copyArgString,current->argList);
					  BEGIN( currentArgumentContext );
					}
	YY_BREAK
case 335:
YY_RULE_SETUP
#line 2725 "scanner.l"
{
					  *copyArgString+=*yytext;
					  argSharpCount=0;
					  BEGIN( CopyArgSharp );
					}
	YY_BREAK
case 336:
YY_RULE_SETUP
#line 2730 "scanner.l"
{
					  *copyArgString+=*yytext;
					  //printf("end template list %s\n",copyArgString->data());
					  stringToArgumentList(*copyArgString,currentArgumentList);
					  BEGIN( currentArgumentContext );
					}
	YY_BREAK
case 337:
YY_RULE_SETUP
#line 2736 "scanner.l"
{
  					  argRoundCount++;
					  *copyArgString+=*yytext;
  					}
	YY_BREAK
case 338:
YY_RULE_SETUP
#line 2740 "scanner.l"
{
					  *copyArgString+=*yytext;
					  if (argRoundCount>0) 
					    argRoundCount--;
					  else 
					    BEGIN( lastCopyArgContext );
  					}
	YY_BREAK
case 339:
YY_RULE_SETUP
#line 2747 "scanner.l"
{
  					  argSharpCount++;
					  *copyArgString+=*yytext;
  					}
	YY_BREAK
case 340:
YY_RULE_SETUP
#line 2751 "scanner.l"
{
  					  *copyArgString+=*yytext;
					  if (argRoundCount>0)
					    argRoundCount--;
					  else
					    BEGIN( ReadTempArgs );
  					}
	YY_BREAK
case 341:
YY_RULE_SETUP
#line 2758 "scanner.l"
{
  					  *copyArgString+=yytext;
  					}
	YY_BREAK
case 342:
YY_RULE_SETUP
#line 2761 "scanner.l"
{
  					  *copyArgString+=*yytext;
					  BEGIN( lastCopyArgStringContext );
  					}
	YY_BREAK
case 343:
YY_RULE_SETUP
#line 2765 "scanner.l"
{ *copyArgString+=yytext; }
	YY_BREAK
case 344:
YY_RULE_SETUP
#line 2766 "scanner.l"
{ *copyArgString+=yytext; }
	YY_BREAK
case 345:
YY_RULE_SETUP
#line 2767 "scanner.l"
{ *copyArgString+=yytext; }
	YY_BREAK
case 346:
YY_RULE_SETUP
#line 2768 "scanner.l"
{ yyLineNr++; *copyArgString+=*yytext; }
	YY_BREAK
case 347:
YY_RULE_SETUP
#line 2769 "scanner.l"
{ *copyArgString+=*yytext; }
	YY_BREAK
/*------------------------------------------------------------------------*/
case 348:
YY_RULE_SETUP
#line 2776 "scanner.l"
{ current->args += *yytext ;
					  ++bracketCount ;
					}
	YY_BREAK
case 349:
YY_RULE_SETUP
#line 2779 "scanner.l"
{ current->args += *yytext ; 
					  if ( bracketCount )
					    --bracketCount ;
				          else
					    BEGIN( FuncQual ) ;
					}
	YY_BREAK
/*
"#"				{ lastCPPContext = YY_START;
  					  BEGIN(SkipCPP);
					}
  */
case 350:
YY_RULE_SETUP
#line 2790 "scanner.l"
{ unput(*yytext); BEGIN( Function ); }
	YY_BREAK
case 351:
YY_RULE_SETUP
#line 2791 "scanner.l"
{ 
  					  lineCount() ; 
  					  current->args += " const "; 
					  current->argList->constSpecifier=TRUE;
					}
	YY_BREAK
case 352:
YY_RULE_SETUP
#line 2796 "scanner.l"
{ 
  					  lineCount() ; 
  					  current->args += " volatile "; 
					  current->argList->volatileSpecifier=TRUE;
					}
	YY_BREAK
case 353:
YY_RULE_SETUP
#line 2801 "scanner.l"
{ 
  					  lineCount() ; 
					  current->args += " = 0"; 
					  current->virt = Pure; 
					  current->argList->pureSpecifier=TRUE;
					}
	YY_BREAK
case 354:
YY_RULE_SETUP
#line 2807 "scanner.l"
{ 
  					  lineCount() ; 
					  current->args += ", " ; 
					}
	YY_BREAK
case 355:
YY_RULE_SETUP
#line 2811 "scanner.l"
{ 
  					  lineCount() ; 
					  current->args += ' ' ; 
					}
	YY_BREAK
case 356:
YY_RULE_SETUP
#line 2815 "scanner.l"
{ current->args += *yytext; }
	YY_BREAK
case 357:
YY_RULE_SETUP
#line 2816 "scanner.l"
{ 
  					  current->exception = " throw (" ;
					  lineCount() ;
					  BEGIN( ExcpRound ) ;
					}
	YY_BREAK
case 358:
YY_RULE_SETUP
#line 2821 "scanner.l"
{
  					  current->exception = " raises (" ;
					  lineCount() ;
					  BEGIN( ExcpRound ) ;
  					}
	YY_BREAK
case 359:
YY_RULE_SETUP
#line 2826 "scanner.l"
{ current->exception += *yytext ;
					  ++bracketCount ;
					}
	YY_BREAK
case 360:
YY_RULE_SETUP
#line 2829 "scanner.l"
{ current->exception += *yytext ; 
					  if ( bracketCount )
					    --bracketCount ;
				          else
					    BEGIN( FuncQual ) ;
					}
	YY_BREAK
case 361:
YY_RULE_SETUP
#line 2835 "scanner.l"
{
  					  current->exception += yytext;
  					}
	YY_BREAK
case 362:
YY_RULE_SETUP
#line 2838 "scanner.l"
{ current->type += current->name ;
					  current->name  = current->args ;
					  current->args  = yytext ;
					  BEGIN( FuncRound ) ;
					}
	YY_BREAK
case 363:
YY_RULE_SETUP
#line 2843 "scanner.l"
{ lastCPPContext = YY_START;
  					  BEGIN(SkipCPP);
					}	
	YY_BREAK
case 364:
YY_RULE_SETUP
#line 2846 "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);
					    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 365:
YY_RULE_SETUP
#line 2941 "scanner.l"
{ 
  				          //addToBody(yytext);
  				          lastCurlyContext = FindMembers;
  					  BEGIN( SkipCurly ) ; 
					}
	YY_BREAK
case 366:
YY_RULE_SETUP
#line 2946 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  ++bracketCount ; 
					}
	YY_BREAK
case 367:
YY_RULE_SETUP
#line 2950 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  if( bracketCount )
					    --bracketCount ;
					  else
					  {
					    previous->endBodyLine=yyLineNr;
					    BEGIN( lastCurlyContext ) ;
					  }
					}
	YY_BREAK
case 368:
YY_RULE_SETUP
#line 2960 "scanner.l"
{ 
  					  if ( bracketCount )
					  {
					    //addToBody(yytext);
					    --bracketCount ;
					  }
					  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 369:
YY_RULE_SETUP
#line 2984 "scanner.l"
{
  				          //addToBody("}");
					  current = tempEntry;
  					  BEGIN( lastCurlyContext );
  					}
	YY_BREAK
case 370:
YY_RULE_SETUP
#line 2989 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 371:
YY_RULE_SETUP
#line 2992 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 372:
YY_RULE_SETUP
#line 2995 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 373:
YY_RULE_SETUP
#line 2998 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  lastStringContext=SkipCurly;
  				          BEGIN( SkipString ); 
					}
	YY_BREAK
case 374:
YY_RULE_SETUP
#line 3003 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  BEGIN( SkipCurlyCpp ); 
					}
	YY_BREAK
case 375:
YY_RULE_SETUP
#line 3007 "scanner.l"
{
  					  yyLineNr++;
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 376:
YY_RULE_SETUP
#line 3011 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 377:
YY_RULE_SETUP
#line 3014 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  yyLineNr++; 
  					  lastCurlyContext = FindMembers;
  					  BEGIN( SkipCurly ); 
					}
	YY_BREAK
case 378:
YY_RULE_SETUP
#line 3020 "scanner.l"
{ 
  				          //addToBody(yytext);
  					  yyLineNr++; 
					}
	YY_BREAK
case 379:
YY_RULE_SETUP
#line 3024 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 380:
YY_RULE_SETUP
#line 3027 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 381:
YY_RULE_SETUP
#line 3030 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 382:
YY_RULE_SETUP
#line 3033 "scanner.l"
{
  				          //addToBody(yytext);
  					}
	YY_BREAK
case 383:
YY_RULE_SETUP
#line 3036 "scanner.l"
{
  				          //addToBodyCond(yytext);
  					}
	YY_BREAK
case 384:
YY_RULE_SETUP
#line 3039 "scanner.l"
{ 
  				          //addToBodyCond(yytext);
  					  BEGIN( lastStringContext ); 
					}
	YY_BREAK
case 385:
YY_RULE_SETUP
#line 3043 "scanner.l"
{
  				          //addToBodyCond(yytext);
  					}
	YY_BREAK
case 386:
YY_RULE_SETUP
#line 3046 "scanner.l"
{
  					  yyLineNr++;
  				          //addToBodyCond(yytext);
  					}
	YY_BREAK
case 387:
YY_RULE_SETUP
#line 3050 "scanner.l"
{
  				          //addToBodyCond(yytext);
  					}
	YY_BREAK
case 388:
YY_RULE_SETUP
#line 3053 "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 389:
*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 3061 "scanner.l"
{
  					  sharpCount = 0;
  					  current->name = yytext ;
					  lineCount();
					  BEGIN( ClassTemplSpec );
					}
	YY_BREAK
case 390:
YY_RULE_SETUP
#line 3067 "scanner.l"
{
					  current->name += yytext;
  					  if (--sharpCount<=0)
					  {
					    BEGIN( ClassVar );
					  }
					}
	YY_BREAK
case 391:
YY_RULE_SETUP
#line 3074 "scanner.l"
{
  					  current->name += yytext;
  					  sharpCount++;
  					}
	YY_BREAK
case 392:
YY_RULE_SETUP
#line 3078 "scanner.l"
{
  					  current->name += yytext;
					}
	YY_BREAK
case 393:
YY_RULE_SETUP
#line 3081 "scanner.l"
{ 
					  current->name = yytext ;
					  lineCount();
					  BEGIN( ClassVar );
					}
	YY_BREAK
/*
{ID}/{BN}*"{"			{ // we probably got some M$ extension
  					  current->name = yytext ;
  					}
{ID}/{BN}*":"			{ // we probably got some M$ extension
  					  current->name = yytext ;
  					}
  */
case 394:
YY_RULE_SETUP
#line 3094 "scanner.l"
{
					  if (isTypedef)
					  {
					    typedefDict.insert(yytext,new QCString(current->name));
					    current->type.prepend("typedef ");
					  }
  					  current->type += ' ' ;
					  current->type += current->name ;
					  current->name = yytext ;
					  //BEGIN( FindMembers );
  					}
	YY_BREAK
case 395:
YY_RULE_SETUP
#line 3105 "scanner.l"
{
                                          // probably a function anyway
                                          unput('(');
					  BEGIN( FindMembers );
					}
	YY_BREAK
case 396:
YY_RULE_SETUP
#line 3110 "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 397:
YY_RULE_SETUP
#line 3120 "scanner.l"
{
    					  unput(*yytext);
					  BEGIN( FindMembers );
    					}
	YY_BREAK
case 398:
YY_RULE_SETUP
#line 3124 "scanner.l"
{ current->fileName = yyFileName ;
					  current->startLine = yyLineNr ;
					  current->name = removeRedundantWhiteSpace(current->name);
					  if (current->name.length()==0 && !isTypedef) // anonymous compound
					    current->name.sprintf("@%d",anonCount++);
					  BEGIN( Curly ) ;
					}
	YY_BREAK
case 399:
YY_RULE_SETUP
#line 3131 "scanner.l"
{ baseVirt = Virtual; }
	YY_BREAK
case 400:
YY_RULE_SETUP
#line 3132 "scanner.l"
{ baseProt = Public; }
	YY_BREAK
case 401:
YY_RULE_SETUP
#line 3133 "scanner.l"
{ baseProt = Protected; }
	YY_BREAK
case 402:
YY_RULE_SETUP
#line 3134 "scanner.l"
{ baseProt = Private; }
	YY_BREAK
case 403:
YY_RULE_SETUP
#line 3135 "scanner.l"
{}
	YY_BREAK
case 404:
YY_RULE_SETUP
#line 3136 "scanner.l"
{ unput(*yytext); BEGIN(Bases); }
	YY_BREAK
case 405:
YY_RULE_SETUP
#line 3137 "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 406:
YY_RULE_SETUP
#line 3151 "scanner.l"
{ current->name += *yytext;
  					  sharpCount=1; 
					  lastSkipSharpContext = YY_START;
					  specName = ¤t->name;
					  BEGIN ( Specialization );
					}
	YY_BREAK
case 407:
YY_RULE_SETUP
#line 3157 "scanner.l"
{ baseName += *yytext;
  					  sharpCount=1; 
					  lastSkipSharpContext = YY_START;
					  specName = &baseName;
					  BEGIN ( Specialization );
					}
	YY_BREAK
case 408:
YY_RULE_SETUP
#line 3163 "scanner.l"
{ *specName += *yytext;
  					  sharpCount++;
  					}
	YY_BREAK
case 409:
YY_RULE_SETUP
#line 3166 "scanner.l"
{
  					  *specName += *yytext;
  					  if (--sharpCount<=0)
					    BEGIN(lastSkipSharpContext);
  					}
	YY_BREAK
case 410:
YY_RULE_SETUP
#line 3171 "scanner.l"
{ lineCount(); *specName +=' '; }
	YY_BREAK
case 411:
YY_RULE_SETUP
#line 3172 "scanner.l"
{
  					  *specName += *yytext;
  					}
	YY_BREAK
case 412:
YY_RULE_SETUP
#line 3175 "scanner.l"
{ ++sharpCount; }
	YY_BREAK
case 413:
YY_RULE_SETUP
#line 3176 "scanner.l"
{ if (--sharpCount<=0)
					    BEGIN ( lastSkipSharpContext );
					}
	YY_BREAK
case 414:
YY_RULE_SETUP
#line 3179 "scanner.l"
{ ++roundCount; }
	YY_BREAK
case 415:
YY_RULE_SETUP
#line 3180 "scanner.l"
{ if (--roundCount<=0)
					    BEGIN ( lastSkipRoundContext );
					}
	YY_BREAK
case 416:
YY_RULE_SETUP
#line 3183 "scanner.l"
{ current->args += ',' ; 
					  current->name = removeRedundantWhiteSpace(current->name);
  					  if (baseName.length()>0)
  					    current->extends->append(
					      new BaseInfo(baseName,baseProt,baseVirt)
					    );
					  baseProt=Private;
					  baseVirt=Normal;
					  baseName.resize(0);
					  BEGIN(BasesProt);
					}
	YY_BREAK
case 417:
YY_RULE_SETUP
#line 3194 "scanner.l"
{ current->fileName = yyFileName ;
					  current->startLine = yyLineNr ;
					  current->name = removeRedundantWhiteSpace(current->name);
  					  if (baseName.length()>0)
  					    current->extends->append(
					      new BaseInfo(baseName,baseProt,baseVirt)
					    );
					  BEGIN( Curly ) ;
					}
	YY_BREAK
case 418:
YY_RULE_SETUP
#line 3203 "scanner.l"
{ current->program += yytext ;
					  lineCount() ;
					}
	YY_BREAK
case 419:
YY_RULE_SETUP
#line 3206 "scanner.l"
{ current->program += yytext ; } 
	YY_BREAK
case 420:
YY_RULE_SETUP
#line 3207 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 421:
YY_RULE_SETUP
#line 3208 "scanner.l"
{ current->program += yytext ; }
	YY_BREAK
case 422:
YY_RULE_SETUP
#line 3209 "scanner.l"
{ current->program += yytext ;
					  BEGIN( Curly ) ;
					}
	YY_BREAK
case 423:
YY_RULE_SETUP
#line 3212 "scanner.l"
{ current->program += *yytext ; }
	YY_BREAK
case 424:
YY_RULE_SETUP
#line 3214 "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 425:
*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 3227 "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 426:
YY_RULE_SETUP
#line 3259 "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 427:
*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 3267 "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 428:
YY_RULE_SETUP
#line 3275 "scanner.l"

	YY_BREAK
case 429:
YY_RULE_SETUP
#line 3276 "scanner.l"
{
  					  current->type.resize(0);
  					  current->name.resize(0);
  					  current->args.resize(0);
					  current->argList->clear();
					  bracketCount=0;
					  BEGIN( SkipCurlyBlock );
					  	
  					}
	YY_BREAK
case 430:
YY_RULE_SETUP
#line 3285 "scanner.l"
{
  					  lastBriefContext=tmpDocType;
  					  BEGIN( ClassDocBrief ); 
					}
	YY_BREAK
case 431:
YY_RULE_SETUP
#line 3289 "scanner.l"
{
					  lineCount();
					  if (!current->brief.stripWhiteSpace().isEmpty())
					  {
					    BEGIN( tmpDocType );
					  }
 					} 
	YY_BREAK
case 432:
YY_RULE_SETUP
#line 3296 "scanner.l"
{
  					  unput(*yytext);
					  BEGIN(Doc);
  					}
	YY_BREAK
case 433:
*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 3300 "scanner.l"
{
  					  //printf("---> removing %s\n",yytext);
  					}
	YY_BREAK
/*
[^\n\@\*\.\\]+			{
  					  current->brief+=yytext;
  					}
  */
case 434:
YY_RULE_SETUP
#line 3308 "scanner.l"
{
  				          //printf("---> copy %c\n",*yytext);
  					  current->brief+=*yytext;
  					}
	YY_BREAK
case 435:
YY_RULE_SETUP
#line 3312 "scanner.l"
{
  					  current->brief+=' ';
					  lineCount();
  					}
	YY_BREAK
case 436:
YY_RULE_SETUP
#line 3316 "scanner.l"
{
  					  lineCount();
					  current->brief+=".";
					  BEGIN( tmpDocType );
					}
	YY_BREAK
case 437:
YY_RULE_SETUP
#line 3321 "scanner.l"
{ 
  					  current->doc+=yytext;
					  BEGIN( tmpDocType );
  					}
	YY_BREAK
case 438:
YY_RULE_SETUP
#line 3325 "scanner.l"
{
					  current->section = Entry::MEMBERDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
  					  BEGIN( ClassDocFunc ); 
					}
	YY_BREAK
case 439:
YY_RULE_SETUP
#line 3331 "scanner.l"
{
  					  nextDefContext = YY_START==LineDoc ? DefLineDoc : ClassDoc;
  					  current->section = Entry::DEFINEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
  					  BEGIN( ClassDocDefine );
  					}
	YY_BREAK
case 440:
YY_RULE_SETUP
#line 3338 "scanner.l"
{ 
  					  overloadContext = YY_START;
  					  BEGIN( ClassDocOverload ); 
					}
	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 3342 "scanner.l"
{
					  QCString orgDoc = current->doc;
					  current->doc = getOverloadDocs();
					  current->doc += "\n\n";
					  current->doc += orgDoc;
  					  BEGIN( overloadContext  );
  				        }
	YY_BREAK
case 442:
*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 3349 "scanner.l"
{
					  QCString orgDoc = current->doc;
					  current->doc = getOverloadDocs();
					  current->doc += "\n\n";
					  current->doc += orgDoc;
  					  BEGIN( overloadContext );
  					}
	YY_BREAK
case 443:
YY_RULE_SETUP
#line 3356 "scanner.l"
{ unput(*yytext);
  					  current->section = Entry::OVERLOADDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( ClassDocFunc ); 
					}
	YY_BREAK
case 444:
YY_RULE_SETUP
#line 3362 "scanner.l"
{
  					  current->section = Entry::ENUMDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( EnumDocArg1 );
  					}
	YY_BREAK
case 445:
YY_RULE_SETUP
#line 3368 "scanner.l"
{
  					  current->section = Entry::GROUPDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( GroupDocArg1 );
  					}
	YY_BREAK
case 446:
YY_RULE_SETUP
#line 3374 "scanner.l"
{
  					  current->section = Entry::NAMESPACEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
  					  BEGIN( NameSpaceDocArg1 );
  					}
	YY_BREAK
case 447:
YY_RULE_SETUP
#line 3380 "scanner.l"
{
  					  current->section = Entry::CLASSDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( ClassDocArg1 ); 
					}
	YY_BREAK
case 448:
YY_RULE_SETUP
#line 3386 "scanner.l"
{
  					  current->section = Entry::UNIONDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( ClassDocArg1 ); 
					}
	YY_BREAK
case 449:
YY_RULE_SETUP
#line 3392 "scanner.l"
{
  					  current->section = Entry::STRUCTDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( ClassDocArg1 ); 
					}
	YY_BREAK
case 450:
YY_RULE_SETUP
#line 3398 "scanner.l"
{
  					  current->section = Entry::INTERFACEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( ClassDocArg1 ); 
					}
	YY_BREAK
case 451:
YY_RULE_SETUP
#line 3404 "scanner.l"
{
  					  current->section = Entry::PAGEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( PageDocArg1 );
  					}
	YY_BREAK
case 452:
YY_RULE_SETUP
#line 3410 "scanner.l"
{
  					  current->section = Entry::MAINPAGEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( PageDocArg2 );
  					}
	YY_BREAK
case 453:
YY_RULE_SETUP
#line 3416 "scanner.l"
{
  					  current->section = Entry::FILEDOC_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
					  BEGIN( FileDocArg1 );
  					}
	YY_BREAK
case 454:
YY_RULE_SETUP
#line 3422 "scanner.l"
{
 					  current->section = Entry::EXAMPLE_SEC;
					  current->fileName = yyFileName;
					  current->startLine = yyLineNr;
 					  BEGIN( ExampleDocArg1 );
					}
	YY_BREAK
case 455:
YY_RULE_SETUP
#line 3428 "scanner.l"
{
				          current->name = stripQuotes(yytext);	
					  BEGIN( ExampleDoc );
					}
	YY_BREAK
case 456:
YY_RULE_SETUP
#line 3432 "scanner.l"
{ 
  					  lastDocRelContext = YY_START;
  					  BEGIN( ClassDocRelates ); 
					}
	YY_BREAK
case 457:
YY_RULE_SETUP
#line 3436 "scanner.l"
{ 
  					  current->relates = yytext;
					  BEGIN( lastDocRelContext );
					}
	YY_BREAK
case 458:
YY_RULE_SETUP
#line 3440 "scanner.l"
{
  					  current->name = yytext;
					  newDocState();
  					}
	YY_BREAK
case 459:
YY_RULE_SETUP
#line 3444 "scanner.l"
{
  					  warn("Warning: missing argument after "
					       "\\namespace at line %d of %s.\n",yyLineNr,yyFileName);
  					  yyLineNr++;
  					}
	YY_BREAK
case 460:
YY_RULE_SETUP
#line 3449 "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 461:
YY_RULE_SETUP
#line 3458 "scanner.l"
{
  					  warn("Warning: missing argument after "
					       "\\class at line %d of %s.\n",yyLineNr,yyFileName);
  					  yyLineNr++;
					  
  					}
	YY_BREAK
case 462:
YY_RULE_SETUP
#line 3464 "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 463:
YY_RULE_SETUP
#line 3470 "scanner.l"
{
  					  warn("Warning: missing argument after "
					       "\\defgroup at line %d of %s.\n",yyLineNr,yyFileName);
					  yyLineNr++;
					  BEGIN( Doc );
  					}
	YY_BREAK
case 464:
YY_RULE_SETUP
#line 3476 "scanner.l"
{
					  current->type = yytext;
					  current->type = current->type.stripWhiteSpace();
					  newDocState();
  					}
	YY_BREAK
case 465:
YY_RULE_SETUP
#line 3481 "scanner.l"
{
 					  newDocState();
  					}
	YY_BREAK
case 466:
YY_RULE_SETUP
#line 3484 "scanner.l"
{
  					  //printf("ClassDocArg2=%s\n",yytext);
					  current->includeFile = stripQuotes(yytext);
					  BEGIN( ClassDocArg3 );
					}
	YY_BREAK
case 467:
YY_RULE_SETUP
#line 3489 "scanner.l"
{ yyLineNr++; 
					  newDocState();
					}
	YY_BREAK
case 468:
YY_RULE_SETUP
#line 3492 "scanner.l"
{
  					  //printf("ClassDocArg3=%s\n",yytext);
 					  current->includeName = stripQuotes(yytext);
  					  newDocState();
					}
	YY_BREAK
case 469:
YY_RULE_SETUP
#line 3497 "scanner.l"
{ yyLineNr++; 
  					  newDocState();
					}
	YY_BREAK
case 470:
YY_RULE_SETUP
#line 3500 "scanner.l"
{
  					  current->name = stripQuotes(yytext);
					  newDocState();
  				        }
	YY_BREAK
case 471:
YY_RULE_SETUP
#line 3504 "scanner.l"
{
  					  current->name = yyFileName;
  					  yyLineNr++;
					  newDocState();
  					}
	YY_BREAK
case 472:
YY_RULE_SETUP
#line 3509 "scanner.l"
{
					  current->name = stripQuotes(yytext);
					  BEGIN( PageDocArg2 ); 
					}
	YY_BREAK
case 473:
YY_RULE_SETUP
#line 3513 "scanner.l"
{
  					  warn("Warning: missing argument after "
					       "\\page at line %d of %s.\n",yyLineNr,yyFileName);
  					  yyLineNr++;
					  BEGIN( Doc );
  					}
	YY_BREAK
case 474:
YY_RULE_SETUP
#line 3519 "scanner.l"
{
  				          yyLineNr++;
					  current->args = yytext;
					  BEGIN( PageDoc );
					}
	YY_BREAK
case 475:
YY_RULE_SETUP
#line 3524 "scanner.l"
{
  					  current->name = yytext;
					  if (current_root->section & Entry::SCOPE_MASK)
					  {
					    current->name.prepend(current_root->name+"::");
					  }
  					  newDocState();
  					}
	YY_BREAK
case 476:
YY_RULE_SETUP
#line 3532 "scanner.l"
{
  					  warn("Warning: missing argument after "
					       "\\enum at line %d of %s.\n",yyLineNr,yyFileName);
  					  yyLineNr++;
					  BEGIN( Doc );
  					}
	YY_BREAK
case 477:
YY_RULE_SETUP
#line 3538 "scanner.l"
{
  					  current->doc+=yytext;
  					}
	YY_BREAK
case 478:
YY_RULE_SETUP
#line 3541 "scanner.l"
{
  					  sectionType=SectionInfo::Section;
  					  BEGIN(SectionLabel);
  					}
	YY_BREAK
case 479:
YY_RULE_SETUP
#line 3545 "scanner.l"
{
  					  sectionType=SectionInfo::Subsection;
  					  BEGIN(SectionLabel);
  					}
	YY_BREAK
case 480:
YY_RULE_SETUP
#line 3549 "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 481:
*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 3566 "scanner.l"
{
  					  //printf("--> endmgroup found!\n");
  					  memberGroupId = -1;
					  current->mGrpId = -1;
  					}
	YY_BREAK
case 482:
*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 3571 "scanner.l"
{
					  QCString header = ((QCString)yytext).stripWhiteSpace();
  					  memberGroupDict.insert(memberGroupId,
					                         new MemberGroup(memberGroupId,header)
								);
  					  BEGIN(lastMemberGroupContext);
  					}
	YY_BREAK
case 483:
YY_RULE_SETUP
#line 3578 "scanner.l"
{
  					  lastAnchorContext = YY_START;
  					  sectionType=SectionInfo::Anchor;
					  BEGIN(AnchorLabel);
  					}
	YY_BREAK
case 484:
*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 3583 "scanner.l"
{
					  current->doc+="\\\\verbatim";
					}
	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 3586 "scanner.l"
{
					  lastVerbState=YY_START;
					  current->doc+="\\verbatim";
  					  BEGIN(SkipVerbatim);
  					}
	YY_BREAK
case 486:
YY_RULE_SETUP
#line 3591 "scanner.l"
{
  					  current->doc+=yytext;
  					}
	YY_BREAK
case 487:
*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 3594 "scanner.l"
{
  					  current->doc+="\\\\code";
  					}
	YY_BREAK
case 488:
*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 3597 "scanner.l"
{
  					  lastCodeState=YY_START;
					  current->doc+="\\code";
					  BEGIN(SkipCode);
					}
	YY_BREAK
case 489:
YY_RULE_SETUP
#line 3602 "scanner.l"
{
  					  lastCodeState=YY_START;
					  current->doc+="
";
					  BEGIN(SkipCode);
  					}
	YY_BREAK
case 490:
*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 3607 "scanner.l"
{
  					  current->doc+=yytext;
  					  BEGIN(lastVerbState);
  					}
	YY_BREAK
case 491:
YY_RULE_SETUP
#line 3611 "scanner.l"
{
  					  current->doc+=yytext;
  					}
	YY_BREAK
case 492:
YY_RULE_SETUP
#line 3614 "scanner.l"
{
  					  if (!removeSlashes)
					    current->doc+=yytext;
  					}
	YY_BREAK
/*
^"//"({B}*"*"+)?		{
  					  if (!removeSlashes)
					    current->doc+=yytext;
  					}
^{B}*"*"+			
  */
case 493:
YY_RULE_SETUP
#line 3625 "scanner.l"
{ 
  					  current->doc+=yytext; 
  					}
	YY_BREAK
case 494:
YY_RULE_SETUP
#line 3628 "scanner.l"
{
  					  yyLineNr++;
					  current->doc+=*yytext;
  					}
	YY_BREAK
case 495:
YY_RULE_SETUP
#line 3632 "scanner.l"
{
  					  current->doc+=*yytext;
  					}
	YY_BREAK
case 496:
YY_RULE_SETUP
#line 3635 "scanner.l"
{
  					  current->doc+="\\endcode";
					  BEGIN(lastCodeState);
  					}
	YY_BREAK
case 497:
YY_RULE_SETUP
#line 3639 "scanner.l"
{
  					  current->doc+="
"; BEGIN(lastCodeState); } YY_BREAK case 498: YY_RULE_SETUP #line 3643 "scanner.l" { if (!removeSlashes) current->doc+=yytext; } YY_BREAK case 499: YY_RULE_SETUP #line 3647 "scanner.l" YY_BREAK case 500: YY_RULE_SETUP #line 3648 "scanner.l" { current->doc+=yytext; } YY_BREAK case 501: YY_RULE_SETUP #line 3651 "scanner.l" { current->doc+=yytext; } YY_BREAK case 502: YY_RULE_SETUP #line 3654 "scanner.l" { yyLineNr++; current->doc+=*yytext; } YY_BREAK case 503: YY_RULE_SETUP #line 3658 "scanner.l" { current->doc+=*yytext; } YY_BREAK case 504: YY_RULE_SETUP #line 3661 "scanner.l" { sectionLabel=yytext; addSection(); current->doc += "\\anchor "+sectionLabel+"\n"; BEGIN(lastAnchorContext); } YY_BREAK case 505: YY_RULE_SETUP #line 3667 "scanner.l" { sectionLabel=yytext; sectionTitle.resize(0); BEGIN(SectionTitle); } YY_BREAK case 506: *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 3672 "scanner.l" { sectionTitle+=yytext; sectionTitle=sectionTitle.stripWhiteSpace(); addSection(); current->doc += "\\section "+sectionLabel+"\n"; BEGIN(PageDoc); } YY_BREAK case 507: YY_RULE_SETUP #line 3679 "scanner.l" { sectionTitle+=yytext; } YY_BREAK case 508: YY_RULE_SETUP #line 3682 "scanner.l" { yyLineNr++ ; current->doc+=yytext; } YY_BREAK case 509: YY_RULE_SETUP #line 3683 "scanner.l" { current->doc += yytext; } YY_BREAK case 510: YY_RULE_SETUP #line 3684 "scanner.l" { current->doc += yytext; } YY_BREAK case 511: YY_RULE_SETUP #line 3685 "scanner.l" YY_BREAK case 512: YY_RULE_SETUP #line 3686 "scanner.l" { current->doc += yytext; } YY_BREAK case 513: YY_RULE_SETUP #line 3687 "scanner.l" { current->doc += &yytext[1]; } YY_BREAK case 514: YY_RULE_SETUP #line 3690 "scanner.l" { lastFormulaContext = YY_START; formulaText="$"; BEGIN(ReadFormulaShort); } YY_BREAK case 515: YY_RULE_SETUP #line 3695 "scanner.l" { lastFormulaContext = YY_START; formulaText="\\["; BEGIN(ReadFormulaLong); } YY_BREAK case 516: YY_RULE_SETUP #line 3700 "scanner.l" { formulaText+="$"; if (lastFormulaContext==ClassDocBrief || lastFormulaContext==LineDoc || lastFormulaContext==JavaDoc ) current->brief += addFormula(); else current->doc += addFormula(); BEGIN(lastFormulaContext); } YY_BREAK case 517: YY_RULE_SETUP #line 3711 "scanner.l" { formulaText+="\\]"; if (lastFormulaContext==ClassDocBrief || lastFormulaContext==LineDoc || lastFormulaContext==JavaDoc ) current->brief += addFormula(); else current->doc += addFormula(); BEGIN(lastFormulaContext); } YY_BREAK case 518: YY_RULE_SETUP #line 3722 "scanner.l" { formulaText+=*yytext; } YY_BREAK case 519: YY_RULE_SETUP #line 3723 "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 520: YY_RULE_SETUP #line 3752 "scanner.l" { current->args.resize(0); current->argList->clear(); BEGIN( PageDocTitle); } YY_BREAK case 521: YY_RULE_SETUP #line 3757 "scanner.l" { yyLineNr++; current->args+=" "; } YY_BREAK case 522: YY_RULE_SETUP #line 3758 "scanner.l" { current->args+=yytext; } YY_BREAK case 523: YY_RULE_SETUP #line 3759 "scanner.l" { BEGIN( PageDoc ); } YY_BREAK case 524: YY_RULE_SETUP #line 3760 "scanner.l" { lastGroupContext = YY_START; lineCount(); BEGIN( GroupName ); } YY_BREAK case 525: YY_RULE_SETUP #line 3765 "scanner.l" { current->groups->append( new QCString(yytext) ); } YY_BREAK case 526: YY_RULE_SETUP #line 3770 "scanner.l" { yyLineNr++; BEGIN( lastGroupContext ); } YY_BREAK case 527: YY_RULE_SETUP #line 3773 "scanner.l" { lastBriefContext=YY_START; BEGIN( ClassDocBrief ); } YY_BREAK case 528: YY_RULE_SETUP #line 3777 "scanner.l" { BEGIN( DocBaseClass ); } YY_BREAK case 529: YY_RULE_SETUP #line 3778 "scanner.l" { //printf("Adding base class %s\n",yytext); current->extends->append( new BaseInfo(yytext,Public,Normal) ); } YY_BREAK case 530: YY_RULE_SETUP #line 3784 "scanner.l" { yyLineNr++; BEGIN( ClassDoc ); } YY_BREAK case 531: YY_RULE_SETUP #line 3785 "scanner.l" { current->brief=current->brief.stripWhiteSpace(); yyLineNr++; BEGIN( lastBriefContext ); } YY_BREAK case 532: YY_RULE_SETUP #line 3790 "scanner.l" { yyLineNr++ ; current->brief += " "; } YY_BREAK case 533: YY_RULE_SETUP #line 3791 "scanner.l" YY_BREAK case 534: YY_RULE_SETUP #line 3792 "scanner.l" { current->brief=current->brief.stripWhiteSpace(); BEGIN( lastBriefContext ); } YY_BREAK case 535: YY_RULE_SETUP #line 3796 "scanner.l" { BEGIN( lastBriefContext ); } YY_BREAK case 536: YY_RULE_SETUP #line 3799 "scanner.l" { lastBriefContext=YY_START; BEGIN( ClassDocBrief ); } YY_BREAK case 537: YY_RULE_SETUP #line 3803 "scanner.l" { current->brief += *yytext; } 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 3804 "scanner.l" { current->name = yytext; BEGIN( ClassDefineArgs ); } YY_BREAK case 539: YY_RULE_SETUP #line 3808 "scanner.l" { current->name = yytext; if (nextDefContext==ClassDoc) newDocState(); else BEGIN( nextDefContext ); } YY_BREAK case 540: YY_RULE_SETUP #line 3815 "scanner.l" { current->args+=")"; if (nextDefContext==ClassDoc) newDocState(); else BEGIN( nextDefContext ); } YY_BREAK case 541: YY_RULE_SETUP #line 3822 "scanner.l" { current->args+= yytext; } YY_BREAK case 542: YY_RULE_SETUP #line 3825 "scanner.l" { yyLineNr++; current->name = current->name.stripWhiteSpace(); if (current->section == Entry::MEMBERDOC_SEC && current->args.length()==0) current->section = Entry::VARIABLEDOC_SEC; newDocState(); } YY_BREAK case 543: YY_RULE_SETUP #line 3832 "scanner.l" { current->name+=yytext; } YY_BREAK case 544: YY_RULE_SETUP #line 3835 "scanner.l" { current->args+=*yytext; currentArgumentContext = ClassDocFuncQual; copyArgString=¤t->args; BEGIN( ReadFuncArgType ) ; } YY_BREAK case 545: YY_RULE_SETUP #line 3841 "scanner.l" { current->name+="(*"; BEGIN( ClassDocFuncPtr ); } YY_BREAK case 546: YY_RULE_SETUP #line 3845 "scanner.l" { current->name+=yytext; } YY_BREAK case 547: YY_RULE_SETUP #line 3848 "scanner.l" { current->name+=')'; BEGIN( ClassDocFunc ); } YY_BREAK case 548: YY_RULE_SETUP #line 3852 "scanner.l" { BEGIN( ClassDocFuncSkipLine); } YY_BREAK case 549: YY_RULE_SETUP #line 3855 "scanner.l" { current->args += " const "; current->argList->constSpecifier=TRUE; } YY_BREAK case 550: YY_RULE_SETUP #line 3859 "scanner.l" { current->args += " volatile "; current->argList->volatileSpecifier=TRUE; } YY_BREAK case 551: YY_RULE_SETUP #line 3863 "scanner.l" { current->args += " = 0"; current->virt = Pure; current->argList->pureSpecifier=TRUE; } YY_BREAK case 552: YY_RULE_SETUP #line 3868 "scanner.l" { current->exception = "throw("; BEGIN(ClassDocFuncExc); } YY_BREAK case 553: YY_RULE_SETUP #line 3872 "scanner.l" { current->exception += ')'; BEGIN(ClassDocFuncQual); } YY_BREAK case 554: YY_RULE_SETUP #line 3876 "scanner.l" { current->exception += *yytext; } YY_BREAK case 555: YY_RULE_SETUP #line 3879 "scanner.l" { current->name += *yytext; } YY_BREAK case 556: YY_RULE_SETUP #line 3882 "scanner.l" { yyLineNr++; current->name = current->name.stripWhiteSpace(); newDocState(); } YY_BREAK case 557: YY_RULE_SETUP #line 3887 "scanner.l" { current->doc += yytext; } YY_BREAK case 558: YY_RULE_SETUP #line 3888 "scanner.l" { current->doc += yytext; } YY_BREAK case 559: YY_RULE_SETUP #line 3889 "scanner.l" { current->doc += *yytext; } YY_BREAK case 560: YY_RULE_SETUP #line 3890 "scanner.l" { current->brief += *yytext; } YY_BREAK case 561: YY_RULE_SETUP #line 3891 "scanner.l" { yyLineNr++; current->doc += *yytext; } YY_BREAK case 562: YY_RULE_SETUP #line 3892 "scanner.l" { lineCount(); } YY_BREAK case 563: YY_RULE_SETUP #line 3893 "scanner.l" { yyLineNr++; BEGIN( lastDocContext ); } YY_BREAK case 564: YY_RULE_SETUP #line 3897 "scanner.l" { yyLineNr++; unput('/');unput('*'); BEGIN( ClassDoc ); } YY_BREAK case 565: YY_RULE_SETUP #line 3903 "scanner.l" { current->brief+=yytext; } YY_BREAK case 566: YY_RULE_SETUP #line 3904 "scanner.l" { yyLineNr++; if (afterDocTerminator!=0) unput(afterDocTerminator); BEGIN(lastAfterDocContext); } YY_BREAK case 567: YY_RULE_SETUP #line 3910 "scanner.l" { current->brief+=yytext; } YY_BREAK case 568: YY_RULE_SETUP #line 3911 "scanner.l" { current->brief+=yytext; } YY_BREAK case 569: *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 3912 "scanner.l" YY_BREAK case 570: YY_RULE_SETUP #line 3913 "scanner.l" { current->brief+=yytext; yyLineNr++; } YY_BREAK case 571: YY_RULE_SETUP #line 3914 "scanner.l" { current->brief+=*yytext; } YY_BREAK case 572: YY_RULE_SETUP #line 3915 "scanner.l" { yyLineNr++; if (!current->brief.stripWhiteSpace().isEmpty()) BEGIN(AfterDoc); } YY_BREAK case 573: YY_RULE_SETUP #line 3919 "scanner.l" { if (afterDocTerminator!=0) unput(afterDocTerminator); BEGIN(lastAfterDocContext); } YY_BREAK case 574: *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 3924 "scanner.l" { BEGIN(AfterDoc); } YY_BREAK case 575: YY_RULE_SETUP #line 3925 "scanner.l" { current->brief+="\\internal"; } YY_BREAK case 576: YY_RULE_SETUP #line 3928 "scanner.l" { current->doc+="\\internal"; } YY_BREAK case 577: YY_RULE_SETUP #line 3931 "scanner.l" { BEGIN(AfterDocBrief); } YY_BREAK case 578: YY_RULE_SETUP #line 3932 "scanner.l" { current->doc+=yytext; } YY_BREAK case 579: *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 3933 "scanner.l" YY_BREAK case 580: YY_RULE_SETUP #line 3934 "scanner.l" { current->doc+=yytext; yyLineNr++; } YY_BREAK case 581: YY_RULE_SETUP #line 3935 "scanner.l" { current->doc+=*yytext; } YY_BREAK case 582: YY_RULE_SETUP #line 3936 "scanner.l" { if (afterDocTerminator!=0) unput(afterDocTerminator); BEGIN(lastAfterDocContext); } YY_BREAK case 583: YY_RULE_SETUP #line 3941 "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 584: YY_RULE_SETUP #line 3948 "scanner.l" { checkDocs(); current->doc += "\n\n"; //printf("End of docs at line %d\n",yyLineNr); BEGIN( lastDocContext ); } YY_BREAK case 585: YY_RULE_SETUP #line 3954 "scanner.l" { unput('/');unput('*'); BEGIN( tmpDocType ); } YY_BREAK case 586: *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 3958 "scanner.l" YY_BREAK case 587: YY_RULE_SETUP #line 3959 "scanner.l" { current->doc += yytext; } YY_BREAK case 588: YY_RULE_SETUP #line 3961 "scanner.l" { yyLineNr++ ; BEGIN( lastCContext ) ; } YY_BREAK case 589: YY_RULE_SETUP #line 3964 "scanner.l" YY_BREAK case 590: YY_RULE_SETUP #line 3965 "scanner.l" { yyLineNr++ ; } YY_BREAK case 591: YY_RULE_SETUP #line 3966 "scanner.l" YY_BREAK case 592: YY_RULE_SETUP #line 3967 "scanner.l" YY_BREAK case 593: YY_RULE_SETUP #line 3968 "scanner.l" { lastCContext = YY_START ; BEGIN( SkipComment ) ; } YY_BREAK case 594: YY_RULE_SETUP #line 3971 "scanner.l" { BEGIN( lastCContext ) ; } YY_BREAK case 595: YY_RULE_SETUP #line 3972 "scanner.l" { lastCContext = YY_START ; BEGIN( SkipCxxComment ) ; } YY_BREAK case 596: YY_RULE_SETUP #line 3976 "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(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(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): 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 >= 3919 ) 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 >= 3919 ) 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 == 3918); 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 3976 "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.length()>0) { //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.length()>0 && 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; 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; 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 (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; return; } //---------------------------------------------------------------------------- void parseDoc(OutputList &ol,const char *clName, const char *memName,const QCString &docString) { initParser(); initParseCodeContext(); exampleDoc=FALSE; // do not cross reference with member docs className=clName; memberName=memName; if (memName) { refName=className+"::"+memberName; } else { refName=className; } parseDocument(ol,docString); } //---------------------------------------------------------------------------- void parseText(OutputList &ol,const QCString &txtString) { 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; return; } //---------------------------------------------------------------------------- void parseExample(OutputList &ol,const QCString &docString, const char *fileName) { initParser(); initParseCodeContext(); exampleDoc=TRUE; // cross reference with member docs exampleName=fileName; parseDocument(ol,docString); } //---------------------------------------------------------------------------- extern "C" { // some bogus code to keep the compiler happy void scannerYYdummy() { yy_flex_realloc(0,0); } }