amiga-libpcap/scanner.c

4268 lines
162 KiB
C
Executable File

#ifdef AMIGA
#include <exec/ports.h>
#undef PF_ACTION
#endif /* AMIGA */
#define yy_create_buffer pcap__create_buffer
#define yy_delete_buffer pcap__delete_buffer
#define yy_scan_buffer pcap__scan_buffer
#define yy_scan_string pcap__scan_string
#define yy_scan_bytes pcap__scan_bytes
#define yy_flex_debug pcap__flex_debug
#define yy_init_buffer pcap__init_buffer
#define yy_flush_buffer pcap__flush_buffer
#define yy_load_buffer_state pcap__load_buffer_state
#define yy_switch_to_buffer pcap__switch_to_buffer
#define yyin pcap_in
#define yyleng pcap_leng
#define yylex pcap_lex
#define yyout pcap_out
#define yyrestart pcap_restart
#define yytext pcap_text
#define yywrap pcap_wrap
/* A lexical scanner generated by flex */
/* Scanner skeleton version:
* $Header: /Users/olsen/Code/cvs2svn-2010/os4-cvs-repository/contrib/roadshow/client-software/libpcap-0.8.1/scanner.c,v 1.1 2004-10-18 16:23:16 obarthel Exp $
*/
#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5
#include <stdio.h>
/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
#ifdef c_plusplus
#ifndef __cplusplus
#define __cplusplus
#endif
#endif
#ifdef __cplusplus
#include <stdlib.h>
#include <unistd.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)
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 122
#define YY_END_OF_BUFFER 123
static yyconst short int yy_accept[1284] =
{ 0,
0, 0, 123, 120, 80, 80, 80, 81, 120, 81,
81, 81, 121, 89, 89, 81, 81, 81, 81, 118,
118, 120, 118, 118, 118, 118, 118, 118, 118, 118,
118, 118, 118, 118, 118, 118, 118, 118, 118, 118,
118, 118, 81, 120, 84, 88, 55, 0, 118, 89,
0, 118, 118, 118, 92, 86, 83, 85, 82, 87,
119, 119, 118, 118, 18, 118, 118, 118, 118, 118,
118, 118, 118, 118, 118, 118, 118, 118, 118, 118,
118, 118, 118, 118, 118, 118, 118, 118, 7, 118,
32, 33, 118, 118, 118, 118, 118, 118, 118, 118,
118, 118, 118, 118, 76, 56, 118, 118, 118, 118,
118, 118, 118, 118, 118, 118, 70, 118, 118, 118,
118, 118, 4, 118, 118, 118, 118, 118, 118, 56,
88, 90, 90, 89, 118, 0, 92, 89, 92, 92,
92, 118, 118, 55, 5, 118, 65, 118, 118, 118,
118, 118, 118, 1, 0, 118, 19, 118, 118, 118,
118, 118, 118, 118, 118, 118, 34, 118, 118, 16,
41, 0, 118, 27, 118, 23, 58, 118, 118, 63,
35, 118, 118, 118, 118, 44, 57, 66, 118, 14,
118, 3, 118, 118, 118, 118, 77, 118, 24, 118,
118, 36, 2, 40, 9, 10, 73, 118, 72, 118,
118, 118, 118, 89, 0, 118, 0, 93, 92, 92,
0, 92, 0, 92, 0, 92, 0, 21, 118, 118,
118, 52, 39, 118, 37, 118, 118, 28, 118, 118,
118, 43, 11, 118, 12, 13, 118, 118, 118, 30,
62, 118, 50, 45, 118, 118, 118, 118, 118, 118,
118, 46, 118, 38, 6, 118, 118, 8, 0, 118,
61, 15, 90, 90, 90, 89, 0, 92, 0, 0,
92, 0, 92, 93, 92, 0, 0, 0, 0, 92,
92, 92, 92, 92, 0, 118, 20, 118, 118, 118,
29, 118, 118, 0, 17, 118, 118, 118, 71, 118,
31, 118, 64, 26, 25, 118, 118, 67, 118, 47,
118, 118, 118, 118, 118, 118, 118, 118, 118, 118,
118, 0, 0, 92, 92, 92, 0, 0, 93, 92,
92, 93, 92, 0, 0, 92, 92, 92, 92, 92,
0, 0, 0, 0, 92, 92, 0, 92, 0, 92,
0, 79, 118, 118, 22, 118, 118, 118, 118, 118,
118, 118, 118, 118, 118, 118, 118, 118, 58, 118,
118, 118, 118, 118, 118, 118, 78, 118, 118, 118,
118, 118, 118, 118, 118, 90, 90, 90, 0, 92,
92, 0, 92, 0, 0, 92, 0, 92, 93, 92,
0, 0, 0, 92, 92, 0, 92, 93, 92, 0,
0, 0, 0, 0, 0, 0, 92, 92, 92, 92,
92, 0, 118, 118, 49, 51, 118, 118, 118, 118,
118, 118, 118, 118, 118, 118, 118, 118, 59, 118,
118, 42, 68, 69, 118, 118, 116, 112, 118, 114,
113, 117, 118, 118, 0, 0, 92, 92, 92, 92,
92, 92, 0, 0, 93, 92, 92, 92, 0, 0,
92, 92, 92, 92, 92, 0, 0, 0, 0, 0,
0, 0, 92, 92, 92, 92, 92, 0, 0, 0,
0, 0, 92, 92, 0, 92, 0, 92, 0, 118,
118, 118, 118, 118, 118, 118, 118, 118, 118, 118,
118, 95, 94, 118, 118, 60, 118, 115, 111, 90,
0, 92, 92, 0, 92, 92, 0, 92, 0, 0,
92, 0, 92, 93, 92, 0, 0, 0, 92, 92,
0, 92, 93, 92, 0, 0, 0, 0, 0, 92,
92, 0, 92, 93, 92, 0, 92, 92, 0, 0,
0, 0, 0, 0, 0, 92, 92, 92, 92, 92,
0, 53, 118, 100, 107, 118, 118, 118, 118, 118,
118, 118, 118, 118, 54, 118, 0, 0, 92, 92,
92, 92, 92, 92, 92, 92, 92, 0, 0, 93,
92, 92, 92, 0, 0, 92, 92, 92, 92, 92,
0, 0, 0, 0, 0, 0, 0, 92, 92, 92,
92, 92, 0, 92, 92, 0, 0, 0, 0, 0,
0, 0, 92, 92, 92, 92, 92, 0, 0, 0,
0, 0, 0, 92, 92, 0, 92, 0, 92, 0,
74, 118, 118, 118, 118, 118, 118, 118, 118, 118,
118, 118, 48, 0, 92, 92, 0, 92, 92, 0,
92, 92, 0, 92, 0, 91, 92, 0, 92, 93,
92, 0, 0, 0, 92, 92, 0, 92, 93, 92,
0, 0, 0, 0, 0, 92, 92, 0, 92, 93,
92, 0, 0, 0, 0, 0, 0, 92, 92, 0,
92, 93, 92, 0, 92, 92, 92, 0, 0, 0,
0, 0, 0, 0, 92, 92, 92, 92, 92, 0,
118, 118, 118, 118, 118, 118, 118, 118, 105, 118,
75, 0, 0, 92, 92, 92, 92, 92, 92, 92,
92, 92, 92, 92, 92, 0, 91, 93, 92, 92,
92, 0, 0, 92, 92, 92, 92, 92, 0, 0,
0, 0, 0, 0, 0, 92, 92, 92, 92, 92,
0, 92, 92, 0, 0, 0, 0, 0, 0, 0,
92, 92, 92, 92, 92, 0, 92, 92, 92, 0,
0, 0, 0, 0, 0, 0, 92, 92, 92, 92,
92, 0, 0, 0, 0, 0, 0, 92, 92, 0,
92, 0, 92, 0, 118, 118, 118, 109, 118, 118,
118, 118, 118, 118, 118, 97, 0, 92, 92, 0,
92, 92, 0, 92, 92, 0, 92, 92, 0, 92,
0, 0, 0, 92, 0, 0, 92, 93, 92, 0,
0, 0, 92, 92, 0, 92, 93, 92, 0, 0,
0, 0, 0, 92, 92, 0, 92, 93, 92, 0,
0, 0, 0, 0, 0, 92, 92, 0, 92, 93,
92, 0, 0, 0, 0, 0, 0, 92, 92, 0,
92, 93, 92, 0, 92, 92, 92, 0, 0, 0,
0, 0, 0, 0, 92, 92, 92, 92, 92, 0,
118, 118, 118, 118, 99, 118, 118, 118, 103, 118,
0, 0, 92, 92, 92, 92, 92, 92, 92, 92,
92, 92, 92, 92, 92, 92, 92, 0, 0, 0,
93, 0, 0, 92, 0, 0, 92, 92, 92, 0,
0, 0, 0, 0, 0, 0, 92, 92, 92, 0,
92, 92, 0, 0, 0, 0, 0, 0, 0, 92,
92, 92, 0, 92, 92, 92, 0, 0, 0, 0,
0, 0, 0, 92, 92, 92, 0, 92, 92, 92,
0, 0, 0, 0, 0, 0, 0, 92, 92, 92,
0, 0, 0, 0, 0, 0, 92, 92, 0, 92,
0, 92, 0, 96, 108, 110, 104, 118, 118, 118,
118, 0, 0, 92, 0, 92, 0, 92, 92, 0,
92, 92, 0, 92, 92, 0, 92, 92, 0, 92,
0, 0, 0, 0, 92, 92, 0, 92, 0, 0,
92, 92, 92, 0, 0, 0, 0, 92, 92, 92,
0, 0, 0, 0, 0, 92, 92, 92, 0, 0,
0, 0, 0, 92, 92, 92, 0, 0, 0, 0,
0, 92, 92, 92, 92, 92, 92, 0, 0, 0,
0, 0, 0, 0, 92, 92, 92, 0, 118, 118,
118, 118, 0, 0, 0, 92, 92, 92, 92, 92,
92, 0, 0, 0, 0, 92, 92, 0, 0, 0,
0, 92, 92, 92, 0, 0, 0, 0, 0, 92,
92, 92, 92, 0, 0, 0, 0, 0, 92, 92,
92, 92, 0, 0, 0, 0, 0, 92, 92, 92,
92, 0, 0, 0, 0, 0, 92, 0, 0, 0,
0, 0, 92, 92, 92, 118, 118, 118, 106, 92,
92, 92, 92, 92, 92, 92, 92, 0, 0, 0,
0, 92, 92, 0, 0, 92, 0, 0, 0, 92,
0, 0, 0, 92, 0, 0, 0, 92, 0, 0,
0, 92, 92, 92, 92, 0, 0, 0, 0, 0,
92, 101, 118, 98, 92, 0, 0, 92, 92, 0,
92, 92, 92, 0, 92, 92, 92, 0, 92, 92,
92, 0, 92, 92, 92, 0, 0, 0, 0, 92,
102, 92, 92, 0, 0, 0, 0, 0, 0, 92,
92, 92, 0, 0, 92, 92, 92, 92, 92, 0,
92, 92, 0
} ;
static yyconst int yy_ec[256] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
1, 1, 4, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 2, 5, 1, 1, 6, 1, 7, 1, 8,
8, 9, 9, 1, 10, 11, 9, 12, 13, 14,
15, 16, 15, 17, 15, 15, 15, 18, 1, 19,
20, 21, 1, 1, 22, 22, 22, 22, 22, 22,
23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
23, 23, 23, 23, 23, 23, 23, 24, 23, 23,
25, 26, 25, 1, 27, 1, 28, 29, 30, 31,
32, 33, 34, 35, 36, 23, 37, 38, 39, 40,
41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
51, 23, 1, 52, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 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[53] =
{ 0,
1, 2, 2, 1, 2, 1, 3, 2, 1, 4,
5, 6, 6, 6, 6, 6, 6, 7, 3, 3,
3, 8, 4, 9, 3, 1, 4, 8, 8, 8,
8, 8, 8, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 9,
4, 3
} ;
static yyconst short int yy_base[1657] =
{ 0,
0, 0, 3290, 52, 6582, 6582, 53, 3269, 59, 3261,
6582, 63, 6582, 80, 49, 131, 55, 3247, 62, 147,
186, 147, 106, 36, 129, 56, 60, 3235, 56, 3221,
190, 193, 140, 101, 138, 147, 205, 204, 125, 3230,
209, 3222, 3193, 253, 6582, 0, 6582, 0, 251, 269,
3226, 261, 0, 291, 324, 6582, 6582, 6582, 6582, 6582,
308, 0, 347, 99, 0, 3212, 3200, 3213, 146, 3198,
3191, 3187, 3186, 3165, 149, 3158, 144, 3168, 165, 3155,
3167, 3153, 3142, 3140, 100, 3144, 3139, 3147, 160, 251,
0, 0, 165, 182, 3135, 3144, 3122, 3098, 3096, 3099,
3101, 3091, 3090, 3096, 0, 0, 3079, 3085, 3059, 3060,
3060, 3059, 3052, 3067, 3041, 3025, 166, 3026, 3019, 3029,
3015, 3014, 0, 3013, 3009, 3016, 2987, 2978, 2993, 6582,
6582, 381, 219, 420, 354, 3001, 442, 3006, 465, 246,
2998, 2973, 2969, 0, 0, 2966, 361, 2955, 2950, 2939,
2939, 2935, 505, 0, 2940, 2930, 0, 2921, 200, 2920,
2923, 2904, 2907, 2919, 2904, 2903, 0, 2860, 2854, 0,
0, 2858, 2848, 0, 2860, 0, 2856, 2844, 2851, 0,
0, 2837, 2845, 285, 2826, 2842, 0, 2837, 2839, 0,
2821, 0, 2820, 2784, 2783, 2779, 0, 2791, 0, 2780,
2778, 0, 0, 0, 278, 0, 0, 2779, 0, 2776,
2764, 367, 534, 557, 2785, 2784, 2783, 2782, 565, 265,
2780, 2779, 373, 605, 627, 395, 0, 0, 2755, 2719,
2724, 0, 0, 2722, 0, 2721, 2707, 0, 2706, 2700,
2702, 0, 482, 2695, 0, 0, 2703, 2685, 2686, 0,
0, 2684, 0, 0, 2698, 2689, 2696, 2656, 2659, 2674,
2648, 0, 2647, 0, 0, 2645, 2645, 0, 371, 2646,
0, 0, 650, 294, 2659, 2651, 2650, 689, 2649, 2648,
711, 407, 734, 756, 489, 0, 2646, 390, 518, 779,
525, 802, 376, 2645, 2651, 2601, 0, 2610, 2609, 2592,
0, 2609, 2603, 821, 0, 2593, 2582, 2580, 0, 2571,
0, 2575, 2568, 0, 0, 2578, 2559, 300, 2558, 2574,
2563, 2543, 2559, 2552, 2540, 2541, 2533, 2539, 2554, 587,
857, 2541, 2540, 880, 378, 2539, 2538, 2536, 2535, 920,
379, 2534, 2520, 419, 594, 960, 664, 983, 415, 2519,
2525, 2517, 656, 0, 238, 2514, 670, 1023, 1045, 677,
0, 0, 2503, 2484, 0, 2456, 2462, 2475, 2460, 2474,
2473, 106, 2459, 139, 2446, 2454, 2442, 2452, 0, 2439,
2450, 2427, 2432, 2431, 2420, 2424, 0, 2418, 2419, 2415,
2395, 2393, 2397, 2401, 2400, 1067, 417, 2408, 2400, 1106,
2398, 1128, 2397, 2395, 2393, 1150, 824, 1173, 1195, 831,
0, 902, 0, 450, 2383, 908, 1218, 1240, 943, 0,
502, 950, 2368, 1006, 503, 1013, 1263, 1081, 1286, 438,
2360, 2366, 2328, 2333, 0, 0, 2321, 2323, 2309, 2309,
2319, 2301, 2291, 2298, 2270, 2271, 2282, 2280, 0, 2269,
2263, 0, 0, 0, 2262, 2264, 0, 0, 2255, 0,
0, 0, 2244, 1325, 2269, 2268, 1348, 460, 2267, 1388,
461, 2257, 2235, 2234, 2233, 1428, 534, 2231, 601, 1088,
1468, 1095, 1491, 535, 2229, 2219, 602, 1309, 2216, 1316,
684, 1371, 1531, 1378, 1554, 536, 2208, 2213, 1073, 0,
1410, 0, 543, 2205, 1416, 1594, 1616, 1451, 0, 2176,
2145, 2148, 2145, 2149, 2156, 2147, 2136, 2128, 2121, 2122,
2117, 0, 0, 2116, 2100, 0, 2107, 0, 0, 0,
2124, 1638, 1661, 1683, 1458, 1706, 1728, 1514, 2114, 2092,
1750, 1520, 1773, 1795, 1577, 0, 1583, 0, 613, 2091,
1817, 1824, 1846, 1869, 0, 1875, 0, 1881, 0, 635,
2090, 1887, 1894, 1916, 1939, 0, 564, 1945, 2095, 685,
1952, 2093, 1959, 686, 1966, 1973, 1996, 2003, 604, 2085,
2091, 231, 703, 283, 480, 481, 2012, 688, 728, 321,
417, 2013, 620, 436, 689, 1106, 2074, 2073, 2043, 707,
2052, 2083, 729, 2051, 2123, 730, 2050, 2048, 2046, 2044,
2163, 752, 2032, 851, 2030, 2203, 2066, 2226, 753, 2031,
2037, 853, 2073, 2027, 2106, 1020, 2113, 2266, 2146, 2289,
775, 2012, 2018, 799, 2152, 2017, 1102, 2186, 2015, 2193,
1103, 2249, 2329, 2256, 2352, 804, 1982, 1988, 0, 2311,
0, 2317, 0, 696, 1980, 2374, 2392, 2414, 2381, 0,
748, 773, 849, 851, 1022, 976, 958, 977, 1036, 1105,
916, 1325, 771, 1979, 2436, 2459, 2481, 2504, 2511, 2533,
2556, 2563, 2585, 2608, 1978, 1976, 2614, 2636, 2643, 2665,
2688, 0, 2694, 0, 811, 1975, 2700, 2707, 2729, 2752,
0, 2758, 0, 2764, 0, 840, 1974, 2770, 2777, 2799,
2822, 0, 0, 2828, 0, 2834, 0, 888, 1924, 2840,
2847, 2869, 2892, 0, 0, 832, 2898, 1926, 1385, 2905,
1910, 2912, 1527, 2919, 2926, 2949, 2956, 956, 1902, 1861,
1592, 1593, 2390, 1324, 1121, 1466, 1530, 1144, 2201, 1165,
794, 1833, 1829, 2996, 960, 1798, 3036, 1019, 1782, 3076,
1105, 1779, 3116, 1146, 1757, 1735, 1733, 3155, 3178, 1149,
1713, 1590, 2979, 3218, 2986, 3241, 1169, 1711, 1698, 1632,
3019, 1695, 3026, 1677, 3059, 3281, 3066, 3304, 1170, 1647,
1646, 1191, 3098, 1626, 2013, 3105, 1610, 3139, 2120, 3146,
3344, 3201, 3367, 1192, 1600, 1606, 0, 1194, 3207, 1604,
2325, 3264, 1568, 3271, 2388, 3327, 3407, 3334, 3430, 1213,
1556, 1547, 0, 3389, 0, 3395, 0, 889, 1534, 3452,
3470, 3492, 3459, 0, 3500, 3501, 3502, 918, 3503, 1529,
1212, 3505, 1387, 1255, 1256, 1038, 1532, 3535, 3558, 3580,
3603, 3610, 3632, 3655, 3662, 3684, 3707, 3714, 3736, 3759,
1498, 3766, 1214, 1492, 1473, 3788, 3806, 1471, 3795, 0,
3828, 0, 929, 1469, 3834, 3841, 1433, 3864, 0, 3870,
0, 3876, 0, 1203, 1431, 3882, 3889, 1395, 3912, 0,
0, 3918, 0, 3924, 0, 1249, 1389, 3930, 3937, 1355,
3960, 0, 0, 3966, 0, 3972, 0, 1294, 1328, 3978,
3985, 1327, 4008, 0, 0, 1237, 4014, 1333, 2430, 4021,
1302, 4028, 3073, 4035, 4042, 4065, 4072, 1319, 1293, 1273,
1426, 1653, 1675, 1280, 1279, 1698, 3507, 1485, 1340, 3155,
1241, 4111, 4134, 1324, 1227, 4174, 1325, 1180, 4214, 1387,
1179, 4254, 1464, 1159, 4294, 1468, 1156, 1151, 4094, 4334,
1131, 4101, 0, 1112, 3214, 4157, 4357, 4164, 1107, 1113,
3403, 4197, 1061, 4204, 3466, 4237, 4380, 4244, 1053, 1055,
1530, 4276, 1039, 3531, 4283, 1036, 4317, 3532, 4324, 4403,
4426, 1024, 972, 0, 1531, 4432, 970, 4110, 4439, 968,
4446, 4251, 4453, 4460, 4483, 951, 930, 0, 1589, 4489,
928, 4331, 4496, 918, 4503, 4510, 4511, 4550, 4524, 909,
894, 0, 4530, 0, 4536, 0, 1397, 866, 4542, 4573,
0, 4596, 0, 1631, 1632, 1654, 1676, 1720, 2472, 4587,
4588, 4617, 1612, 0, 862, 4657, 0, 4605, 4680, 0,
4640, 4703, 0, 4647, 4726, 0, 4749, 4756, 0, 4779,
4654, 4786, 4793, 4816, 837, 832, 816, 788, 4822, 0,
1436, 764, 743, 4828, 0, 4834, 0, 1437, 741, 694,
0, 4840, 0, 4846, 0, 1737, 632, 627, 0, 4852,
0, 4858, 0, 1758, 614, 611, 0, 4864, 0, 4870,
0, 1759, 574, 573, 0, 1637, 4876, 579, 4883, 4884,
546, 4897, 4891, 4905, 4931, 4912, 0, 544, 2202, 1744,
1788, 1722, 4954, 526, 4923, 0, 0, 0, 0, 0,
0, 4976, 0, 1781, 525, 505, 0, 4970, 4984, 498,
4991, 0, 1660, 4997, 475, 5004, 5010, 434, 5018, 0,
0, 1683, 5024, 414, 5031, 5032, 406, 5045, 0, 0,
1769, 5051, 338, 5058, 5059, 336, 5072, 0, 0, 1770,
5078, 332, 5085, 5086, 324, 5099, 0, 0, 5105, 0,
5111, 0, 1803, 277, 0, 2264, 2524, 1838, 1839, 0,
6582, 0, 0, 0, 0, 0, 0, 5118, 5132, 283,
5139, 0, 6582, 5124, 0, 6582, 0, 5145, 0, 6582,
0, 5157, 0, 6582, 0, 5163, 0, 6582, 0, 5169,
0, 6582, 0, 1772, 5175, 279, 5182, 5183, 249, 5196,
0, 1840, 2325, 1908, 0, 5202, 0, 1819, 5208, 244,
0, 1820, 5214, 235, 0, 1821, 5221, 202, 0, 1889,
5227, 184, 0, 1890, 5233, 75, 0, 5239, 0, 6582,
1909, 1891, 5245, 65, 0, 0, 0, 0, 0, 0,
1893, 5251, 44, 0, 0, 0, 0, 0, 0, 0,
0, 0, 6582, 5268, 5276, 5280, 5283, 5286, 5289, 5292,
5295, 5298, 5301, 5304, 5307, 5310, 5313, 5316, 5319, 5322,
5326, 5330, 5333, 5336, 5339, 5342, 5345, 5349, 5353, 5356,
5360, 5362, 5365, 5368, 5371, 5374, 5377, 5381, 5383, 5387,
5392, 5396, 5399, 5402, 5405, 5408, 5411, 5414, 5417, 5421,
5425, 5429, 5434, 5438, 5441, 5444, 5448, 5450, 5453, 5456,
5459, 5462, 5465, 5469, 5471, 5474, 5477, 5481, 5483, 5486,
5491, 5496, 5500, 5504, 5508, 5513, 5517, 5520, 5523, 5526,
5529, 5532, 5535, 5538, 5542, 5546, 5550, 5554, 5559, 5563,
5567, 5571, 5574, 5579, 5583, 5588, 5592, 5596, 5600, 5603,
5606, 5609, 5613, 5615, 5620, 5624, 5627, 5630, 5633, 5636,
5640, 5642, 5645, 5648, 5652, 5654, 5657, 5660, 5663, 5667,
5669, 5672, 5675, 5680, 5684, 5689, 5693, 5697, 5701, 5706,
5710, 5713, 5716, 5719, 5722, 5725, 5728, 5731, 5735, 5739,
5743, 5747, 5752, 5756, 5760, 5764, 5767, 5772, 5776, 5781,
5785, 5789, 5793, 5796, 5799, 5804, 5808, 5813, 5817, 5821,
5825, 5828, 5831, 5834, 5838, 5840, 5845, 5849, 5852, 5855,
5858, 5861, 5864, 5867, 5871, 5873, 5876, 5879, 5882, 5886,
5888, 5891, 5894, 5897, 5900, 5904, 5906, 5909, 5912, 5915,
5918, 5922, 5924, 5927, 5930, 5933, 5938, 5942, 5947, 5951,
5955, 5959, 5964, 5968, 5971, 5974, 5977, 5980, 5983, 5986,
5989, 5992, 5996, 6000, 6004, 6008, 6013, 6017, 6021, 6025,
6028, 6033, 6037, 6042, 6046, 6050, 6054, 6057, 6060, 6065,
6069, 6074, 6078, 6082, 6086, 6089, 6092, 6097, 6101, 6106,
6110, 6114, 6118, 6121, 6124, 6127, 6131, 6133, 6136, 6141,
6145, 6148, 6151, 6154, 6157, 6160, 6163, 6167, 6171, 6174,
6178, 6181, 6184, 6188, 6190, 6193, 6196, 6200, 6202, 6205,
6208, 6211, 6215, 6217, 6220, 6223, 6226, 6230, 6232, 6235,
6238, 6241, 6245, 6247, 6250, 6253, 6258, 6262, 6267, 6271,
6275, 6279, 6284, 6288, 6291, 6294, 6297, 6300, 6303, 6306,
6309, 6313, 6315, 6318, 6322, 6327, 6330, 6333, 6338, 6342,
6347, 6350, 6353, 6356, 6361, 6365, 6370, 6373, 6376, 6379,
6384, 6388, 6393, 6396, 6399, 6402, 6407, 6411, 6416, 6419,
6422, 6425, 6428, 6432, 6434, 6439, 6443, 6446, 6449, 6452,
6455, 6458, 6461, 6465, 6470, 6473, 6476, 6479, 6482, 6485,
6488, 6491, 6494, 6497, 6500, 6503, 6508, 6512, 6515, 6518,
6521, 6525, 6529, 6533, 6537, 6541, 6544, 6547, 6551, 6554,
6557, 6560, 6563, 6566, 6570, 6573
} ;
static yyconst short int yy_def[1657] =
{ 0,
1283, 1, 1283, 1283, 1283, 1283, 1283, 1283, 1284, 1283,
1283, 1283, 1283, 1283, 14, 1283, 1283, 1283, 1283, 14,
20, 1285, 20, 20, 20, 20, 20, 20, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 1283, 1283, 1283, 1286, 1283, 21, 21, 20,
1287, 50, 21, 21, 1283, 1283, 1283, 1283, 1283, 1283,
1285, 1285, 50, 63, 21, 21, 21, 21, 63, 21,
21, 21, 21, 21, 63, 21, 21, 21, 63, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 1283,
1283, 21, 132, 50, 134, 1288, 1283, 54, 1283, 139,
1289, 21, 21, 21, 21, 21, 134, 21, 21, 21,
21, 21, 134, 21, 21, 21, 21, 21, 153, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 1290, 21, 1291, 1292, 1283, 219,
1293, 1294, 1283, 1283, 1283, 224, 1295, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 273, 213, 214, 1296, 1283, 1297, 1298,
1283, 1283, 1283, 1283, 283, 1299, 1300, 1301, 1283, 1283,
290, 1283, 292, 1302, 1295, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 1291, 1303, 1283, 334, 1304, 1283, 1305, 1306, 1283,
340, 1293, 1307, 1308, 1283, 1283, 346, 1283, 348, 1309,
1299, 1283, 1283, 1310, 1311, 1283, 1283, 1283, 1283, 358,
1312, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 396, 331, 1313, 1283,
283, 1283, 285, 1314, 1315, 1283, 1283, 1283, 1283, 408,
1316, 1283, 1317, 1318, 1283, 1283, 1283, 1283, 417, 1319,
1320, 1283, 1310, 1283, 1321, 1283, 1283, 427, 1283, 429,
1322, 1312, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 1323, 1324, 1283, 467, 1325, 1283,
470, 1326, 1283, 1327, 1328, 1283, 476, 1329, 1330, 1283,
1283, 481, 1283, 483, 1331, 1316, 1332, 1283, 1317, 1283,
1333, 1283, 1283, 493, 1283, 495, 1334, 1319, 1283, 1335,
1283, 1336, 1337, 1283, 1283, 1283, 1283, 506, 1338, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 464,
1339, 1283, 1283, 1283, 533, 1283, 1283, 536, 1340, 1341,
1283, 1283, 1283, 1283, 543, 1342, 1283, 1343, 1344, 1283,
1283, 1283, 1283, 552, 1345, 1283, 1346, 1283, 1347, 1348,
1283, 1283, 1283, 1283, 563, 1349, 1350, 1283, 1335, 1351,
1283, 1352, 1283, 1353, 1283, 1283, 576, 1283, 578, 1354,
1355, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356,
1356, 1356, 1356, 1356, 1356, 1356, 1357, 1358, 1283, 599,
1359, 1283, 602, 1360, 1283, 605, 1361, 1283, 1362, 1363,
1283, 611, 1364, 1365, 1283, 1283, 616, 1283, 618, 1366,
1367, 1368, 1283, 1369, 1283, 1370, 1283, 1283, 628, 1283,
630, 1371, 1372, 1373, 1283, 1374, 1375, 1283, 1376, 1283,
1377, 1283, 1283, 643, 1283, 645, 1378, 1379, 1380, 1283,
1381, 1283, 1382, 1383, 1283, 1283, 1283, 1283, 657, 1384,
1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385,
1385, 1385, 1385, 1386, 1283, 1283, 1283, 676, 1283, 1283,
679, 1283, 1283, 682, 1387, 1388, 1283, 1283, 1283, 1283,
689, 1389, 1283, 1390, 1391, 1283, 1283, 1283, 1283, 698,
1392, 1283, 1393, 1283, 1394, 1395, 1283, 1283, 1283, 1283,
709, 1396, 1397, 1283, 1398, 1283, 1399, 1400, 1283, 1283,
1283, 1283, 721, 1401, 1402, 1403, 1283, 1404, 1405, 1283,
1406, 1283, 1407, 1283, 1283, 735, 1283, 737, 1408, 1409,
1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410,
1410, 1411, 1412, 1283, 754, 1413, 1283, 757, 1414, 1283,
760, 1415, 1283, 763, 1416, 1283, 1417, 1283, 1283, 769,
1418, 1419, 1283, 1283, 774, 1283, 776, 1420, 1421, 1422,
1283, 1423, 1283, 1424, 1283, 1283, 786, 1283, 788, 1425,
1426, 1427, 1283, 1428, 1429, 1283, 1430, 1283, 1431, 1283,
1283, 801, 1283, 803, 1432, 1433, 1434, 1435, 1283, 1436,
1437, 1283, 1438, 1283, 1439, 1283, 1283, 817, 1283, 819,
1440, 1441, 1442, 1283, 1443, 1283, 1444, 1445, 1283, 1283,
1283, 1283, 831, 1446, 1447, 1447, 1447, 1447, 1447, 1447,
1447, 1447, 1447, 1447, 1447, 1447, 1448, 1283, 1283, 1283,
849, 1283, 1283, 852, 1283, 1283, 855, 1283, 1283, 858,
1449, 1283, 862, 1450, 1451, 1283, 1283, 1452, 867, 1453,
1283, 1454, 1455, 1283, 1283, 1283, 1456, 876, 1457, 1283,
1458, 1283, 1459, 1460, 1283, 1283, 1283, 1461, 887, 1462,
1463, 1283, 1464, 1283, 1465, 1466, 1283, 1283, 1283, 1467,
899, 1468, 1469, 1283, 1470, 1283, 1471, 1472, 1283, 1283,
1283, 1473, 911, 1474, 1475, 1476, 1283, 1477, 1478, 1283,
1479, 1283, 1480, 1283, 1283, 925, 1283, 927, 1481, 1482,
1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483,
1484, 1283, 1283, 943, 1485, 1283, 946, 1486, 1283, 949,
1487, 1283, 952, 1488, 1283, 955, 1489, 1283, 1283, 1283,
1490, 960, 1491, 1492, 1493, 1283, 1283, 967, 1494, 1495,
1496, 1283, 1497, 1283, 1498, 1283, 1283, 977, 1499, 1500,
1501, 1283, 1502, 1503, 1283, 1504, 1283, 1505, 1283, 1283,
990, 1506, 1507, 1508, 1509, 1283, 1510, 1511, 1283, 1512,
1283, 1513, 1283, 1283, 1004, 1514, 1515, 1516, 1517, 1283,
1518, 1519, 1283, 1520, 1283, 1521, 1283, 1283, 1018, 1522,
1523, 1524, 1283, 1525, 1283, 1526, 1527, 1283, 1283, 1283,
1528, 1030, 1529, 1530, 1530, 1530, 1530, 1530, 1530, 1530,
1530, 1283, 1042, 1531, 1532, 1283, 1533, 1046, 1283, 1534,
1049, 1283, 1535, 1052, 1283, 1536, 1055, 1283, 1537, 1058,
1538, 1283, 1283, 1063, 1539, 1540, 1541, 1542, 1283, 1543,
1544, 1283, 1545, 1283, 1546, 1283, 1547, 1548, 1283, 1549,
1550, 1283, 1551, 1283, 1552, 1553, 1283, 1554, 1555, 1283,
1556, 1283, 1557, 1558, 1283, 1559, 1560, 1283, 1561, 1283,
1562, 1563, 1283, 1564, 1565, 1566, 1283, 1567, 1568, 1283,
1569, 1283, 1570, 1283, 1283, 1115, 1571, 1572, 1573, 1573,
1573, 1573, 1283, 1574, 1123, 1575, 1576, 1577, 1578, 1579,
1580, 1283, 1581, 1582, 1283, 1583, 1584, 1585, 1283, 1586,
1283, 1587, 1588, 1283, 1589, 1590, 1283, 1591, 1283, 1592,
1593, 1594, 1283, 1595, 1596, 1283, 1597, 1283, 1598, 1599,
1600, 1283, 1601, 1602, 1283, 1603, 1283, 1604, 1605, 1606,
1283, 1607, 1608, 1283, 1609, 1283, 1610, 1611, 1283, 1612,
1283, 1613, 1614, 1283, 1615, 1616, 1616, 1616, 1616, 1617,
1283, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1283, 1625,
1283, 1626, 1283, 1283, 1627, 1283, 1628, 1283, 1629, 1283,
1630, 1283, 1631, 1283, 1632, 1283, 1633, 1283, 1634, 1283,
1635, 1283, 1611, 1636, 1283, 1612, 1637, 1283, 1613, 1283,
1638, 1616, 1616, 1616, 1639, 1283, 1640, 1641, 1283, 1627,
1628, 1642, 1283, 1629, 1630, 1643, 1283, 1631, 1632, 1644,
1283, 1633, 1634, 1645, 1283, 1635, 1646, 1283, 1647, 1283,
1616, 1648, 1283, 1640, 1649, 1650, 1651, 1652, 1653, 1646,
1654, 1283, 1647, 1655, 1649, 1650, 1651, 1652, 1653, 1656,
1655, 1656, 0, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283
} ;
static yyconst short int yy_nxt[6635] =
{ 0,
4, 5, 6, 7, 8, 9, 10, 11, 12, 11,
13, 14, 15, 15, 15, 15, 15, 16, 17, 18,
19, 20, 21, 21, 11, 22, 13, 23, 24, 25,
26, 27, 28, 29, 30, 31, 21, 32, 33, 34,
35, 36, 21, 37, 38, 39, 40, 41, 42, 21,
21, 43, 44, 44, 1258, 44, 44, 44, 44, 44,
44, 44, 44, 44, 44, 69, 44, 44, 44, 44,
44, 44, 53, 56, 57, 1236, 44, 44, 44, 70,
44, 59, 60, 80, 44, 1220, 71, 75, 44, 48,
49, 50, 50, 50, 50, 50, 50, 51, 53, 81,
76, 52, 53, 54, 77, 78, 48, 52, 52, 52,
52, 52, 52, 53, 53, 53, 53, 53, 53, 53,
53, 53, 53, 53, 53, 53, 53, 53, 53, 54,
53, 44, 102, 63, 44, 64, 44, 441, 165, 44,
65, 103, 53, 166, 143, 66, 442, 61, 55, 67,
61, 68, 61, 155, 122, 61, 44, 53, 52, 52,
52, 52, 52, 52, 61, 104, 72, 98, 123, 73,
53, 99, 61, 74, 444, 147, 170, 105, 153, 156,
100, 106, 108, 445, 107, 157, 101, 109, 110, 53,
111, 112, 53, 199, 1216, 159, 53, 53, 53, 53,
53, 53, 53, 1283, 175, 91, 92, 53, 53, 171,
176, 200, 1212, 53, 53, 53, 53, 53, 53, 83,
93, 177, 84, 85, 94, 86, 178, 87, 95, 88,
96, 89, 113, 117, 90, 123, 114, 97, 125, 53,
48, 118, 53, 119, 115, 1208, 126, 120, 223, 121,
127, 116, 128, 44, 1204, 225, 44, 48, 44, 1181,
172, 44, 132, 133, 133, 133, 133, 133, 53, 1283,
44, 53, 135, 135, 135, 135, 135, 135, 44, 49,
134, 134, 134, 134, 134, 134, 173, 269, 1283, 1179,
135, 174, 48, 1132, 1031, 1283, 135, 135, 135, 135,
135, 135, 138, 138, 138, 138, 138, 138, 61, 48,
270, 61, 138, 61, 1283, 256, 61, 53, 138, 138,
138, 138, 138, 138, 44, 61, 662, 44, 257, 44,
48, 383, 44, 61, 1100, 139, 140, 140, 140, 140,
140, 44, 1098, 53, 384, 141, 1092, 48, 1090, 44,
668, 141, 141, 141, 141, 141, 141, 53, 135, 135,
135, 135, 135, 135, 53, 216, 216, 216, 216, 216,
216, 53, 216, 216, 216, 216, 216, 216, 273, 274,
274, 274, 274, 274, 288, 289, 289, 289, 289, 289,
142, 212, 133, 133, 133, 133, 133, 133, 323, 1283,
353, 1283, 1283, 324, 213, 1283, 291, 291, 291, 291,
291, 291, 325, 354, 326, 327, 1084, 328, 344, 345,
345, 345, 345, 345, 1082, 1283, 48, 1283, 1283, 412,
213, 214, 214, 214, 214, 214, 214, 215, 1283, 354,
53, 216, 413, 48, 1076, 48, 669, 216, 216, 216,
216, 216, 216, 219, 220, 220, 220, 220, 220, 221,
282, 1283, 48, 222, 1283, 672, 53, 402, 413, 222,
222, 222, 222, 222, 222, 223, 224, 224, 224, 224,
224, 224, 225, 1283, 1283, 1074, 226, 1283, 227, 48,
48, 304, 226, 226, 226, 226, 226, 226, 305, 1283,
347, 347, 347, 347, 347, 347, 48, 48, 1069, 1283,
1283, 306, 499, 501, 227, 53, 216, 216, 216, 216,
216, 216, 342, 663, 664, 500, 502, 307, 353, 289,
289, 289, 289, 289, 289, 1283, 356, 356, 356, 356,
356, 356, 1124, 1191, 236, 275, 275, 275, 275, 275,
275, 500, 502, 357, 1029, 275, 1025, 1283, 1283, 1283,
359, 275, 275, 275, 275, 275, 275, 49, 276, 276,
276, 276, 276, 276, 215, 282, 283, 283, 283, 283,
283, 283, 284, 1283, 1283, 1283, 285, 649, 286, 1023,
342, 1059, 285, 285, 285, 285, 285, 285, 396, 397,
397, 397, 397, 397, 412, 345, 345, 345, 345, 345,
345, 547, 556, 649, 286, 223, 290, 290, 290, 290,
290, 290, 225, 407, 548, 557, 291, 1283, 342, 48,
534, 1056, 291, 291, 291, 291, 291, 291, 292, 293,
293, 293, 293, 293, 342, 416, 48, 671, 294, 1053,
548, 557, 537, 1283, 294, 294, 294, 294, 294, 294,
330, 274, 274, 274, 274, 274, 274, 421, 422, 422,
422, 422, 422, 331, 1283, 415, 415, 415, 415, 415,
415, 425, 426, 426, 426, 426, 426, 1283, 428, 428,
428, 428, 428, 428, 558, 650, 652, 48, 48, 331,
334, 335, 335, 335, 335, 335, 505, 559, 651, 653,
336, 342, 48, 507, 48, 48, 336, 336, 336, 336,
336, 336, 340, 341, 341, 341, 341, 341, 342, 48,
1283, 666, 343, 559, 651, 653, 661, 48, 343, 343,
343, 343, 343, 343, 282, 346, 346, 346, 346, 346,
346, 284, 1283, 1283, 48, 347, 1283, 48, 1050, 667,
342, 347, 347, 347, 347, 347, 347, 348, 349, 349,
349, 349, 349, 342, 48, 1283, 1283, 350, 1283, 1283,
48, 1047, 48, 350, 350, 350, 350, 350, 350, 223,
355, 355, 355, 355, 355, 355, 225, 48, 1283, 48,
356, 1283, 1283, 48, 741, 342, 356, 356, 356, 356,
356, 356, 357, 358, 358, 358, 358, 358, 358, 359,
48, 542, 713, 360, 1283, 361, 959, 1283, 677, 360,
360, 360, 360, 360, 360, 479, 480, 480, 480, 480,
480, 1283, 482, 482, 482, 482, 482, 482, 713, 342,
551, 361, 368, 1283, 342, 823, 369, 680, 48, 370,
48, 693, 371, 702, 372, 373, 374, 375, 398, 398,
398, 398, 398, 398, 694, 48, 703, 48, 398, 1124,
742, 823, 743, 832, 398, 398, 398, 398, 398, 398,
282, 401, 401, 401, 401, 401, 401, 402, 562, 656,
694, 403, 703, 286, 910, 683, 658, 403, 403, 403,
403, 403, 403, 487, 488, 488, 488, 488, 488, 491,
492, 492, 492, 492, 492, 48, 342, 48, 906, 286,
407, 408, 408, 408, 408, 408, 408, 409, 904, 688,
898, 410, 48, 411, 48, 750, 850, 410, 410, 410,
410, 410, 410, 1283, 494, 494, 494, 494, 494, 494,
499, 422, 422, 422, 422, 422, 422, 48, 342, 411,
282, 414, 414, 414, 414, 414, 414, 402, 894, 1283,
892, 415, 886, 1283, 48, 48, 48, 415, 415, 415,
415, 415, 415, 416, 417, 417, 417, 417, 417, 417,
418, 746, 48, 48, 419, 1283, 420, 745, 747, 1283,
419, 419, 419, 419, 419, 419, 223, 424, 424, 424,
424, 424, 424, 501, 426, 426, 426, 426, 426, 426,
704, 48, 420, 357, 427, 427, 427, 427, 427, 427,
359, 342, 1283, 705, 428, 48, 882, 48, 48, 880,
428, 428, 428, 428, 428, 428, 429, 430, 430, 430,
430, 430, 48, 744, 48, 875, 431, 748, 1283, 705,
342, 871, 431, 431, 431, 431, 431, 431, 397, 397,
397, 397, 397, 397, 567, 568, 568, 568, 568, 568,
464, 1283, 504, 504, 504, 504, 504, 504, 547, 480,
480, 480, 480, 480, 480, 1283, 550, 550, 550, 550,
550, 550, 714, 716, 48, 48, 464, 467, 468, 468,
468, 468, 468, 866, 342, 715, 717, 469, 1283, 342,
48, 48, 48, 469, 469, 469, 469, 469, 469, 470,
471, 471, 471, 471, 471, 673, 749, 48, 1066, 472,
840, 715, 717, 48, 1283, 472, 472, 472, 472, 472,
472, 476, 477, 477, 477, 477, 477, 342, 942, 1283,
48, 478, 1283, 1059, 48, 844, 1056, 478, 478, 478,
478, 478, 478, 407, 481, 481, 481, 481, 481, 481,
409, 48, 1283, 1283, 482, 1283, 1053, 1050, 1283, 846,
482, 482, 482, 482, 482, 482, 483, 484, 484, 484,
484, 484, 342, 697, 891, 1283, 485, 903, 1283, 1283,
853, 48, 485, 485, 485, 485, 485, 485, 416, 493,
493, 493, 493, 493, 493, 418, 1283, 1283, 48, 494,
891, 1283, 936, 903, 1047, 494, 494, 494, 494, 494,
494, 495, 496, 496, 496, 496, 496, 342, 942, 708,
1022, 497, 1283, 1283, 48, 48, 856, 497, 497, 497,
497, 497, 497, 357, 503, 503, 503, 503, 503, 503,
359, 48, 48, 830, 504, 939, 1022, 940, 48, 48,
504, 504, 504, 504, 504, 504, 505, 506, 506, 506,
506, 506, 506, 507, 720, 48, 48, 508, 1037, 509,
1031, 859, 826, 508, 508, 508, 508, 508, 508, 556,
488, 488, 488, 488, 488, 488, 282, 490, 490, 490,
490, 490, 490, 48, 48, 509, 530, 530, 530, 530,
530, 530, 1283, 824, 342, 859, 530, 1283, 1283, 48,
48, 48, 530, 530, 530, 530, 530, 530, 407, 533,
533, 533, 533, 533, 533, 534, 48, 839, 1283, 535,
751, 411, 342, 1283, 1283, 535, 535, 535, 535, 535,
535, 558, 492, 492, 492, 492, 492, 492, 1283, 561,
561, 561, 561, 561, 561, 824, 48, 411, 416, 536,
536, 536, 536, 536, 536, 537, 856, 830, 825, 538,
1283, 420, 342, 48, 832, 538, 538, 538, 538, 538,
538, 570, 571, 571, 571, 571, 571, 574, 575, 575,
575, 575, 575, 938, 825, 48, 1283, 420, 542, 543,
543, 543, 543, 543, 543, 544, 866, 875, 853, 545,
342, 546, 48, 1047, 1050, 545, 545, 545, 545, 545,
545, 1283, 577, 577, 577, 577, 577, 577, 1283, 482,
482, 482, 482, 482, 482, 48, 1034, 546, 407, 549,
549, 549, 549, 549, 549, 534, 850, 1283, 342, 550,
961, 1283, 48, 841, 48, 550, 550, 550, 550, 550,
550, 551, 552, 552, 552, 552, 552, 552, 553, 342,
842, 48, 554, 1283, 555, 942, 1040, 1283, 554, 554,
554, 554, 554, 554, 1283, 494, 494, 494, 494, 494,
494, 614, 615, 615, 615, 615, 615, 826, 48, 48,
555, 416, 560, 560, 560, 560, 560, 560, 537, 942,
827, 658, 561, 1081, 1089, 48, 48, 720, 561, 561,
561, 561, 561, 561, 562, 563, 563, 563, 563, 563,
563, 564, 843, 912, 935, 565, 827, 566, 716, 1081,
1089, 565, 565, 565, 565, 565, 565, 1283, 617, 617,
617, 617, 617, 617, 622, 623, 623, 623, 623, 623,
871, 48, 48, 566, 505, 576, 576, 576, 576, 576,
576, 507, 1097, 872, 714, 577, 708, 900, 48, 48,
704, 577, 577, 577, 577, 577, 577, 578, 579, 579,
579, 579, 579, 835, 836, 1283, 702, 580, 1097, 872,
48, 48, 880, 580, 580, 580, 580, 580, 580, 599,
600, 600, 600, 600, 600, 881, 697, 48, 48, 601,
1178, 1283, 48, 48, 888, 601, 601, 601, 601, 601,
601, 407, 481, 481, 481, 481, 481, 481, 534, 48,
48, 881, 482, 1207, 48, 48, 1178, 882, 482, 482,
482, 482, 482, 482, 602, 603, 603, 603, 603, 603,
883, 48, 48, 1035, 604, 693, 1211, 48, 688, 1207,
604, 604, 604, 604, 604, 604, 416, 493, 493, 493,
493, 493, 493, 537, 48, 1036, 883, 494, 877, 48,
868, 48, 1211, 494, 494, 494, 494, 494, 494, 605,
606, 606, 606, 606, 606, 1038, 48, 886, 48, 607,
768, 1119, 753, 48, 1053, 607, 607, 607, 607, 607,
607, 611, 612, 612, 612, 612, 612, 342, 898, 910,
48, 613, 1189, 1187, 859, 1056, 1059, 613, 613, 613,
613, 613, 613, 542, 616, 616, 616, 616, 616, 616,
544, 959, 1215, 1219, 617, 1257, 856, 48, 1124, 853,
617, 617, 617, 617, 617, 617, 618, 619, 619, 619,
619, 619, 342, 1029, 48, 850, 620, 1188, 1215, 1219,
1031, 1257, 620, 620, 620, 620, 620, 620, 626, 627,
627, 627, 627, 627, 551, 628, 628, 628, 628, 628,
628, 553, 1265, 1266, 1267, 629, 848, 48, 48, 48,
753, 629, 629, 629, 629, 629, 629, 630, 631, 631,
631, 631, 631, 342, 48, 48, 48, 632, 1265, 1266,
1267, 656, 1234, 632, 632, 632, 632, 632, 632, 1283,
629, 629, 629, 629, 629, 629, 634, 635, 635, 635,
635, 635, 637, 638, 638, 638, 638, 638, 641, 642,
642, 642, 642, 642, 562, 643, 643, 643, 643, 643,
643, 564, 1268, 1269, 1274, 644, 1280, 48, 48, 832,
652, 644, 644, 644, 644, 644, 644, 645, 646, 646,
646, 646, 646, 342, 48, 48, 650, 647, 1268, 1269,
1274, 683, 1280, 647, 647, 647, 647, 647, 647, 1283,
644, 644, 644, 644, 644, 644, 568, 568, 568, 568,
568, 568, 650, 571, 571, 571, 571, 571, 571, 357,
573, 573, 573, 573, 573, 573, 652, 575, 575, 575,
575, 575, 575, 505, 654, 654, 654, 654, 654, 654,
507, 680, 677, 768, 655, 753, 753, 507, 562, 722,
655, 655, 655, 655, 655, 655, 1283, 655, 655, 655,
655, 655, 655, 656, 657, 657, 657, 657, 657, 657,
658, 48, 48, 892, 659, 558, 660, 556, 551, 710,
659, 659, 659, 659, 659, 659, 893, 547, 48, 48,
693, 615, 615, 615, 615, 615, 615, 542, 699, 690,
665, 670, 660, 542, 676, 676, 676, 676, 676, 676,
677, 687, 893, 610, 678, 598, 546, 683, 680, 677,
678, 678, 678, 678, 678, 678, 1283, 696, 696, 696,
696, 696, 696, 702, 623, 623, 623, 623, 623, 623,
675, 598, 546, 551, 679, 679, 679, 679, 679, 679,
680, 505, 658, 501, 681, 499, 555, 537, 534, 610,
681, 681, 681, 681, 681, 681, 407, 625, 625, 625,
625, 625, 625, 704, 627, 627, 627, 627, 627, 627,
894, 598, 555, 562, 682, 682, 682, 682, 682, 682,
683, 598, 596, 895, 684, 595, 566, 594, 593, 592,
684, 684, 684, 684, 684, 684, 1283, 707, 707, 707,
707, 707, 707, 635, 635, 635, 635, 635, 635, 895,
591, 590, 566, 688, 689, 689, 689, 689, 689, 689,
690, 589, 588, 587, 691, 586, 692, 585, 584, 583,
691, 691, 691, 691, 691, 691, 714, 638, 638, 638,
638, 638, 638, 416, 640, 640, 640, 640, 640, 640,
48, 48, 692, 542, 695, 695, 695, 695, 695, 695,
677, 582, 359, 416, 696, 564, 412, 48, 48, 407,
696, 696, 696, 696, 696, 696, 697, 698, 698, 698,
698, 698, 698, 699, 845, 1186, 553, 700, 544, 701,
541, 475, 466, 700, 700, 700, 700, 700, 700, 716,
642, 642, 642, 642, 642, 642, 1283, 719, 719, 719,
719, 719, 719, 48, 537, 701, 551, 706, 706, 706,
706, 706, 706, 680, 534, 532, 466, 707, 529, 528,
48, 527, 526, 707, 707, 707, 707, 707, 707, 708,
709, 709, 709, 709, 709, 709, 710, 525, 524, 1232,
711, 523, 712, 522, 521, 520, 711, 711, 711, 711,
711, 711, 726, 727, 727, 727, 727, 727, 729, 730,
730, 730, 730, 730, 48, 904, 519, 518, 712, 562,
718, 718, 718, 718, 718, 718, 683, 517, 905, 516,
719, 48, 515, 514, 513, 512, 719, 719, 719, 719,
719, 719, 720, 721, 721, 721, 721, 721, 721, 722,
1261, 511, 510, 723, 905, 724, 357, 507, 353, 723,
723, 723, 723, 723, 723, 733, 734, 734, 734, 734,
734, 1283, 736, 736, 736, 736, 736, 736, 906, 48,
402, 724, 656, 735, 735, 735, 735, 735, 735, 658,
475, 907, 466, 736, 402, 402, 48, 466, 330, 736,
736, 736, 736, 736, 736, 737, 738, 738, 738, 738,
738, 837, 838, 463, 462, 739, 461, 907, 460, 459,
1023, 739, 739, 739, 739, 739, 739, 754, 755, 755,
755, 755, 755, 1024, 458, 457, 197, 756, 456, 455,
454, 453, 452, 756, 756, 756, 756, 756, 756, 542,
616, 616, 616, 616, 616, 616, 677, 451, 450, 1024,
617, 48, 449, 448, 447, 446, 617, 617, 617, 617,
617, 617, 757, 758, 758, 758, 758, 758, 48, 443,
440, 439, 759, 438, 437, 436, 435, 1120, 759, 759,
759, 759, 759, 759, 1283, 617, 617, 617, 617, 617,
617, 551, 628, 628, 628, 628, 628, 628, 680, 434,
433, 225, 629, 48, 342, 282, 418, 409, 629, 629,
629, 629, 629, 629, 760, 761, 761, 761, 761, 761,
48, 342, 406, 339, 762, 333, 402, 400, 333, 1233,
762, 762, 762, 762, 762, 762, 1283, 629, 629, 629,
629, 629, 629, 562, 643, 643, 643, 643, 643, 643,
683, 395, 394, 393, 644, 392, 391, 390, 389, 388,
644, 644, 644, 644, 644, 644, 763, 764, 764, 764,
764, 764, 387, 386, 385, 382, 765, 381, 380, 379,
378, 105, 765, 765, 765, 765, 765, 765, 1283, 644,
644, 644, 644, 644, 644, 769, 770, 770, 770, 770,
770, 342, 377, 376, 367, 771, 366, 365, 364, 363,
362, 771, 771, 771, 771, 771, 771, 772, 773, 773,
773, 773, 773, 688, 774, 774, 774, 774, 774, 774,
690, 223, 359, 342, 775, 339, 333, 333, 1283, 212,
775, 775, 775, 775, 775, 775, 776, 777, 777, 777,
777, 777, 342, 329, 322, 321, 778, 320, 319, 318,
317, 316, 778, 778, 778, 778, 778, 778, 1283, 775,
775, 775, 775, 775, 775, 780, 781, 781, 781, 781,
781, 784, 785, 785, 785, 785, 785, 697, 786, 786,
786, 786, 786, 786, 699, 315, 314, 313, 787, 312,
311, 310, 309, 308, 787, 787, 787, 787, 787, 787,
788, 789, 789, 789, 789, 789, 342, 303, 302, 192,
790, 301, 300, 299, 298, 297, 790, 790, 790, 790,
790, 790, 1283, 787, 787, 787, 787, 787, 787, 792,
793, 793, 793, 793, 793, 795, 796, 796, 796, 796,
796, 799, 800, 800, 800, 800, 800, 708, 801, 801,
801, 801, 801, 801, 710, 296, 284, 221, 802, 281,
218, 215, 278, 123, 802, 802, 802, 802, 802, 802,
803, 804, 804, 804, 804, 804, 342, 272, 271, 192,
805, 268, 267, 266, 265, 264, 805, 805, 805, 805,
805, 805, 1283, 802, 802, 802, 802, 802, 802, 808,
809, 809, 809, 809, 809, 811, 812, 812, 812, 812,
812, 815, 816, 816, 816, 816, 816, 720, 817, 817,
817, 817, 817, 817, 722, 263, 262, 261, 818, 260,
259, 258, 255, 254, 818, 818, 818, 818, 818, 818,
819, 820, 820, 820, 820, 820, 342, 192, 253, 252,
821, 251, 250, 249, 248, 247, 821, 821, 821, 821,
821, 821, 1283, 818, 818, 818, 818, 818, 818, 727,
727, 727, 727, 727, 727, 824, 730, 730, 730, 730,
730, 730, 505, 732, 732, 732, 732, 732, 732, 826,
734, 734, 734, 734, 734, 734, 656, 828, 828, 828,
828, 828, 828, 658, 246, 245, 244, 829, 243, 242,
241, 240, 239, 829, 829, 829, 829, 829, 829, 1283,
829, 829, 829, 829, 829, 829, 830, 831, 831, 831,
831, 831, 831, 832, 238, 237, 235, 833, 234, 834,
233, 232, 231, 833, 833, 833, 833, 833, 833, 871,
773, 773, 773, 773, 773, 773, 1283, 874, 874, 874,
874, 874, 874, 230, 229, 834, 688, 849, 849, 849,
849, 849, 849, 850, 228, 225, 49, 851, 218, 692,
211, 210, 209, 851, 851, 851, 851, 851, 851, 880,
781, 781, 781, 781, 781, 781, 542, 783, 783, 783,
783, 783, 783, 208, 207, 692, 697, 852, 852, 852,
852, 852, 852, 853, 206, 205, 204, 854, 203, 701,
202, 201, 198, 854, 854, 854, 854, 854, 854, 882,
785, 785, 785, 785, 785, 785, 1283, 885, 885, 885,
885, 885, 885, 1025, 197, 701, 708, 855, 855, 855,
855, 855, 855, 856, 196, 195, 1026, 857, 194, 712,
193, 192, 191, 857, 857, 857, 857, 857, 857, 793,
793, 793, 793, 793, 793, 892, 796, 796, 796, 796,
796, 796, 1026, 190, 189, 712, 720, 858, 858, 858,
858, 858, 858, 859, 188, 187, 186, 860, 185, 724,
184, 183, 182, 860, 860, 860, 860, 860, 860, 551,
798, 798, 798, 798, 798, 798, 894, 800, 800, 800,
800, 800, 800, 181, 48, 724, 862, 863, 863, 863,
863, 863, 864, 180, 179, 169, 865, 168, 167, 164,
163, 48, 865, 865, 865, 865, 865, 865, 866, 867,
867, 867, 867, 867, 867, 868, 1041, 162, 161, 869,
160, 870, 158, 154, 152, 869, 869, 869, 869, 869,
869, 1283, 897, 897, 897, 897, 897, 897, 809, 809,
809, 809, 809, 809, 1069, 151, 150, 870, 688, 873,
873, 873, 873, 873, 873, 850, 149, 1070, 148, 874,
146, 145, 144, 137, 130, 874, 874, 874, 874, 874,
874, 875, 876, 876, 876, 876, 876, 876, 877, 129,
124, 82, 878, 1070, 879, 79, 58, 47, 878, 878,
878, 878, 878, 878, 904, 812, 812, 812, 812, 812,
812, 562, 814, 814, 814, 814, 814, 814, 45, 1283,
879, 697, 884, 884, 884, 884, 884, 884, 853, 1283,
1283, 1283, 885, 1283, 1283, 1283, 1283, 1283, 885, 885,
885, 885, 885, 885, 886, 887, 887, 887, 887, 887,
887, 888, 1283, 1283, 1283, 889, 1283, 890, 1283, 1283,
1283, 889, 889, 889, 889, 889, 889, 906, 816, 816,
816, 816, 816, 816, 1283, 909, 909, 909, 909, 909,
909, 1283, 1283, 890, 708, 896, 896, 896, 896, 896,
896, 856, 1283, 1283, 1283, 897, 1283, 1283, 1283, 1283,
1283, 897, 897, 897, 897, 897, 897, 898, 899, 899,
899, 899, 899, 899, 900, 1283, 1283, 1283, 901, 1283,
902, 1283, 1283, 1283, 901, 901, 901, 901, 901, 901,
916, 917, 917, 917, 917, 917, 919, 920, 920, 920,
920, 920, 1283, 1074, 1283, 1283, 902, 720, 908, 908,
908, 908, 908, 908, 859, 1283, 1075, 1283, 909, 1283,
1283, 1283, 1283, 1283, 909, 909, 909, 909, 909, 909,
910, 911, 911, 911, 911, 911, 911, 912, 1283, 1283,
1283, 913, 1075, 914, 1283, 1283, 1283, 913, 913, 913,
913, 913, 913, 923, 924, 924, 924, 924, 924, 1283,
926, 926, 926, 926, 926, 926, 1076, 1283, 1283, 914,
830, 925, 925, 925, 925, 925, 925, 832, 1283, 1077,
1283, 926, 1283, 1283, 1283, 1283, 1283, 926, 926, 926,
926, 926, 926, 927, 928, 928, 928, 928, 928, 48,
48, 48, 48, 929, 48, 1077, 48, 1283, 1283, 929,
929, 929, 929, 929, 929, 1283, 48, 48, 48, 48,
1283, 48, 1283, 48, 1283, 1283, 1283, 931, 932, 933,
1283, 1082, 1084, 934, 1039, 937, 943, 944, 944, 944,
944, 944, 1283, 1283, 1083, 1085, 945, 1283, 1283, 1283,
1283, 1283, 945, 945, 945, 945, 945, 945, 688, 774,
774, 774, 774, 774, 774, 850, 1283, 1283, 1283, 775,
1083, 1085, 1283, 1283, 1283, 775, 775, 775, 775, 775,
775, 946, 947, 947, 947, 947, 947, 1283, 1283, 1283,
1283, 948, 1283, 1283, 1283, 1283, 1283, 948, 948, 948,
948, 948, 948, 1283, 775, 775, 775, 775, 775, 775,
697, 786, 786, 786, 786, 786, 786, 853, 1283, 1283,
1283, 787, 1283, 1283, 1283, 1283, 1283, 787, 787, 787,
787, 787, 787, 949, 950, 950, 950, 950, 950, 1283,
1283, 1283, 1283, 951, 1283, 1283, 1283, 1283, 1283, 951,
951, 951, 951, 951, 951, 1283, 787, 787, 787, 787,
787, 787, 708, 801, 801, 801, 801, 801, 801, 856,
1283, 1283, 1283, 802, 1283, 1283, 1283, 1283, 1283, 802,
802, 802, 802, 802, 802, 952, 953, 953, 953, 953,
953, 1283, 1283, 1283, 1283, 954, 1283, 1283, 1283, 1283,
1283, 954, 954, 954, 954, 954, 954, 1283, 802, 802,
802, 802, 802, 802, 720, 817, 817, 817, 817, 817,
817, 859, 1283, 1283, 1283, 818, 1283, 1283, 1283, 1283,
1283, 818, 818, 818, 818, 818, 818, 955, 956, 956,
956, 956, 956, 1283, 1283, 1283, 1283, 957, 1283, 1283,
1283, 1283, 1283, 957, 957, 957, 957, 957, 957, 1283,
818, 818, 818, 818, 818, 818, 959, 960, 960, 960,
960, 960, 960, 961, 1283, 1283, 1283, 962, 1283, 963,
1283, 1283, 1283, 962, 962, 962, 962, 962, 962, 965,
966, 966, 966, 966, 966, 1283, 968, 968, 968, 968,
968, 968, 1283, 1283, 1283, 963, 866, 967, 967, 967,
967, 967, 967, 868, 1283, 1283, 1283, 968, 1283, 1283,
1283, 1283, 1283, 968, 968, 968, 968, 968, 968, 971,
972, 972, 972, 972, 972, 975, 976, 976, 976, 976,
976, 875, 977, 977, 977, 977, 977, 977, 877, 1283,
1283, 1283, 978, 1283, 1283, 1283, 1283, 1283, 978, 978,
978, 978, 978, 978, 1283, 978, 978, 978, 978, 978,
978, 981, 982, 982, 982, 982, 982, 984, 985, 985,
985, 985, 985, 988, 989, 989, 989, 989, 989, 886,
990, 990, 990, 990, 990, 990, 888, 1283, 1283, 1283,
991, 1283, 1283, 1283, 1283, 1283, 991, 991, 991, 991,
991, 991, 1283, 991, 991, 991, 991, 991, 991, 995,
996, 996, 996, 996, 996, 998, 999, 999, 999, 999,
999, 1002, 1003, 1003, 1003, 1003, 1003, 898, 1004, 1004,
1004, 1004, 1004, 1004, 900, 1283, 1283, 1283, 1005, 1283,
1283, 1283, 1283, 1283, 1005, 1005, 1005, 1005, 1005, 1005,
1283, 1005, 1005, 1005, 1005, 1005, 1005, 1009, 1010, 1010,
1010, 1010, 1010, 1012, 1013, 1013, 1013, 1013, 1013, 1016,
1017, 1017, 1017, 1017, 1017, 910, 1018, 1018, 1018, 1018,
1018, 1018, 912, 1283, 1283, 1283, 1019, 1283, 1283, 1283,
1283, 1283, 1019, 1019, 1019, 1019, 1019, 1019, 1283, 1019,
1019, 1019, 1019, 1019, 1019, 917, 917, 917, 917, 917,
917, 1023, 920, 920, 920, 920, 920, 920, 656, 922,
922, 922, 922, 922, 922, 1025, 924, 924, 924, 924,
924, 924, 830, 1027, 1027, 1027, 1027, 1027, 1027, 832,
1283, 1283, 1283, 1028, 1283, 1283, 1283, 1283, 1283, 1028,
1028, 1028, 1028, 1028, 1028, 1283, 1028, 1028, 1028, 1028,
1028, 1028, 1029, 1030, 1030, 1030, 1030, 1030, 1030, 1031,
1283, 1283, 1283, 1032, 1283, 1033, 1283, 1283, 1283, 1032,
1032, 1032, 1032, 1032, 1032, 1061, 1062, 1062, 1062, 1062,
1062, 1283, 1064, 1064, 1064, 1064, 1064, 1064, 1283, 1283,
1090, 1033, 1042, 1043, 1043, 1043, 1043, 1043, 1044, 1283,
1283, 1283, 1045, 1091, 1283, 1283, 1283, 1283, 1045, 1045,
1045, 1045, 1045, 1045, 866, 1046, 1046, 1046, 1046, 1046,
1046, 1047, 1283, 1283, 1283, 1048, 1283, 870, 1283, 1091,
1283, 1048, 1048, 1048, 1048, 1048, 1048, 1069, 966, 966,
966, 966, 966, 966, 1283, 1072, 1072, 1072, 1072, 1072,
1072, 1283, 1283, 870, 875, 1049, 1049, 1049, 1049, 1049,
1049, 1050, 1283, 1283, 1283, 1051, 1283, 879, 1283, 1283,
1283, 1051, 1051, 1051, 1051, 1051, 1051, 1074, 972, 972,
972, 972, 972, 972, 688, 974, 974, 974, 974, 974,
974, 1283, 1283, 879, 886, 1052, 1052, 1052, 1052, 1052,
1052, 1053, 1283, 1283, 1283, 1054, 1283, 890, 1283, 1283,
1283, 1054, 1054, 1054, 1054, 1054, 1054, 1076, 976, 976,
976, 976, 976, 976, 1283, 1079, 1079, 1079, 1079, 1079,
1079, 1092, 1283, 890, 898, 1055, 1055, 1055, 1055, 1055,
1055, 1056, 1283, 1283, 1093, 1057, 1283, 902, 1283, 1283,
1283, 1057, 1057, 1057, 1057, 1057, 1057, 982, 982, 982,
982, 982, 982, 1082, 985, 985, 985, 985, 985, 985,
1093, 1283, 1283, 902, 910, 1058, 1058, 1058, 1058, 1058,
1058, 1059, 1283, 1283, 1283, 1060, 1283, 914, 1283, 1283,
1283, 1060, 1060, 1060, 1060, 1060, 1060, 697, 987, 987,
987, 987, 987, 987, 1084, 989, 989, 989, 989, 989,
989, 1098, 1283, 914, 959, 1063, 1063, 1063, 1063, 1063,
1063, 961, 1283, 1283, 1099, 1064, 1283, 1283, 1283, 1283,
1283, 1064, 1064, 1064, 1064, 1064, 1064, 866, 1071, 1071,
1071, 1071, 1071, 1071, 1047, 1283, 1283, 1283, 1072, 1283,
1099, 1283, 1283, 1283, 1072, 1072, 1072, 1072, 1072, 1072,
875, 1078, 1078, 1078, 1078, 1078, 1078, 1050, 1283, 1283,
1283, 1079, 1283, 1283, 1283, 1283, 1283, 1079, 1079, 1079,
1079, 1079, 1079, 886, 1086, 1086, 1086, 1086, 1086, 1086,
1053, 1283, 1283, 1283, 1087, 1283, 1283, 1283, 1283, 1283,
1087, 1087, 1087, 1087, 1087, 1087, 1283, 1087, 1087, 1087,
1087, 1087, 1087, 996, 996, 996, 996, 996, 996, 1090,
999, 999, 999, 999, 999, 999, 708, 1001, 1001, 1001,
1001, 1001, 1001, 1092, 1003, 1003, 1003, 1003, 1003, 1003,
898, 1094, 1094, 1094, 1094, 1094, 1094, 1056, 1283, 1283,
1283, 1095, 1283, 1283, 1283, 1283, 1283, 1095, 1095, 1095,
1095, 1095, 1095, 1283, 1095, 1095, 1095, 1095, 1095, 1095,
1010, 1010, 1010, 1010, 1010, 1010, 1098, 1013, 1013, 1013,
1013, 1013, 1013, 720, 1015, 1015, 1015, 1015, 1015, 1015,
1100, 1100, 1017, 1017, 1017, 1017, 1017, 1017, 1283, 1283,
1283, 1283, 1283, 1101, 1283, 1103, 1103, 1103, 1103, 1103,
1103, 1106, 1107, 1107, 1107, 1107, 1107, 1109, 1110, 1110,
1110, 1110, 1110, 1113, 1114, 1114, 1114, 1114, 1114, 1101,
910, 1102, 1102, 1102, 1102, 1102, 1102, 1059, 1283, 1283,
1283, 1103, 1283, 1283, 1283, 1283, 1283, 1103, 1103, 1103,
1103, 1103, 1103, 1029, 1115, 1115, 1115, 1115, 1115, 1115,
1031, 1283, 1283, 1283, 1116, 1283, 48, 48, 1283, 1283,
1116, 1116, 1116, 1116, 1116, 1116, 1283, 1116, 1116, 1116,
1116, 1116, 1116, 48, 48, 1283, 968, 968, 968, 968,
968, 968, 1283, 1283, 1283, 1122, 1121, 959, 1123, 1123,
1123, 1123, 1123, 1123, 1124, 1283, 1283, 1283, 1125, 1283,
963, 1283, 1283, 1283, 1125, 1125, 1125, 1125, 1125, 1125,
1283, 978, 978, 978, 978, 978, 978, 1283, 991, 991,
991, 991, 991, 991, 1132, 1283, 963, 866, 967, 967,
967, 967, 967, 967, 1047, 1283, 1283, 1133, 968, 1283,
1283, 1283, 1283, 1283, 968, 968, 968, 968, 968, 968,
875, 977, 977, 977, 977, 977, 977, 1050, 1283, 1283,
1283, 978, 1283, 1133, 1283, 1283, 1283, 978, 978, 978,
978, 978, 978, 886, 990, 990, 990, 990, 990, 990,
1053, 1283, 1283, 1283, 991, 1283, 1283, 1283, 1283, 1283,
991, 991, 991, 991, 991, 991, 898, 1004, 1004, 1004,
1004, 1004, 1004, 1056, 1283, 1283, 1283, 1005, 1283, 1283,
1283, 1283, 1283, 1005, 1005, 1005, 1005, 1005, 1005, 1283,
1005, 1005, 1005, 1005, 1005, 1005, 910, 1018, 1018, 1018,
1018, 1018, 1018, 1059, 1283, 1283, 1283, 1019, 1283, 1283,
1283, 1283, 1283, 1019, 1019, 1019, 1019, 1019, 1019, 1283,
1019, 1019, 1019, 1019, 1019, 1019, 1132, 1062, 1062, 1062,
1062, 1062, 1062, 959, 1134, 1134, 1134, 1134, 1134, 1134,
1124, 1283, 1283, 1283, 1135, 1283, 1283, 1283, 1283, 1283,
1135, 1135, 1135, 1135, 1135, 1135, 1283, 1135, 1135, 1135,
1135, 1135, 1135, 1138, 1139, 1139, 1139, 1139, 1139, 1143,
1144, 1144, 1144, 1144, 1144, 1146, 1147, 1147, 1147, 1147,
1147, 1152, 1153, 1153, 1153, 1153, 1153, 1155, 1156, 1156,
1156, 1156, 1156, 1161, 1162, 1162, 1162, 1162, 1162, 1164,
1165, 1165, 1165, 1165, 1165, 1170, 1171, 1171, 1171, 1171,
1171, 1173, 1174, 1174, 1174, 1174, 1174, 1107, 1107, 1107,
1107, 1107, 1107, 1179, 1179, 1110, 1110, 1110, 1110, 1110,
1110, 1181, 1283, 1283, 1283, 1283, 1180, 830, 1112, 1112,
1112, 1112, 1112, 1112, 1182, 1181, 1114, 1114, 1114, 1114,
1114, 1114, 1283, 1184, 1184, 1184, 1184, 1184, 1184, 1283,
1283, 1283, 1180, 1283, 1064, 1064, 1064, 1064, 1064, 1064,
1182, 1029, 1183, 1183, 1183, 1183, 1183, 1183, 1031, 1283,
1283, 1283, 1184, 1283, 1283, 1283, 1283, 1283, 1184, 1184,
1184, 1184, 1184, 1184, 959, 1063, 1063, 1063, 1063, 1063,
1063, 1124, 1283, 1283, 1283, 1064, 1283, 1283, 1283, 1283,
1204, 1064, 1064, 1064, 1064, 1064, 1064, 1198, 1199, 1199,
1199, 1199, 1199, 1205, 1204, 1139, 1139, 1139, 1139, 1139,
1139, 866, 1141, 1141, 1141, 1141, 1141, 1141, 1144, 1144,
1144, 1144, 1144, 1144, 1208, 1283, 1283, 1283, 1283, 1205,
1208, 1147, 1147, 1147, 1147, 1147, 1147, 1209, 875, 1149,
1149, 1149, 1149, 1149, 1149, 1153, 1153, 1153, 1153, 1153,
1153, 1212, 1212, 1156, 1156, 1156, 1156, 1156, 1156, 1283,
1283, 1283, 1283, 1209, 1213, 886, 1158, 1158, 1158, 1158,
1158, 1158, 1162, 1162, 1162, 1162, 1162, 1162, 1216, 1216,
1165, 1165, 1165, 1165, 1165, 1165, 1283, 1283, 1283, 1283,
1213, 1217, 898, 1167, 1167, 1167, 1167, 1167, 1167, 1171,
1171, 1171, 1171, 1171, 1171, 1220, 1220, 1174, 1174, 1174,
1174, 1174, 1174, 1283, 1283, 1283, 1283, 1217, 1221, 910,
1176, 1176, 1176, 1176, 1176, 1176, 1224, 1225, 1225, 1225,
1225, 1225, 1227, 1228, 1228, 1228, 1228, 1228, 1236, 1283,
1283, 1283, 1283, 1283, 1221, 1238, 1239, 1239, 1239, 1239,
1239, 1237, 1236, 1199, 1199, 1199, 1199, 1199, 1199, 959,
1201, 1201, 1201, 1201, 1201, 1201, 1242, 1243, 1243, 1243,
1243, 1243, 1283, 1283, 1283, 1283, 1283, 1237, 1246, 1247,
1247, 1247, 1247, 1247, 1250, 1251, 1251, 1251, 1251, 1251,
1254, 1255, 1255, 1255, 1255, 1255, 1225, 1225, 1225, 1225,
1225, 1225, 1258, 1258, 1228, 1228, 1228, 1228, 1228, 1228,
1283, 1283, 1283, 1283, 1283, 1259, 1029, 1230, 1230, 1230,
1230, 1230, 1230, 1262, 1263, 1263, 1263, 1263, 1263, 1239,
1239, 1239, 1239, 1239, 1239, 1243, 1243, 1243, 1243, 1243,
1243, 1259, 1247, 1247, 1247, 1247, 1247, 1247, 1251, 1251,
1251, 1251, 1251, 1251, 1255, 1255, 1255, 1255, 1255, 1255,
1271, 1272, 1272, 1272, 1272, 1272, 1263, 1263, 1263, 1263,
1263, 1263, 1272, 1272, 1272, 1272, 1272, 1272, 46, 1283,
1283, 1283, 1283, 46, 46, 46, 62, 1283, 62, 62,
62, 62, 62, 62, 62, 131, 1283, 131, 136, 136,
136, 217, 217, 217, 226, 226, 226, 277, 277, 277,
279, 279, 279, 280, 280, 280, 287, 287, 287, 285,
285, 285, 295, 1283, 295, 332, 332, 332, 337, 337,
337, 338, 338, 338, 351, 1283, 351, 352, 352, 352,
289, 289, 1283, 1283, 289, 360, 360, 360, 399, 399,
399, 403, 403, 403, 404, 404, 404, 405, 405, 405,
410, 410, 410, 345, 345, 1283, 1283, 345, 419, 419,
419, 423, 1283, 423, 424, 424, 424, 432, 1283, 432,
465, 465, 465, 473, 473, 473, 474, 474, 474, 486,
1283, 486, 489, 1283, 489, 490, 490, 490, 498, 1283,
498, 422, 422, 1283, 1283, 422, 426, 426, 1283, 1283,
426, 508, 508, 508, 404, 404, 404, 531, 531, 531,
535, 535, 535, 538, 538, 538, 539, 539, 539, 540,
540, 540, 545, 545, 545, 480, 480, 1283, 1283, 480,
554, 554, 554, 488, 488, 1283, 1283, 488, 492, 492,
1283, 1283, 492, 565, 565, 565, 569, 1283, 569, 572,
1283, 572, 573, 573, 573, 581, 1283, 581, 597, 597,
597, 608, 608, 608, 609, 609, 609, 621, 1283, 621,
624, 1283, 624, 625, 625, 625, 633, 1283, 633, 636,
1283, 636, 639, 1283, 639, 640, 640, 640, 648, 1283,
648, 568, 1283, 1283, 568, 571, 571, 1283, 1283, 571,
572, 572, 1283, 572, 575, 575, 1283, 1283, 575, 659,
659, 659, 581, 581, 1283, 581, 53, 53, 53, 1283,
53, 53, 539, 539, 539, 674, 674, 674, 678, 678,
678, 681, 681, 681, 684, 684, 684, 685, 685, 685,
686, 686, 686, 691, 691, 691, 615, 615, 1283, 1283,
615, 700, 700, 700, 621, 621, 1283, 621, 623, 623,
1283, 1283, 623, 624, 624, 1283, 624, 627, 627, 1283,
1283, 627, 711, 711, 711, 633, 633, 1283, 633, 635,
1283, 1283, 635, 636, 636, 1283, 636, 638, 638, 1283,
1283, 638, 639, 639, 1283, 639, 642, 642, 1283, 1283,
642, 723, 723, 723, 648, 648, 1283, 648, 725, 1283,
725, 728, 1283, 728, 731, 1283, 731, 732, 732, 732,
740, 1283, 740, 53, 53, 53, 1283, 53, 53, 752,
752, 752, 766, 766, 766, 767, 767, 767, 779, 1283,
779, 782, 1283, 782, 783, 783, 783, 791, 1283, 791,
794, 1283, 794, 797, 1283, 797, 798, 798, 798, 806,
1283, 806, 807, 1283, 807, 810, 1283, 810, 813, 1283,
813, 814, 814, 814, 822, 1283, 822, 725, 1283, 725,
727, 1283, 1283, 727, 728, 728, 1283, 728, 730, 730,
1283, 1283, 730, 731, 731, 1283, 731, 734, 734, 1283,
1283, 734, 833, 833, 833, 740, 740, 1283, 740, 53,
53, 53, 1283, 53, 53, 685, 685, 685, 847, 847,
847, 851, 851, 851, 854, 854, 854, 857, 857, 857,
860, 860, 860, 861, 861, 861, 869, 869, 869, 773,
773, 1283, 1283, 773, 878, 878, 878, 779, 779, 1283,
779, 781, 781, 1283, 1283, 781, 782, 782, 1283, 782,
785, 785, 1283, 1283, 785, 889, 889, 889, 791, 791,
1283, 791, 793, 1283, 1283, 793, 794, 794, 1283, 794,
796, 796, 1283, 1283, 796, 797, 797, 1283, 797, 800,
800, 1283, 1283, 800, 901, 901, 901, 806, 806, 1283,
806, 807, 1283, 807, 809, 1283, 1283, 809, 810, 810,
1283, 810, 812, 812, 1283, 1283, 812, 813, 813, 1283,
813, 816, 816, 1283, 1283, 816, 913, 913, 913, 822,
822, 1283, 822, 915, 1283, 915, 918, 1283, 918, 921,
1283, 921, 922, 922, 922, 930, 1283, 930, 53, 53,
53, 1283, 53, 53, 941, 941, 941, 958, 958, 958,
964, 964, 964, 962, 962, 962, 969, 969, 969, 970,
1283, 970, 973, 1283, 973, 974, 974, 974, 979, 979,
979, 980, 1283, 980, 983, 1283, 983, 986, 1283, 986,
987, 987, 987, 992, 992, 992, 993, 1283, 993, 994,
1283, 994, 997, 1283, 997, 1000, 1283, 1000, 1001, 1001,
1001, 1006, 1006, 1006, 1007, 1283, 1007, 1008, 1283, 1008,
1011, 1283, 1011, 1014, 1283, 1014, 1015, 1015, 1015, 1020,
1020, 1020, 1021, 1283, 1021, 915, 1283, 915, 917, 1283,
1283, 917, 918, 918, 1283, 918, 920, 920, 1283, 1283,
920, 921, 921, 1283, 921, 924, 924, 1283, 1283, 924,
1032, 1032, 1032, 930, 930, 1283, 930, 53, 53, 53,
1283, 53, 53, 861, 861, 861, 1048, 1048, 1048, 1051,
1051, 1051, 1054, 1054, 1054, 1057, 1057, 1057, 1060, 1060,
1060, 1065, 1065, 1065, 1067, 1283, 1067, 1068, 1068, 1068,
966, 966, 1283, 1283, 966, 1073, 1073, 1073, 970, 970,
1283, 970, 972, 972, 1283, 1283, 972, 973, 973, 1283,
973, 976, 976, 1283, 1283, 976, 1080, 1080, 1080, 980,
980, 1283, 980, 982, 1283, 1283, 982, 983, 983, 1283,
983, 985, 985, 1283, 1283, 985, 986, 986, 1283, 986,
989, 989, 1283, 1283, 989, 1088, 1088, 1088, 993, 993,
1283, 993, 994, 1283, 994, 996, 1283, 1283, 996, 997,
997, 1283, 997, 999, 999, 1283, 1283, 999, 1000, 1000,
1283, 1000, 1003, 1003, 1283, 1283, 1003, 1096, 1096, 1096,
1007, 1007, 1283, 1007, 1008, 1283, 1008, 1010, 1283, 1283,
1010, 1011, 1011, 1283, 1011, 1013, 1013, 1283, 1283, 1013,
1014, 1014, 1283, 1014, 1017, 1017, 1283, 1283, 1017, 1104,
1104, 1104, 1021, 1021, 1283, 1021, 1105, 1283, 1105, 1108,
1283, 1108, 1111, 1283, 1111, 1112, 1112, 1112, 1117, 1283,
1117, 1118, 1283, 1118, 53, 53, 53, 1283, 53, 53,
1126, 1283, 1126, 1125, 1125, 1125, 1127, 1283, 1127, 1128,
1283, 1128, 1129, 1283, 1129, 1130, 1283, 1130, 1131, 1283,
1131, 1062, 1062, 1283, 1283, 1062, 1136, 1136, 1136, 287,
287, 287, 1067, 1067, 1283, 1067, 1137, 1137, 1137, 1140,
1283, 1140, 1141, 1141, 1141, 1142, 1142, 1142, 1145, 1283,
1145, 1148, 1283, 1148, 1149, 1149, 1149, 1150, 1150, 1150,
1151, 1283, 1151, 1154, 1283, 1154, 1157, 1283, 1157, 1158,
1158, 1158, 1159, 1159, 1159, 1160, 1283, 1160, 1163, 1283,
1163, 1166, 1283, 1166, 1167, 1167, 1167, 1168, 1168, 1168,
1169, 1283, 1169, 1172, 1283, 1172, 1175, 1283, 1175, 1176,
1176, 1176, 1177, 1177, 1177, 1105, 1283, 1105, 1107, 1283,
1283, 1107, 1108, 1108, 1283, 1108, 1110, 1110, 1283, 1283,
1110, 1111, 1111, 1283, 1111, 1114, 1114, 1283, 1283, 1114,
1185, 1283, 1185, 1118, 1118, 1283, 1118, 53, 53, 53,
1283, 53, 53, 1190, 1190, 1190, 1192, 1283, 1192, 1193,
1283, 1193, 1194, 1283, 1194, 1195, 1283, 1195, 1196, 1283,
1196, 1197, 1283, 1197, 1200, 1283, 1200, 1201, 1201, 1201,
1202, 1202, 1202, 1203, 1283, 1203, 1139, 1139, 1283, 1283,
1139, 1140, 1140, 1283, 1140, 1206, 1283, 1206, 1144, 1283,
1283, 1144, 1145, 1145, 1283, 1145, 1147, 1147, 1283, 1283,
1147, 1148, 1148, 1283, 1148, 1210, 1283, 1210, 1151, 1283,
1151, 1153, 1283, 1283, 1153, 1154, 1154, 1283, 1154, 1156,
1156, 1283, 1283, 1156, 1157, 1157, 1283, 1157, 1214, 1283,
1214, 1160, 1283, 1160, 1162, 1283, 1283, 1162, 1163, 1163,
1283, 1163, 1165, 1165, 1283, 1283, 1165, 1166, 1166, 1283,
1166, 1218, 1283, 1218, 1169, 1283, 1169, 1171, 1283, 1283,
1171, 1172, 1172, 1283, 1172, 1174, 1174, 1283, 1283, 1174,
1175, 1175, 1283, 1175, 1222, 1283, 1222, 1223, 1283, 1223,
1226, 1283, 1226, 1229, 1283, 1229, 1230, 1230, 1230, 1231,
1283, 1231, 53, 53, 53, 1283, 53, 53, 1235, 1283,
1235, 1137, 1283, 1137, 1142, 1283, 1142, 1150, 1283, 1150,
1159, 1283, 1159, 1168, 1283, 1168, 1177, 1283, 1177, 1199,
1199, 1283, 1283, 1199, 1200, 1200, 1283, 1200, 1191, 1283,
1191, 1240, 1283, 1240, 1241, 1283, 1241, 1244, 1283, 1244,
1245, 1283, 1245, 1248, 1283, 1248, 1249, 1283, 1249, 1252,
1283, 1252, 1253, 1283, 1253, 1256, 1283, 1256, 1225, 1283,
1283, 1225, 1228, 1228, 1283, 1283, 1228, 1260, 1283, 1260,
1202, 1283, 1202, 1264, 1283, 1264, 1239, 1283, 1283, 1239,
1243, 1283, 1283, 1243, 1247, 1283, 1283, 1247, 1251, 1283,
1283, 1251, 1255, 1283, 1283, 1255, 1270, 1283, 1270, 1273,
1283, 1273, 1263, 1283, 1283, 1263, 1275, 1283, 1275, 1276,
1283, 1276, 1277, 1283, 1277, 1278, 1283, 1278, 1279, 1283,
1279, 1272, 1283, 1283, 1272, 1281, 1283, 1281, 1282, 1283,
1282, 3, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283
} ;
static yyconst short int yy_chk[6635] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 4, 7, 1273, 4, 7, 4, 7, 9,
4, 7, 9, 12, 9, 24, 12, 9, 12, 4,
7, 12, 15, 17, 17, 1264, 9, 4, 7, 24,
12, 19, 19, 29, 9, 1256, 24, 26, 12, 14,
14, 14, 14, 14, 14, 14, 14, 14, 15, 29,
26, 14, 14, 14, 27, 27, 14, 14, 14, 14,
14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
14, 16, 34, 23, 16, 23, 16, 372, 85, 16,
23, 34, 64, 85, 64, 23, 372, 22, 16, 23,
22, 23, 22, 77, 39, 22, 16, 20, 20, 20,
20, 20, 20, 20, 22, 35, 25, 33, 39, 25,
20, 33, 22, 25, 374, 69, 89, 35, 75, 77,
33, 35, 36, 374, 35, 77, 33, 36, 36, 69,
36, 36, 75, 117, 1252, 79, 20, 21, 21, 21,
21, 21, 21, 21, 93, 32, 32, 21, 79, 89,
93, 117, 1248, 21, 21, 21, 21, 21, 21, 31,
32, 94, 31, 31, 32, 31, 94, 31, 32, 31,
32, 31, 37, 38, 31, 159, 37, 32, 41, 159,
582, 38, 133, 38, 37, 1244, 41, 38, 355, 38,
41, 37, 41, 44, 1240, 355, 44, 582, 44, 1229,
90, 44, 49, 49, 49, 49, 49, 49, 133, 140,
44, 52, 52, 52, 52, 52, 52, 52, 44, 50,
50, 50, 50, 50, 50, 50, 90, 205, 220, 1226,
50, 90, 584, 1200, 1184, 140, 50, 50, 50, 50,
50, 50, 54, 54, 54, 54, 54, 54, 61, 584,
205, 61, 54, 61, 220, 184, 61, 274, 54, 54,
54, 54, 54, 54, 55, 61, 584, 55, 184, 55,
590, 318, 55, 61, 1175, 55, 55, 55, 55, 55,
55, 55, 1172, 274, 318, 55, 1166, 590, 1163, 55,
590, 55, 55, 55, 55, 55, 55, 63, 63, 63,
63, 63, 63, 63, 135, 135, 135, 135, 135, 135,
135, 147, 147, 147, 147, 147, 147, 147, 212, 212,
212, 212, 212, 212, 223, 223, 223, 223, 223, 223,
63, 132, 132, 132, 132, 132, 132, 132, 269, 293,
288, 335, 341, 269, 132, 226, 226, 226, 226, 226,
226, 226, 269, 288, 269, 269, 1157, 269, 282, 282,
282, 282, 282, 282, 1154, 293, 591, 335, 341, 344,
132, 134, 134, 134, 134, 134, 134, 134, 349, 288,
397, 134, 344, 591, 1148, 594, 591, 134, 134, 134,
134, 134, 134, 137, 137, 137, 137, 137, 137, 137,
414, 430, 594, 137, 349, 594, 397, 414, 344, 137,
137, 137, 137, 137, 137, 139, 139, 139, 139, 139,
139, 139, 139, 468, 471, 1145, 139, 430, 139, 585,
586, 243, 139, 139, 139, 139, 139, 139, 243, 285,
285, 285, 285, 285, 285, 285, 585, 586, 1140, 468,
471, 243, 421, 425, 139, 153, 153, 153, 153, 153,
153, 153, 1136, 585, 586, 421, 425, 243, 289, 289,
289, 289, 289, 289, 289, 291, 291, 291, 291, 291,
291, 291, 1135, 1124, 153, 213, 213, 213, 213, 213,
213, 421, 425, 503, 1118, 213, 1111, 477, 484, 496,
503, 213, 213, 213, 213, 213, 213, 214, 214, 214,
214, 214, 214, 214, 214, 219, 219, 219, 219, 219,
219, 219, 219, 477, 484, 496, 219, 567, 219, 1108,
1104, 1103, 219, 219, 219, 219, 219, 219, 330, 330,
330, 330, 330, 330, 345, 345, 345, 345, 345, 345,
345, 479, 487, 567, 219, 224, 224, 224, 224, 224,
224, 224, 224, 549, 479, 487, 224, 579, 1096, 593,
549, 1095, 224, 224, 224, 224, 224, 224, 225, 225,
225, 225, 225, 225, 1088, 560, 593, 593, 225, 1087,
479, 487, 560, 579, 225, 225, 225, 225, 225, 225,
273, 273, 273, 273, 273, 273, 273, 353, 353, 353,
353, 353, 353, 273, 347, 347, 347, 347, 347, 347,
347, 357, 357, 357, 357, 357, 357, 360, 360, 360,
360, 360, 360, 360, 491, 570, 574, 588, 595, 273,
278, 278, 278, 278, 278, 278, 654, 491, 570, 574,
278, 1080, 583, 654, 588, 595, 278, 278, 278, 278,
278, 278, 281, 281, 281, 281, 281, 281, 281, 583,
600, 588, 281, 491, 570, 574, 583, 589, 281, 281,
281, 281, 281, 281, 283, 283, 283, 283, 283, 283,
283, 283, 603, 606, 589, 283, 600, 661, 1079, 589,
1073, 283, 283, 283, 283, 283, 283, 284, 284, 284,
284, 284, 284, 284, 661, 612, 619, 284, 603, 606,
673, 1072, 662, 284, 284, 284, 284, 284, 284, 290,
290, 290, 290, 290, 290, 290, 290, 673, 631, 662,
290, 612, 619, 751, 662, 1068, 290, 290, 290, 290,
290, 290, 292, 292, 292, 292, 292, 292, 292, 292,
751, 695, 634, 292, 631, 292, 1067, 646, 695, 292,
292, 292, 292, 292, 292, 407, 407, 407, 407, 407,
407, 410, 410, 410, 410, 410, 410, 410, 634, 1066,
706, 292, 304, 646, 1065, 726, 304, 706, 663, 304,
664, 614, 304, 622, 304, 304, 304, 304, 331, 331,
331, 331, 331, 331, 614, 663, 622, 664, 331, 1045,
663, 726, 664, 1028, 331, 331, 331, 331, 331, 331,
334, 334, 334, 334, 334, 334, 334, 334, 718, 828,
614, 334, 622, 334, 1021, 718, 828, 334, 334, 334,
334, 334, 334, 412, 412, 412, 412, 412, 412, 416,
416, 416, 416, 416, 416, 671, 1020, 838, 1014, 334,
340, 340, 340, 340, 340, 340, 340, 340, 1011, 873,
1007, 340, 671, 340, 838, 671, 873, 340, 340, 340,
340, 340, 340, 419, 419, 419, 419, 419, 419, 419,
422, 422, 422, 422, 422, 422, 422, 667, 1006, 340,
346, 346, 346, 346, 346, 346, 346, 346, 1000, 738,
997, 346, 993, 755, 667, 666, 668, 346, 346, 346,
346, 346, 346, 348, 348, 348, 348, 348, 348, 348,
348, 667, 666, 668, 348, 738, 348, 666, 668, 755,
348, 348, 348, 348, 348, 348, 424, 424, 424, 424,
424, 424, 424, 426, 426, 426, 426, 426, 426, 426,
626, 665, 348, 358, 358, 358, 358, 358, 358, 358,
358, 992, 758, 626, 358, 669, 986, 846, 665, 983,
358, 358, 358, 358, 358, 358, 359, 359, 359, 359,
359, 359, 669, 665, 846, 980, 359, 669, 758, 626,
979, 973, 359, 359, 359, 359, 359, 359, 396, 396,
396, 396, 396, 396, 499, 499, 499, 499, 499, 499,
396, 428, 428, 428, 428, 428, 428, 428, 480, 480,
480, 480, 480, 480, 480, 482, 482, 482, 482, 482,
482, 482, 637, 641, 670, 596, 396, 400, 400, 400,
400, 400, 400, 970, 969, 637, 641, 400, 761, 964,
745, 670, 596, 400, 400, 400, 400, 400, 400, 402,
402, 402, 402, 402, 402, 596, 670, 745, 961, 402,
745, 637, 641, 748, 761, 402, 402, 402, 402, 402,
402, 406, 406, 406, 406, 406, 406, 406, 958, 764,
748, 406, 770, 957, 750, 748, 954, 406, 406, 406,
406, 406, 406, 408, 408, 408, 408, 408, 408, 408,
408, 750, 777, 789, 408, 764, 951, 948, 770, 750,
408, 408, 408, 408, 408, 408, 409, 409, 409, 409,
409, 409, 409, 884, 792, 804, 409, 808, 777, 789,
884, 841, 409, 409, 409, 409, 409, 409, 417, 417,
417, 417, 417, 417, 417, 417, 820, 863, 841, 417,
792, 804, 841, 808, 945, 417, 417, 417, 417, 417,
417, 418, 418, 418, 418, 418, 418, 418, 941, 896,
916, 418, 820, 863, 844, 845, 896, 418, 418, 418,
418, 418, 418, 427, 427, 427, 427, 427, 427, 427,
427, 844, 845, 930, 427, 844, 916, 845, 935, 934,
427, 427, 427, 427, 427, 427, 429, 429, 429, 429,
429, 429, 429, 429, 908, 935, 934, 429, 934, 429,
929, 908, 921, 429, 429, 429, 429, 429, 429, 488,
488, 488, 488, 488, 488, 488, 490, 490, 490, 490,
490, 490, 490, 744, 672, 429, 464, 464, 464, 464,
464, 464, 928, 918, 912, 909, 464, 944, 947, 939,
744, 672, 464, 464, 464, 464, 464, 464, 467, 467,
467, 467, 467, 467, 467, 467, 939, 744, 928, 467,
672, 467, 900, 944, 947, 467, 467, 467, 467, 467,
467, 492, 492, 492, 492, 492, 492, 492, 494, 494,
494, 494, 494, 494, 494, 729, 843, 467, 470, 470,
470, 470, 470, 470, 470, 470, 897, 1027, 729, 470,
950, 470, 888, 843, 1027, 470, 470, 470, 470, 470,
470, 501, 501, 501, 501, 501, 501, 505, 505, 505,
505, 505, 505, 843, 729, 931, 950, 470, 476, 476,
476, 476, 476, 476, 476, 476, 1071, 1078, 885, 476,
877, 476, 931, 1071, 1078, 476, 476, 476, 476, 476,
476, 508, 508, 508, 508, 508, 508, 508, 535, 535,
535, 535, 535, 535, 535, 746, 931, 476, 481, 481,
481, 481, 481, 481, 481, 481, 874, 953, 868, 481,
865, 956, 746, 746, 938, 481, 481, 481, 481, 481,
481, 483, 483, 483, 483, 483, 483, 483, 483, 864,
746, 938, 483, 953, 483, 861, 938, 956, 483, 483,
483, 483, 483, 483, 538, 538, 538, 538, 538, 538,
538, 542, 542, 542, 542, 542, 542, 733, 840, 747,
483, 493, 493, 493, 493, 493, 493, 493, 493, 847,
733, 829, 493, 981, 995, 840, 747, 822, 493, 493,
493, 493, 493, 493, 495, 495, 495, 495, 495, 495,
495, 495, 747, 821, 840, 495, 733, 495, 813, 981,
995, 495, 495, 495, 495, 495, 495, 545, 545, 545,
545, 545, 545, 545, 547, 547, 547, 547, 547, 547,
772, 741, 742, 495, 506, 506, 506, 506, 506, 506,
506, 506, 1009, 772, 810, 506, 806, 805, 741, 742,
797, 506, 506, 506, 506, 506, 506, 507, 507, 507,
507, 507, 507, 741, 742, 1043, 794, 507, 1009, 772,
1034, 1035, 780, 507, 507, 507, 507, 507, 507, 532,
532, 532, 532, 532, 532, 780, 791, 1034, 1035, 532,
1106, 1043, 932, 1036, 790, 532, 532, 532, 532, 532,
532, 533, 533, 533, 533, 533, 533, 533, 533, 932,
1036, 780, 533, 1143, 933, 1037, 1106, 784, 533, 533,
533, 533, 533, 533, 534, 534, 534, 534, 534, 534,
784, 933, 1037, 932, 534, 782, 1152, 936, 779, 1143,
534, 534, 534, 534, 534, 534, 536, 536, 536, 536,
536, 536, 536, 536, 936, 933, 784, 536, 778, 1038,
771, 1122, 1152, 536, 536, 536, 536, 536, 536, 537,
537, 537, 537, 537, 537, 936, 1038, 1086, 1122, 537,
767, 1038, 766, 1120, 1086, 537, 537, 537, 537, 537,
537, 541, 541, 541, 541, 541, 541, 541, 1094, 1102,
1120, 541, 1122, 1120, 765, 1094, 1102, 541, 541, 541,
541, 541, 541, 543, 543, 543, 543, 543, 543, 543,
543, 1134, 1161, 1170, 543, 1224, 762, 1121, 1134, 759,
543, 543, 543, 543, 543, 543, 544, 544, 544, 544,
544, 544, 544, 1183, 1121, 756, 544, 1121, 1161, 1170,
1183, 1224, 544, 544, 544, 544, 544, 544, 551, 551,
551, 551, 551, 551, 552, 552, 552, 552, 552, 552,
552, 552, 1238, 1242, 1246, 552, 753, 1188, 1189, 1232,
752, 552, 552, 552, 552, 552, 552, 553, 553, 553,
553, 553, 553, 553, 1188, 1189, 1232, 553, 1238, 1242,
1246, 740, 1188, 553, 553, 553, 553, 553, 553, 554,
554, 554, 554, 554, 554, 554, 556, 556, 556, 556,
556, 556, 558, 558, 558, 558, 558, 558, 562, 562,
562, 562, 562, 562, 563, 563, 563, 563, 563, 563,
563, 563, 1250, 1254, 1262, 563, 1271, 1234, 1261, 739,
731, 563, 563, 563, 563, 563, 563, 564, 564, 564,
564, 564, 564, 564, 1234, 1261, 728, 564, 1250, 1254,
1262, 719, 1271, 564, 564, 564, 564, 564, 564, 565,
565, 565, 565, 565, 565, 565, 568, 568, 568, 568,
568, 568, 571, 571, 571, 571, 571, 571, 571, 573,
573, 573, 573, 573, 573, 573, 575, 575, 575, 575,
575, 575, 575, 576, 576, 576, 576, 576, 576, 576,
576, 707, 696, 686, 576, 685, 674, 655, 648, 647,
576, 576, 576, 576, 576, 576, 577, 577, 577, 577,
577, 577, 577, 578, 578, 578, 578, 578, 578, 578,
578, 587, 592, 795, 578, 639, 578, 636, 633, 632,
578, 578, 578, 578, 578, 578, 795, 624, 587, 592,
615, 615, 615, 615, 615, 615, 615, 621, 620, 613,
587, 592, 578, 599, 599, 599, 599, 599, 599, 599,
599, 610, 795, 609, 599, 608, 599, 607, 604, 601,
599, 599, 599, 599, 599, 599, 617, 617, 617, 617,
617, 617, 617, 623, 623, 623, 623, 623, 623, 623,
598, 597, 599, 602, 602, 602, 602, 602, 602, 602,
602, 581, 580, 572, 602, 569, 602, 561, 550, 540,
602, 602, 602, 602, 602, 602, 625, 625, 625, 625,
625, 625, 625, 627, 627, 627, 627, 627, 627, 627,
799, 539, 602, 605, 605, 605, 605, 605, 605, 605,
605, 531, 527, 799, 605, 525, 605, 524, 521, 520,
605, 605, 605, 605, 605, 605, 629, 629, 629, 629,
629, 629, 629, 635, 635, 635, 635, 635, 635, 799,
519, 518, 605, 611, 611, 611, 611, 611, 611, 611,
611, 517, 516, 515, 611, 514, 611, 513, 512, 511,
611, 611, 611, 611, 611, 611, 638, 638, 638, 638,
638, 638, 638, 640, 640, 640, 640, 640, 640, 640,
749, 1119, 611, 616, 616, 616, 616, 616, 616, 616,
616, 510, 504, 498, 616, 497, 489, 749, 1119, 486,
616, 616, 616, 616, 616, 616, 618, 618, 618, 618,
618, 618, 618, 618, 749, 1119, 485, 618, 478, 618,
475, 474, 473, 618, 618, 618, 618, 618, 618, 642,
642, 642, 642, 642, 642, 642, 644, 644, 644, 644,
644, 644, 644, 1186, 472, 618, 628, 628, 628, 628,
628, 628, 628, 628, 469, 466, 465, 628, 463, 459,
1186, 456, 455, 628, 628, 628, 628, 628, 628, 630,
630, 630, 630, 630, 630, 630, 630, 451, 450, 1186,
630, 448, 630, 447, 446, 445, 630, 630, 630, 630,
630, 630, 650, 650, 650, 650, 650, 650, 652, 652,
652, 652, 652, 652, 1233, 811, 444, 443, 630, 643,
643, 643, 643, 643, 643, 643, 643, 442, 811, 441,
643, 1233, 440, 439, 438, 437, 643, 643, 643, 643,
643, 643, 645, 645, 645, 645, 645, 645, 645, 645,
1233, 434, 433, 645, 811, 645, 432, 431, 423, 645,
645, 645, 645, 645, 645, 656, 656, 656, 656, 656,
656, 659, 659, 659, 659, 659, 659, 659, 815, 743,
415, 645, 657, 657, 657, 657, 657, 657, 657, 657,
405, 815, 404, 657, 403, 401, 743, 399, 398, 657,
657, 657, 657, 657, 657, 658, 658, 658, 658, 658,
658, 743, 743, 395, 394, 658, 393, 815, 392, 391,
919, 658, 658, 658, 658, 658, 658, 675, 675, 675,
675, 675, 675, 919, 390, 389, 388, 675, 386, 385,
384, 383, 382, 675, 675, 675, 675, 675, 675, 676,
676, 676, 676, 676, 676, 676, 676, 381, 380, 919,
676, 1039, 378, 377, 376, 375, 676, 676, 676, 676,
676, 676, 677, 677, 677, 677, 677, 677, 1039, 373,
371, 370, 677, 369, 368, 367, 366, 1039, 677, 677,
677, 677, 677, 677, 678, 678, 678, 678, 678, 678,
678, 679, 679, 679, 679, 679, 679, 679, 679, 364,
363, 356, 679, 1187, 352, 351, 350, 343, 679, 679,
679, 679, 679, 679, 680, 680, 680, 680, 680, 680,
1187, 342, 339, 338, 680, 337, 336, 333, 332, 1187,
680, 680, 680, 680, 680, 680, 681, 681, 681, 681,
681, 681, 681, 682, 682, 682, 682, 682, 682, 682,
682, 329, 328, 327, 682, 326, 325, 324, 323, 322,
682, 682, 682, 682, 682, 682, 683, 683, 683, 683,
683, 683, 321, 320, 319, 317, 683, 316, 313, 312,
310, 308, 683, 683, 683, 683, 683, 683, 684, 684,
684, 684, 684, 684, 684, 687, 687, 687, 687, 687,
687, 687, 307, 306, 303, 687, 302, 300, 299, 298,
296, 687, 687, 687, 687, 687, 687, 688, 688, 688,
688, 688, 688, 689, 689, 689, 689, 689, 689, 689,
689, 295, 294, 287, 689, 280, 279, 277, 276, 275,
689, 689, 689, 689, 689, 689, 690, 690, 690, 690,
690, 690, 690, 270, 267, 266, 690, 263, 261, 260,
259, 258, 690, 690, 690, 690, 690, 690, 691, 691,
691, 691, 691, 691, 691, 693, 693, 693, 693, 693,
693, 697, 697, 697, 697, 697, 697, 698, 698, 698,
698, 698, 698, 698, 698, 257, 256, 255, 698, 252,
249, 248, 247, 244, 698, 698, 698, 698, 698, 698,
699, 699, 699, 699, 699, 699, 699, 241, 240, 239,
699, 237, 236, 234, 231, 230, 699, 699, 699, 699,
699, 699, 700, 700, 700, 700, 700, 700, 700, 702,
702, 702, 702, 702, 702, 704, 704, 704, 704, 704,
704, 708, 708, 708, 708, 708, 708, 709, 709, 709,
709, 709, 709, 709, 709, 229, 222, 221, 709, 218,
217, 216, 215, 211, 709, 709, 709, 709, 709, 709,
710, 710, 710, 710, 710, 710, 710, 210, 208, 201,
710, 200, 198, 196, 195, 194, 710, 710, 710, 710,
710, 710, 711, 711, 711, 711, 711, 711, 711, 714,
714, 714, 714, 714, 714, 716, 716, 716, 716, 716,
716, 720, 720, 720, 720, 720, 720, 721, 721, 721,
721, 721, 721, 721, 721, 193, 191, 189, 721, 188,
186, 185, 183, 182, 721, 721, 721, 721, 721, 721,
722, 722, 722, 722, 722, 722, 722, 179, 178, 177,
722, 175, 173, 172, 169, 168, 722, 722, 722, 722,
722, 722, 723, 723, 723, 723, 723, 723, 723, 727,
727, 727, 727, 727, 727, 730, 730, 730, 730, 730,
730, 730, 732, 732, 732, 732, 732, 732, 732, 734,
734, 734, 734, 734, 734, 734, 735, 735, 735, 735,
735, 735, 735, 735, 166, 165, 164, 735, 163, 162,
161, 160, 158, 735, 735, 735, 735, 735, 735, 736,
736, 736, 736, 736, 736, 736, 737, 737, 737, 737,
737, 737, 737, 737, 156, 155, 152, 737, 151, 737,
150, 149, 148, 737, 737, 737, 737, 737, 737, 773,
773, 773, 773, 773, 773, 773, 775, 775, 775, 775,
775, 775, 775, 146, 143, 737, 754, 754, 754, 754,
754, 754, 754, 754, 142, 141, 138, 754, 136, 754,
129, 128, 127, 754, 754, 754, 754, 754, 754, 781,
781, 781, 781, 781, 781, 781, 783, 783, 783, 783,
783, 783, 783, 126, 125, 754, 757, 757, 757, 757,
757, 757, 757, 757, 124, 122, 121, 757, 120, 757,
119, 118, 116, 757, 757, 757, 757, 757, 757, 785,
785, 785, 785, 785, 785, 785, 787, 787, 787, 787,
787, 787, 787, 923, 115, 757, 760, 760, 760, 760,
760, 760, 760, 760, 114, 113, 923, 760, 112, 760,
111, 110, 109, 760, 760, 760, 760, 760, 760, 793,
793, 793, 793, 793, 793, 796, 796, 796, 796, 796,
796, 796, 923, 108, 107, 760, 763, 763, 763, 763,
763, 763, 763, 763, 104, 103, 102, 763, 101, 763,
100, 99, 98, 763, 763, 763, 763, 763, 763, 798,
798, 798, 798, 798, 798, 798, 800, 800, 800, 800,
800, 800, 800, 97, 940, 763, 768, 768, 768, 768,
768, 768, 768, 96, 95, 88, 768, 87, 86, 84,
83, 940, 768, 768, 768, 768, 768, 768, 769, 769,
769, 769, 769, 769, 769, 769, 940, 82, 81, 769,
80, 769, 78, 76, 74, 769, 769, 769, 769, 769,
769, 802, 802, 802, 802, 802, 802, 802, 809, 809,
809, 809, 809, 809, 965, 73, 72, 769, 774, 774,
774, 774, 774, 774, 774, 774, 71, 965, 70, 774,
68, 67, 66, 51, 43, 774, 774, 774, 774, 774,
774, 776, 776, 776, 776, 776, 776, 776, 776, 42,
40, 30, 776, 965, 776, 28, 18, 10, 776, 776,
776, 776, 776, 776, 812, 812, 812, 812, 812, 812,
812, 814, 814, 814, 814, 814, 814, 814, 8, 3,
776, 786, 786, 786, 786, 786, 786, 786, 786, 0,
0, 0, 786, 0, 0, 0, 0, 0, 786, 786,
786, 786, 786, 786, 788, 788, 788, 788, 788, 788,
788, 788, 0, 0, 0, 788, 0, 788, 0, 0,
0, 788, 788, 788, 788, 788, 788, 816, 816, 816,
816, 816, 816, 816, 818, 818, 818, 818, 818, 818,
818, 0, 0, 788, 801, 801, 801, 801, 801, 801,
801, 801, 0, 0, 0, 801, 0, 0, 0, 0,
0, 801, 801, 801, 801, 801, 801, 803, 803, 803,
803, 803, 803, 803, 803, 0, 0, 0, 803, 0,
803, 0, 0, 0, 803, 803, 803, 803, 803, 803,
824, 824, 824, 824, 824, 824, 826, 826, 826, 826,
826, 826, 0, 971, 0, 0, 803, 817, 817, 817,
817, 817, 817, 817, 817, 0, 971, 0, 817, 0,
0, 0, 0, 0, 817, 817, 817, 817, 817, 817,
819, 819, 819, 819, 819, 819, 819, 819, 0, 0,
0, 819, 971, 819, 0, 0, 0, 819, 819, 819,
819, 819, 819, 830, 830, 830, 830, 830, 830, 833,
833, 833, 833, 833, 833, 833, 975, 0, 0, 819,
831, 831, 831, 831, 831, 831, 831, 831, 0, 975,
0, 831, 0, 0, 0, 0, 0, 831, 831, 831,
831, 831, 831, 832, 832, 832, 832, 832, 832, 835,
836, 837, 839, 832, 842, 975, 937, 0, 0, 832,
832, 832, 832, 832, 832, 0, 835, 836, 837, 839,
0, 842, 0, 937, 0, 0, 0, 835, 836, 837,
0, 984, 988, 839, 937, 842, 848, 848, 848, 848,
848, 848, 0, 0, 984, 988, 848, 0, 0, 0,
0, 0, 848, 848, 848, 848, 848, 848, 849, 849,
849, 849, 849, 849, 849, 849, 0, 0, 0, 849,
984, 988, 0, 0, 0, 849, 849, 849, 849, 849,
849, 850, 850, 850, 850, 850, 850, 0, 0, 0,
0, 850, 0, 0, 0, 0, 0, 850, 850, 850,
850, 850, 850, 851, 851, 851, 851, 851, 851, 851,
852, 852, 852, 852, 852, 852, 852, 852, 0, 0,
0, 852, 0, 0, 0, 0, 0, 852, 852, 852,
852, 852, 852, 853, 853, 853, 853, 853, 853, 0,
0, 0, 0, 853, 0, 0, 0, 0, 0, 853,
853, 853, 853, 853, 853, 854, 854, 854, 854, 854,
854, 854, 855, 855, 855, 855, 855, 855, 855, 855,
0, 0, 0, 855, 0, 0, 0, 0, 0, 855,
855, 855, 855, 855, 855, 856, 856, 856, 856, 856,
856, 0, 0, 0, 0, 856, 0, 0, 0, 0,
0, 856, 856, 856, 856, 856, 856, 857, 857, 857,
857, 857, 857, 857, 858, 858, 858, 858, 858, 858,
858, 858, 0, 0, 0, 858, 0, 0, 0, 0,
0, 858, 858, 858, 858, 858, 858, 859, 859, 859,
859, 859, 859, 0, 0, 0, 0, 859, 0, 0,
0, 0, 0, 859, 859, 859, 859, 859, 859, 860,
860, 860, 860, 860, 860, 860, 862, 862, 862, 862,
862, 862, 862, 862, 0, 0, 0, 862, 0, 862,
0, 0, 0, 862, 862, 862, 862, 862, 862, 866,
866, 866, 866, 866, 866, 869, 869, 869, 869, 869,
869, 869, 0, 0, 0, 862, 867, 867, 867, 867,
867, 867, 867, 867, 0, 0, 0, 867, 0, 0,
0, 0, 0, 867, 867, 867, 867, 867, 867, 871,
871, 871, 871, 871, 871, 875, 875, 875, 875, 875,
875, 876, 876, 876, 876, 876, 876, 876, 876, 0,
0, 0, 876, 0, 0, 0, 0, 0, 876, 876,
876, 876, 876, 876, 878, 878, 878, 878, 878, 878,
878, 880, 880, 880, 880, 880, 880, 882, 882, 882,
882, 882, 882, 886, 886, 886, 886, 886, 886, 887,
887, 887, 887, 887, 887, 887, 887, 0, 0, 0,
887, 0, 0, 0, 0, 0, 887, 887, 887, 887,
887, 887, 889, 889, 889, 889, 889, 889, 889, 892,
892, 892, 892, 892, 892, 894, 894, 894, 894, 894,
894, 898, 898, 898, 898, 898, 898, 899, 899, 899,
899, 899, 899, 899, 899, 0, 0, 0, 899, 0,
0, 0, 0, 0, 899, 899, 899, 899, 899, 899,
901, 901, 901, 901, 901, 901, 901, 904, 904, 904,
904, 904, 904, 906, 906, 906, 906, 906, 906, 910,
910, 910, 910, 910, 910, 911, 911, 911, 911, 911,
911, 911, 911, 0, 0, 0, 911, 0, 0, 0,
0, 0, 911, 911, 911, 911, 911, 911, 913, 913,
913, 913, 913, 913, 913, 917, 917, 917, 917, 917,
917, 920, 920, 920, 920, 920, 920, 920, 922, 922,
922, 922, 922, 922, 922, 924, 924, 924, 924, 924,
924, 924, 925, 925, 925, 925, 925, 925, 925, 925,
0, 0, 0, 925, 0, 0, 0, 0, 0, 925,
925, 925, 925, 925, 925, 926, 926, 926, 926, 926,
926, 926, 927, 927, 927, 927, 927, 927, 927, 927,
0, 0, 0, 927, 0, 927, 0, 0, 0, 927,
927, 927, 927, 927, 927, 959, 959, 959, 959, 959,
959, 962, 962, 962, 962, 962, 962, 962, 0, 0,
998, 927, 942, 942, 942, 942, 942, 942, 942, 0,
0, 0, 942, 998, 0, 0, 0, 0, 942, 942,
942, 942, 942, 942, 943, 943, 943, 943, 943, 943,
943, 943, 0, 0, 0, 943, 0, 943, 0, 998,
0, 943, 943, 943, 943, 943, 943, 966, 966, 966,
966, 966, 966, 966, 968, 968, 968, 968, 968, 968,
968, 0, 0, 943, 946, 946, 946, 946, 946, 946,
946, 946, 0, 0, 0, 946, 0, 946, 0, 0,
0, 946, 946, 946, 946, 946, 946, 972, 972, 972,
972, 972, 972, 972, 974, 974, 974, 974, 974, 974,
974, 0, 0, 946, 949, 949, 949, 949, 949, 949,
949, 949, 0, 0, 0, 949, 0, 949, 0, 0,
0, 949, 949, 949, 949, 949, 949, 976, 976, 976,
976, 976, 976, 976, 978, 978, 978, 978, 978, 978,
978, 1002, 0, 949, 952, 952, 952, 952, 952, 952,
952, 952, 0, 0, 1002, 952, 0, 952, 0, 0,
0, 952, 952, 952, 952, 952, 952, 982, 982, 982,
982, 982, 982, 985, 985, 985, 985, 985, 985, 985,
1002, 0, 0, 952, 955, 955, 955, 955, 955, 955,
955, 955, 0, 0, 0, 955, 0, 955, 0, 0,
0, 955, 955, 955, 955, 955, 955, 987, 987, 987,
987, 987, 987, 987, 989, 989, 989, 989, 989, 989,
989, 1012, 0, 955, 960, 960, 960, 960, 960, 960,
960, 960, 0, 0, 1012, 960, 0, 0, 0, 0,
0, 960, 960, 960, 960, 960, 960, 967, 967, 967,
967, 967, 967, 967, 967, 0, 0, 0, 967, 0,
1012, 0, 0, 0, 967, 967, 967, 967, 967, 967,
977, 977, 977, 977, 977, 977, 977, 977, 0, 0,
0, 977, 0, 0, 0, 0, 0, 977, 977, 977,
977, 977, 977, 990, 990, 990, 990, 990, 990, 990,
990, 0, 0, 0, 990, 0, 0, 0, 0, 0,
990, 990, 990, 990, 990, 990, 991, 991, 991, 991,
991, 991, 991, 996, 996, 996, 996, 996, 996, 999,
999, 999, 999, 999, 999, 999, 1001, 1001, 1001, 1001,
1001, 1001, 1001, 1003, 1003, 1003, 1003, 1003, 1003, 1003,
1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 0, 0,
0, 1004, 0, 0, 0, 0, 0, 1004, 1004, 1004,
1004, 1004, 1004, 1005, 1005, 1005, 1005, 1005, 1005, 1005,
1010, 1010, 1010, 1010, 1010, 1010, 1013, 1013, 1013, 1013,
1013, 1013, 1013, 1015, 1015, 1015, 1015, 1015, 1015, 1015,
1016, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 0, 0,
0, 0, 0, 1016, 1019, 1019, 1019, 1019, 1019, 1019,
1019, 1023, 1023, 1023, 1023, 1023, 1023, 1025, 1025, 1025,
1025, 1025, 1025, 1029, 1029, 1029, 1029, 1029, 1029, 1016,
1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 0, 0,
0, 1018, 0, 0, 0, 0, 0, 1018, 1018, 1018,
1018, 1018, 1018, 1030, 1030, 1030, 1030, 1030, 1030, 1030,
1030, 0, 0, 0, 1030, 0, 1040, 1041, 0, 0,
1030, 1030, 1030, 1030, 1030, 1030, 1032, 1032, 1032, 1032,
1032, 1032, 1032, 1040, 1041, 1048, 1048, 1048, 1048, 1048,
1048, 1048, 0, 0, 0, 1041, 1040, 1042, 1042, 1042,
1042, 1042, 1042, 1042, 1042, 0, 0, 0, 1042, 0,
1042, 0, 0, 0, 1042, 1042, 1042, 1042, 1042, 1042,
1051, 1051, 1051, 1051, 1051, 1051, 1051, 1054, 1054, 1054,
1054, 1054, 1054, 1054, 1061, 0, 1042, 1046, 1046, 1046,
1046, 1046, 1046, 1046, 1046, 0, 0, 1061, 1046, 0,
0, 0, 0, 0, 1046, 1046, 1046, 1046, 1046, 1046,
1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 0, 0,
0, 1049, 0, 1061, 0, 0, 0, 1049, 1049, 1049,
1049, 1049, 1049, 1052, 1052, 1052, 1052, 1052, 1052, 1052,
1052, 0, 0, 0, 1052, 0, 0, 0, 0, 0,
1052, 1052, 1052, 1052, 1052, 1052, 1055, 1055, 1055, 1055,
1055, 1055, 1055, 1055, 0, 0, 0, 1055, 0, 0,
0, 0, 0, 1055, 1055, 1055, 1055, 1055, 1055, 1057,
1057, 1057, 1057, 1057, 1057, 1057, 1058, 1058, 1058, 1058,
1058, 1058, 1058, 1058, 0, 0, 0, 1058, 0, 0,
0, 0, 0, 1058, 1058, 1058, 1058, 1058, 1058, 1060,
1060, 1060, 1060, 1060, 1060, 1060, 1062, 1062, 1062, 1062,
1062, 1062, 1062, 1063, 1063, 1063, 1063, 1063, 1063, 1063,
1063, 0, 0, 0, 1063, 0, 0, 0, 0, 0,
1063, 1063, 1063, 1063, 1063, 1063, 1064, 1064, 1064, 1064,
1064, 1064, 1064, 1069, 1069, 1069, 1069, 1069, 1069, 1074,
1074, 1074, 1074, 1074, 1074, 1076, 1076, 1076, 1076, 1076,
1076, 1082, 1082, 1082, 1082, 1082, 1082, 1084, 1084, 1084,
1084, 1084, 1084, 1090, 1090, 1090, 1090, 1090, 1090, 1092,
1092, 1092, 1092, 1092, 1092, 1098, 1098, 1098, 1098, 1098,
1098, 1100, 1100, 1100, 1100, 1100, 1100, 1107, 1107, 1107,
1107, 1107, 1107, 1109, 1110, 1110, 1110, 1110, 1110, 1110,
1110, 1113, 0, 0, 0, 0, 1109, 1112, 1112, 1112,
1112, 1112, 1112, 1112, 1113, 1114, 1114, 1114, 1114, 1114,
1114, 1114, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 0,
0, 0, 1109, 1125, 1125, 1125, 1125, 1125, 1125, 1125,
1113, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 0,
0, 0, 1115, 0, 0, 0, 0, 0, 1115, 1115,
1115, 1115, 1115, 1115, 1123, 1123, 1123, 1123, 1123, 1123,
1123, 1123, 0, 0, 0, 1123, 0, 0, 0, 0,
1138, 1123, 1123, 1123, 1123, 1123, 1123, 1132, 1132, 1132,
1132, 1132, 1132, 1138, 1139, 1139, 1139, 1139, 1139, 1139,
1139, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1144, 1144,
1144, 1144, 1144, 1144, 1146, 0, 0, 0, 0, 1138,
1147, 1147, 1147, 1147, 1147, 1147, 1147, 1146, 1149, 1149,
1149, 1149, 1149, 1149, 1149, 1153, 1153, 1153, 1153, 1153,
1153, 1155, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 0,
0, 0, 0, 1146, 1155, 1158, 1158, 1158, 1158, 1158,
1158, 1158, 1162, 1162, 1162, 1162, 1162, 1162, 1164, 1165,
1165, 1165, 1165, 1165, 1165, 1165, 0, 0, 0, 0,
1155, 1164, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1171,
1171, 1171, 1171, 1171, 1171, 1173, 1174, 1174, 1174, 1174,
1174, 1174, 1174, 0, 0, 0, 0, 1164, 1173, 1176,
1176, 1176, 1176, 1176, 1176, 1176, 1179, 1179, 1179, 1179,
1179, 1179, 1181, 1181, 1181, 1181, 1181, 1181, 1198, 0,
0, 0, 0, 0, 1173, 1204, 1204, 1204, 1204, 1204,
1204, 1198, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1201,
1201, 1201, 1201, 1201, 1201, 1201, 1208, 1208, 1208, 1208,
1208, 1208, 0, 0, 0, 0, 0, 1198, 1212, 1212,
1212, 1212, 1212, 1212, 1216, 1216, 1216, 1216, 1216, 1216,
1220, 1220, 1220, 1220, 1220, 1220, 1225, 1225, 1225, 1225,
1225, 1225, 1227, 1228, 1228, 1228, 1228, 1228, 1228, 1228,
0, 0, 0, 0, 0, 1227, 1230, 1230, 1230, 1230,
1230, 1230, 1230, 1236, 1236, 1236, 1236, 1236, 1236, 1239,
1239, 1239, 1239, 1239, 1239, 1243, 1243, 1243, 1243, 1243,
1243, 1227, 1247, 1247, 1247, 1247, 1247, 1247, 1251, 1251,
1251, 1251, 1251, 1251, 1255, 1255, 1255, 1255, 1255, 1255,
1258, 1258, 1258, 1258, 1258, 1258, 1263, 1263, 1263, 1263,
1263, 1263, 1272, 1272, 1272, 1272, 1272, 1272, 1284, 0,
0, 0, 0, 1284, 1284, 1284, 1285, 0, 1285, 1285,
1285, 1285, 1285, 1285, 1285, 1286, 0, 1286, 1287, 1287,
1287, 1288, 1288, 1288, 1289, 1289, 1289, 1290, 1290, 1290,
1291, 1291, 1291, 1292, 1292, 1292, 1293, 1293, 1293, 1294,
1294, 1294, 1295, 0, 1295, 1296, 1296, 1296, 1297, 1297,
1297, 1298, 1298, 1298, 1299, 0, 1299, 1300, 1300, 1300,
1301, 1301, 0, 0, 1301, 1302, 1302, 1302, 1303, 1303,
1303, 1304, 1304, 1304, 1305, 1305, 1305, 1306, 1306, 1306,
1307, 1307, 1307, 1308, 1308, 0, 0, 1308, 1309, 1309,
1309, 1310, 0, 1310, 1311, 1311, 1311, 1312, 0, 1312,
1313, 1313, 1313, 1314, 1314, 1314, 1315, 1315, 1315, 1316,
0, 1316, 1317, 0, 1317, 1318, 1318, 1318, 1319, 0,
1319, 1320, 1320, 0, 0, 1320, 1321, 1321, 0, 0,
1321, 1322, 1322, 1322, 1323, 1323, 1323, 1324, 1324, 1324,
1325, 1325, 1325, 1326, 1326, 1326, 1327, 1327, 1327, 1328,
1328, 1328, 1329, 1329, 1329, 1330, 1330, 0, 0, 1330,
1331, 1331, 1331, 1332, 1332, 0, 0, 1332, 1333, 1333,
0, 0, 1333, 1334, 1334, 1334, 1335, 0, 1335, 1336,
0, 1336, 1337, 1337, 1337, 1338, 0, 1338, 1339, 1339,
1339, 1340, 1340, 1340, 1341, 1341, 1341, 1342, 0, 1342,
1343, 0, 1343, 1344, 1344, 1344, 1345, 0, 1345, 1346,
0, 1346, 1347, 0, 1347, 1348, 1348, 1348, 1349, 0,
1349, 1350, 0, 0, 1350, 1351, 1351, 0, 0, 1351,
1352, 1352, 0, 1352, 1353, 1353, 0, 0, 1353, 1354,
1354, 1354, 1355, 1355, 0, 1355, 1356, 1356, 1356, 0,
1356, 1356, 1357, 1357, 1357, 1358, 1358, 1358, 1359, 1359,
1359, 1360, 1360, 1360, 1361, 1361, 1361, 1362, 1362, 1362,
1363, 1363, 1363, 1364, 1364, 1364, 1365, 1365, 0, 0,
1365, 1366, 1366, 1366, 1367, 1367, 0, 1367, 1368, 1368,
0, 0, 1368, 1369, 1369, 0, 1369, 1370, 1370, 0,
0, 1370, 1371, 1371, 1371, 1372, 1372, 0, 1372, 1373,
0, 0, 1373, 1374, 1374, 0, 1374, 1375, 1375, 0,
0, 1375, 1376, 1376, 0, 1376, 1377, 1377, 0, 0,
1377, 1378, 1378, 1378, 1379, 1379, 0, 1379, 1380, 0,
1380, 1381, 0, 1381, 1382, 0, 1382, 1383, 1383, 1383,
1384, 0, 1384, 1385, 1385, 1385, 0, 1385, 1385, 1386,
1386, 1386, 1387, 1387, 1387, 1388, 1388, 1388, 1389, 0,
1389, 1390, 0, 1390, 1391, 1391, 1391, 1392, 0, 1392,
1393, 0, 1393, 1394, 0, 1394, 1395, 1395, 1395, 1396,
0, 1396, 1397, 0, 1397, 1398, 0, 1398, 1399, 0,
1399, 1400, 1400, 1400, 1401, 0, 1401, 1402, 0, 1402,
1403, 0, 0, 1403, 1404, 1404, 0, 1404, 1405, 1405,
0, 0, 1405, 1406, 1406, 0, 1406, 1407, 1407, 0,
0, 1407, 1408, 1408, 1408, 1409, 1409, 0, 1409, 1410,
1410, 1410, 0, 1410, 1410, 1411, 1411, 1411, 1412, 1412,
1412, 1413, 1413, 1413, 1414, 1414, 1414, 1415, 1415, 1415,
1416, 1416, 1416, 1417, 1417, 1417, 1418, 1418, 1418, 1419,
1419, 0, 0, 1419, 1420, 1420, 1420, 1421, 1421, 0,
1421, 1422, 1422, 0, 0, 1422, 1423, 1423, 0, 1423,
1424, 1424, 0, 0, 1424, 1425, 1425, 1425, 1426, 1426,
0, 1426, 1427, 0, 0, 1427, 1428, 1428, 0, 1428,
1429, 1429, 0, 0, 1429, 1430, 1430, 0, 1430, 1431,
1431, 0, 0, 1431, 1432, 1432, 1432, 1433, 1433, 0,
1433, 1434, 0, 1434, 1435, 0, 0, 1435, 1436, 1436,
0, 1436, 1437, 1437, 0, 0, 1437, 1438, 1438, 0,
1438, 1439, 1439, 0, 0, 1439, 1440, 1440, 1440, 1441,
1441, 0, 1441, 1442, 0, 1442, 1443, 0, 1443, 1444,
0, 1444, 1445, 1445, 1445, 1446, 0, 1446, 1447, 1447,
1447, 0, 1447, 1447, 1448, 1448, 1448, 1449, 1449, 1449,
1450, 1450, 1450, 1451, 1451, 1451, 1452, 1452, 1452, 1453,
0, 1453, 1454, 0, 1454, 1455, 1455, 1455, 1456, 1456,
1456, 1457, 0, 1457, 1458, 0, 1458, 1459, 0, 1459,
1460, 1460, 1460, 1461, 1461, 1461, 1462, 0, 1462, 1463,
0, 1463, 1464, 0, 1464, 1465, 0, 1465, 1466, 1466,
1466, 1467, 1467, 1467, 1468, 0, 1468, 1469, 0, 1469,
1470, 0, 1470, 1471, 0, 1471, 1472, 1472, 1472, 1473,
1473, 1473, 1474, 0, 1474, 1475, 0, 1475, 1476, 0,
0, 1476, 1477, 1477, 0, 1477, 1478, 1478, 0, 0,
1478, 1479, 1479, 0, 1479, 1480, 1480, 0, 0, 1480,
1481, 1481, 1481, 1482, 1482, 0, 1482, 1483, 1483, 1483,
0, 1483, 1483, 1484, 1484, 1484, 1485, 1485, 1485, 1486,
1486, 1486, 1487, 1487, 1487, 1488, 1488, 1488, 1489, 1489,
1489, 1490, 1490, 1490, 1491, 0, 1491, 1492, 1492, 1492,
1493, 1493, 0, 0, 1493, 1494, 1494, 1494, 1495, 1495,
0, 1495, 1496, 1496, 0, 0, 1496, 1497, 1497, 0,
1497, 1498, 1498, 0, 0, 1498, 1499, 1499, 1499, 1500,
1500, 0, 1500, 1501, 0, 0, 1501, 1502, 1502, 0,
1502, 1503, 1503, 0, 0, 1503, 1504, 1504, 0, 1504,
1505, 1505, 0, 0, 1505, 1506, 1506, 1506, 1507, 1507,
0, 1507, 1508, 0, 1508, 1509, 0, 0, 1509, 1510,
1510, 0, 1510, 1511, 1511, 0, 0, 1511, 1512, 1512,
0, 1512, 1513, 1513, 0, 0, 1513, 1514, 1514, 1514,
1515, 1515, 0, 1515, 1516, 0, 1516, 1517, 0, 0,
1517, 1518, 1518, 0, 1518, 1519, 1519, 0, 0, 1519,
1520, 1520, 0, 1520, 1521, 1521, 0, 0, 1521, 1522,
1522, 1522, 1523, 1523, 0, 1523, 1524, 0, 1524, 1525,
0, 1525, 1526, 0, 1526, 1527, 1527, 1527, 1528, 0,
1528, 1529, 0, 1529, 1530, 1530, 1530, 0, 1530, 1530,
1531, 0, 1531, 1532, 1532, 1532, 1533, 0, 1533, 1534,
0, 1534, 1535, 0, 1535, 1536, 0, 1536, 1537, 0,
1537, 1538, 1538, 0, 0, 1538, 1539, 1539, 1539, 1540,
1540, 1540, 1541, 1541, 0, 1541, 1542, 1542, 1542, 1543,
0, 1543, 1544, 1544, 1544, 1545, 1545, 1545, 1546, 0,
1546, 1547, 0, 1547, 1548, 1548, 1548, 1549, 1549, 1549,
1550, 0, 1550, 1551, 0, 1551, 1552, 0, 1552, 1553,
1553, 1553, 1554, 1554, 1554, 1555, 0, 1555, 1556, 0,
1556, 1557, 0, 1557, 1558, 1558, 1558, 1559, 1559, 1559,
1560, 0, 1560, 1561, 0, 1561, 1562, 0, 1562, 1563,
1563, 1563, 1564, 1564, 1564, 1565, 0, 1565, 1566, 0,
0, 1566, 1567, 1567, 0, 1567, 1568, 1568, 0, 0,
1568, 1569, 1569, 0, 1569, 1570, 1570, 0, 0, 1570,
1571, 0, 1571, 1572, 1572, 0, 1572, 1573, 1573, 1573,
0, 1573, 1573, 1574, 1574, 1574, 1575, 0, 1575, 1576,
0, 1576, 1577, 0, 1577, 1578, 0, 1578, 1579, 0,
1579, 1580, 0, 1580, 1581, 0, 1581, 1582, 1582, 1582,
1583, 1583, 1583, 1584, 0, 1584, 1585, 1585, 0, 0,
1585, 1586, 1586, 0, 1586, 1587, 0, 1587, 1588, 0,
0, 1588, 1589, 1589, 0, 1589, 1590, 1590, 0, 0,
1590, 1591, 1591, 0, 1591, 1592, 0, 1592, 1593, 0,
1593, 1594, 0, 0, 1594, 1595, 1595, 0, 1595, 1596,
1596, 0, 0, 1596, 1597, 1597, 0, 1597, 1598, 0,
1598, 1599, 0, 1599, 1600, 0, 0, 1600, 1601, 1601,
0, 1601, 1602, 1602, 0, 0, 1602, 1603, 1603, 0,
1603, 1604, 0, 1604, 1605, 0, 1605, 1606, 0, 0,
1606, 1607, 1607, 0, 1607, 1608, 1608, 0, 0, 1608,
1609, 1609, 0, 1609, 1610, 0, 1610, 1611, 0, 1611,
1612, 0, 1612, 1613, 0, 1613, 1614, 1614, 1614, 1615,
0, 1615, 1616, 1616, 1616, 0, 1616, 1616, 1617, 0,
1617, 1618, 0, 1618, 1619, 0, 1619, 1620, 0, 1620,
1621, 0, 1621, 1622, 0, 1622, 1623, 0, 1623, 1624,
1624, 0, 0, 1624, 1625, 1625, 0, 1625, 1626, 0,
1626, 1627, 0, 1627, 1628, 0, 1628, 1629, 0, 1629,
1630, 0, 1630, 1631, 0, 1631, 1632, 0, 1632, 1633,
0, 1633, 1634, 0, 1634, 1635, 0, 1635, 1636, 0,
0, 1636, 1637, 1637, 0, 0, 1637, 1638, 0, 1638,
1639, 0, 1639, 1640, 0, 1640, 1641, 0, 0, 1641,
1642, 0, 0, 1642, 1643, 0, 0, 1643, 1644, 0,
0, 1644, 1645, 0, 0, 1645, 1646, 0, 1646, 1647,
0, 1647, 1648, 0, 0, 1648, 1649, 0, 1649, 1650,
0, 1650, 1651, 0, 1651, 1652, 0, 1652, 1653, 0,
1653, 1654, 0, 0, 1654, 1655, 0, 1655, 1656, 0,
1656, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
1283, 1283, 1283, 1283
} ;
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 "scanner.l"
#define INITIAL 0
#line 2 "scanner.l"
/*
* Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that: (1) source code distributions
* retain the above copyright notice and this paragraph in its entirety, (2)
* distributions including binary code include the above copyright notice and
* this paragraph in its entirety in the documentation or other materials
* provided with the distribution, and (3) all advertising materials mentioning
* features or use of this software display the following acknowledgement:
* ``This product includes software developed by the University of California,
* Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
* the University nor the names of its contributors may be used to endorse
* or promote products derived from this software without specific prior
* written permission.
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#ifndef lint
static const char rcsid[] _U_ =
"@(#) $Header: /Users/olsen/Code/cvs2svn-2010/os4-cvs-repository/contrib/roadshow/client-software/libpcap-0.8.1/scanner.c,v 1.1 2004-10-18 16:23:16 obarthel Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <ctype.h>
#include <string.h>
#include "pcap-int.h"
#include "gencode.h"
#ifdef INET6
#ifdef WIN32
#include <pcap-stdinc.h>
#ifdef __MINGW32__
#include "IP6_misc.h"
#endif
#else /* WIN32 */
#include <sys/socket.h> /* for "struct sockaddr" in "struct addrinfo" */
#include <netdb.h> /* for "struct addrinfo" */
#endif /* WIN32 */
/* Workaround for AIX 4.3 */
#if !defined(AI_NUMERICHOST)
#define AI_NUMERICHOST 0x04
#endif
#endif /*INET6*/
#include <pcap-namedb.h>
#include "tokdefs.h"
#ifdef HAVE_OS_PROTO_H
#include "os-proto.h"
#endif
static int stoi(char *);
static inline int xdtoi(int);
#ifdef FLEX_SCANNER
#define YY_NO_UNPUT
static YY_BUFFER_STATE in_buffer;
#else
static char *in_buffer;
#undef getc
#define getc(fp) (*in_buffer == 0 ? EOF : *in_buffer++)
#endif
#define yylval pcap_lval
extern YYSTYPE yylval;
/* 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 <stdlib.h>
#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 \
YY_USER_ACTION
YY_DECL
{
register yy_state_type yy_current_state;
register char *yy_cp, *yy_bp;
register int yy_act;
#line 169 "scanner.l"
if ( yy_init )
{
yy_init = 0;
#ifdef YY_USER_INIT
YY_USER_INIT;
#endif
if ( ! yy_start )
yy_start = 1; /* first start state */
if ( ! yyin )
yyin = stdin;
if ( ! yyout )
yyout = stdout;
if ( ! yy_current_buffer )
yy_current_buffer =
yy_create_buffer( yyin, YY_BUF_SIZE );
yy_load_buffer_state();
}
while ( 1 ) /* loops until end-of-file is reached */
{
yy_cp = yy_c_buf_p;
/* Support of yytext. */
*yy_cp = yy_hold_char;
/* yy_bp points to the position in yy_ch_buf of the start of
* the current run.
*/
yy_bp = yy_cp;
yy_current_state = yy_start;
yy_match:
do
{
register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
if ( yy_accept[yy_current_state] )
{
yy_last_accepting_state = yy_current_state;
yy_last_accepting_cpos = yy_cp;
}
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 1284 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
++yy_cp;
}
while ( yy_base[yy_current_state] != 6582 );
yy_find_action:
yy_act = yy_accept[yy_current_state];
if ( yy_act == 0 )
{ /* have to back up */
yy_cp = yy_last_accepting_cpos;
yy_current_state = yy_last_accepting_state;
yy_act = yy_accept[yy_current_state];
}
YY_DO_BEFORE_ACTION;
do_action: /* This label is used only to access EOF actions. */
switch ( yy_act )
{ /* beginning of action switch */
case 0: /* must back up */
/* undo the effects of YY_DO_BEFORE_ACTION */
*yy_cp = yy_hold_char;
yy_cp = yy_last_accepting_cpos;
yy_current_state = yy_last_accepting_state;
goto yy_find_action;
case 1:
YY_RULE_SETUP
#line 170 "scanner.l"
return DST;
YY_BREAK
case 2:
YY_RULE_SETUP
#line 171 "scanner.l"
return SRC;
YY_BREAK
case 3:
YY_RULE_SETUP
#line 173 "scanner.l"
return LINK;
YY_BREAK
case 4:
YY_RULE_SETUP
#line 174 "scanner.l"
return LINK;
YY_BREAK
case 5:
YY_RULE_SETUP
#line 175 "scanner.l"
return ARP;
YY_BREAK
case 6:
YY_RULE_SETUP
#line 176 "scanner.l"
return RARP;
YY_BREAK
case 7:
YY_RULE_SETUP
#line 177 "scanner.l"
return IP;
YY_BREAK
case 8:
YY_RULE_SETUP
#line 178 "scanner.l"
return SCTP;
YY_BREAK
case 9:
YY_RULE_SETUP
#line 179 "scanner.l"
return TCP;
YY_BREAK
case 10:
YY_RULE_SETUP
#line 180 "scanner.l"
return UDP;
YY_BREAK
case 11:
YY_RULE_SETUP
#line 181 "scanner.l"
return ICMP;
YY_BREAK
case 12:
YY_RULE_SETUP
#line 182 "scanner.l"
return IGMP;
YY_BREAK
case 13:
YY_RULE_SETUP
#line 183 "scanner.l"
return IGRP;
YY_BREAK
case 14:
YY_RULE_SETUP
#line 184 "scanner.l"
return PIM;
YY_BREAK
case 15:
YY_RULE_SETUP
#line 185 "scanner.l"
return VRRP;
YY_BREAK
case 16:
YY_RULE_SETUP
#line 187 "scanner.l"
{
#ifdef INET6
return IPV6;
#else
bpf_error("%s not supported", yytext);
#endif
}
YY_BREAK
case 17:
YY_RULE_SETUP
#line 194 "scanner.l"
{
#ifdef INET6
return ICMPV6;
#else
bpf_error("%s not supported", yytext);
#endif
}
YY_BREAK
case 18:
YY_RULE_SETUP
#line 201 "scanner.l"
return AH;
YY_BREAK
case 19:
YY_RULE_SETUP
#line 202 "scanner.l"
return ESP;
YY_BREAK
case 20:
YY_RULE_SETUP
#line 204 "scanner.l"
return ATALK;
YY_BREAK
case 21:
YY_RULE_SETUP
#line 205 "scanner.l"
return AARP;
YY_BREAK
case 22:
YY_RULE_SETUP
#line 206 "scanner.l"
return DECNET;
YY_BREAK
case 23:
YY_RULE_SETUP
#line 207 "scanner.l"
return LAT;
YY_BREAK
case 24:
YY_RULE_SETUP
#line 208 "scanner.l"
return SCA;
YY_BREAK
case 25:
YY_RULE_SETUP
#line 209 "scanner.l"
return MOPRC;
YY_BREAK
case 26:
YY_RULE_SETUP
#line 210 "scanner.l"
return MOPDL;
YY_BREAK
case 27:
YY_RULE_SETUP
#line 212 "scanner.l"
return ISO;
YY_BREAK
case 28:
YY_RULE_SETUP
#line 213 "scanner.l"
return ESIS;
YY_BREAK
case 29:
YY_RULE_SETUP
#line 214 "scanner.l"
return ESIS;
YY_BREAK
case 30:
YY_RULE_SETUP
#line 215 "scanner.l"
return ISIS;
YY_BREAK
case 31:
YY_RULE_SETUP
#line 216 "scanner.l"
return ISIS;
YY_BREAK
case 32:
YY_RULE_SETUP
#line 217 "scanner.l"
return L1;
YY_BREAK
case 33:
YY_RULE_SETUP
#line 218 "scanner.l"
return L2;
YY_BREAK
case 34:
YY_RULE_SETUP
#line 219 "scanner.l"
return IIH;
YY_BREAK
case 35:
YY_RULE_SETUP
#line 220 "scanner.l"
return LSP;
YY_BREAK
case 36:
YY_RULE_SETUP
#line 221 "scanner.l"
return SNP;
YY_BREAK
case 37:
YY_RULE_SETUP
#line 222 "scanner.l"
return CSNP;
YY_BREAK
case 38:
YY_RULE_SETUP
#line 223 "scanner.l"
return PSNP;
YY_BREAK
case 39:
YY_RULE_SETUP
#line 225 "scanner.l"
return CLNP;
YY_BREAK
case 40:
YY_RULE_SETUP
#line 227 "scanner.l"
return STP;
YY_BREAK
case 41:
YY_RULE_SETUP
#line 229 "scanner.l"
return IPX;
YY_BREAK
case 42:
YY_RULE_SETUP
#line 231 "scanner.l"
return NETBEUI;
YY_BREAK
case 43:
YY_RULE_SETUP
#line 233 "scanner.l"
return HOST;
YY_BREAK
case 44:
YY_RULE_SETUP
#line 234 "scanner.l"
return NET;
YY_BREAK
case 45:
YY_RULE_SETUP
#line 235 "scanner.l"
return NETMASK;
YY_BREAK
case 46:
YY_RULE_SETUP
#line 236 "scanner.l"
return PORT;
YY_BREAK
case 47:
YY_RULE_SETUP
#line 237 "scanner.l"
return PROTO;
YY_BREAK
case 48:
YY_RULE_SETUP
#line 238 "scanner.l"
{
#ifdef NO_PROTOCHAIN
bpf_error("%s not supported", yytext);
#else
return PROTOCHAIN;
#endif
}
YY_BREAK
case 49:
YY_RULE_SETUP
#line 246 "scanner.l"
return GATEWAY;
YY_BREAK
case 50:
YY_RULE_SETUP
#line 248 "scanner.l"
return LESS;
YY_BREAK
case 51:
YY_RULE_SETUP
#line 249 "scanner.l"
return GREATER;
YY_BREAK
case 52:
YY_RULE_SETUP
#line 250 "scanner.l"
return CBYTE;
YY_BREAK
case 53:
YY_RULE_SETUP
#line 251 "scanner.l"
return TK_BROADCAST;
YY_BREAK
case 54:
YY_RULE_SETUP
#line 252 "scanner.l"
return TK_MULTICAST;
YY_BREAK
case 55:
YY_RULE_SETUP
#line 254 "scanner.l"
return AND;
YY_BREAK
case 56:
YY_RULE_SETUP
#line 255 "scanner.l"
return OR;
YY_BREAK
case 57:
YY_RULE_SETUP
#line 256 "scanner.l"
return '!';
YY_BREAK
case 58:
YY_RULE_SETUP
#line 258 "scanner.l"
return LEN;
YY_BREAK
case 59:
YY_RULE_SETUP
#line 259 "scanner.l"
return INBOUND;
YY_BREAK
case 60:
YY_RULE_SETUP
#line 260 "scanner.l"
return OUTBOUND;
YY_BREAK
case 61:
YY_RULE_SETUP
#line 262 "scanner.l"
return VLAN;
YY_BREAK
case 62:
YY_RULE_SETUP
#line 264 "scanner.l"
return LANE;
YY_BREAK
case 63:
YY_RULE_SETUP
#line 265 "scanner.l"
return LLC;
YY_BREAK
case 64:
YY_RULE_SETUP
#line 266 "scanner.l"
return METAC;
YY_BREAK
case 65:
YY_RULE_SETUP
#line 267 "scanner.l"
return BCC;
YY_BREAK
case 66:
YY_RULE_SETUP
#line 268 "scanner.l"
return OAM;
YY_BREAK
case 67:
YY_RULE_SETUP
#line 269 "scanner.l"
return OAMF4;
YY_BREAK
case 68:
YY_RULE_SETUP
#line 270 "scanner.l"
return OAMF4EC;
YY_BREAK
case 69:
YY_RULE_SETUP
#line 271 "scanner.l"
return OAMF4SC;
YY_BREAK
case 70:
YY_RULE_SETUP
#line 272 "scanner.l"
return SC;
YY_BREAK
case 71:
YY_RULE_SETUP
#line 273 "scanner.l"
return ILMIC;
YY_BREAK
case 72:
YY_RULE_SETUP
#line 274 "scanner.l"
return VPI;
YY_BREAK
case 73:
YY_RULE_SETUP
#line 275 "scanner.l"
return VCI;
YY_BREAK
case 74:
YY_RULE_SETUP
#line 276 "scanner.l"
return CONNECTMSG;
YY_BREAK
case 75:
YY_RULE_SETUP
#line 277 "scanner.l"
return METACONNECT;
YY_BREAK
case 76:
YY_RULE_SETUP
#line 279 "scanner.l"
return PF_IFNAME;
YY_BREAK
case 77:
YY_RULE_SETUP
#line 280 "scanner.l"
return PF_RNR;
YY_BREAK
case 78:
YY_RULE_SETUP
#line 281 "scanner.l"
return PF_REASON;
YY_BREAK
case 79:
YY_RULE_SETUP
#line 282 "scanner.l"
return PF_ACTION;
YY_BREAK
case 80:
YY_RULE_SETUP
#line 284 "scanner.l"
;
YY_BREAK
case 81:
YY_RULE_SETUP
#line 285 "scanner.l"
return yytext[0];
YY_BREAK
case 82:
YY_RULE_SETUP
#line 286 "scanner.l"
return GEQ;
YY_BREAK
case 83:
YY_RULE_SETUP
#line 287 "scanner.l"
return LEQ;
YY_BREAK
case 84:
YY_RULE_SETUP
#line 288 "scanner.l"
return NEQ;
YY_BREAK
case 85:
YY_RULE_SETUP
#line 289 "scanner.l"
return '=';
YY_BREAK
case 86:
YY_RULE_SETUP
#line 290 "scanner.l"
return LSH;
YY_BREAK
case 87:
YY_RULE_SETUP
#line 291 "scanner.l"
return RSH;
YY_BREAK
case 88:
YY_RULE_SETUP
#line 292 "scanner.l"
{ yylval.e = pcap_ether_aton(((char *)yytext)+1);
return AID; }
YY_BREAK
case 89:
YY_RULE_SETUP
#line 294 "scanner.l"
{ yylval.i = stoi((char *)yytext); return NUM; }
YY_BREAK
case 90:
YY_RULE_SETUP
#line 295 "scanner.l"
{
yylval.s = sdup((char *)yytext); return HID; }
YY_BREAK
case 91:
YY_RULE_SETUP
#line 297 "scanner.l"
{ yylval.e = pcap_ether_aton((char *)yytext);
return EID; }
YY_BREAK
case 92:
YY_RULE_SETUP
#line 299 "scanner.l"
{
#ifdef INET6
struct addrinfo hints, *res;
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_INET6;
hints.ai_flags = AI_NUMERICHOST;
if (getaddrinfo(yytext, NULL, &hints, &res))
bpf_error("bogus IPv6 address %s", yytext);
else {
yylval.s = sdup((char *)yytext); return HID6;
}
#else
bpf_error("IPv6 address %s not supported", yytext);
#endif /*INET6*/
}
YY_BREAK
case 93:
YY_RULE_SETUP
#line 314 "scanner.l"
{ bpf_error("bogus ethernet address %s", yytext); }
YY_BREAK
case 94:
YY_RULE_SETUP
#line 315 "scanner.l"
{ yylval.i = 0; return NUM; }
YY_BREAK
case 95:
YY_RULE_SETUP
#line 316 "scanner.l"
{ yylval.i = 1; return NUM; }
YY_BREAK
case 96:
YY_RULE_SETUP
#line 317 "scanner.l"
{ yylval.i = 0; return NUM; }
YY_BREAK
case 97:
YY_RULE_SETUP
#line 318 "scanner.l"
{ yylval.i = 3; return NUM; }
YY_BREAK
case 98:
YY_RULE_SETUP
#line 319 "scanner.l"
{ yylval.i = 4; return NUM; }
YY_BREAK
case 99:
YY_RULE_SETUP
#line 320 "scanner.l"
{ yylval.i = 5; return NUM; }
YY_BREAK
case 100:
YY_RULE_SETUP
#line 321 "scanner.l"
{ yylval.i = 8; return NUM; }
YY_BREAK
case 101:
YY_RULE_SETUP
#line 322 "scanner.l"
{ yylval.i = 9; return NUM; }
YY_BREAK
case 102:
YY_RULE_SETUP
#line 323 "scanner.l"
{ yylval.i = 10; return NUM; }
YY_BREAK
case 103:
YY_RULE_SETUP
#line 324 "scanner.l"
{ yylval.i = 11; return NUM; }
YY_BREAK
case 104:
YY_RULE_SETUP
#line 325 "scanner.l"
{ yylval.i = 12; return NUM; }
YY_BREAK
case 105:
YY_RULE_SETUP
#line 326 "scanner.l"
{ yylval.i = 13; return NUM; }
YY_BREAK
case 106:
YY_RULE_SETUP
#line 327 "scanner.l"
{ yylval.i = 14; return NUM; }
YY_BREAK
case 107:
YY_RULE_SETUP
#line 328 "scanner.l"
{ yylval.i = 15; return NUM; }
YY_BREAK
case 108:
YY_RULE_SETUP
#line 329 "scanner.l"
{ yylval.i = 16; return NUM; }
YY_BREAK
case 109:
YY_RULE_SETUP
#line 330 "scanner.l"
{ yylval.i = 17; return NUM; }
YY_BREAK
case 110:
YY_RULE_SETUP
#line 331 "scanner.l"
{ yylval.i = 18; return NUM; }
YY_BREAK
case 111:
YY_RULE_SETUP
#line 332 "scanner.l"
{ yylval.i = 13; return NUM; }
YY_BREAK
case 112:
YY_RULE_SETUP
#line 333 "scanner.l"
{ yylval.i = 0x01; return NUM; }
YY_BREAK
case 113:
YY_RULE_SETUP
#line 334 "scanner.l"
{ yylval.i = 0x02; return NUM; }
YY_BREAK
case 114:
YY_RULE_SETUP
#line 335 "scanner.l"
{ yylval.i = 0x04; return NUM; }
YY_BREAK
case 115:
YY_RULE_SETUP
#line 336 "scanner.l"
{ yylval.i = 0x08; return NUM; }
YY_BREAK
case 116:
YY_RULE_SETUP
#line 337 "scanner.l"
{ yylval.i = 0x10; return NUM; }
YY_BREAK
case 117:
YY_RULE_SETUP
#line 338 "scanner.l"
{ yylval.i = 0x20; return NUM; }
YY_BREAK
case 118:
YY_RULE_SETUP
#line 339 "scanner.l"
{
yylval.s = sdup((char *)yytext); return ID; }
YY_BREAK
case 119:
YY_RULE_SETUP
#line 341 "scanner.l"
{ yylval.s = sdup((char *)yytext + 1); return ID; }
YY_BREAK
case 120:
YY_RULE_SETUP
#line 342 "scanner.l"
{
bpf_error("illegal token: %s", yytext); }
YY_BREAK
case 121:
YY_RULE_SETUP
#line 344 "scanner.l"
{ bpf_error("illegal char '%c'", *yytext); }
YY_BREAK
case 122:
YY_RULE_SETUP
#line 345 "scanner.l"
ECHO;
YY_BREAK
case YY_STATE_EOF(INITIAL):
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;
for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
{
register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
if ( yy_accept[yy_current_state] )
{
yy_last_accepting_state = yy_current_state;
yy_last_accepting_cpos = yy_cp;
}
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 1284 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
}
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 YY_CHAR yy_c = 1;
if ( yy_accept[yy_current_state] )
{
yy_last_accepting_state = yy_current_state;
yy_last_accepting_cpos = yy_cp;
}
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 1284 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
yy_is_jam = (yy_current_state == 1283);
return yy_is_jam ? 0 : yy_current_state;
}
#ifndef YY_NO_UNPUT
#ifdef YY_USE_PROTOS
static void yyunput( int c, register char *yy_bp )
#else
static void yyunput( c, yy_bp )
int c;
register char *yy_bp;
#endif
{
register char *yy_cp = yy_c_buf_p;
/* undo effects of setting up yytext */
*yy_cp = yy_hold_char;
if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
{ /* need to shift things up to make room */
/* +2 for EOB chars. */
register int number_to_move = yy_n_chars + 2;
register char *dest = &yy_current_buffer->yy_ch_buf[
yy_current_buffer->yy_buf_size + 2];
register char *source =
&yy_current_buffer->yy_ch_buf[number_to_move];
while ( source > yy_current_buffer->yy_ch_buf )
*--dest = *--source;
yy_cp += (int) (dest - source);
yy_bp += (int) (dest - source);
yy_current_buffer->yy_n_chars =
yy_n_chars = yy_current_buffer->yy_buf_size;
if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
YY_FATAL_ERROR( "flex scanner push-back overflow" );
}
*--yy_cp = (char) c;
yytext_ptr = yy_bp;
yy_hold_char = *yy_cp;
yy_c_buf_p = yy_cp;
}
#endif /* ifndef YY_NO_UNPUT */
#ifdef __cplusplus
static int yyinput()
#else
static int input()
#endif
{
int c;
*yy_c_buf_p = yy_hold_char;
if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
{
/* yy_c_buf_p now points to the character we want to return.
* If this occurs *before* the EOB characters, then it's a
* valid NUL; if not, then we've hit the end of the buffer.
*/
if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] )
/* This was really a NUL. */
*yy_c_buf_p = '\0';
else
{ /* need more input */
int offset = yy_c_buf_p - yytext_ptr;
++yy_c_buf_p;
switch ( yy_get_next_buffer() )
{
case EOB_ACT_LAST_MATCH:
/* This happens because yy_g_n_b()
* sees that we've accumulated a
* token and flags that we need to
* try matching the token before
* proceeding. But for input(),
* there's no matching to consider.
* So convert the EOB_ACT_LAST_MATCH
* to EOB_ACT_END_OF_FILE.
*/
/* Reset buffer status. */
yyrestart( yyin );
/* fall through */
case EOB_ACT_END_OF_FILE:
{
if ( yywrap() )
return EOF;
if ( ! yy_did_buffer_switch_on_eof )
YY_NEW_FILE;
#ifdef __cplusplus
return yyinput();
#else
return input();
#endif
}
case EOB_ACT_CONTINUE_SCAN:
yy_c_buf_p = yytext_ptr + offset;
break;
}
}
}
c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */
*yy_c_buf_p = '\0'; /* preserve yytext */
yy_hold_char = *++yy_c_buf_p;
return c;
}
#ifdef YY_USE_PROTOS
void yyrestart( FILE *input_file )
#else
void yyrestart( input_file )
FILE *input_file;
#endif
{
if ( ! yy_current_buffer )
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );
yy_init_buffer( yy_current_buffer, input_file );
yy_load_buffer_state();
}
#ifdef YY_USE_PROTOS
void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )
#else
void yy_switch_to_buffer( new_buffer )
YY_BUFFER_STATE new_buffer;
#endif
{
if ( yy_current_buffer == new_buffer )
return;
if ( yy_current_buffer )
{
/* Flush out information for old buffer. */
*yy_c_buf_p = yy_hold_char;
yy_current_buffer->yy_buf_pos = yy_c_buf_p;
yy_current_buffer->yy_n_chars = yy_n_chars;
}
yy_current_buffer = new_buffer;
yy_load_buffer_state();
/* We don't actually know whether we did this switch during
* EOF (yywrap()) processing, but the only time this flag
* is looked at is after yywrap() is called, so it's safe
* to go ahead and always set it.
*/
yy_did_buffer_switch_on_eof = 1;
}
#ifdef YY_USE_PROTOS
void yy_load_buffer_state( void )
#else
void yy_load_buffer_state()
#endif
{
yy_n_chars = yy_current_buffer->yy_n_chars;
yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
yyin = yy_current_buffer->yy_input_file;
yy_hold_char = *yy_c_buf_p;
}
#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )
#else
YY_BUFFER_STATE yy_create_buffer( file, size )
FILE *file;
int size;
#endif
{
YY_BUFFER_STATE b;
b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
b->yy_buf_size = size;
/* yy_ch_buf has to be 2 characters longer than the size given because
* we need to put in 2 end-of-buffer characters.
*/
b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 );
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
b->yy_is_our_buffer = 1;
yy_init_buffer( b, file );
return b;
}
#ifdef YY_USE_PROTOS
void yy_delete_buffer( YY_BUFFER_STATE b )
#else
void yy_delete_buffer( b )
YY_BUFFER_STATE b;
#endif
{
if ( ! b )
return;
if ( b == yy_current_buffer )
yy_current_buffer = (YY_BUFFER_STATE) 0;
if ( b->yy_is_our_buffer )
yy_flex_free( (void *) b->yy_ch_buf );
yy_flex_free( (void *) b );
}
#ifndef YY_ALWAYS_INTERACTIVE
#ifndef YY_NEVER_INTERACTIVE
extern int isatty YY_PROTO(( int ));
#endif
#endif
#ifdef YY_USE_PROTOS
void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
#else
void yy_init_buffer( b, file )
YY_BUFFER_STATE b;
FILE *file;
#endif
{
yy_flush_buffer( b );
b->yy_input_file = file;
b->yy_fill_buffer = 1;
#if YY_ALWAYS_INTERACTIVE
b->yy_is_interactive = 1;
#else
#if YY_NEVER_INTERACTIVE
b->yy_is_interactive = 0;
#else
b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
#endif
#endif
}
#ifdef YY_USE_PROTOS
void yy_flush_buffer( YY_BUFFER_STATE b )
#else
void yy_flush_buffer( b )
YY_BUFFER_STATE b;
#endif
{
if ( ! b )
return;
b->yy_n_chars = 0;
/* We always need two end-of-buffer characters. The first causes
* a transition to the end-of-buffer state. The second causes
* a jam in that state.
*/
b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
b->yy_buf_pos = &b->yy_ch_buf[0];
b->yy_at_bol = 1;
b->yy_buffer_status = YY_BUFFER_NEW;
if ( b == yy_current_buffer )
yy_load_buffer_state();
}
#ifndef YY_NO_SCAN_BUFFER
#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size )
#else
YY_BUFFER_STATE yy_scan_buffer( base, size )
char *base;
yy_size_t size;
#endif
{
YY_BUFFER_STATE b;
if ( size < 2 ||
base[size-2] != YY_END_OF_BUFFER_CHAR ||
base[size-1] != YY_END_OF_BUFFER_CHAR )
/* They forgot to leave room for the EOB's. */
return 0;
b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
b->yy_buf_pos = b->yy_ch_buf = base;
b->yy_is_our_buffer = 0;
b->yy_input_file = 0;
b->yy_n_chars = b->yy_buf_size;
b->yy_is_interactive = 0;
b->yy_at_bol = 1;
b->yy_fill_buffer = 0;
b->yy_buffer_status = YY_BUFFER_NEW;
yy_switch_to_buffer( b );
return b;
}
#endif
#ifndef YY_NO_SCAN_STRING
#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str )
#else
YY_BUFFER_STATE yy_scan_string( yy_str )
yyconst char *yy_str;
#endif
{
int len;
for ( len = 0; yy_str[len]; ++len )
;
return yy_scan_bytes( yy_str, len );
}
#endif
#ifndef YY_NO_SCAN_BYTES
#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len )
#else
YY_BUFFER_STATE yy_scan_bytes( bytes, len )
yyconst char *bytes;
int len;
#endif
{
YY_BUFFER_STATE b;
char *buf;
yy_size_t n;
int i;
/* Get memory for full buffer, including space for trailing EOB's. */
n = len + 2;
buf = (char *) yy_flex_alloc( n );
if ( ! buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
for ( i = 0; i < len; ++i )
buf[i] = bytes[i];
buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR;
b = yy_scan_buffer( buf, n );
if ( ! b )
YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
/* It's okay to grow etc. this buffer, and we should throw it
* away when we're done.
*/
b->yy_is_our_buffer = 1;
return b;
}
#endif
#ifndef YY_NO_PUSH_STATE
#ifdef YY_USE_PROTOS
static void yy_push_state( int new_state )
#else
static void yy_push_state( new_state )
int new_state;
#endif
{
if ( yy_start_stack_ptr >= yy_start_stack_depth )
{
yy_size_t new_size;
yy_start_stack_depth += YY_START_STACK_INCR;
new_size = yy_start_stack_depth * sizeof( int );
if ( ! yy_start_stack )
yy_start_stack = (int *) yy_flex_alloc( new_size );
else
yy_start_stack = (int *) yy_flex_realloc(
(void *) yy_start_stack, new_size );
if ( ! yy_start_stack )
YY_FATAL_ERROR(
"out of memory expanding start-condition stack" );
}
yy_start_stack[yy_start_stack_ptr++] = YY_START;
BEGIN(new_state);
}
#endif
#ifndef YY_NO_POP_STATE
static void yy_pop_state()
{
if ( --yy_start_stack_ptr < 0 )
YY_FATAL_ERROR( "start-condition stack underflow" );
BEGIN(yy_start_stack[yy_start_stack_ptr]);
}
#endif
#ifndef YY_NO_TOP_STATE
static int yy_top_state()
{
return yy_start_stack[yy_start_stack_ptr - 1];
}
#endif
#ifndef YY_EXIT_FAILURE
#define YY_EXIT_FAILURE 2
#endif
#ifdef YY_USE_PROTOS
static void yy_fatal_error( yyconst char msg[] )
#else
static void yy_fatal_error( msg )
char msg[];
#endif
{
(void) fprintf( stderr, "%s\n", msg );
exit( YY_EXIT_FAILURE );
}
/* Redefine yyless() so it works in section 3 code. */
#undef yyless
#define yyless(n) \
do \
{ \
/* Undo effects of setting up yytext. */ \
yytext[yyleng] = yy_hold_char; \
yy_c_buf_p = yytext + n; \
yy_hold_char = *yy_c_buf_p; \
*yy_c_buf_p = '\0'; \
yyleng = n; \
} \
while ( 0 )
/* Internal utility routines. */
#ifndef yytext_ptr
#ifdef YY_USE_PROTOS
static void yy_flex_strncpy( char *s1, yyconst char *s2, int n )
#else
static void yy_flex_strncpy( s1, s2, n )
char *s1;
yyconst char *s2;
int n;
#endif
{
register int i;
for ( i = 0; i < n; ++i )
s1[i] = s2[i];
}
#endif
#ifdef YY_NEED_STRLEN
#ifdef YY_USE_PROTOS
static int yy_flex_strlen( yyconst char *s )
#else
static int yy_flex_strlen( s )
yyconst char *s;
#endif
{
register int n;
for ( n = 0; s[n]; ++n )
;
return n;
}
#endif
#ifdef YY_USE_PROTOS
static void *yy_flex_alloc( yy_size_t size )
#else
static void *yy_flex_alloc( size )
yy_size_t size;
#endif
{
return (void *) malloc( size );
}
#ifdef YY_USE_PROTOS
static void *yy_flex_realloc( void *ptr, yy_size_t size )
#else
static void *yy_flex_realloc( ptr, size )
void *ptr;
yy_size_t size;
#endif
{
/* The cast to (char *) in the following accommodates both
* implementations that use char* generic pointers, and those
* that use void* generic pointers. It works with the latter
* because both ANSI C and C++ allow castless assignment from
* any pointer type to void*, and deal with argument conversions
* as though doing an assignment.
*/
return (void *) realloc( (char *) ptr, size );
}
#ifdef YY_USE_PROTOS
static void yy_flex_free( void *ptr )
#else
static void yy_flex_free( ptr )
void *ptr;
#endif
{
free( ptr );
}
#if YY_MAIN
int main()
{
yylex();
return 0;
}
#endif
#line 345 "scanner.l"
void
lex_init(buf)
char *buf;
{
#ifdef FLEX_SCANNER
in_buffer = yy_scan_string(buf);
#else
in_buffer = buf;
#endif
}
/*
* Do any cleanup necessary after parsing.
*/
void
lex_cleanup()
{
#ifdef FLEX_SCANNER
if (in_buffer != NULL)
yy_delete_buffer(in_buffer);
in_buffer = NULL;
#endif
}
/*
* Also define a yywrap. Note that if we're using flex, it will
* define a macro to map this identifier to pcap_wrap.
*/
int
yywrap()
{
return 1;
}
/* Hex digit to integer. */
static inline int
xdtoi(c)
register int c;
{
if (isdigit(c))
return c - '0';
else if (islower(c))
return c - 'a' + 10;
else
return c - 'A' + 10;
}
/*
* Convert string to integer. Just like atoi(), but checks for
* preceding 0x or 0 and uses hex or octal instead of decimal.
*/
static int
stoi(s)
char *s;
{
int base = 10;
int n = 0;
if (*s == '0') {
if (s[1] == 'x' || s[1] == 'X') {
s += 2;
base = 16;
}
else {
base = 8;
s += 1;
}
}
while (*s)
n = n * base + xdtoi(*s++);
return n;
}