yini-parser 1.0.2-beta → 1.2.0-beta

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 (103) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/README.md +83 -98
  3. package/dist/YINI.d.ts +162 -23
  4. package/dist/YINI.js +183 -99
  5. package/dist/YINI.js.map +1 -0
  6. package/dist/config/env.js +1 -0
  7. package/dist/config/env.js.map +1 -0
  8. package/dist/core/astBuilder.d.ts +191 -0
  9. package/dist/core/astBuilder.js +840 -0
  10. package/dist/core/astBuilder.js.map +1 -0
  11. package/dist/core/{ErrorDataHandler.d.ts → errorDataHandler.d.ts} +21 -19
  12. package/dist/core/errorDataHandler.js +271 -0
  13. package/dist/core/errorDataHandler.js.map +1 -0
  14. package/dist/core/internalTypes.d.ts +121 -0
  15. package/dist/core/internalTypes.js +16 -0
  16. package/dist/core/internalTypes.js.map +1 -0
  17. package/dist/core/objectBuilder.d.ts +10 -4
  18. package/dist/core/objectBuilder.js +127 -163
  19. package/dist/core/objectBuilder.js.map +1 -0
  20. package/dist/core/options/failLevel.d.ts +3 -0
  21. package/dist/core/options/failLevel.js +27 -0
  22. package/dist/core/options/failLevel.js.map +1 -0
  23. package/dist/core/options/normalizeOptions.d.ts +5 -0
  24. package/dist/core/options/normalizeOptions.js +53 -0
  25. package/dist/core/options/normalizeOptions.js.map +1 -0
  26. package/dist/core/options/parserOptionsConstants.d.ts +7 -0
  27. package/dist/core/options/parserOptionsConstants.js +37 -0
  28. package/dist/core/options/parserOptionsConstants.js.map +1 -0
  29. package/dist/core/pipeline.d.ts +18 -0
  30. package/dist/core/pipeline.js +323 -0
  31. package/dist/core/pipeline.js.map +1 -0
  32. package/dist/core/resultMetadataBuilder.d.ts +19 -0
  33. package/dist/core/resultMetadataBuilder.js +166 -0
  34. package/dist/core/resultMetadataBuilder.js.map +1 -0
  35. package/dist/core/runtime.d.ts +17 -0
  36. package/dist/core/runtime.js +189 -0
  37. package/dist/core/runtime.js.map +1 -0
  38. package/dist/dev/main.d.ts +1 -0
  39. package/dist/dev/main.js +374 -0
  40. package/dist/dev/main.js.map +1 -0
  41. package/dist/grammar/generated/YiniLexer.d.ts +74 -0
  42. package/dist/grammar/generated/YiniLexer.js +415 -0
  43. package/dist/grammar/generated/YiniLexer.js.map +1 -0
  44. package/dist/grammar/{YiniParser.d.ts → generated/YiniParser.d.ts} +167 -150
  45. package/dist/grammar/{YiniParser.js → generated/YiniParser.js} +1242 -1202
  46. package/dist/grammar/generated/YiniParser.js.map +1 -0
  47. package/dist/grammar/{YiniParserVisitor.d.ts → generated/YiniParserVisitor.d.ts} +59 -45
  48. package/dist/grammar/{YiniParserVisitor.js → generated/YiniParserVisitor.js} +2 -1
  49. package/dist/grammar/generated/YiniParserVisitor.js.map +1 -0
  50. package/dist/index.d.ts +43 -2
  51. package/dist/index.js +62 -101
  52. package/dist/index.js.map +1 -0
  53. package/dist/parsers/extractHeaderParts.d.ts +4 -3
  54. package/dist/parsers/extractHeaderParts.js +3 -1
  55. package/dist/parsers/extractHeaderParts.js.map +1 -0
  56. package/dist/parsers/extractSignificantYiniLine.js +2 -1
  57. package/dist/parsers/extractSignificantYiniLine.js.map +1 -0
  58. package/dist/parsers/parseBoolean.d.ts +1 -1
  59. package/dist/parsers/parseBoolean.js +3 -1
  60. package/dist/parsers/parseBoolean.js.map +1 -0
  61. package/dist/parsers/parseNull.js +1 -0
  62. package/dist/parsers/parseNull.js.map +1 -0
  63. package/dist/parsers/parseNumber.d.ts +8 -3
  64. package/dist/parsers/parseNumber.js +22 -7
  65. package/dist/parsers/parseNumber.js.map +1 -0
  66. package/dist/parsers/parseSectionHeader.d.ts +5 -4
  67. package/dist/parsers/parseSectionHeader.js +3 -1
  68. package/dist/parsers/parseSectionHeader.js.map +1 -0
  69. package/dist/parsers/parseString.js +3 -3
  70. package/dist/parsers/parseString.js.map +1 -0
  71. package/dist/types/index.d.ts +198 -0
  72. package/dist/types/index.js +4 -0
  73. package/dist/types/index.js.map +1 -0
  74. package/dist/utils/number.d.ts +3 -0
  75. package/dist/utils/number.js +19 -0
  76. package/dist/utils/number.js.map +1 -0
  77. package/dist/utils/object.d.ts +67 -0
  78. package/dist/utils/object.js +125 -0
  79. package/dist/utils/object.js.map +1 -0
  80. package/dist/utils/pathAndFileName.js +1 -0
  81. package/dist/utils/pathAndFileName.js.map +1 -0
  82. package/dist/utils/print.d.ts +2 -2
  83. package/dist/utils/print.js +11 -6
  84. package/dist/utils/print.js.map +1 -0
  85. package/dist/utils/string.d.ts +26 -1
  86. package/dist/utils/string.js +48 -4
  87. package/dist/utils/string.js.map +1 -0
  88. package/dist/utils/system.d.ts +15 -0
  89. package/dist/utils/system.js +22 -0
  90. package/dist/utils/system.js.map +1 -0
  91. package/dist/{yiniHelpers.d.ts → utils/yiniHelpers.d.ts} +3 -0
  92. package/dist/{yiniHelpers.js → utils/yiniHelpers.js} +46 -9
  93. package/dist/utils/yiniHelpers.js.map +1 -0
  94. package/package.json +7 -5
  95. package/dist/core/ErrorDataHandler.js +0 -203
  96. package/dist/core/YINIVisitor.d.ts +0 -158
  97. package/dist/core/YINIVisitor.js +0 -1008
  98. package/dist/core/types.d.ts +0 -59
  99. package/dist/core/types.js +0 -36
  100. package/dist/grammar/YiniLexer.d.ts +0 -68
  101. package/dist/grammar/YiniLexer.js +0 -379
  102. package/dist/parseEntry.d.ts +0 -2
  103. package/dist/parseEntry.js +0 -185
@@ -1,59 +0,0 @@
1
- export type TPersistThreshold = '0-Ignore-Errors' | '1-Abort-on-Errors' | '2-Abort-Even-on-Warnings';
2
- export type TIssueType = 'Fatal-Error' | 'Internal-Error' | 'Syntax-Error' | 'Syntax-Warning' | 'Notice' | 'Info';
3
- export type TJSObject = any;
4
- export type TBailSensitivityLevel = 0 | 1 | 2;
5
- export interface IParseMainOptions {
6
- isStrict: boolean;
7
- bailSensitivityLevel: TBailSensitivityLevel;
8
- isIncludeMeta: boolean;
9
- isWithDiagnostics: boolean;
10
- isWithTiming: boolean;
11
- }
12
- export interface IParseMetaData {
13
- strictMode: boolean;
14
- hasTerminal: boolean;
15
- sections: null | number;
16
- members: null | number;
17
- keysParsed: null | number;
18
- sectionChains: null | number;
19
- diagnostics?: {
20
- bailSensitivityLevel: TBailSensitivityLevel;
21
- errors: null | number;
22
- warnings: null | number;
23
- infoAndNotices: null | number;
24
- envs: {
25
- NODE_ENV: undefined | string;
26
- APP_ENV: undefined | string;
27
- libNodeEnv: undefined | string;
28
- libAppEnv: undefined | string;
29
- };
30
- libFlags: {
31
- isDev: boolean;
32
- isDebug: boolean;
33
- };
34
- };
35
- timing?: {
36
- totalMs: null | number;
37
- phase1Ms: null | number;
38
- phase2Ms: null | number;
39
- phase3Ms: null | number;
40
- };
41
- }
42
- export type TSyntaxTreeContainer = {
43
- _syntaxTree: TSyntaxTree;
44
- _hasTerminal: boolean;
45
- _meta_numOfSections: number;
46
- _meta_numOfMembers: number;
47
- _meta_numOfChains: number;
48
- };
49
- export type TSyntaxTree = IChainContainer[];
50
- export type TSectionHeaderType = undefined | 'Classic-Header-Marker' | 'Numeric-Header-Marker';
51
- export interface IChainContainer {
52
- originLevel: number;
53
- chain: any;
54
- }
55
- export interface ISectionResult {
56
- level: number;
57
- name: string;
58
- members: any;
59
- }
@@ -1,36 +0,0 @@
1
- "use strict";
2
- /*
3
- A Full Nested Linear Branch - (in tree data structures):
4
- - A branch in a tree where each section has at most one nested section at each level (never more at each level).
5
- - Forms a straight path: each section (node) has exactly one nested section, and this continues through multiple levels—like a linked chain.
6
- - If a section has a nested section, the nesting must form a direct sequence. For example: Section level 3 → Section level 4 → Section level 5, and so on.
7
- - Can be any branch within a tree (not just the root), or even the whole tree in some cases.
8
- - Each section includes its own members at that level.
9
- - Represents a single path from the starting section to the last (deepest) nested section.
10
- - In other words, it’s a branch that forms a continuous, unbranched sequence of nested sections.
11
-
12
- Example:
13
- "
14
- ^ Section1
15
- sValue = 1
16
- ^^ Section11
17
- sValue = 11
18
- bValue = OFF
19
- ^ Section2
20
- sValue = 2
21
- "
22
-
23
- Has two Nested Linear Branches:
24
- 1:
25
- ^ Section1
26
- sValue = 1
27
- ^^ Section11
28
- sValue = 11
29
- bValue = OFF
30
-
31
- 2:
32
- ^ Section2
33
- sValue = 2
34
-
35
- */
36
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,68 +0,0 @@
1
- import { ATN, CharStream, DFA, Lexer } from "antlr4";
2
- export default class YiniLexer extends Lexer {
3
- static readonly YINI_MARKER = 1;
4
- static readonly SECTION_HEAD = 2;
5
- static readonly TERMINAL_TOKEN = 3;
6
- static readonly SS = 4;
7
- static readonly EUR = 5;
8
- static readonly CARET = 6;
9
- static readonly GT = 7;
10
- static readonly LT = 8;
11
- static readonly EQ = 9;
12
- static readonly HASH = 10;
13
- static readonly COMMA = 11;
14
- static readonly COLON = 12;
15
- static readonly OB = 13;
16
- static readonly CB = 14;
17
- static readonly OC = 15;
18
- static readonly CC = 16;
19
- static readonly PLUS = 17;
20
- static readonly DOLLAR = 18;
21
- static readonly PC = 19;
22
- static readonly AT = 20;
23
- static readonly SEMICOLON = 21;
24
- static readonly BOOLEAN_FALSE = 22;
25
- static readonly BOOLEAN_TRUE = 23;
26
- static readonly NULL = 24;
27
- static readonly EMPTY_OBJECT = 25;
28
- static readonly EMPTY_LIST = 26;
29
- static readonly SHEBANG = 27;
30
- static readonly NUMBER = 28;
31
- static readonly KEY = 29;
32
- static readonly IDENT = 30;
33
- static readonly IDENT_BACKTICKED = 31;
34
- static readonly STRING = 32;
35
- static readonly TRIPLE_QUOTED_STRING = 33;
36
- static readonly SINGLE_OR_DOUBLE = 34;
37
- static readonly R_AND_C_STRING = 35;
38
- static readonly HYPER_STRING = 36;
39
- static readonly ESC_SEQ = 37;
40
- static readonly ESC_SEQ_BASE = 38;
41
- static readonly NL = 39;
42
- static readonly SINGLE_NL = 40;
43
- static readonly WS = 41;
44
- static readonly BLOCK_COMMENT = 42;
45
- static readonly COMMENT = 43;
46
- static readonly LINE_COMMENT = 44;
47
- static readonly INLINE_COMMENT = 45;
48
- static readonly IDENT_INVALID = 46;
49
- static readonly REST = 47;
50
- static readonly EOF: number;
51
- static readonly channelNames: string[];
52
- static readonly literalNames: (string | null)[];
53
- static readonly symbolicNames: (string | null)[];
54
- static readonly modeNames: string[];
55
- static readonly ruleNames: string[];
56
- constructor(input: CharStream);
57
- get grammarFileName(): string;
58
- get literalNames(): (string | null)[];
59
- get symbolicNames(): (string | null)[];
60
- get ruleNames(): string[];
61
- get serializedATN(): number[];
62
- get channelNames(): string[];
63
- get modeNames(): string[];
64
- static readonly _serializedATN: number[];
65
- private static __ATN;
66
- static get _ATN(): ATN;
67
- static DecisionsToDFA: DFA[];
68
- }
@@ -1,379 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- // Generated from grammar/v1.0.0-rc.2x/YiniLexer.g4 by ANTLR 4.13.2
4
- // noinspection ES6UnusedImports,JSUnusedGlobalSymbols,JSUnusedLocalSymbols
5
- const antlr4_1 = require("antlr4");
6
- class YiniLexer extends antlr4_1.Lexer {
7
- constructor(input) {
8
- super(input);
9
- this._interp = new antlr4_1.LexerATNSimulator(this, YiniLexer._ATN, YiniLexer.DecisionsToDFA, new antlr4_1.PredictionContextCache());
10
- }
11
- get grammarFileName() { return "YiniLexer.g4"; }
12
- get literalNames() { return YiniLexer.literalNames; }
13
- get symbolicNames() { return YiniLexer.symbolicNames; }
14
- get ruleNames() { return YiniLexer.ruleNames; }
15
- get serializedATN() { return YiniLexer._serializedATN; }
16
- get channelNames() { return YiniLexer.channelNames; }
17
- get modeNames() { return YiniLexer.modeNames; }
18
- static get _ATN() {
19
- if (!YiniLexer.__ATN) {
20
- YiniLexer.__ATN = new antlr4_1.ATNDeserializer().deserialize(YiniLexer._serializedATN);
21
- }
22
- return YiniLexer.__ATN;
23
- }
24
- }
25
- YiniLexer.YINI_MARKER = 1;
26
- YiniLexer.SECTION_HEAD = 2;
27
- YiniLexer.TERMINAL_TOKEN = 3;
28
- YiniLexer.SS = 4;
29
- YiniLexer.EUR = 5;
30
- YiniLexer.CARET = 6;
31
- YiniLexer.GT = 7;
32
- YiniLexer.LT = 8;
33
- YiniLexer.EQ = 9;
34
- YiniLexer.HASH = 10;
35
- YiniLexer.COMMA = 11;
36
- YiniLexer.COLON = 12;
37
- YiniLexer.OB = 13;
38
- YiniLexer.CB = 14;
39
- YiniLexer.OC = 15;
40
- YiniLexer.CC = 16;
41
- YiniLexer.PLUS = 17;
42
- YiniLexer.DOLLAR = 18;
43
- YiniLexer.PC = 19;
44
- YiniLexer.AT = 20;
45
- YiniLexer.SEMICOLON = 21;
46
- YiniLexer.BOOLEAN_FALSE = 22;
47
- YiniLexer.BOOLEAN_TRUE = 23;
48
- YiniLexer.NULL = 24;
49
- YiniLexer.EMPTY_OBJECT = 25;
50
- YiniLexer.EMPTY_LIST = 26;
51
- YiniLexer.SHEBANG = 27;
52
- YiniLexer.NUMBER = 28;
53
- YiniLexer.KEY = 29;
54
- YiniLexer.IDENT = 30;
55
- YiniLexer.IDENT_BACKTICKED = 31;
56
- YiniLexer.STRING = 32;
57
- YiniLexer.TRIPLE_QUOTED_STRING = 33;
58
- YiniLexer.SINGLE_OR_DOUBLE = 34;
59
- YiniLexer.R_AND_C_STRING = 35;
60
- YiniLexer.HYPER_STRING = 36;
61
- YiniLexer.ESC_SEQ = 37;
62
- YiniLexer.ESC_SEQ_BASE = 38;
63
- YiniLexer.NL = 39;
64
- YiniLexer.SINGLE_NL = 40;
65
- YiniLexer.WS = 41;
66
- YiniLexer.BLOCK_COMMENT = 42;
67
- YiniLexer.COMMENT = 43;
68
- YiniLexer.LINE_COMMENT = 44;
69
- YiniLexer.INLINE_COMMENT = 45;
70
- YiniLexer.IDENT_INVALID = 46;
71
- YiniLexer.REST = 47;
72
- YiniLexer.EOF = antlr4_1.Token.EOF;
73
- YiniLexer.channelNames = ["DEFAULT_TOKEN_CHANNEL", "HIDDEN"];
74
- YiniLexer.literalNames = [null, null,
75
- null, null,
76
- "'\\u00A7'",
77
- "'\\u20AC'",
78
- "'^'", "'>'",
79
- "'<'", "'='",
80
- "'#'", "','",
81
- "':'", "'['",
82
- "']'", "'{'",
83
- "'}'", "'+'",
84
- "'$'", "'%'",
85
- "'@'", "';'",
86
- null, null,
87
- null, "'{}'",
88
- "'[]'"];
89
- YiniLexer.symbolicNames = [null, "YINI_MARKER",
90
- "SECTION_HEAD",
91
- "TERMINAL_TOKEN",
92
- "SS", "EUR",
93
- "CARET", "GT",
94
- "LT", "EQ",
95
- "HASH", "COMMA",
96
- "COLON", "OB",
97
- "CB", "OC",
98
- "CC", "PLUS",
99
- "DOLLAR", "PC",
100
- "AT", "SEMICOLON",
101
- "BOOLEAN_FALSE",
102
- "BOOLEAN_TRUE",
103
- "NULL", "EMPTY_OBJECT",
104
- "EMPTY_LIST",
105
- "SHEBANG",
106
- "NUMBER", "KEY",
107
- "IDENT", "IDENT_BACKTICKED",
108
- "STRING", "TRIPLE_QUOTED_STRING",
109
- "SINGLE_OR_DOUBLE",
110
- "R_AND_C_STRING",
111
- "HYPER_STRING",
112
- "ESC_SEQ",
113
- "ESC_SEQ_BASE",
114
- "NL", "SINGLE_NL",
115
- "WS", "BLOCK_COMMENT",
116
- "COMMENT",
117
- "LINE_COMMENT",
118
- "INLINE_COMMENT",
119
- "IDENT_INVALID",
120
- "REST"];
121
- YiniLexer.modeNames = ["DEFAULT_MODE",];
122
- YiniLexer.ruleNames = [
123
- "YINI_MARKER", "EBD", "SECTION_HEAD", "SECTION_MARKER", "SECTION_MARKER_BASIC_REPEAT",
124
- "SECTION_MARKER_SHORTHAND", "SECTION_MARKER_INVALID", "TERMINAL_TOKEN",
125
- "SS", "EUR", "CARET", "GT", "LT", "EQ", "HASH", "COMMA", "COLON", "OB",
126
- "CB", "OC", "CC", "PLUS", "DOLLAR", "PC", "AT", "SEMICOLON", "BOOLEAN_FALSE",
127
- "BOOLEAN_TRUE", "NULL", "EMPTY_OBJECT", "EMPTY_LIST", "SHEBANG", "NUMBER",
128
- "KEY", "IDENT", "IDENT_BACKTICKED", "STRING", "TRIPLE_QUOTED_STRING",
129
- "SINGLE_OR_DOUBLE", "R_AND_C_STRING", "HYPER_STRING", "ESC_SEQ", "ESC_SEQ_BASE",
130
- "UNICODE16", "UNICODE32", "INTEGER", "DECIMAL_INTEGER", "BIN_INTEGER",
131
- "OCT_INTEGER", "DUO_INTEGER", "HEX_INTEGER", "DIGIT", "BIN_DIGIT", "OCT_DIGIT",
132
- "DUO_DIGIT", "HEX_DIGIT", "FRACTION", "EXPONENT", "SIGN", "NL", "SINGLE_NL",
133
- "WS", "BLOCK_COMMENT", "COMMENT", "LINE_COMMENT", "INLINE_COMMENT", "DISABLE_LINE",
134
- "IDENT_INVALID", "REST_CHAR", "REST",
135
- ];
136
- YiniLexer._serializedATN = [4, 0, 47, 672, 6, -1, 2, 0,
137
- 7, 0, 2, 1, 7, 1, 2, 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,
138
- 7, 9, 2, 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,
139
- 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, 23, 7, 23,
140
- 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2,
141
- 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38,
142
- 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7,
143
- 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52,
144
- 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2,
145
- 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67,
146
- 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 5,
147
- 2, 153, 8, 2, 10, 2, 12, 2, 156, 9, 2, 1, 2, 1, 2, 5, 2, 160, 8, 2, 10, 2, 12, 2, 163, 9, 2, 1, 2, 5,
148
- 2, 166, 8, 2, 10, 2, 12, 2, 169, 9, 2, 1, 2, 1, 2, 4, 2, 173, 8, 2, 11, 2, 12, 2, 174, 1, 3, 1, 3, 1,
149
- 3, 3, 3, 180, 8, 3, 1, 4, 4, 4, 183, 8, 4, 11, 4, 12, 4, 184, 1, 4, 4, 4, 188, 8, 4, 11, 4, 12, 4, 189,
150
- 1, 4, 4, 4, 193, 8, 4, 11, 4, 12, 4, 194, 1, 4, 4, 4, 198, 8, 4, 11, 4, 12, 4, 199, 3, 4, 202, 8, 4,
151
- 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 208, 8, 5, 1, 5, 1, 5, 5, 5, 212, 8, 5, 10, 5, 12, 5, 215, 9, 5, 1, 6, 1,
152
- 6, 1, 6, 1, 6, 4, 6, 221, 8, 6, 11, 6, 12, 6, 222, 1, 6, 4, 6, 226, 8, 6, 11, 6, 12, 6, 227, 1, 7, 1,
153
- 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1,
154
- 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21,
155
- 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1,
156
- 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 281, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27,
157
- 1, 27, 1, 27, 3, 27, 292, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1,
158
- 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 309, 8, 31, 10, 31, 12, 31, 312, 9, 31, 1, 31, 1, 31,
159
- 1, 32, 3, 32, 317, 8, 32, 1, 32, 1, 32, 1, 32, 4, 32, 322, 8, 32, 11, 32, 12, 32, 323, 3, 32, 326,
160
- 8, 32, 1, 32, 3, 32, 329, 8, 32, 1, 32, 3, 32, 332, 8, 32, 1, 32, 1, 32, 4, 32, 336, 8, 32, 11, 32,
161
- 12, 32, 337, 1, 32, 3, 32, 341, 8, 32, 1, 32, 3, 32, 344, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32,
162
- 350, 8, 32, 3, 32, 352, 8, 32, 1, 33, 1, 33, 1, 34, 1, 34, 5, 34, 358, 8, 34, 10, 34, 12, 34, 361,
163
- 9, 34, 1, 34, 1, 34, 3, 34, 365, 8, 34, 1, 35, 1, 35, 5, 35, 369, 8, 35, 10, 35, 12, 35, 372, 9,
164
- 35, 1, 35, 1, 35, 1, 36, 1, 36, 3, 36, 378, 8, 36, 1, 37, 3, 37, 381, 8, 37, 1, 37, 1, 37, 1, 37,
165
- 1, 37, 1, 37, 5, 37, 388, 8, 37, 10, 37, 12, 37, 391, 9, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1,
166
- 38, 3, 38, 399, 8, 38, 1, 39, 3, 39, 402, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 408, 8, 39, 10,
167
- 39, 12, 39, 411, 9, 39, 1, 39, 1, 39, 3, 39, 415, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 421,
168
- 8, 39, 10, 39, 12, 39, 424, 9, 39, 1, 39, 3, 39, 427, 8, 39, 1, 40, 1, 40, 1, 40, 5, 40, 432, 8,
169
- 40, 10, 40, 12, 40, 435, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 441, 8, 40, 10, 40, 12, 40, 444,
170
- 9, 40, 1, 40, 3, 40, 447, 8, 40, 1, 41, 1, 41, 1, 41, 3, 41, 452, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42,
171
- 3, 42, 458, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1,
172
- 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 3, 46, 480, 8, 46, 1, 46, 1, 46, 5, 46,
173
- 484, 8, 46, 10, 46, 12, 46, 487, 9, 46, 3, 46, 489, 8, 46, 1, 47, 1, 47, 1, 47, 4, 47, 494, 8, 47,
174
- 11, 47, 12, 47, 495, 1, 47, 1, 47, 4, 47, 500, 8, 47, 11, 47, 12, 47, 501, 3, 47, 504, 8, 47, 1,
175
- 48, 1, 48, 1, 48, 4, 48, 509, 8, 48, 11, 48, 12, 48, 510, 1, 49, 1, 49, 1, 49, 4, 49, 516, 8, 49,
176
- 11, 49, 12, 49, 517, 1, 50, 1, 50, 1, 50, 4, 50, 523, 8, 50, 11, 50, 12, 50, 524, 1, 50, 1, 50,
177
- 4, 50, 529, 8, 50, 11, 50, 12, 50, 530, 3, 50, 533, 8, 50, 1, 51, 1, 51, 1, 52, 1, 52, 1, 53, 1,
178
- 53, 1, 54, 1, 54, 3, 54, 543, 8, 54, 1, 55, 1, 55, 3, 55, 547, 8, 55, 1, 56, 1, 56, 4, 56, 551, 8,
179
- 56, 11, 56, 12, 56, 552, 1, 57, 1, 57, 3, 57, 557, 8, 57, 1, 57, 4, 57, 560, 8, 57, 11, 57, 12,
180
- 57, 561, 1, 58, 1, 58, 1, 59, 5, 59, 567, 8, 59, 10, 59, 12, 59, 570, 9, 59, 1, 59, 5, 59, 573,
181
- 8, 59, 10, 59, 12, 59, 576, 9, 59, 1, 59, 1, 59, 5, 59, 580, 8, 59, 10, 59, 12, 59, 583, 9, 59,
182
- 1, 60, 1, 60, 3, 60, 587, 8, 60, 1, 60, 3, 60, 590, 8, 60, 1, 61, 4, 61, 593, 8, 61, 11, 61, 12,
183
- 61, 594, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 603, 8, 62, 10, 62, 12, 62, 606, 9, 62,
184
- 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 3, 63, 616, 8, 63, 1, 64, 1, 64, 3, 64, 620,
185
- 8, 64, 1, 64, 5, 64, 623, 8, 64, 10, 64, 12, 64, 626, 9, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1,
186
- 65, 4, 65, 634, 8, 65, 11, 65, 12, 65, 635, 3, 65, 638, 8, 65, 1, 65, 5, 65, 641, 8, 65, 10, 65,
187
- 12, 65, 644, 9, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 652, 8, 66, 10, 66, 12, 66,
188
- 655, 9, 66, 1, 67, 1, 67, 5, 67, 659, 8, 67, 10, 67, 12, 67, 662, 9, 67, 1, 68, 1, 68, 1, 69, 1,
189
- 69, 5, 69, 668, 8, 69, 10, 69, 12, 69, 671, 9, 69, 2, 389, 604, 0, 70, 1, 1, 3, 0, 5, 2, 7, 0, 9,
190
- 0, 11, 0, 13, 0, 15, 3, 17, 4, 19, 5, 21, 6, 23, 7, 25, 8, 27, 9, 29, 10, 31, 11, 33, 12, 35, 13,
191
- 37, 14, 39, 15, 41, 16, 43, 17, 45, 18, 47, 19, 49, 20, 51, 21, 53, 22, 55, 23, 57, 24, 59, 25,
192
- 61, 26, 63, 27, 65, 28, 67, 29, 69, 30, 71, 31, 73, 32, 75, 33, 77, 34, 79, 35, 81, 36, 83, 37,
193
- 85, 38, 87, 0, 89, 0, 91, 0, 93, 0, 95, 0, 97, 0, 99, 0, 101, 0, 103, 0, 105, 0, 107, 0, 109, 0,
194
- 111, 0, 113, 0, 115, 0, 117, 0, 119, 39, 121, 40, 123, 41, 125, 42, 127, 43, 129, 44, 131, 45,
195
- 133, 0, 135, 46, 137, 0, 139, 47, 1, 0, 38, 2, 0, 89, 89, 121, 121, 2, 0, 73, 73, 105, 105, 2,
196
- 0, 78, 78, 110, 110, 2, 0, 9, 9, 32, 32, 1, 0, 49, 57, 2, 0, 69, 69, 101, 101, 2, 0, 68, 68, 100,
197
- 100, 2, 0, 70, 70, 102, 102, 2, 0, 65, 65, 97, 97, 2, 0, 76, 76, 108, 108, 2, 0, 83, 83, 115, 115,
198
- 2, 0, 79, 79, 111, 111, 2, 0, 84, 84, 116, 116, 2, 0, 82, 82, 114, 114, 2, 0, 85, 85, 117, 117,
199
- 2, 0, 8, 10, 12, 13, 3, 0, 65, 90, 95, 95, 97, 122, 5, 0, 46, 46, 48, 57, 65, 90, 95, 95, 97, 122,
200
- 2, 0, 0, 31, 96, 96, 4, 0, 67, 67, 82, 82, 99, 99, 114, 114, 3, 0, 10, 10, 13, 13, 39, 39, 3, 0,
201
- 10, 10, 13, 13, 34, 34, 2, 0, 72, 72, 104, 104, 1, 0, 39, 39, 1, 0, 34, 34, 2, 0, 34, 34, 39, 39,
202
- 9, 0, 48, 48, 63, 63, 92, 92, 97, 98, 102, 102, 110, 110, 114, 114, 116, 116, 118, 118, 2, 0,
203
- 66, 66, 98, 98, 2, 0, 90, 90, 122, 122, 2, 0, 88, 88, 120, 120, 1, 0, 48, 57, 1, 0, 48, 55, 6, 0,
204
- 65, 66, 69, 69, 88, 88, 97, 98, 101, 101, 120, 120, 2, 0, 65, 70, 97, 102, 2, 0, 43, 43, 45, 45,
205
- 2, 0, 10, 10, 13, 13, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 13, 0, 9, 10, 13, 13, 32, 32, 34, 34,
206
- 39, 39, 44, 45, 47, 58, 61, 61, 91, 91, 93, 93, 96, 96, 123, 123, 125, 125, 742, 0, 1, 1, 0, 0,
207
- 0, 0, 5, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23,
208
- 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0,
209
- 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45,
210
- 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0,
211
- 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67,
212
- 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0,
213
- 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121,
214
- 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1,
215
- 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 1, 141, 1, 0, 0, 0, 3, 147, 1, 0, 0, 0, 5, 154, 1, 0,
216
- 0, 0, 7, 179, 1, 0, 0, 0, 9, 201, 1, 0, 0, 0, 11, 207, 1, 0, 0, 0, 13, 220, 1, 0, 0, 0, 15, 229, 1,
217
- 0, 0, 0, 17, 234, 1, 0, 0, 0, 19, 236, 1, 0, 0, 0, 21, 238, 1, 0, 0, 0, 23, 240, 1, 0, 0, 0, 25, 242,
218
- 1, 0, 0, 0, 27, 244, 1, 0, 0, 0, 29, 246, 1, 0, 0, 0, 31, 248, 1, 0, 0, 0, 33, 250, 1, 0, 0, 0, 35,
219
- 252, 1, 0, 0, 0, 37, 254, 1, 0, 0, 0, 39, 256, 1, 0, 0, 0, 41, 258, 1, 0, 0, 0, 43, 260, 1, 0, 0, 0,
220
- 45, 262, 1, 0, 0, 0, 47, 264, 1, 0, 0, 0, 49, 266, 1, 0, 0, 0, 51, 268, 1, 0, 0, 0, 53, 280, 1, 0,
221
- 0, 0, 55, 291, 1, 0, 0, 0, 57, 293, 1, 0, 0, 0, 59, 298, 1, 0, 0, 0, 61, 301, 1, 0, 0, 0, 63, 304,
222
- 1, 0, 0, 0, 65, 351, 1, 0, 0, 0, 67, 353, 1, 0, 0, 0, 69, 364, 1, 0, 0, 0, 71, 366, 1, 0, 0, 0, 73,
223
- 377, 1, 0, 0, 0, 75, 380, 1, 0, 0, 0, 77, 398, 1, 0, 0, 0, 79, 426, 1, 0, 0, 0, 81, 446, 1, 0, 0, 0,
224
- 83, 451, 1, 0, 0, 0, 85, 453, 1, 0, 0, 0, 87, 459, 1, 0, 0, 0, 89, 465, 1, 0, 0, 0, 91, 475, 1, 0,
225
- 0, 0, 93, 488, 1, 0, 0, 0, 95, 503, 1, 0, 0, 0, 97, 505, 1, 0, 0, 0, 99, 512, 1, 0, 0, 0, 101, 532,
226
- 1, 0, 0, 0, 103, 534, 1, 0, 0, 0, 105, 536, 1, 0, 0, 0, 107, 538, 1, 0, 0, 0, 109, 542, 1, 0, 0, 0,
227
- 111, 546, 1, 0, 0, 0, 113, 548, 1, 0, 0, 0, 115, 554, 1, 0, 0, 0, 117, 563, 1, 0, 0, 0, 119, 568,
228
- 1, 0, 0, 0, 121, 589, 1, 0, 0, 0, 123, 592, 1, 0, 0, 0, 125, 598, 1, 0, 0, 0, 127, 615, 1, 0, 0, 0,
229
- 129, 619, 1, 0, 0, 0, 131, 637, 1, 0, 0, 0, 133, 647, 1, 0, 0, 0, 135, 656, 1, 0, 0, 0, 137, 663,
230
- 1, 0, 0, 0, 139, 665, 1, 0, 0, 0, 141, 142, 5, 64, 0, 0, 142, 143, 7, 0, 0, 0, 143, 144, 7, 1, 0,
231
- 0, 144, 145, 7, 2, 0, 0, 145, 146, 7, 1, 0, 0, 146, 2, 1, 0, 0, 0, 147, 148, 2, 48, 49, 0, 148, 149,
232
- 2, 48, 49, 0, 149, 150, 2, 48, 49, 0, 150, 4, 1, 0, 0, 0, 151, 153, 7, 3, 0, 0, 152, 151, 1, 0, 0,
233
- 0, 153, 156, 1, 0, 0, 0, 154, 152, 1, 0, 0, 0, 154, 155, 1, 0, 0, 0, 155, 157, 1, 0, 0, 0, 156, 154,
234
- 1, 0, 0, 0, 157, 161, 3, 7, 3, 0, 158, 160, 7, 3, 0, 0, 159, 158, 1, 0, 0, 0, 160, 163, 1, 0, 0, 0,
235
- 161, 159, 1, 0, 0, 0, 161, 162, 1, 0, 0, 0, 162, 167, 1, 0, 0, 0, 163, 161, 1, 0, 0, 0, 164, 166,
236
- 3, 123, 61, 0, 165, 164, 1, 0, 0, 0, 166, 169, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 167, 168, 1, 0,
237
- 0, 0, 168, 170, 1, 0, 0, 0, 169, 167, 1, 0, 0, 0, 170, 172, 3, 69, 34, 0, 171, 173, 3, 119, 59,
238
- 0, 172, 171, 1, 0, 0, 0, 173, 174, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 174, 175, 1, 0, 0, 0, 175, 6,
239
- 1, 0, 0, 0, 176, 180, 3, 9, 4, 0, 177, 180, 3, 11, 5, 0, 178, 180, 3, 13, 6, 0, 179, 176, 1, 0, 0,
240
- 0, 179, 177, 1, 0, 0, 0, 179, 178, 1, 0, 0, 0, 180, 8, 1, 0, 0, 0, 181, 183, 3, 21, 10, 0, 182, 181,
241
- 1, 0, 0, 0, 183, 184, 1, 0, 0, 0, 184, 182, 1, 0, 0, 0, 184, 185, 1, 0, 0, 0, 185, 202, 1, 0, 0, 0,
242
- 186, 188, 3, 25, 12, 0, 187, 186, 1, 0, 0, 0, 188, 189, 1, 0, 0, 0, 189, 187, 1, 0, 0, 0, 189, 190,
243
- 1, 0, 0, 0, 190, 202, 1, 0, 0, 0, 191, 193, 3, 17, 8, 0, 192, 191, 1, 0, 0, 0, 193, 194, 1, 0, 0,
244
- 0, 194, 192, 1, 0, 0, 0, 194, 195, 1, 0, 0, 0, 195, 202, 1, 0, 0, 0, 196, 198, 3, 19, 9, 0, 197,
245
- 196, 1, 0, 0, 0, 198, 199, 1, 0, 0, 0, 199, 197, 1, 0, 0, 0, 199, 200, 1, 0, 0, 0, 200, 202, 1, 0,
246
- 0, 0, 201, 182, 1, 0, 0, 0, 201, 187, 1, 0, 0, 0, 201, 192, 1, 0, 0, 0, 201, 197, 1, 0, 0, 0, 202,
247
- 10, 1, 0, 0, 0, 203, 208, 3, 21, 10, 0, 204, 208, 3, 25, 12, 0, 205, 208, 3, 17, 8, 0, 206, 208,
248
- 3, 19, 9, 0, 207, 203, 1, 0, 0, 0, 207, 204, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 207, 206, 1, 0, 0,
249
- 0, 208, 209, 1, 0, 0, 0, 209, 213, 7, 4, 0, 0, 210, 212, 3, 103, 51, 0, 211, 210, 1, 0, 0, 0, 212,
250
- 215, 1, 0, 0, 0, 213, 211, 1, 0, 0, 0, 213, 214, 1, 0, 0, 0, 214, 12, 1, 0, 0, 0, 215, 213, 1, 0,
251
- 0, 0, 216, 221, 3, 21, 10, 0, 217, 221, 3, 25, 12, 0, 218, 221, 3, 17, 8, 0, 219, 221, 3, 19, 9,
252
- 0, 220, 216, 1, 0, 0, 0, 220, 217, 1, 0, 0, 0, 220, 218, 1, 0, 0, 0, 220, 219, 1, 0, 0, 0, 221, 222,
253
- 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 225, 1, 0, 0, 0, 224, 226, 3, 103, 51,
254
- 0, 225, 224, 1, 0, 0, 0, 226, 227, 1, 0, 0, 0, 227, 225, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 14,
255
- 1, 0, 0, 0, 229, 230, 5, 47, 0, 0, 230, 231, 7, 5, 0, 0, 231, 232, 7, 2, 0, 0, 232, 233, 7, 6, 0,
256
- 0, 233, 16, 1, 0, 0, 0, 234, 235, 5, 167, 0, 0, 235, 18, 1, 0, 0, 0, 236, 237, 5, 8364, 0, 0, 237,
257
- 20, 1, 0, 0, 0, 238, 239, 5, 94, 0, 0, 239, 22, 1, 0, 0, 0, 240, 241, 5, 62, 0, 0, 241, 24, 1, 0,
258
- 0, 0, 242, 243, 5, 60, 0, 0, 243, 26, 1, 0, 0, 0, 244, 245, 5, 61, 0, 0, 245, 28, 1, 0, 0, 0, 246,
259
- 247, 5, 35, 0, 0, 247, 30, 1, 0, 0, 0, 248, 249, 5, 44, 0, 0, 249, 32, 1, 0, 0, 0, 250, 251, 5, 58,
260
- 0, 0, 251, 34, 1, 0, 0, 0, 252, 253, 5, 91, 0, 0, 253, 36, 1, 0, 0, 0, 254, 255, 5, 93, 0, 0, 255,
261
- 38, 1, 0, 0, 0, 256, 257, 5, 123, 0, 0, 257, 40, 1, 0, 0, 0, 258, 259, 5, 125, 0, 0, 259, 42, 1,
262
- 0, 0, 0, 260, 261, 5, 43, 0, 0, 261, 44, 1, 0, 0, 0, 262, 263, 5, 36, 0, 0, 263, 46, 1, 0, 0, 0, 264,
263
- 265, 5, 37, 0, 0, 265, 48, 1, 0, 0, 0, 266, 267, 5, 64, 0, 0, 267, 50, 1, 0, 0, 0, 268, 269, 5, 59,
264
- 0, 0, 269, 52, 1, 0, 0, 0, 270, 271, 7, 7, 0, 0, 271, 272, 7, 8, 0, 0, 272, 273, 7, 9, 0, 0, 273,
265
- 274, 7, 10, 0, 0, 274, 281, 7, 5, 0, 0, 275, 276, 7, 11, 0, 0, 276, 277, 7, 7, 0, 0, 277, 281, 7,
266
- 7, 0, 0, 278, 279, 7, 2, 0, 0, 279, 281, 7, 11, 0, 0, 280, 270, 1, 0, 0, 0, 280, 275, 1, 0, 0, 0,
267
- 280, 278, 1, 0, 0, 0, 281, 54, 1, 0, 0, 0, 282, 283, 7, 12, 0, 0, 283, 284, 7, 13, 0, 0, 284, 285,
268
- 7, 14, 0, 0, 285, 292, 7, 5, 0, 0, 286, 287, 7, 11, 0, 0, 287, 292, 7, 2, 0, 0, 288, 289, 7, 0, 0,
269
- 0, 289, 290, 7, 5, 0, 0, 290, 292, 7, 10, 0, 0, 291, 282, 1, 0, 0, 0, 291, 286, 1, 0, 0, 0, 291,
270
- 288, 1, 0, 0, 0, 292, 56, 1, 0, 0, 0, 293, 294, 7, 2, 0, 0, 294, 295, 7, 14, 0, 0, 295, 296, 7, 9,
271
- 0, 0, 296, 297, 7, 9, 0, 0, 297, 58, 1, 0, 0, 0, 298, 299, 5, 123, 0, 0, 299, 300, 5, 125, 0, 0,
272
- 300, 60, 1, 0, 0, 0, 301, 302, 5, 91, 0, 0, 302, 303, 5, 93, 0, 0, 303, 62, 1, 0, 0, 0, 304, 305,
273
- 5, 35, 0, 0, 305, 306, 5, 33, 0, 0, 306, 310, 1, 0, 0, 0, 307, 309, 8, 15, 0, 0, 308, 307, 1, 0,
274
- 0, 0, 309, 312, 1, 0, 0, 0, 310, 308, 1, 0, 0, 0, 310, 311, 1, 0, 0, 0, 311, 313, 1, 0, 0, 0, 312,
275
- 310, 1, 0, 0, 0, 313, 314, 3, 119, 59, 0, 314, 64, 1, 0, 0, 0, 315, 317, 3, 117, 58, 0, 316, 315,
276
- 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 325, 3, 91, 45, 0, 319, 321, 5, 46,
277
- 0, 0, 320, 322, 3, 103, 51, 0, 321, 320, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0,
278
- 323, 324, 1, 0, 0, 0, 324, 326, 1, 0, 0, 0, 325, 319, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 328,
279
- 1, 0, 0, 0, 327, 329, 3, 115, 57, 0, 328, 327, 1, 0, 0, 0, 328, 329, 1, 0, 0, 0, 329, 352, 1, 0,
280
- 0, 0, 330, 332, 3, 117, 58, 0, 331, 330, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 333, 1, 0, 0, 0,
281
- 333, 335, 5, 46, 0, 0, 334, 336, 3, 103, 51, 0, 335, 334, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337,
282
- 335, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 340, 1, 0, 0, 0, 339, 341, 3, 115, 57, 0, 340, 339,
283
- 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 352, 1, 0, 0, 0, 342, 344, 3, 117, 58, 0, 343, 342, 1, 0,
284
- 0, 0, 343, 344, 1, 0, 0, 0, 344, 349, 1, 0, 0, 0, 345, 350, 3, 95, 47, 0, 346, 350, 3, 97, 48, 0,
285
- 347, 350, 3, 99, 49, 0, 348, 350, 3, 101, 50, 0, 349, 345, 1, 0, 0, 0, 349, 346, 1, 0, 0, 0, 349,
286
- 347, 1, 0, 0, 0, 349, 348, 1, 0, 0, 0, 350, 352, 1, 0, 0, 0, 351, 316, 1, 0, 0, 0, 351, 331, 1, 0,
287
- 0, 0, 351, 343, 1, 0, 0, 0, 352, 66, 1, 0, 0, 0, 353, 354, 3, 69, 34, 0, 354, 68, 1, 0, 0, 0, 355,
288
- 359, 7, 16, 0, 0, 356, 358, 7, 17, 0, 0, 357, 356, 1, 0, 0, 0, 358, 361, 1, 0, 0, 0, 359, 357, 1,
289
- 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 365, 1, 0, 0, 0, 361, 359, 1, 0, 0, 0, 362, 365, 3, 71, 35, 0,
290
- 363, 365, 3, 135, 67, 0, 364, 355, 1, 0, 0, 0, 364, 362, 1, 0, 0, 0, 364, 363, 1, 0, 0, 0, 365,
291
- 70, 1, 0, 0, 0, 366, 370, 5, 96, 0, 0, 367, 369, 8, 18, 0, 0, 368, 367, 1, 0, 0, 0, 369, 372, 1,
292
- 0, 0, 0, 370, 368, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 373, 1, 0, 0, 0, 372, 370, 1, 0, 0, 0, 373,
293
- 374, 5, 96, 0, 0, 374, 72, 1, 0, 0, 0, 375, 378, 3, 75, 37, 0, 376, 378, 3, 77, 38, 0, 377, 375,
294
- 1, 0, 0, 0, 377, 376, 1, 0, 0, 0, 378, 74, 1, 0, 0, 0, 379, 381, 7, 19, 0, 0, 380, 379, 1, 0, 0, 0,
295
- 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 383, 5, 34, 0, 0, 383, 384, 5, 34, 0, 0, 384, 385,
296
- 5, 34, 0, 0, 385, 389, 1, 0, 0, 0, 386, 388, 9, 0, 0, 0, 387, 386, 1, 0, 0, 0, 388, 391, 1, 0, 0,
297
- 0, 389, 390, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 390, 392, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 393,
298
- 5, 34, 0, 0, 393, 394, 5, 34, 0, 0, 394, 395, 5, 34, 0, 0, 395, 76, 1, 0, 0, 0, 396, 399, 3, 79,
299
- 39, 0, 397, 399, 3, 81, 40, 0, 398, 396, 1, 0, 0, 0, 398, 397, 1, 0, 0, 0, 399, 78, 1, 0, 0, 0, 400,
300
- 402, 7, 19, 0, 0, 401, 400, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 409, 5,
301
- 39, 0, 0, 404, 405, 5, 92, 0, 0, 405, 408, 5, 39, 0, 0, 406, 408, 8, 20, 0, 0, 407, 404, 1, 0, 0,
302
- 0, 407, 406, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 412,
303
- 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 412, 427, 5, 39, 0, 0, 413, 415, 7, 19, 0, 0, 414, 413, 1, 0, 0,
304
- 0, 414, 415, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 422, 5, 34, 0, 0, 417, 418, 5, 92, 0, 0, 418,
305
- 421, 5, 34, 0, 0, 419, 421, 8, 21, 0, 0, 420, 417, 1, 0, 0, 0, 420, 419, 1, 0, 0, 0, 421, 424, 1,
306
- 0, 0, 0, 422, 420, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 425, 1, 0, 0, 0, 424, 422, 1, 0, 0, 0, 425,
307
- 427, 5, 34, 0, 0, 426, 401, 1, 0, 0, 0, 426, 414, 1, 0, 0, 0, 427, 80, 1, 0, 0, 0, 428, 429, 7, 22,
308
- 0, 0, 429, 433, 5, 39, 0, 0, 430, 432, 8, 23, 0, 0, 431, 430, 1, 0, 0, 0, 432, 435, 1, 0, 0, 0, 433,
309
- 431, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 436, 1, 0, 0, 0, 435, 433, 1, 0, 0, 0, 436, 447, 5, 39,
310
- 0, 0, 437, 438, 7, 22, 0, 0, 438, 442, 5, 34, 0, 0, 439, 441, 8, 24, 0, 0, 440, 439, 1, 0, 0, 0,
311
- 441, 444, 1, 0, 0, 0, 442, 440, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 445, 1, 0, 0, 0, 444, 442,
312
- 1, 0, 0, 0, 445, 447, 5, 34, 0, 0, 446, 428, 1, 0, 0, 0, 446, 437, 1, 0, 0, 0, 447, 82, 1, 0, 0, 0,
313
- 448, 449, 5, 92, 0, 0, 449, 452, 7, 25, 0, 0, 450, 452, 3, 85, 42, 0, 451, 448, 1, 0, 0, 0, 451,
314
- 450, 1, 0, 0, 0, 452, 84, 1, 0, 0, 0, 453, 457, 5, 92, 0, 0, 454, 458, 7, 26, 0, 0, 455, 458, 3,
315
- 87, 43, 0, 456, 458, 3, 89, 44, 0, 457, 454, 1, 0, 0, 0, 457, 455, 1, 0, 0, 0, 457, 456, 1, 0, 0,
316
- 0, 458, 86, 1, 0, 0, 0, 459, 460, 5, 117, 0, 0, 460, 461, 3, 111, 55, 0, 461, 462, 3, 111, 55,
317
- 0, 462, 463, 3, 111, 55, 0, 463, 464, 3, 111, 55, 0, 464, 88, 1, 0, 0, 0, 465, 466, 5, 85, 0, 0,
318
- 466, 467, 3, 111, 55, 0, 467, 468, 3, 111, 55, 0, 468, 469, 3, 111, 55, 0, 469, 470, 3, 111,
319
- 55, 0, 470, 471, 3, 111, 55, 0, 471, 472, 3, 111, 55, 0, 472, 473, 3, 111, 55, 0, 473, 474, 3,
320
- 111, 55, 0, 474, 90, 1, 0, 0, 0, 475, 476, 3, 93, 46, 0, 476, 92, 1, 0, 0, 0, 477, 489, 5, 48, 0,
321
- 0, 478, 480, 3, 117, 58, 0, 479, 478, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481,
322
- 485, 7, 4, 0, 0, 482, 484, 3, 103, 51, 0, 483, 482, 1, 0, 0, 0, 484, 487, 1, 0, 0, 0, 485, 483,
323
- 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 489, 1, 0, 0, 0, 487, 485, 1, 0, 0, 0, 488, 477, 1, 0, 0, 0,
324
- 488, 479, 1, 0, 0, 0, 489, 94, 1, 0, 0, 0, 490, 491, 5, 48, 0, 0, 491, 493, 7, 27, 0, 0, 492, 494,
325
- 3, 105, 52, 0, 493, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 493, 1, 0, 0, 0, 495, 496, 1, 0,
326
- 0, 0, 496, 504, 1, 0, 0, 0, 497, 499, 5, 37, 0, 0, 498, 500, 3, 105, 52, 0, 499, 498, 1, 0, 0, 0,
327
- 500, 501, 1, 0, 0, 0, 501, 499, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 504, 1, 0, 0, 0, 503, 490,
328
- 1, 0, 0, 0, 503, 497, 1, 0, 0, 0, 504, 96, 1, 0, 0, 0, 505, 506, 5, 48, 0, 0, 506, 508, 7, 11, 0,
329
- 0, 507, 509, 3, 107, 53, 0, 508, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 510,
330
- 511, 1, 0, 0, 0, 511, 98, 1, 0, 0, 0, 512, 513, 5, 48, 0, 0, 513, 515, 7, 28, 0, 0, 514, 516, 3,
331
- 109, 54, 0, 515, 514, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 515, 1, 0, 0, 0, 517, 518, 1, 0, 0,
332
- 0, 518, 100, 1, 0, 0, 0, 519, 520, 5, 48, 0, 0, 520, 522, 7, 29, 0, 0, 521, 523, 3, 111, 55, 0,
333
- 522, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 522, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 533,
334
- 1, 0, 0, 0, 526, 528, 5, 35, 0, 0, 527, 529, 3, 111, 55, 0, 528, 527, 1, 0, 0, 0, 529, 530, 1, 0,
335
- 0, 0, 530, 528, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 533, 1, 0, 0, 0, 532, 519, 1, 0, 0, 0, 532,
336
- 526, 1, 0, 0, 0, 533, 102, 1, 0, 0, 0, 534, 535, 7, 30, 0, 0, 535, 104, 1, 0, 0, 0, 536, 537, 2,
337
- 48, 49, 0, 537, 106, 1, 0, 0, 0, 538, 539, 7, 31, 0, 0, 539, 108, 1, 0, 0, 0, 540, 543, 3, 103,
338
- 51, 0, 541, 543, 7, 32, 0, 0, 542, 540, 1, 0, 0, 0, 542, 541, 1, 0, 0, 0, 543, 110, 1, 0, 0, 0, 544,
339
- 547, 3, 103, 51, 0, 545, 547, 7, 33, 0, 0, 546, 544, 1, 0, 0, 0, 546, 545, 1, 0, 0, 0, 547, 112,
340
- 1, 0, 0, 0, 548, 550, 5, 46, 0, 0, 549, 551, 3, 103, 51, 0, 550, 549, 1, 0, 0, 0, 551, 552, 1, 0,
341
- 0, 0, 552, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 114, 1, 0, 0, 0, 554, 556, 7, 5, 0, 0, 555,
342
- 557, 3, 117, 58, 0, 556, 555, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 559, 1, 0, 0, 0, 558, 560,
343
- 3, 103, 51, 0, 559, 558, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0,
344
- 0, 0, 562, 116, 1, 0, 0, 0, 563, 564, 7, 34, 0, 0, 564, 118, 1, 0, 0, 0, 565, 567, 3, 123, 61, 0,
345
- 566, 565, 1, 0, 0, 0, 567, 570, 1, 0, 0, 0, 568, 566, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 574,
346
- 1, 0, 0, 0, 570, 568, 1, 0, 0, 0, 571, 573, 3, 127, 63, 0, 572, 571, 1, 0, 0, 0, 573, 576, 1, 0,
347
- 0, 0, 574, 572, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 577, 1, 0, 0, 0, 576, 574, 1, 0, 0, 0, 577,
348
- 581, 3, 121, 60, 0, 578, 580, 3, 127, 63, 0, 579, 578, 1, 0, 0, 0, 580, 583, 1, 0, 0, 0, 581, 579,
349
- 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 120, 1, 0, 0, 0, 583, 581, 1, 0, 0, 0, 584, 586, 5, 13, 0,
350
- 0, 585, 587, 5, 10, 0, 0, 586, 585, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 590, 1, 0, 0, 0, 588,
351
- 590, 5, 10, 0, 0, 589, 584, 1, 0, 0, 0, 589, 588, 1, 0, 0, 0, 590, 122, 1, 0, 0, 0, 591, 593, 7,
352
- 3, 0, 0, 592, 591, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 592, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595,
353
- 596, 1, 0, 0, 0, 596, 597, 6, 61, 0, 0, 597, 124, 1, 0, 0, 0, 598, 599, 5, 47, 0, 0, 599, 600, 5,
354
- 42, 0, 0, 600, 604, 1, 0, 0, 0, 601, 603, 9, 0, 0, 0, 602, 601, 1, 0, 0, 0, 603, 606, 1, 0, 0, 0,
355
- 604, 605, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 605, 607, 1, 0, 0, 0, 606, 604, 1, 0, 0, 0, 607, 608,
356
- 5, 42, 0, 0, 608, 609, 5, 47, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 6, 62, 0, 0, 611, 126, 1, 0,
357
- 0, 0, 612, 616, 3, 129, 64, 0, 613, 616, 3, 131, 65, 0, 614, 616, 3, 125, 62, 0, 615, 612, 1,
358
- 0, 0, 0, 615, 613, 1, 0, 0, 0, 615, 614, 1, 0, 0, 0, 616, 128, 1, 0, 0, 0, 617, 620, 3, 133, 66,
359
- 0, 618, 620, 5, 59, 0, 0, 619, 617, 1, 0, 0, 0, 619, 618, 1, 0, 0, 0, 620, 624, 1, 0, 0, 0, 621,
360
- 623, 8, 35, 0, 0, 622, 621, 1, 0, 0, 0, 623, 626, 1, 0, 0, 0, 624, 622, 1, 0, 0, 0, 624, 625, 1,
361
- 0, 0, 0, 625, 627, 1, 0, 0, 0, 626, 624, 1, 0, 0, 0, 627, 628, 6, 64, 0, 0, 628, 130, 1, 0, 0, 0,
362
- 629, 630, 5, 47, 0, 0, 630, 638, 5, 47, 0, 0, 631, 633, 5, 35, 0, 0, 632, 634, 7, 3, 0, 0, 633,
363
- 632, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 638, 1, 0,
364
- 0, 0, 637, 629, 1, 0, 0, 0, 637, 631, 1, 0, 0, 0, 638, 642, 1, 0, 0, 0, 639, 641, 8, 35, 0, 0, 640,
365
- 639, 1, 0, 0, 0, 641, 644, 1, 0, 0, 0, 642, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 645, 1, 0,
366
- 0, 0, 644, 642, 1, 0, 0, 0, 645, 646, 6, 65, 0, 0, 646, 132, 1, 0, 0, 0, 647, 648, 5, 45, 0, 0, 648,
367
- 649, 5, 45, 0, 0, 649, 653, 1, 0, 0, 0, 650, 652, 8, 35, 0, 0, 651, 650, 1, 0, 0, 0, 652, 655, 1,
368
- 0, 0, 0, 653, 651, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 134, 1, 0, 0, 0, 655, 653, 1, 0, 0, 0, 656,
369
- 660, 7, 30, 0, 0, 657, 659, 7, 36, 0, 0, 658, 657, 1, 0, 0, 0, 659, 662, 1, 0, 0, 0, 660, 658, 1,
370
- 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 136, 1, 0, 0, 0, 662, 660, 1, 0, 0, 0, 663, 664, 8, 37, 0, 0,
371
- 664, 138, 1, 0, 0, 0, 665, 669, 3, 137, 68, 0, 666, 668, 3, 137, 68, 0, 667, 666, 1, 0, 0, 0, 668,
372
- 671, 1, 0, 0, 0, 669, 667, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 140, 1, 0, 0, 0, 671, 669, 1, 0,
373
- 0, 0, 80, 0, 154, 161, 167, 174, 179, 184, 189, 194, 199, 201, 207, 213, 220, 222, 227, 280,
374
- 291, 310, 316, 323, 325, 328, 331, 337, 340, 343, 349, 351, 359, 364, 370, 377, 380, 389,
375
- 398, 401, 407, 409, 414, 420, 422, 426, 433, 442, 446, 451, 457, 479, 485, 488, 495, 501,
376
- 503, 510, 517, 524, 530, 532, 542, 546, 552, 556, 561, 568, 574, 581, 586, 589, 594, 604,
377
- 615, 619, 624, 635, 637, 642, 653, 660, 669, 1, 6, 0, 0];
378
- YiniLexer.DecisionsToDFA = YiniLexer._ATN.decisionToState.map((ds, index) => new antlr4_1.DFA(ds, index));
379
- exports.default = YiniLexer;
@@ -1,2 +0,0 @@
1
- import { IParseMainOptions } from './core/types';
2
- export declare const parseMain: (yiniContent: string, options?: IParseMainOptions) => any;