habaki 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +3 -0
  3. data/ext/katana/extconf.rb +20 -0
  4. data/ext/katana/rb_katana.c +280 -0
  5. data/ext/katana/rb_katana.h +102 -0
  6. data/ext/katana/rb_katana_array.c +144 -0
  7. data/ext/katana/rb_katana_declaration.c +389 -0
  8. data/ext/katana/rb_katana_rule.c +461 -0
  9. data/ext/katana/rb_katana_selector.c +559 -0
  10. data/ext/katana/src/foundation.c +237 -0
  11. data/ext/katana/src/foundation.h +120 -0
  12. data/ext/katana/src/katana.h +590 -0
  13. data/ext/katana/src/katana.lex.c +4104 -0
  14. data/ext/katana/src/katana.lex.h +592 -0
  15. data/ext/katana/src/katana.tab.c +4422 -0
  16. data/ext/katana/src/katana.tab.h +262 -0
  17. data/ext/katana/src/parser.c +1563 -0
  18. data/ext/katana/src/parser.h +237 -0
  19. data/ext/katana/src/selector.c +659 -0
  20. data/ext/katana/src/selector.h +54 -0
  21. data/ext/katana/src/tokenizer.c +300 -0
  22. data/ext/katana/src/tokenizer.h +41 -0
  23. data/lib/habaki/charset_rule.rb +25 -0
  24. data/lib/habaki/declaration.rb +53 -0
  25. data/lib/habaki/declarations.rb +346 -0
  26. data/lib/habaki/error.rb +43 -0
  27. data/lib/habaki/font_face_rule.rb +24 -0
  28. data/lib/habaki/formal_syntax.rb +464 -0
  29. data/lib/habaki/formatter.rb +99 -0
  30. data/lib/habaki/import_rule.rb +34 -0
  31. data/lib/habaki/media_rule.rb +173 -0
  32. data/lib/habaki/namespace_rule.rb +31 -0
  33. data/lib/habaki/node.rb +52 -0
  34. data/lib/habaki/page_rule.rb +24 -0
  35. data/lib/habaki/qualified_name.rb +29 -0
  36. data/lib/habaki/rule.rb +48 -0
  37. data/lib/habaki/rules.rb +225 -0
  38. data/lib/habaki/selector.rb +98 -0
  39. data/lib/habaki/selectors.rb +49 -0
  40. data/lib/habaki/style_rule.rb +35 -0
  41. data/lib/habaki/stylesheet.rb +158 -0
  42. data/lib/habaki/sub_selector.rb +234 -0
  43. data/lib/habaki/sub_selectors.rb +42 -0
  44. data/lib/habaki/supports_rule.rb +65 -0
  45. data/lib/habaki/value.rb +321 -0
  46. data/lib/habaki/values.rb +86 -0
  47. data/lib/habaki/visitor/element.rb +50 -0
  48. data/lib/habaki/visitor/media.rb +22 -0
  49. data/lib/habaki/visitor/nokogiri_element.rb +56 -0
  50. data/lib/habaki.rb +39 -0
  51. metadata +190 -0
@@ -0,0 +1,4104 @@
1
+
2
+ #define YY_INT_ALIGNED short int
3
+
4
+ /* A lexical scanner generated by flex */
5
+
6
+ #define FLEX_SCANNER
7
+ #define YY_FLEX_MAJOR_VERSION 2
8
+ #define YY_FLEX_MINOR_VERSION 6
9
+ #define YY_FLEX_SUBMINOR_VERSION 4
10
+ #if YY_FLEX_SUBMINOR_VERSION > 0
11
+ #define FLEX_BETA
12
+ #endif
13
+
14
+ #ifdef yy_create_buffer
15
+ #define katana_create_buffer_ALREADY_DEFINED
16
+ #else
17
+ #define yy_create_buffer katana_create_buffer
18
+ #endif
19
+
20
+ #ifdef yy_delete_buffer
21
+ #define katana_delete_buffer_ALREADY_DEFINED
22
+ #else
23
+ #define yy_delete_buffer katana_delete_buffer
24
+ #endif
25
+
26
+ #ifdef yy_scan_buffer
27
+ #define katana_scan_buffer_ALREADY_DEFINED
28
+ #else
29
+ #define yy_scan_buffer katana_scan_buffer
30
+ #endif
31
+
32
+ #ifdef yy_scan_string
33
+ #define katana_scan_string_ALREADY_DEFINED
34
+ #else
35
+ #define yy_scan_string katana_scan_string
36
+ #endif
37
+
38
+ #ifdef yy_scan_bytes
39
+ #define katana_scan_bytes_ALREADY_DEFINED
40
+ #else
41
+ #define yy_scan_bytes katana_scan_bytes
42
+ #endif
43
+
44
+ #ifdef yy_init_buffer
45
+ #define katana_init_buffer_ALREADY_DEFINED
46
+ #else
47
+ #define yy_init_buffer katana_init_buffer
48
+ #endif
49
+
50
+ #ifdef yy_flush_buffer
51
+ #define katana_flush_buffer_ALREADY_DEFINED
52
+ #else
53
+ #define yy_flush_buffer katana_flush_buffer
54
+ #endif
55
+
56
+ #ifdef yy_load_buffer_state
57
+ #define katana_load_buffer_state_ALREADY_DEFINED
58
+ #else
59
+ #define yy_load_buffer_state katana_load_buffer_state
60
+ #endif
61
+
62
+ #ifdef yy_switch_to_buffer
63
+ #define katana_switch_to_buffer_ALREADY_DEFINED
64
+ #else
65
+ #define yy_switch_to_buffer katana_switch_to_buffer
66
+ #endif
67
+
68
+ #ifdef yypush_buffer_state
69
+ #define katanapush_buffer_state_ALREADY_DEFINED
70
+ #else
71
+ #define yypush_buffer_state katanapush_buffer_state
72
+ #endif
73
+
74
+ #ifdef yypop_buffer_state
75
+ #define katanapop_buffer_state_ALREADY_DEFINED
76
+ #else
77
+ #define yypop_buffer_state katanapop_buffer_state
78
+ #endif
79
+
80
+ #ifdef yyensure_buffer_stack
81
+ #define katanaensure_buffer_stack_ALREADY_DEFINED
82
+ #else
83
+ #define yyensure_buffer_stack katanaensure_buffer_stack
84
+ #endif
85
+
86
+ #ifdef yylex
87
+ #define katanalex_ALREADY_DEFINED
88
+ #else
89
+ #define yylex katanalex
90
+ #endif
91
+
92
+ #ifdef yyrestart
93
+ #define katanarestart_ALREADY_DEFINED
94
+ #else
95
+ #define yyrestart katanarestart
96
+ #endif
97
+
98
+ #ifdef yylex_init
99
+ #define katanalex_init_ALREADY_DEFINED
100
+ #else
101
+ #define yylex_init katanalex_init
102
+ #endif
103
+
104
+ #ifdef yylex_init_extra
105
+ #define katanalex_init_extra_ALREADY_DEFINED
106
+ #else
107
+ #define yylex_init_extra katanalex_init_extra
108
+ #endif
109
+
110
+ #ifdef yylex_destroy
111
+ #define katanalex_destroy_ALREADY_DEFINED
112
+ #else
113
+ #define yylex_destroy katanalex_destroy
114
+ #endif
115
+
116
+ #ifdef yyget_debug
117
+ #define katanaget_debug_ALREADY_DEFINED
118
+ #else
119
+ #define yyget_debug katanaget_debug
120
+ #endif
121
+
122
+ #ifdef yyset_debug
123
+ #define katanaset_debug_ALREADY_DEFINED
124
+ #else
125
+ #define yyset_debug katanaset_debug
126
+ #endif
127
+
128
+ #ifdef yyget_extra
129
+ #define katanaget_extra_ALREADY_DEFINED
130
+ #else
131
+ #define yyget_extra katanaget_extra
132
+ #endif
133
+
134
+ #ifdef yyset_extra
135
+ #define katanaset_extra_ALREADY_DEFINED
136
+ #else
137
+ #define yyset_extra katanaset_extra
138
+ #endif
139
+
140
+ #ifdef yyget_in
141
+ #define katanaget_in_ALREADY_DEFINED
142
+ #else
143
+ #define yyget_in katanaget_in
144
+ #endif
145
+
146
+ #ifdef yyset_in
147
+ #define katanaset_in_ALREADY_DEFINED
148
+ #else
149
+ #define yyset_in katanaset_in
150
+ #endif
151
+
152
+ #ifdef yyget_out
153
+ #define katanaget_out_ALREADY_DEFINED
154
+ #else
155
+ #define yyget_out katanaget_out
156
+ #endif
157
+
158
+ #ifdef yyset_out
159
+ #define katanaset_out_ALREADY_DEFINED
160
+ #else
161
+ #define yyset_out katanaset_out
162
+ #endif
163
+
164
+ #ifdef yyget_leng
165
+ #define katanaget_leng_ALREADY_DEFINED
166
+ #else
167
+ #define yyget_leng katanaget_leng
168
+ #endif
169
+
170
+ #ifdef yyget_text
171
+ #define katanaget_text_ALREADY_DEFINED
172
+ #else
173
+ #define yyget_text katanaget_text
174
+ #endif
175
+
176
+ #ifdef yyget_lineno
177
+ #define katanaget_lineno_ALREADY_DEFINED
178
+ #else
179
+ #define yyget_lineno katanaget_lineno
180
+ #endif
181
+
182
+ #ifdef yyset_lineno
183
+ #define katanaset_lineno_ALREADY_DEFINED
184
+ #else
185
+ #define yyset_lineno katanaset_lineno
186
+ #endif
187
+
188
+ #ifdef yyget_column
189
+ #define katanaget_column_ALREADY_DEFINED
190
+ #else
191
+ #define yyget_column katanaget_column
192
+ #endif
193
+
194
+ #ifdef yyset_column
195
+ #define katanaset_column_ALREADY_DEFINED
196
+ #else
197
+ #define yyset_column katanaset_column
198
+ #endif
199
+
200
+ #ifdef yywrap
201
+ #define katanawrap_ALREADY_DEFINED
202
+ #else
203
+ #define yywrap katanawrap
204
+ #endif
205
+
206
+ #ifdef yyget_lval
207
+ #define katanaget_lval_ALREADY_DEFINED
208
+ #else
209
+ #define yyget_lval katanaget_lval
210
+ #endif
211
+
212
+ #ifdef yyset_lval
213
+ #define katanaset_lval_ALREADY_DEFINED
214
+ #else
215
+ #define yyset_lval katanaset_lval
216
+ #endif
217
+
218
+ #ifdef yyget_lloc
219
+ #define katanaget_lloc_ALREADY_DEFINED
220
+ #else
221
+ #define yyget_lloc katanaget_lloc
222
+ #endif
223
+
224
+ #ifdef yyset_lloc
225
+ #define katanaset_lloc_ALREADY_DEFINED
226
+ #else
227
+ #define yyset_lloc katanaset_lloc
228
+ #endif
229
+
230
+ #ifdef yyalloc
231
+ #define katanaalloc_ALREADY_DEFINED
232
+ #else
233
+ #define yyalloc katanaalloc
234
+ #endif
235
+
236
+ #ifdef yyrealloc
237
+ #define katanarealloc_ALREADY_DEFINED
238
+ #else
239
+ #define yyrealloc katanarealloc
240
+ #endif
241
+
242
+ #ifdef yyfree
243
+ #define katanafree_ALREADY_DEFINED
244
+ #else
245
+ #define yyfree katanafree
246
+ #endif
247
+
248
+ /* First, we deal with platform-specific or compiler-specific issues. */
249
+
250
+ /* begin standard C headers. */
251
+ #include <stdio.h>
252
+ #include <string.h>
253
+ #include <errno.h>
254
+ #include <stdlib.h>
255
+
256
+ /* end standard C headers. */
257
+
258
+ /* flex integer type definitions */
259
+
260
+ #ifndef FLEXINT_H
261
+ #define FLEXINT_H
262
+
263
+ /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
264
+
265
+ #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
266
+
267
+ /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
268
+ * if you want the limit (max/min) macros for int types.
269
+ */
270
+ #ifndef __STDC_LIMIT_MACROS
271
+ #define __STDC_LIMIT_MACROS 1
272
+ #endif
273
+
274
+ #include <inttypes.h>
275
+ typedef int8_t flex_int8_t;
276
+ typedef uint8_t flex_uint8_t;
277
+ typedef int16_t flex_int16_t;
278
+ typedef uint16_t flex_uint16_t;
279
+ typedef int32_t flex_int32_t;
280
+ typedef uint32_t flex_uint32_t;
281
+ #else
282
+ typedef signed char flex_int8_t;
283
+ typedef short int flex_int16_t;
284
+ typedef int flex_int32_t;
285
+ typedef unsigned char flex_uint8_t;
286
+ typedef unsigned short int flex_uint16_t;
287
+ typedef unsigned int flex_uint32_t;
288
+
289
+ /* Limits of integral types. */
290
+ #ifndef INT8_MIN
291
+ #define INT8_MIN (-128)
292
+ #endif
293
+ #ifndef INT16_MIN
294
+ #define INT16_MIN (-32767-1)
295
+ #endif
296
+ #ifndef INT32_MIN
297
+ #define INT32_MIN (-2147483647-1)
298
+ #endif
299
+ #ifndef INT8_MAX
300
+ #define INT8_MAX (127)
301
+ #endif
302
+ #ifndef INT16_MAX
303
+ #define INT16_MAX (32767)
304
+ #endif
305
+ #ifndef INT32_MAX
306
+ #define INT32_MAX (2147483647)
307
+ #endif
308
+ #ifndef UINT8_MAX
309
+ #define UINT8_MAX (255U)
310
+ #endif
311
+ #ifndef UINT16_MAX
312
+ #define UINT16_MAX (65535U)
313
+ #endif
314
+ #ifndef UINT32_MAX
315
+ #define UINT32_MAX (4294967295U)
316
+ #endif
317
+
318
+ #ifndef SIZE_MAX
319
+ #define SIZE_MAX (~(size_t)0)
320
+ #endif
321
+
322
+ #endif /* ! C99 */
323
+
324
+ #endif /* ! FLEXINT_H */
325
+
326
+ /* begin standard C++ headers. */
327
+
328
+ /* TODO: this is always defined, so inline it */
329
+ #define yyconst const
330
+
331
+ #if defined(__GNUC__) && __GNUC__ >= 3
332
+ #define yynoreturn __attribute__((__noreturn__))
333
+ #else
334
+ #define yynoreturn
335
+ #endif
336
+
337
+ /* Returned upon end-of-file. */
338
+ #define YY_NULL 0
339
+
340
+ /* Promotes a possibly negative, possibly signed char to an
341
+ * integer in range [0..255] for use as an array index.
342
+ */
343
+ #define YY_SC_TO_UI(c) ((YY_CHAR) (c))
344
+
345
+ /* An opaque pointer. */
346
+ #ifndef YY_TYPEDEF_YY_SCANNER_T
347
+ #define YY_TYPEDEF_YY_SCANNER_T
348
+ typedef void* yyscan_t;
349
+ #endif
350
+
351
+ /* For convenience, these vars (plus the bison vars far below)
352
+ are macros in the reentrant scanner. */
353
+ #define yyin yyg->yyin_r
354
+ #define yyout yyg->yyout_r
355
+ #define yyextra yyg->yyextra_r
356
+ #define yyleng yyg->yyleng_r
357
+ #define yytext yyg->yytext_r
358
+ #define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno)
359
+ #define yycolumn (YY_CURRENT_BUFFER_LVALUE->yy_bs_column)
360
+ #define yy_flex_debug yyg->yy_flex_debug_r
361
+
362
+ /* Enter a start condition. This macro really ought to take a parameter,
363
+ * but we do it the disgusting crufty way forced on us by the ()-less
364
+ * definition of BEGIN.
365
+ */
366
+ #define BEGIN yyg->yy_start = 1 + 2 *
367
+ /* Translate the current start state into a value that can be later handed
368
+ * to BEGIN to return to the state. The YYSTATE alias is for lex
369
+ * compatibility.
370
+ */
371
+ #define YY_START ((yyg->yy_start - 1) / 2)
372
+ #define YYSTATE YY_START
373
+ /* Action number for EOF rule of a given start state. */
374
+ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
375
+ /* Special action meaning "start processing a new file". */
376
+ #define YY_NEW_FILE yyrestart( yyin , yyscanner )
377
+ #define YY_END_OF_BUFFER_CHAR 0
378
+
379
+ /* Size of default input buffer. */
380
+ #ifndef YY_BUF_SIZE
381
+ #ifdef __ia64__
382
+ /* On IA-64, the buffer size is 16k, not 8k.
383
+ * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
384
+ * Ditto for the __ia64__ case accordingly.
385
+ */
386
+ #define YY_BUF_SIZE 32768
387
+ #else
388
+ #define YY_BUF_SIZE 16384
389
+ #endif /* __ia64__ */
390
+ #endif
391
+
392
+ /* The state buf must be large enough to hold one state per character in the main buffer.
393
+ */
394
+ #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
395
+
396
+ #ifndef YY_TYPEDEF_YY_BUFFER_STATE
397
+ #define YY_TYPEDEF_YY_BUFFER_STATE
398
+ typedef struct yy_buffer_state *YY_BUFFER_STATE;
399
+ #endif
400
+
401
+ #ifndef YY_TYPEDEF_YY_SIZE_T
402
+ #define YY_TYPEDEF_YY_SIZE_T
403
+ typedef size_t yy_size_t;
404
+ #endif
405
+
406
+ #define EOB_ACT_CONTINUE_SCAN 0
407
+ #define EOB_ACT_END_OF_FILE 1
408
+ #define EOB_ACT_LAST_MATCH 2
409
+
410
+ /* Note: We specifically omit the test for yy_rule_can_match_eol because it requires
411
+ * access to the local variable yy_act. Since yyless() is a macro, it would break
412
+ * existing scanners that call yyless() from OUTSIDE yylex.
413
+ * One obvious solution it to make yy_act a global. I tried that, and saw
414
+ * a 5% performance hit in a non-yylineno scanner, because yy_act is
415
+ * normally declared as a register variable-- so it is not worth it.
416
+ */
417
+ #define YY_LESS_LINENO(n) \
418
+ do { \
419
+ int yyl;\
420
+ for ( yyl = n; yyl < yyleng; ++yyl )\
421
+ if ( yytext[yyl] == '\n' )\
422
+ --yylineno;\
423
+ }while(0)
424
+ #define YY_LINENO_REWIND_TO(dst) \
425
+ do {\
426
+ const char *p;\
427
+ for ( p = yy_cp-1; p >= (dst); --p)\
428
+ if ( *p == '\n' )\
429
+ --yylineno;\
430
+ }while(0)
431
+
432
+ /* Return all but the first "n" matched characters back to the input stream. */
433
+ #define yyless(n) \
434
+ do \
435
+ { \
436
+ /* Undo effects of setting up yytext. */ \
437
+ int yyless_macro_arg = (n); \
438
+ YY_LESS_LINENO(yyless_macro_arg);\
439
+ *yy_cp = yyg->yy_hold_char; \
440
+ YY_RESTORE_YY_MORE_OFFSET \
441
+ yyg->yy_c_buf_p = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
442
+ YY_DO_BEFORE_ACTION; /* set up yytext again */ \
443
+ } \
444
+ while ( 0 )
445
+ #define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner )
446
+
447
+ #ifndef YY_STRUCT_YY_BUFFER_STATE
448
+ #define YY_STRUCT_YY_BUFFER_STATE
449
+ struct yy_buffer_state
450
+ {
451
+ FILE *yy_input_file;
452
+
453
+ char *yy_ch_buf; /* input buffer */
454
+ char *yy_buf_pos; /* current position in input buffer */
455
+
456
+ /* Size of input buffer in bytes, not including room for EOB
457
+ * characters.
458
+ */
459
+ int yy_buf_size;
460
+
461
+ /* Number of characters read into yy_ch_buf, not including EOB
462
+ * characters.
463
+ */
464
+ int yy_n_chars;
465
+
466
+ /* Whether we "own" the buffer - i.e., we know we created it,
467
+ * and can realloc() it to grow it, and should free() it to
468
+ * delete it.
469
+ */
470
+ int yy_is_our_buffer;
471
+
472
+ /* Whether this is an "interactive" input source; if so, and
473
+ * if we're using stdio for input, then we want to use getc()
474
+ * instead of fread(), to make sure we stop fetching input after
475
+ * each newline.
476
+ */
477
+ int yy_is_interactive;
478
+
479
+ /* Whether we're considered to be at the beginning of a line.
480
+ * If so, '^' rules will be active on the next match, otherwise
481
+ * not.
482
+ */
483
+ int yy_at_bol;
484
+
485
+ int yy_bs_lineno; /**< The line count. */
486
+ int yy_bs_column; /**< The column count. */
487
+
488
+ /* Whether to try to fill the input buffer when we reach the
489
+ * end of it.
490
+ */
491
+ int yy_fill_buffer;
492
+
493
+ int yy_buffer_status;
494
+
495
+ #define YY_BUFFER_NEW 0
496
+ #define YY_BUFFER_NORMAL 1
497
+ /* When an EOF's been seen but there's still some text to process
498
+ * then we mark the buffer as YY_EOF_PENDING, to indicate that we
499
+ * shouldn't try reading from the input source any more. We might
500
+ * still have a bunch of tokens to match, though, because of
501
+ * possible backing-up.
502
+ *
503
+ * When we actually see the EOF, we change the status to "new"
504
+ * (via yyrestart()), so that the user can continue scanning by
505
+ * just pointing yyin at a new input file.
506
+ */
507
+ #define YY_BUFFER_EOF_PENDING 2
508
+
509
+ };
510
+ #endif /* !YY_STRUCT_YY_BUFFER_STATE */
511
+
512
+ /* We provide macros for accessing buffer states in case in the
513
+ * future we want to put the buffer states in a more general
514
+ * "scanner state".
515
+ *
516
+ * Returns the top of the stack, or NULL.
517
+ */
518
+ #define YY_CURRENT_BUFFER ( yyg->yy_buffer_stack \
519
+ ? yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] \
520
+ : NULL)
521
+ /* Same as previous macro, but useful when we know that the buffer stack is not
522
+ * NULL or when we need an lvalue. For internal use only.
523
+ */
524
+ #define YY_CURRENT_BUFFER_LVALUE yyg->yy_buffer_stack[yyg->yy_buffer_stack_top]
525
+
526
+ void yyrestart ( FILE *input_file , yyscan_t yyscanner );
527
+ void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner );
528
+ YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size , yyscan_t yyscanner );
529
+ void yy_delete_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner );
530
+ void yy_flush_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner );
531
+ void yypush_buffer_state ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner );
532
+ void yypop_buffer_state ( yyscan_t yyscanner );
533
+
534
+ static void yyensure_buffer_stack ( yyscan_t yyscanner );
535
+ static void yy_load_buffer_state ( yyscan_t yyscanner );
536
+ static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file , yyscan_t yyscanner );
537
+ #define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER , yyscanner)
538
+
539
+ YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size , yyscan_t yyscanner );
540
+ YY_BUFFER_STATE yy_scan_string ( const char *yy_str , yyscan_t yyscanner );
541
+ YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len , yyscan_t yyscanner );
542
+
543
+ void *yyalloc ( yy_size_t , yyscan_t yyscanner );
544
+ void *yyrealloc ( void *, yy_size_t , yyscan_t yyscanner );
545
+ void yyfree ( void * , yyscan_t yyscanner );
546
+
547
+ #define yy_new_buffer yy_create_buffer
548
+ #define yy_set_interactive(is_interactive) \
549
+ { \
550
+ if ( ! YY_CURRENT_BUFFER ){ \
551
+ yyensure_buffer_stack (yyscanner); \
552
+ YY_CURRENT_BUFFER_LVALUE = \
553
+ yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); \
554
+ } \
555
+ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
556
+ }
557
+ #define yy_set_bol(at_bol) \
558
+ { \
559
+ if ( ! YY_CURRENT_BUFFER ){\
560
+ yyensure_buffer_stack (yyscanner); \
561
+ YY_CURRENT_BUFFER_LVALUE = \
562
+ yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); \
563
+ } \
564
+ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
565
+ }
566
+ #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
567
+
568
+ /* Begin user sect3 */
569
+
570
+ #define katanawrap(yyscanner) (/*CONSTCOND*/1)
571
+ #define YY_SKIP_YYWRAP
572
+ typedef flex_uint8_t YY_CHAR;
573
+
574
+ typedef int yy_state_type;
575
+
576
+ #define yytext_ptr yytext_r
577
+
578
+ static yy_state_type yy_get_previous_state ( yyscan_t yyscanner );
579
+ static yy_state_type yy_try_NUL_trans ( yy_state_type current_state , yyscan_t yyscanner);
580
+ static int yy_get_next_buffer ( yyscan_t yyscanner );
581
+ static void yynoreturn yy_fatal_error ( const char* msg , yyscan_t yyscanner );
582
+
583
+ /* Done after the current pattern has been matched and before the
584
+ * corresponding action - sets up yytext.
585
+ */
586
+ #define YY_DO_BEFORE_ACTION \
587
+ yyg->yytext_ptr = yy_bp; \
588
+ yyleng = (int) (yy_cp - yy_bp); \
589
+ yyg->yy_hold_char = *yy_cp; \
590
+ *yy_cp = '\0'; \
591
+ yyg->yy_c_buf_p = yy_cp;
592
+ #define YY_NUM_RULES 87
593
+ #define YY_END_OF_BUFFER 88
594
+ /* This struct is not used in this scanner,
595
+ but its presence is necessary. */
596
+ struct yy_trans_info
597
+ {
598
+ flex_int32_t yy_verify;
599
+ flex_int32_t yy_nxt;
600
+ };
601
+ static const flex_int16_t yy_accept[508] =
602
+ { 0,
603
+ 0, 0, 0, 0, 0, 0, 0, 0, 88, 86,
604
+ 2, 2, 86, 86, 86, 86, 86, 86, 86, 86,
605
+ 86, 86, 68, 86, 86, 17, 17, 17, 17, 17,
606
+ 17, 86, 86, 86, 86, 83, 17, 17, 17, 82,
607
+ 85, 17, 17, 17, 84, 2, 0, 0, 0, 16,
608
+ 0, 0, 19, 19, 20, 0, 8, 0, 0, 9,
609
+ 0, 18, 0, 17, 17, 17, 0, 69, 0, 67,
610
+ 0, 0, 68, 65, 65, 65, 65, 65, 65, 65,
611
+ 65, 65, 65, 18, 65, 65, 54, 65, 65, 0,
612
+ 65, 0, 0, 36, 36, 36, 36, 36, 36, 36,
613
+
614
+ 36, 36, 0, 79, 17, 0, 17, 17, 17, 17,
615
+ 17, 0, 0, 17, 17, 0, 17, 17, 17, 7,
616
+ 6, 5, 17, 17, 17, 17, 17, 14, 0, 0,
617
+ 0, 16, 0, 0, 20, 19, 0, 20, 20, 0,
618
+ 0, 16, 0, 0, 4, 17, 0, 0, 66, 65,
619
+ 0, 40, 44, 65, 65, 38, 42, 64, 65, 55,
620
+ 46, 65, 45, 53, 66, 65, 48, 47, 43, 65,
621
+ 65, 65, 58, 65, 57, 65, 65, 65, 0, 36,
622
+ 36, 0, 36, 36, 36, 36, 36, 36, 36, 36,
623
+ 36, 36, 17, 17, 17, 17, 17, 17, 17, 0,
624
+
625
+ 18, 17, 17, 80, 80, 17, 17, 12, 10, 17,
626
+ 15, 13, 0, 0, 0, 20, 20, 20, 0, 0,
627
+ 17, 0, 1, 65, 65, 49, 65, 62, 65, 65,
628
+ 56, 18, 50, 39, 65, 65, 65, 65, 65, 3,
629
+ 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
630
+ 36, 36, 17, 17, 72, 17, 78, 77, 71, 0,
631
+ 80, 80, 80, 79, 17, 11, 0, 0, 20, 20,
632
+ 0, 17, 0, 0, 65, 63, 61, 51, 52, 60,
633
+ 59, 65, 65, 36, 36, 36, 36, 36, 36, 36,
634
+ 36, 22, 36, 36, 17, 76, 73, 81, 80, 80,
635
+
636
+ 80, 80, 0, 0, 0, 0, 75, 0, 17, 0,
637
+ 0, 20, 20, 0, 17, 65, 65, 41, 36, 36,
638
+ 36, 36, 36, 36, 23, 36, 36, 36, 17, 81,
639
+ 80, 80, 80, 80, 80, 0, 0, 0, 0, 0,
640
+ 0, 0, 0, 0, 75, 0, 0, 17, 0, 0,
641
+ 20, 20, 0, 17, 65, 65, 36, 36, 36, 36,
642
+ 21, 36, 36, 36, 36, 17, 81, 80, 80, 80,
643
+ 80, 80, 80, 0, 74, 0, 0, 0, 0, 0,
644
+ 0, 0, 0, 0, 0, 0, 17, 0, 0, 20,
645
+ 20, 0, 17, 65, 65, 36, 36, 25, 36, 36,
646
+
647
+ 36, 36, 36, 17, 81, 80, 80, 80, 80, 80,
648
+ 80, 80, 0, 74, 0, 0, 0, 74, 0, 0,
649
+ 0, 0, 20, 17, 65, 36, 36, 36, 36, 36,
650
+ 28, 81, 0, 0, 0, 37, 17, 36, 24, 27,
651
+ 26, 81, 0, 0, 0, 17, 36, 0, 0, 0,
652
+ 70, 36, 36, 36, 36, 36, 36, 0, 0, 36,
653
+ 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
654
+ 36, 36, 36, 36, 29, 36, 36, 35, 36, 36,
655
+ 36, 33, 36, 36, 36, 36, 36, 36, 36, 36,
656
+ 34, 36, 36, 36, 36, 32, 36, 36, 36, 36,
657
+
658
+ 36, 30, 36, 36, 36, 31, 0
659
+ } ;
660
+
661
+ static const YY_CHAR yy_ec[256] =
662
+ { 0,
663
+ 1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
664
+ 1, 4, 5, 1, 1, 1, 1, 1, 1, 1,
665
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
666
+ 1, 6, 7, 8, 9, 10, 11, 12, 13, 14,
667
+ 15, 16, 17, 12, 18, 19, 20, 21, 21, 21,
668
+ 21, 21, 21, 21, 21, 21, 21, 12, 22, 23,
669
+ 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
670
+ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
671
+ 44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
672
+ 12, 54, 12, 55, 56, 12, 57, 58, 59, 60,
673
+
674
+ 61, 62, 63, 64, 65, 37, 66, 67, 68, 69,
675
+ 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
676
+ 80, 81, 82, 83, 12, 84, 1, 85, 85, 85,
677
+ 85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
678
+ 85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
679
+ 85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
680
+ 85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
681
+ 85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
682
+ 85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
683
+ 85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
684
+
685
+ 85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
686
+ 85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
687
+ 85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
688
+ 85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
689
+ 85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
690
+ 85, 85, 85, 85, 85
691
+ } ;
692
+
693
+ static const YY_CHAR yy_meta[86] =
694
+ { 0,
695
+ 1, 2, 3, 4, 4, 5, 6, 7, 6, 6,
696
+ 6, 6, 7, 8, 6, 6, 9, 10, 6, 6,
697
+ 11, 6, 6, 6, 6, 12, 6, 13, 13, 13,
698
+ 13, 13, 13, 14, 14, 14, 14, 14, 14, 14,
699
+ 14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
700
+ 14, 14, 14, 14, 6, 14, 13, 13, 13, 13,
701
+ 13, 13, 14, 14, 14, 14, 14, 14, 14, 14,
702
+ 14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
703
+ 14, 6, 6, 6, 14
704
+ } ;
705
+
706
+ static const flex_int16_t yy_base[565] =
707
+ { 0,
708
+ 0, 0, 64, 66, 68, 71, 0, 0, 1518, 5623,
709
+ 98, 112, 152, 89, 200, 1486, 76, 1485, 70, 111,
710
+ 1487, 1469, 252, 1476, 320, 73, 146, 105, 148, 165,
711
+ 152, 374, 1439, 1422, 1421, 5623, 158, 395, 182, 5623,
712
+ 5623, 196, 412, 194, 5623, 238, 419, 58, 123, 5623,
713
+ 483, 124, 0, 525, 1390, 567, 5623, 109, 628, 5623,
714
+ 123, 337, 1418, 137, 366, 184, 670, 205, 1376, 1374,
715
+ 1321, 1340, 0, 132, 410, 429, 402, 319, 394, 426,
716
+ 324, 393, 452, 516, 559, 507, 198, 423, 600, 712,
717
+ 290, 1335, 316, 1290, 150, 139, 133, 215, 441, 221,
718
+
719
+ 440, 455, 754, 5623, 321, 796, 511, 548, 591, 515,
720
+ 482, 678, 569, 702, 567, 1302, 553, 333, 857, 5623,
721
+ 5623, 5623, 661, 597, 609, 695, 659, 345, 305, 354,
722
+ 212, 408, 918, 979, 1237, 1021, 1063, 1214, 1124, 640,
723
+ 336, 439, 1185, 1246, 5623, 696, 1242, 104, 5623, 421,
724
+ 1288, 484, 493, 703, 1297, 598, 657, 660, 707, 705,
725
+ 722, 741, 734, 735, 775, 828, 736, 743, 745, 748,
726
+ 751, 792, 746, 815, 750, 781, 1367, 822, 1239, 550,
727
+ 1187, 1409, 764, 769, 506, 617, 562, 796, 684, 825,
728
+ 1182, 1470, 494, 1531, 853, 549, 827, 625, 793, 931,
729
+
730
+ 1156, 856, 830, 238, 1092, 838, 1573, 859, 877, 886,
731
+ 881, 887, 447, 451, 1634, 1048, 1695, 1737, 519, 1779,
732
+ 889, 1073, 5623, 786, 1840, 876, 888, 891, 937, 936,
733
+ 908, 940, 915, 941, 948, 947, 951, 1882, 1002, 5623,
734
+ 939, 1023, 1943, 952, 968, 976, 970, 993, 498, 843,
735
+ 1001, 1985, 2027, 945, 5623, 959, 5623, 5623, 5623, 0,
736
+ 629, 1031, 978, 1095, 2088, 1007, 563, 2149, 2191, 2233,
737
+ 2275, 1050, 969, 252, 2317, 1006, 1011, 1014, 1031, 1052,
738
+ 1053, 2359, 1092, 1013, 2401, 1059, 694, 1017, 1086, 1060,
739
+ 1065, 920, 1093, 2443, 2485, 5623, 5623, 0, 644, 934,
740
+
741
+ 883, 880, 1165, 1218, 890, 788, 5623, 2546, 2607, 773,
742
+ 2668, 2729, 2790, 2851, 2912, 2967, 3009, 1120, 1089, 3051,
743
+ 1104, 1139, 1012, 1084, 845, 1121, 1154, 3093, 3135, 0,
744
+ 945, 780, 767, 720, 710, 1250, 1019, 1258, 3196, 916,
745
+ 3257, 1278, 1283, 1320, 1361, 3318, 3379, 3440, 339, 3501,
746
+ 3562, 3623, 3684, 3745, 3806, 3867, 1107, 3909, 1150, 1175,
747
+ 639, 1261, 1181, 1153, 3951, 3993, 0, 1124, 641, 640,
748
+ 620, 586, 575, 1375, 5623, 1287, 1158, 1399, 4054, 4115,
749
+ 1022, 1289, 1407, 4176, 4237, 4298, 1429, 1075, 1452, 4359,
750
+ 1484, 1491, 1177, 4401, 4462, 1183, 4523, 422, 1240, 1298,
751
+
752
+ 1280, 1156, 1511, 1446, 0, 445, 5623, 5623, 5623, 5623,
753
+ 5623, 5623, 1564, 1258, 1288, 4565, 1571, 1405, 1541, 4607,
754
+ 4668, 1104, 1517, 1313, 1475, 1352, 1544, 1362, 1438, 1524,
755
+ 397, 0, 4710, 4752, 4794, 5623, 1337, 1339, 390, 387,
756
+ 323, 5623, 4836, 4878, 4920, 1369, 4952, 5009, 5051, 1605,
757
+ 5623, 1526, 1565, 1567, 1568, 1591, 1408, 1666, 1676, 1570,
758
+ 1217, 1451, 1486, 1619, 1636, 1648, 1594, 1668, 1622, 1652,
759
+ 1660, 1603, 1664, 1589, 297, 1675, 1678, 291, 1684, 1489,
760
+ 1688, 180, 1677, 1705, 1706, 1689, 1710, 1717, 1596, 1727,
761
+ 157, 1748, 1730, 1759, 1771, 141, 1306, 1749, 1597, 1772,
762
+
763
+ 1795, 136, 1770, 1776, 1801, 41, 5623, 5112, 5117, 5130,
764
+ 5135, 5140, 5147, 5157, 5170, 242, 5175, 5185, 5198, 5212,
765
+ 514, 5218, 5228, 5233, 5243, 5253, 5257, 5266, 5279, 5293,
766
+ 5303, 5313, 5318, 5331, 266, 5336, 5348, 5362, 447, 5367,
767
+ 5379, 5392, 5405, 5418, 5431, 5444, 5457, 706, 5462, 5474,
768
+ 5487, 5500, 5513, 5526, 5539, 5552, 1183, 5557, 5569, 5582,
769
+ 5595, 5608, 1300, 1325
770
+ } ;
771
+
772
+ static const flex_int16_t yy_def[565] =
773
+ { 0,
774
+ 507, 1, 1, 1, 1, 1, 1, 1, 507, 507,
775
+ 507, 507, 507, 508, 509, 507, 510, 507, 507, 511,
776
+ 507, 507, 507, 507, 512, 513, 513, 513, 513, 513,
777
+ 513, 514, 507, 507, 507, 507, 513, 513, 513, 507,
778
+ 507, 513, 513, 513, 507, 507, 507, 507, 508, 507,
779
+ 515, 509, 516, 517, 517, 518, 507, 510, 519, 507,
780
+ 507, 507, 507, 513, 513, 513, 514, 23, 520, 507,
781
+ 521, 507, 23, 522, 522, 522, 522, 522, 522, 522,
782
+ 522, 522, 522, 522, 522, 522, 522, 522, 522, 523,
783
+ 522, 507, 512, 524, 524, 524, 524, 524, 524, 524,
784
+
785
+ 524, 524, 525, 507, 513, 526, 513, 513, 513, 513,
786
+ 513, 507, 507, 513, 513, 527, 513, 513, 513, 507,
787
+ 507, 507, 513, 513, 513, 513, 513, 513, 507, 508,
788
+ 508, 508, 508, 515, 517, 517, 528, 517, 136, 510,
789
+ 510, 510, 510, 529, 507, 513, 520, 530, 507, 522,
790
+ 531, 522, 522, 522, 522, 522, 522, 522, 522, 522,
791
+ 522, 522, 522, 522, 507, 522, 522, 522, 522, 522,
792
+ 522, 522, 522, 522, 522, 522, 522, 522, 507, 524,
793
+ 524, 532, 524, 524, 524, 524, 524, 524, 524, 524,
794
+ 524, 524, 513, 119, 513, 513, 513, 513, 513, 507,
795
+
796
+ 507, 513, 513, 533, 507, 513, 119, 513, 513, 513,
797
+ 513, 513, 507, 508, 508, 517, 136, 139, 510, 143,
798
+ 513, 534, 507, 522, 177, 522, 522, 522, 522, 522,
799
+ 522, 522, 522, 522, 522, 522, 522, 177, 522, 507,
800
+ 524, 524, 192, 524, 524, 524, 524, 524, 524, 524,
801
+ 524, 192, 194, 513, 507, 513, 507, 507, 507, 535,
802
+ 536, 507, 507, 537, 253, 513, 507, 508, 217, 139,
803
+ 143, 513, 534, 538, 225, 522, 522, 522, 522, 522,
804
+ 522, 177, 522, 524, 243, 524, 524, 524, 524, 524,
805
+ 524, 524, 524, 192, 253, 507, 507, 539, 540, 507,
806
+
807
+ 507, 507, 541, 541, 542, 543, 507, 544, 253, 507,
808
+ 545, 546, 546, 547, 253, 225, 177, 522, 524, 285,
809
+ 524, 524, 524, 524, 524, 524, 524, 192, 253, 548,
810
+ 549, 507, 507, 507, 507, 507, 542, 507, 550, 543,
811
+ 551, 552, 552, 552, 552, 552, 553, 253, 507, 554,
812
+ 555, 555, 556, 253, 177, 355, 524, 320, 524, 524,
813
+ 524, 524, 524, 524, 192, 253, 557, 558, 507, 507,
814
+ 507, 507, 507, 507, 507, 542, 542, 542, 542, 559,
815
+ 560, 560, 560, 560, 561, 562, 354, 507, 554, 352,
816
+ 555, 556, 354, 355, 355, 524, 192, 524, 524, 524,
817
+
818
+ 524, 524, 524, 354, 563, 507, 507, 507, 507, 507,
819
+ 507, 507, 542, 542, 542, 379, 560, 560, 560, 384,
820
+ 562, 507, 555, 354, 395, 524, 524, 524, 524, 524,
821
+ 524, 564, 379, 384, 421, 507, 354, 524, 524, 524,
822
+ 524, 507, 379, 384, 421, 354, 524, 379, 384, 562,
823
+ 507, 524, 524, 524, 524, 524, 524, 542, 560, 524,
824
+ 524, 524, 524, 524, 524, 524, 524, 524, 524, 524,
825
+ 524, 524, 524, 524, 524, 524, 524, 524, 524, 524,
826
+ 524, 524, 524, 524, 524, 524, 524, 524, 524, 524,
827
+ 524, 524, 524, 524, 524, 524, 524, 524, 524, 524,
828
+
829
+ 524, 524, 524, 524, 524, 524, 0, 507, 507, 507,
830
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
831
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
832
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
833
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
834
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
835
+ 507, 507, 507, 507
836
+ } ;
837
+
838
+ static const flex_int16_t yy_nxt[5709] =
839
+ { 0,
840
+ 10, 11, 12, 11, 11, 11, 13, 14, 15, 16,
841
+ 10, 10, 17, 10, 10, 18, 19, 20, 21, 22,
842
+ 23, 10, 24, 10, 10, 10, 25, 26, 26, 27,
843
+ 26, 26, 26, 26, 28, 26, 26, 26, 26, 29,
844
+ 30, 26, 26, 26, 26, 26, 26, 31, 26, 26,
845
+ 26, 26, 26, 32, 33, 26, 26, 26, 27, 26,
846
+ 26, 26, 26, 28, 26, 26, 26, 29, 30, 26,
847
+ 26, 26, 26, 26, 26, 31, 26, 26, 26, 26,
848
+ 26, 10, 34, 35, 26, 36, 104, 36, 50, 41,
849
+ 61, 37, 41, 37, 182, 42, 50, 129, 42, 46,
850
+
851
+ 46, 46, 46, 46, 38, 39, 38, 39, 43, 44,
852
+ 62, 43, 44, 46, 46, 46, 46, 46, 104, 148,
853
+ 37, 50, 37, 223, 42, 129, 106, 42, 63, 59,
854
+ 50, 61, 38, 39, 38, 39, 43, 44, 62, 43,
855
+ 44, 507, 51, 61, 507, 40, 109, 40, 149, 45,
856
+ 104, 65, 45, 47, 47, 47, 47, 47, 106, 104,
857
+ 66, 104, 59, 62, 67, 104, 112, 112, 116, 112,
858
+ 112, 104, 185, 107, 109, 110, 51, 56, 104, 65,
859
+ 184, 113, 114, 111, 183, 151, 182, 48, 66, 182,
860
+ 106, 62, 182, 108, 182, 104, 117, 104, 123, 106,
861
+
862
+ 185, 106, 107, 182, 110, 106, 115, 104, 184, 104,
863
+ 182, 106, 111, 183, 149, 146, 48, 52, 106, 50,
864
+ 53, 108, 125, 507, 117, 68, 123, 54, 54, 54,
865
+ 54, 54, 54, 182, 115, 106, 126, 106, 128, 46,
866
+ 46, 46, 46, 46, 146, 74, 186, 106, 188, 106,
867
+ 125, 151, 53, 56, 53, 260, 54, 54, 54, 54,
868
+ 54, 54, 70, 262, 126, 51, 128, 274, 182, 71,
869
+ 72, 223, 73, 74, 182, 186, 298, 188, 298, 74,
870
+ 74, 75, 76, 77, 78, 79, 80, 81, 74, 82,
871
+ 74, 83, 84, 74, 85, 74, 86, 87, 88, 74,
872
+
873
+ 89, 74, 74, 74, 74, 90, 149, 91, 74, 74,
874
+ 75, 76, 77, 78, 79, 80, 81, 82, 74, 83,
875
+ 84, 74, 85, 74, 86, 87, 88, 74, 89, 74,
876
+ 74, 74, 74, 507, 104, 149, 74, 93, 112, 112,
877
+ 149, 112, 112, 151, 182, 178, 104, 213, 50, 95,
878
+ 182, 180, 96, 113, 113, 97, 49, 98, 104, 99,
879
+ 100, 50, 101, 158, 161, 102, 388, 112, 112, 103,
880
+ 112, 112, 151, 103, 106, 213, 182, 151, 95, 104,
881
+ 180, 96, 113, 114, 97, 98, 106, 99, 100, 59,
882
+ 101, 158, 161, 102, 119, 388, 112, 112, 106, 112,
883
+
884
+ 112, 119, 119, 119, 119, 119, 119, 51, 104, 149,
885
+ 149, 113, 114, 112, 112, 50, 112, 112, 149, 106,
886
+ 47, 47, 47, 47, 47, 104, 149, 162, 113, 114,
887
+ 119, 119, 119, 119, 119, 119, 124, 149, 159, 149,
888
+ 182, 156, 149, 182, 152, 149, 151, 151, 106, 153,
889
+ 182, 50, 157, 127, 48, 151, 162, 330, 50, 330,
890
+ 154, 51, 260, 151, 124, 106, 159, 189, 149, 156,
891
+ 172, 155, 187, 152, 151, 182, 151, 153, 160, 151,
892
+ 157, 127, 151, 48, 49, 49, 49, 130, 267, 154,
893
+ 132, 163, 59, 182, 182, 104, 189, 164, 172, 155,
894
+
895
+ 149, 187, 190, 133, 51, 151, 160, 104, 182, 149,
896
+ 133, 133, 133, 133, 133, 133, 267, 112, 112, 163,
897
+ 112, 112, 199, 149, 104, 164, 74, 74, 104, 291,
898
+ 190, 50, 165, 166, 170, 106, 134, 151, 171, 133,
899
+ 133, 133, 133, 133, 133, 136, 151, 106, 246, 195,
900
+ 199, 182, 136, 136, 136, 136, 136, 136, 291, 182,
901
+ 151, 104, 255, 170, 106, 198, 104, 171, 106, 151,
902
+ 200, 200, 59, 200, 200, 149, 246, 195, 137, 196,
903
+ 104, 136, 136, 136, 136, 136, 136, 139, 167, 201,
904
+ 241, 206, 248, 198, 139, 139, 139, 139, 139, 139,
905
+
906
+ 412, 106, 106, 182, 104, 168, 106, 310, 196, 169,
907
+ 104, 411, 151, 203, 149, 182, 149, 167, 241, 206,
908
+ 106, 248, 104, 139, 139, 139, 139, 139, 139, 58,
909
+ 58, 58, 140, 168, 173, 310, 197, 169, 257, 174,
910
+ 142, 203, 58, 209, 106, 410, 260, 210, 143, 175,
911
+ 106, 151, 50, 151, 300, 143, 143, 143, 143, 143,
912
+ 143, 260, 106, 173, 197, 409, 408, 174, 247, 332,
913
+ 182, 209, 104, 149, 104, 210, 149, 175, 106, 112,
914
+ 112, 144, 112, 112, 143, 143, 143, 143, 143, 143,
915
+ 119, 208, 182, 59, 113, 113, 247, 119, 119, 119,
916
+
917
+ 119, 119, 119, 200, 200, 212, 200, 200, 104, 104,
918
+ 151, 322, 106, 151, 106, 104, 367, 250, 367, 149,
919
+ 208, 149, 202, 149, 221, 211, 119, 119, 119, 119,
920
+ 119, 119, 177, 212, 230, 373, 226, 182, 149, 177,
921
+ 177, 177, 177, 177, 177, 372, 250, 182, 106, 106,
922
+ 149, 149, 149, 221, 211, 106, 151, 149, 151, 149,
923
+ 151, 149, 149, 230, 149, 226, 149, 149, 177, 177,
924
+ 177, 177, 177, 177, 192, 151, 200, 200, 233, 200,
925
+ 200, 192, 192, 192, 192, 192, 192, 151, 151, 151,
926
+ 234, 244, 371, 231, 151, 201, 151, 149, 151, 151,
927
+
928
+ 338, 151, 149, 151, 151, 370, 258, 233, 149, 245,
929
+ 192, 192, 192, 192, 192, 192, 194, 182, 234, 349,
930
+ 244, 231, 182, 194, 194, 194, 194, 194, 194, 200,
931
+ 200, 149, 200, 200, 151, 249, 235, 245, 149, 151,
932
+ 104, 341, 236, 259, 149, 151, 106, 349, 232, 182,
933
+ 237, 264, 194, 194, 194, 194, 194, 194, 118, 118,
934
+ 118, 118, 118, 249, 235, 239, 104, 251, 151, 104,
935
+ 104, 236, 104, 256, 292, 151, 202, 207, 182, 237,
936
+ 106, 151, 254, 106, 207, 207, 207, 207, 207, 207,
937
+ 259, 106, 149, 239, 104, 251, 182, 338, 182, 104,
938
+
939
+ 259, 256, 104, 292, 149, 335, 106, 149, 334, 106,
940
+ 106, 254, 106, 207, 207, 207, 207, 207, 207, 131,
941
+ 214, 214, 214, 131, 149, 50, 272, 276, 338, 151,
942
+ 106, 149, 200, 200, 106, 200, 200, 266, 215, 106,
943
+ 106, 151, 106, 339, 151, 215, 215, 215, 215, 215,
944
+ 215, 201, 149, 149, 272, 276, 149, 149, 296, 333,
945
+ 232, 151, 260, 149, 149, 266, 278, 149, 151, 341,
946
+ 369, 51, 297, 182, 215, 215, 215, 215, 215, 215,
947
+ 49, 49, 49, 130, 274, 284, 132, 277, 279, 151,
948
+ 151, 281, 182, 151, 151, 278, 286, 280, 106, 133,
949
+
950
+ 151, 151, 289, 302, 151, 182, 133, 133, 133, 133,
951
+ 133, 133, 106, 284, 287, 277, 279, 288, 149, 281,
952
+ 104, 182, 149, 182, 286, 280, 338, 149, 290, 182,
953
+ 149, 289, 134, 283, 338, 133, 133, 133, 133, 133,
954
+ 133, 136, 287, 293, 319, 288, 182, 149, 136, 136,
955
+ 136, 136, 136, 136, 182, 151, 301, 290, 361, 151,
956
+ 106, 323, 283, 104, 151, 182, 182, 151, 149, 149,
957
+ 182, 293, 339, 319, 137, 341, 182, 136, 136, 136,
958
+ 136, 136, 136, 217, 151, 315, 361, 325, 274, 323,
959
+ 217, 217, 217, 217, 217, 217, 303, 303, 303, 303,
960
+
961
+ 303, 137, 305, 106, 321, 151, 151, 306, 149, 307,
962
+ 326, 362, 182, 182, 315, 422, 325, 263, 182, 217,
963
+ 217, 217, 217, 217, 217, 138, 138, 138, 138, 138,
964
+ 324, 318, 321, 357, 327, 359, 149, 182, 326, 182,
965
+ 362, 260, 182, 422, 218, 151, 182, 396, 308, 407,
966
+ 436, 218, 218, 218, 218, 218, 218, 182, 324, 318,
967
+ 182, 357, 327, 363, 359, 338, 303, 303, 303, 303,
968
+ 303, 360, 305, 151, 182, 396, 201, 306, 436, 307,
969
+ 218, 218, 218, 218, 218, 218, 141, 219, 219, 219,
970
+ 141, 363, 182, 405, 105, 405, 398, 50, 364, 402,
971
+
972
+ 360, 431, 399, 182, 424, 220, 182, 182, 401, 182,
973
+ 426, 339, 220, 220, 220, 220, 220, 220, 308, 336,
974
+ 336, 336, 336, 336, 398, 507, 364, 402, 182, 431,
975
+ 507, 399, 307, 424, 182, 182, 182, 401, 59, 426,
976
+ 182, 220, 220, 220, 220, 220, 220, 58, 58, 58,
977
+ 140, 336, 336, 336, 336, 336, 240, 148, 142, 374,
978
+ 374, 374, 374, 374, 307, 338, 143, 137, 467, 428,
979
+ 182, 308, 375, 143, 143, 143, 143, 143, 143, 336,
980
+ 336, 336, 336, 336, 336, 336, 336, 336, 336, 337,
981
+ 137, 507, 307, 182, 338, 338, 467, 307, 428, 144,
982
+
983
+ 400, 338, 143, 143, 143, 143, 143, 143, 225, 430,
984
+ 432, 339, 432, 149, 182, 225, 225, 225, 225, 225,
985
+ 225, 336, 336, 336, 336, 336, 227, 205, 400, 429,
986
+ 105, 308, 228, 182, 307, 442, 308, 442, 430, 229,
987
+ 339, 339, 341, 182, 225, 225, 225, 225, 225, 225,
988
+ 151, 182, 179, 437, 105, 227, 447, 499, 429, 182,
989
+ 68, 228, 336, 336, 336, 336, 336, 229, 176, 176,
990
+ 176, 176, 176, 308, 90, 307, 374, 374, 374, 374,
991
+ 374, 437, 451, 149, 70, 499, 105, 238, 446, 375,
992
+ 438, 148, 182, 439, 238, 238, 238, 238, 238, 238,
993
+
994
+ 413, 374, 374, 374, 413, 182, 338, 507, 417, 374,
995
+ 374, 374, 417, 414, 308, 182, 446, 338, 438, 338,
996
+ 151, 418, 439, 238, 238, 238, 238, 238, 238, 243,
997
+ 118, 118, 118, 118, 118, 465, 243, 243, 243, 243,
998
+ 243, 243, 145, 137, 122, 121, 105, 193, 193, 193,
999
+ 193, 193, 339, 131, 214, 214, 214, 131, 341, 50,
1000
+ 341, 182, 120, 105, 465, 243, 243, 243, 243, 243,
1001
+ 243, 191, 191, 191, 191, 191, 224, 224, 224, 224,
1002
+ 224, 468, 92, 440, 69, 138, 138, 138, 138, 138,
1003
+ 252, 182, 141, 219, 219, 219, 141, 252, 252, 252,
1004
+
1005
+ 252, 252, 252, 50, 182, 51, 484, 68, 60, 57,
1006
+ 468, 440, 191, 191, 191, 191, 191, 507, 216, 216,
1007
+ 216, 216, 216, 182, 469, 507, 252, 252, 252, 252,
1008
+ 252, 252, 193, 193, 193, 193, 193, 137, 507, 182,
1009
+ 507, 507, 182, 507, 59, 242, 242, 242, 242, 242,
1010
+ 507, 253, 469, 338, 507, 441, 507, 460, 253, 253,
1011
+ 253, 253, 253, 253, 182, 413, 374, 374, 374, 413,
1012
+ 137, 338, 417, 374, 374, 374, 417, 182, 414, 182,
1013
+ 507, 507, 507, 338, 441, 418, 460, 253, 253, 253,
1014
+ 253, 253, 253, 265, 341, 507, 461, 182, 462, 466,
1015
+
1016
+ 265, 265, 265, 265, 265, 265, 342, 342, 342, 342,
1017
+ 342, 507, 507, 492, 501, 463, 480, 339, 182, 307,
1018
+ 182, 182, 464, 182, 341, 461, 473, 462, 466, 265,
1019
+ 265, 265, 265, 265, 265, 131, 214, 214, 214, 131,
1020
+ 507, 50, 182, 463, 182, 480, 507, 182, 478, 182,
1021
+ 182, 464, 507, 475, 268, 473, 182, 470, 308, 507,
1022
+ 507, 268, 268, 268, 268, 268, 268, 377, 415, 415,
1023
+ 415, 377, 182, 338, 471, 182, 478, 382, 419, 419,
1024
+ 419, 382, 475, 476, 507, 470, 472, 51, 338, 182,
1025
+ 268, 268, 268, 268, 268, 268, 216, 216, 216, 216,
1026
+
1027
+ 216, 182, 471, 474, 481, 182, 507, 477, 479, 482,
1028
+ 507, 483, 476, 182, 472, 269, 486, 182, 507, 339,
1029
+ 489, 182, 269, 269, 269, 269, 269, 269, 182, 341,
1030
+ 182, 182, 474, 481, 485, 477, 479, 182, 482, 507,
1031
+ 483, 182, 182, 487, 486, 490, 507, 488, 507, 489,
1032
+ 507, 269, 269, 269, 269, 269, 269, 270, 182, 182,
1033
+ 507, 491, 485, 182, 270, 270, 270, 270, 270, 270,
1034
+ 182, 487, 493, 507, 490, 488, 496, 507, 507, 507,
1035
+ 182, 507, 507, 182, 507, 494, 507, 500, 507, 491,
1036
+ 497, 507, 495, 270, 270, 270, 270, 270, 270, 271,
1037
+
1038
+ 493, 182, 182, 502, 496, 504, 271, 271, 271, 271,
1039
+ 271, 271, 182, 494, 507, 500, 507, 507, 498, 497,
1040
+ 495, 505, 507, 182, 182, 182, 507, 507, 507, 182,
1041
+ 507, 507, 502, 503, 504, 271, 271, 271, 271, 271,
1042
+ 271, 224, 224, 224, 224, 224, 498, 506, 182, 505,
1043
+ 507, 507, 507, 507, 182, 507, 507, 507, 507, 507,
1044
+ 275, 503, 507, 507, 507, 507, 507, 275, 275, 275,
1045
+ 275, 275, 275, 507, 507, 506, 507, 507, 507, 507,
1046
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1047
+ 507, 507, 507, 507, 507, 507, 275, 275, 275, 275,
1048
+
1049
+ 275, 275, 282, 507, 507, 507, 507, 507, 507, 282,
1050
+ 282, 282, 282, 282, 282, 507, 507, 507, 507, 507,
1051
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1052
+ 507, 507, 507, 507, 507, 507, 507, 507, 282, 282,
1053
+ 282, 282, 282, 282, 242, 242, 242, 242, 242, 507,
1054
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1055
+ 507, 507, 507, 285, 507, 507, 507, 507, 507, 507,
1056
+ 285, 285, 285, 285, 285, 285, 507, 507, 507, 507,
1057
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1058
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 285,
1059
+
1060
+ 285, 285, 285, 285, 285, 294, 507, 507, 507, 507,
1061
+ 507, 507, 294, 294, 294, 294, 294, 294, 507, 507,
1062
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1063
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1064
+ 507, 294, 294, 294, 294, 294, 294, 295, 507, 507,
1065
+ 507, 507, 507, 507, 295, 295, 295, 295, 295, 295,
1066
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1067
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1068
+ 507, 507, 507, 295, 295, 295, 295, 295, 295, 118,
1069
+ 118, 118, 118, 118, 507, 507, 507, 507, 507, 507,
1070
+
1071
+ 507, 507, 507, 507, 507, 507, 507, 507, 309, 507,
1072
+ 507, 507, 507, 507, 507, 309, 309, 309, 309, 309,
1073
+ 309, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1074
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1075
+ 507, 507, 507, 507, 309, 309, 309, 309, 309, 309,
1076
+ 131, 214, 214, 214, 131, 507, 50, 507, 507, 507,
1077
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 311,
1078
+ 507, 507, 507, 507, 507, 507, 311, 311, 311, 311,
1079
+ 311, 311, 507, 507, 507, 507, 507, 507, 507, 507,
1080
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1081
+
1082
+ 507, 507, 51, 507, 507, 311, 311, 311, 311, 311,
1083
+ 311, 312, 507, 507, 507, 507, 507, 507, 312, 312,
1084
+ 312, 312, 312, 312, 507, 507, 507, 507, 507, 507,
1085
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1086
+ 507, 507, 507, 507, 507, 507, 507, 312, 312, 312,
1087
+ 312, 312, 312, 313, 507, 507, 507, 507, 507, 507,
1088
+ 313, 313, 313, 313, 313, 313, 507, 507, 507, 507,
1089
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1090
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 313,
1091
+ 313, 313, 313, 313, 313, 314, 507, 507, 507, 507,
1092
+
1093
+ 507, 507, 314, 314, 314, 314, 314, 314, 507, 507,
1094
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1095
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1096
+ 507, 314, 314, 314, 314, 314, 314, 316, 507, 507,
1097
+ 507, 507, 507, 507, 316, 316, 316, 316, 316, 316,
1098
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1099
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1100
+ 507, 507, 507, 316, 316, 316, 316, 316, 316, 317,
1101
+ 507, 507, 507, 507, 507, 507, 317, 317, 317, 317,
1102
+ 317, 317, 507, 507, 507, 507, 507, 507, 507, 507,
1103
+
1104
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1105
+ 507, 507, 507, 507, 507, 317, 317, 317, 317, 317,
1106
+ 317, 320, 507, 507, 507, 507, 507, 507, 320, 320,
1107
+ 320, 320, 320, 320, 507, 507, 507, 507, 507, 507,
1108
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1109
+ 507, 507, 507, 507, 507, 507, 507, 320, 320, 320,
1110
+ 320, 320, 320, 328, 507, 507, 507, 507, 507, 507,
1111
+ 328, 328, 328, 328, 328, 328, 507, 507, 507, 507,
1112
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1113
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 328,
1114
+
1115
+ 328, 328, 328, 328, 328, 329, 507, 507, 507, 507,
1116
+ 507, 507, 329, 329, 329, 329, 329, 329, 507, 507,
1117
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1118
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1119
+ 507, 329, 329, 329, 329, 329, 329, 336, 336, 336,
1120
+ 336, 342, 507, 344, 507, 507, 507, 507, 344, 344,
1121
+ 345, 507, 507, 507, 507, 507, 346, 507, 507, 507,
1122
+ 507, 507, 507, 346, 346, 346, 346, 346, 346, 507,
1123
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1124
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 347,
1125
+
1126
+ 507, 507, 346, 346, 346, 346, 346, 346, 118, 118,
1127
+ 118, 118, 118, 507, 507, 507, 507, 507, 507, 507,
1128
+ 507, 507, 507, 507, 507, 507, 507, 348, 507, 507,
1129
+ 507, 507, 507, 507, 348, 348, 348, 348, 348, 348,
1130
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1131
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1132
+ 507, 507, 507, 348, 348, 348, 348, 348, 348, 131,
1133
+ 214, 214, 214, 131, 507, 50, 507, 507, 507, 507,
1134
+ 507, 507, 507, 507, 507, 507, 507, 507, 350, 507,
1135
+ 507, 507, 507, 507, 507, 350, 350, 350, 350, 350,
1136
+
1137
+ 350, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1138
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1139
+ 507, 51, 507, 507, 350, 350, 350, 350, 350, 350,
1140
+ 216, 216, 216, 216, 216, 507, 507, 507, 507, 507,
1141
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 351,
1142
+ 507, 507, 507, 507, 507, 507, 351, 351, 351, 351,
1143
+ 351, 351, 507, 507, 507, 507, 507, 507, 507, 507,
1144
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1145
+ 507, 507, 137, 507, 507, 351, 351, 351, 351, 351,
1146
+ 351, 138, 138, 138, 138, 138, 507, 507, 507, 507,
1147
+
1148
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1149
+ 352, 507, 507, 507, 507, 507, 507, 352, 352, 352,
1150
+ 352, 352, 352, 507, 507, 507, 507, 507, 507, 507,
1151
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1152
+ 507, 507, 507, 137, 507, 507, 352, 352, 352, 352,
1153
+ 352, 352, 141, 219, 219, 219, 141, 507, 507, 507,
1154
+ 507, 507, 507, 50, 507, 507, 507, 507, 507, 507,
1155
+ 507, 353, 507, 507, 507, 507, 507, 507, 353, 353,
1156
+ 353, 353, 353, 353, 507, 507, 507, 507, 507, 507,
1157
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1158
+
1159
+ 507, 507, 507, 507, 59, 507, 507, 353, 353, 353,
1160
+ 353, 353, 353, 507, 507, 507, 507, 507, 507, 507,
1161
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1162
+ 507, 507, 105, 507, 507, 507, 507, 507, 507, 105,
1163
+ 105, 105, 105, 105, 105, 507, 507, 507, 507, 507,
1164
+ 507, 507, 507, 507, 507, 507, 507, 507, 354, 507,
1165
+ 507, 507, 507, 507, 507, 507, 507, 507, 105, 105,
1166
+ 105, 105, 105, 105, 507, 507, 507, 507, 507, 507,
1167
+ 507, 507, 507, 507, 507, 507, 354, 355, 507, 507,
1168
+ 507, 507, 507, 507, 355, 355, 355, 355, 355, 355,
1169
+
1170
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1171
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1172
+ 507, 507, 507, 355, 355, 355, 355, 355, 355, 356,
1173
+ 507, 507, 507, 507, 507, 507, 356, 356, 356, 356,
1174
+ 356, 356, 507, 507, 507, 507, 507, 507, 507, 507,
1175
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1176
+ 507, 507, 507, 507, 507, 356, 356, 356, 356, 356,
1177
+ 356, 358, 507, 507, 507, 507, 507, 507, 358, 358,
1178
+ 358, 358, 358, 358, 507, 507, 507, 507, 507, 507,
1179
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1180
+
1181
+ 507, 507, 507, 507, 507, 507, 507, 358, 358, 358,
1182
+ 358, 358, 358, 365, 507, 507, 507, 507, 507, 507,
1183
+ 365, 365, 365, 365, 365, 365, 507, 507, 507, 507,
1184
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1185
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 365,
1186
+ 365, 365, 365, 365, 365, 366, 507, 507, 507, 507,
1187
+ 507, 507, 366, 366, 366, 366, 366, 366, 507, 507,
1188
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1189
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1190
+ 507, 366, 366, 366, 366, 366, 366, 337, 337, 337,
1191
+
1192
+ 376, 507, 507, 378, 507, 507, 507, 507, 507, 507,
1193
+ 507, 507, 507, 507, 507, 507, 379, 507, 507, 507,
1194
+ 507, 507, 507, 379, 379, 379, 379, 379, 379, 507,
1195
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1196
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 380,
1197
+ 507, 507, 379, 379, 379, 379, 379, 379, 340, 340,
1198
+ 340, 381, 507, 507, 507, 507, 507, 507, 507, 383,
1199
+ 507, 507, 507, 507, 507, 507, 507, 384, 507, 507,
1200
+ 507, 507, 507, 507, 384, 384, 384, 384, 384, 384,
1201
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1202
+
1203
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1204
+ 385, 507, 507, 384, 384, 384, 384, 384, 384, 342,
1205
+ 342, 342, 342, 342, 507, 507, 507, 507, 507, 507,
1206
+ 507, 507, 307, 507, 507, 507, 507, 507, 386, 507,
1207
+ 507, 507, 507, 507, 507, 386, 386, 386, 386, 386,
1208
+ 386, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1209
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1210
+ 507, 308, 507, 507, 386, 386, 386, 386, 386, 386,
1211
+ 336, 336, 336, 336, 342, 507, 344, 507, 507, 507,
1212
+ 507, 344, 344, 345, 507, 507, 507, 507, 507, 346,
1213
+
1214
+ 507, 507, 507, 507, 507, 507, 346, 346, 346, 346,
1215
+ 346, 346, 507, 507, 507, 507, 507, 507, 507, 507,
1216
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1217
+ 507, 507, 347, 507, 507, 346, 346, 346, 346, 346,
1218
+ 346, 118, 118, 118, 118, 118, 507, 507, 507, 507,
1219
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1220
+ 387, 507, 507, 507, 507, 507, 507, 387, 387, 387,
1221
+ 387, 387, 387, 507, 507, 507, 507, 507, 507, 507,
1222
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1223
+ 507, 507, 507, 507, 507, 507, 387, 387, 387, 387,
1224
+
1225
+ 387, 387, 131, 214, 214, 214, 131, 507, 50, 507,
1226
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1227
+ 507, 389, 507, 507, 507, 507, 507, 507, 389, 389,
1228
+ 389, 389, 389, 389, 507, 507, 507, 507, 507, 507,
1229
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1230
+ 507, 507, 507, 507, 51, 507, 507, 389, 389, 389,
1231
+ 389, 389, 389, 216, 216, 216, 216, 216, 507, 507,
1232
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1233
+ 507, 507, 390, 507, 507, 507, 507, 507, 507, 390,
1234
+ 390, 390, 390, 390, 390, 507, 507, 507, 507, 507,
1235
+
1236
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1237
+ 507, 507, 507, 507, 507, 137, 507, 507, 390, 390,
1238
+ 390, 390, 390, 390, 138, 138, 138, 138, 138, 507,
1239
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1240
+ 507, 507, 507, 391, 507, 507, 507, 507, 507, 507,
1241
+ 391, 391, 391, 391, 391, 391, 507, 507, 507, 507,
1242
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1243
+ 507, 507, 507, 507, 507, 507, 137, 507, 507, 391,
1244
+ 391, 391, 391, 391, 391, 141, 219, 219, 219, 141,
1245
+ 507, 507, 507, 507, 507, 507, 50, 507, 507, 507,
1246
+
1247
+ 507, 507, 507, 507, 392, 507, 507, 507, 507, 507,
1248
+ 507, 392, 392, 392, 392, 392, 392, 507, 507, 507,
1249
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1250
+ 507, 507, 507, 507, 507, 507, 507, 59, 507, 507,
1251
+ 392, 392, 392, 392, 392, 392, 507, 507, 507, 507,
1252
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1253
+ 507, 507, 393, 507, 507, 105, 507, 507, 507, 507,
1254
+ 507, 507, 105, 105, 105, 105, 105, 105, 507, 507,
1255
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1256
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1257
+
1258
+ 507, 105, 105, 105, 105, 105, 105, 224, 224, 224,
1259
+ 224, 224, 507, 507, 507, 507, 507, 507, 507, 507,
1260
+ 507, 507, 507, 507, 507, 507, 394, 507, 507, 507,
1261
+ 507, 507, 507, 394, 394, 394, 394, 394, 394, 507,
1262
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1263
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1264
+ 507, 507, 394, 394, 394, 394, 394, 394, 176, 176,
1265
+ 176, 176, 176, 507, 507, 507, 507, 507, 507, 507,
1266
+ 507, 507, 507, 507, 507, 507, 507, 395, 507, 507,
1267
+ 507, 507, 507, 507, 395, 395, 395, 395, 395, 395,
1268
+
1269
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1270
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1271
+ 507, 507, 507, 395, 395, 395, 395, 395, 395, 397,
1272
+ 507, 507, 507, 507, 507, 507, 397, 397, 397, 397,
1273
+ 397, 397, 507, 507, 507, 507, 507, 507, 507, 507,
1274
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1275
+ 507, 507, 507, 507, 507, 397, 397, 397, 397, 397,
1276
+ 397, 403, 507, 507, 507, 507, 507, 507, 403, 403,
1277
+ 403, 403, 403, 403, 507, 507, 507, 507, 507, 507,
1278
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1279
+
1280
+ 507, 507, 507, 507, 507, 507, 507, 403, 403, 403,
1281
+ 403, 403, 403, 404, 507, 507, 507, 507, 507, 507,
1282
+ 404, 404, 404, 404, 404, 404, 507, 507, 507, 507,
1283
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1284
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 404,
1285
+ 404, 404, 404, 404, 404, 377, 415, 415, 415, 377,
1286
+ 507, 338, 507, 507, 507, 507, 507, 507, 507, 507,
1287
+ 507, 507, 507, 507, 416, 507, 507, 507, 507, 507,
1288
+ 507, 416, 416, 416, 416, 416, 416, 507, 507, 507,
1289
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1290
+
1291
+ 507, 507, 507, 507, 507, 507, 507, 339, 507, 507,
1292
+ 416, 416, 416, 416, 416, 416, 337, 337, 337, 376,
1293
+ 507, 507, 378, 507, 507, 507, 507, 507, 507, 507,
1294
+ 507, 507, 507, 507, 507, 379, 507, 507, 507, 507,
1295
+ 507, 507, 379, 379, 379, 379, 379, 379, 507, 507,
1296
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1297
+ 507, 507, 507, 507, 507, 507, 507, 507, 380, 507,
1298
+ 507, 379, 379, 379, 379, 379, 379, 382, 419, 419,
1299
+ 419, 382, 507, 507, 507, 507, 507, 507, 338, 507,
1300
+ 507, 507, 507, 507, 507, 507, 420, 507, 507, 507,
1301
+
1302
+ 507, 507, 507, 420, 420, 420, 420, 420, 420, 507,
1303
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1304
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 341,
1305
+ 507, 507, 420, 420, 420, 420, 420, 420, 340, 340,
1306
+ 340, 381, 507, 507, 507, 507, 507, 507, 507, 383,
1307
+ 507, 507, 507, 507, 507, 507, 507, 384, 507, 507,
1308
+ 507, 507, 507, 507, 384, 384, 384, 384, 384, 384,
1309
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1310
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1311
+ 385, 507, 507, 384, 384, 384, 384, 384, 384, 342,
1312
+
1313
+ 342, 342, 342, 342, 507, 507, 507, 507, 507, 507,
1314
+ 507, 507, 307, 507, 507, 507, 507, 507, 421, 507,
1315
+ 507, 507, 507, 507, 507, 421, 421, 421, 421, 421,
1316
+ 421, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1317
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1318
+ 507, 308, 507, 507, 421, 421, 421, 421, 421, 421,
1319
+ 216, 216, 216, 216, 216, 507, 507, 507, 507, 507,
1320
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 423,
1321
+ 507, 507, 507, 507, 507, 507, 423, 423, 423, 423,
1322
+ 423, 423, 507, 507, 507, 507, 507, 507, 507, 507,
1323
+
1324
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1325
+ 507, 507, 507, 507, 507, 423, 423, 423, 423, 423,
1326
+ 423, 425, 507, 507, 507, 507, 507, 507, 425, 425,
1327
+ 425, 425, 425, 425, 507, 507, 507, 507, 507, 507,
1328
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1329
+ 507, 507, 507, 507, 507, 507, 507, 425, 425, 425,
1330
+ 425, 425, 425, 176, 176, 176, 176, 176, 507, 507,
1331
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1332
+ 507, 507, 150, 507, 507, 507, 507, 507, 507, 150,
1333
+ 150, 150, 150, 150, 150, 507, 507, 507, 507, 507,
1334
+
1335
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1336
+ 507, 507, 507, 507, 507, 507, 507, 507, 150, 150,
1337
+ 150, 150, 150, 150, 242, 242, 242, 242, 242, 507,
1338
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1339
+ 507, 507, 507, 427, 507, 507, 507, 507, 507, 507,
1340
+ 427, 427, 427, 427, 427, 427, 507, 507, 507, 507,
1341
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1342
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 427,
1343
+ 427, 427, 427, 427, 427, 433, 507, 507, 507, 507,
1344
+ 507, 507, 433, 433, 433, 433, 433, 433, 507, 507,
1345
+
1346
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1347
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1348
+ 507, 433, 433, 433, 433, 433, 433, 434, 507, 507,
1349
+ 507, 507, 507, 507, 434, 434, 434, 434, 434, 434,
1350
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1351
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1352
+ 507, 507, 507, 434, 434, 434, 434, 434, 434, 342,
1353
+ 342, 342, 342, 342, 507, 507, 507, 507, 507, 507,
1354
+ 507, 507, 307, 507, 507, 507, 507, 507, 435, 507,
1355
+ 507, 507, 507, 507, 507, 435, 435, 435, 435, 435,
1356
+
1357
+ 435, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1358
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1359
+ 507, 308, 507, 507, 435, 435, 435, 435, 435, 435,
1360
+ 443, 507, 507, 507, 507, 507, 507, 443, 443, 443,
1361
+ 443, 443, 443, 507, 507, 507, 507, 507, 507, 507,
1362
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1363
+ 507, 507, 507, 507, 507, 507, 443, 443, 443, 443,
1364
+ 443, 443, 444, 507, 507, 507, 507, 507, 507, 444,
1365
+ 444, 444, 444, 444, 444, 507, 507, 507, 507, 507,
1366
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1367
+
1368
+ 507, 507, 507, 507, 507, 507, 507, 507, 444, 444,
1369
+ 444, 444, 444, 444, 445, 507, 507, 507, 507, 507,
1370
+ 507, 445, 445, 445, 445, 445, 445, 507, 507, 507,
1371
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1372
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1373
+ 445, 445, 445, 445, 445, 445, 448, 507, 507, 507,
1374
+ 507, 507, 507, 448, 448, 448, 448, 448, 448, 507,
1375
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1376
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1377
+ 507, 507, 448, 448, 448, 448, 448, 448, 449, 507,
1378
+
1379
+ 507, 507, 507, 507, 507, 449, 449, 449, 449, 449,
1380
+ 449, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1381
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1382
+ 507, 507, 507, 507, 449, 449, 449, 449, 449, 449,
1383
+ 450, 507, 507, 507, 507, 507, 507, 450, 450, 450,
1384
+ 450, 450, 450, 507, 507, 507, 507, 507, 507, 507,
1385
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1386
+ 507, 507, 507, 507, 507, 507, 450, 450, 450, 450,
1387
+ 450, 450, 452, 507, 507, 507, 507, 507, 507, 453,
1388
+ 507, 454, 507, 507, 507, 507, 455, 456, 507, 507,
1389
+
1390
+ 457, 507, 507, 507, 507, 182, 507, 507, 507, 507,
1391
+ 507, 452, 507, 507, 507, 507, 507, 453, 507, 454,
1392
+ 507, 507, 507, 507, 455, 456, 507, 507, 457, 458,
1393
+ 507, 507, 507, 507, 507, 507, 458, 458, 458, 458,
1394
+ 458, 458, 507, 507, 507, 507, 507, 507, 507, 507,
1395
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1396
+ 507, 507, 507, 507, 507, 458, 458, 458, 458, 458,
1397
+ 458, 459, 507, 507, 507, 507, 507, 507, 459, 459,
1398
+ 459, 459, 459, 459, 507, 507, 507, 507, 507, 507,
1399
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1400
+
1401
+ 507, 507, 507, 507, 507, 507, 507, 459, 459, 459,
1402
+ 459, 459, 459, 49, 507, 507, 49, 49, 49, 49,
1403
+ 49, 49, 49, 49, 49, 49, 55, 55, 507, 55,
1404
+ 55, 58, 507, 507, 58, 58, 58, 58, 58, 58,
1405
+ 58, 58, 58, 58, 64, 64, 507, 64, 64, 94,
1406
+ 507, 507, 94, 94, 105, 507, 105, 105, 507, 105,
1407
+ 105, 118, 118, 118, 118, 118, 118, 118, 118, 118,
1408
+ 118, 131, 131, 131, 131, 131, 131, 131, 131, 131,
1409
+ 131, 131, 131, 131, 135, 135, 507, 135, 135, 138,
1410
+ 138, 138, 138, 138, 138, 138, 138, 138, 138, 141,
1411
+
1412
+ 141, 141, 141, 141, 141, 141, 141, 141, 141, 141,
1413
+ 141, 141, 147, 147, 147, 147, 147, 147, 147, 147,
1414
+ 147, 147, 147, 147, 147, 147, 150, 150, 150, 507,
1415
+ 150, 150, 176, 176, 176, 176, 176, 176, 176, 176,
1416
+ 176, 176, 181, 181, 507, 181, 181, 191, 191, 191,
1417
+ 191, 191, 191, 191, 191, 191, 191, 193, 193, 193,
1418
+ 193, 193, 193, 193, 193, 193, 193, 204, 204, 204,
1419
+ 216, 216, 216, 216, 216, 216, 216, 216, 216, 216,
1420
+ 141, 141, 141, 141, 141, 141, 141, 141, 141, 141,
1421
+ 141, 141, 141, 222, 222, 222, 222, 222, 222, 222,
1422
+
1423
+ 222, 222, 222, 222, 222, 222, 222, 224, 224, 224,
1424
+ 224, 224, 224, 224, 224, 224, 224, 242, 242, 242,
1425
+ 242, 242, 242, 242, 242, 242, 242, 261, 261, 261,
1426
+ 261, 273, 273, 273, 273, 273, 273, 273, 273, 273,
1427
+ 273, 273, 273, 273, 273, 299, 299, 299, 299, 304,
1428
+ 304, 304, 304, 304, 304, 507, 304, 304, 304, 304,
1429
+ 304, 304, 222, 222, 222, 222, 222, 222, 222, 222,
1430
+ 222, 222, 222, 222, 222, 222, 331, 331, 331, 331,
1431
+ 304, 304, 304, 304, 304, 304, 507, 304, 304, 304,
1432
+ 304, 304, 304, 337, 507, 507, 337, 337, 337, 337,
1433
+
1434
+ 337, 337, 337, 337, 337, 337, 340, 507, 507, 340,
1435
+ 340, 340, 340, 340, 340, 340, 340, 340, 340, 343,
1436
+ 343, 343, 343, 343, 343, 343, 343, 343, 343, 343,
1437
+ 343, 343, 49, 49, 49, 49, 49, 49, 49, 49,
1438
+ 49, 49, 49, 49, 49, 135, 135, 135, 135, 507,
1439
+ 507, 507, 507, 135, 135, 507, 135, 135, 58, 58,
1440
+ 58, 58, 58, 58, 58, 58, 58, 58, 58, 58,
1441
+ 58, 368, 368, 368, 368, 377, 377, 377, 377, 377,
1442
+ 377, 377, 377, 377, 377, 377, 377, 377, 382, 382,
1443
+ 382, 382, 382, 382, 382, 382, 382, 382, 382, 382,
1444
+
1445
+ 382, 304, 304, 304, 304, 304, 507, 507, 304, 304,
1446
+ 304, 304, 304, 304, 343, 343, 343, 343, 343, 343,
1447
+ 343, 343, 343, 343, 343, 343, 343, 49, 49, 49,
1448
+ 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
1449
+ 135, 135, 135, 135, 507, 507, 507, 507, 135, 135,
1450
+ 507, 135, 135, 58, 58, 58, 58, 58, 58, 58,
1451
+ 58, 58, 58, 58, 58, 58, 406, 406, 406, 406,
1452
+ 377, 377, 377, 377, 377, 377, 377, 377, 377, 377,
1453
+ 377, 377, 377, 340, 340, 507, 340, 340, 340, 340,
1454
+ 340, 340, 340, 340, 340, 340, 382, 382, 382, 382,
1455
+
1456
+ 382, 382, 382, 382, 382, 382, 382, 382, 382, 304,
1457
+ 304, 304, 304, 304, 507, 507, 304, 304, 304, 304,
1458
+ 304, 304, 9, 507, 507, 507, 507, 507, 507, 507,
1459
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1460
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1461
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1462
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1463
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1464
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1465
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
1466
+
1467
+ 507, 507, 507, 507, 507, 507, 507, 507
1468
+ } ;
1469
+
1470
+ static const flex_int16_t yy_chk[5709] =
1471
+ { 0,
1472
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1473
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1474
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1475
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1476
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1477
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1478
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1479
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1480
+ 1, 1, 1, 1, 1, 3, 26, 4, 17, 5,
1481
+ 19, 3, 6, 4, 506, 5, 14, 48, 6, 11,
1482
+
1483
+ 11, 11, 11, 11, 3, 3, 4, 4, 5, 5,
1484
+ 19, 6, 6, 12, 12, 12, 12, 12, 28, 148,
1485
+ 3, 58, 4, 148, 5, 48, 26, 6, 20, 17,
1486
+ 49, 20, 3, 3, 4, 4, 5, 5, 19, 6,
1487
+ 6, 52, 14, 61, 52, 3, 28, 4, 74, 5,
1488
+ 64, 20, 6, 13, 13, 13, 13, 13, 28, 27,
1489
+ 20, 29, 58, 61, 20, 31, 30, 30, 31, 30,
1490
+ 30, 37, 97, 27, 28, 29, 49, 52, 30, 20,
1491
+ 96, 30, 30, 29, 95, 74, 97, 13, 20, 502,
1492
+ 64, 61, 96, 27, 496, 39, 31, 66, 37, 27,
1493
+
1494
+ 97, 29, 27, 95, 29, 31, 30, 44, 96, 42,
1495
+ 491, 37, 29, 95, 87, 66, 13, 15, 30, 131,
1496
+ 15, 27, 39, 68, 31, 68, 37, 15, 15, 15,
1497
+ 15, 15, 15, 482, 30, 39, 42, 66, 44, 46,
1498
+ 46, 46, 46, 46, 66, 68, 98, 44, 100, 42,
1499
+ 39, 87, 516, 15, 516, 204, 15, 15, 15, 15,
1500
+ 15, 15, 23, 204, 42, 131, 44, 274, 98, 23,
1501
+ 23, 274, 23, 68, 100, 98, 535, 100, 535, 23,
1502
+ 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
1503
+ 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
1504
+
1505
+ 23, 23, 23, 23, 23, 23, 91, 23, 23, 23,
1506
+ 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
1507
+ 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
1508
+ 23, 23, 23, 93, 105, 78, 23, 25, 62, 62,
1509
+ 81, 62, 62, 91, 478, 91, 118, 129, 141, 25,
1510
+ 475, 93, 25, 62, 62, 25, 130, 25, 128, 25,
1511
+ 25, 130, 25, 78, 81, 25, 349, 65, 65, 93,
1512
+ 65, 65, 78, 25, 105, 129, 441, 81, 25, 65,
1513
+ 93, 25, 65, 65, 25, 25, 118, 25, 25, 141,
1514
+ 25, 78, 81, 25, 32, 349, 38, 38, 128, 38,
1515
+
1516
+ 38, 32, 32, 32, 32, 32, 32, 130, 38, 82,
1517
+ 79, 38, 38, 43, 43, 132, 43, 43, 77, 65,
1518
+ 47, 47, 47, 47, 47, 43, 75, 82, 43, 43,
1519
+ 32, 32, 32, 32, 32, 32, 38, 150, 79, 88,
1520
+ 440, 77, 80, 439, 75, 76, 82, 79, 38, 75,
1521
+ 431, 142, 77, 43, 47, 77, 82, 539, 214, 539,
1522
+ 76, 132, 406, 75, 38, 43, 79, 101, 83, 77,
1523
+ 88, 76, 99, 75, 150, 398, 88, 75, 80, 80,
1524
+ 77, 43, 76, 47, 51, 51, 51, 51, 213, 76,
1525
+ 51, 83, 142, 101, 99, 111, 101, 83, 88, 76,
1526
+
1527
+ 152, 99, 102, 51, 214, 83, 80, 193, 102, 153,
1528
+ 51, 51, 51, 51, 51, 51, 213, 84, 84, 83,
1529
+ 84, 84, 111, 86, 107, 83, 521, 521, 110, 249,
1530
+ 102, 219, 84, 84, 86, 111, 51, 152, 86, 51,
1531
+ 51, 51, 51, 51, 51, 54, 153, 193, 185, 107,
1532
+ 111, 249, 54, 54, 54, 54, 54, 54, 249, 185,
1533
+ 86, 108, 196, 86, 107, 110, 117, 86, 110, 84,
1534
+ 113, 113, 219, 113, 113, 85, 185, 107, 54, 108,
1535
+ 115, 54, 54, 54, 54, 54, 54, 56, 85, 113,
1536
+ 180, 117, 187, 110, 56, 56, 56, 56, 56, 56,
1537
+
1538
+ 373, 108, 196, 180, 109, 85, 117, 267, 108, 85,
1539
+ 124, 372, 85, 115, 156, 187, 89, 85, 180, 117,
1540
+ 115, 187, 125, 56, 56, 56, 56, 56, 56, 59,
1541
+ 59, 59, 59, 85, 89, 267, 109, 85, 198, 89,
1542
+ 59, 115, 140, 124, 109, 371, 261, 125, 59, 89,
1543
+ 124, 156, 140, 89, 261, 59, 59, 59, 59, 59,
1544
+ 59, 299, 125, 89, 109, 370, 369, 89, 186, 299,
1545
+ 186, 124, 127, 157, 123, 125, 158, 89, 198, 112,
1546
+ 112, 59, 112, 112, 59, 59, 59, 59, 59, 59,
1547
+ 67, 123, 361, 140, 112, 112, 186, 67, 67, 67,
1548
+
1549
+ 67, 67, 67, 114, 114, 127, 114, 114, 126, 146,
1550
+ 157, 287, 127, 158, 123, 114, 548, 189, 548, 154,
1551
+ 123, 160, 114, 159, 146, 126, 67, 67, 67, 67,
1552
+ 67, 67, 90, 127, 159, 335, 154, 189, 161, 90,
1553
+ 90, 90, 90, 90, 90, 334, 189, 287, 126, 146,
1554
+ 163, 164, 167, 146, 126, 114, 154, 162, 160, 168,
1555
+ 159, 169, 173, 159, 170, 154, 175, 171, 90, 90,
1556
+ 90, 90, 90, 90, 103, 161, 165, 165, 170, 165,
1557
+ 165, 103, 103, 103, 103, 103, 103, 163, 164, 167,
1558
+ 171, 183, 333, 162, 162, 165, 168, 176, 169, 173,
1559
+
1560
+ 306, 170, 224, 175, 171, 332, 199, 170, 172, 184,
1561
+ 103, 103, 103, 103, 103, 103, 106, 183, 171, 310,
1562
+ 183, 162, 184, 106, 106, 106, 106, 106, 106, 166,
1563
+ 166, 174, 166, 166, 176, 188, 172, 184, 178, 224,
1564
+ 197, 306, 174, 203, 166, 172, 199, 310, 166, 188,
1565
+ 174, 206, 106, 106, 106, 106, 106, 106, 119, 119,
1566
+ 119, 119, 119, 188, 172, 178, 195, 190, 174, 202,
1567
+ 119, 174, 208, 197, 250, 178, 202, 119, 190, 174,
1568
+ 197, 166, 195, 203, 119, 119, 119, 119, 119, 119,
1569
+ 209, 206, 226, 178, 211, 190, 250, 305, 325, 210,
1570
+
1571
+ 212, 197, 221, 250, 227, 302, 195, 228, 301, 202,
1572
+ 119, 195, 208, 119, 119, 119, 119, 119, 119, 133,
1573
+ 133, 133, 133, 133, 231, 133, 221, 227, 340, 226,
1574
+ 209, 233, 200, 200, 211, 200, 200, 210, 133, 210,
1575
+ 212, 227, 221, 305, 228, 133, 133, 133, 133, 133,
1576
+ 133, 200, 230, 229, 221, 227, 232, 234, 254, 300,
1577
+ 232, 231, 331, 236, 235, 210, 230, 237, 233, 340,
1578
+ 331, 133, 256, 292, 133, 133, 133, 133, 133, 133,
1579
+ 134, 134, 134, 134, 273, 241, 134, 229, 235, 230,
1580
+ 229, 237, 241, 232, 234, 230, 244, 236, 254, 134,
1581
+
1582
+ 236, 235, 247, 263, 237, 244, 134, 134, 134, 134,
1583
+ 134, 134, 256, 241, 245, 229, 235, 246, 239, 237,
1584
+ 266, 245, 276, 247, 244, 236, 337, 277, 248, 246,
1585
+ 278, 247, 134, 239, 381, 134, 134, 134, 134, 134,
1586
+ 134, 136, 245, 251, 284, 246, 248, 279, 136, 136,
1587
+ 136, 136, 136, 136, 251, 239, 262, 248, 323, 276,
1588
+ 266, 288, 239, 272, 277, 323, 284, 278, 280, 281,
1589
+ 288, 251, 337, 284, 136, 381, 242, 136, 136, 136,
1590
+ 136, 136, 136, 137, 279, 272, 323, 290, 222, 288,
1591
+ 137, 137, 137, 137, 137, 137, 264, 264, 264, 264,
1592
+
1593
+ 264, 216, 264, 272, 286, 280, 281, 264, 283, 264,
1594
+ 291, 324, 286, 290, 272, 388, 290, 205, 291, 137,
1595
+ 137, 137, 137, 137, 137, 139, 139, 139, 139, 139,
1596
+ 289, 283, 286, 319, 293, 321, 318, 324, 291, 289,
1597
+ 324, 368, 319, 388, 139, 283, 293, 357, 264, 368,
1598
+ 422, 139, 139, 139, 139, 139, 139, 321, 289, 283,
1599
+ 357, 319, 293, 326, 321, 377, 303, 303, 303, 303,
1600
+ 303, 322, 303, 318, 326, 357, 201, 303, 422, 303,
1601
+ 139, 139, 139, 139, 139, 139, 143, 143, 143, 143,
1602
+ 143, 326, 322, 557, 393, 557, 359, 143, 327, 364,
1603
+
1604
+ 322, 402, 360, 359, 393, 143, 364, 327, 363, 402,
1605
+ 396, 377, 143, 143, 143, 143, 143, 143, 303, 304,
1606
+ 304, 304, 304, 304, 359, 304, 327, 364, 360, 402,
1607
+ 304, 360, 304, 393, 363, 191, 396, 363, 143, 396,
1608
+ 181, 143, 143, 143, 143, 143, 143, 144, 144, 144,
1609
+ 144, 336, 336, 336, 336, 336, 179, 147, 144, 338,
1610
+ 338, 338, 338, 338, 336, 414, 144, 138, 461, 399,
1611
+ 461, 304, 338, 144, 144, 144, 144, 144, 144, 342,
1612
+ 342, 342, 342, 342, 343, 343, 343, 343, 343, 376,
1613
+ 135, 382, 342, 399, 376, 415, 461, 343, 399, 144,
1614
+
1615
+ 362, 382, 144, 144, 144, 144, 144, 144, 151, 401,
1616
+ 563, 414, 563, 155, 362, 151, 151, 151, 151, 151,
1617
+ 151, 344, 344, 344, 344, 344, 155, 116, 362, 400,
1618
+ 424, 342, 155, 401, 344, 564, 343, 564, 401, 155,
1619
+ 376, 415, 382, 94, 151, 151, 151, 151, 151, 151,
1620
+ 155, 400, 92, 424, 437, 155, 438, 497, 400, 497,
1621
+ 72, 155, 345, 345, 345, 345, 345, 155, 177, 177,
1622
+ 177, 177, 177, 344, 71, 345, 374, 374, 374, 374,
1623
+ 374, 424, 446, 177, 70, 497, 446, 177, 437, 374,
1624
+ 426, 69, 438, 428, 177, 177, 177, 177, 177, 177,
1625
+
1626
+ 378, 378, 378, 378, 378, 426, 378, 418, 383, 383,
1627
+ 383, 383, 383, 378, 345, 428, 437, 418, 426, 383,
1628
+ 177, 383, 428, 177, 177, 177, 177, 177, 177, 182,
1629
+ 387, 387, 387, 387, 387, 457, 182, 182, 182, 182,
1630
+ 182, 182, 63, 55, 35, 34, 387, 404, 404, 404,
1631
+ 404, 404, 378, 389, 389, 389, 389, 389, 418, 389,
1632
+ 383, 457, 33, 404, 457, 182, 182, 182, 182, 182,
1633
+ 182, 192, 192, 192, 192, 192, 425, 425, 425, 425,
1634
+ 425, 462, 24, 429, 22, 391, 391, 391, 391, 391,
1635
+ 192, 429, 392, 392, 392, 392, 392, 192, 192, 192,
1636
+
1637
+ 192, 192, 192, 392, 462, 389, 480, 21, 18, 16,
1638
+ 462, 429, 403, 403, 403, 403, 403, 9, 423, 423,
1639
+ 423, 423, 423, 192, 463, 0, 192, 192, 192, 192,
1640
+ 192, 192, 194, 194, 194, 194, 194, 391, 0, 463,
1641
+ 0, 0, 480, 419, 392, 427, 427, 427, 427, 427,
1642
+ 0, 194, 463, 419, 0, 430, 0, 452, 194, 194,
1643
+ 194, 194, 194, 194, 403, 413, 413, 413, 413, 413,
1644
+ 423, 413, 417, 417, 417, 417, 417, 430, 413, 452,
1645
+ 0, 0, 0, 417, 430, 417, 452, 194, 194, 194,
1646
+ 194, 194, 194, 207, 419, 0, 453, 427, 454, 460,
1647
+
1648
+ 207, 207, 207, 207, 207, 207, 450, 450, 450, 450,
1649
+ 450, 0, 0, 489, 499, 455, 474, 413, 453, 450,
1650
+ 454, 455, 456, 460, 417, 453, 467, 454, 460, 207,
1651
+ 207, 207, 207, 207, 207, 215, 215, 215, 215, 215,
1652
+ 0, 215, 474, 455, 456, 474, 0, 467, 472, 489,
1653
+ 499, 456, 0, 469, 215, 467, 472, 464, 450, 0,
1654
+ 0, 215, 215, 215, 215, 215, 215, 458, 458, 458,
1655
+ 458, 458, 464, 458, 465, 469, 472, 459, 459, 459,
1656
+ 459, 459, 469, 470, 0, 464, 466, 215, 459, 465,
1657
+ 215, 215, 215, 215, 215, 215, 217, 217, 217, 217,
1658
+
1659
+ 217, 466, 465, 468, 476, 470, 0, 471, 473, 477,
1660
+ 0, 479, 470, 471, 466, 217, 483, 473, 0, 458,
1661
+ 486, 468, 217, 217, 217, 217, 217, 217, 476, 459,
1662
+ 483, 477, 468, 476, 481, 471, 473, 479, 477, 0,
1663
+ 479, 481, 486, 484, 483, 487, 0, 485, 0, 486,
1664
+ 0, 217, 217, 217, 217, 217, 217, 218, 484, 485,
1665
+ 0, 488, 481, 487, 218, 218, 218, 218, 218, 218,
1666
+ 488, 484, 490, 0, 487, 485, 493, 0, 0, 0,
1667
+ 490, 0, 0, 493, 0, 492, 0, 498, 0, 488,
1668
+ 494, 0, 492, 218, 218, 218, 218, 218, 218, 220,
1669
+
1670
+ 490, 492, 498, 500, 493, 503, 220, 220, 220, 220,
1671
+ 220, 220, 494, 492, 0, 498, 0, 0, 495, 494,
1672
+ 492, 504, 0, 503, 495, 500, 0, 0, 0, 504,
1673
+ 0, 0, 500, 501, 503, 220, 220, 220, 220, 220,
1674
+ 220, 225, 225, 225, 225, 225, 495, 505, 501, 504,
1675
+ 0, 0, 0, 0, 505, 0, 0, 0, 0, 0,
1676
+ 225, 501, 0, 0, 0, 0, 0, 225, 225, 225,
1677
+ 225, 225, 225, 0, 0, 505, 0, 0, 0, 0,
1678
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1679
+ 0, 0, 0, 0, 0, 0, 225, 225, 225, 225,
1680
+
1681
+ 225, 225, 238, 0, 0, 0, 0, 0, 0, 238,
1682
+ 238, 238, 238, 238, 238, 0, 0, 0, 0, 0,
1683
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1684
+ 0, 0, 0, 0, 0, 0, 0, 0, 238, 238,
1685
+ 238, 238, 238, 238, 243, 243, 243, 243, 243, 0,
1686
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1687
+ 0, 0, 0, 243, 0, 0, 0, 0, 0, 0,
1688
+ 243, 243, 243, 243, 243, 243, 0, 0, 0, 0,
1689
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1690
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 243,
1691
+
1692
+ 243, 243, 243, 243, 243, 252, 0, 0, 0, 0,
1693
+ 0, 0, 252, 252, 252, 252, 252, 252, 0, 0,
1694
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1695
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1696
+ 0, 252, 252, 252, 252, 252, 252, 253, 0, 0,
1697
+ 0, 0, 0, 0, 253, 253, 253, 253, 253, 253,
1698
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1699
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1700
+ 0, 0, 0, 253, 253, 253, 253, 253, 253, 265,
1701
+ 265, 265, 265, 265, 0, 0, 0, 0, 0, 0,
1702
+
1703
+ 0, 0, 0, 0, 0, 0, 0, 0, 265, 0,
1704
+ 0, 0, 0, 0, 0, 265, 265, 265, 265, 265,
1705
+ 265, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1706
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1707
+ 0, 0, 0, 0, 265, 265, 265, 265, 265, 265,
1708
+ 268, 268, 268, 268, 268, 0, 268, 0, 0, 0,
1709
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 268,
1710
+ 0, 0, 0, 0, 0, 0, 268, 268, 268, 268,
1711
+ 268, 268, 0, 0, 0, 0, 0, 0, 0, 0,
1712
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1713
+
1714
+ 0, 0, 268, 0, 0, 268, 268, 268, 268, 268,
1715
+ 268, 269, 0, 0, 0, 0, 0, 0, 269, 269,
1716
+ 269, 269, 269, 269, 0, 0, 0, 0, 0, 0,
1717
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1718
+ 0, 0, 0, 0, 0, 0, 0, 269, 269, 269,
1719
+ 269, 269, 269, 270, 0, 0, 0, 0, 0, 0,
1720
+ 270, 270, 270, 270, 270, 270, 0, 0, 0, 0,
1721
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1722
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 270,
1723
+ 270, 270, 270, 270, 270, 271, 0, 0, 0, 0,
1724
+
1725
+ 0, 0, 271, 271, 271, 271, 271, 271, 0, 0,
1726
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1727
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1728
+ 0, 271, 271, 271, 271, 271, 271, 275, 0, 0,
1729
+ 0, 0, 0, 0, 275, 275, 275, 275, 275, 275,
1730
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1731
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1732
+ 0, 0, 0, 275, 275, 275, 275, 275, 275, 282,
1733
+ 0, 0, 0, 0, 0, 0, 282, 282, 282, 282,
1734
+ 282, 282, 0, 0, 0, 0, 0, 0, 0, 0,
1735
+
1736
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1737
+ 0, 0, 0, 0, 0, 282, 282, 282, 282, 282,
1738
+ 282, 285, 0, 0, 0, 0, 0, 0, 285, 285,
1739
+ 285, 285, 285, 285, 0, 0, 0, 0, 0, 0,
1740
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1741
+ 0, 0, 0, 0, 0, 0, 0, 285, 285, 285,
1742
+ 285, 285, 285, 294, 0, 0, 0, 0, 0, 0,
1743
+ 294, 294, 294, 294, 294, 294, 0, 0, 0, 0,
1744
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1745
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 294,
1746
+
1747
+ 294, 294, 294, 294, 294, 295, 0, 0, 0, 0,
1748
+ 0, 0, 295, 295, 295, 295, 295, 295, 0, 0,
1749
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1750
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1751
+ 0, 295, 295, 295, 295, 295, 295, 308, 308, 308,
1752
+ 308, 308, 0, 308, 0, 0, 0, 0, 308, 308,
1753
+ 308, 0, 0, 0, 0, 0, 308, 0, 0, 0,
1754
+ 0, 0, 0, 308, 308, 308, 308, 308, 308, 0,
1755
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1756
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 308,
1757
+
1758
+ 0, 0, 308, 308, 308, 308, 308, 308, 309, 309,
1759
+ 309, 309, 309, 0, 0, 0, 0, 0, 0, 0,
1760
+ 0, 0, 0, 0, 0, 0, 0, 309, 0, 0,
1761
+ 0, 0, 0, 0, 309, 309, 309, 309, 309, 309,
1762
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1763
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1764
+ 0, 0, 0, 309, 309, 309, 309, 309, 309, 311,
1765
+ 311, 311, 311, 311, 0, 311, 0, 0, 0, 0,
1766
+ 0, 0, 0, 0, 0, 0, 0, 0, 311, 0,
1767
+ 0, 0, 0, 0, 0, 311, 311, 311, 311, 311,
1768
+
1769
+ 311, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1770
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1771
+ 0, 311, 0, 0, 311, 311, 311, 311, 311, 311,
1772
+ 312, 312, 312, 312, 312, 0, 0, 0, 0, 0,
1773
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 312,
1774
+ 0, 0, 0, 0, 0, 0, 312, 312, 312, 312,
1775
+ 312, 312, 0, 0, 0, 0, 0, 0, 0, 0,
1776
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1777
+ 0, 0, 312, 0, 0, 312, 312, 312, 312, 312,
1778
+ 312, 313, 313, 313, 313, 313, 0, 0, 0, 0,
1779
+
1780
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1781
+ 313, 0, 0, 0, 0, 0, 0, 313, 313, 313,
1782
+ 313, 313, 313, 0, 0, 0, 0, 0, 0, 0,
1783
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1784
+ 0, 0, 0, 313, 0, 0, 313, 313, 313, 313,
1785
+ 313, 313, 314, 314, 314, 314, 314, 0, 0, 0,
1786
+ 0, 0, 0, 314, 0, 0, 0, 0, 0, 0,
1787
+ 0, 314, 0, 0, 0, 0, 0, 0, 314, 314,
1788
+ 314, 314, 314, 314, 0, 0, 0, 0, 0, 0,
1789
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1790
+
1791
+ 0, 0, 0, 0, 314, 0, 0, 314, 314, 314,
1792
+ 314, 314, 314, 315, 315, 315, 315, 315, 0, 0,
1793
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1794
+ 0, 0, 315, 0, 0, 0, 0, 0, 0, 315,
1795
+ 315, 315, 315, 315, 315, 0, 0, 0, 0, 0,
1796
+ 0, 0, 0, 0, 0, 0, 0, 0, 315, 0,
1797
+ 0, 0, 0, 0, 0, 0, 0, 0, 315, 315,
1798
+ 315, 315, 315, 315, 0, 0, 0, 0, 0, 0,
1799
+ 0, 0, 0, 0, 0, 0, 315, 316, 0, 0,
1800
+ 0, 0, 0, 0, 316, 316, 316, 316, 316, 316,
1801
+
1802
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1803
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1804
+ 0, 0, 0, 316, 316, 316, 316, 316, 316, 317,
1805
+ 0, 0, 0, 0, 0, 0, 317, 317, 317, 317,
1806
+ 317, 317, 0, 0, 0, 0, 0, 0, 0, 0,
1807
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1808
+ 0, 0, 0, 0, 0, 317, 317, 317, 317, 317,
1809
+ 317, 320, 0, 0, 0, 0, 0, 0, 320, 320,
1810
+ 320, 320, 320, 320, 0, 0, 0, 0, 0, 0,
1811
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1812
+
1813
+ 0, 0, 0, 0, 0, 0, 0, 320, 320, 320,
1814
+ 320, 320, 320, 328, 0, 0, 0, 0, 0, 0,
1815
+ 328, 328, 328, 328, 328, 328, 0, 0, 0, 0,
1816
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1817
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 328,
1818
+ 328, 328, 328, 328, 328, 329, 0, 0, 0, 0,
1819
+ 0, 0, 329, 329, 329, 329, 329, 329, 0, 0,
1820
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1821
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1822
+ 0, 329, 329, 329, 329, 329, 329, 339, 339, 339,
1823
+
1824
+ 339, 0, 0, 339, 0, 0, 0, 0, 0, 0,
1825
+ 0, 0, 0, 0, 0, 0, 339, 0, 0, 0,
1826
+ 0, 0, 0, 339, 339, 339, 339, 339, 339, 0,
1827
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1828
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 339,
1829
+ 0, 0, 339, 339, 339, 339, 339, 339, 341, 341,
1830
+ 341, 341, 0, 0, 0, 0, 0, 0, 0, 341,
1831
+ 0, 0, 0, 0, 0, 0, 0, 341, 0, 0,
1832
+ 0, 0, 0, 0, 341, 341, 341, 341, 341, 341,
1833
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1834
+
1835
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1836
+ 341, 0, 0, 341, 341, 341, 341, 341, 341, 346,
1837
+ 346, 346, 346, 346, 0, 0, 0, 0, 0, 0,
1838
+ 0, 0, 346, 0, 0, 0, 0, 0, 346, 0,
1839
+ 0, 0, 0, 0, 0, 346, 346, 346, 346, 346,
1840
+ 346, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1841
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1842
+ 0, 346, 0, 0, 346, 346, 346, 346, 346, 346,
1843
+ 347, 347, 347, 347, 347, 0, 347, 0, 0, 0,
1844
+ 0, 347, 347, 347, 0, 0, 0, 0, 0, 347,
1845
+
1846
+ 0, 0, 0, 0, 0, 0, 347, 347, 347, 347,
1847
+ 347, 347, 0, 0, 0, 0, 0, 0, 0, 0,
1848
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1849
+ 0, 0, 347, 0, 0, 347, 347, 347, 347, 347,
1850
+ 347, 348, 348, 348, 348, 348, 0, 0, 0, 0,
1851
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1852
+ 348, 0, 0, 0, 0, 0, 0, 348, 348, 348,
1853
+ 348, 348, 348, 0, 0, 0, 0, 0, 0, 0,
1854
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1855
+ 0, 0, 0, 0, 0, 0, 348, 348, 348, 348,
1856
+
1857
+ 348, 348, 350, 350, 350, 350, 350, 0, 350, 0,
1858
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1859
+ 0, 350, 0, 0, 0, 0, 0, 0, 350, 350,
1860
+ 350, 350, 350, 350, 0, 0, 0, 0, 0, 0,
1861
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1862
+ 0, 0, 0, 0, 350, 0, 0, 350, 350, 350,
1863
+ 350, 350, 350, 351, 351, 351, 351, 351, 0, 0,
1864
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1865
+ 0, 0, 351, 0, 0, 0, 0, 0, 0, 351,
1866
+ 351, 351, 351, 351, 351, 0, 0, 0, 0, 0,
1867
+
1868
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1869
+ 0, 0, 0, 0, 0, 351, 0, 0, 351, 351,
1870
+ 351, 351, 351, 351, 352, 352, 352, 352, 352, 0,
1871
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1872
+ 0, 0, 0, 352, 0, 0, 0, 0, 0, 0,
1873
+ 352, 352, 352, 352, 352, 352, 0, 0, 0, 0,
1874
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1875
+ 0, 0, 0, 0, 0, 0, 352, 0, 0, 352,
1876
+ 352, 352, 352, 352, 352, 353, 353, 353, 353, 353,
1877
+ 0, 0, 0, 0, 0, 0, 353, 0, 0, 0,
1878
+
1879
+ 0, 0, 0, 0, 353, 0, 0, 0, 0, 0,
1880
+ 0, 353, 353, 353, 353, 353, 353, 0, 0, 0,
1881
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1882
+ 0, 0, 0, 0, 0, 0, 0, 353, 0, 0,
1883
+ 353, 353, 353, 353, 353, 353, 354, 354, 354, 354,
1884
+ 354, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1885
+ 0, 0, 354, 0, 0, 354, 0, 0, 0, 0,
1886
+ 0, 0, 354, 354, 354, 354, 354, 354, 0, 0,
1887
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1888
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1889
+
1890
+ 0, 354, 354, 354, 354, 354, 354, 355, 355, 355,
1891
+ 355, 355, 0, 0, 0, 0, 0, 0, 0, 0,
1892
+ 0, 0, 0, 0, 0, 0, 355, 0, 0, 0,
1893
+ 0, 0, 0, 355, 355, 355, 355, 355, 355, 0,
1894
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1895
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1896
+ 0, 0, 355, 355, 355, 355, 355, 355, 356, 356,
1897
+ 356, 356, 356, 0, 0, 0, 0, 0, 0, 0,
1898
+ 0, 0, 0, 0, 0, 0, 0, 356, 0, 0,
1899
+ 0, 0, 0, 0, 356, 356, 356, 356, 356, 356,
1900
+
1901
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1902
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1903
+ 0, 0, 0, 356, 356, 356, 356, 356, 356, 358,
1904
+ 0, 0, 0, 0, 0, 0, 358, 358, 358, 358,
1905
+ 358, 358, 0, 0, 0, 0, 0, 0, 0, 0,
1906
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1907
+ 0, 0, 0, 0, 0, 358, 358, 358, 358, 358,
1908
+ 358, 365, 0, 0, 0, 0, 0, 0, 365, 365,
1909
+ 365, 365, 365, 365, 0, 0, 0, 0, 0, 0,
1910
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1911
+
1912
+ 0, 0, 0, 0, 0, 0, 0, 365, 365, 365,
1913
+ 365, 365, 365, 366, 0, 0, 0, 0, 0, 0,
1914
+ 366, 366, 366, 366, 366, 366, 0, 0, 0, 0,
1915
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1916
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 366,
1917
+ 366, 366, 366, 366, 366, 379, 379, 379, 379, 379,
1918
+ 0, 379, 0, 0, 0, 0, 0, 0, 0, 0,
1919
+ 0, 0, 0, 0, 379, 0, 0, 0, 0, 0,
1920
+ 0, 379, 379, 379, 379, 379, 379, 0, 0, 0,
1921
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1922
+
1923
+ 0, 0, 0, 0, 0, 0, 0, 379, 0, 0,
1924
+ 379, 379, 379, 379, 379, 379, 380, 380, 380, 380,
1925
+ 0, 0, 380, 0, 0, 0, 0, 0, 0, 0,
1926
+ 0, 0, 0, 0, 0, 380, 0, 0, 0, 0,
1927
+ 0, 0, 380, 380, 380, 380, 380, 380, 0, 0,
1928
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1929
+ 0, 0, 0, 0, 0, 0, 0, 0, 380, 0,
1930
+ 0, 380, 380, 380, 380, 380, 380, 384, 384, 384,
1931
+ 384, 384, 0, 0, 0, 0, 0, 0, 384, 0,
1932
+ 0, 0, 0, 0, 0, 0, 384, 0, 0, 0,
1933
+
1934
+ 0, 0, 0, 384, 384, 384, 384, 384, 384, 0,
1935
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1936
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 384,
1937
+ 0, 0, 384, 384, 384, 384, 384, 384, 385, 385,
1938
+ 385, 385, 0, 0, 0, 0, 0, 0, 0, 385,
1939
+ 0, 0, 0, 0, 0, 0, 0, 385, 0, 0,
1940
+ 0, 0, 0, 0, 385, 385, 385, 385, 385, 385,
1941
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1942
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1943
+ 385, 0, 0, 385, 385, 385, 385, 385, 385, 386,
1944
+
1945
+ 386, 386, 386, 386, 0, 0, 0, 0, 0, 0,
1946
+ 0, 0, 386, 0, 0, 0, 0, 0, 386, 0,
1947
+ 0, 0, 0, 0, 0, 386, 386, 386, 386, 386,
1948
+ 386, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1949
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1950
+ 0, 386, 0, 0, 386, 386, 386, 386, 386, 386,
1951
+ 390, 390, 390, 390, 390, 0, 0, 0, 0, 0,
1952
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 390,
1953
+ 0, 0, 0, 0, 0, 0, 390, 390, 390, 390,
1954
+ 390, 390, 0, 0, 0, 0, 0, 0, 0, 0,
1955
+
1956
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1957
+ 0, 0, 0, 0, 0, 390, 390, 390, 390, 390,
1958
+ 390, 394, 0, 0, 0, 0, 0, 0, 394, 394,
1959
+ 394, 394, 394, 394, 0, 0, 0, 0, 0, 0,
1960
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1961
+ 0, 0, 0, 0, 0, 0, 0, 394, 394, 394,
1962
+ 394, 394, 394, 395, 395, 395, 395, 395, 0, 0,
1963
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1964
+ 0, 0, 395, 0, 0, 0, 0, 0, 0, 395,
1965
+ 395, 395, 395, 395, 395, 0, 0, 0, 0, 0,
1966
+
1967
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1968
+ 0, 0, 0, 0, 0, 0, 0, 0, 395, 395,
1969
+ 395, 395, 395, 395, 397, 397, 397, 397, 397, 0,
1970
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1971
+ 0, 0, 0, 397, 0, 0, 0, 0, 0, 0,
1972
+ 397, 397, 397, 397, 397, 397, 0, 0, 0, 0,
1973
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1974
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 397,
1975
+ 397, 397, 397, 397, 397, 416, 0, 0, 0, 0,
1976
+ 0, 0, 416, 416, 416, 416, 416, 416, 0, 0,
1977
+
1978
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1979
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1980
+ 0, 416, 416, 416, 416, 416, 416, 420, 0, 0,
1981
+ 0, 0, 0, 0, 420, 420, 420, 420, 420, 420,
1982
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1983
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1984
+ 0, 0, 0, 420, 420, 420, 420, 420, 420, 421,
1985
+ 421, 421, 421, 421, 0, 0, 0, 0, 0, 0,
1986
+ 0, 0, 421, 0, 0, 0, 0, 0, 421, 0,
1987
+ 0, 0, 0, 0, 0, 421, 421, 421, 421, 421,
1988
+
1989
+ 421, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1990
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1991
+ 0, 421, 0, 0, 421, 421, 421, 421, 421, 421,
1992
+ 433, 0, 0, 0, 0, 0, 0, 433, 433, 433,
1993
+ 433, 433, 433, 0, 0, 0, 0, 0, 0, 0,
1994
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1995
+ 0, 0, 0, 0, 0, 0, 433, 433, 433, 433,
1996
+ 433, 433, 434, 0, 0, 0, 0, 0, 0, 434,
1997
+ 434, 434, 434, 434, 434, 0, 0, 0, 0, 0,
1998
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1999
+
2000
+ 0, 0, 0, 0, 0, 0, 0, 0, 434, 434,
2001
+ 434, 434, 434, 434, 435, 0, 0, 0, 0, 0,
2002
+ 0, 435, 435, 435, 435, 435, 435, 0, 0, 0,
2003
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2004
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2005
+ 435, 435, 435, 435, 435, 435, 443, 0, 0, 0,
2006
+ 0, 0, 0, 443, 443, 443, 443, 443, 443, 0,
2007
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2008
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2009
+ 0, 0, 443, 443, 443, 443, 443, 443, 444, 0,
2010
+
2011
+ 0, 0, 0, 0, 0, 444, 444, 444, 444, 444,
2012
+ 444, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2013
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2014
+ 0, 0, 0, 0, 444, 444, 444, 444, 444, 444,
2015
+ 445, 0, 0, 0, 0, 0, 0, 445, 445, 445,
2016
+ 445, 445, 445, 0, 0, 0, 0, 0, 0, 0,
2017
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2018
+ 0, 0, 0, 0, 0, 0, 445, 445, 445, 445,
2019
+ 445, 445, 447, 0, 0, 0, 0, 0, 0, 447,
2020
+ 0, 447, 0, 0, 0, 0, 447, 447, 0, 0,
2021
+
2022
+ 447, 0, 0, 0, 0, 447, 0, 0, 0, 0,
2023
+ 0, 447, 0, 0, 0, 0, 0, 447, 0, 447,
2024
+ 0, 0, 0, 0, 447, 447, 0, 0, 447, 448,
2025
+ 0, 0, 0, 0, 0, 0, 448, 448, 448, 448,
2026
+ 448, 448, 0, 0, 0, 0, 0, 0, 0, 0,
2027
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2028
+ 0, 0, 0, 0, 0, 448, 448, 448, 448, 448,
2029
+ 448, 449, 0, 0, 0, 0, 0, 0, 449, 449,
2030
+ 449, 449, 449, 449, 0, 0, 0, 0, 0, 0,
2031
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2032
+
2033
+ 0, 0, 0, 0, 0, 0, 0, 449, 449, 449,
2034
+ 449, 449, 449, 508, 0, 0, 508, 508, 508, 508,
2035
+ 508, 508, 508, 508, 508, 508, 509, 509, 0, 509,
2036
+ 509, 510, 0, 0, 510, 510, 510, 510, 510, 510,
2037
+ 510, 510, 510, 510, 511, 511, 0, 511, 511, 512,
2038
+ 0, 0, 512, 512, 513, 0, 513, 513, 0, 513,
2039
+ 513, 514, 514, 514, 514, 514, 514, 514, 514, 514,
2040
+ 514, 515, 515, 515, 515, 515, 515, 515, 515, 515,
2041
+ 515, 515, 515, 515, 517, 517, 0, 517, 517, 518,
2042
+ 518, 518, 518, 518, 518, 518, 518, 518, 518, 519,
2043
+
2044
+ 519, 519, 519, 519, 519, 519, 519, 519, 519, 519,
2045
+ 519, 519, 520, 520, 520, 520, 520, 520, 520, 520,
2046
+ 520, 520, 520, 520, 520, 520, 522, 522, 522, 0,
2047
+ 522, 522, 523, 523, 523, 523, 523, 523, 523, 523,
2048
+ 523, 523, 524, 524, 0, 524, 524, 525, 525, 525,
2049
+ 525, 525, 525, 525, 525, 525, 525, 526, 526, 526,
2050
+ 526, 526, 526, 526, 526, 526, 526, 527, 527, 527,
2051
+ 528, 528, 528, 528, 528, 528, 528, 528, 528, 528,
2052
+ 529, 529, 529, 529, 529, 529, 529, 529, 529, 529,
2053
+ 529, 529, 529, 530, 530, 530, 530, 530, 530, 530,
2054
+
2055
+ 530, 530, 530, 530, 530, 530, 530, 531, 531, 531,
2056
+ 531, 531, 531, 531, 531, 531, 531, 532, 532, 532,
2057
+ 532, 532, 532, 532, 532, 532, 532, 533, 533, 533,
2058
+ 533, 534, 534, 534, 534, 534, 534, 534, 534, 534,
2059
+ 534, 534, 534, 534, 534, 536, 536, 536, 536, 537,
2060
+ 537, 537, 537, 537, 537, 0, 537, 537, 537, 537,
2061
+ 537, 537, 538, 538, 538, 538, 538, 538, 538, 538,
2062
+ 538, 538, 538, 538, 538, 538, 540, 540, 540, 540,
2063
+ 541, 541, 541, 541, 541, 541, 0, 541, 541, 541,
2064
+ 541, 541, 541, 542, 0, 0, 542, 542, 542, 542,
2065
+
2066
+ 542, 542, 542, 542, 542, 542, 543, 0, 0, 543,
2067
+ 543, 543, 543, 543, 543, 543, 543, 543, 543, 544,
2068
+ 544, 544, 544, 544, 544, 544, 544, 544, 544, 544,
2069
+ 544, 544, 545, 545, 545, 545, 545, 545, 545, 545,
2070
+ 545, 545, 545, 545, 545, 546, 546, 546, 546, 0,
2071
+ 0, 0, 0, 546, 546, 0, 546, 546, 547, 547,
2072
+ 547, 547, 547, 547, 547, 547, 547, 547, 547, 547,
2073
+ 547, 549, 549, 549, 549, 550, 550, 550, 550, 550,
2074
+ 550, 550, 550, 550, 550, 550, 550, 550, 551, 551,
2075
+ 551, 551, 551, 551, 551, 551, 551, 551, 551, 551,
2076
+
2077
+ 551, 552, 552, 552, 552, 552, 0, 0, 552, 552,
2078
+ 552, 552, 552, 552, 553, 553, 553, 553, 553, 553,
2079
+ 553, 553, 553, 553, 553, 553, 553, 554, 554, 554,
2080
+ 554, 554, 554, 554, 554, 554, 554, 554, 554, 554,
2081
+ 555, 555, 555, 555, 0, 0, 0, 0, 555, 555,
2082
+ 0, 555, 555, 556, 556, 556, 556, 556, 556, 556,
2083
+ 556, 556, 556, 556, 556, 556, 558, 558, 558, 558,
2084
+ 559, 559, 559, 559, 559, 559, 559, 559, 559, 559,
2085
+ 559, 559, 559, 560, 560, 0, 560, 560, 560, 560,
2086
+ 560, 560, 560, 560, 560, 560, 561, 561, 561, 561,
2087
+
2088
+ 561, 561, 561, 561, 561, 561, 561, 561, 561, 562,
2089
+ 562, 562, 562, 562, 0, 0, 562, 562, 562, 562,
2090
+ 562, 562, 507, 507, 507, 507, 507, 507, 507, 507,
2091
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
2092
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
2093
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
2094
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
2095
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
2096
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
2097
+ 507, 507, 507, 507, 507, 507, 507, 507, 507, 507,
2098
+
2099
+ 507, 507, 507, 507, 507, 507, 507, 507
2100
+ } ;
2101
+
2102
+ /* Table of booleans, true if rule could match eol. */
2103
+ static const flex_int32_t yy_rule_can_match_eol[88] =
2104
+ { 0,
2105
+ 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0,
2106
+ 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0,
2107
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2108
+ 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1,
2109
+ 0, 0, 0, 0, 0, 0, 0, 0, };
2110
+
2111
+ /* The intent behind this definition is that it'll catch
2112
+ * any uses of REJECT which flex missed.
2113
+ */
2114
+ #define REJECT reject_used_but_not_detected
2115
+ #define yymore() yymore_used_but_not_detected
2116
+ #define YY_MORE_ADJ 0
2117
+ #define YY_RESTORE_YY_MORE_OFFSET
2118
+ #line 1 "src/katana.l"
2119
+ #line 2 "src/katana.l"
2120
+ /* Substitute the type names. */
2121
+ #define YYSTYPE KATANASTYPE
2122
+ #define YYLTYPE KATANALTYPE
2123
+
2124
+ #include "tokenizer.h"
2125
+
2126
+ extern int yylex \
2127
+ (YYSTYPE* yylval_param, YYLTYPE* yylloc_param, yyscan_t yyscanner, void* parser);
2128
+
2129
+ #define YY_DECL int yylex \
2130
+ (YYSTYPE * yylval_param, YYLTYPE* yylloc_param, yyscan_t yyscanner, void* parser)
2131
+
2132
+ #define KATANA_TOKEN(x) katana_tokenize(yylval, yylloc, yyscanner, parser, x); return (x);
2133
+
2134
+ #define YY_USER_INIT yylineno = yycolumn = yylloc->first_line = yylloc->last_line = yylloc->first_column = yylloc->last_column = 1;
2135
+
2136
+ #define YY_USER_ACTION \
2137
+ yylloc->first_line = yylloc->last_line = yylineno; \
2138
+ yylloc->first_column = yycolumn; yylloc->last_column = yycolumn+(int)yyleng-1; \
2139
+ yycolumn += (int)yyleng;
2140
+
2141
+ #line 2142 "src/katana.lex.c"
2142
+ #define YY_NO_INPUT 1
2143
+
2144
+ #define INITIAL 0
2145
+ #define mediaquery 1
2146
+ #define supports 2
2147
+ #define forkeyword 3
2148
+
2149
+ #ifndef YY_NO_UNISTD_H
2150
+ /* Special case for "unistd.h", since it is non-ANSI. We include it way
2151
+ * down here because we want the user's section 1 to have been scanned first.
2152
+ * The user has a chance to override it with an option.
2153
+ */
2154
+ #include <unistd.h>
2155
+ #endif
2156
+
2157
+ #ifndef YY_EXTRA_TYPE
2158
+ #define YY_EXTRA_TYPE void *
2159
+ #endif
2160
+
2161
+ /* Holds the entire state of the reentrant scanner. */
2162
+ struct yyguts_t
2163
+ {
2164
+
2165
+ /* User-defined. Not touched by flex. */
2166
+ YY_EXTRA_TYPE yyextra_r;
2167
+
2168
+ /* The rest are the same as the globals declared in the non-reentrant scanner. */
2169
+ FILE *yyin_r, *yyout_r;
2170
+ size_t yy_buffer_stack_top; /**< index of top of stack. */
2171
+ size_t yy_buffer_stack_max; /**< capacity of stack. */
2172
+ YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */
2173
+ char yy_hold_char;
2174
+ int yy_n_chars;
2175
+ int yyleng_r;
2176
+ char *yy_c_buf_p;
2177
+ int yy_init;
2178
+ int yy_start;
2179
+ int yy_did_buffer_switch_on_eof;
2180
+ int yy_start_stack_ptr;
2181
+ int yy_start_stack_depth;
2182
+ int *yy_start_stack;
2183
+ yy_state_type yy_last_accepting_state;
2184
+ char* yy_last_accepting_cpos;
2185
+
2186
+ int yylineno_r;
2187
+ int yy_flex_debug_r;
2188
+
2189
+ char *yytext_r;
2190
+ int yy_more_flag;
2191
+ int yy_more_len;
2192
+
2193
+ YYSTYPE * yylval_r;
2194
+
2195
+ YYLTYPE * yylloc_r;
2196
+
2197
+ }; /* end struct yyguts_t */
2198
+
2199
+ static int yy_init_globals ( yyscan_t yyscanner );
2200
+
2201
+ /* This must go here because YYSTYPE and YYLTYPE are included
2202
+ * from bison output in section 1.*/
2203
+ # define yylval yyg->yylval_r
2204
+
2205
+ # define yylloc yyg->yylloc_r
2206
+
2207
+ int yylex_init (yyscan_t* scanner);
2208
+
2209
+ int yylex_init_extra ( YY_EXTRA_TYPE user_defined, yyscan_t* scanner);
2210
+
2211
+ /* Accessor methods to globals.
2212
+ These are made visible to non-reentrant scanners for convenience. */
2213
+
2214
+ int yylex_destroy ( yyscan_t yyscanner );
2215
+
2216
+ int yyget_debug ( yyscan_t yyscanner );
2217
+
2218
+ void yyset_debug ( int debug_flag , yyscan_t yyscanner );
2219
+
2220
+ YY_EXTRA_TYPE yyget_extra ( yyscan_t yyscanner );
2221
+
2222
+ void yyset_extra ( YY_EXTRA_TYPE user_defined , yyscan_t yyscanner );
2223
+
2224
+ FILE *yyget_in ( yyscan_t yyscanner );
2225
+
2226
+ void yyset_in ( FILE * _in_str , yyscan_t yyscanner );
2227
+
2228
+ FILE *yyget_out ( yyscan_t yyscanner );
2229
+
2230
+ void yyset_out ( FILE * _out_str , yyscan_t yyscanner );
2231
+
2232
+ int yyget_leng ( yyscan_t yyscanner );
2233
+
2234
+ char *yyget_text ( yyscan_t yyscanner );
2235
+
2236
+ int yyget_lineno ( yyscan_t yyscanner );
2237
+
2238
+ void yyset_lineno ( int _line_number , yyscan_t yyscanner );
2239
+
2240
+ int yyget_column ( yyscan_t yyscanner );
2241
+
2242
+ void yyset_column ( int _column_no , yyscan_t yyscanner );
2243
+
2244
+ YYSTYPE * yyget_lval ( yyscan_t yyscanner );
2245
+
2246
+ void yyset_lval ( YYSTYPE * yylval_param , yyscan_t yyscanner );
2247
+
2248
+ YYLTYPE *yyget_lloc ( yyscan_t yyscanner );
2249
+
2250
+ void yyset_lloc ( YYLTYPE * yylloc_param , yyscan_t yyscanner );
2251
+
2252
+ /* Macros after this point can all be overridden by user definitions in
2253
+ * section 1.
2254
+ */
2255
+
2256
+ #ifndef YY_SKIP_YYWRAP
2257
+ #ifdef __cplusplus
2258
+ extern "C" int yywrap ( yyscan_t yyscanner );
2259
+ #else
2260
+ extern int yywrap ( yyscan_t yyscanner );
2261
+ #endif
2262
+ #endif
2263
+
2264
+ #ifndef YY_NO_UNPUT
2265
+
2266
+ static void yyunput ( int c, char *buf_ptr , yyscan_t yyscanner);
2267
+
2268
+ #endif
2269
+
2270
+ #ifndef yytext_ptr
2271
+ static void yy_flex_strncpy ( char *, const char *, int , yyscan_t yyscanner);
2272
+ #endif
2273
+
2274
+ #ifdef YY_NEED_STRLEN
2275
+ static int yy_flex_strlen ( const char * , yyscan_t yyscanner);
2276
+ #endif
2277
+
2278
+ #ifndef YY_NO_INPUT
2279
+ #ifdef __cplusplus
2280
+ static int yyinput ( yyscan_t yyscanner );
2281
+ #else
2282
+ static int input ( yyscan_t yyscanner );
2283
+ #endif
2284
+
2285
+ #endif
2286
+
2287
+ static void yy_push_state ( int _new_state , yyscan_t yyscanner);
2288
+
2289
+ static void yy_pop_state ( yyscan_t yyscanner );
2290
+
2291
+ static int yy_top_state ( yyscan_t yyscanner );
2292
+
2293
+ /* Amount of stuff to slurp up with each read. */
2294
+ #ifndef YY_READ_BUF_SIZE
2295
+ #ifdef __ia64__
2296
+ /* On IA-64, the buffer size is 16k, not 8k */
2297
+ #define YY_READ_BUF_SIZE 16384
2298
+ #else
2299
+ #define YY_READ_BUF_SIZE 8192
2300
+ #endif /* __ia64__ */
2301
+ #endif
2302
+
2303
+ /* Copy whatever the last rule matched to the standard output. */
2304
+ #ifndef ECHO
2305
+ /* This used to be an fputs(), but since the string might contain NUL's,
2306
+ * we now use fwrite().
2307
+ */
2308
+ #define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0)
2309
+ #endif
2310
+
2311
+ /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
2312
+ * is returned in "result".
2313
+ */
2314
+ #ifndef YY_INPUT
2315
+ #define YY_INPUT(buf,result,max_size) \
2316
+ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
2317
+ { \
2318
+ int c = '*'; \
2319
+ int n; \
2320
+ for ( n = 0; n < max_size && \
2321
+ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
2322
+ buf[n] = (char) c; \
2323
+ if ( c == '\n' ) \
2324
+ buf[n++] = (char) c; \
2325
+ if ( c == EOF && ferror( yyin ) ) \
2326
+ YY_FATAL_ERROR( "input in flex scanner failed" ); \
2327
+ result = n; \
2328
+ } \
2329
+ else \
2330
+ { \
2331
+ errno=0; \
2332
+ while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \
2333
+ { \
2334
+ if( errno != EINTR) \
2335
+ { \
2336
+ YY_FATAL_ERROR( "input in flex scanner failed" ); \
2337
+ break; \
2338
+ } \
2339
+ errno=0; \
2340
+ clearerr(yyin); \
2341
+ } \
2342
+ }\
2343
+ \
2344
+
2345
+ #endif
2346
+
2347
+ /* No semi-colon after return; correct usage is to write "yyterminate();" -
2348
+ * we don't want an extra ';' after the "return" because that will cause
2349
+ * some compilers to complain about unreachable statements.
2350
+ */
2351
+ #ifndef yyterminate
2352
+ #define yyterminate() return YY_NULL
2353
+ #endif
2354
+
2355
+ /* Number of entries by which start-condition stack grows. */
2356
+ #ifndef YY_START_STACK_INCR
2357
+ #define YY_START_STACK_INCR 25
2358
+ #endif
2359
+
2360
+ /* Report a fatal error. */
2361
+ #ifndef YY_FATAL_ERROR
2362
+ #define YY_FATAL_ERROR(msg) yy_fatal_error( msg , yyscanner)
2363
+ #endif
2364
+
2365
+ /* end tables serialization structures and prototypes */
2366
+
2367
+ /* Default declaration of generated scanner - a define so the user can
2368
+ * easily add parameters.
2369
+ */
2370
+ #ifndef YY_DECL
2371
+ #define YY_DECL_IS_OURS 1
2372
+
2373
+ extern int yylex \
2374
+ (YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner);
2375
+
2376
+ #define YY_DECL int yylex \
2377
+ (YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner)
2378
+ #endif /* !YY_DECL */
2379
+
2380
+ /* Code executed at the beginning of each rule, after yytext and yyleng
2381
+ * have been set up.
2382
+ */
2383
+ #ifndef YY_USER_ACTION
2384
+ #define YY_USER_ACTION
2385
+ #endif
2386
+
2387
+ /* Code executed at the end of each rule. */
2388
+ #ifndef YY_BREAK
2389
+ #define YY_BREAK /*LINTED*/break;
2390
+ #endif
2391
+
2392
+ #define YY_RULE_SETUP \
2393
+ YY_USER_ACTION
2394
+
2395
+ /** The main scanner function which does all the work.
2396
+ */
2397
+ YY_DECL
2398
+ {
2399
+ yy_state_type yy_current_state;
2400
+ char *yy_cp, *yy_bp;
2401
+ int yy_act;
2402
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2403
+
2404
+ yylval = yylval_param;
2405
+
2406
+ yylloc = yylloc_param;
2407
+
2408
+ if ( !yyg->yy_init )
2409
+ {
2410
+ yyg->yy_init = 1;
2411
+
2412
+ #ifdef YY_USER_INIT
2413
+ YY_USER_INIT;
2414
+ #endif
2415
+
2416
+ if ( ! yyg->yy_start )
2417
+ yyg->yy_start = 1; /* first start state */
2418
+
2419
+ if ( ! yyin )
2420
+ yyin = stdin;
2421
+
2422
+ if ( ! yyout )
2423
+ yyout = stdout;
2424
+
2425
+ if ( ! YY_CURRENT_BUFFER ) {
2426
+ yyensure_buffer_stack (yyscanner);
2427
+ YY_CURRENT_BUFFER_LVALUE =
2428
+ yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner);
2429
+ }
2430
+
2431
+ yy_load_buffer_state( yyscanner );
2432
+ }
2433
+
2434
+ {
2435
+
2436
+ while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */
2437
+ {
2438
+ yy_cp = yyg->yy_c_buf_p;
2439
+
2440
+ /* Support of yytext. */
2441
+ *yy_cp = yyg->yy_hold_char;
2442
+
2443
+ /* yy_bp points to the position in yy_ch_buf of the start of
2444
+ * the current run.
2445
+ */
2446
+ yy_bp = yy_cp;
2447
+
2448
+ yy_current_state = yyg->yy_start;
2449
+ yy_match:
2450
+ do
2451
+ {
2452
+ YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ;
2453
+ if ( yy_accept[yy_current_state] )
2454
+ {
2455
+ yyg->yy_last_accepting_state = yy_current_state;
2456
+ yyg->yy_last_accepting_cpos = yy_cp;
2457
+ }
2458
+ while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
2459
+ {
2460
+ yy_current_state = (int) yy_def[yy_current_state];
2461
+ if ( yy_current_state >= 508 )
2462
+ yy_c = yy_meta[yy_c];
2463
+ }
2464
+ yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
2465
+ ++yy_cp;
2466
+ }
2467
+ while ( yy_base[yy_current_state] != 5623 );
2468
+
2469
+ yy_find_action:
2470
+ yy_act = yy_accept[yy_current_state];
2471
+ if ( yy_act == 0 )
2472
+ { /* have to back up */
2473
+ yy_cp = yyg->yy_last_accepting_cpos;
2474
+ yy_current_state = yyg->yy_last_accepting_state;
2475
+ yy_act = yy_accept[yy_current_state];
2476
+ }
2477
+
2478
+ YY_DO_BEFORE_ACTION;
2479
+
2480
+ if ( yy_act != YY_END_OF_BUFFER && yy_rule_can_match_eol[yy_act] )
2481
+ {
2482
+ int yyl;
2483
+ for ( yyl = 0; yyl < yyleng; ++yyl )
2484
+ if ( yytext[yyl] == '\n' )
2485
+
2486
+ do{ yylineno++;
2487
+ yycolumn=0;
2488
+ }while(0)
2489
+ ;
2490
+ }
2491
+
2492
+ do_action: /* This label is used only to access EOF actions. */
2493
+
2494
+ switch ( yy_act )
2495
+ { /* beginning of action switch */
2496
+ case 0: /* must back up */
2497
+ /* undo the effects of YY_DO_BEFORE_ACTION */
2498
+ *yy_cp = yyg->yy_hold_char;
2499
+ yy_cp = yyg->yy_last_accepting_cpos;
2500
+ yy_current_state = yyg->yy_last_accepting_state;
2501
+ goto yy_find_action;
2502
+
2503
+ case 1:
2504
+ /* rule 1 can match eol */
2505
+ YY_RULE_SETUP
2506
+ { /* ignore comments */ }
2507
+ YY_BREAK
2508
+ case 2:
2509
+ /* rule 2 can match eol */
2510
+ YY_RULE_SETUP
2511
+ {KATANA_TOKEN(KATANA_CSS_WHITESPACE)}
2512
+ YY_BREAK
2513
+ case 3:
2514
+ YY_RULE_SETUP
2515
+ {KATANA_TOKEN(KATANA_CSS_SGML_CD)}
2516
+ YY_BREAK
2517
+ case 4:
2518
+ YY_RULE_SETUP
2519
+ {KATANA_TOKEN(KATANA_CSS_SGML_CD)}
2520
+ YY_BREAK
2521
+ case 5:
2522
+ YY_RULE_SETUP
2523
+ {KATANA_TOKEN(KATANA_CSS_INCLUDES)}
2524
+ YY_BREAK
2525
+ case 6:
2526
+ YY_RULE_SETUP
2527
+ {KATANA_TOKEN(KATANA_CSS_DASHMATCH)}
2528
+ YY_BREAK
2529
+ case 7:
2530
+ YY_RULE_SETUP
2531
+ {KATANA_TOKEN(KATANA_CSS_BEGINSWITH)}
2532
+ YY_BREAK
2533
+ case 8:
2534
+ YY_RULE_SETUP
2535
+ {KATANA_TOKEN(KATANA_CSS_ENDSWITH)}
2536
+ YY_BREAK
2537
+ case 9:
2538
+ YY_RULE_SETUP
2539
+ {KATANA_TOKEN(KATANA_CSS_CONTAINS)}
2540
+ YY_BREAK
2541
+ case 10:
2542
+ YY_RULE_SETUP
2543
+ {KATANA_TOKEN(KATANA_CSS_MEDIA_NOT)}
2544
+ YY_BREAK
2545
+ case 11:
2546
+ YY_RULE_SETUP
2547
+ {KATANA_TOKEN(KATANA_CSS_MEDIA_ONLY)}
2548
+ YY_BREAK
2549
+ case 12:
2550
+ YY_RULE_SETUP
2551
+ {KATANA_TOKEN(KATANA_CSS_MEDIA_AND)}
2552
+ YY_BREAK
2553
+ case 13:
2554
+ YY_RULE_SETUP
2555
+ {KATANA_TOKEN(KATANA_CSS_SUPPORTS_NOT)}
2556
+ YY_BREAK
2557
+ case 14:
2558
+ YY_RULE_SETUP
2559
+ {KATANA_TOKEN(KATANA_CSS_SUPPORTS_OR)}
2560
+ YY_BREAK
2561
+ case 15:
2562
+ YY_RULE_SETUP
2563
+ {KATANA_TOKEN(KATANA_CSS_SUPPORTS_AND)}
2564
+ YY_BREAK
2565
+ case 16:
2566
+ /* rule 16 can match eol */
2567
+ YY_RULE_SETUP
2568
+ {KATANA_TOKEN(KATANA_CSS_STRING)}
2569
+ YY_BREAK
2570
+ case 17:
2571
+ /* rule 17 can match eol */
2572
+ YY_RULE_SETUP
2573
+ {KATANA_TOKEN(KATANA_CSS_IDENT)}
2574
+ YY_BREAK
2575
+ case 18:
2576
+ /* rule 18 can match eol */
2577
+ YY_RULE_SETUP
2578
+ {KATANA_TOKEN(KATANA_CSS_NTH)}
2579
+ YY_BREAK
2580
+ case 19:
2581
+ YY_RULE_SETUP
2582
+ {KATANA_TOKEN(KATANA_CSS_HEX)}
2583
+ YY_BREAK
2584
+ case 20:
2585
+ /* rule 20 can match eol */
2586
+ YY_RULE_SETUP
2587
+ {KATANA_TOKEN(KATANA_CSS_IDSEL)}
2588
+ YY_BREAK
2589
+ case 21:
2590
+ YY_RULE_SETUP
2591
+ {BEGIN(mediaquery); KATANA_TOKEN(KATANA_CSS_IMPORT_SYM)}
2592
+ YY_BREAK
2593
+ case 22:
2594
+ YY_RULE_SETUP
2595
+ {KATANA_TOKEN(KATANA_CSS_PAGE_SYM)}
2596
+ YY_BREAK
2597
+ case 23:
2598
+ YY_RULE_SETUP
2599
+ {BEGIN(mediaquery); KATANA_TOKEN(KATANA_CSS_MEDIA_SYM)}
2600
+ YY_BREAK
2601
+ case 24:
2602
+ YY_RULE_SETUP
2603
+ {KATANA_TOKEN(KATANA_CSS_FONT_FACE_SYM)}
2604
+ YY_BREAK
2605
+ case 25:
2606
+ YY_RULE_SETUP
2607
+ {KATANA_TOKEN(KATANA_CSS_CHARSET_SYM)}
2608
+ YY_BREAK
2609
+ case 26:
2610
+ YY_RULE_SETUP
2611
+ {BEGIN(mediaquery); KATANA_TOKEN(KATANA_CSS_NAMESPACE_SYM) }
2612
+ YY_BREAK
2613
+ case 27:
2614
+ YY_RULE_SETUP
2615
+ {KATANA_TOKEN(KATANA_CSS_KEYFRAMES_SYM) }
2616
+ YY_BREAK
2617
+ case 28:
2618
+ YY_RULE_SETUP
2619
+ {BEGIN(supports); KATANA_TOKEN(KATANA_CSS_SUPPORTS_SYM)}
2620
+ YY_BREAK
2621
+ case 29:
2622
+ YY_RULE_SETUP
2623
+ {KATANA_TOKEN(KATANA_INTERNAL_RULE_SYM)}
2624
+ YY_BREAK
2625
+ case 30:
2626
+ YY_RULE_SETUP
2627
+ {KATANA_TOKEN(KATANA_INTERNAL_KEYFRAME_RULE_SYM)}
2628
+ YY_BREAK
2629
+ case 31:
2630
+ YY_RULE_SETUP
2631
+ {KATANA_TOKEN(KATANA_INTERNAL_KEYFRAME_KEY_LIST_SYM)}
2632
+ YY_BREAK
2633
+ case 32:
2634
+ YY_RULE_SETUP
2635
+ {KATANA_TOKEN(KATANA_INTERNAL_MEDIALIST_SYM)}
2636
+ YY_BREAK
2637
+ case 33:
2638
+ YY_RULE_SETUP
2639
+ {KATANA_TOKEN(KATANA_INTERNAL_VALUE_SYM)}
2640
+ YY_BREAK
2641
+ case 34:
2642
+ YY_RULE_SETUP
2643
+ {KATANA_TOKEN(KATANA_INTERNAL_SELECTOR_SYM)}
2644
+ YY_BREAK
2645
+ case 35:
2646
+ YY_RULE_SETUP
2647
+ {KATANA_TOKEN(KATANA_INTERNAL_DECLS_SYM)}
2648
+ YY_BREAK
2649
+ case 36:
2650
+ /* rule 36 can match eol */
2651
+ YY_RULE_SETUP
2652
+ {KATANA_TOKEN(KATANA_CSS_ATKEYWORD) }
2653
+ YY_BREAK
2654
+ case 37:
2655
+ /* rule 37 can match eol */
2656
+ YY_RULE_SETUP
2657
+ {KATANA_TOKEN(KATANA_CSS_IMPORTANT_SYM)}
2658
+ YY_BREAK
2659
+ case 38:
2660
+ YY_RULE_SETUP
2661
+ {KATANA_TOKEN(KATANA_CSS_EMS)}
2662
+ YY_BREAK
2663
+ case 39:
2664
+ YY_RULE_SETUP
2665
+ {KATANA_TOKEN(KATANA_CSS_REMS)}
2666
+ YY_BREAK
2667
+ case 40:
2668
+ YY_RULE_SETUP
2669
+ {KATANA_TOKEN(KATANA_CSS_CHS)}
2670
+ YY_BREAK
2671
+ case 41:
2672
+ YY_RULE_SETUP
2673
+ {KATANA_TOKEN(KATANA_CSS_QEMS)} /* quirky ems */
2674
+ YY_BREAK
2675
+ case 42:
2676
+ YY_RULE_SETUP
2677
+ {KATANA_TOKEN(KATANA_CSS_EXS)}
2678
+ YY_BREAK
2679
+ case 43:
2680
+ YY_RULE_SETUP
2681
+ {KATANA_TOKEN(KATANA_CSS_PXS)}
2682
+ YY_BREAK
2683
+ case 44:
2684
+ YY_RULE_SETUP
2685
+ {KATANA_TOKEN(KATANA_CSS_CMS)}
2686
+ YY_BREAK
2687
+ case 45:
2688
+ YY_RULE_SETUP
2689
+ {KATANA_TOKEN(KATANA_CSS_MMS)}
2690
+ YY_BREAK
2691
+ case 46:
2692
+ YY_RULE_SETUP
2693
+ {KATANA_TOKEN(KATANA_CSS_INS)}
2694
+ YY_BREAK
2695
+ case 47:
2696
+ YY_RULE_SETUP
2697
+ {KATANA_TOKEN(KATANA_CSS_PTS)}
2698
+ YY_BREAK
2699
+ case 48:
2700
+ YY_RULE_SETUP
2701
+ {KATANA_TOKEN(KATANA_CSS_PCS)}
2702
+ YY_BREAK
2703
+ case 49:
2704
+ YY_RULE_SETUP
2705
+ {KATANA_TOKEN(KATANA_CSS_DEGS)}
2706
+ YY_BREAK
2707
+ case 50:
2708
+ YY_RULE_SETUP
2709
+ {KATANA_TOKEN(KATANA_CSS_RADS)}
2710
+ YY_BREAK
2711
+ case 51:
2712
+ YY_RULE_SETUP
2713
+ {KATANA_TOKEN(KATANA_CSS_GRADS)}
2714
+ YY_BREAK
2715
+ case 52:
2716
+ YY_RULE_SETUP
2717
+ {KATANA_TOKEN(KATANA_CSS_TURNS)}
2718
+ YY_BREAK
2719
+ case 53:
2720
+ YY_RULE_SETUP
2721
+ {KATANA_TOKEN(KATANA_CSS_MSECS)}
2722
+ YY_BREAK
2723
+ case 54:
2724
+ YY_RULE_SETUP
2725
+ {KATANA_TOKEN(KATANA_CSS_SECS)}
2726
+ YY_BREAK
2727
+ case 55:
2728
+ YY_RULE_SETUP
2729
+ {KATANA_TOKEN(KATANA_CSS_HERTZ)}
2730
+ YY_BREAK
2731
+ case 56:
2732
+ YY_RULE_SETUP
2733
+ {KATANA_TOKEN(KATANA_CSS_KHERTZ)}
2734
+ YY_BREAK
2735
+ case 57:
2736
+ YY_RULE_SETUP
2737
+ {KATANA_TOKEN(KATANA_CSS_VW)}
2738
+ YY_BREAK
2739
+ case 58:
2740
+ YY_RULE_SETUP
2741
+ {KATANA_TOKEN(KATANA_CSS_VH)}
2742
+ YY_BREAK
2743
+ case 59:
2744
+ YY_RULE_SETUP
2745
+ {KATANA_TOKEN(KATANA_CSS_VMIN)}
2746
+ YY_BREAK
2747
+ case 60:
2748
+ YY_RULE_SETUP
2749
+ {KATANA_TOKEN(KATANA_CSS_VMAX)}
2750
+ YY_BREAK
2751
+ case 61:
2752
+ YY_RULE_SETUP
2753
+ {KATANA_TOKEN(KATANA_CSS_DPPX)}
2754
+ YY_BREAK
2755
+ case 62:
2756
+ YY_RULE_SETUP
2757
+ {KATANA_TOKEN(KATANA_CSS_DPI)}
2758
+ YY_BREAK
2759
+ case 63:
2760
+ YY_RULE_SETUP
2761
+ {KATANA_TOKEN(KATANA_CSS_DPCM)}
2762
+ YY_BREAK
2763
+ case 64:
2764
+ YY_RULE_SETUP
2765
+ {KATANA_TOKEN(KATANA_CSS_FR)}
2766
+ YY_BREAK
2767
+ case 65:
2768
+ /* rule 65 can match eol */
2769
+ YY_RULE_SETUP
2770
+ {KATANA_TOKEN(KATANA_CSS_DIMEN)}
2771
+ YY_BREAK
2772
+ case 66:
2773
+ /* rule 66 can match eol */
2774
+ YY_RULE_SETUP
2775
+ {KATANA_TOKEN(KATANA_CSS_INVALIDDIMEN)}
2776
+ YY_BREAK
2777
+ case 67:
2778
+ YY_RULE_SETUP
2779
+ {KATANA_TOKEN(KATANA_CSS_PERCENTAGE)}
2780
+ YY_BREAK
2781
+ case 68:
2782
+ YY_RULE_SETUP
2783
+ {KATANA_TOKEN(KATANA_CSS_INTEGER)}
2784
+ YY_BREAK
2785
+ case 69:
2786
+ YY_RULE_SETUP
2787
+ {KATANA_TOKEN(KATANA_CSS_FLOATTOKEN)}
2788
+ YY_BREAK
2789
+ case 70:
2790
+ YY_RULE_SETUP
2791
+ {KATANA_TOKEN(KATANA_CSS_ANYFUNCTION)}
2792
+ YY_BREAK
2793
+ case 71:
2794
+ YY_RULE_SETUP
2795
+ {KATANA_TOKEN(KATANA_CSS_NOTFUNCTION)}
2796
+ YY_BREAK
2797
+ case 72:
2798
+ YY_RULE_SETUP
2799
+ {KATANA_TOKEN(KATANA_CSS_CUEFUNCTION)}
2800
+ YY_BREAK
2801
+ case 73:
2802
+ YY_RULE_SETUP
2803
+ {KATANA_TOKEN(KATANA_CSS_HOSTFUNCTION)}
2804
+ YY_BREAK
2805
+ case 74:
2806
+ /* rule 74 can match eol */
2807
+ YY_RULE_SETUP
2808
+ {KATANA_TOKEN(KATANA_CSS_URI)}
2809
+ YY_BREAK
2810
+ case 75:
2811
+ /* rule 75 can match eol */
2812
+ YY_RULE_SETUP
2813
+ {KATANA_TOKEN(KATANA_CSS_URI)}
2814
+ YY_BREAK
2815
+ case 76:
2816
+ YY_RULE_SETUP
2817
+ {KATANA_TOKEN(KATANA_CSS_CALCFUNCTION)}
2818
+ YY_BREAK
2819
+ case 77:
2820
+ YY_RULE_SETUP
2821
+ {KATANA_TOKEN(KATANA_CSS_MINFUNCTION)}
2822
+ YY_BREAK
2823
+ case 78:
2824
+ YY_RULE_SETUP
2825
+ {KATANA_TOKEN(KATANA_CSS_MAXFUNCTION)}
2826
+ YY_BREAK
2827
+ case 79:
2828
+ /* rule 79 can match eol */
2829
+ YY_RULE_SETUP
2830
+ {KATANA_TOKEN(KATANA_CSS_FUNCTION)}
2831
+ YY_BREAK
2832
+ case 80:
2833
+ YY_RULE_SETUP
2834
+ {KATANA_TOKEN(KATANA_CSS_UNICODERANGE)}
2835
+ YY_BREAK
2836
+ case 81:
2837
+ YY_RULE_SETUP
2838
+ {KATANA_TOKEN(KATANA_CSS_UNICODERANGE)}
2839
+ YY_BREAK
2840
+ case 82:
2841
+ case 83:
2842
+ YY_RULE_SETUP
2843
+ {BEGIN(INITIAL); KATANA_TOKEN(*yytext) }
2844
+ YY_BREAK
2845
+ case 84:
2846
+ case 85:
2847
+ YY_RULE_SETUP
2848
+ {BEGIN(INITIAL); KATANA_TOKEN(*yytext) }
2849
+ YY_BREAK
2850
+ case 86:
2851
+ YY_RULE_SETUP
2852
+ {KATANA_TOKEN(*yytext)}
2853
+ YY_BREAK
2854
+ case 87:
2855
+ YY_RULE_SETUP
2856
+ ECHO;
2857
+ YY_BREAK
2858
+ case YY_STATE_EOF(INITIAL):
2859
+ case YY_STATE_EOF(mediaquery):
2860
+ case YY_STATE_EOF(supports):
2861
+ case YY_STATE_EOF(forkeyword):
2862
+ yyterminate();
2863
+
2864
+ case YY_END_OF_BUFFER:
2865
+ {
2866
+ /* Amount of text matched not including the EOB char. */
2867
+ int yy_amount_of_matched_text = (int) (yy_cp - yyg->yytext_ptr) - 1;
2868
+
2869
+ /* Undo the effects of YY_DO_BEFORE_ACTION. */
2870
+ *yy_cp = yyg->yy_hold_char;
2871
+ YY_RESTORE_YY_MORE_OFFSET
2872
+
2873
+ if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
2874
+ {
2875
+ /* We're scanning a new file or input source. It's
2876
+ * possible that this happened because the user
2877
+ * just pointed yyin at a new source and called
2878
+ * yylex(). If so, then we have to assure
2879
+ * consistency between YY_CURRENT_BUFFER and our
2880
+ * globals. Here is the right place to do so, because
2881
+ * this is the first action (other than possibly a
2882
+ * back-up) that will match for the new input source.
2883
+ */
2884
+ yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
2885
+ YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
2886
+ YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
2887
+ }
2888
+
2889
+ /* Note that here we test for yy_c_buf_p "<=" to the position
2890
+ * of the first EOB in the buffer, since yy_c_buf_p will
2891
+ * already have been incremented past the NUL character
2892
+ * (since all states make transitions on EOB to the
2893
+ * end-of-buffer state). Contrast this with the test
2894
+ * in input().
2895
+ */
2896
+ if ( yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] )
2897
+ { /* This was really a NUL. */
2898
+ yy_state_type yy_next_state;
2899
+
2900
+ yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text;
2901
+
2902
+ yy_current_state = yy_get_previous_state( yyscanner );
2903
+
2904
+ /* Okay, we're now positioned to make the NUL
2905
+ * transition. We couldn't have
2906
+ * yy_get_previous_state() go ahead and do it
2907
+ * for us because it doesn't know how to deal
2908
+ * with the possibility of jamming (and we don't
2909
+ * want to build jamming into it because then it
2910
+ * will run more slowly).
2911
+ */
2912
+
2913
+ yy_next_state = yy_try_NUL_trans( yy_current_state , yyscanner);
2914
+
2915
+ yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
2916
+
2917
+ if ( yy_next_state )
2918
+ {
2919
+ /* Consume the NUL. */
2920
+ yy_cp = ++yyg->yy_c_buf_p;
2921
+ yy_current_state = yy_next_state;
2922
+ goto yy_match;
2923
+ }
2924
+
2925
+ else
2926
+ {
2927
+ yy_cp = yyg->yy_c_buf_p;
2928
+ goto yy_find_action;
2929
+ }
2930
+ }
2931
+
2932
+ else switch ( yy_get_next_buffer( yyscanner ) )
2933
+ {
2934
+ case EOB_ACT_END_OF_FILE:
2935
+ {
2936
+ yyg->yy_did_buffer_switch_on_eof = 0;
2937
+
2938
+ if ( yywrap( yyscanner ) )
2939
+ {
2940
+ /* Note: because we've taken care in
2941
+ * yy_get_next_buffer() to have set up
2942
+ * yytext, we can now set up
2943
+ * yy_c_buf_p so that if some total
2944
+ * hoser (like flex itself) wants to
2945
+ * call the scanner after we return the
2946
+ * YY_NULL, it'll still work - another
2947
+ * YY_NULL will get returned.
2948
+ */
2949
+ yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ;
2950
+
2951
+ yy_act = YY_STATE_EOF(YY_START);
2952
+ goto do_action;
2953
+ }
2954
+
2955
+ else
2956
+ {
2957
+ if ( ! yyg->yy_did_buffer_switch_on_eof )
2958
+ YY_NEW_FILE;
2959
+ }
2960
+ break;
2961
+ }
2962
+
2963
+ case EOB_ACT_CONTINUE_SCAN:
2964
+ yyg->yy_c_buf_p =
2965
+ yyg->yytext_ptr + yy_amount_of_matched_text;
2966
+
2967
+ yy_current_state = yy_get_previous_state( yyscanner );
2968
+
2969
+ yy_cp = yyg->yy_c_buf_p;
2970
+ yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
2971
+ goto yy_match;
2972
+
2973
+ case EOB_ACT_LAST_MATCH:
2974
+ yyg->yy_c_buf_p =
2975
+ &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars];
2976
+
2977
+ yy_current_state = yy_get_previous_state( yyscanner );
2978
+
2979
+ yy_cp = yyg->yy_c_buf_p;
2980
+ yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
2981
+ goto yy_find_action;
2982
+ }
2983
+ break;
2984
+ }
2985
+
2986
+ default:
2987
+ YY_FATAL_ERROR(
2988
+ "fatal flex scanner internal error--no action found" );
2989
+ } /* end of action switch */
2990
+ } /* end of scanning one token */
2991
+ } /* end of user's declarations */
2992
+ } /* end of yylex */
2993
+
2994
+ /* yy_get_next_buffer - try to read in a new buffer
2995
+ *
2996
+ * Returns a code representing an action:
2997
+ * EOB_ACT_LAST_MATCH -
2998
+ * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
2999
+ * EOB_ACT_END_OF_FILE - end of file
3000
+ */
3001
+ static int yy_get_next_buffer (yyscan_t yyscanner)
3002
+ {
3003
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3004
+ char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
3005
+ char *source = yyg->yytext_ptr;
3006
+ int number_to_move, i;
3007
+ int ret_val;
3008
+
3009
+ if ( yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] )
3010
+ YY_FATAL_ERROR(
3011
+ "fatal flex scanner internal error--end of buffer missed" );
3012
+
3013
+ if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
3014
+ { /* Don't try to fill the buffer, so this is an EOF. */
3015
+ if ( yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1 )
3016
+ {
3017
+ /* We matched a single character, the EOB, so
3018
+ * treat this as a final EOF.
3019
+ */
3020
+ return EOB_ACT_END_OF_FILE;
3021
+ }
3022
+
3023
+ else
3024
+ {
3025
+ /* We matched some text prior to the EOB, first
3026
+ * process it.
3027
+ */
3028
+ return EOB_ACT_LAST_MATCH;
3029
+ }
3030
+ }
3031
+
3032
+ /* Try to read more data. */
3033
+
3034
+ /* First move last chars to start of buffer. */
3035
+ number_to_move = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr - 1);
3036
+
3037
+ for ( i = 0; i < number_to_move; ++i )
3038
+ *(dest++) = *(source++);
3039
+
3040
+ if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
3041
+ /* don't do the read, it's not guaranteed to return an EOF,
3042
+ * just force an EOF
3043
+ */
3044
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = 0;
3045
+
3046
+ else
3047
+ {
3048
+ int num_to_read =
3049
+ YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
3050
+
3051
+ while ( num_to_read <= 0 )
3052
+ { /* Not enough room in the buffer - grow it. */
3053
+
3054
+ /* just a shorter name for the current buffer */
3055
+ YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;
3056
+
3057
+ int yy_c_buf_p_offset =
3058
+ (int) (yyg->yy_c_buf_p - b->yy_ch_buf);
3059
+
3060
+ if ( b->yy_is_our_buffer )
3061
+ {
3062
+ int new_size = b->yy_buf_size * 2;
3063
+
3064
+ if ( new_size <= 0 )
3065
+ b->yy_buf_size += b->yy_buf_size / 8;
3066
+ else
3067
+ b->yy_buf_size *= 2;
3068
+
3069
+ b->yy_ch_buf = (char *)
3070
+ /* Include room in for 2 EOB chars. */
3071
+ yyrealloc( (void *) b->yy_ch_buf,
3072
+ (yy_size_t) (b->yy_buf_size + 2) , yyscanner );
3073
+ }
3074
+ else
3075
+ /* Can't grow it, we don't own it. */
3076
+ b->yy_ch_buf = NULL;
3077
+
3078
+ if ( ! b->yy_ch_buf )
3079
+ YY_FATAL_ERROR(
3080
+ "fatal error - scanner input buffer overflow" );
3081
+
3082
+ yyg->yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];
3083
+
3084
+ num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
3085
+ number_to_move - 1;
3086
+
3087
+ }
3088
+
3089
+ if ( num_to_read > YY_READ_BUF_SIZE )
3090
+ num_to_read = YY_READ_BUF_SIZE;
3091
+
3092
+ /* Read in more data. */
3093
+ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
3094
+ yyg->yy_n_chars, num_to_read );
3095
+
3096
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
3097
+ }
3098
+
3099
+ if ( yyg->yy_n_chars == 0 )
3100
+ {
3101
+ if ( number_to_move == YY_MORE_ADJ )
3102
+ {
3103
+ ret_val = EOB_ACT_END_OF_FILE;
3104
+ yyrestart( yyin , yyscanner);
3105
+ }
3106
+
3107
+ else
3108
+ {
3109
+ ret_val = EOB_ACT_LAST_MATCH;
3110
+ YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
3111
+ YY_BUFFER_EOF_PENDING;
3112
+ }
3113
+ }
3114
+
3115
+ else
3116
+ ret_val = EOB_ACT_CONTINUE_SCAN;
3117
+
3118
+ if ((yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
3119
+ /* Extend the array by 50%, plus the number we really need. */
3120
+ int new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1);
3121
+ YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc(
3122
+ (void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size , yyscanner );
3123
+ if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
3124
+ YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
3125
+ /* "- 2" to take care of EOB's */
3126
+ YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2);
3127
+ }
3128
+
3129
+ yyg->yy_n_chars += number_to_move;
3130
+ YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR;
3131
+ YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
3132
+
3133
+ yyg->yytext_ptr = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
3134
+
3135
+ return ret_val;
3136
+ }
3137
+
3138
+ /* yy_get_previous_state - get the state just before the EOB char was reached */
3139
+
3140
+ static yy_state_type yy_get_previous_state (yyscan_t yyscanner)
3141
+ {
3142
+ yy_state_type yy_current_state;
3143
+ char *yy_cp;
3144
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3145
+
3146
+ yy_current_state = yyg->yy_start;
3147
+
3148
+ for ( yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp )
3149
+ {
3150
+ YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
3151
+ if ( yy_accept[yy_current_state] )
3152
+ {
3153
+ yyg->yy_last_accepting_state = yy_current_state;
3154
+ yyg->yy_last_accepting_cpos = yy_cp;
3155
+ }
3156
+ while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
3157
+ {
3158
+ yy_current_state = (int) yy_def[yy_current_state];
3159
+ if ( yy_current_state >= 508 )
3160
+ yy_c = yy_meta[yy_c];
3161
+ }
3162
+ yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
3163
+ }
3164
+
3165
+ return yy_current_state;
3166
+ }
3167
+
3168
+ /* yy_try_NUL_trans - try to make a transition on the NUL character
3169
+ *
3170
+ * synopsis
3171
+ * next_state = yy_try_NUL_trans( current_state );
3172
+ */
3173
+ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_t yyscanner)
3174
+ {
3175
+ int yy_is_jam;
3176
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */
3177
+ char *yy_cp = yyg->yy_c_buf_p;
3178
+
3179
+ YY_CHAR yy_c = 1;
3180
+ if ( yy_accept[yy_current_state] )
3181
+ {
3182
+ yyg->yy_last_accepting_state = yy_current_state;
3183
+ yyg->yy_last_accepting_cpos = yy_cp;
3184
+ }
3185
+ while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
3186
+ {
3187
+ yy_current_state = (int) yy_def[yy_current_state];
3188
+ if ( yy_current_state >= 508 )
3189
+ yy_c = yy_meta[yy_c];
3190
+ }
3191
+ yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
3192
+ yy_is_jam = (yy_current_state == 507);
3193
+
3194
+ (void)yyg;
3195
+ return yy_is_jam ? 0 : yy_current_state;
3196
+ }
3197
+
3198
+ #ifndef YY_NO_UNPUT
3199
+
3200
+ static void yyunput (int c, char * yy_bp , yyscan_t yyscanner)
3201
+ {
3202
+ char *yy_cp;
3203
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3204
+
3205
+ yy_cp = yyg->yy_c_buf_p;
3206
+
3207
+ /* undo effects of setting up yytext */
3208
+ *yy_cp = yyg->yy_hold_char;
3209
+
3210
+ if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
3211
+ { /* need to shift things up to make room */
3212
+ /* +2 for EOB chars. */
3213
+ int number_to_move = yyg->yy_n_chars + 2;
3214
+ char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
3215
+ YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
3216
+ char *source =
3217
+ &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
3218
+
3219
+ while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
3220
+ *--dest = *--source;
3221
+
3222
+ yy_cp += (int) (dest - source);
3223
+ yy_bp += (int) (dest - source);
3224
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
3225
+ yyg->yy_n_chars = (int) YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
3226
+
3227
+ if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
3228
+ YY_FATAL_ERROR( "flex scanner push-back overflow" );
3229
+ }
3230
+
3231
+ *--yy_cp = (char) c;
3232
+
3233
+ if ( c == '\n' ){
3234
+ --yylineno;
3235
+ }
3236
+
3237
+ yyg->yytext_ptr = yy_bp;
3238
+ yyg->yy_hold_char = *yy_cp;
3239
+ yyg->yy_c_buf_p = yy_cp;
3240
+ }
3241
+
3242
+ #endif
3243
+
3244
+ #ifndef YY_NO_INPUT
3245
+ #ifdef __cplusplus
3246
+ static int yyinput (yyscan_t yyscanner)
3247
+ #else
3248
+ static int input (yyscan_t yyscanner)
3249
+ #endif
3250
+
3251
+ {
3252
+ int c;
3253
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3254
+
3255
+ *yyg->yy_c_buf_p = yyg->yy_hold_char;
3256
+
3257
+ if ( *yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
3258
+ {
3259
+ /* yy_c_buf_p now points to the character we want to return.
3260
+ * If this occurs *before* the EOB characters, then it's a
3261
+ * valid NUL; if not, then we've hit the end of the buffer.
3262
+ */
3263
+ if ( yyg->yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] )
3264
+ /* This was really a NUL. */
3265
+ *yyg->yy_c_buf_p = '\0';
3266
+
3267
+ else
3268
+ { /* need more input */
3269
+ int offset = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr);
3270
+ ++yyg->yy_c_buf_p;
3271
+
3272
+ switch ( yy_get_next_buffer( yyscanner ) )
3273
+ {
3274
+ case EOB_ACT_LAST_MATCH:
3275
+ /* This happens because yy_g_n_b()
3276
+ * sees that we've accumulated a
3277
+ * token and flags that we need to
3278
+ * try matching the token before
3279
+ * proceeding. But for input(),
3280
+ * there's no matching to consider.
3281
+ * So convert the EOB_ACT_LAST_MATCH
3282
+ * to EOB_ACT_END_OF_FILE.
3283
+ */
3284
+
3285
+ /* Reset buffer status. */
3286
+ yyrestart( yyin , yyscanner);
3287
+
3288
+ /*FALLTHROUGH*/
3289
+
3290
+ case EOB_ACT_END_OF_FILE:
3291
+ {
3292
+ if ( yywrap( yyscanner ) )
3293
+ return 0;
3294
+
3295
+ if ( ! yyg->yy_did_buffer_switch_on_eof )
3296
+ YY_NEW_FILE;
3297
+ #ifdef __cplusplus
3298
+ return yyinput(yyscanner);
3299
+ #else
3300
+ return input(yyscanner);
3301
+ #endif
3302
+ }
3303
+
3304
+ case EOB_ACT_CONTINUE_SCAN:
3305
+ yyg->yy_c_buf_p = yyg->yytext_ptr + offset;
3306
+ break;
3307
+ }
3308
+ }
3309
+ }
3310
+
3311
+ c = *(unsigned char *) yyg->yy_c_buf_p; /* cast for 8-bit char's */
3312
+ *yyg->yy_c_buf_p = '\0'; /* preserve yytext */
3313
+ yyg->yy_hold_char = *++yyg->yy_c_buf_p;
3314
+
3315
+ if ( c == '\n' )
3316
+
3317
+ do{ yylineno++;
3318
+ yycolumn=0;
3319
+ }while(0)
3320
+ ;
3321
+
3322
+ return c;
3323
+ }
3324
+ #endif /* ifndef YY_NO_INPUT */
3325
+
3326
+ /** Immediately switch to a different input stream.
3327
+ * @param input_file A readable stream.
3328
+ * @param yyscanner The scanner object.
3329
+ * @note This function does not reset the start condition to @c INITIAL .
3330
+ */
3331
+ void yyrestart (FILE * input_file , yyscan_t yyscanner)
3332
+ {
3333
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3334
+
3335
+ if ( ! YY_CURRENT_BUFFER ){
3336
+ yyensure_buffer_stack (yyscanner);
3337
+ YY_CURRENT_BUFFER_LVALUE =
3338
+ yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner);
3339
+ }
3340
+
3341
+ yy_init_buffer( YY_CURRENT_BUFFER, input_file , yyscanner);
3342
+ yy_load_buffer_state( yyscanner );
3343
+ }
3344
+
3345
+ /** Switch to a different input buffer.
3346
+ * @param new_buffer The new input buffer.
3347
+ * @param yyscanner The scanner object.
3348
+ */
3349
+ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner)
3350
+ {
3351
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3352
+
3353
+ /* TODO. We should be able to replace this entire function body
3354
+ * with
3355
+ * yypop_buffer_state();
3356
+ * yypush_buffer_state(new_buffer);
3357
+ */
3358
+ yyensure_buffer_stack (yyscanner);
3359
+ if ( YY_CURRENT_BUFFER == new_buffer )
3360
+ return;
3361
+
3362
+ if ( YY_CURRENT_BUFFER )
3363
+ {
3364
+ /* Flush out information for old buffer. */
3365
+ *yyg->yy_c_buf_p = yyg->yy_hold_char;
3366
+ YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p;
3367
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
3368
+ }
3369
+
3370
+ YY_CURRENT_BUFFER_LVALUE = new_buffer;
3371
+ yy_load_buffer_state( yyscanner );
3372
+
3373
+ /* We don't actually know whether we did this switch during
3374
+ * EOF (yywrap()) processing, but the only time this flag
3375
+ * is looked at is after yywrap() is called, so it's safe
3376
+ * to go ahead and always set it.
3377
+ */
3378
+ yyg->yy_did_buffer_switch_on_eof = 1;
3379
+ }
3380
+
3381
+ static void yy_load_buffer_state (yyscan_t yyscanner)
3382
+ {
3383
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3384
+ yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
3385
+ yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
3386
+ yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
3387
+ yyg->yy_hold_char = *yyg->yy_c_buf_p;
3388
+ }
3389
+
3390
+ /** Allocate and initialize an input buffer state.
3391
+ * @param file A readable stream.
3392
+ * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
3393
+ * @param yyscanner The scanner object.
3394
+ * @return the allocated buffer state.
3395
+ */
3396
+ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size , yyscan_t yyscanner)
3397
+ {
3398
+ YY_BUFFER_STATE b;
3399
+
3400
+ b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) , yyscanner );
3401
+ if ( ! b )
3402
+ YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
3403
+
3404
+ b->yy_buf_size = size;
3405
+
3406
+ /* yy_ch_buf has to be 2 characters longer than the size given because
3407
+ * we need to put in 2 end-of-buffer characters.
3408
+ */
3409
+ b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) , yyscanner );
3410
+ if ( ! b->yy_ch_buf )
3411
+ YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
3412
+
3413
+ b->yy_is_our_buffer = 1;
3414
+
3415
+ yy_init_buffer( b, file , yyscanner);
3416
+
3417
+ return b;
3418
+ }
3419
+
3420
+ /** Destroy the buffer.
3421
+ * @param b a buffer created with yy_create_buffer()
3422
+ * @param yyscanner The scanner object.
3423
+ */
3424
+ void yy_delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner)
3425
+ {
3426
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3427
+
3428
+ if ( ! b )
3429
+ return;
3430
+
3431
+ if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
3432
+ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
3433
+
3434
+ if ( b->yy_is_our_buffer )
3435
+ yyfree( (void *) b->yy_ch_buf , yyscanner );
3436
+
3437
+ yyfree( (void *) b , yyscanner );
3438
+ }
3439
+
3440
+ /* Initializes or reinitializes a buffer.
3441
+ * This function is sometimes called more than once on the same buffer,
3442
+ * such as during a yyrestart() or at EOF.
3443
+ */
3444
+ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner)
3445
+
3446
+ {
3447
+ int oerrno = errno;
3448
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3449
+
3450
+ yy_flush_buffer( b , yyscanner);
3451
+
3452
+ b->yy_input_file = file;
3453
+ b->yy_fill_buffer = 1;
3454
+
3455
+ /* If b is the current buffer, then yy_init_buffer was _probably_
3456
+ * called from yyrestart() or through yy_get_next_buffer.
3457
+ * In that case, we don't want to reset the lineno or column.
3458
+ */
3459
+ if (b != YY_CURRENT_BUFFER){
3460
+ b->yy_bs_lineno = 1;
3461
+ b->yy_bs_column = 0;
3462
+ }
3463
+
3464
+ b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
3465
+
3466
+ errno = oerrno;
3467
+ }
3468
+
3469
+ /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
3470
+ * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
3471
+ * @param yyscanner The scanner object.
3472
+ */
3473
+ void yy_flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner)
3474
+ {
3475
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3476
+ if ( ! b )
3477
+ return;
3478
+
3479
+ b->yy_n_chars = 0;
3480
+
3481
+ /* We always need two end-of-buffer characters. The first causes
3482
+ * a transition to the end-of-buffer state. The second causes
3483
+ * a jam in that state.
3484
+ */
3485
+ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
3486
+ b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
3487
+
3488
+ b->yy_buf_pos = &b->yy_ch_buf[0];
3489
+
3490
+ b->yy_at_bol = 1;
3491
+ b->yy_buffer_status = YY_BUFFER_NEW;
3492
+
3493
+ if ( b == YY_CURRENT_BUFFER )
3494
+ yy_load_buffer_state( yyscanner );
3495
+ }
3496
+
3497
+ /** Pushes the new state onto the stack. The new state becomes
3498
+ * the current state. This function will allocate the stack
3499
+ * if necessary.
3500
+ * @param new_buffer The new state.
3501
+ * @param yyscanner The scanner object.
3502
+ */
3503
+ void yypush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner)
3504
+ {
3505
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3506
+ if (new_buffer == NULL)
3507
+ return;
3508
+
3509
+ yyensure_buffer_stack(yyscanner);
3510
+
3511
+ /* This block is copied from yy_switch_to_buffer. */
3512
+ if ( YY_CURRENT_BUFFER )
3513
+ {
3514
+ /* Flush out information for old buffer. */
3515
+ *yyg->yy_c_buf_p = yyg->yy_hold_char;
3516
+ YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p;
3517
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
3518
+ }
3519
+
3520
+ /* Only push if top exists. Otherwise, replace top. */
3521
+ if (YY_CURRENT_BUFFER)
3522
+ yyg->yy_buffer_stack_top++;
3523
+ YY_CURRENT_BUFFER_LVALUE = new_buffer;
3524
+
3525
+ /* copied from yy_switch_to_buffer. */
3526
+ yy_load_buffer_state( yyscanner );
3527
+ yyg->yy_did_buffer_switch_on_eof = 1;
3528
+ }
3529
+
3530
+ /** Removes and deletes the top of the stack, if present.
3531
+ * The next element becomes the new top.
3532
+ * @param yyscanner The scanner object.
3533
+ */
3534
+ void yypop_buffer_state (yyscan_t yyscanner)
3535
+ {
3536
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3537
+ if (!YY_CURRENT_BUFFER)
3538
+ return;
3539
+
3540
+ yy_delete_buffer(YY_CURRENT_BUFFER , yyscanner);
3541
+ YY_CURRENT_BUFFER_LVALUE = NULL;
3542
+ if (yyg->yy_buffer_stack_top > 0)
3543
+ --yyg->yy_buffer_stack_top;
3544
+
3545
+ if (YY_CURRENT_BUFFER) {
3546
+ yy_load_buffer_state( yyscanner );
3547
+ yyg->yy_did_buffer_switch_on_eof = 1;
3548
+ }
3549
+ }
3550
+
3551
+ /* Allocates the stack if it does not exist.
3552
+ * Guarantees space for at least one push.
3553
+ */
3554
+ static void yyensure_buffer_stack (yyscan_t yyscanner)
3555
+ {
3556
+ yy_size_t num_to_alloc;
3557
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3558
+
3559
+ if (!yyg->yy_buffer_stack) {
3560
+
3561
+ /* First allocation is just for 2 elements, since we don't know if this
3562
+ * scanner will even need a stack. We use 2 instead of 1 to avoid an
3563
+ * immediate realloc on the next call.
3564
+ */
3565
+ num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
3566
+ yyg->yy_buffer_stack = (struct yy_buffer_state**)yyalloc
3567
+ (num_to_alloc * sizeof(struct yy_buffer_state*)
3568
+ , yyscanner);
3569
+ if ( ! yyg->yy_buffer_stack )
3570
+ YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
3571
+
3572
+ memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*));
3573
+
3574
+ yyg->yy_buffer_stack_max = num_to_alloc;
3575
+ yyg->yy_buffer_stack_top = 0;
3576
+ return;
3577
+ }
3578
+
3579
+ if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1){
3580
+
3581
+ /* Increase the buffer to prepare for a possible push. */
3582
+ yy_size_t grow_size = 8 /* arbitrary grow size */;
3583
+
3584
+ num_to_alloc = yyg->yy_buffer_stack_max + grow_size;
3585
+ yyg->yy_buffer_stack = (struct yy_buffer_state**)yyrealloc
3586
+ (yyg->yy_buffer_stack,
3587
+ num_to_alloc * sizeof(struct yy_buffer_state*)
3588
+ , yyscanner);
3589
+ if ( ! yyg->yy_buffer_stack )
3590
+ YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
3591
+
3592
+ /* zero only the new slots.*/
3593
+ memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*));
3594
+ yyg->yy_buffer_stack_max = num_to_alloc;
3595
+ }
3596
+ }
3597
+
3598
+ /** Setup the input buffer state to scan directly from a user-specified character buffer.
3599
+ * @param base the character buffer
3600
+ * @param size the size in bytes of the character buffer
3601
+ * @param yyscanner The scanner object.
3602
+ * @return the newly allocated buffer state object.
3603
+ */
3604
+ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner)
3605
+ {
3606
+ YY_BUFFER_STATE b;
3607
+
3608
+ if ( size < 2 ||
3609
+ base[size-2] != YY_END_OF_BUFFER_CHAR ||
3610
+ base[size-1] != YY_END_OF_BUFFER_CHAR )
3611
+ /* They forgot to leave room for the EOB's. */
3612
+ return NULL;
3613
+
3614
+ b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) , yyscanner );
3615
+ if ( ! b )
3616
+ YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
3617
+
3618
+ b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */
3619
+ b->yy_buf_pos = b->yy_ch_buf = base;
3620
+ b->yy_is_our_buffer = 0;
3621
+ b->yy_input_file = NULL;
3622
+ b->yy_n_chars = b->yy_buf_size;
3623
+ b->yy_is_interactive = 0;
3624
+ b->yy_at_bol = 1;
3625
+ b->yy_fill_buffer = 0;
3626
+ b->yy_buffer_status = YY_BUFFER_NEW;
3627
+
3628
+ yy_switch_to_buffer( b , yyscanner );
3629
+
3630
+ return b;
3631
+ }
3632
+
3633
+ /** Setup the input buffer state to scan a string. The next call to yylex() will
3634
+ * scan from a @e copy of @a str.
3635
+ * @param yystr a NUL-terminated string to scan
3636
+ * @param yyscanner The scanner object.
3637
+ * @return the newly allocated buffer state object.
3638
+ * @note If you want to scan bytes that may contain NUL values, then use
3639
+ * yy_scan_bytes() instead.
3640
+ */
3641
+ YY_BUFFER_STATE yy_scan_string (const char * yystr , yyscan_t yyscanner)
3642
+ {
3643
+
3644
+ return yy_scan_bytes( yystr, (int) strlen(yystr) , yyscanner);
3645
+ }
3646
+
3647
+ /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
3648
+ * scan from a @e copy of @a bytes.
3649
+ * @param yybytes the byte buffer to scan
3650
+ * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
3651
+ * @param yyscanner The scanner object.
3652
+ * @return the newly allocated buffer state object.
3653
+ */
3654
+ YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len , yyscan_t yyscanner)
3655
+ {
3656
+ YY_BUFFER_STATE b;
3657
+ char *buf;
3658
+ yy_size_t n;
3659
+ int i;
3660
+
3661
+ /* Get memory for full buffer, including space for trailing EOB's. */
3662
+ n = (yy_size_t) (_yybytes_len + 2);
3663
+ buf = (char *) yyalloc( n , yyscanner );
3664
+ if ( ! buf )
3665
+ YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
3666
+
3667
+ for ( i = 0; i < _yybytes_len; ++i )
3668
+ buf[i] = yybytes[i];
3669
+
3670
+ buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
3671
+
3672
+ b = yy_scan_buffer( buf, n , yyscanner);
3673
+ if ( ! b )
3674
+ YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
3675
+
3676
+ /* It's okay to grow etc. this buffer, and we should throw it
3677
+ * away when we're done.
3678
+ */
3679
+ b->yy_is_our_buffer = 1;
3680
+
3681
+ return b;
3682
+ }
3683
+
3684
+ static void yy_push_state (int _new_state , yyscan_t yyscanner)
3685
+ {
3686
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3687
+ if ( yyg->yy_start_stack_ptr >= yyg->yy_start_stack_depth )
3688
+ {
3689
+ yy_size_t new_size;
3690
+
3691
+ yyg->yy_start_stack_depth += YY_START_STACK_INCR;
3692
+ new_size = (yy_size_t) yyg->yy_start_stack_depth * sizeof( int );
3693
+
3694
+ if ( ! yyg->yy_start_stack )
3695
+ yyg->yy_start_stack = (int *) yyalloc( new_size , yyscanner );
3696
+
3697
+ else
3698
+ yyg->yy_start_stack = (int *) yyrealloc(
3699
+ (void *) yyg->yy_start_stack, new_size , yyscanner );
3700
+
3701
+ if ( ! yyg->yy_start_stack )
3702
+ YY_FATAL_ERROR( "out of memory expanding start-condition stack" );
3703
+ }
3704
+
3705
+ yyg->yy_start_stack[yyg->yy_start_stack_ptr++] = YY_START;
3706
+
3707
+ BEGIN(_new_state);
3708
+ }
3709
+
3710
+ static void yy_pop_state (yyscan_t yyscanner)
3711
+ {
3712
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3713
+ if ( --yyg->yy_start_stack_ptr < 0 )
3714
+ YY_FATAL_ERROR( "start-condition stack underflow" );
3715
+
3716
+ BEGIN(yyg->yy_start_stack[yyg->yy_start_stack_ptr]);
3717
+ }
3718
+
3719
+ static int yy_top_state (yyscan_t yyscanner)
3720
+ {
3721
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3722
+ return yyg->yy_start_stack[yyg->yy_start_stack_ptr - 1];
3723
+ }
3724
+
3725
+ #ifndef YY_EXIT_FAILURE
3726
+ #define YY_EXIT_FAILURE 2
3727
+ #endif
3728
+
3729
+ static void yynoreturn yy_fatal_error (const char* msg , yyscan_t yyscanner)
3730
+ {
3731
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3732
+ (void)yyg;
3733
+ fprintf( stderr, "%s\n", msg );
3734
+ exit( YY_EXIT_FAILURE );
3735
+ }
3736
+
3737
+ /* Redefine yyless() so it works in section 3 code. */
3738
+
3739
+ #undef yyless
3740
+ #define yyless(n) \
3741
+ do \
3742
+ { \
3743
+ /* Undo effects of setting up yytext. */ \
3744
+ int yyless_macro_arg = (n); \
3745
+ YY_LESS_LINENO(yyless_macro_arg);\
3746
+ yytext[yyleng] = yyg->yy_hold_char; \
3747
+ yyg->yy_c_buf_p = yytext + yyless_macro_arg; \
3748
+ yyg->yy_hold_char = *yyg->yy_c_buf_p; \
3749
+ *yyg->yy_c_buf_p = '\0'; \
3750
+ yyleng = yyless_macro_arg; \
3751
+ } \
3752
+ while ( 0 )
3753
+
3754
+ /* Accessor methods (get/set functions) to struct members. */
3755
+
3756
+ /** Get the user-defined data for this scanner.
3757
+ * @param yyscanner The scanner object.
3758
+ */
3759
+ YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner)
3760
+ {
3761
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3762
+ return yyextra;
3763
+ }
3764
+
3765
+ /** Get the current line number.
3766
+ * @param yyscanner The scanner object.
3767
+ */
3768
+ int yyget_lineno (yyscan_t yyscanner)
3769
+ {
3770
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3771
+
3772
+ if (! YY_CURRENT_BUFFER)
3773
+ return 0;
3774
+
3775
+ return yylineno;
3776
+ }
3777
+
3778
+ /** Get the current column number.
3779
+ * @param yyscanner The scanner object.
3780
+ */
3781
+ int yyget_column (yyscan_t yyscanner)
3782
+ {
3783
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3784
+
3785
+ if (! YY_CURRENT_BUFFER)
3786
+ return 0;
3787
+
3788
+ return yycolumn;
3789
+ }
3790
+
3791
+ /** Get the input stream.
3792
+ * @param yyscanner The scanner object.
3793
+ */
3794
+ FILE *yyget_in (yyscan_t yyscanner)
3795
+ {
3796
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3797
+ return yyin;
3798
+ }
3799
+
3800
+ /** Get the output stream.
3801
+ * @param yyscanner The scanner object.
3802
+ */
3803
+ FILE *yyget_out (yyscan_t yyscanner)
3804
+ {
3805
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3806
+ return yyout;
3807
+ }
3808
+
3809
+ /** Get the length of the current token.
3810
+ * @param yyscanner The scanner object.
3811
+ */
3812
+ int yyget_leng (yyscan_t yyscanner)
3813
+ {
3814
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3815
+ return yyleng;
3816
+ }
3817
+
3818
+ /** Get the current token.
3819
+ * @param yyscanner The scanner object.
3820
+ */
3821
+
3822
+ char *yyget_text (yyscan_t yyscanner)
3823
+ {
3824
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3825
+ return yytext;
3826
+ }
3827
+
3828
+ /** Set the user-defined data. This data is never touched by the scanner.
3829
+ * @param user_defined The data to be associated with this scanner.
3830
+ * @param yyscanner The scanner object.
3831
+ */
3832
+ void yyset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner)
3833
+ {
3834
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3835
+ yyextra = user_defined ;
3836
+ }
3837
+
3838
+ /** Set the current line number.
3839
+ * @param _line_number line number
3840
+ * @param yyscanner The scanner object.
3841
+ */
3842
+ void yyset_lineno (int _line_number , yyscan_t yyscanner)
3843
+ {
3844
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3845
+
3846
+ /* lineno is only valid if an input buffer exists. */
3847
+ if (! YY_CURRENT_BUFFER )
3848
+ YY_FATAL_ERROR( "yyset_lineno called with no buffer" );
3849
+
3850
+ yylineno = _line_number;
3851
+ }
3852
+
3853
+ /** Set the current column.
3854
+ * @param _column_no column number
3855
+ * @param yyscanner The scanner object.
3856
+ */
3857
+ void yyset_column (int _column_no , yyscan_t yyscanner)
3858
+ {
3859
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3860
+
3861
+ /* column is only valid if an input buffer exists. */
3862
+ if (! YY_CURRENT_BUFFER )
3863
+ YY_FATAL_ERROR( "yyset_column called with no buffer" );
3864
+
3865
+ yycolumn = _column_no;
3866
+ }
3867
+
3868
+ /** Set the input stream. This does not discard the current
3869
+ * input buffer.
3870
+ * @param _in_str A readable stream.
3871
+ * @param yyscanner The scanner object.
3872
+ * @see yy_switch_to_buffer
3873
+ */
3874
+ void yyset_in (FILE * _in_str , yyscan_t yyscanner)
3875
+ {
3876
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3877
+ yyin = _in_str ;
3878
+ }
3879
+
3880
+ void yyset_out (FILE * _out_str , yyscan_t yyscanner)
3881
+ {
3882
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3883
+ yyout = _out_str ;
3884
+ }
3885
+
3886
+ int yyget_debug (yyscan_t yyscanner)
3887
+ {
3888
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3889
+ return yy_flex_debug;
3890
+ }
3891
+
3892
+ void yyset_debug (int _bdebug , yyscan_t yyscanner)
3893
+ {
3894
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3895
+ yy_flex_debug = _bdebug ;
3896
+ }
3897
+
3898
+ /* Accessor methods for yylval and yylloc */
3899
+
3900
+ YYSTYPE * yyget_lval (yyscan_t yyscanner)
3901
+ {
3902
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3903
+ return yylval;
3904
+ }
3905
+
3906
+ void yyset_lval (YYSTYPE * yylval_param , yyscan_t yyscanner)
3907
+ {
3908
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3909
+ yylval = yylval_param;
3910
+ }
3911
+
3912
+ YYLTYPE *yyget_lloc (yyscan_t yyscanner)
3913
+ {
3914
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3915
+ return yylloc;
3916
+ }
3917
+
3918
+ void yyset_lloc (YYLTYPE * yylloc_param , yyscan_t yyscanner)
3919
+ {
3920
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3921
+ yylloc = yylloc_param;
3922
+ }
3923
+
3924
+ /* User-visible API */
3925
+
3926
+ /* yylex_init is special because it creates the scanner itself, so it is
3927
+ * the ONLY reentrant function that doesn't take the scanner as the last argument.
3928
+ * That's why we explicitly handle the declaration, instead of using our macros.
3929
+ */
3930
+ int yylex_init(yyscan_t* ptr_yy_globals)
3931
+ {
3932
+ if (ptr_yy_globals == NULL){
3933
+ errno = EINVAL;
3934
+ return 1;
3935
+ }
3936
+
3937
+ *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), NULL );
3938
+
3939
+ if (*ptr_yy_globals == NULL){
3940
+ errno = ENOMEM;
3941
+ return 1;
3942
+ }
3943
+
3944
+ /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */
3945
+ memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t));
3946
+
3947
+ return yy_init_globals ( *ptr_yy_globals );
3948
+ }
3949
+
3950
+ /* yylex_init_extra has the same functionality as yylex_init, but follows the
3951
+ * convention of taking the scanner as the last argument. Note however, that
3952
+ * this is a *pointer* to a scanner, as it will be allocated by this call (and
3953
+ * is the reason, too, why this function also must handle its own declaration).
3954
+ * The user defined value in the first argument will be available to yyalloc in
3955
+ * the yyextra field.
3956
+ */
3957
+ int yylex_init_extra( YY_EXTRA_TYPE yy_user_defined, yyscan_t* ptr_yy_globals )
3958
+ {
3959
+ struct yyguts_t dummy_yyguts;
3960
+
3961
+ yyset_extra (yy_user_defined, &dummy_yyguts);
3962
+
3963
+ if (ptr_yy_globals == NULL){
3964
+ errno = EINVAL;
3965
+ return 1;
3966
+ }
3967
+
3968
+ *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), &dummy_yyguts );
3969
+
3970
+ if (*ptr_yy_globals == NULL){
3971
+ errno = ENOMEM;
3972
+ return 1;
3973
+ }
3974
+
3975
+ /* By setting to 0xAA, we expose bugs in
3976
+ yy_init_globals. Leave at 0x00 for releases. */
3977
+ memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t));
3978
+
3979
+ yyset_extra (yy_user_defined, *ptr_yy_globals);
3980
+
3981
+ return yy_init_globals ( *ptr_yy_globals );
3982
+ }
3983
+
3984
+ static int yy_init_globals (yyscan_t yyscanner)
3985
+ {
3986
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3987
+ /* Initialization is the same as for the non-reentrant scanner.
3988
+ * This function is called from yylex_destroy(), so don't allocate here.
3989
+ */
3990
+
3991
+ yyg->yy_buffer_stack = NULL;
3992
+ yyg->yy_buffer_stack_top = 0;
3993
+ yyg->yy_buffer_stack_max = 0;
3994
+ yyg->yy_c_buf_p = NULL;
3995
+ yyg->yy_init = 0;
3996
+ yyg->yy_start = 0;
3997
+
3998
+ yyg->yy_start_stack_ptr = 0;
3999
+ yyg->yy_start_stack_depth = 0;
4000
+ yyg->yy_start_stack = NULL;
4001
+
4002
+ /* Defined in main.c */
4003
+ #ifdef YY_STDINIT
4004
+ yyin = stdin;
4005
+ yyout = stdout;
4006
+ #else
4007
+ yyin = NULL;
4008
+ yyout = NULL;
4009
+ #endif
4010
+
4011
+ /* For future reference: Set errno on error, since we are called by
4012
+ * yylex_init()
4013
+ */
4014
+ return 0;
4015
+ }
4016
+
4017
+ /* yylex_destroy is for both reentrant and non-reentrant scanners. */
4018
+ int yylex_destroy (yyscan_t yyscanner)
4019
+ {
4020
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
4021
+
4022
+ /* Pop the buffer stack, destroying each element. */
4023
+ while(YY_CURRENT_BUFFER){
4024
+ yy_delete_buffer( YY_CURRENT_BUFFER , yyscanner );
4025
+ YY_CURRENT_BUFFER_LVALUE = NULL;
4026
+ yypop_buffer_state(yyscanner);
4027
+ }
4028
+
4029
+ /* Destroy the stack itself. */
4030
+ yyfree(yyg->yy_buffer_stack , yyscanner);
4031
+ yyg->yy_buffer_stack = NULL;
4032
+
4033
+ /* Destroy the start condition stack. */
4034
+ yyfree( yyg->yy_start_stack , yyscanner );
4035
+ yyg->yy_start_stack = NULL;
4036
+
4037
+ /* Reset the globals. This is important in a non-reentrant scanner so the next time
4038
+ * yylex() is called, initialization will occur. */
4039
+ yy_init_globals( yyscanner);
4040
+
4041
+ /* Destroy the main struct (reentrant only). */
4042
+ yyfree ( yyscanner , yyscanner );
4043
+ yyscanner = NULL;
4044
+ return 0;
4045
+ }
4046
+
4047
+ /*
4048
+ * Internal utility routines.
4049
+ */
4050
+
4051
+ #ifndef yytext_ptr
4052
+ static void yy_flex_strncpy (char* s1, const char * s2, int n , yyscan_t yyscanner)
4053
+ {
4054
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
4055
+ (void)yyg;
4056
+
4057
+ int i;
4058
+ for ( i = 0; i < n; ++i )
4059
+ s1[i] = s2[i];
4060
+ }
4061
+ #endif
4062
+
4063
+ #ifdef YY_NEED_STRLEN
4064
+ static int yy_flex_strlen (const char * s , yyscan_t yyscanner)
4065
+ {
4066
+ int n;
4067
+ for ( n = 0; s[n]; ++n )
4068
+ ;
4069
+
4070
+ return n;
4071
+ }
4072
+ #endif
4073
+
4074
+ void *yyalloc (yy_size_t size , yyscan_t yyscanner)
4075
+ {
4076
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
4077
+ (void)yyg;
4078
+ return malloc(size);
4079
+ }
4080
+
4081
+ void *yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner)
4082
+ {
4083
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
4084
+ (void)yyg;
4085
+
4086
+ /* The cast to (char *) in the following accommodates both
4087
+ * implementations that use char* generic pointers, and those
4088
+ * that use void* generic pointers. It works with the latter
4089
+ * because both ANSI C and C++ allow castless assignment from
4090
+ * any pointer type to void*, and deal with argument conversions
4091
+ * as though doing an assignment.
4092
+ */
4093
+ return realloc(ptr, size);
4094
+ }
4095
+
4096
+ void yyfree (void * ptr , yyscan_t yyscanner)
4097
+ {
4098
+ struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
4099
+ (void)yyg;
4100
+ free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
4101
+ }
4102
+
4103
+ #define YYTABLES_NAME "yytables"
4104
+