@plurnk/plurnk-contracts 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +119 -0
  3. package/SPEC.md +954 -0
  4. package/bin/plurnk-contracts.js +43 -0
  5. package/dist/plurnk.gbnf +394 -0
  6. package/dist/schema/ClientDisplayCapabilities.json +54 -0
  7. package/dist/schema/ClientStatement.json +68 -0
  8. package/dist/schema/EntryReadResult.json +101 -0
  9. package/dist/schema/LineMarker.json +16 -0
  10. package/dist/schema/LoopFlags.json +16 -0
  11. package/dist/schema/MatcherBody.json +84 -0
  12. package/dist/schema/Notice.json +67 -0
  13. package/dist/schema/OperationResult.json +44 -0
  14. package/dist/schema/ParsedPath.json +64 -0
  15. package/dist/schema/PlurnkStatement.json +264 -0
  16. package/dist/schema/Position.json +20 -0
  17. package/dist/schema/ProblemDetails.json +51 -0
  18. package/dist/schema/ProposalDisposition.json +26 -0
  19. package/dist/schema/ProposalProjection.json +44 -0
  20. package/dist/schema/ProviderCost.json +69 -0
  21. package/dist/schema/ResourceSelection.json +20 -0
  22. package/dist/schema/SendBody.json +13 -0
  23. package/dist/schema/TextRegion.json +31 -0
  24. package/dist/src/AstBuilder.d.ts +24 -0
  25. package/dist/src/AstBuilder.d.ts.map +1 -0
  26. package/dist/src/AstBuilder.js +609 -0
  27. package/dist/src/AstBuilder.js.map +1 -0
  28. package/dist/src/PathSyntax.d.ts +9 -0
  29. package/dist/src/PathSyntax.d.ts.map +1 -0
  30. package/dist/src/PathSyntax.js +36 -0
  31. package/dist/src/PathSyntax.js.map +1 -0
  32. package/dist/src/PlurnkErrorStrategy.d.ts +10 -0
  33. package/dist/src/PlurnkErrorStrategy.d.ts.map +1 -0
  34. package/dist/src/PlurnkErrorStrategy.js +147 -0
  35. package/dist/src/PlurnkErrorStrategy.js.map +1 -0
  36. package/dist/src/PlurnkParseError.d.ts +17 -0
  37. package/dist/src/PlurnkParseError.d.ts.map +1 -0
  38. package/dist/src/PlurnkParseError.js +24 -0
  39. package/dist/src/PlurnkParseError.js.map +1 -0
  40. package/dist/src/PlurnkParser.d.ts +9 -0
  41. package/dist/src/PlurnkParser.d.ts.map +1 -0
  42. package/dist/src/PlurnkParser.js +396 -0
  43. package/dist/src/PlurnkParser.js.map +1 -0
  44. package/dist/src/Problems.d.ts +8 -0
  45. package/dist/src/Problems.d.ts.map +1 -0
  46. package/dist/src/Problems.js +23 -0
  47. package/dist/src/Problems.js.map +1 -0
  48. package/dist/src/RecordingListener.d.ts +9 -0
  49. package/dist/src/RecordingListener.d.ts.map +1 -0
  50. package/dist/src/RecordingListener.js +19 -0
  51. package/dist/src/RecordingListener.js.map +1 -0
  52. package/dist/src/Validator.d.ts +49 -0
  53. package/dist/src/Validator.d.ts.map +1 -0
  54. package/dist/src/Validator.js +211 -0
  55. package/dist/src/Validator.js.map +1 -0
  56. package/dist/src/generated/plurnkLexer.d.ts +129 -0
  57. package/dist/src/generated/plurnkLexer.d.ts.map +1 -0
  58. package/dist/src/generated/plurnkLexer.js +808 -0
  59. package/dist/src/generated/plurnkLexer.js.map +1 -0
  60. package/dist/src/generated/plurnkParser.d.ts +525 -0
  61. package/dist/src/generated/plurnkParser.d.ts.map +1 -0
  62. package/dist/src/generated/plurnkParser.js +3896 -0
  63. package/dist/src/generated/plurnkParser.js.map +1 -0
  64. package/dist/src/generated/plurnkParserVisitor.d.ts +298 -0
  65. package/dist/src/generated/plurnkParserVisitor.d.ts.map +1 -0
  66. package/dist/src/generated/plurnkParserVisitor.js +257 -0
  67. package/dist/src/generated/plurnkParserVisitor.js.map +1 -0
  68. package/dist/src/index.d.ts +13 -0
  69. package/dist/src/index.d.ts.map +1 -0
  70. package/dist/src/index.js +10 -0
  71. package/dist/src/index.js.map +1 -0
  72. package/dist/src/types.d.ts +29 -0
  73. package/dist/src/types.d.ts.map +1 -0
  74. package/dist/src/types.generated.d.ts +450 -0
  75. package/dist/src/types.generated.d.ts.map +1 -0
  76. package/dist/src/types.generated.js +4 -0
  77. package/dist/src/types.generated.js.map +1 -0
  78. package/dist/src/types.js +23 -0
  79. package/dist/src/types.js.map +1 -0
  80. package/package.json +87 -0
  81. package/plurnk.md +220 -0
@@ -0,0 +1,808 @@
1
+ import * as antlr from "antlr4ng";
2
+ export class plurnkLexer extends antlr.Lexer {
3
+ static LBRACKET = 1;
4
+ static RBRACKET = 2;
5
+ static LPAREN = 3;
6
+ static RPAREN = 4;
7
+ static L_MARKER = 5;
8
+ static COLON = 6;
9
+ static COMMA = 7;
10
+ static INT = 8;
11
+ static DISPOSITION = 9;
12
+ static IDENT = 10;
13
+ static TAG = 11;
14
+ static TARGET_TEXT = 12;
15
+ static BODY_TEXT = 13;
16
+ static CLOSE_TAG = 14;
17
+ static TEXT = 15;
18
+ static OPEN_TURN = 16;
19
+ static CLOSE_TURN = 17;
20
+ static OPEN_FIND = 18;
21
+ static OPEN_READ = 19;
22
+ static OPEN_EDIT = 20;
23
+ static OPEN_COPY = 21;
24
+ static OPEN_MOVE = 22;
25
+ static OPEN_OPEN = 23;
26
+ static OPEN_FOLD = 24;
27
+ static OPEN_SEND = 25;
28
+ static OPEN_EXEC = 26;
29
+ static OPEN_WORK = 27;
30
+ static OPEN_FORK = 28;
31
+ static OPEN_KILL = 29;
32
+ static OPEN_PLAN = 30;
33
+ static OPEN_LOOK = 31;
34
+ static OPEN_BUFF = 32;
35
+ static WS = 33;
36
+ static SLOTS_WS = 34;
37
+ static ST_WS = 35;
38
+ static SI_WS = 36;
39
+ static SD_WS = 37;
40
+ static ST_COMMA = 38;
41
+ static TARGET_BACKSLASH = 39;
42
+ static B_COLON = 40;
43
+ static SLOTS = 1;
44
+ static SIGNAL_TAGS = 2;
45
+ static SIGNAL_INT = 3;
46
+ static SIGNAL_IDENT = 4;
47
+ static TARGET = 5;
48
+ static BODY = 6;
49
+ static channelNames = [
50
+ "DEFAULT_TOKEN_CHANNEL", "HIDDEN"
51
+ ];
52
+ static literalNames = [
53
+ null, null, null, null, null, null, null, null, null, null, null,
54
+ null, null, null, null, null, null, null, null, null, null, null,
55
+ null, null, null, null, null, null, null, null, null, null, null,
56
+ null, null, null, null, null, "','", "'\\'", "':'"
57
+ ];
58
+ static symbolicNames = [
59
+ null, "LBRACKET", "RBRACKET", "LPAREN", "RPAREN", "L_MARKER", "COLON",
60
+ "COMMA", "INT", "DISPOSITION", "IDENT", "TAG", "TARGET_TEXT", "BODY_TEXT",
61
+ "CLOSE_TAG", "TEXT", "OPEN_TURN", "CLOSE_TURN", "OPEN_FIND", "OPEN_READ",
62
+ "OPEN_EDIT", "OPEN_COPY", "OPEN_MOVE", "OPEN_OPEN", "OPEN_FOLD",
63
+ "OPEN_SEND", "OPEN_EXEC", "OPEN_WORK", "OPEN_FORK", "OPEN_KILL",
64
+ "OPEN_PLAN", "OPEN_LOOK", "OPEN_BUFF", "WS", "SLOTS_WS", "ST_WS",
65
+ "SI_WS", "SD_WS", "ST_COMMA", "TARGET_BACKSLASH", "B_COLON"
66
+ ];
67
+ static modeNames = [
68
+ "DEFAULT_MODE", "SLOTS", "SIGNAL_TAGS", "SIGNAL_INT", "SIGNAL_IDENT",
69
+ "TARGET", "BODY",
70
+ ];
71
+ static ruleNames = [
72
+ "SUFFIX", "NUM", "L_PATTERN", "OPEN_FIND", "OPEN_READ", "OPEN_EDIT",
73
+ "OPEN_COPY", "OPEN_MOVE", "OPEN_OPEN", "OPEN_FOLD", "OPEN_SEND",
74
+ "OPEN_EXEC", "OPEN_WORK", "OPEN_FORK", "OPEN_KILL", "OPEN_PLAN",
75
+ "OPEN_TURN", "OPEN_LOOK", "OPEN_BUFF", "WS", "THINK_BLOCK", "CHANNEL_BLOCK",
76
+ "CLOSE_TURN", "TEXT", "SLOTS_WS", "SLOTS_LB_TAGS", "SLOTS_LB_INT",
77
+ "SLOTS_LB_IDENT", "SLOTS_LPAREN", "SLOTS_L", "SLOTS_EMPTY_CLOSE",
78
+ "SLOTS_COLON_TURN", "SLOTS_COLON", "ST_WS", "ST_COMMA", "ST_TAG",
79
+ "ST_END", "SI_WS", "SI_DISP", "SI_INT", "SI_END", "SD_WS", "SD_IDENT",
80
+ "SD_END", "TARGET_ESCAPE", "TARGET_INNER", "TARGET_BACKSLASH", "TARGET_NEST_OPEN",
81
+ "TARGET_NEST_END", "TARGET_END", "B_CLOSE", "B_RUN", "B_COLON",
82
+ ];
83
+ openTag = "";
84
+ openTagLine = 0;
85
+ openTagColumn = 0;
86
+ bodyStart = null;
87
+ targetDepth = 0;
88
+ setOpenTag() {
89
+ this.openTag = this.text.substring(2);
90
+ // Capture where the open tag began, for reference in mismatched-close-tag errors.
91
+ this.openTagLine = this.currentTokenStartLine;
92
+ this.openTagColumn = this.currentTokenColumn;
93
+ this.bodyStart = null;
94
+ }
95
+ getOpenTag() { return this.openTag; }
96
+ getOpenTagLine() { return this.openTagLine; }
97
+ getOpenTagColumn() { return this.openTagColumn; }
98
+ setBodyStart() {
99
+ this.bodyStart = { line: this.line, column: this.column };
100
+ }
101
+ getBodyStart() {
102
+ if (this.bodyStart === null)
103
+ throw new Error("BODY start requested before entering BODY mode");
104
+ return this.bodyStart;
105
+ }
106
+ atColonCloseTag() {
107
+ if (this.inputStream.LA(1) !== 0x3A /* ':' */)
108
+ return false;
109
+ const tag = this.openTag;
110
+ if (tag.length === 0)
111
+ return false;
112
+ for (let i = 0; i < tag.length; i++) {
113
+ if (this.inputStream.LA(i + 2) !== tag.charCodeAt(i))
114
+ return false;
115
+ }
116
+ const followChar = this.inputStream.LA(tag.length + 2);
117
+ if (followChar > 0 && this.isIdentChar(followChar))
118
+ return false;
119
+ return true;
120
+ }
121
+ isIdentChar(c) {
122
+ return (c >= 0x30 && c <= 0x39) ||
123
+ (c >= 0x41 && c <= 0x5A) ||
124
+ (c >= 0x61 && c <= 0x7A) ||
125
+ c === 0x5F;
126
+ }
127
+ consumeRestOfCloseTagAfterColon() {
128
+ const remaining = this.openTag.length - 1;
129
+ for (let i = 0; i < remaining; i++) {
130
+ // Consume through the simulator so its line/column state advances with
131
+ // the character stream. Direct CharStream consumption corrupts every
132
+ // later token position by the number of skipped closer characters.
133
+ this.interpreter.consume(this.inputStream);
134
+ }
135
+ }
136
+ isOpKeywordAfterLtLt() {
137
+ // The full minted op keyword set across all tiers — protocol (FIND…PLAN), script (TURN),
138
+ // and client (LOOK/BUFF). Membership here means `<<KW` lexes as an opener, NOT prose, so a
139
+ // client op in a protocol/script position becomes an OPEN_* token the parser then rejects
140
+ // (territorial integrity: a minted op fails hard out of tier, it never masquerades as text).
141
+ const ops = ["FIND", "READ", "EDIT", "COPY", "MOVE", "OPEN", "FOLD", "SEND", "EXEC", "WORK", "FORK", "KILL", "PLAN", "TURN", "LOOK", "BUFF"];
142
+ for (const op of ops) {
143
+ let matches = true;
144
+ for (let i = 0; i < op.length; i++) {
145
+ if (this.inputStream.LA(i + 1) !== op.charCodeAt(i)) {
146
+ matches = false;
147
+ break;
148
+ }
149
+ }
150
+ if (matches)
151
+ return true;
152
+ }
153
+ return false;
154
+ }
155
+ isSendOp() { return this.openTag.startsWith("SEND"); }
156
+ isExecOp() { return this.openTag.startsWith("EXEC"); }
157
+ isKillOp() { return this.openTag.startsWith("KILL"); }
158
+ isTurnOp() { return this.openTag.startsWith("TURN"); }
159
+ // TURN suffix stack — one entry per open `<<TURN…:` body (pushed by the TURN colon below,
160
+ // popped by `:TURN`). Stack depth doubles as nesting depth: a `:TURN` close only fires inside
161
+ // an open TURN, so a stray `:TURN` at top level (or in preamble prose) stays TEXT.
162
+ turnSuffixStack = [];
163
+ // True when the stream is at the matching `:TURN<suffix>` close for the innermost open TURN.
164
+ // Mirrors atColonCloseTag: exact suffix match AND a non-ident follow char, so `:TURNING` (or
165
+ // a mismatched `:TURN2` for a `<<TURN1`) does NOT false-close inside a turn's prose.
166
+ atTurnCloseTag() {
167
+ if (this.turnSuffixStack.length === 0)
168
+ return false;
169
+ if (this.inputStream.LA(1) !== 0x3A /* ':' */)
170
+ return false;
171
+ const tag = "TURN" + this.turnSuffixStack[this.turnSuffixStack.length - 1];
172
+ for (let i = 0; i < tag.length; i++) {
173
+ if (this.inputStream.LA(i + 2) !== tag.charCodeAt(i))
174
+ return false;
175
+ }
176
+ const followChar = this.inputStream.LA(tag.length + 2);
177
+ if (followChar > 0 && this.isIdentChar(followChar))
178
+ return false;
179
+ return true;
180
+ }
181
+ // Narrow single-colon empty-body close: at the post-target/modifier `:`, the stream is the
182
+ // op's own close tag `:OP<suffix>` AND it is followed by a STATEMENT BOUNDARY
183
+ // (newline / EOF / optional horizontal space then next `<<`). So `<<READ(t):READ\n` closes empty, but a bodied op whose body
184
+ // starts with the op keyword (`<<EDIT(t):EDIT this:EDIT` — space follows) is NOT mis-closed.
185
+ // Canon still prescribes `::OP`; this only forgives the HEREDOC-natural single colon.
186
+ atSlotsEmptyClose() {
187
+ if (this.isTurnOp())
188
+ return false; // TURN closes with :TURN, not an empty body
189
+ if (this.openTag.length === 0)
190
+ return false;
191
+ if (this.inputStream.LA(1) !== 0x3A /* ':' */)
192
+ return false;
193
+ const tag = this.openTag;
194
+ for (let i = 0; i < tag.length; i++) {
195
+ if (this.inputStream.LA(i + 2) !== tag.charCodeAt(i))
196
+ return false;
197
+ }
198
+ let offset = tag.length + 2;
199
+ let follow = this.inputStream.LA(offset);
200
+ while (follow === 0x20 /* space */ || follow === 0x09 /* tab */) {
201
+ follow = this.inputStream.LA(++offset);
202
+ }
203
+ return follow <= 0
204
+ || follow === 0x0A /* \n */
205
+ || follow === 0x0D /* \r */
206
+ || (follow === 0x3C /* < */ && this.inputStream.LA(offset + 1) === 0x3C /* < */);
207
+ }
208
+ constructor(input) {
209
+ super(input);
210
+ this.interpreter = new antlr.LexerATNSimulator(this, plurnkLexer._ATN, plurnkLexer.decisionsToDFA, new antlr.PredictionContextCache());
211
+ }
212
+ get grammarFileName() { return "plurnkLexer.g4"; }
213
+ get literalNames() { return plurnkLexer.literalNames; }
214
+ get symbolicNames() { return plurnkLexer.symbolicNames; }
215
+ get ruleNames() { return plurnkLexer.ruleNames; }
216
+ get serializedATN() { return plurnkLexer._serializedATN; }
217
+ get channelNames() { return plurnkLexer.channelNames; }
218
+ get modeNames() { return plurnkLexer.modeNames; }
219
+ action(localContext, ruleIndex, actionIndex) {
220
+ switch (ruleIndex) {
221
+ case 3:
222
+ this.OPEN_FIND_action(localContext, actionIndex);
223
+ break;
224
+ case 4:
225
+ this.OPEN_READ_action(localContext, actionIndex);
226
+ break;
227
+ case 5:
228
+ this.OPEN_EDIT_action(localContext, actionIndex);
229
+ break;
230
+ case 6:
231
+ this.OPEN_COPY_action(localContext, actionIndex);
232
+ break;
233
+ case 7:
234
+ this.OPEN_MOVE_action(localContext, actionIndex);
235
+ break;
236
+ case 8:
237
+ this.OPEN_OPEN_action(localContext, actionIndex);
238
+ break;
239
+ case 9:
240
+ this.OPEN_FOLD_action(localContext, actionIndex);
241
+ break;
242
+ case 10:
243
+ this.OPEN_SEND_action(localContext, actionIndex);
244
+ break;
245
+ case 11:
246
+ this.OPEN_EXEC_action(localContext, actionIndex);
247
+ break;
248
+ case 12:
249
+ this.OPEN_WORK_action(localContext, actionIndex);
250
+ break;
251
+ case 13:
252
+ this.OPEN_FORK_action(localContext, actionIndex);
253
+ break;
254
+ case 14:
255
+ this.OPEN_KILL_action(localContext, actionIndex);
256
+ break;
257
+ case 15:
258
+ this.OPEN_PLAN_action(localContext, actionIndex);
259
+ break;
260
+ case 16:
261
+ this.OPEN_TURN_action(localContext, actionIndex);
262
+ break;
263
+ case 17:
264
+ this.OPEN_LOOK_action(localContext, actionIndex);
265
+ break;
266
+ case 18:
267
+ this.OPEN_BUFF_action(localContext, actionIndex);
268
+ break;
269
+ case 22:
270
+ this.CLOSE_TURN_action(localContext, actionIndex);
271
+ break;
272
+ case 28:
273
+ this.SLOTS_LPAREN_action(localContext, actionIndex);
274
+ break;
275
+ case 30:
276
+ this.SLOTS_EMPTY_CLOSE_action(localContext, actionIndex);
277
+ break;
278
+ case 31:
279
+ this.SLOTS_COLON_TURN_action(localContext, actionIndex);
280
+ break;
281
+ case 32:
282
+ this.SLOTS_COLON_action(localContext, actionIndex);
283
+ break;
284
+ case 47:
285
+ this.TARGET_NEST_OPEN_action(localContext, actionIndex);
286
+ break;
287
+ case 48:
288
+ this.TARGET_NEST_END_action(localContext, actionIndex);
289
+ break;
290
+ case 50:
291
+ this.B_CLOSE_action(localContext, actionIndex);
292
+ break;
293
+ }
294
+ }
295
+ OPEN_FIND_action(localContext, actionIndex) {
296
+ switch (actionIndex) {
297
+ case 0:
298
+ this.setOpenTag();
299
+ break;
300
+ }
301
+ }
302
+ OPEN_READ_action(localContext, actionIndex) {
303
+ switch (actionIndex) {
304
+ case 1:
305
+ this.setOpenTag();
306
+ break;
307
+ }
308
+ }
309
+ OPEN_EDIT_action(localContext, actionIndex) {
310
+ switch (actionIndex) {
311
+ case 2:
312
+ this.setOpenTag();
313
+ break;
314
+ }
315
+ }
316
+ OPEN_COPY_action(localContext, actionIndex) {
317
+ switch (actionIndex) {
318
+ case 3:
319
+ this.setOpenTag();
320
+ break;
321
+ }
322
+ }
323
+ OPEN_MOVE_action(localContext, actionIndex) {
324
+ switch (actionIndex) {
325
+ case 4:
326
+ this.setOpenTag();
327
+ break;
328
+ }
329
+ }
330
+ OPEN_OPEN_action(localContext, actionIndex) {
331
+ switch (actionIndex) {
332
+ case 5:
333
+ this.setOpenTag();
334
+ break;
335
+ }
336
+ }
337
+ OPEN_FOLD_action(localContext, actionIndex) {
338
+ switch (actionIndex) {
339
+ case 6:
340
+ this.setOpenTag();
341
+ break;
342
+ }
343
+ }
344
+ OPEN_SEND_action(localContext, actionIndex) {
345
+ switch (actionIndex) {
346
+ case 7:
347
+ this.setOpenTag();
348
+ break;
349
+ }
350
+ }
351
+ OPEN_EXEC_action(localContext, actionIndex) {
352
+ switch (actionIndex) {
353
+ case 8:
354
+ this.setOpenTag();
355
+ break;
356
+ }
357
+ }
358
+ OPEN_WORK_action(localContext, actionIndex) {
359
+ switch (actionIndex) {
360
+ case 9:
361
+ this.setOpenTag();
362
+ break;
363
+ }
364
+ }
365
+ OPEN_FORK_action(localContext, actionIndex) {
366
+ switch (actionIndex) {
367
+ case 10:
368
+ this.setOpenTag();
369
+ break;
370
+ }
371
+ }
372
+ OPEN_KILL_action(localContext, actionIndex) {
373
+ switch (actionIndex) {
374
+ case 11:
375
+ this.setOpenTag();
376
+ break;
377
+ }
378
+ }
379
+ OPEN_PLAN_action(localContext, actionIndex) {
380
+ switch (actionIndex) {
381
+ case 12:
382
+ this.setOpenTag();
383
+ break;
384
+ }
385
+ }
386
+ OPEN_TURN_action(localContext, actionIndex) {
387
+ switch (actionIndex) {
388
+ case 13:
389
+ this.setOpenTag();
390
+ break;
391
+ }
392
+ }
393
+ OPEN_LOOK_action(localContext, actionIndex) {
394
+ switch (actionIndex) {
395
+ case 14:
396
+ this.setOpenTag();
397
+ break;
398
+ }
399
+ }
400
+ OPEN_BUFF_action(localContext, actionIndex) {
401
+ switch (actionIndex) {
402
+ case 15:
403
+ this.setOpenTag();
404
+ break;
405
+ }
406
+ }
407
+ CLOSE_TURN_action(localContext, actionIndex) {
408
+ switch (actionIndex) {
409
+ case 16:
410
+ this.turnSuffixStack.pop();
411
+ break;
412
+ }
413
+ }
414
+ SLOTS_LPAREN_action(localContext, actionIndex) {
415
+ switch (actionIndex) {
416
+ case 17:
417
+ this.targetDepth = 0;
418
+ break;
419
+ }
420
+ }
421
+ SLOTS_EMPTY_CLOSE_action(localContext, actionIndex) {
422
+ switch (actionIndex) {
423
+ case 18:
424
+ this.consumeRestOfCloseTagAfterColon();
425
+ break;
426
+ }
427
+ }
428
+ SLOTS_COLON_TURN_action(localContext, actionIndex) {
429
+ switch (actionIndex) {
430
+ case 19:
431
+ this.turnSuffixStack.push(this.openTag.substring(4));
432
+ break;
433
+ }
434
+ }
435
+ SLOTS_COLON_action(localContext, actionIndex) {
436
+ switch (actionIndex) {
437
+ case 20:
438
+ this.setBodyStart();
439
+ break;
440
+ }
441
+ }
442
+ TARGET_NEST_OPEN_action(localContext, actionIndex) {
443
+ switch (actionIndex) {
444
+ case 21:
445
+ this.targetDepth++;
446
+ break;
447
+ }
448
+ }
449
+ TARGET_NEST_END_action(localContext, actionIndex) {
450
+ switch (actionIndex) {
451
+ case 22:
452
+ this.targetDepth--;
453
+ break;
454
+ }
455
+ }
456
+ B_CLOSE_action(localContext, actionIndex) {
457
+ switch (actionIndex) {
458
+ case 23:
459
+ this.consumeRestOfCloseTagAfterColon();
460
+ break;
461
+ }
462
+ }
463
+ sempred(localContext, ruleIndex, predIndex) {
464
+ switch (ruleIndex) {
465
+ case 22:
466
+ return this.CLOSE_TURN_sempred(localContext, predIndex);
467
+ case 23:
468
+ return this.TEXT_sempred(localContext, predIndex);
469
+ case 25:
470
+ return this.SLOTS_LB_TAGS_sempred(localContext, predIndex);
471
+ case 26:
472
+ return this.SLOTS_LB_INT_sempred(localContext, predIndex);
473
+ case 27:
474
+ return this.SLOTS_LB_IDENT_sempred(localContext, predIndex);
475
+ case 30:
476
+ return this.SLOTS_EMPTY_CLOSE_sempred(localContext, predIndex);
477
+ case 31:
478
+ return this.SLOTS_COLON_TURN_sempred(localContext, predIndex);
479
+ case 48:
480
+ return this.TARGET_NEST_END_sempred(localContext, predIndex);
481
+ case 50:
482
+ return this.B_CLOSE_sempred(localContext, predIndex);
483
+ }
484
+ return true;
485
+ }
486
+ CLOSE_TURN_sempred(localContext, predIndex) {
487
+ switch (predIndex) {
488
+ case 0:
489
+ return this.atTurnCloseTag();
490
+ }
491
+ return true;
492
+ }
493
+ TEXT_sempred(localContext, predIndex) {
494
+ switch (predIndex) {
495
+ case 1:
496
+ return !this.isOpKeywordAfterLtLt();
497
+ }
498
+ return true;
499
+ }
500
+ SLOTS_LB_TAGS_sempred(localContext, predIndex) {
501
+ switch (predIndex) {
502
+ case 2:
503
+ return !this.isSendOp() && !this.isExecOp() && !this.isKillOp();
504
+ }
505
+ return true;
506
+ }
507
+ SLOTS_LB_INT_sempred(localContext, predIndex) {
508
+ switch (predIndex) {
509
+ case 3:
510
+ return this.isSendOp() || this.isKillOp();
511
+ }
512
+ return true;
513
+ }
514
+ SLOTS_LB_IDENT_sempred(localContext, predIndex) {
515
+ switch (predIndex) {
516
+ case 4:
517
+ return this.isExecOp();
518
+ }
519
+ return true;
520
+ }
521
+ SLOTS_EMPTY_CLOSE_sempred(localContext, predIndex) {
522
+ switch (predIndex) {
523
+ case 5:
524
+ return this.atSlotsEmptyClose();
525
+ }
526
+ return true;
527
+ }
528
+ SLOTS_COLON_TURN_sempred(localContext, predIndex) {
529
+ switch (predIndex) {
530
+ case 6:
531
+ return this.isTurnOp();
532
+ }
533
+ return true;
534
+ }
535
+ TARGET_NEST_END_sempred(localContext, predIndex) {
536
+ switch (predIndex) {
537
+ case 7:
538
+ return this.targetDepth > 0;
539
+ }
540
+ return true;
541
+ }
542
+ B_CLOSE_sempred(localContext, predIndex) {
543
+ switch (predIndex) {
544
+ case 8:
545
+ return this.atColonCloseTag();
546
+ }
547
+ return true;
548
+ }
549
+ static _serializedATN = [
550
+ 4, 0, 40, 659, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2,
551
+ 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2,
552
+ 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7,
553
+ 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2,
554
+ 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7,
555
+ 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2,
556
+ 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7,
557
+ 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2,
558
+ 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 1, 0, 4, 0, 115, 8, 0, 11, 0, 12, 0,
559
+ 116, 1, 1, 3, 1, 120, 8, 1, 1, 1, 4, 1, 123, 8, 1, 11, 1, 12, 1, 124, 1, 1, 1, 1, 4, 1, 129,
560
+ 8, 1, 11, 1, 12, 1, 130, 3, 1, 133, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 140, 8, 2, 3,
561
+ 2, 142, 8, 2, 1, 2, 5, 2, 145, 8, 2, 10, 2, 12, 2, 148, 9, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3,
562
+ 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 160, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4,
563
+ 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 174, 8, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5,
564
+ 1, 5, 1, 5, 1, 5, 3, 5, 188, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6,
565
+ 1, 6, 1, 6, 3, 6, 202, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7,
566
+ 1, 7, 3, 7, 216, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8,
567
+ 3, 8, 230, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9,
568
+ 244, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10,
569
+ 3, 10, 258, 8, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11,
570
+ 1, 11, 1, 11, 3, 11, 272, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12,
571
+ 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 286, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13,
572
+ 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 300, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13,
573
+ 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 314, 8, 14, 1, 14, 1, 14,
574
+ 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 328, 8, 15,
575
+ 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16,
576
+ 342, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17,
577
+ 1, 17, 1, 17, 3, 17, 357, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18,
578
+ 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 371, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 4, 19,
579
+ 378, 8, 19, 11, 19, 12, 19, 379, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20,
580
+ 1, 20, 1, 20, 1, 20, 5, 20, 393, 8, 20, 10, 20, 12, 20, 396, 9, 20, 1, 20, 1, 20, 1, 20,
581
+ 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21,
582
+ 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 421, 8, 21, 10, 21, 12, 21, 424,
583
+ 9, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21,
584
+ 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 447, 8, 22, 1, 22,
585
+ 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 4, 23, 460, 8, 23,
586
+ 11, 23, 12, 23, 461, 1, 24, 4, 24, 465, 8, 24, 11, 24, 12, 24, 466, 1, 24, 1, 24, 1, 25,
587
+ 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27,
588
+ 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29,
589
+ 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31,
590
+ 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 4, 33, 521, 8, 33,
591
+ 11, 33, 12, 33, 522, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 4, 35,
592
+ 534, 8, 35, 11, 35, 12, 35, 535, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37,
593
+ 4, 37, 546, 8, 37, 11, 37, 12, 37, 547, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38,
594
+ 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 567, 8, 38,
595
+ 1, 38, 1, 38, 1, 39, 3, 39, 572, 8, 39, 1, 39, 4, 39, 575, 8, 39, 11, 39, 12, 39, 576,
596
+ 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 4, 41, 587, 8, 41, 11, 41, 12, 41,
597
+ 588, 1, 41, 1, 41, 1, 42, 1, 42, 5, 42, 595, 8, 42, 10, 42, 12, 42, 598, 9, 42, 1, 42,
598
+ 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45,
599
+ 1, 45, 4, 45, 615, 8, 45, 11, 45, 12, 45, 616, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46,
600
+ 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49,
601
+ 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 4, 51,
602
+ 650, 8, 51, 11, 51, 12, 51, 651, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 2, 394, 422,
603
+ 0, 53, 7, 0, 9, 0, 11, 0, 13, 18, 15, 19, 17, 20, 19, 21, 21, 22, 23, 23, 25, 24, 27, 25,
604
+ 29, 26, 31, 27, 33, 28, 35, 29, 37, 30, 39, 16, 41, 31, 43, 32, 45, 33, 47, 0, 49, 0,
605
+ 51, 17, 53, 15, 55, 34, 57, 0, 59, 0, 61, 0, 63, 0, 65, 0, 67, 0, 69, 0, 71, 0, 73, 35,
606
+ 75, 38, 77, 0, 79, 0, 81, 36, 83, 0, 85, 0, 87, 0, 89, 37, 91, 0, 93, 0, 95, 0, 97, 0, 99,
607
+ 39, 101, 0, 103, 0, 105, 0, 107, 0, 109, 0, 111, 40, 7, 0, 1, 2, 3, 4, 5, 6, 12, 4, 0, 48,
608
+ 57, 65, 90, 95, 95, 97, 122, 1, 0, 48, 57, 3, 0, 9, 10, 13, 13, 32, 32, 1, 0, 60, 60, 4,
609
+ 0, 9, 10, 13, 13, 32, 32, 60, 60, 2, 0, 9, 9, 32, 32, 6, 0, 9, 10, 13, 13, 32, 32, 44, 44,
610
+ 60, 60, 93, 93, 3, 0, 65, 90, 95, 95, 97, 122, 6, 0, 43, 43, 45, 46, 48, 57, 65, 90, 95,
611
+ 95, 97, 122, 2, 0, 40, 41, 92, 92, 5, 0, 10, 10, 13, 13, 40, 41, 60, 60, 92, 92, 1, 0,
612
+ 58, 58, 696, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0,
613
+ 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0,
614
+ 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0,
615
+ 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0,
616
+ 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 1, 55, 1, 0, 0, 0, 1, 57, 1, 0, 0, 0, 1, 59, 1, 0, 0, 0, 1,
617
+ 61, 1, 0, 0, 0, 1, 63, 1, 0, 0, 0, 1, 65, 1, 0, 0, 0, 1, 67, 1, 0, 0, 0, 1, 69, 1, 0, 0, 0, 1,
618
+ 71, 1, 0, 0, 0, 2, 73, 1, 0, 0, 0, 2, 75, 1, 0, 0, 0, 2, 77, 1, 0, 0, 0, 2, 79, 1, 0, 0, 0, 3,
619
+ 81, 1, 0, 0, 0, 3, 83, 1, 0, 0, 0, 3, 85, 1, 0, 0, 0, 3, 87, 1, 0, 0, 0, 4, 89, 1, 0, 0, 0, 4,
620
+ 91, 1, 0, 0, 0, 4, 93, 1, 0, 0, 0, 5, 95, 1, 0, 0, 0, 5, 97, 1, 0, 0, 0, 5, 99, 1, 0, 0, 0, 5,
621
+ 101, 1, 0, 0, 0, 5, 103, 1, 0, 0, 0, 5, 105, 1, 0, 0, 0, 6, 107, 1, 0, 0, 0, 6, 109, 1, 0,
622
+ 0, 0, 6, 111, 1, 0, 0, 0, 7, 114, 1, 0, 0, 0, 9, 119, 1, 0, 0, 0, 11, 134, 1, 0, 0, 0, 13,
623
+ 151, 1, 0, 0, 0, 15, 165, 1, 0, 0, 0, 17, 179, 1, 0, 0, 0, 19, 193, 1, 0, 0, 0, 21, 207,
624
+ 1, 0, 0, 0, 23, 221, 1, 0, 0, 0, 25, 235, 1, 0, 0, 0, 27, 249, 1, 0, 0, 0, 29, 263, 1, 0,
625
+ 0, 0, 31, 277, 1, 0, 0, 0, 33, 291, 1, 0, 0, 0, 35, 305, 1, 0, 0, 0, 37, 319, 1, 0, 0, 0,
626
+ 39, 333, 1, 0, 0, 0, 41, 348, 1, 0, 0, 0, 43, 362, 1, 0, 0, 0, 45, 377, 1, 0, 0, 0, 47, 383,
627
+ 1, 0, 0, 0, 49, 408, 1, 0, 0, 0, 51, 438, 1, 0, 0, 0, 53, 459, 1, 0, 0, 0, 55, 464, 1, 0,
628
+ 0, 0, 57, 470, 1, 0, 0, 0, 59, 476, 1, 0, 0, 0, 61, 482, 1, 0, 0, 0, 63, 488, 1, 0, 0, 0,
629
+ 65, 494, 1, 0, 0, 0, 67, 498, 1, 0, 0, 0, 69, 506, 1, 0, 0, 0, 71, 513, 1, 0, 0, 0, 73, 520,
630
+ 1, 0, 0, 0, 75, 526, 1, 0, 0, 0, 77, 533, 1, 0, 0, 0, 79, 539, 1, 0, 0, 0, 81, 545, 1, 0,
631
+ 0, 0, 83, 566, 1, 0, 0, 0, 85, 571, 1, 0, 0, 0, 87, 580, 1, 0, 0, 0, 89, 586, 1, 0, 0, 0,
632
+ 91, 592, 1, 0, 0, 0, 93, 601, 1, 0, 0, 0, 95, 606, 1, 0, 0, 0, 97, 614, 1, 0, 0, 0, 99, 620,
633
+ 1, 0, 0, 0, 101, 624, 1, 0, 0, 0, 103, 629, 1, 0, 0, 0, 105, 635, 1, 0, 0, 0, 107, 640,
634
+ 1, 0, 0, 0, 109, 649, 1, 0, 0, 0, 111, 655, 1, 0, 0, 0, 113, 115, 7, 0, 0, 0, 114, 113,
635
+ 1, 0, 0, 0, 115, 116, 1, 0, 0, 0, 116, 114, 1, 0, 0, 0, 116, 117, 1, 0, 0, 0, 117, 8, 1,
636
+ 0, 0, 0, 118, 120, 5, 45, 0, 0, 119, 118, 1, 0, 0, 0, 119, 120, 1, 0, 0, 0, 120, 122, 1,
637
+ 0, 0, 0, 121, 123, 7, 1, 0, 0, 122, 121, 1, 0, 0, 0, 123, 124, 1, 0, 0, 0, 124, 122, 1,
638
+ 0, 0, 0, 124, 125, 1, 0, 0, 0, 125, 132, 1, 0, 0, 0, 126, 128, 5, 46, 0, 0, 127, 129, 7,
639
+ 1, 0, 0, 128, 127, 1, 0, 0, 0, 129, 130, 1, 0, 0, 0, 130, 128, 1, 0, 0, 0, 130, 131, 1,
640
+ 0, 0, 0, 131, 133, 1, 0, 0, 0, 132, 126, 1, 0, 0, 0, 132, 133, 1, 0, 0, 0, 133, 10, 1, 0,
641
+ 0, 0, 134, 135, 5, 60, 0, 0, 135, 146, 3, 9, 1, 0, 136, 142, 5, 45, 0, 0, 137, 139, 5,
642
+ 44, 0, 0, 138, 140, 5, 32, 0, 0, 139, 138, 1, 0, 0, 0, 139, 140, 1, 0, 0, 0, 140, 142,
643
+ 1, 0, 0, 0, 141, 136, 1, 0, 0, 0, 141, 137, 1, 0, 0, 0, 142, 143, 1, 0, 0, 0, 143, 145,
644
+ 3, 9, 1, 0, 144, 141, 1, 0, 0, 0, 145, 148, 1, 0, 0, 0, 146, 144, 1, 0, 0, 0, 146, 147,
645
+ 1, 0, 0, 0, 147, 149, 1, 0, 0, 0, 148, 146, 1, 0, 0, 0, 149, 150, 5, 62, 0, 0, 150, 12,
646
+ 1, 0, 0, 0, 151, 152, 5, 60, 0, 0, 152, 153, 5, 60, 0, 0, 153, 154, 5, 70, 0, 0, 154, 155,
647
+ 5, 73, 0, 0, 155, 156, 5, 78, 0, 0, 156, 157, 5, 68, 0, 0, 157, 159, 1, 0, 0, 0, 158, 160,
648
+ 3, 7, 0, 0, 159, 158, 1, 0, 0, 0, 159, 160, 1, 0, 0, 0, 160, 161, 1, 0, 0, 0, 161, 162,
649
+ 6, 3, 0, 0, 162, 163, 1, 0, 0, 0, 163, 164, 6, 3, 1, 0, 164, 14, 1, 0, 0, 0, 165, 166, 5,
650
+ 60, 0, 0, 166, 167, 5, 60, 0, 0, 167, 168, 5, 82, 0, 0, 168, 169, 5, 69, 0, 0, 169, 170,
651
+ 5, 65, 0, 0, 170, 171, 5, 68, 0, 0, 171, 173, 1, 0, 0, 0, 172, 174, 3, 7, 0, 0, 173, 172,
652
+ 1, 0, 0, 0, 173, 174, 1, 0, 0, 0, 174, 175, 1, 0, 0, 0, 175, 176, 6, 4, 2, 0, 176, 177,
653
+ 1, 0, 0, 0, 177, 178, 6, 4, 1, 0, 178, 16, 1, 0, 0, 0, 179, 180, 5, 60, 0, 0, 180, 181,
654
+ 5, 60, 0, 0, 181, 182, 5, 69, 0, 0, 182, 183, 5, 68, 0, 0, 183, 184, 5, 73, 0, 0, 184,
655
+ 185, 5, 84, 0, 0, 185, 187, 1, 0, 0, 0, 186, 188, 3, 7, 0, 0, 187, 186, 1, 0, 0, 0, 187,
656
+ 188, 1, 0, 0, 0, 188, 189, 1, 0, 0, 0, 189, 190, 6, 5, 3, 0, 190, 191, 1, 0, 0, 0, 191,
657
+ 192, 6, 5, 1, 0, 192, 18, 1, 0, 0, 0, 193, 194, 5, 60, 0, 0, 194, 195, 5, 60, 0, 0, 195,
658
+ 196, 5, 67, 0, 0, 196, 197, 5, 79, 0, 0, 197, 198, 5, 80, 0, 0, 198, 199, 5, 89, 0, 0,
659
+ 199, 201, 1, 0, 0, 0, 200, 202, 3, 7, 0, 0, 201, 200, 1, 0, 0, 0, 201, 202, 1, 0, 0, 0,
660
+ 202, 203, 1, 0, 0, 0, 203, 204, 6, 6, 4, 0, 204, 205, 1, 0, 0, 0, 205, 206, 6, 6, 1, 0,
661
+ 206, 20, 1, 0, 0, 0, 207, 208, 5, 60, 0, 0, 208, 209, 5, 60, 0, 0, 209, 210, 5, 77, 0,
662
+ 0, 210, 211, 5, 79, 0, 0, 211, 212, 5, 86, 0, 0, 212, 213, 5, 69, 0, 0, 213, 215, 1, 0,
663
+ 0, 0, 214, 216, 3, 7, 0, 0, 215, 214, 1, 0, 0, 0, 215, 216, 1, 0, 0, 0, 216, 217, 1, 0,
664
+ 0, 0, 217, 218, 6, 7, 5, 0, 218, 219, 1, 0, 0, 0, 219, 220, 6, 7, 1, 0, 220, 22, 1, 0, 0,
665
+ 0, 221, 222, 5, 60, 0, 0, 222, 223, 5, 60, 0, 0, 223, 224, 5, 79, 0, 0, 224, 225, 5, 80,
666
+ 0, 0, 225, 226, 5, 69, 0, 0, 226, 227, 5, 78, 0, 0, 227, 229, 1, 0, 0, 0, 228, 230, 3,
667
+ 7, 0, 0, 229, 228, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 232, 6,
668
+ 8, 6, 0, 232, 233, 1, 0, 0, 0, 233, 234, 6, 8, 1, 0, 234, 24, 1, 0, 0, 0, 235, 236, 5, 60,
669
+ 0, 0, 236, 237, 5, 60, 0, 0, 237, 238, 5, 70, 0, 0, 238, 239, 5, 79, 0, 0, 239, 240, 5,
670
+ 76, 0, 0, 240, 241, 5, 68, 0, 0, 241, 243, 1, 0, 0, 0, 242, 244, 3, 7, 0, 0, 243, 242,
671
+ 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 245, 1, 0, 0, 0, 245, 246, 6, 9, 7, 0, 246, 247,
672
+ 1, 0, 0, 0, 247, 248, 6, 9, 1, 0, 248, 26, 1, 0, 0, 0, 249, 250, 5, 60, 0, 0, 250, 251,
673
+ 5, 60, 0, 0, 251, 252, 5, 83, 0, 0, 252, 253, 5, 69, 0, 0, 253, 254, 5, 78, 0, 0, 254,
674
+ 255, 5, 68, 0, 0, 255, 257, 1, 0, 0, 0, 256, 258, 3, 7, 0, 0, 257, 256, 1, 0, 0, 0, 257,
675
+ 258, 1, 0, 0, 0, 258, 259, 1, 0, 0, 0, 259, 260, 6, 10, 8, 0, 260, 261, 1, 0, 0, 0, 261,
676
+ 262, 6, 10, 1, 0, 262, 28, 1, 0, 0, 0, 263, 264, 5, 60, 0, 0, 264, 265, 5, 60, 0, 0, 265,
677
+ 266, 5, 69, 0, 0, 266, 267, 5, 88, 0, 0, 267, 268, 5, 69, 0, 0, 268, 269, 5, 67, 0, 0,
678
+ 269, 271, 1, 0, 0, 0, 270, 272, 3, 7, 0, 0, 271, 270, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0,
679
+ 272, 273, 1, 0, 0, 0, 273, 274, 6, 11, 9, 0, 274, 275, 1, 0, 0, 0, 275, 276, 6, 11, 1,
680
+ 0, 276, 30, 1, 0, 0, 0, 277, 278, 5, 60, 0, 0, 278, 279, 5, 60, 0, 0, 279, 280, 5, 87,
681
+ 0, 0, 280, 281, 5, 79, 0, 0, 281, 282, 5, 82, 0, 0, 282, 283, 5, 75, 0, 0, 283, 285, 1,
682
+ 0, 0, 0, 284, 286, 3, 7, 0, 0, 285, 284, 1, 0, 0, 0, 285, 286, 1, 0, 0, 0, 286, 287, 1,
683
+ 0, 0, 0, 287, 288, 6, 12, 10, 0, 288, 289, 1, 0, 0, 0, 289, 290, 6, 12, 1, 0, 290, 32,
684
+ 1, 0, 0, 0, 291, 292, 5, 60, 0, 0, 292, 293, 5, 60, 0, 0, 293, 294, 5, 70, 0, 0, 294, 295,
685
+ 5, 79, 0, 0, 295, 296, 5, 82, 0, 0, 296, 297, 5, 75, 0, 0, 297, 299, 1, 0, 0, 0, 298, 300,
686
+ 3, 7, 0, 0, 299, 298, 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 302,
687
+ 6, 13, 11, 0, 302, 303, 1, 0, 0, 0, 303, 304, 6, 13, 1, 0, 304, 34, 1, 0, 0, 0, 305, 306,
688
+ 5, 60, 0, 0, 306, 307, 5, 60, 0, 0, 307, 308, 5, 75, 0, 0, 308, 309, 5, 73, 0, 0, 309,
689
+ 310, 5, 76, 0, 0, 310, 311, 5, 76, 0, 0, 311, 313, 1, 0, 0, 0, 312, 314, 3, 7, 0, 0, 313,
690
+ 312, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 316, 6, 14, 12, 0, 316,
691
+ 317, 1, 0, 0, 0, 317, 318, 6, 14, 1, 0, 318, 36, 1, 0, 0, 0, 319, 320, 5, 60, 0, 0, 320,
692
+ 321, 5, 60, 0, 0, 321, 322, 5, 80, 0, 0, 322, 323, 5, 76, 0, 0, 323, 324, 5, 65, 0, 0,
693
+ 324, 325, 5, 78, 0, 0, 325, 327, 1, 0, 0, 0, 326, 328, 3, 7, 0, 0, 327, 326, 1, 0, 0, 0,
694
+ 327, 328, 1, 0, 0, 0, 328, 329, 1, 0, 0, 0, 329, 330, 6, 15, 13, 0, 330, 331, 1, 0, 0,
695
+ 0, 331, 332, 6, 15, 1, 0, 332, 38, 1, 0, 0, 0, 333, 334, 5, 60, 0, 0, 334, 335, 5, 60,
696
+ 0, 0, 335, 336, 5, 84, 0, 0, 336, 337, 5, 85, 0, 0, 337, 338, 5, 82, 0, 0, 338, 339, 5,
697
+ 78, 0, 0, 339, 341, 1, 0, 0, 0, 340, 342, 3, 7, 0, 0, 341, 340, 1, 0, 0, 0, 341, 342, 1,
698
+ 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 344, 6, 16, 14, 0, 344, 345, 1, 0, 0, 0, 345, 346,
699
+ 6, 16, 15, 0, 346, 347, 6, 16, 1, 0, 347, 40, 1, 0, 0, 0, 348, 349, 5, 60, 0, 0, 349, 350,
700
+ 5, 60, 0, 0, 350, 351, 5, 76, 0, 0, 351, 352, 5, 79, 0, 0, 352, 353, 5, 79, 0, 0, 353,
701
+ 354, 5, 75, 0, 0, 354, 356, 1, 0, 0, 0, 355, 357, 3, 7, 0, 0, 356, 355, 1, 0, 0, 0, 356,
702
+ 357, 1, 0, 0, 0, 357, 358, 1, 0, 0, 0, 358, 359, 6, 17, 16, 0, 359, 360, 1, 0, 0, 0, 360,
703
+ 361, 6, 17, 1, 0, 361, 42, 1, 0, 0, 0, 362, 363, 5, 60, 0, 0, 363, 364, 5, 60, 0, 0, 364,
704
+ 365, 5, 66, 0, 0, 365, 366, 5, 85, 0, 0, 366, 367, 5, 70, 0, 0, 367, 368, 5, 70, 0, 0,
705
+ 368, 370, 1, 0, 0, 0, 369, 371, 3, 7, 0, 0, 370, 369, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0,
706
+ 371, 372, 1, 0, 0, 0, 372, 373, 6, 18, 17, 0, 373, 374, 1, 0, 0, 0, 374, 375, 6, 18, 1,
707
+ 0, 375, 44, 1, 0, 0, 0, 376, 378, 7, 2, 0, 0, 377, 376, 1, 0, 0, 0, 378, 379, 1, 0, 0, 0,
708
+ 379, 377, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 6, 19, 18,
709
+ 0, 382, 46, 1, 0, 0, 0, 383, 384, 5, 60, 0, 0, 384, 385, 5, 116, 0, 0, 385, 386, 5, 104,
710
+ 0, 0, 386, 387, 5, 105, 0, 0, 387, 388, 5, 110, 0, 0, 388, 389, 5, 107, 0, 0, 389, 390,
711
+ 5, 62, 0, 0, 390, 394, 1, 0, 0, 0, 391, 393, 9, 0, 0, 0, 392, 391, 1, 0, 0, 0, 393, 396,
712
+ 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 394, 392, 1, 0, 0, 0, 395, 397, 1, 0, 0, 0, 396, 394,
713
+ 1, 0, 0, 0, 397, 398, 5, 60, 0, 0, 398, 399, 5, 47, 0, 0, 399, 400, 5, 116, 0, 0, 400,
714
+ 401, 5, 104, 0, 0, 401, 402, 5, 105, 0, 0, 402, 403, 5, 110, 0, 0, 403, 404, 5, 107,
715
+ 0, 0, 404, 405, 5, 62, 0, 0, 405, 406, 1, 0, 0, 0, 406, 407, 6, 20, 19, 0, 407, 48, 1,
716
+ 0, 0, 0, 408, 409, 5, 60, 0, 0, 409, 410, 5, 124, 0, 0, 410, 411, 5, 99, 0, 0, 411, 412,
717
+ 5, 104, 0, 0, 412, 413, 5, 97, 0, 0, 413, 414, 5, 110, 0, 0, 414, 415, 5, 110, 0, 0, 415,
718
+ 416, 5, 101, 0, 0, 416, 417, 5, 108, 0, 0, 417, 418, 5, 62, 0, 0, 418, 422, 1, 0, 0, 0,
719
+ 419, 421, 9, 0, 0, 0, 420, 419, 1, 0, 0, 0, 421, 424, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0,
720
+ 422, 420, 1, 0, 0, 0, 423, 425, 1, 0, 0, 0, 424, 422, 1, 0, 0, 0, 425, 426, 5, 60, 0, 0,
721
+ 426, 427, 5, 99, 0, 0, 427, 428, 5, 104, 0, 0, 428, 429, 5, 97, 0, 0, 429, 430, 5, 110,
722
+ 0, 0, 430, 431, 5, 110, 0, 0, 431, 432, 5, 101, 0, 0, 432, 433, 5, 108, 0, 0, 433, 434,
723
+ 5, 124, 0, 0, 434, 435, 5, 62, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 6, 21, 19, 0, 437,
724
+ 50, 1, 0, 0, 0, 438, 439, 4, 22, 0, 0, 439, 440, 5, 58, 0, 0, 440, 441, 5, 84, 0, 0, 441,
725
+ 442, 5, 85, 0, 0, 442, 443, 5, 82, 0, 0, 443, 444, 5, 78, 0, 0, 444, 446, 1, 0, 0, 0, 445,
726
+ 447, 3, 7, 0, 0, 446, 445, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448,
727
+ 449, 6, 22, 20, 0, 449, 450, 1, 0, 0, 0, 450, 451, 6, 22, 21, 0, 451, 52, 1, 0, 0, 0, 452,
728
+ 453, 5, 60, 0, 0, 453, 454, 5, 60, 0, 0, 454, 455, 1, 0, 0, 0, 455, 460, 4, 23, 1, 0, 456,
729
+ 457, 5, 60, 0, 0, 457, 460, 8, 3, 0, 0, 458, 460, 8, 4, 0, 0, 459, 452, 1, 0, 0, 0, 459,
730
+ 456, 1, 0, 0, 0, 459, 458, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 459, 1, 0, 0, 0, 461,
731
+ 462, 1, 0, 0, 0, 462, 54, 1, 0, 0, 0, 463, 465, 7, 2, 0, 0, 464, 463, 1, 0, 0, 0, 465, 466,
732
+ 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 469,
733
+ 6, 24, 22, 0, 469, 56, 1, 0, 0, 0, 470, 471, 5, 91, 0, 0, 471, 472, 4, 25, 2, 0, 472, 473,
734
+ 1, 0, 0, 0, 473, 474, 6, 25, 23, 0, 474, 475, 6, 25, 24, 0, 475, 58, 1, 0, 0, 0, 476, 477,
735
+ 5, 91, 0, 0, 477, 478, 4, 26, 3, 0, 478, 479, 1, 0, 0, 0, 479, 480, 6, 26, 23, 0, 480,
736
+ 481, 6, 26, 25, 0, 481, 60, 1, 0, 0, 0, 482, 483, 5, 91, 0, 0, 483, 484, 4, 27, 4, 0, 484,
737
+ 485, 1, 0, 0, 0, 485, 486, 6, 27, 23, 0, 486, 487, 6, 27, 26, 0, 487, 62, 1, 0, 0, 0, 488,
738
+ 489, 5, 40, 0, 0, 489, 490, 6, 28, 27, 0, 490, 491, 1, 0, 0, 0, 491, 492, 6, 28, 28, 0,
739
+ 492, 493, 6, 28, 29, 0, 493, 64, 1, 0, 0, 0, 494, 495, 3, 11, 2, 0, 495, 496, 1, 0, 0,
740
+ 0, 496, 497, 6, 29, 30, 0, 497, 66, 1, 0, 0, 0, 498, 499, 4, 30, 5, 0, 499, 500, 5, 58,
741
+ 0, 0, 500, 501, 9, 0, 0, 0, 501, 502, 6, 30, 31, 0, 502, 503, 1, 0, 0, 0, 503, 504, 6,
742
+ 30, 32, 0, 504, 505, 6, 30, 33, 0, 505, 68, 1, 0, 0, 0, 506, 507, 4, 31, 6, 0, 507, 508,
743
+ 5, 58, 0, 0, 508, 509, 6, 31, 34, 0, 509, 510, 1, 0, 0, 0, 510, 511, 6, 31, 35, 0, 511,
744
+ 512, 6, 31, 33, 0, 512, 70, 1, 0, 0, 0, 513, 514, 5, 58, 0, 0, 514, 515, 6, 32, 36, 0,
745
+ 515, 516, 1, 0, 0, 0, 516, 517, 6, 32, 35, 0, 517, 518, 6, 32, 37, 0, 518, 72, 1, 0, 0,
746
+ 0, 519, 521, 7, 5, 0, 0, 520, 519, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 520, 1, 0, 0,
747
+ 0, 522, 523, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 6, 33, 22, 0, 525, 74, 1, 0, 0,
748
+ 0, 526, 527, 5, 44, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 6, 34, 38, 0, 529, 76, 1, 0,
749
+ 0, 0, 530, 534, 8, 6, 0, 0, 531, 532, 5, 60, 0, 0, 532, 534, 8, 6, 0, 0, 533, 530, 1, 0,
750
+ 0, 0, 533, 531, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 533, 1, 0, 0, 0, 535, 536, 1, 0,
751
+ 0, 0, 536, 537, 1, 0, 0, 0, 537, 538, 6, 35, 39, 0, 538, 78, 1, 0, 0, 0, 539, 540, 5, 93,
752
+ 0, 0, 540, 541, 1, 0, 0, 0, 541, 542, 6, 36, 40, 0, 542, 543, 6, 36, 1, 0, 543, 80, 1,
753
+ 0, 0, 0, 544, 546, 7, 5, 0, 0, 545, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 545, 1,
754
+ 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 6, 37, 22, 0, 550, 82, 1,
755
+ 0, 0, 0, 551, 552, 5, 49, 0, 0, 552, 553, 5, 48, 0, 0, 553, 567, 5, 50, 0, 0, 554, 555,
756
+ 5, 50, 0, 0, 555, 556, 5, 48, 0, 0, 556, 567, 5, 48, 0, 0, 557, 558, 5, 50, 0, 0, 558,
757
+ 559, 5, 48, 0, 0, 559, 567, 5, 50, 0, 0, 560, 561, 5, 51, 0, 0, 561, 562, 5, 48, 0, 0,
758
+ 562, 567, 5, 48, 0, 0, 563, 564, 5, 52, 0, 0, 564, 565, 5, 57, 0, 0, 565, 567, 5, 57,
759
+ 0, 0, 566, 551, 1, 0, 0, 0, 566, 554, 1, 0, 0, 0, 566, 557, 1, 0, 0, 0, 566, 560, 1, 0,
760
+ 0, 0, 566, 563, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 569, 6, 38, 41, 0, 569, 84, 1, 0,
761
+ 0, 0, 570, 572, 5, 45, 0, 0, 571, 570, 1, 0, 0, 0, 571, 572, 1, 0, 0, 0, 572, 574, 1, 0,
762
+ 0, 0, 573, 575, 7, 1, 0, 0, 574, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 574, 1, 0,
763
+ 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 579, 6, 39, 42, 0, 579, 86, 1, 0,
764
+ 0, 0, 580, 581, 5, 93, 0, 0, 581, 582, 1, 0, 0, 0, 582, 583, 6, 40, 40, 0, 583, 584, 6,
765
+ 40, 1, 0, 584, 88, 1, 0, 0, 0, 585, 587, 7, 5, 0, 0, 586, 585, 1, 0, 0, 0, 587, 588, 1,
766
+ 0, 0, 0, 588, 586, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 6,
767
+ 41, 22, 0, 591, 90, 1, 0, 0, 0, 592, 596, 7, 7, 0, 0, 593, 595, 7, 8, 0, 0, 594, 593, 1,
768
+ 0, 0, 0, 595, 598, 1, 0, 0, 0, 596, 594, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 599, 1,
769
+ 0, 0, 0, 598, 596, 1, 0, 0, 0, 599, 600, 6, 42, 43, 0, 600, 92, 1, 0, 0, 0, 601, 602, 5,
770
+ 93, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 6, 43, 40, 0, 604, 605, 6, 43, 1, 0, 605, 94,
771
+ 1, 0, 0, 0, 606, 607, 5, 92, 0, 0, 607, 608, 7, 9, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610,
772
+ 6, 44, 44, 0, 610, 96, 1, 0, 0, 0, 611, 615, 8, 10, 0, 0, 612, 613, 5, 60, 0, 0, 613, 615,
773
+ 8, 10, 0, 0, 614, 611, 1, 0, 0, 0, 614, 612, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 614,
774
+ 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 619, 6, 45, 44, 0, 619, 98,
775
+ 1, 0, 0, 0, 620, 621, 5, 92, 0, 0, 621, 622, 1, 0, 0, 0, 622, 623, 6, 46, 44, 0, 623, 100,
776
+ 1, 0, 0, 0, 624, 625, 5, 40, 0, 0, 625, 626, 6, 47, 45, 0, 626, 627, 1, 0, 0, 0, 627, 628,
777
+ 6, 47, 44, 0, 628, 102, 1, 0, 0, 0, 629, 630, 4, 48, 7, 0, 630, 631, 5, 41, 0, 0, 631,
778
+ 632, 6, 48, 46, 0, 632, 633, 1, 0, 0, 0, 633, 634, 6, 48, 44, 0, 634, 104, 1, 0, 0, 0,
779
+ 635, 636, 5, 41, 0, 0, 636, 637, 1, 0, 0, 0, 637, 638, 6, 49, 47, 0, 638, 639, 6, 49,
780
+ 1, 0, 639, 106, 1, 0, 0, 0, 640, 641, 4, 50, 8, 0, 641, 642, 5, 58, 0, 0, 642, 643, 9,
781
+ 0, 0, 0, 643, 644, 6, 50, 48, 0, 644, 645, 1, 0, 0, 0, 645, 646, 6, 50, 32, 0, 646, 647,
782
+ 6, 50, 33, 0, 647, 108, 1, 0, 0, 0, 648, 650, 8, 11, 0, 0, 649, 648, 1, 0, 0, 0, 650, 651,
783
+ 1, 0, 0, 0, 651, 649, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654,
784
+ 6, 51, 49, 0, 654, 110, 1, 0, 0, 0, 655, 656, 5, 58, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658,
785
+ 6, 52, 49, 0, 658, 112, 1, 0, 0, 0, 50, 0, 1, 2, 3, 4, 5, 6, 116, 119, 124, 130, 132, 139,
786
+ 141, 146, 159, 173, 187, 201, 215, 229, 243, 257, 271, 285, 299, 313, 327, 341,
787
+ 356, 370, 379, 394, 422, 446, 459, 461, 466, 522, 533, 535, 547, 566, 571, 576,
788
+ 588, 596, 614, 616, 651, 50, 1, 3, 0, 2, 1, 0, 1, 4, 1, 1, 5, 2, 1, 6, 3, 1, 7, 4, 1, 8, 5,
789
+ 1, 9, 6, 1, 10, 7, 1, 11, 8, 1, 12, 9, 1, 13, 10, 1, 14, 11, 1, 15, 12, 1, 16, 13, 7, 16,
790
+ 0, 1, 17, 14, 1, 18, 15, 0, 1, 0, 7, 15, 0, 1, 22, 16, 7, 17, 0, 6, 0, 0, 7, 1, 0, 2, 2, 0,
791
+ 2, 3, 0, 2, 4, 0, 1, 28, 17, 7, 3, 0, 2, 5, 0, 7, 5, 0, 1, 30, 18, 7, 14, 0, 2, 0, 0, 1, 31,
792
+ 19, 7, 6, 0, 1, 32, 20, 2, 6, 0, 7, 7, 0, 7, 11, 0, 7, 2, 0, 7, 9, 0, 7, 8, 0, 7, 10, 0, 7, 12,
793
+ 0, 1, 47, 21, 1, 48, 22, 7, 4, 0, 1, 50, 23, 7, 13, 0
794
+ ];
795
+ static __ATN;
796
+ static get _ATN() {
797
+ if (!plurnkLexer.__ATN) {
798
+ plurnkLexer.__ATN = new antlr.ATNDeserializer().deserialize(plurnkLexer._serializedATN);
799
+ }
800
+ return plurnkLexer.__ATN;
801
+ }
802
+ static vocabulary = new antlr.Vocabulary(plurnkLexer.literalNames, plurnkLexer.symbolicNames, []);
803
+ get vocabulary() {
804
+ return plurnkLexer.vocabulary;
805
+ }
806
+ static decisionsToDFA = plurnkLexer._ATN.decisionToState.map((ds, index) => new antlr.DFA(ds, index));
807
+ }
808
+ //# sourceMappingURL=plurnkLexer.js.map