-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyatgLexer.cpp
10737 lines (9490 loc) · 447 KB
/
yatgLexer.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/** \file
* This C source file was generated by $ANTLR version 3.2 Sep 23, 2009 12:02:23
*
* - From the grammar source file : C:\\Zlang\\src\\Zzparser\\Grammar\\yatg.g
* - On : 2010-07-07 17:24:03
* - for the lexer : yatgLexerLexer *
* Editing it, at least manually, is not wise.
*
* C language generator and runtime by Jim Idle, jimi|hereisanat|idle|dotgoeshere|ws.
*
*
*/
// [The "BSD licence"]
// Copyright (c) 2005-2009 Jim Idle, Temporal Wave LLC
// http://www.temporal-wave.com
// http://www.linkedin.com/in/jimidle
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// 3. The name of the author may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
// IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
// NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/* -----------------------------------------
* Include the ANTLR3 generated header file.
*/
#include "yatgLexer.h"
/* ----------------------------------------- */
/** String literals used by yatgLexer that we must do things like MATCHS() with.
* C will normally just lay down 8 bit characters, and you can use L"xxx" to
* get wchar_t, but wchar_t is 16 bits on Windows, which is not UTF32 and so
* we perform this little trick of defining the literals as arrays of UINT32
* and passing in the address of these.
*/
static ANTLR3_UCHAR lit_1[] = { 0x6C, 0x6F, 0x63, 0x61, 0x6C, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_2[] = { 0x67, 0x6C, 0x6F, 0x62, 0x61, 0x6C, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_3[] = { 0x69, 0x66, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_4[] = { 0x74, 0x68, 0x65, 0x6E, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_5[] = { 0x64, 0x6F, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_6[] = { 0x65, 0x6C, 0x73, 0x65, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_7[] = { 0x77, 0x68, 0x69, 0x6C, 0x65, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_8[] = { 0x66, 0x6F, 0x72, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_9[] = { 0x69, 0x6E, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_10[] = { 0x63, 0x6F, 0x6C, 0x6C, 0x65, 0x63, 0x74, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_11[] = { 0x74, 0x6F, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_12[] = { 0x62, 0x79, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_13[] = { 0x77, 0x68, 0x65, 0x72, 0x65, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_14[] = { 0x65, 0x78, 0x69, 0x74, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_15[] = { 0x77, 0x69, 0x74, 0x68, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_16[] = { 0x63, 0x61, 0x73, 0x65, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_17[] = { 0x6F, 0x66, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_18[] = { 0x64, 0x65, 0x66, 0x61, 0x75, 0x6C, 0x74, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_19[] = { 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_20[] = { 0x74, 0x72, 0x79, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_21[] = { 0x6D, 0x61, 0x70, 0x70, 0x65, 0x64, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_22[] = { 0x66, 0x75, 0x6E, 0x63, 0x74, 0x69, 0x6F, 0x6E, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_23[] = { 0x66, 0x6E, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_24[] = { 0x72, 0x65, 0x74, 0x75, 0x72, 0x6E, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_25[] = { 0x61, 0x6E, 0x69, 0x6D, 0x61, 0x74, 0x65, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_26[] = { 0x61, 0x74, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_27[] = { 0x6C, 0x65, 0x76, 0x65, 0x6C, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_28[] = { 0x74, 0x69, 0x6D, 0x65, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_29[] = { 0x63, 0x6F, 0x6F, 0x72, 0x64, 0x73, 0x79, 0x73, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_30[] = { 0x77, 0x6F, 0x72, 0x6C, 0x64, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_31[] = { 0x70, 0x61, 0x72, 0x65, 0x6E, 0x74, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_32[] = { 0x61, 0x62, 0x6F, 0x75, 0x74, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_33[] = { 0x70, 0x69, 0x76, 0x6F, 0x74, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_34[] = { 0x73, 0x65, 0x6C, 0x65, 0x63, 0x74, 0x69, 0x6F, 0x6E, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_35[] = { 0x75, 0x6E, 0x64, 0x6F, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_36[] = { 0x73, 0x65, 0x74, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_37[] = { 0x74, 0x72, 0x75, 0x65, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_38[] = { 0x66, 0x61, 0x6C, 0x73, 0x65, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_39[] = { 0x6F, 0x6E, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_40[] = { 0x6F, 0x66, 0x66, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_41[] = { 0x6F, 0x6B, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_42[] = { 0x75, 0x6E, 0x64, 0x65, 0x66, 0x69, 0x6E, 0x65, 0x64, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_43[] = { 0x75, 0x6E, 0x73, 0x75, 0x70, 0x70, 0x6C, 0x69, 0x65, 0x64, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_44[] = { 0x7C, 0x7C, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_45[] = { 0x26, 0x26, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_46[] = { 0x3D, 0x3D, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_47[] = { 0x21, 0x3D, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_48[] = { 0x3C, 0x3D, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_49[] = { 0x3E, 0x3D, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_50[] = { 0x2A, 0x3D, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_51[] = { 0x2F, 0x3D, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_52[] = { 0x25, 0x3D, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_53[] = { 0x2B, 0x3D, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_54[] = { 0x2D, 0x3D, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_55[] = { 0x2E, 0x2E, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_56[] = { 0x63, 0x6F, 0x6E, 0x74, 0x69, 0x6E, 0x75, 0x65, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_57[] = { 0x63, 0x61, 0x74, 0x63, 0x68, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_58[] = { 0x2F, 0x2A, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_59[] = { 0x2A, 0x2F, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_60[] = { 0x2F, 0x2F, ANTLR3_STRING_TERMINATOR};
static ANTLR3_UCHAR lit_61[] = { 0x2D, 0x2D, ANTLR3_STRING_TERMINATOR};
/* MACROS that hide the C interface implementations from the
* generated code, which makes it a little more understandable to the human eye.
* I am very much against using C pre-processor macros for function calls and bits
* of code as you cannot see what is happening when single stepping in debuggers
* and so on. The exception (in my book at least) is for generated code, where you are
* not maintaining it, but may wish to read and understand it. If you single step it, you know that input()
* hides some indirect calls, but is always referring to the input stream. This is
* probably more readable than ctx->input->istream->input(snarfle0->blarg) and allows me to rejig
* the runtime interfaces without changing the generated code too often, without
* confusing the reader of the generated output, who may not wish to know the gory
* details of the interface inheritance.
*/
#define CTX ctx
/* Aids in accessing scopes for grammar programmers
*/
#undef SCOPE_TYPE
#undef SCOPE_STACK
#undef SCOPE_TOP
#define SCOPE_TYPE(scope) pyatgLexer_##scope##_SCOPE
#define SCOPE_STACK(scope) pyatgLexer_##scope##Stack
#define SCOPE_TOP(scope) ctx->pyatgLexer_##scope##Top
#define SCOPE_SIZE(scope) ctx->pyatgLexer_##scope##Stack_limit
#define SCOPE_INSTANCE(scope, i) (ctx->SCOPE_STACK(scope)->get(ctx->SCOPE_STACK(scope),i))
/* Macros for accessing things in a lexer
*/
#undef LEXER
#undef RECOGNIZER
#undef RULEMEMO
#undef GETCHARINDEX
#undef GETLINE
#undef GETCHARPOSITIONINLINE
#undef EMIT
#undef EMITNEW
#undef MATCHC
#undef MATCHS
#undef MATCHRANGE
#undef LTOKEN
#undef HASFAILED
#undef FAILEDFLAG
#undef INPUT
#undef STRSTREAM
#undef LA
#undef HASEXCEPTION
#undef EXCEPTION
#undef CONSTRUCTEX
#undef CONSUME
#undef LRECOVER
#undef MARK
#undef REWIND
#undef REWINDLAST
#undef BACKTRACKING
#undef MATCHANY
#undef MEMOIZE
#undef HAVEPARSEDRULE
#undef GETTEXT
#undef INDEX
#undef SEEK
#undef PUSHSTREAM
#undef POPSTREAM
#undef SETTEXT
#undef SETTEXT8
#define LEXER ctx->pLexer
#define RECOGNIZER LEXER->rec
#define LEXSTATE RECOGNIZER->state
#define TOKSOURCE LEXSTATE->tokSource
#define GETCHARINDEX() LEXER->getCharIndex(LEXER)
#define GETLINE() LEXER->getLine(LEXER)
#define GETTEXT() LEXER->getText(LEXER)
#define GETCHARPOSITIONINLINE() LEXER->getCharPositionInLine(LEXER)
#define EMIT() LEXSTATE->type = _type; LEXER->emit(LEXER)
#define EMITNEW(t) LEXER->emitNew(LEXER, t)
#define MATCHC(c) LEXER->matchc(LEXER, c)
#define MATCHS(s) LEXER->matchs(LEXER, s)
#define MATCHRANGE(c1,c2) LEXER->matchRange(LEXER, c1, c2)
#define MATCHANY() LEXER->matchAny(LEXER)
#define LTOKEN LEXSTATE->token
#define HASFAILED() (LEXSTATE->failed == ANTLR3_TRUE)
#define BACKTRACKING LEXSTATE->backtracking
#define FAILEDFLAG LEXSTATE->failed
#define INPUT LEXER->input
#define STRSTREAM INPUT
#define ISTREAM INPUT->istream
#define INDEX() ISTREAM->index(ISTREAM)
#define SEEK(n) ISTREAM->seek(ISTREAM, n)
#define EOF_TOKEN &(LEXSTATE->tokSource->eofToken)
#define HASEXCEPTION() (LEXSTATE->error == ANTLR3_TRUE)
#define EXCEPTION LEXSTATE->exception
#define CONSTRUCTEX() RECOGNIZER->exConstruct(RECOGNIZER)
#define LRECOVER() LEXER->recover(LEXER)
#define MARK() ISTREAM->mark(ISTREAM)
#define REWIND(m) ISTREAM->rewind(ISTREAM, m)
#define REWINDLAST() ISTREAM->rewindLast(ISTREAM)
#define MEMOIZE(ri,si) RECOGNIZER->memoize(RECOGNIZER, ri, si)
#define HAVEPARSEDRULE(r) RECOGNIZER->alreadyParsedRule(RECOGNIZER, r)
#define PUSHSTREAM(str) LEXER->pushCharStream(LEXER, str)
#define POPSTREAM() LEXER->popCharStream(LEXER)
#define SETTEXT(str) LEXSTATE->text = str
#define SKIP() LEXSTATE->token = &(TOKSOURCE->skipToken)
#define USER1 LEXSTATE->user1
#define USER2 LEXSTATE->user2
#define USER3 LEXSTATE->user3
#define CUSTOM LEXSTATE->custom
#define RULEMEMO LEXSTATE->ruleMemo
#define DBG RECOGNIZER->debugger
/* If we have been told we can rely on the standard 8 bit or 16 bit input
* stream, then we can define our macros to use the direct pointers
* in the input object, which is much faster than indirect calls. This
* is really only significant to lexers with a lot of fragment rules (which
* do not place LA(1) in a temporary at the moment) and even then
* only if there is a lot of input (order of say 1M or so).
*/
#if defined(ANTLR3_INLINE_INPUT_ASCII) || defined(ANTLR3_INLINE_INPUT_UTF16)
# ifdef ANTLR3_INLINE_INPUT_ASCII
/* 8 bit "ASCII" (actually any 8 bit character set) */
# define NEXTCHAR ((pANTLR3_UINT8)(INPUT->nextChar))
# define DATAP ((pANTLR3_UINT8)(INPUT->data))
# else
# define NEXTCHAR ((pANTLR3_UINT16)(INPUT->nextChar))
# define DATAP ((pANTLR3_UINT16)(INPUT->data))
# endif
# define LA(n) ((NEXTCHAR + n) > (DATAP + INPUT->sizeBuf) ? ANTLR3_CHARSTREAM_EOF : (ANTLR3_UCHAR)(*(NEXTCHAR + n - 1)))
# define CONSUME() \
{ \
if (NEXTCHAR < (DATAP + INPUT->sizeBuf)) \
{ \
INPUT->charPositionInLine++; \
if ((ANTLR3_UCHAR)(*NEXTCHAR) == INPUT->newlineChar) \
{ \
INPUT->line++; \
INPUT->charPositionInLine = 0; \
INPUT->currentLine = (void *)(NEXTCHAR + 1); \
} \
INPUT->nextChar = (void *)(NEXTCHAR + 1); \
} \
}
#else
// Pick up the input character by calling the input stream implementation.
//
#define CONSUME() INPUT->istream->consume(INPUT->istream)
#define LA(n) INPUT->istream->_LA(INPUT->istream, n)
#endif
#define TOKTEXT(tok, txt) tok, (pANTLR3_UINT8)txt
/* The 4 tokens defined below may well clash with your own #defines or token types. If so
* then for the present you must use different names for your defines as these are hard coded
* in the code generator. It would be better not to use such names internally, and maybe
* we can change this in a forthcoming release. I deliberately do not #undef these
* here as this will at least give you a redefined error somewhere if they clash.
*/
#define UP ANTLR3_TOKEN_UP
#define DOWN ANTLR3_TOKEN_DOWN
#define EOR ANTLR3_TOKEN_EOR
#define INVALID ANTLR3_TOKEN_INVALID
/* =============================================================================
* Functions to create and destroy scopes. First come the rule scopes, followed
* by the global declared scopes.
*/
/* ============================================================================= */
/* =============================================================================
* Start of recognizer
*/
/* Forward declare the locally static matching functions we have generated and any predicate functions.
*/
static ANTLR3_INLINE void mSTRING_LITERIAL (pyatgLexer ctx);
static ANTLR3_INLINE void mEscapeSequence (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_COMMA (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_LOCAL (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_GLOBAL (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_EQUAL (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_IF (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_THEN (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_DO (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_ELSE (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_WHILE (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_FOR (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_IN (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_COLLECT (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_TO (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_BY (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_WHERE (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_EXIT (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_WITH (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_CASE (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_OF (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_OPAREN (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_CPAREN (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_COLON (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_DEFAULT (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_STRUCT (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_TRY (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_MAPPED (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_FUNCTION (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_FN (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_RETURN (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_ANIMATE (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_AT (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_LEVEL (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_TIME (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_COORDSYS (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_WORLD (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_PARENT (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_ABOUT (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_PIVOT (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_SELECTION (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_UNDO (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_SET (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_PLUS (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_MINUS (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_STAR (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_FSLASH (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_PERCENT (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_OBRACKET (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_CBRACKET (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_HASH (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_TRUE (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_FALSE (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_ON (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_OFF (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_OK (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_UNDEFINED (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_UNSUPPLIED (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_D_BAR (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_D_AMP (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_D_EQUAL (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_EXC_EQUAL (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_LT (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_GT (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_LT_EQUAL (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_GT_EQUAL (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_STAR_EQUAL (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_FSLASH_EQUAL (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_PERCENT_EQUAL (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_PLUS_EQUAL (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_MINUS_EQUAL (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_DQUOTE (pyatgLexer ctx);
static ANTLR3_INLINE void mESQ_FSLASH_SQUOTE (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_OCBRACKET (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_CCBRACKET (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_D_DOT (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_CONTINUE (pyatgLexer ctx);
static ANTLR3_INLINE void mKW_CATCH (pyatgLexer ctx);
static ANTLR3_INLINE void mSS_DOT (pyatgLexer ctx);
static ANTLR3_INLINE void mIDENTIFIER (pyatgLexer ctx);
static ANTLR3_INLINE void mLETTER (pyatgLexer ctx);
static ANTLR3_INLINE void mDIGIT (pyatgLexer ctx);
static ANTLR3_INLINE void mDIGIT1 (pyatgLexer ctx);
static ANTLR3_INLINE void mHEX_LITERAL (pyatgLexer ctx);
static ANTLR3_INLINE void mHexDigit (pyatgLexer ctx);
static ANTLR3_INLINE void mWS (pyatgLexer ctx);
static ANTLR3_INLINE void mEOL (pyatgLexer ctx);
static ANTLR3_INLINE void mCOMMENT (pyatgLexer ctx);
static ANTLR3_INLINE void mLINE_COMMENT (pyatgLexer ctx);
static ANTLR3_INLINE void mREF_OP (pyatgLexer ctx);
static ANTLR3_INLINE void mTokens (pyatgLexer ctx);
static void yatgLexerFree(pyatgLexer ctx);
/* =========================================================================
* Lexer matching rules end.
* =========================================================================
*/
static void
yatgLexerFree (pyatgLexer ctx)
{
LEXER->free(LEXER);
ANTLR3_FREE(ctx);
}
/** \brief Name of the grammar file that generated this code
*/
static const char fileName[] = "C:\\Zlang\\src\\Zzparser\\Grammar\\yatg.g";
/** \brief Return the name of the grammar file that generated this code.
*/
static const char * getGrammarFileName()
{
return fileName;
}
/** \brief Create a new lexer called yatgLexer
*
* \param[in] instream Pointer to an initialized input stream
* \return
* - Success pyatgLexer initialized for the lex start
* - Fail NULL
*/
ANTLR3_API pyatgLexer yatgLexerNew
(pANTLR3_INPUT_STREAM instream)
{
// See if we can create a new lexer with the standard constructor
//
return yatgLexerNewSSD(instream, NULL);
}
/** \brief Create a new lexer called yatgLexer
*
* \param[in] instream Pointer to an initialized input stream
* \param[state] state Previously created shared recognizer stat
* \return
* - Success pyatgLexer initialized for the lex start
* - Fail NULL
*/
ANTLR3_API pyatgLexer yatgLexerNewSSD
(pANTLR3_INPUT_STREAM instream, pANTLR3_RECOGNIZER_SHARED_STATE state)
{
pyatgLexer ctx; // Context structure we will build and return
ctx = (pyatgLexer) ANTLR3_CALLOC(1, sizeof(yatgLexer));
if (ctx == NULL)
{
// Failed to allocate memory for lexer context
return NULL;
}
/* -------------------------------------------------------------------
* Memory for basic structure is allocated, now to fill in
* in base ANTLR3 structures. We initialize the function pointers
* for the standard ANTLR3 lexer function set, but upon return
* from here, the programmer may set the pointers to provide custom
* implementations of each function.
*
* We don't use the macros defined in yatgLexer.h here so you can get a sense
* of what goes where.
*/
/* Create a base lexer, using the supplied input stream
*/
ctx->pLexer = antlr3LexerNewStream(ANTLR3_SIZE_HINT, instream, state);
/* Check that we allocated the memory correctly
*/
if (ctx->pLexer == NULL)
{
ANTLR3_FREE(ctx);
return NULL;
}
/* Install the implementation of our yatgLexer interface
*/
ctx->mSTRING_LITERIAL = mSTRING_LITERIAL;
ctx->mEscapeSequence = mEscapeSequence;
ctx->mSS_COMMA = mSS_COMMA;
ctx->mKW_LOCAL = mKW_LOCAL;
ctx->mKW_GLOBAL = mKW_GLOBAL;
ctx->mSS_EQUAL = mSS_EQUAL;
ctx->mKW_IF = mKW_IF;
ctx->mKW_THEN = mKW_THEN;
ctx->mKW_DO = mKW_DO;
ctx->mKW_ELSE = mKW_ELSE;
ctx->mKW_WHILE = mKW_WHILE;
ctx->mKW_FOR = mKW_FOR;
ctx->mKW_IN = mKW_IN;
ctx->mKW_COLLECT = mKW_COLLECT;
ctx->mKW_TO = mKW_TO;
ctx->mKW_BY = mKW_BY;
ctx->mKW_WHERE = mKW_WHERE;
ctx->mKW_EXIT = mKW_EXIT;
ctx->mKW_WITH = mKW_WITH;
ctx->mKW_CASE = mKW_CASE;
ctx->mKW_OF = mKW_OF;
ctx->mSS_OPAREN = mSS_OPAREN;
ctx->mSS_CPAREN = mSS_CPAREN;
ctx->mSS_COLON = mSS_COLON;
ctx->mKW_DEFAULT = mKW_DEFAULT;
ctx->mKW_STRUCT = mKW_STRUCT;
ctx->mKW_TRY = mKW_TRY;
ctx->mKW_MAPPED = mKW_MAPPED;
ctx->mKW_FUNCTION = mKW_FUNCTION;
ctx->mKW_FN = mKW_FN;
ctx->mKW_RETURN = mKW_RETURN;
ctx->mKW_ANIMATE = mKW_ANIMATE;
ctx->mKW_AT = mKW_AT;
ctx->mKW_LEVEL = mKW_LEVEL;
ctx->mKW_TIME = mKW_TIME;
ctx->mKW_COORDSYS = mKW_COORDSYS;
ctx->mKW_WORLD = mKW_WORLD;
ctx->mKW_PARENT = mKW_PARENT;
ctx->mKW_ABOUT = mKW_ABOUT;
ctx->mKW_PIVOT = mKW_PIVOT;
ctx->mKW_SELECTION = mKW_SELECTION;
ctx->mKW_UNDO = mKW_UNDO;
ctx->mKW_SET = mKW_SET;
ctx->mSS_PLUS = mSS_PLUS;
ctx->mSS_MINUS = mSS_MINUS;
ctx->mSS_STAR = mSS_STAR;
ctx->mSS_FSLASH = mSS_FSLASH;
ctx->mSS_PERCENT = mSS_PERCENT;
ctx->mSS_OBRACKET = mSS_OBRACKET;
ctx->mSS_CBRACKET = mSS_CBRACKET;
ctx->mSS_HASH = mSS_HASH;
ctx->mKW_TRUE = mKW_TRUE;
ctx->mKW_FALSE = mKW_FALSE;
ctx->mKW_ON = mKW_ON;
ctx->mKW_OFF = mKW_OFF;
ctx->mKW_OK = mKW_OK;
ctx->mKW_UNDEFINED = mKW_UNDEFINED;
ctx->mKW_UNSUPPLIED = mKW_UNSUPPLIED;
ctx->mSS_D_BAR = mSS_D_BAR;
ctx->mSS_D_AMP = mSS_D_AMP;
ctx->mSS_D_EQUAL = mSS_D_EQUAL;
ctx->mSS_EXC_EQUAL = mSS_EXC_EQUAL;
ctx->mSS_LT = mSS_LT;
ctx->mSS_GT = mSS_GT;
ctx->mSS_LT_EQUAL = mSS_LT_EQUAL;
ctx->mSS_GT_EQUAL = mSS_GT_EQUAL;
ctx->mSS_STAR_EQUAL = mSS_STAR_EQUAL;
ctx->mSS_FSLASH_EQUAL = mSS_FSLASH_EQUAL;
ctx->mSS_PERCENT_EQUAL = mSS_PERCENT_EQUAL;
ctx->mSS_PLUS_EQUAL = mSS_PLUS_EQUAL;
ctx->mSS_MINUS_EQUAL = mSS_MINUS_EQUAL;
ctx->mSS_DQUOTE = mSS_DQUOTE;
ctx->mESQ_FSLASH_SQUOTE = mESQ_FSLASH_SQUOTE;
ctx->mSS_OCBRACKET = mSS_OCBRACKET;
ctx->mSS_CCBRACKET = mSS_CCBRACKET;
ctx->mSS_D_DOT = mSS_D_DOT;
ctx->mKW_CONTINUE = mKW_CONTINUE;
ctx->mKW_CATCH = mKW_CATCH;
ctx->mSS_DOT = mSS_DOT;
ctx->mIDENTIFIER = mIDENTIFIER;
ctx->mLETTER = mLETTER;
ctx->mDIGIT = mDIGIT;
ctx->mDIGIT1 = mDIGIT1;
ctx->mHEX_LITERAL = mHEX_LITERAL;
ctx->mHexDigit = mHexDigit;
ctx->mWS = mWS;
ctx->mEOL = mEOL;
ctx->mCOMMENT = mCOMMENT;
ctx->mLINE_COMMENT = mLINE_COMMENT;
ctx->mREF_OP = mREF_OP;
ctx->mTokens = mTokens;
/** When the nextToken() call is made to this lexer's pANTLR3_TOKEN_SOURCE
* it will call mTokens() in this generated code, and will pass it the ctx
* pointer of this lexer, not the context of the base lexer, so store that now.
*/
ctx->pLexer->ctx = ctx;
/**Install the token matching function
*/
ctx->pLexer->mTokens = (void (*) (void *))(mTokens);
ctx->getGrammarFileName = getGrammarFileName;
ctx->free = yatgLexerFree;
/* Return the newly built lexer to the caller
*/
return ctx;
}
/* =========================================================================
* DFA tables for the lexer
*/
/** Static dfa state tables for Cyclic dfa:
* 1:1: Tokens : ( STRING_LITERIAL | SS_COMMA | KW_LOCAL | KW_GLOBAL | SS_EQUAL | KW_IF | KW_THEN | KW_DO | KW_ELSE | KW_WHILE | KW_FOR | KW_IN | KW_COLLECT | KW_TO | KW_BY | KW_WHERE | KW_EXIT | KW_WITH | KW_CASE | KW_OF | SS_OPAREN | SS_CPAREN | SS_COLON | KW_DEFAULT | KW_STRUCT | KW_TRY | KW_MAPPED | KW_FUNCTION | KW_FN | KW_RETURN | KW_ANIMATE | KW_AT | KW_LEVEL | KW_TIME | KW_COORDSYS | KW_WORLD | KW_PARENT | KW_ABOUT | KW_PIVOT | KW_SELECTION | KW_UNDO | KW_SET | SS_PLUS | SS_MINUS | SS_STAR | SS_FSLASH | SS_PERCENT | SS_OBRACKET | SS_CBRACKET | SS_HASH | KW_TRUE | KW_FALSE | KW_ON | KW_OFF | KW_OK | KW_UNDEFINED | KW_UNSUPPLIED | SS_D_BAR | SS_D_AMP | SS_D_EQUAL | SS_EXC_EQUAL | SS_LT | SS_GT | SS_LT_EQUAL | SS_GT_EQUAL | SS_STAR_EQUAL | SS_FSLASH_EQUAL | SS_PERCENT_EQUAL | SS_PLUS_EQUAL | SS_MINUS_EQUAL | SS_DQUOTE | ESQ_FSLASH_SQUOTE | SS_OCBRACKET | SS_CCBRACKET | SS_D_DOT | KW_CONTINUE | KW_CATCH | SS_DOT | IDENTIFIER | DIGIT | DIGIT1 | HEX_LITERAL | WS | EOL | COMMENT | LINE_COMMENT | REF_OP );
*/
static const ANTLR3_INT32 dfa13_eot[275] =
{
-1, 47, -1, 41, 41, 52, 41, 41, 41, 41, 41, 41, 41, 41, 41, -1, -1, -1,
41, 41, 41, 41, 41, 41, 87, 90, 92, 95, 97, -1, -1, -1, -1, 99, -1, 101,
103, -1, -1, -1, 106, -1, 108, 108, -1, -1, -1, -1, 41, 41, 41, -1, -1,
112, 113, 41, 115, 41, 41, 119, 41, 41, 41, 41, 41, 41, 41, 41, 129, 41,
41, 41, 136, 138, 139, 140, 41, 41, 41, 41, 41, 147, 41, 41, 41, 41, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 41, 41, 41, -1, -1, 41, -1, 157, 41, 41, -1, 41, 41, 41,
41, 41, 41, 41, 167, 41, -1, 41, 41, 41, 41, 41, 41, -1, 175, -1, -1, -1,
41, 41, 178, 41, 41, 41, -1, 41, 41, 41, 41, 41, 41, 41, 41, 191, -1, 192,
193, 41, 195, 196, 41, 41, 199, 41, -1, 41, 41, 41, 41, 41, 206, 41, -1,
41, 41, -1, 41, 41, 41, 41, 41, 41, 216, 41, 41, 219, 220, 41, -1, -1,
-1, 41, -1, -1, 223, 224, -1, 225, 41, 227, 41, 41, 41, -1, 231, 41, 41,
41, 41, 41, 237, 41, 239, -1, 41, 41, -1, -1, 242, 41, -1, -1, -1, 41,
-1, 41, 41, 41, -1, 248, 41, 250, 251, 41, -1, 253, -1, 41, 41, -1, 256,
41, 258, 41, 41, -1, 41, -1, -1, 262, -1, 41, 41, -1, 265, -1, 266, 267,
41, -1, 41, 41, -1, -1, -1, 271, 272, 41, -1, -1, 274, -1
};
static const ANTLR3_INT32 dfa13_eof[275] =
{
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1
};
static const ANTLR3_INT32 dfa13_min[275] =
{
9, 0, -1, 101, 108, 61, 102, 104, 101, 108, 104, 97, 97, 121, 102, -1,
-1, -1, 101, 97, 101, 98, 97, 110, 61, 45, 61, 42, 61, -1, -1, -1, -1,
38, -1, 61, 61, -1, -1, -1, 46, -1, 46, 46, -1, -1, -1, -1, 99, 118, 111,
-1, -1, 36, 36, 101, 36, 117, 109, 36, 102, 115, 105, 101, 116, 114, 114,
110, 36, 108, 108, 115, 36, 36, 36, 36, 114, 108, 112, 116, 105, 36, 111,
114, 118, 100, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 97, 101, 98, -1, -1, 110, -1, 36, 101,
101, -1, 97, 101, 116, 108, 114, 104, 108, 36, 99, -1, 115, 108, 114, 116,
101, 99, -1, 36, -1, -1, -1, 117, 101, 36, 112, 117, 109, -1, 117, 101,
111, 101, 117, 108, 108, 97, 36, -1, 36, 36, 117, 36, 36, 101, 101, 36,
100, -1, 116, 101, 101, 100, 105, 36, 104, -1, 99, 99, -1, 101, 114, 97,
116, 110, 116, 36, 102, 112, 36, 36, 108, -1, -1, -1, 108, -1, -1, 36,
36, -1, 36, 105, 36, 99, 115, 110, -1, 36, 116, 116, 100, 110, 116, 36,
116, 36, -1, 105, 112, -1, -1, 36, 116, -1, -1, -1, 111, -1, 116, 121,
117, -1, 36, 105, 36, 36, 101, -1, 36, -1, 110, 108, -1, 36, 110, 36, 115,
101, -1, 111, -1, -1, 36, -1, 101, 105, -1, 36, -1, 36, 36, 110, -1, 100,
101, -1, -1, -1, 36, 36, 100, -1, -1, 36, -1
};
static const ANTLR3_INT32 dfa13_max[275] =
{
125, 65535, -1, 111, 108, 61, 110, 114, 111, 120, 111, 117, 111, 121,
110, -1, -1, -1, 116, 97, 101, 116, 105, 110, 61, 61, 61, 61, 61, -1, -1,
-1, -1, 38, -1, 61, 61, -1, -1, -1, 57, -1, 120, 57, -1, -1, -1, -1, 99,
118, 111, -1, -1, 122, 122, 101, 122, 121, 109, 122, 102, 115, 105, 105,
116, 114, 114, 110, 122, 108, 111, 116, 122, 122, 122, 122, 114, 116, 112,
116, 105, 122, 111, 114, 118, 115, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 97, 101, 98, -1,
-1, 110, -1, 122, 101, 101, -1, 97, 101, 116, 108, 114, 104, 108, 122,
99, -1, 115, 108, 114, 116, 101, 99, -1, 122, -1, -1, -1, 117, 101, 122,
112, 117, 109, -1, 117, 101, 111, 111, 117, 108, 108, 97, 122, -1, 122,
122, 117, 122, 122, 101, 101, 122, 100, -1, 116, 101, 101, 100, 105, 122,
104, -1, 99, 99, -1, 101, 114, 97, 116, 110, 116, 122, 102, 112, 122, 122,
108, -1, -1, -1, 108, -1, -1, 122, 122, -1, 122, 105, 122, 99, 115, 110,
-1, 122, 116, 116, 100, 110, 116, 122, 116, 122, -1, 105, 112, -1, -1,
122, 116, -1, -1, -1, 111, -1, 116, 121, 117, -1, 122, 105, 122, 122, 101,
-1, 122, -1, 110, 108, -1, 122, 110, 122, 115, 101, -1, 111, -1, -1, 122,
-1, 101, 105, -1, 122, -1, 122, 122, 110, -1, 100, 101, -1, -1, -1, 122,
122, 100, -1, -1, 122, -1
};
static const ANTLR3_INT32 dfa13_accept[275] =
{
-1, -1, 2, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 21, 22, 23,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 48, 49, 50, 58, -1, 61, -1,
-1, 72, 73, 74, -1, 79, -1, -1, 83, 84, 1, 71, -1, -1, -1, 60, 5, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, 43, 70, 86, 44,
66, 45, 67, 85, 46, 68, 47, 59, 87, 64, 62, 65, 63, 75, 81, 78, 82, 80,
-1, -1, -1, 6, 12, -1, 14, -1, -1, -1, 8, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 29, -1, -1, -1, -1, -1, -1, 15, -1, 20, 53, 55, -1, -1, -1, -1, -1,
-1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, 26, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 11, -1, -1, -1, -1, -1, -1, -1, 54, -1, -1, 42, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 7, 51, 34, -1, 9, 17, -1, -1, 18, -1,
-1, -1, -1, -1, -1, 19, -1, -1, -1, -1, -1, -1, -1, -1, -1, 41, -1, -1,
3, 33, -1, -1, 10, 16, 36, -1, 52, -1, -1, -1, 77, -1, -1, -1, -1, -1,
38, -1, 39, -1, -1, 4, -1, -1, -1, -1, -1, 25, -1, 27, 30, -1, 37, -1,
-1, 24, -1, 13, -1, -1, -1, 31, -1, -1, 28, 35, 76, -1, -1, -1, 40, 56,
-1, 57
};
static const ANTLR3_INT32 dfa13_special[275] =
{
-1, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1
};
/** Used when there is no transition table entry for a particular state */
#define dfa13_T_empty NULL
static const ANTLR3_INT32 dfa13_T0[] =
{
170
};static const ANTLR3_INT32 dfa13_T1[] =
{
203
};static const ANTLR3_INT32 dfa13_T2[] =
{
41, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 41, 41, 41, 41, 41, 41,
41, 41, 41, 41, -1, -1, -1, -1, -1, -1, -1, 41, 41, 41, 41, 41, 41, 41,
41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
41, -1, -1, -1, -1, 41, -1, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41
};static const ANTLR3_INT32 dfa13_T3[] =
{
105, -1, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43
};static const ANTLR3_INT32 dfa13_T4[] =
{
86
};static const ANTLR3_INT32 dfa13_T5[] =
{
127
};static const ANTLR3_INT32 dfa13_T6[] =
{
197
};static const ANTLR3_INT32 dfa13_T7[] =
{
163
};static const ANTLR3_INT32 dfa13_T8[] =
{
60, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59
};static const ANTLR3_INT32 dfa13_T9[] =
{
161
};static const ANTLR3_INT32 dfa13_T10[] =
{
121
};static const ANTLR3_INT32 dfa13_T11[] =
{
82, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 80, -1, -1, -1, -1, -1,
81
};static const ANTLR3_INT32 dfa13_T12[] =
{
156
};static const ANTLR3_INT32 dfa13_T13[] =
{
114
};static const ANTLR3_INT32 dfa13_T14[] =
{
91
};static const ANTLR3_INT32 dfa13_T15[] =
{
221
};static const ANTLR3_INT32 dfa13_T16[] =
{
190
};static const ANTLR3_INT32 dfa13_T17[] =
{
155
};static const ANTLR3_INT32 dfa13_T18[] =
{
111
};static const ANTLR3_INT32 dfa13_T19[] =
{
49, -1, -1, -1, -1, -1, -1, -1, -1, -1, 48
};static const ANTLR3_INT32 dfa13_T20[] =
{
41, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 41, 41, 41, 41, 41, 41,
41, 41, 41, 41, -1, -1, -1, -1, -1, -1, -1, 41, 41, 41, 41, 41, 41, 41,
41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
41, -1, -1, -1, -1, 41, -1, 41, 41, 41, 41, 41, 137, 41, 41, 41, 41, 41,
41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41
};static const ANTLR3_INT32 dfa13_T21[] =
{
109
};static const ANTLR3_INT32 dfa13_T22[] =
{
153
};static const ANTLR3_INT32 dfa13_T23[] =
{
53, -1, -1, -1, -1, -1, -1, -1, 54
};static const ANTLR3_INT32 dfa13_T24[] =
{
188
};static const ANTLR3_INT32 dfa13_T25[] =
{
207
};static const ANTLR3_INT32 dfa13_T26[] =
{
174
};static const ANTLR3_INT32 dfa13_T27[] =
{
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,