configlexer.c   [plain text]


#include "config.h"
#include "util/configyyrename.h"

#line 3 "<stdout>"

#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 37
#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;

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

#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

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

extern yy_size_t 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_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.
	 */
	yy_size_t 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 yy_size_t yy_n_chars;		/* number of characters read into yy_ch_buf */
yy_size_t 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,yy_size_t 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 */

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; \
	(yytext_ptr) -= (yy_more_len); \
	yyleng = (size_t) (yy_cp - (yytext_ptr)); \
	(yy_hold_char) = *yy_cp; \
	*yy_cp = '\0'; \
	(yy_c_buf_p) = yy_cp;

#define YY_NUM_RULES 162
#define YY_END_OF_BUFFER 163
/* 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[1611] =
    {   0,
        1,    1,  144,  144,  148,  148,  152,  152,  156,  156,
        1,    1,  163,  160,    1,  142,  142,  161,    2,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  161,  144,
      145,  145,  146,  161,  148,  149,  149,  150,  161,  155,
      152,  153,  153,  154,  161,  156,  157,  157,  158,  161,
      159,  143,    2,  147,  159,  161,  160,    0,    1,    2,
        2,    2,    2,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,

      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  144,    0,  148,    0,  155,    0,  152,  156,
        0,  159,    0,    2,    2,  159,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  159,  160,  160,  160,  160,  160,  160,

      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  159,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,

      160,  160,  160,  160,  160,   65,  160,  160,  160,  160,
      160,    6,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  159,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,

      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  159,  160,  160,  160,  160,   29,  160,  160,  160,
      160,  160,  160,  160,  160,  129,  160,   12,   13,  160,
       15,   14,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  122,
      160,  160,  160,  160,  160,    3,  160,  160,  160,  160,

      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  159,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      151,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,   32,  160,  160,  160,  160,  160,
      160,  160,  160,  160,   33,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,

      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,   80,  151,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,   79,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,   63,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,

      160,  160,   20,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,   30,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
       31,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,   22,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,

      160,  160,  160,  160,   26,  160,   27,  160,  160,  160,
       66,  160,   67,  160,   64,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
        5,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,   82,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,   23,  160,  160,  160,
      160,  107,  106,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,

      160,  160,   34,  160,  160,  160,  160,  160,  160,  160,
      160,   69,   68,  160,  160,  160,  160,  160,  160,  160,
      103,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,   50,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,   54,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  105,
      160,  160,  160,  160,  160,  160,  160,  160,  160,    4,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,

      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  100,  160,  160,  160,  160,  160,  160,
      160,  116,  101,  160,  127,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,   21,  160,  160,  160,  160,
       71,  160,   72,   70,  160,  160,  160,  160,  160,  160,
       78,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      102,  160,  160,  160,  160,  126,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,   62,  160,  160,
      160,  160,  160,  160,  160,  160,   28,  160,  160,   17,

      160,  160,  160,   16,  160,   87,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,   41,
       42,  160,  160,  160,  160,  160,  160,  130,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,   73,  160,  160,  160,  160,  160,   77,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,   81,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  121,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,   91,  160,   95,  160,  160,  160,  160,   76,  160,

      160,  114,  160,  160,  160,  128,  160,  160,  160,  160,
      160,  160,  160,  135,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,   94,  160,  160,  160,  160,   43,
       44,  160,   49,   96,  160,  108,  104,  160,  160,   37,
      160,   98,  160,  160,  160,  160,  160,    7,  160,   61,
      113,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,   83,  134,  160,  160,
      160,  160,  160,  160,  160,  160,  123,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,   97,

      160,   36,   38,  160,  160,  160,  160,  160,   60,  160,
      160,  160,  160,  117,   18,   19,  160,  160,  160,  160,
      160,  160,  160,   58,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  119,  160,  160,  160,  160,  160,  160,
      160,  160,   35,  160,  160,  160,  160,  160,  160,   11,
      160,  160,  160,  160,  160,  160,  160,   10,  160,  160,
       39,  160,  125,  118,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,   90,   89,  160,  120,  115,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,   45,  160,  124,  160,

      160,  160,  160,   40,  160,  160,  160,   84,   86,  109,
      160,  160,  160,   88,  160,  160,  160,  160,  160,  160,
      160,  160,  131,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,   24,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  133,  160,  160,  112,  160,  160,  160,  160,  160,
      160,  160,   25,  160,    9,  160,  160,  110,   51,  160,
      160,  160,   93,  160,  160,  160,  160,  160,  160,  132,
       74,  160,  160,  160,   53,   57,   52,  160,   46,  160,
        8,  160,  160,   92,  160,  160,  160,  160,  160,  160,

      160,  160,  160,   56,  160,   47,  160,  111,  160,  160,
       85,  160,  160,  160,  160,  160,  160,   75,   55,   48,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,   59,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,   99,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  138,  160,  160,  160,  160,  160,
      160,  160,  160,  160,  160,  160,  160,  160,  136,  160,

      139,  140,  160,  160,  160,  160,  160,  137,  141,    0
    } ;

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

       44,   45,   46,   47,   48,   49,   50,   51,   52,   53,
       54,   55,   56,   57,   58,   59,   60,   61,   62,   63,
       64,   65,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,

        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    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[66] =
    {   0,
        1,    2,    3,    4,    5,    1,    6,    1,    1,    1,
        1,    7,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    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[1625] =
    {   0,
        0,    0,   63,   66,   69,   71,   77,   83,   88,   91,
      129,  135,  428,  340,   95, 4656, 4656, 4656,  107,  110,
      142,  180,  108,   50,  145,  172,  118,  148,  121,  181,
      197,  166,  217,  223,  251,  230,  164,  262,  116,  312,
     4656, 4656, 4656,   94,  298, 4656, 4656, 4656,   96,  269,
      294, 4656, 4656, 4656,  244,  254, 4656, 4656, 4656,  102,
      249, 4656,  259, 4656,  247,  287,  237,  309,  111,    0,
      313,    0,    0,  284,  170,  265,  288,  289,  296,  305,
      301,  273,  302,  328,  306,  311,  308,  309,  216,  325,
      329,  339,  353,  344,  356,  357,  338,  365,  346,  367,

      369,  368,  372,  373,  394,  386,  402,  383,  392,  399,
      396,  400,  401,  410,  423,  421,  419,  426,  431,  438,
      428,  434,  203,  159,  177,  169,  141,  483,  165,  122,
      174,  115,  490,  494,    0,  461,  463,  467,  477,  485,
      481,  478,  501,  495,  476,  510,  554,  245,  480,  506,
      490,  512,  509,  504,  517,  534,  497,  545,  551,  533,
      539,  538,  561,  587,  560,  577,  543,  571,  579,  573,
      596,  590,  588,  583,  599,  585,  600,  601,  598,  604,
      611,  621,  623,  602,  349,  630,  645,  625,  634,  641,
      657,  651,  660,  643,  658,  666,  663,  649,  665,  638,

      678,  669,  685,  690,  213,  696,  698,  684,  693,  692,
      705,  701,  702,  689,  713,  726,  737,  718,  716,  721,
      733,  743,  729,  735,  740,  753,  748,  745,  765,  741,
      760,  763,  771,  786,  759,  790,  774,  780,  787,  797,
      799,  801,  810,  807,  803,  812,  806,  837,  821,  828,
      834,  809,  814,  824,  830,  838,  846,  863,  854,  908,
      864,  869,  865,  856,  870,  874,  862,  887,  873,  889,
      902,  898,  903,  912,  916,  914,  954,  913,  939,  940,
      934,  960,  938,  945,  943,  949,  959,  969,  973,  970,
      982,  985,  976,  983,  981,  992,  996,  978, 1002, 1001,

     1010, 1015, 1012, 1003, 1021, 4656, 1026, 1004, 1028, 1023,
     1033, 4656, 1037, 1038, 1020, 1041, 1048, 1006, 1044, 1047,
     1049, 1063, 1051, 1072, 1064, 1060, 1107, 1075, 1076, 1104,
     1098, 1085, 1110, 1089, 1116, 1103, 1112, 1131, 1102, 1125,
     1122, 1144, 1136, 1141, 1157, 1130, 1150, 1148, 1151,  899,
     1158, 1160, 1173, 1152, 1178, 1179, 1169, 1177, 1159, 1192,
     1205, 1202, 1207, 1213, 1189, 1206, 1208, 1217, 1214, 1215,
     1201, 1219, 1222, 1209, 1248, 1225, 1237, 1234, 1249, 1240,
     1253, 1254, 1250, 1261, 1246, 1280, 1269, 1268, 1288, 1294,
     1267, 1282, 1284, 1299, 1302, 1303, 1314, 1275, 1307, 1310,

     1342, 1318, 1317, 1321, 1331, 1333, 1327, 1332, 1335, 1344,
     1341, 1343, 1350, 1337, 1348, 1371, 1370, 1373, 1376, 1366,
     1368, 1377, 1378, 1386, 1389, 1397, 1401, 1392, 1400, 1411,
     1408, 1416, 1412, 1426, 1404, 1431, 4656, 1445, 1442, 1424,
     1437, 1448, 1443, 1435, 1484, 4656, 1439, 4656, 4656, 1451,
     4656, 4656, 1465, 1438, 1473, 1449, 1532, 1475, 1467, 1472,
     1483, 1490, 1491, 1504, 1499, 1518, 1525, 1510, 1502, 1508,
     1513, 1537, 1541, 1535, 1542, 1543, 1561, 1562, 1557, 1566,
     1559, 1565, 1558, 1570, 1574, 1579, 1582, 1586, 1577, 4656,
     1588, 1584, 1594, 1592, 1609, 4656, 1589, 1600, 1603, 1606,

     1613, 1611, 1619, 1625, 1623, 1630, 1633, 1634, 1637, 1639,
     1640, 1618, 1667, 1661, 1652, 1660, 1668, 1653, 1676, 1682,
     1680, 1666, 1678, 1686, 1669, 1685, 1690, 1687, 1693, 1696,
     1695, 1694, 1744, 1721, 1712, 1705, 1716, 1701, 1723, 1724,
     1732, 1741, 1757, 1761, 1759, 1713, 1763, 1764, 1748, 1795,
     1780, 1765, 1786, 1804, 1797, 1800, 1806, 1790, 1767, 1807,
     4656, 1799, 1812, 1791, 1827, 1814, 1824, 1835, 1826, 1847,
     1829, 1836, 1846, 1861, 4656, 1839, 1841, 1854, 1860, 1870,
     1873, 1871, 1863, 1887, 4656, 1893, 1900, 1881, 1879, 1883,
     1892, 1888, 1907, 1908, 1910, 1902, 1911, 1899, 1914, 1906,

     1922, 1928, 1929, 1927, 1940, 1937, 1952, 1941, 1955, 1949,
     1950, 1936, 1965, 1951, 1970, 1964, 1967, 1976,  120, 1972,
     1986, 1977, 1973, 4656,   76, 1987, 1991, 1982, 2009, 2011,
     2007, 2005, 2010, 2015, 2016, 2025, 2008, 2021, 2023, 2038,
     2029, 2052, 2050, 2054, 2043, 2042, 2046, 2051, 2058, 2047,
     2070, 2067, 2079, 2080, 2077, 2081, 2087, 2076, 2084, 2082,
     2106, 2102, 2098, 2111, 4656, 2119, 2107, 2116, 2108, 2125,
     2140, 2122, 2129, 2144, 2135, 2136, 2145, 2149, 2157, 2151,
     2156, 2152, 2147, 2163, 2174, 2168, 2171, 2190, 2178, 4656,
     2182, 2176, 2192, 2180, 2193, 2188, 2197, 2207, 2202, 2214,

     2213, 2222, 4656, 2229, 2231, 2223, 2230, 2224, 2243, 2240,
     2246, 2233, 2256, 2239, 2257, 2263, 2250, 2259, 2269, 4656,
     2252, 2279, 2273, 2285, 2284, 2275, 2271, 2287, 2277, 2290,
     2289, 2281, 2295, 2292, 2298, 2303, 2302, 2314, 2308, 2328,
     4656, 2338, 2309, 2335, 2337, 2330, 2350, 2345, 2336, 2329,
     2325, 2355, 2356, 2362, 2359, 2363, 2366, 2368, 2371, 2354,
     2372, 2392, 2394, 2398, 2386, 2393, 2390, 2409, 2389, 2417,
     2396, 2412, 2425, 4656, 2427, 2428, 2420, 2416, 2445, 2438,
     2421, 2431, 2430, 2432, 2457, 2468, 2447, 2452, 2454, 2461,
     2455, 2449, 2460, 2484, 2481, 2487, 2476, 2483, 2474, 2499,

     2500, 2502, 2495, 2508, 4656, 2507, 4656, 2504, 2516, 2524,
     4656, 2523, 4656, 2528, 4656, 2527, 2536, 2526, 2513, 2531,
     2534, 2532, 2546, 2529, 2559, 2540, 2558, 2544, 2551, 2572,
     4656, 2561, 2566, 2581, 2563, 2564, 2574, 2590, 2593, 2585,
     2575, 2586, 2603, 2599, 4656, 2591, 2613, 2604, 2608, 2630,
     2627, 2619, 2620, 2632, 2625, 2631, 2642, 2638, 2626, 2643,
     2647, 2663, 2622, 2671, 2673, 2674, 2660, 2661, 2664, 2666,
     2670, 2672, 2687, 2690, 2693, 2675, 4656, 2677, 2708, 2709,
     2700, 4656, 4656, 2722, 2723, 2719, 2712, 2720, 2706, 2732,
     2745, 2734, 2731, 2737, 2747, 2748, 2749, 2740, 2751, 2761,

     2764, 2752, 4656, 2777, 2767, 2781, 2776, 2775, 2787, 2773,
     2796, 4656, 4656, 2790, 2788, 2792, 2797, 2815, 2802, 2803,
     4656, 2800, 2827, 2828, 2829, 2830, 2832, 2813, 2823, 2839,
     2837, 2840, 2857, 2848, 2858, 2853, 2866, 2846, 2849, 4656,
     2865, 2877, 2875, 2876, 2873, 2878, 2868, 2884, 2885, 2886,
     2900, 2891, 2892, 2899, 2903, 2904, 2923, 2905, 2928, 2929,
     2939, 2933, 4656, 2941, 2926, 2942, 2918, 2940, 2945, 2952,
     2962, 2937, 2938, 2955, 2956, 2959, 2935, 2979, 2967, 4656,
     2969, 2990, 2982, 2984, 2983, 2972, 2994, 2986, 2999, 4656,
     3011, 3004, 3000, 3021, 3023, 3024, 3025, 3010, 3017, 3014,

     3031, 3039, 3026, 3036, 3038, 3040, 3043, 3055, 3072, 3071,
     3078, 3079, 3057, 3065, 3084, 3073, 3082, 3075, 3063, 3093,
     3081, 3097, 3089, 4656, 3091, 3095, 3107, 3111, 3114, 3120,
     3116, 4656, 4656, 3115, 4656, 3121, 3123, 3109, 3122, 3137,
     3113, 3135, 3140, 3141, 3143, 4656, 3162, 3151, 3152, 3156,
     4656, 3171, 4656, 4656, 3159, 3179, 3160, 3175, 3178, 3181,
     4656, 3184, 3189, 3192, 3194, 3183, 3185, 3187, 3198, 3203,
     4656, 3212, 3225, 3210, 3220, 4656, 3218, 3231, 3207, 3230,
     3236, 3241, 3243, 3249, 3244, 3245, 3256, 4656, 3247, 3255,
     3251, 3265, 3272, 3278, 3270, 3273, 4656, 3282, 3290, 4656,

     3276, 3293, 3294, 4656, 3292, 4656, 3296, 3300, 3299, 3309,
     3301, 3321, 3331, 3314, 3328, 3329, 3322, 3338, 3336, 4656,
     4656, 3337, 3339, 3342, 3340, 3345, 3347, 4656, 3351, 3348,
     3358, 3367, 3363, 3365, 3370, 3384, 3385, 3372, 3388, 3374,
     3377, 4656, 3378, 3379, 3397, 3395, 3405, 4656, 3417, 3416,
     3408, 3415, 3429, 3431, 3433, 3423, 3437, 3438, 3420, 3440,
     3441, 3432, 4656, 3444, 3452, 3435, 3461, 3455, 3463, 3467,
     3471, 3474, 3456, 3477, 4656, 3480, 3458, 3485, 3482, 3481,
     3490, 3478, 3479, 3489, 3516, 3500, 3514, 3517, 3511, 3528,
     3527, 4656, 3509, 4656, 3524, 3534, 3532, 3538, 4656, 3530,

     3537, 4656, 3543, 3558, 3540, 4656, 3568, 3555, 3570, 3565,
     3561, 3559, 3579, 4656, 3583, 3581, 3589, 3586, 3573, 3590,
     3592, 3596, 3603, 3609, 4656, 3606, 3619, 3617, 3627, 4656,
     4656, 3630, 4656, 4656, 3626, 4656, 4656, 3632, 3634, 4656,
     3635, 4656, 3613, 3640, 3639, 3616, 3642, 4656, 3645, 4656,
     4656, 3643, 3658, 3636, 3666, 3673, 3676, 3678, 3667, 3662,
     3669, 3672, 3674, 3683, 3670, 3691, 3693, 3695, 3689, 3699,
     3668, 3700, 3705, 3719, 3720, 3704, 4656, 4656, 3708, 3715,
     3716, 3710, 3731, 3729, 3726, 3753, 4656, 3734, 3736, 3747,
     3741, 3746, 3750, 3751, 3769, 3779, 3767, 3765, 3763, 4656,

     3768, 4656, 4656, 3778, 3785, 3799, 3786, 3789, 4656, 3800,
     3802, 3803, 3804, 4656, 4656, 4656, 3816, 3796, 3810, 3815,
     3827, 3814, 3828, 4656, 3823, 3830, 3834, 3825, 3822, 3824,
     3857, 3856, 3858, 4656, 3868, 3865, 3866, 3861, 3859, 3864,
     3873, 3863, 4656, 3876, 3867, 3895, 3899, 3886, 3900, 4656,
     3891, 3892, 3889, 3903, 3915, 3913, 3918, 4656, 3916, 3907,
     4656, 3917, 4656, 4656, 3926, 3927, 3929, 3924, 3933, 3941,
     3931, 3943, 3965, 3962, 3959, 4656, 4656, 3958, 4656, 4656,
     3954, 3961, 3951, 3947, 3968, 3975, 3960, 3989, 3981, 3976,
     3985, 3978, 3987, 3991, 4002, 3993, 4656, 4012, 4656, 4003,

     4019, 4018, 4014, 4656, 4016, 4020, 4006, 4656, 4656, 4656,
     4030, 4036, 4042, 4656, 4048, 4045, 4034, 4060, 4049, 4064,
     4041, 4056, 4656, 4052, 4058, 4070, 4068, 4072, 4082, 4076,
     4081, 4063, 4083, 4096, 4100, 4656, 4106, 4087, 4090, 4118,
     4119, 4103, 4108, 4104, 4121, 4113, 4131, 4123, 4130, 4126,
     4137, 4656, 4138, 4135, 4656, 4141, 4151, 4159, 4160, 4161,
     4162, 4166, 4656, 4171, 4656, 4173, 4169, 4656, 4656, 4168,
     4175, 4179, 4656, 4180, 4186, 4181, 4192, 4193, 4200, 4656,
     4656, 4195, 4190, 4212, 4656, 4656, 4656, 4191, 4656, 4217,
     4656, 4223, 4211, 4656, 4207, 4228, 4208, 4230, 4219, 4224,

     4242, 4235, 4249, 4656, 4258, 4656, 4259, 4656, 4251, 4260,
     4656, 4268, 4252, 4265, 4256, 4253, 4257, 4656, 4656, 4656,
     4278, 4269, 4264, 4280, 4276, 4285, 4281, 4295, 4311, 4304,
     4309, 4312, 4293, 4300, 4323, 4316, 4656, 4319, 4305, 4327,
     4329, 4321, 4336, 4328, 4338, 4339, 4340, 4346, 4341, 4364,
     4365, 4356, 4371, 4373, 4376, 4377, 4374, 4368, 4384, 4383,
     4387, 4388, 4392, 4394, 4399, 4656, 4411, 4403, 4404, 4405,
     4424, 4430, 4409, 4426, 4436, 4439, 4434, 4429, 4442, 4440,
     4451, 4446, 4454, 4453, 4656, 4455, 4471, 4464, 4469, 4478,
     4470, 4474, 4494, 4477, 4500, 4484, 4490, 4501, 4656, 4497,

     4656, 4656, 4504, 4499, 4506, 4512, 4513, 4656, 4656, 4656,
     4564, 4571, 4578, 4585, 4592,   82, 4599, 4606, 4613, 4620,
     4627, 4634, 4641, 4648
    } ;

static yyconst flex_int16_t yy_def[1625] =
    {   0,
     1610,    1, 1611, 1611, 1612, 1612, 1613, 1613, 1614, 1614,
     1615, 1615, 1610, 1616, 1610, 1610, 1610, 1610, 1617, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1618,
     1610, 1610, 1610, 1618, 1619, 1610, 1610, 1610, 1619, 1620,
     1610, 1610, 1610, 1610, 1620, 1621, 1610, 1610, 1610, 1621,
     1622, 1610, 1623, 1610, 1622, 1622, 1616, 1616, 1610, 1624,
     1617, 1624, 1617, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,

     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1618, 1618, 1619, 1619, 1620, 1620, 1610, 1621,
     1621, 1622, 1622, 1623, 1623, 1622, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1622, 1616, 1616, 1616, 1616, 1616, 1616,

     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1622, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,

     1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616,
     1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1622, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,

     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1622, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1610, 1616, 1610, 1610, 1616,
     1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610,
     1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616,

     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1622, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,

     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1610, 1622, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,

     1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,

     1616, 1616, 1616, 1616, 1610, 1616, 1610, 1616, 1616, 1616,
     1610, 1616, 1610, 1616, 1610, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616,
     1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,

     1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,

     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1610, 1610, 1616, 1610, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616,
     1610, 1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616,
     1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1610, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1610,

     1616, 1616, 1616, 1610, 1616, 1610, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610,
     1610, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1610, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1610, 1616, 1610, 1616, 1616, 1616, 1616, 1610, 1616,

     1616, 1610, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1610,
     1610, 1616, 1610, 1610, 1616, 1610, 1610, 1616, 1616, 1610,
     1616, 1610, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1610,
     1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1610, 1610, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610,

     1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1610, 1616,
     1616, 1616, 1616, 1610, 1610, 1610, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1610,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616,
     1610, 1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1610, 1610, 1616, 1610, 1610,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1610, 1616,

     1616, 1616, 1616, 1610, 1616, 1616, 1616, 1610, 1610, 1610,
     1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1610, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1610, 1616, 1610, 1616, 1616, 1610, 1610, 1616,
     1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1610,
     1610, 1616, 1616, 1616, 1610, 1610, 1610, 1616, 1610, 1616,
     1610, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616,

     1616, 1616, 1616, 1610, 1616, 1610, 1616, 1610, 1616, 1616,
     1610, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1610, 1610,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616,

     1610, 1610, 1616, 1616, 1616, 1616, 1616, 1610, 1610,    0,
     1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610,
     1610, 1610, 1610, 1610
    } ;

static yyconst flex_int16_t yy_nxt[4722] =
    {   0,
       14,   15,   16,   17,   18,   19,   18,   14,   14,   14,
       14,   18,   20,   14,   21,   22,   23,   24,   14,   25,
       26,   27,   28,   29,   30,   31,   32,   33,   14,   34,
       35,   36,   37,   38,   14,   14,   14,   14,   39,   20,
       14,   21,   22,   23,   24,   14,   25,   26,   27,   28,
       29,   30,   31,   32,   33,   14,   34,   35,   36,   37,
       38,   14,   14,   14,   14,   41,   42,   43,   41,   42,
       43,   46,   47,   46,   47,   48,   87,   48,   51,   52,
       53,   54,   67,   18,   51,   52,   53,   54,   68,   18,
       57,   58,   59,   57,   58,   59,   69,  123,  123,  125,

       70,   44,  125,   87,   44,  130,  130,   49,   72,   49,
       72,   72,   69,   72,  133,   55,   70,   67,   72,   67,
       67,   55,   67,   85,   74,   75,   60,   67,  724,   60,
       15,   16,   17,   62,   63,   64,   15,   16,   17,   62,
       63,   64,   76,   86,   94,   73,   68,   96,   68,   65,
       85,   74,   75,  133,   77,   65,   68,   88,   68,   68,
      131,   78,  123,  123,   95,   89,  129,   66,   79,   76,
       86,   94,  125,   66,   96,  125,   65,  130,  130,  128,
       68,   77,   65,   68,   88,  138,   68,   90,   78,  119,
       91,   95,   89,   97,  120,   79,   80,   92,  104,   93,

       81,   98,   68,   82,   68,   83,   84,   99,   68,  101,
       68,  100,  138,  102,   90,  126,  119,   91,   68,   68,
       97,  120,  274,   80,   92,  104,   93,   81,   98,  103,
       82,  153,   83,   84,   99,   68,  101,  105,  100,  109,
      102,  124,  116,  106,  117,  127,  107,  127,  127,  110,
      127,   68,  111,  108,   68,   68,  103,  212,  153,  118,
       72,   68,   72,   72,  105,   72,  109,  112,   68,  116,
      106,  117,  136,  107,  121,   68,  110,  113,  122,  111,
      108,  114,  115,   68,  212,  133,  118,  133,  132,   68,
      132,  132,  131,  132,  112,  129,  139,  135,  137,  136,

       68,  121,  140,   68,  113,  122,  145,  128,  114,  115,
       67,   68,   67,   67,   72,   67,   72,   72,  141,   72,
       67,  142,   68,  139,   72,  137,   68,   68,  143,  140,
      144,  149,  146,  145,   68,  147,  126,  151,  152,   68,
       68,  154,  150,   68,   68,  141,   68,   68,  142,   68,
      124,   73,  148,  156,  155,  143,  157,  144,  149,  146,
      159,  167,  252,   68,  151,  152,   68,   68,  154,  150,
      158,  163,  161,  165,  160,  164,   68,   68,   68,  148,
      156,  155,   68,  157,   68,  168,  170,   68,  167,  252,
      166,   68,  162,  169,   68,   68,  171,  158,  163,  161,

      165,  160,  164,   68,  172,   68,   68,   68,  182,  173,
       68,   68,  168,  170,  177,  174,  178,  166,  175,  162,
      169,   68,  176,  171,   68,  179,  180, 1610, 1610,  181,
       68,  172,   68,  183,   68,  184,  173,   68,   68,   68,
       68,  177,  174,  178,  189,  175,  187, 1610,   68,  176,
      186,  192,  179,  180,  191,  185,  181,   68,  188,   68,
      183,   68,  184,  193,   68,  190,   68, 1610, 1610,   68,
     1610,  189,   68,  187,  196,  194,   68,  186,  192,  195,
     1610,  191,  185,  204,  127,  188,  127,  127, 1610,  127,
      193,  132,  190,  132,  132,   72,  132,   72,   72,  133,

       72,   68,  194,  197,  198,   68,  195,  199,  201,  200,
      213,  203, 1610,  202,   68,   68,   68, 1610,   68,   68,
      205, 1610,  214,   68,  215,  217,  222,  216,   68,  218,
      197,  198,  135,   68,  199,   68,  200,  213,  203,   68,
      202,  206,   68,  219,   68,  227, 1610,   68,   68,  214,
       68,  215,  217,  222,  216,   68,  218,  220, 1610, 1610,
      221,  223, 1610,  224,  225, 1610,  226,  231,  206,  207,
      219,   68,   68,  228,  208,  233,   68,   68,  234,  209,
      236,   68, 1610,   68,  220,  210,  211,  221,  223,   68,
      224,  225,   68,  226,  229,  235,  207,  232,   68,   68,

      228,  208,  233,  237,  230,  239,  209, 1610,  238,   68,
     1610,   68,  210,  211,  240,   68,  241,   68,  242,  243,
      246,   68,  235,   68,  232,   68,   68,  244,   68,  245,
      250,  230,  239,  251,   68,  238,   68,   68,   68,   68,
       68,  240,   68,  241,  247,  242,  243,  246,  253,   68,
      248,  249,  254,  257,  244,  255,  245,  256,  260,   68,
      251,   68, 1610,   68,  258,  267,  263,  269,   68, 1610,
      266,  247,   68,  261, 1610,  253,   68,  248,  249,   68,
      257,  133,  255,   68,  256,  265,  259,   68,  264,   68,
      262,  268,  267,  263,  269,   68,   68,  270,   68,  272,

      261,   68,  273,   68,   68,  271,  279,   68,  275,  282,
      276,  277,  265,  259,  283,  264,   68,  262,  268,  278,
      280,  281,   68,   68,  270,  284,  272,   68,   68,  273,
       68,   68,  271,  279,   68,  275,   68,  276,  277,   68,
       68,  283,  285,   68,  286,  288,  278,  280,  281,  287,
      293,   68,  284,  289,   68,  291,   68,  290,  292,   68,
      295,  300,  296,  294,   68, 1610, 1610,   68,  297,  285,
      306,   68,  288,   68, 1610,   68,  287,  293,   68,   68,
      289,   68,  291,   68,  290,  292,   68,  302,  300,  296,
      294,   68,  301,  298,  303,  297,  299,   68,   68,  304,

      305,   68,  308,   68,  307,  309,  310,  311,  312,   68,
      317, 1610,   68,  314,  302,  313,  327, 1610,   68,  301,
      298,  303,  319,  299,   68,   68,  304,  305,   68,  308,
      328,  307,  309,  310,  311,   68,  315,   68,  316,   68,
      314,   68,  313,  318,   68,   68,  322,   68,   68,  319,
       68,  320,   68,  321,  326,  323,  329,  328,  324,   68,
      325,  330,   68,  315,  331,  316,   68, 1610,   68,  349,
      318,  332,   68,  322, 1610,   68,   68,  333,  320,  335,
      321,  326,  323,  329,   68,  324,  346,  325,  330,  344,
      343,  331,   68,  334,   68, 1610,  347,  345,  332,  351,

       68,   68,   68,  133,  333,  348,  335,   68,   68,  353,
      437,   68,   68,  346, 1610,  352,  344,  343,  350,  356,
      334,  336,  337,  347,  345,   68,  351,   68,  355,  354,
      358,  338,  348,  339,  340,  341,   68,   68,  342, 1610,
       68,   68,  352,  357,  361,  350,   68, 1610,  336,  337,
       68,   68,   68,  366,   68,  355,  354,  358,  338,  364,
      339,  340,  341,  359,  360,  342,  362,  363,  368,  369,
      357,  361,   68,  365,  367, 1610,   68,   68,   68,  371,
      366,   68,  370,   68, 1610,  372,  364,   68,  373,  375,
      374,  377,   68,  362,  363,  368,  369,   68,   68,  378,

      365,  367,  376,  381,  380,  379,  371,   68,   68,  370,
      382,   68,  372,  400,   68,  373,   68,  374,  377,   68,
       68,   68,  383,   68,  384,  385,  378,  386,  387,  376,
       68,  380,  379,  389,   68,  388,  391,  382,  390,   68,
       68,   68,   68,  393,   68,  397, 1610,  392,   68,  383,
       68,  384,  385,   68,  386,  387,  394,  398,   68,   68,
      389,   68,  388,  391,   68,  390,   68,  399,  395,  396,
      393,   68,  397,  401,  392,   68,   68,  405,  404,   68,
      402,  403,   68,  394,  398,   68,   68,   68,  406,   68,
      408,  407, 1610, 1610,  399,  395,  396, 1610,   68, 1610,

      401,   68,   68,  415,  405,  404,  414,  402,  403, 1610,
       68,  416,  418,   68,   68,  406,  419,  408,  407,  409,
      417, 1610,  420,   68,  410,  421,  411,   68,  422,  423,
      415, 1610,  426,  414,  412,  424,   68,  433,  428,  418,
       68,   68,   68,  419,  413,   68,  409,  417,   68,  420,
       68,  410,  421,  411,   68,  422,  423,  425,  427,  426,
       68,  412,  424,   68,  429,  428,  430,  431,   68,   68,
      448,  413,  432,  434,   68,  436,  445,  435,  441,   68,
      446,  438,   68,  439,  425,  427,   68,  440,   68,   68,
       68,  429,  442,  430,  431,  133,   68,   68,   68,  432,

      434,  447,  436,  449,  435,  441,  443,   68,  438,  444,
      439,   68,  450,  451,  440,   68,   68,   68,  452,  442,
      453,  454,  455,  456,  457, 1610,  461,   68,  447,  458,
       68,  459,  460,  443,  463, 1610,  444,  467,  462,   68,
       68,  469, 1610,   68,   68,   68,   68,   68,  454,  455,
      456,   68,   68,   68,  471,   68,  458,   68,  459,  460,
       68,  463,  464,   68,  467,  462,  468,  465,  472,  470,
      474,  466,   68,  477,  475,   68,  479,  476,   68, 1610,
     1610,  471,  491,  483,   68,  480,   68,   68,   68,  464,
      473,   68,   68,  468,  465,  472,  470,  474,  466,   68,

      477,  475,  481,  478,  476,   68,   68,   68,  482,  485,
      483,  484,  480,   68, 1610,  486,  487,  473,   68,  488,
       68,  489,   68, 1610,  493,  490,   68,  492, 1610,  481,
      478,  497,   68, 1610,  499,  482,  485,   68,  484,  494,
       68,   68,  486,  487,  509,   68,  488,  498,   68,  495,
      504,  493,   68,  496,  492,   68,   68,  502,  497,   68,
      500,  499,  501,  503,  505,   68,  494,  506, 1610,   68,
       68,   68,  507,   68,  498,   68,  508,  504,  510,   68,
       68,   68,   68,  511,  502,  512,   68,  500,   68,  501,
      503,  505,  514,  515,  506,  513,  518, 1610,  516,  507,

     1610,  517,  519,  508,   68,  510,   68,  520,   68,   68,
      511,   68,  512,  521,   68,   68,   68,  522,  524,  514,
      515,  523,  513,  518,   68,  516,  528,   68,  517,  519,
       68,  525,  527,  526,  520,   68,  530, 1610,   68,   68,
      521,  529,   68,  531,  522,  524,   68,  535,  523,   68,
       68,  532,  533,  528,  133,  548,  550,  534,  525,  527,
      526, 1610,   68,  530,   68,  545,  536,  537,  529,   68,
      531,  539,  538,   68,  535,   68,   68,   68,  532,  546,
       68,   68,  548,   68,  534,  547,   68,   68,  549,   68,
     1610,  557,  545,  536,  537, 1610,  558,  560,  539,  538,

      540,  561, 1610,   68,  541,   68,  546,  542,  559,  562,
       68,   68,  547,   68,  543,  549,  563,  544,  557, 1610,
     1610,   68,   68,  558,  560,  564,  567,  540,   68,   68,
      565,  541,  570,  568,  542,  559,  562,   68,  569,  566,
       68,  543,   68,  563,  544,  551,   68,  552,   68,  571,
      553,   68,  564,  567,  575,  554,   68,  565,  574,  570,
      568,  555,  556,   68,  573,  569,  566,  572,  576,  577,
       68,  578,  551,   68,  552,   68,  571,  553,  580,   68,
       68,   68,  554,  579,  581,  574,  583,  582,  555,  556,
      585,  573,  584,  587,  572,   68,   68,   68,  578,   68,

       68,  586,  589,   68,   68,  580,  591,  588,   68,  590,
      579,  581,   68,  583,  582,   68,  596,   68,  592,  584,
       68,  595,   68,  593,   68,  610,   68,   68,  586,  589,
       68,  594,   68,  591,  588,  597,  590,  598,   68,  601,
      602,   68,  600,  596,   68,  592,  599,   68,  595,   68,
      593,   68,  603,  605,  607, 1610,   68,   68,  594,  606,
      604,   68,  597,   68,  598,  609,  601,  602,   68,  600,
      608,   68,   68,  599,  611,   68,  612,   68,   68,  603,
      605,  607,  613,  614,  615,  616,  606,  604,  617,  618,
       68,   68,  609,  622,  619,  620,  624,  608,   68,   68,

      623,  625,  621,  612,   68,   68,   68,   68,  627,  613,
      614,  615,  616,  626,   68,  617,   68,  640,   68,  630,
       68,  619,  620,   68,   68,   68,  628,  623,  133,  621,
      629,   68,   68,   68,   68,  627,  636, 1610,  637,   68,
      626,  638,  639,   68,  640,  649,  630,  643,  641,  642,
       68,   68, 1610,  628,   68,  652, 1610,  629,  631,   68,
      632,   68,   68,  636,  633,  637,  634,  644,  638,  639,
       68,  635,  649,  645,  643,  641,  642,  647,  665,   68,
     1610,  651,   68,  646,  648,  631,   68,  632,  650, 1610,
      658,  633, 1610,  634,  644,   68,  657,   68,  635,   68,

      645,   68,   68,   68,  647,   68,  667,  653,  651,  659,
      646,  648,  654,  661,  655,  650,  660,  658,   68,  662,
      664,  669,  666,  657,   68, 1610,  668, 1610,   68,   68,
      671,  663,  656,   68,  653,   68,  659,   68,   68,  654,
      661,  655,   68,  660,   68,   68,  662,  664,  669,  666,
       68,  670,   68,  668,  672,  673,  674,  671,  663,  656,
      676,  677,   68,  675,   68,   68,  678,   68,  679,  680,
      681, 1610, 1610,   68,   68,  687,  683,   68,  670,   68,
      682,  672,  673,  674,   68,   68,  684,  676,  677,  685,
      675,  686,   68,  678,  688,  693,  680,  681,   68,   68,

      689,   68,  687,  683,  690,  694,  696,  682,   68,   68,
      703,   68,  691,  684,  695,  692,  685,   68,  686,   68,
      697,   68,  693,  698,  699,   68,   68,  700,  702,  701,
       68,   68,  694,  696,  704,  705,  706,   68,   68,  691,
       68,  695,  692,  717,   68,   68,   68,  697,   68,   68,
      698,  699,   68,  711,  700,  702,  701,  707,  709,  708,
       68,  704,  705,  706,  710,   68,   68,   68,  712,  714,
      713,  715,  718,  716,   68,   68, 1610,  719,   68,   68,
      711,  720, 1610, 1610,  707,  709,  708,   68,   68,   68,
       68,  710,  722,   68,  721,  712,  714,  713,  715,  723,

      716,  725,   68,   68,  719,   68,  726,  727,   68,  728,
       68,   68,  729,  731,   68,   68,  732,  730,  733,  722,
       68,  721, 1610,  734,   68,   68,  723, 1610,  725,   68,
      735,  737,  741,  726,  727,  736,  728, 1610,  740,  729,
      731, 1610,  738,   68,  730,   68,   68,   68,   68,   68,
      734,  739,  742,   68,   68,  743,  749,  735,  737,   68,
      744,   68,  736,   68,  745,  740,  746,   68,  748,  738,
     1610,  751,  747, 1610,  752,  750,   68,  753,  739,  742,
       68,   68,  743,  749,   68,   68,  754,  744,   68,   68,
       68,  745,   68,  746,  756,  748,   68,  755,  751,  747,

      757,  752,  750,  758,  753,   68,  761,  759,   68, 1610,
      760,  763, 1610,  754,   68,   68,  762,   68,   68,   68,
       68,  756,   68,  764,  755,   68,  768,  757,  765,  766,
      758,  767,  769,  761,  759,  770,   68,  760,  763,  771,
       68,  772,  778,  762,   68,   68,   68,  773,  779,   68,
      764,  774,  775,  776,   68,  765,  766,   68,  767,  769,
       68,  780,  770,   68,  777,  781,  771,   68,  772,  782,
      787,  783,  784,   68,   68,  779,  786,  785,   68,  775,
      776,  788,   68,   68,  789,   68,  790,   68,  780,   68,
       68,  777,  781, 1610,   68,   68,  782,  796,  783,  784,

      795,   68,  797,  786,  785,  799,   68,  801, 1610,   68,
      791,  789,   68,  790,   68,  792,   68,  793,   68,  794,
       68,  798,  802,  800,  796,  805,   68,  795,   68,  797,
       68,   68,  799,  807,  801,   68,  803,  791,  804,  806,
       68,  811,  792,  808,  793,   68,  794,  809,  798,  802,
      800,   68,   68,  810,  813,  812,  814,  815,  818,  824,
       68,   68,   68,  803,  816,  804,  806,   68,   68,   68,
      808,   68,  817,  819,  809,  820,  822,   68,   68,  821,
      810,   68,  812,  814,   68,  818,  825,  823,   68,  826,
       68,  816,  827,  830,   68,   68,  834,   68,  831,  817,

      819,   68,  820,  822,  828,  829,  821,   68,  832,   68,
      838,   68,  835,   68,  823,   68,  826,   68, 1610,   68,
      830,  837,   68,   68,  833,   68,  836,   68,   68,  846,
       68,  828,  829,   68,  839,  832,   68,  838,  840,  835,
       68,   68,  842,  841,  843,  844,   68,   68,  837,  845,
      848,  833,   68,  836,  847,  849,  846,  850,  852,  853,
      851,  839,  854,   68, 1610,  840,   68,   68,   68,  842,
      841,  843,  856,   68,   68,   68,   68,  848,  859, 1610,
      863,  847,  849,   68,  855,  852,  853,  851,   68,  854,
      858,  857,   68,   68,   68,  860,  862,   68,  861,  856,

       68,   68,  864,  874,   68,  859,   68,  863,  865,   68,
       68,  855,  866,  869,  867,  868,  870,  858,  857,  875,
     1610,  872,  860,  862,   68,  861,  871,   68,   68,  864,
       68,   68,   68,  873,   68,  865,   68,  876,  877,  866,
      869,  867,  868,  870,  878,  879,  880,   68,  872,  883,
       68,  884,  881,  871,   68,   68,  882, 1610,   68,   68,
      873,  885,  887,   68,  876,   68,   68,  886,   68,   68,
       68,  878,  879,  880,  888,  889,   68,  890,  884, 1610,
      894,  895,  891,   68,  892,   68,  896,   68,  885,  887,
       68,  893,   68,   68,  886,   68,  897,  898,   68,   68,

      900,  888,  899,  901,  890,  902,   68,  894,  895,  891,
      903,  892,   68,  896,   68,  907,  904,  905,  893,   68,
      909,   68,   68,  897,  898,   68,  906,  900,  910,  899,
      901,  911,  902,   68,  912, 1610,  908,   68,   68,  913,
       68,  914,   68,  904,  905,   68,   68,  909,  915,  917,
      919,   68,  916,  906,   68,  910,  918,  921,  920,  926,
      922,   68,   68,  908,   68,   68,   68,   68,  914,   68,
       68,  923,   68,  924,   68,  915,  917,  919,   68,  916,
      925,  927,   68,  918,   68,  920,  926,  922,  928,   68,
      929,  930,  937,  931,  932,  933,   68,   68,  923,   68,

      924,   68,   68,  935,   68,  934,  938,  925,  927,  936,
       68,  939,   68,   68,  940,  928,  941,  929,  930,   68,
      931,  932,  933,   68,   68,  943,  942,  944,   68,   68,
      935,   68,  934,  938,  949,  950,  936,   68,  939,  945,
      951,   68,   68,  941,  946,  954,   68,  947,  952,  955,
      956,   68,  943,  942,  944,  957,  961,   68,   68,  948,
       68,  953,  950,   68,   68,   68,  945,  951,   68,   68,
       68,  946,  954,  958,  947,  952,   68,  956,  959,  960,
       68,   68,  957,  961,  963,   68,  948,  962,  953,  965,
      964,  968,  966,  969,  971,  967,  970, 1610,   68,   68,

      958,   68,   68,  975,   68,  959,  960,  974,   68,   68,
       68,   68,   68,   68,  962,   68,  965,  964,  968,  966,
      969,  972,  967,  970,  973,   68,  976,  979,   68,  977,
      975,   68,  978,  980,  974,  982,  985,  981,   68,  983,
      984,  989,  990, 1610,   68, 1610,   68,   68,  972, 1610,
       68,  973,  986,  976,  979,  987,  977,   68,   68,  978,
       68,   68,  982,  985,  981,  988,  983,  984,  991,   68,
       68,  992,   68,  997,  994,   68,  995,  993,   68,  986,
      996,  999,  987,   68, 1000,   68,   68,   68, 1002,   68,
       68,  998,  988, 1003, 1005,  991, 1001, 1006,  992,   68,

      997,  994,   68,  995,  993,   68, 1004,  996,  999, 1009,
     1007,   68, 1010,   68,   68,   68, 1008, 1610,  998,   68,
     1003, 1011, 1013, 1001, 1006,   68,   68, 1012,   68, 1014,
       68, 1016, 1015, 1004,   68,   68, 1009, 1007,   68, 1010,
       68,   68, 1017, 1008, 1018, 1019, 1020, 1022, 1011, 1023,
     1024,   68, 1021,   68, 1012, 1028, 1014, 1032, 1016, 1015,
     1033,   68, 1025, 1026, 1610,   68,   68,   68,   68, 1017,
       68, 1018, 1019, 1020, 1022,   68, 1023,   68,   68, 1021,
     1027, 1029, 1030, 1031,   68, 1034,   68,   68, 1035, 1025,
     1026,   68, 1037, 1038, 1040,   68,   68, 1610, 1036, 1047,

     1041, 1039, 1046,   68,   68, 1042,   68, 1027, 1029, 1030,
     1031,   68, 1034,   68,   68,   68,   68, 1044, 1043, 1037,
     1038, 1040,   68,   68,   68, 1036, 1045, 1041, 1039,   68,
       68, 1048, 1042, 1049, 1051, 1050, 1052,   68,   68, 1053,
     1054,   68,   68,   68, 1044, 1043, 1055, 1056, 1057, 1059,
     1610, 1061, 1610, 1045, 1060, 1058,   68, 1062, 1048, 1063,
     1049,   68, 1050, 1052,   68, 1610,   68,   68, 1067, 1068,
     1071,   68, 1072,   68, 1056,   68,   68,   68,   68,   68,
       68, 1060, 1058,   68, 1062, 1064, 1069, 1065, 1070, 1075,
       68, 1073, 1066,   68,   68, 1067, 1068,   68, 1074, 1072,

       68, 1076, 1078, 1079, 1610,   68, 1081,   68, 1077, 1080,
       68, 1085, 1064, 1069, 1065, 1070, 1075,   68, 1073, 1066,
       68,   68,   68, 1082,   68, 1074, 1083, 1084,   68, 1078,
     1079, 1086,   68, 1081, 1088, 1077, 1080,   68,   68, 1087,
     1089, 1091,   68, 1092, 1093, 1090, 1096, 1097,   68,   68,
     1082, 1100,   68, 1083, 1084,   68, 1095, 1094, 1086,   68,
     1098,   68,   68,   68,   68, 1099, 1087, 1089, 1091,   68,
     1092, 1093, 1090, 1096,   68, 1101,   68,   68,   68, 1103,
     1102,   68, 1104, 1095, 1094, 1105, 1107, 1098, 1109, 1106,
     1610, 1110, 1099,   68, 1108,   68, 1111, 1112, 1113, 1114,

     1115,   68, 1101,   68, 1117, 1119, 1120, 1102, 1610,   68,
       68,   68, 1118,   68, 1116, 1109,   68,   68, 1121,   68,
       68, 1108,   68, 1111, 1112, 1113, 1114,   68, 1122,   68,
     1123,   68, 1119,   68, 1128,   68, 1125, 1124, 1126, 1118,
     1129, 1116, 1130, 1132, 1127,   68, 1610,   68, 1135,   68,
     1133,   68,   68,   68,   68, 1122, 1134, 1123,   68,   68,
       68,   68, 1610, 1125, 1124, 1126, 1131, 1129, 1136, 1130,
     1132, 1127, 1140,   68, 1137,   68, 1141, 1133,   68,   68,
     1139,   68, 1142, 1134, 1143, 1138, 1144, 1146, 1145,   68,
       68, 1147, 1148, 1131,   68, 1136, 1610,   68,   68, 1140,

       68, 1137, 1149, 1141, 1151, 1610, 1153, 1139, 1154,   68,
     1155, 1143, 1138,   68, 1146, 1145,   68,   68, 1147,   68,
     1150,   68,   68,   68, 1156,   68, 1152,   68, 1158, 1149,
       68, 1151,   68, 1153, 1157, 1154,   68, 1155, 1159, 1160,
     1161,   68, 1163, 1162, 1164,   68, 1165, 1150,   68, 1166,
       68, 1156, 1171, 1152, 1610, 1158,   68, 1167,   68, 1168,
     1610, 1157, 1175,   68, 1610, 1159, 1160, 1161,   68,   68,
     1162, 1164, 1172, 1165,   68, 1170, 1166, 1173, 1169,   68,
     1174,   68,   68,   68, 1167,   68, 1168,   68, 1176,   68,
     1180, 1179, 1177,   68,   68, 1178, 1181, 1610, 1182, 1172,

     1184, 1610, 1170,   68, 1173, 1169, 1183, 1174,   68, 1187,
       68,   68, 1192, 1188,   68, 1176,   68, 1180, 1179, 1177,
       68, 1186, 1178, 1181, 1185, 1182, 1189, 1184,   68, 1191,
       68,   68,   68, 1183,   68, 1190, 1187,   68,   68,   68,
     1188, 1193, 1194, 1196, 1195, 1197, 1198,   68, 1186, 1199,
     1202, 1185,   68, 1189, 1203, 1200, 1191, 1201, 1206,   68,
       68, 1205, 1190, 1204, 1208, 1610,   68,   68, 1193,   68,
     1196, 1195, 1197, 1198,   68,   68,   68,   68,   68, 1211,
       68, 1203, 1200,   68, 1201,   68,   68, 1207, 1205,   68,
     1204, 1208, 1209, 1210, 1212, 1214,   68, 1213, 1216, 1610,

     1215,   68, 1610,   68, 1217,   68, 1211, 1219,   68, 1221,
       68, 1218,   68, 1220, 1207,   68,   68,   68, 1223, 1209,
     1210, 1212,   68,   68, 1213, 1216,   68, 1215, 1225, 1222,
     1226, 1217, 1227,   68, 1219,   68, 1221, 1224, 1218, 1228,
     1220, 1229, 1230,   68, 1231, 1223,   68, 1232, 1233, 1234,
     1235, 1236, 1237,   68,   68,   68, 1222, 1226,   68, 1227,
     1239,   68, 1238, 1240, 1224, 1241, 1228,   68, 1229,   68,
       68,   68, 1242,   68, 1232,   68,   68, 1235,   68,   68,
     1244, 1245,   68, 1246, 1243, 1248, 1249, 1239, 1250, 1238,
       68, 1251, 1241,   68,   68, 1252,   68, 1253, 1247,   68,

     1610,   68, 1254, 1258, 1255,   68, 1256, 1244, 1245,   68,
     1246, 1243,   68, 1249, 1257,   68,   68,   68,   68,   68,
       68, 1259, 1252,   68, 1253, 1247, 1261,   68,   68, 1254,
     1258, 1255, 1260, 1256, 1262, 1265, 1264, 1263,   68, 1270,
     1267, 1257, 1266, 1610, 1268, 1610, 1269,   68, 1259,   68,
     1271, 1277,   68, 1261,   68,   68, 1273, 1275, 1272, 1260,
     1274, 1262,   68, 1264, 1263,   68,   68, 1267,   68, 1266,
       68, 1268,   68, 1269, 1276,   68,   68, 1271,   68, 1278,
     1279,   68, 1280, 1273, 1275, 1272, 1282, 1274, 1281, 1283,
     1610, 1284, 1610,   68, 1610, 1286,   68,   68, 1285,   68,

     1287, 1276, 1288,   68, 1289, 1290,   68, 1279,   68, 1280,
     1293,   68, 1292, 1282, 1610, 1281, 1283,   68, 1284,   68,
     1304,   68, 1286, 1291,   68, 1285, 1294,   68,   68, 1288,
       68, 1289, 1290, 1295,   68, 1296, 1297, 1300, 1610, 1292,
     1298,   68, 1299, 1610,   68, 1302, 1303,   68, 1301, 1307,
     1291,   68, 1305, 1294,   68,   68, 1309,   68, 1308, 1310,
     1295, 1312, 1296, 1297,   68,   68, 1306, 1298,   68, 1299,
       68, 1311,   68,   68,   68, 1301, 1307,   68,   68, 1305,
       68,   68, 1313,   68, 1314, 1308, 1310, 1315, 1312, 1316,
     1317, 1318, 1319, 1306, 1610, 1320,   68, 1321, 1311, 1322,

       68, 1323, 1324, 1329,   68,   68,   68,   68,   68, 1313,
       68,   68,   68, 1325,   68, 1334,   68, 1317, 1318, 1319,
     1327,   68, 1320, 1328, 1321, 1330, 1322,   68, 1323,   68,
     1329,   68, 1326,   68, 1331, 1332, 1333,   68,   68, 1335,
     1325, 1338,   68,   68, 1336, 1343,   68, 1327,   68, 1337,
     1328, 1339, 1330,   68,   68, 1341, 1344,   68,   68, 1326,
     1340, 1331, 1332, 1333,   68, 1342, 1335,   68, 1338,   68,
     1346, 1336,   68, 1345,   68, 1347, 1337, 1348, 1339,   68,
     1350, 1349, 1341, 1344,   68,   68, 1351, 1340,   68,   68,
     1610,   68, 1342, 1352, 1354, 1353, 1610, 1346, 1355, 1357,

     1345,   68, 1347,   68, 1348,   68,   68,   68, 1349, 1356,
     1358, 1361, 1359, 1610, 1363, 1364,   68,   68, 1360, 1610,
     1352, 1354, 1353,   68,   68, 1355, 1357,   68, 1365, 1366,
     1367, 1368, 1362, 1376,   68, 1377, 1356,   68,   68, 1359,
       68,   68,   68, 1369, 1370, 1360, 1373, 1371,   68, 1372,
     1374, 1375,   68,   68,   68, 1365, 1366, 1367, 1368, 1362,
       68,   68,   68,   68, 1378,   68,   68, 1379,   68, 1380,
     1369, 1370,   68, 1373, 1371, 1381, 1372, 1374, 1375, 1610,
     1382, 1384, 1383, 1386, 1610, 1385, 1388, 1610, 1610, 1387,
     1389, 1390, 1610, 1610,   68,   68,   68,   68, 1393,   68,

     1397,   68,   68,   68,   68,   68,   68, 1382, 1384, 1383,
     1386,   68, 1385, 1388,   68, 1391, 1387, 1389, 1390, 1392,
     1394, 1395, 1396, 1398,   68, 1393, 1399,   68, 1404,   68,
       68, 1403, 1400,   68, 1401, 1408, 1402,   68,   68, 1406,
     1610,   68, 1391, 1407, 1409,   68, 1392, 1394, 1395, 1396,
     1398,   68, 1410,   68,   68,   68,   68, 1405, 1403, 1400,
     1411, 1401,   68, 1402,   68,   68, 1406,   68, 1412,   68,
     1407,   68, 1413, 1414, 1415, 1416, 1610, 1419, 1421,   68,
     1420,   68, 1417, 1418, 1405,   68, 1423, 1411, 1427,   68,
     1424, 1610,   68, 1422, 1429, 1412,   68,   68,   68,   68,

       68, 1415, 1416,   68, 1419, 1421,   68, 1420, 1425, 1417,
     1418, 1426, 1428,   68,   68, 1427,   68, 1424, 1430,   68,
     1422, 1429, 1432,   68, 1433,   68, 1434,   68, 1431,   68,
     1436,   68, 1435, 1437, 1438, 1425, 1439, 1610, 1426, 1428,
       68,   68, 1441, 1440,   68, 1430, 1442, 1610, 1443, 1432,
       68, 1433,   68, 1434,   68, 1431,   68,   68,   68, 1435,
     1437, 1438, 1444, 1439, 1445, 1446, 1447, 1452,   68, 1441,
     1440, 1450,   68, 1442,   68, 1443, 1448, 1451, 1449,   68,
       68, 1455, 1453,   68, 1454, 1610,   68,   68, 1456, 1444,
       68, 1445, 1446, 1447,   68, 1459,   68, 1460,   68, 1457,

     1461,   68,   68, 1448, 1451, 1449,   68, 1463,   68, 1453,
       68, 1454, 1458, 1462,   68, 1456, 1464, 1465, 1466,   68,
       68,   68, 1459, 1467, 1460,   68, 1457, 1461,   68, 1468,
     1469, 1471, 1473, 1470,   68, 1472, 1474, 1477,   68, 1458,
     1462,   68,   68, 1464,   68, 1466,   68, 1475, 1480, 1481,
     1467,   68, 1610, 1476, 1478, 1479,   68,   68, 1471,   68,
     1470,   68, 1472, 1474,   68, 1482, 1483, 1484,   68,   68,
     1485, 1486, 1487,   68, 1475,   68,   68, 1489, 1488,   68,
     1476, 1478, 1479, 1490, 1491, 1492, 1494, 1493, 1610,   68,
     1610, 1610, 1482, 1483, 1484, 1495, 1496,   68,   68,   68,

       68, 1504, 1506, 1610,   68, 1488,   68,   68, 1498,   68,
     1490,   68, 1492,   68, 1493, 1497, 1502,   68,   68,   68,
     1499, 1500, 1495, 1496,   68, 1501, 1503, 1505,   68,   68,
       68,   68, 1507,   68, 1508, 1498, 1510, 1509,   68, 1511,
     1515, 1610, 1497, 1502, 1512,   68,   68, 1499, 1500,   68,
       68, 1514, 1501, 1503, 1505,   68, 1513,   68, 1516, 1507,
     1518,   68,   68, 1510, 1509, 1517,   68, 1515,   68, 1519,
     1520, 1512, 1522,   68, 1521, 1523, 1610, 1524, 1514, 1610,
       68, 1525, 1527, 1513, 1528, 1516, 1526,   68, 1531,   68,
       68,   68, 1517, 1529,   68,   68,   68,   68,   68, 1522,

     1530, 1521,   68,   68, 1524, 1533,   68,   68, 1525, 1527,
     1532, 1528, 1534, 1526,   68, 1531,   68, 1535,   68,   68,
     1529, 1536, 1537,   68, 1538, 1539, 1542, 1530, 1540, 1541,
     1543,   68, 1533,   68, 1547, 1546, 1548, 1532,   68, 1534,
     1610, 1544,   68,   68, 1535, 1545, 1549,   68, 1536,   68,
       68, 1538, 1539, 1542,   68, 1540, 1541,   68, 1551,   68,
     1550,   68, 1546, 1552, 1554,   68,   68,   68, 1544, 1553,
     1555, 1556, 1545, 1549,   68, 1565,   68,   68,   68,   68,
     1557, 1558, 1610, 1560,   68, 1551, 1559, 1550, 1610, 1561,
     1552, 1554, 1562, 1563,   68, 1566, 1553, 1555, 1556, 1570,

     1610, 1567,   68,   68, 1564, 1610,   68, 1557, 1558,   68,
     1560,   68,   68, 1559,   68,   68, 1561, 1568, 1569, 1562,
     1563,   68,   68, 1572, 1571,   68,   68, 1573, 1567, 1576,
       68, 1564,   68, 1574, 1575, 1610, 1577,   68, 1580, 1579,
     1610,   68,   68,   68, 1568, 1569, 1578,   68, 1581,   68,
     1572, 1571, 1583, 1585, 1573, 1582, 1576, 1610, 1586, 1584,
     1574, 1575,   68, 1577,   68, 1580, 1579,   68,   68, 1587,
     1589, 1591,   68, 1578,   68, 1581, 1588,   68,   68, 1583,
       68, 1610, 1582, 1590,   68, 1586, 1584, 1592, 1599,   68,
     1595,   68,   68,   68, 1593, 1601, 1587, 1589, 1591, 1594,

     1596, 1602,   68, 1588, 1597, 1610, 1598,   68,   68,   68,
     1590, 1610,   68, 1604, 1592,   68,   68, 1595, 1600, 1603,
     1605, 1593,   68, 1608, 1609, 1610, 1594, 1596,   68, 1606,
     1610, 1597,   68, 1598, 1610,   68, 1607,   68,   68,   68,
     1604, 1610,   68, 1610,   68, 1600, 1603, 1605, 1610, 1610,
       68,   68, 1610, 1610, 1610, 1610, 1606, 1610, 1610, 1610,
     1610, 1610, 1610, 1607,   40,   40,   40,   40,   40,   40,
       40,   45,   45,   45,   45,   45,   45,   45,   50,   50,
       50,   50,   50,   50,   50,   56,   56,   56,   56,   56,
       56,   56,   61,   61,   61,   61,   61,   61,   61,   71,

       71, 1610,   71,   71,   71,   71,  123,  123, 1610, 1610,
     1610,  123,  123,  125,  125, 1610, 1610,  125, 1610,  125,
      127, 1610, 1610, 1610, 1610, 1610,  127,  130,  130, 1610,
     1610, 1610,  130,  130,  132, 1610, 1610, 1610, 1610, 1610,
      132,  134,  134, 1610,  134,  134,  134,  134,   72,   72,
     1610,   72,   72,   72,   72,   13, 1610, 1610, 1610, 1610,
     1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610,
     1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610,
     1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610,
     1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610,

     1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610,
     1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610,
     1610
    } ;

static yyconst flex_int16_t yy_chk[4722] =
    {   0,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    3,    3,    3,    4,    4,
        4,    5,    5,    6,    6,    5,   24,    6,    7,    7,
        7,    7, 1616,    7,    8,    8,    8,    8,   24,    8,
        9,    9,    9,   10,   10,   10,   15,   44,   44,   49,

       15,    3,   49,   24,    4,   60,   60,    5,   19,    6,
       19,   19,   69,   19,  625,    7,   69,   39,   19,   39,
       39,    8,   39,   23,   20,   20,    9,   39,  619,   10,
       11,   11,   11,   11,   11,   11,   12,   12,   12,   12,
       12,   12,   20,   23,   27,   19,   23,   29,   20,   11,
       23,   20,   20,  132,   21,   12,   27,   25,  619,   29,
      130,   21,  124,  124,   28,   25,  129,   11,   21,   20,
       23,   27,  126,   12,   29,  126,   11,  131,  131,  127,
       21,   21,   12,   25,   25,   75,   28,   26,   21,   37,
       26,   28,   25,   30,   37,   21,   22,   26,   32,   26,

       22,   30,   37,   22,   32,   22,   22,   30,   75,   31,
       26,   30,   75,   31,   26,  125,   37,   26,   22,   30,
       30,   37,  205,   22,   26,   32,   26,   22,   30,   31,
       22,   89,   22,   22,   30,   31,   31,   33,   30,   34,
       31,  123,   36,   33,   36,   55,   33,   55,   55,   34,
       55,  205,   34,   33,   89,   33,   31,  148,   89,   36,
       63,   34,   63,   63,   33,   63,   34,   35,   36,   36,
       33,   36,   65,   33,   38,   67,   34,   35,   38,   34,
       33,   35,   35,  148,  148,   65,   36,   61,   66,   35,
       66,   66,   56,   66,   35,   51,   76,   63,   74,   65,

       38,   38,   77,   76,   35,   38,   82,   50,   35,   35,
       68,   82,   68,   68,   71,   68,   71,   71,   78,   71,
       68,   79,   74,   76,   71,   74,   77,   78,   80,   77,
       81,   85,   83,   82,   79,   84,   45,   87,   88,   81,
       83,   90,   86,   80,   85,   78,   87,   88,   79,   86,
       40,   71,   84,   92,   91,   80,   92,   81,   85,   83,
       93,   99,  185,   90,   87,   88,   84,   91,   90,   86,
       92,   96,   95,   97,   94,   96,   97,   92,   14,   84,
       92,   91,   94,   92,   99,  100,  102,  185,   99,  185,
       98,   93,   95,  101,   95,   96,  103,   92,   96,   95,

       97,   94,   96,   98,  104,  100,  102,  101,  113,  105,
      103,  104,  100,  102,  108,  106,  109,   98,  107,   95,
      101,  108,  107,  103,  106,  110,  111,   13,    0,  112,
      109,  104,  105,  114,  111,  115,  105,  110,  112,  113,
      107,  108,  106,  109,  119,  107,  117,    0,  114,  107,
      116,  121,  110,  111,  120,  115,  112,  117,  118,  116,
      114,  115,  115,  122,  118,  119,  121,    0,    0,  119,
        0,  119,  122,  117,  138,  136,  120,  116,  121,  137,
        0,  120,  115,  145,  128,  118,  128,  128,    0,  128,
      122,  133,  119,  133,  133,  134,  133,  134,  134,  136,

      134,  137,  136,  139,  140,  138,  137,  141,  143,  142,
      149,  144,    0,  143,  145,  139,  142,    0,  149,  141,
      146,    0,  150,  140,  151,  153,  157,  152,  151,  154,
      139,  140,  134,  144,  141,  157,  142,  149,  144,  143,
      143,  146,  154,  155,  150,  162,    0,  153,  146,  150,
      152,  151,  153,  157,  152,  155,  154,  156,    0,    0,
      156,  158,    0,  159,  160,    0,  161,  165,  146,  147,
      155,  160,  156,  163,  147,  167,  162,  161,  168,  147,
      170,  167,    0,  158,  156,  147,  147,  156,  158,  159,
      159,  160,  147,  161,  164,  169,  147,  166,  165,  163,

      163,  147,  167,  171,  164,  173,  147,    0,  172,  168,
        0,  170,  147,  147,  174,  166,  175,  169,  176,  177,
      180,  174,  169,  176,  166,  164,  173,  178,  172,  179,
      183,  164,  173,  184,  171,  172,  179,  175,  177,  178,
      184,  174,  180,  175,  181,  176,  177,  180,  186,  181,
      182,  182,  187,  190,  178,  188,  179,  189,  192,  182,
      184,  183,    0,  188,  191,  198,  194,  200,  186,    0,
      197,  181,  189,  193,    0,  186,  200,  182,  182,  190,
      190,  194,  188,  187,  189,  196,  191,  198,  195,  192,
      193,  199,  198,  194,  200,  191,  195,  201,  193,  203,

      193,  197,  204,  199,  196,  202,  210,  202,  206,  213,
      207,  208,  196,  191,  214,  195,  201,  193,  199,  209,
      211,  212,  208,  203,  201,  215,  203,  214,  204,  204,
      210,  209,  202,  210,  206,  206,  207,  207,  208,  212,
      213,  214,  216,  211,  217,  219,  209,  211,  212,  218,
      224,  215,  215,  220,  219,  222,  218,  221,  223,  220,
      226,  230,  227,  225,  216,    0,    0,  223,  228,  216,
      235,  221,  219,  224,    0,  217,  218,  224,  225,  230,
      220,  222,  222,  228,  221,  223,  227,  232,  230,  227,
      225,  226,  231,  229,  233,  228,  229,  235,  231,  234,

      234,  232,  237,  229,  236,  237,  238,  239,  240,  233,
      245,    0,  237,  242,  232,  241,  252,    0,  238,  231,
      229,  233,  247,  229,  234,  239,  234,  234,  236,  237,
      253,  236,  237,  238,  239,  240,  243,  241,  244,  242,
      242,  245,  241,  246,  247,  244,  249,  252,  243,  247,
      246,  248,  253,  248,  251,  250,  254,  253,  250,  249,
      250,  255,  254,  243,  256,  244,  250,    0,  255,  267,
      246,  257,  251,  249,    0,  248,  256,  258,  248,  259,
      248,  251,  250,  254,  257,  250,  264,  250,  255,  262,
      261,  256,  259,  258,  264,    0,  265,  263,  257,  269,

      267,  258,  261,  263,  258,  266,  259,  262,  265,  271,
      350,  269,  266,  264,    0,  270,  262,  261,  268,  274,
      258,  260,  260,  265,  263,  268,  269,  270,  273,  272,
      276,  260,  266,  260,  260,  260,  272,  350,  260,    0,
      271,  273,  270,  275,  278,  268,  260,    0,  260,  260,
      274,  278,  276,  283,  275,  273,  272,  276,  260,  281,
      260,  260,  260,  277,  277,  260,  279,  280,  285,  286,
      275,  278,  281,  282,  284,    0,  283,  279,  280,  287,
      283,  285,  286,  284,    0,  288,  281,  286,  289,  291,
      290,  293,  277,  279,  280,  285,  286,  287,  282,  294,

      282,  284,  292,  297,  296,  295,  287,  288,  290,  286,
      298,  289,  288,  318,  293,  289,  298,  290,  293,  295,
      291,  294,  299,  292,  300,  301,  294,  302,  303,  292,
      296,  296,  295,  305,  297,  304,  308,  298,  307,  300,
      299,  304,  308,  310,  318,  315,    0,  309,  301,  299,
      303,  300,  301,  302,  302,  303,  311,  316,  315,  305,
      305,  310,  304,  308,  307,  307,  309,  317,  313,  314,
      310,  311,  315,  319,  309,  313,  314,  323,  322,  316,
      320,  321,  319,  311,  316,  320,  317,  321,  324,  323,
      326,  325,    0,    0,  317,  313,  314,    0,  326,    0,

      319,  322,  325,  329,  323,  322,  328,  320,  321,    0,
      324,  330,  331,  328,  329,  324,  332,  326,  325,  327,
      330,    0,  333,  332,  327,  334,  327,  334,  335,  336,
      329,    0,  339,  328,  327,  337,  331,  346,  341,  331,
      339,  336,  330,  332,  327,  327,  327,  330,  333,  333,
      337,  327,  334,  327,  335,  335,  336,  338,  340,  339,
      341,  327,  337,  340,  342,  341,  343,  344,  346,  338,
      359,  327,  345,  347,  343,  349,  357,  348,  354,  344,
      357,  351,  342,  352,  338,  340,  348,  353,  347,  349,
      354,  342,  355,  343,  344,  345,  351,  359,  352,  345,

      347,  358,  349,  360,  348,  354,  356,  357,  351,  356,
      352,  353,  361,  362,  353,  358,  355,  356,  363,  355,
      364,  365,  366,  367,  368,    0,  372,  365,  358,  369,
      360,  370,  371,  356,  374,    0,  356,  376,  373,  371,
      362,  378,    0,  361,  366,  363,  367,  374,  365,  366,
      367,  364,  369,  370,  380,  368,  369,  372,  370,  371,
      373,  374,  375,  376,  376,  373,  377,  375,  381,  379,
      382,  375,  378,  385,  383,  377,  387,  384,  380,    0,
        0,  380,  398,  391,  385,  388,  375,  379,  383,  375,
      381,  381,  382,  377,  375,  381,  379,  382,  375,  384,

      385,  383,  389,  386,  384,  391,  388,  387,  390,  393,
      391,  392,  388,  398,    0,  394,  395,  381,  386,  396,
      392,  397,  393,    0,  400,  397,  389,  399,    0,  389,
      386,  402,  390,    0,  404,  390,  393,  394,  392,  400,
      395,  396,  394,  395,  414,  399,  396,  403,  400,  401,
      409,  400,  397,  401,  399,  403,  402,  407,  402,  404,
      405,  404,  406,  408,  410,  407,  400,  411,    0,  405,
      408,  406,  412,  409,  403,  414,  413,  409,  415,  411,
      401,  412,  410,  416,  407,  417,  415,  405,  413,  406,
      408,  410,  419,  420,  411,  418,  423,    0,  421,  412,

        0,  422,  424,  413,  420,  415,  421,  425,  417,  416,
      416,  418,  417,  426,  419,  422,  423,  427,  429,  419,
      420,  428,  418,  423,  424,  421,  433,  425,  422,  424,
      428,  430,  432,  431,  425,  426,  435,    0,  429,  427,
      426,  434,  435,  436,  427,  429,  431,  440,  428,  430,
      433,  436,  438,  433,  432,  454,  456,  439,  430,  432,
      431,    0,  440,  435,  434,  447,  441,  442,  434,  436,
      436,  444,  443,  444,  440,  441,  454,  447,  436,  450,
      439,  443,  454,  438,  439,  453,  442,  456,  455,  450,
        0,  458,  447,  441,  442,    0,  459,  461,  444,  443,

      445,  462,    0,  453,  445,  459,  450,  445,  460,  463,
      460,  455,  453,  458,  445,  455,  464,  445,  458,    0,
        0,  461,  445,  459,  461,  465,  468,  445,  462,  463,
      466,  445,  471,  469,  445,  460,  463,  465,  470,  467,
      469,  445,  464,  464,  445,  457,  470,  457,  468,  472,
      457,  471,  465,  468,  476,  457,  466,  466,  475,  471,
      469,  457,  457,  467,  474,  470,  467,  473,  477,  478,
      457,  479,  457,  474,  457,  472,  472,  457,  481,  473,
      475,  476,  457,  480,  482,  475,  484,  483,  457,  457,
      486,  474,  485,  488,  473,  479,  483,  481,  479,  477,

      478,  487,  491,  482,  480,  481,  493,  489,  484,  492,
      480,  482,  485,  484,  483,  489,  498,  486,  494,  485,
      487,  497,  492,  495,  488,  512,  491,  497,  487,  491,
      494,  495,  493,  493,  489,  499,  492,  500,  498,  503,
      504,  499,  502,  498,  500,  494,  501,  495,  497,  502,
      495,  501,  505,  507,  509,    0,  512,  503,  495,  508,
      506,  505,  499,  504,  500,  511,  503,  504,  506,  502,
      510,  507,  508,  501,  513,  509,  514,  510,  511,  505,
      507,  509,  515,  516,  517,  518,  508,  506,  519,  520,
      515,  518,  511,  524,  521,  522,  526,  510,  516,  514,

      525,  527,  523,  514,  522,  513,  517,  525,  529,  515,
      516,  517,  518,  528,  519,  519,  523,  538,  521,  532,
      520,  521,  522,  526,  524,  528,  530,  525,  527,  523,
      531,  529,  532,  531,  530,  529,  534,    0,  535,  538,
      528,  536,  537,  536,  538,  546,  532,  541,  539,  540,
      535,  546,    0,  530,  537,  549,    0,  531,  533,  534,
      533,  539,  540,  534,  533,  535,  533,  542,  536,  537,
      541,  533,  546,  543,  541,  539,  540,  544,  559,  542,
        0,  548,  533,  543,  545,  533,  549,  533,  547,    0,
      552,  533,    0,  533,  542,  543,  551,  545,  533,  544,

      543,  547,  548,  552,  544,  559,  562,  550,  548,  553,
      543,  545,  550,  555,  550,  547,  554,  552,  551,  556,
      558,  564,  560,  551,  553,    0,  563,    0,  558,  564,
      566,  557,  550,  550,  550,  555,  553,  562,  556,  550,
      555,  550,  554,  554,  557,  560,  556,  558,  564,  560,
      563,  565,  566,  563,  567,  568,  569,  566,  557,  550,
      571,  572,  567,  570,  569,  565,  573,  571,  574,  576,
      577,    0,    0,  568,  572,  583,  579,  576,  565,  577,
      578,  567,  568,  569,  573,  570,  580,  571,  572,  581,
      570,  582,  578,  573,  584,  588,  576,  577,  579,  574,

      586,  583,  583,  579,  586,  589,  591,  578,  580,  582,
      598,  581,  587,  580,  590,  587,  581,  589,  582,  588,
      592,  590,  588,  593,  594,  584,  592,  595,  597,  596,
      591,  586,  589,  591,  599,  600,  601,  598,  587,  587,
      596,  590,  587,  612,  600,  593,  594,  592,  595,  597,
      593,  594,  599,  606,  595,  597,  596,  602,  604,  603,
      601,  599,  600,  601,  605,  604,  602,  603,  607,  609,
      608,  610,  613,  611,  612,  606,    0,  614,  605,  608,
      606,  615,    0,    0,  602,  604,  603,  610,  611,  614,
      607,  605,  617,  609,  616,  607,  609,  608,  610,  618,

      611,  620,  616,  613,  614,  617,  621,  622,  615,  623,
      620,  623,  626,  628,  618,  622,  629,  627,  630,  617,
      628,  616,    0,  631,  621,  626,  618,    0,  620,  627,
      632,  634,  638,  621,  622,  633,  623,    0,  637,  626,
      628,    0,  635,  632,  627,  631,  637,  629,  633,  630,
      631,  636,  639,  634,  635,  640,  646,  632,  634,  638,
      641,  639,  633,  636,  642,  637,  643,  641,  645,  635,
        0,  648,  644,    0,  649,  647,  640,  650,  636,  639,
      646,  645,  640,  646,  647,  650,  651,  641,  643,  648,
      642,  642,  644,  643,  653,  645,  649,  652,  648,  644,

      654,  649,  647,  655,  650,  652,  658,  656,  651,    0,
      657,  660,    0,  651,  658,  655,  659,  653,  654,  656,
      660,  653,  659,  661,  652,  657,  666,  654,  662,  663,
      655,  664,  667,  658,  656,  668,  663,  657,  660,  669,
      662,  670,  675,  659,  661,  667,  669,  671,  676,  664,
      661,  671,  672,  673,  668,  662,  663,  666,  664,  667,
      672,  677,  668,  670,  674,  678,  669,  673,  670,  679,
      684,  680,  681,  675,  676,  676,  683,  682,  671,  672,
      673,  685,  674,  677,  686,  683,  687,  678,  677,  680,
      682,  674,  678,    0,  681,  679,  679,  691,  680,  681,

      689,  684,  692,  683,  682,  694,  686,  696,    0,  687,
      688,  686,  685,  687,  692,  688,  689,  688,  694,  688,
      691,  693,  697,  695,  691,  700,  696,  689,  688,  692,
      693,  695,  694,  702,  696,  697,  698,  688,  699,  701,
      699,  707,  688,  704,  688,  698,  688,  705,  693,  697,
      695,  701,  700,  706,  709,  708,  710,  711,  714,  721,
      702,  706,  708,  698,  712,  699,  701,  704,  707,  705,
      704,  712,  713,  715,  705,  716,  718,  714,  710,  717,
      706,  709,  708,  710,  711,  714,  722,  719,  717,  723,
      721,  712,  724,  727,  713,  715,  731,  718,  728,  713,

      715,  716,  716,  718,  725,  726,  717,  719,  729,  727,
      735,  723,  732,  726,  719,  729,  723,  722,    0,  732,
      727,  734,  725,  724,  730,  728,  733,  731,  730,  743,
      734,  725,  726,  733,  736,  729,  735,  735,  737,  732,
      737,  736,  739,  738,  740,  742,  739,  743,  734,  742,
      745,  730,  738,  733,  744,  746,  743,  747,  749,  750,
      748,  736,  751,  751,    0,  737,  740,  750,  746,  739,
      738,  740,  753,  744,  749,  745,  742,  745,  756,    0,
      760,  744,  746,  748,  752,  749,  750,  748,  747,  751,
      755,  754,  760,  752,  753,  757,  759,  755,  758,  753,

      754,  756,  761,  771,  757,  756,  758,  760,  762,  759,
      761,  752,  763,  766,  764,  765,  767,  755,  754,  772,
        0,  769,  757,  759,  765,  758,  768,  769,  767,  761,
      762,  766,  763,  770,  771,  762,  764,  773,  775,  763,
      766,  764,  765,  767,  776,  777,  778,  768,  769,  780,
      772,  781,  779,  768,  778,  770,  779,    0,  777,  781,
      770,  782,  784,  773,  773,  775,  776,  783,  783,  782,
      784,  776,  777,  778,  785,  786,  780,  787,  781,    0,
      791,  792,  788,  779,  789,  787,  793,  792,  782,  784,
      788,  790,  789,  791,  783,  785,  794,  795,  793,  790,

      797,  785,  796,  798,  787,  799,  786,  791,  792,  788,
      800,  789,  799,  793,  797,  804,  801,  802,  790,  795,
      808,  798,  794,  794,  795,  796,  803,  797,  809,  796,
      798,  810,  799,  803,  812,    0,  806,  800,  801,  814,
      802,  816,  808,  801,  802,  806,  804,  808,  817,  819,
      821,  819,  818,  803,  809,  809,  820,  823,  822,  828,
      824,  812,  810,  806,  818,  816,  814,  824,  816,  820,
      822,  825,  821,  826,  817,  817,  819,  821,  826,  818,
      827,  829,  828,  820,  823,  822,  828,  824,  830,  829,
      832,  833,  840,  834,  835,  836,  827,  825,  825,  832,

      826,  835,  836,  838,  833,  837,  841,  827,  829,  839,
      830,  842,  837,  841,  843,  830,  844,  832,  833,  834,
      834,  835,  836,  840,  842,  847,  846,  848,  838,  846,
      838,  839,  837,  841,  851,  852,  839,  844,  842,  849,
      853,  843,  848,  844,  850,  856,  849,  850,  854,  857,
      858,  847,  847,  846,  848,  859,  863,  852,  853,  850,
      863,  855,  852,  855,  859,  851,  849,  853,  850,  856,
      854,  850,  856,  860,  850,  854,  858,  858,  861,  862,
      857,  860,  859,  863,  865,  861,  850,  864,  855,  867,
      866,  870,  868,  871,  873,  869,  872,    0,  867,  868,

      860,  862,  869,  878,  870,  861,  862,  876,  871,  864,
      872,  865,  866,  876,  864,  878,  867,  866,  870,  868,
      871,  874,  869,  872,  875,  873,  879,  881,  874,  880,
      878,  875,  880,  884,  876,  886,  889,  885,  881,  887,
      888,  892,  893,    0,  889,    0,  879,  880,  874,    0,
      887,  875,  890,  879,  881,  890,  880,  886,  888,  880,
      884,  885,  886,  889,  885,  891,  887,  888,  894,  893,
      890,  895,  892,  900,  897,  894,  898,  896,  898,  890,
      899,  902,  890,  891,  904,  895,  896,  897,  906,  899,
      902,  901,  891,  907,  909,  894,  905,  910,  895,  900,

      900,  897,  901,  898,  896,  905,  908,  899,  902,  914,
      911,  910,  915,  908,  907,  904,  911,    0,  901,  906,
      907,  916,  918,  905,  910,  909,  915,  917,  914,  919,
      916,  922,  920,  908,  911,  917,  914,  911,  922,  915,
      919,  920,  923,  911,  924,  925,  926,  928,  916,  929,
      930,  928,  927,  918,  917,  934,  919,  938,  922,  920,
      939,  929,  931,  932,    0,  923,  924,  925,  926,  923,
      927,  924,  925,  926,  928,  931,  929,  930,  932,  927,
      933,  935,  936,  937,  938,  941,  934,  939,  942,  931,
      932,  936,  944,  945,  947,  933,  935,    0,  943,  953,

      948,  946,  952,  941,  937,  949,  947,  933,  935,  936,
      937,  945,  941,  943,  944,  942,  946,  950,  949,  944,
      945,  947,  948,  949,  950,  943,  951,  948,  946,  952,
      953,  954,  949,  955,  957,  956,  958,  954,  951,  959,
      960,  955,  956,  958,  950,  949,  961,  962,  964,  966,
        0,  968,    0,  951,  967,  965,  967,  969,  954,  970,
      955,  957,  956,  958,  965,    0,  959,  960,  972,  973,
      976,  962,  977,  977,  962,  972,  973,  961,  968,  964,
      966,  967,  965,  969,  969,  971,  974,  971,  975,  981,
      970,  978,  971,  974,  975,  972,  973,  976,  979,  977,

      971,  982,  984,  985,    0,  979,  987,  981,  983,  986,
      986,  992,  971,  974,  971,  975,  981,  978,  978,  971,
      983,  985,  984,  988,  988,  979,  989,  991,  982,  984,
      985,  993,  987,  987,  995,  983,  986,  989,  993,  994,
      996,  998,  992,  999, 1000,  997, 1003, 1004,  998,  991,
      988, 1006, 1000,  989,  991,  999, 1002, 1001,  993,  994,
     1005,  995,  996,  997, 1003, 1005,  994,  996,  998, 1001,
      999, 1000,  997, 1003, 1004, 1007, 1005, 1002, 1006, 1009,
     1008, 1007, 1010, 1002, 1001, 1011, 1012, 1005, 1014, 1011,
        0, 1015, 1005, 1008, 1013, 1013, 1016, 1017, 1018, 1019,

     1020, 1019, 1007, 1014, 1022, 1025, 1026, 1008,    0, 1010,
     1009, 1016, 1023, 1018, 1021, 1014, 1011, 1012, 1027, 1021,
     1017, 1013, 1015, 1016, 1017, 1018, 1019, 1023, 1028, 1025,
     1029, 1020, 1025, 1026, 1037, 1022, 1031, 1030, 1034, 1023,
     1038, 1021, 1039, 1041, 1036, 1027,    0, 1038, 1044, 1028,
     1042, 1041, 1029, 1034, 1031, 1028, 1043, 1029, 1030, 1036,
     1039, 1037,    0, 1031, 1030, 1034, 1040, 1038, 1045, 1039,
     1041, 1036, 1049, 1042, 1047, 1040, 1050, 1042, 1043, 1044,
     1048, 1045, 1052, 1043, 1055, 1047, 1056, 1058, 1057, 1048,
     1049, 1059, 1060, 1040, 1050, 1045,    0, 1055, 1057, 1049,

     1047, 1047, 1062, 1050, 1064,    0, 1066, 1048, 1067, 1052,
     1068, 1055, 1047, 1058, 1058, 1057, 1059, 1056, 1059, 1060,
     1063, 1066, 1062, 1067, 1069, 1068, 1065, 1063, 1072, 1062,
     1064, 1064, 1065, 1066, 1070, 1067, 1069, 1068, 1073, 1074,
     1075, 1070, 1078, 1077, 1079, 1079, 1080, 1063, 1074, 1081,
     1072, 1069, 1086, 1065,    0, 1072, 1077, 1082, 1075, 1083,
        0, 1070, 1091, 1073,    0, 1073, 1074, 1075, 1080, 1078,
     1077, 1079, 1087, 1080, 1081, 1085, 1081, 1089, 1084, 1082,
     1090, 1083, 1085, 1086, 1082, 1089, 1083, 1084, 1092, 1091,
     1095, 1094, 1093, 1090, 1087, 1093, 1096,    0, 1098, 1087,

     1101,    0, 1085, 1092, 1089, 1084, 1099, 1090, 1095, 1105,
     1093, 1096, 1111, 1107, 1101, 1092, 1094, 1095, 1094, 1093,
     1098, 1103, 1093, 1096, 1102, 1098, 1108, 1101, 1099, 1110,
     1105, 1102, 1103, 1099, 1107, 1109, 1105, 1109, 1108, 1111,
     1107, 1112, 1113, 1115, 1114, 1116, 1117, 1110, 1103, 1118,
     1123, 1102, 1114, 1108, 1124, 1119, 1110, 1122, 1127, 1112,
     1117, 1126, 1109, 1125, 1130,    0, 1115, 1116, 1112, 1113,
     1115, 1114, 1116, 1117, 1119, 1122, 1118, 1123, 1125, 1133,
     1124, 1124, 1119, 1126, 1122, 1127, 1130, 1129, 1126, 1129,
     1125, 1130, 1131, 1132, 1134, 1136, 1131, 1135, 1138,    0,

     1137, 1133,    0, 1134, 1139, 1132, 1133, 1141, 1135, 1144,
     1138, 1140, 1140, 1143, 1129, 1141, 1143, 1144, 1146, 1131,
     1132, 1134, 1136, 1137, 1135, 1138, 1139, 1137, 1149, 1145,
     1150, 1139, 1151, 1146, 1141, 1145, 1144, 1147, 1140, 1152,
     1143, 1153, 1154, 1147, 1155, 1146, 1151, 1156, 1157, 1158,
     1159, 1160, 1161, 1152, 1150, 1149, 1145, 1150, 1159, 1151,
     1164, 1156, 1162, 1165, 1147, 1166, 1152, 1153, 1153, 1154,
     1162, 1155, 1167, 1166, 1156, 1157, 1158, 1159, 1160, 1161,
     1169, 1170, 1164, 1171, 1168, 1172, 1173, 1164, 1174, 1162,
     1165, 1176, 1166, 1168, 1173, 1177, 1177, 1178, 1171, 1167,

        0, 1169, 1179, 1183, 1180, 1170, 1181, 1169, 1170, 1171,
     1171, 1168, 1172, 1173, 1182, 1174, 1182, 1183, 1176, 1180,
     1179, 1184, 1177, 1178, 1178, 1171, 1186, 1184, 1181, 1179,
     1183, 1180, 1185, 1181, 1187, 1190, 1189, 1188, 1186, 1197,
     1193, 1182, 1191,    0, 1195,    0, 1196, 1193, 1184, 1189,
     1198, 1205, 1187, 1186, 1185, 1188, 1200, 1203, 1198, 1185,
     1201, 1187, 1195, 1189, 1188, 1191, 1190, 1193, 1200, 1191,
     1197, 1195, 1196, 1196, 1204, 1201, 1198, 1198, 1205, 1207,
     1208, 1203, 1209, 1200, 1203, 1198, 1211, 1201, 1210, 1212,
        0, 1213,    0, 1208,    0, 1216, 1204, 1212, 1215, 1211,

     1217, 1204, 1218, 1210, 1219, 1220, 1207, 1208, 1209, 1209,
     1223, 1219, 1222, 1211,    0, 1210, 1212, 1213, 1213, 1216,
     1243, 1215, 1216, 1221, 1218, 1215, 1224, 1217, 1220, 1218,
     1221, 1219, 1220, 1226, 1222, 1227, 1228, 1235,    0, 1222,
     1229, 1223, 1232,    0, 1226, 1239, 1241, 1224, 1238, 1246,
     1221, 1243, 1244, 1224, 1246, 1228, 1249, 1227, 1247, 1252,
     1226, 1254, 1227, 1228, 1235, 1229, 1245, 1229, 1232, 1232,
     1238, 1253, 1239, 1241, 1254, 1238, 1246, 1245, 1244, 1244,
     1247, 1252, 1255, 1249, 1256, 1247, 1252, 1257, 1254, 1258,
     1259, 1260, 1261, 1245,    0, 1262, 1253, 1263, 1253, 1264,

     1260, 1265, 1266, 1271, 1255, 1259, 1271, 1261, 1265, 1255,
     1262, 1256, 1263, 1267, 1257, 1276, 1258, 1259, 1260, 1261,
     1269, 1264, 1262, 1270, 1263, 1272, 1264, 1269, 1265, 1266,
     1271, 1267, 1268, 1268, 1273, 1274, 1275, 1270, 1272, 1279,
     1267, 1282, 1276, 1273, 1280, 1288, 1279, 1269, 1282, 1281,
     1270, 1283, 1272, 1280, 1281, 1285, 1289, 1274, 1275, 1268,
     1284, 1273, 1274, 1275, 1285, 1286, 1279, 1284, 1282, 1283,
     1291, 1280, 1288, 1290, 1289, 1292, 1281, 1293, 1283, 1291,
     1295, 1294, 1285, 1289, 1292, 1290, 1296, 1284, 1293, 1294,
        0, 1286, 1286, 1297, 1299, 1298,    0, 1291, 1301, 1305,

     1290, 1299, 1292, 1298, 1293, 1297, 1301, 1295, 1294, 1304,
     1306, 1310, 1307,    0, 1312, 1313, 1304, 1296, 1308,    0,
     1297, 1299, 1298, 1305, 1307, 1301, 1305, 1308, 1317, 1318,
     1319, 1320, 1311, 1329, 1318, 1330, 1304, 1306, 1310, 1307,
     1311, 1312, 1313, 1321, 1322, 1308, 1326, 1323, 1319, 1325,
     1327, 1328, 1322, 1320, 1317, 1317, 1318, 1319, 1320, 1311,
     1329, 1325, 1330, 1328, 1331, 1321, 1323, 1332, 1326, 1333,
     1321, 1322, 1327, 1326, 1323, 1335, 1325, 1327, 1328,    0,
     1336, 1338, 1337, 1340,    0, 1339, 1342,    0,    0, 1341,
     1344, 1345,    0,    0, 1332, 1331, 1333, 1339, 1348, 1338,

     1353, 1342, 1340, 1336, 1337, 1345, 1335, 1336, 1338, 1337,
     1340, 1341, 1339, 1342, 1344, 1346, 1341, 1344, 1345, 1347,
     1349, 1351, 1352, 1354, 1348, 1348, 1355, 1353, 1362, 1351,
     1352, 1360, 1356, 1346, 1357, 1368, 1359, 1347, 1349, 1366,
        0, 1354, 1346, 1367, 1369, 1360, 1347, 1349, 1351, 1352,
     1354, 1356, 1370, 1355, 1359, 1362, 1357, 1365, 1360, 1356,
     1371, 1357, 1368, 1359, 1365, 1366, 1366, 1367, 1372, 1371,
     1367, 1369, 1373, 1374, 1375, 1378,    0, 1382, 1384, 1370,
     1383, 1372, 1381, 1381, 1365, 1384, 1386, 1371, 1390, 1383,
     1387,    0, 1381, 1385, 1392, 1372, 1378, 1375, 1387, 1382,

     1374, 1375, 1378, 1373, 1382, 1384, 1385, 1383, 1388, 1381,
     1381, 1389, 1391, 1386, 1390, 1390, 1392, 1387, 1393, 1389,
     1385, 1392, 1395, 1391, 1396, 1393, 1398, 1388, 1394, 1394,
     1401, 1396, 1400, 1402, 1403, 1388, 1405,    0, 1389, 1391,
     1395, 1400, 1407, 1406, 1407, 1393, 1411,    0, 1412, 1395,
     1398, 1396, 1403, 1398, 1405, 1394, 1402, 1401, 1406, 1400,
     1402, 1403, 1413, 1405, 1415, 1416, 1417, 1422, 1411, 1407,
     1406, 1420, 1417, 1411, 1412, 1412, 1418, 1421, 1419, 1421,
     1413, 1426, 1424, 1416, 1425,    0, 1415, 1419, 1427, 1413,
     1424, 1415, 1416, 1417, 1422, 1430, 1425, 1431, 1418, 1428,

     1432, 1432, 1420, 1418, 1421, 1419, 1427, 1434, 1426, 1424,
     1428, 1425, 1429, 1433, 1430, 1427, 1435, 1437, 1438, 1431,
     1429, 1433, 1430, 1439, 1431, 1438, 1428, 1432, 1439, 1440,
     1441, 1443, 1445, 1442, 1434, 1444, 1446, 1449, 1435, 1429,
     1433, 1442, 1444, 1435, 1437, 1438, 1443, 1447, 1451, 1453,
     1439, 1446,    0, 1448, 1450, 1450, 1440, 1441, 1443, 1445,
     1442, 1448, 1444, 1446, 1450, 1454, 1456, 1457, 1449, 1447,
     1458, 1459, 1460, 1454, 1447, 1451, 1453, 1462, 1461, 1456,
     1448, 1450, 1450, 1464, 1466, 1467, 1471, 1470,    0, 1457,
        0,    0, 1454, 1456, 1457, 1472, 1474, 1458, 1459, 1460,

     1461, 1483, 1488,    0, 1462, 1461, 1470, 1467, 1476, 1464,
     1464, 1466, 1467, 1471, 1470, 1475, 1479, 1472, 1474, 1476,
     1477, 1477, 1472, 1474, 1475, 1478, 1482, 1484, 1483, 1488,
     1477, 1478, 1490, 1482, 1492, 1476, 1495, 1493, 1479, 1496,
     1500,    0, 1475, 1479, 1497, 1495, 1497, 1477, 1477, 1493,
     1484, 1499, 1478, 1482, 1484, 1490, 1498, 1499, 1501, 1490,
     1503, 1492, 1500, 1495, 1493, 1502, 1496, 1500, 1498, 1505,
     1507, 1497, 1510, 1502, 1509, 1512,    0, 1513, 1499,    0,
     1501, 1514, 1516, 1498, 1517, 1501, 1515, 1503, 1523, 1509,
     1513, 1516, 1502, 1521, 1515, 1517, 1505, 1507, 1510, 1510,

     1522, 1509, 1523, 1514, 1513, 1525, 1512, 1522, 1514, 1516,
     1524, 1517, 1526, 1515, 1525, 1523, 1521, 1527, 1524, 1527,
     1521, 1528, 1529, 1526, 1530, 1531, 1534, 1522, 1532, 1533,
     1535, 1533, 1525, 1528, 1540, 1539, 1541, 1524, 1534, 1526,
        0, 1536, 1530, 1539, 1527, 1538, 1542, 1531, 1528, 1529,
     1532, 1530, 1531, 1534, 1536, 1532, 1533, 1538, 1544, 1542,
     1543, 1535, 1539, 1545, 1547, 1540, 1544, 1541, 1536, 1546,
     1548, 1549, 1538, 1542, 1543, 1558, 1545, 1546, 1547, 1549,
     1550, 1551,    0, 1553, 1548, 1544, 1552, 1543,    0, 1554,
     1545, 1547, 1555, 1556, 1552, 1559, 1546, 1548, 1549, 1563,

        0, 1560, 1550, 1551, 1557,    0, 1558, 1550, 1551, 1553,
     1553, 1554, 1557, 1552, 1555, 1556, 1554, 1561, 1562, 1555,
     1556, 1560, 1559, 1565, 1564, 1561, 1562, 1567, 1560, 1570,
     1563, 1557, 1564, 1568, 1569,    0, 1571, 1565, 1574, 1573,
        0, 1568, 1569, 1570, 1561, 1562, 1572, 1573, 1575, 1567,
     1565, 1564, 1577, 1579, 1567, 1576, 1570,    0, 1580, 1578,
     1568, 1569, 1571, 1571, 1574, 1574, 1573, 1578, 1572, 1581,
     1583, 1586, 1577, 1572, 1575, 1575, 1582, 1576, 1580, 1577,
     1579,    0, 1576, 1584, 1582, 1580, 1578, 1587, 1594, 1581,
     1590, 1584, 1583, 1586, 1588, 1596, 1581, 1583, 1586, 1589,

     1591, 1597, 1588, 1582, 1592,    0, 1593, 1589, 1591, 1587,
     1584,    0, 1592, 1600, 1587, 1594, 1590, 1590, 1595, 1598,
     1603, 1588, 1596, 1606, 1607,    0, 1589, 1591, 1597, 1604,
        0, 1592, 1593, 1593,    0, 1600, 1605, 1604, 1595, 1598,
     1600,    0, 1603,    0, 1605, 1595, 1598, 1603,    0,    0,
     1606, 1607,    0,    0,    0,    0, 1604,    0,    0,    0,
        0,    0,    0, 1605, 1611, 1611, 1611, 1611, 1611, 1611,
     1611, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1613, 1613,
     1613, 1613, 1613, 1613, 1613, 1614, 1614, 1614, 1614, 1614,
     1614, 1614, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1617,

     1617,    0, 1617, 1617, 1617, 1617, 1618, 1618,    0,    0,
        0, 1618, 1618, 1619, 1619,    0,    0, 1619,    0, 1619,
     1620,    0,    0,    0,    0,    0, 1620, 1621, 1621,    0,
        0,    0, 1621, 1621, 1622,    0,    0,    0,    0,    0,
     1622, 1623, 1623,    0, 1623, 1623, 1623, 1623, 1624, 1624,
        0, 1624, 1624, 1624, 1624, 1610, 1610, 1610, 1610, 1610,
     1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610,
     1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610,
     1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610,
     1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610,

     1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610,
     1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610,
     1610
    } ;

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
static int yy_more_flag = 0;
static int yy_more_len = 0;
#define yymore() ((yy_more_flag) = 1)
#define YY_MORE_ADJ (yy_more_len)
#define YY_RESTORE_YY_MORE_OFFSET
char *yytext;
#line 1 "util/configlexer.lex"
#line 2 "util/configlexer.lex"
/*
 * configlexer.lex - lexical analyzer for unbound config file
 *
 * Copyright (c) 2001-2006, NLnet Labs. All rights reserved
 *
 * See LICENSE for the license.
 *
 */
#include <ctype.h>
#include <string.h>
#include <strings.h>
#ifdef HAVE_GLOB_H
# include <glob.h>
#endif

#include "util/config_file.h"
#include "util/configparser.h"
void ub_c_error(const char *message);

#if 0
#define LEXOUT(s)  printf s /* used ONLY when debugging */
#else
#define LEXOUT(s)
#endif

/** avoid warning in about fwrite return value */
#define ECHO ub_c_error_msg("syntax error at text: %s", yytext)

/** A parser variable, this is a statement in the config file which is
 * of the form variable: value1 value2 ...  nargs is the number of values. */
#define YDVAR(nargs, var) \
	num_args=(nargs); \
	LEXOUT(("v(%s%d) ", yytext, num_args)); \
	if(num_args > 0) { BEGIN(val); } \
	return (var);

struct inc_state {
	char* filename;
	int line;
	YY_BUFFER_STATE buffer;
	struct inc_state* next;
};
static struct inc_state* config_include_stack = NULL;
static int inc_depth = 0;
static int inc_prev = 0;
static int num_args = 0;

void init_cfg_parse(void)
{
	config_include_stack = NULL;
	inc_depth = 0;
	inc_prev = 0;
	num_args = 0;
}

static void config_start_include(const char* filename)
{
	FILE *input;
	struct inc_state* s;
	char* nm;
	if(inc_depth++ > 100000) {
		ub_c_error_msg("too many include files");
		return;
	}
	if(strlen(filename) == 0) {
		ub_c_error_msg("empty include file name");
		return;
	}
	s = (struct inc_state*)malloc(sizeof(*s));
	if(!s) {
		ub_c_error_msg("include %s: malloc failure", filename);
		return;
	}
	if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
		strlen(cfg_parser->chroot)) == 0) {
		filename += strlen(cfg_parser->chroot);
	}
	nm = strdup(filename);
	if(!nm) {
		ub_c_error_msg("include %s: strdup failure", filename);
		free(s);
		return;
	}
	input = fopen(filename, "r");
	if(!input) {
		ub_c_error_msg("cannot open include file '%s': %s",
			filename, strerror(errno));
		free(s);
		free(nm);
		return;
	}
	LEXOUT(("switch_to_include_file(%s)\n", filename));
	s->filename = cfg_parser->filename;
	s->line = cfg_parser->line;
	s->buffer = YY_CURRENT_BUFFER;
	s->next = config_include_stack;
	config_include_stack = s;
	cfg_parser->filename = nm;
	cfg_parser->line = 1;
	yy_switch_to_buffer(yy_create_buffer(input,YY_BUF_SIZE));
}

static void config_start_include_glob(const char* filename)
{

	/* check for wildcards */
#ifdef HAVE_GLOB
	glob_t g;
	size_t i;
	int r, flags;
	if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') &&
		!strchr(filename, '{') && !strchr(filename, '~'))) {
		flags = 0
#ifdef GLOB_ERR
			| GLOB_ERR
#endif
#ifdef GLOB_NOSORT
			| GLOB_NOSORT
#endif
#ifdef GLOB_BRACE
			| GLOB_BRACE
#endif
#ifdef GLOB_TILDE
			| GLOB_TILDE
#endif
		;
		memset(&g, 0, sizeof(g));
		r = glob(filename, flags, NULL, &g);
		if(r) {
			/* some error */
			globfree(&g);
			if(r == GLOB_NOMATCH)
				return; /* no matches for pattern */
			config_start_include(filename); /* let original deal with it */
			return;
		}
		/* process files found, if any */
		for(i=0; i<(size_t)g.gl_pathc; i++) {
			config_start_include(g.gl_pathv[i]);
		}
		globfree(&g);
		return;
	}
#endif /* HAVE_GLOB */

	config_start_include(filename);
}

static void config_end_include(void)
{
	struct inc_state* s = config_include_stack;
	--inc_depth;
	if(!s) return;
	free(cfg_parser->filename);
	cfg_parser->filename = s->filename;
	cfg_parser->line = s->line;
	yy_delete_buffer(YY_CURRENT_BUFFER);
	yy_switch_to_buffer(s->buffer);
	config_include_stack = s->next;
	free(s);
}

#ifndef yy_set_bol /* compat definition, for flex 2.4.6 */
#define yy_set_bol(at_bol) \
        { \
	        if ( ! yy_current_buffer ) \
	                yy_current_buffer = yy_create_buffer(yyin,YY_BUF_SIZE ); \
	        yy_current_buffer->yy_ch_buf[0] = ((at_bol)?'\n':' '); \
        }
#endif

#define YY_NO_INPUT 1
#line 177 "util/configlexer.lex"
#ifndef YY_NO_UNPUT
#define YY_NO_UNPUT 1
#endif
#ifndef YY_NO_INPUT
#define YY_NO_INPUT 1
#endif

#line 2210 "<stdout>"

#define INITIAL 0
#define quotedstring 1
#define singlequotedstr 2
#define include 3
#define include_quoted 4
#define val 5

#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  );

yy_size_t 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 do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
#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 = '*'; \
		size_t 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 197 "util/configlexer.lex"

#line 2397 "<stdout>"

	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_more_len) = 0;
		if ( (yy_more_flag) )
			{
			(yy_more_len) = (yy_c_buf_p) - (yytext_ptr);
			(yy_more_flag) = 0;
			}
		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 >= 1611 )
					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] != 4656 );

yy_find_action:
		yy_act = yy_accept[yy_current_state];
		if ( yy_act == 0 )
			{ /* have to back up */
			yy_cp = (yy_last_accepting_cpos);
			yy_current_state = (yy_last_accepting_state);
			yy_act = yy_accept[yy_current_state];
			}

		YY_DO_BEFORE_ACTION;

do_action:	/* This label is used only to access EOF actions. */

		switch ( yy_act )
	{ /* beginning of action switch */
			case 0: /* must back up */
			/* undo the effects of YY_DO_BEFORE_ACTION */
			*yy_cp = (yy_hold_char);
			yy_cp = (yy_last_accepting_cpos);
			yy_current_state = (yy_last_accepting_state);
			goto yy_find_action;

case 1:
YY_RULE_SETUP
#line 198 "util/configlexer.lex"
{ 
	LEXOUT(("SP ")); /* ignore */ }
	YY_BREAK
case 2:
YY_RULE_SETUP
#line 200 "util/configlexer.lex"
{ 
	/* note that flex makes the longest match and '.' is any but not nl */
	LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
	YY_BREAK
case 3:
YY_RULE_SETUP
#line 203 "util/configlexer.lex"
{ YDVAR(0, VAR_SERVER) }
	YY_BREAK
case 4:
YY_RULE_SETUP
#line 204 "util/configlexer.lex"
{ YDVAR(1, VAR_NUM_THREADS) }
	YY_BREAK
case 5:
YY_RULE_SETUP
#line 205 "util/configlexer.lex"
{ YDVAR(1, VAR_VERBOSITY) }
	YY_BREAK
case 6:
YY_RULE_SETUP
#line 206 "util/configlexer.lex"
{ YDVAR(1, VAR_PORT) }
	YY_BREAK
case 7:
YY_RULE_SETUP
#line 207 "util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_RANGE) }
	YY_BREAK
case 8:
YY_RULE_SETUP
#line 208 "util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
	YY_BREAK
case 9:
YY_RULE_SETUP
#line 209 "util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
	YY_BREAK
case 10:
YY_RULE_SETUP
#line 210 "util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
	YY_BREAK
case 11:
YY_RULE_SETUP
#line 211 "util/configlexer.lex"
{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
	YY_BREAK
case 12:
YY_RULE_SETUP
#line 212 "util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP4) }
	YY_BREAK
case 13:
YY_RULE_SETUP
#line 213 "util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP6) }
	YY_BREAK
case 14:
YY_RULE_SETUP
#line 214 "util/configlexer.lex"
{ YDVAR(1, VAR_DO_UDP) }
	YY_BREAK
case 15:
YY_RULE_SETUP
#line 215 "util/configlexer.lex"
{ YDVAR(1, VAR_DO_TCP) }
	YY_BREAK
case 16:
YY_RULE_SETUP
#line 216 "util/configlexer.lex"
{ YDVAR(1, VAR_TCP_UPSTREAM) }
	YY_BREAK
case 17:
YY_RULE_SETUP
#line 217 "util/configlexer.lex"
{ YDVAR(1, VAR_SSL_UPSTREAM) }
	YY_BREAK
case 18:
YY_RULE_SETUP
#line 218 "util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
	YY_BREAK
case 19:
YY_RULE_SETUP
#line 219 "util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
	YY_BREAK
case 20:
YY_RULE_SETUP
#line 220 "util/configlexer.lex"
{ YDVAR(1, VAR_SSL_PORT) }
	YY_BREAK
case 21:
YY_RULE_SETUP
#line 221 "util/configlexer.lex"
{ YDVAR(1, VAR_DO_DAEMONIZE) }
	YY_BREAK
case 22:
YY_RULE_SETUP
#line 222 "util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE) }
	YY_BREAK
case 23:
YY_RULE_SETUP
#line 223 "util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE) }
	YY_BREAK
case 24:
YY_RULE_SETUP
#line 224 "util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
	YY_BREAK
case 25:
YY_RULE_SETUP
#line 225 "util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
	YY_BREAK
case 26:
YY_RULE_SETUP
#line 226 "util/configlexer.lex"
{ YDVAR(1, VAR_SO_RCVBUF) }
	YY_BREAK
case 27:
YY_RULE_SETUP
#line 227 "util/configlexer.lex"
{ YDVAR(1, VAR_SO_SNDBUF) }
	YY_BREAK
case 28:
YY_RULE_SETUP
#line 228 "util/configlexer.lex"
{ YDVAR(1, VAR_SO_REUSEPORT) }
	YY_BREAK
case 29:
YY_RULE_SETUP
#line 229 "util/configlexer.lex"
{ YDVAR(1, VAR_CHROOT) }
	YY_BREAK
case 30:
YY_RULE_SETUP
#line 230 "util/configlexer.lex"
{ YDVAR(1, VAR_USERNAME) }
	YY_BREAK
case 31:
YY_RULE_SETUP
#line 231 "util/configlexer.lex"
{ YDVAR(1, VAR_DIRECTORY) }
	YY_BREAK
case 32:
YY_RULE_SETUP
#line 232 "util/configlexer.lex"
{ YDVAR(1, VAR_LOGFILE) }
	YY_BREAK
case 33:
YY_RULE_SETUP
#line 233 "util/configlexer.lex"
{ YDVAR(1, VAR_PIDFILE) }
	YY_BREAK
case 34:
YY_RULE_SETUP
#line 234 "util/configlexer.lex"
{ YDVAR(1, VAR_ROOT_HINTS) }
	YY_BREAK
case 35:
YY_RULE_SETUP
#line 235 "util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
	YY_BREAK
case 36:
YY_RULE_SETUP
#line 236 "util/configlexer.lex"
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
	YY_BREAK
case 37:
YY_RULE_SETUP
#line 237 "util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
	YY_BREAK
case 38:
YY_RULE_SETUP
#line 238 "util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
	YY_BREAK
case 39:
YY_RULE_SETUP
#line 239 "util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
	YY_BREAK
case 40:
YY_RULE_SETUP
#line 240 "util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
	YY_BREAK
case 41:
YY_RULE_SETUP
#line 241 "util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
	YY_BREAK
case 42:
YY_RULE_SETUP
#line 242 "util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MIN_TTL) }
	YY_BREAK
case 43:
YY_RULE_SETUP
#line 243 "util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
	YY_BREAK
case 44:
YY_RULE_SETUP
#line 244 "util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
	YY_BREAK
case 45:
YY_RULE_SETUP
#line 245 "util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
	YY_BREAK
case 46:
YY_RULE_SETUP
#line 246 "util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
	YY_BREAK
case 47:
YY_RULE_SETUP
#line 247 "util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
	YY_BREAK
case 48:
YY_RULE_SETUP
#line 248 "util/configlexer.lex"
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
	YY_BREAK
case 49:
YY_RULE_SETUP
#line 249 "util/configlexer.lex"
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
	YY_BREAK
case 50:
YY_RULE_SETUP
#line 250 "util/configlexer.lex"
{ YDVAR(1, VAR_DELAY_CLOSE) }
	YY_BREAK
case 51:
YY_RULE_SETUP
#line 251 "util/configlexer.lex"
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
	YY_BREAK
case 52:
YY_RULE_SETUP
#line 252 "util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
	YY_BREAK
case 53:
YY_RULE_SETUP
#line 253 "util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
	YY_BREAK
case 54:
YY_RULE_SETUP
#line 254 "util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_GLUE) }
	YY_BREAK
case 55:
YY_RULE_SETUP
#line 255 "util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
	YY_BREAK
case 56:
YY_RULE_SETUP
#line 256 "util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
	YY_BREAK
case 57:
YY_RULE_SETUP
#line 257 "util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
	YY_BREAK
case 58:
YY_RULE_SETUP
#line 258 "util/configlexer.lex"
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
	YY_BREAK
case 59:
YY_RULE_SETUP
#line 259 "util/configlexer.lex"
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
	YY_BREAK
case 60:
YY_RULE_SETUP
#line 260 "util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
	YY_BREAK
case 61:
YY_RULE_SETUP
#line 261 "util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
	YY_BREAK
case 62:
YY_RULE_SETUP
#line 262 "util/configlexer.lex"
{ YDVAR(1, VAR_PREFETCH_KEY) }
	YY_BREAK
case 63:
YY_RULE_SETUP
#line 263 "util/configlexer.lex"
{ YDVAR(1, VAR_PREFETCH) }
	YY_BREAK
case 64:
YY_RULE_SETUP
#line 264 "util/configlexer.lex"
{ YDVAR(0, VAR_STUB_ZONE) }
	YY_BREAK
case 65:
YY_RULE_SETUP
#line 265 "util/configlexer.lex"
{ YDVAR(1, VAR_NAME) }
	YY_BREAK
case 66:
YY_RULE_SETUP
#line 266 "util/configlexer.lex"
{ YDVAR(1, VAR_STUB_ADDR) }
	YY_BREAK
case 67:
YY_RULE_SETUP
#line 267 "util/configlexer.lex"
{ YDVAR(1, VAR_STUB_HOST) }
	YY_BREAK
case 68:
YY_RULE_SETUP
#line 268 "util/configlexer.lex"
{ YDVAR(1, VAR_STUB_PRIME) }
	YY_BREAK
case 69:
YY_RULE_SETUP
#line 269 "util/configlexer.lex"
{ YDVAR(1, VAR_STUB_FIRST) }
	YY_BREAK
case 70:
YY_RULE_SETUP
#line 270 "util/configlexer.lex"
{ YDVAR(0, VAR_FORWARD_ZONE) }
	YY_BREAK
case 71:
YY_RULE_SETUP
#line 271 "util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_ADDR) }
	YY_BREAK
case 72:
YY_RULE_SETUP
#line 272 "util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_HOST) }
	YY_BREAK
case 73:
YY_RULE_SETUP
#line 273 "util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_FIRST) }
	YY_BREAK
case 74:
YY_RULE_SETUP
#line 274 "util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
	YY_BREAK
case 75:
YY_RULE_SETUP
#line 275 "util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
	YY_BREAK
case 76:
YY_RULE_SETUP
#line 276 "util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL) }
	YY_BREAK
case 77:
YY_RULE_SETUP
#line 277 "util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_IDENTITY) }
	YY_BREAK
case 78:
YY_RULE_SETUP
#line 278 "util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_VERSION) }
	YY_BREAK
case 79:
YY_RULE_SETUP
#line 279 "util/configlexer.lex"
{ YDVAR(1, VAR_IDENTITY) }
	YY_BREAK
case 80:
YY_RULE_SETUP
#line 280 "util/configlexer.lex"
{ YDVAR(1, VAR_VERSION) }
	YY_BREAK
case 81:
YY_RULE_SETUP
#line 281 "util/configlexer.lex"
{ YDVAR(1, VAR_MODULE_CONF) }
	YY_BREAK
case 82:
YY_RULE_SETUP
#line 282 "util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR) }
	YY_BREAK
case 83:
YY_RULE_SETUP
#line 283 "util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
	YY_BREAK
case 84:
YY_RULE_SETUP
#line 284 "util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
	YY_BREAK
case 85:
YY_RULE_SETUP
#line 285 "util/configlexer.lex"
{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
	YY_BREAK
case 86:
YY_RULE_SETUP
#line 286 "util/configlexer.lex"
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
	YY_BREAK
case 87:
YY_RULE_SETUP
#line 287 "util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR) }
	YY_BREAK
case 88:
YY_RULE_SETUP
#line 288 "util/configlexer.lex"
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
	YY_BREAK
case 89:
YY_RULE_SETUP
#line 289 "util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
	YY_BREAK
case 90:
YY_RULE_SETUP
#line 290 "util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
	YY_BREAK
case 91:
YY_RULE_SETUP
#line 291 "util/configlexer.lex"
{ YDVAR(1, VAR_BOGUS_TTL) }
	YY_BREAK
case 92:
YY_RULE_SETUP
#line 292 "util/configlexer.lex"
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
	YY_BREAK
case 93:
YY_RULE_SETUP
#line 293 "util/configlexer.lex"
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
	YY_BREAK
case 94:
YY_RULE_SETUP
#line 294 "util/configlexer.lex"
{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
	YY_BREAK
case 95:
YY_RULE_SETUP
#line 295 "util/configlexer.lex"
{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
	YY_BREAK
case 96:
YY_RULE_SETUP
#line 296 "util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
	YY_BREAK
case 97:
YY_RULE_SETUP
#line 297 "util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
	YY_BREAK
case 98:
YY_RULE_SETUP
#line 298 "util/configlexer.lex"
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
	YY_BREAK
case 99:
YY_RULE_SETUP
#line 299 "util/configlexer.lex"
{ 
				  YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
	YY_BREAK
case 100:
YY_RULE_SETUP
#line 301 "util/configlexer.lex"
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
	YY_BREAK
case 101:
YY_RULE_SETUP
#line 302 "util/configlexer.lex"
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
	YY_BREAK
case 102:
YY_RULE_SETUP
#line 303 "util/configlexer.lex"
{ YDVAR(1, VAR_KEEP_MISSING) }
	YY_BREAK
case 103:
YY_RULE_SETUP
#line 304 "util/configlexer.lex"
{ YDVAR(1, VAR_USE_SYSLOG) }
	YY_BREAK
case 104:
YY_RULE_SETUP
#line 305 "util/configlexer.lex"
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
	YY_BREAK
case 105:
YY_RULE_SETUP
#line 306 "util/configlexer.lex"
{ YDVAR(1, VAR_LOG_QUERIES) }
	YY_BREAK
case 106:
YY_RULE_SETUP
#line 307 "util/configlexer.lex"
{ YDVAR(2, VAR_LOCAL_ZONE) }
	YY_BREAK
case 107:
YY_RULE_SETUP
#line 308 "util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA) }
	YY_BREAK
case 108:
YY_RULE_SETUP
#line 309 "util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
	YY_BREAK
case 109:
YY_RULE_SETUP
#line 310 "util/configlexer.lex"
{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) }
	YY_BREAK
case 110:
YY_RULE_SETUP
#line 311 "util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
	YY_BREAK
case 111:
YY_RULE_SETUP
#line 312 "util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
	YY_BREAK
case 112:
YY_RULE_SETUP
#line 313 "util/configlexer.lex"
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
	YY_BREAK
case 113:
YY_RULE_SETUP
#line 314 "util/configlexer.lex"
{ YDVAR(0, VAR_REMOTE_CONTROL) }
	YY_BREAK
case 114:
YY_RULE_SETUP
#line 315 "util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_ENABLE) }
	YY_BREAK
case 115:
YY_RULE_SETUP
#line 316 "util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
	YY_BREAK
case 116:
YY_RULE_SETUP
#line 317 "util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_PORT) }
	YY_BREAK
case 117:
YY_RULE_SETUP
#line 318 "util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
	YY_BREAK
case 118:
YY_RULE_SETUP
#line 319 "util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
	YY_BREAK
case 119:
YY_RULE_SETUP
#line 320 "util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
	YY_BREAK
case 120:
YY_RULE_SETUP
#line 321 "util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
	YY_BREAK
case 121:
YY_RULE_SETUP
#line 322 "util/configlexer.lex"
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
	YY_BREAK
case 122:
YY_RULE_SETUP
#line 323 "util/configlexer.lex"
{ YDVAR(0, VAR_PYTHON) }
	YY_BREAK
case 123:
YY_RULE_SETUP
#line 324 "util/configlexer.lex"
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
	YY_BREAK
case 124:
YY_RULE_SETUP
#line 325 "util/configlexer.lex"
{ YDVAR(1, VAR_MINIMAL_RESPONSES) }
	YY_BREAK
case 125:
YY_RULE_SETUP
#line 326 "util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_ROUNDROBIN) }
	YY_BREAK
case 126:
YY_RULE_SETUP
#line 327 "util/configlexer.lex"
{ YDVAR(1, VAR_MAX_UDP_SIZE) }
	YY_BREAK
case 127:
YY_RULE_SETUP
#line 328 "util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_PREFIX) }
	YY_BREAK
case 128:
YY_RULE_SETUP
#line 329 "util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_SYNTHALL) }
	YY_BREAK
case 129:
YY_RULE_SETUP
#line 330 "util/configlexer.lex"
{ YDVAR(0, VAR_DNSTAP) }
	YY_BREAK
case 130:
YY_RULE_SETUP
#line 331 "util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_ENABLE) }
	YY_BREAK
case 131:
YY_RULE_SETUP
#line 332 "util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SOCKET_PATH) }
	YY_BREAK
case 132:
YY_RULE_SETUP
#line 333 "util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) }
	YY_BREAK
case 133:
YY_RULE_SETUP
#line 334 "util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_VERSION) }
	YY_BREAK
case 134:
YY_RULE_SETUP
#line 335 "util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_IDENTITY) }
	YY_BREAK
case 135:
YY_RULE_SETUP
#line 336 "util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_VERSION) }
	YY_BREAK
case 136:
YY_RULE_SETUP
#line 337 "util/configlexer.lex"
{
		YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) }
	YY_BREAK
case 137:
YY_RULE_SETUP
#line 339 "util/configlexer.lex"
{
		YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) }
	YY_BREAK
case 138:
YY_RULE_SETUP
#line 341 "util/configlexer.lex"
{
		YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) }
	YY_BREAK
case 139:
YY_RULE_SETUP
#line 343 "util/configlexer.lex"
{
		YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) }
	YY_BREAK
case 140:
YY_RULE_SETUP
#line 345 "util/configlexer.lex"
{
		YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) }
	YY_BREAK
case 141:
YY_RULE_SETUP
#line 347 "util/configlexer.lex"
{
		YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) }
	YY_BREAK
case 142:
/* rule 142 can match eol */
YY_RULE_SETUP
#line 349 "util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++; }
	YY_BREAK
/* Quoted strings. Strip leading and ending quotes */
case 143:
YY_RULE_SETUP
#line 352 "util/configlexer.lex"
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
	YY_BREAK
case YY_STATE_EOF(quotedstring):
#line 353 "util/configlexer.lex"
{
        yyerror("EOF inside quoted string");
	if(--num_args == 0) { BEGIN(INITIAL); }
	else		    { BEGIN(val); }
}
	YY_BREAK
case 144:
YY_RULE_SETUP
#line 358 "util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
	YY_BREAK
case 145:
/* rule 145 can match eol */
YY_RULE_SETUP
#line 359 "util/configlexer.lex"
{ yyerror("newline inside quoted string, no end \""); 
			  cfg_parser->line++; BEGIN(INITIAL); }
	YY_BREAK
case 146:
YY_RULE_SETUP
#line 361 "util/configlexer.lex"
{
        LEXOUT(("QE "));
	if(--num_args == 0) { BEGIN(INITIAL); }
	else		    { BEGIN(val); }
        yytext[yyleng - 1] = '\0';
	yylval.str = strdup(yytext);
	if(!yylval.str)
		yyerror("out of memory");
        return STRING_ARG;
}
	YY_BREAK
/* Single Quoted strings. Strip leading and ending quotes */
case 147:
YY_RULE_SETUP
#line 373 "util/configlexer.lex"
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
	YY_BREAK
case YY_STATE_EOF(singlequotedstr):
#line 374 "util/configlexer.lex"
{
        yyerror("EOF inside quoted string");
	if(--num_args == 0) { BEGIN(INITIAL); }
	else		    { BEGIN(val); }
}
	YY_BREAK
case 148:
YY_RULE_SETUP
#line 379 "util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
	YY_BREAK
case 149:
/* rule 149 can match eol */
YY_RULE_SETUP
#line 380 "util/configlexer.lex"
{ yyerror("newline inside quoted string, no end '"); 
			     cfg_parser->line++; BEGIN(INITIAL); }
	YY_BREAK
case 150:
YY_RULE_SETUP
#line 382 "util/configlexer.lex"
{
        LEXOUT(("SQE "));
	if(--num_args == 0) { BEGIN(INITIAL); }
	else		    { BEGIN(val); }
        yytext[yyleng - 1] = '\0';
	yylval.str = strdup(yytext);
	if(!yylval.str)
		yyerror("out of memory");
        return STRING_ARG;
}
	YY_BREAK
/* include: directive */
case 151:
YY_RULE_SETUP
#line 394 "util/configlexer.lex"
{ 
	LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); }
	YY_BREAK
case YY_STATE_EOF(include):
#line 396 "util/configlexer.lex"
{
        yyerror("EOF inside include directive");
        BEGIN(inc_prev);
}
	YY_BREAK
case 152:
YY_RULE_SETUP
#line 400 "util/configlexer.lex"
{ LEXOUT(("ISP ")); /* ignore */ }
	YY_BREAK
case 153:
/* rule 153 can match eol */
YY_RULE_SETUP
#line 401 "util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++;}
	YY_BREAK
case 154:
YY_RULE_SETUP
#line 402 "util/configlexer.lex"
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
	YY_BREAK
case 155:
YY_RULE_SETUP
#line 403 "util/configlexer.lex"
{
	LEXOUT(("Iunquotedstr(%s) ", yytext));
	config_start_include_glob(yytext);
	BEGIN(inc_prev);
}
	YY_BREAK
case YY_STATE_EOF(include_quoted):
#line 408 "util/configlexer.lex"
{
        yyerror("EOF inside quoted string");
        BEGIN(inc_prev);
}
	YY_BREAK
case 156:
YY_RULE_SETUP
#line 412 "util/configlexer.lex"
{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
	YY_BREAK
case 157:
/* rule 157 can match eol */
YY_RULE_SETUP
#line 413 "util/configlexer.lex"
{ yyerror("newline before \" in include name"); 
				  cfg_parser->line++; BEGIN(inc_prev); }
	YY_BREAK
case 158:
YY_RULE_SETUP
#line 415 "util/configlexer.lex"
{
	LEXOUT(("IQE "));
	yytext[yyleng - 1] = '\0';
	config_start_include_glob(yytext);
	BEGIN(inc_prev);
}
	YY_BREAK
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(val):
#line 421 "util/configlexer.lex"
{
	LEXOUT(("LEXEOF "));
	yy_set_bol(1); /* Set beginning of line, so "^" rules match.  */
	if (!config_include_stack) {
		yyterminate();
	} else {
		fclose(yyin);
		config_end_include();
	}
}
	YY_BREAK
case 159:
YY_RULE_SETUP
#line 432 "util/configlexer.lex"
{ LEXOUT(("unquotedstr(%s) ", yytext)); 
			if(--num_args == 0) { BEGIN(INITIAL); }
			yylval.str = strdup(yytext); return STRING_ARG; }
	YY_BREAK
case 160:
YY_RULE_SETUP
#line 436 "util/configlexer.lex"
{
	ub_c_error_msg("unknown keyword '%s'", yytext);
	}
	YY_BREAK
case 161:
YY_RULE_SETUP
#line 440 "util/configlexer.lex"
{
	ub_c_error_msg("stray '%s'", yytext);
	}
	YY_BREAK
case 162:
YY_RULE_SETUP
#line 444 "util/configlexer.lex"
ECHO;
	YY_BREAK
#line 3395 "<stdout>"

	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
		{
			yy_size_t 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_LVALUE;

			int yy_c_buf_p_offset =
				(int) ((yy_c_buf_p) - b->yy_ch_buf);

			if ( b->yy_is_our_buffer )
				{
				yy_size_t 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), 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 >= 1611 )
				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 >= 1611 )
			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 == 1610);

		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 */
			yy_size_t 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  );
}

/* 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)
{
	yy_size_t 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 yybytes the byte buffer to scan
 * @param _yybytes_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, yy_size_t  _yybytes_len )
{
	YY_BUFFER_STATE b;
	char *buf;
	yy_size_t n;
	yy_size_t 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.
 * 
 */
yy_size_t 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 444 "util/configlexer.lex"