unbound/util/configlexer.c

4560 lines
158 KiB
C
Raw Normal View History

#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 6
#define YY_FLEX_SUBMINOR_VERSION 0
#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
#ifdef __ia64__
/* On IA-64, the buffer size is 16k, not 8k.
* Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
* Ditto for the __ia64__ case accordingly.
*/
#define YY_BUF_SIZE 32768
#else
#define YY_BUF_SIZE 16384
#endif /* __ia64__ */
#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)
#define YY_LINENO_REWIND_TO(ptr)
/* Return all but the first "n" matched characters back to the input stream. */
#define yyless(n) \
do \
{ \
/* Undo effects of setting up yytext. */ \
yy_size_t 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;
#ifdef yytext_ptr
#undef yytext_ptr
#endif
#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 );
#if defined(__GNUC__) && __GNUC__ >= 3
__attribute__((__noreturn__))
#endif
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 203
#define YY_END_OF_BUFFER 204
/* 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[1997] =
{ 0,
1, 1, 185, 185, 189, 189, 193, 193, 197, 197,
1, 1, 204, 201, 1, 183, 183, 202, 2, 202,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
185, 186, 186, 187, 202, 189, 190, 190, 191, 202,
196, 193, 194, 194, 195, 202, 197, 198, 198, 199,
202, 200, 184, 2, 188, 202, 200, 201, 0, 1,
2, 2, 2, 2, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 185, 0,
189, 0, 196, 0, 193, 197, 0, 200, 0, 2,
2, 200, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 200, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 200,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 77, 201, 201, 201, 201, 201, 201, 8,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 88, 200, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 200, 201, 201, 201, 201, 201, 37, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 159,
201, 14, 15, 201, 18, 17, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 145, 201, 201, 201, 201, 201, 201, 201,
201, 3, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 200, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 192, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 40, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 41, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 20, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 96, 201, 192, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 112, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
95, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 75, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 25,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 38, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 39, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
28, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 174, 201, 201, 201, 201,
201, 201, 201, 32, 201, 33, 201, 201, 201, 78,
201, 79, 201, 201, 76, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 7, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 152, 201, 201, 201,
201, 98, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 29, 201, 201, 201,
201, 201, 201, 201, 128, 201, 127, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 16, 201, 201, 201, 201,
201, 201, 201, 201, 201, 42, 201, 201, 201, 201,
201, 201, 201, 201, 201, 81, 80, 201, 201, 201,
201, 201, 201, 201, 201, 122, 201, 201, 201, 201,
201, 201, 201, 201, 89, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 60,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 64, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 36, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 125,
126, 201, 201, 201, 201, 201, 201, 201, 201, 201,
6, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 26, 201, 201, 201,
201, 201, 201, 201, 201, 118, 201, 201, 201, 201,
201, 201, 201, 201, 201, 138, 201, 119, 201, 201,
150, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 27, 201, 201, 201, 201, 84, 201, 85, 201,
83, 201, 201, 201, 201, 201, 201, 201, 94, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
173, 201, 201, 120, 201, 201, 201, 201, 201, 123,
201, 149, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 74, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 34, 201, 201, 22, 201, 201, 201, 201, 19,
201, 103, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 49, 51, 201, 201,
201, 201, 201, 201, 201, 201, 201, 160, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 86, 201, 201, 201, 201, 201, 201, 201, 93,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 97, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 144, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 111, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
107, 201, 113, 201, 201, 201, 201, 201, 92, 201,
201, 70, 201, 136, 201, 201, 201, 201, 201, 151,
201, 201, 201, 201, 201, 201, 201, 165, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
110, 201, 201, 201, 201, 201, 52, 53, 201, 201,
201, 201, 201, 35, 59, 114, 201, 129, 201, 153,
124, 201, 201, 45, 201, 116, 201, 201, 201, 201,
201, 9, 201, 201, 201, 73, 201, 201, 201, 201,
178, 201, 135, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 99, 164, 201, 201, 201, 201,
201, 201, 201, 201, 146, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 115, 201, 201, 44, 46, 201,
201, 201, 201, 201, 201, 201, 72, 201, 201, 201,
201, 176, 201, 201, 201, 201, 140, 23, 24, 201,
201, 201, 201, 201, 201, 201, 201, 69, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
142, 139, 201, 201, 201, 201, 201, 201, 201, 201,
201, 43, 201, 201, 201, 201, 201, 201, 201, 201,
13, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 12, 201, 201, 21, 201, 201,
201, 182, 201, 47, 201, 148, 141, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 106,
105, 201, 201, 201, 201, 143, 137, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 54, 201, 201,
201, 177, 201, 201, 147, 201, 201, 201, 201, 201,
201, 201, 201, 48, 201, 201, 82, 201, 100, 102,
130, 201, 201, 201, 104, 201, 201, 154, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 161, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 131, 201, 201, 175, 201, 201, 30, 201,
201, 201, 201, 4, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 157, 201, 201, 201, 201,
201, 201, 201, 201, 163, 201, 201, 134, 201, 201,
201, 201, 201, 201, 201, 201, 57, 201, 31, 181,
158, 201, 11, 201, 201, 201, 201, 201, 201, 132,
61, 201, 201, 201, 109, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 162, 90, 201, 87, 201,
201, 201, 63, 67, 62, 201, 55, 201, 10, 201,
201, 201, 179, 201, 201, 108, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 68,
66, 201, 56, 201, 121, 201, 201, 133, 201, 201,
201, 201, 101, 50, 201, 201, 201, 201, 201, 201,
201, 91, 65, 58, 201, 180, 201, 201, 201, 156,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 71,
201, 155, 172, 201, 201, 201, 201, 201, 201, 5,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 117, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 201, 201, 201, 201, 201, 201,
168, 201, 201, 201, 201, 201, 201, 201, 201, 201,
201, 201, 201, 201, 166, 201, 169, 170, 201, 201,
201, 201, 201, 167, 171, 0
} ;
static yyconst YY_CHAR 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, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 13, 1, 1, 1, 1, 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, 39, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 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 YY_CHAR yy_meta[40] =
{ 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
} ;
static yyconst flex_uint16_t yy_base[2011] =
{ 0,
0, 0, 37, 40, 44, 51, 63, 75, 56, 68,
87, 108, 2518, 2290, 50, 3939, 3939, 3939, 129, 94,
70, 104, 130, 90, 109, 106, 127, 111, 84, 122,
146, 148, 50, 170, 136, 158, 152, 180, 168, 191,
2135, 3939, 3939, 3939, 70, 1956, 3939, 3939, 3939, 42,
1771, 1568, 3939, 3939, 3939, 210, 1370, 3939, 3939, 3939,
141, 1190, 3939, 214, 3939, 218, 140, 1132, 224, 167,
0, 235, 0, 0, 92, 162, 164, 174, 193, 217,
230, 219, 103, 178, 233, 225, 220, 221, 241, 243,
244, 189, 249, 247, 256, 245, 252, 255, 254, 260,
265, 268, 138, 272, 270, 271, 276, 280, 281, 287,
273, 285, 282, 288, 289, 290, 295, 303, 300, 305,
297, 307, 308, 314, 317, 318, 310, 319, 596, 329,
458, 122, 403, 342, 373, 327, 347, 222, 351, 355,
0, 332, 348, 356, 350, 352, 354, 357, 341, 358,
368, 359, 370, 379, 377, 398, 380, 366, 378, 382,
49, 384, 386, 311, 389, 393, 376, 390, 396, 409,
400, 406, 416, 413, 426, 428, 424, 417, 430, 431,
439, 440, 392, 437, 441, 442, 443, 444, 445, 446,
451, 448, 452, 455, 454, 461, 469, 457, 465, 468,
478, 470, 471, 481, 490, 491, 492, 474, 484, 487,
493, 500, 498, 504, 502, 505, 507, 510, 488, 509,
514, 519, 525, 526, 528, 515, 524, 530, 532, 534,
540, 537, 546, 544, 542, 553, 538, 549, 550, 552,
554, 556, 557, 560, 561, 562, 566, 568, 574, 570,
576, 572, 577, 578, 582, 585, 591, 601, 602, 587,
583, 603, 606, 609, 611, 613, 610, 617, 618, 619,
626, 620, 623, 624, 631, 632, 633, 641, 638, 634,
637, 635, 644, 646, 652, 667, 656, 654, 673, 659,
674, 660, 664, 690, 676, 677, 687, 689, 688, 696,
678, 692, 695, 705, 701, 706, 710, 712, 713, 714,
719, 716, 720, 721, 722, 723, 726, 727, 734, 738,
741, 749, 731, 745, 743, 753, 746, 661, 754, 715,
755, 762, 760, 761, 763, 765, 767, 769, 770, 772,
775, 780, 3939, 783, 776, 778, 785, 787, 788, 3939,
790, 789, 791, 798, 792, 799, 795, 811, 817, 802,
813, 814, 815, 816, 820, 819, 839, 822, 825, 827,
828, 826, 831, 848, 832, 852, 841, 850, 846, 854,
837, 863, 860, 864, 866, 870, 3939, 867, 877, 874,
875, 878, 879, 885, 880, 894, 888, 895, 882, 896,
899, 890, 908, 904, 911, 913, 919, 916, 921, 923,
905, 922, 924, 925, 933, 930, 931, 932, 940, 937,
939, 938, 944, 947, 945, 949, 951, 955, 964, 957,
958, 967, 960, 968, 970, 972, 974, 975, 976, 982,
978, 980, 987, 989, 981, 992, 1000, 996, 1002, 1004,
998, 1010, 1008, 1011, 1017, 1013, 1015, 1014, 1028, 1029,
1016, 1030, 1020, 1025, 1026, 1034, 1036, 1037, 1041, 1039,
1042, 1044, 1052, 1048, 1049, 1050, 1058, 1053, 1055, 1063,
1065, 1069, 1066, 1070, 1071, 1072, 1076, 1074, 1080, 1085,
1083, 1086, 1088, 1096, 1098, 1089, 1100, 1103, 3939, 1111,
1104, 1113, 1107, 1090, 1120, 1114, 1105, 1091, 1125, 3939,
1118, 3939, 3939, 1121, 3939, 3939, 1126, 1136, 1127, 1128,
1145, 1148, 1141, 1139, 1143, 1151, 1159, 1156, 1161, 1164,
1169, 1171, 1172, 1173, 1180, 1153, 1174, 1177, 1181, 1183,
1184, 1186, 1188, 1187, 1192, 1189, 1196, 1203, 1211, 1207,
1208, 1209, 1212, 1213, 1216, 1215, 1199, 1224, 1219, 1225,
1232, 1226, 3939, 1229, 1230, 1234, 1235, 1240, 1236, 1242,
1243, 3939, 1244, 1247, 1248, 1250, 1253, 1256, 1255, 1257,
1259, 1260, 1258, 1262, 1268, 1272, 1281, 1263, 1271, 1289,
1291, 1288, 1287, 1290, 1293, 1273, 1295, 1304, 1297, 1301,
1303, 1312, 1305, 1309, 1311, 1314, 1315, 1317, 1318, 1320,
1322, 1323, 1345, 1326, 1324, 1331, 1332, 1334, 1340, 1342,
1335, 1339, 1358, 1352, 1359, 1360, 1363, 1351, 1368, 1369,
1376, 1379, 1383, 1373, 1381, 1380, 1387, 1392, 1390, 1333,
1396, 1388, 1398, 1400, 3939, 1406, 1405, 1403, 1411, 1417,
1413, 1414, 1416, 1419, 1415, 1420, 1421, 1427, 1423, 1430,
1426, 1436, 1438, 1439, 3939, 1435, 1437, 1441, 1448, 1452,
1458, 1442, 1449, 1464, 1460, 3939, 1461, 1467, 1468, 1471,
1465, 1470, 1476, 1475, 1478, 1480, 1482, 1483, 1484, 1486,
1487, 1493, 1497, 1485, 1500, 1502, 1504, 1506, 1507, 1508,
1514, 1510, 1511, 3939, 1512, 1517, 1513, 1519, 1528, 1534,
1526, 1532, 1536, 1533, 1539, 1538, 1544, 1542, 1545, 1543,
1546, 3939, 1547, 186, 1549, 1555, 1548, 1556, 1564, 1567,
1569, 1561, 1565, 1573, 1576, 1558, 1580, 1581, 1582, 1584,
1585, 1586, 1588, 1589, 1592, 1590, 1598, 1597, 1600, 1602,
1606, 1607, 1608, 1613, 1610, 3939, 1617, 1614, 1616, 1619,
1622, 1625, 1624, 1626, 1628, 1630, 1633, 1635, 1634, 1642,
3939, 1646, 1643, 1644, 1640, 1653, 1647, 1666, 1655, 1656,
1662, 1663, 1667, 1668, 1676, 1672, 1678, 1679, 1681, 1682,
1684, 1689, 1690, 1691, 1692, 1699, 1701, 1697, 1700, 1711,
1706, 1714, 1708, 3939, 1709, 1703, 1715, 1717, 1735, 1722,
1721, 1716, 1723, 1732, 1728, 1738, 1743, 1739, 1745, 3939,
1747, 1748, 1749, 1752, 1755, 1757, 1759, 1758, 1761, 1762,
1765, 1766, 1767, 1776, 1769, 1778, 1773, 1781, 3939, 1788,
1790, 1786, 1797, 1789, 1793, 1795, 1800, 1796, 1801, 1802,
1808, 1804, 1807, 1805, 1810, 1813, 1809, 1811, 1815, 1826,
1820, 1822, 1830, 3939, 1823, 1839, 1832, 1840, 1844, 1837,
1852, 1849, 1843, 1850, 1855, 1856, 1857, 1858, 1859, 1860,
1865, 1861, 1863, 1868, 1870, 1871, 1872, 1873, 1877, 1887,
1888, 1889, 1890, 1893, 1894, 1895, 1901, 1902, 1866, 1903,
3939, 1908, 1909, 1910, 1911, 1912, 1914, 1916, 1923, 1925,
1921, 1926, 1927, 1930, 1931, 1932, 1933, 1942, 1934, 1936,
1940, 1943, 1938, 1944, 1948, 1960, 1947, 1954, 1968, 1964,
1970, 1958, 1972, 1973, 1976, 3939, 1977, 1980, 1983, 1985,
1975, 1984, 1992, 3939, 1990, 3939, 1991, 1998, 2005, 3939,
2002, 3939, 2007, 1994, 3939, 2009, 2013, 2003, 2011, 2015,
2016, 2017, 2020, 2022, 2023, 2024, 2027, 2028, 2030, 2031,
2033, 3939, 2041, 2035, 2037, 2044, 2042, 2046, 2048, 2052,
2054, 2055, 2058, 2064, 2056, 2065, 3939, 2067, 2070, 2071,
2072, 3939, 1669, 2079, 2073, 2062, 2083, 2092, 2088, 2075,
2091, 2077, 2094, 2100, 2098, 2103, 2104, 2105, 2111, 2107,
2113, 2109, 2110, 2117, 2114, 2118, 2120, 2122, 2124, 2127,
2128, 2131, 2129, 2130, 2133, 2134, 3939, 2144, 2137, 2146,
2145, 2152, 2153, 2148, 3939, 2154, 3939, 2156, 2167, 2171,
2158, 2163, 2172, 2173, 2175, 2177, 2176, 2183, 2180, 2184,
2187, 2190, 2191, 2193, 2195, 3939, 2192, 2196, 2197, 2199,
2201, 2206, 2212, 2216, 2202, 3939, 2223, 2203, 2219, 2231,
2229, 2222, 2237, 2230, 2236, 3939, 3939, 2233, 2238, 2234,
2240, 2241, 2249, 2248, 2250, 3939, 2254, 2251, 2255, 2256,
2257, 2265, 2263, 2266, 3939, 2267, 2274, 2269, 2277, 2275,
2276, 2278, 2285, 2279, 2281, 2286, 2294, 2295, 2301, 3939,
2302, 2296, 2304, 2306, 2308, 2310, 2309, 2311, 2312, 2314,
2315, 2316, 2325, 2327, 2320, 2328, 2329, 2333, 2330, 2338,
2334, 2340, 2342, 2348, 2351, 3939, 2357, 2344, 2358, 2345,
2360, 2363, 2361, 2365, 2366, 2367, 2373, 2369, 3939, 2376,
2374, 2372, 2381, 2382, 2390, 2383, 2385, 2394, 2397, 3939,
3939, 2392, 2399, 2400, 2402, 2404, 2405, 2410, 2406, 2412,
3939, 2414, 2421, 2417, 2418, 2427, 2429, 2434, 2430, 2436,
2420, 2423, 2426, 2441, 2439, 2443, 2446, 2448, 2449, 2450,
2451, 2452, 2453, 2460, 2456, 2471, 2454, 2464, 2461, 2479,
2477, 2485, 2487, 2466, 2483, 2491, 3939, 2488, 2489, 2490,
2473, 2499, 2496, 2506, 2497, 3939, 2504, 2510, 2513, 2515,
2503, 2516, 2519, 2520, 2508, 3939, 2525, 3939, 2528, 2521,
3939, 2527, 2535, 2529, 2532, 2536, 2537, 2538, 2540, 2548,
2544, 3939, 2550, 2546, 2552, 2557, 3939, 2560, 3939, 2547,
3939, 2553, 2555, 2570, 2567, 2571, 2573, 2577, 3939, 2574,
2578, 2579, 2582, 2583, 2585, 2587, 2588, 2586, 2590, 2589,
3939, 2593, 2594, 3939, 2596, 2607, 2592, 2606, 2615, 3939,
2616, 3939, 2603, 2619, 2602, 2621, 2627, 2630, 2631, 2620,
2623, 2637, 2634, 2633, 2640, 3939, 2641, 2642, 2645, 2649,
2647, 2651, 2657, 2653, 2659, 2654, 2655, 2663, 2669, 2670,
2672, 3939, 2673, 2675, 3939, 2674, 2676, 2677, 2681, 3939,
2682, 3939, 2683, 2685, 2686, 2690, 2692, 2693, 2704, 2694,
2701, 2707, 2706, 2715, 2708, 2698, 3939, 3939, 2721, 2717,
2723, 2724, 2727, 2728, 2734, 2730, 2732, 3939, 2733, 2736,
2737, 2738, 2740, 2743, 2747, 2749, 2750, 2742, 2751, 2744,
2752, 3939, 2755, 2759, 2762, 2764, 2766, 2765, 2767, 3939,
2769, 2772, 2776, 2778, 2780, 2784, 2791, 2795, 2781, 2797,
2798, 2800, 2802, 2804, 2806, 2807, 2814, 2811, 2816, 2818,
2808, 3939, 2819, 2821, 2822, 2831, 2825, 2773, 2832, 2833,
2837, 2823, 2838, 2828, 2840, 3939, 2844, 2845, 2846, 2848,
2851, 2854, 2856, 2857, 2858, 2860, 3939, 2862, 2865, 2863,
2866, 2871, 2867, 2875, 2876, 2877, 2878, 2881, 2889, 2890,
3939, 2882, 3939, 2896, 2897, 2904, 2900, 2893, 3939, 2903,
2907, 3939, 2908, 3939, 2911, 2912, 2906, 2910, 2924, 3939,
2928, 2919, 2929, 2925, 2921, 2931, 2938, 3939, 2932, 2940,
2942, 2944, 2934, 2945, 2946, 2947, 2948, 2952, 2958, 2955,
3939, 2956, 2959, 2967, 2963, 2973, 3939, 3939, 2966, 2969,
2974, 2976, 2978, 3939, 3939, 3939, 2982, 3939, 2983, 3939,
3939, 2984, 2986, 3939, 2988, 3939, 2995, 2991, 2993, 2994,
2998, 3939, 2996, 2999, 3005, 3939, 2997, 3012, 3000, 3008,
3939, 3014, 3939, 3017, 3019, 3010, 3020, 3027, 3029, 3031,
3032, 3033, 3034, 3036, 3037, 3038, 3040, 3039, 3042, 3043,
3046, 3047, 3053, 3054, 3055, 3056, 3061, 3058, 3060, 3063,
3074, 3065, 3081, 3083, 3939, 3939, 3071, 3075, 3073, 3077,
3085, 3086, 3087, 3088, 3939, 3099, 3092, 3090, 3096, 3100,
3102, 3104, 3107, 3109, 3111, 3117, 3113, 3114, 3116, 3119,
3118, 3121, 3125, 3132, 3939, 3127, 3126, 3939, 3939, 3133,
3137, 3143, 3139, 3144, 3147, 3148, 3939, 3149, 3151, 3157,
3150, 3939, 3159, 3160, 3166, 3168, 3939, 3939, 3939, 3169,
3161, 3171, 3172, 3173, 3175, 3174, 3177, 3939, 3176, 3182,
3189, 3186, 3196, 3198, 3192, 3200, 3207, 3203, 3210, 3212,
3939, 3939, 3204, 3218, 3215, 3216, 3214, 3220, 3222, 3224,
3225, 3939, 3228, 3227, 3188, 3226, 3233, 3234, 3240, 3236,
3939, 3238, 3244, 3246, 3248, 3249, 3250, 3251, 3253, 3254,
3256, 3262, 3255, 3267, 3939, 3269, 3258, 3939, 3270, 3275,
3276, 3939, 3279, 3939, 3282, 3939, 3939, 3277, 3283, 3286,
3287, 3293, 3295, 3299, 3288, 3296, 3305, 3302, 3303, 3939,
3939, 3309, 3311, 3312, 3319, 3939, 3939, 3315, 3313, 3316,
3317, 3322, 3323, 3325, 3326, 3328, 3327, 3332, 3338, 3340,
3343, 3344, 3347, 3329, 3348, 3350, 3351, 3939, 3353, 3358,
3354, 3939, 3363, 3360, 3939, 3356, 3369, 3373, 3366, 3364,
3381, 3378, 3383, 3939, 3384, 3382, 3939, 3385, 3939, 3939,
3939, 3390, 3386, 3388, 3939, 3396, 3398, 3939, 3404, 3400,
3405, 3411, 3407, 3408, 3412, 3419, 3415, 3417, 3939, 3418,
3420, 3422, 3423, 3427, 3424, 3426, 3429, 3438, 3434, 3432,
3444, 3441, 3939, 3450, 3452, 3939, 3454, 3456, 3939, 3463,
3445, 3447, 3455, 3939, 3466, 3457, 3459, 3469, 3473, 3464,
3475, 3476, 3478, 3479, 3484, 3939, 3480, 3486, 3488, 3489,
3490, 3498, 3495, 3500, 3939, 3502, 3497, 3939, 3504, 3505,
3507, 3514, 3518, 3523, 3525, 3515, 3939, 3527, 3939, 3939,
3939, 3528, 3939, 3531, 3532, 3533, 3534, 3536, 3537, 3939,
3939, 3539, 3541, 3544, 3939, 3538, 3545, 3550, 3548, 3551,
3552, 3556, 3557, 3561, 3562, 3939, 3939, 3563, 3939, 3569,
3577, 3580, 3939, 3939, 3939, 3579, 3939, 3581, 3939, 3587,
3571, 3588, 3939, 3591, 3592, 3939, 3593, 3564, 3594, 3597,
3599, 3600, 3601, 3603, 3604, 3608, 3609, 3610, 3616, 3939,
3939, 3620, 3939, 3622, 3939, 3623, 3628, 3939, 3554, 3630,
3624, 3634, 3939, 3939, 3508, 3617, 3635, 3636, 3637, 3640,
3638, 3939, 3939, 3939, 3642, 3939, 3643, 3644, 3646, 3939,
3648, 3650, 3651, 3653, 3652, 3655, 3657, 3661, 3666, 3667,
3674, 3678, 3679, 3682, 3669, 3675, 3688, 3685, 3692, 3939,
3686, 3939, 3939, 3689, 3698, 3700, 3696, 3702, 3697, 3939,
3703, 3704, 3705, 3706, 3707, 3709, 3720, 3711, 3712, 3722,
3724, 3728, 3721, 3736, 3735, 3732, 3737, 3738, 3746, 3742,
3745, 3939, 3743, 3744, 3747, 3749, 3750, 3754, 3752, 3764,
3767, 3755, 3769, 3753, 3774, 3770, 3775, 3778, 3779, 3780,
3939, 3781, 3783, 3785, 3787, 3789, 3791, 3792, 3793, 3796,
3798, 3801, 3803, 3807, 3939, 3808, 3939, 3939, 3812, 3809,
3815, 3819, 3821, 3939, 3939, 3939, 3847, 3854, 3861, 3868,
3875, 94, 3882, 3889, 3896, 3903, 3910, 3917, 3924, 3931
} ;
static yyconst flex_int16_t yy_def[2011] =
{ 0,
1996, 1, 1997, 1997, 1998, 1998, 1999, 1999, 2000, 2000,
2001, 2001, 1996, 2002, 1996, 1996, 1996, 1996, 2003, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2004, 1996, 1996, 1996, 2004, 2005, 1996, 1996, 1996, 2005,
2006, 1996, 1996, 1996, 1996, 2006, 2007, 1996, 1996, 1996,
2007, 2008, 1996, 2009, 1996, 2008, 2008, 2002, 2002, 1996,
2010, 2003, 2010, 2003, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2004, 2004,
2005, 2005, 2006, 2006, 1996, 2007, 2007, 2008, 2008, 2009,
2009, 2008, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2008, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2008,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 1996,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 1996, 2008, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2008, 2002, 2002, 2002, 2002, 2002, 1996, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996,
2002, 1996, 1996, 2002, 1996, 1996, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2008, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 1996, 2002, 2008, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 1996, 2002, 1996, 2002, 2002, 2002, 1996,
2002, 1996, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002,
2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 1996, 2002, 1996, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996,
1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 1996, 2002, 1996, 2002, 2002,
1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 1996, 2002, 2002, 2002, 2002, 1996, 2002, 1996, 2002,
1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
1996, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 1996,
2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 1996, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 1996,
2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
1996, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 1996, 2002,
2002, 1996, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 1996,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
1996, 2002, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 2002,
2002, 2002, 2002, 1996, 1996, 1996, 2002, 1996, 2002, 1996,
1996, 2002, 2002, 1996, 2002, 1996, 2002, 2002, 2002, 2002,
2002, 1996, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002,
1996, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 1996, 1996, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 1996, 2002, 2002, 1996, 1996, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002,
2002, 1996, 2002, 2002, 2002, 2002, 1996, 1996, 1996, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
1996, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 1996, 2002, 2002, 1996, 2002, 2002,
2002, 1996, 2002, 1996, 2002, 1996, 1996, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996,
1996, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002,
2002, 1996, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 1996, 2002, 2002, 1996, 2002, 1996, 1996,
1996, 2002, 2002, 2002, 1996, 2002, 2002, 1996, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 1996, 2002, 2002, 1996, 2002, 2002, 1996, 2002,
2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 1996, 2002, 2002, 1996, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 1996, 2002, 1996, 1996,
1996, 2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 1996,
1996, 2002, 2002, 2002, 1996, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 1996, 1996, 2002, 1996, 2002,
2002, 2002, 1996, 1996, 1996, 2002, 1996, 2002, 1996, 2002,
2002, 2002, 1996, 2002, 2002, 1996, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996,
1996, 2002, 1996, 2002, 1996, 2002, 2002, 1996, 2002, 2002,
2002, 2002, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 1996, 1996, 1996, 2002, 1996, 2002, 2002, 2002, 1996,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 1996,
2002, 1996, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 1996,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
1996, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002,
2002, 2002, 2002, 2002, 1996, 2002, 1996, 1996, 2002, 2002,
2002, 2002, 2002, 1996, 1996, 0, 1996, 1996, 1996, 1996,
1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996
} ;
static yyconst flex_uint16_t yy_nxt[3979] =
{ 0,
14, 15, 16, 17, 18, 19, 18, 14, 14, 14,
14, 18, 20, 21, 14, 22, 23, 24, 25, 14,
26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
36, 37, 38, 39, 40, 14, 14, 14, 14, 42,
43, 44, 42, 43, 44, 131, 47, 48, 131, 45,
49, 70, 45, 47, 48, 71, 50, 49, 58, 59,
60, 69, 69, 50, 52, 53, 54, 55, 61, 18,
58, 59, 60, 129, 129, 56, 52, 53, 54, 55,
61, 18, 69, 106, 234, 75, 76, 56, 15, 16,
17, 63, 64, 65, 68, 68, 69, 68, 68, 66,
68, 97, 69, 77, 69, 68, 86, 143, 67, 15,
16, 17, 63, 64, 65, 69, 69, 78, 69, 90,
66, 69, 88, 69, 79, 131, 87, 91, 131, 67,
73, 80, 73, 73, 69, 73, 89, 154, 96, 69,
73, 74, 69, 92, 136, 136, 93, 81, 69, 98,
69, 82, 139, 94, 83, 95, 84, 85, 69, 99,
69, 103, 112, 180, 69, 104, 142, 100, 70, 117,
69, 113, 71, 101, 69, 114, 69, 102, 144, 118,
69, 105, 69, 119, 120, 115, 69, 107, 116, 146,
69, 108, 69, 121, 124, 122, 145, 109, 139, 125,
110, 69, 147, 69, 126, 69, 164, 111, 127, 155,
123, 133, 128, 133, 133, 73, 133, 73, 73, 138,
73, 138, 138, 148, 138, 68, 141, 68, 68, 69,
68, 69, 69, 69, 139, 68, 73, 69, 73, 73,
156, 73, 69, 149, 160, 69, 73, 74, 150, 152,
153, 158, 159, 69, 151, 69, 69, 69, 157, 69,
163, 69, 166, 170, 69, 167, 69, 69, 69, 172,
174, 161, 69, 162, 175, 165, 171, 69, 168, 169,
69, 178, 69, 69, 69, 69, 177, 179, 69, 173,
176, 181, 69, 69, 69, 182, 185, 69, 190, 69,
69, 69, 69, 183, 187, 189, 184, 69, 188, 69,
196, 186, 69, 192, 191, 69, 193, 69, 198, 69,
69, 194, 69, 69, 197, 195, 69, 200, 203, 69,
69, 69, 129, 129, 205, 201, 208, 237, 199, 137,
207, 202, 206, 133, 139, 133, 133, 209, 133, 204,
136, 136, 138, 69, 138, 138, 73, 138, 73, 73,
69, 73, 69, 211, 69, 210, 69, 141, 69, 69,
69, 69, 213, 216, 135, 218, 220, 212, 69, 217,
69, 219, 69, 221, 215, 214, 222, 223, 69, 69,
69, 69, 69, 230, 69, 232, 69, 231, 69, 233,
235, 69, 69, 236, 69, 69, 241, 242, 69, 224,
69, 261, 69, 243, 225, 134, 238, 239, 69, 226,
240, 69, 244, 250, 227, 69, 251, 245, 69, 69,
228, 229, 248, 252, 249, 254, 69, 257, 69, 246,
69, 247, 69, 69, 253, 255, 259, 260, 258, 69,
256, 69, 69, 69, 69, 69, 69, 69, 69, 263,
69, 265, 262, 69, 69, 267, 69, 69, 269, 69,
132, 268, 272, 69, 264, 270, 276, 69, 266, 278,
69, 69, 69, 69, 271, 280, 69, 279, 273, 277,
69, 274, 275, 69, 283, 282, 139, 284, 286, 69,
69, 281, 69, 69, 69, 69, 287, 293, 290, 289,
69, 295, 69, 292, 69, 294, 69, 69, 291, 69,
285, 69, 69, 288, 301, 300, 69, 69, 302, 296,
299, 69, 303, 298, 304, 297, 69, 69, 69, 305,
69, 306, 69, 307, 69, 309, 69, 312, 310, 69,
69, 308, 69, 314, 69, 311, 69, 315, 69, 316,
317, 69, 69, 313, 69, 69, 69, 322, 69, 69,
318, 323, 69, 69, 69, 327, 325, 321, 69, 319,
69, 330, 69, 320, 69, 331, 69, 324, 69, 69,
69, 326, 329, 333, 69, 69, 328, 69, 337, 69,
332, 334, 335, 69, 336, 341, 342, 339, 130, 340,
347, 338, 343, 69, 69, 69, 345, 344, 69, 346,
350, 69, 69, 69, 348, 69, 352, 349, 351, 69,
69, 69, 69, 357, 354, 69, 69, 353, 69, 360,
359, 361, 355, 69, 69, 69, 69, 69, 367, 69,
69, 356, 358, 69, 366, 368, 69, 362, 69, 369,
363, 374, 372, 364, 69, 365, 69, 370, 69, 371,
373, 139, 69, 69, 428, 385, 69, 375, 376, 69,
386, 377, 378, 384, 387, 69, 69, 390, 69, 69,
69, 379, 388, 380, 381, 382, 391, 392, 383, 69,
69, 69, 69, 398, 69, 389, 396, 69, 69, 394,
399, 393, 402, 69, 395, 397, 400, 69, 69, 405,
406, 401, 69, 404, 69, 69, 69, 69, 69, 403,
411, 69, 69, 69, 69, 69, 412, 413, 69, 69,
430, 408, 409, 69, 407, 410, 69, 416, 418, 415,
69, 419, 414, 69, 420, 69, 422, 69, 69, 425,
417, 69, 421, 424, 423, 69, 69, 69, 431, 432,
426, 429, 69, 69, 69, 69, 433, 69, 427, 69,
435, 69, 69, 439, 69, 438, 436, 69, 69, 440,
69, 437, 69, 442, 434, 69, 443, 69, 445, 69,
69, 69, 69, 69, 69, 453, 446, 69, 441, 444,
69, 69, 448, 454, 69, 456, 455, 452, 457, 447,
449, 451, 450, 69, 458, 69, 69, 69, 69, 69,
462, 69, 69, 464, 69, 476, 460, 69, 69, 69,
69, 478, 463, 69, 69, 477, 461, 459, 465, 69,
466, 69, 467, 69, 473, 475, 474, 468, 69, 469,
69, 480, 69, 479, 69, 482, 69, 470, 483, 481,
471, 487, 69, 485, 484, 69, 69, 472, 69, 139,
488, 489, 69, 493, 494, 486, 69, 69, 492, 69,
69, 69, 69, 491, 69, 490, 499, 69, 495, 498,
69, 501, 69, 497, 500, 496, 69, 69, 69, 504,
503, 69, 502, 505, 506, 509, 69, 69, 507, 510,
69, 508, 512, 69, 513, 69, 514, 515, 69, 511,
517, 69, 516, 69, 69, 69, 69, 69, 518, 519,
522, 521, 69, 69, 69, 69, 523, 526, 524, 69,
69, 69, 69, 529, 527, 520, 69, 69, 530, 69,
533, 69, 531, 69, 525, 528, 535, 69, 536, 69,
69, 538, 69, 540, 532, 534, 69, 543, 539, 69,
69, 537, 69, 541, 69, 544, 69, 69, 69, 550,
69, 547, 69, 69, 69, 552, 551, 546, 545, 69,
549, 69, 553, 548, 69, 542, 554, 557, 69, 559,
69, 555, 69, 558, 69, 561, 69, 562, 556, 560,
69, 563, 69, 69, 566, 69, 69, 69, 69, 69,
568, 570, 69, 564, 567, 571, 565, 69, 69, 572,
69, 69, 69, 573, 575, 569, 69, 574, 69, 69,
576, 69, 580, 69, 69, 577, 69, 578, 581, 586,
69, 69, 69, 589, 69, 69, 579, 69, 582, 583,
69, 585, 592, 584, 590, 69, 591, 69, 69, 587,
588, 69, 69, 69, 69, 596, 69, 597, 69, 599,
598, 593, 69, 600, 595, 69, 594, 69, 69, 602,
139, 69, 69, 69, 601, 606, 603, 605, 69, 604,
69, 607, 69, 610, 608, 69, 69, 69, 613, 69,
617, 611, 609, 69, 612, 69, 69, 618, 621, 615,
69, 616, 69, 69, 619, 620, 614, 69, 69, 69,
69, 632, 622, 631, 69, 627, 623, 629, 69, 624,
628, 69, 633, 69, 630, 69, 625, 69, 641, 626,
69, 634, 635, 69, 636, 69, 644, 637, 69, 642,
645, 69, 638, 69, 647, 646, 69, 654, 639, 640,
643, 69, 649, 69, 69, 69, 69, 651, 650, 69,
652, 648, 69, 69, 653, 69, 69, 659, 69, 69,
69, 69, 139, 658, 69, 655, 664, 665, 69, 656,
666, 69, 657, 660, 661, 69, 663, 662, 667, 69,
69, 69, 668, 69, 69, 69, 669, 69, 69, 670,
675, 69, 671, 673, 674, 676, 69, 69, 69, 679,
677, 69, 69, 672, 69, 678, 69, 69, 69, 683,
681, 682, 69, 685, 69, 69, 69, 680, 688, 69,
69, 684, 69, 686, 691, 69, 689, 69, 69, 69,
69, 69, 69, 697, 69, 69, 696, 690, 687, 700,
69, 692, 693, 69, 69, 69, 701, 694, 695, 698,
703, 699, 704, 69, 702, 705, 707, 706, 708, 69,
69, 69, 69, 69, 709, 69, 714, 69, 715, 69,
713, 716, 717, 69, 711, 69, 69, 69, 710, 720,
722, 69, 712, 69, 69, 724, 139, 69, 719, 69,
69, 718, 69, 726, 69, 69, 69, 721, 69, 737,
738, 723, 725, 69, 69, 69, 69, 69, 729, 727,
741, 69, 69, 768, 69, 730, 728, 69, 739, 743,
731, 744, 732, 69, 69, 745, 733, 742, 734, 740,
69, 69, 69, 735, 746, 69, 748, 750, 736, 747,
69, 69, 137, 755, 752, 69, 749, 754, 69, 751,
756, 69, 69, 69, 753, 69, 757, 762, 763, 69,
69, 758, 69, 759, 69, 766, 764, 767, 69, 771,
69, 765, 69, 773, 760, 69, 772, 69, 69, 770,
774, 761, 769, 69, 777, 69, 69, 69, 69, 69,
778, 69, 69, 69, 775, 69, 776, 780, 69, 69,
781, 783, 69, 782, 785, 779, 791, 69, 69, 69,
69, 69, 784, 69, 69, 786, 787, 789, 788, 790,
69, 69, 799, 798, 69, 795, 792, 793, 794, 796,
69, 800, 69, 69, 803, 797, 69, 69, 804, 69,
69, 805, 69, 69, 806, 801, 807, 69, 69, 802,
69, 808, 69, 812, 69, 69, 69, 69, 69, 69,
815, 816, 809, 810, 817, 69, 821, 811, 820, 69,
814, 819, 69, 813, 69, 818, 69, 823, 69, 69,
69, 828, 69, 69, 69, 69, 69, 829, 830, 69,
822, 69, 832, 827, 824, 835, 833, 825, 69, 826,
69, 836, 831, 834, 69, 69, 69, 839, 69, 838,
69, 69, 843, 837, 69, 69, 69, 69, 69, 69,
69, 69, 842, 852, 840, 841, 845, 69, 69, 135,
69, 853, 844, 69, 846, 849, 69, 69, 848, 69,
851, 69, 850, 847, 854, 69, 855, 856, 69, 860,
858, 857, 69, 69, 69, 864, 69, 69, 69, 861,
69, 69, 69, 859, 69, 869, 867, 870, 862, 69,
69, 865, 69, 863, 69, 873, 866, 871, 69, 69,
69, 868, 69, 872, 876, 69, 69, 875, 69, 69,
878, 69, 874, 880, 69, 881, 69, 69, 69, 877,
69, 879, 69, 882, 885, 69, 69, 69, 886, 884,
883, 890, 69, 894, 69, 69, 69, 887, 69, 69,
889, 888, 891, 893, 896, 69, 892, 69, 69, 895,
898, 899, 897, 900, 69, 69, 905, 901, 69, 69,
69, 69, 903, 908, 69, 909, 902, 904, 69, 907,
69, 69, 906, 69, 69, 910, 69, 914, 912, 913,
911, 69, 69, 69, 69, 1113, 919, 916, 920, 69,
915, 69, 69, 69, 921, 69, 922, 917, 69, 928,
69, 69, 918, 69, 929, 931, 69, 69, 69, 69,
932, 930, 923, 69, 69, 69, 939, 924, 934, 925,
69, 926, 935, 927, 69, 933, 936, 69, 937, 940,
69, 69, 938, 941, 944, 69, 946, 69, 942, 69,
69, 69, 947, 950, 69, 948, 945, 69, 952, 69,
69, 69, 955, 69, 69, 943, 953, 69, 69, 69,
949, 69, 957, 134, 959, 69, 958, 951, 69, 960,
69, 954, 963, 69, 956, 965, 962, 966, 69, 961,
69, 69, 69, 967, 968, 69, 964, 69, 69, 69,
969, 972, 69, 69, 69, 976, 69, 69, 971, 69,
69, 69, 69, 69, 970, 69, 982, 69, 973, 980,
977, 987, 69, 974, 69, 69, 978, 975, 69, 979,
981, 983, 69, 986, 69, 985, 991, 989, 984, 69,
992, 69, 69, 993, 990, 69, 69, 988, 995, 997,
994, 69, 69, 996, 69, 998, 999, 69, 69, 69,
69, 69, 69, 69, 1003, 69, 1006, 69, 69, 1025,
69, 1000, 69, 69, 69, 69, 1002, 1009, 1004, 69,
1014, 1005, 1008, 1001, 1010, 1007, 1015, 1011, 1012, 69,
69, 69, 69, 1013, 1016, 69, 69, 69, 1023, 1024,
1018, 1020, 1022, 69, 69, 69, 1026, 1019, 1017, 1027,
69, 69, 69, 69, 69, 1028, 69, 1021, 69, 1031,
1034, 1029, 1036, 69, 1035, 69, 1037, 69, 69, 69,
1032, 1030, 69, 69, 69, 69, 69, 1033, 69, 1045,
69, 1044, 69, 1038, 69, 69, 69, 1039, 1040, 69,
69, 1041, 1054, 1043, 1050, 1046, 69, 1047, 132, 1042,
69, 1048, 69, 1053, 1049, 1052, 69, 1051, 1055, 1056,
69, 1057, 69, 1059, 69, 69, 1058, 69, 69, 69,
1062, 1066, 69, 1060, 1063, 69, 69, 69, 1061, 1071,
1067, 1068, 69, 69, 69, 1069, 69, 1064, 1073, 1065,
69, 1074, 1075, 1076, 69, 69, 1070, 69, 1077, 69,
1072, 69, 1078, 69, 1079, 69, 1080, 69, 69, 69,
1081, 1086, 69, 1084, 69, 69, 69, 1089, 1087, 69,
69, 1083, 69, 69, 1085, 69, 1092, 69, 1082, 69,
1094, 1091, 1095, 69, 69, 1088, 69, 1098, 69, 1099,
69, 1090, 1093, 1097, 69, 1096, 69, 69, 69, 1104,
69, 1106, 1108, 1102, 69, 1105, 69, 69, 1100, 69,
1101, 1110, 69, 69, 69, 69, 1103, 69, 1107, 69,
1112, 69, 1114, 1109, 1116, 69, 1122, 1115, 1117, 1120,
69, 1118, 1111, 69, 69, 1121, 69, 1126, 1123, 1125,
69, 1127, 69, 1119, 1124, 69, 69, 69, 1131, 69,
1133, 69, 69, 69, 1132, 69, 69, 1135, 1136, 69,
69, 1137, 69, 1128, 69, 1129, 69, 1130, 1144, 69,
69, 69, 69, 69, 1134, 69, 69, 130, 1138, 69,
1141, 1142, 1139, 1143, 1140, 1149, 69, 69, 69, 1147,
69, 1145, 1146, 1151, 69, 69, 69, 1148, 69, 1150,
69, 1153, 1152, 1162, 1154, 69, 1156, 1155, 1160, 69,
1163, 1157, 1161, 69, 69, 69, 1158, 69, 69, 69,
1170, 1171, 69, 1159, 1165, 69, 69, 1169, 1167, 69,
1164, 1168, 69, 69, 69, 69, 1166, 69, 69, 69,
1180, 69, 1173, 69, 69, 69, 1172, 1175, 69, 1177,
1174, 1176, 1182, 1183, 69, 1184, 1179, 1181, 69, 1178,
1189, 69, 1188, 1190, 69, 69, 1191, 1186, 1192, 1185,
1187, 69, 69, 69, 1195, 69, 69, 1193, 69, 69,
69, 1197, 69, 69, 1194, 1196, 1204, 1198, 1200, 1201,
69, 69, 69, 69, 1199, 1207, 69, 69, 69, 69,
1202, 1209, 1203, 1210, 1211, 69, 1205, 69, 69, 69,
1206, 69, 1212, 1208, 1213, 1216, 69, 69, 69, 69,
69, 69, 1222, 69, 1215, 1217, 1218, 69, 69, 1219,
1220, 1214, 69, 1223, 1225, 1226, 69, 69, 69, 1221,
1227, 1224, 1228, 69, 69, 1231, 69, 1230, 69, 1229,
69, 69, 69, 69, 69, 1233, 69, 69, 69, 1237,
1232, 1234, 69, 1235, 1243, 1238, 1242, 69, 1236, 69,
69, 69, 69, 1241, 1247, 69, 69, 1240, 1239, 1249,
69, 1251, 69, 1244, 69, 1253, 69, 69, 1252, 1245,
69, 1246, 1248, 69, 1255, 1257, 1254, 1250, 1261, 69,
69, 1259, 69, 69, 1256, 69, 1260, 69, 69, 69,
1268, 69, 1258, 1270, 69, 69, 69, 1271, 69, 1262,
1263, 1264, 1274, 69, 69, 69, 1265, 69, 1266, 1267,
1272, 1269, 69, 1276, 69, 1273, 69, 1279, 1280, 69,
1282, 69, 69, 1281, 69, 1277, 69, 69, 69, 1278,
1275, 1284, 69, 1287, 69, 1285, 69, 1283, 1291, 69,
69, 1290, 69, 69, 1294, 69, 1295, 1293, 69, 69,
1289, 69, 69, 1286, 1288, 1296, 69, 1297, 69, 1292,
1301, 69, 1299, 69, 1300, 69, 1302, 1298, 69, 1305,
69, 69, 69, 69, 69, 69, 69, 1309, 69, 1303,
1310, 1312, 69, 69, 1311, 1306, 69, 1308, 69, 1313,
1307, 1304, 1315, 69, 1314, 69, 1319, 1316, 1320, 69,
1317, 69, 1321, 1318, 1323, 69, 1322, 69, 1326, 69,
69, 69, 69, 69, 1324, 1328, 1331, 1325, 69, 69,
1330, 69, 1327, 1333, 1329, 69, 69, 1996, 69, 1335,
69, 1334, 69, 1336, 1337, 69, 1338, 69, 69, 1343,
1332, 69, 69, 69, 1340, 1339, 1341, 69, 1342, 69,
69, 69, 1344, 1345, 69, 1346, 1348, 69, 69, 69,
69, 1347, 69, 1350, 1353, 1355, 69, 1354, 69, 69,
69, 1349, 69, 1357, 69, 69, 1351, 69, 1352, 69,
1356, 1362, 69, 1360, 1358, 1363, 1359, 1366, 1361, 69,
1364, 1365, 69, 69, 1368, 69, 69, 1369, 1370, 69,
69, 69, 1373, 1371, 69, 69, 1367, 69, 69, 69,
69, 69, 69, 1374, 69, 69, 69, 1381, 69, 1376,
1372, 1377, 1378, 1385, 69, 69, 1375, 1380, 69, 69,
1382, 1386, 1387, 1388, 1379, 1383, 1384, 69, 69, 1391,
1392, 69, 69, 69, 1389, 69, 1996, 1390, 1394, 69,
1393, 1395, 69, 69, 1400, 69, 69, 1396, 1397, 69,
1398, 1401, 69, 69, 69, 1399, 1406, 69, 1402, 69,
1403, 69, 1407, 69, 1410, 69, 69, 69, 1405, 69,
1411, 69, 1404, 1412, 1408, 69, 1414, 1416, 1413, 1415,
1417, 69, 69, 1409, 69, 69, 69, 69, 69, 69,
1420, 1418, 1421, 69, 69, 69, 1419, 69, 69, 1422,
1426, 1427, 69, 1431, 69, 69, 69, 1424, 1423, 1425,
69, 1430, 1428, 69, 1432, 1433, 69, 1435, 69, 69,
69, 1996, 1438, 1429, 1436, 1434, 1439, 69, 1440, 69,
1441, 1437, 1442, 69, 1444, 69, 69, 1445, 1443, 69,
69, 1448, 69, 1450, 69, 69, 69, 1449, 69, 69,
69, 1446, 69, 1452, 69, 69, 69, 1455, 1447, 69,
1458, 69, 69, 69, 69, 1454, 1459, 69, 1461, 1460,
1451, 69, 1453, 1456, 69, 1457, 69, 69, 69, 69,
1471, 69, 1462, 1463, 69, 69, 1464, 1472, 69, 1469,
69, 1498, 69, 69, 1465, 1467, 69, 1476, 1466, 1468,
1470, 1473, 1477, 69, 1474, 1475, 1478, 69, 1479, 69,
69, 1481, 69, 1484, 69, 1485, 69, 1486, 69, 69,
69, 1482, 1480, 69, 1483, 1488, 69, 1490, 69, 1491,
69, 69, 1494, 69, 69, 69, 1493, 69, 1487, 1492,
69, 1489, 1496, 69, 69, 69, 1500, 1499, 1502, 69,
69, 1506, 69, 1495, 1503, 1497, 69, 69, 69, 1505,
69, 1501, 1511, 69, 1510, 1504, 69, 1513, 69, 69,
69, 1515, 69, 1509, 69, 69, 1507, 69, 69, 69,
1508, 1516, 1518, 69, 1522, 1512, 1517, 69, 69, 69,
69, 1520, 1523, 69, 69, 1514, 1528, 1996, 1525, 1526,
1519, 69, 69, 1524, 1521, 69, 1529, 1527, 69, 69,
1532, 1533, 69, 1534, 1530, 69, 69, 1531, 69, 69,
69, 1535, 69, 69, 69, 1536, 1541, 1537, 1539, 1542,
1538, 69, 1540, 69, 1544, 1545, 69, 69, 1543, 1546,
69, 69, 1548, 69, 69, 1547, 69, 1550, 1553, 1549,
69, 1552, 69, 1555, 69, 1554, 69, 69, 69, 69,
69, 1556, 1551, 1560, 69, 1563, 1557, 69, 69, 1562,
69, 69, 1559, 1564, 1567, 69, 1566, 1558, 69, 69,
1561, 69, 1571, 1568, 1565, 69, 69, 1569, 69, 1572,
69, 1574, 1570, 1575, 69, 69, 69, 1578, 69, 1579,
69, 1577, 1580, 69, 1581, 69, 69, 69, 69, 69,
69, 69, 69, 1576, 1573, 1584, 1587, 69, 1588, 1589,
69, 1582, 69, 1586, 69, 1592, 69, 1585, 1583, 69,
1590, 69, 69, 1594, 1593, 1591, 1595, 1596, 1597, 69,
1598, 69, 1599, 69, 69, 69, 69, 1602, 69, 69,
69, 69, 69, 1608, 69, 69, 1600, 1606, 69, 69,
1603, 1604, 1605, 1601, 1609, 69, 69, 69, 69, 1615,
69, 1607, 69, 69, 1996, 69, 1621, 69, 1612, 1611,
1619, 1614, 1616, 69, 1610, 69, 69, 69, 1617, 69,
1613, 1620, 1622, 69, 1618, 69, 1623, 69, 69, 69,
69, 1631, 69, 1624, 69, 1625, 1628, 1626, 69, 1627,
1632, 69, 69, 1633, 69, 1635, 69, 1630, 1629, 69,
1634, 69, 1641, 69, 1642, 69, 69, 1636, 69, 69,
69, 69, 1637, 69, 1638, 1639, 1646, 69, 69, 69,
1640, 1644, 1649, 1643, 69, 69, 1650, 1645, 1651, 69,
1647, 69, 1654, 1648, 1655, 69, 69, 1652, 1658, 69,
69, 69, 69, 69, 1659, 1653, 1656, 1661, 1662, 69,
1664, 69, 69, 69, 1657, 1663, 1660, 1666, 69, 1667,
69, 69, 1668, 69, 69, 69, 69, 69, 69, 69,
1672, 1665, 1673, 1671, 69, 1669, 1670, 1675, 69, 1677,
69, 69, 1996, 1676, 69, 1674, 1678, 1680, 69, 1681,
69, 1682, 69, 1679, 1684, 69, 69, 1683, 1699, 69,
1685, 1686, 69, 1687, 69, 1689, 69, 69, 69, 1688,
69, 1690, 69, 1691, 69, 1692, 69, 69, 69, 69,
69, 1695, 1694, 1697, 1698, 69, 69, 1693, 69, 1696,
69, 1700, 69, 1703, 1701, 1702, 69, 1704, 69, 1708,
69, 69, 69, 69, 1712, 69, 69, 69, 69, 1705,
69, 1710, 1714, 1715, 69, 1716, 1706, 1707, 1711, 69,
1709, 69, 69, 1719, 1717, 1713, 1720, 69, 69, 69,
1718, 69, 1723, 1724, 69, 69, 1726, 1727, 69, 69,
69, 1721, 1728, 1722, 1729, 69, 1730, 69, 69, 1725,
1731, 69, 1734, 1735, 69, 69, 1737, 69, 1732, 1736,
1738, 69, 1733, 69, 69, 69, 1741, 69, 69, 69,
1740, 69, 1742, 1745, 69, 69, 1749, 69, 69, 69,
69, 69, 1743, 1744, 69, 1753, 1739, 1746, 1751, 1748,
69, 1754, 69, 1755, 1747, 69, 69, 1750, 1752, 69,
69, 1757, 69, 69, 1763, 69, 69, 1759, 69, 1760,
69, 1756, 69, 1764, 1766, 69, 69, 1767, 69, 1758,
1769, 69, 1761, 1762, 1765, 69, 1768, 1771, 1773, 1770,
69, 1772, 1774, 69, 69, 69, 69, 69, 69, 1781,
69, 1996, 69, 1775, 1776, 1777, 1778, 1780, 69, 1782,
69, 1784, 69, 1783, 1785, 1786, 69, 69, 1789, 69,
69, 1787, 1779, 69, 69, 1791, 1793, 69, 1795, 69,
69, 69, 69, 1798, 69, 69, 69, 1788, 69, 69,
1790, 69, 1792, 1800, 69, 1801, 69, 1797, 1799, 1796,
69, 1805, 1794, 69, 1802, 1807, 69, 69, 1804, 69,
1803, 1809, 69, 1810, 69, 1811, 69, 69, 69, 69,
1806, 69, 1808, 1812, 1813, 69, 69, 1814, 69, 1817,
1820, 69, 1815, 1818, 1821, 69, 1816, 69, 69, 1825,
69, 69, 69, 1819, 1826, 1822, 69, 1827, 69, 1823,
69, 69, 69, 1830, 1828, 1833, 1831, 69, 1824, 69,
69, 1836, 69, 1837, 69, 1839, 69, 69, 1829, 69,
69, 1832, 1840, 1901, 1834, 1835, 69, 69, 1838, 1843,
69, 1842, 1846, 1841, 1844, 69, 1845, 69, 1847, 69,
69, 1848, 1849, 69, 69, 69, 69, 1853, 69, 69,
69, 69, 1856, 69, 1854, 1852, 69, 69, 1850, 1855,
69, 1857, 69, 69, 69, 1851, 69, 1860, 69, 69,
1858, 1862, 1861, 69, 69, 69, 69, 1859, 1897, 1868,
1870, 69, 1863, 69, 1864, 1881, 1865, 1866, 1871, 69,
1873, 69, 69, 69, 1867, 1869, 1872, 1874, 1875, 69,
69, 1876, 1878, 69, 69, 69, 69, 1882, 1883, 69,
1884, 69, 69, 69, 1877, 69, 69, 1885, 1996, 1879,
69, 69, 69, 1880, 1902, 1889, 1890, 1892, 69, 69,
1887, 1893, 69, 1894, 69, 69, 69, 1888, 1886, 1896,
69, 1891, 69, 1898, 1895, 1900, 69, 69, 69, 69,
69, 1899, 69, 1904, 69, 69, 69, 1908, 69, 1909,
69, 1903, 69, 69, 69, 69, 1907, 69, 1905, 69,
1906, 1912, 1911, 69, 1996, 1913, 1910, 1920, 69, 69,
1916, 69, 1914, 1915, 1918, 1922, 69, 69, 1921, 1923,
69, 69, 1917, 1919, 69, 1928, 1924, 69, 69, 1925,
69, 69, 1927, 1930, 69, 1933, 1926, 1934, 69, 69,
69, 1929, 69, 1931, 69, 69, 69, 69, 69, 69,
1932, 69, 1935, 69, 69, 1946, 1943, 1936, 1937, 1938,
1940, 1941, 69, 69, 69, 1939, 69, 1944, 1942, 1947,
69, 1948, 1945, 1951, 69, 1949, 1952, 69, 69, 69,
69, 1953, 1950, 1956, 69, 69, 69, 69, 69, 69,
1959, 69, 69, 1963, 69, 69, 69, 69, 1954, 1955,
1958, 1964, 1968, 1957, 1962, 1960, 69, 1966, 1961, 69,
1967, 69, 69, 1965, 1970, 1971, 69, 69, 1969, 1972,
69, 69, 69, 69, 1973, 69, 1975, 69, 1977, 69,
1978, 69, 1981, 69, 69, 69, 1984, 1985, 69, 1974,
69, 1976, 1987, 69, 1988, 69, 1979, 1986, 1980, 69,
69, 69, 1982, 1983, 69, 1990, 1989, 69, 1996, 1991,
1994, 69, 1995, 69, 1996, 1996, 1996, 1996, 1996, 1996,
1992, 1996, 1996, 1996, 1996, 1996, 1993, 41, 41, 41,
41, 41, 41, 41, 46, 46, 46, 46, 46, 46,
46, 51, 51, 51, 51, 51, 51, 51, 57, 57,
57, 57, 57, 57, 57, 62, 62, 62, 62, 62,
62, 62, 72, 72, 1996, 72, 72, 72, 72, 129,
129, 1996, 1996, 1996, 129, 129, 131, 131, 1996, 1996,
131, 1996, 131, 133, 1996, 1996, 1996, 1996, 1996, 133,
136, 136, 1996, 1996, 1996, 136, 136, 138, 1996, 1996,
1996, 1996, 1996, 138, 140, 140, 1996, 140, 140, 140,
140, 73, 73, 1996, 73, 73, 73, 73, 13, 1996,
1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996,
1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996,
1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996,
1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996
} ;
static yyconst flex_int16_t yy_chk[3979] =
{ 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, 3,
3, 3, 4, 4, 4, 50, 5, 5, 50, 3,
5, 15, 4, 6, 6, 15, 5, 6, 9, 9,
9, 161, 33, 6, 7, 7, 7, 7, 9, 7,
10, 10, 10, 45, 45, 7, 8, 8, 8, 8,
10, 8, 21, 33, 161, 21, 21, 8, 11, 11,
11, 11, 11, 11, 2002, 20, 29, 20, 20, 11,
20, 29, 24, 21, 75, 20, 24, 75, 11, 12,
12, 12, 12, 12, 12, 83, 22, 22, 26, 26,
12, 25, 25, 28, 22, 132, 24, 26, 132, 12,
19, 22, 19, 19, 30, 19, 25, 83, 28, 27,
19, 19, 23, 27, 61, 61, 27, 23, 35, 30,
103, 23, 67, 27, 23, 27, 23, 23, 31, 31,
32, 32, 35, 103, 37, 32, 67, 31, 70, 37,
36, 36, 70, 31, 76, 36, 77, 31, 76, 37,
39, 32, 34, 37, 37, 36, 78, 34, 36, 78,
84, 34, 38, 38, 39, 38, 77, 34, 724, 39,
34, 92, 78, 40, 40, 79, 92, 34, 40, 84,
38, 56, 40, 56, 56, 64, 56, 64, 64, 66,
64, 66, 66, 79, 66, 69, 64, 69, 69, 80,
69, 82, 87, 88, 138, 69, 72, 86, 72, 72,
85, 72, 81, 80, 88, 85, 72, 72, 81, 82,
82, 86, 87, 89, 81, 90, 91, 96, 85, 94,
91, 93, 94, 95, 97, 94, 99, 98, 95, 97,
98, 89, 100, 90, 98, 93, 96, 101, 94, 94,
102, 101, 105, 106, 104, 111, 100, 102, 107, 97,
99, 104, 108, 109, 113, 105, 108, 112, 112, 110,
114, 115, 116, 106, 110, 111, 107, 117, 110, 121,
118, 109, 119, 114, 113, 118, 115, 120, 120, 122,
123, 116, 127, 164, 119, 117, 124, 121, 124, 125,
126, 128, 130, 130, 125, 122, 128, 164, 120, 136,
127, 123, 126, 134, 142, 134, 134, 142, 134, 124,
137, 137, 139, 149, 139, 139, 140, 139, 140, 140,
143, 140, 145, 144, 146, 143, 147, 140, 144, 148,
150, 152, 146, 149, 135, 151, 152, 145, 158, 150,
151, 151, 153, 153, 148, 147, 154, 155, 167, 155,
159, 154, 157, 157, 160, 159, 162, 158, 163, 160,
162, 165, 168, 163, 183, 166, 167, 168, 169, 155,
156, 183, 171, 169, 156, 133, 165, 166, 172, 156,
166, 170, 170, 173, 156, 174, 174, 170, 173, 178,
156, 156, 171, 175, 172, 176, 177, 179, 175, 170,
176, 170, 179, 180, 175, 177, 181, 182, 180, 184,
178, 181, 182, 185, 186, 187, 188, 189, 190, 185,
192, 187, 184, 191, 193, 189, 195, 194, 191, 198,
131, 190, 194, 196, 186, 192, 197, 199, 188, 199,
200, 197, 202, 203, 193, 201, 208, 200, 195, 198,
201, 196, 196, 204, 204, 203, 209, 205, 206, 210,
219, 202, 205, 206, 207, 211, 207, 212, 209, 208,
213, 214, 212, 211, 215, 213, 214, 216, 210, 217,
205, 220, 218, 207, 220, 219, 221, 226, 221, 215,
218, 222, 222, 217, 223, 216, 227, 223, 224, 224,
225, 225, 228, 226, 229, 228, 230, 231, 229, 232,
237, 227, 231, 233, 235, 230, 234, 234, 233, 235,
236, 238, 239, 232, 240, 236, 241, 241, 242, 243,
237, 242, 244, 245, 246, 246, 244, 240, 247, 238,
248, 249, 250, 239, 252, 250, 249, 243, 251, 253,
254, 245, 248, 252, 255, 261, 247, 256, 253, 260,
251, 252, 252, 257, 252, 257, 257, 255, 129, 256,
261, 254, 258, 258, 259, 262, 260, 259, 263, 260,
264, 264, 267, 265, 262, 266, 266, 263, 265, 268,
269, 270, 272, 271, 268, 273, 274, 267, 271, 274,
273, 274, 269, 275, 276, 277, 280, 282, 278, 281,
279, 270, 272, 278, 277, 279, 283, 275, 284, 280,
276, 284, 282, 276, 285, 276, 288, 280, 287, 281,
283, 290, 292, 328, 328, 288, 293, 284, 285, 286,
289, 286, 286, 287, 289, 289, 291, 292, 295, 296,
301, 286, 290, 286, 286, 286, 293, 294, 286, 297,
299, 298, 294, 300, 302, 291, 298, 303, 300, 296,
301, 295, 304, 305, 297, 299, 302, 304, 306, 307,
307, 303, 307, 306, 308, 309, 310, 330, 312, 305,
312, 311, 313, 314, 315, 316, 313, 314, 317, 318,
330, 309, 310, 323, 308, 311, 319, 317, 318, 316,
320, 319, 315, 321, 320, 325, 322, 324, 327, 325,
317, 322, 321, 324, 323, 326, 329, 331, 331, 332,
326, 329, 333, 334, 332, 335, 333, 336, 327, 337,
335, 338, 339, 339, 340, 338, 336, 341, 345, 340,
346, 337, 342, 342, 334, 344, 344, 347, 346, 348,
349, 352, 351, 353, 355, 354, 347, 357, 341, 345,
354, 356, 349, 355, 360, 357, 356, 353, 358, 348,
351, 352, 351, 358, 359, 361, 362, 363, 364, 359,
362, 366, 365, 364, 368, 371, 360, 369, 372, 370,
371, 372, 363, 373, 375, 371, 361, 359, 365, 381,
366, 367, 367, 377, 368, 370, 369, 367, 379, 367,
374, 374, 378, 373, 376, 376, 380, 367, 377, 375,
367, 381, 383, 379, 378, 382, 384, 367, 385, 388,
382, 383, 386, 388, 389, 380, 390, 391, 386, 389,
392, 393, 395, 385, 399, 384, 394, 394, 390, 393,
397, 396, 402, 392, 395, 391, 396, 398, 400, 399,
398, 401, 397, 400, 401, 403, 404, 411, 402, 403,
403, 402, 405, 405, 406, 406, 407, 408, 408, 404,
410, 407, 409, 409, 412, 410, 413, 414, 411, 412,
415, 414, 416, 417, 418, 415, 416, 419, 417, 420,
422, 421, 419, 422, 420, 413, 423, 425, 422, 424,
424, 426, 422, 427, 418, 421, 426, 428, 427, 430,
431, 429, 433, 431, 423, 425, 429, 433, 430, 432,
434, 428, 435, 432, 436, 434, 437, 438, 439, 440,
441, 437, 442, 445, 440, 442, 441, 436, 435, 443,
439, 444, 443, 438, 446, 432, 444, 447, 448, 449,
451, 445, 447, 448, 449, 451, 450, 452, 446, 450,
453, 452, 452, 454, 455, 456, 458, 457, 461, 455,
457, 458, 463, 453, 456, 459, 454, 464, 465, 459,
459, 460, 462, 460, 462, 457, 466, 461, 467, 468,
463, 470, 467, 469, 471, 464, 472, 465, 468, 473,
474, 475, 476, 476, 473, 478, 466, 479, 469, 470,
477, 472, 479, 471, 477, 480, 478, 481, 483, 474,
475, 482, 484, 485, 486, 483, 488, 484, 487, 486,
485, 480, 489, 487, 482, 491, 481, 490, 492, 489,
493, 496, 504, 508, 488, 493, 490, 492, 494, 491,
495, 494, 497, 497, 495, 498, 501, 507, 500, 503,
504, 497, 496, 500, 498, 502, 506, 505, 508, 502,
511, 503, 505, 514, 506, 507, 501, 509, 517, 519,
520, 520, 509, 519, 68, 511, 509, 517, 518, 509,
514, 524, 521, 523, 518, 525, 509, 521, 523, 509,
522, 522, 522, 526, 522, 536, 526, 522, 528, 524,
527, 527, 522, 529, 529, 528, 530, 536, 522, 522,
525, 531, 531, 532, 533, 534, 537, 533, 532, 538,
534, 530, 535, 539, 535, 540, 541, 541, 542, 544,
543, 546, 62, 540, 545, 537, 546, 547, 547, 538,
548, 557, 539, 542, 543, 548, 545, 544, 549, 550,
551, 552, 550, 549, 553, 554, 551, 556, 555, 552,
557, 559, 553, 555, 556, 558, 558, 560, 562, 561,
559, 564, 565, 554, 561, 560, 566, 567, 569, 566,
564, 565, 568, 568, 570, 571, 573, 562, 571, 574,
575, 567, 576, 569, 574, 577, 571, 579, 578, 580,
583, 581, 582, 580, 584, 588, 579, 573, 570, 583,
585, 575, 576, 589, 586, 596, 584, 577, 578, 581,
586, 582, 587, 587, 585, 588, 590, 589, 591, 593,
592, 590, 594, 591, 592, 595, 596, 597, 597, 599,
595, 598, 599, 600, 594, 601, 598, 603, 593, 602,
604, 604, 594, 605, 602, 606, 606, 607, 601, 608,
609, 600, 610, 608, 611, 612, 615, 603, 614, 614,
615, 605, 607, 616, 617, 640, 618, 621, 611, 609,
618, 622, 619, 640, 620, 612, 610, 613, 616, 620,
613, 621, 613, 628, 624, 622, 613, 619, 613, 617,
623, 625, 626, 613, 623, 627, 625, 626, 613, 624,
629, 630, 57, 631, 628, 634, 625, 630, 631, 627,
632, 632, 636, 635, 629, 633, 633, 634, 635, 637,
642, 633, 639, 633, 638, 638, 636, 639, 641, 643,
643, 637, 644, 646, 633, 648, 644, 647, 646, 642,
647, 633, 641, 649, 650, 651, 652, 655, 653, 650,
651, 654, 656, 657, 648, 659, 649, 653, 661, 658,
654, 656, 660, 655, 658, 652, 664, 666, 662, 667,
663, 664, 657, 668, 672, 659, 660, 662, 661, 663,
669, 673, 673, 672, 670, 669, 666, 667, 668, 670,
671, 674, 675, 677, 678, 671, 674, 681, 678, 678,
679, 679, 682, 680, 679, 675, 680, 684, 683, 677,
685, 681, 686, 685, 687, 688, 689, 694, 690, 691,
688, 689, 682, 683, 690, 692, 694, 684, 693, 693,
687, 692, 695, 686, 696, 691, 697, 696, 698, 699,
700, 701, 702, 703, 705, 707, 701, 702, 703, 706,
695, 708, 706, 700, 697, 709, 707, 698, 711, 699,
709, 710, 705, 708, 712, 714, 710, 713, 713, 712,
716, 715, 717, 711, 718, 720, 717, 719, 721, 723,
727, 725, 716, 728, 714, 715, 719, 726, 728, 52,
736, 729, 718, 732, 720, 725, 729, 733, 723, 730,
727, 731, 726, 721, 730, 734, 731, 732, 735, 736,
734, 733, 737, 738, 739, 740, 740, 741, 742, 737,
743, 744, 746, 735, 745, 745, 743, 746, 738, 748,
747, 741, 749, 739, 750, 749, 742, 747, 751, 752,
753, 744, 755, 748, 752, 754, 758, 751, 759, 757,
754, 760, 750, 757, 761, 758, 763, 762, 764, 753,
765, 755, 766, 759, 762, 767, 769, 768, 763, 761,
760, 767, 775, 772, 770, 773, 774, 764, 772, 777,
766, 765, 768, 770, 774, 776, 769, 779, 780, 773,
776, 777, 775, 778, 781, 782, 782, 778, 778, 783,
784, 993, 780, 785, 786, 786, 779, 781, 785, 784,
787, 788, 783, 789, 790, 787, 791, 791, 789, 790,
788, 792, 793, 794, 795, 993, 796, 793, 797, 798,
792, 796, 799, 797, 798, 806, 799, 794, 801, 801,
803, 805, 795, 800, 802, 805, 802, 807, 812, 808,
806, 803, 800, 811, 810, 813, 812, 800, 808, 800,
815, 800, 809, 800, 814, 807, 809, 809, 810, 813,
816, 818, 811, 814, 817, 817, 819, 819, 815, 821,
822, 823, 821, 824, 824, 822, 818, 825, 826, 826,
828, 827, 829, 829, 830, 816, 827, 831, 832, 833,
823, 835, 831, 51, 833, 837, 832, 825, 834, 834,
836, 828, 837, 838, 830, 840, 836, 841, 842, 835,
840, 844, 841, 842, 843, 845, 838, 846, 848, 843,
844, 847, 847, 849, 850, 851, 852, 854, 846, 853,
851, 857, 855, 858, 845, 856, 856, 859, 848, 854,
852, 861, 861, 849, 862, 865, 852, 850, 860, 853,
855, 857, 863, 860, 867, 859, 866, 863, 858, 870,
866, 866, 868, 867, 865, 873, 869, 862, 869, 871,
868, 872, 874, 870, 871, 872, 873, 875, 876, 877,
878, 879, 880, 882, 877, 883, 880, 881, 899, 899,
884, 874, 885, 886, 887, 888, 876, 883, 878, 889,
888, 879, 882, 875, 884, 881, 889, 885, 886, 890,
891, 892, 893, 887, 890, 894, 895, 896, 897, 898,
892, 894, 896, 897, 898, 900, 900, 893, 891, 902,
902, 903, 904, 905, 906, 903, 907, 895, 908, 906,
909, 904, 910, 911, 909, 909, 910, 910, 912, 913,
907, 905, 914, 915, 916, 917, 919, 908, 920, 918,
923, 917, 921, 911, 918, 922, 924, 912, 913, 927,
925, 914, 927, 916, 923, 919, 928, 920, 46, 915,
932, 921, 926, 926, 922, 925, 930, 924, 928, 929,
929, 930, 931, 932, 933, 934, 931, 941, 935, 937,
935, 938, 938, 933, 935, 939, 942, 940, 934, 943,
939, 940, 945, 947, 943, 941, 954, 935, 947, 937,
948, 948, 949, 951, 951, 958, 942, 949, 953, 953,
945, 956, 954, 959, 956, 957, 957, 960, 961, 962,
958, 963, 963, 961, 964, 965, 966, 966, 964, 967,
968, 960, 969, 970, 962, 971, 969, 974, 959, 975,
971, 968, 973, 973, 977, 965, 976, 976, 978, 977,
979, 967, 970, 975, 980, 974, 981, 982, 985, 982,
983, 984, 986, 980, 996, 983, 984, 986, 978, 988,
979, 989, 989, 990, 991, 995, 981, 1000, 985, 1002,
991, 994, 994, 988, 996, 997, 1000, 995, 997, 998,
999, 997, 990, 1001, 998, 999, 1003, 1004, 1001, 1003,
1005, 1005, 1004, 997, 1002, 1006, 1007, 1008, 1009, 1010,
1011, 1012, 1013, 1009, 1010, 1011, 1015, 1013, 1014, 1014,
1016, 1015, 1017, 1006, 1018, 1007, 1019, 1008, 1022, 1020,
1021, 1023, 1024, 1022, 1012, 1025, 1026, 41, 1016, 1029,
1019, 1020, 1017, 1021, 1018, 1028, 1028, 1031, 1030, 1025,
1034, 1023, 1024, 1030, 1032, 1033, 1036, 1026, 1038, 1029,
1041, 1032, 1031, 1041, 1033, 1042, 1034, 1033, 1039, 1039,
1042, 1036, 1040, 1040, 1043, 1044, 1036, 1045, 1047, 1046,
1048, 1049, 1049, 1038, 1044, 1048, 1050, 1047, 1046, 1051,
1043, 1046, 1052, 1053, 1057, 1054, 1045, 1055, 1058, 1059,
1059, 1060, 1051, 1061, 1065, 1068, 1050, 1053, 1062, 1055,
1052, 1054, 1061, 1062, 1063, 1063, 1058, 1060, 1064, 1057,
1067, 1069, 1065, 1068, 1072, 1067, 1069, 1064, 1070, 1063,
1064, 1071, 1074, 1070, 1073, 1078, 1080, 1071, 1075, 1073,
1079, 1075, 1081, 1082, 1072, 1074, 1083, 1075, 1079, 1080,
1084, 1083, 1085, 1088, 1078, 1087, 1087, 1089, 1090, 1091,
1081, 1089, 1082, 1090, 1091, 1093, 1084, 1092, 1094, 1096,
1085, 1098, 1092, 1088, 1093, 1097, 1097, 1100, 1101, 1099,
1102, 1104, 1103, 1105, 1096, 1098, 1099, 1103, 1106, 1100,
1101, 1094, 14, 1104, 1106, 1107, 1107, 1108, 1112, 1102,
1108, 1105, 1109, 1109, 1111, 1113, 1113, 1112, 1114, 1111,
1115, 1117, 1116, 1118, 1119, 1115, 1120, 1121, 1122, 1119,
1114, 1116, 1125, 1117, 1124, 1120, 1123, 1123, 1118, 1124,
1126, 1127, 1129, 1122, 1128, 1128, 1131, 1121, 1120, 1130,
1130, 1132, 1132, 1125, 1133, 1134, 1138, 1140, 1133, 1126,
1134, 1127, 1129, 1135, 1137, 1139, 1135, 1131, 1143, 1137,
1139, 1141, 1141, 1143, 1138, 1142, 1142, 1144, 1145, 1146,
1147, 1148, 1140, 1150, 1152, 1147, 1151, 1150, 1150, 1144,
1144, 1144, 1153, 1153, 1154, 1156, 1144, 1157, 1145, 1146,
1151, 1148, 1155, 1155, 1162, 1152, 1158, 1158, 1159, 1159,
1163, 1163, 1164, 1162, 1165, 1156, 1166, 1167, 1169, 1157,
1154, 1165, 1168, 1168, 1170, 1166, 1172, 1164, 1173, 1174,
1175, 1172, 1181, 1173, 1176, 1182, 1177, 1175, 1183, 1176,
1170, 1177, 1179, 1167, 1169, 1178, 1178, 1179, 1180, 1174,
1183, 1185, 1181, 1184, 1182, 1186, 1184, 1180, 1187, 1187,
1188, 1189, 1190, 1191, 1192, 1193, 1197, 1191, 1195, 1185,
1192, 1194, 1194, 1199, 1193, 1188, 1198, 1190, 1204, 1195,
1189, 1186, 1196, 1196, 1195, 1211, 1200, 1197, 1201, 1201,
1198, 1200, 1202, 1199, 1203, 1205, 1202, 1202, 1206, 1203,
1208, 1209, 1210, 1206, 1204, 1209, 1212, 1205, 1213, 1215,
1211, 1212, 1208, 1214, 1210, 1221, 1217, 13, 1214, 1217,
1225, 1215, 1218, 1218, 1219, 1219, 1220, 1220, 1222, 1225,
1213, 1223, 1224, 1230, 1222, 1221, 1223, 1227, 1224, 1232,
1229, 1234, 1227, 1229, 1235, 1230, 1233, 1233, 1236, 1237,
1238, 1232, 1239, 1235, 1238, 1240, 1241, 1239, 1244, 1250,
1240, 1234, 1243, 1243, 1245, 1252, 1236, 1253, 1237, 1246,
1241, 1248, 1248, 1245, 1243, 1250, 1244, 1254, 1246, 1255,
1252, 1253, 1254, 1256, 1256, 1257, 1260, 1257, 1258, 1258,
1261, 1262, 1262, 1260, 1263, 1264, 1255, 1265, 1268, 1266,
1267, 1270, 1269, 1263, 1277, 1272, 1273, 1270, 1275, 1265,
1261, 1266, 1267, 1275, 1285, 1283, 1264, 1269, 1278, 1276,
1270, 1276, 1277, 1278, 1268, 1272, 1273, 1279, 1281, 1283,
1284, 1284, 1290, 1286, 1279, 1291, 0, 1281, 1286, 1287,
1285, 1287, 1288, 1289, 1292, 1294, 1293, 1288, 1289, 1292,
1290, 1293, 1295, 1297, 1298, 1291, 1299, 1299, 1294, 1301,
1295, 1300, 1300, 1302, 1303, 1304, 1306, 1307, 1298, 1303,
1304, 1305, 1297, 1305, 1301, 1308, 1307, 1308, 1306, 1307,
1309, 1309, 1310, 1302, 1311, 1313, 1316, 1314, 1317, 1318,
1313, 1310, 1314, 1319, 1321, 1323, 1311, 1324, 1325, 1316,
1321, 1323, 1326, 1327, 1327, 1328, 1330, 1318, 1317, 1319,
1336, 1326, 1324, 1331, 1328, 1329, 1329, 1331, 1333, 1332,
1335, 0, 1334, 1325, 1332, 1330, 1334, 1334, 1335, 1340,
1336, 1333, 1339, 1339, 1341, 1341, 1342, 1342, 1340, 1343,
1344, 1345, 1346, 1347, 1347, 1349, 1345, 1346, 1350, 1351,
1352, 1343, 1353, 1350, 1358, 1354, 1360, 1353, 1344, 1355,
1356, 1356, 1357, 1359, 1361, 1352, 1357, 1363, 1359, 1358,
1349, 1364, 1351, 1354, 1365, 1355, 1366, 1368, 1367, 1369,
1371, 1371, 1360, 1361, 1372, 1398, 1363, 1372, 1373, 1368,
1374, 1398, 1375, 1379, 1364, 1366, 1376, 1376, 1365, 1367,
1369, 1373, 1377, 1377, 1374, 1375, 1378, 1378, 1379, 1380,
1381, 1381, 1382, 1383, 1383, 1384, 1384, 1385, 1385, 1386,
1391, 1382, 1380, 1388, 1382, 1387, 1387, 1389, 1389, 1390,
1390, 1393, 1394, 1394, 1395, 1402, 1393, 1397, 1386, 1391,
1404, 1388, 1396, 1396, 1399, 1400, 1400, 1399, 1401, 1401,
1403, 1405, 1405, 1395, 1402, 1397, 1407, 1408, 1409, 1404,
1410, 1400, 1411, 1411, 1410, 1403, 1412, 1413, 1413, 1414,
1415, 1415, 1416, 1409, 1418, 1420, 1407, 1419, 1421, 1423,
1408, 1416, 1419, 1422, 1423, 1412, 1418, 1424, 1425, 1426,
1427, 1421, 1424, 1428, 1432, 1414, 1429, 0, 1426, 1427,
1420, 1429, 1430, 1425, 1422, 1438, 1430, 1428, 1434, 1435,
1435, 1436, 1437, 1437, 1432, 1440, 1436, 1434, 1447, 1441,
1443, 1437, 1448, 1445, 1446, 1438, 1445, 1438, 1441, 1446,
1440, 1452, 1443, 1455, 1448, 1449, 1449, 1454, 1447, 1451,
1451, 1453, 1453, 1456, 1459, 1452, 1463, 1455, 1459, 1454,
1457, 1457, 1460, 1461, 1461, 1460, 1462, 1464, 1465, 1466,
1467, 1462, 1456, 1466, 1468, 1469, 1463, 1470, 1472, 1468,
1469, 1473, 1465, 1470, 1474, 1475, 1473, 1464, 1479, 1474,
1467, 1480, 1480, 1475, 1472, 1476, 1481, 1476, 1482, 1481,
1483, 1483, 1479, 1487, 1487, 1489, 1492, 1493, 1493, 1495,
1495, 1492, 1497, 1498, 1498, 1499, 1500, 1497, 1503, 1507,
1501, 1504, 1509, 1489, 1482, 1501, 1505, 1505, 1507, 1508,
1510, 1499, 1516, 1504, 1508, 1512, 1512, 1503, 1500, 1514,
1509, 1515, 1517, 1515, 1514, 1510, 1516, 1517, 1518, 1518,
1519, 1519, 1520, 1520, 1521, 1522, 1523, 1523, 1524, 1525,
1526, 1528, 1527, 1529, 1529, 1530, 1521, 1527, 1531, 1532,
1524, 1525, 1526, 1522, 1530, 1533, 1534, 1535, 1536, 1536,
1538, 1528, 1539, 1537, 0, 1540, 1542, 1542, 1533, 1532,
1540, 1535, 1537, 1547, 1531, 1549, 1541, 1548, 1538, 1550,
1534, 1541, 1543, 1543, 1539, 1544, 1544, 1551, 1552, 1553,
1554, 1554, 1558, 1547, 1557, 1548, 1551, 1549, 1559, 1550,
1556, 1556, 1560, 1557, 1561, 1559, 1562, 1553, 1552, 1563,
1558, 1564, 1565, 1565, 1566, 1567, 1568, 1560, 1569, 1566,
1571, 1570, 1561, 1572, 1562, 1563, 1570, 1573, 1577, 1576,
1564, 1568, 1573, 1567, 1574, 1580, 1574, 1569, 1576, 1581,
1571, 1583, 1581, 1572, 1582, 1582, 1584, 1577, 1585, 1585,
1586, 1588, 1591, 1589, 1586, 1580, 1583, 1589, 1590, 1590,
1593, 1593, 1594, 1601, 1584, 1591, 1588, 1595, 1595, 1596,
1596, 1600, 1600, 1602, 1603, 1604, 1606, 1605, 1609, 1607,
1604, 1594, 1605, 1603, 1610, 1601, 1602, 1607, 1612, 1610,
1635, 1611, 0, 1609, 1615, 1606, 1611, 1613, 1613, 1614,
1614, 1615, 1616, 1612, 1617, 1618, 1623, 1616, 1635, 1617,
1618, 1619, 1619, 1620, 1620, 1624, 1627, 1625, 1626, 1623,
1624, 1625, 1628, 1626, 1629, 1627, 1630, 1631, 1636, 1634,
1633, 1630, 1629, 1633, 1634, 1637, 1638, 1628, 1640, 1631,
1642, 1636, 1639, 1639, 1637, 1638, 1643, 1640, 1644, 1645,
1645, 1646, 1647, 1648, 1649, 1649, 1650, 1653, 1651, 1642,
1657, 1647, 1651, 1652, 1652, 1653, 1643, 1644, 1648, 1654,
1646, 1656, 1659, 1657, 1654, 1650, 1659, 1660, 1661, 1668,
1656, 1663, 1663, 1665, 1665, 1669, 1669, 1670, 1670, 1671,
1675, 1660, 1671, 1661, 1672, 1672, 1673, 1673, 1676, 1668,
1674, 1674, 1677, 1678, 1678, 1679, 1682, 1677, 1675, 1679,
1682, 1682, 1676, 1683, 1684, 1689, 1685, 1688, 1690, 1691,
1684, 1685, 1688, 1690, 1692, 1693, 1694, 1694, 1695, 1697,
1696, 1704, 1689, 1689, 1698, 1698, 1683, 1691, 1696, 1693,
1699, 1699, 1700, 1700, 1692, 1701, 1702, 1695, 1697, 1703,
1705, 1702, 1706, 1707, 1709, 1709, 1711, 1704, 1716, 1705,
1710, 1701, 1714, 1710, 1713, 1713, 1720, 1714, 1719, 1703,
1717, 1717, 1706, 1707, 1711, 1718, 1716, 1719, 1721, 1718,
1722, 1720, 1721, 1721, 1726, 1723, 1725, 1728, 1733, 1733,
1734, 0, 1732, 1722, 1723, 1725, 1726, 1732, 1736, 1734,
1737, 1737, 1740, 1736, 1737, 1739, 1739, 1741, 1742, 1743,
1744, 1740, 1728, 1742, 1745, 1744, 1746, 1747, 1748, 1748,
1750, 1746, 1751, 1752, 1752, 1753, 1755, 1741, 1756, 1754,
1743, 1757, 1745, 1754, 1760, 1755, 1759, 1751, 1753, 1750,
1758, 1759, 1747, 1762, 1756, 1761, 1761, 1771, 1758, 1772,
1757, 1764, 1764, 1765, 1765, 1767, 1767, 1773, 1768, 1776,
1760, 1777, 1762, 1768, 1770, 1770, 1780, 1771, 1775, 1775,
1778, 1778, 1772, 1776, 1779, 1779, 1773, 1781, 1782, 1783,
1783, 1784, 1787, 1777, 1784, 1780, 1785, 1785, 1788, 1781,
1789, 1790, 1791, 1789, 1787, 1792, 1790, 1793, 1782, 1797,
1792, 1794, 1794, 1796, 1796, 1799, 1799, 1800, 1788, 1801,
1885, 1791, 1800, 1885, 1793, 1793, 1802, 1806, 1797, 1803,
1803, 1802, 1806, 1801, 1804, 1804, 1805, 1805, 1808, 1808,
1812, 1812, 1814, 1814, 1815, 1816, 1817, 1818, 1818, 1819,
1826, 1822, 1823, 1823, 1819, 1817, 1824, 1827, 1815, 1822,
1829, 1824, 1828, 1830, 1831, 1816, 1879, 1828, 1832, 1833,
1826, 1830, 1829, 1834, 1835, 1838, 1858, 1827, 1879, 1835,
1840, 1840, 1831, 1851, 1832, 1858, 1833, 1833, 1841, 1841,
1846, 1846, 1842, 1848, 1834, 1838, 1842, 1848, 1850, 1850,
1852, 1851, 1854, 1854, 1855, 1857, 1859, 1859, 1860, 1860,
1861, 1861, 1862, 1863, 1852, 1864, 1865, 1862, 0, 1855,
1866, 1867, 1868, 1857, 1886, 1866, 1867, 1869, 1869, 1886,
1864, 1872, 1872, 1874, 1874, 1876, 1881, 1865, 1863, 1877,
1877, 1868, 1880, 1880, 1876, 1882, 1882, 1887, 1888, 1889,
1891, 1881, 1890, 1888, 1895, 1897, 1898, 1895, 1899, 1897,
1901, 1887, 1902, 1903, 1905, 1904, 1891, 1906, 1889, 1907,
1890, 1901, 1899, 1908, 0, 1902, 1898, 1909, 1909, 1910,
1905, 1915, 1903, 1904, 1907, 1911, 1911, 1916, 1910, 1912,
1912, 1913, 1906, 1908, 1914, 1917, 1913, 1918, 1921, 1914,
1917, 1924, 1916, 1919, 1919, 1925, 1915, 1926, 1927, 1929,
1925, 1918, 1926, 1921, 1928, 1931, 1932, 1933, 1934, 1935,
1924, 1936, 1927, 1938, 1939, 1939, 1936, 1928, 1929, 1931,
1933, 1934, 1937, 1943, 1940, 1932, 1941, 1937, 1935, 1940,
1942, 1941, 1938, 1944, 1946, 1942, 1945, 1945, 1944, 1947,
1948, 1946, 1943, 1949, 1950, 1953, 1954, 1951, 1949, 1955,
1953, 1956, 1957, 1957, 1959, 1964, 1958, 1962, 1947, 1948,
1951, 1958, 1962, 1950, 1956, 1954, 1960, 1960, 1955, 1961,
1961, 1963, 1966, 1959, 1964, 1965, 1965, 1967, 1963, 1966,
1968, 1969, 1970, 1972, 1967, 1973, 1969, 1974, 1972, 1975,
1973, 1976, 1976, 1977, 1978, 1979, 1979, 1980, 1980, 1968,
1981, 1970, 1982, 1982, 1983, 1983, 1974, 1981, 1975, 1984,
1986, 1990, 1977, 1978, 1989, 1986, 1984, 1991, 0, 1989,
1992, 1992, 1993, 1993, 0, 0, 0, 0, 0, 0,
1990, 0, 0, 0, 0, 0, 1991, 1997, 1997, 1997,
1997, 1997, 1997, 1997, 1998, 1998, 1998, 1998, 1998, 1998,
1998, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 2000, 2000,
2000, 2000, 2000, 2000, 2000, 2001, 2001, 2001, 2001, 2001,
2001, 2001, 2003, 2003, 0, 2003, 2003, 2003, 2003, 2004,
2004, 0, 0, 0, 2004, 2004, 2005, 2005, 0, 0,
2005, 0, 2005, 2006, 0, 0, 0, 0, 0, 2006,
2007, 2007, 0, 0, 0, 2007, 2007, 2008, 0, 0,
0, 0, 0, 2008, 2009, 2009, 0, 2009, 2009, 2009,
2009, 2010, 2010, 0, 2010, 2010, 2010, 2010, 1996, 1996,
1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996,
1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996,
1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996,
1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996
} ;
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.
*
*/
/* because flex keeps having sign-unsigned compare problems that are unfixed*/
#if defined(__clang__)||(defined(__GNUC__)&&((__GNUC__ >4)||(defined(__GNUC_MINOR__)&&(__GNUC__ ==4)&&(__GNUC_MINOR__ >=2))))
#pragma GCC diagnostic ignored "-Wsign-compare"
#endif
#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(*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));
if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
strlen(cfg_parser->chroot)) == 0) {
filename += strlen(cfg_parser->chroot);
}
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 187 "./util/configlexer.lex"
#ifndef YY_NO_UNPUT
#define YY_NO_UNPUT 1
#endif
#ifndef YY_NO_INPUT
#define YY_NO_INPUT 1
#endif
#line 2193 "<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 YY_NO_UNPUT
#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
#ifdef __ia64__
/* On IA-64, the buffer size is 16k, not 8k */
#define YY_READ_BUF_SIZE 16384
#else
#define YY_READ_BUF_SIZE 8192
#endif /* __ia64__ */
#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 /*LINTED*/break;
#endif
#define YY_RULE_SETUP \
YY_USER_ACTION
/** The main scanner function which does all the work.
*/
YY_DECL
{
yy_state_type yy_current_state;
char *yy_cp, *yy_bp;
int yy_act;
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( );
}
{
#line 207 "./util/configlexer.lex"
#line 2416 "<stdout>"
while ( /*CONSTCOND*/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
{
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 >= 1997 )
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] != 3939 );
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 208 "./util/configlexer.lex"
{
LEXOUT(("SP ")); /* ignore */ }
YY_BREAK
case 2:
YY_RULE_SETUP
#line 210 "./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 213 "./util/configlexer.lex"
{ YDVAR(0, VAR_SERVER) }
YY_BREAK
case 4:
YY_RULE_SETUP
#line 214 "./util/configlexer.lex"
{ YDVAR(1, VAR_QNAME_MINIMISATION) }
YY_BREAK
case 5:
YY_RULE_SETUP
#line 215 "./util/configlexer.lex"
{ YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) }
YY_BREAK
case 6:
YY_RULE_SETUP
#line 216 "./util/configlexer.lex"
{ YDVAR(1, VAR_NUM_THREADS) }
YY_BREAK
case 7:
YY_RULE_SETUP
#line 217 "./util/configlexer.lex"
{ YDVAR(1, VAR_VERBOSITY) }
YY_BREAK
case 8:
YY_RULE_SETUP
#line 218 "./util/configlexer.lex"
{ YDVAR(1, VAR_PORT) }
YY_BREAK
case 9:
YY_RULE_SETUP
#line 219 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_RANGE) }
YY_BREAK
case 10:
YY_RULE_SETUP
#line 220 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
YY_BREAK
case 11:
YY_RULE_SETUP
#line 221 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
YY_BREAK
case 12:
YY_RULE_SETUP
#line 222 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
YY_BREAK
case 13:
YY_RULE_SETUP
#line 223 "./util/configlexer.lex"
{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
YY_BREAK
case 14:
YY_RULE_SETUP
#line 224 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP4) }
YY_BREAK
case 15:
YY_RULE_SETUP
#line 225 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP6) }
YY_BREAK
case 16:
YY_RULE_SETUP
#line 226 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFER_IP6) }
YY_BREAK
case 17:
YY_RULE_SETUP
#line 227 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_UDP) }
YY_BREAK
case 18:
YY_RULE_SETUP
#line 228 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_TCP) }
YY_BREAK
case 19:
YY_RULE_SETUP
#line 229 "./util/configlexer.lex"
{ YDVAR(1, VAR_TCP_UPSTREAM) }
YY_BREAK
case 20:
YY_RULE_SETUP
#line 230 "./util/configlexer.lex"
{ YDVAR(1, VAR_TCP_MSS) }
YY_BREAK
case 21:
YY_RULE_SETUP
#line 231 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_TCP_MSS) }
YY_BREAK
case 22:
YY_RULE_SETUP
#line 232 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_UPSTREAM) }
YY_BREAK
case 23:
YY_RULE_SETUP
#line 233 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
YY_BREAK
case 24:
YY_RULE_SETUP
#line 234 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
YY_BREAK
case 25:
YY_RULE_SETUP
#line 235 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_PORT) }
YY_BREAK
case 26:
YY_RULE_SETUP
#line 236 "./util/configlexer.lex"
{ YDVAR(1, VAR_USE_SYSTEMD) }
YY_BREAK
case 27:
YY_RULE_SETUP
#line 237 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_DAEMONIZE) }
YY_BREAK
case 28:
YY_RULE_SETUP
#line 238 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE) }
YY_BREAK
case 29:
YY_RULE_SETUP
#line 239 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE) }
YY_BREAK
case 30:
YY_RULE_SETUP
#line 240 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
YY_BREAK
case 31:
YY_RULE_SETUP
#line 241 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
YY_BREAK
case 32:
YY_RULE_SETUP
#line 242 "./util/configlexer.lex"
{ YDVAR(1, VAR_SO_RCVBUF) }
YY_BREAK
case 33:
YY_RULE_SETUP
#line 243 "./util/configlexer.lex"
{ YDVAR(1, VAR_SO_SNDBUF) }
YY_BREAK
case 34:
YY_RULE_SETUP
#line 244 "./util/configlexer.lex"
{ YDVAR(1, VAR_SO_REUSEPORT) }
YY_BREAK
case 35:
YY_RULE_SETUP
#line 245 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_TRANSPARENT) }
YY_BREAK
case 36:
YY_RULE_SETUP
#line 246 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_FREEBIND) }
YY_BREAK
case 37:
YY_RULE_SETUP
#line 247 "./util/configlexer.lex"
{ YDVAR(1, VAR_CHROOT) }
YY_BREAK
case 38:
YY_RULE_SETUP
#line 248 "./util/configlexer.lex"
{ YDVAR(1, VAR_USERNAME) }
YY_BREAK
case 39:
YY_RULE_SETUP
#line 249 "./util/configlexer.lex"
{ YDVAR(1, VAR_DIRECTORY) }
YY_BREAK
case 40:
YY_RULE_SETUP
#line 250 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOGFILE) }
YY_BREAK
case 41:
YY_RULE_SETUP
#line 251 "./util/configlexer.lex"
{ YDVAR(1, VAR_PIDFILE) }
YY_BREAK
case 42:
YY_RULE_SETUP
#line 252 "./util/configlexer.lex"
{ YDVAR(1, VAR_ROOT_HINTS) }
YY_BREAK
case 43:
YY_RULE_SETUP
#line 253 "./util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
YY_BREAK
case 44:
YY_RULE_SETUP
#line 254 "./util/configlexer.lex"
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
YY_BREAK
case 45:
YY_RULE_SETUP
#line 255 "./util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
YY_BREAK
case 46:
YY_RULE_SETUP
#line 256 "./util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
YY_BREAK
case 47:
YY_RULE_SETUP
#line 257 "./util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
YY_BREAK
case 48:
YY_RULE_SETUP
#line 258 "./util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
YY_BREAK
case 49:
YY_RULE_SETUP
#line 259 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
YY_BREAK
case 50:
YY_RULE_SETUP
#line 260 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) }
YY_BREAK
case 51:
YY_RULE_SETUP
#line 261 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MIN_TTL) }
YY_BREAK
case 52:
YY_RULE_SETUP
#line 262 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
YY_BREAK
case 53:
YY_RULE_SETUP
#line 263 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
YY_BREAK
case 54:
YY_RULE_SETUP
#line 264 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
YY_BREAK
case 55:
YY_RULE_SETUP
#line 265 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
YY_BREAK
case 56:
YY_RULE_SETUP
#line 266 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
YY_BREAK
case 57:
YY_RULE_SETUP
#line 267 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) }
YY_BREAK
case 58:
YY_RULE_SETUP
#line 268 "./util/configlexer.lex"
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
YY_BREAK
case 59:
YY_RULE_SETUP
#line 269 "./util/configlexer.lex"
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
YY_BREAK
case 60:
YY_RULE_SETUP
#line 270 "./util/configlexer.lex"
{ YDVAR(1, VAR_DELAY_CLOSE) }
YY_BREAK
case 61:
YY_RULE_SETUP
#line 271 "./util/configlexer.lex"
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
YY_BREAK
case 62:
YY_RULE_SETUP
#line 272 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
YY_BREAK
case 63:
YY_RULE_SETUP
#line 273 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
YY_BREAK
case 64:
YY_RULE_SETUP
#line 274 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_GLUE) }
YY_BREAK
case 65:
YY_RULE_SETUP
#line 275 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
YY_BREAK
case 66:
YY_RULE_SETUP
#line 276 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
YY_BREAK
case 67:
YY_RULE_SETUP
#line 277 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
YY_BREAK
case 68:
YY_RULE_SETUP
#line 278 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) }
YY_BREAK
case 69:
YY_RULE_SETUP
#line 279 "./util/configlexer.lex"
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
YY_BREAK
case 70:
YY_RULE_SETUP
#line 280 "./util/configlexer.lex"
{ YDVAR(1, VAR_CAPS_WHITELIST) }
YY_BREAK
case 71:
YY_RULE_SETUP
#line 281 "./util/configlexer.lex"
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
YY_BREAK
case 72:
YY_RULE_SETUP
#line 282 "./util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
YY_BREAK
case 73:
YY_RULE_SETUP
#line 283 "./util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
YY_BREAK
case 74:
YY_RULE_SETUP
#line 284 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFETCH_KEY) }
YY_BREAK
case 75:
YY_RULE_SETUP
#line 285 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFETCH) }
YY_BREAK
case 76:
YY_RULE_SETUP
#line 286 "./util/configlexer.lex"
{ YDVAR(0, VAR_STUB_ZONE) }
YY_BREAK
case 77:
YY_RULE_SETUP
#line 287 "./util/configlexer.lex"
{ YDVAR(1, VAR_NAME) }
YY_BREAK
case 78:
YY_RULE_SETUP
#line 288 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_ADDR) }
YY_BREAK
case 79:
YY_RULE_SETUP
#line 289 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_HOST) }
YY_BREAK
case 80:
YY_RULE_SETUP
#line 290 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_PRIME) }
YY_BREAK
case 81:
YY_RULE_SETUP
#line 291 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_FIRST) }
YY_BREAK
case 82:
YY_RULE_SETUP
#line 292 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
YY_BREAK
case 83:
YY_RULE_SETUP
#line 293 "./util/configlexer.lex"
{ YDVAR(0, VAR_FORWARD_ZONE) }
YY_BREAK
case 84:
YY_RULE_SETUP
#line 294 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_ADDR) }
YY_BREAK
case 85:
YY_RULE_SETUP
#line 295 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_HOST) }
YY_BREAK
case 86:
YY_RULE_SETUP
#line 296 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_FIRST) }
YY_BREAK
case 87:
YY_RULE_SETUP
#line 297 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
YY_BREAK
case 88:
YY_RULE_SETUP
#line 298 "./util/configlexer.lex"
{ YDVAR(0, VAR_VIEW) }
YY_BREAK
case 89:
YY_RULE_SETUP
#line 299 "./util/configlexer.lex"
{ YDVAR(1, VAR_VIEW_FIRST) }
YY_BREAK
case 90:
YY_RULE_SETUP
#line 300 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
YY_BREAK
case 91:
YY_RULE_SETUP
#line 301 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
YY_BREAK
case 92:
YY_RULE_SETUP
#line 302 "./util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL) }
YY_BREAK
case 93:
YY_RULE_SETUP
#line 303 "./util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_IDENTITY) }
YY_BREAK
case 94:
YY_RULE_SETUP
#line 304 "./util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_VERSION) }
YY_BREAK
case 95:
YY_RULE_SETUP
#line 305 "./util/configlexer.lex"
{ YDVAR(1, VAR_IDENTITY) }
YY_BREAK
case 96:
YY_RULE_SETUP
#line 306 "./util/configlexer.lex"
{ YDVAR(1, VAR_VERSION) }
YY_BREAK
case 97:
YY_RULE_SETUP
#line 307 "./util/configlexer.lex"
{ YDVAR(1, VAR_MODULE_CONF) }
YY_BREAK
case 98:
YY_RULE_SETUP
#line 308 "./util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR) }
YY_BREAK
case 99:
YY_RULE_SETUP
#line 309 "./util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
YY_BREAK
case 100:
YY_RULE_SETUP
#line 310 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
YY_BREAK
case 101:
YY_RULE_SETUP
#line 311 "./util/configlexer.lex"
{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
YY_BREAK
case 102:
YY_RULE_SETUP
#line 312 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
YY_BREAK
case 103:
YY_RULE_SETUP
#line 313 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR) }
YY_BREAK
case 104:
YY_RULE_SETUP
#line 314 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
YY_BREAK
case 105:
YY_RULE_SETUP
#line 315 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
YY_BREAK
case 106:
YY_RULE_SETUP
#line 316 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
YY_BREAK
case 107:
YY_RULE_SETUP
#line 317 "./util/configlexer.lex"
{ YDVAR(1, VAR_BOGUS_TTL) }
YY_BREAK
case 108:
YY_RULE_SETUP
#line 318 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
YY_BREAK
case 109:
YY_RULE_SETUP
#line 319 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
YY_BREAK
case 110:
YY_RULE_SETUP
#line 320 "./util/configlexer.lex"
{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
YY_BREAK
case 111:
YY_RULE_SETUP
#line 321 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED) }
YY_BREAK
case 112:
YY_RULE_SETUP
#line 322 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAKE_DSA) }
YY_BREAK
case 113:
YY_RULE_SETUP
#line 323 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
YY_BREAK
case 114:
YY_RULE_SETUP
#line 324 "./util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
YY_BREAK
case 115:
YY_RULE_SETUP
#line 325 "./util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
YY_BREAK
case 116:
YY_RULE_SETUP
#line 326 "./util/configlexer.lex"
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
YY_BREAK
case 117:
YY_RULE_SETUP
#line 327 "./util/configlexer.lex"
{
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
YY_BREAK
case 118:
YY_RULE_SETUP
#line 329 "./util/configlexer.lex"
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
YY_BREAK
case 119:
YY_RULE_SETUP
#line 330 "./util/configlexer.lex"
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
YY_BREAK
case 120:
YY_RULE_SETUP
#line 331 "./util/configlexer.lex"
{ YDVAR(1, VAR_KEEP_MISSING) }
YY_BREAK
case 121:
YY_RULE_SETUP
#line 332 "./util/configlexer.lex"
{ YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) }
YY_BREAK
case 122:
YY_RULE_SETUP
#line 333 "./util/configlexer.lex"
{ YDVAR(1, VAR_USE_SYSLOG) }
YY_BREAK
case 123:
YY_RULE_SETUP
#line 334 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_IDENTITY) }
YY_BREAK
case 124:
YY_RULE_SETUP
#line 335 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
YY_BREAK
case 125:
YY_RULE_SETUP
#line 336 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_QUERIES) }
YY_BREAK
case 126:
YY_RULE_SETUP
#line 337 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_REPLIES) }
YY_BREAK
case 127:
YY_RULE_SETUP
#line 338 "./util/configlexer.lex"
{ YDVAR(2, VAR_LOCAL_ZONE) }
YY_BREAK
case 128:
YY_RULE_SETUP
#line 339 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA) }
YY_BREAK
case 129:
YY_RULE_SETUP
#line 340 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
YY_BREAK
case 130:
YY_RULE_SETUP
#line 341 "./util/configlexer.lex"
{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) }
YY_BREAK
case 131:
YY_RULE_SETUP
#line 342 "./util/configlexer.lex"
{ YDVAR(1, VAR_INSECURE_LAN_ZONES) }
YY_BREAK
case 132:
YY_RULE_SETUP
#line 343 "./util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
YY_BREAK
case 133:
YY_RULE_SETUP
#line 344 "./util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
YY_BREAK
case 134:
YY_RULE_SETUP
#line 345 "./util/configlexer.lex"
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
YY_BREAK
case 135:
YY_RULE_SETUP
#line 346 "./util/configlexer.lex"
{ YDVAR(0, VAR_REMOTE_CONTROL) }
YY_BREAK
case 136:
YY_RULE_SETUP
#line 347 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_ENABLE) }
YY_BREAK
case 137:
YY_RULE_SETUP
#line 348 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
YY_BREAK
case 138:
YY_RULE_SETUP
#line 349 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_PORT) }
YY_BREAK
case 139:
YY_RULE_SETUP
#line 350 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_USE_CERT) }
YY_BREAK
case 140:
YY_RULE_SETUP
#line 351 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
YY_BREAK
case 141:
YY_RULE_SETUP
#line 352 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
YY_BREAK
case 142:
YY_RULE_SETUP
#line 353 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
YY_BREAK
case 143:
YY_RULE_SETUP
#line 354 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
YY_BREAK
case 144:
YY_RULE_SETUP
#line 355 "./util/configlexer.lex"
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
YY_BREAK
case 145:
YY_RULE_SETUP
#line 356 "./util/configlexer.lex"
{ YDVAR(0, VAR_PYTHON) }
YY_BREAK
case 146:
YY_RULE_SETUP
#line 357 "./util/configlexer.lex"
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
YY_BREAK
case 147:
YY_RULE_SETUP
#line 358 "./util/configlexer.lex"
{ YDVAR(1, VAR_MINIMAL_RESPONSES) }
YY_BREAK
case 148:
YY_RULE_SETUP
#line 359 "./util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_ROUNDROBIN) }
YY_BREAK
case 149:
YY_RULE_SETUP
#line 360 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_UDP_SIZE) }
YY_BREAK
case 150:
YY_RULE_SETUP
#line 361 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_PREFIX) }
YY_BREAK
case 151:
YY_RULE_SETUP
#line 362 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_SYNTHALL) }
YY_BREAK
case 152:
YY_RULE_SETUP
#line 363 "./util/configlexer.lex"
{ YDVAR(1, VAR_DEFINE_TAG) }
YY_BREAK
case 153:
YY_RULE_SETUP
#line 364 "./util/configlexer.lex"
{ YDVAR(2, VAR_LOCAL_ZONE_TAG) }
YY_BREAK
case 154:
YY_RULE_SETUP
#line 365 "./util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL_TAG) }
YY_BREAK
case 155:
YY_RULE_SETUP
#line 366 "./util/configlexer.lex"
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) }
YY_BREAK
case 156:
YY_RULE_SETUP
#line 367 "./util/configlexer.lex"
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) }
YY_BREAK
case 157:
YY_RULE_SETUP
#line 368 "./util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL_VIEW) }
YY_BREAK
case 158:
YY_RULE_SETUP
#line 369 "./util/configlexer.lex"
{ YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) }
YY_BREAK
case 159:
YY_RULE_SETUP
#line 370 "./util/configlexer.lex"
{ YDVAR(0, VAR_DNSTAP) }
YY_BREAK
case 160:
YY_RULE_SETUP
#line 371 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_ENABLE) }
YY_BREAK
case 161:
YY_RULE_SETUP
#line 372 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SOCKET_PATH) }
YY_BREAK
case 162:
YY_RULE_SETUP
#line 373 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) }
YY_BREAK
case 163:
YY_RULE_SETUP
#line 374 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_VERSION) }
YY_BREAK
case 164:
YY_RULE_SETUP
#line 375 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_IDENTITY) }
YY_BREAK
case 165:
YY_RULE_SETUP
#line 376 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_VERSION) }
YY_BREAK
case 166:
YY_RULE_SETUP
#line 377 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) }
YY_BREAK
case 167:
YY_RULE_SETUP
#line 379 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) }
YY_BREAK
case 168:
YY_RULE_SETUP
#line 381 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) }
YY_BREAK
case 169:
YY_RULE_SETUP
#line 383 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) }
YY_BREAK
case 170:
YY_RULE_SETUP
#line 385 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) }
YY_BREAK
case 171:
YY_RULE_SETUP
#line 387 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) }
YY_BREAK
case 172:
YY_RULE_SETUP
#line 389 "./util/configlexer.lex"
{ YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) }
YY_BREAK
case 173:
YY_RULE_SETUP
#line 390 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT) }
YY_BREAK
case 174:
YY_RULE_SETUP
#line 391 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT) }
YY_BREAK
case 175:
YY_RULE_SETUP
#line 392 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_SLABS) }
YY_BREAK
case 176:
YY_RULE_SETUP
#line 393 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_SLABS) }
YY_BREAK
case 177:
YY_RULE_SETUP
#line 394 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_SIZE) }
YY_BREAK
case 178:
YY_RULE_SETUP
#line 395 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_SIZE) }
YY_BREAK
case 179:
YY_RULE_SETUP
#line 396 "./util/configlexer.lex"
{ YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) }
YY_BREAK
case 180:
YY_RULE_SETUP
#line 397 "./util/configlexer.lex"
{ YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) }
YY_BREAK
case 181:
YY_RULE_SETUP
#line 398 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_FACTOR) }
YY_BREAK
case 182:
YY_RULE_SETUP
#line 399 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_FACTOR) }
YY_BREAK
case 183:
/* rule 183 can match eol */
YY_RULE_SETUP
#line 400 "./util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++; }
YY_BREAK
/* Quoted strings. Strip leading and ending quotes */
case 184:
YY_RULE_SETUP
#line 403 "./util/configlexer.lex"
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
YY_BREAK
case YY_STATE_EOF(quotedstring):
#line 404 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
}
YY_BREAK
case 185:
YY_RULE_SETUP
#line 409 "./util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
case 186:
/* rule 186 can match eol */
YY_RULE_SETUP
#line 410 "./util/configlexer.lex"
{ yyerror("newline inside quoted string, no end \"");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
case 187:
YY_RULE_SETUP
#line 412 "./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 188:
YY_RULE_SETUP
#line 424 "./util/configlexer.lex"
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
YY_BREAK
case YY_STATE_EOF(singlequotedstr):
#line 425 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
}
YY_BREAK
case 189:
YY_RULE_SETUP
#line 430 "./util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
case 190:
/* rule 190 can match eol */
YY_RULE_SETUP
#line 431 "./util/configlexer.lex"
{ yyerror("newline inside quoted string, no end '");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
case 191:
YY_RULE_SETUP
#line 433 "./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 192:
YY_RULE_SETUP
#line 445 "./util/configlexer.lex"
{
LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); }
YY_BREAK
case YY_STATE_EOF(include):
#line 447 "./util/configlexer.lex"
{
yyerror("EOF inside include directive");
BEGIN(inc_prev);
}
YY_BREAK
case 193:
YY_RULE_SETUP
#line 451 "./util/configlexer.lex"
{ LEXOUT(("ISP ")); /* ignore */ }
YY_BREAK
case 194:
/* rule 194 can match eol */
YY_RULE_SETUP
#line 452 "./util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++;}
YY_BREAK
case 195:
YY_RULE_SETUP
#line 453 "./util/configlexer.lex"
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
YY_BREAK
case 196:
YY_RULE_SETUP
#line 454 "./util/configlexer.lex"
{
LEXOUT(("Iunquotedstr(%s) ", yytext));
config_start_include_glob(yytext);
BEGIN(inc_prev);
}
YY_BREAK
case YY_STATE_EOF(include_quoted):
#line 459 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
BEGIN(inc_prev);
}
YY_BREAK
case 197:
YY_RULE_SETUP
#line 463 "./util/configlexer.lex"
{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
YY_BREAK
case 198:
/* rule 198 can match eol */
YY_RULE_SETUP
#line 464 "./util/configlexer.lex"
{ yyerror("newline before \" in include name");
cfg_parser->line++; BEGIN(inc_prev); }
YY_BREAK
case 199:
YY_RULE_SETUP
#line 466 "./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 472 "./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 200:
YY_RULE_SETUP
#line 483 "./util/configlexer.lex"
{ LEXOUT(("unquotedstr(%s) ", yytext));
if(--num_args == 0) { BEGIN(INITIAL); }
yylval.str = strdup(yytext); return STRING_ARG; }
YY_BREAK
case 201:
YY_RULE_SETUP
#line 487 "./util/configlexer.lex"
{
ub_c_error_msg("unknown keyword '%s'", yytext);
}
YY_BREAK
case 202:
YY_RULE_SETUP
#line 491 "./util/configlexer.lex"
{
ub_c_error_msg("stray '%s'", yytext);
}
YY_BREAK
case 203:
YY_RULE_SETUP
#line 495 "./util/configlexer.lex"
ECHO;
YY_BREAK
#line 3593 "<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 user's declarations */
} /* 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)
{
char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
char *source = (yytext_ptr);
yy_size_t 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 = (yy_size_t) ((yy_c_buf_p) - (yytext_ptr)) - 1;
for ( i = 0; i < number_to_move; ++i )
*(dest++) = *(source++);
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
/* don't do the read, it's not guaranteed to return an EOF,
* just force an EOF
*/
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
else
{
int num_to_read =
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
while ( num_to_read <= 0 )
{ /* Not enough room in the buffer - grow it. */
/* just a shorter name for the current buffer */
YY_BUFFER_STATE b = YY_CURRENT_BUFFER_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)
{
yy_state_type yy_current_state;
char *yy_cp;
yy_current_state = (yy_start);
for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
{
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 >= 1997 )
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 )
{
int yy_is_jam;
char *yy_cp = (yy_c_buf_p);
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 >= 1997 )
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 == 1996);
return yy_is_jam ? 0 : yy_current_state;
}
#ifndef YY_NO_UNPUT
#endif
#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 = (yy_size_t)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; /* After all that talk, this was set to 1 anyways... */
(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. */
yy_size_t 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. */ \
yy_size_t 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 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 )
{
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 )
{
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 495 "./util/configlexer.lex"