4748 lines
159 KiB
C
4748 lines
159 KiB
C
#define yy_create_buffer jive_yy_create_buffer
|
|
#define yy_delete_buffer jive_yy_delete_buffer
|
|
#define yy_scan_buffer jive_yy_scan_buffer
|
|
#define yy_scan_string jive_yy_scan_string
|
|
#define yy_scan_bytes jive_yy_scan_bytes
|
|
#define yy_flex_debug jive_yy_flex_debug
|
|
#define yy_init_buffer jive_yy_init_buffer
|
|
#define yy_flush_buffer jive_yy_flush_buffer
|
|
#define yy_load_buffer_state jive_yy_load_buffer_state
|
|
#define yy_switch_to_buffer jive_yy_switch_to_buffer
|
|
#define yyin jive_yyin
|
|
#define yyleng jive_yyleng
|
|
#define yylex jive_yylex
|
|
#define yyout jive_yyout
|
|
#define yyrestart jive_yyrestart
|
|
#define yytext jive_yytext
|
|
|
|
#line 19 "lex.yy.c"
|
|
/* A lexical scanner generated by flex */
|
|
|
|
/* Scanner skeleton version:
|
|
* $Header: /home/svn/neostats/StupidServ/jive.c,v 1.2 2003/02/18 23:39:16 fishwaldo Exp $
|
|
*/
|
|
|
|
#define FLEX_SCANNER
|
|
#define YY_FLEX_MAJOR_VERSION 2
|
|
#define YY_FLEX_MINOR_VERSION 5
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
|
|
/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
|
|
#ifdef c_plusplus
|
|
#ifndef __cplusplus
|
|
#define __cplusplus
|
|
#endif
|
|
#endif
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include <stdlib.h>
|
|
|
|
/* Use prototypes in function declarations. */
|
|
#define YY_USE_PROTOS
|
|
|
|
/* The "const" storage-class-modifier is valid. */
|
|
#define YY_USE_CONST
|
|
|
|
#else /* ! __cplusplus */
|
|
|
|
#if __STDC__
|
|
|
|
#define YY_USE_PROTOS
|
|
#define YY_USE_CONST
|
|
|
|
#endif /* __STDC__ */
|
|
#endif /* ! __cplusplus */
|
|
|
|
#ifdef __TURBOC__
|
|
#pragma warn -rch
|
|
#pragma warn -use
|
|
#include <io.h>
|
|
#include <stdlib.h>
|
|
#define YY_USE_CONST
|
|
#define YY_USE_PROTOS
|
|
#endif
|
|
|
|
#ifdef YY_USE_CONST
|
|
#define yyconst const
|
|
#else
|
|
#define yyconst
|
|
#endif
|
|
|
|
|
|
#ifdef YY_USE_PROTOS
|
|
#define YY_PROTO(proto) proto
|
|
#else
|
|
#define YY_PROTO(proto) ()
|
|
#endif
|
|
|
|
/* Returned upon end-of-file. */
|
|
#define YY_NULL 0
|
|
|
|
/* Promotes a possibly negative, possibly signed char to an unsigned
|
|
* integer for use as an array index. If the signed char is negative,
|
|
* we want to instead treat it as an 8-bit unsigned char, hence the
|
|
* double cast.
|
|
*/
|
|
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
|
|
|
|
/* Enter a start condition. This macro really ought to take a parameter,
|
|
* but we do it the disgusting crufty way forced on us by the ()-less
|
|
* definition of BEGIN.
|
|
*/
|
|
#define BEGIN yy_start = 1 + 2 *
|
|
|
|
/* Translate the current start state into a value that can be later handed
|
|
* to BEGIN to return to the state. The YYSTATE alias is for lex
|
|
* compatibility.
|
|
*/
|
|
#define YY_START ((yy_start - 1) / 2)
|
|
#define YYSTATE YY_START
|
|
|
|
/* Action number for EOF rule of a given start state. */
|
|
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
|
|
|
|
/* Special action meaning "start processing a new file". */
|
|
#define YY_NEW_FILE yyrestart( yyin )
|
|
|
|
#define YY_END_OF_BUFFER_CHAR 0
|
|
|
|
/* Size of default input buffer. */
|
|
#define YY_BUF_SIZE 16384
|
|
|
|
typedef struct yy_buffer_state *YY_BUFFER_STATE;
|
|
|
|
extern int yyleng;
|
|
extern FILE *yyin, *yyout;
|
|
|
|
#define EOB_ACT_CONTINUE_SCAN 0
|
|
#define EOB_ACT_END_OF_FILE 1
|
|
#define EOB_ACT_LAST_MATCH 2
|
|
|
|
/* The funky do-while in the following #define is used to turn the definition
|
|
* int a single C statement (which needs a semi-colon terminator). This
|
|
* avoids problems with code like:
|
|
*
|
|
* if ( condition_holds )
|
|
* yyless( 5 );
|
|
* else
|
|
* do_something_else();
|
|
*
|
|
* Prior to using the do-while the compiler would get upset at the
|
|
* "else" because it interpreted the "if" statement as being all
|
|
* done when it reached the ';' after the yyless() call.
|
|
*/
|
|
|
|
/* Return all but the first 'n' matched characters back to the input stream. */
|
|
|
|
#define yyless(n) \
|
|
do \
|
|
{ \
|
|
/* Undo effects of setting up yytext. */ \
|
|
*yy_cp = yy_hold_char; \
|
|
YY_RESTORE_YY_MORE_OFFSET \
|
|
yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */ \
|
|
} \
|
|
while ( 0 )
|
|
|
|
#define unput(c) yyunput( c, yytext_ptr )
|
|
|
|
/* The following is because we cannot portably get our hands on size_t
|
|
* (without autoconf's help, which isn't available because we want
|
|
* flex-generated scanners to compile on their own).
|
|
*/
|
|
typedef unsigned int yy_size_t;
|
|
|
|
|
|
struct yy_buffer_state
|
|
{
|
|
FILE *yy_input_file;
|
|
|
|
char *yy_ch_buf; /* input buffer */
|
|
char *yy_buf_pos; /* current position in input buffer */
|
|
|
|
/* Size of input buffer in bytes, not including room for EOB
|
|
* characters.
|
|
*/
|
|
yy_size_t yy_buf_size;
|
|
|
|
/* Number of characters read into yy_ch_buf, not including EOB
|
|
* characters.
|
|
*/
|
|
int yy_n_chars;
|
|
|
|
/* Whether we "own" the buffer - i.e., we know we created it,
|
|
* and can realloc() it to grow it, and should free() it to
|
|
* delete it.
|
|
*/
|
|
int yy_is_our_buffer;
|
|
|
|
/* Whether this is an "interactive" input source; if so, and
|
|
* if we're using stdio for input, then we want to use getc()
|
|
* instead of fread(), to make sure we stop fetching input after
|
|
* each newline.
|
|
*/
|
|
int yy_is_interactive;
|
|
|
|
/* Whether we're considered to be at the beginning of a line.
|
|
* If so, '^' rules will be active on the next match, otherwise
|
|
* not.
|
|
*/
|
|
int yy_at_bol;
|
|
|
|
/* Whether to try to fill the input buffer when we reach the
|
|
* end of it.
|
|
*/
|
|
int yy_fill_buffer;
|
|
|
|
int yy_buffer_status;
|
|
#define YY_BUFFER_NEW 0
|
|
#define YY_BUFFER_NORMAL 1
|
|
/* When an EOF's been seen but there's still some text to process
|
|
* then we mark the buffer as YY_EOF_PENDING, to indicate that we
|
|
* shouldn't try reading from the input source any more. We might
|
|
* still have a bunch of tokens to match, though, because of
|
|
* possible backing-up.
|
|
*
|
|
* When we actually see the EOF, we change the status to "new"
|
|
* (via yyrestart()), so that the user can continue scanning by
|
|
* just pointing yyin at a new input file.
|
|
*/
|
|
#define YY_BUFFER_EOF_PENDING 2
|
|
};
|
|
|
|
static YY_BUFFER_STATE yy_current_buffer = 0;
|
|
|
|
/* We provide macros for accessing buffer states in case in the
|
|
* future we want to put the buffer states in a more general
|
|
* "scanner state".
|
|
*/
|
|
#define YY_CURRENT_BUFFER yy_current_buffer
|
|
|
|
|
|
/* yy_hold_char holds the character lost when yytext is formed. */
|
|
static char yy_hold_char;
|
|
|
|
static int yy_n_chars; /* number of characters read into yy_ch_buf */
|
|
|
|
|
|
int yyleng;
|
|
|
|
/* Points to current character in buffer. */
|
|
static char *yy_c_buf_p = (char *) 0;
|
|
static int yy_init = 1; /* whether we need to initialize */
|
|
static int yy_start = 0; /* start state number */
|
|
|
|
/* Flag which is used to allow yywrap()'s to do buffer switches
|
|
* instead of setting up a fresh yyin. A bit of a hack ...
|
|
*/
|
|
static int yy_did_buffer_switch_on_eof;
|
|
|
|
void yyrestart YY_PROTO(( FILE *input_file ));
|
|
|
|
void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
|
|
void yy_load_buffer_state YY_PROTO(( void ));
|
|
YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
|
|
void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
|
|
void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
|
|
void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));
|
|
#define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )
|
|
|
|
YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));
|
|
YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str ));
|
|
YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));
|
|
|
|
static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
|
|
static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));
|
|
static void yy_flex_free YY_PROTO(( void * ));
|
|
|
|
#define yy_new_buffer yy_create_buffer
|
|
|
|
#define yy_set_interactive(is_interactive) \
|
|
{ \
|
|
if ( ! yy_current_buffer ) \
|
|
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
|
|
yy_current_buffer->yy_is_interactive = is_interactive; \
|
|
}
|
|
|
|
#define yy_set_bol(at_bol) \
|
|
{ \
|
|
if ( ! yy_current_buffer ) \
|
|
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
|
|
yy_current_buffer->yy_at_bol = at_bol; \
|
|
}
|
|
|
|
#define YY_AT_BOL() (yy_current_buffer->yy_at_bol)
|
|
|
|
|
|
#define yywrap() 1
|
|
#define YY_SKIP_YYWRAP
|
|
typedef unsigned char YY_CHAR;
|
|
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
|
|
typedef int yy_state_type;
|
|
extern char *yytext;
|
|
#define yytext_ptr yytext
|
|
|
|
static yy_state_type yy_get_previous_state YY_PROTO(( void ));
|
|
static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));
|
|
static int yy_get_next_buffer YY_PROTO(( void ));
|
|
static void yy_fatal_error YY_PROTO(( yyconst char msg[] ));
|
|
|
|
/* Done after the current pattern has been matched and before the
|
|
* corresponding action - sets up yytext.
|
|
*/
|
|
#define YY_DO_BEFORE_ACTION \
|
|
yytext_ptr = yy_bp; \
|
|
yyleng = (int) (yy_cp - yy_bp); \
|
|
yy_hold_char = *yy_cp; \
|
|
*yy_cp = '\0'; \
|
|
yy_c_buf_p = yy_cp;
|
|
|
|
#define YY_NUM_RULES 257
|
|
#define YY_END_OF_BUFFER 258
|
|
static yyconst short int yy_accept[1314] =
|
|
{ 0,
|
|
0, 0, 0, 0, 0, 0, 258, 256, 255, 257,
|
|
230, 230, 230, 230, 230, 230, 230, 230, 230, 230,
|
|
230, 230, 230, 230, 230, 230, 230, 230, 230, 230,
|
|
230, 230, 230, 230, 230, 230, 230, 230, 230, 230,
|
|
230, 230, 230, 230, 230, 230, 230, 230, 230, 230,
|
|
230, 230, 230, 230, 230, 254, 254, 254, 242, 256,
|
|
256, 256, 256, 256, 256, 256, 256, 256, 256, 256,
|
|
256, 256, 256, 256, 256, 256, 256, 0, 0, 0,
|
|
0, 0, 0, 219, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 227, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 201, 201,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 218, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 229, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 221, 0, 0, 0,
|
|
0, 219, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 218, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 229, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 232, 231, 253, 233,
|
|
0, 0, 234, 0, 0, 235, 0, 236, 237, 252,
|
|
238, 0, 239, 240, 241, 0, 0, 0, 0, 0,
|
|
0, 0, 219, 217, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 70, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 226, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 42, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 196, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 118, 0,
|
|
0, 218, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 114, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 183,
|
|
183, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 175, 175, 222, 0, 0, 0, 0,
|
|
133, 0, 0, 164, 0, 0, 0, 0, 0, 0,
|
|
0, 191, 0, 0, 0, 0, 0, 0, 253, 0,
|
|
0, 249, 247, 248, 0, 252, 0, 0, 0, 0,
|
|
220, 0, 0, 225, 225, 0, 0, 0, 180, 0,
|
|
|
|
0, 0, 179, 0, 0, 141, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 37,
|
|
0, 0, 0, 0, 93, 0, 171, 0, 132, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 59, 0, 165, 197, 162,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 147, 0, 155, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 34, 0, 0, 0, 126, 0,
|
|
0, 0, 0, 36, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 60, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
153, 0, 0, 0, 3, 0, 45, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 203, 0, 0, 0,
|
|
0, 0, 224, 0, 0, 0, 0, 172, 170, 0,
|
|
0, 0, 0, 0, 0, 107, 0, 0, 0, 0,
|
|
0, 0, 225, 0, 0, 0, 0, 0, 0, 134,
|
|
72, 0, 123, 0, 0, 76, 0, 0, 0, 0,
|
|
102, 102, 0, 189, 0, 65, 65, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 40, 0, 0, 176, 0,
|
|
0, 0, 0, 0, 0, 0, 133, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
190, 106, 0, 0, 0, 251, 0, 0, 214, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 121, 0, 0,
|
|
0, 0, 185, 0, 0, 0, 51, 0, 0, 0,
|
|
0, 31, 109, 18, 4, 0, 0, 91, 0, 92,
|
|
0, 0, 0, 0, 2, 0, 0, 30, 101, 0,
|
|
17, 38, 0, 127, 0, 0, 177, 0, 0, 0,
|
|
0, 0, 53, 0, 0, 0, 140, 0, 0, 29,
|
|
143, 143, 0, 136, 13, 0, 0, 0, 0, 0,
|
|
149, 148, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 86, 80, 0, 129, 0, 61, 144, 0, 0,
|
|
0, 0, 0, 157, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 62, 0, 0, 0, 0,
|
|
0, 0, 0, 41, 27, 0, 0, 0, 0, 0,
|
|
131, 120, 120, 0, 0, 0, 223, 0, 43, 0,
|
|
0, 0, 0, 0, 0, 0, 100, 0, 0, 0,
|
|
0, 0, 0, 0, 166, 68, 68, 192, 0, 0,
|
|
0, 117, 0, 0, 0, 188, 64, 64, 96, 0,
|
|
0, 0, 135, 0, 0, 98, 122, 0, 0, 116,
|
|
48, 0, 0, 87, 0, 0, 111, 0, 0, 0,
|
|
|
|
85, 115, 11, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 16, 77, 0, 193, 0, 0, 0, 0,
|
|
0, 0, 161, 146, 0, 28, 75, 19, 1, 108,
|
|
0, 0, 0, 0, 0, 0, 104, 151, 0, 0,
|
|
0, 152, 0, 119, 154, 0, 73, 73, 0, 0,
|
|
0, 0, 167, 208, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 169, 0, 0, 0,
|
|
0, 181, 0, 0, 0, 195, 0, 0, 0, 0,
|
|
0, 0, 228, 0, 0, 184, 12, 32, 78, 0,
|
|
|
|
35, 125, 112, 0, 0, 103, 0, 194, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 33, 187, 0, 0, 82,
|
|
0, 10, 0, 0, 0, 0, 244, 246, 243, 0,
|
|
245, 168, 0, 0, 0, 55, 0, 0, 0, 0,
|
|
71, 159, 0, 0, 0, 0, 0, 0, 212, 0,
|
|
0, 15, 0, 0, 0, 0, 0, 0, 49, 0,
|
|
0, 0, 0, 0, 0, 79, 128, 84, 83, 0,
|
|
158, 0, 0, 6, 0, 69, 142, 213, 0, 0,
|
|
0, 0, 110, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 105, 54, 0, 0, 210, 0, 81, 0, 0,
|
|
47, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 250, 150, 0, 58, 0,
|
|
0, 14, 0, 99, 145, 50, 0, 0, 137, 67,
|
|
0, 63, 0, 0, 26, 0, 0, 0, 25, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
160, 178, 0, 202, 0, 0, 215, 0, 113, 57,
|
|
0, 138, 0, 0, 0, 63, 0, 0, 0, 124,
|
|
0, 0, 0, 182, 0, 0, 0, 46, 0, 56,
|
|
0, 0, 88, 5, 0, 0, 0, 0, 0, 90,
|
|
|
|
156, 0, 198, 0, 0, 0, 0, 9, 9, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 211, 0, 24, 0, 0, 186, 0, 0, 0,
|
|
216, 0, 163, 66, 0, 0, 0, 0, 0, 0,
|
|
0, 94, 0, 8, 44, 0, 39, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
199, 200, 0, 0, 22, 0, 0, 207, 0, 0,
|
|
0, 0, 0, 0, 89, 209, 0, 97, 0, 0,
|
|
0, 173, 0, 204, 0, 0, 0, 0, 130, 205,
|
|
0, 74, 23, 0, 0, 139, 20, 21, 0, 0,
|
|
|
|
0, 0, 52, 0, 0, 174, 206, 95, 0, 0,
|
|
0, 7, 0
|
|
} ;
|
|
|
|
static yyconst int yy_ec[256] =
|
|
{ 0,
|
|
1, 1, 1, 2, 1, 1, 1, 1, 3, 4,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 3, 5, 1, 1, 1, 1, 1, 6, 1,
|
|
1, 1, 1, 7, 1, 8, 1, 9, 10, 11,
|
|
10, 10, 12, 10, 10, 13, 14, 15, 1, 1,
|
|
1, 1, 1, 1, 16, 17, 18, 19, 20, 21,
|
|
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
|
|
10, 32, 33, 34, 35, 36, 37, 38, 39, 10,
|
|
40, 1, 1, 1, 1, 1, 41, 42, 43, 44,
|
|
|
|
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
|
|
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
|
|
65, 66, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 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[67] =
|
|
{ 0,
|
|
1, 1, 1, 2, 1, 3, 1, 1, 4, 4,
|
|
4, 4, 4, 4, 1, 4, 4, 4, 4, 4,
|
|
4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
|
|
4, 4, 4, 4, 4, 4, 4, 4, 4, 1,
|
|
5, 4, 4, 6, 7, 8, 4, 4, 9, 4,
|
|
4, 4, 8, 10, 11, 4, 4, 12, 13, 4,
|
|
8, 14, 4, 4, 4, 4
|
|
} ;
|
|
|
|
static yyconst short int yy_base[1338] =
|
|
{ 0,
|
|
0, 0, 0, 0, 66, 0, 2929, 84, 85, 3698,
|
|
89, 99, 115, 122, 140, 139, 152, 166, 178, 238,
|
|
203, 202, 224, 250, 225, 267, 279, 291, 309, 324,
|
|
329, 341, 355, 254, 415, 380, 387, 405, 431, 438,
|
|
456, 474, 175, 479, 493, 503, 515, 532, 544, 556,
|
|
151, 569, 574, 590, 295, 3698, 3698, 3698, 3698, 3698,
|
|
264, 131, 146, 394, 583, 157, 2913, 217, 194, 220,
|
|
242, 273, 286, 356, 289, 318, 327, 2873, 2869, 138,
|
|
2868, 106, 2867, 272, 2854, 156, 2859, 2859, 143, 377,
|
|
307, 333, 404, 2837, 2842, 182, 429, 325, 2838, 389,
|
|
|
|
351, 163, 323, 365, 2849, 2829, 354, 225, 2839, 2844,
|
|
2826, 287, 499, 346, 595, 393, 2831, 459, 3698, 421,
|
|
2840, 403, 2829, 2807, 456, 482, 2805, 2807, 168, 2807,
|
|
2803, 2797, 416, 2800, 553, 195, 423, 598, 2789, 165,
|
|
2794, 2799, 515, 658, 2804, 2799, 501, 458, 2796, 2772,
|
|
478, 615, 623, 2788, 2771, 434, 2782, 2775, 258, 443,
|
|
2779, 624, 564, 2753, 492, 476, 679, 2766, 2749, 512,
|
|
647, 445, 2752, 2752, 2755, 2742, 3698, 639, 633, 2756,
|
|
559, 644, 581, 660, 655, 663, 651, 670, 589, 664,
|
|
666, 516, 2734, 630, 669, 678, 2747, 687, 2725, 692,
|
|
|
|
678, 2731, 684, 754, 2730, 520, 2728, 720, 693, 699,
|
|
717, 706, 724, 2727, 784, 799, 724, 752, 491, 760,
|
|
635, 732, 765, 2725, 568, 2718, 681, 2711, 2721, 826,
|
|
762, 761, 788, 772, 2703, 2703, 3698, 3698, 2701, 3698,
|
|
2691, 2690, 3698, 842, 547, 3698, 2702, 3698, 3698, 2690,
|
|
3698, 2687, 3698, 3698, 3698, 2699, 2694, 2675, 857, 2686,
|
|
2675, 794, 3698, 3698, 2674, 2672, 866, 735, 2681, 883,
|
|
2670, 2669, 900, 2658, 2661, 2666, 2655, 3698, 2657, 2648,
|
|
2636, 807, 2641, 2633, 2635, 2645, 909, 2646, 2639, 2632,
|
|
2611, 2624, 2608, 2660, 924, 653, 821, 3698, 2617, 2616,
|
|
|
|
2594, 2600, 2593, 835, 2599, 3698, 2597, 2604, 2601, 2590,
|
|
2595, 2577, 2590, 2579, 940, 2579, 2571, 955, 3698, 2569,
|
|
2566, 2551, 851, 2556, 2553, 2558, 2552, 2547, 793, 964,
|
|
2550, 981, 2540, 2548, 2532, 2531, 2538, 2515, 2513, 833,
|
|
2511, 2515, 998, 728, 2508, 2561, 2514, 2497, 2513, 1007,
|
|
2508, 2504, 2502, 2497, 2502, 2481, 2493, 2490, 3698, 2471,
|
|
2481, 3698, 2481, 2459, 2464, 2457, 2453, 2462, 2450, 850,
|
|
2447, 2447, 802, 862, 2451, 2436, 2451, 879, 2440, 2450,
|
|
2433, 2447, 2420, 2421, 2412, 2426, 2412, 2428, 881, 2420,
|
|
2412, 2405, 873, 2401, 3698, 2409, 2388, 2392, 1022, 2404,
|
|
|
|
2383, 2382, 2387, 2393, 2377, 2368, 2361, 693, 893, 721,
|
|
940, 2363, 2361, 2362, 933, 901, 2364, 2358, 2353, 2349,
|
|
1038, 1053, 936, 1062, 2348, 966, 2345, 1079, 2345, 984,
|
|
2344, 2349, 1096, 2350, 2335, 1031, 2337, 2315, 2313, 3698,
|
|
2319, 2321, 2311, 2316, 849, 2296, 2299, 2312, 2315, 2314,
|
|
2309, 2291, 958, 3698, 2290, 3698, 2288, 2296, 2292, 875,
|
|
1030, 2295, 2285, 3698, 2261, 2266, 2272, 2262, 2261, 2263,
|
|
2268, 3698, 2250, 2257, 2249, 1105, 1067, 2252, 3698, 2251,
|
|
2250, 3698, 3698, 3698, 2248, 3698, 2248, 1125, 2237, 2232,
|
|
3698, 2221, 2215, 3698, 2209, 2267, 2228, 2206, 3698, 1145,
|
|
|
|
2200, 2198, 3698, 2210, 2206, 3698, 1154, 2208, 2202, 2200,
|
|
1169, 930, 2196, 915, 2182, 1185, 1200, 1209, 1226, 3698,
|
|
2197, 2197, 1243, 2177, 3698, 1252, 3698, 2163, 3698, 2177,
|
|
2168, 2173, 2158, 2156, 1267, 1283, 2161, 1298, 1307, 2157,
|
|
1324, 2161, 2144, 1341, 2143, 3698, 1087, 3698, 3698, 3698,
|
|
2136, 2155, 2141, 2153, 1350, 2134, 2138, 2129, 1365, 2124,
|
|
2111, 3698, 1381, 3698, 1396, 2119, 1405, 1422, 2126, 2109,
|
|
2097, 2108, 1439, 2113, 3698, 1448, 1463, 2098, 3698, 2099,
|
|
2112, 2092, 2093, 3698, 2080, 2099, 2100, 2085, 1479, 2070,
|
|
1494, 2079, 2076, 2062, 3698, 1503, 2067, 2063, 2074, 2065,
|
|
|
|
918, 1520, 2064, 2056, 2059, 2045, 2042, 2046, 2042, 2030,
|
|
3698, 2029, 2031, 2024, 3698, 1537, 3698, 2026, 2014, 2013,
|
|
2022, 2013, 2009, 2008, 1546, 1561, 970, 2044, 2009, 1999,
|
|
1577, 1592, 3698, 1991, 2003, 2003, 2039, 3698, 3698, 2000,
|
|
1991, 1972, 1972, 1969, 948, 3698, 1964, 1974, 1601, 1961,
|
|
1964, 1971, 994, 1965, 1966, 1961, 1958, 1949, 1618, 3698,
|
|
3698, 1635, 3698, 1644, 1958, 3698, 1957, 1948, 1659, 1938,
|
|
3698, 1922, 1923, 3698, 1675, 3698, 1920, 1112, 1690, 1921,
|
|
1046, 1699, 950, 1013, 1716, 3698, 1733, 1909, 3698, 1914,
|
|
1742, 1757, 1919, 1907, 1773, 1899, 3698, 1907, 1788, 1899,
|
|
|
|
1028, 1912, 1892, 1025, 1797, 1814, 1892, 1119, 1904, 1048,
|
|
3698, 3698, 1903, 1902, 1893, 3698, 1875, 1883, 3698, 1877,
|
|
1863, 1869, 1869, 1866, 1858, 1869, 1856, 3698, 1859, 1848,
|
|
1831, 1840, 3698, 1846, 1855, 1851, 3698, 1849, 1043, 1837,
|
|
1825, 3698, 3698, 3698, 3698, 1871, 1886, 3698, 1835, 3698,
|
|
1895, 1912, 1929, 1825, 3698, 1938, 1953, 3698, 3698, 1838,
|
|
3698, 3698, 1818, 3698, 1822, 1804, 3698, 1813, 1807, 1969,
|
|
1822, 1984, 3698, 1821, 1810, 1820, 3698, 1788, 1993, 3698,
|
|
3698, 1825, 1803, 3698, 3698, 1806, 2010, 2027, 1804, 2036,
|
|
3698, 3698, 1782, 2051, 1790, 1771, 1774, 2067, 1768, 2082,
|
|
|
|
1766, 3698, 3698, 1766, 3698, 1779, 3698, 3698, 1775, 1760,
|
|
1766, 1764, 1754, 3698, 1767, 1763, 1071, 1765, 1745, 2091,
|
|
1733, 1726, 1741, 1739, 1731, 3698, 2108, 1738, 1723, 1725,
|
|
2125, 1722, 1721, 3698, 3698, 915, 1713, 1721, 2134, 1704,
|
|
3698, 3698, 1695, 2149, 2165, 2180, 3698, 2189, 3698, 1691,
|
|
2206, 2223, 2232, 1699, 1707, 2247, 3698, 1691, 2263, 1687,
|
|
1673, 1674, 1667, 1665, 3698, 3698, 1672, 3698, 1672, 1671,
|
|
1681, 3698, 1656, 1658, 1658, 3698, 3698, 1651, 3698, 1665,
|
|
1654, 1654, 3698, 1631, 1634, 3698, 3698, 1639, 2278, 3698,
|
|
3698, 1642, 2287, 3698, 1631, 1637, 3698, 2304, 1626, 2321,
|
|
|
|
3698, 3698, 3698, 1614, 1114, 1612, 1083, 2330, 2345, 2361,
|
|
1624, 2376, 1610, 1611, 1603, 1620, 1596, 2385, 1596, 1610,
|
|
1608, 1608, 3698, 3698, 2402, 3698, 2419, 1590, 1576, 1580,
|
|
1569, 1585, 3698, 3698, 1569, 3698, 3698, 3698, 3698, 3698,
|
|
2428, 1574, 1566, 2443, 1571, 1563, 3698, 3698, 1131, 1574,
|
|
1560, 3698, 1568, 3698, 3698, 2459, 3698, 1552, 1569, 1556,
|
|
1543, 1546, 3698, 3698, 1530, 2474, 2483, 2500, 2517, 1543,
|
|
1545, 2526, 1542, 310, 1530, 1515, 3698, 2541, 2557, 2572,
|
|
2581, 3698, 1516, 1524, 1134, 3698, 1527, 2598, 1516, 1521,
|
|
1520, 1518, 3698, 1498, 1502, 3698, 3698, 3698, 3698, 1497,
|
|
|
|
3698, 3698, 3698, 1508, 2615, 3698, 2624, 3698, 1485, 1495,
|
|
1492, 1488, 2639, 1123, 1472, 1479, 2655, 82, 85, 146,
|
|
229, 333, 330, 359, 373, 3698, 3698, 395, 534, 3698,
|
|
549, 3698, 596, 683, 772, 765, 3698, 3698, 3698, 2670,
|
|
3698, 3698, 2679, 840, 841, 3698, 886, 2696, 890, 2713,
|
|
3698, 3698, 2722, 2737, 944, 988, 1038, 2753, 3698, 2768,
|
|
1046, 3698, 1069, 2777, 1076, 1083, 2794, 1090, 3698, 1096,
|
|
1113, 2811, 1118, 1124, 1134, 3698, 3698, 3698, 3698, 1128,
|
|
3698, 1126, 1132, 1129, 1122, 3698, 3698, 3698, 1146, 1141,
|
|
1153, 2820, 3698, 2835, 1137, 2851, 1138, 1158, 2866, 1215,
|
|
|
|
2875, 3698, 3698, 1148, 1179, 3698, 2892, 3698, 1163, 1170,
|
|
3698, 1178, 2909, 1180, 1232, 1171, 2918, 1192, 1235, 1184,
|
|
2933, 1202, 1197, 1199, 2949, 3698, 3698, 1202, 3698, 2964,
|
|
1201, 3698, 1212, 3698, 3698, 3698, 1207, 2973, 3698, 3698,
|
|
2990, 3698, 1228, 1221, 3698, 1224, 3007, 1219, 3698, 1220,
|
|
3016, 1230, 3031, 1229, 1239, 1249, 1235, 3047, 1249, 1242,
|
|
3698, 3698, 1256, 3698, 1264, 1263, 3698, 3046, 3698, 3698,
|
|
1266, 3698, 1264, 3065, 1266, 3698, 3087, 1266, 1266, 3698,
|
|
3096, 1288, 1292, 3698, 1280, 3105, 1290, 3698, 3114, 3698,
|
|
1291, 3136, 3698, 3698, 1279, 1287, 1289, 1295, 1314, 3698,
|
|
|
|
3698, 1315, 3698, 3145, 1312, 1304, 1326, 3698, 1357, 3154,
|
|
1330, 1330, 1332, 1369, 1379, 1359, 1367, 1359, 1363, 1362,
|
|
1353, 3698, 1356, 3698, 1371, 1415, 3698, 1381, 1376, 1387,
|
|
3698, 1429, 3698, 3698, 3163, 3185, 1385, 1381, 3194, 1384,
|
|
3203, 3698, 1389, 3698, 3698, 1403, 3698, 1413, 1400, 1411,
|
|
1452, 3212, 3234, 1424, 3243, 1426, 1432, 1431, 1426, 1416,
|
|
3698, 3698, 1418, 3252, 3698, 1438, 1435, 3698, 1430, 1444,
|
|
3261, 3283, 1438, 1484, 3698, 3698, 3292, 3698, 3301, 1441,
|
|
1461, 3698, 3310, 3698, 3332, 3341, 1468, 1465, 3698, 3698,
|
|
1468, 3698, 3698, 1457, 3350, 3698, 3698, 3698, 1459, 1466,
|
|
|
|
3359, 3381, 3698, 3390, 1481, 3698, 3698, 3698, 1484, 1472,
|
|
3399, 3698, 3698, 3439, 3453, 3463, 3475, 3486, 3496, 3502,
|
|
3516, 3519, 3529, 3541, 3554, 3564, 3577, 3589, 3598, 3611,
|
|
3618, 3628, 3641, 3654, 3664, 3676, 3688
|
|
} ;
|
|
|
|
static yyconst short int yy_def[1338] =
|
|
{ 0,
|
|
1313, 1, 1, 1, 1313, 5, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 20, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
29, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
|
|
1313, 1313, 1313, 1314, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1315, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1316, 1313, 1313, 1313, 1313, 1317, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1318, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1319, 1313, 1313, 1313, 1320, 1320, 1313, 1313, 1313,
|
|
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1321, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1322, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1323, 1313, 1313, 1313, 1318, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1324, 1325, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1326, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1327, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1328, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1329, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1330, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1331, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
|
|
1313, 1313, 1332, 1313, 1313, 1313, 1313, 1333, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1334, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1335, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
|
|
1313, 1313, 1313, 1336, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1337, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 0, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313
|
|
} ;
|
|
|
|
static yyconst short int yy_nxt[3765] =
|
|
{ 0,
|
|
8, 9, 8, 10, 8, 11, 8, 8, 11, 11,
|
|
11, 11, 11, 11, 8, 12, 13, 14, 15, 16,
|
|
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
|
|
27, 28, 29, 30, 31, 32, 33, 11, 34, 8,
|
|
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
|
|
45, 46, 47, 25, 48, 49, 11, 50, 51, 52,
|
|
53, 32, 54, 11, 55, 11, 56, 57, 56, 58,
|
|
59, 60, 56, 56, 60, 60, 60, 60, 60, 60,
|
|
56, 60, 60, 60, 60, 60, 60, 60, 60, 60,
|
|
60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
|
|
|
|
60, 60, 60, 60, 60, 56, 61, 62, 63, 64,
|
|
65, 66, 67, 67, 68, 69, 67, 67, 70, 70,
|
|
71, 72, 73, 73, 67, 74, 75, 75, 76, 76,
|
|
77, 77, 78, 78, 1112, 79, 79, 78, 237, 1113,
|
|
79, 79, 79, 79, 79, 238, 79, 78, 79, 259,
|
|
80, 81, 82, 240, 83, 88, 84, 85, 86, 89,
|
|
238, 87, 95, 90, 243, 260, 91, 354, 354, 92,
|
|
78, 238, 93, 96, 79, 94, 97, 119, 119, 98,
|
|
100, 79, 99, 268, 101, 269, 78, 78, 102, 679,
|
|
79, 79, 106, 222, 103, 257, 79, 104, 79, 79,
|
|
|
|
107, 246, 105, 79, 78, 223, 108, 292, 238, 109,
|
|
111, 79, 110, 224, 112, 265, 256, 79, 115, 337,
|
|
113, 256, 116, 114, 246, 79, 117, 248, 203, 79,
|
|
280, 238, 118, 204, 238, 79, 281, 79, 119, 119,
|
|
120, 120, 119, 123, 119, 119, 128, 124, 346, 249,
|
|
129, 125, 119, 79, 79, 130, 238, 126, 347, 79,
|
|
79, 79, 79, 127, 131, 141, 236, 236, 132, 142,
|
|
247, 237, 133, 143, 1114, 79, 79, 119, 238, 302,
|
|
249, 79, 79, 79, 79, 303, 78, 238, 134, 79,
|
|
135, 121, 144, 251, 136, 79, 253, 122, 137, 250,
|
|
|
|
238, 79, 78, 238, 138, 79, 381, 79, 176, 79,
|
|
139, 79, 382, 79, 140, 78, 262, 145, 79, 150,
|
|
78, 239, 146, 151, 147, 254, 148, 78, 149, 263,
|
|
79, 154, 238, 152, 255, 155, 153, 1083, 79, 78,
|
|
256, 238, 79, 78, 307, 156, 79, 272, 79, 235,
|
|
79, 157, 79, 158, 79, 78, 159, 78, 252, 252,
|
|
160, 161, 1083, 162, 165, 285, 79, 293, 163, 164,
|
|
238, 166, 78, 78, 273, 79, 294, 78, 167, 1115,
|
|
79, 79, 168, 79, 1116, 169, 79, 274, 79, 78,
|
|
311, 290, 79, 275, 78, 170, 241, 241, 79, 171,
|
|
|
|
79, 240, 172, 173, 1117, 300, 79, 256, 238, 174,
|
|
291, 301, 175, 296, 79, 177, 177, 177, 177, 177,
|
|
183, 177, 177, 270, 184, 297, 1118, 186, 90, 177,
|
|
256, 91, 287, 317, 185, 78, 271, 93, 187, 79,
|
|
94, 188, 288, 327, 98, 189, 79, 99, 276, 101,
|
|
289, 78, 78, 190, 177, 1119, 79, 318, 277, 191,
|
|
341, 324, 192, 78, 79, 348, 178, 179, 180, 256,
|
|
181, 193, 182, 85, 86, 377, 256, 87, 106, 78,
|
|
325, 282, 194, 283, 284, 405, 107, 378, 79, 79,
|
|
79, 78, 195, 406, 105, 196, 197, 79, 110, 407,
|
|
|
|
111, 308, 308, 383, 112, 363, 78, 79, 330, 256,
|
|
198, 320, 321, 114, 200, 79, 199, 331, 116, 322,
|
|
393, 323, 117, 205, 394, 79, 332, 206, 201, 333,
|
|
79, 79, 366, 79, 202, 367, 79, 128, 79, 207,
|
|
334, 208, 391, 392, 79, 366, 209, 132, 461, 78,
|
|
79, 210, 79, 309, 79, 211, 310, 357, 362, 212,
|
|
79, 358, 79, 137, 426, 398, 79, 134, 256, 213,
|
|
399, 400, 79, 256, 79, 214, 427, 216, 1120, 215,
|
|
78, 331, 145, 79, 218, 242, 242, 146, 219, 217,
|
|
243, 148, 78, 149, 1121, 79, 154, 238, 152, 261,
|
|
|
|
221, 220, 483, 79, 78, 484, 343, 79, 388, 225,
|
|
344, 345, 78, 79, 414, 79, 226, 227, 467, 392,
|
|
79, 389, 78, 228, 267, 79, 79, 229, 79, 230,
|
|
231, 79, 287, 79, 232, 413, 413, 172, 233, 416,
|
|
244, 79, 288, 312, 234, 349, 245, 175, 313, 79,
|
|
350, 351, 401, 314, 315, 1122, 316, 352, 359, 359,
|
|
359, 359, 359, 371, 359, 359, 368, 372, 369, 385,
|
|
370, 373, 359, 258, 429, 462, 386, 374, 78, 395,
|
|
395, 395, 395, 395, 387, 395, 395, 78, 415, 308,
|
|
308, 412, 78, 395, 376, 402, 257, 359, 403, 78,
|
|
|
|
268, 263, 269, 418, 404, 281, 256, 424, 292, 274,
|
|
293, 417, 419, 420, 530, 275, 421, 256, 395, 294,
|
|
422, 279, 423, 430, 283, 284, 304, 326, 425, 303,
|
|
320, 321, 431, 439, 256, 469, 642, 446, 322, 488,
|
|
312, 309, 1123, 447, 310, 313, 433, 338, 434, 448,
|
|
436, 315, 256, 437, 440, 440, 441, 441, 440, 346,
|
|
440, 440, 444, 449, 457, 450, 401, 451, 440, 347,
|
|
343, 337, 78, 445, 256, 345, 350, 351, 576, 379,
|
|
645, 362, 452, 352, 454, 454, 455, 455, 454, 463,
|
|
454, 454, 577, 440, 500, 501, 495, 495, 454, 456,
|
|
|
|
456, 456, 456, 456, 372, 456, 456, 458, 373, 402,
|
|
385, 459, 1124, 456, 374, 473, 460, 386, 404, 1125,
|
|
399, 400, 465, 454, 409, 387, 472, 472, 472, 472,
|
|
472, 474, 472, 472, 476, 572, 572, 560, 456, 475,
|
|
472, 408, 482, 482, 482, 482, 482, 496, 482, 482,
|
|
561, 514, 601, 601, 605, 256, 482, 491, 491, 491,
|
|
491, 491, 515, 491, 491, 472, 499, 499, 499, 499,
|
|
499, 491, 499, 499, 531, 628, 628, 696, 696, 537,
|
|
499, 482, 1313, 503, 503, 503, 503, 503, 256, 503,
|
|
503, 553, 684, 1128, 602, 488, 491, 503, 1130, 554,
|
|
|
|
506, 506, 506, 506, 506, 499, 506, 506, 606, 520,
|
|
520, 520, 520, 520, 506, 520, 520, 740, 740, 612,
|
|
607, 623, 503, 520, 529, 529, 529, 529, 529, 624,
|
|
529, 529, 613, 643, 1131, 653, 653, 644, 529, 506,
|
|
546, 546, 546, 546, 546, 647, 546, 546, 520, 813,
|
|
1133, 654, 884, 884, 546, 549, 549, 549, 549, 549,
|
|
655, 549, 549, 529, 562, 562, 562, 562, 562, 549,
|
|
562, 562, 836, 836, 989, 813, 488, 990, 562, 546,
|
|
662, 564, 564, 564, 564, 564, 496, 564, 564, 738,
|
|
1054, 515, 853, 648, 549, 564, 854, 649, 575, 575,
|
|
|
|
575, 575, 575, 562, 575, 575, 587, 584, 584, 584,
|
|
584, 584, 575, 584, 584, 885, 885, 692, 837, 256,
|
|
564, 584, 633, 633, 633, 633, 633, 665, 633, 633,
|
|
899, 899, 1137, 677, 677, 535, 633, 575, 660, 660,
|
|
660, 660, 660, 668, 660, 660, 584, 651, 881, 881,
|
|
907, 907, 660, 661, 661, 661, 661, 661, 860, 661,
|
|
661, 633, 663, 663, 663, 663, 663, 661, 663, 663,
|
|
697, 901, 647, 974, 974, 839, 663, 660, 698, 666,
|
|
666, 666, 666, 666, 496, 666, 666, 929, 598, 769,
|
|
769, 930, 661, 666, 882, 1138, 671, 671, 672, 672,
|
|
|
|
671, 663, 671, 671, 1141, 711, 711, 711, 711, 711,
|
|
671, 711, 711, 519, 878, 878, 1034, 1034, 666, 711,
|
|
648, 843, 843, 1143, 649, 719, 719, 719, 719, 719,
|
|
1035, 719, 719, 1065, 1065, 671, 1091, 1091, 1144, 719,
|
|
496, 1109, 1036, 1146, 711, 728, 728, 728, 728, 728,
|
|
1147, 728, 728, 1148, 733, 733, 733, 733, 733, 728,
|
|
733, 733, 1109, 1150, 719, 496, 1109, 1151, 733, 737,
|
|
737, 737, 737, 737, 1152, 737, 737, 905, 1153, 1154,
|
|
1155, 1156, 1157, 737, 728, 742, 742, 742, 742, 742,
|
|
1158, 742, 742, 733, 1159, 1160, 1163, 1165, 1166, 742,
|
|
|
|
743, 743, 743, 743, 743, 1130, 743, 743, 737, 744,
|
|
744, 744, 744, 744, 743, 744, 744, 1168, 1168, 1171,
|
|
1173, 1174, 1175, 744, 742, 1177, 745, 745, 745, 745,
|
|
745, 1179, 745, 745, 1178, 1178, 1181, 1182, 1182, 743,
|
|
745, 1183, 1185, 748, 748, 748, 748, 748, 744, 748,
|
|
748, 1186, 750, 750, 750, 750, 750, 748, 750, 750,
|
|
1187, 1189, 1191, 1141, 1192, 745, 750, 758, 758, 758,
|
|
758, 758, 1195, 758, 758, 1197, 1196, 1198, 1199, 1200,
|
|
1202, 758, 748, 759, 759, 759, 759, 759, 1204, 759,
|
|
759, 750, 1205, 1206, 1207, 1210, 1211, 759, 761, 761,
|
|
|
|
761, 761, 761, 1094, 761, 761, 758, 762, 762, 762,
|
|
762, 762, 761, 762, 762, 1212, 1213, 1220, 1221, 1223,
|
|
1225, 762, 759, 1226, 764, 764, 764, 764, 764, 1228,
|
|
764, 764, 1229, 1230, 1232, 519, 1235, 761, 764, 1236,
|
|
1237, 767, 767, 767, 767, 767, 762, 767, 767, 1238,
|
|
773, 773, 773, 773, 773, 767, 773, 773, 1239, 1241,
|
|
1243, 1244, 1240, 764, 773, 777, 777, 777, 777, 777,
|
|
1245, 777, 777, 1248, 1249, 1250, 1246, 1251, 1252, 777,
|
|
767, 780, 780, 780, 780, 780, 1252, 780, 780, 773,
|
|
1252, 1252, 1252, 1252, 1252, 780, 781, 781, 782, 782,
|
|
|
|
781, 1246, 781, 781, 777, 784, 784, 784, 784, 784,
|
|
781, 784, 784, 1253, 1254, 1255, 1256, 1257, 1257, 784,
|
|
780, 1258, 785, 785, 785, 785, 785, 901, 785, 785,
|
|
1259, 1260, 1260, 1263, 1264, 781, 785, 1266, 1267, 686,
|
|
686, 686, 686, 686, 784, 686, 686, 1269, 791, 791,
|
|
791, 791, 791, 686, 791, 791, 1270, 1271, 1272, 1273,
|
|
1274, 785, 791, 792, 792, 792, 792, 792, 1277, 792,
|
|
792, 1279, 1280, 1281, 1273, 1036, 1283, 792, 686, 802,
|
|
802, 802, 802, 802, 1285, 802, 802, 791, 1286, 1287,
|
|
1288, 1291, 1252, 802, 803, 803, 803, 803, 803, 1294,
|
|
|
|
803, 803, 792, 808, 808, 808, 808, 808, 803, 808,
|
|
808, 1295, 1299, 1300, 1301, 1302, 1304, 808, 802, 1305,
|
|
814, 814, 814, 814, 814, 1309, 814, 814, 1310, 1311,
|
|
1110, 901, 1107, 803, 814, 1106, 1105, 826, 826, 826,
|
|
826, 826, 808, 826, 826, 1104, 834, 834, 834, 834,
|
|
834, 826, 834, 834, 1101, 1100, 1099, 1098, 1097, 814,
|
|
834, 835, 835, 835, 835, 835, 1096, 835, 835, 1095,
|
|
1094, 1092, 1090, 1089, 1085, 835, 826, 841, 841, 841,
|
|
841, 841, 1084, 841, 841, 834, 1082, 1080, 602, 1075,
|
|
1074, 841, 842, 842, 843, 843, 842, 1073, 842, 842,
|
|
|
|
835, 857, 857, 857, 857, 857, 842, 857, 857, 1072,
|
|
1071, 1070, 1068, 1067, 1066, 857, 841, 1064, 865, 865,
|
|
865, 865, 865, 1063, 865, 865, 1061, 1060, 1058, 1057,
|
|
1056, 842, 865, 1055, 1054, 866, 866, 867, 867, 866,
|
|
857, 866, 866, 1053, 868, 868, 868, 868, 868, 866,
|
|
868, 868, 1050, 1049, 1048, 1047, 1045, 865, 868, 872,
|
|
872, 872, 872, 872, 1044, 872, 872, 1043, 1042, 144,
|
|
1040, 901, 1033, 872, 866, 876, 876, 876, 876, 876,
|
|
1031, 876, 876, 868, 1029, 1028, 859, 1025, 1024, 876,
|
|
879, 879, 879, 879, 879, 1023, 879, 879, 872, 883,
|
|
|
|
883, 883, 883, 883, 879, 883, 883, 1022, 1021, 1020,
|
|
1019, 1018, 1017, 883, 876, 901, 886, 886, 886, 886,
|
|
886, 1016, 886, 886, 1015, 1014, 931, 1013, 1012, 879,
|
|
886, 1011, 1010, 887, 887, 887, 887, 887, 883, 887,
|
|
887, 1009, 890, 890, 890, 890, 890, 887, 890, 890,
|
|
1007, 1005, 1004, 1000, 995, 886, 890, 891, 891, 891,
|
|
891, 891, 994, 891, 891, 992, 991, 988, 987, 985,
|
|
984, 891, 887, 894, 894, 894, 894, 894, 983, 894,
|
|
894, 890, 981, 980, 980, 979, 978, 894, 897, 897,
|
|
897, 897, 897, 976, 897, 897, 891, 902, 902, 902,
|
|
|
|
902, 902, 897, 902, 902, 975, 973, 972, 971, 970,
|
|
517, 902, 894, 969, 903, 903, 903, 903, 903, 968,
|
|
903, 903, 967, 966, 965, 350, 962, 897, 903, 961,
|
|
960, 923, 923, 923, 923, 923, 902, 923, 923, 959,
|
|
924, 924, 924, 924, 924, 923, 924, 924, 956, 523,
|
|
332, 953, 779, 903, 924, 926, 926, 926, 926, 926,
|
|
951, 926, 926, 950, 949, 772, 946, 945, 944, 926,
|
|
923, 933, 933, 933, 933, 933, 943, 933, 933, 924,
|
|
942, 941, 287, 935, 932, 933, 934, 934, 934, 934,
|
|
934, 931, 934, 934, 926, 936, 936, 936, 936, 936,
|
|
|
|
934, 936, 936, 928, 927, 925, 922, 921, 920, 936,
|
|
933, 919, 937, 937, 937, 937, 937, 918, 937, 937,
|
|
917, 916, 915, 914, 913, 934, 937, 912, 911, 938,
|
|
938, 938, 938, 938, 936, 938, 938, 910, 939, 939,
|
|
939, 939, 939, 938, 939, 939, 909, 908, 906, 904,
|
|
900, 937, 939, 940, 940, 940, 940, 940, 488, 940,
|
|
940, 898, 896, 895, 893, 892, 889, 940, 938, 947,
|
|
947, 947, 947, 947, 888, 947, 947, 939, 880, 874,
|
|
875, 874, 873, 947, 948, 948, 948, 948, 948, 871,
|
|
948, 948, 940, 952, 952, 952, 952, 952, 948, 952,
|
|
|
|
952, 870, 869, 864, 488, 863, 862, 952, 947, 861,
|
|
954, 954, 954, 954, 954, 859, 954, 954, 858, 452,
|
|
856, 855, 852, 948, 954, 851, 850, 955, 955, 955,
|
|
955, 955, 952, 955, 955, 849, 957, 957, 958, 958,
|
|
957, 955, 957, 957, 848, 847, 846, 845, 844, 954,
|
|
957, 579, 579, 579, 579, 579, 840, 579, 579, 839,
|
|
838, 833, 832, 831, 830, 579, 955, 963, 963, 963,
|
|
963, 963, 829, 963, 963, 957, 828, 827, 825, 824,
|
|
823, 963, 964, 964, 964, 964, 964, 822, 964, 964,
|
|
579, 977, 977, 977, 977, 977, 964, 977, 977, 821,
|
|
|
|
820, 819, 818, 817, 816, 977, 963, 815, 982, 982,
|
|
982, 982, 982, 812, 982, 982, 811, 810, 809, 807,
|
|
806, 964, 982, 804, 732, 986, 986, 986, 986, 986,
|
|
977, 986, 986, 801, 993, 993, 993, 993, 993, 986,
|
|
993, 993, 800, 799, 798, 797, 796, 982, 993, 996,
|
|
996, 996, 996, 996, 795, 996, 996, 794, 793, 790,
|
|
789, 788, 787, 996, 986, 997, 997, 997, 997, 997,
|
|
786, 997, 997, 993, 783, 779, 778, 776, 775, 997,
|
|
998, 998, 998, 998, 998, 774, 998, 998, 996, 999,
|
|
999, 999, 999, 999, 998, 999, 999, 772, 771, 550,
|
|
|
|
770, 768, 766, 999, 997, 765, 1001, 1001, 1001, 1001,
|
|
1001, 763, 1001, 1001, 760, 757, 756, 754, 753, 998,
|
|
1001, 752, 751, 1002, 1002, 1002, 1002, 1002, 999, 1002,
|
|
1002, 749, 1003, 1003, 1003, 1003, 1003, 1002, 1003, 1003,
|
|
747, 746, 741, 739, 736, 1001, 1003, 1006, 1006, 1006,
|
|
1006, 1006, 735, 1006, 1006, 734, 732, 731, 730, 729,
|
|
727, 1006, 1002, 1008, 1008, 1008, 1008, 1008, 726, 1008,
|
|
1008, 1003, 725, 724, 723, 722, 721, 1008, 1026, 1026,
|
|
1026, 1026, 1026, 720, 1026, 1026, 1006, 1027, 1027, 1027,
|
|
1027, 1027, 1026, 1027, 1027, 718, 717, 715, 714, 713,
|
|
|
|
710, 1027, 1008, 709, 1030, 1030, 1030, 1030, 1030, 708,
|
|
1030, 1030, 707, 706, 705, 704, 703, 1026, 1030, 702,
|
|
701, 1032, 1032, 1032, 1032, 1032, 1027, 1032, 1032, 700,
|
|
1037, 1037, 1037, 1037, 1037, 1032, 1037, 1037, 699, 695,
|
|
694, 693, 588, 1030, 1037, 1038, 1038, 1038, 1038, 1038,
|
|
691, 1038, 1038, 690, 689, 688, 687, 573, 685, 1038,
|
|
1032, 1039, 1039, 1039, 1039, 1039, 683, 1039, 1039, 1037,
|
|
682, 681, 651, 680, 679, 1039, 1041, 1041, 1041, 1041,
|
|
1041, 678, 1041, 1041, 1038, 1046, 1046, 1046, 1046, 1046,
|
|
1041, 1046, 1046, 675, 673, 670, 669, 667, 531, 1046,
|
|
|
|
1039, 664, 1051, 1051, 1051, 1051, 1051, 659, 1051, 1051,
|
|
658, 657, 656, 652, 651, 1041, 1051, 650, 641, 1052,
|
|
1052, 1052, 1052, 1052, 1046, 1052, 1052, 640, 1059, 1059,
|
|
1059, 1059, 1059, 1052, 1059, 1059, 639, 638, 637, 636,
|
|
635, 1051, 1059, 1062, 1062, 1062, 1062, 1062, 634, 1062,
|
|
1062, 632, 631, 630, 629, 627, 626, 1062, 1052, 1069,
|
|
1069, 1069, 1069, 1069, 625, 1069, 1069, 1059, 622, 621,
|
|
620, 619, 618, 1069, 1076, 1076, 1076, 1076, 1076, 617,
|
|
1076, 1076, 1062, 1077, 1077, 1077, 1077, 1077, 1076, 1077,
|
|
1077, 616, 518, 615, 614, 610, 609, 1077, 1069, 608,
|
|
|
|
1078, 1078, 1078, 1078, 1078, 604, 1078, 1078, 603, 600,
|
|
599, 598, 597, 1076, 1078, 596, 595, 1079, 1079, 1079,
|
|
1079, 1079, 1077, 1079, 1079, 594, 1081, 1081, 1081, 1081,
|
|
1081, 1079, 1081, 1081, 593, 144, 592, 591, 590, 1078,
|
|
1081, 1086, 1086, 1086, 1086, 1086, 589, 1086, 1086, 588,
|
|
587, 586, 585, 583, 582, 1086, 1079, 1087, 1087, 1087,
|
|
1087, 1087, 581, 1087, 1087, 1081, 580, 578, 574, 573,
|
|
571, 1087, 611, 611, 611, 611, 611, 570, 611, 611,
|
|
1086, 1088, 1088, 1088, 1088, 1088, 611, 1088, 1088, 569,
|
|
568, 567, 566, 565, 563, 1088, 1087, 559, 1093, 1093,
|
|
|
|
1093, 1093, 1093, 558, 1093, 1093, 557, 556, 555, 552,
|
|
551, 611, 1093, 550, 548, 1102, 1102, 1102, 1102, 1102,
|
|
1088, 1102, 1102, 547, 1103, 1103, 1103, 1103, 1103, 1102,
|
|
1103, 1103, 496, 545, 544, 543, 542, 1093, 1103, 1108,
|
|
1108, 1108, 1108, 1108, 541, 1108, 1108, 540, 539, 538,
|
|
536, 535, 534, 1108, 1102, 1111, 1111, 1111, 1111, 1111,
|
|
533, 1111, 1111, 1103, 532, 528, 527, 526, 524, 1111,
|
|
1126, 1126, 1126, 1126, 1126, 523, 1126, 1126, 1108, 1127,
|
|
1127, 1127, 1127, 1127, 1126, 1127, 1127, 522, 521, 519,
|
|
518, 517, 516, 1127, 1111, 513, 1132, 1132, 1132, 1132,
|
|
|
|
1132, 512, 1132, 1132, 511, 510, 509, 508, 507, 1126,
|
|
1132, 505, 504, 1134, 1134, 1134, 1134, 1134, 1127, 1134,
|
|
1134, 502, 1135, 1135, 1135, 1135, 1135, 1134, 1135, 1135,
|
|
498, 497, 493, 492, 490, 1132, 1135, 1136, 1136, 1136,
|
|
1136, 1136, 489, 1136, 1136, 488, 487, 486, 485, 481,
|
|
480, 1136, 1134, 1139, 1139, 1139, 1139, 1139, 479, 1139,
|
|
1139, 1135, 478, 477, 471, 470, 468, 1139, 1140, 1140,
|
|
1140, 1140, 1140, 466, 1140, 1140, 1136, 1142, 1142, 1142,
|
|
1142, 1142, 1140, 1142, 1142, 453, 443, 442, 438, 435,
|
|
432, 1142, 1139, 428, 1145, 1145, 1145, 1145, 1145, 259,
|
|
|
|
1145, 1145, 411, 410, 409, 408, 397, 1140, 1145, 396,
|
|
390, 1149, 1149, 1149, 1149, 1149, 1142, 1149, 1149, 384,
|
|
1161, 1161, 1161, 1161, 1161, 1149, 1161, 1161, 380, 379,
|
|
376, 375, 365, 1145, 1161, 1162, 1162, 1162, 1162, 1162,
|
|
364, 1162, 1162, 361, 360, 356, 355, 353, 342, 1162,
|
|
1149, 1164, 1164, 1164, 1164, 1164, 340, 1164, 1164, 1161,
|
|
339, 338, 336, 335, 329, 1164, 1167, 1167, 1167, 1167,
|
|
1167, 328, 1167, 1167, 1162, 1169, 1169, 1169, 1169, 1169,
|
|
1167, 1169, 1169, 326, 256, 306, 305, 304, 299, 1169,
|
|
1164, 298, 1172, 1172, 1172, 1172, 1172, 286, 1172, 1172,
|
|
|
|
279, 278, 267, 266, 264, 1167, 1172, 261, 258, 1176,
|
|
1176, 1176, 1176, 1176, 1169, 1176, 1176, 78, 1180, 1180,
|
|
1180, 1180, 1180, 1176, 1180, 1180, 256, 238, 1313, 1313,
|
|
1313, 1172, 1180, 1184, 1184, 1184, 1184, 1184, 1313, 1184,
|
|
1184, 1313, 1313, 1313, 1313, 1313, 1313, 1184, 1176, 1188,
|
|
1188, 1188, 1188, 1188, 1313, 1188, 1188, 1180, 1313, 1313,
|
|
1313, 1313, 1313, 1188, 1190, 1190, 1190, 1190, 1190, 1313,
|
|
1190, 1190, 1184, 1193, 1193, 1193, 1193, 1193, 1190, 1193,
|
|
1193, 1313, 1313, 1313, 1313, 1313, 1313, 1193, 1188, 1313,
|
|
1194, 1194, 1194, 1194, 1194, 1313, 1194, 1194, 1313, 1313,
|
|
|
|
1313, 1313, 1313, 1190, 1194, 1313, 1313, 957, 957, 957,
|
|
957, 957, 1193, 957, 957, 1313, 1201, 1201, 1201, 1201,
|
|
1201, 957, 1201, 1201, 1313, 1313, 1313, 1313, 1313, 1194,
|
|
1201, 1203, 1203, 1203, 1203, 1203, 1313, 1203, 1203, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1203, 957, 1208, 1208, 1209,
|
|
1209, 1208, 1313, 1208, 1208, 1201, 1214, 1313, 1313, 1215,
|
|
1313, 1208, 1313, 1216, 1313, 1222, 1222, 1222, 1222, 1222,
|
|
1203, 1222, 1222, 1217, 1218, 1313, 1313, 1313, 1313, 1222,
|
|
1313, 1313, 1313, 1219, 1313, 1313, 1208, 1224, 1224, 1224,
|
|
1224, 1224, 1313, 1224, 1224, 1313, 1227, 1227, 1227, 1227,
|
|
|
|
1227, 1224, 1227, 1227, 1222, 1231, 1231, 1231, 1231, 1231,
|
|
1227, 1231, 1231, 1313, 1233, 1233, 1233, 1233, 1233, 1231,
|
|
1233, 1233, 1313, 1313, 1313, 1313, 1224, 1313, 1233, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1227, 1234, 1234, 1234, 1234,
|
|
1234, 1313, 1234, 1234, 1231, 1242, 1242, 1242, 1242, 1242,
|
|
1234, 1242, 1242, 1233, 1247, 1247, 1247, 1247, 1247, 1242,
|
|
1247, 1247, 1313, 1261, 1261, 1261, 1261, 1261, 1247, 1261,
|
|
1261, 1313, 1313, 1313, 1313, 1234, 1313, 1261, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1242, 1262, 1262, 1262, 1262, 1262,
|
|
1313, 1262, 1262, 1247, 1265, 1265, 1265, 1265, 1265, 1262,
|
|
|
|
1265, 1265, 1261, 1268, 1268, 1268, 1268, 1268, 1265, 1268,
|
|
1268, 1313, 1275, 1275, 1275, 1275, 1275, 1268, 1275, 1275,
|
|
1313, 1313, 1313, 1313, 1262, 1313, 1275, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1265, 1276, 1276, 1276, 1276, 1276, 1313,
|
|
1276, 1276, 1268, 1278, 1278, 1278, 1278, 1278, 1276, 1278,
|
|
1278, 1275, 1284, 1284, 1284, 1284, 1284, 1278, 1284, 1284,
|
|
1313, 1289, 1289, 1289, 1289, 1289, 1284, 1289, 1289, 1313,
|
|
1313, 1313, 1313, 1276, 1313, 1289, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1278, 1290, 1290, 1290, 1290, 1290, 1313, 1290,
|
|
1290, 1284, 1292, 1292, 1292, 1292, 1292, 1290, 1292, 1292,
|
|
|
|
1289, 1293, 1293, 1293, 1293, 1293, 1292, 1293, 1293, 1313,
|
|
1296, 1296, 1296, 1296, 1296, 1293, 1296, 1296, 1313, 1313,
|
|
1313, 1313, 1290, 1313, 1296, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1292, 1297, 1297, 1297, 1297, 1297, 1313, 1297, 1297,
|
|
1293, 1298, 1298, 1298, 1298, 1298, 1297, 1298, 1298, 1296,
|
|
1303, 1303, 1303, 1303, 1303, 1298, 1303, 1303, 1313, 1306,
|
|
1306, 1306, 1306, 1306, 1303, 1306, 1306, 1313, 1313, 1313,
|
|
1313, 1297, 1313, 1306, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1298, 1307, 1307, 1307, 1307, 1307, 1313, 1307, 1307, 1303,
|
|
1308, 1308, 1308, 1308, 1308, 1307, 1308, 1308, 1306, 1312,
|
|
|
|
1312, 1312, 1312, 1312, 1308, 1312, 1312, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1312, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1307, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1308,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1312, 295,
|
|
1313, 295, 295, 295, 295, 295, 295, 295, 295, 295,
|
|
295, 295, 295, 319, 319, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 319, 464, 464, 1313, 1313, 1313, 1313, 1313,
|
|
464, 1313, 1313, 1313, 464, 395, 395, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 395, 494, 494, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 494, 525, 525, 1313, 1313,
|
|
|
|
1313, 525, 529, 529, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 529, 1313, 1313, 1313, 529, 579, 579, 579, 611,
|
|
611, 1313, 1313, 611, 1313, 1313, 1313, 1313, 611, 646,
|
|
646, 646, 1313, 1313, 1313, 1313, 1313, 1313, 646, 1313,
|
|
646, 674, 674, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 674, 676, 676, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 676, 686, 686, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 686, 712, 712, 712,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 712, 1313, 712, 716,
|
|
716, 1313, 1313, 1313, 1313, 1313, 1313, 716, 755, 755,
|
|
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
755, 805, 805, 1313, 1313, 1313, 1313, 805, 877, 877,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 877, 835, 835,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
835, 842, 842, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 842, 937, 937, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 937, 1129, 1129, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1129, 1170, 1170, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1170, 1282, 1282,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1282, 7, 1313, 1313,
|
|
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313
|
|
} ;
|
|
|
|
static yyconst short int yy_chk[3765] =
|
|
{ 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, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 5, 5, 5, 5,
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
5, 5, 8, 9, 1018, 8, 9, 11, 62, 1019,
|
|
11, 8, 9, 8, 9, 62, 11, 12, 11, 82,
|
|
12, 12, 12, 63, 12, 13, 12, 12, 12, 13,
|
|
63, 12, 14, 13, 66, 82, 13, 140, 140, 13,
|
|
14, 66, 13, 14, 13, 13, 14, 43, 43, 14,
|
|
15, 14, 14, 89, 15, 89, 80, 16, 15, 1020,
|
|
16, 15, 17, 51, 15, 80, 16, 15, 16, 15,
|
|
|
|
17, 69, 16, 17, 86, 51, 17, 102, 69, 17,
|
|
18, 17, 17, 51, 18, 86, 102, 18, 19, 129,
|
|
18, 129, 19, 18, 68, 18, 19, 70, 43, 19,
|
|
96, 68, 19, 43, 70, 19, 96, 19, 20, 20,
|
|
20, 20, 20, 21, 20, 20, 22, 21, 136, 71,
|
|
22, 21, 20, 22, 21, 22, 71, 21, 136, 22,
|
|
21, 22, 21, 21, 23, 25, 61, 61, 23, 25,
|
|
68, 61, 23, 25, 1021, 23, 25, 20, 61, 108,
|
|
72, 23, 25, 23, 25, 108, 20, 72, 23, 20,
|
|
24, 20, 26, 73, 24, 20, 75, 20, 24, 71,
|
|
|
|
73, 24, 34, 75, 24, 34, 159, 24, 34, 24,
|
|
24, 34, 159, 34, 24, 26, 84, 26, 26, 27,
|
|
84, 61, 26, 27, 26, 76, 26, 27, 26, 84,
|
|
27, 28, 76, 27, 77, 28, 27, 974, 27, 28,
|
|
112, 77, 28, 55, 112, 28, 55, 91, 28, 55,
|
|
28, 29, 55, 29, 55, 91, 29, 29, 74, 74,
|
|
29, 29, 974, 29, 30, 98, 29, 103, 29, 29,
|
|
74, 30, 30, 98, 92, 30, 103, 31, 30, 1022,
|
|
31, 30, 31, 30, 1023, 32, 31, 92, 31, 32,
|
|
114, 101, 32, 92, 114, 33, 64, 64, 32, 33,
|
|
|
|
32, 64, 33, 33, 1024, 107, 33, 107, 64, 33,
|
|
101, 107, 33, 104, 33, 35, 35, 35, 35, 35,
|
|
36, 35, 35, 90, 36, 104, 1025, 37, 36, 35,
|
|
90, 36, 100, 116, 36, 37, 90, 36, 37, 36,
|
|
36, 37, 100, 122, 37, 38, 37, 37, 93, 38,
|
|
100, 122, 93, 38, 35, 1028, 38, 116, 93, 38,
|
|
133, 120, 38, 35, 38, 137, 35, 35, 35, 133,
|
|
35, 39, 35, 35, 35, 156, 137, 35, 40, 39,
|
|
120, 97, 39, 97, 97, 172, 40, 156, 39, 40,
|
|
39, 160, 40, 172, 39, 40, 41, 40, 40, 172,
|
|
|
|
41, 113, 113, 160, 41, 148, 148, 41, 125, 125,
|
|
41, 118, 118, 41, 42, 41, 41, 125, 42, 118,
|
|
166, 118, 42, 44, 166, 42, 126, 44, 42, 126,
|
|
44, 42, 151, 42, 42, 151, 44, 45, 44, 44,
|
|
126, 45, 165, 165, 45, 219, 45, 46, 219, 147,
|
|
45, 46, 45, 113, 46, 47, 113, 143, 147, 47,
|
|
46, 143, 46, 47, 192, 170, 47, 46, 143, 47,
|
|
170, 170, 47, 206, 47, 47, 192, 48, 1029, 47,
|
|
48, 206, 48, 48, 49, 65, 65, 48, 49, 48,
|
|
65, 48, 49, 48, 1031, 49, 50, 65, 49, 181,
|
|
|
|
50, 49, 245, 49, 50, 245, 135, 50, 163, 52,
|
|
135, 135, 163, 50, 181, 50, 52, 52, 225, 225,
|
|
52, 163, 53, 52, 183, 53, 52, 53, 52, 53,
|
|
54, 53, 189, 53, 54, 179, 179, 54, 54, 183,
|
|
65, 54, 189, 115, 54, 138, 65, 54, 115, 54,
|
|
138, 138, 171, 115, 115, 1033, 115, 138, 144, 144,
|
|
144, 144, 144, 153, 144, 144, 152, 153, 152, 162,
|
|
152, 153, 144, 179, 194, 221, 162, 153, 194, 167,
|
|
167, 167, 167, 167, 162, 167, 167, 178, 182, 198,
|
|
198, 178, 182, 167, 221, 171, 178, 144, 171, 187,
|
|
|
|
184, 182, 184, 185, 171, 187, 296, 190, 190, 185,
|
|
191, 184, 185, 185, 296, 185, 186, 190, 167, 191,
|
|
186, 186, 188, 195, 188, 188, 196, 203, 191, 195,
|
|
201, 201, 196, 203, 227, 227, 408, 209, 201, 408,
|
|
200, 198, 1034, 210, 198, 200, 198, 209, 198, 210,
|
|
200, 200, 210, 200, 204, 204, 204, 204, 204, 212,
|
|
204, 204, 208, 211, 217, 212, 232, 213, 204, 212,
|
|
211, 208, 217, 208, 410, 211, 213, 213, 344, 222,
|
|
410, 217, 213, 213, 215, 215, 215, 215, 215, 222,
|
|
215, 215, 344, 204, 268, 268, 262, 262, 215, 216,
|
|
|
|
216, 216, 216, 216, 220, 216, 216, 218, 220, 232,
|
|
223, 218, 1035, 216, 220, 231, 218, 223, 232, 1036,
|
|
231, 231, 223, 215, 234, 223, 230, 230, 230, 230,
|
|
230, 233, 230, 230, 234, 340, 340, 329, 216, 233,
|
|
230, 233, 244, 244, 244, 244, 244, 262, 244, 244,
|
|
329, 282, 370, 370, 373, 373, 244, 259, 259, 259,
|
|
259, 259, 282, 259, 259, 230, 267, 267, 267, 267,
|
|
267, 259, 267, 267, 297, 393, 393, 460, 460, 304,
|
|
267, 244, 297, 270, 270, 270, 270, 270, 304, 270,
|
|
270, 323, 445, 1044, 370, 445, 259, 270, 1045, 323,
|
|
|
|
273, 273, 273, 273, 273, 267, 273, 273, 374, 287,
|
|
287, 287, 287, 287, 273, 287, 287, 514, 514, 378,
|
|
374, 389, 270, 287, 295, 295, 295, 295, 295, 389,
|
|
295, 295, 378, 409, 1047, 415, 415, 409, 295, 273,
|
|
315, 315, 315, 315, 315, 411, 315, 315, 287, 601,
|
|
1049, 416, 683, 683, 315, 318, 318, 318, 318, 318,
|
|
416, 318, 318, 295, 330, 330, 330, 330, 330, 318,
|
|
330, 330, 627, 627, 836, 601, 512, 836, 330, 315,
|
|
423, 332, 332, 332, 332, 332, 415, 332, 332, 512,
|
|
1055, 423, 645, 411, 318, 332, 645, 411, 343, 343,
|
|
|
|
343, 343, 343, 330, 343, 343, 453, 350, 350, 350,
|
|
350, 350, 343, 350, 350, 684, 684, 453, 627, 426,
|
|
332, 350, 399, 399, 399, 399, 399, 426, 399, 399,
|
|
701, 701, 1056, 436, 436, 430, 399, 343, 421, 421,
|
|
421, 421, 421, 430, 421, 421, 350, 653, 681, 681,
|
|
710, 710, 421, 422, 422, 422, 422, 422, 653, 422,
|
|
422, 399, 424, 424, 424, 424, 424, 422, 424, 424,
|
|
461, 704, 477, 817, 817, 704, 424, 421, 461, 428,
|
|
428, 428, 428, 428, 436, 428, 428, 739, 461, 547,
|
|
547, 739, 422, 428, 681, 1057, 433, 433, 433, 433,
|
|
|
|
433, 424, 433, 433, 1061, 476, 476, 476, 476, 476,
|
|
433, 476, 476, 1063, 678, 678, 905, 905, 428, 476,
|
|
477, 708, 708, 1065, 477, 488, 488, 488, 488, 488,
|
|
907, 488, 488, 949, 949, 433, 985, 985, 1066, 488,
|
|
547, 1014, 907, 1068, 476, 500, 500, 500, 500, 500,
|
|
1070, 500, 500, 1071, 507, 507, 507, 507, 507, 500,
|
|
507, 507, 1014, 1073, 488, 678, 1014, 1074, 507, 511,
|
|
511, 511, 511, 511, 1075, 511, 511, 708, 1080, 1082,
|
|
1083, 1084, 1085, 511, 500, 516, 516, 516, 516, 516,
|
|
1089, 516, 516, 507, 1090, 1091, 1095, 1097, 1098, 516,
|
|
|
|
517, 517, 517, 517, 517, 1104, 517, 517, 511, 518,
|
|
518, 518, 518, 518, 517, 518, 518, 1100, 1100, 1105,
|
|
1109, 1110, 1112, 518, 516, 1114, 519, 519, 519, 519,
|
|
519, 1116, 519, 519, 1115, 1115, 1118, 1119, 1119, 517,
|
|
519, 1120, 1122, 523, 523, 523, 523, 523, 518, 523,
|
|
523, 1123, 526, 526, 526, 526, 526, 523, 526, 526,
|
|
1124, 1128, 1131, 1133, 1137, 519, 526, 535, 535, 535,
|
|
535, 535, 1143, 535, 535, 1144, 1143, 1146, 1148, 1150,
|
|
1152, 535, 523, 536, 536, 536, 536, 536, 1154, 536,
|
|
536, 526, 1155, 1156, 1157, 1159, 1160, 536, 538, 538,
|
|
|
|
538, 538, 538, 1163, 538, 538, 535, 539, 539, 539,
|
|
539, 539, 538, 539, 539, 1165, 1166, 1171, 1173, 1175,
|
|
1178, 539, 536, 1179, 541, 541, 541, 541, 541, 1182,
|
|
541, 541, 1183, 1185, 1187, 1191, 1195, 538, 541, 1196,
|
|
1197, 544, 544, 544, 544, 544, 539, 544, 544, 1198,
|
|
555, 555, 555, 555, 555, 544, 555, 555, 1199, 1202,
|
|
1205, 1206, 1199, 541, 555, 559, 559, 559, 559, 559,
|
|
1207, 559, 559, 1211, 1212, 1213, 1209, 1214, 1216, 559,
|
|
544, 563, 563, 563, 563, 563, 1217, 563, 563, 555,
|
|
1215, 1215, 1218, 1219, 1214, 563, 565, 565, 565, 565,
|
|
|
|
565, 1209, 565, 565, 559, 567, 567, 567, 567, 567,
|
|
565, 567, 567, 1220, 1221, 1223, 1225, 1226, 1226, 567,
|
|
563, 1228, 568, 568, 568, 568, 568, 1229, 568, 568,
|
|
1230, 1232, 1232, 1237, 1238, 565, 568, 1240, 1240, 573,
|
|
573, 573, 573, 573, 567, 573, 573, 1243, 576, 576,
|
|
576, 576, 576, 573, 576, 576, 1246, 1248, 1249, 1250,
|
|
1251, 568, 576, 577, 577, 577, 577, 577, 1254, 577,
|
|
577, 1256, 1257, 1258, 1259, 1260, 1263, 577, 573, 589,
|
|
589, 589, 589, 589, 1266, 589, 589, 576, 1267, 1269,
|
|
1270, 1273, 1274, 589, 591, 591, 591, 591, 591, 1280,
|
|
|
|
591, 591, 577, 596, 596, 596, 596, 596, 591, 596,
|
|
596, 1281, 1287, 1288, 1291, 1294, 1299, 596, 589, 1300,
|
|
602, 602, 602, 602, 602, 1305, 602, 602, 1309, 1310,
|
|
1016, 1015, 1012, 591, 602, 1011, 1010, 616, 616, 616,
|
|
616, 616, 596, 616, 616, 1009, 625, 625, 625, 625,
|
|
625, 616, 625, 625, 1004, 1000, 995, 994, 992, 602,
|
|
625, 626, 626, 626, 626, 626, 991, 626, 626, 990,
|
|
989, 987, 984, 983, 976, 626, 616, 631, 631, 631,
|
|
631, 631, 975, 631, 631, 625, 973, 971, 970, 965,
|
|
962, 631, 632, 632, 632, 632, 632, 961, 632, 632,
|
|
|
|
626, 649, 649, 649, 649, 649, 632, 649, 649, 960,
|
|
959, 958, 953, 951, 950, 649, 631, 946, 659, 659,
|
|
659, 659, 659, 945, 659, 659, 943, 942, 935, 932,
|
|
931, 632, 659, 930, 929, 662, 662, 662, 662, 662,
|
|
649, 662, 662, 928, 664, 664, 664, 664, 664, 662,
|
|
664, 664, 922, 921, 920, 919, 917, 659, 664, 669,
|
|
669, 669, 669, 669, 916, 669, 669, 915, 914, 913,
|
|
911, 906, 904, 669, 662, 675, 675, 675, 675, 675,
|
|
899, 675, 675, 664, 896, 895, 892, 888, 885, 675,
|
|
679, 679, 679, 679, 679, 884, 679, 679, 669, 682,
|
|
|
|
682, 682, 682, 682, 679, 682, 682, 882, 881, 880,
|
|
878, 875, 874, 682, 675, 873, 685, 685, 685, 685,
|
|
685, 871, 685, 685, 870, 869, 867, 864, 863, 679,
|
|
685, 862, 861, 687, 687, 687, 687, 687, 682, 687,
|
|
687, 860, 691, 691, 691, 691, 691, 687, 691, 691,
|
|
858, 855, 854, 850, 843, 685, 691, 692, 692, 692,
|
|
692, 692, 840, 692, 692, 838, 837, 833, 832, 830,
|
|
829, 692, 687, 695, 695, 695, 695, 695, 828, 695,
|
|
695, 691, 825, 824, 823, 822, 821, 695, 699, 699,
|
|
699, 699, 699, 819, 699, 699, 692, 705, 705, 705,
|
|
|
|
705, 705, 699, 705, 705, 818, 816, 815, 813, 812,
|
|
811, 705, 695, 810, 706, 706, 706, 706, 706, 809,
|
|
706, 706, 806, 804, 801, 799, 797, 699, 706, 796,
|
|
795, 731, 731, 731, 731, 731, 705, 731, 731, 793,
|
|
732, 732, 732, 732, 732, 731, 732, 732, 789, 786,
|
|
783, 782, 778, 706, 732, 735, 735, 735, 735, 735,
|
|
776, 735, 735, 775, 774, 771, 769, 768, 766, 735,
|
|
731, 746, 746, 746, 746, 746, 765, 746, 746, 732,
|
|
763, 760, 754, 749, 741, 746, 747, 747, 747, 747,
|
|
747, 740, 747, 747, 735, 751, 751, 751, 751, 751,
|
|
|
|
747, 751, 751, 738, 736, 734, 730, 729, 727, 751,
|
|
746, 726, 752, 752, 752, 752, 752, 725, 752, 752,
|
|
724, 723, 722, 721, 720, 747, 752, 718, 717, 753,
|
|
753, 753, 753, 753, 751, 753, 753, 715, 756, 756,
|
|
756, 756, 756, 753, 756, 756, 714, 713, 709, 707,
|
|
703, 752, 756, 757, 757, 757, 757, 757, 702, 757,
|
|
757, 700, 698, 696, 694, 693, 690, 757, 753, 770,
|
|
770, 770, 770, 770, 688, 770, 770, 756, 680, 677,
|
|
673, 672, 670, 770, 772, 772, 772, 772, 772, 668,
|
|
772, 772, 757, 779, 779, 779, 779, 779, 772, 779,
|
|
|
|
779, 667, 665, 658, 657, 656, 655, 779, 770, 654,
|
|
787, 787, 787, 787, 787, 652, 787, 787, 651, 650,
|
|
648, 647, 644, 772, 787, 643, 642, 788, 788, 788,
|
|
788, 788, 779, 788, 788, 641, 790, 790, 790, 790,
|
|
790, 788, 790, 790, 640, 637, 636, 635, 634, 787,
|
|
790, 794, 794, 794, 794, 794, 630, 794, 794, 629,
|
|
628, 624, 623, 622, 621, 794, 788, 798, 798, 798,
|
|
798, 798, 620, 798, 798, 790, 619, 618, 614, 613,
|
|
612, 798, 800, 800, 800, 800, 800, 610, 800, 800,
|
|
794, 820, 820, 820, 820, 820, 800, 820, 820, 609,
|
|
|
|
608, 607, 606, 605, 604, 820, 798, 603, 827, 827,
|
|
827, 827, 827, 600, 827, 827, 599, 598, 597, 594,
|
|
593, 800, 827, 592, 590, 831, 831, 831, 831, 831,
|
|
820, 831, 831, 588, 839, 839, 839, 839, 839, 831,
|
|
839, 839, 587, 586, 585, 583, 582, 827, 839, 844,
|
|
844, 844, 844, 844, 581, 844, 844, 580, 578, 574,
|
|
572, 571, 570, 844, 831, 845, 845, 845, 845, 845,
|
|
569, 845, 845, 839, 566, 561, 560, 558, 557, 845,
|
|
846, 846, 846, 846, 846, 556, 846, 846, 844, 848,
|
|
848, 848, 848, 848, 846, 848, 848, 554, 553, 552,
|
|
|
|
551, 545, 543, 848, 845, 542, 851, 851, 851, 851,
|
|
851, 540, 851, 851, 537, 534, 533, 532, 531, 846,
|
|
851, 530, 528, 852, 852, 852, 852, 852, 848, 852,
|
|
852, 524, 853, 853, 853, 853, 853, 852, 853, 853,
|
|
522, 521, 515, 513, 510, 851, 853, 856, 856, 856,
|
|
856, 856, 509, 856, 856, 508, 505, 504, 502, 501,
|
|
498, 856, 852, 859, 859, 859, 859, 859, 497, 859,
|
|
859, 853, 496, 495, 493, 492, 490, 859, 889, 889,
|
|
889, 889, 889, 489, 889, 889, 856, 893, 893, 893,
|
|
893, 893, 889, 893, 893, 487, 485, 481, 480, 478,
|
|
|
|
475, 893, 859, 474, 898, 898, 898, 898, 898, 473,
|
|
898, 898, 471, 470, 469, 468, 467, 889, 898, 466,
|
|
465, 900, 900, 900, 900, 900, 893, 900, 900, 463,
|
|
908, 908, 908, 908, 908, 900, 908, 908, 462, 459,
|
|
458, 457, 455, 898, 908, 909, 909, 909, 909, 909,
|
|
452, 909, 909, 451, 450, 449, 448, 447, 446, 909,
|
|
900, 910, 910, 910, 910, 910, 444, 910, 910, 908,
|
|
443, 442, 441, 439, 438, 910, 912, 912, 912, 912,
|
|
912, 437, 912, 912, 909, 918, 918, 918, 918, 918,
|
|
912, 918, 918, 435, 434, 432, 431, 429, 427, 918,
|
|
|
|
910, 425, 925, 925, 925, 925, 925, 420, 925, 925,
|
|
419, 418, 417, 414, 413, 912, 925, 412, 407, 927,
|
|
927, 927, 927, 927, 918, 927, 927, 406, 941, 941,
|
|
941, 941, 941, 927, 941, 941, 405, 404, 403, 402,
|
|
401, 925, 941, 944, 944, 944, 944, 944, 400, 944,
|
|
944, 398, 397, 396, 394, 392, 391, 944, 927, 956,
|
|
956, 956, 956, 956, 390, 956, 956, 941, 388, 387,
|
|
386, 385, 384, 956, 966, 966, 966, 966, 966, 383,
|
|
966, 966, 944, 967, 967, 967, 967, 967, 966, 967,
|
|
967, 382, 381, 380, 379, 377, 376, 967, 956, 375,
|
|
|
|
968, 968, 968, 968, 968, 372, 968, 968, 371, 369,
|
|
368, 367, 366, 966, 968, 365, 364, 969, 969, 969,
|
|
969, 969, 967, 969, 969, 363, 972, 972, 972, 972,
|
|
972, 969, 972, 972, 361, 360, 358, 357, 356, 968,
|
|
972, 978, 978, 978, 978, 978, 355, 978, 978, 354,
|
|
353, 352, 351, 349, 348, 978, 969, 979, 979, 979,
|
|
979, 979, 347, 979, 979, 972, 346, 345, 342, 341,
|
|
339, 979, 980, 980, 980, 980, 980, 338, 980, 980,
|
|
978, 981, 981, 981, 981, 981, 980, 981, 981, 337,
|
|
336, 335, 334, 333, 331, 981, 979, 328, 988, 988,
|
|
|
|
988, 988, 988, 327, 988, 988, 326, 325, 324, 322,
|
|
321, 980, 988, 320, 317, 1005, 1005, 1005, 1005, 1005,
|
|
981, 1005, 1005, 316, 1007, 1007, 1007, 1007, 1007, 1005,
|
|
1007, 1007, 314, 313, 312, 311, 310, 988, 1007, 1013,
|
|
1013, 1013, 1013, 1013, 309, 1013, 1013, 308, 307, 305,
|
|
303, 302, 301, 1013, 1005, 1017, 1017, 1017, 1017, 1017,
|
|
300, 1017, 1017, 1007, 299, 294, 293, 292, 291, 1017,
|
|
1040, 1040, 1040, 1040, 1040, 290, 1040, 1040, 1013, 1043,
|
|
1043, 1043, 1043, 1043, 1040, 1043, 1043, 289, 288, 286,
|
|
285, 284, 283, 1043, 1017, 281, 1048, 1048, 1048, 1048,
|
|
|
|
1048, 280, 1048, 1048, 279, 277, 276, 275, 274, 1040,
|
|
1048, 272, 271, 1050, 1050, 1050, 1050, 1050, 1043, 1050,
|
|
1050, 269, 1053, 1053, 1053, 1053, 1053, 1050, 1053, 1053,
|
|
266, 265, 261, 260, 258, 1048, 1053, 1054, 1054, 1054,
|
|
1054, 1054, 257, 1054, 1054, 256, 252, 250, 247, 242,
|
|
241, 1054, 1050, 1058, 1058, 1058, 1058, 1058, 239, 1058,
|
|
1058, 1053, 236, 235, 229, 228, 226, 1058, 1060, 1060,
|
|
1060, 1060, 1060, 224, 1060, 1060, 1054, 1064, 1064, 1064,
|
|
1064, 1064, 1060, 1064, 1064, 214, 207, 205, 202, 199,
|
|
197, 1064, 1058, 193, 1067, 1067, 1067, 1067, 1067, 180,
|
|
|
|
1067, 1067, 176, 175, 174, 173, 169, 1060, 1067, 168,
|
|
164, 1072, 1072, 1072, 1072, 1072, 1064, 1072, 1072, 161,
|
|
1092, 1092, 1092, 1092, 1092, 1072, 1092, 1092, 158, 157,
|
|
155, 154, 150, 1067, 1092, 1094, 1094, 1094, 1094, 1094,
|
|
149, 1094, 1094, 146, 145, 142, 141, 139, 134, 1094,
|
|
1072, 1096, 1096, 1096, 1096, 1096, 132, 1096, 1096, 1092,
|
|
131, 130, 128, 127, 124, 1096, 1099, 1099, 1099, 1099,
|
|
1099, 123, 1099, 1099, 1094, 1101, 1101, 1101, 1101, 1101,
|
|
1099, 1101, 1101, 121, 117, 111, 110, 109, 106, 1101,
|
|
1096, 105, 1107, 1107, 1107, 1107, 1107, 99, 1107, 1107,
|
|
|
|
95, 94, 88, 87, 85, 1099, 1107, 83, 81, 1113,
|
|
1113, 1113, 1113, 1113, 1101, 1113, 1113, 79, 1117, 1117,
|
|
1117, 1117, 1117, 1113, 1117, 1117, 78, 67, 7, 0,
|
|
0, 1107, 1117, 1121, 1121, 1121, 1121, 1121, 0, 1121,
|
|
1121, 0, 0, 0, 0, 0, 0, 1121, 1113, 1125,
|
|
1125, 1125, 1125, 1125, 0, 1125, 1125, 1117, 0, 0,
|
|
0, 0, 0, 1125, 1130, 1130, 1130, 1130, 1130, 0,
|
|
1130, 1130, 1121, 1138, 1138, 1138, 1138, 1138, 1130, 1138,
|
|
1138, 0, 0, 0, 0, 0, 0, 1138, 1125, 0,
|
|
1141, 1141, 1141, 1141, 1141, 0, 1141, 1141, 0, 0,
|
|
|
|
0, 0, 0, 1130, 1141, 0, 0, 1147, 1147, 1147,
|
|
1147, 1147, 1138, 1147, 1147, 0, 1151, 1151, 1151, 1151,
|
|
1151, 1147, 1151, 1151, 0, 0, 0, 0, 0, 1141,
|
|
1151, 1153, 1153, 1153, 1153, 1153, 0, 1153, 1153, 0,
|
|
0, 0, 0, 0, 0, 1153, 1147, 1158, 1158, 1158,
|
|
1158, 1158, 0, 1158, 1158, 1151, 1168, 0, 0, 1168,
|
|
0, 1158, 0, 1168, 0, 1174, 1174, 1174, 1174, 1174,
|
|
1153, 1174, 1174, 1168, 1168, 0, 0, 0, 0, 1174,
|
|
0, 0, 0, 1168, 0, 0, 1158, 1177, 1177, 1177,
|
|
1177, 1177, 0, 1177, 1177, 0, 1181, 1181, 1181, 1181,
|
|
|
|
1181, 1177, 1181, 1181, 1174, 1186, 1186, 1186, 1186, 1186,
|
|
1181, 1186, 1186, 0, 1189, 1189, 1189, 1189, 1189, 1186,
|
|
1189, 1189, 0, 0, 0, 0, 1177, 0, 1189, 0,
|
|
0, 0, 0, 0, 0, 1181, 1192, 1192, 1192, 1192,
|
|
1192, 0, 1192, 1192, 1186, 1204, 1204, 1204, 1204, 1204,
|
|
1192, 1204, 1204, 1189, 1210, 1210, 1210, 1210, 1210, 1204,
|
|
1210, 1210, 0, 1235, 1235, 1235, 1235, 1235, 1210, 1235,
|
|
1235, 0, 0, 0, 0, 1192, 0, 1235, 0, 0,
|
|
0, 0, 0, 0, 1204, 1236, 1236, 1236, 1236, 1236,
|
|
0, 1236, 1236, 1210, 1239, 1239, 1239, 1239, 1239, 1236,
|
|
|
|
1239, 1239, 1235, 1241, 1241, 1241, 1241, 1241, 1239, 1241,
|
|
1241, 0, 1252, 1252, 1252, 1252, 1252, 1241, 1252, 1252,
|
|
0, 0, 0, 0, 1236, 0, 1252, 0, 0, 0,
|
|
0, 0, 0, 1239, 1253, 1253, 1253, 1253, 1253, 0,
|
|
1253, 1253, 1241, 1255, 1255, 1255, 1255, 1255, 1253, 1255,
|
|
1255, 1252, 1264, 1264, 1264, 1264, 1264, 1255, 1264, 1264,
|
|
0, 1271, 1271, 1271, 1271, 1271, 1264, 1271, 1271, 0,
|
|
0, 0, 0, 1253, 0, 1271, 0, 0, 0, 0,
|
|
0, 0, 1255, 1272, 1272, 1272, 1272, 1272, 0, 1272,
|
|
1272, 1264, 1277, 1277, 1277, 1277, 1277, 1272, 1277, 1277,
|
|
|
|
1271, 1279, 1279, 1279, 1279, 1279, 1277, 1279, 1279, 0,
|
|
1283, 1283, 1283, 1283, 1283, 1279, 1283, 1283, 0, 0,
|
|
0, 0, 1272, 0, 1283, 0, 0, 0, 0, 0,
|
|
0, 1277, 1285, 1285, 1285, 1285, 1285, 0, 1285, 1285,
|
|
1279, 1286, 1286, 1286, 1286, 1286, 1285, 1286, 1286, 1283,
|
|
1295, 1295, 1295, 1295, 1295, 1286, 1295, 1295, 0, 1301,
|
|
1301, 1301, 1301, 1301, 1295, 1301, 1301, 0, 0, 0,
|
|
0, 1285, 0, 1301, 0, 0, 0, 0, 0, 0,
|
|
1286, 1302, 1302, 1302, 1302, 1302, 0, 1302, 1302, 1295,
|
|
1304, 1304, 1304, 1304, 1304, 1302, 1304, 1304, 1301, 1311,
|
|
|
|
1311, 1311, 1311, 1311, 1304, 1311, 1311, 0, 0, 0,
|
|
0, 0, 0, 1311, 0, 0, 0, 0, 0, 0,
|
|
1302, 0, 0, 0, 0, 0, 0, 0, 0, 1304,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 1311, 1314,
|
|
0, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314,
|
|
1314, 1314, 1314, 1315, 1315, 0, 0, 0, 0, 0,
|
|
0, 0, 1315, 1316, 1316, 0, 0, 0, 0, 0,
|
|
1316, 0, 0, 0, 1316, 1317, 1317, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 1317, 1318, 1318, 0, 0,
|
|
0, 0, 0, 0, 0, 1318, 1319, 1319, 0, 0,
|
|
|
|
0, 1319, 1320, 1320, 0, 0, 0, 0, 0, 0,
|
|
0, 1320, 0, 0, 0, 1320, 1321, 1321, 1321, 1322,
|
|
1322, 0, 0, 1322, 0, 0, 0, 0, 1322, 1323,
|
|
1323, 1323, 0, 0, 0, 0, 0, 0, 1323, 0,
|
|
1323, 1324, 1324, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 1324, 1325, 1325, 0, 0, 0, 0,
|
|
0, 0, 0, 1325, 1326, 1326, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 1326, 1327, 1327, 1327,
|
|
0, 0, 0, 0, 0, 0, 1327, 0, 1327, 1328,
|
|
1328, 0, 0, 0, 0, 0, 0, 1328, 1329, 1329,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
1329, 1330, 1330, 0, 0, 0, 0, 1330, 1331, 1331,
|
|
0, 0, 0, 0, 0, 0, 0, 1331, 1332, 1332,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
1332, 1333, 1333, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 1333, 1334, 1334, 0, 0, 0, 0,
|
|
0, 0, 0, 1334, 1335, 1335, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 1335, 1336, 1336, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 1336, 1337, 1337,
|
|
0, 0, 0, 0, 0, 0, 1337, 1313, 1313, 1313,
|
|
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313
|
|
} ;
|
|
|
|
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 "jive.l"
|
|
#define INITIAL 0
|
|
/* GNU Talkfilters
|
|
Copyright (C) 1998-2003 Free Software Foundation, Inc.
|
|
|
|
This file is part of GNU Talkfilters
|
|
|
|
GNU Talkfilters is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2, or (at
|
|
your option) any later version.
|
|
|
|
This software is distributed in the hope that it will be amusing, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this software; see the file COPYING. If not, write to the
|
|
Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
#line 33 "jive.l"
|
|
|
|
#include "common.h"
|
|
|
|
#define YY_DECL int yylex(gtf_databuf_t *buf)
|
|
|
|
#define NIW 1
|
|
#define INW 2
|
|
|
|
#line 1680 "lex.yy.c"
|
|
|
|
/* 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 = NULL, *yy_bp = NULL;
|
|
register int yy_act;
|
|
|
|
#line 47 "jive.l"
|
|
|
|
|
|
#line 1834 "lex.yy.c"
|
|
|
|
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 >= 1314 )
|
|
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] != 3698 );
|
|
|
|
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_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 51 "jive.l"
|
|
gtf_puts_case("stashes");
|
|
YY_BREAK
|
|
case 2:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 52 "jive.l"
|
|
gtf_puts_case("stash");
|
|
YY_BREAK
|
|
case 3:
|
|
YY_RULE_SETUP
|
|
#line 53 "jive.l"
|
|
gtf_puts_case("t'row"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 4:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 54 "jive.l"
|
|
gtf_puts_case("fine");
|
|
YY_BREAK
|
|
case 5:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 55 "jive.l"
|
|
gtf_puts_case("supa' fly");
|
|
YY_BREAK
|
|
case 6:
|
|
YY_RULE_SETUP
|
|
#line 56 "jive.l"
|
|
gtf_puts_case("honky code"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 7:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 17;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 57 "jive.l"
|
|
gtf_puts_case("honky coder");
|
|
YY_BREAK
|
|
case 8:
|
|
YY_RULE_SETUP
|
|
#line 58 "jive.l"
|
|
gtf_puts_case("honky coder"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 9:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 8;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 59 "jive.l"
|
|
gtf_puts_case("honky code");
|
|
YY_BREAK
|
|
case 10:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 60 "jive.l"
|
|
gtf_puts_case("snatches");
|
|
YY_BREAK
|
|
case 11:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 61 "jive.l"
|
|
gtf_puts_case("dun snatch'd");
|
|
YY_BREAK
|
|
case 12:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 62 "jive.l"
|
|
gtf_puts_case("we's");
|
|
YY_BREAK
|
|
case 13:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 63 "jive.l"
|
|
gtf_puts_case("kep'");
|
|
YY_BREAK
|
|
case 14:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 64 "jive.l"
|
|
gtf_puts_case("happenin'");
|
|
YY_BREAK
|
|
case 15:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 65 "jive.l"
|
|
gtf_puts_case("geesy");
|
|
YY_BREAK
|
|
case 16:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 66 "jive.l"
|
|
gtf_puts_case("bits");
|
|
YY_BREAK
|
|
case 17:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 67 "jive.l"
|
|
gtf_puts_case("funk");
|
|
YY_BREAK
|
|
case 18:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 68 "jive.l"
|
|
gtf_puts_case("s'it");
|
|
YY_BREAK
|
|
case 19:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 69 "jive.l"
|
|
gtf_puts_case("d'unk");
|
|
YY_BREAK
|
|
case 20:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 12;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 70 "jive.l"
|
|
gtf_puts_case("spankin'");
|
|
YY_BREAK
|
|
case 21:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 12;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 71 "jive.l"
|
|
gtf_puts_case("spankin' da damn monkey");
|
|
YY_BREAK
|
|
case 22:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 10;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 72 "jive.l"
|
|
gtf_puts_case("spank");
|
|
YY_BREAK
|
|
case 23:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 11;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 73 "jive.l"
|
|
gtf_puts_case("spankin'");
|
|
YY_BREAK
|
|
case 24:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 8;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 74 "jive.l"
|
|
gtf_puts_case("spank");
|
|
YY_BREAK
|
|
case 25:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 75 "jive.l"
|
|
gtf_puts_case("wet-back");
|
|
YY_BREAK
|
|
case 26:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 76 "jive.l"
|
|
gtf_puts_case("geesa'");
|
|
YY_BREAK
|
|
case 27:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 77 "jive.l"
|
|
gtf_puts_case("snatch");
|
|
YY_BREAK
|
|
case 28:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 78 "jive.l"
|
|
gtf_puts_case("duzn't");
|
|
YY_BREAK
|
|
case 29:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 79 "jive.l"
|
|
gtf_puts_case("jibe");
|
|
YY_BREAK
|
|
case 30:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 80 "jive.l"
|
|
gtf_puts_case("honkyfool");
|
|
YY_BREAK
|
|
case 31:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 81 "jive.l"
|
|
gtf_puts_case("damn coo'");
|
|
YY_BREAK
|
|
case 32:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 82 "jive.l"
|
|
gtf_puts_case("funky-ass");
|
|
YY_BREAK
|
|
case 33:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 83 "jive.l"
|
|
gtf_puts_case("doodad");
|
|
YY_BREAK
|
|
case 34:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 84 "jive.l"
|
|
gtf_puts_case("dude");
|
|
YY_BREAK
|
|
case 35:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 85 "jive.l"
|
|
gtf_puts_case("mama");
|
|
YY_BREAK
|
|
case 36:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 86 "jive.l"
|
|
gtf_puts_case("mama");
|
|
YY_BREAK
|
|
case 37:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 87 "jive.l"
|
|
gtf_puts_case("daddy");
|
|
YY_BREAK
|
|
case 38:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 88 "jive.l"
|
|
gtf_puts_case("goat");
|
|
YY_BREAK
|
|
case 39:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 9;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 89 "jive.l"
|
|
gtf_puts_case("sump'n");
|
|
YY_BREAK
|
|
case 40:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 90 "jive.l"
|
|
gtf_puts_case("honky jibe");
|
|
YY_BREAK
|
|
case 41:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 91 "jive.l"
|
|
gtf_puts_case("sho' 'nuff");
|
|
YY_BREAK
|
|
case 42:
|
|
YY_RULE_SETUP
|
|
#line 92 "jive.l"
|
|
gtf_puts_case("git"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 43:
|
|
#line 94 "jive.l"
|
|
case 44:
|
|
#line 95 "jive.l"
|
|
case 45:
|
|
YY_RULE_SETUP
|
|
#line 95 "jive.l"
|
|
gtf_puts_case("ho'"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 46:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 96 "jive.l"
|
|
gtf_puts_case("gots'ta");
|
|
YY_BREAK
|
|
case 47:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 97 "jive.l"
|
|
gtf_puts_case("gots'ta");
|
|
YY_BREAK
|
|
case 48:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 98 "jive.l"
|
|
gtf_puts_case("gots'ta");
|
|
YY_BREAK
|
|
case 49:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 99 "jive.l"
|
|
gtf_puts_case("lemme");
|
|
YY_BREAK
|
|
case 50:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 100 "jive.l"
|
|
gtf_puts_case("duds");
|
|
YY_BREAK
|
|
case 51:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 101 "jive.l"
|
|
gtf_puts_case("Bens");
|
|
YY_BREAK
|
|
case 52:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 12;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 102 "jive.l"
|
|
gtf_puts_case("hitcha back");
|
|
YY_BREAK
|
|
case 53:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 103 "jive.l"
|
|
gtf_puts_case("I's gots'ta be");
|
|
YY_BREAK
|
|
case 54:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 104 "jive.l"
|
|
gtf_puts_case("ain't");
|
|
YY_BREAK
|
|
case 55:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 105 "jive.l"
|
|
gtf_puts_case("ain't");
|
|
YY_BREAK
|
|
case 56:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 8;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 106 "jive.l"
|
|
gtf_puts_case("is yo'");
|
|
YY_BREAK
|
|
case 57:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 107 "jive.l"
|
|
gtf_puts_case("you is");
|
|
YY_BREAK
|
|
case 58:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 108 "jive.l"
|
|
gtf_puts_case("Is you");
|
|
YY_BREAK
|
|
case 59:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 109 "jive.l"
|
|
gtf_puts_case("fedora");
|
|
YY_BREAK
|
|
case 60:
|
|
YY_RULE_SETUP
|
|
#line 110 "jive.l"
|
|
gtf_puts_case("ova'"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 61:
|
|
YY_RULE_SETUP
|
|
#line 111 "jive.l"
|
|
gtf_puts_case("oda'"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 62:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 112 "jive.l"
|
|
gtf_puts_case("kicker");
|
|
YY_BREAK
|
|
case 63:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 113 "jive.l"
|
|
gtf_puts_case("gots'ta");
|
|
YY_BREAK
|
|
case 64:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 114 "jive.l"
|
|
gtf_puts_case("gots'");
|
|
YY_BREAK
|
|
case 65:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 115 "jive.l"
|
|
gtf_puts_case("gots'ta");
|
|
YY_BREAK
|
|
case 66:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 9;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 116 "jive.l"
|
|
gtf_puts_case("mosey on down");
|
|
YY_BREAK
|
|
case 67:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 117 "jive.l"
|
|
gtf_puts_case("mosey on down");
|
|
YY_BREAK
|
|
case 68:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 118 "jive.l"
|
|
gtf_puts_case("mosey on down");
|
|
YY_BREAK
|
|
case 69:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 119 "jive.l"
|
|
gtf_puts_case("git on back");
|
|
YY_BREAK
|
|
case 70:
|
|
YY_RULE_SETUP
|
|
#line 120 "jive.l"
|
|
gtf_puts_case("steal"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 71:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 121 "jive.l"
|
|
gtf_puts_case("robbed");
|
|
YY_BREAK
|
|
case 72:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 122 "jive.l"
|
|
gtf_puts_case("wheels");
|
|
YY_BREAK
|
|
case 73:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 123 "jive.l"
|
|
gtf_puts_case("bull-shittin'");
|
|
YY_BREAK
|
|
case 74:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 11;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 124 "jive.l"
|
|
gtf_puts_case("roll'd");
|
|
YY_BREAK
|
|
case 75:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 125 "jive.l"
|
|
gtf_puts_case("roll");
|
|
YY_BREAK
|
|
case 76:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 126 "jive.l"
|
|
gtf_puts_case("feed da bud");
|
|
YY_BREAK
|
|
case 77:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 127 "jive.l"
|
|
gtf_puts_case("brotha'");
|
|
YY_BREAK
|
|
case 78:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 128 "jive.l"
|
|
gtf_puts_case("honky");
|
|
YY_BREAK
|
|
case 79:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 129 "jive.l"
|
|
gtf_puts_case("gentleman");
|
|
YY_BREAK
|
|
case 80:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 130 "jive.l"
|
|
gtf_puts_case("supa' fine");
|
|
YY_BREAK
|
|
case 81:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 131 "jive.l"
|
|
gtf_puts_case("hold");
|
|
YY_BREAK
|
|
case 82:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 132 "jive.l"
|
|
gtf_puts_case("bump");
|
|
YY_BREAK
|
|
case 83:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 133 "jive.l"
|
|
gtf_puts_case("sucka'");
|
|
YY_BREAK
|
|
case 84:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 134 "jive.l"
|
|
gtf_puts_case("sucka's");
|
|
YY_BREAK
|
|
case 85:
|
|
YY_RULE_SETUP
|
|
#line 135 "jive.l"
|
|
{
|
|
gtf_puts_case("doodad"); BEGIN(INW); }
|
|
YY_BREAK
|
|
case 86:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 137 "jive.l"
|
|
gtf_puts_case("dojigga'");
|
|
YY_BREAK
|
|
case 87:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 138 "jive.l"
|
|
gtf_puts_case("alley");
|
|
YY_BREAK
|
|
case 88:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 8;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 139 "jive.l"
|
|
gtf_puts_case("clunka'");
|
|
YY_BREAK
|
|
case 89:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 140 "jive.l"
|
|
{
|
|
gtf_puts_case("slow mo-fo Windaz'"); }
|
|
YY_BREAK
|
|
case 90:
|
|
YY_RULE_SETUP
|
|
#line 142 "jive.l"
|
|
gtf_puts_case("dat damn monopoly"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 91:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 143 "jive.l"
|
|
gtf_puts_case("wasted");
|
|
YY_BREAK
|
|
case 92:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 144 "jive.l"
|
|
gtf_puts_case("gots wasted");
|
|
YY_BREAK
|
|
case 93:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 145 "jive.l"
|
|
gtf_puts_case("kick d' cud");
|
|
YY_BREAK
|
|
case 94:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 9;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 146 "jive.l"
|
|
gtf_puts_case("supa'-dude");
|
|
YY_BREAK
|
|
case 95:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 14;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 147 "jive.l"
|
|
gtf_puts_case("head honcho");
|
|
YY_BREAK
|
|
case 96:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 148 "jive.l"
|
|
gtf_puts_case("hosed");
|
|
YY_BREAK
|
|
case 97:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 10;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 149 "jive.l"
|
|
gtf_puts_case("guv'ment");
|
|
YY_BREAK
|
|
case 98:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 150 "jive.l"
|
|
gtf_puts_case("knowed");
|
|
YY_BREAK
|
|
case 99:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 151 "jive.l"
|
|
gtf_puts_case("cuz");
|
|
YY_BREAK
|
|
case 100:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 152 "jive.l"
|
|
gtf_puts_case("yo'");
|
|
YY_BREAK
|
|
case 101:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 153 "jive.l"
|
|
gtf_puts_case("foe");
|
|
YY_BREAK
|
|
case 102:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 154 "jive.l"
|
|
gtf_puts_case("gots");
|
|
YY_BREAK
|
|
case 103:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 155 "jive.l"
|
|
gtf_puts_case("yung");
|
|
YY_BREAK
|
|
case 104:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 156 "jive.l"
|
|
gtf_puts_case("baby doll");
|
|
YY_BREAK
|
|
case 105:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 157 "jive.l"
|
|
gtf_puts_case("you's");
|
|
YY_BREAK
|
|
case 106:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 158 "jive.l"
|
|
gtf_puts_case("ya");
|
|
YY_BREAK
|
|
case 107:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 159 "jive.l"
|
|
gtf_puts_case("You's");
|
|
YY_BREAK
|
|
case 108:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 160 "jive.l"
|
|
gtf_puts_case("fust");
|
|
YY_BREAK
|
|
case 109:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 161 "jive.l"
|
|
gtf_puts_case("honky pigs");
|
|
YY_BREAK
|
|
case 110:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 162 "jive.l"
|
|
gtf_puts_case("chittlin'");
|
|
YY_BREAK
|
|
case 111:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 163 "jive.l"
|
|
gtf_puts_case("eyeball");
|
|
YY_BREAK
|
|
case 112:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 164 "jive.l"
|
|
gtf_puts_case("scribble");
|
|
YY_BREAK
|
|
case 113:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 165 "jive.l"
|
|
gtf_puts_case("scribblin'");
|
|
YY_BREAK
|
|
case 114:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 2;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 166 "jive.l"
|
|
gtf_puts_case("t'");
|
|
YY_BREAK
|
|
case 115:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 167 "jive.l"
|
|
gtf_puts_case("shun");
|
|
YY_BREAK
|
|
case 116:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 168 "jive.l"
|
|
gtf_puts_case("mos'");
|
|
YY_BREAK
|
|
case 117:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 169 "jive.l"
|
|
gtf_puts_case("fum");
|
|
YY_BREAK
|
|
case 118:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 170 "jive.l"
|
|
gtf_puts_case("coo'");
|
|
YY_BREAK
|
|
case 119:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 171 "jive.l"
|
|
gtf_puts_case("knode");
|
|
YY_BREAK
|
|
case 120:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 172 "jive.l"
|
|
gtf_puts_case("wants'");
|
|
YY_BREAK
|
|
case 121:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 173 "jive.l"
|
|
gtf_puts_case("whup'");
|
|
YY_BREAK
|
|
case 122:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 174 "jive.l"
|
|
gtf_puts_case("likes");
|
|
YY_BREAK
|
|
case 123:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 175 "jive.l"
|
|
gtf_puts_case("dun did");
|
|
YY_BREAK
|
|
case 124:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 176 "jive.l"
|
|
gtf_puts_case("kind'a");
|
|
YY_BREAK
|
|
case 125:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 177 "jive.l"
|
|
gtf_puts_case("honky chicks");
|
|
YY_BREAK
|
|
case 126:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 178 "jive.l"
|
|
gtf_puts_case("dudes");
|
|
YY_BREAK
|
|
case 127:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 179 "jive.l"
|
|
gtf_puts_case("baaaad");
|
|
YY_BREAK
|
|
case 128:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 180 "jive.l"
|
|
gtf_puts_case("jimmey'd ");
|
|
YY_BREAK
|
|
case 129:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 181 "jive.l"
|
|
gtf_puts_case("jimmey");
|
|
YY_BREAK
|
|
case 130:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 11;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 182 "jive.l"
|
|
gtf_puts_case("clunka' scribblin'");
|
|
YY_BREAK
|
|
case 131:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 183 "jive.l"
|
|
gtf_puts_case("real");
|
|
YY_BREAK
|
|
case 132:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 184 "jive.l"
|
|
gtf_puts_case("Doc");
|
|
YY_BREAK
|
|
case 133:
|
|
YY_RULE_SETUP
|
|
#line 185 "jive.l"
|
|
gtf_puts_case("puh'");
|
|
YY_BREAK
|
|
case 134:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 186 "jive.l"
|
|
gtf_puts_case("kin"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 135:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 187 "jive.l"
|
|
gtf_puts_case("plum");
|
|
YY_BREAK
|
|
case 136:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 188 "jive.l"
|
|
gtf_puts_case("Jes'");
|
|
YY_BREAK
|
|
case 137:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 189 "jive.l"
|
|
gtf_puts_case("Mo-town");
|
|
YY_BREAK
|
|
case 138:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 190 "jive.l"
|
|
gtf_puts_case("reckon'");
|
|
YY_BREAK
|
|
case 139:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 12;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 191 "jive.l"
|
|
gtf_puts_case("Nap-town");
|
|
YY_BREAK
|
|
case 140:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 192 "jive.l"
|
|
gtf_puts_case("Buckwheat");
|
|
YY_BREAK
|
|
case 141:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 193 "jive.l"
|
|
gtf_puts_case("Liva' Lips");
|
|
YY_BREAK
|
|
case 142:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 194 "jive.l"
|
|
gtf_puts_case("Leroy");
|
|
YY_BREAK
|
|
case 143:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 195 "jive.l"
|
|
gtf_puts_case("Raz'tus");
|
|
YY_BREAK
|
|
case 144:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 196 "jive.l"
|
|
gtf_puts_case("Fuh'rina");
|
|
YY_BREAK
|
|
case 145:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 197 "jive.l"
|
|
gtf_puts_case("Kingfish");
|
|
YY_BREAK
|
|
case 146:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 198 "jive.l"
|
|
gtf_puts_case("Issac");
|
|
YY_BREAK
|
|
case 147:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 199 "jive.l"
|
|
gtf_puts_case("Bo-Jangles");
|
|
YY_BREAK
|
|
case 148:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 200 "jive.l"
|
|
gtf_puts_case("Snow Flake");
|
|
YY_BREAK
|
|
case 149:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 201 "jive.l"
|
|
gtf_puts_case("Amos");
|
|
YY_BREAK
|
|
case 150:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 202 "jive.l"
|
|
gtf_puts_case("Mojo");
|
|
YY_BREAK
|
|
case 151:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 203 "jive.l"
|
|
gtf_puts_case("Holmes");
|
|
YY_BREAK
|
|
case 152:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 204 "jive.l"
|
|
gtf_puts_case("Holmes");
|
|
YY_BREAK
|
|
case 153:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 205 "jive.l"
|
|
gtf_puts_case("Rolo");
|
|
YY_BREAK
|
|
case 154:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 206 "jive.l"
|
|
gtf_puts_case("Remus");
|
|
YY_BREAK
|
|
case 155:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 207 "jive.l"
|
|
gtf_puts_case("Massa'");
|
|
YY_BREAK
|
|
case 156:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 8;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 208 "jive.l"
|
|
gtf_puts_case("Liva' Lips");
|
|
YY_BREAK
|
|
case 157:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 209 "jive.l"
|
|
gtf_puts_case("wiz'");
|
|
YY_BREAK
|
|
case 158:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 210 "jive.l"
|
|
gtf_puts_case("dat commie rag");
|
|
YY_BREAK
|
|
case 159:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 211 "jive.l"
|
|
gtf_puts_case("bugger'd");
|
|
YY_BREAK
|
|
case 160:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 212 "jive.l"
|
|
gtf_puts_case("funky");
|
|
YY_BREAK
|
|
case 161:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 213 "jive.l"
|
|
gtf_puts_case("boogy");
|
|
YY_BREAK
|
|
case 162:
|
|
YY_RULE_SETUP
|
|
#line 214 "jive.l"
|
|
gtf_puts_case("crib"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 163:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 9;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 215 "jive.l"
|
|
gtf_puts_case("crib");
|
|
YY_BREAK
|
|
case 164:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 2;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 216 "jive.l"
|
|
gtf_puts_case("so's");
|
|
YY_BREAK
|
|
case 165:
|
|
YY_RULE_SETUP
|
|
#line 217 "jive.l"
|
|
gtf_puts_case("'haid"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 166:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 218 "jive.l"
|
|
gtf_puts_case("main man");
|
|
YY_BREAK
|
|
case 167:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 219 "jive.l"
|
|
gtf_puts_case("bre'd");
|
|
YY_BREAK
|
|
case 168:
|
|
YY_RULE_SETUP
|
|
#line 220 "jive.l"
|
|
gtf_puts_case("begina'");
|
|
YY_BREAK
|
|
case 169:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 221 "jive.l"
|
|
gtf_puts_case("transista'");
|
|
YY_BREAK
|
|
case 170:
|
|
YY_RULE_SETUP
|
|
#line 222 "jive.l"
|
|
gtf_puts_case("whut"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 171:
|
|
YY_RULE_SETUP
|
|
#line 223 "jive.l"
|
|
gtf_puts_case("duz"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 172:
|
|
YY_RULE_SETUP
|
|
#line 224 "jive.l"
|
|
gtf_puts_case("wuz"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 173:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 10;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 225 "jive.l"
|
|
gtf_puts_case("dig");
|
|
YY_BREAK
|
|
case 174:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 13;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 226 "jive.l"
|
|
gtf_puts_case("diggin'");
|
|
YY_BREAK
|
|
case 175:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 2;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 227 "jive.l"
|
|
gtf_puts_case("mah'");
|
|
YY_BREAK
|
|
case 176:
|
|
YY_RULE_SETUP
|
|
#line 228 "jive.l"
|
|
gtf_puts_case("meta-fuckin'"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 177:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 229 "jive.l"
|
|
gtf_puts_case("fro");
|
|
YY_BREAK
|
|
case 178:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 230 "jive.l"
|
|
gtf_puts_case("rap wid");
|
|
YY_BREAK
|
|
case 179:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 231 "jive.l"
|
|
gtf_puts_case("big-ass");
|
|
YY_BREAK
|
|
case 180:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 232 "jive.l"
|
|
gtf_puts_case("bad-ass");
|
|
YY_BREAK
|
|
case 181:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 233 "jive.l"
|
|
gtf_puts_case("little-ass");
|
|
YY_BREAK
|
|
case 182:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 234 "jive.l"
|
|
gtf_puts_case("sorta'");
|
|
YY_BREAK
|
|
case 183:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 2;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 235 "jive.l"
|
|
gtf_puts_case("be");
|
|
YY_BREAK
|
|
case 184:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 236 "jive.l"
|
|
gtf_puts_case("booze");
|
|
YY_BREAK
|
|
case 185:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 237 "jive.l"
|
|
gtf_puts_case("scribblin'");
|
|
YY_BREAK
|
|
case 186:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 8;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 238 "jive.l"
|
|
gtf_puts_case("issue uh GQ");
|
|
YY_BREAK
|
|
case 187:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 239 "jive.l"
|
|
gtf_puts_case("sheet");
|
|
YY_BREAK
|
|
case 188:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 240 "jive.l"
|
|
gtf_puts_case("muthafucka's");
|
|
YY_BREAK
|
|
case 189:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 241 "jive.l"
|
|
gtf_puts_case("muthafucka'");
|
|
YY_BREAK
|
|
case 190:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 242 "jive.l"
|
|
gtf_puts_case("damn");
|
|
YY_BREAK
|
|
case 191:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 2;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 243 "jive.l"
|
|
gtf_puts_case("down");
|
|
YY_BREAK
|
|
case 192:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 4;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 244 "jive.l"
|
|
gtf_puts_case("waaay down");
|
|
YY_BREAK
|
|
case 193:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 245 "jive.l"
|
|
gtf_puts_case("boogie");
|
|
YY_BREAK
|
|
case 194:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 246 "jive.l"
|
|
gtf_puts_case("watahmelon");
|
|
YY_BREAK
|
|
case 195:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 247 "jive.l"
|
|
gtf_puts_case("fried chicken");
|
|
YY_BREAK
|
|
case 196:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 2;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 248 "jive.l"
|
|
gtf_puts_case("'Sup, dude");
|
|
YY_BREAK
|
|
case 197:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 249 "jive.l"
|
|
gtf_puts_case("'Sup");
|
|
YY_BREAK
|
|
case 198:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 8;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 250 "jive.l"
|
|
gtf_puts_case("dat white boy music");
|
|
YY_BREAK
|
|
case 199:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 10;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 251 "jive.l"
|
|
gtf_puts_case("Ah sez to her");
|
|
YY_BREAK
|
|
case 200:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 10;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 252 "jive.l"
|
|
gtf_puts_case("Ah sez to him");
|
|
YY_BREAK
|
|
case 201:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 253 "jive.l"
|
|
gtf_puts_case("Ah'");
|
|
YY_BREAK
|
|
case 202:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 254 "jive.l"
|
|
gtf_puts_case("rappin'");
|
|
YY_BREAK
|
|
case 203:
|
|
YY_RULE_SETUP
|
|
#line 255 "jive.l"
|
|
gtf_puts_case("rap"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 204:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 11;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 256 "jive.l"
|
|
gtf_puts_case("L L Cool J");
|
|
YY_BREAK
|
|
case 205:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 11;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 257 "jive.l"
|
|
gtf_puts_case("Boyz II Men");
|
|
YY_BREAK
|
|
case 206:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 13;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 258 "jive.l"
|
|
gtf_puts_case("get evil on yo' ass");
|
|
YY_BREAK
|
|
case 207:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 10;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 259 "jive.l"
|
|
gtf_puts_case("mah' bad");
|
|
YY_BREAK
|
|
case 208:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 260 "jive.l"
|
|
gtf_puts_case("beat");
|
|
YY_BREAK
|
|
case 209:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 10;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 261 "jive.l"
|
|
gtf_puts_case("hoop");
|
|
YY_BREAK
|
|
case 210:
|
|
YY_RULE_SETUP
|
|
#line 262 "jive.l"
|
|
gtf_puts_case("bast'id"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 211:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 8;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 263 "jive.l"
|
|
gtf_puts_case("ball");
|
|
YY_BREAK
|
|
case 212:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 264 "jive.l"
|
|
gtf_puts_case("homey");
|
|
YY_BREAK
|
|
case 213:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 265 "jive.l"
|
|
gtf_puts_case("farm");
|
|
YY_BREAK
|
|
case 214:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 266 "jive.l"
|
|
gtf_puts_case(yytext);
|
|
YY_BREAK
|
|
case 215:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 7;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 267 "jive.l"
|
|
gtf_puts_case("wanna");
|
|
YY_BREAK
|
|
case 216:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 8;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 268 "jive.l"
|
|
gtf_puts_case("be hankerin' aftah");
|
|
YY_BREAK
|
|
case 217:
|
|
YY_RULE_SETUP
|
|
#line 269 "jive.l"
|
|
gtf_puts_case("ax'"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 218:
|
|
YY_RULE_SETUP
|
|
#line 270 "jive.l"
|
|
gtf_puts_case("o'"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 219:
|
|
YY_RULE_SETUP
|
|
#line 271 "jive.l"
|
|
gtf_puts_case("a'"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 220:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 272 "jive.l"
|
|
gtf_puts_case("an'");
|
|
YY_BREAK
|
|
case 221:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 273 "jive.l"
|
|
gtf_puts_case("some damn");
|
|
YY_BREAK
|
|
case 222:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 2;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 274 "jive.l"
|
|
gtf_puts_case("uh");
|
|
YY_BREAK
|
|
case 223:
|
|
YY_RULE_SETUP
|
|
#line 275 "jive.l"
|
|
gtf_puts_case("Sheeit...");
|
|
YY_BREAK
|
|
case 224:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 276 "jive.l"
|
|
gtf_puts_case("wuz");
|
|
YY_BREAK
|
|
case 225:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 277 "jive.l"
|
|
gtf_puts_case("is");
|
|
YY_BREAK
|
|
case 226:
|
|
YY_RULE_SETUP
|
|
#line 278 "jive.l"
|
|
gtf_puts_case("'s"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 227:
|
|
YY_RULE_SETUP
|
|
#line 279 "jive.l"
|
|
gtf_puts_case("'es"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 228:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 280 "jive.l"
|
|
gtf_puts_case(yytext);
|
|
YY_BREAK
|
|
case 229:
|
|
YY_RULE_SETUP
|
|
#line 281 "jive.l"
|
|
gtf_puts_case("d"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 230:
|
|
YY_RULE_SETUP
|
|
#line 283 "jive.l"
|
|
{ BEGIN(INW); gtf_echo(); }
|
|
YY_BREAK
|
|
|
|
|
|
case 231:
|
|
YY_RULE_SETUP
|
|
#line 289 "jive.l"
|
|
{ *(yytext+1) = ',';
|
|
if(gtf_random(4) < 3)
|
|
gtf_printf("%s dig dis:", yytext);
|
|
else
|
|
gtf_printf("%s check it:", yytext);
|
|
BEGIN(NIW); }
|
|
YY_BREAK
|
|
case 232:
|
|
YY_RULE_SETUP
|
|
#line 295 "jive.l"
|
|
gtf_printf("%s Sheeeiit.", yytext); BEGIN(NIW);
|
|
YY_BREAK
|
|
case 233:
|
|
YY_RULE_SETUP
|
|
#line 296 "jive.l"
|
|
gtf_printf("%s Word!", yytext); BEGIN(INW);
|
|
YY_BREAK
|
|
case 234:
|
|
YY_RULE_SETUP
|
|
#line 297 "jive.l"
|
|
gtf_printf("%s What it is, Mama!", yytext); BEGIN(NIW);
|
|
YY_BREAK
|
|
case 235:
|
|
YY_RULE_SETUP
|
|
#line 298 "jive.l"
|
|
gtf_printf("%s Ya' know?", yytext); BEGIN(NIW);
|
|
YY_BREAK
|
|
case 236:
|
|
YY_RULE_SETUP
|
|
#line 299 "jive.l"
|
|
gtf_printf("%s 'S coo', bro.", yytext); BEGIN(NIW);
|
|
YY_BREAK
|
|
case 237:
|
|
YY_RULE_SETUP
|
|
#line 300 "jive.l"
|
|
{ gtf_printf( "%s Jes hang loose, brotha'.", yytext);
|
|
BEGIN(NIW); }
|
|
YY_BREAK
|
|
case 238:
|
|
YY_RULE_SETUP
|
|
#line 302 "jive.l"
|
|
gtf_printf("%s Ah be baaad...", yytext); BEGIN(NIW);
|
|
YY_BREAK
|
|
case 239:
|
|
YY_RULE_SETUP
|
|
#line 303 "jive.l"
|
|
gtf_printf("%s Man!", yytext); BEGIN(NIW);
|
|
YY_BREAK
|
|
case 240:
|
|
YY_RULE_SETUP
|
|
#line 304 "jive.l"
|
|
{ gtf_printf("%c, so cut me some slack, Jack.", *yytext);
|
|
BEGIN(NIW); }
|
|
YY_BREAK
|
|
case 241:
|
|
YY_RULE_SETUP
|
|
#line 306 "jive.l"
|
|
gtf_printf("%s Slap mah fro!", yytext); BEGIN(NIW);
|
|
YY_BREAK
|
|
case 242:
|
|
YY_RULE_SETUP
|
|
#line 307 "jive.l"
|
|
gtf_puts(". Right On!");
|
|
YY_BREAK
|
|
case 243:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 308 "jive.l"
|
|
gtf_puts_case("e da damn"); BEGIN(NIW);
|
|
YY_BREAK
|
|
case 244:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 309 "jive.l"
|
|
gtf_puts_case("a da damn"); BEGIN(NIW);
|
|
YY_BREAK
|
|
case 245:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 310 "jive.l"
|
|
gtf_puts_case("t da damn"); BEGIN(NIW);
|
|
YY_BREAK
|
|
case 246:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 5;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 311 "jive.l"
|
|
gtf_puts_case("d da damn"); BEGIN(NIW);
|
|
YY_BREAK
|
|
case 247:
|
|
YY_RULE_SETUP
|
|
#line 312 "jive.l"
|
|
gtf_puts("'sp");
|
|
YY_BREAK
|
|
case 248:
|
|
YY_RULE_SETUP
|
|
#line 313 "jive.l"
|
|
gtf_puts("'s");
|
|
YY_BREAK
|
|
case 249:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 2;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 314 "jive.l"
|
|
gtf_puts("a'"); BEGIN(NIW);
|
|
YY_BREAK
|
|
case 250:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 315 "jive.l"
|
|
gtf_puts("ingin'"); BEGIN(NIW);
|
|
YY_BREAK
|
|
case 251:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 3;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 316 "jive.l"
|
|
gtf_puts("in'"); BEGIN(NIW);
|
|
YY_BREAK
|
|
case 252:
|
|
YY_RULE_SETUP
|
|
#line 317 "jive.l"
|
|
gtf_puts("o'");
|
|
YY_BREAK
|
|
case 253:
|
|
YY_RULE_SETUP
|
|
#line 318 "jive.l"
|
|
gtf_puts("a'");
|
|
YY_BREAK
|
|
case 254:
|
|
YY_RULE_SETUP
|
|
#line 319 "jive.l"
|
|
BEGIN(NIW); unput(yytext[0]);
|
|
YY_BREAK
|
|
|
|
case 255:
|
|
YY_RULE_SETUP
|
|
#line 323 "jive.l"
|
|
/* ignore trailing EOT character */
|
|
YY_BREAK
|
|
case 256:
|
|
YY_RULE_SETUP
|
|
#line 324 "jive.l"
|
|
gtf_echo();
|
|
YY_BREAK
|
|
case 257:
|
|
YY_RULE_SETUP
|
|
#line 326 "jive.l"
|
|
ECHO;
|
|
YY_BREAK
|
|
#line 3830 "lex.yy.c"
|
|
case YY_STATE_EOF(INITIAL):
|
|
case YY_STATE_EOF(NIW):
|
|
case YY_STATE_EOF(INW):
|
|
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 >= 1314 )
|
|
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 >= 1314 )
|
|
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 == 1313);
|
|
|
|
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 );
|
|
}
|
|
|
|
|
|
|
|
#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 326 "jive.l"
|
|
|
|
|
|
/*
|
|
*/
|
|
|
|
#ifdef LIBRARY_MODE
|
|
|
|
int gtf_filter_jive(const char *input, char *buf, size_t bufsz)
|
|
{
|
|
gtf_databuf_t buffer;
|
|
YY_BUFFER_STATE _yybuf;
|
|
|
|
gtf_strbuf_init(&buffer, buf, bufsz);
|
|
_yybuf = yy_scan_string(input);
|
|
yylex(&buffer);
|
|
yy_delete_buffer(_yybuf);
|
|
gtf_reset();
|
|
|
|
return(buffer.overflow);
|
|
}
|
|
|
|
#else
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
gtf_parse_args();
|
|
gtf_random_seed();
|
|
|
|
yylex(NULL);
|
|
|
|
return(EXIT_SUCCESS);
|
|
}
|
|
|
|
#endif
|
|
|
|
/* end of source file */
|