rcfile_l.c   [plain text]



#line 3 "rcfile_l.c"

#define  YY_INT_ALIGNED short int

/* A lexical scanner generated by flex */

#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5
#define YY_FLEX_SUBMINOR_VERSION 35
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX_BETA
#endif

/* First, we deal with  platform-specific or compiler-specific issues. */

/* begin standard C headers. */
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>

/* end standard C headers. */

/* flex integer type definitions */

#ifndef FLEXINT_H
#define FLEXINT_H

/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */

#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L

/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
 * if you want the limit (max/min) macros for int types. 
 */
#ifndef __STDC_LIMIT_MACROS
#define __STDC_LIMIT_MACROS 1
#endif

#include <inttypes.h>
typedef int8_t flex_int8_t;
typedef uint8_t flex_uint8_t;
typedef int16_t flex_int16_t;
typedef uint16_t flex_uint16_t;
typedef int32_t flex_int32_t;
typedef uint32_t flex_uint32_t;
#else
typedef signed char flex_int8_t;
typedef short int flex_int16_t;
typedef int flex_int32_t;
typedef unsigned char flex_uint8_t; 
typedef unsigned short int flex_uint16_t;
typedef unsigned int flex_uint32_t;
#endif /* ! C99 */

/* Limits of integral types. */
#ifndef INT8_MIN
#define INT8_MIN               (-128)
#endif
#ifndef INT16_MIN
#define INT16_MIN              (-32767-1)
#endif
#ifndef INT32_MIN
#define INT32_MIN              (-2147483647-1)
#endif
#ifndef INT8_MAX
#define INT8_MAX               (127)
#endif
#ifndef INT16_MAX
#define INT16_MAX              (32767)
#endif
#ifndef INT32_MAX
#define INT32_MAX              (2147483647)
#endif
#ifndef UINT8_MAX
#define UINT8_MAX              (255U)
#endif
#ifndef UINT16_MAX
#define UINT16_MAX             (65535U)
#endif
#ifndef UINT32_MAX
#define UINT32_MAX             (4294967295U)
#endif

#endif /* ! FLEXINT_H */

#ifdef __cplusplus

/* The "const" storage-class-modifier is valid. */
#define YY_USE_CONST

#else	/* ! __cplusplus */

/* C99 requires __STDC__ to be defined as 1. */
#if defined (__STDC__)

#define YY_USE_CONST

#endif	/* defined (__STDC__) */
#endif	/* ! __cplusplus */

#ifdef YY_USE_CONST
#define yyconst const
#else
#define yyconst
#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. */
#ifndef YY_BUF_SIZE
#define YY_BUF_SIZE 16384
#endif

/* The state buf must be large enough to hold one state per character in the main buffer.
 */
#define YY_STATE_BUF_SIZE   ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))

#ifndef YY_TYPEDEF_YY_BUFFER_STATE
#define YY_TYPEDEF_YY_BUFFER_STATE
typedef struct yy_buffer_state *YY_BUFFER_STATE;
#endif

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

    #define YY_LESS_LINENO(n)
    
/* Return all but the first "n" matched characters back to the input stream. */
#define yyless(n) \
	do \
		{ \
		/* Undo effects of setting up yytext. */ \
        int yyless_macro_arg = (n); \
        YY_LESS_LINENO(yyless_macro_arg);\
		*yy_cp = (yy_hold_char); \
		YY_RESTORE_YY_MORE_OFFSET \
		(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
		YY_DO_BEFORE_ACTION; /* set up yytext again */ \
		} \
	while ( 0 )

#define unput(c) yyunput( c, (yytext_ptr)  )

#ifndef YY_TYPEDEF_YY_SIZE_T
#define YY_TYPEDEF_YY_SIZE_T
typedef size_t yy_size_t;
#endif

#ifndef YY_STRUCT_YY_BUFFER_STATE
#define YY_STRUCT_YY_BUFFER_STATE
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;

    int yy_bs_lineno; /**< The line count. */
    int yy_bs_column; /**< The column count. */
    
	/* 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

	};
#endif /* !YY_STRUCT_YY_BUFFER_STATE */

/* Stack of input buffers. */
static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */

/* 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".
 *
 * Returns the top of the stack, or NULL.
 */
#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
                          ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
                          : NULL)

/* Same as previous macro, but useful when we know that the buffer stack is not
 * NULL or when we need an lvalue. For internal use only.
 */
#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]

/* 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 = 0;		/* 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 (FILE *input_file  );
void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer  );
YY_BUFFER_STATE yy_create_buffer (FILE *file,int size  );
void yy_delete_buffer (YY_BUFFER_STATE b  );
void yy_flush_buffer (YY_BUFFER_STATE b  );
void yypush_buffer_state (YY_BUFFER_STATE new_buffer  );
void yypop_buffer_state (void );

static void yyensure_buffer_stack (void );
static void yy_load_buffer_state (void );
static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file  );

#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )

YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size  );
YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str  );
YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len  );

void *yyalloc (yy_size_t  );
void *yyrealloc (void *,yy_size_t  );
void yyfree (void *  );

#define yy_new_buffer yy_create_buffer

#define yy_set_interactive(is_interactive) \
	{ \
	if ( ! YY_CURRENT_BUFFER ){ \
        yyensure_buffer_stack (); \
		YY_CURRENT_BUFFER_LVALUE =    \
            yy_create_buffer(yyin,YY_BUF_SIZE ); \
	} \
	YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
	}

#define yy_set_bol(at_bol) \
	{ \
	if ( ! YY_CURRENT_BUFFER ){\
        yyensure_buffer_stack (); \
		YY_CURRENT_BUFFER_LVALUE =    \
            yy_create_buffer(yyin,YY_BUF_SIZE ); \
	} \
	YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
	}

#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)

/* Begin user sect3 */

#define yywrap(n) 1
#define YY_SKIP_YYWRAP

typedef unsigned char YY_CHAR;

FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;

typedef int yy_state_type;

extern int yylineno;

int yylineno = 1;

extern char *yytext;
#define yytext_ptr yytext

static yy_state_type yy_get_previous_state (void );
static yy_state_type yy_try_NUL_trans (yy_state_type current_state  );
static int yy_get_next_buffer (void );
static void yy_fatal_error (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 = (size_t) (yy_cp - yy_bp); \
	(yy_hold_char) = *yy_cp; \
	*yy_cp = '\0'; \
	(yy_c_buf_p) = yy_cp;

#define YY_NUM_RULES 141
#define YY_END_OF_BUFFER 142
/* This struct is not used in this scanner,
   but its presence is necessary. */
struct yy_trans_info
	{
	flex_int32_t yy_verify;
	flex_int32_t yy_nxt;
	};
static yyconst flex_int16_t yy_accept[1545] =
    {   0,
        0,    0,    0,    0,    0,    0,  142,  139,  140,  137,
      139,  139,  139,    3,  126,  139,  138,   77,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,  139,    4,
        4,    4,    4,    3,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,  139,  139,  140,
      139,    0,    1,  139,    0,  137,  139,  139,    0,    2,

      138,  139,  139,  139,  139,  139,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,   73,  139,  139,
      139,  139,  139,  139,  139,  139,  139,   96,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
      139,  139,   76,  139,  139,  139,  139,  139,  139,    4,
        4,    1,    4,    4,    4,    2,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,  139,    1,    0,    2,  139,
      139,  139,  139,  139,  139,  139,  139,  139,   24,  122,
      139,   32,  139,  139,  139,  139,  139,  139,  139,  139,
      139,  109,  139,  139,  139,  139,  139,  139,  139,  139,

      139,  139,  139,  139,  123,  139,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,   58,  139,
      139,   41,  139,  139,  139,  139,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,  139,   39,
      139,  139,  139,  139,  139,  139,  139,   61,  139,  139,
      139,  139,  139,  139,  139,    5,  139,  139,  139,  139,
      139,   37,  111,  139,  139,  139,  139,  139,  139,  139,
       23,  139,  139,  139,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,  139,
      132,  127,  134,  131,  136,  135,  128,  130,  133,  129,
      139,   31,  139,  139,  139,  139,   40,  139,  139,  139,

      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
       74,  139,  108,  139,  139,   97,  139,  139,   60,  139,
      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
       42,  139,   51,  139,  139,   21,   28,   62,  139,  139,
      139,  139,  139,  139,  139,  139,  139,   22,   53,  139,
      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
      110,   50,  139,  139,  121,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
      139,  139,  139,  139,  139,   59,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,   98,  139,
      139,  139,  139,  139,  139,  139,  120,  139,  139,  139,

      139,  139,  139,   81,  139,  139,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,  139,  104,
      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
       26,  139,  139,  139,  139,  139,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,   75,  139,
      139,  139,  124,  139,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,  139,  139,  139,
      139,  139,  139,  139,    9,  139,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,   52,  139,
       33,    7,  139,  139,  139,  139,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,   95,   83,
      139,  139,  139,  139,  139,  139,   79,  139,  139,  139,
      139,   65,  139,  139,  139,  139,  139,  139,  139,  139,

      139,  139,   20,  139,  139,  139,  139,  139,  139,  139,
      139,  139,  139,  112,  139,  139,   10,  139,  139,  139,
      139,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,  139,  139,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,   71,  139,  139,
      139,  139,  139,  139,   52,  102,  139,  139,  139,  139,
      139,  139,    6,  107,   64,  139,  139,  139,  139,  139,
      139,   84,  139,  139,  139,   90,  139,  139,  139,  125,
      139,  139,    8,   66,  139,  139,   30,  139,  139,  139,
      139,  139,  101,   27,  139,  139,  139,  139,  139,  139,
      113,  139,  139,  139,  103,   44,  139,  139,  139,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,  139,   57,  139,  139,  139,  139,   40,
       19,  139,  139,   45,  139,  139,   38,   70,  100,  139,
      139,  139,  139,   29,  139,   36,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
      139,  139,  139,   51,  139,  139,  139,  139,  139,  139,

       26,   46,   12,  139,   53,   56,  139,  139,  139,  139,
      139,  139,  114,  139,   50,   17,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,   43,  139,
      139,  139,  139,  139,  139,   48,  139,  139,  139,  139,
       63,   11,   34,   35,  139,  139,  139,  139,  139,  139,

      139,  139,  139,  139,   88,  139,   93,  139,   87,  139,
       89,  104,  139,  139,  139,  139,   47,  139,  139,  139,
      139,  115,  139,  139,  139,  139,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,  139,   67,   14,  119,  139,  105,  139,
      139,   68,  139,  139,   99,  139,  107,  139,  139,  139,
      139,   82,   86,  139,  139,  139,  139,  139,   13,  139,

       61,   72,  139,   16,   15,  139,  139,  139,   18,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,  139,  139,  139,  139,  139,
      139,  139,  139,  139,  139,  139,  139,   90,  139,   62,
      139,   55,  116,  139,  139,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,   31,  139,  139,   54,  139,
       25,   78,   80,  139,   91,   85,   93,   94,  139,  139,

      139,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,  106,   49,  139,
      139,  139,  117,  139,    4,    4,    4,    4,    4,    4,
        4,   69,  139,  139,  118,    4,    4,    4,    4,   92,
       30,    4,    4,    0
    } ;

static yyconst flex_int32_t yy_ec[256] =
    {   0,
        1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
        1,    1,    2,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    2,    1,    4,    5,    1,    1,    1,    6,    1,
        1,    7,    1,    8,    9,    1,    1,   10,   10,   11,
       12,   13,   14,   10,   10,   15,   10,    8,    8,    1,
       16,    1,    1,    1,   17,    1,    1,   18,   19,    1,
        1,    1,   20,    1,   21,    1,   22,   23,   24,   25,
        1,   26,   27,   28,   29,    1,    1,    1,    1,    1,
        1,   30,    1,    1,   31,    1,   32,   33,   34,   35,

       36,   37,   38,   39,   40,    1,   41,   42,   43,   44,
       45,   46,   47,   48,   49,   50,   51,   52,   53,   54,
       55,   56,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,

        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    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 flex_int32_t yy_meta[57] =
    {   0,
        1,    2,    2,    1,    1,    1,    1,    2,    1,    1,
        1,    1,    1,    1,    1,    2,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    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 flex_int16_t yy_base[1556] =
    {   0,
        0,    0,   56,    0, 1667, 1666, 1711,    0, 1708, 1714,
      111,  114,  118,    0, 1714,  125,  135, 1714,  100, 1681,
     1686, 1682, 1688, 1681, 1679, 1685, 1699,  110,  110,   84,
      121,  114,  130, 1652,  135,  135,   82,  137,  141,  138,
      139,  155, 1648,   95,  169,  153,  103, 1659,  159,    0,
      218,  225,  229,    0,  236,  246,  177, 1670, 1675, 1671,
     1677, 1670, 1668, 1674, 1688,  221,  162,  177,  232,  225,
      241, 1641,  177,  195,  206,  242,  249,  221,  246,  259,
     1637,  207,  273,  281,  214, 1648,  238,  285,    0, 1685,
      332, 1682,    0,  329,  130, 1714,  336,  347, 1679,    0,

      357, 1660, 1655, 1656, 1664, 1656, 1657, 1653, 1653, 1651,
     1643,  255, 1629, 1623, 1622, 1620, 1627, 1633, 1636, 1631,
     1629, 1616, 1619, 1611, 1619, 1613,  190, 1611, 1609, 1607,
      175, 1608, 1607, 1607,  251, 1622,  245,    0,  267, 1608,
     1609, 1601,  268, 1618, 1606, 1604, 1603,  340, 1604, 1602,
      301, 1598, 1594, 1607, 1590,  312,  354, 1600, 1586, 1593,
     1591,  263, 1591, 1595, 1584, 1596, 1600,  304, 1583, 1581,
     1593, 1585,    0, 1595, 1591, 1589, 1592,  348, 1573,    0,
      398,    0,  395,  402,  413,    0,  423, 1598, 1593, 1594,
     1602, 1594, 1595, 1591, 1591, 1589, 1581,  307, 1567, 1561,

     1560, 1558, 1565, 1571, 1574, 1569, 1567, 1554, 1557, 1549,
     1557, 1551,  362, 1549, 1547, 1545,  336, 1546, 1545, 1545,
      380, 1560,  335,    0,  359, 1546, 1547, 1539,  375, 1556,
     1544, 1542, 1541,  406, 1542, 1540,  380, 1536, 1532, 1545,
     1528,  414,  425, 1538, 1524, 1531, 1529,  376, 1529, 1533,
     1522, 1534, 1538,  389, 1521, 1519, 1531, 1523,    0, 1533,
     1529, 1527, 1530,  379, 1511, 1511, 1714,  441, 1714, 1534,
     1534, 1534, 1531, 1530, 1528,  353, 1528, 1525,    0,    0,
     1511,    0, 1504,  406, 1515, 1504, 1497, 1512, 1502, 1501,
     1511,    0, 1496, 1505, 1490, 1495, 1487, 1501, 1486, 1501,

     1485, 1498, 1498, 1499,    0, 1494, 1489, 1492, 1481, 1490,
     1485, 1478, 1490, 1476, 1481, 1474, 1487, 1481,    0, 1481,
     1476,    0, 1470, 1475,  420, 1469,  430, 1477, 1475, 1470,
     1469, 1476, 1471,  423, 1466, 1462, 1456, 1467, 1462,    0,
     1452, 1463, 1461, 1456,  447, 1447, 1446,  442, 1451,  431,
     1446, 1445, 1446, 1442, 1438,    0, 1436, 1442, 1441, 1436,
     1442,    0,  445, 1444, 1441, 1434, 1445, 1446, 1437, 1430,
        0, 1427, 1432, 1436, 1449, 1449, 1449, 1446, 1445, 1443,
      472, 1443, 1440,    0,    0, 1426,    0, 1419,  448, 1430,
     1419, 1412, 1427, 1417, 1416, 1426,    0, 1411, 1420, 1405,

     1410, 1402, 1416, 1401, 1416, 1400, 1413, 1413, 1414,    0,
     1409, 1404, 1407, 1396, 1405, 1400, 1393, 1405, 1391, 1396,
     1389, 1402, 1396,    0, 1396, 1391,    0, 1385, 1390,  441,
     1384,  452, 1392, 1390, 1385, 1384, 1391, 1386,  446, 1381,
     1377, 1371, 1382, 1377,    0, 1367, 1378, 1376, 1371,  487,
     1362, 1361,  446, 1366,  454, 1361, 1360, 1361, 1357, 1353,
        0, 1351, 1357, 1356, 1351, 1357,    0,  468, 1359, 1356,
     1349, 1360, 1361, 1352, 1345,    0, 1342, 1347, 1351, 1340,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
     1339, 1351, 1347, 1351, 1338, 1342, 1373, 1336, 1329,  344,

     1337, 1332, 1333, 1328, 1324, 1335, 1334, 1336, 1335, 1324,
        0, 1327,    0, 1320, 1318,    0, 1330, 1315,    0, 1322,
     1323, 1327, 1311, 1309, 1323, 1309, 1312, 1304, 1305, 1303,
     1305, 1310, 1315, 1307, 1306, 1299, 1294, 1314, 1297, 1309,
        0, 1298,  475, 1302,  461,    0,    0,  313, 1290, 1295,
     1305, 1302, 1292, 1286, 1295,  467, 1299,    0,  476, 1300,
     1299,  474, 1291, 1294, 1281, 1282, 1282, 1290, 1280, 1288,
        0, 1279, 1273, 1281,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0, 1271, 1283, 1279, 1283, 1270,
     1274, 1305, 1268, 1261,  418, 1269, 1264, 1265, 1260, 1256,

     1267, 1266, 1268, 1267, 1256,    0, 1259,    0, 1252, 1250,
        0, 1262, 1247,    0, 1254, 1255, 1259, 1243, 1241, 1255,
     1241, 1244, 1236, 1237, 1235, 1237, 1242, 1247, 1239, 1238,
     1231, 1226, 1246, 1229, 1241,    0, 1230,  480, 1234,  471,
        0,    0,  478, 1222, 1227, 1237, 1234, 1224, 1218, 1227,
      477, 1231,    0,  486, 1232, 1231,  486, 1223, 1226, 1213,
     1214, 1214, 1222, 1212, 1220,    0, 1211, 1205, 1213,    0,
      508, 1206, 1207, 1208, 1213,    0, 1216, 1204, 1202, 1203,
     1208, 1193, 1197,  480, 1203, 1196, 1199,  497,    0, 1190,
     1203, 1196, 1199,  490, 1194, 1185, 1195, 1196, 1188, 1193,

     1183, 1183, 1192,    0, 1179, 1188, 1189, 1173, 1187, 1184,
     1173, 1178, 1181, 1167, 1167,  130,  156,  187,  256,  291,
      405,  492,  491,  485,  492,  506,  490,  497,  503,  496,
      511,  496,  498,  501,  516,  506,  517,  508,  522,  510,
      511,  509,  515,  515,  505,  517,  529,  526,    0,  514,
      520,  535,    0,  524,  523,  526,  529,  536,    0,  541,
      531,  531,  534,  541,  528,  534,  536,  543,  539,  544,
      553,    0,  538,  553,  549,  554,  554,  552,  545,  557,
      561,  555,  562,  554,  556,  567,    0,  557,  568,  571,
      558,  574,  573,  564,  571,  576,  564,  566,  572,  576,

      575,  574,  586,  575,  579,  578,  572,  579,  593,  576,
      583,  588,  581,  596,  580,  582,  585,  600,  590,  601,
      592,  606,  594,  595,  593,  599,  599,  589,  600,  612,
      609,    0,  597,  603,  618,    0,  607,  607,  621,  604,
      615,  613,  615,  623,    0,  609,  618,  629,  616,  631,
      632,  629,  634,  632,  626,  624,  630,  631,  623,  625,
        0,    0,  642,  643,  643,  632,  636,  634,  644,  647,
      634,  649,  643,  650,  644,  648,  649,  653,    0,    0,
      640,  656,  677,  653,  661,  649,    0,  647,  657,  650,
      664,    0,  651,  658,  654,  665,  661,  660,  657,  663,

      677,  674,    0,  675,  662,  678,  665,  672,  665,  666,
      668,  676,  682,    0,  671,  674,    0,  673,  679,  682,
      688,  695,  678,  689,  687,  689,  697,    0,  683,  692,
      703,  690,  705,  706,  703,  708,  706,  700,  698,  704,
      705,  697,  699,    0,    0,  716,  717,  717,  706,  710,
      708,  718,  721,  708,  723,  717,  724,  718,  722,  723,
      727,    0,    0,  714,  730,  751,  727,  735,  723,    0,
      721,  731,  724,  738,    0,  725,  732,  728,  739,  735,
      734,  731,  737,  751,  748,    0,  749,  736,  752,  739,
      746,  739,  740,  742,  750,  756,    0,  745,  748,    0,

      747,  753,  756,  762,  753,  759,  763,  761,  773,  766,
      793,  759,  769,  760,  775,  769,  764,    0,  772,  773,
      774,  774,  775,  763,    0,    0,  786,  779,  780,  774,
      773,  782,    0,  781,    0,  791,  796,  793,  780,  786,
      800,    0,  799,  797,  799,  803,  787,  793,  805,    0,
      790,  806,    0,    0,  798,  793,  808,  809,  814,  807,
      806,  807,    0,    0,  801,  803,  802,  817,  810,  811,
      822,  812,  822,  814,    0,    0,  818,  825,  813,  820,
      824,  822,  834,  827,  855,  821,  831,  822,  837,  831,
      826,    0,  834,  835,  836,  836,  837,  825,    0,    0,

      848,  841,  842,  836,  835,  844,    0,  843,    0,  853,
      858,  855,  842,  848,  862,    0,  861,  859,  861,  865,
      849,  855,  867,    0,  852,  868,    0,    0,  860,  855,
      870,  871,  876,  869,  868,  869,    0,    0,  863,  865,
      864,  879,  872,  873,  884,  874,  884,  876,    0,    0,
      880,  887,  875,  890,    0,  892,  887,  888,  897,    0,
        0,  879,  881,    0,  897,  885,    0,    0,    0,  903,
      896,  901,  902,    0,  903,  927,  893,  911,  909,  902,
      904,  905,  916,  903,  908,  903,  910,  919,  914,  919,
      905,  909,  910,    0,  924,  925,  918,  929,  922,  929,

        0,    0,    0,  930,    0,    0,  933,  934,  928,  938,
      927,  924,    0,  931,    0,    0,    0,  940,  935,  936,
      945,    0,    0,  926,  928,    0,  944,  932,    0,    0,
        0,  950,  943,  948,  949,    0,  950,  974,  940,  958,
      956,  949,  951,  952,  963,  950,  955,  950,  957,  966,
      961,  966,  952,  956,  957,    0,  971,  972,  965,  976,
      969,  976,    0,    0,    0,  977,    0,    0,  980,  981,
      975,  985,  974,  971,    0,  978,    0,    0,    0,  989,
      972,  981,  975,  989,  977,    0,  974,  988,  979,  988,
        0,    0,    0,    0,  979,  993,  993,  998, 1003,  996,

      997,  988, 1003,  998,    0,  990,  997,  993,    0, 1000,
        0,    0, 1011,  998,  997,  998,    0, 1000, 1001, 1015,
     1016,    0, 1003, 1010, 1009, 1007, 1025, 1008, 1017, 1011,
     1025, 1013,    0, 1010, 1024, 1015, 1024,    0,    0,    0,
        0, 1015, 1029, 1029, 1034, 1039, 1032, 1033, 1024, 1039,
     1034,    0, 1026, 1033, 1029,    0, 1036,    0,    0, 1047,
     1034, 1033, 1034,    0, 1036, 1037, 1051, 1052,    0, 1039,
     1046, 1045, 1043, 1043,    0,    0,    0, 1046,    0, 1050,
     1052,    0, 1057, 1085,    0, 1056,    0, 1061, 1070, 1051,
     1053,    0,    0, 1056, 1071, 1058, 1074, 1059,    0, 1070,

        0,    0, 1062,    0,    0, 1073, 1081, 1066,    0, 1065,
        0,    0,    0, 1068,    0, 1072, 1074,    0, 1079, 1107,
        0, 1078,    0, 1083, 1092, 1073, 1075,    0,    0, 1078,
     1093, 1080, 1096, 1081,    0, 1092,    0,    0, 1084,    0,
        0, 1095, 1103, 1088,    0, 1101, 1102, 1091, 1091, 1098,
     1093, 1101, 1095, 1109, 1097, 1108, 1112,    0, 1113,    0,
     1116,    0,    0, 1108, 1112, 1117, 1118, 1107, 1107, 1114,
     1109, 1117, 1111, 1125, 1113, 1124, 1128,    0, 1129,    0,
     1132,    0,    0, 1124, 1128,    0, 1134, 1135,    0, 1131,
        0,    0,    0, 1124,    0,    0,    0,    0, 1141, 1138,

     1131,    0, 1141, 1142,    0, 1138,    0,    0,    0, 1131,
        0,    0,    0,    0, 1148, 1145, 1138,    0,    0, 1133,
     1148, 1135,    0, 1136,    0,    0, 1137, 1152, 1139,    0,
     1140,    0, 1156, 1156,    0,    0, 1158, 1158,    0,    0,
        0,    0,    0, 1714, 1194, 1195, 1197, 1199, 1201, 1202,
     1204, 1206, 1208, 1210, 1212
    } ;

static yyconst flex_int16_t yy_def[1556] =
    {   0,
     1544,    1, 1544,    3,    1,    1, 1544, 1545, 1544, 1544,
     1546, 1547, 1548, 1545, 1544, 1545, 1545, 1544, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1549,
     1550, 1551, 1552, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1545, 1545, 1544,
     1546, 1553, 1545, 1547, 1554, 1544, 1547, 1548, 1555, 1545,

     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1549,
     1550, 1549, 1551, 1551, 1552, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,

     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1545, 1544, 1554, 1544, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,

     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,

     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,

     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,

     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,

     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,

     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,

     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,

     1549, 1549, 1549, 1549, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,

     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,

     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,

     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,

     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1545, 1545, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,

     1545, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1545, 1545, 1545,
     1545, 1545, 1545, 1545, 1549, 1549, 1549, 1549, 1549, 1549,
     1549, 1545, 1545, 1545, 1545, 1549, 1549, 1549, 1549, 1545,
     1545, 1549, 1549,    0, 1544, 1544, 1544, 1544, 1544, 1544,
     1544, 1544, 1544, 1544, 1544
    } ;

static yyconst flex_int16_t yy_nxt[1771] =
    {   0,
        8,    9,   10,   11,   12,   13,   14,   15,   16,   17,
       17,   17,   17,   17,   17,   18,   19,    8,   20,   21,
       22,    8,    8,   23,   24,   25,   26,    8,    8,   27,
        8,   28,   29,   30,   31,   32,   33,   34,   35,   36,
       37,   38,   39,   40,   41,   42,   43,   44,   45,   46,
       47,   48,   49,    8,    8,    8,   50,    9,   10,   51,
       52,   53,   54,   15,   55,   56,   56,   56,   56,   56,
       56,   18,   57,   50,   58,   59,   60,   50,   50,   61,
       62,   63,   64,   50,   50,   65,   50,   66,   67,   68,
       69,   70,   71,   72,   73,   74,   75,   76,   77,   78,

       79,   80,   81,   82,   83,   84,   85,   86,   87,   50,
       50,   50,   92,   92,   93,   95,   96,  139,   92,   99,
       99,   95,  118,  100,  102,   99,   92,  140,  103,   95,
      159,  119,   96,   99,  101,  101,  101,  101,  101,  101,
      160,  115,  175,   97,  101,  101,  101,  101,  101,  101,
      111,  176,  120,  112,  116,  113,  121,  124,  117,  268,
      114,  128,  125,  126,  122,  129,  133,  127,  123,  135,
      134,  130,  885,  150,  131,  144,  141,  136,  137,  142,
      145,  143,  148,  138,  151,  146,  153,  149,  152,  147,
      178,  171,  172,  201,  154,  886,  155,  173,  179,  156,

      174,  188,  157,  161,  162,  189,  202,  163,  219,  164,
      203,  165,  220,  166,  167,  204,  302,  168,  169,   92,
       92,  182,  303,  170,  205,   92,   95,   96,  887,  221,
       99,   99,   95,   92,  186,  297,   99,  222,  223,  298,
       95,  225,  245,  224,   99,  187,  187,  187,  187,  187,
      187,  226,  246,  261,  184,  187,  187,  187,  187,  187,
      187,  197,  262,  206,  198,  234,  199,  207,  210,  264,
      235,  200,  214,  211,  212,  208,  215,  265,  213,  209,
      236,  227,  216,  230,  228,  217,  229,  307,  231,  280,
      239,  237,  308,  232,  310,  238,  311,  233,  240,  888,

      241,  317,  312,  242,  281,  318,  243,  247,  248,  282,
      355,  249,  356,  250,  313,  251,  266,  252,  253,  257,
      258,  254,  255,  889,  154,  259,  155,  256,  260,  156,
       95,   96,  157,   92,   92,   93,   95,   95,   96,   92,
      338,  385,  362,   95,   95,  363,  725,   92,   99,   99,
      339,   95,  100,  344,   99,  726,  386,  345,   97,  346,
      347,  387,   99,  487,  488,   97,  101,  101,  101,  101,
      101,  101,  323,  324,  325,  326,  327,  407,  681,  328,
      329,  330,  331,  408,  415,  332,  416,  333,  334,  348,
      335,  372,  682,  349,  417,  373,   95,   96,  350,   92,

       92,  182,   95,   95,   96,   92,  418,  402,  422,   95,
       95,  403,  423,   92,   99,   99,  412,   95,  186,  443,
       99,  413,  477,  460,  184,  461,  478,  467,   99,  444,
      468,  184,  187,  187,  187,  187,  187,  187,  428,  429,
      430,  431,  432,   96,  492,  433,  434,  435,  436,  890,
      482,  437,  764,  438,  439,  449,  440,  487,  488,  450,
      453,  451,  452,  526,  454,  529,  765,  527,  538,  455,
      268,  530,  539,  549,  531,  550,  552,  644,  562,  645,
      553,  563,  582,  583,  621,  564,  587,  624,  622,  720,
      565,  633,  577,  625,  803,  634,  626,  582,  583,  647,

      723,  657,  734,  648,  658,  724,  735,  737,  659,  742,
      806,  808,  817,  660,  738,  807,  818,  820,  743,  739,
      809,  825,  720,  850,  821,  851,  863,  721,  855,  822,
      826,  856,  804,  891,  892,  893,  894,  895,  857,  896,
      897,  864,  898,  899,  900,  858,  901,  902,  903,  904,
      905,  906,  907,  908,  909,  910,  911,  912,  913,  914,
      838,  915,  916,  917,  918,  919,  920,  921,  922,  923,
      924,  925,  926,  927,  928,  929,  930,  931,  932,  933,
      935,  934,  936,  937,  938,  942,  943,  939,  944,  945,
      946,  948,  949,  950,  940,  951,  952,  953,  954,  955,

      956,  941,  957,  958,  959,  947,  960,  961,  962,  963,
      964,  965,  966,  967,  968,  969,  970,  971,  972,  973,
      974,  975,  976,  977,  978,  979,  980,  981,  982,  983,
      984,  985,  986,  987,  988,  989,  990,  991,  992,  993,
      994,  995,  996,  997,  998,  999, 1000, 1001, 1002, 1003,
     1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013,
     1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023,
     1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033,
     1034, 1035, 1036, 1037, 1038, 1040, 1041, 1042, 1043, 1044,
     1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1039, 1053,

     1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063,
     1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073,
     1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083,
     1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093,
     1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103,
     1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1114,
     1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124,
     1125, 1126, 1113, 1127, 1128, 1129, 1130, 1131, 1132, 1133,
     1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143,
     1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153,

     1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163,
     1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173,
     1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183,
     1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193,
     1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203,
     1204, 1205, 1206, 1207, 1208, 1209, 1211, 1212, 1213, 1214,
     1215, 1216, 1217, 1218, 1219, 1220, 1221, 1210, 1222, 1223,
     1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233,
     1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243,
     1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253,

     1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263,
     1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1273, 1274,
     1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1272,
     1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293,
     1294, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304,
     1305, 1306, 1307, 1308, 1309, 1310, 1311, 1295, 1312, 1313,
     1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323,
     1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333,
     1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1343, 1344,
     1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354,

     1355, 1356, 1357, 1358, 1342, 1359, 1360, 1361, 1362, 1363,
     1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373,
     1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383,
     1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393,
     1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403,
     1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413,
     1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423,
     1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433,
     1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443,
     1444, 1445, 1446, 1447, 1448, 1449, 1450, 1293, 1294, 1451,

     1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461,
     1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1340,
     1341, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479,
     1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489,
     1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499,
     1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509,
     1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519,
     1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529,
     1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539,
     1540, 1541, 1542, 1543,   89,   91,   91,   94,   94,   98,

       98,  180,  181,  181,  183,  183,  185,  185,   92,   92,
       95,   95,   99,   99,  884,  883,  882,  881,  880,  879,
      878,  877,  876,  875,  874,  873,  872,  871,  870,  869,
      868,  867,  866,  865,  862,  861,  860,  859,  854,  853,
      852,  849,  848,  847,  846,  845,  844,  843,  842,  841,
      840,  839,  837,  836,  835,  834,  833,  832,  831,  830,
      829,  828,  827,  824,  823,  819,  816,  815,  814,  813,
      812,  811,  810,  805,  802,  801,  800,  799,  798,  797,
      796,  795,  794,  793,  792,  791,  790,  789,  788,  787,
      786,  785,  784,  783,  782,  781,  780,  779,  778,  777,

      776,  775,  774,  773,  772,  771,  770,  769,  768,  767,
      766,  763,  762,  761,  760,  759,  758,  757,  756,  755,
      754,  753,  752,  751,  750,  749,  748,  747,  746,  745,
      744,  741,  740,  736,  733,  732,  731,  730,  729,  728,
      727,  722,  719,  718,  717,  716,  715,  714,  713,  712,
      711,  710,  709,  708,  707,  706,  705,  704,  703,  702,
      701,  700,  699,  698,  697,  696,  695,  694,  693,  692,
      691,  690,  689,  688,  687,  686,  685,  684,  683,  680,
      679,  678,  677,  676,  675,  674,  673,  672,  671,  670,
      669,  668,  667,  666,  665,  664,  663,  662,  661,  656,

      655,  654,  653,  652,  651,  585,  584,  650,  649,  646,
      643,  642,  641,  640,  639,  638,  637,  445,  581,  636,
      635,  632,  631,  630,  629,  628,  627,  623,  620,  619,
      618,  617,  616,  615,  614,  613,  580,  612,  611,  610,
      609,  579,  608,  607,  606,  605,  604,  603,  602,  601,
      600,  599,  598,  578,  597,  596,  595,  594,  593,  592,
      591,  590,  589,  588,  576,  586,  585,  584,  581,  580,
      579,  578,  577,  576,  575,  574,  573,  572,  571,  570,
      569,  568,  567,  566,  561,  560,  559,  558,  557,  556,
      490,  489,  555,  554,  551,  548,  547,  546,  545,  544,

      543,  542,  340,  486,  541,  540,  537,  536,  535,  534,
      533,  532,  528,  525,  524,  523,  522,  521,  520,  519,
      518,  485,  517,  516,  515,  514,  484,  513,  512,  511,
      510,  509,  508,  507,  506,  505,  504,  503,  483,  502,
      501,  500,  499,  498,  497,  496,  495,  494,  493,  481,
      491,  490,  489,  486,  485,  484,  483,  482,  481,  480,
      479,  476,  475,  474,  473,  472,  471,  470,  469,  466,
      465,  464,  463,  462,  459,  458,  457,  456,  448,  447,
      446,  445,  442,  441,  427,  426,  425,  424,  421,  420,
      419,  414,  411,  410,  409,  406,  405,  404,  401,  400,

      399,  398,  397,  396,  395,  394,  393,  392,  391,  390,
      389,  388,  384,  383,  382,  381,  380,  379,  378,  377,
      376,  375,  374,  371,  370,  369,  368,  367,  366,  365,
      364,  361,  360,  359,  358,  357,  354,  353,  352,  351,
      343,  342,  341,  340,  337,  336,  322,  321,  320,  319,
      316,  315,  314,  309,  306,  305,  304,  301,  300,  299,
      296,  295,  294,  293,  292,  291,  290,  289,  288,  287,
      286,  285,  284,  283,  279,  278,  277,  276,  275,  274,
      273,  272,  271,  270,  269,  267,   90,  263,  244,  218,
       96,  196,  195,  194,  193,  192,  191,  190,  177,  158,

      132,   96,  110,  109,  108,  107,  106,  105,  104,   90,
     1544,   88,   88,    7, 1544, 1544, 1544, 1544, 1544, 1544,
     1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544,
     1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544,
     1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544,
     1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544,
     1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544
    } ;

static yyconst flex_int16_t yy_chk[1771] =
    {   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,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,

        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,   11,   11,   11,   12,   12,   37,   11,   13,
       13,   12,   30,   13,   19,   13,   11,   37,   19,   12,
       44,   30,   95,   13,   16,   16,   16,   16,   16,   16,
       44,   29,   47,   12,   17,   17,   17,   17,   17,   17,
       28,   47,   31,   28,   29,   28,   31,   32,   29,   95,
       28,   33,   32,   32,   31,   33,   35,   32,   31,   36,
       35,   33,  716,   41,   33,   39,   38,   36,   36,   38,
       39,   38,   40,   36,   41,   39,   42,   40,   41,   39,
       49,   46,   46,   67,   42,  717,   42,   46,   49,   42,

       46,   57,   42,   45,   45,   57,   67,   45,   73,   45,
       67,   45,   73,   45,   45,   68,  131,   45,   45,   51,
       51,   51,  131,   45,   68,   51,   52,   52,  718,   74,
       53,   53,   52,   51,   53,  127,   53,   74,   74,  127,
       52,   75,   82,   74,   53,   55,   55,   55,   55,   55,
       55,   75,   82,   85,   52,   56,   56,   56,   56,   56,
       56,   66,   85,   69,   66,   78,   66,   69,   70,   87,
       78,   66,   71,   70,   70,   69,   71,   87,   70,   69,
       79,   76,   71,   77,   76,   71,   76,  135,   77,  112,
       80,   79,  135,   77,  137,   79,  137,   77,   80,  719,

       80,  143,  139,   80,  112,  143,   80,   83,   83,  112,
      162,   83,  162,   83,  139,   83,   88,   83,   83,   84,
       84,   83,   83,  720,   88,   84,   88,   83,   84,   88,
       94,   94,   88,   91,   91,   91,   94,   97,   97,   91,
      151,  198,  168,   97,   94,  168,  548,   91,   98,   98,
      151,   97,   98,  156,   98,  548,  198,  156,   94,  156,
      156,  198,   98,  276,  276,   97,  101,  101,  101,  101,
      101,  101,  148,  148,  148,  148,  148,  217,  500,  148,
      148,  148,  148,  217,  223,  148,  223,  148,  148,  157,
      148,  178,  500,  157,  225,  178,  183,  183,  157,  181,

      181,  181,  183,  184,  184,  181,  225,  213,  229,  184,
      183,  213,  229,  181,  185,  185,  221,  184,  185,  237,
      185,  221,  264,  248,  183,  248,  264,  254,  185,  237,
      254,  184,  187,  187,  187,  187,  187,  187,  234,  234,
      234,  234,  234,  268,  284,  234,  234,  234,  234,  721,
      284,  234,  595,  234,  234,  242,  234,  345,  345,  242,
      243,  242,  242,  325,  243,  327,  595,  325,  334,  243,
      268,  327,  334,  348,  327,  348,  350,  453,  363,  453,
      350,  363,  381,  381,  430,  363,  389,  432,  430,  543,
      363,  439,  389,  432,  638,  439,  432,  450,  450,  455,

      545,  468,  556,  455,  468,  545,  556,  559,  468,  562,
      640,  643,  651,  468,  559,  640,  651,  654,  562,  559,
      643,  657,  671,  684,  654,  684,  694,  543,  688,  654,
      657,  688,  638,  722,  723,  724,  725,  726,  688,  727,
      728,  694,  729,  730,  731,  688,  732,  733,  734,  735,
      736,  737,  738,  739,  740,  741,  742,  743,  744,  745,
      671,  746,  747,  748,  750,  751,  752,  754,  755,  756,
      757,  758,  760,  761,  762,  763,  764,  765,  766,  767,
      768,  767,  769,  770,  771,  773,  774,  771,  775,  776,
      777,  778,  779,  780,  771,  781,  782,  783,  784,  785,

      786,  771,  788,  789,  790,  777,  791,  792,  793,  794,
      795,  796,  797,  798,  799,  800,  801,  802,  803,  804,
      805,  806,  807,  808,  809,  810,  811,  812,  813,  814,
      815,  816,  817,  818,  819,  820,  821,  822,  823,  824,
      825,  826,  827,  828,  829,  830,  831,  833,  834,  835,
      837,  838,  839,  840,  841,  842,  843,  844,  846,  847,
      848,  849,  850,  851,  852,  853,  854,  855,  856,  857,
      858,  859,  860,  863,  864,  865,  866,  867,  868,  869,
      870,  871,  872,  873,  874,  875,  876,  877,  878,  881,
      882,  883,  884,  885,  886,  888,  889,  890,  874,  891,

      893,  894,  895,  896,  897,  898,  899,  900,  901,  902,
      904,  905,  906,  907,  908,  909,  910,  911,  912,  913,
      915,  916,  918,  919,  920,  921,  922,  923,  924,  925,
      926,  927,  929,  930,  931,  932,  933,  934,  935,  936,
      937,  938,  939,  940,  941,  942,  943,  946,  947,  948,
      949,  950,  951,  952,  953,  954,  955,  956,  957,  958,
      959,  960,  961,  964,  965,  966,  967,  968,  969,  971,
      972,  973,  957,  974,  976,  977,  978,  979,  980,  981,
      982,  983,  984,  985,  987,  988,  989,  990,  991,  992,
      993,  994,  995,  996,  998,  999, 1001, 1002, 1003, 1004,

     1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014,
     1015, 1016, 1017, 1019, 1020, 1021, 1022, 1023, 1024, 1027,
     1028, 1029, 1030, 1031, 1032, 1034, 1036, 1037, 1038, 1039,
     1040, 1041, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1051,
     1052, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1065,
     1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1077,
     1078, 1079, 1080, 1081, 1082, 1083, 1084, 1071, 1085, 1086,
     1087, 1088, 1089, 1090, 1091, 1093, 1094, 1095, 1096, 1097,
     1098, 1101, 1102, 1103, 1104, 1105, 1106, 1108, 1110, 1111,
     1112, 1113, 1114, 1115, 1117, 1118, 1119, 1120, 1121, 1122,

     1123, 1125, 1126, 1129, 1130, 1131, 1132, 1133, 1134, 1135,
     1136, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147,
     1148, 1151, 1152, 1153, 1154, 1156, 1157, 1158, 1159, 1145,
     1162, 1163, 1165, 1166, 1170, 1171, 1172, 1173, 1175, 1176,
     1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185,
     1186, 1187, 1188, 1189, 1190, 1191, 1192, 1176, 1193, 1195,
     1196, 1197, 1198, 1199, 1200, 1204, 1207, 1208, 1209, 1210,
     1211, 1212, 1214, 1218, 1219, 1220, 1221, 1224, 1225, 1227,
     1228, 1232, 1233, 1234, 1235, 1237, 1238, 1238, 1239, 1240,
     1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250,

     1251, 1252, 1253, 1254, 1238, 1255, 1257, 1258, 1259, 1260,
     1261, 1262, 1266, 1269, 1270, 1271, 1272, 1273, 1274, 1276,
     1280, 1281, 1282, 1283, 1284, 1285, 1287, 1288, 1289, 1290,
     1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304,
     1306, 1307, 1308, 1310, 1313, 1314, 1315, 1316, 1318, 1319,
     1320, 1321, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330,
     1331, 1332, 1334, 1335, 1336, 1337, 1342, 1343, 1344, 1345,
     1346, 1347, 1348, 1349, 1350, 1351, 1353, 1354, 1355, 1357,
     1360, 1361, 1362, 1363, 1365, 1366, 1367, 1368, 1370, 1371,
     1372, 1373, 1374, 1378, 1380, 1381, 1383, 1384, 1384, 1386,

     1388, 1389, 1390, 1391, 1394, 1395, 1396, 1397, 1398, 1400,
     1403, 1406, 1407, 1408, 1410, 1414, 1416, 1417, 1419, 1420,
     1420, 1422, 1424, 1425, 1426, 1427, 1430, 1431, 1432, 1433,
     1434, 1436, 1439, 1442, 1443, 1444, 1446, 1447, 1448, 1449,
     1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1459, 1461,
     1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473,
     1474, 1475, 1476, 1477, 1479, 1481, 1484, 1485, 1487, 1488,
     1490, 1494, 1499, 1500, 1501, 1503, 1504, 1506, 1510, 1515,
     1516, 1517, 1520, 1521, 1522, 1524, 1527, 1528, 1529, 1531,
     1533, 1534, 1537, 1538, 1545, 1546, 1546, 1547, 1547, 1548,

     1548, 1549, 1550, 1550, 1551, 1551, 1552, 1552, 1553, 1553,
     1554, 1554, 1555, 1555,  715,  714,  713,  712,  711,  710,
      709,  708,  707,  706,  705,  703,  702,  701,  700,  699,
      698,  697,  696,  695,  693,  692,  691,  690,  687,  686,
      685,  683,  682,  681,  680,  679,  678,  677,  675,  674,
      673,  672,  669,  668,  667,  665,  664,  663,  662,  661,
      660,  659,  658,  656,  655,  652,  650,  649,  648,  647,
      646,  645,  644,  639,  637,  635,  634,  633,  632,  631,
      630,  629,  628,  627,  626,  625,  624,  623,  622,  621,
      620,  619,  618,  617,  616,  615,  613,  612,  610,  609,

      607,  605,  604,  603,  602,  601,  600,  599,  598,  597,
      596,  594,  593,  592,  591,  590,  589,  588,  587,  586,
      574,  573,  572,  570,  569,  568,  567,  566,  565,  564,
      563,  561,  560,  557,  555,  554,  553,  552,  551,  550,
      549,  544,  542,  540,  539,  538,  537,  536,  535,  534,
      533,  532,  531,  530,  529,  528,  527,  526,  525,  524,
      523,  522,  521,  520,  518,  517,  515,  514,  512,  510,
      509,  508,  507,  506,  505,  504,  503,  502,  501,  499,
      498,  497,  496,  495,  494,  493,  492,  491,  480,  479,
      478,  477,  475,  474,  473,  472,  471,  470,  469,  466,

      465,  464,  463,  462,  460,  459,  458,  457,  456,  454,
      452,  451,  449,  448,  447,  446,  444,  443,  442,  441,
      440,  438,  437,  436,  435,  434,  433,  431,  429,  428,
      426,  425,  423,  422,  421,  420,  419,  418,  417,  416,
      415,  414,  413,  412,  411,  409,  408,  407,  406,  405,
      404,  403,  402,  401,  400,  399,  398,  396,  395,  394,
      393,  392,  391,  390,  388,  386,  383,  382,  380,  379,
      378,  377,  376,  375,  374,  373,  372,  370,  369,  368,
      367,  366,  365,  364,  361,  360,  359,  358,  357,  355,
      354,  353,  352,  351,  349,  347,  346,  344,  343,  342,

      341,  339,  338,  337,  336,  335,  333,  332,  331,  330,
      329,  328,  326,  324,  323,  321,  320,  318,  317,  316,
      315,  314,  313,  312,  311,  310,  309,  308,  307,  306,
      304,  303,  302,  301,  300,  299,  298,  297,  296,  295,
      294,  293,  291,  290,  289,  288,  287,  286,  285,  283,
      281,  278,  277,  275,  274,  273,  272,  271,  270,  266,
      265,  263,  262,  261,  260,  258,  257,  256,  255,  253,
      252,  251,  250,  249,  247,  246,  245,  244,  241,  240,
      239,  238,  236,  235,  233,  232,  231,  230,  228,  227,
      226,  222,  220,  219,  218,  216,  215,  214,  212,  211,

      210,  209,  208,  207,  206,  205,  204,  203,  202,  201,
      200,  199,  197,  196,  195,  194,  193,  192,  191,  190,
      189,  188,  179,  177,  176,  175,  174,  172,  171,  170,
      169,  167,  166,  165,  164,  163,  161,  160,  159,  158,
      155,  154,  153,  152,  150,  149,  147,  146,  145,  144,
      142,  141,  140,  136,  134,  133,  132,  130,  129,  128,
      126,  125,  124,  123,  122,  121,  120,  119,  118,  117,
      116,  115,  114,  113,  111,  110,  109,  108,  107,  106,
      105,  104,  103,  102,   99,   92,   90,   86,   81,   72,
       65,   64,   63,   62,   61,   60,   59,   58,   48,   43,

       34,   27,   26,   25,   24,   23,   22,   21,   20,    9,
        7,    6,    5, 1544, 1544, 1544, 1544, 1544, 1544, 1544,
     1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544,
     1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544,
     1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544,
     1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544,
     1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544
    } ;

static yy_state_type yy_last_accepting_state;
static char *yy_last_accepting_cpos;

extern int yy_flex_debug;
int yy_flex_debug = 0;

/* 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 "rcfile_l.l"
#line 2 "rcfile_l.l"

/*
 * rcfile_l.l -- lexer for the run control file
 *
 * For license terms, see the file COPYING in this directory.
 */
#include <string.h>

#include "config.h"
#include "fetchmail.h"
#include "rcfile_y.h"

int prc_lineno = 1;

#ifdef LEXDEBUG
#define SETSTATE(n)	do {BEGIN(n); if (yydebug) fprintf(stderr, "Entering lexer state %d\n", n);} while (0)
#else
#define SETSTATE(n)	BEGIN(n)
#endif /* LEXDEBUG */

/* this doesn't work with Linux lex, see the INSTALL file */

#line 1375 "rcfile_l.c"

#define INITIAL 0
#define NAME 1
#define AUTH 2

#ifndef YY_NO_UNISTD_H
/* Special case for "unistd.h", since it is non-ANSI. We include it way
 * down here because we want the user's section 1 to have been scanned first.
 * The user has a chance to override it with an option.
 */
#include <unistd.h>
#endif

#ifndef YY_EXTRA_TYPE
#define YY_EXTRA_TYPE void *
#endif

static int yy_init_globals (void );

/* Accessor methods to globals.
   These are made visible to non-reentrant scanners for convenience. */

int yylex_destroy (void );

int yyget_debug (void );

void yyset_debug (int debug_flag  );

YY_EXTRA_TYPE yyget_extra (void );

void yyset_extra (YY_EXTRA_TYPE user_defined  );

FILE *yyget_in (void );

void yyset_in  (FILE * in_str  );

FILE *yyget_out (void );

void yyset_out  (FILE * out_str  );

int yyget_leng (void );

char *yyget_text (void );

int yyget_lineno (void );

void yyset_lineno (int line_number  );

/* Macros after this point can all be overridden by user definitions in
 * section 1.
 */

#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
extern "C" int yywrap (void );
#else
extern int yywrap (void );
#endif
#endif

#ifndef yytext_ptr
static void yy_flex_strncpy (char *,yyconst char *,int );
#endif

#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * );
#endif

#ifndef YY_NO_INPUT

#ifdef __cplusplus
static int yyinput (void );
#else
static int input (void );
#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 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_LVALUE->yy_is_interactive ) \
		{ \
		int c = '*'; \
		int 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 \
		{ \
		errno=0; \
		while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
			{ \
			if( errno != EINTR) \
				{ \
				YY_FATAL_ERROR( "input in flex scanner failed" ); \
				break; \
				} \
			errno=0; \
			clearerr(yyin); \
			} \
		}\
\

#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

/* end tables serialization structures and prototypes */

/* Default declaration of generated scanner - a define so the user can
 * easily add parameters.
 */
#ifndef YY_DECL
#define YY_DECL_IS_OURS 1

extern int yylex (void);

#define YY_DECL int yylex (void)
#endif /* !YY_DECL */

/* 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

/** The main scanner function which does all the work.
 */
YY_DECL
{
	register yy_state_type yy_current_state;
	register char *yy_cp, *yy_bp;
	register int yy_act;
    
#line 32 "rcfile_l.l"


#line 1560 "rcfile_l.c"

	if ( !(yy_init) )
		{
		(yy_init) = 1;

#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 ) {
			yyensure_buffer_stack ();
			YY_CURRENT_BUFFER_LVALUE =
				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 >= 1545 )
					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] != 1714 );

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:
/* rule 1 can match eol */
YY_RULE_SETUP
#line 34 "rcfile_l.l"
{
			yytext[yyleng-1] = '\0';
			escapes(yytext+1, yytext);
			yyleng = strlen(yytext);
			yylval.sval = yytext;
                        SETSTATE(0);
			return STRING;
		}
	YY_BREAK
case 2:
/* rule 2 can match eol */
YY_RULE_SETUP
#line 42 "rcfile_l.l"
{
			yytext[yyleng-1] = '\0';
			escapes(yytext+1, yytext);
			yyleng = strlen(yytext);
			yylval.sval = yytext;
                        SETSTATE(0);
			return STRING;
		}
	YY_BREAK
case 3:
YY_RULE_SETUP
#line 51 "rcfile_l.l"
{ BEGIN(0); return WILDCARD; }
	YY_BREAK
case 4:
YY_RULE_SETUP
#line 53 "rcfile_l.l"
{
			static char *in;
			static size_t ins;

			if ((size_t)yyleng + 1 > ins) {
			    ins = yyleng + 1;
			    in = (char *)xrealloc(in, ins);
			}
			memcpy(in, yytext, yyleng);
			in[yyleng] = '\0';
			escapes(in, in);
			yyleng = strlen(in);
			yylval.sval = in;
                        SETSTATE(0);
			return STRING;
		}
	YY_BREAK
case 5:
YY_RULE_SETUP
#line 70 "rcfile_l.l"
{ return SET; }
	YY_BREAK
case 6:
YY_RULE_SETUP
#line 71 "rcfile_l.l"
{ return LOGFILE; }
	YY_BREAK
case 7:
YY_RULE_SETUP
#line 72 "rcfile_l.l"
{ return IDFILE; }
	YY_BREAK
case 8:
YY_RULE_SETUP
#line 73 "rcfile_l.l"
{ return PIDFILE; }
	YY_BREAK
case 9:
YY_RULE_SETUP
#line 74 "rcfile_l.l"
{ return DAEMON; }
	YY_BREAK
case 10:
YY_RULE_SETUP
#line 75 "rcfile_l.l"
{ return SYSLOG; }
	YY_BREAK
case 11:
YY_RULE_SETUP
#line 76 "rcfile_l.l"
{ return INVISIBLE; }
	YY_BREAK
case 12:
YY_RULE_SETUP
#line 77 "rcfile_l.l"
{ return SHOWDOTS; }
	YY_BREAK
case 13:
YY_RULE_SETUP
#line 78 "rcfile_l.l"
{ return POSTMASTER; }
	YY_BREAK
case 14:
YY_RULE_SETUP
#line 79 "rcfile_l.l"
{ return BOUNCEMAIL; }
	YY_BREAK
case 15:
YY_RULE_SETUP
#line 80 "rcfile_l.l"
{ return SPAMBOUNCE; }
	YY_BREAK
case 16:
YY_RULE_SETUP
#line 81 "rcfile_l.l"
{ return SOFTBOUNCE; }
	YY_BREAK
case 17:
YY_RULE_SETUP
#line 82 "rcfile_l.l"
{ return WARNINGS; }
	YY_BREAK
case 18:
YY_RULE_SETUP
#line 83 "rcfile_l.l"
{ return TRACEPOLLS; }
	YY_BREAK
case 19:
YY_RULE_SETUP
#line 85 "rcfile_l.l"
{ return DEFAULTS; }
	YY_BREAK
case 20:
YY_RULE_SETUP
#line 86 "rcfile_l.l"
{ return POLL; }
	YY_BREAK
case 21:
YY_RULE_SETUP
#line 87 "rcfile_l.l"
{ return POLL; }
	YY_BREAK
case 22:
YY_RULE_SETUP
#line 88 "rcfile_l.l"
{ return SKIP; }
	YY_BREAK
case 23:
YY_RULE_SETUP
#line 89 "rcfile_l.l"
{ return VIA; }
	YY_BREAK
case 24:
YY_RULE_SETUP
#line 90 "rcfile_l.l"
{ return AKA; }
	YY_BREAK
case 25:
YY_RULE_SETUP
#line 91 "rcfile_l.l"
{ return LOCALDOMAINS; }
	YY_BREAK
case 26:
YY_RULE_SETUP
#line 92 "rcfile_l.l"
{ return PROTOCOL; }
	YY_BREAK
case 27:
YY_RULE_SETUP
#line 93 "rcfile_l.l"
{ return SERVICE; }
	YY_BREAK
case 28:
YY_RULE_SETUP
#line 94 "rcfile_l.l"
{ return PORT; }
	YY_BREAK
case 29:
YY_RULE_SETUP
#line 95 "rcfile_l.l"
{ return INTERVAL; }
	YY_BREAK
case 30:
YY_RULE_SETUP
#line 96 "rcfile_l.l"
{ SETSTATE(AUTH); return AUTHENTICATE; }
	YY_BREAK
case 31:
YY_RULE_SETUP
#line 97 "rcfile_l.l"
{ SETSTATE(AUTH); return AUTHENTICATE; }
	YY_BREAK
case 32:
YY_RULE_SETUP
#line 98 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_ANY; return AUTHTYPE;}
	YY_BREAK
case 33:
YY_RULE_SETUP
#line 99 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_GSSAPI; return AUTHTYPE;}
	YY_BREAK
case 34:
YY_RULE_SETUP
#line 100 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_KERBEROS_V4; return AUTHTYPE;}
	YY_BREAK
case 35:
YY_RULE_SETUP
#line 101 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_KERBEROS_V5; return AUTHTYPE;}
	YY_BREAK
case 36:
YY_RULE_SETUP
#line 102 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_KERBEROS_V4; return AUTHTYPE;}
	YY_BREAK
case 37:
YY_RULE_SETUP
#line 103 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_SSH; return AUTHTYPE;}
	YY_BREAK
case 38:
YY_RULE_SETUP
#line 104 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_EXTERNAL; return AUTHTYPE;}
	YY_BREAK
case 39:
YY_RULE_SETUP
#line 105 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_OTP; return AUTHTYPE;}
	YY_BREAK
case 40:
YY_RULE_SETUP
#line 106 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_CRAM_MD5; return AUTHTYPE;}
	YY_BREAK
case 41:
YY_RULE_SETUP
#line 107 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_MSN; return AUTHTYPE;}
	YY_BREAK
case 42:
YY_RULE_SETUP
#line 108 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_NTLM; return AUTHTYPE;}
	YY_BREAK
case 43:
YY_RULE_SETUP
#line 109 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_PASSWORD; return AUTHTYPE;}
	YY_BREAK
case 44:
YY_RULE_SETUP
#line 110 "rcfile_l.l"
{ return TIMEOUT;}
	YY_BREAK
case 45:
YY_RULE_SETUP
#line 111 "rcfile_l.l"
{ return ENVELOPE; }
	YY_BREAK
case 46:
YY_RULE_SETUP
#line 112 "rcfile_l.l"
{ return QVIRTUAL; }
	YY_BREAK
case 47:
YY_RULE_SETUP
#line 113 "rcfile_l.l"
{ return PRINCIPAL; }
	YY_BREAK
case 48:
YY_RULE_SETUP
#line 114 "rcfile_l.l"
{ return ESMTPNAME; }
	YY_BREAK
case 49:
YY_RULE_SETUP
#line 115 "rcfile_l.l"
{ return ESMTPPASSWORD; }
	YY_BREAK
case 50:
YY_RULE_SETUP
#line 118 "rcfile_l.l"
{SETSTATE(NAME); return USERNAME; }
	YY_BREAK
case 51:
YY_RULE_SETUP
#line 119 "rcfile_l.l"
{SETSTATE(NAME); return PASSWORD; }
	YY_BREAK
case 52:
YY_RULE_SETUP
#line 120 "rcfile_l.l"
{ return FOLDER; }
	YY_BREAK
case 53:
YY_RULE_SETUP
#line 121 "rcfile_l.l"
{ return SMTPHOST; }
	YY_BREAK
case 54:
YY_RULE_SETUP
#line 122 "rcfile_l.l"
{ return FETCHDOMAINS; }
	YY_BREAK
case 55:
YY_RULE_SETUP
#line 123 "rcfile_l.l"
{ return SMTPADDRESS; }
	YY_BREAK
case 56:
YY_RULE_SETUP
#line 124 "rcfile_l.l"
{ return SMTPNAME; }
	YY_BREAK
case 57:
YY_RULE_SETUP
#line 125 "rcfile_l.l"
{ return SPAMRESPONSE; }
	YY_BREAK
case 58:
YY_RULE_SETUP
#line 126 "rcfile_l.l"
{ return MDA; }
	YY_BREAK
case 59:
YY_RULE_SETUP
#line 127 "rcfile_l.l"
{ return BSMTP; }
	YY_BREAK
case 60:
YY_RULE_SETUP
#line 128 "rcfile_l.l"
{ return LMTP; }
	YY_BREAK
case 61:
YY_RULE_SETUP
#line 129 "rcfile_l.l"
{ return PRECONNECT; }
	YY_BREAK
case 62:
YY_RULE_SETUP
#line 130 "rcfile_l.l"
{ return POSTCONNECT; }
	YY_BREAK
case 63:
YY_RULE_SETUP
#line 131 "rcfile_l.l"
{ return INTERFACE; }
	YY_BREAK
case 64:
YY_RULE_SETUP
#line 132 "rcfile_l.l"
{ return MONITOR; }
	YY_BREAK
case 65:
YY_RULE_SETUP
#line 133 "rcfile_l.l"
{ return PLUGIN; }
	YY_BREAK
case 66:
YY_RULE_SETUP
#line 134 "rcfile_l.l"
{ return PLUGOUT; }
	YY_BREAK
case 67:
YY_RULE_SETUP
#line 135 "rcfile_l.l"
{ return BATCHLIMIT; }
	YY_BREAK
case 68:
YY_RULE_SETUP
#line 136 "rcfile_l.l"
{ return FETCHLIMIT; }
	YY_BREAK
case 69:
YY_RULE_SETUP
#line 137 "rcfile_l.l"
{ return FETCHSIZELIMIT; }
	YY_BREAK
case 70:
YY_RULE_SETUP
#line 138 "rcfile_l.l"
{ return FASTUIDL; }
	YY_BREAK
case 71:
YY_RULE_SETUP
#line 139 "rcfile_l.l"
{ return EXPUNGE; }
	YY_BREAK
case 72:
YY_RULE_SETUP
#line 140 "rcfile_l.l"
{ return PROPERTIES; }
	YY_BREAK
case 73:
YY_RULE_SETUP
#line 142 "rcfile_l.l"
{ SETSTATE(NAME); return IS; }
	YY_BREAK
case 74:
YY_RULE_SETUP
#line 143 "rcfile_l.l"
{ return HERE; }
	YY_BREAK
case 75:
YY_RULE_SETUP
#line 144 "rcfile_l.l"
{ return THERE; }
	YY_BREAK
case 76:
YY_RULE_SETUP
#line 145 "rcfile_l.l"
{ SETSTATE(NAME); return TO; }
	YY_BREAK
case 77:
YY_RULE_SETUP
#line 146 "rcfile_l.l"
{ SETSTATE(NAME); return MAP; }
	YY_BREAK
case 78:
#line 149 "rcfile_l.l"
case 79:
#line 150 "rcfile_l.l"
case 80:
#line 151 "rcfile_l.l"
case 81:
#line 152 "rcfile_l.l"
case 82:
#line 153 "rcfile_l.l"
case 83:
#line 154 "rcfile_l.l"
case 84:
#line 155 "rcfile_l.l"
case 85:
#line 156 "rcfile_l.l"
case 86:
#line 157 "rcfile_l.l"
case 87:
#line 158 "rcfile_l.l"
case 88:
#line 159 "rcfile_l.l"
case 89:
#line 160 "rcfile_l.l"
case 90:
#line 161 "rcfile_l.l"
case 91:
#line 162 "rcfile_l.l"
case 92:
#line 163 "rcfile_l.l"
case 93:
#line 164 "rcfile_l.l"
case 94:
#line 165 "rcfile_l.l"
case 95:
YY_RULE_SETUP
#line 165 "rcfile_l.l"
{
                   yyless(2);
                   return NO;
                }
	YY_BREAK
case 96:
YY_RULE_SETUP
#line 170 "rcfile_l.l"
{return NO;}
	YY_BREAK
case 97:
YY_RULE_SETUP
#line 172 "rcfile_l.l"
{ return KEEP; }
	YY_BREAK
case 98:
YY_RULE_SETUP
#line 173 "rcfile_l.l"
{ return FLUSH; }
	YY_BREAK
case 99:
YY_RULE_SETUP
#line 174 "rcfile_l.l"
{ return LIMITFLUSH; }
	YY_BREAK
case 100:
YY_RULE_SETUP
#line 175 "rcfile_l.l"
{ return FETCHALL; }
	YY_BREAK
case 101:
YY_RULE_SETUP
#line 176 "rcfile_l.l"
{ return REWRITE; }
	YY_BREAK
case 102:
YY_RULE_SETUP
#line 177 "rcfile_l.l"
{ return FORCECR; }
	YY_BREAK
case 103:
YY_RULE_SETUP
#line 178 "rcfile_l.l"
{ return STRIPCR; }
	YY_BREAK
case 104:
YY_RULE_SETUP
#line 179 "rcfile_l.l"
{ return PASS8BITS; }
	YY_BREAK
case 105:
YY_RULE_SETUP
#line 180 "rcfile_l.l"
{ return DROPSTATUS; }
	YY_BREAK
case 106:
YY_RULE_SETUP
#line 181 "rcfile_l.l"
{ return DROPDELIVERED; }
	YY_BREAK
case 107:
YY_RULE_SETUP
#line 182 "rcfile_l.l"
{ return MIMEDECODE; }
	YY_BREAK
case 108:
YY_RULE_SETUP
#line 183 "rcfile_l.l"
{ return IDLE; }
	YY_BREAK
case 109:
YY_RULE_SETUP
#line 184 "rcfile_l.l"
{ return DNS; }
	YY_BREAK
case 110:
YY_RULE_SETUP
#line 185 "rcfile_l.l"
{ return UIDL; }
	YY_BREAK
case 111:
YY_RULE_SETUP
#line 186 "rcfile_l.l"
{ return SSL; }
	YY_BREAK
case 112:
YY_RULE_SETUP
#line 187 "rcfile_l.l"
{ return SSLKEY; }
	YY_BREAK
case 113:
YY_RULE_SETUP
#line 188 "rcfile_l.l"
{ return SSLCERT; }
	YY_BREAK
case 114:
YY_RULE_SETUP
#line 189 "rcfile_l.l"
{ return SSLPROTO; }
	YY_BREAK
case 115:
YY_RULE_SETUP
#line 190 "rcfile_l.l"
{ return SSLCERTCK; }
	YY_BREAK
case 116:
YY_RULE_SETUP
#line 191 "rcfile_l.l"
{ return SSLCERTPATH; }
	YY_BREAK
case 117:
YY_RULE_SETUP
#line 192 "rcfile_l.l"
{ return SSLCOMMONNAME; }
	YY_BREAK
case 118:
YY_RULE_SETUP
#line 193 "rcfile_l.l"
{ return SSLFINGERPRINT; }
	YY_BREAK
case 119:
YY_RULE_SETUP
#line 194 "rcfile_l.l"
{ return CHECKALIAS; }
	YY_BREAK
case 120:
YY_RULE_SETUP
#line 196 "rcfile_l.l"
{ return LIMIT; }
	YY_BREAK
case 121:
YY_RULE_SETUP
#line 198 "rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 122:
YY_RULE_SETUP
#line 199 "rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 123:
YY_RULE_SETUP
#line 200 "rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 124:
YY_RULE_SETUP
#line 201 "rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 125:
YY_RULE_SETUP
#line 202 "rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 126:
YY_RULE_SETUP
#line 203 "rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 127:
YY_RULE_SETUP
#line 205 "rcfile_l.l"
{ yylval.proto = P_AUTO;  return PROTO; }
	YY_BREAK
case 128:
YY_RULE_SETUP
#line 206 "rcfile_l.l"
{ yylval.proto = P_POP2;  return PROTO; }
	YY_BREAK
case 129:
YY_RULE_SETUP
#line 207 "rcfile_l.l"
{ return SDPS; }
	YY_BREAK
case 130:
YY_RULE_SETUP
#line 208 "rcfile_l.l"
{ yylval.proto = P_POP3;  return PROTO; }
	YY_BREAK
case 131:
YY_RULE_SETUP
#line 209 "rcfile_l.l"
{ yylval.proto = P_IMAP;  return PROTO; }
	YY_BREAK
case 132:
YY_RULE_SETUP
#line 210 "rcfile_l.l"
{ yylval.proto = P_APOP;  return PROTO; }
	YY_BREAK
case 133:
YY_RULE_SETUP
#line 211 "rcfile_l.l"
{ yylval.proto = P_RPOP;  return PROTO; }
	YY_BREAK
case 134:
YY_RULE_SETUP
#line 212 "rcfile_l.l"
{ yylval.proto = P_ETRN;  return PROTO; }
	YY_BREAK
case 135:
YY_RULE_SETUP
#line 213 "rcfile_l.l"
{ yylval.proto = P_ODMR;  return PROTO; }
	YY_BREAK
case 136:
YY_RULE_SETUP
#line 214 "rcfile_l.l"
{ return KPOP; }
	YY_BREAK
case 137:
/* rule 137 can match eol */
YY_RULE_SETUP
#line 216 "rcfile_l.l"
{ prc_lineno++;	}   /* newline is ignored */
	YY_BREAK
case 138:
YY_RULE_SETUP
#line 218 "rcfile_l.l"
{ yylval.number = atoi(yytext); return NUMBER; }
	YY_BREAK
case 139:
YY_RULE_SETUP
#line 220 "rcfile_l.l"
{
			escapes(yytext, yytext);
			yyleng = strlen(yytext);
			yylval.sval = yytext;
			return STRING;
		}
	YY_BREAK
case 140:
YY_RULE_SETUP
#line 227 "rcfile_l.l"
;	/* whitespace */
	YY_BREAK
case 141:
YY_RULE_SETUP
#line 229 "rcfile_l.l"
ECHO;
	YY_BREAK
#line 2337 "rcfile_l.c"
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(NAME):
case YY_STATE_EOF(AUTH):
	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_LVALUE->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_LVALUE->yy_n_chars;
			YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
			YY_CURRENT_BUFFER_LVALUE->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_LVALUE->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_LVALUE->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 (void)
{
    	register char *dest = YY_CURRENT_BUFFER_LVALUE->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_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
		YY_FATAL_ERROR(
		"fatal flex scanner internal error--end of buffer missed" );

	if ( YY_CURRENT_BUFFER_LVALUE->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_LVALUE->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_LVALUE->yy_n_chars = (yy_n_chars) = 0;

	else
		{
			int num_to_read =
			YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;

		while ( num_to_read <= 0 )
			{ /* Not enough room in the buffer - grow it. */

			/* 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. */
					yyrealloc((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_LVALUE->yy_buf_size -
						number_to_move - 1;

			}

		if ( num_to_read > YY_READ_BUF_SIZE )
			num_to_read = YY_READ_BUF_SIZE;

		/* Read in more data. */
		YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
			(yy_n_chars), (size_t) num_to_read );

		YY_CURRENT_BUFFER_LVALUE->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_LVALUE->yy_buffer_status =
				YY_BUFFER_EOF_PENDING;
			}
		}

	else
		ret_val = EOB_ACT_CONTINUE_SCAN;

	if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
		/* Extend the array by 50%, plus the number we really need. */
		yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
		YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size  );
		if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
			YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
	}

	(yy_n_chars) += number_to_move;
	YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
	YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;

	(yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->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 (void)
{
	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 >= 1545 )
				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 );
 */
    static yy_state_type yy_try_NUL_trans  (yy_state_type yy_current_state )
{
	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 >= 1545 )
			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 == 1544);

	return yy_is_jam ? 0 : yy_current_state;
}

#ifndef YY_NO_INPUT
#ifdef __cplusplus
    static int yyinput (void)
#else
    static int input  (void)
#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_LVALUE->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 );

					/*FALLTHROUGH*/

				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;
}
#endif	/* ifndef YY_NO_INPUT */

/** Immediately switch to a different input stream.
 * @param input_file A readable stream.
 * 
 * @note This function does not reset the start condition to @c INITIAL .
 */
    void yyrestart  (FILE * input_file )
{
    
	if ( ! YY_CURRENT_BUFFER ){
        yyensure_buffer_stack ();
		YY_CURRENT_BUFFER_LVALUE =
            yy_create_buffer(yyin,YY_BUF_SIZE );
	}

	yy_init_buffer(YY_CURRENT_BUFFER,input_file );
	yy_load_buffer_state( );
}

/** Switch to a different input buffer.
 * @param new_buffer The new input buffer.
 * 
 */
    void yy_switch_to_buffer  (YY_BUFFER_STATE  new_buffer )
{
    
	/* TODO. We should be able to replace this entire function body
	 * with
	 *		yypop_buffer_state();
	 *		yypush_buffer_state(new_buffer);
     */
	yyensure_buffer_stack ();
	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_LVALUE->yy_buf_pos = (yy_c_buf_p);
		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
		}

	YY_CURRENT_BUFFER_LVALUE = 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;
}

static void yy_load_buffer_state  (void)
{
    	(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
	(yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
	yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
	(yy_hold_char) = *(yy_c_buf_p);
}

/** Allocate and initialize an input buffer state.
 * @param file A readable stream.
 * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
 * 
 * @return the allocated buffer state.
 */
    YY_BUFFER_STATE yy_create_buffer  (FILE * file, int  size )
{
	YY_BUFFER_STATE b;
    
	b = (YY_BUFFER_STATE) yyalloc(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 *) yyalloc(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;
}

/** Destroy the buffer.
 * @param b a buffer created with yy_create_buffer()
 * 
 */
    void yy_delete_buffer (YY_BUFFER_STATE  b )
{
    
	if ( ! b )
		return;

	if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
		YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;

	if ( b->yy_is_our_buffer )
		yyfree((void *) b->yy_ch_buf  );

	yyfree((void *) b  );
}

#ifndef __cplusplus
extern int isatty (int );
#endif /* __cplusplus */
    
/* Initializes or reinitializes a buffer.
 * This function is sometimes called more than once on the same buffer,
 * such as during a yyrestart() or at EOF.
 */
    static void yy_init_buffer  (YY_BUFFER_STATE  b, FILE * file )

{
	int oerrno = errno;
    
	yy_flush_buffer(b );

	b->yy_input_file = file;
	b->yy_fill_buffer = 1;

    /* If b is the current buffer, then yy_init_buffer was _probably_
     * called from yyrestart() or through yy_get_next_buffer.
     * In that case, we don't want to reset the lineno or column.
     */
    if (b != YY_CURRENT_BUFFER){
        b->yy_bs_lineno = 1;
        b->yy_bs_column = 0;
    }

        b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
    
	errno = oerrno;
}

/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
 * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
 * 
 */
    void yy_flush_buffer (YY_BUFFER_STATE  b )
{
    	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( );
}

/** Pushes the new state onto the stack. The new state becomes
 *  the current state. This function will allocate the stack
 *  if necessary.
 *  @param new_buffer The new state.
 *  
 */
void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
{
    	if (new_buffer == NULL)
		return;

	yyensure_buffer_stack();

	/* This block is copied from yy_switch_to_buffer. */
	if ( YY_CURRENT_BUFFER )
		{
		/* Flush out information for old buffer. */
		*(yy_c_buf_p) = (yy_hold_char);
		YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
		}

	/* Only push if top exists. Otherwise, replace top. */
	if (YY_CURRENT_BUFFER)
		(yy_buffer_stack_top)++;
	YY_CURRENT_BUFFER_LVALUE = new_buffer;

	/* copied from yy_switch_to_buffer. */
	yy_load_buffer_state( );
	(yy_did_buffer_switch_on_eof) = 1;
}

/** Removes and deletes the top of the stack, if present.
 *  The next element becomes the new top.
 *  
 */
void yypop_buffer_state (void)
{
    	if (!YY_CURRENT_BUFFER)
		return;

	yy_delete_buffer(YY_CURRENT_BUFFER );
	YY_CURRENT_BUFFER_LVALUE = NULL;
	if ((yy_buffer_stack_top) > 0)
		--(yy_buffer_stack_top);

	if (YY_CURRENT_BUFFER) {
		yy_load_buffer_state( );
		(yy_did_buffer_switch_on_eof) = 1;
	}
}

/* Allocates the stack if it does not exist.
 *  Guarantees space for at least one push.
 */
static void yyensure_buffer_stack (void)
{
	int num_to_alloc;
    
	if (!(yy_buffer_stack)) {

		/* First allocation is just for 2 elements, since we don't know if this
		 * scanner will even need a stack. We use 2 instead of 1 to avoid an
		 * immediate realloc on the next call.
         */
		num_to_alloc = 1;
		(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
								(num_to_alloc * sizeof(struct yy_buffer_state*)
								);
		if ( ! (yy_buffer_stack) )
			YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
								  
		memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
				
		(yy_buffer_stack_max) = num_to_alloc;
		(yy_buffer_stack_top) = 0;
		return;
	}

	if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){

		/* Increase the buffer to prepare for a possible push. */
		int grow_size = 8 /* arbitrary grow size */;

		num_to_alloc = (yy_buffer_stack_max) + grow_size;
		(yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
								((yy_buffer_stack),
								num_to_alloc * sizeof(struct yy_buffer_state*)
								);
		if ( ! (yy_buffer_stack) )
			YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );

		/* zero only the new slots.*/
		memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
		(yy_buffer_stack_max) = num_to_alloc;
	}
}

/** Setup the input buffer state to scan directly from a user-specified character buffer.
 * @param base the character buffer
 * @param size the size in bytes of the character buffer
 * 
 * @return the newly allocated buffer state object. 
 */
YY_BUFFER_STATE yy_scan_buffer  (char * base, yy_size_t  size )
{
	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) yyalloc(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;
}

/** Setup the input buffer state to scan a string. The next call to yylex() will
 * scan from a @e copy of @a str.
 * @param yystr a NUL-terminated string to scan
 * 
 * @return the newly allocated buffer state object.
 * @note If you want to scan bytes that may contain NUL values, then use
 *       yy_scan_bytes() instead.
 */
YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
{
    
	return yy_scan_bytes(yystr,strlen(yystr) );
}

/** Setup the input buffer state to scan the given bytes. The next call to yylex() will
 * scan from a @e copy of @a bytes.
 * @param bytes the byte buffer to scan
 * @param len the number of bytes in the buffer pointed to by @a bytes.
 * 
 * @return the newly allocated buffer state object.
 */
YY_BUFFER_STATE yy_scan_bytes  (yyconst char * yybytes, int  _yybytes_len )
{
	YY_BUFFER_STATE b;
	char *buf;
	yy_size_t n;
	int i;
    
	/* Get memory for full buffer, including space for trailing EOB's. */
	n = _yybytes_len + 2;
	buf = (char *) yyalloc(n  );
	if ( ! buf )
		YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );

	for ( i = 0; i < _yybytes_len; ++i )
		buf[i] = yybytes[i];

	buf[_yybytes_len] = buf[_yybytes_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;
}

#ifndef YY_EXIT_FAILURE
#define YY_EXIT_FAILURE 2
#endif

static void yy_fatal_error (yyconst char* msg )
{
    	(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. */ \
        int yyless_macro_arg = (n); \
        YY_LESS_LINENO(yyless_macro_arg);\
		yytext[yyleng] = (yy_hold_char); \
		(yy_c_buf_p) = yytext + yyless_macro_arg; \
		(yy_hold_char) = *(yy_c_buf_p); \
		*(yy_c_buf_p) = '\0'; \
		yyleng = yyless_macro_arg; \
		} \
	while ( 0 )

/* Accessor  methods (get/set functions) to struct members. */

/** Get the current line number.
 * 
 */
int yyget_lineno  (void)
{
        
    return yylineno;
}

/** Get the input stream.
 * 
 */
FILE *yyget_in  (void)
{
        return yyin;
}

/** Get the output stream.
 * 
 */
FILE *yyget_out  (void)
{
        return yyout;
}

/** Get the length of the current token.
 * 
 */
int yyget_leng  (void)
{
        return yyleng;
}

/** Get the current token.
 * 
 */

char *yyget_text  (void)
{
        return yytext;
}

/** Set the current line number.
 * @param line_number
 * 
 */
void yyset_lineno (int  line_number )
{
    
    yylineno = line_number;
}

/** Set the input stream. This does not discard the current
 * input buffer.
 * @param in_str A readable stream.
 * 
 * @see yy_switch_to_buffer
 */
void yyset_in (FILE *  in_str )
{
        yyin = in_str ;
}

void yyset_out (FILE *  out_str )
{
        yyout = out_str ;
}

int yyget_debug  (void)
{
        return yy_flex_debug;
}

void yyset_debug (int  bdebug )
{
        yy_flex_debug = bdebug ;
}

static int yy_init_globals (void)
{
        /* Initialization is the same as for the non-reentrant scanner.
     * This function is called from yylex_destroy(), so don't allocate here.
     */

    (yy_buffer_stack) = 0;
    (yy_buffer_stack_top) = 0;
    (yy_buffer_stack_max) = 0;
    (yy_c_buf_p) = (char *) 0;
    (yy_init) = 0;
    (yy_start) = 0;

/* Defined in main.c */
#ifdef YY_STDINIT
    yyin = stdin;
    yyout = stdout;
#else
    yyin = (FILE *) 0;
    yyout = (FILE *) 0;
#endif

    /* For future reference: Set errno on error, since we are called by
     * yylex_init()
     */
    return 0;
}

/* yylex_destroy is for both reentrant and non-reentrant scanners. */
int yylex_destroy  (void)
{
    
    /* Pop the buffer stack, destroying each element. */
	while(YY_CURRENT_BUFFER){
		yy_delete_buffer(YY_CURRENT_BUFFER  );
		YY_CURRENT_BUFFER_LVALUE = NULL;
		yypop_buffer_state();
	}

	/* Destroy the stack itself. */
	yyfree((yy_buffer_stack) );
	(yy_buffer_stack) = NULL;

    /* Reset the globals. This is important in a non-reentrant scanner so the next time
     * yylex() is called, initialization will occur. */
    yy_init_globals( );

    return 0;
}

/*
 * Internal utility routines.
 */

#ifndef yytext_ptr
static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
{
	register int i;
	for ( i = 0; i < n; ++i )
		s1[i] = s2[i];
}
#endif

#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * s )
{
	register int n;
	for ( n = 0; s[n]; ++n )
		;

	return n;
}
#endif

void *yyalloc (yy_size_t  size )
{
	return (void *) malloc( size );
}

void *yyrealloc  (void * ptr, yy_size_t  size )
{
	/* 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 );
}

void yyfree (void * ptr )
{
	free( (char *) ptr );	/* see yyrealloc() for (char *) cast */
}

#define YYTABLES_NAME "yytables"

#line 229 "rcfile_l.l"



/** process standard C-style escape sequences in a string,
 * this can never lengthen the output, so cp and tp may overlap as long
 * as cp >= tp. */
void escapes(const char *cp /** source string with escapes */,
	     char       *tp /** target buffer for digested string */)
{
    while (*cp)
    {
	int	cval = 0;

	/* we MUST check for NUL explicitly, as strchr(string, 0) will
	 * always succeed! */
	if (*cp == '\\' && cp[1] && strchr("0123456789xX", cp[1]))
	{
	    char *dp;
	    const char *hex = "00112233445566778899aAbBcCdDeEfF";
	    int dcount = 0;

	    if (*++cp == 'x' || *cp == 'X')
		for (++cp; *cp && (dp = strchr(hex, *cp)) && (dcount++ < 2); cp++)
		    cval = (cval * 16) + (dp - hex) / 2;
	    else if (*cp == '0')
		while (*cp && strchr("01234567",*cp) != (char*)NULL && (dcount++ < 3))
		    cval = (cval * 8) + (*cp++ - '0');
	    else
		while (*cp && (strchr("0123456789",*cp)!=(char*)NULL)&&(dcount++ < 3))
		    cval = (cval * 10) + (*cp++ - '0');
	}
	else if (*cp == '\\')		/* C-style character escapes */
	{
	    switch (*++cp)
	    {
	    case '\n': cp++; continue;	/* backslash before LF to join lines */
	    case '\0': goto done;	   /* ignore backslash at file end */
	    case '\\': cval = '\\'; break;
	    case 'n': cval = '\n'; break;
	    case 't': cval = '\t'; break;
	    case 'b': cval = '\b'; break;
	    case 'r': cval = '\r'; break;
	    default: cval = *cp;
	    }
	    cp++;
	}
	else
	    cval = *cp++;
	*tp++ = cval;
    }
done:
    *tp = '\0';
}