5112 lines
168 KiB
C
5112 lines
168 KiB
C
|
#define yy_create_buffer redneck_yy_create_buffer
|
||
|
#define yy_delete_buffer redneck_yy_delete_buffer
|
||
|
#define yy_scan_buffer redneck_yy_scan_buffer
|
||
|
#define yy_scan_string redneck_yy_scan_string
|
||
|
#define yy_scan_bytes redneck_yy_scan_bytes
|
||
|
#define yy_flex_debug redneck_yy_flex_debug
|
||
|
#define yy_init_buffer redneck_yy_init_buffer
|
||
|
#define yy_flush_buffer redneck_yy_flush_buffer
|
||
|
#define yy_load_buffer_state redneck_yy_load_buffer_state
|
||
|
#define yy_switch_to_buffer redneck_yy_switch_to_buffer
|
||
|
#define yyin redneck_yyin
|
||
|
#define yyleng redneck_yyleng
|
||
|
#define yylex redneck_yylex
|
||
|
#define yyout redneck_yyout
|
||
|
#define yyrestart redneck_yyrestart
|
||
|
#define yytext redneck_yytext
|
||
|
|
||
|
#line 19 "redneck.c"
|
||
|
/* 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 <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
|
||
|
/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
|
||
|
#ifdef c_plusplus
|
||
|
#ifndef __cplusplus
|
||
|
#define __cplusplus
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
/* 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 <io.h>
|
||
|
#include <stdlib.h>
|
||
|
#define YY_USE_CONST
|
||
|
#define YY_USE_PROTOS
|
||
|
#endif
|
||
|
|
||
|
#ifdef YY_USE_CONST
|
||
|
#define yyconst const
|
||
|
#else
|
||
|
#define yyconst
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#ifdef YY_USE_PROTOS
|
||
|
#define YY_PROTO(proto) proto
|
||
|
#else
|
||
|
#define YY_PROTO(proto) ()
|
||
|
#endif
|
||
|
|
||
|
/* Returned upon end-of-file. */
|
||
|
#define YY_NULL 0
|
||
|
|
||
|
/* Promotes a possibly negative, possibly signed char to an unsigned
|
||
|
* integer for use as an array index. If the signed char is negative,
|
||
|
* we want to instead treat it as an 8-bit unsigned char, hence the
|
||
|
* double cast.
|
||
|
*/
|
||
|
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
|
||
|
|
||
|
/* Enter a start condition. This macro really ought to take a parameter,
|
||
|
* but we do it the disgusting crufty way forced on us by the ()-less
|
||
|
* definition of BEGIN.
|
||
|
*/
|
||
|
#define BEGIN yy_start = 1 + 2 *
|
||
|
|
||
|
/* Translate the current start state into a value that can be later handed
|
||
|
* to BEGIN to return to the state. The YYSTATE alias is for lex
|
||
|
* compatibility.
|
||
|
*/
|
||
|
#define YY_START ((yy_start - 1) / 2)
|
||
|
#define YYSTATE YY_START
|
||
|
|
||
|
/* Action number for EOF rule of a given start state. */
|
||
|
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
|
||
|
|
||
|
/* Special action meaning "start processing a new file". */
|
||
|
#define YY_NEW_FILE yyrestart( yyin )
|
||
|
|
||
|
#define YY_END_OF_BUFFER_CHAR 0
|
||
|
|
||
|
/* Size of default input buffer. */
|
||
|
#define YY_BUF_SIZE 16384
|
||
|
|
||
|
typedef struct yy_buffer_state *YY_BUFFER_STATE;
|
||
|
|
||
|
extern int yyleng;
|
||
|
extern FILE *yyin, *yyout;
|
||
|
|
||
|
#define EOB_ACT_CONTINUE_SCAN 0
|
||
|
#define EOB_ACT_END_OF_FILE 1
|
||
|
#define EOB_ACT_LAST_MATCH 2
|
||
|
|
||
|
/* The funky do-while in the following #define is used to turn the definition
|
||
|
* int a single C statement (which needs a semi-colon terminator). This
|
||
|
* avoids problems with code like:
|
||
|
*
|
||
|
* if ( condition_holds )
|
||
|
* yyless( 5 );
|
||
|
* else
|
||
|
* do_something_else();
|
||
|
*
|
||
|
* Prior to using the do-while the compiler would get upset at the
|
||
|
* "else" because it interpreted the "if" statement as being all
|
||
|
* done when it reached the ';' after the yyless() call.
|
||
|
*/
|
||
|
|
||
|
/* Return all but the first 'n' matched characters back to the input stream. */
|
||
|
|
||
|
#define yyless(n) \
|
||
|
do \
|
||
|
{ \
|
||
|
/* Undo effects of setting up yytext. */ \
|
||
|
*yy_cp = yy_hold_char; \
|
||
|
YY_RESTORE_YY_MORE_OFFSET \
|
||
|
yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \
|
||
|
YY_DO_BEFORE_ACTION; /* set up yytext again */ \
|
||
|
} \
|
||
|
while ( 0 )
|
||
|
|
||
|
#define unput(c) yyunput( c, yytext_ptr )
|
||
|
|
||
|
/* The following is because we cannot portably get our hands on size_t
|
||
|
* (without autoconf's help, which isn't available because we want
|
||
|
* flex-generated scanners to compile on their own).
|
||
|
*/
|
||
|
typedef unsigned int yy_size_t;
|
||
|
|
||
|
|
||
|
struct yy_buffer_state
|
||
|
{
|
||
|
FILE *yy_input_file;
|
||
|
|
||
|
char *yy_ch_buf; /* input buffer */
|
||
|
char *yy_buf_pos; /* current position in input buffer */
|
||
|
|
||
|
/* Size of input buffer in bytes, not including room for EOB
|
||
|
* characters.
|
||
|
*/
|
||
|
yy_size_t yy_buf_size;
|
||
|
|
||
|
/* Number of characters read into yy_ch_buf, not including EOB
|
||
|
* characters.
|
||
|
*/
|
||
|
int yy_n_chars;
|
||
|
|
||
|
/* Whether we "own" the buffer - i.e., we know we created it,
|
||
|
* and can realloc() it to grow it, and should free() it to
|
||
|
* delete it.
|
||
|
*/
|
||
|
int yy_is_our_buffer;
|
||
|
|
||
|
/* Whether this is an "interactive" input source; if so, and
|
||
|
* if we're using stdio for input, then we want to use getc()
|
||
|
* instead of fread(), to make sure we stop fetching input after
|
||
|
* each newline.
|
||
|
*/
|
||
|
int yy_is_interactive;
|
||
|
|
||
|
/* Whether we're considered to be at the beginning of a line.
|
||
|
* If so, '^' rules will be active on the next match, otherwise
|
||
|
* not.
|
||
|
*/
|
||
|
int yy_at_bol;
|
||
|
|
||
|
/* Whether to try to fill the input buffer when we reach the
|
||
|
* end of it.
|
||
|
*/
|
||
|
int yy_fill_buffer;
|
||
|
|
||
|
int yy_buffer_status;
|
||
|
#define YY_BUFFER_NEW 0
|
||
|
#define YY_BUFFER_NORMAL 1
|
||
|
/* When an EOF's been seen but there's still some text to process
|
||
|
* then we mark the buffer as YY_EOF_PENDING, to indicate that we
|
||
|
* shouldn't try reading from the input source any more. We might
|
||
|
* still have a bunch of tokens to match, though, because of
|
||
|
* possible backing-up.
|
||
|
*
|
||
|
* When we actually see the EOF, we change the status to "new"
|
||
|
* (via yyrestart()), so that the user can continue scanning by
|
||
|
* just pointing yyin at a new input file.
|
||
|
*/
|
||
|
#define YY_BUFFER_EOF_PENDING 2
|
||
|
};
|
||
|
|
||
|
static YY_BUFFER_STATE yy_current_buffer = 0;
|
||
|
|
||
|
/* We provide macros for accessing buffer states in case in the
|
||
|
* future we want to put the buffer states in a more general
|
||
|
* "scanner state".
|
||
|
*/
|
||
|
#define YY_CURRENT_BUFFER yy_current_buffer
|
||
|
|
||
|
|
||
|
/* yy_hold_char holds the character lost when yytext is formed. */
|
||
|
static char yy_hold_char;
|
||
|
|
||
|
static int yy_n_chars; /* number of characters read into yy_ch_buf */
|
||
|
|
||
|
|
||
|
int yyleng;
|
||
|
|
||
|
/* Points to current character in buffer. */
|
||
|
static char *yy_c_buf_p = (char *) 0;
|
||
|
static int yy_init = 1; /* whether we need to initialize */
|
||
|
static int yy_start = 0; /* start state number */
|
||
|
|
||
|
/* Flag which is used to allow yywrap()'s to do buffer switches
|
||
|
* instead of setting up a fresh yyin. A bit of a hack ...
|
||
|
*/
|
||
|
static int yy_did_buffer_switch_on_eof;
|
||
|
|
||
|
void yyrestart YY_PROTO(( FILE *input_file ));
|
||
|
|
||
|
void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
|
||
|
void yy_load_buffer_state YY_PROTO(( void ));
|
||
|
YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
|
||
|
void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
|
||
|
void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
|
||
|
void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));
|
||
|
#define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )
|
||
|
|
||
|
YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));
|
||
|
YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str ));
|
||
|
YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));
|
||
|
|
||
|
static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
|
||
|
static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));
|
||
|
static void yy_flex_free YY_PROTO(( void * ));
|
||
|
|
||
|
#define yy_new_buffer yy_create_buffer
|
||
|
|
||
|
#define yy_set_interactive(is_interactive) \
|
||
|
{ \
|
||
|
if ( ! yy_current_buffer ) \
|
||
|
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
|
||
|
yy_current_buffer->yy_is_interactive = is_interactive; \
|
||
|
}
|
||
|
|
||
|
#define yy_set_bol(at_bol) \
|
||
|
{ \
|
||
|
if ( ! yy_current_buffer ) \
|
||
|
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
|
||
|
yy_current_buffer->yy_at_bol = at_bol; \
|
||
|
}
|
||
|
|
||
|
#define YY_AT_BOL() (yy_current_buffer->yy_at_bol)
|
||
|
|
||
|
|
||
|
#define YY_USES_REJECT
|
||
|
|
||
|
#define yywrap() 1
|
||
|
#define YY_SKIP_YYWRAP
|
||
|
typedef unsigned char YY_CHAR;
|
||
|
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
|
||
|
typedef int yy_state_type;
|
||
|
extern char *yytext;
|
||
|
#define yytext_ptr yytext
|
||
|
|
||
|
static yy_state_type yy_get_previous_state YY_PROTO(( void ));
|
||
|
static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));
|
||
|
static int yy_get_next_buffer YY_PROTO(( void ));
|
||
|
static void yy_fatal_error YY_PROTO(( yyconst char msg[] ));
|
||
|
|
||
|
/* Done after the current pattern has been matched and before the
|
||
|
* corresponding action - sets up yytext.
|
||
|
*/
|
||
|
#define YY_DO_BEFORE_ACTION \
|
||
|
yytext_ptr = yy_bp; \
|
||
|
yyleng = (int) (yy_cp - yy_bp); \
|
||
|
yy_hold_char = *yy_cp; \
|
||
|
*yy_cp = '\0'; \
|
||
|
yy_c_buf_p = yy_cp;
|
||
|
|
||
|
#define YY_NUM_RULES 316
|
||
|
#define YY_END_OF_BUFFER 317
|
||
|
static yyconst short int yy_acclist[536] =
|
||
|
{ 0,
|
||
|
317, 315, 316, 314, 315, 316, 316, 295, 315, 316,
|
||
|
315, 316, 295, 315, 316, 295, 315, 316, 295, 315,
|
||
|
316, 295, 315, 316, 295, 315, 316, 295, 315, 316,
|
||
|
295, 315, 316, 295, 315, 316, 295, 315, 316, 295,
|
||
|
315, 316, 295, 315, 316, 295, 315, 316, 295, 315,
|
||
|
316, 295, 315, 316, 295, 315, 316, 295, 315, 316,
|
||
|
295, 315, 316, 295, 315, 316, 295, 315, 316, 295,
|
||
|
315, 316, 295, 315, 316, 295, 315, 316, 295, 315,
|
||
|
316, 295, 315, 316, 295, 315, 316, 295, 315, 316,
|
||
|
295, 315, 316, 295, 315, 316, 295, 315, 316, 295,
|
||
|
|
||
|
315, 316, 295, 315, 316, 295, 315, 316, 295, 315,
|
||
|
316, 295, 315, 316, 295, 315, 316, 295, 315, 316,
|
||
|
295, 315, 316, 295, 315, 316, 295, 315, 316, 295,
|
||
|
315, 316, 313, 315, 316, 313, 314, 315, 316, 313,
|
||
|
316, 315, 316, 315, 316, 315, 316, 315, 316, 315,
|
||
|
316, 315, 316, 315, 316, 315, 316, 315, 316, 315,
|
||
|
316, 315, 316, 315, 316, 315, 316, 315, 316, 293,
|
||
|
212, 290, 212, 290, 294, 290, 290, 312, 304, 305,
|
||
|
306, 303, 307, 308, 1, 153,16563, 119, 291, 293,
|
||
|
293, 85, 289, 118, 211, 160, 160, 172, 292, 294,
|
||
|
|
||
|
294, 311, 312, 310, 78, 151, 169, 174, 168, 8371,
|
||
|
80, 281, 281, 96, 203, 282, 202, 100, 152, 213,
|
||
|
270, 270, 181, 188, 183, 200, 166, 81, 193, 41,
|
||
|
28, 205, 77, 58, 285, 285,16570, 109, 109, 78,
|
||
|
302, 185,16563, 191, 97, 201, 203, 187, 112, 283,
|
||
|
283, 79, 42, 18, 175, 82, 156, 24,16646, 43,
|
||
|
44, 19,16652, 177,16566, 196, 155, 7, 103, 194,
|
||
|
180, 195, 189, 76,16446, 117, 15, 161, 13, 184,
|
||
|
46, 89, 90, 29, 72, 192, 84, 23, 73, 37,
|
||
|
39, 210, 113, 208, 40, 163, 163, 159, 86, 8378,
|
||
|
|
||
|
8378,16570, 36, 228, 106, 107, 108, 43, 45, 301,
|
||
|
297, 25, 130, 67, 17,16448, 190, 209, 27, 32,
|
||
|
32, 4, 20, 206, 33, 87, 259, 53, 54, 8454,
|
||
|
8460, 8374, 199, 197, 8254, 56,16432, 116, 116, 11,
|
||
|
137, 170, 198, 38, 176, 288, 269, 300, 298, 299,
|
||
|
296, 267, 127, 8256, 75, 227, 98, 141, 120, 124,
|
||
|
149, 88, 12, 260, 231, 60, 8, 154, 47, 59,
|
||
|
145, 133,16449, 70, 70, 121, 110, 8240, 122, 99,
|
||
|
178, 207, 144, 284, 240, 239, 277, 309, 104, 157,
|
||
|
142, 21, 93, 101, 129, 102, 274, 92, 3, 34,
|
||
|
|
||
|
16434, 9, 230, 278, 242, 254, 173, 261, 261, 271,
|
||
|
229, 111, 6, 132, 22, 8257, 57, 138, 158, 115,
|
||
|
115, 10, 171, 204, 146, 167, 235, 272, 272, 74,
|
||
|
68,16433, 26, 216, 216, 91, 30, 2, 8242, 287,
|
||
|
255, 255, 231, 83, 14, 126, 16, 150, 139, 247,
|
||
|
246, 249, 248, 148, 143, 236, 239, 236, 239, 162,
|
||
|
225, 225, 280, 275, 8241, 61, 63, 95, 94, 31,
|
||
|
123, 279, 234, 131, 105, 125, 286, 217, 218, 218,
|
||
|
5, 128, 241, 266, 250, 147, 276, 35, 214, 164,
|
||
|
136, 263, 221, 246, 248, 273, 224, 134, 135, 256,
|
||
|
|
||
|
233, 140, 55, 69, 71, 114, 52, 238, 264, 264,
|
||
|
165, 243, 215, 257, 257, 232, 222, 222, 253, 237,
|
||
|
226, 219, 219, 51, 265, 244, 244, 251, 251, 66,
|
||
|
258, 223, 220, 245, 252
|
||
|
} ;
|
||
|
|
||
|
static yyconst short int yy_accept[1599] =
|
||
|
{ 0,
|
||
|
1, 1, 1, 1, 1, 1, 1, 2, 4, 7,
|
||
|
8, 11, 13, 16, 19, 22, 25, 28, 31, 34,
|
||
|
37, 40, 43, 46, 49, 52, 55, 58, 61, 64,
|
||
|
67, 70, 73, 76, 79, 82, 85, 88, 91, 94,
|
||
|
97, 100, 103, 106, 109, 112, 115, 118, 121, 124,
|
||
|
127, 130, 133, 136, 140, 142, 144, 146, 148, 150,
|
||
|
152, 154, 156, 158, 160, 162, 164, 166, 168, 170,
|
||
|
170, 170, 170, 170, 170, 170, 170, 170, 170, 170,
|
||
|
170, 170, 170, 170, 170, 170, 170, 170, 170, 170,
|
||
|
170, 170, 170, 170, 170, 170, 170, 170, 170, 170,
|
||
|
|
||
|
171, 171, 171, 171, 171, 171, 171, 171, 171, 171,
|
||
|
171, 171, 171, 171, 171, 171, 173, 175, 175, 175,
|
||
|
175, 175, 175, 175, 175, 175, 175, 175, 175, 175,
|
||
|
175, 175, 175, 175, 175, 175, 175, 175, 175, 175,
|
||
|
175, 175, 175, 175, 175, 175, 175, 175, 175, 175,
|
||
|
175, 175, 175, 175, 175, 175, 175, 175, 175, 175,
|
||
|
175, 175, 175, 175, 175, 175, 175, 175, 175, 175,
|
||
|
175, 175, 175, 175, 175, 175, 175, 175, 175, 175,
|
||
|
175, 175, 175, 175, 175, 175, 175, 175, 175, 176,
|
||
|
177, 178, 178, 178, 178, 178, 178, 178, 178, 178,
|
||
|
|
||
|
178, 178, 178, 178, 178, 178, 178, 178, 178, 178,
|
||
|
178, 179, 180, 181, 181, 182, 183, 183, 183, 184,
|
||
|
184, 184, 184, 185, 185, 186, 186, 186, 186, 186,
|
||
|
186, 186, 186, 186, 187, 187, 187, 187, 187, 187,
|
||
|
187, 187, 187, 187, 188, 188, 188, 188, 188, 188,
|
||
|
188, 188, 188, 188, 188, 188, 188, 188, 188, 188,
|
||
|
189, 189, 189, 189, 189, 189, 189, 189, 189, 189,
|
||
|
189, 189, 189, 189, 190, 190, 191, 192, 192, 192,
|
||
|
192, 192, 192, 192, 192, 192, 193, 193, 193, 193,
|
||
|
193, 193, 193, 193, 193, 193, 193, 193, 193, 193,
|
||
|
|
||
|
193, 193, 193, 193, 194, 194, 194, 194, 194, 194,
|
||
|
194, 194, 194, 194, 194, 194, 194, 194, 194, 194,
|
||
|
194, 194, 194, 194, 194, 194, 194, 194, 194, 194,
|
||
|
194, 194, 194, 194, 194, 194, 194, 194, 194, 194,
|
||
|
194, 195, 195, 195, 195, 196, 196, 196, 196, 196,
|
||
|
196, 196, 196, 197, 198, 198, 198, 198, 198, 198,
|
||
|
198, 198, 198, 198, 198, 198, 198, 198, 198, 198,
|
||
|
198, 198, 198, 198, 198, 198, 198, 198, 198, 198,
|
||
|
198, 198, 198, 198, 198, 198, 198, 198, 198, 198,
|
||
|
198, 198, 198, 198, 198, 199, 199, 199, 199, 199,
|
||
|
|
||
|
199, 199, 199, 199, 199, 199, 199, 199, 199, 199,
|
||
|
199, 199, 199, 199, 199, 199, 199, 199, 199, 200,
|
||
|
201, 202, 202, 202, 202, 202, 202, 202, 202, 202,
|
||
|
202, 202, 202, 202, 203, 204, 204, 204, 205, 205,
|
||
|
205, 205, 205, 205, 205, 205, 206, 207, 207, 207,
|
||
|
208, 209, 209, 209, 209, 209, 209, 210, 210, 210,
|
||
|
211, 211, 212, 212, 212, 212, 213, 214, 214, 215,
|
||
|
215, 215, 215, 215, 216, 216, 216, 216, 216, 216,
|
||
|
216, 216, 217, 217, 217, 217, 217, 218, 218, 218,
|
||
|
218, 218, 218, 218, 218, 219, 219, 219, 219, 219,
|
||
|
|
||
|
219, 220, 220, 220, 220, 220, 221, 221, 221, 221,
|
||
|
221, 221, 221, 221, 221, 221, 221, 221, 221, 221,
|
||
|
221, 221, 221, 221, 221, 221, 221, 221, 221, 221,
|
||
|
221, 221, 222, 223, 223, 223, 223, 223, 223, 223,
|
||
|
223, 223, 223, 223, 223, 223, 224, 224, 225, 226,
|
||
|
226, 226, 226, 227, 227, 227, 227, 227, 227, 227,
|
||
|
227, 227, 227, 227, 227, 228, 228, 228, 228, 228,
|
||
|
229, 229, 229, 229, 229, 229, 229, 229, 229, 229,
|
||
|
229, 229, 229, 229, 229, 229, 229, 229, 229, 229,
|
||
|
229, 229, 229, 229, 229, 229, 229, 229, 229, 229,
|
||
|
|
||
|
229, 229, 229, 229, 230, 230, 230, 230, 231, 231,
|
||
|
231, 231, 231, 231, 232, 232, 232, 232, 232, 232,
|
||
|
232, 232, 232, 232, 233, 233, 233, 234, 234, 234,
|
||
|
234, 234, 234, 234, 235, 235, 235, 235, 235, 235,
|
||
|
235, 235, 235, 236, 237, 237, 237, 237, 237, 237,
|
||
|
237, 237, 237, 237, 237, 237, 238, 238, 238, 238,
|
||
|
238, 238, 239, 240, 240, 240, 240, 241, 241, 241,
|
||
|
241, 241, 241, 241, 241, 241, 241, 241, 241, 242,
|
||
|
242, 242, 242, 242, 242, 242, 242, 242, 242, 242,
|
||
|
242, 242, 242, 242, 242, 243, 243, 243, 244, 245,
|
||
|
|
||
|
245, 245, 245, 245, 246, 247, 247, 247, 247, 248,
|
||
|
248, 248, 248, 248, 248, 248, 248, 249, 250, 250,
|
||
|
250, 250, 251, 252, 252, 252, 252, 253, 253, 254,
|
||
|
255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
||
|
256, 256, 257, 257, 257, 257, 257, 258, 258, 258,
|
||
|
258, 258, 258, 258, 258, 258, 258, 258, 258, 258,
|
||
|
259, 260, 260, 260, 260, 260, 262, 263, 264, 264,
|
||
|
264, 264, 264, 264, 265, 266, 267, 267, 267, 267,
|
||
|
267, 267, 268, 268, 269, 269, 269, 270, 271, 271,
|
||
|
271, 271, 271, 271, 271, 271, 271, 272, 272, 273,
|
||
|
|
||
|
273, 273, 273, 274, 275, 275, 275, 275, 275, 276,
|
||
|
276, 277, 278, 278, 278, 279, 279, 280, 280, 280,
|
||
|
281, 281, 281, 281, 281, 281, 281, 281, 281, 281,
|
||
|
281, 281, 281, 281, 281, 281, 281, 281, 282, 283,
|
||
|
283, 284, 285, 285, 286, 286, 286, 287, 287, 287,
|
||
|
288, 288, 288, 288, 288, 288, 288, 288, 289, 290,
|
||
|
291, 291, 291, 291, 291, 292, 292, 293, 294, 295,
|
||
|
295, 295, 295, 295, 295, 295, 295, 295, 296, 297,
|
||
|
298, 298, 299, 300, 301, 302, 302, 303, 304, 305,
|
||
|
305, 305, 305, 305, 305, 306, 307, 308, 308, 309,
|
||
|
|
||
|
309, 309, 309, 309, 309, 310, 310, 310, 310, 310,
|
||
|
310, 311, 311, 312, 313, 313, 314, 314, 314, 315,
|
||
|
315, 315, 316, 316, 316, 316, 316, 317, 318, 318,
|
||
|
319, 319, 320, 320, 320, 320, 320, 320, 320, 320,
|
||
|
320, 320, 320, 320, 320, 320, 320, 320, 321, 322,
|
||
|
322, 322, 322, 322, 322, 323, 323, 324, 324, 324,
|
||
|
325, 325, 326, 326, 327, 327, 327, 327, 327, 327,
|
||
|
327, 327, 327, 328, 328, 328, 329, 329, 330, 331,
|
||
|
331, 331, 331, 331, 332, 332, 332, 332, 332, 332,
|
||
|
333, 334, 334, 334, 334, 334, 334, 334, 334, 335,
|
||
|
|
||
|
335, 335, 335, 335, 335, 335, 335, 335, 335, 335,
|
||
|
335, 336, 336, 336, 336, 336, 336, 336, 336, 337,
|
||
|
337, 337, 337, 338, 338, 338, 339, 340, 340, 340,
|
||
|
341, 341, 341, 341, 341, 342, 342, 342, 343, 343,
|
||
|
343, 343, 343, 344, 344, 344, 344, 344, 344, 344,
|
||
|
344, 344, 344, 344, 345, 345, 345, 345, 345, 345,
|
||
|
345, 345, 345, 345, 345, 345, 345, 345, 345, 345,
|
||
|
345, 345, 346, 346, 346, 346, 346, 347, 348, 348,
|
||
|
348, 348, 348, 348, 349, 350, 351, 352, 352, 353,
|
||
|
354, 354, 354, 354, 354, 354, 354, 355, 356, 356,
|
||
|
|
||
|
356, 356, 356, 356, 356, 356, 356, 356, 356, 356,
|
||
|
356, 356, 357, 357, 357, 357, 357, 357, 358, 359,
|
||
|
360, 361, 361, 361, 362, 362, 362, 363, 364, 364,
|
||
|
364, 364, 364, 364, 364, 364, 364, 364, 365, 365,
|
||
|
365, 365, 366, 366, 366, 366, 366, 367, 367, 368,
|
||
|
368, 369, 369, 369, 369, 370, 370, 370, 371, 371,
|
||
|
371, 371, 372, 372, 373, 374, 374, 375, 376, 376,
|
||
|
377, 377, 377, 377, 377, 378, 379, 379, 380, 380,
|
||
|
380, 380, 381, 382, 383, 383, 383, 383, 383, 383,
|
||
|
383, 383, 384, 384, 384, 384, 384, 384, 384, 384,
|
||
|
|
||
|
384, 384, 384, 384, 384, 384, 384, 384, 384, 384,
|
||
|
385, 386, 387, 387, 387, 387, 387, 387, 387, 387,
|
||
|
387, 387, 387, 387, 388, 388, 388, 388, 388, 389,
|
||
|
389, 389, 390, 391, 392, 392, 392, 392, 392, 392,
|
||
|
393, 393, 394, 394, 395, 396, 396, 396, 396, 397,
|
||
|
397, 397, 398, 398, 398, 399, 399, 400, 400, 401,
|
||
|
402, 403, 403, 405, 406, 406, 407, 407, 408, 409,
|
||
|
410, 410, 411, 411, 411, 411, 412, 412, 413, 414,
|
||
|
414, 414, 415, 415, 415, 416, 416, 416, 416, 417,
|
||
|
417, 417, 417, 417, 418, 419, 420, 420, 421, 422,
|
||
|
|
||
|
422, 423, 423, 423, 423, 423, 423, 423, 423, 424,
|
||
|
424, 425, 425, 425, 425, 425, 425, 425, 425, 425,
|
||
|
425, 425, 425, 425, 425, 426, 427, 428, 428, 428,
|
||
|
428, 429, 430, 430, 430, 430, 430, 430, 430, 431,
|
||
|
431, 432, 432, 433, 433, 433, 433, 433, 434, 434,
|
||
|
434, 434, 435, 436, 437, 437, 437, 438, 438, 438,
|
||
|
439, 440, 440, 441, 442, 443, 443, 443, 443, 443,
|
||
|
443, 444, 444, 445, 446, 446, 446, 446, 446, 446,
|
||
|
446, 446, 446, 446, 447, 447, 447, 448, 449, 449,
|
||
|
449, 449, 449, 449, 450, 451, 452, 452, 452, 452,
|
||
|
|
||
|
453, 454, 454, 454, 455, 456, 456, 458, 460, 460,
|
||
|
460, 461, 461, 461, 461, 462, 463, 464, 465, 465,
|
||
|
465, 465, 466, 467, 468, 468, 469, 470, 470, 470,
|
||
|
470, 470, 470, 471, 472, 473, 473, 473, 473, 473,
|
||
|
473, 474, 474, 474, 474, 475, 475, 475, 475, 476,
|
||
|
476, 476, 476, 477, 477, 477, 478, 479, 480, 481,
|
||
|
482, 483, 484, 484, 485, 486, 486, 486, 486, 486,
|
||
|
487, 487, 487, 487, 488, 488, 488, 489, 490, 490,
|
||
|
491, 492, 492, 492, 492, 492, 492, 493, 493, 493,
|
||
|
493, 493, 494, 494, 494, 494, 494, 494, 494, 495,
|
||
|
|
||
|
495, 496, 496, 496, 496, 496, 497, 498, 498, 498,
|
||
|
498, 498, 499, 500, 500, 501, 501, 501, 501, 502,
|
||
|
503, 503, 504, 505, 506, 507, 507, 507, 507, 507,
|
||
|
507, 507, 508, 508, 509, 509, 509, 509, 509, 509,
|
||
|
510, 511, 512, 512, 512, 512, 512, 513, 513, 513,
|
||
|
513, 513, 513, 513, 514, 515, 516, 516, 517, 518,
|
||
|
519, 519, 519, 519, 520, 521, 522, 522, 522, 522,
|
||
|
522, 522, 523, 524, 524, 524, 525, 525, 525, 526,
|
||
|
526, 526, 527, 528, 529, 530, 531, 532, 533, 533,
|
||
|
533, 533, 534, 534, 534, 535, 536, 536
|
||
|
|
||
|
} ;
|
||
|
|
||
|
static yyconst int yy_ec[256] =
|
||
|
{ 0,
|
||
|
1, 1, 1, 2, 1, 1, 1, 1, 3, 4,
|
||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
1, 3, 5, 1, 1, 1, 1, 1, 6, 1,
|
||
|
1, 1, 1, 7, 1, 8, 9, 10, 10, 10,
|
||
|
10, 10, 10, 10, 10, 10, 10, 1, 1, 11,
|
||
|
1, 12, 1, 1, 13, 14, 15, 16, 17, 18,
|
||
|
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
|
||
|
29, 30, 31, 32, 33, 34, 35, 36, 37, 36,
|
||
|
1, 1, 1, 1, 1, 1, 38, 39, 40, 41,
|
||
|
|
||
|
42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
|
||
|
52, 53, 54, 55, 56, 57, 58, 59, 60, 61,
|
||
|
62, 63, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
|
||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
1, 1, 1, 1, 1
|
||
|
} ;
|
||
|
|
||
|
static yyconst int yy_meta[64] =
|
||
|
{ 0,
|
||
|
1, 1, 1, 1, 1, 2, 1, 1, 3, 4,
|
||
|
1, 1, 5, 5, 5, 5, 5, 5, 5, 5,
|
||
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
||
|
5, 5, 5, 5, 5, 5, 5, 6, 7, 6,
|
||
|
8, 9, 6, 10, 6, 11, 6, 6, 12, 13,
|
||
|
14, 15, 6, 6, 16, 17, 18, 6, 6, 6,
|
||
|
6, 19, 6
|
||
|
} ;
|
||
|
|
||
|
static yyconst short int yy_base[1867] =
|
||
|
{ 0,
|
||
|
0, 0, 0, 0, 63, 126, 2635, 2636, 2636, 2636,
|
||
|
2636, 2625, 34, 45, 50, 98, 103, 105, 144, 133,
|
||
|
202, 174, 110, 173, 185, 34, 36, 186, 2575, 188,
|
||
|
210, 219, 2581, 2589, 228, 40, 239, 250, 184, 255,
|
||
|
260, 321, 2572, 53, 103, 289, 197, 262, 65, 298,
|
||
|
300, 315, 2636, 2636, 2636, 66, 101, 131, 2621, 116,
|
||
|
2620, 2619, 89, 2582, 2617, 155, 2567, 2577, 2614, 2612,
|
||
|
2608, 2567, 2563, 2579, 191, 156, 132, 152, 2575, 325,
|
||
|
232, 2577, 224, 324, 318, 241, 2563, 330, 2560, 342,
|
||
|
212, 60, 2570, 2565, 2553, 2553, 251, 2555, 2565, 331,
|
||
|
|
||
|
297, 2555, 166, 223, 2548, 2549, 2565, 309, 2564, 2539,
|
||
|
338, 391, 2550, 2541, 2554, 2636, 246, 2547, 0, 399,
|
||
|
401, 403, 358, 2545, 2545, 368, 2538, 2536, 262, 297,
|
||
|
2546, 2534, 370, 341, 2539, 371, 364, 383, 387, 2533,
|
||
|
346, 374, 426, 429, 432, 2543, 388, 393, 2538, 405,
|
||
|
2536, 2539, 409, 2543, 411, 2527, 394, 2542, 418, 2528,
|
||
|
2542, 361, 2537, 412, 2529, 2526, 431, 2526, 403, 2533,
|
||
|
2533, 2518, 410, 468, 436, 435, 429, 2534, 2513, 192,
|
||
|
439, 2526, 2507, 2516, 439, 444, 2529, 2513, 452, 2636,
|
||
|
451, 494, 496, 451, 462, 467, 459, 2521, 474, 523,
|
||
|
|
||
|
2509, 529, 466, 496, 492, 2521, 533, 2510, 2503, 2507,
|
||
|
499, 2636, 2636, 2515, 2636, 2636, 2500, 0, 2636, 2506,
|
||
|
2510, 2503, 2636, 2542, 2636, 2495, 2506, 2505, 2499, 0,
|
||
|
0, 2491, 2510, 2636, 0, 487, 2509, 2494, 2499, 2484,
|
||
|
0, 2494, 2502, 2502, 0, 2499, 2501, 2490, 553, 2481,
|
||
|
2491, 2485, 2485, 505, 2484, 461, 2475, 2482, 2481, 2636,
|
||
|
2489, 2490, 507, 2486, 584, 557, 2469, 2469, 499, 0,
|
||
|
2482, 2465, 2480, 2636, 2466, 2471, 2636, 2462, 2472, 2472,
|
||
|
2472, 2474, 2470, 522, 2463, 562, 2463, 2455, 2459, 564,
|
||
|
2468, 2452, 2466, 2453, 2463, 537, 2455, 2447, 2446, 2459,
|
||
|
|
||
|
2462, 524, 568, 2636, 2450, 538, 2447, 2491, 549, 2447,
|
||
|
2447, 2452, 2451, 2441, 2441, 0, 2439, 2438, 2446, 2430,
|
||
|
609, 2445, 2429, 2424, 2423, 2426, 570, 574, 2429, 2439,
|
||
|
2433, 2436, 2426, 567, 0, 2430, 2430, 2429, 2431, 2430,
|
||
|
2636, 2430, 2428, 2424, 2636, 2426, 2412, 2422, 2423, 2419,
|
||
|
2411, 2410, 2636, 2423, 2398, 595, 2417, 2401, 2408, 2403,
|
||
|
557, 2409, 2397, 2414, 2399, 2394, 2398, 559, 2408, 2406,
|
||
|
629, 2402, 2388, 0, 2393, 600, 2387, 577, 2387, 2393,
|
||
|
2399, 2383, 2380, 2397, 586, 2399, 2388, 2378, 2377, 587,
|
||
|
592, 2377, 2377, 2389, 2636, 2378, 620, 2373, 2386, 2365,
|
||
|
|
||
|
603, 622, 607, 2375, 2368, 2382, 2366, 2369, 643, 2379,
|
||
|
608, 2378, 2381, 2412, 2368, 2361, 650, 655, 2636, 2366,
|
||
|
2636, 609, 2363, 2358, 659, 2355, 2359, 2353, 614, 623,
|
||
|
2358, 2350, 2369, 2636, 2636, 0, 2368, 2636, 2361, 2352,
|
||
|
2352, 2345, 2361, 2349, 2347, 2636, 2636, 2347, 2346, 2636,
|
||
|
2636, 2339, 2337, 2339, 2351, 2350, 2636, 2342, 2342, 2636,
|
||
|
2327, 2636, 0, 2337, 2345, 2636, 2335, 2328, 2636, 0,
|
||
|
705, 2331, 2342, 0, 2337, 2339, 667, 2322, 2333, 2337,
|
||
|
2335, 2636, 2337, 0, 2334, 0, 2636, 717, 2323, 2367,
|
||
|
2317, 676, 2323, 2328, 2636, 0, 2325, 2313, 2305, 2328,
|
||
|
|
||
|
2636, 2316, 2322, 2321, 671, 2636, 635, 2324, 2310, 0,
|
||
|
2298, 0, 2303, 2314, 2300, 2298, 0, 2299, 2308, 679,
|
||
|
2302, 2314, 2295, 632, 2298, 2307, 2306, 0, 2306, 2297,
|
||
|
2287, 2636, 2293, 2291, 2287, 0, 2289, 2283, 2301, 643,
|
||
|
2292, 0, 2281, 0, 640, 2636, 2274, 2636, 2636, 2273,
|
||
|
2281, 0, 2636, 730, 687, 646, 0, 2282, 742, 2282,
|
||
|
2290, 2272, 2291, 2288, 2278, 2269, 0, 2279, 0, 2636,
|
||
|
2284, 2285, 2265, 0, 2271, 2282, 690, 2277, 2269, 2265,
|
||
|
2271, 0, 2258, 2263, 2272, 0, 2270, 2256, 653, 0,
|
||
|
2261, 2267, 2270, 2267, 2249, 2267, 2256, 2261, 2258, 2251,
|
||
|
|
||
|
2249, 2257, 2243, 2636, 754, 2255, 2241, 2636, 2244, 2256,
|
||
|
0, 0, 647, 2636, 0, 2244, 2235, 694, 766, 2253,
|
||
|
0, 2235, 2238, 776, 2250, 778, 2636, 2245, 780, 692,
|
||
|
0, 2244, 2229, 2636, 2229, 2240, 0, 2241, 2226, 0,
|
||
|
0, 782, 2636, 2229, 2273, 2223, 2239, 741, 2234, 0,
|
||
|
0, 785, 2237, 0, 0, 787, 0, 2223, 2216, 2231,
|
||
|
2215, 2636, 754, 2215, 2225, 2212, 2246, 2211, 2213, 2202,
|
||
|
791, 2212, 2217, 0, 793, 2209, 2204, 2210, 2636, 2209,
|
||
|
0, 2206, 0, 0, 2218, 0, 2198, 2213, 0, 2207,
|
||
|
2196, 2209, 2191, 2207, 2636, 2186, 797, 0, 2636, 0,
|
||
|
|
||
|
2196, 2194, 0, 2636, 2636, 853, 2207, 2189, 0, 2199,
|
||
|
753, 2185, 2190, 799, 803, 2202, 2636, 2636, 2187, 2181,
|
||
|
665, 2636, 2186, 2230, 807, 2184, 2636, 2189, 2636, 2636,
|
||
|
2187, 2170, 2176, 2175, 2177, 2171, 2170, 2164, 2184, 2636,
|
||
|
2172, 2636, 2181, 0, 2170, 2183, 2636, 2168, 2170, 419,
|
||
|
2212, 2176, 2160, 0, 2166, 2156, 0, 2164, 0, 2636,
|
||
|
0, 2163, 2162, 2158, 2150, 2636, 2636, 0, 2167, 2151,
|
||
|
2157, 2147, 2166, 2636, 0, 2636, 865, 0, 0, 0,
|
||
|
2158, 2636, 2150, 2636, 2160, 2149, 2636, 2636, 877, 2157,
|
||
|
2146, 2141, 0, 2158, 2133, 2152, 2636, 2151, 2636, 2154,
|
||
|
|
||
|
2149, 820, 2636, 2636, 2128, 2132, 2133, 2144, 2144, 2146,
|
||
|
2636, 2636, 2142, 2121, 2636, 2125, 2636, 773, 0, 2636,
|
||
|
2081, 2068, 2048, 2019, 1985, 1994, 1973, 805, 1953, 1954,
|
||
|
1937, 1899, 1874, 1884, 1853, 1834, 1796, 2636, 2636, 1787,
|
||
|
2636, 2636, 0, 2636, 1736, 1701, 2636, 889, 1668, 2636,
|
||
|
1683, 901, 1664, 1641, 774, 813, 780, 2636, 2636, 2636,
|
||
|
0, 1651, 1606, 1590, 2636, 1598, 2636, 2636, 2636, 1568,
|
||
|
1532, 1520, 1521, 1509, 1487, 1477, 1476, 2636, 2636, 1425,
|
||
|
1413, 2636, 2636, 2636, 1411, 710, 0, 2636, 2636, 824,
|
||
|
0, 1397, 774, 1370, 2636, 2636, 2636, 0, 2636, 1329,
|
||
|
|
||
|
1333, 1340, 1305, 1273, 2636, 47, 85, 0, 0, 0,
|
||
|
2636, 0, 2636, 2636, 119, 2636, 0, 0, 2636, 229,
|
||
|
243, 2636, 273, 283, 0, 785, 0, 2636, 0, 2636,
|
||
|
313, 2636, 354, 392, 451, 713, 464, 470, 785, 534,
|
||
|
517, 525, 0, 548, 588, 603, 609, 2636, 633, 818,
|
||
|
0, 0, 650, 0, 2636, 680, 2636, 703, 0, 2636,
|
||
|
718, 2636, 748, 2636, 0, 774, 782, 775, 796, 787,
|
||
|
784, 839, 2636, 795, 796, 2636, 803, 2636, 2636, 0,
|
||
|
806, 791, 809, 2636, 0, 911, 803, 810, 832, 2636,
|
||
|
2636, 962, 844, 0, 851, 0, 839, 861, 2636, 862,
|
||
|
|
||
|
0, 865, 876, 867, 870, 875, 915, 0, 877, 0,
|
||
|
2636, 867, 872, 924, 926, 920, 873, 876, 2636, 876,
|
||
|
878, 0, 0, 886, 885, 2636, 899, 892, 897, 2636,
|
||
|
0, 0, 0, 902, 2636, 900, 939, 2636, 898, 903,
|
||
|
0, 891, 2636, 990, 896, 903, 895, 913, 906, 915,
|
||
|
899, 917, 926, 2636, 918, 905, 904, 898, 909, 0,
|
||
|
0, 0, 919, 926, 935, 925, 937, 928, 931, 937,
|
||
|
977, 2636, 925, 936, 928, 0, 2636, 2636, 929, 947,
|
||
|
1000, 939, 0, 2636, 2636, 2636, 2636, 1002, 2636, 2636,
|
||
|
942, 0, 0, 0, 949, 970, 2636, 2636, 965, 959,
|
||
|
|
||
|
0, 956, 0, 971, 959, 973, 978, 965, 961, 976,
|
||
|
978, 2636, 977, 964, 0, 980, 972, 2636, 2636, 2636,
|
||
|
2636, 0, 983, 2636, 971, 0, 2636, 2636, 985, 0,
|
||
|
986, 0, 0, 1008, 0, 989, 0, 2636, 1028, 0,
|
||
|
1030, 2636, 984, 1030, 0, 996, 2636, 0, 2636, 0,
|
||
|
2636, 987, 988, 991, 2636, 1003, 0, 2636, 1004, 991,
|
||
|
987, 2636, 1007, 2636, 0, 991, 2636, 1005, 1006, 2636,
|
||
|
1000, 0, 0, 0, 2636, 2636, 988, 2636, 1048, 990,
|
||
|
999, 2636, 2636, 2636, 993, 1053, 1013, 1000, 1054, 1010,
|
||
|
0, 2636, 1020, 0, 1004, 1023, 1025, 1018, 1010, 1014,
|
||
|
|
||
|
1028, 1030, 1023, 1015, 1012, 1015, 1016, 0, 0, 2636,
|
||
|
2636, 2636, 0, 1036, 1040, 1022, 1078, 1045, 1032, 1028,
|
||
|
1044, 1038, 1039, 2636, 0, 1051, 1048, 0, 2636, 1078,
|
||
|
1043, 2636, 2636, 2636, 1031, 1043, 1044, 1045, 0, 2636,
|
||
|
1055, 2636, 1043, 2636, 2636, 1040, 1097, 0, 2636, 1057,
|
||
|
1046, 2636, 0, 1061, 2636, 1054, 2636, 0, 2636, 0,
|
||
|
2636, 1055, 2636, 2636, 0, 2636, 1104, 2636, 2636, 1064,
|
||
|
1104, 2636, 1051, 1060, 1056, 2636, 1111, 2636, 2636, 0,
|
||
|
1074, 2636, 1055, 1067, 2636, 1060, 1117, 1071, 2636, 1078,
|
||
|
1065, 1066, 1088, 2636, 2636, 2636, 0, 2636, 1088, 1086,
|
||
|
|
||
|
2636, 0, 1109, 1094, 1081, 1092, 1078, 1092, 2636, 1096,
|
||
|
2636, 1096, 0, 0, 1090, 1091, 1099, 0, 0, 1093,
|
||
|
1094, 0, 0, 1106, 2636, 2636, 2636, 1142, 1085, 0,
|
||
|
2636, 1097, 1143, 1091, 1148, 0, 0, 1112, 2636, 1096,
|
||
|
2636, 1106, 0, 1101, 1102, 0, 1117, 2636, 0, 0,
|
||
|
1118, 2636, 1116, 2636, 1106, 1122, 2636, 0, 0, 2636,
|
||
|
2636, 0, 2636, 2636, 1120, 1160, 1129, 1111, 1123, 0,
|
||
|
1125, 1165, 2636, 2636, 0, 1132, 1131, 1130, 0, 1125,
|
||
|
1136, 1137, 1125, 2636, 1135, 1140, 2636, 2636, 0, 0,
|
||
|
1180, 0, 0, 2636, 2636, 2636, 0, 1144, 0, 2636,
|
||
|
|
||
|
2636, 0, 1145, 2636, 2636, 1132, 2636, 1143, 1183, 0,
|
||
|
2636, 1138, 1134, 1150, 2636, 1149, 2636, 2636, 0, 1138,
|
||
|
1154, 2636, 2636, 2636, 0, 2636, 2636, 0, 1159, 0,
|
||
|
1157, 1144, 2636, 2636, 2636, 1162, 1144, 1143, 0, 1146,
|
||
|
2636, 1166, 1153, 1149, 2636, 1165, 0, 1170, 2636, 1157,
|
||
|
1155, 1156, 2636, 1155, 1153, 2636, 2636, 2636, 1169, 2636,
|
||
|
2636, 2636, 1212, 2636, 2636, 1214, 1178, 1182, 1164, 2636,
|
||
|
0, 0, 1184, 2636, 1177, 1169, 2636, 2636, 1166, 2636,
|
||
|
2636, 0, 0, 1167, 0, 1185, 2636, 1183, 1170, 0,
|
||
|
0, 2636, 1171, 1190, 0, 0, 0, 1194, 1188, 1228,
|
||
|
|
||
|
1190, 1230, 0, 1178, 0, 2636, 2636, 1179, 1196, 1194,
|
||
|
1199, 2636, 2636, 1200, 2636, 1240, 0, 1204, 2636, 2636,
|
||
|
1205, 2636, 2636, 2636, 2636, 1189, 1211, 0, 1193, 1213,
|
||
|
1195, 2636, 1211, 2636, 1212, 1197, 1216, 0, 1254, 2636,
|
||
|
1202, 2636, 0, 1257, 1220, 1205, 2636, 1207, 0, 0,
|
||
|
0, 1218, 1230, 2636, 2636, 1212, 1218, 2636, 2636, 1214,
|
||
|
1269, 1232, 1233, 2636, 2636, 2636, 0, 1225, 1225, 0,
|
||
|
1226, 2636, 1222, 1278, 1280, 2636, 1229, 0, 2636, 0,
|
||
|
1234, 2636, 1230, 2636, 1231, 2636, 2636, 2636, 0, 1237,
|
||
|
1238, 2636, 0, 0, 2636, 2636, 2636, 1290, 1307, 1326,
|
||
|
|
||
|
1345, 1348, 1349, 1365, 1352, 1353, 1356, 1357, 1360, 1380,
|
||
|
1361, 1387, 1390, 1407, 1366, 1426, 1369, 1436, 1370, 1449,
|
||
|
1463, 1373, 1482, 1374, 1501, 1518, 1537, 1551, 1381, 1567,
|
||
|
1391, 1394, 1579, 1593, 1395, 1398, 1612, 1399, 1402, 1403,
|
||
|
1408, 1427, 1430, 1431, 1437, 1440, 1626, 1441, 1637, 1444,
|
||
|
1445, 1450, 1453, 1454, 1457, 1656, 1458, 1464, 1483, 1675,
|
||
|
1693, 1502, 1505, 1506, 1509, 1510, 1513, 1514, 1519, 1522,
|
||
|
1523, 1712, 1526, 1731, 1527, 1530, 1538, 1541, 1542, 1545,
|
||
|
1546, 1554, 1555, 1748, 1767, 1778, 1797, 1814, 1558, 1559,
|
||
|
1563, 1568, 1571, 1572, 1575, 1823, 1580, 1613, 1616, 1842,
|
||
|
|
||
|
1617, 1861, 1620, 1621, 1627, 1870, 1889, 1630, 1631, 1638,
|
||
|
1657, 1908, 1676, 1679, 1680, 1683, 1684, 1687, 1688, 1694,
|
||
|
1713, 1716, 1717, 1721, 1724, 1725, 1732, 1735, 1736, 1926,
|
||
|
1739, 1740, 1743, 1744, 1749, 1768, 1771, 1772, 1775, 1776,
|
||
|
1779, 1798, 1945, 1801, 1802, 1805, 1806, 1809, 1810, 1815,
|
||
|
1818, 1819, 1824, 1843, 1862, 1964, 1865, 1866, 1871, 1890,
|
||
|
1909, 1912, 1980, 1913, 1916, 1917, 1920, 1994, 1921, 1927,
|
||
|
1946, 1965, 1968, 1969, 1972, 1973, 1976, 1981, 1984, 2006,
|
||
|
1985, 1988, 1989, 1995, 1998, 1999, 2002, 2007, 2010, 2020,
|
||
|
2034, 2011, 2014, 2015, 2021, 2024, 2025, 2028, 2029, 2035,
|
||
|
|
||
|
2048, 2038, 2039, 2042, 2043, 2049, 2062, 2052, 2053, 2056,
|
||
|
2057, 2063, 2066, 2067, 2070, 2071, 2074, 2075, 2079, 2080,
|
||
|
2083, 2084, 2087, 2088, 2091, 2092, 2095, 2096, 2099, 2102,
|
||
|
2103, 2106, 2110, 2124, 2111, 2114, 2115, 2118, 2119, 2125,
|
||
|
2128, 2129, 2132, 2133, 2136, 2139, 2140, 2143, 2144, 2147,
|
||
|
2148, 2151, 2152, 2155, 2156, 2159, 2160, 2163, 2164, 2167,
|
||
|
2168, 2171, 2172, 2175, 2176, 2179
|
||
|
} ;
|
||
|
|
||
|
static yyconst short int yy_def[1867] =
|
||
|
{ 0,
|
||
|
1597, 1, 1, 1, 1598, 1598, 1597, 1597, 1597, 1597,
|
||
|
1597, 1599, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1599,
|
||
|
1600, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1601, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1602,
|
||
|
1597, 1597, 1597, 1603, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1604, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1605, 1597, 1597,
|
||
|
1597, 1597, 1597, 1600, 1597, 1597, 1597, 1597, 1597, 1606,
|
||
|
1607, 1597, 1597, 1597, 1608, 1597, 1597, 1597, 1597, 1597,
|
||
|
1609, 1597, 1597, 1610, 1611, 1597, 1597, 1597, 1612, 1613,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1614, 1597, 1597, 1597, 1597, 1615,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1616, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
|
||
|
1597, 1597, 1617, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1618, 1619, 1597, 1620, 1597, 1597,
|
||
|
1621, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1622, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1623, 1597, 1597, 1624, 1597, 1597, 1597, 1597, 1625, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1626,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
|
||
|
1597, 1627, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1628, 1606, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1626, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1629, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1630, 1597, 1597,
|
||
|
1597, 1597, 1631, 1597, 1597, 1597, 1597, 1597, 1597, 1632,
|
||
|
1633, 1597, 1597, 1634, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1635, 1597, 1636, 1597, 1614, 1597, 1597,
|
||
|
1597, 1637, 1597, 1597, 1597, 1638, 1597, 1597, 1597, 1597,
|
||
|
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1639,
|
||
|
1597, 1640, 1597, 1597, 1597, 1597, 1641, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1642, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1643, 1597, 1597, 1597, 1597,
|
||
|
1597, 1644, 1597, 1645, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1646, 1597, 1621, 1597, 1647, 1648, 1597, 1649, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1650, 1597, 1651, 1597,
|
||
|
1597, 1597, 1597, 1652, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1653, 1597, 1597, 1597, 1654, 1597, 1597, 1597, 1655,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
|
||
|
1597, 1597, 1597, 1597, 1656, 1597, 1597, 1597, 1597, 1597,
|
||
|
1657, 1658, 1597, 1597, 1659, 1597, 1660, 1597, 1661, 1597,
|
||
|
1662, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1663, 1597, 1597, 1597, 1597, 1597, 1664, 1597, 1597, 1665,
|
||
|
1666, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1667,
|
||
|
1668, 1669, 1597, 1670, 1671, 1672, 1673, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1674, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1675, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1676, 1597, 1677, 1678, 1597, 1679, 1597, 1597, 1680, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1681, 1597, 1682,
|
||
|
|
||
|
1597, 1597, 1683, 1597, 1597, 1684, 1597, 1685, 1686, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1687, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1688, 1689, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1690, 1597, 1597, 1691, 1597, 1692, 1597,
|
||
|
1693, 1597, 1597, 1597, 1597, 1597, 1597, 1694, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1695, 1597, 1696, 1697, 1698, 1699,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1700, 1597,
|
||
|
1597, 1597, 1701, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1702, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1703, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1704, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1705, 1597, 1597, 1597, 1597, 1706, 1597, 1597,
|
||
|
1597, 1707, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1708, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1709, 1597, 1597, 1597,
|
||
|
1710, 1597, 1597, 1597, 1597, 1597, 1597, 1711, 1597, 1712,
|
||
|
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1713, 1714, 1715,
|
||
|
1597, 1716, 1597, 1597, 1597, 1597, 1717, 1718, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1719, 1597, 1720, 1597, 1721, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1722, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1723, 1724, 1597, 1725, 1597, 1597, 1597, 1597, 1726, 1597,
|
||
|
1597, 1597, 1597, 1597, 1727, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1728,
|
||
|
1597, 1597, 1597, 1597, 1729, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1730, 1597, 1731, 1597, 1732, 1597, 1597, 1597, 1597,
|
||
|
|
||
|
1733, 1597, 1597, 1597, 1597, 1597, 1597, 1734, 1597, 1735,
|
||
|
1597, 1597, 1597, 1736, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1737, 1738, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1739, 1740, 1741, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1742, 1597, 1597, 1743, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1744,
|
||
|
1745, 1746, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1597, 1597, 1597, 1747, 1597, 1597, 1597, 1597,
|
||
|
1597, 1597, 1748, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
1597, 1749, 1750, 1751, 1597, 1597, 1597, 1597, 1597, 1597,
|
||
|
|
||