summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '3rdParty/Unbound/src/src/util/configlexer.c')
-rw-r--r--3rdParty/Unbound/src/src/util/configlexer.c3850
1 files changed, 3850 insertions, 0 deletions
diff --git a/3rdParty/Unbound/src/src/util/configlexer.c b/3rdParty/Unbound/src/src/util/configlexer.c
new file mode 100644
index 0000000..132e42c
--- /dev/null
+++ b/3rdParty/Unbound/src/src/util/configlexer.c
@@ -0,0 +1,3850 @@
+#include "config.h"
+#include "util/configyyrename.h"
+
+#line 3 "<stdout>"
+
+#define YY_INT_ALIGNED short int
+
+/* A lexical scanner generated by flex */
+
+#define FLEX_SCANNER
+#define YY_FLEX_MAJOR_VERSION 2
+#define YY_FLEX_MINOR_VERSION 5
+#define YY_FLEX_SUBMINOR_VERSION 35
+#if YY_FLEX_SUBMINOR_VERSION > 0
+#define FLEX_BETA
+#endif
+
+/* First, we deal with platform-specific or compiler-specific issues. */
+
+/* begin standard C headers. */
+#include <stdio.h>
+#include <string.h>
+#include <errno.h>
+#include <stdlib.h>
+
+/* end standard C headers. */
+
+/* flex integer type definitions */
+
+#ifndef FLEXINT_H
+#define FLEXINT_H
+
+/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
+
+#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
+
+/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
+ * if you want the limit (max/min) macros for int types.
+ */
+#ifndef __STDC_LIMIT_MACROS
+#define __STDC_LIMIT_MACROS 1
+#endif
+
+#include <inttypes.h>
+typedef int8_t flex_int8_t;
+typedef uint8_t flex_uint8_t;
+typedef int16_t flex_int16_t;
+typedef uint16_t flex_uint16_t;
+typedef int32_t flex_int32_t;
+typedef uint32_t flex_uint32_t;
+#else
+typedef signed char flex_int8_t;
+typedef short int flex_int16_t;
+typedef int flex_int32_t;
+typedef unsigned char flex_uint8_t;
+typedef unsigned short int flex_uint16_t;
+typedef unsigned int flex_uint32_t;
+#endif /* ! C99 */
+
+/* Limits of integral types. */
+#ifndef INT8_MIN
+#define INT8_MIN (-128)
+#endif
+#ifndef INT16_MIN
+#define INT16_MIN (-32767-1)
+#endif
+#ifndef INT32_MIN
+#define INT32_MIN (-2147483647-1)
+#endif
+#ifndef INT8_MAX
+#define INT8_MAX (127)
+#endif
+#ifndef INT16_MAX
+#define INT16_MAX (32767)
+#endif
+#ifndef INT32_MAX
+#define INT32_MAX (2147483647)
+#endif
+#ifndef UINT8_MAX
+#define UINT8_MAX (255U)
+#endif
+#ifndef UINT16_MAX
+#define UINT16_MAX (65535U)
+#endif
+#ifndef UINT32_MAX
+#define UINT32_MAX (4294967295U)
+#endif
+
+#endif /* ! FLEXINT_H */
+
+#ifdef __cplusplus
+
+/* The "const" storage-class-modifier is valid. */
+#define YY_USE_CONST
+
+#else /* ! __cplusplus */
+
+/* C99 requires __STDC__ to be defined as 1. */
+#if defined (__STDC__)
+
+#define YY_USE_CONST
+
+#endif /* defined (__STDC__) */
+#endif /* ! __cplusplus */
+
+#ifdef YY_USE_CONST
+#define yyconst const
+#else
+#define yyconst
+#endif
+
+/* Returned upon end-of-file. */
+#define YY_NULL 0
+
+/* Promotes a possibly negative, possibly signed char to an unsigned
+ * integer for use as an array index. If the signed char is negative,
+ * we want to instead treat it as an 8-bit unsigned char, hence the
+ * double cast.
+ */
+#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
+
+/* Enter a start condition. This macro really ought to take a parameter,
+ * but we do it the disgusting crufty way forced on us by the ()-less
+ * definition of BEGIN.
+ */
+#define BEGIN (yy_start) = 1 + 2 *
+
+/* Translate the current start state into a value that can be later handed
+ * to BEGIN to return to the state. The YYSTATE alias is for lex
+ * compatibility.
+ */
+#define YY_START (((yy_start) - 1) / 2)
+#define YYSTATE YY_START
+
+/* Action number for EOF rule of a given start state. */
+#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
+
+/* Special action meaning "start processing a new file". */
+#define YY_NEW_FILE yyrestart(yyin )
+
+#define YY_END_OF_BUFFER_CHAR 0
+
+/* Size of default input buffer. */
+#ifndef YY_BUF_SIZE
+#define YY_BUF_SIZE 16384
+#endif
+
+/* The state buf must be large enough to hold one state per character in the main buffer.
+ */
+#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
+
+#ifndef YY_TYPEDEF_YY_BUFFER_STATE
+#define YY_TYPEDEF_YY_BUFFER_STATE
+typedef struct yy_buffer_state *YY_BUFFER_STATE;
+#endif
+
+extern int yyleng;
+
+extern FILE *yyin, *yyout;
+
+#define EOB_ACT_CONTINUE_SCAN 0
+#define EOB_ACT_END_OF_FILE 1
+#define EOB_ACT_LAST_MATCH 2
+
+ #define YY_LESS_LINENO(n)
+
+/* Return all but the first "n" matched characters back to the input stream. */
+#define yyless(n) \
+ do \
+ { \
+ /* Undo effects of setting up yytext. */ \
+ int yyless_macro_arg = (n); \
+ YY_LESS_LINENO(yyless_macro_arg);\
+ *yy_cp = (yy_hold_char); \
+ YY_RESTORE_YY_MORE_OFFSET \
+ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
+ YY_DO_BEFORE_ACTION; /* set up yytext again */ \
+ } \
+ while ( 0 )
+
+#define unput(c) yyunput( c, (yytext_ptr) )
+
+#ifndef YY_TYPEDEF_YY_SIZE_T
+#define YY_TYPEDEF_YY_SIZE_T
+typedef size_t yy_size_t;
+#endif
+
+#ifndef YY_STRUCT_YY_BUFFER_STATE
+#define YY_STRUCT_YY_BUFFER_STATE
+struct yy_buffer_state
+ {
+ FILE *yy_input_file;
+
+ char *yy_ch_buf; /* input buffer */
+ char *yy_buf_pos; /* current position in input buffer */
+
+ /* Size of input buffer in bytes, not including room for EOB
+ * characters.
+ */
+ yy_size_t yy_buf_size;
+
+ /* Number of characters read into yy_ch_buf, not including EOB
+ * characters.
+ */
+ int yy_n_chars;
+
+ /* Whether we "own" the buffer - i.e., we know we created it,
+ * and can realloc() it to grow it, and should free() it to
+ * delete it.
+ */
+ int yy_is_our_buffer;
+
+ /* Whether this is an "interactive" input source; if so, and
+ * if we're using stdio for input, then we want to use getc()
+ * instead of fread(), to make sure we stop fetching input after
+ * each newline.
+ */
+ int yy_is_interactive;
+
+ /* Whether we're considered to be at the beginning of a line.
+ * If so, '^' rules will be active on the next match, otherwise
+ * not.
+ */
+ int yy_at_bol;
+
+ int yy_bs_lineno; /**< The line count. */
+ int yy_bs_column; /**< The column count. */
+
+ /* Whether to try to fill the input buffer when we reach the
+ * end of it.
+ */
+ int yy_fill_buffer;
+
+ int yy_buffer_status;
+
+#define YY_BUFFER_NEW 0
+#define YY_BUFFER_NORMAL 1
+ /* When an EOF's been seen but there's still some text to process
+ * then we mark the buffer as YY_EOF_PENDING, to indicate that we
+ * shouldn't try reading from the input source any more. We might
+ * still have a bunch of tokens to match, though, because of
+ * possible backing-up.
+ *
+ * When we actually see the EOF, we change the status to "new"
+ * (via yyrestart()), so that the user can continue scanning by
+ * just pointing yyin at a new input file.
+ */
+#define YY_BUFFER_EOF_PENDING 2
+
+ };
+#endif /* !YY_STRUCT_YY_BUFFER_STATE */
+
+/* Stack of input buffers. */
+static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
+static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
+static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
+
+/* We provide macros for accessing buffer states in case in the
+ * future we want to put the buffer states in a more general
+ * "scanner state".
+ *
+ * Returns the top of the stack, or NULL.
+ */
+#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
+ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
+ : NULL)
+
+/* Same as previous macro, but useful when we know that the buffer stack is not
+ * NULL or when we need an lvalue. For internal use only.
+ */
+#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
+
+/* yy_hold_char holds the character lost when yytext is formed. */
+static char yy_hold_char;
+static int yy_n_chars; /* number of characters read into yy_ch_buf */
+int yyleng;
+
+/* Points to current character in buffer. */
+static char *yy_c_buf_p = (char *) 0;
+static int yy_init = 0; /* whether we need to initialize */
+static int yy_start = 0; /* start state number */
+
+/* Flag which is used to allow yywrap()'s to do buffer switches
+ * instead of setting up a fresh yyin. A bit of a hack ...
+ */
+static int yy_did_buffer_switch_on_eof;
+
+void yyrestart (FILE *input_file );
+void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer );
+YY_BUFFER_STATE yy_create_buffer (FILE *file,int size );
+void yy_delete_buffer (YY_BUFFER_STATE b );
+void yy_flush_buffer (YY_BUFFER_STATE b );
+void yypush_buffer_state (YY_BUFFER_STATE new_buffer );
+void yypop_buffer_state (void );
+
+static void yyensure_buffer_stack (void );
+static void yy_load_buffer_state (void );
+static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file );
+
+#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
+
+YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size );
+YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str );
+YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len );
+
+void *yyalloc (yy_size_t );
+void *yyrealloc (void *,yy_size_t );
+void yyfree (void * );
+
+#define yy_new_buffer yy_create_buffer
+
+#define yy_set_interactive(is_interactive) \
+ { \
+ if ( ! YY_CURRENT_BUFFER ){ \
+ yyensure_buffer_stack (); \
+ YY_CURRENT_BUFFER_LVALUE = \
+ yy_create_buffer(yyin,YY_BUF_SIZE ); \
+ } \
+ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
+ }
+
+#define yy_set_bol(at_bol) \
+ { \
+ if ( ! YY_CURRENT_BUFFER ){\
+ yyensure_buffer_stack (); \
+ YY_CURRENT_BUFFER_LVALUE = \
+ yy_create_buffer(yyin,YY_BUF_SIZE ); \
+ } \
+ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
+ }
+
+#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
+
+/* Begin user sect3 */
+
+typedef unsigned char YY_CHAR;
+
+FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
+
+typedef int yy_state_type;
+
+extern int yylineno;
+
+int yylineno = 1;
+
+extern char *yytext;
+#define yytext_ptr yytext
+
+static yy_state_type yy_get_previous_state (void );
+static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
+static int yy_get_next_buffer (void );
+static void yy_fatal_error (yyconst char msg[] );
+
+/* Done after the current pattern has been matched and before the
+ * corresponding action - sets up yytext.
+ */
+#define YY_DO_BEFORE_ACTION \
+ (yytext_ptr) = yy_bp; \
+ (yytext_ptr) -= (yy_more_len); \
+ yyleng = (size_t) (yy_cp - (yytext_ptr)); \
+ (yy_hold_char) = *yy_cp; \
+ *yy_cp = '\0'; \
+ (yy_c_buf_p) = yy_cp;
+
+#define YY_NUM_RULES 138
+#define YY_END_OF_BUFFER 139
+/* 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[1303] =
+ { 0,
+ 1, 1, 120, 120, 124, 124, 128, 128, 132, 132,
+ 1, 1, 139, 136, 1, 118, 118, 137, 2, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 137, 120,
+ 121, 121, 122, 137, 124, 125, 125, 126, 137, 131,
+ 128, 129, 129, 130, 137, 132, 133, 133, 134, 137,
+ 135, 119, 2, 123, 135, 137, 136, 0, 1, 2,
+ 2, 2, 2, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 120, 0,
+ 124, 0, 131, 0, 128, 132, 0, 135, 0, 2,
+ 2, 135, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 135, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 135, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 62, 136, 136, 136, 136, 136, 6,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 135, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 135, 136,
+
+ 136, 136, 136, 27, 136, 136, 136, 136, 136, 12,
+ 13, 136, 15, 14, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 116, 136,
+ 136, 136, 136, 3, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 135, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+
+ 136, 136, 136, 136, 136, 136, 136, 127, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 30, 136, 136, 136, 136, 136, 136, 136, 31, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 75, 127, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 74, 136, 136, 136, 136, 136,
+
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 60, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 20, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 28, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 29, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 22, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 25, 26, 136, 136, 136, 63, 64,
+ 136, 61, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 5, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 77,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 102, 101, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 32, 136, 136, 136, 136,
+
+ 136, 136, 65, 136, 136, 136, 136, 136, 136, 98,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 51,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 100, 136, 136, 136,
+ 136, 136, 136, 136, 4, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 95, 136, 136, 136, 136,
+
+ 136, 136, 136, 110, 96, 136, 21, 136, 136, 136,
+ 136, 67, 68, 66, 136, 136, 136, 136, 136, 136,
+ 73, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 97, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 59, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 17, 136, 136, 136, 16,
+ 136, 82, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 39, 40, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 72, 136, 136, 136, 136, 136, 136, 136, 136,
+
+ 136, 136, 136, 136, 136, 76, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 115, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 86, 136, 90, 136, 136, 136, 136, 71,
+ 136, 136, 108, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 89, 136, 136, 136,
+ 136, 41, 42, 136, 47, 91, 136, 103, 99, 136,
+ 35, 136, 93, 136, 136, 136, 136, 136, 7, 136,
+ 58, 107, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+
+ 136, 136, 136, 136, 136, 78, 136, 136, 117, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 92, 34, 36, 136, 136, 136, 136, 136, 57,
+ 136, 136, 136, 111, 18, 19, 136, 136, 136, 136,
+ 136, 136, 55, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 113, 136, 136, 33, 136, 136, 136, 136,
+ 136, 136, 11, 136, 136, 136, 136, 136, 136, 10,
+ 136, 136, 37, 136, 112, 136, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 85, 84, 136, 114, 109,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+
+ 43, 136, 136, 136, 136, 136, 38, 136, 136, 136,
+ 79, 81, 136, 136, 136, 83, 136, 136, 136, 136,
+ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 23, 136, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 106, 136, 136, 136, 136, 136, 136,
+ 136, 24, 136, 9, 136, 136, 104, 48, 136, 136,
+ 136, 88, 136, 69, 136, 136, 136, 50, 54, 49,
+ 136, 44, 136, 8, 136, 136, 87, 136, 136, 136,
+ 53, 136, 45, 136, 105, 136, 136, 80, 70, 52,
+ 46, 136, 136, 136, 136, 56, 136, 136, 136, 136,
+
+ 94, 0
+ } ;
+
+static yyconst flex_int32_t yy_ec[256] =
+ { 0,
+ 1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
+ 1, 1, 4, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 2, 1, 5, 6, 1, 1, 1, 7, 1,
+ 1, 1, 1, 1, 8, 1, 1, 1, 1, 1,
+ 9, 10, 1, 11, 1, 1, 1, 12, 1, 1,
+ 1, 1, 1, 1, 13, 14, 15, 16, 17, 18,
+ 19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
+ 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
+ 1, 39, 1, 1, 1, 1, 40, 41, 42, 43,
+
+ 44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
+ 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
+ 64, 65, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1
+ } ;
+
+static yyconst flex_int32_t yy_meta[66] =
+ { 0,
+ 1, 2, 3, 4, 5, 1, 6, 1, 1, 1,
+ 1, 7, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1
+ } ;
+
+static yyconst flex_int16_t yy_base[1317] =
+ { 0,
+ 0, 0, 63, 66, 69, 71, 77, 83, 88, 91,
+ 129, 135, 489, 442, 95, 3745, 3745, 3745, 107, 110,
+ 142, 140, 108, 50, 159, 147, 121, 148, 158, 174,
+ 191, 176, 190, 216, 225, 235, 214, 246, 116, 438,
+ 3745, 3745, 3745, 94, 437, 3745, 3745, 3745, 96, 430,
+ 435, 3745, 3745, 3745, 214, 333, 3745, 3745, 3745, 102,
+ 299, 3745, 289, 3745, 184, 293, 249, 297, 111, 0,
+ 301, 0, 0, 219, 223, 163, 272, 250, 284, 288,
+ 285, 282, 309, 292, 287, 290, 302, 314, 232, 296,
+ 336, 294, 319, 345, 328, 331, 330, 346, 337, 334,
+
+ 358, 349, 369, 364, 355, 187, 371, 370, 137, 375,
+ 385, 381, 376, 383, 393, 395, 397, 403, 239, 154,
+ 229, 199, 186, 442, 176, 115, 277, 90, 449, 457,
+ 0, 426, 413, 411, 431, 443, 439, 435, 432, 456,
+ 464, 488, 462, 448, 466, 445, 472, 469, 473, 489,
+ 495, 493, 500, 459, 496, 517, 520, 522, 519, 529,
+ 525, 537, 545, 535, 544, 531, 547, 532, 552, 546,
+ 543, 570, 562, 564, 549, 565, 566, 579, 569, 580,
+ 593, 604, 602, 606, 589, 596, 597, 607, 609, 603,
+ 619, 630, 624, 616, 639, 631, 633, 650, 651, 652,
+
+ 623, 642, 658, 657, 643, 667, 645, 670, 668, 672,
+ 674, 684, 675, 690, 686, 689, 694, 695, 702, 710,
+ 712, 718, 713, 717, 724, 722, 740, 731, 723, 751,
+ 732, 755, 745, 742, 765, 762, 761, 758, 753, 773,
+ 750, 791, 782, 836, 780, 788, 778, 785, 787, 807,
+ 820, 813, 815, 817, 826, 829, 840, 837, 841, 842,
+ 860, 857, 872, 877, 862, 869, 884, 882, 885, 888,
+ 886, 898, 894, 897, 901, 904, 920, 909, 917, 911,
+ 929, 916, 938, 3745, 941, 919, 927, 936, 943, 3745,
+ 931, 932, 946, 944, 966, 979, 959, 958, 984, 968,
+
+ 976, 973, 971, 1004, 972, 975, 1017, 994, 996, 1000,
+ 1008, 1011, 1016, 1018, 1010, 1024, 1035, 1039, 1015, 1043,
+ 1050, 1063, 1052, 1047, 1055, 776, 1057, 1059, 1061, 1075,
+ 1067, 1072, 1083, 1091, 1089, 1093, 1101, 1079, 1099, 1105,
+ 1112, 1107, 1108, 1094, 1116, 1110, 1103, 1121, 1118, 1126,
+ 1138, 1122, 1146, 1149, 1142, 1152, 1162, 1153, 1158, 1160,
+ 1165, 1148, 1164, 1189, 1168, 1191, 1204, 1187, 1192, 1199,
+ 1207, 1206, 1209, 1195, 1197, 1193, 1190, 1221, 1217, 1223,
+ 1228, 1231, 1226, 1229, 1242, 1244, 1235, 1247, 1248, 1253,
+ 1258, 1257, 1262, 1272, 1265, 1274, 1270, 1268, 1291, 1295,
+
+ 1299, 1284, 1306, 3745, 1290, 1308, 1301, 1294, 1309, 3745,
+ 3745, 1310, 3745, 3745, 1304, 1314, 1334, 1318, 1364, 1343,
+ 1332, 1328, 1354, 1316, 1345, 1359, 1347, 1372, 1375, 1365,
+ 1369, 1386, 1389, 1391, 1393, 1392, 1401, 1404, 1402, 1414,
+ 1415, 1409, 1420, 1419, 1430, 1424, 1418, 1421, 3745, 1434,
+ 1429, 1438, 1452, 3745, 1441, 1448, 1451, 1450, 1453, 1449,
+ 1456, 1465, 1477, 1467, 1468, 1482, 1479, 1492, 1487, 1478,
+ 1495, 1498, 1489, 1511, 1519, 1514, 1505, 1508, 1530, 1513,
+ 1527, 1528, 1516, 1532, 1526, 1525, 1537, 1576, 1538, 1541,
+ 1546, 1548, 1550, 1553, 1564, 1578, 1594, 1577, 1569, 1572,
+
+ 1589, 1596, 1599, 1586, 1605, 1615, 1614, 3745, 1629, 1627,
+ 1612, 1622, 1628, 1634, 1617, 1632, 1626, 1638, 1639, 1642,
+ 3745, 1653, 1645, 1662, 1666, 1665, 1675, 1682, 3745, 1685,
+ 1683, 1688, 1681, 1670, 1697, 1694, 1701, 1680, 1698, 1705,
+ 1707, 1702, 1719, 1712, 1715, 1723, 1732, 1733, 1726, 1742,
+ 1729, 1692, 1752, 1739, 1741, 1751, 1747, 1746, 396, 1757,
+ 1767, 1763, 1762, 3745, 76, 1766, 1768, 1771, 1759, 1781,
+ 1794, 1778, 1786, 1796, 1789, 1797, 1806, 1793, 1808, 1810,
+ 1803, 1820, 1813, 1830, 1814, 1821, 1831, 1826, 1833, 1828,
+ 1844, 1847, 1848, 1842, 3745, 1869, 1852, 1856, 1860, 1871,
+
+ 1886, 1872, 1875, 1892, 1889, 1895, 1896, 1893, 1883, 1887,
+ 1908, 1910, 1904, 1911, 1925, 1918, 3745, 1922, 1931, 1930,
+ 1933, 1932, 1936, 1937, 1940, 1950, 1954, 3745, 1959, 1964,
+ 1953, 1976, 1979, 1978, 1984, 1967, 1980, 1982, 1988, 1977,
+ 1991, 1994, 3745, 1992, 2002, 2003, 2004, 2007, 2006, 2012,
+ 2013, 2017, 2009, 2030, 2018, 2021, 2024, 2026, 2029, 2033,
+ 2028, 2039, 3745, 2067, 2044, 2054, 2056, 2057, 2059, 2073,
+ 2055, 2064, 2065, 2068, 2085, 2086, 2091, 2092, 2089, 2088,
+ 2102, 2100, 2104, 2115, 2126, 2123, 3745, 2127, 2114, 2119,
+ 2143, 2133, 2125, 2130, 2134, 2151, 2137, 2139, 2150, 2153,
+
+ 2148, 2147, 2164, 2180, 2177, 2159, 2160, 2175, 2174, 2188,
+ 2187, 2178, 2197, 3745, 3745, 2205, 2202, 2201, 3745, 3745,
+ 2212, 3745, 2213, 2217, 2207, 2206, 2215, 2208, 2226, 2221,
+ 2235, 2224, 2227, 2248, 2237, 2250, 3745, 2239, 2245, 2260,
+ 2247, 2249, 2251, 2268, 2275, 2264, 2265, 2276, 2283, 3745,
+ 2288, 2274, 2278, 2304, 2305, 2291, 2294, 2308, 2296, 2317,
+ 2311, 2320, 2310, 2307, 2323, 2315, 2312, 2332, 2334, 2333,
+ 2337, 2341, 2348, 2351, 2364, 2350, 3745, 3745, 2365, 2368,
+ 2360, 2355, 2385, 2372, 2352, 2383, 2382, 2391, 2387, 2392,
+ 2361, 2389, 2410, 2399, 2409, 3745, 2421, 2424, 2416, 2429,
+
+ 2417, 2432, 3745, 2420, 2426, 2434, 2431, 2444, 2445, 3745,
+ 2447, 2442, 2459, 2465, 2471, 2466, 2455, 2468, 2480, 2474,
+ 2469, 2472, 2489, 2492, 2482, 2506, 2513, 2514, 2508, 2518,
+ 2493, 2501, 2502, 2503, 2524, 2525, 2526, 2510, 2529, 3745,
+ 2538, 2528, 2540, 2533, 2542, 2553, 2547, 2549, 2537, 2550,
+ 2551, 2545, 2562, 2556, 2574, 2559, 3745, 2578, 2584, 2583,
+ 2573, 2593, 2577, 2580, 3745, 2607, 2617, 2588, 2609, 2622,
+ 2619, 2618, 2605, 2613, 2610, 2632, 2633, 2637, 2631, 2620,
+ 2636, 2661, 2662, 2670, 2665, 2655, 2675, 2660, 2669, 2664,
+ 2654, 2678, 2663, 2682, 2671, 3745, 2681, 2686, 2693, 2689,
+
+ 2696, 2698, 2705, 3745, 3745, 2703, 3745, 2706, 2699, 2710,
+ 2712, 3745, 3745, 3745, 2713, 2728, 2726, 2734, 2736, 2729,
+ 3745, 2740, 2730, 2748, 2731, 2739, 2756, 2757, 2744, 2753,
+ 3745, 2755, 2762, 2754, 2776, 2788, 2766, 2789, 2795, 2793,
+ 2796, 2784, 2786, 2808, 2800, 3745, 2790, 2804, 2807, 2814,
+ 2828, 2821, 2827, 2833, 2841, 3745, 2829, 2823, 2831, 3745,
+ 2845, 3745, 2853, 2836, 2835, 2849, 2866, 2852, 2858, 2878,
+ 2876, 2870, 2884, 2879, 3745, 3745, 2880, 2890, 2891, 2886,
+ 2894, 2896, 2897, 2910, 2869, 2901, 2905, 2911, 2913, 2919,
+ 2914, 3745, 2933, 2940, 2923, 2932, 2947, 2944, 2949, 2938,
+
+ 2952, 2953, 2950, 2954, 2955, 3745, 2959, 2966, 2965, 2968,
+ 2967, 2977, 2970, 2986, 2988, 2971, 2989, 3745, 2999, 2979,
+ 3000, 2991, 3004, 2994, 2995, 3012, 3015, 3010, 3014, 3029,
+ 3028, 3030, 3745, 3024, 3745, 3031, 3042, 3049, 3053, 3745,
+ 3048, 3047, 3745, 3061, 3067, 3066, 3069, 3065, 3077, 3074,
+ 3058, 3080, 3082, 3092, 3086, 3081, 3745, 3094, 3093, 3095,
+ 3113, 3745, 3745, 3111, 3745, 3745, 3116, 3745, 3745, 3117,
+ 3745, 3118, 3745, 3127, 3125, 3119, 3106, 3129, 3745, 3131,
+ 3745, 3745, 3136, 3130, 3142, 3148, 3149, 3150, 3139, 3146,
+ 3153, 3155, 3158, 3152, 3160, 3162, 3157, 3161, 3173, 3166,
+
+ 3182, 3177, 3197, 3198, 3201, 3745, 3187, 3206, 3745, 3211,
+ 3209, 3200, 3194, 3208, 3204, 3221, 3216, 3210, 3229, 3222,
+ 3230, 3745, 3745, 3745, 3231, 3243, 3252, 3239, 3237, 3745,
+ 3259, 3242, 3260, 3745, 3745, 3745, 3262, 3253, 3256, 3267,
+ 3269, 3268, 3745, 3270, 3279, 3286, 3278, 3298, 3300, 3308,
+ 3307, 3309, 3745, 3305, 3302, 3745, 3312, 3303, 3313, 3317,
+ 3318, 3324, 3745, 3304, 3328, 3321, 3329, 3344, 3349, 3745,
+ 3348, 3345, 3745, 3359, 3745, 3341, 3362, 3364, 3366, 3369,
+ 3355, 3356, 3368, 3377, 3374, 3745, 3745, 3381, 3745, 3745,
+ 3379, 3372, 3383, 3391, 3393, 3406, 3395, 3386, 3394, 3396,
+
+ 3745, 3414, 3408, 3424, 3423, 3419, 3745, 3422, 3420, 3435,
+ 3745, 3745, 3429, 3436, 3439, 3745, 3440, 3443, 3438, 3453,
+ 3469, 3462, 3458, 3454, 3470, 3472, 3456, 3467, 3476, 3483,
+ 3745, 3490, 3487, 3484, 3491, 3492, 3489, 3500, 3501, 3493,
+ 3510, 3502, 3504, 3745, 3511, 3519, 3526, 3530, 3532, 3531,
+ 3540, 3745, 3541, 3745, 3543, 3539, 3745, 3745, 3537, 3547,
+ 3549, 3745, 3550, 3745, 3553, 3556, 3557, 3745, 3745, 3745,
+ 3560, 3745, 3558, 3745, 3565, 3563, 3745, 3568, 3575, 3579,
+ 3745, 3591, 3745, 3593, 3745, 3582, 3595, 3745, 3745, 3745,
+ 3745, 3597, 3583, 3598, 3590, 3745, 3589, 3600, 3588, 3608,
+
+ 3745, 3745, 3653, 3660, 3667, 3674, 3681, 82, 3688, 3695,
+ 3702, 3709, 3716, 3723, 3730, 3737
+ } ;
+
+static yyconst flex_int16_t yy_def[1317] =
+ { 0,
+ 1302, 1, 1303, 1303, 1304, 1304, 1305, 1305, 1306, 1306,
+ 1307, 1307, 1302, 1308, 1302, 1302, 1302, 1302, 1309, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1310,
+ 1302, 1302, 1302, 1310, 1311, 1302, 1302, 1302, 1311, 1312,
+ 1302, 1302, 1302, 1302, 1312, 1313, 1302, 1302, 1302, 1313,
+ 1314, 1302, 1315, 1302, 1314, 1314, 1308, 1308, 1302, 1316,
+ 1309, 1316, 1309, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1310, 1310,
+ 1311, 1311, 1312, 1312, 1302, 1313, 1313, 1314, 1314, 1315,
+ 1315, 1314, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1314, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1314, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1302,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1314, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1314, 1308,
+
+ 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1302,
+ 1302, 1308, 1302, 1302, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308,
+ 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1314, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1302, 1314, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308,
+
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1302, 1302, 1308, 1308, 1308, 1302, 1302,
+ 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1302,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1302, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308,
+
+ 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1302,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1302,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308,
+
+ 1308, 1308, 1308, 1302, 1302, 1308, 1302, 1308, 1308, 1308,
+ 1308, 1302, 1302, 1302, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1302,
+ 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1302, 1302, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+
+ 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1302, 1308, 1302, 1308, 1308, 1308, 1308, 1302,
+ 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308,
+ 1308, 1302, 1302, 1308, 1302, 1302, 1308, 1302, 1302, 1308,
+ 1302, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1302, 1308,
+ 1302, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+
+ 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1302, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1302, 1302, 1302, 1308, 1308, 1308, 1308, 1308, 1302,
+ 1308, 1308, 1308, 1302, 1302, 1302, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1302, 1308, 1308, 1302, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1302,
+ 1308, 1308, 1302, 1308, 1302, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1302, 1302, 1308, 1302, 1302,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+
+ 1302, 1308, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308,
+ 1302, 1302, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1302, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308, 1308, 1308,
+ 1308, 1302, 1308, 1302, 1308, 1308, 1302, 1302, 1308, 1308,
+ 1308, 1302, 1308, 1302, 1308, 1308, 1308, 1302, 1302, 1302,
+ 1308, 1302, 1308, 1302, 1308, 1308, 1302, 1308, 1308, 1308,
+ 1302, 1308, 1302, 1308, 1302, 1308, 1308, 1302, 1302, 1302,
+ 1302, 1308, 1308, 1308, 1308, 1302, 1308, 1308, 1308, 1308,
+
+ 1302, 0, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
+ 1302, 1302, 1302, 1302, 1302, 1302
+ } ;
+
+static yyconst flex_int16_t yy_nxt[3811] =
+ { 0,
+ 14, 15, 16, 17, 18, 19, 18, 14, 14, 14,
+ 14, 18, 20, 14, 21, 22, 23, 24, 14, 25,
+ 26, 27, 28, 29, 30, 31, 32, 33, 14, 34,
+ 35, 36, 37, 38, 14, 14, 14, 14, 39, 20,
+ 14, 21, 22, 23, 24, 14, 25, 26, 27, 28,
+ 29, 30, 31, 32, 33, 14, 34, 35, 36, 37,
+ 38, 14, 14, 14, 14, 41, 42, 43, 41, 42,
+ 43, 46, 47, 46, 47, 48, 86, 48, 51, 52,
+ 53, 54, 67, 18, 51, 52, 53, 54, 68, 18,
+ 57, 58, 59, 57, 58, 59, 69, 119, 119, 121,
+
+ 70, 44, 121, 86, 44, 126, 126, 49, 72, 49,
+ 72, 72, 69, 72, 129, 55, 70, 67, 72, 67,
+ 67, 55, 67, 84, 74, 75, 60, 67, 129, 60,
+ 15, 16, 17, 62, 63, 64, 15, 16, 17, 62,
+ 63, 64, 76, 85, 174, 73, 68, 92, 68, 65,
+ 84, 74, 75, 127, 77, 65, 80, 119, 119, 68,
+ 81, 78, 89, 82, 93, 90, 83, 66, 79, 76,
+ 85, 87, 91, 66, 92, 68, 65, 125, 68, 88,
+ 68, 77, 65, 80, 94, 68, 68, 81, 78, 89,
+ 82, 93, 90, 83, 135, 79, 68, 68, 87, 91,
+
+ 95, 68, 121, 97, 96, 121, 88, 98, 100, 132,
+ 101, 94, 68, 171, 68, 123, 102, 123, 123, 103,
+ 123, 135, 129, 99, 124, 68, 104, 95, 68, 68,
+ 97, 96, 105, 133, 98, 100, 132, 101, 134, 115,
+ 171, 108, 106, 102, 116, 107, 103, 112, 149, 113,
+ 99, 109, 68, 104, 68, 110, 111, 68, 117, 105,
+ 133, 68, 118, 68, 114, 134, 115, 122, 108, 106,
+ 68, 116, 107, 68, 112, 149, 113, 120, 109, 137,
+ 126, 126, 110, 111, 68, 117, 136, 68, 68, 118,
+ 72, 114, 72, 72, 128, 72, 128, 128, 67, 128,
+
+ 67, 67, 72, 67, 72, 72, 137, 72, 67, 138,
+ 68, 139, 72, 136, 140, 141, 142, 144, 145, 146,
+ 68, 150, 68, 68, 154, 68, 68, 131, 68, 148,
+ 68, 147, 68, 143, 68, 155, 138, 129, 139, 73,
+ 68, 140, 141, 159, 144, 145, 146, 68, 150, 160,
+ 151, 154, 68, 152, 161, 156, 148, 68, 147, 157,
+ 143, 163, 155, 158, 162, 164, 68, 153, 68, 68,
+ 159, 127, 68, 165, 68, 68, 160, 151, 166, 170,
+ 152, 161, 156, 68, 68, 167, 157, 68, 163, 168,
+ 158, 162, 164, 68, 153, 169, 68, 176, 175, 173,
+
+ 165, 172, 68, 179, 647, 166, 170, 68, 68, 68,
+ 178, 182, 167, 68, 68, 180, 168, 177, 187, 68,
+ 183, 68, 169, 68, 176, 175, 173, 181, 172, 186,
+ 179, 68, 184, 68, 68, 68, 125, 178, 182, 192,
+ 185, 68, 180, 123, 177, 123, 123, 183, 123, 68,
+ 128, 68, 128, 128, 181, 128, 186, 188, 72, 184,
+ 72, 72, 189, 72, 129, 190, 191, 185, 124, 68,
+ 68, 194, 193, 68, 200, 122, 120, 68, 201, 203,
+ 68, 68, 202, 68, 188, 205, 68, 204, 1302, 189,
+ 212, 1302, 190, 191, 68, 131, 1302, 68, 206, 193,
+
+ 68, 200, 68, 195, 68, 201, 203, 68, 196, 202,
+ 68, 68, 205, 197, 204, 207, 211, 212, 208, 198,
+ 199, 209, 210, 213, 214, 206, 68, 68, 1302, 216,
+ 195, 68, 215, 68, 68, 196, 219, 1302, 68, 217,
+ 197, 220, 207, 211, 221, 208, 198, 199, 209, 210,
+ 213, 218, 222, 223, 1302, 68, 235, 68, 68, 215,
+ 68, 224, 225, 68, 226, 227, 217, 68, 220, 68,
+ 68, 228, 229, 68, 230, 68, 239, 1302, 218, 237,
+ 223, 68, 68, 68, 68, 68, 231, 68, 224, 225,
+ 68, 226, 227, 233, 234, 232, 236, 238, 228, 229,
+
+ 68, 230, 68, 68, 68, 241, 237, 68, 68, 244,
+ 240, 242, 247, 231, 250, 1302, 249, 68, 68, 245,
+ 233, 234, 232, 236, 238, 251, 248, 129, 256, 252,
+ 263, 68, 241, 243, 68, 68, 246, 240, 255, 247,
+ 68, 68, 68, 249, 68, 68, 245, 68, 253, 254,
+ 267, 257, 251, 248, 68, 256, 252, 68, 258, 259,
+ 243, 68, 68, 246, 260, 255, 261, 264, 68, 68,
+ 265, 68, 262, 266, 269, 253, 254, 68, 257, 1302,
+ 68, 68, 275, 68, 272, 258, 259, 1302, 68, 68,
+ 68, 260, 271, 261, 264, 68, 68, 265, 268, 262,
+
+ 266, 269, 270, 273, 276, 68, 68, 274, 68, 277,
+ 68, 272, 68, 68, 280, 282, 283, 278, 281, 271,
+ 279, 284, 68, 1302, 68, 268, 285, 68, 68, 270,
+ 273, 276, 68, 68, 274, 290, 277, 289, 291, 288,
+ 68, 280, 282, 283, 278, 281, 286, 279, 68, 287,
+ 68, 68, 292, 285, 294, 68, 68, 293, 295, 298,
+ 68, 68, 68, 296, 289, 291, 288, 299, 304, 68,
+ 68, 297, 1302, 286, 305, 308, 287, 1302, 68, 292,
+ 68, 294, 303, 68, 293, 306, 298, 404, 68, 68,
+ 296, 68, 300, 68, 299, 301, 68, 302, 297, 68,
+
+ 68, 305, 308, 68, 307, 309, 319, 311, 320, 303,
+ 321, 68, 306, 323, 68, 322, 129, 1302, 68, 300,
+ 68, 310, 301, 68, 302, 68, 68, 325, 1302, 68,
+ 1302, 307, 309, 319, 311, 320, 1302, 321, 324, 1302,
+ 323, 327, 322, 328, 326, 68, 332, 333, 310, 312,
+ 313, 68, 1302, 68, 330, 68, 331, 329, 68, 314,
+ 1302, 315, 316, 317, 68, 324, 318, 68, 327, 335,
+ 328, 326, 334, 1302, 68, 68, 312, 313, 68, 68,
+ 68, 330, 337, 331, 329, 338, 314, 336, 315, 316,
+ 317, 340, 339, 318, 341, 68, 335, 1302, 68, 334,
+
+ 68, 345, 344, 346, 342, 348, 347, 68, 1302, 337,
+ 68, 349, 338, 350, 336, 68, 352, 343, 340, 339,
+ 68, 341, 68, 68, 68, 351, 68, 353, 345, 344,
+ 346, 342, 68, 347, 356, 68, 68, 355, 349, 68,
+ 350, 354, 68, 352, 343, 357, 362, 68, 358, 68,
+ 359, 361, 351, 360, 68, 68, 363, 68, 68, 1302,
+ 368, 356, 365, 366, 355, 68, 364, 68, 354, 68,
+ 68, 367, 357, 362, 68, 358, 68, 359, 361, 68,
+ 360, 68, 68, 363, 68, 369, 370, 368, 371, 365,
+ 366, 372, 375, 364, 374, 1302, 68, 68, 367, 373,
+
+ 376, 377, 383, 382, 68, 1302, 68, 1302, 387, 68,
+ 68, 68, 369, 68, 68, 371, 378, 68, 372, 375,
+ 389, 374, 68, 379, 384, 386, 373, 376, 377, 383,
+ 382, 380, 68, 385, 68, 387, 388, 390, 68, 391,
+ 393, 381, 68, 378, 392, 397, 68, 389, 68, 68,
+ 379, 395, 386, 68, 68, 68, 68, 394, 380, 396,
+ 385, 1302, 68, 388, 390, 399, 391, 393, 381, 398,
+ 400, 392, 397, 68, 1302, 401, 402, 68, 395, 403,
+ 405, 68, 406, 410, 394, 68, 396, 407, 129, 408,
+ 68, 409, 399, 68, 411, 68, 398, 68, 412, 68,
+
+ 413, 68, 401, 402, 414, 68, 403, 405, 415, 406,
+ 68, 416, 1302, 68, 407, 417, 408, 68, 409, 419,
+ 418, 68, 420, 423, 421, 422, 424, 68, 425, 68,
+ 429, 68, 68, 430, 1302, 426, 432, 68, 416, 68,
+ 427, 68, 417, 68, 428, 68, 68, 418, 68, 420,
+ 68, 421, 422, 424, 68, 425, 68, 429, 431, 68,
+ 68, 433, 426, 432, 68, 435, 436, 427, 437, 438,
+ 439, 428, 440, 1302, 441, 1302, 68, 443, 1302, 1302,
+ 68, 442, 446, 434, 68, 431, 68, 68, 433, 444,
+ 68, 68, 435, 436, 450, 437, 68, 439, 68, 440,
+
+ 68, 441, 68, 68, 443, 445, 68, 447, 442, 446,
+ 434, 448, 451, 452, 453, 449, 444, 1302, 454, 455,
+ 1302, 460, 456, 459, 457, 68, 458, 68, 68, 68,
+ 68, 68, 445, 68, 447, 68, 461, 68, 465, 451,
+ 452, 467, 68, 462, 68, 68, 455, 68, 460, 456,
+ 459, 457, 463, 458, 464, 68, 466, 468, 1302, 68,
+ 469, 68, 470, 461, 68, 1302, 68, 68, 467, 68,
+ 462, 473, 472, 68, 474, 475, 1302, 471, 476, 463,
+ 68, 464, 68, 466, 468, 68, 68, 469, 477, 470,
+ 480, 68, 479, 481, 478, 68, 68, 488, 473, 472,
+
+ 68, 474, 475, 68, 471, 476, 68, 482, 68, 483,
+ 68, 1302, 68, 491, 484, 477, 485, 480, 486, 479,
+ 481, 478, 68, 489, 494, 497, 487, 508, 68, 129,
+ 490, 495, 68, 68, 482, 492, 483, 68, 493, 68,
+ 491, 484, 68, 485, 68, 486, 68, 68, 68, 496,
+ 489, 494, 68, 487, 68, 1302, 68, 490, 495, 504,
+ 1302, 505, 492, 509, 506, 493, 68, 1302, 507, 1302,
+ 68, 510, 68, 511, 1302, 1302, 496, 498, 1302, 499,
+ 1302, 68, 500, 68, 512, 68, 504, 501, 505, 513,
+ 509, 506, 68, 502, 503, 507, 514, 68, 510, 515,
+
+ 511, 517, 68, 68, 498, 516, 499, 68, 520, 500,
+ 68, 512, 521, 68, 501, 1302, 513, 518, 522, 523,
+ 502, 503, 519, 514, 68, 531, 515, 68, 517, 68,
+ 68, 68, 516, 524, 525, 520, 527, 528, 526, 68,
+ 68, 529, 68, 530, 518, 522, 523, 68, 533, 519,
+ 535, 532, 68, 68, 534, 1302, 68, 68, 68, 68,
+ 524, 525, 68, 527, 528, 526, 536, 68, 68, 543,
+ 530, 544, 68, 538, 537, 533, 68, 535, 532, 68,
+ 539, 534, 540, 541, 542, 548, 68, 68, 68, 68,
+ 68, 68, 547, 536, 68, 545, 543, 546, 544, 551,
+
+ 538, 537, 552, 68, 550, 68, 68, 539, 553, 540,
+ 541, 542, 548, 549, 555, 68, 68, 68, 554, 547,
+ 68, 556, 545, 557, 546, 68, 558, 68, 559, 552,
+ 68, 550, 561, 68, 560, 553, 68, 562, 564, 565,
+ 549, 555, 566, 68, 563, 554, 68, 567, 556, 68,
+ 557, 68, 68, 576, 68, 559, 568, 68, 1302, 561,
+ 569, 560, 570, 68, 68, 68, 129, 1302, 68, 566,
+ 68, 563, 578, 579, 567, 68, 68, 577, 581, 68,
+ 576, 582, 580, 568, 68, 583, 68, 569, 68, 570,
+ 571, 68, 572, 587, 588, 589, 573, 1302, 574, 578,
+
+ 579, 590, 68, 575, 577, 581, 584, 68, 582, 580,
+ 68, 593, 591, 585, 68, 68, 68, 571, 592, 572,
+ 587, 588, 589, 573, 68, 574, 595, 68, 590, 596,
+ 575, 586, 68, 584, 68, 594, 597, 68, 593, 591,
+ 585, 598, 599, 68, 601, 592, 600, 603, 604, 608,
+ 68, 1302, 68, 68, 602, 68, 596, 605, 586, 607,
+ 68, 610, 594, 606, 68, 68, 68, 68, 598, 599,
+ 68, 601, 68, 600, 603, 604, 68, 68, 611, 609,
+ 68, 602, 612, 68, 605, 613, 607, 614, 610, 615,
+ 606, 68, 616, 1302, 1302, 618, 617, 626, 619, 640,
+
+ 68, 622, 620, 68, 68, 611, 609, 621, 68, 612,
+ 624, 623, 613, 68, 614, 627, 628, 625, 68, 68,
+ 68, 68, 618, 68, 626, 619, 68, 629, 622, 620,
+ 68, 630, 68, 631, 621, 68, 68, 624, 623, 68,
+ 68, 632, 627, 68, 625, 68, 633, 634, 635, 636,
+ 68, 639, 643, 68, 629, 637, 638, 68, 630, 641,
+ 631, 68, 1302, 1302, 68, 642, 655, 68, 632, 646,
+ 68, 68, 645, 633, 634, 635, 636, 68, 639, 68,
+ 68, 644, 637, 638, 68, 68, 648, 649, 656, 68,
+ 68, 652, 642, 650, 653, 68, 646, 68, 651, 645,
+
+ 68, 68, 654, 658, 68, 68, 68, 1302, 644, 68,
+ 657, 659, 660, 648, 649, 661, 68, 663, 652, 68,
+ 650, 653, 664, 662, 68, 651, 666, 68, 665, 654,
+ 658, 68, 68, 667, 68, 68, 668, 657, 659, 660,
+ 671, 68, 661, 669, 68, 670, 68, 672, 68, 664,
+ 662, 68, 68, 666, 673, 665, 674, 676, 68, 68,
+ 667, 677, 680, 668, 68, 675, 68, 671, 68, 68,
+ 669, 68, 670, 678, 672, 683, 681, 682, 1302, 679,
+ 68, 673, 68, 674, 676, 68, 68, 685, 677, 680,
+ 68, 684, 675, 686, 68, 689, 688, 687, 68, 690,
+
+ 678, 691, 683, 1302, 682, 694, 679, 68, 695, 68,
+ 68, 692, 693, 68, 685, 697, 696, 698, 684, 1302,
+ 699, 68, 689, 688, 68, 68, 700, 68, 691, 1302,
+ 68, 68, 694, 68, 68, 695, 1302, 706, 692, 693,
+ 705, 1302, 68, 696, 1302, 701, 68, 699, 68, 68,
+ 702, 1302, 703, 700, 704, 711, 68, 707, 709, 708,
+ 68, 714, 710, 68, 706, 715, 712, 705, 68, 68,
+ 68, 68, 701, 716, 68, 68, 713, 702, 68, 703,
+ 717, 704, 711, 718, 707, 709, 708, 719, 68, 710,
+ 720, 68, 68, 712, 721, 722, 724, 68, 723, 730,
+
+ 716, 725, 68, 713, 726, 68, 727, 717, 728, 731,
+ 718, 733, 729, 1302, 68, 68, 68, 68, 68, 732,
+ 68, 721, 68, 724, 737, 723, 68, 734, 725, 68,
+ 68, 726, 68, 727, 736, 728, 735, 740, 744, 729,
+ 68, 68, 68, 739, 68, 68, 732, 68, 738, 741,
+ 68, 68, 742, 743, 734, 68, 68, 747, 1302, 68,
+ 745, 736, 68, 735, 68, 744, 68, 68, 68, 746,
+ 739, 68, 753, 748, 749, 738, 741, 68, 750, 742,
+ 743, 751, 68, 752, 747, 757, 754, 745, 756, 758,
+ 755, 759, 68, 68, 68, 68, 746, 68, 760, 753,
+
+ 748, 761, 68, 68, 762, 68, 68, 763, 751, 765,
+ 752, 68, 757, 754, 766, 756, 758, 755, 759, 767,
+ 769, 764, 770, 68, 68, 760, 68, 68, 761, 68,
+ 68, 762, 768, 771, 763, 772, 765, 1302, 68, 774,
+ 68, 766, 68, 773, 778, 1302, 767, 769, 764, 775,
+ 776, 781, 68, 68, 777, 779, 1302, 68, 782, 768,
+ 780, 68, 772, 68, 68, 68, 774, 783, 68, 784,
+ 773, 68, 68, 787, 792, 68, 775, 68, 781, 788,
+ 785, 68, 779, 786, 793, 68, 68, 780, 68, 68,
+ 789, 68, 790, 791, 783, 794, 784, 68, 68, 796,
+
+ 787, 792, 68, 797, 799, 795, 788, 785, 802, 798,
+ 786, 793, 68, 68, 801, 68, 68, 789, 68, 790,
+ 791, 800, 794, 803, 1302, 68, 68, 804, 1302, 805,
+ 797, 808, 795, 806, 809, 68, 798, 810, 1302, 68,
+ 68, 801, 807, 68, 68, 68, 68, 812, 800, 814,
+ 68, 68, 811, 68, 804, 68, 805, 813, 808, 68,
+ 806, 809, 68, 815, 68, 68, 817, 816, 818, 807,
+ 819, 826, 820, 68, 812, 68, 814, 68, 821, 811,
+ 822, 824, 823, 68, 813, 68, 68, 68, 68, 68,
+ 815, 825, 832, 817, 816, 818, 827, 819, 68, 820,
+
+ 829, 828, 68, 68, 830, 821, 68, 822, 824, 823,
+ 831, 833, 68, 68, 68, 1302, 68, 834, 825, 832,
+ 835, 68, 840, 827, 837, 836, 68, 829, 828, 68,
+ 838, 830, 68, 839, 68, 846, 841, 831, 843, 842,
+ 845, 848, 68, 68, 834, 68, 68, 835, 68, 68,
+ 68, 837, 836, 68, 844, 68, 847, 838, 68, 864,
+ 839, 68, 846, 841, 849, 843, 842, 845, 850, 853,
+ 68, 68, 68, 851, 852, 68, 857, 856, 1302, 68,
+ 859, 844, 858, 847, 854, 860, 68, 855, 68, 68,
+ 68, 849, 863, 68, 865, 850, 853, 870, 68, 68,
+
+ 851, 852, 68, 68, 856, 861, 68, 859, 862, 858,
+ 68, 854, 860, 866, 855, 867, 868, 869, 871, 863,
+ 68, 68, 872, 68, 870, 68, 873, 68, 875, 68,
+ 68, 876, 861, 877, 1302, 862, 878, 68, 874, 882,
+ 866, 879, 867, 868, 869, 871, 880, 68, 68, 872,
+ 883, 1302, 881, 873, 68, 68, 1302, 889, 68, 68,
+ 877, 885, 68, 884, 68, 874, 882, 68, 879, 68,
+ 68, 886, 68, 880, 887, 890, 1302, 883, 888, 881,
+ 68, 891, 68, 68, 889, 68, 893, 892, 885, 894,
+ 884, 896, 898, 68, 895, 899, 900, 68, 886, 897,
+
+ 908, 887, 890, 68, 68, 888, 68, 68, 891, 68,
+ 68, 902, 68, 893, 892, 901, 894, 915, 68, 898,
+ 68, 895, 899, 903, 904, 905, 897, 68, 906, 907,
+ 68, 68, 910, 909, 911, 912, 913, 914, 902, 68,
+ 68, 68, 901, 916, 68, 917, 68, 919, 68, 1302,
+ 903, 68, 68, 921, 923, 906, 68, 918, 1302, 910,
+ 909, 911, 68, 68, 68, 922, 68, 68, 927, 920,
+ 916, 68, 924, 931, 925, 68, 68, 930, 68, 926,
+ 68, 928, 929, 68, 918, 68, 933, 68, 68, 68,
+ 934, 68, 922, 932, 68, 927, 920, 68, 935, 924,
+
+ 68, 925, 936, 937, 930, 939, 926, 941, 928, 929,
+ 938, 68, 68, 933, 940, 68, 68, 934, 68, 944,
+ 932, 68, 68, 942, 943, 935, 68, 945, 1302, 936,
+ 937, 68, 939, 946, 941, 947, 949, 938, 948, 950,
+ 951, 940, 956, 68, 1302, 68, 944, 68, 68, 952,
+ 942, 68, 957, 953, 945, 68, 68, 68, 68, 954,
+ 68, 958, 947, 949, 955, 948, 950, 951, 959, 68,
+ 68, 68, 963, 960, 68, 68, 952, 961, 964, 957,
+ 953, 962, 965, 966, 967, 970, 954, 968, 958, 972,
+ 969, 955, 68, 68, 973, 974, 971, 975, 68, 68,
+
+ 68, 68, 68, 68, 976, 964, 977, 68, 68, 68,
+ 966, 967, 978, 68, 968, 979, 68, 969, 982, 68,
+ 68, 973, 974, 971, 68, 980, 981, 68, 984, 983,
+ 985, 68, 986, 977, 68, 988, 68, 68, 987, 978,
+ 992, 68, 979, 68, 68, 982, 990, 1302, 68, 991,
+ 68, 68, 980, 981, 989, 984, 983, 985, 993, 986,
+ 995, 994, 997, 996, 68, 987, 68, 68, 68, 68,
+ 1000, 1002, 68, 990, 68, 1003, 991, 68, 68, 998,
+ 999, 989, 68, 1004, 1001, 993, 68, 995, 994, 997,
+ 996, 68, 68, 68, 68, 68, 1005, 1000, 1002, 1006,
+
+ 68, 1302, 1003, 1007, 68, 1008, 998, 999, 1009, 1010,
+ 1004, 1001, 1011, 1012, 68, 1014, 1015, 1013, 1018, 1302,
+ 1016, 1302, 68, 1005, 68, 1302, 68, 68, 68, 1017,
+ 1007, 68, 1008, 68, 68, 1009, 1010, 1019, 68, 1011,
+ 1012, 1022, 68, 1015, 1013, 68, 68, 1016, 1020, 1024,
+ 1023, 1021, 68, 1026, 1027, 1032, 1017, 1025, 1028, 68,
+ 1033, 68, 1029, 1035, 1019, 68, 68, 68, 1022, 68,
+ 1030, 68, 1031, 68, 68, 1020, 1024, 1023, 1021, 68,
+ 1026, 1027, 1032, 68, 1025, 1028, 1034, 68, 1036, 1029,
+ 68, 68, 1038, 1037, 1039, 1040, 68, 1030, 1041, 1031,
+
+ 1042, 1043, 1302, 1044, 68, 1302, 1050, 68, 68, 1045,
+ 1046, 1047, 1302, 1034, 68, 1036, 68, 68, 68, 1038,
+ 1037, 1039, 68, 1048, 68, 1041, 1049, 1042, 68, 68,
+ 1044, 1051, 68, 1050, 68, 68, 1045, 1046, 1047, 68,
+ 1052, 1053, 1055, 68, 1057, 1054, 1056, 1059, 68, 68,
+ 1048, 68, 68, 1049, 1058, 1062, 1060, 68, 1051, 1061,
+ 1063, 68, 1064, 1065, 1066, 1068, 1069, 1052, 1053, 1055,
+ 68, 68, 1054, 1056, 1059, 1070, 68, 1071, 68, 1073,
+ 1067, 1058, 68, 1060, 1076, 68, 1061, 68, 68, 1064,
+ 68, 68, 68, 68, 1075, 1072, 1074, 68, 1077, 1079,
+
+ 1081, 1080, 1070, 68, 68, 68, 68, 1067, 68, 68,
+ 1082, 1076, 1084, 1078, 1085, 68, 1083, 68, 1302, 1088,
+ 1086, 1075, 1072, 1074, 68, 1077, 68, 68, 1080, 68,
+ 1087, 1090, 68, 68, 1092, 1094, 1091, 68, 68, 1084,
+ 1078, 1085, 68, 1083, 1089, 1095, 1088, 1086, 68, 1093,
+ 68, 1097, 68, 68, 1098, 1096, 1099, 1087, 1090, 1302,
+ 1302, 1092, 68, 1091, 1302, 1100, 68, 68, 68, 68,
+ 1103, 1089, 1095, 1101, 1102, 1104, 1093, 1106, 1097, 1108,
+ 68, 1098, 1096, 1105, 1107, 68, 68, 68, 1109, 1111,
+ 1110, 68, 1100, 1115, 1302, 1112, 68, 1103, 1116, 68,
+
+ 1101, 1102, 1104, 68, 68, 68, 1108, 68, 1114, 1118,
+ 1105, 1107, 68, 1113, 1119, 68, 1111, 1110, 68, 68,
+ 68, 1117, 1112, 1121, 68, 1116, 1120, 1122, 1123, 1124,
+ 68, 68, 68, 68, 1125, 1114, 1118, 1126, 1302, 1128,
+ 1113, 1119, 1130, 1132, 68, 1129, 1127, 1302, 1117, 68,
+ 1121, 68, 1131, 1120, 68, 68, 68, 68, 1133, 1134,
+ 1135, 1136, 1137, 68, 1126, 68, 1128, 68, 68, 68,
+ 1132, 1143, 1129, 1127, 68, 1138, 1139, 68, 1140, 1131,
+ 68, 1141, 1144, 1142, 68, 1133, 68, 68, 68, 1137,
+ 68, 68, 1146, 68, 1145, 68, 68, 1147, 68, 68,
+
+ 68, 1148, 1138, 1139, 68, 1140, 1150, 1149, 1141, 1144,
+ 1142, 68, 1153, 1151, 1152, 68, 1154, 1164, 1155, 1146,
+ 68, 1145, 1156, 1159, 1147, 68, 1158, 1163, 1148, 1157,
+ 1302, 1161, 68, 1150, 1149, 68, 68, 1160, 68, 68,
+ 1151, 1152, 68, 1154, 68, 1155, 68, 68, 68, 68,
+ 1159, 1162, 1166, 1158, 68, 1165, 1157, 1169, 1161, 68,
+ 68, 1167, 1168, 1170, 1160, 1171, 1172, 68, 68, 68,
+ 1173, 1175, 1174, 1302, 1176, 68, 1178, 68, 1162, 1166,
+ 68, 68, 1165, 1179, 1169, 1180, 1177, 1181, 1167, 1168,
+ 68, 68, 1171, 1172, 68, 1183, 1182, 68, 68, 1174,
+
+ 68, 1176, 1184, 1178, 1185, 68, 68, 68, 68, 1186,
+ 1179, 1187, 1180, 1177, 1181, 1188, 68, 68, 1189, 1302,
+ 1190, 1191, 1183, 1182, 68, 1192, 1193, 1194, 1302, 1184,
+ 1197, 1185, 1201, 1195, 1199, 1302, 68, 1196, 68, 1302,
+ 68, 68, 68, 68, 1198, 68, 68, 68, 1191, 1202,
+ 68, 68, 1192, 1193, 1194, 68, 68, 1197, 1200, 68,
+ 1195, 1199, 68, 1203, 1196, 1204, 68, 68, 1205, 1206,
+ 1207, 1198, 1208, 1302, 1209, 1215, 1202, 1211, 1210, 68,
+ 1212, 1214, 68, 68, 1213, 1200, 68, 68, 1216, 1217,
+ 1203, 1220, 1204, 68, 68, 1205, 1206, 68, 1218, 1208,
+
+ 68, 1209, 68, 1222, 68, 1210, 68, 68, 1214, 1219,
+ 68, 1213, 68, 1221, 1227, 68, 1217, 68, 1220, 68,
+ 1223, 68, 1224, 1226, 68, 1218, 1225, 1228, 1229, 68,
+ 1222, 68, 68, 68, 68, 1231, 1219, 1230, 1232, 1233,
+ 1221, 1227, 1234, 1235, 68, 1237, 68, 1223, 1238, 1224,
+ 1226, 1302, 68, 1225, 1228, 1229, 1240, 68, 68, 1239,
+ 68, 68, 68, 1241, 1230, 1232, 1233, 68, 1242, 1234,
+ 1235, 1236, 1237, 68, 68, 1238, 68, 68, 68, 1243,
+ 1244, 68, 1245, 1240, 1247, 1246, 1239, 1252, 1249, 1248,
+ 1241, 68, 68, 1250, 68, 1242, 68, 1251, 1236, 1253,
+
+ 68, 1254, 1257, 1258, 1262, 68, 1243, 68, 68, 1245,
+ 68, 1247, 1246, 1264, 68, 1249, 1248, 1256, 1255, 1259,
+ 1250, 68, 68, 1260, 1251, 68, 1253, 68, 68, 68,
+ 68, 68, 1261, 1263, 1265, 1267, 1266, 1268, 68, 68,
+ 68, 1269, 68, 1270, 1256, 1255, 1259, 1271, 68, 68,
+ 1260, 1272, 1302, 1273, 1274, 1275, 1276, 68, 1277, 1261,
+ 1263, 1265, 1267, 1266, 68, 1278, 1279, 1281, 68, 68,
+ 68, 1283, 1282, 1284, 1271, 68, 1285, 68, 68, 68,
+ 1273, 68, 1275, 1276, 1280, 68, 1288, 68, 68, 1286,
+ 1289, 68, 1278, 1279, 68, 68, 68, 1287, 68, 1282,
+
+ 1284, 68, 1290, 68, 1291, 1292, 68, 1293, 1302, 1296,
+ 1297, 1280, 1294, 68, 1295, 1298, 1286, 68, 1300, 1301,
+ 68, 68, 1302, 1302, 1287, 1299, 68, 68, 68, 68,
+ 1302, 68, 1292, 68, 1293, 68, 68, 1297, 68, 1294,
+ 1302, 1295, 1298, 1302, 1302, 1300, 68, 1302, 1302, 1302,
+ 1302, 1302, 1299, 40, 40, 40, 40, 40, 40, 40,
+ 45, 45, 45, 45, 45, 45, 45, 50, 50, 50,
+ 50, 50, 50, 50, 56, 56, 56, 56, 56, 56,
+ 56, 61, 61, 61, 61, 61, 61, 61, 71, 71,
+ 1302, 71, 71, 71, 71, 119, 119, 1302, 1302, 1302,
+
+ 119, 119, 121, 121, 1302, 1302, 121, 1302, 121, 123,
+ 1302, 1302, 1302, 1302, 1302, 123, 126, 126, 1302, 1302,
+ 1302, 126, 126, 128, 1302, 1302, 1302, 1302, 1302, 128,
+ 130, 130, 1302, 130, 130, 130, 130, 72, 72, 1302,
+ 72, 72, 72, 72, 13, 1302, 1302, 1302, 1302, 1302,
+ 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
+ 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
+ 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
+ 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
+ 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
+
+ 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302
+ } ;
+
+static yyconst flex_int16_t yy_chk[3811] =
+ { 0,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 3, 3, 3, 4, 4,
+ 4, 5, 5, 6, 6, 5, 24, 6, 7, 7,
+ 7, 7, 1308, 7, 8, 8, 8, 8, 24, 8,
+ 9, 9, 9, 10, 10, 10, 15, 44, 44, 49,
+
+ 15, 3, 49, 24, 4, 60, 60, 5, 19, 6,
+ 19, 19, 69, 19, 565, 7, 69, 39, 19, 39,
+ 39, 8, 39, 23, 20, 20, 9, 39, 128, 10,
+ 11, 11, 11, 11, 11, 11, 12, 12, 12, 12,
+ 12, 12, 20, 23, 109, 19, 23, 27, 20, 11,
+ 23, 20, 20, 126, 21, 12, 22, 120, 120, 27,
+ 22, 21, 26, 22, 28, 26, 22, 11, 21, 20,
+ 23, 25, 26, 12, 27, 109, 11, 125, 22, 25,
+ 21, 21, 12, 22, 29, 26, 28, 22, 21, 26,
+ 22, 28, 26, 22, 76, 21, 29, 25, 25, 26,
+
+ 30, 76, 122, 31, 30, 122, 25, 31, 32, 65,
+ 33, 29, 30, 106, 32, 55, 33, 55, 55, 33,
+ 55, 76, 65, 31, 123, 106, 33, 30, 33, 31,
+ 31, 30, 34, 74, 31, 32, 65, 33, 75, 37,
+ 106, 35, 34, 33, 37, 34, 33, 36, 89, 36,
+ 31, 35, 37, 33, 34, 35, 35, 74, 38, 34,
+ 74, 75, 38, 35, 36, 75, 37, 121, 35, 34,
+ 89, 37, 34, 36, 36, 89, 36, 119, 35, 78,
+ 127, 127, 35, 35, 38, 38, 77, 67, 78, 38,
+ 63, 36, 63, 63, 66, 63, 66, 66, 68, 66,
+
+ 68, 68, 71, 68, 71, 71, 78, 71, 68, 79,
+ 77, 80, 71, 77, 81, 82, 83, 84, 85, 86,
+ 82, 90, 79, 81, 92, 85, 80, 63, 86, 88,
+ 84, 87, 92, 83, 90, 93, 79, 61, 80, 71,
+ 87, 81, 82, 95, 84, 85, 86, 83, 90, 96,
+ 91, 92, 88, 91, 97, 93, 88, 93, 87, 94,
+ 83, 99, 93, 94, 98, 100, 95, 91, 97, 96,
+ 95, 56, 100, 101, 91, 99, 96, 91, 102, 105,
+ 91, 97, 93, 94, 98, 103, 94, 102, 99, 103,
+ 94, 98, 100, 105, 91, 104, 101, 111, 110, 108,
+
+ 101, 107, 104, 113, 559, 102, 105, 103, 108, 107,
+ 112, 116, 103, 110, 113, 114, 103, 111, 134, 112,
+ 117, 114, 104, 111, 111, 110, 108, 115, 107, 133,
+ 113, 115, 118, 116, 559, 117, 51, 112, 116, 139,
+ 132, 118, 114, 124, 111, 124, 124, 117, 124, 134,
+ 129, 133, 129, 129, 115, 129, 133, 135, 130, 118,
+ 130, 130, 136, 130, 132, 137, 138, 132, 50, 135,
+ 139, 141, 140, 138, 143, 45, 40, 137, 144, 146,
+ 14, 136, 145, 146, 135, 148, 144, 147, 13, 136,
+ 154, 0, 137, 138, 140, 130, 0, 154, 149, 140,
+
+ 143, 143, 141, 142, 145, 144, 146, 148, 142, 145,
+ 147, 149, 148, 142, 147, 150, 153, 154, 151, 142,
+ 142, 151, 152, 155, 156, 149, 142, 150, 0, 158,
+ 142, 152, 157, 151, 155, 142, 160, 0, 153, 158,
+ 142, 161, 150, 153, 162, 151, 142, 142, 151, 152,
+ 155, 159, 163, 164, 0, 156, 175, 159, 157, 157,
+ 158, 165, 166, 161, 167, 168, 158, 160, 161, 166,
+ 168, 169, 170, 164, 171, 162, 179, 0, 159, 177,
+ 164, 171, 165, 163, 170, 167, 172, 175, 165, 166,
+ 169, 167, 168, 174, 174, 173, 176, 178, 169, 170,
+
+ 173, 171, 174, 176, 177, 181, 177, 179, 172, 183,
+ 180, 182, 185, 172, 188, 0, 187, 178, 180, 184,
+ 174, 174, 173, 176, 178, 189, 186, 185, 194, 190,
+ 201, 181, 181, 182, 186, 187, 184, 180, 193, 185,
+ 183, 190, 182, 187, 184, 188, 184, 189, 191, 192,
+ 205, 195, 189, 186, 194, 194, 190, 191, 196, 197,
+ 182, 201, 193, 184, 198, 193, 199, 202, 192, 196,
+ 203, 197, 200, 204, 207, 191, 192, 195, 195, 0,
+ 202, 205, 213, 207, 210, 196, 197, 0, 198, 199,
+ 200, 198, 209, 199, 202, 204, 203, 203, 206, 200,
+
+ 204, 207, 208, 211, 214, 206, 209, 212, 208, 215,
+ 210, 210, 211, 213, 217, 219, 219, 216, 218, 209,
+ 216, 220, 212, 0, 215, 206, 221, 216, 214, 208,
+ 211, 214, 217, 218, 212, 225, 215, 224, 226, 223,
+ 219, 217, 219, 219, 216, 218, 222, 216, 220, 222,
+ 221, 223, 227, 221, 229, 224, 222, 228, 230, 233,
+ 226, 229, 225, 231, 224, 226, 223, 234, 237, 228,
+ 231, 232, 0, 222, 238, 241, 222, 0, 227, 227,
+ 234, 229, 236, 233, 228, 239, 233, 326, 241, 230,
+ 231, 239, 235, 232, 234, 235, 238, 235, 232, 237,
+
+ 236, 238, 241, 235, 240, 242, 245, 243, 246, 236,
+ 247, 240, 239, 249, 326, 248, 247, 0, 245, 235,
+ 243, 242, 235, 248, 235, 249, 246, 251, 0, 242,
+ 0, 240, 242, 245, 243, 246, 0, 247, 250, 0,
+ 249, 253, 248, 254, 252, 250, 258, 258, 242, 244,
+ 244, 252, 0, 253, 256, 254, 257, 255, 251, 244,
+ 0, 244, 244, 244, 255, 250, 244, 256, 253, 260,
+ 254, 252, 259, 0, 244, 258, 244, 244, 257, 259,
+ 260, 256, 262, 257, 255, 263, 244, 261, 244, 244,
+ 244, 265, 264, 244, 266, 262, 260, 0, 261, 259,
+
+ 265, 269, 268, 270, 267, 272, 271, 266, 0, 262,
+ 263, 273, 263, 274, 261, 264, 276, 267, 265, 264,
+ 268, 266, 267, 269, 271, 275, 270, 277, 269, 268,
+ 270, 267, 273, 271, 280, 274, 272, 279, 273, 275,
+ 274, 278, 276, 276, 267, 281, 287, 278, 282, 280,
+ 283, 286, 275, 285, 282, 279, 288, 286, 277, 0,
+ 294, 280, 291, 292, 279, 287, 289, 281, 278, 291,
+ 292, 293, 281, 287, 288, 282, 283, 283, 286, 285,
+ 285, 289, 294, 288, 293, 295, 296, 294, 297, 291,
+ 292, 298, 301, 289, 300, 0, 298, 297, 293, 299,
+
+ 302, 303, 306, 305, 295, 0, 300, 0, 309, 303,
+ 305, 302, 295, 306, 301, 297, 304, 296, 298, 301,
+ 311, 300, 299, 304, 307, 308, 299, 302, 303, 306,
+ 305, 304, 308, 307, 309, 309, 310, 312, 310, 313,
+ 315, 304, 304, 304, 314, 319, 311, 311, 315, 312,
+ 304, 317, 308, 319, 313, 307, 314, 316, 304, 318,
+ 307, 0, 316, 310, 312, 321, 313, 315, 304, 320,
+ 322, 314, 319, 317, 0, 323, 324, 318, 317, 325,
+ 327, 320, 328, 332, 316, 324, 318, 329, 321, 330,
+ 323, 331, 321, 325, 333, 327, 320, 328, 334, 329,
+
+ 335, 322, 323, 324, 336, 331, 325, 327, 337, 328,
+ 332, 338, 0, 330, 329, 339, 330, 338, 331, 341,
+ 340, 333, 342, 345, 343, 344, 346, 335, 347, 334,
+ 349, 336, 344, 350, 0, 348, 352, 339, 338, 337,
+ 348, 347, 339, 340, 348, 342, 343, 340, 346, 342,
+ 341, 343, 344, 346, 345, 347, 349, 349, 351, 348,
+ 352, 353, 348, 352, 350, 354, 355, 348, 356, 357,
+ 358, 348, 359, 0, 360, 0, 351, 362, 0, 0,
+ 355, 361, 365, 353, 353, 351, 362, 354, 353, 363,
+ 356, 358, 354, 355, 368, 356, 359, 358, 360, 359,
+
+ 357, 360, 363, 361, 362, 364, 365, 366, 361, 365,
+ 353, 367, 369, 370, 371, 367, 363, 0, 371, 372,
+ 0, 377, 373, 376, 374, 368, 375, 364, 377, 366,
+ 369, 376, 364, 374, 366, 375, 378, 370, 382, 369,
+ 370, 384, 367, 379, 372, 371, 372, 373, 377, 373,
+ 376, 374, 380, 375, 381, 379, 383, 385, 0, 378,
+ 386, 380, 387, 378, 383, 0, 381, 384, 384, 382,
+ 379, 390, 389, 387, 391, 392, 0, 388, 393, 380,
+ 385, 381, 386, 383, 385, 388, 389, 386, 394, 387,
+ 397, 390, 396, 398, 395, 392, 391, 405, 390, 389,
+
+ 393, 391, 392, 395, 388, 393, 398, 399, 397, 400,
+ 394, 0, 396, 408, 401, 394, 402, 397, 403, 396,
+ 398, 395, 402, 406, 415, 418, 403, 424, 405, 399,
+ 407, 416, 408, 400, 399, 409, 400, 401, 412, 407,
+ 408, 401, 415, 402, 403, 403, 406, 409, 412, 417,
+ 406, 415, 416, 403, 424, 0, 418, 407, 416, 420,
+ 0, 421, 409, 425, 422, 412, 422, 0, 423, 0,
+ 421, 426, 417, 427, 0, 0, 417, 419, 0, 419,
+ 0, 420, 419, 425, 428, 427, 420, 419, 421, 429,
+ 425, 422, 423, 419, 419, 423, 430, 426, 426, 431,
+
+ 427, 433, 419, 430, 419, 432, 419, 431, 436, 419,
+ 428, 428, 437, 429, 419, 0, 429, 434, 438, 439,
+ 419, 419, 435, 430, 432, 447, 431, 433, 433, 434,
+ 436, 435, 432, 440, 441, 436, 443, 444, 442, 437,
+ 439, 445, 438, 446, 434, 438, 439, 442, 450, 435,
+ 452, 448, 440, 441, 451, 0, 447, 444, 443, 448,
+ 440, 441, 446, 443, 444, 442, 453, 451, 445, 460,
+ 446, 461, 450, 455, 453, 450, 452, 452, 448, 455,
+ 456, 451, 457, 458, 459, 465, 456, 460, 458, 457,
+ 453, 459, 464, 453, 461, 462, 460, 463, 461, 468,
+
+ 455, 453, 469, 462, 467, 464, 465, 456, 470, 457,
+ 458, 459, 465, 466, 472, 463, 470, 467, 471, 464,
+ 466, 473, 462, 474, 463, 469, 475, 473, 476, 469,
+ 468, 467, 478, 471, 477, 470, 472, 479, 481, 482,
+ 466, 472, 483, 477, 480, 471, 478, 484, 473, 474,
+ 474, 480, 476, 489, 483, 476, 485, 475, 0, 478,
+ 486, 477, 487, 486, 485, 481, 482, 0, 479, 483,
+ 484, 480, 491, 492, 484, 487, 489, 490, 494, 490,
+ 489, 495, 493, 485, 491, 496, 492, 486, 493, 487,
+ 488, 494, 488, 498, 499, 500, 488, 0, 488, 491,
+
+ 492, 501, 495, 488, 490, 494, 497, 499, 495, 493,
+ 500, 504, 502, 497, 488, 498, 496, 488, 503, 488,
+ 498, 499, 500, 488, 504, 488, 506, 501, 501, 507,
+ 488, 497, 497, 497, 502, 505, 509, 503, 504, 502,
+ 497, 510, 511, 505, 513, 503, 512, 515, 516, 520,
+ 511, 0, 507, 506, 514, 515, 507, 517, 497, 519,
+ 512, 523, 505, 518, 517, 510, 513, 509, 510, 511,
+ 516, 513, 514, 512, 515, 516, 518, 519, 524, 522,
+ 520, 514, 525, 523, 517, 526, 519, 527, 523, 528,
+ 518, 522, 530, 0, 0, 531, 530, 538, 531, 552,
+
+ 524, 534, 532, 526, 525, 524, 522, 533, 534, 525,
+ 536, 535, 526, 527, 527, 539, 540, 537, 538, 533,
+ 528, 531, 531, 530, 538, 531, 532, 541, 534, 532,
+ 552, 542, 536, 543, 533, 535, 539, 536, 535, 537,
+ 542, 544, 539, 540, 537, 541, 545, 546, 547, 548,
+ 544, 551, 555, 545, 541, 549, 550, 543, 542, 553,
+ 543, 546, 0, 0, 549, 554, 569, 551, 544, 558,
+ 547, 548, 557, 545, 546, 547, 548, 554, 551, 555,
+ 550, 556, 549, 550, 558, 557, 560, 561, 570, 556,
+ 553, 566, 554, 562, 567, 560, 558, 569, 563, 557,
+
+ 563, 562, 568, 572, 566, 561, 567, 0, 556, 568,
+ 571, 573, 574, 560, 561, 575, 572, 577, 566, 570,
+ 562, 567, 578, 576, 573, 563, 580, 575, 579, 568,
+ 572, 578, 571, 581, 574, 576, 582, 571, 573, 574,
+ 585, 581, 575, 583, 577, 584, 579, 586, 580, 578,
+ 576, 583, 585, 580, 587, 579, 588, 590, 582, 586,
+ 581, 591, 594, 582, 588, 589, 590, 585, 584, 587,
+ 583, 589, 584, 592, 586, 598, 596, 597, 0, 593,
+ 594, 587, 591, 588, 590, 592, 593, 600, 591, 594,
+ 597, 599, 589, 601, 598, 603, 602, 601, 599, 604,
+
+ 592, 605, 598, 0, 597, 608, 593, 596, 609, 600,
+ 602, 606, 607, 603, 600, 611, 610, 612, 599, 0,
+ 613, 609, 603, 602, 601, 610, 614, 605, 605, 0,
+ 604, 608, 608, 606, 607, 609, 0, 618, 606, 607,
+ 616, 0, 613, 610, 0, 615, 611, 613, 612, 614,
+ 615, 0, 615, 614, 615, 623, 616, 619, 621, 620,
+ 618, 626, 622, 615, 618, 627, 624, 616, 620, 619,
+ 622, 621, 615, 629, 623, 624, 625, 615, 625, 615,
+ 630, 615, 623, 631, 619, 621, 620, 632, 626, 622,
+ 633, 631, 627, 624, 634, 635, 637, 629, 636, 644,
+
+ 629, 638, 630, 625, 639, 636, 640, 630, 641, 645,
+ 631, 647, 642, 0, 632, 640, 634, 633, 637, 646,
+ 638, 634, 635, 637, 651, 636, 639, 648, 638, 641,
+ 644, 639, 642, 640, 650, 641, 649, 654, 658, 642,
+ 645, 646, 647, 653, 649, 648, 646, 653, 652, 655,
+ 650, 651, 656, 657, 648, 652, 655, 661, 0, 656,
+ 659, 650, 657, 649, 658, 658, 661, 659, 654, 660,
+ 653, 660, 667, 662, 664, 652, 655, 662, 664, 656,
+ 657, 665, 665, 666, 661, 671, 668, 659, 670, 672,
+ 669, 673, 666, 671, 667, 668, 660, 669, 674, 667,
+
+ 662, 675, 672, 673, 676, 664, 674, 677, 665, 679,
+ 666, 670, 671, 668, 680, 670, 672, 669, 673, 681,
+ 683, 678, 684, 675, 676, 674, 680, 679, 675, 677,
+ 678, 676, 682, 685, 677, 686, 679, 0, 682, 689,
+ 681, 680, 683, 688, 692, 0, 681, 683, 678, 690,
+ 691, 695, 689, 684, 691, 693, 0, 690, 696, 682,
+ 694, 686, 686, 693, 685, 688, 689, 697, 694, 698,
+ 688, 692, 695, 701, 706, 697, 690, 698, 695, 702,
+ 699, 691, 693, 700, 707, 702, 701, 694, 699, 696,
+ 703, 700, 704, 705, 697, 708, 698, 706, 707, 710,
+
+ 701, 706, 703, 711, 713, 709, 702, 699, 718, 712,
+ 700, 707, 709, 708, 717, 705, 712, 703, 704, 704,
+ 705, 716, 708, 721, 0, 711, 710, 723, 0, 724,
+ 711, 727, 709, 725, 728, 713, 712, 729, 0, 718,
+ 717, 717, 726, 716, 726, 725, 728, 731, 716, 733,
+ 721, 723, 730, 727, 723, 724, 724, 732, 727, 730,
+ 725, 728, 732, 734, 729, 733, 736, 735, 738, 726,
+ 739, 746, 740, 731, 731, 735, 733, 738, 741, 730,
+ 742, 744, 743, 739, 732, 741, 734, 742, 736, 743,
+ 734, 745, 753, 736, 735, 738, 747, 739, 740, 740,
+
+ 749, 748, 746, 747, 751, 741, 744, 742, 744, 743,
+ 752, 754, 752, 745, 748, 0, 753, 755, 745, 753,
+ 756, 749, 761, 747, 758, 757, 751, 749, 748, 756,
+ 759, 751, 757, 760, 759, 767, 762, 752, 764, 763,
+ 766, 769, 754, 755, 755, 764, 758, 756, 763, 761,
+ 767, 758, 757, 766, 765, 760, 768, 759, 762, 785,
+ 760, 765, 767, 762, 770, 764, 763, 766, 771, 774,
+ 768, 770, 769, 772, 773, 771, 779, 776, 0, 772,
+ 781, 765, 780, 768, 775, 782, 773, 775, 776, 774,
+ 785, 770, 784, 782, 786, 771, 774, 791, 781, 791,
+
+ 772, 773, 775, 779, 776, 783, 780, 781, 783, 780,
+ 784, 775, 782, 787, 775, 788, 789, 790, 792, 784,
+ 787, 786, 793, 783, 791, 789, 794, 792, 797, 788,
+ 790, 798, 783, 799, 0, 783, 800, 794, 795, 804,
+ 787, 801, 788, 789, 790, 792, 802, 795, 793, 793,
+ 805, 0, 802, 794, 799, 801, 0, 812, 804, 797,
+ 799, 807, 798, 806, 805, 795, 804, 800, 801, 807,
+ 802, 808, 806, 802, 809, 813, 0, 805, 811, 802,
+ 812, 814, 808, 809, 812, 811, 816, 815, 807, 817,
+ 806, 819, 821, 817, 818, 822, 823, 813, 808, 820,
+
+ 831, 809, 813, 814, 816, 811, 818, 821, 814, 815,
+ 822, 825, 820, 816, 815, 824, 817, 838, 819, 821,
+ 825, 818, 822, 826, 827, 828, 820, 823, 829, 830,
+ 824, 831, 833, 832, 834, 835, 836, 837, 825, 832,
+ 833, 834, 824, 839, 826, 841, 829, 843, 838, 0,
+ 826, 827, 828, 845, 847, 829, 830, 842, 0, 833,
+ 832, 834, 835, 836, 837, 846, 842, 839, 849, 844,
+ 839, 844, 848, 853, 848, 849, 841, 852, 843, 848,
+ 845, 850, 851, 852, 842, 847, 855, 848, 850, 851,
+ 856, 846, 846, 854, 854, 849, 844, 856, 858, 848,
+
+ 853, 848, 859, 860, 852, 862, 848, 864, 850, 851,
+ 861, 861, 855, 855, 863, 863, 858, 856, 864, 868,
+ 854, 860, 859, 866, 867, 858, 868, 869, 0, 859,
+ 860, 862, 862, 870, 864, 871, 873, 861, 872, 874,
+ 875, 863, 879, 873, 0, 866, 868, 869, 875, 876,
+ 866, 874, 880, 877, 869, 867, 872, 871, 880, 878,
+ 870, 881, 871, 873, 878, 872, 874, 875, 882, 879,
+ 876, 877, 885, 883, 881, 878, 876, 884, 886, 880,
+ 877, 884, 887, 888, 889, 892, 878, 890, 881, 894,
+ 891, 878, 891, 886, 895, 897, 893, 898, 888, 882,
+
+ 883, 893, 890, 885, 899, 886, 900, 889, 884, 895,
+ 888, 889, 901, 887, 890, 902, 892, 891, 908, 897,
+ 894, 895, 897, 893, 898, 903, 906, 900, 909, 908,
+ 910, 899, 911, 900, 901, 916, 902, 909, 915, 901,
+ 920, 906, 902, 903, 908, 908, 918, 0, 910, 919,
+ 911, 915, 903, 906, 917, 909, 908, 910, 922, 911,
+ 924, 923, 926, 925, 917, 915, 916, 920, 923, 925,
+ 929, 932, 918, 918, 919, 933, 919, 926, 922, 927,
+ 928, 917, 929, 934, 930, 922, 924, 924, 923, 926,
+ 925, 930, 934, 932, 927, 928, 935, 929, 932, 936,
+
+ 933, 0, 933, 937, 937, 938, 927, 928, 939, 940,
+ 934, 930, 941, 942, 935, 944, 945, 943, 949, 0,
+ 947, 0, 942, 935, 943, 0, 936, 938, 947, 948,
+ 937, 940, 938, 939, 941, 939, 940, 950, 945, 941,
+ 942, 952, 948, 945, 943, 949, 944, 947, 951, 954,
+ 953, 951, 950, 957, 958, 965, 948, 955, 959, 952,
+ 966, 958, 961, 968, 950, 953, 951, 957, 952, 959,
+ 963, 954, 964, 965, 964, 951, 954, 953, 951, 955,
+ 957, 958, 965, 961, 955, 959, 967, 966, 969, 961,
+ 968, 963, 971, 970, 972, 973, 969, 963, 974, 964,
+
+ 977, 978, 0, 979, 967, 0, 985, 985, 972, 980,
+ 981, 982, 0, 967, 971, 969, 970, 974, 977, 971,
+ 970, 972, 973, 983, 980, 974, 984, 977, 978, 979,
+ 979, 986, 981, 985, 982, 983, 980, 981, 982, 986,
+ 987, 988, 990, 987, 993, 989, 991, 995, 984, 988,
+ 983, 989, 991, 984, 994, 998, 996, 990, 986, 997,
+ 999, 995, 1000, 1001, 1002, 1004, 1005, 987, 988, 990,
+ 996, 993, 989, 991, 995, 1007, 1000, 1008, 994, 1010,
+ 1003, 994, 998, 996, 1013, 997, 997, 999, 1003, 1000,
+ 1001, 1002, 1004, 1005, 1012, 1009, 1011, 1007, 1014, 1015,
+
+ 1017, 1016, 1007, 1009, 1008, 1011, 1010, 1003, 1013, 1016,
+ 1019, 1013, 1021, 1014, 1022, 1012, 1020, 1020, 0, 1025,
+ 1023, 1012, 1009, 1011, 1014, 1014, 1015, 1017, 1016, 1022,
+ 1024, 1027, 1024, 1025, 1029, 1031, 1028, 1019, 1021, 1021,
+ 1014, 1022, 1023, 1020, 1026, 1032, 1025, 1023, 1028, 1030,
+ 1026, 1036, 1029, 1027, 1037, 1034, 1038, 1024, 1027, 0,
+ 0, 1029, 1034, 1028, 0, 1039, 1031, 1030, 1032, 1036,
+ 1042, 1026, 1032, 1039, 1041, 1044, 1030, 1046, 1036, 1048,
+ 1037, 1037, 1034, 1045, 1047, 1042, 1041, 1038, 1049, 1051,
+ 1050, 1039, 1039, 1055, 0, 1052, 1051, 1042, 1056, 1044,
+
+ 1039, 1041, 1044, 1048, 1046, 1045, 1048, 1047, 1054, 1059,
+ 1045, 1047, 1050, 1053, 1060, 1049, 1051, 1050, 1052, 1056,
+ 1053, 1058, 1052, 1064, 1055, 1056, 1061, 1067, 1070, 1072,
+ 1054, 1059, 1058, 1060, 1074, 1054, 1059, 1075, 0, 1077,
+ 1053, 1060, 1080, 1084, 1077, 1078, 1076, 0, 1058, 1064,
+ 1064, 1061, 1083, 1061, 1067, 1070, 1072, 1076, 1085, 1086,
+ 1087, 1088, 1089, 1075, 1075, 1074, 1077, 1078, 1084, 1080,
+ 1084, 1095, 1078, 1076, 1083, 1090, 1091, 1089, 1092, 1083,
+ 1085, 1093, 1096, 1094, 1090, 1085, 1086, 1087, 1088, 1089,
+ 1094, 1091, 1098, 1092, 1097, 1097, 1093, 1099, 1095, 1098,
+
+ 1096, 1100, 1090, 1091, 1100, 1092, 1102, 1101, 1093, 1096,
+ 1094, 1099, 1105, 1103, 1104, 1102, 1107, 1118, 1108, 1098,
+ 1101, 1097, 1110, 1113, 1099, 1107, 1112, 1117, 1100, 1111,
+ 0, 1115, 1113, 1102, 1101, 1103, 1104, 1114, 1112, 1105,
+ 1103, 1104, 1115, 1107, 1108, 1108, 1114, 1111, 1118, 1110,
+ 1113, 1116, 1120, 1112, 1117, 1119, 1111, 1126, 1115, 1116,
+ 1120, 1121, 1125, 1127, 1114, 1128, 1129, 1119, 1121, 1125,
+ 1131, 1133, 1132, 0, 1137, 1129, 1139, 1128, 1116, 1120,
+ 1132, 1126, 1119, 1140, 1126, 1141, 1138, 1142, 1121, 1125,
+ 1127, 1138, 1128, 1129, 1139, 1145, 1144, 1131, 1133, 1132,
+
+ 1137, 1137, 1146, 1139, 1147, 1140, 1142, 1141, 1144, 1148,
+ 1140, 1149, 1141, 1138, 1142, 1150, 1147, 1145, 1151, 0,
+ 1152, 1154, 1145, 1144, 1146, 1155, 1157, 1158, 0, 1146,
+ 1161, 1147, 1166, 1159, 1164, 0, 1148, 1160, 1149, 0,
+ 1155, 1158, 1164, 1154, 1162, 1151, 1150, 1152, 1154, 1167,
+ 1157, 1159, 1155, 1157, 1158, 1160, 1161, 1161, 1165, 1166,
+ 1159, 1164, 1162, 1168, 1160, 1169, 1165, 1167, 1171, 1172,
+ 1174, 1162, 1176, 0, 1177, 1183, 1167, 1179, 1178, 1176,
+ 1180, 1182, 1168, 1172, 1181, 1165, 1171, 1169, 1184, 1185,
+ 1168, 1192, 1169, 1181, 1182, 1171, 1172, 1174, 1188, 1176,
+
+ 1177, 1177, 1178, 1194, 1179, 1178, 1183, 1180, 1182, 1191,
+ 1192, 1181, 1185, 1193, 1199, 1184, 1185, 1191, 1192, 1188,
+ 1195, 1193, 1196, 1198, 1198, 1188, 1197, 1200, 1202, 1194,
+ 1194, 1195, 1199, 1197, 1200, 1204, 1191, 1203, 1205, 1206,
+ 1193, 1199, 1208, 1209, 1196, 1213, 1203, 1195, 1214, 1196,
+ 1198, 0, 1202, 1197, 1200, 1202, 1217, 1206, 1209, 1215,
+ 1208, 1205, 1204, 1218, 1203, 1205, 1206, 1213, 1219, 1208,
+ 1209, 1210, 1213, 1210, 1214, 1214, 1219, 1215, 1217, 1220,
+ 1221, 1218, 1222, 1217, 1224, 1223, 1215, 1229, 1226, 1225,
+ 1218, 1220, 1224, 1227, 1227, 1219, 1223, 1228, 1210, 1230,
+
+ 1222, 1232, 1235, 1236, 1240, 1228, 1220, 1221, 1225, 1222,
+ 1226, 1224, 1223, 1242, 1229, 1226, 1225, 1234, 1233, 1237,
+ 1227, 1230, 1234, 1238, 1228, 1233, 1230, 1237, 1232, 1235,
+ 1236, 1240, 1239, 1241, 1243, 1246, 1245, 1247, 1238, 1239,
+ 1242, 1248, 1243, 1249, 1234, 1233, 1237, 1250, 1241, 1245,
+ 1238, 1251, 0, 1253, 1255, 1256, 1259, 1246, 1260, 1239,
+ 1241, 1243, 1246, 1245, 1247, 1261, 1263, 1266, 1248, 1250,
+ 1249, 1271, 1267, 1273, 1250, 1259, 1275, 1256, 1251, 1253,
+ 1253, 1255, 1256, 1259, 1265, 1260, 1279, 1261, 1263, 1276,
+ 1280, 1265, 1261, 1263, 1266, 1267, 1273, 1278, 1271, 1267,
+
+ 1273, 1276, 1282, 1275, 1284, 1286, 1278, 1287, 0, 1294,
+ 1295, 1265, 1292, 1279, 1293, 1297, 1276, 1280, 1299, 1300,
+ 1286, 1293, 0, 0, 1278, 1298, 1299, 1297, 1295, 1282,
+ 0, 1284, 1286, 1287, 1287, 1292, 1294, 1295, 1298, 1292,
+ 0, 1293, 1297, 0, 0, 1299, 1300, 0, 0, 0,
+ 0, 0, 1298, 1303, 1303, 1303, 1303, 1303, 1303, 1303,
+ 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1305, 1305, 1305,
+ 1305, 1305, 1305, 1305, 1306, 1306, 1306, 1306, 1306, 1306,
+ 1306, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1309, 1309,
+ 0, 1309, 1309, 1309, 1309, 1310, 1310, 0, 0, 0,
+
+ 1310, 1310, 1311, 1311, 0, 0, 1311, 0, 1311, 1312,
+ 0, 0, 0, 0, 0, 1312, 1313, 1313, 0, 0,
+ 0, 1313, 1313, 1314, 0, 0, 0, 0, 0, 1314,
+ 1315, 1315, 0, 1315, 1315, 1315, 1315, 1316, 1316, 0,
+ 1316, 1316, 1316, 1316, 1302, 1302, 1302, 1302, 1302, 1302,
+ 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
+ 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
+ 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
+ 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
+ 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
+
+ 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302
+ } ;
+
+static yy_state_type yy_last_accepting_state;
+static char *yy_last_accepting_cpos;
+
+extern int yy_flex_debug;
+int yy_flex_debug = 0;
+
+/* The intent behind this definition is that it'll catch
+ * any uses of REJECT which flex missed.
+ */
+#define REJECT reject_used_but_not_detected
+static int yy_more_flag = 0;
+static int yy_more_len = 0;
+#define yymore() ((yy_more_flag) = 1)
+#define YY_MORE_ADJ (yy_more_len)
+#define YY_RESTORE_YY_MORE_OFFSET
+char *yytext;
+#line 1 "util/configlexer.lex"
+#line 2 "util/configlexer.lex"
+/*
+ * configlexer.lex - lexical analyzer for unbound config file
+ *
+ * Copyright (c) 2001-2006, NLnet Labs. All rights reserved
+ *
+ * See LICENSE for the license.
+ *
+ */
+
+#include <ctype.h>
+#include <string.h>
+#include <strings.h>
+
+#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;
+};
+static struct inc_state parse_stack[MAXINCLUDES];
+static YY_BUFFER_STATE include_stack[MAXINCLUDES];
+static int config_include_stack_ptr = 0;
+static int inc_prev = 0;
+static int num_args = 0;
+
+static void config_start_include(const char* filename)
+{
+ FILE *input;
+ if(strlen(filename) == 0) {
+ ub_c_error_msg("empty include file name");
+ return;
+ }
+ if(config_include_stack_ptr >= MAXINCLUDES) {
+ ub_c_error_msg("includes nested too deeply, skipped (>%d)", MAXINCLUDES);
+ return;
+ }
+ if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
+ strlen(cfg_parser->chroot)) == 0) {
+ filename += strlen(cfg_parser->chroot);
+ }
+ input = fopen(filename, "r");
+ if(!input) {
+ ub_c_error_msg("cannot open include file '%s': %s",
+ filename, strerror(errno));
+ return;
+ }
+ LEXOUT(("switch_to_include_file(%s) ", filename));
+ parse_stack[config_include_stack_ptr].filename = cfg_parser->filename;
+ parse_stack[config_include_stack_ptr].line = cfg_parser->line;
+ include_stack[config_include_stack_ptr] = YY_CURRENT_BUFFER;
+ cfg_parser->filename = strdup(filename);
+ cfg_parser->line = 1;
+ yy_switch_to_buffer(yy_create_buffer(input,YY_BUF_SIZE));
+ ++config_include_stack_ptr;
+}
+
+static void config_end_include(void)
+{
+ --config_include_stack_ptr;
+ free(cfg_parser->filename);
+ cfg_parser->filename = parse_stack[config_include_stack_ptr].filename;
+ cfg_parser->line = parse_stack[config_include_stack_ptr].line;
+ yy_delete_buffer(YY_CURRENT_BUFFER);
+ yy_switch_to_buffer(include_stack[config_include_stack_ptr]);
+}
+
+#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 100 "util/configlexer.lex"
+#ifndef YY_NO_UNPUT
+#define YY_NO_UNPUT 1
+#endif
+#ifndef YY_NO_INPUT
+#define YY_NO_INPUT 1
+#endif
+
+#line 1829 "<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 );
+
+int yyget_leng (void );
+
+char *yyget_text (void );
+
+int yyget_lineno (void );
+
+void yyset_lineno (int line_number );
+
+/* Macros after this point can all be overridden by user definitions in
+ * section 1.
+ */
+
+#ifndef YY_SKIP_YYWRAP
+#ifdef __cplusplus
+extern "C" int yywrap (void );
+#else
+extern int yywrap (void );
+#endif
+#endif
+
+#ifndef yytext_ptr
+static void yy_flex_strncpy (char *,yyconst char *,int );
+#endif
+
+#ifdef YY_NEED_STRLEN
+static int yy_flex_strlen (yyconst char * );
+#endif
+
+#ifndef YY_NO_INPUT
+
+#ifdef __cplusplus
+static int yyinput (void );
+#else
+static int input (void );
+#endif
+
+#endif
+
+/* Amount of stuff to slurp up with each read. */
+#ifndef YY_READ_BUF_SIZE
+#define YY_READ_BUF_SIZE 8192
+#endif
+
+/* Copy whatever the last rule matched to the standard output. */
+#ifndef ECHO
+/* This used to be an fputs(), but since the string might contain NUL's,
+ * we now use fwrite().
+ */
+#define ECHO 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 = '*'; \
+ unsigned n; \
+ for ( n = 0; n < max_size && \
+ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
+ buf[n] = (char) c; \
+ if ( c == '\n' ) \
+ buf[n++] = (char) c; \
+ if ( c == EOF && ferror( yyin ) ) \
+ YY_FATAL_ERROR( "input in flex scanner failed" ); \
+ result = n; \
+ } \
+ else \
+ { \
+ errno=0; \
+ while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
+ { \
+ if( errno != EINTR) \
+ { \
+ YY_FATAL_ERROR( "input in flex scanner failed" ); \
+ break; \
+ } \
+ errno=0; \
+ clearerr(yyin); \
+ } \
+ }\
+\
+
+#endif
+
+/* No semi-colon after return; correct usage is to write "yyterminate();" -
+ * we don't want an extra ';' after the "return" because that will cause
+ * some compilers to complain about unreachable statements.
+ */
+#ifndef yyterminate
+#define yyterminate() return YY_NULL
+#endif
+
+/* Number of entries by which start-condition stack grows. */
+#ifndef YY_START_STACK_INCR
+#define YY_START_STACK_INCR 25
+#endif
+
+/* Report a fatal error. */
+#ifndef YY_FATAL_ERROR
+#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
+#endif
+
+/* end tables serialization structures and prototypes */
+
+/* Default declaration of generated scanner - a define so the user can
+ * easily add parameters.
+ */
+#ifndef YY_DECL
+#define YY_DECL_IS_OURS 1
+
+extern int yylex (void);
+
+#define YY_DECL int yylex (void)
+#endif /* !YY_DECL */
+
+/* Code executed at the beginning of each rule, after yytext and yyleng
+ * have been set up.
+ */
+#ifndef YY_USER_ACTION
+#define YY_USER_ACTION
+#endif
+
+/* Code executed at the end of each rule. */
+#ifndef YY_BREAK
+#define YY_BREAK break;
+#endif
+
+#define YY_RULE_SETUP \
+ YY_USER_ACTION
+
+/** The main scanner function which does all the work.
+ */
+YY_DECL
+{
+ register yy_state_type yy_current_state;
+ register char *yy_cp, *yy_bp;
+ register int yy_act;
+
+#line 120 "util/configlexer.lex"
+
+#line 2016 "<stdout>"
+
+ if ( !(yy_init) )
+ {
+ (yy_init) = 1;
+
+#ifdef YY_USER_INIT
+ YY_USER_INIT;
+#endif
+
+ if ( ! (yy_start) )
+ (yy_start) = 1; /* first start state */
+
+ if ( ! yyin )
+ yyin = stdin;
+
+ if ( ! yyout )
+ yyout = stdout;
+
+ if ( ! YY_CURRENT_BUFFER ) {
+ yyensure_buffer_stack ();
+ YY_CURRENT_BUFFER_LVALUE =
+ yy_create_buffer(yyin,YY_BUF_SIZE );
+ }
+
+ yy_load_buffer_state( );
+ }
+
+ while ( 1 ) /* loops until end-of-file is reached */
+ {
+ (yy_more_len) = 0;
+ if ( (yy_more_flag) )
+ {
+ (yy_more_len) = (yy_c_buf_p) - (yytext_ptr);
+ (yy_more_flag) = 0;
+ }
+ yy_cp = (yy_c_buf_p);
+
+ /* Support of yytext. */
+ *yy_cp = (yy_hold_char);
+
+ /* yy_bp points to the position in yy_ch_buf of the start of
+ * the current run.
+ */
+ yy_bp = yy_cp;
+
+ yy_current_state = (yy_start);
+yy_match:
+ do
+ {
+ register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
+ if ( yy_accept[yy_current_state] )
+ {
+ (yy_last_accepting_state) = yy_current_state;
+ (yy_last_accepting_cpos) = yy_cp;
+ }
+ while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
+ {
+ yy_current_state = (int) yy_def[yy_current_state];
+ if ( yy_current_state >= 1303 )
+ 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] != 3745 );
+
+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 121 "util/configlexer.lex"
+{
+ LEXOUT(("SP ")); /* ignore */ }
+ YY_BREAK
+case 2:
+YY_RULE_SETUP
+#line 123 "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 126 "util/configlexer.lex"
+{ YDVAR(0, VAR_SERVER) }
+ YY_BREAK
+case 4:
+YY_RULE_SETUP
+#line 127 "util/configlexer.lex"
+{ YDVAR(1, VAR_NUM_THREADS) }
+ YY_BREAK
+case 5:
+YY_RULE_SETUP
+#line 128 "util/configlexer.lex"
+{ YDVAR(1, VAR_VERBOSITY) }
+ YY_BREAK
+case 6:
+YY_RULE_SETUP
+#line 129 "util/configlexer.lex"
+{ YDVAR(1, VAR_PORT) }
+ YY_BREAK
+case 7:
+YY_RULE_SETUP
+#line 130 "util/configlexer.lex"
+{ YDVAR(1, VAR_OUTGOING_RANGE) }
+ YY_BREAK
+case 8:
+YY_RULE_SETUP
+#line 131 "util/configlexer.lex"
+{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
+ YY_BREAK
+case 9:
+YY_RULE_SETUP
+#line 132 "util/configlexer.lex"
+{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
+ YY_BREAK
+case 10:
+YY_RULE_SETUP
+#line 133 "util/configlexer.lex"
+{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
+ YY_BREAK
+case 11:
+YY_RULE_SETUP
+#line 134 "util/configlexer.lex"
+{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
+ YY_BREAK
+case 12:
+YY_RULE_SETUP
+#line 135 "util/configlexer.lex"
+{ YDVAR(1, VAR_DO_IP4) }
+ YY_BREAK
+case 13:
+YY_RULE_SETUP
+#line 136 "util/configlexer.lex"
+{ YDVAR(1, VAR_DO_IP6) }
+ YY_BREAK
+case 14:
+YY_RULE_SETUP
+#line 137 "util/configlexer.lex"
+{ YDVAR(1, VAR_DO_UDP) }
+ YY_BREAK
+case 15:
+YY_RULE_SETUP
+#line 138 "util/configlexer.lex"
+{ YDVAR(1, VAR_DO_TCP) }
+ YY_BREAK
+case 16:
+YY_RULE_SETUP
+#line 139 "util/configlexer.lex"
+{ YDVAR(1, VAR_TCP_UPSTREAM) }
+ YY_BREAK
+case 17:
+YY_RULE_SETUP
+#line 140 "util/configlexer.lex"
+{ YDVAR(1, VAR_SSL_UPSTREAM) }
+ YY_BREAK
+case 18:
+YY_RULE_SETUP
+#line 141 "util/configlexer.lex"
+{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
+ YY_BREAK
+case 19:
+YY_RULE_SETUP
+#line 142 "util/configlexer.lex"
+{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
+ YY_BREAK
+case 20:
+YY_RULE_SETUP
+#line 143 "util/configlexer.lex"
+{ YDVAR(1, VAR_SSL_PORT) }
+ YY_BREAK
+case 21:
+YY_RULE_SETUP
+#line 144 "util/configlexer.lex"
+{ YDVAR(1, VAR_DO_DAEMONIZE) }
+ YY_BREAK
+case 22:
+YY_RULE_SETUP
+#line 145 "util/configlexer.lex"
+{ YDVAR(1, VAR_INTERFACE) }
+ YY_BREAK
+case 23:
+YY_RULE_SETUP
+#line 146 "util/configlexer.lex"
+{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
+ YY_BREAK
+case 24:
+YY_RULE_SETUP
+#line 147 "util/configlexer.lex"
+{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
+ YY_BREAK
+case 25:
+YY_RULE_SETUP
+#line 148 "util/configlexer.lex"
+{ YDVAR(1, VAR_SO_RCVBUF) }
+ YY_BREAK
+case 26:
+YY_RULE_SETUP
+#line 149 "util/configlexer.lex"
+{ YDVAR(1, VAR_SO_SNDBUF) }
+ YY_BREAK
+case 27:
+YY_RULE_SETUP
+#line 150 "util/configlexer.lex"
+{ YDVAR(1, VAR_CHROOT) }
+ YY_BREAK
+case 28:
+YY_RULE_SETUP
+#line 151 "util/configlexer.lex"
+{ YDVAR(1, VAR_USERNAME) }
+ YY_BREAK
+case 29:
+YY_RULE_SETUP
+#line 152 "util/configlexer.lex"
+{ YDVAR(1, VAR_DIRECTORY) }
+ YY_BREAK
+case 30:
+YY_RULE_SETUP
+#line 153 "util/configlexer.lex"
+{ YDVAR(1, VAR_LOGFILE) }
+ YY_BREAK
+case 31:
+YY_RULE_SETUP
+#line 154 "util/configlexer.lex"
+{ YDVAR(1, VAR_PIDFILE) }
+ YY_BREAK
+case 32:
+YY_RULE_SETUP
+#line 155 "util/configlexer.lex"
+{ YDVAR(1, VAR_ROOT_HINTS) }
+ YY_BREAK
+case 33:
+YY_RULE_SETUP
+#line 156 "util/configlexer.lex"
+{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
+ YY_BREAK
+case 34:
+YY_RULE_SETUP
+#line 157 "util/configlexer.lex"
+{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
+ YY_BREAK
+case 35:
+YY_RULE_SETUP
+#line 158 "util/configlexer.lex"
+{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
+ YY_BREAK
+case 36:
+YY_RULE_SETUP
+#line 159 "util/configlexer.lex"
+{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
+ YY_BREAK
+case 37:
+YY_RULE_SETUP
+#line 160 "util/configlexer.lex"
+{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
+ YY_BREAK
+case 38:
+YY_RULE_SETUP
+#line 161 "util/configlexer.lex"
+{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
+ YY_BREAK
+case 39:
+YY_RULE_SETUP
+#line 162 "util/configlexer.lex"
+{ YDVAR(1, VAR_CACHE_MAX_TTL) }
+ YY_BREAK
+case 40:
+YY_RULE_SETUP
+#line 163 "util/configlexer.lex"
+{ YDVAR(1, VAR_CACHE_MIN_TTL) }
+ YY_BREAK
+case 41:
+YY_RULE_SETUP
+#line 164 "util/configlexer.lex"
+{ YDVAR(1, VAR_INFRA_HOST_TTL) }
+ YY_BREAK
+case 42:
+YY_RULE_SETUP
+#line 165 "util/configlexer.lex"
+{ YDVAR(1, VAR_INFRA_LAME_TTL) }
+ YY_BREAK
+case 43:
+YY_RULE_SETUP
+#line 166 "util/configlexer.lex"
+{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
+ YY_BREAK
+case 44:
+YY_RULE_SETUP
+#line 167 "util/configlexer.lex"
+{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
+ YY_BREAK
+case 45:
+YY_RULE_SETUP
+#line 168 "util/configlexer.lex"
+{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
+ YY_BREAK
+case 46:
+YY_RULE_SETUP
+#line 169 "util/configlexer.lex"
+{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
+ YY_BREAK
+case 47:
+YY_RULE_SETUP
+#line 170 "util/configlexer.lex"
+{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
+ YY_BREAK
+case 48:
+YY_RULE_SETUP
+#line 171 "util/configlexer.lex"
+{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
+ YY_BREAK
+case 49:
+YY_RULE_SETUP
+#line 172 "util/configlexer.lex"
+{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
+ YY_BREAK
+case 50:
+YY_RULE_SETUP
+#line 173 "util/configlexer.lex"
+{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
+ YY_BREAK
+case 51:
+YY_RULE_SETUP
+#line 174 "util/configlexer.lex"
+{ YDVAR(1, VAR_HARDEN_GLUE) }
+ YY_BREAK
+case 52:
+YY_RULE_SETUP
+#line 175 "util/configlexer.lex"
+{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
+ YY_BREAK
+case 53:
+YY_RULE_SETUP
+#line 176 "util/configlexer.lex"
+{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
+ YY_BREAK
+case 54:
+YY_RULE_SETUP
+#line 177 "util/configlexer.lex"
+{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
+ YY_BREAK
+case 55:
+YY_RULE_SETUP
+#line 178 "util/configlexer.lex"
+{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
+ YY_BREAK
+case 56:
+YY_RULE_SETUP
+#line 179 "util/configlexer.lex"
+{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
+ YY_BREAK
+case 57:
+YY_RULE_SETUP
+#line 180 "util/configlexer.lex"
+{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
+ YY_BREAK
+case 58:
+YY_RULE_SETUP
+#line 181 "util/configlexer.lex"
+{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
+ YY_BREAK
+case 59:
+YY_RULE_SETUP
+#line 182 "util/configlexer.lex"
+{ YDVAR(1, VAR_PREFETCH_KEY) }
+ YY_BREAK
+case 60:
+YY_RULE_SETUP
+#line 183 "util/configlexer.lex"
+{ YDVAR(1, VAR_PREFETCH) }
+ YY_BREAK
+case 61:
+YY_RULE_SETUP
+#line 184 "util/configlexer.lex"
+{ YDVAR(0, VAR_STUB_ZONE) }
+ YY_BREAK
+case 62:
+YY_RULE_SETUP
+#line 185 "util/configlexer.lex"
+{ YDVAR(1, VAR_NAME) }
+ YY_BREAK
+case 63:
+YY_RULE_SETUP
+#line 186 "util/configlexer.lex"
+{ YDVAR(1, VAR_STUB_ADDR) }
+ YY_BREAK
+case 64:
+YY_RULE_SETUP
+#line 187 "util/configlexer.lex"
+{ YDVAR(1, VAR_STUB_HOST) }
+ YY_BREAK
+case 65:
+YY_RULE_SETUP
+#line 188 "util/configlexer.lex"
+{ YDVAR(1, VAR_STUB_PRIME) }
+ YY_BREAK
+case 66:
+YY_RULE_SETUP
+#line 189 "util/configlexer.lex"
+{ YDVAR(0, VAR_FORWARD_ZONE) }
+ YY_BREAK
+case 67:
+YY_RULE_SETUP
+#line 190 "util/configlexer.lex"
+{ YDVAR(1, VAR_FORWARD_ADDR) }
+ YY_BREAK
+case 68:
+YY_RULE_SETUP
+#line 191 "util/configlexer.lex"
+{ YDVAR(1, VAR_FORWARD_HOST) }
+ YY_BREAK
+case 69:
+YY_RULE_SETUP
+#line 192 "util/configlexer.lex"
+{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
+ YY_BREAK
+case 70:
+YY_RULE_SETUP
+#line 193 "util/configlexer.lex"
+{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
+ YY_BREAK
+case 71:
+YY_RULE_SETUP
+#line 194 "util/configlexer.lex"
+{ YDVAR(2, VAR_ACCESS_CONTROL) }
+ YY_BREAK
+case 72:
+YY_RULE_SETUP
+#line 195 "util/configlexer.lex"
+{ YDVAR(1, VAR_HIDE_IDENTITY) }
+ YY_BREAK
+case 73:
+YY_RULE_SETUP
+#line 196 "util/configlexer.lex"
+{ YDVAR(1, VAR_HIDE_VERSION) }
+ YY_BREAK
+case 74:
+YY_RULE_SETUP
+#line 197 "util/configlexer.lex"
+{ YDVAR(1, VAR_IDENTITY) }
+ YY_BREAK
+case 75:
+YY_RULE_SETUP
+#line 198 "util/configlexer.lex"
+{ YDVAR(1, VAR_VERSION) }
+ YY_BREAK
+case 76:
+YY_RULE_SETUP
+#line 199 "util/configlexer.lex"
+{ YDVAR(1, VAR_MODULE_CONF) }
+ YY_BREAK
+case 77:
+YY_RULE_SETUP
+#line 200 "util/configlexer.lex"
+{ YDVAR(1, VAR_DLV_ANCHOR) }
+ YY_BREAK
+case 78:
+YY_RULE_SETUP
+#line 201 "util/configlexer.lex"
+{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
+ YY_BREAK
+case 79:
+YY_RULE_SETUP
+#line 202 "util/configlexer.lex"
+{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
+ YY_BREAK
+case 80:
+YY_RULE_SETUP
+#line 203 "util/configlexer.lex"
+{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
+ YY_BREAK
+case 81:
+YY_RULE_SETUP
+#line 204 "util/configlexer.lex"
+{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
+ YY_BREAK
+case 82:
+YY_RULE_SETUP
+#line 205 "util/configlexer.lex"
+{ YDVAR(1, VAR_TRUST_ANCHOR) }
+ YY_BREAK
+case 83:
+YY_RULE_SETUP
+#line 206 "util/configlexer.lex"
+{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
+ YY_BREAK
+case 84:
+YY_RULE_SETUP
+#line 207 "util/configlexer.lex"
+{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
+ YY_BREAK
+case 85:
+YY_RULE_SETUP
+#line 208 "util/configlexer.lex"
+{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
+ YY_BREAK
+case 86:
+YY_RULE_SETUP
+#line 209 "util/configlexer.lex"
+{ YDVAR(1, VAR_BOGUS_TTL) }
+ YY_BREAK
+case 87:
+YY_RULE_SETUP
+#line 210 "util/configlexer.lex"
+{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
+ YY_BREAK
+case 88:
+YY_RULE_SETUP
+#line 211 "util/configlexer.lex"
+{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
+ YY_BREAK
+case 89:
+YY_RULE_SETUP
+#line 212 "util/configlexer.lex"
+{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
+ YY_BREAK
+case 90:
+YY_RULE_SETUP
+#line 213 "util/configlexer.lex"
+{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
+ YY_BREAK
+case 91:
+YY_RULE_SETUP
+#line 214 "util/configlexer.lex"
+{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
+ YY_BREAK
+case 92:
+YY_RULE_SETUP
+#line 215 "util/configlexer.lex"
+{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
+ YY_BREAK
+case 93:
+YY_RULE_SETUP
+#line 216 "util/configlexer.lex"
+{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
+ YY_BREAK
+case 94:
+YY_RULE_SETUP
+#line 217 "util/configlexer.lex"
+{
+ YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
+ YY_BREAK
+case 95:
+YY_RULE_SETUP
+#line 219 "util/configlexer.lex"
+{ YDVAR(1, VAR_ADD_HOLDDOWN) }
+ YY_BREAK
+case 96:
+YY_RULE_SETUP
+#line 220 "util/configlexer.lex"
+{ YDVAR(1, VAR_DEL_HOLDDOWN) }
+ YY_BREAK
+case 97:
+YY_RULE_SETUP
+#line 221 "util/configlexer.lex"
+{ YDVAR(1, VAR_KEEP_MISSING) }
+ YY_BREAK
+case 98:
+YY_RULE_SETUP
+#line 222 "util/configlexer.lex"
+{ YDVAR(1, VAR_USE_SYSLOG) }
+ YY_BREAK
+case 99:
+YY_RULE_SETUP
+#line 223 "util/configlexer.lex"
+{ YDVAR(1, VAR_LOG_TIME_ASCII) }
+ YY_BREAK
+case 100:
+YY_RULE_SETUP
+#line 224 "util/configlexer.lex"
+{ YDVAR(1, VAR_LOG_QUERIES) }
+ YY_BREAK
+case 101:
+YY_RULE_SETUP
+#line 225 "util/configlexer.lex"
+{ YDVAR(2, VAR_LOCAL_ZONE) }
+ YY_BREAK
+case 102:
+YY_RULE_SETUP
+#line 226 "util/configlexer.lex"
+{ YDVAR(1, VAR_LOCAL_DATA) }
+ YY_BREAK
+case 103:
+YY_RULE_SETUP
+#line 227 "util/configlexer.lex"
+{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
+ YY_BREAK
+case 104:
+YY_RULE_SETUP
+#line 228 "util/configlexer.lex"
+{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
+ YY_BREAK
+case 105:
+YY_RULE_SETUP
+#line 229 "util/configlexer.lex"
+{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
+ YY_BREAK
+case 106:
+YY_RULE_SETUP
+#line 230 "util/configlexer.lex"
+{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
+ YY_BREAK
+case 107:
+YY_RULE_SETUP
+#line 231 "util/configlexer.lex"
+{ YDVAR(0, VAR_REMOTE_CONTROL) }
+ YY_BREAK
+case 108:
+YY_RULE_SETUP
+#line 232 "util/configlexer.lex"
+{ YDVAR(1, VAR_CONTROL_ENABLE) }
+ YY_BREAK
+case 109:
+YY_RULE_SETUP
+#line 233 "util/configlexer.lex"
+{ YDVAR(1, VAR_CONTROL_INTERFACE) }
+ YY_BREAK
+case 110:
+YY_RULE_SETUP
+#line 234 "util/configlexer.lex"
+{ YDVAR(1, VAR_CONTROL_PORT) }
+ YY_BREAK
+case 111:
+YY_RULE_SETUP
+#line 235 "util/configlexer.lex"
+{ YDVAR(1, VAR_SERVER_KEY_FILE) }
+ YY_BREAK
+case 112:
+YY_RULE_SETUP
+#line 236 "util/configlexer.lex"
+{ YDVAR(1, VAR_SERVER_CERT_FILE) }
+ YY_BREAK
+case 113:
+YY_RULE_SETUP
+#line 237 "util/configlexer.lex"
+{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
+ YY_BREAK
+case 114:
+YY_RULE_SETUP
+#line 238 "util/configlexer.lex"
+{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
+ YY_BREAK
+case 115:
+YY_RULE_SETUP
+#line 239 "util/configlexer.lex"
+{ YDVAR(1, VAR_PYTHON_SCRIPT) }
+ YY_BREAK
+case 116:
+YY_RULE_SETUP
+#line 240 "util/configlexer.lex"
+{ YDVAR(0, VAR_PYTHON) }
+ YY_BREAK
+case 117:
+YY_RULE_SETUP
+#line 241 "util/configlexer.lex"
+{ YDVAR(1, VAR_DOMAIN_INSECURE) }
+ YY_BREAK
+case 118:
+/* rule 118 can match eol */
+YY_RULE_SETUP
+#line 242 "util/configlexer.lex"
+{ LEXOUT(("NL\n")); cfg_parser->line++; }
+ YY_BREAK
+/* Quoted strings. Strip leading and ending quotes */
+case 119:
+YY_RULE_SETUP
+#line 245 "util/configlexer.lex"
+{ BEGIN(quotedstring); LEXOUT(("QS ")); }
+ YY_BREAK
+case YY_STATE_EOF(quotedstring):
+#line 246 "util/configlexer.lex"
+{
+ yyerror("EOF inside quoted string");
+ if(--num_args == 0) { BEGIN(INITIAL); }
+ else { BEGIN(val); }
+}
+ YY_BREAK
+case 120:
+YY_RULE_SETUP
+#line 251 "util/configlexer.lex"
+{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
+ YY_BREAK
+case 121:
+/* rule 121 can match eol */
+YY_RULE_SETUP
+#line 252 "util/configlexer.lex"
+{ yyerror("newline inside quoted string, no end \"");
+ cfg_parser->line++; BEGIN(INITIAL); }
+ YY_BREAK
+case 122:
+YY_RULE_SETUP
+#line 254 "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 123:
+YY_RULE_SETUP
+#line 266 "util/configlexer.lex"
+{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
+ YY_BREAK
+case YY_STATE_EOF(singlequotedstr):
+#line 267 "util/configlexer.lex"
+{
+ yyerror("EOF inside quoted string");
+ if(--num_args == 0) { BEGIN(INITIAL); }
+ else { BEGIN(val); }
+}
+ YY_BREAK
+case 124:
+YY_RULE_SETUP
+#line 272 "util/configlexer.lex"
+{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
+ YY_BREAK
+case 125:
+/* rule 125 can match eol */
+YY_RULE_SETUP
+#line 273 "util/configlexer.lex"
+{ yyerror("newline inside quoted string, no end '");
+ cfg_parser->line++; BEGIN(INITIAL); }
+ YY_BREAK
+case 126:
+YY_RULE_SETUP
+#line 275 "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 127:
+YY_RULE_SETUP
+#line 287 "util/configlexer.lex"
+{
+ LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); }
+ YY_BREAK
+case YY_STATE_EOF(include):
+#line 289 "util/configlexer.lex"
+{
+ yyerror("EOF inside include directive");
+ BEGIN(inc_prev);
+}
+ YY_BREAK
+case 128:
+YY_RULE_SETUP
+#line 293 "util/configlexer.lex"
+{ LEXOUT(("ISP ")); /* ignore */ }
+ YY_BREAK
+case 129:
+/* rule 129 can match eol */
+YY_RULE_SETUP
+#line 294 "util/configlexer.lex"
+{ LEXOUT(("NL\n")); cfg_parser->line++;}
+ YY_BREAK
+case 130:
+YY_RULE_SETUP
+#line 295 "util/configlexer.lex"
+{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
+ YY_BREAK
+case 131:
+YY_RULE_SETUP
+#line 296 "util/configlexer.lex"
+{
+ LEXOUT(("Iunquotedstr(%s) ", yytext));
+ config_start_include(yytext);
+ BEGIN(inc_prev);
+}
+ YY_BREAK
+case YY_STATE_EOF(include_quoted):
+#line 301 "util/configlexer.lex"
+{
+ yyerror("EOF inside quoted string");
+ BEGIN(inc_prev);
+}
+ YY_BREAK
+case 132:
+YY_RULE_SETUP
+#line 305 "util/configlexer.lex"
+{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
+ YY_BREAK
+case 133:
+/* rule 133 can match eol */
+YY_RULE_SETUP
+#line 306 "util/configlexer.lex"
+{ yyerror("newline before \" in include name");
+ cfg_parser->line++; BEGIN(inc_prev); }
+ YY_BREAK
+case 134:
+YY_RULE_SETUP
+#line 308 "util/configlexer.lex"
+{
+ LEXOUT(("IQE "));
+ yytext[yyleng - 1] = '\0';
+ config_start_include(yytext);
+ BEGIN(inc_prev);
+}
+ YY_BREAK
+case YY_STATE_EOF(INITIAL):
+case YY_STATE_EOF(val):
+#line 314 "util/configlexer.lex"
+{
+ yy_set_bol(1); /* Set beginning of line, so "^" rules match. */
+ if (config_include_stack_ptr == 0) {
+ yyterminate();
+ } else {
+ fclose(yyin);
+ config_end_include();
+ }
+}
+ YY_BREAK
+case 135:
+YY_RULE_SETUP
+#line 324 "util/configlexer.lex"
+{ LEXOUT(("unquotedstr(%s) ", yytext));
+ if(--num_args == 0) { BEGIN(INITIAL); }
+ yylval.str = strdup(yytext); return STRING_ARG; }
+ YY_BREAK
+case 136:
+YY_RULE_SETUP
+#line 328 "util/configlexer.lex"
+{
+ ub_c_error_msg("unknown keyword '%s'", yytext);
+ }
+ YY_BREAK
+case 137:
+YY_RULE_SETUP
+#line 332 "util/configlexer.lex"
+{
+ ub_c_error_msg("stray '%s'", yytext);
+ }
+ YY_BREAK
+case 138:
+YY_RULE_SETUP
+#line 336 "util/configlexer.lex"
+ECHO;
+ YY_BREAK
+#line 2887 "<stdout>"
+
+ case YY_END_OF_BUFFER:
+ {
+ /* Amount of text matched not including the EOB char. */
+ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
+
+ /* Undo the effects of YY_DO_BEFORE_ACTION. */
+ *yy_cp = (yy_hold_char);
+ YY_RESTORE_YY_MORE_OFFSET
+
+ if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
+ {
+ /* We're scanning a new file or input source. It's
+ * possible that this happened because the user
+ * just pointed yyin at a new source and called
+ * yylex(). If so, then we have to assure
+ * consistency between YY_CURRENT_BUFFER and our
+ * globals. Here is the right place to do so, because
+ * this is the first action (other than possibly a
+ * back-up) that will match for the new input source.
+ */
+ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
+ YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
+ YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
+ }
+
+ /* Note that here we test for yy_c_buf_p "<=" to the position
+ * of the first EOB in the buffer, since yy_c_buf_p will
+ * already have been incremented past the NUL character
+ * (since all states make transitions on EOB to the
+ * end-of-buffer state). Contrast this with the test
+ * in input().
+ */
+ if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
+ { /* This was really a NUL. */
+ yy_state_type yy_next_state;
+
+ (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
+
+ yy_current_state = yy_get_previous_state( );
+
+ /* Okay, we're now positioned to make the NUL
+ * transition. We couldn't have
+ * yy_get_previous_state() go ahead and do it
+ * for us because it doesn't know how to deal
+ * with the possibility of jamming (and we don't
+ * want to build jamming into it because then it
+ * will run more slowly).
+ */
+
+ yy_next_state = yy_try_NUL_trans( yy_current_state );
+
+ yy_bp = (yytext_ptr) + YY_MORE_ADJ;
+
+ if ( yy_next_state )
+ {
+ /* Consume the NUL. */
+ yy_cp = ++(yy_c_buf_p);
+ yy_current_state = yy_next_state;
+ goto yy_match;
+ }
+
+ else
+ {
+ yy_cp = (yy_c_buf_p);
+ goto yy_find_action;
+ }
+ }
+
+ else switch ( yy_get_next_buffer( ) )
+ {
+ case EOB_ACT_END_OF_FILE:
+ {
+ (yy_did_buffer_switch_on_eof) = 0;
+
+ if ( yywrap( ) )
+ {
+ /* Note: because we've taken care in
+ * yy_get_next_buffer() to have set up
+ * yytext, we can now set up
+ * yy_c_buf_p so that if some total
+ * hoser (like flex itself) wants to
+ * call the scanner after we return the
+ * YY_NULL, it'll still work - another
+ * YY_NULL will get returned.
+ */
+ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
+
+ yy_act = YY_STATE_EOF(YY_START);
+ goto do_action;
+ }
+
+ else
+ {
+ if ( ! (yy_did_buffer_switch_on_eof) )
+ YY_NEW_FILE;
+ }
+ break;
+ }
+
+ case EOB_ACT_CONTINUE_SCAN:
+ (yy_c_buf_p) =
+ (yytext_ptr) + yy_amount_of_matched_text;
+
+ yy_current_state = yy_get_previous_state( );
+
+ yy_cp = (yy_c_buf_p);
+ yy_bp = (yytext_ptr) + YY_MORE_ADJ;
+ goto yy_match;
+
+ case EOB_ACT_LAST_MATCH:
+ (yy_c_buf_p) =
+ &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
+
+ yy_current_state = yy_get_previous_state( );
+
+ yy_cp = (yy_c_buf_p);
+ yy_bp = (yytext_ptr) + YY_MORE_ADJ;
+ goto yy_find_action;
+ }
+ break;
+ }
+
+ default:
+ YY_FATAL_ERROR(
+ "fatal flex scanner internal error--no action found" );
+ } /* end of action switch */
+ } /* end of scanning one token */
+} /* end of yylex */
+
+/* yy_get_next_buffer - try to read in a new buffer
+ *
+ * Returns a code representing an action:
+ * EOB_ACT_LAST_MATCH -
+ * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
+ * EOB_ACT_END_OF_FILE - end of file
+ */
+static int yy_get_next_buffer (void)
+{
+ register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
+ register char *source = (yytext_ptr);
+ register int number_to_move, i;
+ int ret_val;
+
+ if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
+ YY_FATAL_ERROR(
+ "fatal flex scanner internal error--end of buffer missed" );
+
+ if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
+ { /* Don't try to fill the buffer, so this is an EOF. */
+ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
+ {
+ /* We matched a single character, the EOB, so
+ * treat this as a final EOF.
+ */
+ return EOB_ACT_END_OF_FILE;
+ }
+
+ else
+ {
+ /* We matched some text prior to the EOB, first
+ * process it.
+ */
+ return EOB_ACT_LAST_MATCH;
+ }
+ }
+
+ /* Try to read more data. */
+
+ /* First move last chars to start of buffer. */
+ number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
+
+ for ( i = 0; i < number_to_move; ++i )
+ *(dest++) = *(source++);
+
+ if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
+ /* don't do the read, it's not guaranteed to return an EOF,
+ * just force an EOF
+ */
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
+
+ else
+ {
+ int num_to_read =
+ YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
+
+ while ( num_to_read <= 0 )
+ { /* Not enough room in the buffer - grow it. */
+
+ /* just a shorter name for the current buffer */
+ YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
+
+ int yy_c_buf_p_offset =
+ (int) ((yy_c_buf_p) - b->yy_ch_buf);
+
+ if ( b->yy_is_our_buffer )
+ {
+ int new_size = b->yy_buf_size * 2;
+
+ if ( new_size <= 0 )
+ b->yy_buf_size += b->yy_buf_size / 8;
+ else
+ b->yy_buf_size *= 2;
+
+ b->yy_ch_buf = (char *)
+ /* Include room in for 2 EOB chars. */
+ yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
+ }
+ else
+ /* Can't grow it, we don't own it. */
+ b->yy_ch_buf = 0;
+
+ if ( ! b->yy_ch_buf )
+ YY_FATAL_ERROR(
+ "fatal error - scanner input buffer overflow" );
+
+ (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
+
+ num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
+ number_to_move - 1;
+
+ }
+
+ if ( num_to_read > YY_READ_BUF_SIZE )
+ num_to_read = YY_READ_BUF_SIZE;
+
+ /* Read in more data. */
+ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
+ (yy_n_chars), (size_t) num_to_read );
+
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
+ }
+
+ if ( (yy_n_chars) == 0 )
+ {
+ if ( number_to_move == YY_MORE_ADJ )
+ {
+ ret_val = EOB_ACT_END_OF_FILE;
+ yyrestart(yyin );
+ }
+
+ else
+ {
+ ret_val = EOB_ACT_LAST_MATCH;
+ YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
+ YY_BUFFER_EOF_PENDING;
+ }
+ }
+
+ else
+ ret_val = EOB_ACT_CONTINUE_SCAN;
+
+ if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
+ /* Extend the array by 50%, plus the number we really need. */
+ yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
+ YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size );
+ if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
+ YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
+ }
+
+ (yy_n_chars) += number_to_move;
+ YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
+ YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
+
+ (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
+
+ return ret_val;
+}
+
+/* yy_get_previous_state - get the state just before the EOB char was reached */
+
+ static yy_state_type yy_get_previous_state (void)
+{
+ register yy_state_type yy_current_state;
+ register char *yy_cp;
+
+ yy_current_state = (yy_start);
+
+ for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
+ {
+ register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
+ if ( yy_accept[yy_current_state] )
+ {
+ (yy_last_accepting_state) = yy_current_state;
+ (yy_last_accepting_cpos) = yy_cp;
+ }
+ while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
+ {
+ yy_current_state = (int) yy_def[yy_current_state];
+ if ( yy_current_state >= 1303 )
+ yy_c = yy_meta[(unsigned int) yy_c];
+ }
+ yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
+ }
+
+ return yy_current_state;
+}
+
+/* yy_try_NUL_trans - try to make a transition on the NUL character
+ *
+ * synopsis
+ * next_state = yy_try_NUL_trans( current_state );
+ */
+ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
+{
+ register int yy_is_jam;
+ register char *yy_cp = (yy_c_buf_p);
+
+ register YY_CHAR yy_c = 1;
+ if ( yy_accept[yy_current_state] )
+ {
+ (yy_last_accepting_state) = yy_current_state;
+ (yy_last_accepting_cpos) = yy_cp;
+ }
+ while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
+ {
+ yy_current_state = (int) yy_def[yy_current_state];
+ if ( yy_current_state >= 1303 )
+ 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 == 1302);
+
+ return yy_is_jam ? 0 : yy_current_state;
+}
+
+#ifndef YY_NO_INPUT
+#ifdef __cplusplus
+ static int yyinput (void)
+#else
+ static int input (void)
+#endif
+
+{
+ int c;
+
+ *(yy_c_buf_p) = (yy_hold_char);
+
+ if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
+ {
+ /* yy_c_buf_p now points to the character we want to return.
+ * If this occurs *before* the EOB characters, then it's a
+ * valid NUL; if not, then we've hit the end of the buffer.
+ */
+ if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
+ /* This was really a NUL. */
+ *(yy_c_buf_p) = '\0';
+
+ else
+ { /* need more input */
+ int offset = (yy_c_buf_p) - (yytext_ptr);
+ ++(yy_c_buf_p);
+
+ switch ( yy_get_next_buffer( ) )
+ {
+ case EOB_ACT_LAST_MATCH:
+ /* This happens because yy_g_n_b()
+ * sees that we've accumulated a
+ * token and flags that we need to
+ * try matching the token before
+ * proceeding. But for input(),
+ * there's no matching to consider.
+ * So convert the EOB_ACT_LAST_MATCH
+ * to EOB_ACT_END_OF_FILE.
+ */
+
+ /* Reset buffer status. */
+ yyrestart(yyin );
+
+ /*FALLTHROUGH*/
+
+ case EOB_ACT_END_OF_FILE:
+ {
+ if ( yywrap( ) )
+ return EOF;
+
+ if ( ! (yy_did_buffer_switch_on_eof) )
+ YY_NEW_FILE;
+#ifdef __cplusplus
+ return yyinput();
+#else
+ return input();
+#endif
+ }
+
+ case EOB_ACT_CONTINUE_SCAN:
+ (yy_c_buf_p) = (yytext_ptr) + offset;
+ break;
+ }
+ }
+ }
+
+ c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
+ *(yy_c_buf_p) = '\0'; /* preserve yytext */
+ (yy_hold_char) = *++(yy_c_buf_p);
+
+ return c;
+}
+#endif /* ifndef YY_NO_INPUT */
+
+/** Immediately switch to a different input stream.
+ * @param input_file A readable stream.
+ *
+ * @note This function does not reset the start condition to @c INITIAL .
+ */
+ void yyrestart (FILE * input_file )
+{
+
+ if ( ! YY_CURRENT_BUFFER ){
+ yyensure_buffer_stack ();
+ YY_CURRENT_BUFFER_LVALUE =
+ yy_create_buffer(yyin,YY_BUF_SIZE );
+ }
+
+ yy_init_buffer(YY_CURRENT_BUFFER,input_file );
+ yy_load_buffer_state( );
+}
+
+/** Switch to a different input buffer.
+ * @param new_buffer The new input buffer.
+ *
+ */
+ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
+{
+
+ /* TODO. We should be able to replace this entire function body
+ * with
+ * yypop_buffer_state();
+ * yypush_buffer_state(new_buffer);
+ */
+ yyensure_buffer_stack ();
+ if ( YY_CURRENT_BUFFER == new_buffer )
+ return;
+
+ if ( YY_CURRENT_BUFFER )
+ {
+ /* Flush out information for old buffer. */
+ *(yy_c_buf_p) = (yy_hold_char);
+ YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
+ }
+
+ YY_CURRENT_BUFFER_LVALUE = new_buffer;
+ yy_load_buffer_state( );
+
+ /* We don't actually know whether we did this switch during
+ * EOF (yywrap()) processing, but the only time this flag
+ * is looked at is after yywrap() is called, so it's safe
+ * to go ahead and always set it.
+ */
+ (yy_did_buffer_switch_on_eof) = 1;
+}
+
+static void yy_load_buffer_state (void)
+{
+ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
+ (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
+ yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
+ (yy_hold_char) = *(yy_c_buf_p);
+}
+
+/** Allocate and initialize an input buffer state.
+ * @param file A readable stream.
+ * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
+ *
+ * @return the allocated buffer state.
+ */
+ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
+{
+ YY_BUFFER_STATE b;
+
+ b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
+ if ( ! b )
+ YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
+
+ b->yy_buf_size = size;
+
+ /* yy_ch_buf has to be 2 characters longer than the size given because
+ * we need to put in 2 end-of-buffer characters.
+ */
+ b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 );
+ if ( ! b->yy_ch_buf )
+ YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
+
+ b->yy_is_our_buffer = 1;
+
+ yy_init_buffer(b,file );
+
+ return b;
+}
+
+/** Destroy the buffer.
+ * @param b a buffer created with yy_create_buffer()
+ *
+ */
+ void yy_delete_buffer (YY_BUFFER_STATE b )
+{
+
+ if ( ! b )
+ return;
+
+ if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
+ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
+
+ if ( b->yy_is_our_buffer )
+ yyfree((void *) b->yy_ch_buf );
+
+ yyfree((void *) b );
+}
+
+#ifndef __cplusplus
+extern int isatty (int );
+#endif /* __cplusplus */
+
+/* Initializes or reinitializes a buffer.
+ * This function is sometimes called more than once on the same buffer,
+ * such as during a yyrestart() or at EOF.
+ */
+ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
+
+{
+ int oerrno = errno;
+
+ yy_flush_buffer(b );
+
+ b->yy_input_file = file;
+ b->yy_fill_buffer = 1;
+
+ /* If b is the current buffer, then yy_init_buffer was _probably_
+ * called from yyrestart() or through yy_get_next_buffer.
+ * In that case, we don't want to reset the lineno or column.
+ */
+ if (b != YY_CURRENT_BUFFER){
+ b->yy_bs_lineno = 1;
+ b->yy_bs_column = 0;
+ }
+
+ b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
+
+ errno = oerrno;
+}
+
+/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
+ * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
+ *
+ */
+ void yy_flush_buffer (YY_BUFFER_STATE b )
+{
+ if ( ! b )
+ return;
+
+ b->yy_n_chars = 0;
+
+ /* We always need two end-of-buffer characters. The first causes
+ * a transition to the end-of-buffer state. The second causes
+ * a jam in that state.
+ */
+ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
+ b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
+
+ b->yy_buf_pos = &b->yy_ch_buf[0];
+
+ b->yy_at_bol = 1;
+ b->yy_buffer_status = YY_BUFFER_NEW;
+
+ if ( b == YY_CURRENT_BUFFER )
+ yy_load_buffer_state( );
+}
+
+/** Pushes the new state onto the stack. The new state becomes
+ * the current state. This function will allocate the stack
+ * if necessary.
+ * @param new_buffer The new state.
+ *
+ */
+void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
+{
+ if (new_buffer == NULL)
+ return;
+
+ yyensure_buffer_stack();
+
+ /* This block is copied from yy_switch_to_buffer. */
+ if ( YY_CURRENT_BUFFER )
+ {
+ /* Flush out information for old buffer. */
+ *(yy_c_buf_p) = (yy_hold_char);
+ YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
+ }
+
+ /* Only push if top exists. Otherwise, replace top. */
+ if (YY_CURRENT_BUFFER)
+ (yy_buffer_stack_top)++;
+ YY_CURRENT_BUFFER_LVALUE = new_buffer;
+
+ /* copied from yy_switch_to_buffer. */
+ yy_load_buffer_state( );
+ (yy_did_buffer_switch_on_eof) = 1;
+}
+
+/** Removes and deletes the top of the stack, if present.
+ * The next element becomes the new top.
+ *
+ */
+void yypop_buffer_state (void)
+{
+ if (!YY_CURRENT_BUFFER)
+ return;
+
+ yy_delete_buffer(YY_CURRENT_BUFFER );
+ YY_CURRENT_BUFFER_LVALUE = NULL;
+ if ((yy_buffer_stack_top) > 0)
+ --(yy_buffer_stack_top);
+
+ if (YY_CURRENT_BUFFER) {
+ yy_load_buffer_state( );
+ (yy_did_buffer_switch_on_eof) = 1;
+ }
+}
+
+/* Allocates the stack if it does not exist.
+ * Guarantees space for at least one push.
+ */
+static void yyensure_buffer_stack (void)
+{
+ int num_to_alloc;
+
+ if (!(yy_buffer_stack)) {
+
+ /* First allocation is just for 2 elements, since we don't know if this
+ * scanner will even need a stack. We use 2 instead of 1 to avoid an
+ * immediate realloc on the next call.
+ */
+ num_to_alloc = 1;
+ (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
+ (num_to_alloc * sizeof(struct yy_buffer_state*)
+ );
+ if ( ! (yy_buffer_stack) )
+ YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
+
+ memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
+
+ (yy_buffer_stack_max) = num_to_alloc;
+ (yy_buffer_stack_top) = 0;
+ return;
+ }
+
+ if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
+
+ /* Increase the buffer to prepare for a possible push. */
+ int grow_size = 8 /* arbitrary grow size */;
+
+ num_to_alloc = (yy_buffer_stack_max) + grow_size;
+ (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
+ ((yy_buffer_stack),
+ num_to_alloc * sizeof(struct yy_buffer_state*)
+ );
+ if ( ! (yy_buffer_stack) )
+ YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
+
+ /* zero only the new slots.*/
+ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
+ (yy_buffer_stack_max) = num_to_alloc;
+ }
+}
+
+/** Setup the input buffer state to scan directly from a user-specified character buffer.
+ * @param base the character buffer
+ * @param size the size in bytes of the character buffer
+ *
+ * @return the newly allocated buffer state object.
+ */
+YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
+{
+ YY_BUFFER_STATE b;
+
+ if ( size < 2 ||
+ base[size-2] != YY_END_OF_BUFFER_CHAR ||
+ base[size-1] != YY_END_OF_BUFFER_CHAR )
+ /* They forgot to leave room for the EOB's. */
+ return 0;
+
+ b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
+ if ( ! b )
+ YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
+
+ b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
+ b->yy_buf_pos = b->yy_ch_buf = base;
+ b->yy_is_our_buffer = 0;
+ b->yy_input_file = 0;
+ b->yy_n_chars = b->yy_buf_size;
+ b->yy_is_interactive = 0;
+ b->yy_at_bol = 1;
+ b->yy_fill_buffer = 0;
+ b->yy_buffer_status = YY_BUFFER_NEW;
+
+ yy_switch_to_buffer(b );
+
+ return b;
+}
+
+/** Setup the input buffer state to scan a string. The next call to yylex() will
+ * scan from a @e copy of @a str.
+ * @param yystr a NUL-terminated string to scan
+ *
+ * @return the newly allocated buffer state object.
+ * @note If you want to scan bytes that may contain NUL values, then use
+ * yy_scan_bytes() instead.
+ */
+YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
+{
+
+ return yy_scan_bytes(yystr,strlen(yystr) );
+}
+
+/** Setup the input buffer state to scan the given bytes. The next call to yylex() will
+ * scan from a @e copy of @a bytes.
+ * @param bytes the byte buffer to scan
+ * @param len the number of bytes in the buffer pointed to by @a bytes.
+ *
+ * @return the newly allocated buffer state object.
+ */
+YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len )
+{
+ YY_BUFFER_STATE b;
+ char *buf;
+ yy_size_t n;
+ int i;
+
+ /* Get memory for full buffer, including space for trailing EOB's. */
+ n = _yybytes_len + 2;
+ buf = (char *) yyalloc(n );
+ if ( ! buf )
+ YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
+
+ for ( i = 0; i < _yybytes_len; ++i )
+ buf[i] = yybytes[i];
+
+ buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
+
+ b = yy_scan_buffer(buf,n );
+ if ( ! b )
+ YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
+
+ /* It's okay to grow etc. this buffer, and we should throw it
+ * away when we're done.
+ */
+ b->yy_is_our_buffer = 1;
+
+ return b;
+}
+
+#ifndef YY_EXIT_FAILURE
+#define YY_EXIT_FAILURE 2
+#endif
+
+static void yy_fatal_error (yyconst char* msg )
+{
+ (void) fprintf( stderr, "%s\n", msg );
+ exit( YY_EXIT_FAILURE );
+}
+
+/* Redefine yyless() so it works in section 3 code. */
+
+#undef yyless
+#define yyless(n) \
+ do \
+ { \
+ /* Undo effects of setting up yytext. */ \
+ int yyless_macro_arg = (n); \
+ YY_LESS_LINENO(yyless_macro_arg);\
+ yytext[yyleng] = (yy_hold_char); \
+ (yy_c_buf_p) = yytext + yyless_macro_arg; \
+ (yy_hold_char) = *(yy_c_buf_p); \
+ *(yy_c_buf_p) = '\0'; \
+ yyleng = yyless_macro_arg; \
+ } \
+ while ( 0 )
+
+/* Accessor methods (get/set functions) to struct members. */
+
+/** Get the current line number.
+ *
+ */
+int yyget_lineno (void)
+{
+
+ return yylineno;
+}
+
+/** Get the input stream.
+ *
+ */
+FILE *yyget_in (void)
+{
+ return yyin;
+}
+
+/** Get the output stream.
+ *
+ */
+FILE *yyget_out (void)
+{
+ return yyout;
+}
+
+/** Get the length of the current token.
+ *
+ */
+int yyget_leng (void)
+{
+ return yyleng;
+}
+
+/** Get the current token.
+ *
+ */
+
+char *yyget_text (void)
+{
+ return yytext;
+}
+
+/** Set the current line number.
+ * @param line_number
+ *
+ */
+void yyset_lineno (int line_number )
+{
+
+ yylineno = line_number;
+}
+
+/** Set the input stream. This does not discard the current
+ * input buffer.
+ * @param in_str A readable stream.
+ *
+ * @see yy_switch_to_buffer
+ */
+void yyset_in (FILE * in_str )
+{
+ yyin = in_str ;
+}
+
+void yyset_out (FILE * out_str )
+{
+ yyout = out_str ;
+}
+
+int yyget_debug (void)
+{
+ return yy_flex_debug;
+}
+
+void yyset_debug (int bdebug )
+{
+ yy_flex_debug = bdebug ;
+}
+
+static int yy_init_globals (void)
+{
+ /* Initialization is the same as for the non-reentrant scanner.
+ * This function is called from yylex_destroy(), so don't allocate here.
+ */
+
+ (yy_buffer_stack) = 0;
+ (yy_buffer_stack_top) = 0;
+ (yy_buffer_stack_max) = 0;
+ (yy_c_buf_p) = (char *) 0;
+ (yy_init) = 0;
+ (yy_start) = 0;
+
+/* Defined in main.c */
+#ifdef YY_STDINIT
+ yyin = stdin;
+ yyout = stdout;
+#else
+ yyin = (FILE *) 0;
+ yyout = (FILE *) 0;
+#endif
+
+ /* For future reference: Set errno on error, since we are called by
+ * yylex_init()
+ */
+ return 0;
+}
+
+/* yylex_destroy is for both reentrant and non-reentrant scanners. */
+int yylex_destroy (void)
+{
+
+ /* Pop the buffer stack, destroying each element. */
+ while(YY_CURRENT_BUFFER){
+ yy_delete_buffer(YY_CURRENT_BUFFER );
+ YY_CURRENT_BUFFER_LVALUE = NULL;
+ yypop_buffer_state();
+ }
+
+ /* Destroy the stack itself. */
+ yyfree((yy_buffer_stack) );
+ (yy_buffer_stack) = NULL;
+
+ /* Reset the globals. This is important in a non-reentrant scanner so the next time
+ * yylex() is called, initialization will occur. */
+ yy_init_globals( );
+
+ return 0;
+}
+
+/*
+ * Internal utility routines.
+ */
+
+#ifndef yytext_ptr
+static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
+{
+ register int i;
+ for ( i = 0; i < n; ++i )
+ s1[i] = s2[i];
+}
+#endif
+
+#ifdef YY_NEED_STRLEN
+static int yy_flex_strlen (yyconst char * s )
+{
+ register int n;
+ for ( n = 0; s[n]; ++n )
+ ;
+
+ return n;
+}
+#endif
+
+void *yyalloc (yy_size_t size )
+{
+ return (void *) malloc( size );
+}
+
+void *yyrealloc (void * ptr, yy_size_t size )
+{
+ /* The cast to (char *) in the following accommodates both
+ * implementations that use char* generic pointers, and those
+ * that use void* generic pointers. It works with the latter
+ * because both ANSI C and C++ allow castless assignment from
+ * any pointer type to void*, and deal with argument conversions
+ * as though doing an assignment.
+ */
+ return (void *) realloc( (char *) ptr, size );
+}
+
+void yyfree (void * ptr )
+{
+ free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
+}
+
+#define YYTABLES_NAME "yytables"
+
+#line 336 "util/configlexer.lex"
+
+
+