-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaScriptLexer.py
More file actions
981 lines (930 loc) · 60 KB
/
Copy pathJavaScriptLexer.py
File metadata and controls
981 lines (930 loc) · 60 KB
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
# Generated from JavaScriptLexer.g4 by ANTLR 4.7.1
from antlr4 import *
from io import StringIO
from typing.io import TextIO
import sys
def serializedATN():
with StringIO() as buf:
buf.write("\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2~")
buf.write("\u048c\b\1\4\2\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7")
buf.write("\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13\t\13\4\f\t\f\4\r\t\r")
buf.write("\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22\4\23")
buf.write("\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30")
buf.write("\4\31\t\31\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36")
buf.write("\t\36\4\37\t\37\4 \t \4!\t!\4\"\t\"\4#\t#\4$\t$\4%\t%")
buf.write("\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4,\t,\4-\t-\4.")
buf.write("\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64")
buf.write("\t\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:")
buf.write("\4;\t;\4<\t<\4=\t=\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\t")
buf.write("C\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4I\tI\4J\tJ\4K\tK\4L\t")
buf.write("L\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\tT\4U\t")
buf.write("U\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4")
buf.write("^\t^\4_\t_\4`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\4f\tf\4")
buf.write("g\tg\4h\th\4i\ti\4j\tj\4k\tk\4l\tl\4m\tm\4n\tn\4o\to\4")
buf.write("p\tp\4q\tq\4r\tr\4s\ts\4t\tt\4u\tu\4v\tv\4w\tw\4x\tx\4")
buf.write("y\ty\4z\tz\4{\t{\4|\t|\4}\t}\4~\t~\4\177\t\177\4\u0080")
buf.write("\t\u0080\4\u0081\t\u0081\4\u0082\t\u0082\4\u0083\t\u0083")
buf.write("\4\u0084\t\u0084\4\u0085\t\u0085\4\u0086\t\u0086\4\u0087")
buf.write("\t\u0087\4\u0088\t\u0088\4\u0089\t\u0089\4\u008a\t\u008a")
buf.write("\4\u008b\t\u008b\4\u008c\t\u008c\4\u008d\t\u008d\4\u008e")
buf.write("\t\u008e\4\u008f\t\u008f\4\u0090\t\u0090\4\u0091\t\u0091")
buf.write("\4\u0092\t\u0092\4\u0093\t\u0093\4\u0094\t\u0094\4\u0095")
buf.write("\t\u0095\3\2\3\2\3\2\3\2\3\2\7\2\u0131\n\2\f\2\16\2\u0134")
buf.write("\13\2\3\3\3\3\3\3\3\3\7\3\u013a\n\3\f\3\16\3\u013d\13")
buf.write("\3\3\3\3\3\3\3\3\3\3\3\3\4\3\4\3\4\3\4\7\4\u0148\n\4\f")
buf.write("\4\16\4\u014b\13\4\3\4\3\4\3\5\3\5\3\5\7\5\u0152\n\5\f")
buf.write("\5\16\5\u0155\13\5\3\5\3\5\3\5\7\5\u015a\n\5\f\5\16\5")
buf.write("\u015d\13\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\n\3\n\3")
buf.write("\n\3\13\3\13\3\13\3\f\3\f\3\r\3\r\3\16\3\16\3\17\3\17")
buf.write("\3\20\3\20\3\21\3\21\3\21\3\21\3\22\3\22\3\23\3\23\3\23")
buf.write("\3\24\3\24\3\24\3\25\3\25\3\26\3\26\3\27\3\27\3\30\3\30")
buf.write("\3\31\3\31\3\32\3\32\3\33\3\33\3\34\3\34\3\34\3\35\3\35")
buf.write("\3\35\3\36\3\36\3\37\3\37\3\37\3 \3 \3 \3!\3!\3!\3!\3")
buf.write("\"\3\"\3#\3#\3$\3$\3$\3%\3%\3%\3&\3&\3&\3\'\3\'\3\'\3")
buf.write("(\3(\3(\3(\3)\3)\3)\3)\3*\3*\3+\3+\3,\3,\3-\3-\3-\3.\3")
buf.write(".\3.\3/\3/\3/\3\60\3\60\3\60\3\61\3\61\3\61\3\62\3\62")
buf.write("\3\62\3\63\3\63\3\63\3\64\3\64\3\64\3\64\3\65\3\65\3\65")
buf.write("\3\65\3\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\38\38\3")
buf.write("8\39\39\39\3:\3:\3:\3:\3;\3;\3;\3<\3<\3<\3<\3<\3=\3=\3")
buf.write("=\3=\3=\3=\3=\3=\3=\5=\u0201\n=\3>\3>\3>\3>\7>\u0207\n")
buf.write(">\f>\16>\u020a\13>\3>\5>\u020d\n>\3>\3>\3>\7>\u0212\n")
buf.write(">\f>\16>\u0215\13>\3>\5>\u0218\n>\3>\3>\5>\u021c\n>\5")
buf.write(">\u021e\n>\3?\3?\3?\3?\7?\u0224\n?\f?\16?\u0227\13?\3")
buf.write("@\3@\6@\u022b\n@\r@\16@\u022c\3@\3@\3A\3A\3A\3A\7A\u0235")
buf.write("\nA\fA\16A\u0238\13A\3B\3B\3B\3B\7B\u023e\nB\fB\16B\u0241")
buf.write("\13B\3C\3C\3C\3C\7C\u0247\nC\fC\16C\u024a\13C\3C\3C\3")
buf.write("D\3D\3D\3D\7D\u0252\nD\fD\16D\u0255\13D\3D\3D\3E\3E\3")
buf.write("E\3E\7E\u025d\nE\fE\16E\u0260\13E\3E\3E\3F\3F\3F\3G\3")
buf.write("G\3G\3G\3G\3G\3H\3H\3H\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3")
buf.write("I\3J\3J\3J\3J\3J\3J\3J\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3")
buf.write("M\3M\3M\3M\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3P\3P\3P\3P\3")
buf.write("P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3R\3S\3S\3")
buf.write("S\3S\3S\3S\3S\3S\3S\3T\3T\3T\3T\3U\3U\3U\3U\3U\3U\3U\3")
buf.write("V\3V\3V\3V\3V\3V\3W\3W\3W\3W\3W\3W\3W\3W\3W\3X\3X\3X\3")
buf.write("X\3X\3X\3X\3X\3X\3Y\3Y\3Y\3Y\3Y\3Z\3Z\3Z\3Z\3Z\3[\3[\3")
buf.write("[\3[\3[\3[\3[\3[\3\\\3\\\3\\\3]\3]\3]\3]\3]\3]\3^\3^\3")
buf.write("^\3^\3^\3^\3^\3_\3_\3_\3`\3`\3`\3`\3a\3a\3a\3b\3b\3b\3")
buf.write("b\3b\3c\3c\3c\3c\3c\3c\3d\3d\3d\3d\3d\3e\3e\3e\3e\3e\3")
buf.write("e\3e\3e\3f\3f\3f\3f\3f\3f\3g\3g\3g\3g\3g\3g\3h\3h\3h\3")
buf.write("h\3h\3h\3h\3i\3i\3i\3i\3i\3i\3i\3j\3j\3j\3j\3j\3j\3k\3")
buf.write("k\3k\3k\3k\3k\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3l\3")
buf.write("m\3m\3m\3m\3m\3m\3n\3n\3n\3n\3n\3n\3o\3o\3o\3o\3o\3o\3")
buf.write("o\3o\3o\3o\3p\3p\3p\3p\3p\3p\3p\3p\3p\3q\3q\3q\3q\3q\3")
buf.write("q\3q\3q\3q\3q\3q\3q\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3s\3")
buf.write("s\3s\3s\3s\3s\3s\3s\3s\3s\3s\3s\3t\3t\3t\3t\3t\3t\3t\3")
buf.write("t\3t\3u\3u\3u\3u\3u\3u\3u\3u\3v\3v\7v\u03a5\nv\fv\16v")
buf.write("\u03a8\13v\3w\3w\7w\u03ac\nw\fw\16w\u03af\13w\3w\3w\3")
buf.write("w\7w\u03b4\nw\fw\16w\u03b7\13w\3w\5w\u03ba\nw\3w\3w\3")
buf.write("x\3x\3x\3x\7x\u03c2\nx\fx\16x\u03c5\13x\3x\3x\3y\6y\u03ca")
buf.write("\ny\ry\16y\u03cb\3y\3y\3z\3z\3z\3z\3{\3{\3{\3{\3{\3{\7")
buf.write("{\u03da\n{\f{\16{\u03dd\13{\3{\3{\3{\3{\3{\3{\3|\3|\3")
buf.write("|\3|\3|\3|\3|\3|\3|\3|\3|\7|\u03f0\n|\f|\16|\u03f3\13")
buf.write("|\3|\3|\3|\3|\3|\3|\3}\3}\3}\3}\3~\3~\3~\3~\5~\u0403\n")
buf.write("~\3\177\3\177\3\177\3\177\5\177\u0409\n\177\3\u0080\3")
buf.write("\u0080\3\u0080\3\u0080\3\u0080\5\u0080\u0410\n\u0080\3")
buf.write("\u0081\3\u0081\5\u0081\u0414\n\u0081\3\u0082\3\u0082\3")
buf.write("\u0082\3\u0082\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083")
buf.write("\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083\6\u0083\u0424")
buf.write("\n\u0083\r\u0083\16\u0083\u0425\3\u0083\3\u0083\5\u0083")
buf.write("\u042a\n\u0083\3\u0084\3\u0084\3\u0084\6\u0084\u042f\n")
buf.write("\u0084\r\u0084\16\u0084\u0430\3\u0084\3\u0084\3\u0085")
buf.write("\3\u0085\3\u0086\3\u0086\3\u0087\3\u0087\5\u0087\u043b")
buf.write("\n\u0087\3\u0088\3\u0088\3\u0088\3\u0089\3\u0089\3\u008a")
buf.write("\3\u008a\3\u008a\7\u008a\u0445\n\u008a\f\u008a\16\u008a")
buf.write("\u0448\13\u008a\5\u008a\u044a\n\u008a\3\u008b\3\u008b")
buf.write("\5\u008b\u044e\n\u008b\3\u008b\6\u008b\u0451\n\u008b\r")
buf.write("\u008b\16\u008b\u0452\3\u008c\3\u008c\3\u008c\3\u008c")
buf.write("\3\u008c\5\u008c\u045a\n\u008c\3\u008d\3\u008d\3\u008d")
buf.write("\3\u008d\5\u008d\u0460\n\u008d\3\u008e\5\u008e\u0463\n")
buf.write("\u008e\3\u008f\5\u008f\u0466\n\u008f\3\u0090\5\u0090\u0469")
buf.write("\n\u0090\3\u0091\5\u0091\u046c\n\u0091\3\u0092\3\u0092")
buf.write("\3\u0092\3\u0092\7\u0092\u0472\n\u0092\f\u0092\16\u0092")
buf.write("\u0475\13\u0092\3\u0092\5\u0092\u0478\n\u0092\3\u0093")
buf.write("\3\u0093\3\u0093\3\u0093\7\u0093\u047e\n\u0093\f\u0093")
buf.write("\16\u0093\u0481\13\u0093\3\u0093\5\u0093\u0484\n\u0093")
buf.write("\3\u0094\3\u0094\5\u0094\u0488\n\u0094\3\u0095\3\u0095")
buf.write("\3\u0095\5\u013b\u03db\u03f1\2\u0096\3\3\5\4\7\5\t\6\13")
buf.write("\7\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37")
buf.write("\21!\22#\23%\24\'\25)\26+\27-\30/\31\61\32\63\33\65\34")
buf.write("\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]\60_")
buf.write("\61a\62c\63e\64g\65i\66k\67m8o9q:s;u<w=y>{?}@\177A\u0081")
buf.write("B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091")
buf.write("J\u0093K\u0095L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1")
buf.write("R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00afY\u00b1")
buf.write("Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1")
buf.write("b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1")
buf.write("j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1")
buf.write("r\u00e3s\u00e5t\u00e7u\u00e9v\u00ebw\u00edx\u00efy\u00f1")
buf.write("z\u00f3{\u00f5|\u00f7}\u00f9~\u00fb\2\u00fd\2\u00ff\2")
buf.write("\u0101\2\u0103\2\u0105\2\u0107\2\u0109\2\u010b\2\u010d")
buf.write("\2\u010f\2\u0111\2\u0113\2\u0115\2\u0117\2\u0119\2\u011b")
buf.write("\2\u011d\2\u011f\2\u0121\2\u0123\2\u0125\2\u0127\2\u0129")
buf.write("\2\3\2 \5\2\f\f\17\17\u202a\u202b\3\2\62;\4\2\62;aa\4")
buf.write("\2ZZzz\5\2\62;CHch\3\2\629\4\2QQqq\4\2\629aa\4\2DDdd\3")
buf.write("\2\62\63\4\2\62\63aa\3\2bb\6\2\13\13\r\16\"\"\u00a2\u00a2")
buf.write("\6\2\f\f\17\17$$^^\6\2\f\f\17\17))^^\13\2$$))^^ddhhpp")
buf.write("ttvvxx\16\2\f\f\17\17$$))\62;^^ddhhppttvxzz\5\2\62;ww")
buf.write("zz\6\2\62;CHaach\3\2\63;\4\2GGgg\4\2--//\4\2&&aa\u0101")
buf.write("\2C\\c|\u00ac\u00ac\u00b7\u00b7\u00bc\u00bc\u00c2\u00d8")
buf.write("\u00da\u00f8\u00fa\u0221\u0224\u0235\u0252\u02af\u02b2")
buf.write("\u02ba\u02bd\u02c3\u02d2\u02d3\u02e2\u02e6\u02f0\u02f0")
buf.write("\u037c\u037c\u0388\u0388\u038a\u038c\u038e\u038e\u0390")
buf.write("\u03a3\u03a5\u03d0\u03d2\u03d9\u03dc\u03f5\u0402\u0483")
buf.write("\u048e\u04c6\u04c9\u04ca\u04cd\u04ce\u04d2\u04f7\u04fa")
buf.write("\u04fb\u0533\u0558\u055b\u055b\u0563\u0589\u05d2\u05ec")
buf.write("\u05f2\u05f4\u0623\u063c\u0642\u064c\u0673\u06d5\u06d7")
buf.write("\u06d7\u06e7\u06e8\u06fc\u06fe\u0712\u0712\u0714\u072e")
buf.write("\u0782\u07a7\u0907\u093b\u093f\u093f\u0952\u0952\u095a")
buf.write("\u0963\u0987\u098e\u0991\u0992\u0995\u09aa\u09ac\u09b2")
buf.write("\u09b4\u09b4\u09b8\u09bb\u09de\u09df\u09e1\u09e3\u09f2")
buf.write("\u09f3\u0a07\u0a0c\u0a11\u0a12\u0a15\u0a2a\u0a2c\u0a32")
buf.write("\u0a34\u0a35\u0a37\u0a38\u0a3a\u0a3b\u0a5b\u0a5e\u0a60")
buf.write("\u0a60\u0a74\u0a76\u0a87\u0a8d\u0a8f\u0a8f\u0a91\u0a93")
buf.write("\u0a95\u0aaa\u0aac\u0ab2\u0ab4\u0ab5\u0ab7\u0abb\u0abf")
buf.write("\u0abf\u0ad2\u0ad2\u0ae2\u0ae2\u0b07\u0b0e\u0b11\u0b12")
buf.write("\u0b15\u0b2a\u0b2c\u0b32\u0b34\u0b35\u0b38\u0b3b\u0b3f")
buf.write("\u0b3f\u0b5e\u0b5f\u0b61\u0b63\u0b87\u0b8c\u0b90\u0b92")
buf.write("\u0b94\u0b97\u0b9b\u0b9c\u0b9e\u0b9e\u0ba0\u0ba1\u0ba5")
buf.write("\u0ba6\u0baa\u0bac\u0bb0\u0bb7\u0bb9\u0bbb\u0c07\u0c0e")
buf.write("\u0c10\u0c12\u0c14\u0c2a\u0c2c\u0c35\u0c37\u0c3b\u0c62")
buf.write("\u0c63\u0c87\u0c8e\u0c90\u0c92\u0c94\u0caa\u0cac\u0cb5")
buf.write("\u0cb7\u0cbb\u0ce0\u0ce0\u0ce2\u0ce3\u0d07\u0d0e\u0d10")
buf.write("\u0d12\u0d14\u0d2a\u0d2c\u0d3b\u0d62\u0d63\u0d87\u0d98")
buf.write("\u0d9c\u0db3\u0db5\u0dbd\u0dbf\u0dbf\u0dc2\u0dc8\u0e03")
buf.write("\u0e32\u0e34\u0e35\u0e42\u0e48\u0e83\u0e84\u0e86\u0e86")
buf.write("\u0e89\u0e8a\u0e8c\u0e8c\u0e8f\u0e8f\u0e96\u0e99\u0e9b")
buf.write("\u0ea1\u0ea3\u0ea5\u0ea7\u0ea7\u0ea9\u0ea9\u0eac\u0ead")
buf.write("\u0eaf\u0eb2\u0eb4\u0eb5\u0ebf\u0ec6\u0ec8\u0ec8\u0ede")
buf.write("\u0edf\u0f02\u0f02\u0f42\u0f6c\u0f8a\u0f8d\u1002\u1023")
buf.write("\u1025\u1029\u102b\u102c\u1052\u1057\u10a2\u10c7\u10d2")
buf.write("\u10f8\u1102\u115b\u1161\u11a4\u11aa\u11fb\u1202\u1208")
buf.write("\u120a\u1248\u124a\u124a\u124c\u124f\u1252\u1258\u125a")
buf.write("\u125a\u125c\u125f\u1262\u1288\u128a\u128a\u128c\u128f")
buf.write("\u1292\u12b0\u12b2\u12b2\u12b4\u12b7\u12ba\u12c0\u12c2")
buf.write("\u12c2\u12c4\u12c7\u12ca\u12d0\u12d2\u12d8\u12da\u12f0")
buf.write("\u12f2\u1310\u1312\u1312\u1314\u1317\u131a\u1320\u1322")
buf.write("\u1348\u134a\u135c\u13a2\u13f6\u1403\u1678\u1683\u169c")
buf.write("\u16a2\u16ec\u1782\u17b5\u1822\u1879\u1882\u18aa\u1e02")
buf.write("\u1e9d\u1ea2\u1efb\u1f02\u1f17\u1f1a\u1f1f\u1f22\u1f47")
buf.write("\u1f4a\u1f4f\u1f52\u1f59\u1f5b\u1f5b\u1f5d\u1f5d\u1f5f")
buf.write("\u1f5f\u1f61\u1f7f\u1f82\u1fb6\u1fb8\u1fbe\u1fc0\u1fc0")
buf.write("\u1fc4\u1fc6\u1fc8\u1fce\u1fd2\u1fd5\u1fd8\u1fdd\u1fe2")
buf.write("\u1fee\u1ff4\u1ff6\u1ff8\u1ffe\u2081\u2081\u2104\u2104")
buf.write("\u2109\u2109\u210c\u2115\u2117\u2117\u211b\u211f\u2126")
buf.write("\u2126\u2128\u2128\u212a\u212a\u212c\u212f\u2131\u2133")
buf.write("\u2135\u213b\u2162\u2185\u3007\u3009\u3023\u302b\u3033")
buf.write("\u3037\u303a\u303c\u3043\u3096\u309f\u30a0\u30a3\u30fc")
buf.write("\u30fe\u3100\u3107\u312e\u3133\u3190\u31a2\u31b9\u3402")
buf.write("\u4dc1\u4e02\ua48e\uac02\uac02\ud7a5\ud7a5\uf902\ufa2f")
buf.write("\ufb02\ufb08\ufb15\ufb19\ufb1f\ufb1f\ufb21\ufb2a\ufb2c")
buf.write("\ufb38\ufb3a\ufb3e\ufb40\ufb40\ufb42\ufb43\ufb45\ufb46")
buf.write("\ufb48\ufbb3\ufbd5\ufd3f\ufd52\ufd91\ufd94\ufdc9\ufdf2")
buf.write("\ufdfd\ufe72\ufe74\ufe76\ufe76\ufe78\ufefe\uff23\uff3c")
buf.write("\uff43\uff5c\uff68\uffc0\uffc4\uffc9\uffcc\uffd1\uffd4")
buf.write("\uffd9\uffdc\uffdef\2\u0302\u0350\u0362\u0364\u0485\u0488")
buf.write("\u0593\u05a3\u05a5\u05bb\u05bd\u05bf\u05c1\u05c1\u05c3")
buf.write("\u05c4\u05c6\u05c6\u064d\u0657\u0672\u0672\u06d8\u06de")
buf.write("\u06e1\u06e6\u06e9\u06ea\u06ec\u06ef\u0713\u0713\u0732")
buf.write("\u074c\u07a8\u07b2\u0903\u0905\u093e\u093e\u0940\u094f")
buf.write("\u0953\u0956\u0964\u0965\u0983\u0985\u09be\u09c6\u09c9")
buf.write("\u09ca\u09cd\u09cf\u09d9\u09d9\u09e4\u09e5\u0a04\u0a04")
buf.write("\u0a3e\u0a3e\u0a40\u0a44\u0a49\u0a4a\u0a4d\u0a4f\u0a72")
buf.write("\u0a73\u0a83\u0a85\u0abe\u0abe\u0ac0\u0ac7\u0ac9\u0acb")
buf.write("\u0acd\u0acf\u0b03\u0b05\u0b3e\u0b3e\u0b40\u0b45\u0b49")
buf.write("\u0b4a\u0b4d\u0b4f\u0b58\u0b59\u0b84\u0b85\u0bc0\u0bc4")
buf.write("\u0bc8\u0bca\u0bcc\u0bcf\u0bd9\u0bd9\u0c03\u0c05\u0c40")
buf.write("\u0c46\u0c48\u0c4a\u0c4c\u0c4f\u0c57\u0c58\u0c84\u0c85")
buf.write("\u0cc0\u0cc6\u0cc8\u0cca\u0ccc\u0ccf\u0cd7\u0cd8\u0d04")
buf.write("\u0d05\u0d40\u0d45\u0d48\u0d4a\u0d4c\u0d4f\u0d59\u0d59")
buf.write("\u0d84\u0d85\u0dcc\u0dcc\u0dd1\u0dd6\u0dd8\u0dd8\u0dda")
buf.write("\u0de1\u0df4\u0df5\u0e33\u0e33\u0e36\u0e3c\u0e49\u0e50")
buf.write("\u0eb3\u0eb3\u0eb6\u0ebb\u0ebd\u0ebe\u0eca\u0ecf\u0f1a")
buf.write("\u0f1b\u0f37\u0f37\u0f39\u0f39\u0f3b\u0f3b\u0f40\u0f41")
buf.write("\u0f73\u0f86\u0f88\u0f89\u0f92\u0f99\u0f9b\u0fbe\u0fc8")
buf.write("\u0fc8\u102e\u1034\u1038\u103b\u1058\u105b\u17b6\u17d5")
buf.write("\u18ab\u18ab\u20d2\u20de\u20e3\u20e3\u302c\u3031\u309b")
buf.write("\u309c\ufb20\ufb20\ufe22\ufe25\26\2\62;\u0662\u066b\u06f2")
buf.write("\u06fb\u0968\u0971\u09e8\u09f1\u0a68\u0a71\u0ae8\u0af1")
buf.write("\u0b68\u0b71\u0be9\u0bf1\u0c68\u0c71\u0ce8\u0cf1\u0d68")
buf.write("\u0d71\u0e52\u0e5b\u0ed2\u0edb\u0f22\u0f2b\u1042\u104b")
buf.write("\u136b\u1373\u17e2\u17eb\u1812\u181b\uff12\uff1b\t\2a")
buf.write("a\u2041\u2042\u30fd\u30fd\ufe35\ufe36\ufe4f\ufe51\uff41")
buf.write("\uff41\uff67\uff67\b\2\f\f\17\17,,\61\61]^\u202a\u202b")
buf.write("\7\2\f\f\17\17\61\61]^\u202a\u202b\6\2\f\f\17\17^_\u202a")
buf.write("\u202b\2\u04ae\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t")
buf.write("\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3")
buf.write("\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2")
buf.write("\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2")
buf.write("\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2")
buf.write("\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65")
buf.write("\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2")
buf.write("\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2")
buf.write("\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2")
buf.write("\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3")
buf.write("\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e")
buf.write("\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2")
buf.write("o\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2")
buf.write("\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177\3\2\2\2\2\u0081")
buf.write("\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2")
buf.write("\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f")
buf.write("\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2")
buf.write("\2\2\u0097\3\2\2\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d")
buf.write("\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2\2\2\u00a3\3\2\2")
buf.write("\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab")
buf.write("\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2")
buf.write("\2\2\u00b3\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9")
buf.write("\3\2\2\2\2\u00bb\3\2\2\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2")
buf.write("\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5\3\2\2\2\2\u00c7")
buf.write("\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2")
buf.write("\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5")
buf.write("\3\2\2\2\2\u00d7\3\2\2\2\2\u00d9\3\2\2\2\2\u00db\3\2\2")
buf.write("\2\2\u00dd\3\2\2\2\2\u00df\3\2\2\2\2\u00e1\3\2\2\2\2\u00e3")
buf.write("\3\2\2\2\2\u00e5\3\2\2\2\2\u00e7\3\2\2\2\2\u00e9\3\2\2")
buf.write("\2\2\u00eb\3\2\2\2\2\u00ed\3\2\2\2\2\u00ef\3\2\2\2\2\u00f1")
buf.write("\3\2\2\2\2\u00f3\3\2\2\2\2\u00f5\3\2\2\2\2\u00f7\3\2\2")
buf.write("\2\2\u00f9\3\2\2\2\3\u012b\3\2\2\2\5\u0135\3\2\2\2\7\u0143")
buf.write("\3\2\2\2\t\u014e\3\2\2\2\13\u015e\3\2\2\2\r\u0160\3\2")
buf.write("\2\2\17\u0162\3\2\2\2\21\u0164\3\2\2\2\23\u0166\3\2\2")
buf.write("\2\25\u0169\3\2\2\2\27\u016c\3\2\2\2\31\u016e\3\2\2\2")
buf.write("\33\u0170\3\2\2\2\35\u0172\3\2\2\2\37\u0174\3\2\2\2!\u0176")
buf.write("\3\2\2\2#\u017a\3\2\2\2%\u017c\3\2\2\2\'\u017f\3\2\2\2")
buf.write(")\u0182\3\2\2\2+\u0184\3\2\2\2-\u0186\3\2\2\2/\u0188\3")
buf.write("\2\2\2\61\u018a\3\2\2\2\63\u018c\3\2\2\2\65\u018e\3\2")
buf.write("\2\2\67\u0190\3\2\2\29\u0193\3\2\2\2;\u0196\3\2\2\2=\u0198")
buf.write("\3\2\2\2?\u019b\3\2\2\2A\u019e\3\2\2\2C\u01a2\3\2\2\2")
buf.write("E\u01a4\3\2\2\2G\u01a6\3\2\2\2I\u01a9\3\2\2\2K\u01ac\3")
buf.write("\2\2\2M\u01af\3\2\2\2O\u01b2\3\2\2\2Q\u01b6\3\2\2\2S\u01ba")
buf.write("\3\2\2\2U\u01bc\3\2\2\2W\u01be\3\2\2\2Y\u01c0\3\2\2\2")
buf.write("[\u01c3\3\2\2\2]\u01c6\3\2\2\2_\u01c9\3\2\2\2a\u01cc\3")
buf.write("\2\2\2c\u01cf\3\2\2\2e\u01d2\3\2\2\2g\u01d5\3\2\2\2i\u01d9")
buf.write("\3\2\2\2k\u01dd\3\2\2\2m\u01e2\3\2\2\2o\u01e5\3\2\2\2")
buf.write("q\u01e8\3\2\2\2s\u01eb\3\2\2\2u\u01ef\3\2\2\2w\u01f2\3")
buf.write("\2\2\2y\u0200\3\2\2\2{\u021d\3\2\2\2}\u021f\3\2\2\2\177")
buf.write("\u0228\3\2\2\2\u0081\u0230\3\2\2\2\u0083\u0239\3\2\2\2")
buf.write("\u0085\u0242\3\2\2\2\u0087\u024d\3\2\2\2\u0089\u0258\3")
buf.write("\2\2\2\u008b\u0263\3\2\2\2\u008d\u0266\3\2\2\2\u008f\u026c")
buf.write("\3\2\2\2\u0091\u026f\3\2\2\2\u0093\u027a\3\2\2\2\u0095")
buf.write("\u0281\3\2\2\2\u0097\u0286\3\2\2\2\u0099\u028b\3\2\2\2")
buf.write("\u009b\u028f\3\2\2\2\u009d\u0293\3\2\2\2\u009f\u0299\3")
buf.write("\2\2\2\u00a1\u02a1\3\2\2\2\u00a3\u02a8\3\2\2\2\u00a5\u02ad")
buf.write("\3\2\2\2\u00a7\u02b6\3\2\2\2\u00a9\u02ba\3\2\2\2\u00ab")
buf.write("\u02c1\3\2\2\2\u00ad\u02c7\3\2\2\2\u00af\u02d0\3\2\2\2")
buf.write("\u00b1\u02d9\3\2\2\2\u00b3\u02de\3\2\2\2\u00b5\u02e3\3")
buf.write("\2\2\2\u00b7\u02eb\3\2\2\2\u00b9\u02ee\3\2\2\2\u00bb\u02f4")
buf.write("\3\2\2\2\u00bd\u02fb\3\2\2\2\u00bf\u02fe\3\2\2\2\u00c1")
buf.write("\u0302\3\2\2\2\u00c3\u0305\3\2\2\2\u00c5\u030a\3\2\2\2")
buf.write("\u00c7\u0310\3\2\2\2\u00c9\u0315\3\2\2\2\u00cb\u031d\3")
buf.write("\2\2\2\u00cd\u0323\3\2\2\2\u00cf\u0329\3\2\2\2\u00d1\u0330")
buf.write("\3\2\2\2\u00d3\u0337\3\2\2\2\u00d5\u033d\3\2\2\2\u00d7")
buf.write("\u0343\3\2\2\2\u00d9\u0350\3\2\2\2\u00db\u0356\3\2\2\2")
buf.write("\u00dd\u035c\3\2\2\2\u00df\u0366\3\2\2\2\u00e1\u036f\3")
buf.write("\2\2\2\u00e3\u037b\3\2\2\2\u00e5\u0385\3\2\2\2\u00e7\u0391")
buf.write("\3\2\2\2\u00e9\u039a\3\2\2\2\u00eb\u03a2\3\2\2\2\u00ed")
buf.write("\u03b9\3\2\2\2\u00ef\u03bd\3\2\2\2\u00f1\u03c9\3\2\2\2")
buf.write("\u00f3\u03cf\3\2\2\2\u00f5\u03d3\3\2\2\2\u00f7\u03e4\3")
buf.write("\2\2\2\u00f9\u03fa\3\2\2\2\u00fb\u0402\3\2\2\2\u00fd\u0408")
buf.write("\3\2\2\2\u00ff\u040f\3\2\2\2\u0101\u0413\3\2\2\2\u0103")
buf.write("\u0415\3\2\2\2\u0105\u0429\3\2\2\2\u0107\u042b\3\2\2\2")
buf.write("\u0109\u0434\3\2\2\2\u010b\u0436\3\2\2\2\u010d\u043a\3")
buf.write("\2\2\2\u010f\u043c\3\2\2\2\u0111\u043f\3\2\2\2\u0113\u0449")
buf.write("\3\2\2\2\u0115\u044b\3\2\2\2\u0117\u0459\3\2\2\2\u0119")
buf.write("\u045f\3\2\2\2\u011b\u0462\3\2\2\2\u011d\u0465\3\2\2\2")
buf.write("\u011f\u0468\3\2\2\2\u0121\u046b\3\2\2\2\u0123\u0477\3")
buf.write("\2\2\2\u0125\u0483\3\2\2\2\u0127\u0487\3\2\2\2\u0129\u0489")
buf.write("\3\2\2\2\u012b\u012c\6\2\2\2\u012c\u012d\7%\2\2\u012d")
buf.write("\u012e\7#\2\2\u012e\u0132\3\2\2\2\u012f\u0131\n\2\2\2")
buf.write("\u0130\u012f\3\2\2\2\u0131\u0134\3\2\2\2\u0132\u0130\3")
buf.write("\2\2\2\u0132\u0133\3\2\2\2\u0133\4\3\2\2\2\u0134\u0132")
buf.write("\3\2\2\2\u0135\u0136\7\61\2\2\u0136\u0137\7,\2\2\u0137")
buf.write("\u013b\3\2\2\2\u0138\u013a\13\2\2\2\u0139\u0138\3\2\2")
buf.write("\2\u013a\u013d\3\2\2\2\u013b\u013c\3\2\2\2\u013b\u0139")
buf.write("\3\2\2\2\u013c\u013e\3\2\2\2\u013d\u013b\3\2\2\2\u013e")
buf.write("\u013f\7,\2\2\u013f\u0140\7\61\2\2\u0140\u0141\3\2\2\2")
buf.write("\u0141\u0142\b\3\2\2\u0142\6\3\2\2\2\u0143\u0144\7\61")
buf.write("\2\2\u0144\u0145\7\61\2\2\u0145\u0149\3\2\2\2\u0146\u0148")
buf.write("\n\2\2\2\u0147\u0146\3\2\2\2\u0148\u014b\3\2\2\2\u0149")
buf.write("\u0147\3\2\2\2\u0149\u014a\3\2\2\2\u014a\u014c\3\2\2\2")
buf.write("\u014b\u0149\3\2\2\2\u014c\u014d\b\4\2\2\u014d\b\3\2\2")
buf.write("\2\u014e\u014f\7\61\2\2\u014f\u0153\5\u0123\u0092\2\u0150")
buf.write("\u0152\5\u0125\u0093\2\u0151\u0150\3\2\2\2\u0152\u0155")
buf.write("\3\2\2\2\u0153\u0151\3\2\2\2\u0153\u0154\3\2\2\2\u0154")
buf.write("\u0156\3\2\2\2\u0155\u0153\3\2\2\2\u0156\u0157\6\5\3\2")
buf.write("\u0157\u015b\7\61\2\2\u0158\u015a\5\u0117\u008c\2\u0159")
buf.write("\u0158\3\2\2\2\u015a\u015d\3\2\2\2\u015b\u0159\3\2\2\2")
buf.write("\u015b\u015c\3\2\2\2\u015c\n\3\2\2\2\u015d\u015b\3\2\2")
buf.write("\2\u015e\u015f\7]\2\2\u015f\f\3\2\2\2\u0160\u0161\7_\2")
buf.write("\2\u0161\16\3\2\2\2\u0162\u0163\7*\2\2\u0163\20\3\2\2")
buf.write("\2\u0164\u0165\7+\2\2\u0165\22\3\2\2\2\u0166\u0167\7}")
buf.write("\2\2\u0167\u0168\b\n\3\2\u0168\24\3\2\2\2\u0169\u016a")
buf.write("\7\177\2\2\u016a\u016b\b\13\4\2\u016b\26\3\2\2\2\u016c")
buf.write("\u016d\7=\2\2\u016d\30\3\2\2\2\u016e\u016f\7.\2\2\u016f")
buf.write("\32\3\2\2\2\u0170\u0171\7?\2\2\u0171\34\3\2\2\2\u0172")
buf.write("\u0173\7A\2\2\u0173\36\3\2\2\2\u0174\u0175\7<\2\2\u0175")
buf.write(" \3\2\2\2\u0176\u0177\7\60\2\2\u0177\u0178\7\60\2\2\u0178")
buf.write("\u0179\7\60\2\2\u0179\"\3\2\2\2\u017a\u017b\7\60\2\2\u017b")
buf.write("$\3\2\2\2\u017c\u017d\7-\2\2\u017d\u017e\7-\2\2\u017e")
buf.write("&\3\2\2\2\u017f\u0180\7/\2\2\u0180\u0181\7/\2\2\u0181")
buf.write("(\3\2\2\2\u0182\u0183\7-\2\2\u0183*\3\2\2\2\u0184\u0185")
buf.write("\7/\2\2\u0185,\3\2\2\2\u0186\u0187\7\u0080\2\2\u0187.")
buf.write("\3\2\2\2\u0188\u0189\7#\2\2\u0189\60\3\2\2\2\u018a\u018b")
buf.write("\7,\2\2\u018b\62\3\2\2\2\u018c\u018d\7\61\2\2\u018d\64")
buf.write("\3\2\2\2\u018e\u018f\7\'\2\2\u018f\66\3\2\2\2\u0190\u0191")
buf.write("\7,\2\2\u0191\u0192\7,\2\2\u01928\3\2\2\2\u0193\u0194")
buf.write("\7A\2\2\u0194\u0195\7A\2\2\u0195:\3\2\2\2\u0196\u0197")
buf.write("\7%\2\2\u0197<\3\2\2\2\u0198\u0199\7@\2\2\u0199\u019a")
buf.write("\7@\2\2\u019a>\3\2\2\2\u019b\u019c\7>\2\2\u019c\u019d")
buf.write("\7>\2\2\u019d@\3\2\2\2\u019e\u019f\7@\2\2\u019f\u01a0")
buf.write("\7@\2\2\u01a0\u01a1\7@\2\2\u01a1B\3\2\2\2\u01a2\u01a3")
buf.write("\7>\2\2\u01a3D\3\2\2\2\u01a4\u01a5\7@\2\2\u01a5F\3\2\2")
buf.write("\2\u01a6\u01a7\7>\2\2\u01a7\u01a8\7?\2\2\u01a8H\3\2\2")
buf.write("\2\u01a9\u01aa\7@\2\2\u01aa\u01ab\7?\2\2\u01abJ\3\2\2")
buf.write("\2\u01ac\u01ad\7?\2\2\u01ad\u01ae\7?\2\2\u01aeL\3\2\2")
buf.write("\2\u01af\u01b0\7#\2\2\u01b0\u01b1\7?\2\2\u01b1N\3\2\2")
buf.write("\2\u01b2\u01b3\7?\2\2\u01b3\u01b4\7?\2\2\u01b4\u01b5\7")
buf.write("?\2\2\u01b5P\3\2\2\2\u01b6\u01b7\7#\2\2\u01b7\u01b8\7")
buf.write("?\2\2\u01b8\u01b9\7?\2\2\u01b9R\3\2\2\2\u01ba\u01bb\7")
buf.write("(\2\2\u01bbT\3\2\2\2\u01bc\u01bd\7`\2\2\u01bdV\3\2\2\2")
buf.write("\u01be\u01bf\7~\2\2\u01bfX\3\2\2\2\u01c0\u01c1\7(\2\2")
buf.write("\u01c1\u01c2\7(\2\2\u01c2Z\3\2\2\2\u01c3\u01c4\7~\2\2")
buf.write("\u01c4\u01c5\7~\2\2\u01c5\\\3\2\2\2\u01c6\u01c7\7,\2\2")
buf.write("\u01c7\u01c8\7?\2\2\u01c8^\3\2\2\2\u01c9\u01ca\7\61\2")
buf.write("\2\u01ca\u01cb\7?\2\2\u01cb`\3\2\2\2\u01cc\u01cd\7\'\2")
buf.write("\2\u01cd\u01ce\7?\2\2\u01ceb\3\2\2\2\u01cf\u01d0\7-\2")
buf.write("\2\u01d0\u01d1\7?\2\2\u01d1d\3\2\2\2\u01d2\u01d3\7/\2")
buf.write("\2\u01d3\u01d4\7?\2\2\u01d4f\3\2\2\2\u01d5\u01d6\7>\2")
buf.write("\2\u01d6\u01d7\7>\2\2\u01d7\u01d8\7?\2\2\u01d8h\3\2\2")
buf.write("\2\u01d9\u01da\7@\2\2\u01da\u01db\7@\2\2\u01db\u01dc\7")
buf.write("?\2\2\u01dcj\3\2\2\2\u01dd\u01de\7@\2\2\u01de\u01df\7")
buf.write("@\2\2\u01df\u01e0\7@\2\2\u01e0\u01e1\7?\2\2\u01e1l\3\2")
buf.write("\2\2\u01e2\u01e3\7(\2\2\u01e3\u01e4\7?\2\2\u01e4n\3\2")
buf.write("\2\2\u01e5\u01e6\7`\2\2\u01e6\u01e7\7?\2\2\u01e7p\3\2")
buf.write("\2\2\u01e8\u01e9\7~\2\2\u01e9\u01ea\7?\2\2\u01ear\3\2")
buf.write("\2\2\u01eb\u01ec\7,\2\2\u01ec\u01ed\7,\2\2\u01ed\u01ee")
buf.write("\7?\2\2\u01eet\3\2\2\2\u01ef\u01f0\7?\2\2\u01f0\u01f1")
buf.write("\7@\2\2\u01f1v\3\2\2\2\u01f2\u01f3\7p\2\2\u01f3\u01f4")
buf.write("\7w\2\2\u01f4\u01f5\7n\2\2\u01f5\u01f6\7n\2\2\u01f6x\3")
buf.write("\2\2\2\u01f7\u01f8\7v\2\2\u01f8\u01f9\7t\2\2\u01f9\u01fa")
buf.write("\7w\2\2\u01fa\u0201\7g\2\2\u01fb\u01fc\7h\2\2\u01fc\u01fd")
buf.write("\7c\2\2\u01fd\u01fe\7n\2\2\u01fe\u01ff\7u\2\2\u01ff\u0201")
buf.write("\7g\2\2\u0200\u01f7\3\2\2\2\u0200\u01fb\3\2\2\2\u0201")
buf.write("z\3\2\2\2\u0202\u0203\5\u0113\u008a\2\u0203\u0204\7\60")
buf.write("\2\2\u0204\u0208\t\3\2\2\u0205\u0207\t\4\2\2\u0206\u0205")
buf.write("\3\2\2\2\u0207\u020a\3\2\2\2\u0208\u0206\3\2\2\2\u0208")
buf.write("\u0209\3\2\2\2\u0209\u020c\3\2\2\2\u020a\u0208\3\2\2\2")
buf.write("\u020b\u020d\5\u0115\u008b\2\u020c\u020b\3\2\2\2\u020c")
buf.write("\u020d\3\2\2\2\u020d\u021e\3\2\2\2\u020e\u020f\7\60\2")
buf.write("\2\u020f\u0213\t\3\2\2\u0210\u0212\t\4\2\2\u0211\u0210")
buf.write("\3\2\2\2\u0212\u0215\3\2\2\2\u0213\u0211\3\2\2\2\u0213")
buf.write("\u0214\3\2\2\2\u0214\u0217\3\2\2\2\u0215\u0213\3\2\2\2")
buf.write("\u0216\u0218\5\u0115\u008b\2\u0217\u0216\3\2\2\2\u0217")
buf.write("\u0218\3\2\2\2\u0218\u021e\3\2\2\2\u0219\u021b\5\u0113")
buf.write("\u008a\2\u021a\u021c\5\u0115\u008b\2\u021b\u021a\3\2\2")
buf.write("\2\u021b\u021c\3\2\2\2\u021c\u021e\3\2\2\2\u021d\u0202")
buf.write("\3\2\2\2\u021d\u020e\3\2\2\2\u021d\u0219\3\2\2\2\u021e")
buf.write("|\3\2\2\2\u021f\u0220\7\62\2\2\u0220\u0221\t\5\2\2\u0221")
buf.write("\u0225\t\6\2\2\u0222\u0224\5\u0111\u0089\2\u0223\u0222")
buf.write("\3\2\2\2\u0224\u0227\3\2\2\2\u0225\u0223\3\2\2\2\u0225")
buf.write("\u0226\3\2\2\2\u0226~\3\2\2\2\u0227\u0225\3\2\2\2\u0228")
buf.write("\u022a\7\62\2\2\u0229\u022b\t\7\2\2\u022a\u0229\3\2\2")
buf.write("\2\u022b\u022c\3\2\2\2\u022c\u022a\3\2\2\2\u022c\u022d")
buf.write("\3\2\2\2\u022d\u022e\3\2\2\2\u022e\u022f\6@\4\2\u022f")
buf.write("\u0080\3\2\2\2\u0230\u0231\7\62\2\2\u0231\u0232\t\b\2")
buf.write("\2\u0232\u0236\t\7\2\2\u0233\u0235\t\t\2\2\u0234\u0233")
buf.write("\3\2\2\2\u0235\u0238\3\2\2\2\u0236\u0234\3\2\2\2\u0236")
buf.write("\u0237\3\2\2\2\u0237\u0082\3\2\2\2\u0238\u0236\3\2\2\2")
buf.write("\u0239\u023a\7\62\2\2\u023a\u023b\t\n\2\2\u023b\u023f")
buf.write("\t\13\2\2\u023c\u023e\t\f\2\2\u023d\u023c\3\2\2\2\u023e")
buf.write("\u0241\3\2\2\2\u023f\u023d\3\2\2\2\u023f\u0240\3\2\2\2")
buf.write("\u0240\u0084\3\2\2\2\u0241\u023f\3\2\2\2\u0242\u0243\7")
buf.write("\62\2\2\u0243\u0244\t\5\2\2\u0244\u0248\t\6\2\2\u0245")
buf.write("\u0247\5\u0111\u0089\2\u0246\u0245\3\2\2\2\u0247\u024a")
buf.write("\3\2\2\2\u0248\u0246\3\2\2\2\u0248\u0249\3\2\2\2\u0249")
buf.write("\u024b\3\2\2\2\u024a\u0248\3\2\2\2\u024b\u024c\7p\2\2")
buf.write("\u024c\u0086\3\2\2\2\u024d\u024e\7\62\2\2\u024e\u024f")
buf.write("\t\b\2\2\u024f\u0253\t\7\2\2\u0250\u0252\t\t\2\2\u0251")
buf.write("\u0250\3\2\2\2\u0252\u0255\3\2\2\2\u0253\u0251\3\2\2\2")
buf.write("\u0253\u0254\3\2\2\2\u0254\u0256\3\2\2\2\u0255\u0253\3")
buf.write("\2\2\2\u0256\u0257\7p\2\2\u0257\u0088\3\2\2\2\u0258\u0259")
buf.write("\7\62\2\2\u0259\u025a\t\n\2\2\u025a\u025e\t\13\2\2\u025b")
buf.write("\u025d\t\f\2\2\u025c\u025b\3\2\2\2\u025d\u0260\3\2\2\2")
buf.write("\u025e\u025c\3\2\2\2\u025e\u025f\3\2\2\2\u025f\u0261\3")
buf.write("\2\2\2\u0260\u025e\3\2\2\2\u0261\u0262\7p\2\2\u0262\u008a")
buf.write("\3\2\2\2\u0263\u0264\5\u0113\u008a\2\u0264\u0265\7p\2")
buf.write("\2\u0265\u008c\3\2\2\2\u0266\u0267\7d\2\2\u0267\u0268")
buf.write("\7t\2\2\u0268\u0269\7g\2\2\u0269\u026a\7c\2\2\u026a\u026b")
buf.write("\7m\2\2\u026b\u008e\3\2\2\2\u026c\u026d\7f\2\2\u026d\u026e")
buf.write("\7q\2\2\u026e\u0090\3\2\2\2\u026f\u0270\7k\2\2\u0270\u0271")
buf.write("\7p\2\2\u0271\u0272\7u\2\2\u0272\u0273\7v\2\2\u0273\u0274")
buf.write("\7c\2\2\u0274\u0275\7p\2\2\u0275\u0276\7e\2\2\u0276\u0277")
buf.write("\7g\2\2\u0277\u0278\7q\2\2\u0278\u0279\7h\2\2\u0279\u0092")
buf.write("\3\2\2\2\u027a\u027b\7v\2\2\u027b\u027c\7{\2\2\u027c\u027d")
buf.write("\7r\2\2\u027d\u027e\7g\2\2\u027e\u027f\7q\2\2\u027f\u0280")
buf.write("\7h\2\2\u0280\u0094\3\2\2\2\u0281\u0282\7e\2\2\u0282\u0283")
buf.write("\7c\2\2\u0283\u0284\7u\2\2\u0284\u0285\7g\2\2\u0285\u0096")
buf.write("\3\2\2\2\u0286\u0287\7g\2\2\u0287\u0288\7n\2\2\u0288\u0289")
buf.write("\7u\2\2\u0289\u028a\7g\2\2\u028a\u0098\3\2\2\2\u028b\u028c")
buf.write("\7p\2\2\u028c\u028d\7g\2\2\u028d\u028e\7y\2\2\u028e\u009a")
buf.write("\3\2\2\2\u028f\u0290\7x\2\2\u0290\u0291\7c\2\2\u0291\u0292")
buf.write("\7t\2\2\u0292\u009c\3\2\2\2\u0293\u0294\7e\2\2\u0294\u0295")
buf.write("\7c\2\2\u0295\u0296\7v\2\2\u0296\u0297\7e\2\2\u0297\u0298")
buf.write("\7j\2\2\u0298\u009e\3\2\2\2\u0299\u029a\7h\2\2\u029a\u029b")
buf.write("\7k\2\2\u029b\u029c\7p\2\2\u029c\u029d\7c\2\2\u029d\u029e")
buf.write("\7n\2\2\u029e\u029f\7n\2\2\u029f\u02a0\7{\2\2\u02a0\u00a0")
buf.write("\3\2\2\2\u02a1\u02a2\7t\2\2\u02a2\u02a3\7g\2\2\u02a3\u02a4")
buf.write("\7v\2\2\u02a4\u02a5\7w\2\2\u02a5\u02a6\7t\2\2\u02a6\u02a7")
buf.write("\7p\2\2\u02a7\u00a2\3\2\2\2\u02a8\u02a9\7x\2\2\u02a9\u02aa")
buf.write("\7q\2\2\u02aa\u02ab\7k\2\2\u02ab\u02ac\7f\2\2\u02ac\u00a4")
buf.write("\3\2\2\2\u02ad\u02ae\7e\2\2\u02ae\u02af\7q\2\2\u02af\u02b0")
buf.write("\7p\2\2\u02b0\u02b1\7v\2\2\u02b1\u02b2\7k\2\2\u02b2\u02b3")
buf.write("\7p\2\2\u02b3\u02b4\7w\2\2\u02b4\u02b5\7g\2\2\u02b5\u00a6")
buf.write("\3\2\2\2\u02b6\u02b7\7h\2\2\u02b7\u02b8\7q\2\2\u02b8\u02b9")
buf.write("\7t\2\2\u02b9\u00a8\3\2\2\2\u02ba\u02bb\7u\2\2\u02bb\u02bc")
buf.write("\7y\2\2\u02bc\u02bd\7k\2\2\u02bd\u02be\7v\2\2\u02be\u02bf")
buf.write("\7e\2\2\u02bf\u02c0\7j\2\2\u02c0\u00aa\3\2\2\2\u02c1\u02c2")
buf.write("\7y\2\2\u02c2\u02c3\7j\2\2\u02c3\u02c4\7k\2\2\u02c4\u02c5")
buf.write("\7n\2\2\u02c5\u02c6\7g\2\2\u02c6\u00ac\3\2\2\2\u02c7\u02c8")
buf.write("\7f\2\2\u02c8\u02c9\7g\2\2\u02c9\u02ca\7d\2\2\u02ca\u02cb")
buf.write("\7w\2\2\u02cb\u02cc\7i\2\2\u02cc\u02cd\7i\2\2\u02cd\u02ce")
buf.write("\7g\2\2\u02ce\u02cf\7t\2\2\u02cf\u00ae\3\2\2\2\u02d0\u02d1")
buf.write("\7h\2\2\u02d1\u02d2\7w\2\2\u02d2\u02d3\7p\2\2\u02d3\u02d4")
buf.write("\7e\2\2\u02d4\u02d5\7v\2\2\u02d5\u02d6\7k\2\2\u02d6\u02d7")
buf.write("\7q\2\2\u02d7\u02d8\7p\2\2\u02d8\u00b0\3\2\2\2\u02d9\u02da")
buf.write("\7v\2\2\u02da\u02db\7j\2\2\u02db\u02dc\7k\2\2\u02dc\u02dd")
buf.write("\7u\2\2\u02dd\u00b2\3\2\2\2\u02de\u02df\7y\2\2\u02df\u02e0")
buf.write("\7k\2\2\u02e0\u02e1\7v\2\2\u02e1\u02e2\7j\2\2\u02e2\u00b4")
buf.write("\3\2\2\2\u02e3\u02e4\7f\2\2\u02e4\u02e5\7g\2\2\u02e5\u02e6")
buf.write("\7h\2\2\u02e6\u02e7\7c\2\2\u02e7\u02e8\7w\2\2\u02e8\u02e9")
buf.write("\7n\2\2\u02e9\u02ea\7v\2\2\u02ea\u00b6\3\2\2\2\u02eb\u02ec")
buf.write("\7k\2\2\u02ec\u02ed\7h\2\2\u02ed\u00b8\3\2\2\2\u02ee\u02ef")
buf.write("\7v\2\2\u02ef\u02f0\7j\2\2\u02f0\u02f1\7t\2\2\u02f1\u02f2")
buf.write("\7q\2\2\u02f2\u02f3\7y\2\2\u02f3\u00ba\3\2\2\2\u02f4\u02f5")
buf.write("\7f\2\2\u02f5\u02f6\7g\2\2\u02f6\u02f7\7n\2\2\u02f7\u02f8")
buf.write("\7g\2\2\u02f8\u02f9\7v\2\2\u02f9\u02fa\7g\2\2\u02fa\u00bc")
buf.write("\3\2\2\2\u02fb\u02fc\7k\2\2\u02fc\u02fd\7p\2\2\u02fd\u00be")
buf.write("\3\2\2\2\u02fe\u02ff\7v\2\2\u02ff\u0300\7t\2\2\u0300\u0301")
buf.write("\7{\2\2\u0301\u00c0\3\2\2\2\u0302\u0303\7c\2\2\u0303\u0304")
buf.write("\7u\2\2\u0304\u00c2\3\2\2\2\u0305\u0306\7h\2\2\u0306\u0307")
buf.write("\7t\2\2\u0307\u0308\7q\2\2\u0308\u0309\7o\2\2\u0309\u00c4")
buf.write("\3\2\2\2\u030a\u030b\7e\2\2\u030b\u030c\7n\2\2\u030c\u030d")
buf.write("\7c\2\2\u030d\u030e\7u\2\2\u030e\u030f\7u\2\2\u030f\u00c6")
buf.write("\3\2\2\2\u0310\u0311\7g\2\2\u0311\u0312\7p\2\2\u0312\u0313")
buf.write("\7w\2\2\u0313\u0314\7o\2\2\u0314\u00c8\3\2\2\2\u0315\u0316")
buf.write("\7g\2\2\u0316\u0317\7z\2\2\u0317\u0318\7v\2\2\u0318\u0319")
buf.write("\7g\2\2\u0319\u031a\7p\2\2\u031a\u031b\7f\2\2\u031b\u031c")
buf.write("\7u\2\2\u031c\u00ca\3\2\2\2\u031d\u031e\7u\2\2\u031e\u031f")
buf.write("\7w\2\2\u031f\u0320\7r\2\2\u0320\u0321\7g\2\2\u0321\u0322")
buf.write("\7t\2\2\u0322\u00cc\3\2\2\2\u0323\u0324\7e\2\2\u0324\u0325")
buf.write("\7q\2\2\u0325\u0326\7p\2\2\u0326\u0327\7u\2\2\u0327\u0328")
buf.write("\7v\2\2\u0328\u00ce\3\2\2\2\u0329\u032a\7g\2\2\u032a\u032b")
buf.write("\7z\2\2\u032b\u032c\7r\2\2\u032c\u032d\7q\2\2\u032d\u032e")
buf.write("\7t\2\2\u032e\u032f\7v\2\2\u032f\u00d0\3\2\2\2\u0330\u0331")
buf.write("\7k\2\2\u0331\u0332\7o\2\2\u0332\u0333\7r\2\2\u0333\u0334")
buf.write("\7q\2\2\u0334\u0335\7t\2\2\u0335\u0336\7v\2\2\u0336\u00d2")
buf.write("\3\2\2\2\u0337\u0338\7c\2\2\u0338\u0339\7u\2\2\u0339\u033a")
buf.write("\7{\2\2\u033a\u033b\7p\2\2\u033b\u033c\7e\2\2\u033c\u00d4")
buf.write("\3\2\2\2\u033d\u033e\7c\2\2\u033e\u033f\7y\2\2\u033f\u0340")
buf.write("\7c\2\2\u0340\u0341\7k\2\2\u0341\u0342\7v\2\2\u0342\u00d6")
buf.write("\3\2\2\2\u0343\u0344\7k\2\2\u0344\u0345\7o\2\2\u0345\u0346")
buf.write("\7r\2\2\u0346\u0347\7n\2\2\u0347\u0348\7g\2\2\u0348\u0349")
buf.write("\7o\2\2\u0349\u034a\7g\2\2\u034a\u034b\7p\2\2\u034b\u034c")
buf.write("\7v\2\2\u034c\u034d\7u\2\2\u034d\u034e\3\2\2\2\u034e\u034f")
buf.write("\6l\5\2\u034f\u00d8\3\2\2\2\u0350\u0351\7n\2\2\u0351\u0352")
buf.write("\7g\2\2\u0352\u0353\7v\2\2\u0353\u0354\3\2\2\2\u0354\u0355")
buf.write("\6m\6\2\u0355\u00da\3\2\2\2\u0356\u0357\7n\2\2\u0357\u0358")
buf.write("\7g\2\2\u0358\u0359\7v\2\2\u0359\u035a\3\2\2\2\u035a\u035b")
buf.write("\6n\7\2\u035b\u00dc\3\2\2\2\u035c\u035d\7r\2\2\u035d\u035e")
buf.write("\7t\2\2\u035e\u035f\7k\2\2\u035f\u0360\7x\2\2\u0360\u0361")
buf.write("\7c\2\2\u0361\u0362\7v\2\2\u0362\u0363\7g\2\2\u0363\u0364")
buf.write("\3\2\2\2\u0364\u0365\6o\b\2\u0365\u00de\3\2\2\2\u0366")
buf.write("\u0367\7r\2\2\u0367\u0368\7w\2\2\u0368\u0369\7d\2\2\u0369")
buf.write("\u036a\7n\2\2\u036a\u036b\7k\2\2\u036b\u036c\7e\2\2\u036c")
buf.write("\u036d\3\2\2\2\u036d\u036e\6p\t\2\u036e\u00e0\3\2\2\2")
buf.write("\u036f\u0370\7k\2\2\u0370\u0371\7p\2\2\u0371\u0372\7v")
buf.write("\2\2\u0372\u0373\7g\2\2\u0373\u0374\7t\2\2\u0374\u0375")
buf.write("\7h\2\2\u0375\u0376\7c\2\2\u0376\u0377\7e\2\2\u0377\u0378")
buf.write("\7g\2\2\u0378\u0379\3\2\2\2\u0379\u037a\6q\n\2\u037a\u00e2")
buf.write("\3\2\2\2\u037b\u037c\7r\2\2\u037c\u037d\7c\2\2\u037d\u037e")
buf.write("\7e\2\2\u037e\u037f\7m\2\2\u037f\u0380\7c\2\2\u0380\u0381")
buf.write("\7i\2\2\u0381\u0382\7g\2\2\u0382\u0383\3\2\2\2\u0383\u0384")
buf.write("\6r\13\2\u0384\u00e4\3\2\2\2\u0385\u0386\7r\2\2\u0386")
buf.write("\u0387\7t\2\2\u0387\u0388\7q\2\2\u0388\u0389\7v\2\2\u0389")
buf.write("\u038a\7g\2\2\u038a\u038b\7e\2\2\u038b\u038c\7v\2\2\u038c")
buf.write("\u038d\7g\2\2\u038d\u038e\7f\2\2\u038e\u038f\3\2\2\2\u038f")
buf.write("\u0390\6s\f\2\u0390\u00e6\3\2\2\2\u0391\u0392\7u\2\2\u0392")
buf.write("\u0393\7v\2\2\u0393\u0394\7c\2\2\u0394\u0395\7v\2\2\u0395")
buf.write("\u0396\7k\2\2\u0396\u0397\7e\2\2\u0397\u0398\3\2\2\2\u0398")
buf.write("\u0399\6t\r\2\u0399\u00e8\3\2\2\2\u039a\u039b\7{\2\2\u039b")
buf.write("\u039c\7k\2\2\u039c\u039d\7g\2\2\u039d\u039e\7n\2\2\u039e")
buf.write("\u039f\7f\2\2\u039f\u03a0\3\2\2\2\u03a0\u03a1\6u\16\2")
buf.write("\u03a1\u00ea\3\2\2\2\u03a2\u03a6\5\u0119\u008d\2\u03a3")
buf.write("\u03a5\5\u0117\u008c\2\u03a4\u03a3\3\2\2\2\u03a5\u03a8")
buf.write("\3\2\2\2\u03a6\u03a4\3\2\2\2\u03a6\u03a7\3\2\2\2\u03a7")
buf.write("\u00ec\3\2\2\2\u03a8\u03a6\3\2\2\2\u03a9\u03ad\7$\2\2")
buf.write("\u03aa\u03ac\5\u00fb~\2\u03ab\u03aa\3\2\2\2\u03ac\u03af")
buf.write("\3\2\2\2\u03ad\u03ab\3\2\2\2\u03ad\u03ae\3\2\2\2\u03ae")
buf.write("\u03b0\3\2\2\2\u03af\u03ad\3\2\2\2\u03b0\u03ba\7$\2\2")
buf.write("\u03b1\u03b5\7)\2\2\u03b2\u03b4\5\u00fd\177\2\u03b3\u03b2")
buf.write("\3\2\2\2\u03b4\u03b7\3\2\2\2\u03b5\u03b3\3\2\2\2\u03b5")
buf.write("\u03b6\3\2\2\2\u03b6\u03b8\3\2\2\2\u03b7\u03b5\3\2\2\2")
buf.write("\u03b8\u03ba\7)\2\2\u03b9\u03a9\3\2\2\2\u03b9\u03b1\3")
buf.write("\2\2\2\u03ba\u03bb\3\2\2\2\u03bb\u03bc\bw\5\2\u03bc\u00ee")
buf.write("\3\2\2\2\u03bd\u03c3\7b\2\2\u03be\u03bf\7^\2\2\u03bf\u03c2")
buf.write("\7b\2\2\u03c0\u03c2\n\r\2\2\u03c1\u03be\3\2\2\2\u03c1")
buf.write("\u03c0\3\2\2\2\u03c2\u03c5\3\2\2\2\u03c3\u03c1\3\2\2\2")
buf.write("\u03c3\u03c4\3\2\2\2\u03c4\u03c6\3\2\2\2\u03c5\u03c3\3")
buf.write("\2\2\2\u03c6\u03c7\7b\2\2\u03c7\u00f0\3\2\2\2\u03c8\u03ca")
buf.write("\t\16\2\2\u03c9\u03c8\3\2\2\2\u03ca\u03cb\3\2\2\2\u03cb")
buf.write("\u03c9\3\2\2\2\u03cb\u03cc\3\2\2\2\u03cc\u03cd\3\2\2\2")
buf.write("\u03cd\u03ce\by\2\2\u03ce\u00f2\3\2\2\2\u03cf\u03d0\t")
buf.write("\2\2\2\u03d0\u03d1\3\2\2\2\u03d1\u03d2\bz\2\2\u03d2\u00f4")
buf.write("\3\2\2\2\u03d3\u03d4\7>\2\2\u03d4\u03d5\7#\2\2\u03d5\u03d6")
buf.write("\7/\2\2\u03d6\u03d7\7/\2\2\u03d7\u03db\3\2\2\2\u03d8\u03da")
buf.write("\13\2\2\2\u03d9\u03d8\3\2\2\2\u03da\u03dd\3\2\2\2\u03db")
buf.write("\u03dc\3\2\2\2\u03db\u03d9\3\2\2\2\u03dc\u03de\3\2\2\2")
buf.write("\u03dd\u03db\3\2\2\2\u03de\u03df\7/\2\2\u03df\u03e0\7")
buf.write("/\2\2\u03e0\u03e1\7@\2\2\u03e1\u03e2\3\2\2\2\u03e2\u03e3")
buf.write("\b{\2\2\u03e3\u00f6\3\2\2\2\u03e4\u03e5\7>\2\2\u03e5\u03e6")
buf.write("\7#\2\2\u03e6\u03e7\7]\2\2\u03e7\u03e8\7E\2\2\u03e8\u03e9")
buf.write("\7F\2\2\u03e9\u03ea\7C\2\2\u03ea\u03eb\7V\2\2\u03eb\u03ec")
buf.write("\7C\2\2\u03ec\u03ed\7]\2\2\u03ed\u03f1\3\2\2\2\u03ee\u03f0")
buf.write("\13\2\2\2\u03ef\u03ee\3\2\2\2\u03f0\u03f3\3\2\2\2\u03f1")
buf.write("\u03f2\3\2\2\2\u03f1\u03ef\3\2\2\2\u03f2\u03f4\3\2\2\2")
buf.write("\u03f3\u03f1\3\2\2\2\u03f4\u03f5\7_\2\2\u03f5\u03f6\7")
buf.write("_\2\2\u03f6\u03f7\7@\2\2\u03f7\u03f8\3\2\2\2\u03f8\u03f9")
buf.write("\b|\2\2\u03f9\u00f8\3\2\2\2\u03fa\u03fb\13\2\2\2\u03fb")
buf.write("\u03fc\3\2\2\2\u03fc\u03fd\b}\6\2\u03fd\u00fa\3\2\2\2")
buf.write("\u03fe\u0403\n\17\2\2\u03ff\u0400\7^\2\2\u0400\u0403\5")
buf.write("\u00ff\u0080\2\u0401\u0403\5\u010f\u0088\2\u0402\u03fe")
buf.write("\3\2\2\2\u0402\u03ff\3\2\2\2\u0402\u0401\3\2\2\2\u0403")
buf.write("\u00fc\3\2\2\2\u0404\u0409\n\20\2\2\u0405\u0406\7^\2\2")
buf.write("\u0406\u0409\5\u00ff\u0080\2\u0407\u0409\5\u010f\u0088")
buf.write("\2\u0408\u0404\3\2\2\2\u0408\u0405\3\2\2\2\u0408\u0407")
buf.write("\3\2\2\2\u0409\u00fe\3\2\2\2\u040a\u0410\5\u0101\u0081")
buf.write("\2\u040b\u0410\7\62\2\2\u040c\u0410\5\u0103\u0082\2\u040d")
buf.write("\u0410\5\u0105\u0083\2\u040e\u0410\5\u0107\u0084\2\u040f")
buf.write("\u040a\3\2\2\2\u040f\u040b\3\2\2\2\u040f\u040c\3\2\2\2")
buf.write("\u040f\u040d\3\2\2\2\u040f\u040e\3\2\2\2\u0410\u0100\3")
buf.write("\2\2\2\u0411\u0414\5\u0109\u0085\2\u0412\u0414\5\u010b")
buf.write("\u0086\2\u0413\u0411\3\2\2\2\u0413\u0412\3\2\2\2\u0414")
buf.write("\u0102\3\2\2\2\u0415\u0416\7z\2\2\u0416\u0417\5\u0111")
buf.write("\u0089\2\u0417\u0418\5\u0111\u0089\2\u0418\u0104\3\2\2")
buf.write("\2\u0419\u041a\7w\2\2\u041a\u041b\5\u0111\u0089\2\u041b")
buf.write("\u041c\5\u0111\u0089\2\u041c\u041d\5\u0111\u0089\2\u041d")
buf.write("\u041e\5\u0111\u0089\2\u041e\u042a\3\2\2\2\u041f\u0420")
buf.write("\7w\2\2\u0420\u0421\7}\2\2\u0421\u0423\5\u0111\u0089\2")
buf.write("\u0422\u0424\5\u0111\u0089\2\u0423\u0422\3\2\2\2\u0424")
buf.write("\u0425\3\2\2\2\u0425\u0423\3\2\2\2\u0425\u0426\3\2\2\2")
buf.write("\u0426\u0427\3\2\2\2\u0427\u0428\7\177\2\2\u0428\u042a")
buf.write("\3\2\2\2\u0429\u0419\3\2\2\2\u0429\u041f\3\2\2\2\u042a")
buf.write("\u0106\3\2\2\2\u042b\u042c\7w\2\2\u042c\u042e\7}\2\2\u042d")
buf.write("\u042f\5\u0111\u0089\2\u042e\u042d\3\2\2\2\u042f\u0430")
buf.write("\3\2\2\2\u0430\u042e\3\2\2\2\u0430\u0431\3\2\2\2\u0431")
buf.write("\u0432\3\2\2\2\u0432\u0433\7\177\2\2\u0433\u0108\3\2\2")
buf.write("\2\u0434\u0435\t\21\2\2\u0435\u010a\3\2\2\2\u0436\u0437")
buf.write("\n\22\2\2\u0437\u010c\3\2\2\2\u0438\u043b\5\u0109\u0085")
buf.write("\2\u0439\u043b\t\23\2\2\u043a\u0438\3\2\2\2\u043a\u0439")
buf.write("\3\2\2\2\u043b\u010e\3\2\2\2\u043c\u043d\7^\2\2\u043d")
buf.write("\u043e\t\2\2\2\u043e\u0110\3\2\2\2\u043f\u0440\t\24\2")
buf.write("\2\u0440\u0112\3\2\2\2\u0441\u044a\7\62\2\2\u0442\u0446")
buf.write("\t\25\2\2\u0443\u0445\t\4\2\2\u0444\u0443\3\2\2\2\u0445")
buf.write("\u0448\3\2\2\2\u0446\u0444\3\2\2\2\u0446\u0447\3\2\2\2")
buf.write("\u0447\u044a\3\2\2\2\u0448\u0446\3\2\2\2\u0449\u0441\3")
buf.write("\2\2\2\u0449\u0442\3\2\2\2\u044a\u0114\3\2\2\2\u044b\u044d")
buf.write("\t\26\2\2\u044c\u044e\t\27\2\2\u044d\u044c\3\2\2\2\u044d")
buf.write("\u044e\3\2\2\2\u044e\u0450\3\2\2\2\u044f\u0451\t\4\2\2")
buf.write("\u0450\u044f\3\2\2\2\u0451\u0452\3\2\2\2\u0452\u0450\3")
buf.write("\2\2\2\u0452\u0453\3\2\2\2\u0453\u0116\3\2\2\2\u0454\u045a")
buf.write("\5\u0119\u008d\2\u0455\u045a\5\u011d\u008f\2\u0456\u045a")
buf.write("\5\u011f\u0090\2\u0457\u045a\5\u0121\u0091\2\u0458\u045a")
buf.write("\4\u200e\u200f\2\u0459\u0454\3\2\2\2\u0459\u0455\3\2\2")
buf.write("\2\u0459\u0456\3\2\2\2\u0459\u0457\3\2\2\2\u0459\u0458")
buf.write("\3\2\2\2\u045a\u0118\3\2\2\2\u045b\u0460\5\u011b\u008e")
buf.write("\2\u045c\u0460\t\30\2\2\u045d\u045e\7^\2\2\u045e\u0460")
buf.write("\5\u0105\u0083\2\u045f\u045b\3\2\2\2\u045f\u045c\3\2\2")
buf.write("\2\u045f\u045d\3\2\2\2\u0460\u011a\3\2\2\2\u0461\u0463")
buf.write("\t\31\2\2\u0462\u0461\3\2\2\2\u0463\u011c\3\2\2\2\u0464")
buf.write("\u0466\t\32\2\2\u0465\u0464\3\2\2\2\u0466\u011e\3\2\2")
buf.write("\2\u0467\u0469\t\33\2\2\u0468\u0467\3\2\2\2\u0469\u0120")
buf.write("\3\2\2\2\u046a\u046c\t\34\2\2\u046b\u046a\3\2\2\2\u046c")
buf.write("\u0122\3\2\2\2\u046d\u0478\n\35\2\2\u046e\u0478\5\u0129")
buf.write("\u0095\2\u046f\u0473\7]\2\2\u0470\u0472\5\u0127\u0094")
buf.write("\2\u0471\u0470\3\2\2\2\u0472\u0475\3\2\2\2\u0473\u0471")
buf.write("\3\2\2\2\u0473\u0474\3\2\2\2\u0474\u0476\3\2\2\2\u0475")
buf.write("\u0473\3\2\2\2\u0476\u0478\7_\2\2\u0477\u046d\3\2\2\2")
buf.write("\u0477\u046e\3\2\2\2\u0477\u046f\3\2\2\2\u0478\u0124\3")
buf.write("\2\2\2\u0479\u0484\n\36\2\2\u047a\u0484\5\u0129\u0095")
buf.write("\2\u047b\u047f\7]\2\2\u047c\u047e\5\u0127\u0094\2\u047d")
buf.write("\u047c\3\2\2\2\u047e\u0481\3\2\2\2\u047f\u047d\3\2\2\2")
buf.write("\u047f\u0480\3\2\2\2\u0480\u0482\3\2\2\2\u0481\u047f\3")
buf.write("\2\2\2\u0482\u0484\7_\2\2\u0483\u0479\3\2\2\2\u0483\u047a")
buf.write("\3\2\2\2\u0483\u047b\3\2\2\2\u0484\u0126\3\2\2\2\u0485")
buf.write("\u0488\n\37\2\2\u0486\u0488\5\u0129\u0095\2\u0487\u0485")
buf.write("\3\2\2\2\u0487\u0486\3\2\2\2\u0488\u0128\3\2\2\2\u0489")
buf.write("\u048a\7^\2\2\u048a\u048b\n\2\2\2\u048b\u012a\3\2\2\2")
buf.write("\66\2\u0132\u013b\u0149\u0153\u015b\u0200\u0208\u020c")
buf.write("\u0213\u0217\u021b\u021d\u0225\u022c\u0236\u023f\u0248")
buf.write("\u0253\u025e\u03a6\u03ad\u03b5\u03b9\u03c1\u03c3\u03cb")
buf.write("\u03db\u03f1\u0402\u0408\u040f\u0413\u0425\u0429\u0430")
buf.write("\u043a\u0446\u0449\u044d\u0452\u0459\u045f\u0462\u0465")
buf.write("\u0468\u046b\u0473\u0477\u047f\u0483\u0487\7\2\3\2\3\n")
buf.write("\2\3\13\3\3w\4\2\4\2")
return buf.getvalue()
from JavaScriptLexerBase import *
class JavaScriptLexer(JavaScriptLexerBase):
atn = ATNDeserializer().deserialize(serializedATN())
decisionsToDFA = [ DFA(ds, i) for i, ds in enumerate(atn.decisionToState) ]
ERROR = 2
HashBangLine = 1
MultiLineComment = 2
SingleLineComment = 3
RegularExpressionLiteral = 4
OpenBracket = 5
CloseBracket = 6
OpenParen = 7
CloseParen = 8
OpenBrace = 9
CloseBrace = 10
SemiColon = 11
Comma = 12
Assign = 13
QuestionMark = 14
Colon = 15
Ellipsis = 16
Dot = 17
PlusPlus = 18
MinusMinus = 19
Plus = 20
Minus = 21
BitNot = 22
Not = 23
Multiply = 24
Divide = 25
Modulus = 26
Power = 27
NullCoalesce = 28
Hashtag = 29
RightShiftArithmetic = 30
LeftShiftArithmetic = 31
RightShiftLogical = 32
LessThan = 33
MoreThan = 34
LessThanEquals = 35
GreaterThanEquals = 36
Equals_ = 37
NotEquals = 38
IdentityEquals = 39
IdentityNotEquals = 40
BitAnd = 41
BitXOr = 42
BitOr = 43
And = 44
Or = 45
MultiplyAssign = 46
DivideAssign = 47
ModulusAssign = 48
PlusAssign = 49
MinusAssign = 50
LeftShiftArithmeticAssign = 51
RightShiftArithmeticAssign = 52
RightShiftLogicalAssign = 53
BitAndAssign = 54
BitXorAssign = 55
BitOrAssign = 56
PowerAssign = 57
ARROW = 58
NullLiteral = 59
BooleanLiteral = 60
DecimalLiteral = 61
HexIntegerLiteral = 62
OctalIntegerLiteral = 63
OctalIntegerLiteral2 = 64
BinaryIntegerLiteral = 65
BigHexIntegerLiteral = 66
BigOctalIntegerLiteral = 67
BigBinaryIntegerLiteral = 68
BigDecimalIntegerLiteral = 69
Break = 70
Do = 71
Instanceof = 72
Typeof = 73
Case = 74
Else = 75
New = 76
Var = 77
Catch = 78
Finally = 79
Return = 80
Void = 81
Continue = 82
For = 83
Switch = 84
While = 85
Debugger = 86
Function = 87
This = 88
With = 89
Default = 90
If = 91
Throw = 92
Delete = 93
In = 94
Try = 95
As = 96
From = 97
Class = 98
Enum = 99
Extends = 100
Super = 101
Const = 102
Export = 103
Import = 104
Async = 105
Await = 106
Implements = 107
StrictLet = 108
NonStrictLet = 109
Private = 110
Public = 111
Interface = 112
Package = 113
Protected = 114
Static = 115
Yield = 116
Identifier = 117
StringLiteral = 118
TemplateStringLiteral = 119
WhiteSpaces = 120
LineTerminator = 121
HtmlComment = 122
CDataComment = 123
UnexpectedCharacter = 124
channelNames = [ u"DEFAULT_TOKEN_CHANNEL", u"HIDDEN", u"ERROR" ]
modeNames = [ "DEFAULT_MODE" ]
literalNames = [ "<INVALID>",
"'['", "']'", "'('", "')'", "'{'", "'}'", "';'", "','", "'='",
"'?'", "':'", "'...'", "'.'", "'++'", "'--'", "'+'", "'-'",
"'~'", "'!'", "'*'", "'/'", "'%'", "'**'", "'??'", "'#'", "'>>'",
"'<<'", "'>>>'", "'<'", "'>'", "'<='", "'>='", "'=='", "'!='",
"'==='", "'!=='", "'&'", "'^'", "'|'", "'&&'", "'||'", "'*='",
"'/='", "'%='", "'+='", "'-='", "'<<='", "'>>='", "'>>>='",
"'&='", "'^='", "'|='", "'**='", "'=>'", "'null'", "'break'",
"'do'", "'instanceof'", "'typeof'", "'case'", "'else'", "'new'",
"'var'", "'catch'", "'finally'", "'return'", "'void'", "'continue'",
"'for'", "'switch'", "'while'", "'debugger'", "'function'",
"'this'", "'with'", "'default'", "'if'", "'throw'", "'delete'",
"'in'", "'try'", "'as'", "'from'", "'class'", "'enum'", "'extends'",
"'super'", "'const'", "'export'", "'import'", "'async'", "'await'",
"'implements'", "'private'", "'public'", "'interface'", "'package'",
"'protected'", "'static'", "'yield'" ]
symbolicNames = [ "<INVALID>",
"HashBangLine", "MultiLineComment", "SingleLineComment", "RegularExpressionLiteral",
"OpenBracket", "CloseBracket", "OpenParen", "CloseParen", "OpenBrace",
"CloseBrace", "SemiColon", "Comma", "Assign", "QuestionMark",
"Colon", "Ellipsis", "Dot", "PlusPlus", "MinusMinus", "Plus",
"Minus", "BitNot", "Not", "Multiply", "Divide", "Modulus", "Power",
"NullCoalesce", "Hashtag", "RightShiftArithmetic", "LeftShiftArithmetic",
"RightShiftLogical", "LessThan", "MoreThan", "LessThanEquals",
"GreaterThanEquals", "Equals_", "NotEquals", "IdentityEquals",
"IdentityNotEquals", "BitAnd", "BitXOr", "BitOr", "And", "Or",
"MultiplyAssign", "DivideAssign", "ModulusAssign", "PlusAssign",
"MinusAssign", "LeftShiftArithmeticAssign", "RightShiftArithmeticAssign",
"RightShiftLogicalAssign", "BitAndAssign", "BitXorAssign", "BitOrAssign",
"PowerAssign", "ARROW", "NullLiteral", "BooleanLiteral", "DecimalLiteral",
"HexIntegerLiteral", "OctalIntegerLiteral", "OctalIntegerLiteral2",
"BinaryIntegerLiteral", "BigHexIntegerLiteral", "BigOctalIntegerLiteral",
"BigBinaryIntegerLiteral", "BigDecimalIntegerLiteral", "Break",
"Do", "Instanceof", "Typeof", "Case", "Else", "New", "Var",
"Catch", "Finally", "Return", "Void", "Continue", "For", "Switch",
"While", "Debugger", "Function", "This", "With", "Default",
"If", "Throw", "Delete", "In", "Try", "As", "From", "Class",
"Enum", "Extends", "Super", "Const", "Export", "Import", "Async",
"Await", "Implements", "StrictLet", "NonStrictLet", "Private",
"Public", "Interface", "Package", "Protected", "Static", "Yield",
"Identifier", "StringLiteral", "TemplateStringLiteral", "WhiteSpaces",
"LineTerminator", "HtmlComment", "CDataComment", "UnexpectedCharacter" ]
ruleNames = [ "HashBangLine", "MultiLineComment", "SingleLineComment",
"RegularExpressionLiteral", "OpenBracket", "CloseBracket",
"OpenParen", "CloseParen", "OpenBrace", "CloseBrace",
"SemiColon", "Comma", "Assign", "QuestionMark", "Colon",
"Ellipsis", "Dot", "PlusPlus", "MinusMinus", "Plus", "Minus",
"BitNot", "Not", "Multiply", "Divide", "Modulus", "Power",
"NullCoalesce", "Hashtag", "RightShiftArithmetic", "LeftShiftArithmetic",
"RightShiftLogical", "LessThan", "MoreThan", "LessThanEquals",
"GreaterThanEquals", "Equals_", "NotEquals", "IdentityEquals",
"IdentityNotEquals", "BitAnd", "BitXOr", "BitOr", "And",
"Or", "MultiplyAssign", "DivideAssign", "ModulusAssign",
"PlusAssign", "MinusAssign", "LeftShiftArithmeticAssign",
"RightShiftArithmeticAssign", "RightShiftLogicalAssign",
"BitAndAssign", "BitXorAssign", "BitOrAssign", "PowerAssign",
"ARROW", "NullLiteral", "BooleanLiteral", "DecimalLiteral",
"HexIntegerLiteral", "OctalIntegerLiteral", "OctalIntegerLiteral2",
"BinaryIntegerLiteral", "BigHexIntegerLiteral", "BigOctalIntegerLiteral",
"BigBinaryIntegerLiteral", "BigDecimalIntegerLiteral",
"Break", "Do", "Instanceof", "Typeof", "Case", "Else",
"New", "Var", "Catch", "Finally", "Return", "Void", "Continue",
"For", "Switch", "While", "Debugger", "Function", "This",
"With", "Default", "If", "Throw", "Delete", "In", "Try",
"As", "From", "Class", "Enum", "Extends", "Super", "Const",
"Export", "Import", "Async", "Await", "Implements", "StrictLet",
"NonStrictLet", "Private", "Public", "Interface", "Package",
"Protected", "Static", "Yield", "Identifier", "StringLiteral",
"TemplateStringLiteral", "WhiteSpaces", "LineTerminator",
"HtmlComment", "CDataComment", "UnexpectedCharacter",
"DoubleStringCharacter", "SingleStringCharacter", "EscapeSequence",
"CharacterEscapeSequence", "HexEscapeSequence", "UnicodeEscapeSequence",
"ExtendedUnicodeEscapeSequence", "SingleEscapeCharacter",
"NonEscapeCharacter", "EscapeCharacter", "LineContinuation",
"HexDigit", "DecimalIntegerLiteral", "ExponentPart", "IdentifierPart",
"IdentifierStart", "UnicodeLetter", "UnicodeCombiningMark",
"UnicodeDigit", "UnicodeConnectorPunctuation", "RegularExpressionFirstChar",
"RegularExpressionChar", "RegularExpressionClassChar",
"RegularExpressionBackslashSequence" ]
grammarFileName = "JavaScriptLexer.g4"
def __init__(self, input=None, output:TextIO = sys.stdout):
super().__init__(input, output)
self.checkVersion("4.7.1")
self._interp = LexerATNSimulator(self, self.atn, self.decisionsToDFA, PredictionContextCache())
self._actions = None
self._predicates = None
def action(self, localctx:RuleContext, ruleIndex:int, actionIndex:int):
if self._actions is None:
actions = dict()
actions[8] = self.OpenBrace_action
actions[9] = self.CloseBrace_action
actions[117] = self.StringLiteral_action
self._actions = actions
action = self._actions.get(ruleIndex, None)
if action is not None:
action(localctx, actionIndex)
else:
raise Exception("No registered action for:" + str(ruleIndex))
def OpenBrace_action(self, localctx:RuleContext , actionIndex:int):
if actionIndex == 0:
self.processOpenBrace()
def CloseBrace_action(self, localctx:RuleContext , actionIndex:int):
if actionIndex == 1:
self.processCloseBrace()
def StringLiteral_action(self, localctx:RuleContext , actionIndex:int):
if actionIndex == 2:
self.processStringLiteral()
def sempred(self, localctx:RuleContext, ruleIndex:int, predIndex:int):
if self._predicates is None:
preds = dict()
preds[0] = self.HashBangLine_sempred
preds[3] = self.RegularExpressionLiteral_sempred
preds[62] = self.OctalIntegerLiteral_sempred
preds[106] = self.Implements_sempred
preds[107] = self.StrictLet_sempred
preds[108] = self.NonStrictLet_sempred
preds[109] = self.Private_sempred
preds[110] = self.Public_sempred
preds[111] = self.Interface_sempred
preds[112] = self.Package_sempred
preds[113] = self.Protected_sempred
preds[114] = self.Static_sempred
preds[115] = self.Yield_sempred
self._predicates = preds
pred = self._predicates.get(ruleIndex, None)
if pred is not None:
return pred(localctx, predIndex)
else:
raise Exception("No registered predicate for:" + str(ruleIndex))
def HashBangLine_sempred(self, localctx:RuleContext, predIndex:int):
if predIndex == 0:
return self.isStartOfFile()
def RegularExpressionLiteral_sempred(self, localctx:RuleContext, predIndex:int):
if predIndex == 1:
return self.isRegexPossible()
def OctalIntegerLiteral_sempred(self, localctx:RuleContext, predIndex:int):
if predIndex == 2:
return not self.isStrictMode()
def Implements_sempred(self, localctx:RuleContext, predIndex:int):
if predIndex == 3:
return self.isStrictMode()
def StrictLet_sempred(self, localctx:RuleContext, predIndex:int):
if predIndex == 4:
return self.isStrictMode()
def NonStrictLet_sempred(self, localctx:RuleContext, predIndex:int):
if predIndex == 5:
return not self.isStrictMode()
def Private_sempred(self, localctx:RuleContext, predIndex:int):
if predIndex == 6:
return self.isStrictMode()
def Public_sempred(self, localctx:RuleContext, predIndex:int):
if predIndex == 7:
return self.isStrictMode()
def Interface_sempred(self, localctx:RuleContext, predIndex:int):
if predIndex == 8:
return self.isStrictMode()
def Package_sempred(self, localctx:RuleContext, predIndex:int):
if predIndex == 9:
return self.isStrictMode()
def Protected_sempred(self, localctx:RuleContext, predIndex:int):
if predIndex == 10:
return self.isStrictMode()
def Static_sempred(self, localctx:RuleContext, predIndex:int):
if predIndex == 11:
return self.isStrictMode()
def Yield_sempred(self, localctx:RuleContext, predIndex:int):
if predIndex == 12:
return self.isStrictMode()