/* A lexical scanner generated by flex*/ /* Scanner skeleton version: * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $ */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #include #include /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */ #ifdef c_plusplus #ifndef __cplusplus #define __cplusplus #endif #endif #ifdef __cplusplus #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 ) /* Some routines like yy_flex_realloc() are emitted as static but are not called by all lexers. This generates warnings in some compilers, notably GCC. Arrange to suppress these. */ #ifdef __GNUC__ #define YY_MAY_BE_UNUSED __attribute__((unused)) #else #define YY_MAY_BE_UNUSED #endif /* 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 )) YY_MAY_BE_UNUSED; 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) typedef char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef yyconst struct yy_trans_info *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 25 #define YY_END_OF_BUFFER 26 struct yy_trans_info { short yy_verify; short yy_nxt; }; static yyconst struct yy_trans_info yy_transition[8571] = { { 0, 0 }, { 0,8443 }, { 0, 0 }, { 0,8441 }, { 1,1300 }, { 2,1300 }, { 3,1300 }, { 4,1300 }, { 5,1300 }, { 6,1300 }, { 7,1300 }, { 8,1300 }, { 9,1302 }, { 10,1304 }, { 11,1300 }, { 12,1306 }, { 13,1300 }, { 14,1300 }, { 15,1300 }, { 16,1300 }, { 17,1300 }, { 18,1300 }, { 19,1300 }, { 20,1300 }, { 21,1300 }, { 22,1300 }, { 23,1300 }, { 24,1300 }, { 25,1300 }, { 26,1300 }, { 27,1300 }, { 28,1300 }, { 29,1300 }, { 30,1300 }, { 31,1300 }, { 32,1302 }, { 33,1340 }, { 34,1470 }, { 35,1300 }, { 36,1300 }, { 37,1300 }, { 38,1300 }, { 39,1600 }, { 40,1730 }, { 41,1300 }, { 42,1300 }, { 43,1300 }, { 44,1300 }, { 45,1742 }, { 46,1752 }, { 47,1300 }, { 48,1774 }, { 49,1774 }, { 50,1774 }, { 51,1774 }, { 52,1774 }, { 53,1774 }, { 54,1774 }, { 55,1774 }, { 56,1774 }, { 57,1774 }, { 58,1300 }, { 59,1855 }, { 60,1300 }, { 61,1300 }, { 62,1300 }, { 63,1300 }, { 64,1300 }, { 65,1985 }, { 66,1985 }, { 67,2077 }, { 68,2077 }, { 69,1985 }, { 70,2077 }, { 71,1985 }, { 72,1985 }, { 73,1985 }, { 74,1985 }, { 75,1985 }, { 76,1985 }, { 77,1985 }, { 78,1985 }, { 79,1985 }, { 80,1985 }, { 81,1985 }, { 82,1985 }, { 83,1985 }, { 84,1985 }, { 85,1985 }, { 86,1985 }, { 87,1985 }, { 88,1985 }, { 89,1985 }, { 90,1985 }, { 91,1300 }, { 92,2201 }, { 93,1300 }, { 94,1300 }, { 95,1985 }, { 96,1300 }, { 97,1985 }, { 98,1985 }, { 99,2077 }, { 100,2077 }, { 101,1985 }, { 102,2077 }, { 103,1985 }, { 104,1985 }, { 105,1985 }, { 106,1985 }, { 107,1985 }, { 108,1985 }, { 109,1985 }, { 110,1985 }, { 111,1985 }, { 112,1985 }, { 113,1985 }, { 114,1985 }, { 115,1985 }, { 116,1985 }, { 117,1985 }, { 118,1985 }, { 119,1985 }, { 120,1985 }, { 121,1985 }, { 122,1985 }, { 123,1300 }, { 124,1300 }, { 125,1300 }, { 126,1300 }, { 127,1300 }, { 128,1300 }, { 0, 0 }, { 0,8311 }, { 1,1170 }, { 2,1170 }, { 3,1170 }, { 4,1170 }, { 5,1170 }, { 6,1170 }, { 7,1170 }, { 8,1170 }, { 9,1172 }, { 10,1174 }, { 11,1170 }, { 12,1176 }, { 13,1170 }, { 14,1170 }, { 15,1170 }, { 16,1170 }, { 17,1170 }, { 18,1170 }, { 19,1170 }, { 20,1170 }, { 21,1170 }, { 22,1170 }, { 23,1170 }, { 24,1170 }, { 25,1170 }, { 26,1170 }, { 27,1170 }, { 28,1170 }, { 29,1170 }, { 30,1170 }, { 31,1170 }, { 32,1172 }, { 33,1210 }, { 34,1340 }, { 35,1170 }, { 36,1170 }, { 37,1170 }, { 38,1170 }, { 39,1470 }, { 40,1600 }, { 41,1170 }, { 42,1170 }, { 43,1170 }, { 44,1170 }, { 45,1612 }, { 46,1622 }, { 47,1170 }, { 48,1644 }, { 49,1644 }, { 50,1644 }, { 51,1644 }, { 52,1644 }, { 53,1644 }, { 54,1644 }, { 55,1644 }, { 56,1644 }, { 57,1644 }, { 58,1170 }, { 59,1725 }, { 60,1170 }, { 61,1170 }, { 62,1170 }, { 63,1170 }, { 64,1170 }, { 65,1855 }, { 66,1855 }, { 67,1947 }, { 68,1947 }, { 69,1855 }, { 70,1947 }, { 71,1855 }, { 72,1855 }, { 73,1855 }, { 74,1855 }, { 75,1855 }, { 76,1855 }, { 77,1855 }, { 78,1855 }, { 79,1855 }, { 80,1855 }, { 81,1855 }, { 82,1855 }, { 83,1855 }, { 84,1855 }, { 85,1855 }, { 86,1855 }, { 87,1855 }, { 88,1855 }, { 89,1855 }, { 90,1855 }, { 91,1170 }, { 92,2071 }, { 93,1170 }, { 94,1170 }, { 95,1855 }, { 96,1170 }, { 97,1855 }, { 98,1855 }, { 99,1947 }, { 100,1947 }, { 101,1855 }, { 102,1947 }, { 103,1855 }, { 104,1855 }, { 105,1855 }, { 106,1855 }, { 107,1855 }, { 108,1855 }, { 109,1855 }, { 110,1855 }, { 111,1855 }, { 112,1855 }, { 113,1855 }, { 114,1855 }, { 115,1855 }, { 116,1855 }, { 117,1855 }, { 118,1855 }, { 119,1855 }, { 120,1855 }, { 121,1855 }, { 122,1855 }, { 123,1170 }, { 124,1170 }, { 125,1170 }, { 126,1170 }, { 127,1170 }, { 128,1170 }, { 0, 0 }, { 0,8181 }, { 1,1040 }, { 2,1040 }, { 3,1040 }, { 4,1040 }, { 5,1040 }, { 6,1040 }, { 7,1040 }, { 8,1040 }, { 9,1042 }, { 10,1044 }, { 11,1040 }, { 12,1046 }, { 13,1040 }, { 14,1040 }, { 15,1040 }, { 16,1040 }, { 17,1040 }, { 18,1040 }, { 19,1040 }, { 20,1040 }, { 21,1040 }, { 22,1040 }, { 23,1040 }, { 24,1040 }, { 25,1040 }, { 26,1040 }, { 27,1040 }, { 28,1040 }, { 29,1040 }, { 30,1040 }, { 31,1040 }, { 32,1042 }, { 33,1080 }, { 34,1210 }, { 35,1040 }, { 36,1040 }, { 37,1040 }, { 38,1040 }, { 39,1340 }, { 40,1470 }, { 41,1040 }, { 42,1475 }, { 43,1040 }, { 44,1040 }, { 45,1482 }, { 46,1492 }, { 47,1040 }, { 48,1514 }, { 49,1514 }, { 50,1514 }, { 51,1514 }, { 52,1514 }, { 53,1514 }, { 54,1514 }, { 55,1514 }, { 56,1514 }, { 57,1514 }, { 58,1040 }, { 59,1595 }, { 60,1040 }, { 61,1040 }, { 62,1040 }, { 63,1040 }, { 64,1040 }, { 65,1725 }, { 66,1725 }, { 67,1817 }, { 68,1817 }, { 69,1725 }, { 70,1817 }, { 71,1725 }, { 72,1725 }, { 73,1725 }, { 74,1725 }, { 75,1725 }, { 76,1725 }, { 77,1725 }, { 78,1725 }, { 79,1725 }, { 80,1725 }, { 81,1725 }, { 82,1725 }, { 83,1725 }, { 84,1725 }, { 85,1725 }, { 86,1725 }, { 87,1725 }, { 88,1725 }, { 89,1725 }, { 90,1725 }, { 91,1040 }, { 92,1941 }, { 93,1040 }, { 94,1040 }, { 95,1725 }, { 96,1040 }, { 97,1725 }, { 98,1725 }, { 99,1817 }, { 100,1817 }, { 101,1725 }, { 102,1817 }, { 103,1725 }, { 104,1725 }, { 105,1725 }, { 106,1725 }, { 107,1725 }, { 108,1725 }, { 109,1725 }, { 110,1725 }, { 111,1725 }, { 112,1725 }, { 113,1725 }, { 114,1725 }, { 115,1725 }, { 116,1725 }, { 117,1725 }, { 118,1725 }, { 119,1725 }, { 120,1725 }, { 121,1725 }, { 122,1725 }, { 123,1040 }, { 124,1040 }, { 125,1040 }, { 126,1040 }, { 127,1040 }, { 128,1040 }, { 0, 0 }, { 0,8051 }, { 1, 910 }, { 2, 910 }, { 3, 910 }, { 4, 910 }, { 5, 910 }, { 6, 910 }, { 7, 910 }, { 8, 910 }, { 9,1941 }, { 10, 914 }, { 11, 910 }, { 12, 916 }, { 13, 910 }, { 14, 910 }, { 15, 910 }, { 16, 910 }, { 17, 910 }, { 18, 910 }, { 19, 910 }, { 20, 910 }, { 21, 910 }, { 22, 910 }, { 23, 910 }, { 24, 910 }, { 25, 910 }, { 26, 910 }, { 27, 910 }, { 28, 910 }, { 29, 910 }, { 30, 910 }, { 31, 910 }, { 32,1941 }, { 33, 950 }, { 34,1080 }, { 35, 910 }, { 36, 910 }, { 37, 910 }, { 38, 910 }, { 39,1210 }, { 40,1340 }, { 41, 910 }, { 42,1345 }, { 43, 910 }, { 44, 910 }, { 45,1352 }, { 46,1362 }, { 47, 910 }, { 48,1384 }, { 49,1384 }, { 50,1384 }, { 51,1384 }, { 52,1384 }, { 53,1384 }, { 54,1384 }, { 55,1384 }, { 56,1384 }, { 57,1384 }, { 58, 910 }, { 59,1465 }, { 60, 910 }, { 61, 910 }, { 62, 910 }, { 63, 910 }, { 64, 910 }, { 65,2065 }, { 66,2065 }, { 67,2189 }, { 68,2189 }, { 69,2065 }, { 70,2189 }, { 71,2065 }, { 72,2065 }, { 73,2065 }, { 74,2065 }, { 75,2065 }, { 76,2065 }, { 77,2065 }, { 78,2065 }, { 79,2065 }, { 80,2065 }, { 81,2065 }, { 82,2065 }, { 83,2065 }, { 84,2065 }, { 85,2065 }, { 86,2065 }, { 87,2065 }, { 88,2065 }, { 89,2065 }, { 90,2065 }, { 91, 910 }, { 92,1811 }, { 93, 910 }, { 94, 910 }, { 95,1595 }, { 96, 910 }, { 97,2065 }, { 98,2065 }, { 99,2189 }, { 100,2189 }, { 101,2065 }, { 102,2189 }, { 103,2065 }, { 104,2065 }, { 105,2065 }, { 106,2065 }, { 107,2065 }, { 108,2065 }, { 109,2065 }, { 110,2065 }, { 111,2065 }, { 112,2065 }, { 113,2065 }, { 114,2065 }, { 115,2065 }, { 116,2065 }, { 117,2065 }, { 118,2065 }, { 119,2065 }, { 120,2065 }, { 121,2065 }, { 122,2065 }, { 123, 910 }, { 124, 910 }, { 125, 910 }, { 126, 910 }, { 127, 910 }, { 128, 910 }, { 0, 0 }, { 0,7921 }, { 1, 780 }, { 2, 780 }, { 3, 780 }, { 4, 780 }, { 5, 780 }, { 6, 780 }, { 7, 780 }, { 8, 780 }, { 9, 782 }, { 10, 784 }, { 11, 780 }, { 12, 786 }, { 13, 780 }, { 14, 780 }, { 15, 780 }, { 16, 780 }, { 17, 780 }, { 18, 780 }, { 19, 780 }, { 20, 780 }, { 21, 780 }, { 22, 780 }, { 23, 780 }, { 24, 780 }, { 25, 780 }, { 26, 780 }, { 27, 780 }, { 28, 780 }, { 29, 780 }, { 30, 780 }, { 31, 780 }, { 32, 782 }, { 33, 820 }, { 34, 950 }, { 35, 780 }, { 36, 780 }, { 37, 780 }, { 38, 780 }, { 39,1080 }, { 40,1210 }, { 41, 780 }, { 42, 780 }, { 43, 780 }, { 44, 780 }, { 45,1222 }, { 46,1232 }, { 47, 780 }, { 48,1254 }, { 49,1254 }, { 50,1254 }, { 51,1254 }, { 52,1254 }, { 53,1254 }, { 54,1254 }, { 55,1254 }, { 56,1254 }, { 57,1254 }, { 58, 780 }, { 59,1335 }, { 60, 780 }, { 61, 780 }, { 62, 780 }, { 63, 780 }, { 64, 780 }, { 65,1465 }, { 66,1465 }, { 67,1557 }, { 68,1557 }, { 69,2151 }, { 70,1557 }, { 71,1465 }, { 72,1465 }, { 73,1465 }, { 74,1465 }, { 75,1465 }, { 76,1465 }, { 77,1465 }, { 78,1465 }, { 79,1465 }, { 80,2243 }, { 81,1465 }, { 82,1465 }, { 83,1465 }, { 84,1465 }, { 85,1465 }, { 86,1465 }, { 87,1465 }, { 88,1465 }, { 89,1465 }, { 90,1465 }, { 91, 780 }, { 92,1681 }, { 93, 780 }, { 94, 780 }, { 95,1465 }, { 96, 780 }, { 97,1465 }, { 98,1465 }, { 99,1557 }, { 100,1557 }, { 101,2151 }, { 102,1557 }, { 103,1465 }, { 104,1465 }, { 105,1465 }, { 106,1465 }, { 107,1465 }, { 108,1465 }, { 109,1465 }, { 110,1465 }, { 111,1465 }, { 112,2243 }, { 113,1465 }, { 114,1465 }, { 115,1465 }, { 116,1465 }, { 117,1465 }, { 118,1465 }, { 119,1465 }, { 120,1465 }, { 121,1465 }, { 122,1465 }, { 123, 780 }, { 124, 780 }, { 125, 780 }, { 126, 780 }, { 127, 780 }, { 128, 780 }, { 0, 0 }, { 0,7791 }, { 1, 650 }, { 2, 650 }, { 3, 650 }, { 4, 650 }, { 5, 650 }, { 6, 650 }, { 7, 650 }, { 8, 650 }, { 9,2237 }, { 10, 654 }, { 11, 650 }, { 12, 656 }, { 13, 650 }, { 14, 650 }, { 15, 650 }, { 16, 650 }, { 17, 650 }, { 18, 650 }, { 19, 650 }, { 20, 650 }, { 21, 650 }, { 22, 650 }, { 23, 650 }, { 24, 650 }, { 25, 650 }, { 26, 650 }, { 27, 650 }, { 28, 650 }, { 29, 650 }, { 30, 650 }, { 31, 650 }, { 32,2237 }, { 33, 690 }, { 34, 820 }, { 35, 650 }, { 36, 650 }, { 37, 650 }, { 38, 650 }, { 39, 950 }, { 40,1080 }, { 41, 650 }, { 42, 650 }, { 43, 650 }, { 44, 650 }, { 45,1092 }, { 46,1102 }, { 47, 650 }, { 48,1124 }, { 49,1124 }, { 50,1124 }, { 51,1124 }, { 52,1124 }, { 53,1124 }, { 54,1124 }, { 55,1124 }, { 56,1124 }, { 57,1124 }, { 58, 650 }, { 59,1205 }, { 60, 650 }, { 61, 650 }, { 62, 650 }, { 63, 650 }, { 64, 650 }, { 65,2361 }, { 66,2361 }, { 67,2485 }, { 68,2485 }, { 69,2609 }, { 70,2485 }, { 71,2361 }, { 72,2361 }, { 73,2361 }, { 74,2361 }, { 75,2361 }, { 76,2361 }, { 77,2361 }, { 78,2361 }, { 79,2361 }, { 80,2733 }, { 81,2361 }, { 82,2361 }, { 83,2361 }, { 84,2361 }, { 85,2361 }, { 86,2361 }, { 87,2361 }, { 88,2361 }, { 89,2361 }, { 90,2361 }, { 91, 650 }, { 92,1551 }, { 93, 650 }, { 94, 650 }, { 95,1335 }, { 96, 650 }, { 97,2361 }, { 98,2361 }, { 99,2485 }, { 100,2485 }, { 101,2609 }, { 102,2485 }, { 103,2361 }, { 104,2361 }, { 105,2361 }, { 106,2361 }, { 107,2361 }, { 108,2361 }, { 109,2361 }, { 110,2361 }, { 111,2361 }, { 112,2733 }, { 113,2361 }, { 114,2361 }, { 115,2361 }, { 116,2361 }, { 117,2361 }, { 118,2361 }, { 119,2361 }, { 120,2361 }, { 121,2361 }, { 122,2361 }, { 123, 650 }, { 124, 650 }, { 125, 650 }, { 126, 650 }, { 127, 650 }, { 128, 650 }, { 0, 0 }, { 0,7661 }, { 1, 520 }, { 2, 520 }, { 3, 520 }, { 4, 520 }, { 5, 520 }, { 6, 520 }, { 7, 520 }, { 8, 520 }, { 9, 522 }, { 10, 524 }, { 11, 520 }, { 12, 526 }, { 13, 520 }, { 14, 520 }, { 15, 520 }, { 16, 520 }, { 17, 520 }, { 18, 520 }, { 19, 520 }, { 20, 520 }, { 21, 520 }, { 22, 520 }, { 23, 520 }, { 24, 520 }, { 25, 520 }, { 26, 520 }, { 27, 520 }, { 28, 520 }, { 29, 520 }, { 30, 520 }, { 31, 520 }, { 32, 522 }, { 33, 560 }, { 34,2727 }, { 35, 520 }, { 36, 520 }, { 37, 520 }, { 38, 520 }, { 39, 820 }, { 40, 950 }, { 41, 520 }, { 42, 520 }, { 43, 520 }, { 44, 520 }, { 45,2857 }, { 46,2949 }, { 47,3041 }, { 48, 994 }, { 49, 994 }, { 50, 994 }, { 51, 994 }, { 52, 994 }, { 53, 994 }, { 54, 994 }, { 55, 994 }, { 56, 994 }, { 57, 994 }, { 58, 520 }, { 59,1075 }, { 60, 520 }, { 61, 520 }, { 62, 520 }, { 63, 520 }, { 64, 520 }, { 65,3133 }, { 66,3133 }, { 67,3225 }, { 68,3225 }, { 69,3133 }, { 70,3225 }, { 71,3133 }, { 72,3133 }, { 73,3133 }, { 74,3133 }, { 75,3133 }, { 76,3133 }, { 77,3133 }, { 78,3133 }, { 79,3133 }, { 80,3133 }, { 81,3133 }, { 82,3133 }, { 83,3133 }, { 84,3133 }, { 85,3133 }, { 86,3133 }, { 87,3133 }, { 88,3133 }, { 89,3133 }, { 90,3133 }, { 91, 520 }, { 92,1421 }, { 93, 520 }, { 94, 520 }, { 95,3133 }, { 96, 520 }, { 97,3133 }, { 98,3133 }, { 99,3225 }, { 100,3225 }, { 101,3133 }, { 102,3225 }, { 103,3133 }, { 104,3133 }, { 105,3133 }, { 106,3133 }, { 107,3133 }, { 108,3133 }, { 109,3133 }, { 110,3133 }, { 111,3133 }, { 112,3133 }, { 113,3133 }, { 114,3133 }, { 115,3133 }, { 116,3133 }, { 117,3133 }, { 118,3133 }, { 119,3133 }, { 120,3133 }, { 121,3133 }, { 122,3133 }, { 123, 520 }, { 124, 520 }, { 125, 520 }, { 126, 520 }, { 127, 520 }, { 128, 520 }, { 0, 0 }, { 0,7531 }, { 1, 390 }, { 2, 390 }, { 3, 390 }, { 4, 390 }, { 5, 390 }, { 6, 390 }, { 7, 390 }, { 8, 390 }, { 9,3219 }, { 10, 394 }, { 11, 390 }, { 12, 396 }, { 13, 390 }, { 14, 390 }, { 15, 390 }, { 16, 390 }, { 17, 390 }, { 18, 390 }, { 19, 390 }, { 20, 390 }, { 21, 390 }, { 22, 390 }, { 23, 390 }, { 24, 390 }, { 25, 390 }, { 26, 390 }, { 27, 390 }, { 28, 390 }, { 29, 390 }, { 30, 390 }, { 31, 390 }, { 32,3219 }, { 33, 430 }, { 34,2597 }, { 35, 390 }, { 36, 390 }, { 37, 390 }, { 38, 390 }, { 39, 690 }, { 40, 820 }, { 41, 390 }, { 42, 390 }, { 43, 390 }, { 44, 390 }, { 45,2727 }, { 46,2819 }, { 47,2911 }, { 48, 864 }, { 49, 864 }, { 50, 864 }, { 51, 864 }, { 52, 864 }, { 53, 864 }, { 54, 864 }, { 55, 864 }, { 56, 864 }, { 57, 864 }, { 58, 390 }, { 59, 945 }, { 60, 390 }, { 61, 390 }, { 62, 390 }, { 63, 390 }, { 64, 390 }, { 65,3343 }, { 66,3343 }, { 67,3467 }, { 68,3467 }, { 69,3343 }, { 70,3467 }, { 71,3343 }, { 72,3343 }, { 73,3343 }, { 74,3343 }, { 75,3343 }, { 76,3343 }, { 77,3343 }, { 78,3343 }, { 79,3343 }, { 80,3343 }, { 81,3343 }, { 82,3343 }, { 83,3343 }, { 84,3343 }, { 85,3343 }, { 86,3343 }, { 87,3343 }, { 88,3343 }, { 89,3343 }, { 90,3343 }, { 91, 390 }, { 92,1291 }, { 93, 390 }, { 94, 390 }, { 95,3003 }, { 96, 390 }, { 97,3343 }, { 98,3343 }, { 99,3467 }, { 100,3467 }, { 101,3343 }, { 102,3467 }, { 103,3343 }, { 104,3343 }, { 105,3343 }, { 106,3343 }, { 107,3343 }, { 108,3343 }, { 109,3343 }, { 110,3343 }, { 111,3343 }, { 112,3343 }, { 113,3343 }, { 114,3343 }, { 115,3343 }, { 116,3343 }, { 117,3343 }, { 118,3343 }, { 119,3343 }, { 120,3343 }, { 121,3343 }, { 122,3343 }, { 123, 390 }, { 124, 390 }, { 125, 390 }, { 126, 390 }, { 127, 390 }, { 128, 390 }, { 0, 0 }, { 0,7401 }, { 1, 260 }, { 2, 260 }, { 3, 260 }, { 4, 260 }, { 5, 260 }, { 6, 260 }, { 7, 260 }, { 8, 260 }, { 9, 262 }, { 10, 264 }, { 11, 260 }, { 12, 266 }, { 13, 260 }, { 14, 260 }, { 15, 260 }, { 16, 260 }, { 17, 260 }, { 18, 260 }, { 19, 260 }, { 20, 260 }, { 21, 260 }, { 22, 260 }, { 23, 260 }, { 24, 260 }, { 25, 260 }, { 26, 260 }, { 27, 260 }, { 28, 260 }, { 29, 260 }, { 30, 260 }, { 31, 260 }, { 32, 262 }, { 33, 300 }, { 34, 430 }, { 35, 260 }, { 36, 260 }, { 37, 260 }, { 38, 260 }, { 39, 560 }, { 40, 690 }, { 41, 260 }, { 42, 260 }, { 43, 260 }, { 44, 260 }, { 45, 702 }, { 46, 712 }, { 47, 260 }, { 48, 734 }, { 49, 734 }, { 50, 734 }, { 51, 734 }, { 52, 734 }, { 53, 734 }, { 54, 734 }, { 55, 734 }, { 56, 734 }, { 57, 734 }, { 58, 260 }, { 59, 815 }, { 60, 260 }, { 61, 260 }, { 62, 260 }, { 63, 260 }, { 64, 260 }, { 65, 945 }, { 66, 945 }, { 67,1037 }, { 68,1037 }, { 69, 945 }, { 70,1037 }, { 71, 945 }, { 72, 945 }, { 73, 945 }, { 74, 945 }, { 75, 945 }, { 76, 945 }, { 77, 945 }, { 78, 945 }, { 79, 945 }, { 80, 945 }, { 81, 945 }, { 82, 945 }, { 83, 945 }, { 84, 945 }, { 85, 945 }, { 86, 945 }, { 87, 945 }, { 88, 945 }, { 89, 945 }, { 90, 945 }, { 91, 260 }, { 92,1161 }, { 93, 260 }, { 94, 260 }, { 95, 945 }, { 96, 260 }, { 97, 945 }, { 98, 945 }, { 99,1037 }, { 100,1037 }, { 101, 945 }, { 102,1037 }, { 103, 945 }, { 104, 945 }, { 105, 945 }, { 106, 945 }, { 107, 945 }, { 108, 945 }, { 109, 945 }, { 110, 945 }, { 111, 945 }, { 112, 945 }, { 113, 945 }, { 114, 945 }, { 115, 945 }, { 116, 945 }, { 117, 945 }, { 118, 945 }, { 119, 945 }, { 120, 945 }, { 121, 945 }, { 122, 945 }, { 123, 260 }, { 124, 260 }, { 125, 260 }, { 126, 260 }, { 127, 260 }, { 128, 260 }, { 0, 0 }, { 0,7271 }, { 1, 130 }, { 2, 130 }, { 3, 130 }, { 4, 130 }, { 5, 130 }, { 6, 130 }, { 7, 130 }, { 8, 130 }, { 9, 132 }, { 10, 134 }, { 11, 130 }, { 12, 136 }, { 13, 130 }, { 14, 130 }, { 15, 130 }, { 16, 130 }, { 17, 130 }, { 18, 130 }, { 19, 130 }, { 20, 130 }, { 21, 130 }, { 22, 130 }, { 23, 130 }, { 24, 130 }, { 25, 130 }, { 26, 130 }, { 27, 130 }, { 28, 130 }, { 29, 130 }, { 30, 130 }, { 31, 130 }, { 32, 132 }, { 33, 170 }, { 34, 300 }, { 35, 130 }, { 36, 130 }, { 37, 130 }, { 38, 130 }, { 39, 430 }, { 40, 560 }, { 41, 130 }, { 42, 130 }, { 43, 130 }, { 44, 130 }, { 45, 572 }, { 46, 582 }, { 47, 130 }, { 48, 604 }, { 49, 604 }, { 50, 604 }, { 51, 604 }, { 52, 604 }, { 53, 604 }, { 54, 604 }, { 55, 604 }, { 56, 604 }, { 57, 604 }, { 58, 130 }, { 59, 685 }, { 60, 130 }, { 61, 130 }, { 62, 130 }, { 63, 130 }, { 64, 130 }, { 65, 815 }, { 66, 815 }, { 67, 907 }, { 68, 907 }, { 69, 815 }, { 70, 907 }, { 71, 815 }, { 72, 815 }, { 73, 815 }, { 74, 815 }, { 75, 815 }, { 76, 815 }, { 77, 815 }, { 78, 815 }, { 79, 815 }, { 80, 815 }, { 81, 815 }, { 82, 815 }, { 83, 815 }, { 84, 815 }, { 85, 815 }, { 86, 815 }, { 87, 815 }, { 88, 815 }, { 89, 815 }, { 90, 815 }, { 91, 130 }, { 92,1031 }, { 93, 130 }, { 94, 130 }, { 95, 815 }, { 96, 130 }, { 97, 815 }, { 98, 815 }, { 99, 907 }, { 100, 907 }, { 101, 815 }, { 102, 907 }, { 103, 815 }, { 104, 815 }, { 105, 815 }, { 106, 815 }, { 107, 815 }, { 108, 815 }, { 109, 815 }, { 110, 815 }, { 111, 815 }, { 112, 815 }, { 113, 815 }, { 114, 815 }, { 115, 815 }, { 116, 815 }, { 117, 815 }, { 118, 815 }, { 119, 815 }, { 120, 815 }, { 121, 815 }, { 122, 815 }, { 123, 130 }, { 124, 130 }, { 125, 130 }, { 126, 130 }, { 127, 130 }, { 128, 130 }, { 0, 24 }, { 0,7141 }, { 0, 15 }, { 0,7139 }, { 0, 23 }, { 0,7137 }, { 0, 24 }, { 0,7135 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9, 435 }, { 10, 437 }, { 0, 0 }, { 12, 685 }, { 9, 681 }, { 10, 433 }, { 0, 0 }, { 12, 681 }, { 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 }, { 0, 0 }, { 0, 0 }, { 32, 435 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32, 681 }, { 0, 24 }, { 0,7101 }, { 1,3161 }, { 2,3161 }, { 3,3161 }, { 4,3161 }, { 5,3161 }, { 6,3161 }, { 7,3161 }, { 8,3161 }, { 9,3161 }, { 10, 649 }, { 11,3161 }, { 12,3161 }, { 13,3161 }, { 14,3161 }, { 15,3161 }, { 16,3161 }, { 17,3161 }, { 18,3161 }, { 19,3161 }, { 20,3161 }, { 21,3161 }, { 22,3161 }, { 23,3161 }, { 24,3161 }, { 25,3161 }, { 26,3161 }, { 27,3161 }, { 28,3161 }, { 29,3161 }, { 30,3161 }, { 31,3161 }, { 32,3161 }, { 33,3161 }, { 34,3161 }, { 35,3161 }, { 36,3161 }, { 37,3161 }, { 38,3161 }, { 39,3161 }, { 40,3161 }, { 41,3161 }, { 42,3161 }, { 43,3161 }, { 44,3161 }, { 45,3161 }, { 46,3161 }, { 47,3161 }, { 48,3161 }, { 49,3161 }, { 50,3161 }, { 51,3161 }, { 52,3161 }, { 53,3161 }, { 54,3161 }, { 55,3161 }, { 56,3161 }, { 57,3161 }, { 58,3161 }, { 59,3161 }, { 60,3161 }, { 61,3161 }, { 62,3161 }, { 63,3161 }, { 64,3161 }, { 65,3161 }, { 66,3161 }, { 67,3161 }, { 68,3161 }, { 69,3161 }, { 70,3161 }, { 71,3161 }, { 72,3161 }, { 73,3161 }, { 74,3161 }, { 75,3161 }, { 76,3161 }, { 77,3161 }, { 78,3161 }, { 79,3161 }, { 80,3161 }, { 81,3161 }, { 82,3161 }, { 83,3161 }, { 84,3161 }, { 85,3161 }, { 86,3161 }, { 87,3161 }, { 88,3161 }, { 89,3161 }, { 90,3161 }, { 91,3161 }, { 92,3161 }, { 93,3161 }, { 94,3161 }, { 95,3161 }, { 96,3161 }, { 97,3161 }, { 98,3161 }, { 99,3161 }, { 100,3161 }, { 101,3161 }, { 102,3161 }, { 103,3161 }, { 104,3161 }, { 105,3161 }, { 106,3161 }, { 107,3161 }, { 108,3161 }, { 109,3161 }, { 110,3161 }, { 111,3161 }, { 112,3161 }, { 113,3161 }, { 114,3161 }, { 115,3161 }, { 116,3161 }, { 117,3161 }, { 118,3161 }, { 119,3161 }, { 120,3161 }, { 121,3161 }, { 122,3161 }, { 123,3161 }, { 124,3161 }, { 125,3161 }, { 126,3161 }, { 127,3161 }, { 128,3161 }, { 0, 24 }, { 0,6971 }, { 1,3161 }, { 2,3161 }, { 3,3161 }, { 4,3161 }, { 5,3161 }, { 6,3161 }, { 7,3161 }, { 8,3161 }, { 9,3161 }, { 10, 521 }, { 11,3161 }, { 12,3161 }, { 13,3161 }, { 14,3161 }, { 15,3161 }, { 16,3161 }, { 17,3161 }, { 18,3161 }, { 19,3161 }, { 20,3161 }, { 21,3161 }, { 22,3161 }, { 23,3161 }, { 24,3161 }, { 25,3161 }, { 26,3161 }, { 27,3161 }, { 28,3161 }, { 29,3161 }, { 30,3161 }, { 31,3161 }, { 32,3161 }, { 33,3161 }, { 34, 523 }, { 35,3161 }, { 36,3161 }, { 37,3161 }, { 38,3161 }, { 39,3161 }, { 40,3161 }, { 41,3161 }, { 42,3161 }, { 43,3161 }, { 44,3161 }, { 45,3161 }, { 46,3161 }, { 47,3161 }, { 48,3161 }, { 49,3161 }, { 50,3161 }, { 51,3161 }, { 52,3161 }, { 53,3161 }, { 54,3161 }, { 55,3161 }, { 56,3161 }, { 57,3161 }, { 58,3161 }, { 59,3161 }, { 60,3161 }, { 61,3161 }, { 62,3161 }, { 63,3161 }, { 64,3161 }, { 65,3161 }, { 66,3161 }, { 67,3161 }, { 68,3161 }, { 69,3161 }, { 70,3161 }, { 71,3161 }, { 72,3161 }, { 73,3161 }, { 74,3161 }, { 75,3161 }, { 76,3161 }, { 77,3161 }, { 78,3161 }, { 79,3161 }, { 80,3161 }, { 81,3161 }, { 82,3161 }, { 83,3161 }, { 84,3161 }, { 85,3161 }, { 86,3161 }, { 87,3161 }, { 88,3161 }, { 89,3161 }, { 90,3161 }, { 91,3161 }, { 92,3161 }, { 93,3161 }, { 94,3161 }, { 95,3161 }, { 96,3161 }, { 97,3161 }, { 98,3161 }, { 99,3161 }, { 100,3161 }, { 101,3161 }, { 102,3161 }, { 103,3161 }, { 104,3161 }, { 105,3161 }, { 106,3161 }, { 107,3161 }, { 108,3161 }, { 109,3161 }, { 110,3161 }, { 111,3161 }, { 112,3161 }, { 113,3161 }, { 114,3161 }, { 115,3161 }, { 116,3161 }, { 117,3161 }, { 118,3161 }, { 119,3161 }, { 120,3161 }, { 121,3161 }, { 122,3161 }, { 123,3161 }, { 124,3161 }, { 125,3161 }, { 126,3161 }, { 127,3161 }, { 128,3161 }, { 0, 24 }, { 0,6841 }, { 1,3161 }, { 2,3161 }, { 3,3161 }, { 4,3161 }, { 5,3161 }, { 6,3161 }, { 7,3161 }, { 8,3161 }, { 9,3161 }, { 10, 395 }, { 11,3161 }, { 12,3161 }, { 13,3161 }, { 14,3161 }, { 15,3161 }, { 16,3161 }, { 17,3161 }, { 18,3161 }, { 19,3161 }, { 20,3161 }, { 21,3161 }, { 22,3161 }, { 23,3161 }, { 24,3161 }, { 25,3161 }, { 26,3161 }, { 27,3161 }, { 28,3161 }, { 29,3161 }, { 30,3161 }, { 31,3161 }, { 32,3161 }, { 33,3161 }, { 34,3161 }, { 35,3161 }, { 36,3161 }, { 37,3161 }, { 38,3161 }, { 39, 401 }, { 40,3161 }, { 41,3161 }, { 42,3161 }, { 43,3161 }, { 44,3161 }, { 45,3161 }, { 46,3161 }, { 47,3161 }, { 48,3161 }, { 49,3161 }, { 50,3161 }, { 51,3161 }, { 52,3161 }, { 53,3161 }, { 54,3161 }, { 55,3161 }, { 56,3161 }, { 57,3161 }, { 58,3161 }, { 59,3161 }, { 60,3161 }, { 61,3161 }, { 62,3161 }, { 63,3161 }, { 64,3161 }, { 65,3161 }, { 66,3161 }, { 67,3161 }, { 68,3161 }, { 69,3161 }, { 70,3161 }, { 71,3161 }, { 72,3161 }, { 73,3161 }, { 74,3161 }, { 75,3161 }, { 76,3161 }, { 77,3161 }, { 78,3161 }, { 79,3161 }, { 80,3161 }, { 81,3161 }, { 82,3161 }, { 83,3161 }, { 84,3161 }, { 85,3161 }, { 86,3161 }, { 87,3161 }, { 88,3161 }, { 89,3161 }, { 90,3161 }, { 91,3161 }, { 92,3161 }, { 93,3161 }, { 94,3161 }, { 95,3161 }, { 96,3161 }, { 97,3161 }, { 98,3161 }, { 99,3161 }, { 100,3161 }, { 101,3161 }, { 102,3161 }, { 103,3161 }, { 104,3161 }, { 105,3161 }, { 106,3161 }, { 107,3161 }, { 108,3161 }, { 109,3161 }, { 110,3161 }, { 111,3161 }, { 112,3161 }, { 113,3161 }, { 114,3161 }, { 115,3161 }, { 116,3161 }, { 117,3161 }, { 118,3161 }, { 119,3161 }, { 120,3161 }, { 121,3161 }, { 122,3161 }, { 123,3161 }, { 124,3161 }, { 125,3161 }, { 126,3161 }, { 127,3161 }, { 128,3161 }, { 0, 24 }, { 0,6711 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 24 }, { 0,6706 }, { 0, 15 }, { 0,6704 }, { 0, 16 }, { 0,6702 }, { 0, 0 }, { 0, 24 }, { 0,6699 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9, 0 }, { 10, 2 }, { 0, 0 }, { 12, 250 }, { 0, 0 }, { 0, 9 }, { 0,6689 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 8 }, { 0,6667 }, { 45,3161 }, { 46,3175 }, { 42, 270 }, { 48,3197 }, { 49,3197 }, { 50,3197 }, { 51,3197 }, { 52,3197 }, { 53,3197 }, { 54,3197 }, { 55,3197 }, { 56,3197 }, { 57,3197 }, { 46,3222 }, { 0, 0 }, { 48,3244 }, { 49,3244 }, { 50,3244 }, { 51,3244 }, { 52,3244 }, { 53,3244 }, { 54,3244 }, { 55,3244 }, { 56,3244 }, { 57,3244 }, { 48,3245 }, { 49,3245 }, { 50,3245 }, { 51,3245 }, { 52,3245 }, { 53,3245 }, { 54,3245 }, { 55,3245 }, { 56,3245 }, { 57,3245 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 46,3190 }, { 69,3272 }, { 48,3212 }, { 49,3212 }, { 50,3212 }, { 51,3212 }, { 52,3212 }, { 53,3212 }, { 54,3212 }, { 55,3212 }, { 56,3212 }, { 57,3212 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 101,3272 }, { 0, 21 }, { 0,6586 }, { 1,3245 }, { 2,3245 }, { 3,3245 }, { 4,3245 }, { 5,3245 }, { 6,3245 }, { 7,3245 }, { 8,3245 }, { 9,3245 }, { 10, 148 }, { 11,3245 }, { 12,3245 }, { 13,3245 }, { 14,3245 }, { 15,3245 }, { 16,3245 }, { 17,3245 }, { 18,3245 }, { 19,3245 }, { 20,3245 }, { 21,3245 }, { 22,3245 }, { 23,3245 }, { 24,3245 }, { 25,3245 }, { 26,3245 }, { 27,3245 }, { 28,3245 }, { 29,3245 }, { 30,3245 }, { 31,3245 }, { 32,3245 }, { 33,3245 }, { 34,3245 }, { 35,3245 }, { 36,3245 }, { 37,3245 }, { 38,3245 }, { 39,3245 }, { 40,3245 }, { 41,3245 }, { 42,3245 }, { 43,3245 }, { 44,3245 }, { 45,3245 }, { 46,3245 }, { 47,3245 }, { 48,3245 }, { 49,3245 }, { 50,3245 }, { 51,3245 }, { 52,3245 }, { 53,3245 }, { 54,3245 }, { 55,3245 }, { 56,3245 }, { 57,3245 }, { 58,3245 }, { 59,3245 }, { 60,3245 }, { 61,3245 }, { 62,3245 }, { 63,3245 }, { 64,3245 }, { 65,3245 }, { 66,3245 }, { 67,3245 }, { 68,3245 }, { 69,3245 }, { 70,3245 }, { 71,3245 }, { 72,3245 }, { 73,3245 }, { 74,3245 }, { 75,3245 }, { 76,3245 }, { 77,3245 }, { 78,3245 }, { 79,3245 }, { 80,3245 }, { 81,3245 }, { 82,3245 }, { 83,3245 }, { 84,3245 }, { 85,3245 }, { 86,3245 }, { 87,3245 }, { 88,3245 }, { 89,3245 }, { 90,3245 }, { 91,3245 }, { 92,3245 }, { 93,3245 }, { 94,3245 }, { 95,3245 }, { 96,3245 }, { 97,3245 }, { 98,3245 }, { 99,3245 }, { 100,3245 }, { 101,3245 }, { 102,3245 }, { 103,3245 }, { 104,3245 }, { 105,3245 }, { 106,3245 }, { 107,3245 }, { 108,3245 }, { 109,3245 }, { 110,3245 }, { 111,3245 }, { 112,3245 }, { 113,3245 }, { 114,3245 }, { 115,3245 }, { 116,3245 }, { 117,3245 }, { 118,3245 }, { 119,3245 }, { 120,3245 }, { 121,3245 }, { 122,3245 }, { 123,3245 }, { 124,3245 }, { 125,3245 }, { 126,3245 }, { 127,3245 }, { 128,3245 }, { 0, 17 }, { 0,6456 }, { 0, 0 }, { 0,6454 }, { 0, 19 }, { 0,6452 }, { 0, 12 }, { 0,6450 }, { 0, 11 }, { 0,6448 }, { 0, 14 }, { 0,6446 }, { 9, 0 }, { 10,-248 }, { 0, 0 }, { 12, 0 }, { 0, 13 }, { 0,6440 }, { 0, 20 }, { 0,6438 }, { 0, 2 }, { 0,6436 }, { 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 }, { 32, 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, 0 }, { 48,3245 }, { 49,3245 }, { 50,3245 }, { 51,3245 }, { 52,3245 }, { 53,3245 }, { 54,3245 }, { 55,3245 }, { 56,3245 }, { 57,3245 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,3245 }, { 66,3245 }, { 67,3245 }, { 68,3245 }, { 69,3245 }, { 70,3245 }, { 71,3245 }, { 72,3245 }, { 73,3245 }, { 74,3245 }, { 75,3245 }, { 76,3245 }, { 77,3245 }, { 78,3245 }, { 79,3245 }, { 80,3245 }, { 81,3245 }, { 82,3245 }, { 83,3245 }, { 84,3245 }, { 85,3245 }, { 86,3245 }, { 87,3245 }, { 88,3245 }, { 89,3245 }, { 90,3245 }, { 0, 17 }, { 0,6364 }, { 0, 0 }, { 0, 0 }, { 95,3245 }, { 0, 0 }, { 97,3245 }, { 98,3245 }, { 99,3245 }, { 100,3245 }, { 101,3245 }, { 102,3245 }, { 103,3245 }, { 104,3245 }, { 105,3245 }, { 106,3245 }, { 107,3245 }, { 108,3245 }, { 109,3245 }, { 110,3245 }, { 111,3245 }, { 112,3245 }, { 113,3245 }, { 114,3245 }, { 115,3245 }, { 116,3245 }, { 117,3245 }, { 118,3245 }, { 119,3245 }, { 120,3245 }, { 121,3245 }, { 122,3245 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,3153 }, { 49,3153 }, { 50,3153 }, { 51,3153 }, { 52,3153 }, { 53,3153 }, { 54,3153 }, { 55,3153 }, { 56,3153 }, { 57,3153 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,3153 }, { 66,3153 }, { 67,3153 }, { 68,3153 }, { 69,3153 }, { 70,3245 }, { 71,3153 }, { 72,3153 }, { 73,3153 }, { 74,3153 }, { 75,3153 }, { 76,3153 }, { 77,3153 }, { 78,3153 }, { 79,3153 }, { 80,3153 }, { 81,3153 }, { 82,3153 }, { 83,3245 }, { 84,3153 }, { 85,3153 }, { 86,3153 }, { 87,3153 }, { 88,3153 }, { 89,3153 }, { 90,3153 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,3153 }, { 0, 0 }, { 97,3153 }, { 98,3153 }, { 99,3153 }, { 100,3153 }, { 101,3153 }, { 102,3245 }, { 103,3153 }, { 104,3153 }, { 105,3153 }, { 106,3153 }, { 107,3153 }, { 108,3153 }, { 109,3153 }, { 110,3153 }, { 111,3153 }, { 112,3153 }, { 113,3153 }, { 114,3153 }, { 115,3245 }, { 116,3153 }, { 117,3153 }, { 118,3153 }, { 119,3153 }, { 120,3153 }, { 121,3153 }, { 122,3153 }, { 0, 22 }, { 0,6240 }, { 1,3245 }, { 2,3245 }, { 3,3245 }, { 4,3245 }, { 5,3245 }, { 6,3245 }, { 7,3245 }, { 8,3245 }, { 9,3245 }, { 0, 0 }, { 11,3245 }, { 12,3245 }, { 13,3245 }, { 14,3245 }, { 15,3245 }, { 16,3245 }, { 17,3245 }, { 18,3245 }, { 19,3245 }, { 20,3245 }, { 21,3245 }, { 22,3245 }, { 23,3245 }, { 24,3245 }, { 25,3245 }, { 26,3245 }, { 27,3245 }, { 28,3245 }, { 29,3245 }, { 30,3245 }, { 31,3245 }, { 32,3245 }, { 33,3245 }, { 34,3245 }, { 35,3245 }, { 36,3245 }, { 37,3245 }, { 38,3245 }, { 39,3245 }, { 40,3245 }, { 41,3245 }, { 42,3245 }, { 43,3245 }, { 44,3245 }, { 45,3245 }, { 46,3245 }, { 47,3245 }, { 48,3245 }, { 49,3245 }, { 50,3245 }, { 51,3245 }, { 52,3245 }, { 53,3245 }, { 54,3245 }, { 55,3245 }, { 56,3245 }, { 57,3245 }, { 58,3245 }, { 59,3245 }, { 60,3245 }, { 61,3245 }, { 62,3245 }, { 63,3245 }, { 64,3245 }, { 65,3245 }, { 66,3245 }, { 67,3245 }, { 68,3245 }, { 69,3245 }, { 70,3245 }, { 71,3245 }, { 72,3245 }, { 73,3245 }, { 74,3245 }, { 75,3245 }, { 76,3245 }, { 77,3245 }, { 78,3245 }, { 79,3245 }, { 80,3245 }, { 81,3245 }, { 82,3245 }, { 83,3245 }, { 84,3245 }, { 85,3245 }, { 86,3245 }, { 87,3245 }, { 88,3245 }, { 89,3245 }, { 90,3245 }, { 91,3245 }, { 92,3245 }, { 93,3245 }, { 94,3245 }, { 95,3245 }, { 96,3245 }, { 97,3245 }, { 98,3245 }, { 99,3245 }, { 100,3245 }, { 101,3245 }, { 102,3245 }, { 103,3245 }, { 104,3245 }, { 105,3245 }, { 106,3245 }, { 107,3245 }, { 108,3245 }, { 109,3245 }, { 110,3245 }, { 111,3245 }, { 112,3245 }, { 113,3245 }, { 114,3245 }, { 115,3245 }, { 116,3245 }, { 117,3245 }, { 118,3245 }, { 119,3245 }, { 120,3245 }, { 121,3245 }, { 122,3245 }, { 123,3245 }, { 124,3245 }, { 125,3245 }, { 126,3245 }, { 127,3245 }, { 128,3245 }, { 0, 15 }, { 0,6110 }, { 0, 0 }, { 0,6108 }, { 0, 3 }, { 0,6106 }, { 0, 0 }, { 0,6104 }, { 0, 0 }, { 0, 0 }, { 9,3245 }, { 10,-592 }, { 9, 0 }, { 12,-344 }, { 0, 0 }, { 0, 0 }, { 9, 120 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,3245 }, { 0, 0 }, { 32, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32, 120 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 58, 2 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 58, 122 }, { 65,3369 }, { 66,3369 }, { 67,3369 }, { 68,3369 }, { 69,3369 }, { 70,3369 }, { 71,3369 }, { 72,3369 }, { 73,3369 }, { 74,3369 }, { 75,3369 }, { 76,3369 }, { 77,3369 }, { 78,3369 }, { 79,3369 }, { 80,3369 }, { 81,3369 }, { 82,3369 }, { 83,3369 }, { 84,3369 }, { 85,3369 }, { 86,3369 }, { 87,3369 }, { 88,3369 }, { 89,3369 }, { 90,3369 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 97,3369 }, { 98,3369 }, { 99,3369 }, { 100,3369 }, { 101,3369 }, { 102,3369 }, { 103,3369 }, { 104,3369 }, { 105,3369 }, { 106,3369 }, { 107,3369 }, { 108,3369 }, { 109,3369 }, { 110,3369 }, { 111,3369 }, { 112,3369 }, { 113,3369 }, { 114,3369 }, { 115,3369 }, { 116,3369 }, { 117,3369 }, { 118,3369 }, { 119,3369 }, { 120,3369 }, { 121,3369 }, { 122,3369 }, { 0, 17 }, { 0,5986 }, { 0, 0 }, { 0,5984 }, { 0, 7 }, { 0,5982 }, { 0, 0 }, { 0,5980 }, { 0, 1 }, { 0,5978 }, { 9,-122 }, { 0, 0 }, { 9, 0 }, { 0, 10 }, { 0,5973 }, { 0, 0 }, { 9, 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, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-122 }, { 0, 0 }, { 32, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,2775 }, { 49,2775 }, { 50,2775 }, { 51,2775 }, { 52,2775 }, { 53,2775 }, { 54,2775 }, { 55,2775 }, { 56,2775 }, { 57,2775 }, { 58,-120 }, { 0, 0 }, { 58, 2 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 58, 2 }, { 65,3369 }, { 66,3369 }, { 67,3369 }, { 68,3369 }, { 69,3369 }, { 70,3369 }, { 71,3369 }, { 72,3369 }, { 73,3369 }, { 74,3369 }, { 75,3369 }, { 76,3369 }, { 77,3369 }, { 78,3369 }, { 79,3369 }, { 80,3369 }, { 81,3369 }, { 82,3369 }, { 83,3369 }, { 84,3369 }, { 85,3369 }, { 86,3369 }, { 87,3369 }, { 88,3369 }, { 89,3369 }, { 90,3369 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,2775 }, { 0, 0 }, { 97,3369 }, { 98,3369 }, { 99,3369 }, { 100,3369 }, { 101,3369 }, { 102,3369 }, { 103,3369 }, { 104,3369 }, { 105,3369 }, { 106,3369 }, { 107,3369 }, { 108,3369 }, { 109,3369 }, { 110,3369 }, { 111,3369 }, { 112,3369 }, { 113,3369 }, { 114,3369 }, { 115,3369 }, { 116,3369 }, { 117,3369 }, { 118,3369 }, { 119,3369 }, { 120,3369 }, { 121,3369 }, { 122,3369 }, { 0, 17 }, { 0,5862 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,-246 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-246 }, { 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 }, { 0, 0 }, { 0, 0 }, { 48,2651 }, { 49,2651 }, { 50,2651 }, { 51,2651 }, { 52,2651 }, { 53,2651 }, { 54,2651 }, { 55,2651 }, { 56,2651 }, { 57,2651 }, { 58,-244 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,3245 }, { 66,3245 }, { 67,3245 }, { 68,3245 }, { 69,3245 }, { 70,3369 }, { 71,3245 }, { 72,3245 }, { 73,3245 }, { 74,3245 }, { 75,3245 }, { 76,3245 }, { 77,3245 }, { 78,3245 }, { 79,3245 }, { 80,3245 }, { 81,3245 }, { 82,3245 }, { 83,3369 }, { 84,3245 }, { 85,3245 }, { 86,3245 }, { 87,3245 }, { 88,3245 }, { 89,3245 }, { 90,3245 }, { 0, 17 }, { 0,5770 }, { 0, 0 }, { 0, 0 }, { 95,2651 }, { 0, 0 }, { 97,3245 }, { 98,3245 }, { 99,3245 }, { 100,3245 }, { 101,3245 }, { 102,3369 }, { 103,3245 }, { 104,3245 }, { 105,3245 }, { 106,3245 }, { 107,3245 }, { 108,3245 }, { 109,3245 }, { 110,3245 }, { 111,3245 }, { 112,3245 }, { 113,3245 }, { 114,3245 }, { 115,3369 }, { 116,3245 }, { 117,3245 }, { 118,3245 }, { 119,3245 }, { 120,3245 }, { 121,3245 }, { 122,3245 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,2559 }, { 49,2559 }, { 50,2559 }, { 51,2559 }, { 52,2559 }, { 53,2559 }, { 54,2559 }, { 55,2559 }, { 56,2559 }, { 57,2559 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,2559 }, { 66,2559 }, { 67,2559 }, { 68,2559 }, { 69,2559 }, { 70,2559 }, { 71,2559 }, { 72,2559 }, { 73,2559 }, { 74,2559 }, { 75,2559 }, { 76,2559 }, { 77,2559 }, { 78,2559 }, { 79,3369 }, { 80,2559 }, { 81,2559 }, { 82,2559 }, { 83,2559 }, { 84,2559 }, { 85,2559 }, { 86,2559 }, { 87,2559 }, { 88,2559 }, { 89,2559 }, { 90,2559 }, { 0, 17 }, { 0,5678 }, { 0, 0 }, { 0, 0 }, { 95,2559 }, { 0, 0 }, { 97,2559 }, { 98,2559 }, { 99,2559 }, { 100,2559 }, { 101,2559 }, { 102,2559 }, { 103,2559 }, { 104,2559 }, { 105,2559 }, { 106,2559 }, { 107,2559 }, { 108,2559 }, { 109,2559 }, { 110,2559 }, { 111,3369 }, { 112,2559 }, { 113,2559 }, { 114,2559 }, { 115,2559 }, { 116,2559 }, { 117,2559 }, { 118,2559 }, { 119,2559 }, { 120,2559 }, { 121,2559 }, { 122,2559 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,2467 }, { 49,2467 }, { 50,2467 }, { 51,2467 }, { 52,2467 }, { 53,2467 }, { 54,2467 }, { 55,2467 }, { 56,2467 }, { 57,2467 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,2467 }, { 66,2467 }, { 67,2467 }, { 68,2467 }, { 69,2467 }, { 70,2467 }, { 71,2467 }, { 72,2467 }, { 73,2467 }, { 74,2467 }, { 75,2467 }, { 76,2467 }, { 77,2467 }, { 78,3369 }, { 79,2467 }, { 80,2467 }, { 81,2467 }, { 82,2467 }, { 83,2467 }, { 84,2467 }, { 85,2467 }, { 86,2467 }, { 87,2467 }, { 88,2467 }, { 89,2467 }, { 90,2467 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,2467 }, { 0, 0 }, { 97,2467 }, { 98,2467 }, { 99,2467 }, { 100,2467 }, { 101,2467 }, { 102,2467 }, { 103,2467 }, { 104,2467 }, { 105,2467 }, { 106,2467 }, { 107,2467 }, { 108,2467 }, { 109,2467 }, { 110,3369 }, { 111,2467 }, { 112,2467 }, { 113,2467 }, { 114,2467 }, { 115,2467 }, { 116,2467 }, { 117,2467 }, { 118,2467 }, { 119,2467 }, { 120,2467 }, { 121,2467 }, { 122,2467 }, { 0, 15 }, { 0,5554 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,3369 }, { 10,-1148 }, { 0, 0 }, { 12,-900 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,3369 }, { 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 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,-550 }, { 66,-550 }, { 67,-550 }, { 68,-550 }, { 69,-550 }, { 70,-550 }, { 71,-550 }, { 72,-550 }, { 73,-550 }, { 74,-550 }, { 75,-550 }, { 76,-550 }, { 77,-550 }, { 78,-550 }, { 79,-550 }, { 80,-550 }, { 81,-550 }, { 82,-550 }, { 83,-550 }, { 84,-550 }, { 85,-550 }, { 86,-550 }, { 87,-550 }, { 88,-550 }, { 89,-550 }, { 90,-550 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 97,-550 }, { 98,-550 }, { 99,-550 }, { 100,-550 }, { 101,-550 }, { 102,-550 }, { 103,-550 }, { 104,-550 }, { 105,-550 }, { 106,-550 }, { 107,-550 }, { 108,-550 }, { 109,-550 }, { 110,-550 }, { 111,-550 }, { 112,-550 }, { 113,-550 }, { 114,-550 }, { 115,-550 }, { 116,-550 }, { 117,-550 }, { 118,-550 }, { 119,-550 }, { 120,-550 }, { 121,-550 }, { 122,-550 }, { 0, 17 }, { 0,5430 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,-554 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-554 }, { 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 }, { 0, 0 }, { 0, 0 }, { 48,2219 }, { 49,2219 }, { 50,2219 }, { 51,2219 }, { 52,2219 }, { 53,2219 }, { 54,2219 }, { 55,2219 }, { 56,2219 }, { 57,2219 }, { 58,-552 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,2219 }, { 66,2219 }, { 67,2219 }, { 68,2219 }, { 69,2219 }, { 70,2219 }, { 71,2219 }, { 72,2219 }, { 73,2219 }, { 74,2219 }, { 75,2219 }, { 76,2219 }, { 77,2219 }, { 78,2219 }, { 79,2219 }, { 80,2219 }, { 81,2219 }, { 82,2219 }, { 83,2219 }, { 84,2219 }, { 85,2219 }, { 86,2219 }, { 87,2219 }, { 88,2219 }, { 89,2219 }, { 90,2219 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,2219 }, { 0, 0 }, { 97,2219 }, { 98,2219 }, { 99,2219 }, { 100,2219 }, { 101,2219 }, { 102,2219 }, { 103,2219 }, { 104,2219 }, { 105,2219 }, { 106,2219 }, { 107,2219 }, { 108,2219 }, { 109,2219 }, { 110,2219 }, { 111,2219 }, { 112,2219 }, { 113,2219 }, { 114,2219 }, { 115,2219 }, { 116,2219 }, { 117,2219 }, { 118,2219 }, { 119,2219 }, { 120,2219 }, { 121,2219 }, { 122,2219 }, { 0, 17 }, { 0,5306 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,-678 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-678 }, { 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 }, { 0, 0 }, { 0, 0 }, { 48,2095 }, { 49,2095 }, { 50,2095 }, { 51,2095 }, { 52,2095 }, { 53,2095 }, { 54,2095 }, { 55,2095 }, { 56,2095 }, { 57,2095 }, { 58,-676 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,2095 }, { 66,2095 }, { 67,2095 }, { 68,2095 }, { 69,2095 }, { 70,2187 }, { 71,2095 }, { 72,2095 }, { 73,2095 }, { 74,2095 }, { 75,2095 }, { 76,2095 }, { 77,2095 }, { 78,2095 }, { 79,2095 }, { 80,2095 }, { 81,2095 }, { 82,2095 }, { 83,2187 }, { 84,2095 }, { 85,2095 }, { 86,2095 }, { 87,2095 }, { 88,2095 }, { 89,2095 }, { 90,2095 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,2095 }, { 0, 0 }, { 97,2095 }, { 98,2095 }, { 99,2095 }, { 100,2095 }, { 101,2095 }, { 102,2187 }, { 103,2095 }, { 104,2095 }, { 105,2095 }, { 106,2095 }, { 107,2095 }, { 108,2095 }, { 109,2095 }, { 110,2095 }, { 111,2095 }, { 112,2095 }, { 113,2095 }, { 114,2095 }, { 115,2187 }, { 116,2095 }, { 117,2095 }, { 118,2095 }, { 119,2095 }, { 120,2095 }, { 121,2095 }, { 122,2095 }, { 0, 17 }, { 0,5182 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,-802 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-802 }, { 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 }, { 0, 0 }, { 0, 0 }, { 48,1971 }, { 49,1971 }, { 50,1971 }, { 51,1971 }, { 52,1971 }, { 53,1971 }, { 54,1971 }, { 55,1971 }, { 56,1971 }, { 57,1971 }, { 58,-800 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,1971 }, { 66,1971 }, { 67,1971 }, { 68,1971 }, { 69,1971 }, { 70,1971 }, { 71,1971 }, { 72,1971 }, { 73,1971 }, { 74,1971 }, { 75,1971 }, { 76,1971 }, { 77,1971 }, { 78,1971 }, { 79,2781 }, { 80,1971 }, { 81,1971 }, { 82,1971 }, { 83,1971 }, { 84,1971 }, { 85,1971 }, { 86,1971 }, { 87,1971 }, { 88,1971 }, { 89,1971 }, { 90,1971 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,1971 }, { 0, 0 }, { 97,1971 }, { 98,1971 }, { 99,1971 }, { 100,1971 }, { 101,1971 }, { 102,1971 }, { 103,1971 }, { 104,1971 }, { 105,1971 }, { 106,1971 }, { 107,1971 }, { 108,1971 }, { 109,1971 }, { 110,1971 }, { 111,2781 }, { 112,1971 }, { 113,1971 }, { 114,1971 }, { 115,1971 }, { 116,1971 }, { 117,1971 }, { 118,1971 }, { 119,1971 }, { 120,1971 }, { 121,1971 }, { 122,1971 }, { 0, 17 }, { 0,5058 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,-926 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-926 }, { 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 }, { 0, 0 }, { 0, 0 }, { 48,1847 }, { 49,1847 }, { 50,1847 }, { 51,1847 }, { 52,1847 }, { 53,1847 }, { 54,1847 }, { 55,1847 }, { 56,1847 }, { 57,1847 }, { 58,-924 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,1847 }, { 66,1847 }, { 67,1847 }, { 68,1847 }, { 69,1847 }, { 70,1847 }, { 71,1847 }, { 72,1847 }, { 73,1847 }, { 74,1847 }, { 75,1847 }, { 76,1847 }, { 77,1847 }, { 78,2749 }, { 79,1847 }, { 80,1847 }, { 81,1847 }, { 82,1847 }, { 83,1847 }, { 84,1847 }, { 85,1847 }, { 86,1847 }, { 87,1847 }, { 88,1847 }, { 89,1847 }, { 90,1847 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,1847 }, { 0, 0 }, { 97,1847 }, { 98,1847 }, { 99,1847 }, { 100,1847 }, { 101,1847 }, { 102,1847 }, { 103,1847 }, { 104,1847 }, { 105,1847 }, { 106,1847 }, { 107,1847 }, { 108,1847 }, { 109,1847 }, { 110,2749 }, { 111,1847 }, { 112,1847 }, { 113,1847 }, { 114,1847 }, { 115,1847 }, { 116,1847 }, { 117,1847 }, { 118,1847 }, { 119,1847 }, { 120,1847 }, { 121,1847 }, { 122,1847 }, { 0, 18 }, { 0,4934 }, { 1,1124 }, { 2,1124 }, { 3,1124 }, { 4,1124 }, { 5,1124 }, { 6,1124 }, { 7,1124 }, { 8,1124 }, { 9,1124 }, { 10,-1516 }, { 11,1124 }, { 12,1124 }, { 13,1124 }, { 14,1124 }, { 15,1124 }, { 16,1124 }, { 17,1124 }, { 18,1124 }, { 19,1124 }, { 20,1124 }, { 21,1124 }, { 22,1124 }, { 23,1124 }, { 24,1124 }, { 25,1124 }, { 26,1124 }, { 27,1124 }, { 28,1124 }, { 29,1124 }, { 30,1124 }, { 31,1124 }, { 32,1124 }, { 33,1124 }, { 34,2841 }, { 35,1124 }, { 36,1124 }, { 37,1124 }, { 38,1124 }, { 39,1124 }, { 40,1124 }, { 41,1124 }, { 42,1124 }, { 43,1124 }, { 44,1124 }, { 45,2965 }, { 46,2965 }, { 47,2965 }, { 48,2965 }, { 49,2965 }, { 50,2965 }, { 51,2965 }, { 52,2965 }, { 53,2965 }, { 54,2965 }, { 55,2965 }, { 56,2965 }, { 57,2965 }, { 58,1124 }, { 59,1124 }, { 60,1124 }, { 61,1124 }, { 62,1124 }, { 63,1124 }, { 64,1124 }, { 65,2965 }, { 66,2965 }, { 67,2965 }, { 68,2965 }, { 69,2965 }, { 70,2965 }, { 71,2965 }, { 72,2965 }, { 73,2965 }, { 74,2965 }, { 75,2965 }, { 76,2965 }, { 77,2965 }, { 78,2965 }, { 79,2965 }, { 80,2965 }, { 81,2965 }, { 82,2965 }, { 83,2965 }, { 84,2965 }, { 85,2965 }, { 86,2965 }, { 87,2965 }, { 88,2965 }, { 89,2965 }, { 90,2965 }, { 91,1124 }, { 92,1124 }, { 93,1124 }, { 94,1124 }, { 95,2965 }, { 96,1124 }, { 97,2965 }, { 98,2965 }, { 99,2965 }, { 100,2965 }, { 101,2965 }, { 102,2965 }, { 103,2965 }, { 104,2965 }, { 105,2965 }, { 106,2965 }, { 107,2965 }, { 108,2965 }, { 109,2965 }, { 110,2965 }, { 111,2965 }, { 112,2965 }, { 113,2965 }, { 114,2965 }, { 115,2965 }, { 116,2965 }, { 117,2965 }, { 118,2965 }, { 119,2965 }, { 120,2965 }, { 121,2965 }, { 122,2965 }, { 123,1124 }, { 124,1124 }, { 125,1124 }, { 126,1124 }, { 127,1124 }, { 128,1124 }, { 0, 18 }, { 0,4804 }, { 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 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 34,2965 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,2965 }, { 46,3057 }, { 47,2965 }, { 48,3149 }, { 49,3149 }, { 50,3149 }, { 51,3149 }, { 52,3149 }, { 53,3149 }, { 54,3149 }, { 55,3149 }, { 56,3149 }, { 57,3149 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,2965 }, { 66,2965 }, { 67,2965 }, { 68,2965 }, { 69,2965 }, { 70,2965 }, { 71,2965 }, { 72,2965 }, { 73,2965 }, { 74,2965 }, { 75,2965 }, { 76,2965 }, { 77,2965 }, { 78,2965 }, { 79,2965 }, { 80,2965 }, { 81,2965 }, { 82,2965 }, { 83,2965 }, { 84,2965 }, { 85,2965 }, { 86,2965 }, { 87,2965 }, { 88,2965 }, { 89,2965 }, { 90,2965 }, { 0, 9 }, { 0,4712 }, { 0, 0 }, { 0, 0 }, { 95,2965 }, { 0, 0 }, { 97,2965 }, { 98,2965 }, { 99,2965 }, { 100,2965 }, { 101,2965 }, { 102,2965 }, { 103,2965 }, { 104,2965 }, { 105,2965 }, { 106,2965 }, { 107,2965 }, { 108,2965 }, { 109,2965 }, { 110,2965 }, { 111,2965 }, { 112,2965 }, { 113,2965 }, { 114,2965 }, { 115,2965 }, { 116,2965 }, { 117,2965 }, { 118,2965 }, { 119,2965 }, { 120,2965 }, { 121,2965 }, { 122,2965 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 34,2873 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,2873 }, { 46,2873 }, { 47,2873 }, { 48,3149 }, { 49,3149 }, { 50,3149 }, { 51,3149 }, { 52,3149 }, { 53,3149 }, { 54,3149 }, { 55,3149 }, { 56,3149 }, { 57,3149 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,2873 }, { 66,2873 }, { 67,2873 }, { 68,2873 }, { 69,3241 }, { 70,2873 }, { 71,2873 }, { 72,2873 }, { 73,2873 }, { 74,2873 }, { 75,2873 }, { 76,2873 }, { 77,2873 }, { 78,2873 }, { 79,2873 }, { 80,2873 }, { 81,2873 }, { 82,2873 }, { 83,2873 }, { 84,2873 }, { 85,2873 }, { 86,2873 }, { 87,2873 }, { 88,2873 }, { 89,2873 }, { 90,2873 }, { 0, 18 }, { 0,4620 }, { 0, 0 }, { 0, 0 }, { 95,2873 }, { 0, 0 }, { 97,2873 }, { 98,2873 }, { 99,2873 }, { 100,2873 }, { 101,3241 }, { 102,2873 }, { 103,2873 }, { 104,2873 }, { 105,2873 }, { 106,2873 }, { 107,2873 }, { 108,2873 }, { 109,2873 }, { 110,2873 }, { 111,2873 }, { 112,2873 }, { 113,2873 }, { 114,2873 }, { 115,2873 }, { 116,2873 }, { 117,2873 }, { 118,2873 }, { 119,2873 }, { 120,2873 }, { 121,2873 }, { 122,2873 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 34,2781 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,2781 }, { 46,2781 }, { 47,2781 }, { 48,2781 }, { 49,2781 }, { 50,2781 }, { 51,2781 }, { 52,2781 }, { 53,2781 }, { 54,2781 }, { 55,2781 }, { 56,2781 }, { 57,2781 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,2781 }, { 66,2781 }, { 67,2781 }, { 68,2781 }, { 69,2781 }, { 70,2781 }, { 71,2781 }, { 72,2781 }, { 73,2781 }, { 74,2781 }, { 75,2781 }, { 76,2781 }, { 77,2781 }, { 78,2781 }, { 79,2781 }, { 80,2781 }, { 81,2781 }, { 82,2781 }, { 83,2781 }, { 84,2781 }, { 85,2781 }, { 86,2781 }, { 87,2781 }, { 88,2781 }, { 89,2781 }, { 90,2781 }, { 0, 17 }, { 0,4528 }, { 0, 0 }, { 0, 0 }, { 95,2781 }, { 0, 0 }, { 97,2781 }, { 98,2781 }, { 99,2781 }, { 100,2781 }, { 101,2781 }, { 102,2781 }, { 103,2781 }, { 104,2781 }, { 105,2781 }, { 106,2781 }, { 107,2781 }, { 108,2781 }, { 109,2781 }, { 110,2781 }, { 111,2781 }, { 112,2781 }, { 113,2781 }, { 114,2781 }, { 115,2781 }, { 116,2781 }, { 117,2781 }, { 118,2781 }, { 119,2781 }, { 120,2781 }, { 121,2781 }, { 122,2781 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 34,2689 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,2689 }, { 46,2689 }, { 47,2689 }, { 48,3149 }, { 49,3149 }, { 50,3149 }, { 51,3149 }, { 52,3149 }, { 53,3149 }, { 54,3149 }, { 55,3149 }, { 56,3149 }, { 57,3149 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,3149 }, { 66,3149 }, { 67,3149 }, { 68,3149 }, { 69,3149 }, { 70,3149 }, { 71,3149 }, { 72,3149 }, { 73,3149 }, { 74,3149 }, { 75,3149 }, { 76,3149 }, { 77,3149 }, { 78,3149 }, { 79,3149 }, { 80,3149 }, { 81,3149 }, { 82,3149 }, { 83,3149 }, { 84,3149 }, { 85,3149 }, { 86,3149 }, { 87,3149 }, { 88,3149 }, { 89,3149 }, { 90,3149 }, { 0, 17 }, { 0,4436 }, { 0, 0 }, { 0, 0 }, { 95,3149 }, { 0, 0 }, { 97,3149 }, { 98,3149 }, { 99,3149 }, { 100,3149 }, { 101,3149 }, { 102,3149 }, { 103,3149 }, { 104,3149 }, { 105,3149 }, { 106,3149 }, { 107,3149 }, { 108,3149 }, { 109,3149 }, { 110,3149 }, { 111,3149 }, { 112,3149 }, { 113,3149 }, { 114,3149 }, { 115,3149 }, { 116,3149 }, { 117,3149 }, { 118,3149 }, { 119,3149 }, { 120,3149 }, { 121,3149 }, { 122,3149 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 34,2597 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,2597 }, { 46,2597 }, { 47,2597 }, { 48,3057 }, { 49,3057 }, { 50,3057 }, { 51,3057 }, { 52,3057 }, { 53,3057 }, { 54,3057 }, { 55,3057 }, { 56,3057 }, { 57,3057 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,3057 }, { 66,3057 }, { 67,3057 }, { 68,3057 }, { 69,3057 }, { 70,3149 }, { 71,3057 }, { 72,3057 }, { 73,3057 }, { 74,3057 }, { 75,3057 }, { 76,3057 }, { 77,3057 }, { 78,3057 }, { 79,3057 }, { 80,3057 }, { 81,3057 }, { 82,3057 }, { 83,3149 }, { 84,3057 }, { 85,3057 }, { 86,3057 }, { 87,3057 }, { 88,3057 }, { 89,3057 }, { 90,3057 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,3057 }, { 0, 0 }, { 97,3057 }, { 98,3057 }, { 99,3057 }, { 100,3057 }, { 101,3057 }, { 102,3149 }, { 103,3057 }, { 104,3057 }, { 105,3057 }, { 106,3057 }, { 107,3057 }, { 108,3057 }, { 109,3057 }, { 110,3057 }, { 111,3057 }, { 112,3057 }, { 113,3057 }, { 114,3057 }, { 115,3149 }, { 116,3057 }, { 117,3057 }, { 118,3057 }, { 119,3057 }, { 120,3057 }, { 121,3057 }, { 122,3057 }, { 0, 15 }, { 0,4312 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,3149 }, { 10,-2390 }, { 0, 0 }, { 12,-2142 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,3149 }, { 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 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,3273 }, { 66,3273 }, { 67,3273 }, { 68,3273 }, { 69,3273 }, { 70,3273 }, { 71,3273 }, { 72,3273 }, { 73,3273 }, { 74,3273 }, { 75,3273 }, { 76,3273 }, { 77,3273 }, { 78,3273 }, { 79,3273 }, { 80,3273 }, { 81,3273 }, { 82,3273 }, { 83,3273 }, { 84,3273 }, { 85,3273 }, { 86,3273 }, { 87,3273 }, { 88,3273 }, { 89,3273 }, { 90,3273 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 97,3273 }, { 98,3273 }, { 99,3273 }, { 100,3273 }, { 101,3273 }, { 102,3273 }, { 103,3273 }, { 104,3273 }, { 105,3273 }, { 106,3273 }, { 107,3273 }, { 108,3273 }, { 109,3273 }, { 110,3273 }, { 111,3273 }, { 112,3273 }, { 113,3273 }, { 114,3273 }, { 115,3273 }, { 116,3273 }, { 117,3273 }, { 118,3273 }, { 119,3273 }, { 120,3273 }, { 121,3273 }, { 122,3273 }, { 0, 17 }, { 0,4188 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,-1792 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-1792 }, { 0, 0 }, { 34,2349 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,2349 }, { 46,2349 }, { 47,2349 }, { 48,2809 }, { 49,2809 }, { 50,2809 }, { 51,2809 }, { 52,2809 }, { 53,2809 }, { 54,2809 }, { 55,2809 }, { 56,2809 }, { 57,2809 }, { 58,-1790 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,3273 }, { 66,3273 }, { 67,3273 }, { 68,3273 }, { 69,3273 }, { 70,3273 }, { 71,3273 }, { 72,3273 }, { 73,3273 }, { 74,3273 }, { 75,3273 }, { 76,3273 }, { 77,3273 }, { 78,3273 }, { 79,3273 }, { 80,3273 }, { 81,3273 }, { 82,3273 }, { 83,3273 }, { 84,3273 }, { 85,3273 }, { 86,3273 }, { 87,3273 }, { 88,3273 }, { 89,3273 }, { 90,3273 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,2809 }, { 0, 0 }, { 97,3273 }, { 98,3273 }, { 99,3273 }, { 100,3273 }, { 101,3273 }, { 102,3273 }, { 103,3273 }, { 104,3273 }, { 105,3273 }, { 106,3273 }, { 107,3273 }, { 108,3273 }, { 109,3273 }, { 110,3273 }, { 111,3273 }, { 112,3273 }, { 113,3273 }, { 114,3273 }, { 115,3273 }, { 116,3273 }, { 117,3273 }, { 118,3273 }, { 119,3273 }, { 120,3273 }, { 121,3273 }, { 122,3273 }, { 0, 17 }, { 0,4064 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,-1916 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-1916 }, { 0, 0 }, { 34,2225 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,2225 }, { 46,2225 }, { 47,2225 }, { 48,2685 }, { 49,2685 }, { 50,2685 }, { 51,2685 }, { 52,2685 }, { 53,2685 }, { 54,2685 }, { 55,2685 }, { 56,2685 }, { 57,2685 }, { 58,-1914 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,3149 }, { 66,3149 }, { 67,3149 }, { 68,3149 }, { 69,3149 }, { 70,3273 }, { 71,3149 }, { 72,3149 }, { 73,3149 }, { 74,3149 }, { 75,3149 }, { 76,3149 }, { 77,3149 }, { 78,3149 }, { 79,3149 }, { 80,3149 }, { 81,3149 }, { 82,3149 }, { 83,3273 }, { 84,3149 }, { 85,3149 }, { 86,3149 }, { 87,3149 }, { 88,3149 }, { 89,3149 }, { 90,3149 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,2685 }, { 0, 0 }, { 97,3149 }, { 98,3149 }, { 99,3149 }, { 100,3149 }, { 101,3149 }, { 102,3273 }, { 103,3149 }, { 104,3149 }, { 105,3149 }, { 106,3149 }, { 107,3149 }, { 108,3149 }, { 109,3149 }, { 110,3149 }, { 111,3149 }, { 112,3149 }, { 113,3149 }, { 114,3149 }, { 115,3273 }, { 116,3149 }, { 117,3149 }, { 118,3149 }, { 119,3149 }, { 120,3149 }, { 121,3149 }, { 122,3149 }, { 0, 0 }, { 0,3940 }, { 1, 0 }, { 2, 0 }, { 3, 0 }, { 4, 0 }, { 5, 0 }, { 6, 0 }, { 7, 0 }, { 8, 0 }, { 9, 0 }, { 10,-2512 }, { 11, 0 }, { 12, 0 }, { 13, 0 }, { 14, 0 }, { 15, 0 }, { 16, 0 }, { 17, 0 }, { 18, 0 }, { 19, 0 }, { 20, 0 }, { 21, 0 }, { 22, 0 }, { 23, 0 }, { 24, 0 }, { 25, 0 }, { 26, 0 }, { 27, 0 }, { 28, 0 }, { 29, 0 }, { 30, 0 }, { 31, 0 }, { 32, 0 }, { 33, 0 }, { 34, 0 }, { 35, 0 }, { 36, 0 }, { 37, 0 }, { 38, 0 }, { 39, 0 }, { 40, 0 }, { 41, 0 }, { 42, 0 }, { 43, 0 }, { 44, 0 }, { 45, 0 }, { 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 58, 0 }, { 59, 0 }, { 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 91, 0 }, { 92, 0 }, { 93, 0 }, { 94, 0 }, { 95, 0 }, { 96, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 123, 0 }, { 124, 0 }, { 125, 0 }, { 126, 0 }, { 127, 0 }, { 128, 0 }, { 0, 0 }, { 0,3810 }, { 1, 0 }, { 2, 0 }, { 3, 0 }, { 4, 0 }, { 5, 0 }, { 6, 0 }, { 7, 0 }, { 8, 0 }, { 9, 0 }, { 10,-2640 }, { 11, 0 }, { 12, 0 }, { 13, 0 }, { 14, 0 }, { 15, 0 }, { 16, 0 }, { 17, 0 }, { 18, 0 }, { 19, 0 }, { 20, 0 }, { 21, 0 }, { 22, 0 }, { 23, 0 }, { 24, 0 }, { 25, 0 }, { 26, 0 }, { 27, 0 }, { 28, 0 }, { 29, 0 }, { 30, 0 }, { 31, 0 }, { 32, 0 }, { 33, 0 }, { 34,-2638 }, { 35, 0 }, { 36, 0 }, { 37, 0 }, { 38, 0 }, { 39, 0 }, { 40, 0 }, { 41, 0 }, { 42, 0 }, { 43, 0 }, { 44, 0 }, { 45, 0 }, { 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 58, 0 }, { 59, 0 }, { 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 91, 0 }, { 92, 0 }, { 93, 0 }, { 94, 0 }, { 95, 0 }, { 96, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 123, 0 }, { 124, 0 }, { 125, 0 }, { 126, 0 }, { 127, 0 }, { 128, 0 }, { 0, 0 }, { 0,3680 }, { 1, 0 }, { 2, 0 }, { 3, 0 }, { 4, 0 }, { 5, 0 }, { 6, 0 }, { 7, 0 }, { 8, 0 }, { 9, 0 }, { 10,-2766 }, { 11, 0 }, { 12, 0 }, { 13, 0 }, { 14, 0 }, { 15, 0 }, { 16, 0 }, { 17, 0 }, { 18, 0 }, { 19, 0 }, { 20, 0 }, { 21, 0 }, { 22, 0 }, { 23, 0 }, { 24, 0 }, { 25, 0 }, { 26, 0 }, { 27, 0 }, { 28, 0 }, { 29, 0 }, { 30, 0 }, { 31, 0 }, { 32, 0 }, { 33, 0 }, { 34, 0 }, { 35, 0 }, { 36, 0 }, { 37, 0 }, { 38, 0 }, { 39,-2760 }, { 40, 0 }, { 41, 0 }, { 42, 0 }, { 43, 0 }, { 44, 0 }, { 45, 0 }, { 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 58, 0 }, { 59, 0 }, { 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 91, 0 }, { 92, 0 }, { 93, 0 }, { 94, 0 }, { 95, 0 }, { 96, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 123, 0 }, { 124, 0 }, { 125, 0 }, { 126, 0 }, { 127, 0 }, { 128, 0 }, { 0, 0 }, { 0,3550 }, { 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 }, { 0,3536 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0,3514 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 46, 14 }, { 0, 0 }, { 48, 36 }, { 49, 36 }, { 50, 36 }, { 51, 36 }, { 52, 36 }, { 53, 36 }, { 54, 36 }, { 55, 36 }, { 56, 36 }, { 57, 36 }, { 44,2837 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,2869 }, { 49,2869 }, { 50,2869 }, { 51,2869 }, { 52,2869 }, { 53,2869 }, { 54,2869 }, { 55,2869 }, { 56,2869 }, { 57,2869 }, { 0, 9 }, { 0,3477 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 44,2815 }, { 0, 0 }, { 46, -22 }, { 69,2896 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 0, 8 }, { 0,3455 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 9 }, { 0,3444 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 101,2896 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48, 33 }, { 49, 33 }, { 50, 33 }, { 51, 33 }, { 52, 33 }, { 53, 33 }, { 54, 33 }, { 55, 33 }, { 56, 33 }, { 57, 33 }, { 0, 0 }, { 0, 0 }, { 0,3417 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 46, -22 }, { 69, 60 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 0, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 101, 60 }, { 69, 27 }, { 43,2787 }, { 0, 0 }, { 45,2787 }, { 0, 0 }, { 0, 0 }, { 48,2809 }, { 49,2809 }, { 50,2809 }, { 51,2809 }, { 52,2809 }, { 53,2809 }, { 54,2809 }, { 55,2809 }, { 56,2809 }, { 57,2809 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 101, 27 }, { 0, 0 }, { 0,3341 }, { 1, 0 }, { 2, 0 }, { 3, 0 }, { 4, 0 }, { 5, 0 }, { 6, 0 }, { 7, 0 }, { 8, 0 }, { 9, 0 }, { 10,-3097 }, { 11, 0 }, { 12, 0 }, { 13, 0 }, { 14, 0 }, { 15, 0 }, { 16, 0 }, { 17, 0 }, { 18, 0 }, { 19, 0 }, { 20, 0 }, { 21, 0 }, { 22, 0 }, { 23, 0 }, { 24, 0 }, { 25, 0 }, { 26, 0 }, { 27, 0 }, { 28, 0 }, { 29, 0 }, { 30, 0 }, { 31, 0 }, { 32, 0 }, { 33, 0 }, { 34, 0 }, { 35, 0 }, { 36, 0 }, { 37, 0 }, { 38, 0 }, { 39, 0 }, { 40, 0 }, { 41, 0 }, { 42, 0 }, { 43, 0 }, { 44, 0 }, { 45, 0 }, { 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 58, 0 }, { 59, 0 }, { 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 91, 0 }, { 92, 0 }, { 93, 0 }, { 94, 0 }, { 95, 0 }, { 96, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 123, 0 }, { 124, 0 }, { 125, 0 }, { 126, 0 }, { 127, 0 }, { 128, 0 }, { 0, 17 }, { 0,3211 }, { 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 }, { 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 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 0, 6 }, { 0,3119 }, { 0, 0 }, { 0, 0 }, { 95, 0 }, { 0, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 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, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48, -92 }, { 49, -92 }, { 50, -92 }, { 51, -92 }, { 52, -92 }, { 53, -92 }, { 54, -92 }, { 55, -92 }, { 56, -92 }, { 57, -92 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, -92 }, { 66, -92 }, { 67, -92 }, { 68, -92 }, { 69, -92 }, { 70, -92 }, { 71, -92 }, { 72, -92 }, { 73, -92 }, { 74, -92 }, { 75, -92 }, { 76, -92 }, { 77, -92 }, { 78, -92 }, { 79, -92 }, { 80, -92 }, { 81, -92 }, { 82, -92 }, { 83, -92 }, { 84, -92 }, { 85, -92 }, { 86, -92 }, { 87, -92 }, { 88, -92 }, { 89, -92 }, { 90, -92 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95, -92 }, { 0, 0 }, { 97, -92 }, { 98, -92 }, { 99, -92 }, { 100, -92 }, { 101, -92 }, { 102, -92 }, { 103, -92 }, { 104, -92 }, { 105, -92 }, { 106, -92 }, { 107, -92 }, { 108, -92 }, { 109, -92 }, { 110, -92 }, { 111, -92 }, { 112, -92 }, { 113, -92 }, { 114, -92 }, { 115, -92 }, { 116, -92 }, { 117, -92 }, { 118, -92 }, { 119, -92 }, { 120, -92 }, { 121, -92 }, { 122, -92 }, { 0, 22 }, { 0,2995 }, { 1, 0 }, { 2, 0 }, { 3, 0 }, { 4, 0 }, { 5, 0 }, { 6, 0 }, { 7, 0 }, { 8, 0 }, { 9, 0 }, { 0, 0 }, { 11, 0 }, { 12, 0 }, { 13, 0 }, { 14, 0 }, { 15, 0 }, { 16, 0 }, { 17, 0 }, { 18, 0 }, { 19, 0 }, { 20, 0 }, { 21, 0 }, { 22, 0 }, { 23, 0 }, { 24, 0 }, { 25, 0 }, { 26, 0 }, { 27, 0 }, { 28, 0 }, { 29, 0 }, { 30, 0 }, { 31, 0 }, { 32, 0 }, { 33, 0 }, { 34, 0 }, { 35, 0 }, { 36, 0 }, { 37, 0 }, { 38, 0 }, { 39, 0 }, { 40, 0 }, { 41, 0 }, { 42, 0 }, { 43, 0 }, { 44, 0 }, { 45, 0 }, { 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 58, 0 }, { 59, 0 }, { 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 91, 0 }, { 92, 0 }, { 93, 0 }, { 94, 0 }, { 95, 0 }, { 96, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 123, 0 }, { 124, 0 }, { 125, 0 }, { 126, 0 }, { 127, 0 }, { 128, 0 }, { 0, 15 }, { 0,2865 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9, 0 }, { 10,-3837 }, { 0, 0 }, { 12,-3589 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32, 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, 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, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, 124 }, { 66, 124 }, { 67, 124 }, { 68, 124 }, { 69, 124 }, { 70, 124 }, { 71, 124 }, { 72, 124 }, { 73, 124 }, { 74, 124 }, { 75, 124 }, { 76, 124 }, { 77, 124 }, { 78, 124 }, { 79, 124 }, { 80, 124 }, { 81, 124 }, { 82, 124 }, { 83, 124 }, { 84, 124 }, { 85, 124 }, { 86, 124 }, { 87, 124 }, { 88, 124 }, { 89, 124 }, { 90, 124 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 97, 124 }, { 98, 124 }, { 99, 124 }, { 100, 124 }, { 101, 124 }, { 102, 124 }, { 103, 124 }, { 104, 124 }, { 105, 124 }, { 106, 124 }, { 107, 124 }, { 108, 124 }, { 109, 124 }, { 110, 124 }, { 111, 124 }, { 112, 124 }, { 113, 124 }, { 114, 124 }, { 115, 124 }, { 116, 124 }, { 117, 124 }, { 118, 124 }, { 119, 124 }, { 120, 124 }, { 121, 124 }, { 122, 124 }, { 0, 0 }, { 0,2741 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,-3367 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-3367 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 58,-3365 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 0, 17 }, { 0,2617 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,-3491 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-3491 }, { 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 }, { 0, 0 }, { 0, 0 }, { 48,-594 }, { 49,-594 }, { 50,-594 }, { 51,-594 }, { 52,-594 }, { 53,-594 }, { 54,-594 }, { 55,-594 }, { 56,-594 }, { 57,-594 }, { 58,-3489 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,-594 }, { 0, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 0, 6 }, { 0,2493 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,-3615 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-3615 }, { 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 }, { 0, 0 }, { 0, 0 }, { 48,-718 }, { 49,-718 }, { 50,-718 }, { 51,-718 }, { 52,-718 }, { 53,-718 }, { 54,-718 }, { 55,-718 }, { 56,-718 }, { 57,-718 }, { 58,-3613 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,-124 }, { 66,-124 }, { 67,-124 }, { 68,-124 }, { 69,-124 }, { 70,-124 }, { 71,-124 }, { 72,-124 }, { 73,-124 }, { 74,-124 }, { 75,-124 }, { 76,-124 }, { 77,-124 }, { 78,-124 }, { 79,-124 }, { 80,-124 }, { 81,-124 }, { 82,-124 }, { 83,-124 }, { 84,-124 }, { 85,-124 }, { 86,-124 }, { 87,-124 }, { 88,-124 }, { 89,-124 }, { 90,-124 }, { 0, 17 }, { 0,2401 }, { 0, 0 }, { 0, 0 }, { 95,-718 }, { 0, 0 }, { 97,-124 }, { 98,-124 }, { 99,-124 }, { 100,-124 }, { 101,-124 }, { 102,-124 }, { 103,-124 }, { 104,-124 }, { 105,-124 }, { 106,-124 }, { 107,-124 }, { 108,-124 }, { 109,-124 }, { 110,-124 }, { 111,-124 }, { 112,-124 }, { 113,-124 }, { 114,-124 }, { 115,-124 }, { 116,-124 }, { 117,-124 }, { 118,-124 }, { 119,-124 }, { 120,-124 }, { 121,-124 }, { 122,-124 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,-810 }, { 49,-810 }, { 50,-810 }, { 51,-810 }, { 52,-810 }, { 53,-810 }, { 54,-810 }, { 55,-810 }, { 56,-810 }, { 57,-810 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,-810 }, { 66,-810 }, { 67,-810 }, { 68,-810 }, { 69,-810 }, { 70,-810 }, { 71,-810 }, { 72,-810 }, { 73,1808 }, { 74,-810 }, { 75,-810 }, { 76,1808 }, { 77,-810 }, { 78,-810 }, { 79,-810 }, { 80,-810 }, { 81,-810 }, { 82,-810 }, { 83,-810 }, { 84,-810 }, { 85,-810 }, { 86,-810 }, { 87,-810 }, { 88,-810 }, { 89,-810 }, { 90,-810 }, { 0, 4 }, { 0,2309 }, { 0, 0 }, { 0, 0 }, { 95,-810 }, { 0, 0 }, { 97,-810 }, { 98,-810 }, { 99,-810 }, { 100,-810 }, { 101,-810 }, { 102,-810 }, { 103,-810 }, { 104,-810 }, { 105,1808 }, { 106,-810 }, { 107,-810 }, { 108,1808 }, { 109,-810 }, { 110,-810 }, { 111,-810 }, { 112,-810 }, { 113,-810 }, { 114,-810 }, { 115,-810 }, { 116,-810 }, { 117,-810 }, { 118,-810 }, { 119,-810 }, { 120,-810 }, { 121,-810 }, { 122,-810 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,-902 }, { 49,-902 }, { 50,-902 }, { 51,-902 }, { 52,-902 }, { 53,-902 }, { 54,-902 }, { 55,-902 }, { 56,-902 }, { 57,-902 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,-902 }, { 66,-902 }, { 67,-902 }, { 68,-902 }, { 69,-902 }, { 70,-902 }, { 71,-902 }, { 72,-902 }, { 73,-902 }, { 74,-902 }, { 75,-902 }, { 76,-902 }, { 77,-902 }, { 78,-902 }, { 79,-902 }, { 80,-902 }, { 81,-902 }, { 82,-902 }, { 83,-902 }, { 84,-902 }, { 85,-902 }, { 86,-902 }, { 87,-902 }, { 88,-902 }, { 89,-902 }, { 90,-902 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,-902 }, { 0, 0 }, { 97,-902 }, { 98,-902 }, { 99,-902 }, { 100,-902 }, { 101,-902 }, { 102,-902 }, { 103,-902 }, { 104,-902 }, { 105,-902 }, { 106,-902 }, { 107,-902 }, { 108,-902 }, { 109,-902 }, { 110,-902 }, { 111,-902 }, { 112,-902 }, { 113,-902 }, { 114,-902 }, { 115,-902 }, { 116,-902 }, { 117,-902 }, { 118,-902 }, { 119,-902 }, { 120,-902 }, { 121,-902 }, { 122,-902 }, { 0, 15 }, { 0,2185 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9, 0 }, { 10,-4517 }, { 0, 0 }, { 12,-4269 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32, 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, 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, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,-3919 }, { 66,-3919 }, { 67,-3919 }, { 68,-3919 }, { 69,-3919 }, { 70,-3919 }, { 71,-3919 }, { 72,-3919 }, { 73,-3919 }, { 74,-3919 }, { 75,-3919 }, { 76,-3919 }, { 77,-3919 }, { 78,-3919 }, { 79,-3919 }, { 80,-3919 }, { 81,-3919 }, { 82,-3919 }, { 83,-3919 }, { 84,-3919 }, { 85,-3919 }, { 86,-3919 }, { 87,-3919 }, { 88,-3919 }, { 89,-3919 }, { 90,-3919 }, { 0, 11 }, { 0,2093 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 97,-3919 }, { 98,-3919 }, { 99,-3919 }, { 100,-3919 }, { 101,-3919 }, { 102,-3919 }, { 103,-3919 }, { 104,-3919 }, { 105,-3919 }, { 106,-3919 }, { 107,-3919 }, { 108,-3919 }, { 109,-3919 }, { 110,-3919 }, { 111,-3919 }, { 112,-3919 }, { 113,-3919 }, { 114,-3919 }, { 115,-3919 }, { 116,-3919 }, { 117,-3919 }, { 118,-3919 }, { 119,-3919 }, { 120,-3919 }, { 121,-3919 }, { 122,-3919 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 34, 254 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45, 254 }, { 46, 254 }, { 47, 254 }, { 48, 254 }, { 49, 254 }, { 50, 254 }, { 51, 254 }, { 52, 254 }, { 53, 254 }, { 54, 254 }, { 55, 254 }, { 56, 254 }, { 57, 254 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, 254 }, { 66, 254 }, { 67, 254 }, { 68, 254 }, { 69, 254 }, { 70, 254 }, { 71, 254 }, { 72, 254 }, { 73, 254 }, { 74, 254 }, { 75, 254 }, { 76, 254 }, { 77, 254 }, { 78, 254 }, { 79, 254 }, { 80, 254 }, { 81, 254 }, { 82, 254 }, { 83, 254 }, { 84, 254 }, { 85, 254 }, { 86, 254 }, { 87, 254 }, { 88, 254 }, { 89, 254 }, { 90, 254 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95, 254 }, { 0, 0 }, { 97, 254 }, { 98, 254 }, { 99, 254 }, { 100, 254 }, { 101, 254 }, { 102, 254 }, { 103, 254 }, { 104, 254 }, { 105, 254 }, { 106, 254 }, { 107, 254 }, { 108, 254 }, { 109, 254 }, { 110, 254 }, { 111, 254 }, { 112, 254 }, { 113, 254 }, { 114, 254 }, { 115, 254 }, { 116, 254 }, { 117, 254 }, { 118, 254 }, { 119, 254 }, { 120, 254 }, { 121, 254 }, { 122, 254 }, { 0, 18 }, { 0,1969 }, { 1,-1841 }, { 2,-1841 }, { 3,-1841 }, { 4,-1841 }, { 5,-1841 }, { 6,-1841 }, { 7,-1841 }, { 8,-1841 }, { 9,-1841 }, { 10,-4481 }, { 11,-1841 }, { 12,-1841 }, { 13,-1841 }, { 14,-1841 }, { 15,-1841 }, { 16,-1841 }, { 17,-1841 }, { 18,-1841 }, { 19,-1841 }, { 20,-1841 }, { 21,-1841 }, { 22,-1841 }, { 23,-1841 }, { 24,-1841 }, { 25,-1841 }, { 26,-1841 }, { 27,-1841 }, { 28,-1841 }, { 29,-1841 }, { 30,-1841 }, { 31,-1841 }, { 32,-1841 }, { 33,-1841 }, { 34,-124 }, { 35,-1841 }, { 36,-1841 }, { 37,-1841 }, { 38,-1841 }, { 39,-1841 }, { 40,-1841 }, { 41,-1841 }, { 42,-1841 }, { 43,-1841 }, { 44,-1841 }, { 45, 0 }, { 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 58,-1841 }, { 59,-1841 }, { 60,-1841 }, { 61,-1841 }, { 62,-1841 }, { 63,-1841 }, { 64,-1841 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 91,-1841 }, { 92,-1841 }, { 93,-1841 }, { 94,-1841 }, { 95, 0 }, { 96,-1841 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 123,-1841 }, { 124,-1841 }, { 125,-1841 }, { 126,-1841 }, { 127,-1841 }, { 128,-1841 }, { 0, 18 }, { 0,1839 }, { 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 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 34, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45, 0 }, { 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 0, 9 }, { 0,1747 }, { 0, 0 }, { 0, 0 }, { 95, 0 }, { 0, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 34, -92 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45, -92 }, { 46, -92 }, { 47, -92 }, { 48, 184 }, { 49, 184 }, { 50, 184 }, { 51, 184 }, { 52, 184 }, { 53, 184 }, { 54, 184 }, { 55, 184 }, { 56, 184 }, { 57, 184 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, -92 }, { 66, -92 }, { 67, -92 }, { 68, -92 }, { 69, 276 }, { 70, -92 }, { 71, -92 }, { 72, -92 }, { 73, -92 }, { 74, -92 }, { 75, -92 }, { 76, -92 }, { 77, -92 }, { 78, -92 }, { 79, -92 }, { 80, -92 }, { 81, -92 }, { 82, -92 }, { 83, -92 }, { 84, -92 }, { 85, -92 }, { 86, -92 }, { 87, -92 }, { 88, -92 }, { 89, -92 }, { 90, -92 }, { 0, 8 }, { 0,1655 }, { 0, 0 }, { 0, 0 }, { 95, -92 }, { 0, 0 }, { 97, -92 }, { 98, -92 }, { 99, -92 }, { 100, -92 }, { 101, 276 }, { 102, -92 }, { 103, -92 }, { 104, -92 }, { 105, -92 }, { 106, -92 }, { 107, -92 }, { 108, -92 }, { 109, -92 }, { 110, -92 }, { 111, -92 }, { 112, -92 }, { 113, -92 }, { 114, -92 }, { 115, -92 }, { 116, -92 }, { 117, -92 }, { 118, -92 }, { 119, -92 }, { 120, -92 }, { 121, -92 }, { 122, -92 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 34,-184 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,-184 }, { 46, -92 }, { 47,-184 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,-184 }, { 66,-184 }, { 67,-184 }, { 68,-184 }, { 69,-184 }, { 70,-184 }, { 71,-184 }, { 72,-184 }, { 73,-184 }, { 74,-184 }, { 75,-184 }, { 76,-184 }, { 77,-184 }, { 78,-184 }, { 79,-184 }, { 80,-184 }, { 81,-184 }, { 82,-184 }, { 83,-184 }, { 84,-184 }, { 85,-184 }, { 86,-184 }, { 87,-184 }, { 88,-184 }, { 89,-184 }, { 90,-184 }, { 0, 9 }, { 0,1563 }, { 0, 0 }, { 0, 0 }, { 95,-184 }, { 0, 0 }, { 97,-184 }, { 98,-184 }, { 99,-184 }, { 100,-184 }, { 101,-184 }, { 102,-184 }, { 103,-184 }, { 104,-184 }, { 105,-184 }, { 106,-184 }, { 107,-184 }, { 108,-184 }, { 109,-184 }, { 110,-184 }, { 111,-184 }, { 112,-184 }, { 113,-184 }, { 114,-184 }, { 115,-184 }, { 116,-184 }, { 117,-184 }, { 118,-184 }, { 119,-184 }, { 120,-184 }, { 121,-184 }, { 122,-184 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 34,-276 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,-276 }, { 46,-276 }, { 47,-276 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,-276 }, { 66,-276 }, { 67,-276 }, { 68,-276 }, { 69, 92 }, { 70,-276 }, { 71,-276 }, { 72,-276 }, { 73,-276 }, { 74,-276 }, { 75,-276 }, { 76,-276 }, { 77,-276 }, { 78,-276 }, { 79,-276 }, { 80,-276 }, { 81,-276 }, { 82,-276 }, { 83,-276 }, { 84,-276 }, { 85,-276 }, { 86,-276 }, { 87,-276 }, { 88,-276 }, { 89,-276 }, { 90,-276 }, { 0, 18 }, { 0,1471 }, { 0, 0 }, { 0, 0 }, { 95,-276 }, { 0, 0 }, { 97,-276 }, { 98,-276 }, { 99,-276 }, { 100,-276 }, { 101, 92 }, { 102,-276 }, { 103,-276 }, { 104,-276 }, { 105,-276 }, { 106,-276 }, { 107,-276 }, { 108,-276 }, { 109,-276 }, { 110,-276 }, { 111,-276 }, { 112,-276 }, { 113,-276 }, { 114,-276 }, { 115,-276 }, { 116,-276 }, { 117,-276 }, { 118,-276 }, { 119,-276 }, { 120,-276 }, { 121,-276 }, { 122,-276 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 34,-368 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 43, 841 }, { 0, 0 }, { 45, 970 }, { 46,-368 }, { 47,-368 }, { 48,1062 }, { 49,1062 }, { 50,1062 }, { 51,1062 }, { 52,1062 }, { 53,1062 }, { 54,1062 }, { 55,1062 }, { 56,1062 }, { 57,1062 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,-368 }, { 66,-368 }, { 67,-368 }, { 68,-368 }, { 69,-368 }, { 70,-368 }, { 71,-368 }, { 72,-368 }, { 73,-368 }, { 74,-368 }, { 75,-368 }, { 76,-368 }, { 77,-368 }, { 78,-368 }, { 79,-368 }, { 80,-368 }, { 81,-368 }, { 82,-368 }, { 83,-368 }, { 84,-368 }, { 85,-368 }, { 86,-368 }, { 87,-368 }, { 88,-368 }, { 89,-368 }, { 90,-368 }, { 0, 17 }, { 0,1379 }, { 0, 0 }, { 0, 0 }, { 95,-368 }, { 0, 0 }, { 97,-368 }, { 98,-368 }, { 99,-368 }, { 100,-368 }, { 101,-368 }, { 102,-368 }, { 103,-368 }, { 104,-368 }, { 105,-368 }, { 106,-368 }, { 107,-368 }, { 108,-368 }, { 109,-368 }, { 110,-368 }, { 111,-368 }, { 112,-368 }, { 113,-368 }, { 114,-368 }, { 115,-368 }, { 116,-368 }, { 117,-368 }, { 118,-368 }, { 119,-368 }, { 120,-368 }, { 121,-368 }, { 122,-368 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 34,-460 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,-460 }, { 46,-460 }, { 47,-460 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 0, 6 }, { 0,1287 }, { 0, 0 }, { 0, 0 }, { 95, 0 }, { 0, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 34,-552 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,-552 }, { 46,-552 }, { 47,-552 }, { 48, -92 }, { 49, -92 }, { 50, -92 }, { 51, -92 }, { 52, -92 }, { 53, -92 }, { 54, -92 }, { 55, -92 }, { 56, -92 }, { 57, -92 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, -92 }, { 66, -92 }, { 67, -92 }, { 68, -92 }, { 69, -92 }, { 70, -92 }, { 71, -92 }, { 72, -92 }, { 73, -92 }, { 74, -92 }, { 75, -92 }, { 76, -92 }, { 77, -92 }, { 78, -92 }, { 79, -92 }, { 80, -92 }, { 81, -92 }, { 82, -92 }, { 83, -92 }, { 84, -92 }, { 85, -92 }, { 86, -92 }, { 87, -92 }, { 88, -92 }, { 89, -92 }, { 90, -92 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95, -92 }, { 0, 0 }, { 97, -92 }, { 98, -92 }, { 99, -92 }, { 100, -92 }, { 101, -92 }, { 102, -92 }, { 103, -92 }, { 104, -92 }, { 105, -92 }, { 106, -92 }, { 107, -92 }, { 108, -92 }, { 109, -92 }, { 110, -92 }, { 111, -92 }, { 112, -92 }, { 113, -92 }, { 114, -92 }, { 115, -92 }, { 116, -92 }, { 117, -92 }, { 118, -92 }, { 119, -92 }, { 120, -92 }, { 121, -92 }, { 122, -92 }, { 0, 15 }, { 0,1163 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9, 0 }, { 10,-5539 }, { 0, 0 }, { 12,-5291 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32, 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, 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, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, 124 }, { 66, 124 }, { 67, 124 }, { 68, 124 }, { 69, 124 }, { 70, 124 }, { 71, 124 }, { 72, 124 }, { 73, 124 }, { 74, 124 }, { 75, 124 }, { 76, 124 }, { 77, 124 }, { 78, 124 }, { 79, 124 }, { 80, 124 }, { 81, 124 }, { 82, 124 }, { 83, 124 }, { 84, 124 }, { 85, 124 }, { 86, 124 }, { 87, 124 }, { 88, 124 }, { 89, 124 }, { 90, 124 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 97, 124 }, { 98, 124 }, { 99, 124 }, { 100, 124 }, { 101, 124 }, { 102, 124 }, { 103, 124 }, { 104, 124 }, { 105, 124 }, { 106, 124 }, { 107, 124 }, { 108, 124 }, { 109, 124 }, { 110, 124 }, { 111, 124 }, { 112, 124 }, { 113, 124 }, { 114, 124 }, { 115, 124 }, { 116, 124 }, { 117, 124 }, { 118, 124 }, { 119, 124 }, { 120, 124 }, { 121, 124 }, { 122, 124 }, { 0, 0 }, { 0,1039 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,-4941 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-4941 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 58,-4939 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 0, 17 }, { 0, 915 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,-5065 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-5065 }, { 0, 0 }, { 34,-924 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,-924 }, { 46,-924 }, { 47,-924 }, { 48,-464 }, { 49,-464 }, { 50,-464 }, { 51,-464 }, { 52,-464 }, { 53,-464 }, { 54,-464 }, { 55,-464 }, { 56,-464 }, { 57,-464 }, { 58,-5063 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 }, { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 }, { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 }, { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 }, { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 }, { 90, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 95,-464 }, { 0, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 }, { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 }, { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 }, { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 }, { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 }, { 120, 0 }, { 121, 0 }, { 122, 0 }, { 0, 6 }, { 0, 791 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 9,-5189 }, { 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 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 32,-5189 }, { 0, 0 }, { 34,-1048 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,-1048 }, { 46,-1048 }, { 47,-1048 }, { 48,-588 }, { 49,-588 }, { 50,-588 }, { 51,-588 }, { 52,-588 }, { 53,-588 }, { 54,-588 }, { 55,-588 }, { 56,-588 }, { 57,-588 }, { 58,-5187 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,-124 }, { 66,-124 }, { 67,-124 }, { 68,-124 }, { 69,-124 }, { 70,-124 }, { 71,-124 }, { 72,-124 }, { 73,-124 }, { 74,-124 }, { 75,-124 }, { 76,-124 }, { 77,-124 }, { 78,-124 }, { 79,-124 }, { 80,-124 }, { 81,-124 }, { 82,-124 }, { 83,-124 }, { 84,-124 }, { 85,-124 }, { 86,-124 }, { 87,-124 }, { 88,-124 }, { 89,-124 }, { 90,-124 }, { 0, 0 }, { 0, 699 }, { 0, 0 }, { 0, 0 }, { 95,-588 }, { 0, 0 }, { 97,-124 }, { 98,-124 }, { 99,-124 }, { 100,-124 }, { 101,-124 }, { 102,-124 }, { 103,-124 }, { 104,-124 }, { 105,-124 }, { 106,-124 }, { 107,-124 }, { 108,-124 }, { 109,-124 }, { 110,-124 }, { 111,-124 }, { 112,-124 }, { 113,-124 }, { 114,-124 }, { 115,-124 }, { 116,-124 }, { 117,-124 }, { 118,-124 }, { 119,-124 }, { 120,-124 }, { 121,-124 }, { 122,-124 }, { 0, 0 }, { 0, 667 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45, 382 }, { 46, 414 }, { 0, 0 }, { 48, 441 }, { 49, 441 }, { 50, 441 }, { 51, 441 }, { 52, 441 }, { 53, 441 }, { 54, 441 }, { 55, 441 }, { 56, 441 }, { 57, 441 }, { 0, 0 }, { 0, 640 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 630 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 44, -32 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 0, 9 }, { 0, 608 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 69, 27 }, { 43, 392 }, { 0, 0 }, { 45, 392 }, { 0, 5 }, { 0, 593 }, { 48, 414 }, { 49, 414 }, { 50, 414 }, { 51, 414 }, { 52, 414 }, { 53, 414 }, { 54, 414 }, { 55, 414 }, { 56, 414 }, { 57, 414 }, { 48, 22 }, { 49, 22 }, { 50, 22 }, { 51, 22 }, { 52, 22 }, { 53, 22 }, { 54, 22 }, { 55, 22 }, { 56, 22 }, { 57, 22 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 101, 27 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48,-2618 }, { 49,-2618 }, { 50,-2618 }, { 51,-2618 }, { 52,-2618 }, { 53,-2618 }, { 54,-2618 }, { 55,-2618 }, { 56,-2618 }, { 57,-2618 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,-2618 }, { 66,-2618 }, { 67,-2618 }, { 68,-2618 }, { 69,-2618 }, { 70,-2618 }, { 71,-2618 }, { 72,-2618 }, { 73,-2618 }, { 74,-2618 }, { 75,-2618 }, { 76,-2618 }, { 77,-2618 }, { 78,-2618 }, { 79,-2618 }, { 80,-2618 }, { 81,-2618 }, { 82,-2618 }, { 83,-2618 }, { 84,-2618 }, { 85,-2618 }, { 86,-2618 }, { 87,-2618 }, { 88,-2618 }, { 89,-2618 }, { 90,-2618 }, { 0, 18 }, { 0, 501 }, { 0, 0 }, { 0, 0 }, { 95,-2618 }, { 0, 0 }, { 97,-2618 }, { 98,-2618 }, { 99,-2618 }, { 100,-2618 }, { 101,-2618 }, { 102,-2618 }, { 103,-2618 }, { 104,-2618 }, { 105,-2618 }, { 106,-2618 }, { 107,-2618 }, { 108,-2618 }, { 109,-2618 }, { 110,-2618 }, { 111,-2618 }, { 112,-2618 }, { 113,-2618 }, { 114,-2618 }, { 115,-2618 }, { 116,-2618 }, { 117,-2618 }, { 118,-2618 }, { 119,-2618 }, { 120,-2618 }, { 121,-2618 }, { 122,-2618 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 34,-1338 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,-1338 }, { 46,-1338 }, { 47,-1338 }, { 48, 92 }, { 49, 92 }, { 50, 92 }, { 51, 92 }, { 52, 92 }, { 53, 92 }, { 54, 92 }, { 55, 92 }, { 56, 92 }, { 57, 92 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,-1338 }, { 66,-1338 }, { 67,-1338 }, { 68,-1338 }, { 69,-1338 }, { 70,-1338 }, { 71,-1338 }, { 72,-1338 }, { 73,-1338 }, { 74,-1338 }, { 75,-1338 }, { 76,-1338 }, { 77,-1338 }, { 78,-1338 }, { 79,-1338 }, { 80,-1338 }, { 81,-1338 }, { 82,-1338 }, { 83,-1338 }, { 84,-1338 }, { 85,-1338 }, { 86,-1338 }, { 87,-1338 }, { 88,-1338 }, { 89,-1338 }, { 90,-1338 }, { 0, 9 }, { 0, 409 }, { 0, 0 }, { 0, 0 }, { 95,-1338 }, { 0, 0 }, { 97,-1338 }, { 98,-1338 }, { 99,-1338 }, { 100,-1338 }, { 101,-1338 }, { 102,-1338 }, { 103,-1338 }, { 104,-1338 }, { 105,-1338 }, { 106,-1338 }, { 107,-1338 }, { 108,-1338 }, { 109,-1338 }, { 110,-1338 }, { 111,-1338 }, { 112,-1338 }, { 113,-1338 }, { 114,-1338 }, { 115,-1338 }, { 116,-1338 }, { 117,-1338 }, { 118,-1338 }, { 119,-1338 }, { 120,-1338 }, { 121,-1338 }, { 122,-1338 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 34,-1430 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 45,-1430 }, { 46,-1430 }, { 47,-1430 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 65,-1430 }, { 66,-1430 }, { 67,-1430 }, { 68,-1430 }, { 69,-1430 }, { 70,-1430 }, { 71,-1430 }, { 72,-1430 }, { 73,-1430 }, { 74,-1430 }, { 75,-1430 }, { 76,-1430 }, { 77,-1430 }, { 78,-1430 }, { 79,-1430 }, { 80,-1430 }, { 81,-1430 }, { 82,-1430 }, { 83,-1430 }, { 84,-1430 }, { 85,-1430 }, { 86,-1430 }, { 87,-1430 }, { 88,-1430 }, { 89,-1430 }, { 90,-1430 }, { 0, 0 }, { 0, 317 }, { 0, 0 }, { 0, 0 }, { 95,-1430 }, { 0, 0 }, { 97,-1430 }, { 98,-1430 }, { 99,-1430 }, { 100,-1430 }, { 101,-1430 }, { 102,-1430 }, { 103,-1430 }, { 104,-1430 }, { 105,-1430 }, { 106,-1430 }, { 107,-1430 }, { 108,-1430 }, { 109,-1430 }, { 110,-1430 }, { 111,-1430 }, { 112,-1430 }, { 113,-1430 }, { 114,-1430 }, { 115,-1430 }, { 116,-1430 }, { 117,-1430 }, { 118,-1430 }, { 119,-1430 }, { 120,-1430 }, { 121,-1430 }, { 122,-1430 }, { 0, 0 }, { 0, 285 }, { 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 }, { 46, 32 }, { 0, 0 }, { 48, 59 }, { 49, 59 }, { 50, 59 }, { 51, 59 }, { 52, 59 }, { 53, 59 }, { 54, 59 }, { 55, 59 }, { 56, 59 }, { 57, 59 }, { 0, 0 }, { 0, 258 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 248 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 41,-5688 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48, 96 }, { 49, 96 }, { 50, 96 }, { 51, 96 }, { 52, 96 }, { 53, 96 }, { 54, 96 }, { 55, 96 }, { 56, 96 }, { 57, 96 }, { 0, 0 }, { 0, 226 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 41,-5715 }, { 69, 118 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 46, -27 }, { 0, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 48, 22 }, { 49, 22 }, { 50, 22 }, { 51, 22 }, { 52, 22 }, { 53, 22 }, { 54, 22 }, { 55, 22 }, { 56, 22 }, { 57, 22 }, { 0, 0 }, { 0, 189 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 101, 118 }, { 0, 0 }, { 44,-473 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 0, 0 }, { 0, 167 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 157 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 41,-5784 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 }, { 0, 0 }, { 0, 130 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 43, 10 }, { 0, 0 }, { 45, 10 }, { 0, 0 }, { 69, 22 }, { 48, 37 }, { 49, 37 }, { 50, 37 }, { 51, 37 }, { 52, 37 }, { 53, 37 }, { 54, 37 }, { 55, 37 }, { 56, 37 }, { 57, 37 }, { 48, 27 }, { 49, 27 }, { 50, 27 }, { 51, 27 }, { 52, 27 }, { 53, 27 }, { 54, 27 }, { 55, 27 }, { 56, 27 }, { 57, 27 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 41,-5843 }, { 101, 22 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 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, 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, 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, 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, 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, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 129, 26 }, { 1, 0 }, }; static yyconst struct yy_trans_info *yy_start_state_list[11] = { &yy_transition[1], &yy_transition[3], &yy_transition[133], &yy_transition[263], &yy_transition[393], &yy_transition[523], &yy_transition[653], &yy_transition[783], &yy_transition[913], &yy_transition[1043], &yy_transition[1173], } ; static yy_state_type yy_last_accepting_state; static char *yy_last_accepting_cpos; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "s3_lexer.l" #define INITIAL 0 #line 2 "s3_lexer.l" /************************************************************************* * * (c) Copyright 1992,1993,1994 by G & A Technical Software, Inc., * 28 Research Drive, Hampton, Virginia, 23666. * * All Rights Reserved. No part of this software or publication may be * reproduced, stored in a retrieval system, or transmitted, in any form * or by any means, electronic, mechanical, photocopying, recording, or * otherwise without the prior written permission of G & A Technical * Software, Inc. * ************************************************************************* * * Filename: s3_lexer.l * * Purpose: Provides the lexical analyser front-end to the S3 grammar parser * s3_parser.y * * Author: John Burton * * Date: 5/31/94 * ************************************************************************* * * Modification History: * * $Log: s3_lexer.l,v $ * Revision 2.1 1994/07/08 17:52:22 jcburt * Updated typedefs, defines and function protypes to allow recursive * parsing of pct files. Enabled use of sub-PDT files and scoping of * datasets. Datasets used in a pct must be defined either in the * associated pdt file or the pdt file associated with the direct * ancestors of the current pct file. * * DataSet functions and subroutines now have an additional parameter * passed to them, indicating the number of parameters passed in the * dataset list, i.e. was: function(DataSet **dl) * now: function(int nargs, DataSet **dl) * Parameters passed to the dataset routines from the PCT level are all * still contained in the dataset list, nargs is during the function or * subroutine call from s3_exec_enode * * Revision 2.0.0.1 1994/06/28 18:48:26 jcburt * S3 Version 2.0 Initial Source * * ************************************************************************* * * Revision Control Information: */ static char rcsid[] = "$Id: s3_lexer.l,v 2.1 1994/07/08 17:52:22 jcburt Exp $"; static char rcsrev[] = "$Revision: 2.1 $"; /************************************************************************* * * Include Files * *************************************************************************/ #include "s3_defines.h" #include "s3_typedefs.h" #include "s3_externals.h" #include "s3_globals.h" #include "s3_parser.tab.h" #include #include "s3_lexer_globals.h" /************************************************************************* * * Defines and Macros * *************************************************************************/ #define MAX_QUEUE 64 #define YY_USER_INIT if(first_pass)\ {\ first_pass = 0;\ switch(parser_start_type) \ { \ case PARSE_CON: \ BEGIN CON; \ return START_CON; \ break; \ case PARSE_EMT: \ BEGIN EMT; \ return START_EMT; \ break; \ case PARSE_PDT: \ BEGIN PDT; \ return START_PDT; \ break; \ case PARSE_PCT: \ BEGIN PCT; \ return START_PCT; \ break; \ }\ } #undef YY_DECL #define YY_DECL int yylex (YYSTYPE *lvalp) /************************************************************************* * * Global Variables and Function Prototypes * *************************************************************************/ extern int yyparse(); typedef struct stack_entry{ ST_entry *entry; YY_BUFFER_STATE state; int tokenpos; int lineno; struct stack_entry *previous; } Stack_Entry; typedef struct { Stack_Entry *top; } Stack_Type; Stack_Type state_stack = {NULL}; ST_entry *state_queue[MAX_QUEUE]; int queue_ptr = 0; int queue_end = 0; static int first_pass = 1; typedef struct { char *name; int ptype; int type; } S3_stmt_type; S3_stmt_type PDT_type[] = { "BYTE", DS, BYTE, "CHAR", DS, CHAR, "STRING", DS, STRING, "INT", DS, INT, "REAL", DS, REAL, "DREAL", DS, DREAL, "COMP", DS, COMP, "DCOMP", DS, DCOMP, "CONST", CT, CONST, "STATIC", SC, STATIC, "GROUP", GP, GROUP }; S3_stmt_type EMT_type[] = { "SPCT", PN, PNODE, "PROC", PR, PROC, "OBJS", OB, OBJS, "LIBS", LB, LIBS }; S3_stmt_type PCT_type[] = { "PN", PN, PNODE, "CF", EN, CFUNC, "CS", EN, CSUBR, "DF", EN, DFUNC, "DS", EN, DSUBR, "FF", EN, FFUNC, "FS", EN, FSUBR, "EOL", EXOL, EXOL, "EOI", EXOI, EXOI }; #define PDT 1 #define PCT 2 #define EMT 3 #define CON 4 /* 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 = NULL, *yy_bp = NULL; register int yy_act; #line 180 "s3_lexer.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_state_list[yy_start + YY_AT_BOL()]; yy_match: { register yyconst struct yy_trans_info *yy_trans_info; register YY_CHAR yy_c; for ( yy_c = YY_SC_TO_UI(*yy_cp); (yy_trans_info = &yy_current_state[(unsigned int) yy_c])-> yy_verify == yy_c; yy_c = YY_SC_TO_UI(*++yy_cp) ) { yy_current_state += yy_trans_info->yy_nxt; if ( yy_current_state[-1].yy_nxt ) { yy_last_accepting_state = yy_current_state; yy_last_accepting_cpos = yy_cp; } } } yy_find_action: yy_act = yy_current_state[-1].yy_nxt; YY_DO_BEFORE_ACTION; do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = yy_hold_char; yy_cp = yy_last_accepting_cpos + 1; yy_current_state = yy_last_accepting_state; goto yy_find_action; case 1: *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 182 "s3_lexer.l" { int ndtypes = sizeof(EMT_type) / sizeof(S3_stmt_type); int i,j,len; char *tmp; fprintf(stderr,"EMT - yytext = %s\n",yytext); Tokenpos += yyleng; fprintf(stderr,"EMT - yytext = %s\n",yytext); tmp = strsave(yytext); len = strlen(tmp); fprintf(stderr,"EMT - tmp = %s\n",tmp); for(i=0,j=0;iival = EMT_type[i].type; return (EMT_type[i].ptype); } YY_BREAK case 2: YY_RULE_SETUP #line 206 "s3_lexer.l" { Tokenpos += yyleng; return POW;} YY_BREAK case 3: *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 209 "s3_lexer.l" { int ndtypes = sizeof(PDT_type) / sizeof(S3_stmt_type); int i,j,len; char *tmp; Tokenpos += yyleng; tmp = strsave(yytext); len = strlen(tmp); for(i=0,j=0;iival = PDT_type[i].type; return (PDT_type[i].ptype); } YY_BREAK case 4: YY_RULE_SETUP #line 230 "s3_lexer.l" { int ndtypes = sizeof(PCT_type) / sizeof(S3_stmt_type); int i,len; char *tmp; Tokenpos += yyleng; lvalp->ival = PNODE; return (PN); } YY_BREAK case 5: YY_RULE_SETUP #line 239 "s3_lexer.l" {int ndtypes = sizeof(PCT_type) / sizeof(S3_stmt_type); int i,len; char *tmp; Tokenpos += yyleng; tmp = strsave(yytext); len = strlen(tmp); for(i=0;iival = PCT_type[i].type; return (PCT_type[i].ptype); } YY_BREAK case 6: YY_RULE_SETUP #line 260 "s3_lexer.l" { int ndtypes = sizeof(PCT_type) / sizeof(S3_stmt_type); int i,len; char *tmp; Tokenpos += yyleng; tmp = strsave(yytext); len = strlen(tmp); for(i=0;iival = PCT_type[i].type; if((lvalp->ival == FSUBR)||(lvalp->ival == FFUNC)) CaseSensitive = FALSE; else CaseSensitive = TRUE; return (PCT_type[i].ptype); } YY_BREAK case 7: *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 283 "s3_lexer.l" { Tokenpos += yyleng; lvalp->cstr = strsave(yytext); return SLABEL; } YY_BREAK case 8: YY_RULE_SETUP #line 288 "s3_lexer.l" { Tokenpos += yyleng; lvalp->ival = atoi(yytext); return IVALUE; } YY_BREAK case 9: YY_RULE_SETUP #line 293 "s3_lexer.l" { Tokenpos += yyleng; lvalp->rval = atof(yytext); return RVALUE; } YY_BREAK case 10: YY_RULE_SETUP #line 298 "s3_lexer.l" { Tokenpos += yyleng; scanf(yytext,"(%f,%f)",&(lvalp->cval.r),&(lvalp->cval.i)); return CVALUE; } YY_BREAK case 11: YY_RULE_SETUP #line 303 "s3_lexer.l" { Tokenpos += yyleng; lvalp->cstr = strsave(yytext+1); lvalp->cstr[strlen(lvalp->cstr)-1] = '\0'; return CHRSTR; } YY_BREAK case 12: *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 309 "s3_lexer.l" { Tokenpos += yyleng; yyerror("Unterminated string - %s",yytext); lvalp->cstr = strsave(yytext+1); lvalp->cstr[strlen(lvalp->cstr)-1] = '\0'; return CHRSTR; } YY_BREAK case 13: YY_RULE_SETUP #line 317 "s3_lexer.l" { Tokenpos += yyleng; lvalp->cstr = strsave(yytext+1); lvalp->cstr[strlen(lvalp->cstr)-1] = '\0'; return CHRSTR; } YY_BREAK case 14: *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 323 "s3_lexer.l" { Tokenpos += yyleng; yyerror("Unterminated string - %s",yytext); lvalp->cstr = strsave(yytext+1); lvalp->cstr[strlen(lvalp->cstr)-1] = '\0'; return CHRSTR; } YY_BREAK case 15: YY_RULE_SETUP #line 331 "s3_lexer.l" {Tokenpos += yyleng;} /* ignore white space */ YY_BREAK case 16: YY_RULE_SETUP #line 333 "s3_lexer.l" { Tokenpos += yyleng; Lineno++; } YY_BREAK case 17: YY_RULE_SETUP #line 337 "s3_lexer.l" { /* return symbol pointer */ Tokenpos += yyleng; lvalp->cstr = strsave(yytext); return SYMBOL; } YY_BREAK case 18: YY_RULE_SETUP #line 343 "s3_lexer.l" { /* File pathname */ Tokenpos += yyleng; lvalp->cstr = strsave(yytext); return PATHNAME; } YY_BREAK case 19: YY_RULE_SETUP #line 349 "s3_lexer.l" { Tokenpos += yyleng; } YY_BREAK case 20: YY_RULE_SETUP #line 353 "s3_lexer.l" { Tokenpos += yyleng; return EOS; } YY_BREAK case 21: YY_RULE_SETUP #line 357 "s3_lexer.l" { Tokenpos += yyleng; return EOS; } YY_BREAK case 22: YY_RULE_SETUP #line 362 "s3_lexer.l" { Tokenpos += yyleng; } YY_BREAK case 23: YY_RULE_SETUP #line 365 "s3_lexer.l" { Tokenpos = 0; if (Linebuf != NULL) xfree(Linebuf); Lineno++; Linebuf = strsave(yytext); yyless(1); } YY_BREAK case 24: YY_RULE_SETUP #line 374 "s3_lexer.l" { Tokenpos += yyleng; return yytext[0];} YY_BREAK case YY_STATE_EOF(EMT): #line 378 "s3_lexer.l" { CaseSensitive = TRUE; BEGIN PDT; yyterminate(); } YY_BREAK case YY_STATE_EOF(PDT): #line 384 "s3_lexer.l" { BEGIN PCT; yyterminate(); } YY_BREAK case YY_STATE_EOF(PCT): #line 389 "s3_lexer.l" { BEGIN PCT; yyterminate(); } YY_BREAK case 25: YY_RULE_SETUP #line 395 "s3_lexer.l" ECHO; YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(CON): 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_state_list[yy_start + YY_AT_BOL()]; for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp ) { yy_current_state += yy_current_state[(*yy_cp ? YY_SC_TO_UI(*yy_cp) : 128)].yy_nxt; if ( yy_current_state[-1].yy_nxt ) { yy_last_accepting_state = yy_current_state; yy_last_accepting_cpos = yy_cp; } } 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 char *yy_cp = yy_c_buf_p; register int yy_c = 128; register yyconst struct yy_trans_info *yy_trans_info; yy_trans_info = &yy_current_state[(unsigned int) yy_c]; yy_current_state += yy_trans_info->yy_nxt; yy_is_jam = (yy_trans_info->yy_verify != yy_c); if ( ! yy_is_jam ) { if ( yy_current_state[-1].yy_nxt ) { yy_last_accepting_state = yy_current_state; yy_last_accepting_cpos = yy_cp; } } 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 */ #ifndef YY_NO_INPUT #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; } #endif /* YY_NO_INPUT */ #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 ); } #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 395 "s3_lexer.l" /************************************************************************* * * Module: s3_push_stack_entry * * Description: Adds a pct file to the parsing stack. * * Syntax: s3_push_stack_entry(stack_entry *entry) * * Inputs: *entry: Pointer to the stack entry * * Outputs: Adds entry to the global variable state_stack * * Returns: * * Modules Called: * *************************************************************************/ void s3_push_stack_entry(Stack_Entry *entry) { entry->previous = state_stack.top; state_stack.top = entry; } /************************************************************************* * * Module: s3_pop_stack_entry * * Description: Removes a pct file from the parsing stack. * * Syntax: s3_pop_stack_entry() * * Inputs: * * Outputs: Removes entry from the global variable state_stack * * Returns: The stack entry at the top of the stack * * Modules Called: * *************************************************************************/ Stack_Entry *s3_pop_stack_entry() { Stack_Entry *tmp; tmp = state_stack.top; state_stack.top = tmp->previous; return tmp; } /************************************************************************* * * Module: s3_parse_warning * * Description: Displays a parser warning message to stderr giving the * line number and text of the offending line. Warnings * are not fatal and parsing continues. Increments the * global variable parse_warning_count. * * Syntax: s3_parse_warning(va_list) * * Inputs: va_list: A variable argument list typically containing * a format string and various data to be displayed * (similar to a printf statement) * * Outputs: Displays error message on stderr. * * Returns: * * Modules Called: * *************************************************************************/ void s3_parse_warning(char *tmp,...) { va_list ap; char *fmt; va_start(ap,tmp); fmt = va_arg(ap, char *); fprintf(fperr,"\n%s: Line number %d: ", currentfilename,Lineno); vfprintf(fperr,fmt, ap); fprintf(fperr,"\n%s\n",Linebuf); fprintf(fperr,"%*s\n",1+Tokenpos,"^"); fprintf(fperr,"\n"); va_end(ap); parse_warning_count++; } /************************************************************************* * * Module: s3_parse_error * * Description: Displays a parser error message to stderr giving the * line number and text of the offending line. Errors * are fatal and parsing halts. * * Syntax: s3_parse_error(va_list) * * Inputs: va_list: A variable argument list typically containing * a format string and various data to be displayed * (similar to a printf statement) * * Outputs: Displays error message on stderr. * * Returns: * * Modules Called: * *************************************************************************/ void s3_parse_error(char *tmp,...) { va_list ap; char *fmt; va_start(ap,tmp); fmt = va_arg(ap, char *); fprintf(fperr,"\n%s: Line number %d: ", currentfilename,Lineno); vfprintf(fperr,fmt, ap); fprintf(fperr,"\n%s\n",Linebuf); fprintf(fperr,"%*s\n",1+Tokenpos,"^"); fprintf(fperr, "\n"); va_end(ap); exit(1); } /************************************************************************* * * Module: s3_parse_control_file * * Description: Parses and S3 control file to initialize datasets. * * Syntax: s3_parse_control_file(char *filename) * * Inputs: *filename: character string containing the name of * control file to be parsed. * * Outputs: * * Returns: Number of parser warnings encountered * * Modules Called: * *************************************************************************/ int s3_parse_control_file(char *filename) { int i; if((yyin = fopen(filename,"r")) == NULL) s3_error(SYS,"Cannot open control file %s",filename); parser_start_type = PARSE_CON; if(currentfilename != NULL) xfree(currentfilename); currentfilename = strsave(filename); Lineno = 1; Tokenpos = 0; first_pass = 1; yy_init = 1; yyparse(); return (parse_warning_count); } /************************************************************************* * * Module: s3_parse_emt_file * * Description: Initiates parsing of an EMT (executable module definition) * file. * * Syntax: s3_parse_emt_file(char *filename) * * Inputs: *filename: character string containing the name of the * EMT file to be parsed. * * Outputs: * * Returns: Number of parser warnings encountered * * Modules Called: * *************************************************************************/ EMT_struct *s3_parse_emt_file(char *filename) { #ifdef yy_flex_debug yy_flex_debug = 1 #endif emt_info = (EMT_struct *)xmalloc(sizeof(EMT_struct)); emt_info = (EMT_struct *)memset(emt_info,0,sizeof(EMT_struct)); if((yyin = fopen(filename,"r")) == NULL) s3_error(SYS,"Cannot open EMT file %s",filename); parser_start_type = PARSE_EMT; if(currentfilename != NULL) xfree(currentfilename); currentfilename = strsave(filename); Lineno = 1; Tokenpos = 0; first_pass = 1; yy_init = 1; yy_switch_to_buffer(yy_create_buffer(yyin,YY_BUF_SIZE)); yyparse(); if(parse_warning_count > 0) return NULL; else return emt_info; } /************************************************************************* * * Module: s3_parse_pdt_file * * Description: Initiates the parsing of a PDT (parameter definition * table) file . * * Syntax: s3_parse_pdt_file(char *filename) * * Inputs: *filename: A character string containing the name of * the PDT file to be parsed. * * Outputs: * * Returns: A pointer to the pdt_info data structure * * Modules Called: * *************************************************************************/ PDT_struct *s3_parse_pdt_file(char *filename) { pdt_info = (PDT_struct *)xmalloc(sizeof(PDT_struct)); pdt_info = (PDT_struct *)memset(pdt_info,0,sizeof(PDT_struct)); if((yyin = fopen(filename,"r")) == NULL) s3_error(SYS,"Cannot open PDT file %s",filename); if(currentfilename != NULL) xfree(currentfilename); currentfilename = strsave(filename); yy_switch_to_buffer(yy_create_buffer(yyin,YY_BUF_SIZE)); parser_start_type = PARSE_PDT; Lineno = 1; Tokenpos = 0; first_pass = 1; yy_init = 1; yyparse(); if(parse_warning_count > 0) return NULL; else return pdt_info; } /************************************************************************* * * Module: s3_parse_pct_file * * Description: Initiates parsing of a PCT (process control table) * file. * * Syntax: s3_parse_pct_file(char *filename) * * Inputs: *filename: A character string containing the name of * the PCT file to be parsed. * * Outputs: * * Returns: A pointer to the pct_info data structure. * * Modules Called: * *************************************************************************/ PCT_struct *s3_parse_pct_file(char *filename,int Static) { ST_entry *entry; char *basename,*ptr; pct_info = (PCT_struct *)xmalloc(sizeof(PCT_struct)); pct_info = (PCT_struct *)memset(pct_info,0,sizeof(PCT_struct)); pct_info->pct_list = (ST_entry **)xrealloc(NULL,sizeof(ST_entry *)); basename = strsave(filename); ptr = strstr(basename,".pct"); *ptr = '\0'; if(!Static) s3_setup_pnode(basename,filename); entry = s3_get_symbol(basename); entry->pn.parsed = TRUE; current_pct = entry; main_pnode = (Pnode *)current_pct; pct_info->main_pct = entry; pct_info->pct_list[0] = entry; pct_info->npct = 1; parser_start_type = PARSE_PCT; Lineno = 1; Tokenpos = 0; first_pass = 1; yy_init = 1; queue_ptr = 0; if(currentfilename != NULL) xfree(currentfilename); currentfilename = strsave(entry->pn.filename); if((yyin = fopen(currentfilename,"r")) == NULL) s3_error(SYS,"Cannot open PCT file %s",currentfilename); /* yyrestart(yyin); */ yy_switch_to_buffer(yy_create_buffer(yyin,YY_BUF_SIZE)); yyparse(); if(parse_warning_count > 0) return NULL; else return pct_info; } /************************************************************************* * * Module: s3_parse_sub_pdt_file * * Description: Initiates the parsing of a PDT (parameter definition * table) file . * * Syntax: s3_parse_sub_pdt_file(char *filename) * * Inputs: *filename: A character string containing the name of * the PDT file to be parsed. * * Outputs: * * Returns: A pointer to the pdt_info data structure * * Modules Called: * *************************************************************************/ void s3_parse_sub_pdt_file(char *filename) { if((yyin = fopen(filename,"r")) != NULL) { parser_start_type = PARSE_PDT; if(currentfilename != NULL) xfree(currentfilename); currentfilename = strsave(filename); Lineno = 1; Tokenpos = 0; first_pass = 1; yy_init = 1; parser_start_type = PARSE_PDT; yy_switch_to_buffer(yy_create_buffer(yyin,YY_BUF_SIZE)); yyparse(); yy_flush_buffer(YY_CURRENT_BUFFER); yy_delete_buffer(YY_CURRENT_BUFFER); } } /************************************************************************* * * Module: s3_parse_sub_pct_file * * Description: Initiates parsing of a PCT (process control table) * file. * * Syntax: s3_parse_pct_file(char *filename) * * Inputs: *filename: A character string containing the name of * the PCT file to be parsed. * * Outputs: * * Returns: A pointer to the pct_info data structure. * * Modules Called: * *************************************************************************/ void s3_parse_sub_pct(ST_entry *entry) { char *pdtname,*ptr; Stack_Entry *st; ST_entry **table; if (!entry->pn.parsed) { st = (Stack_Entry *)xmalloc(sizeof(Stack_Entry)); st->entry = current_pct; st->state = YY_CURRENT_BUFFER; st->lineno = Lineno; st->tokenpos = Tokenpos; s3_push_stack_entry(st); table = s3_create_symbol_table(); s3_push_symbol_table(table); entry->pn.symbol_table = table; entry->pn.parsed = TRUE; pct_info->pct_list = (ST_entry **)xrealloc(pct_info->pct_list, (pct_info->npct+1)*sizeof(ST_entry *)); pct_info->pct_list[pct_info->npct] = entry; pct_info->npct++; pdtname = strsave2(entry->pn.name,".pdt"); s3_parse_sub_pdt_file(pdtname); if(currentfilename != NULL) xfree(currentfilename); currentfilename = strsave(entry->pn.filename); if((yyin = fopen(currentfilename,"r")) == NULL) s3_error(SYS,"Cannot open PCT file %s",currentfilename); yy_switch_to_buffer(yy_create_buffer(yyin,YY_BUF_SIZE)); current_pct = entry; Lineno = 1; Tokenpos = 0; first_pass = 1; yy_init = 1; parser_start_type = PARSE_PCT; yyparse(); yy_flush_buffer(YY_CURRENT_BUFFER); s3_pop_symbol_table(); st = s3_pop_stack_entry(); yy_delete_buffer(YY_CURRENT_BUFFER); yy_switch_to_buffer(st->state); current_pct = st->entry; Lineno = st->lineno; Tokenpos = st->tokenpos; xfree(st); } } int yywrap() { return 1; }