circuitscript 0.0.24 → 0.0.26

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 (73) hide show
  1. package/LICENSE +1 -1
  2. package/dist/cjs/BaseVisitor.js +485 -0
  3. package/dist/cjs/SemanticTokenVisitor.js +218 -0
  4. package/dist/cjs/SymbolValidatorVisitor.js +233 -0
  5. package/dist/cjs/antlr/CircuitScriptLexer.js +256 -219
  6. package/dist/cjs/antlr/CircuitScriptParser.js +2891 -2151
  7. package/dist/cjs/antlr/CircuitScriptVisitor.js +4 -3
  8. package/dist/cjs/draw_symbols.js +73 -22
  9. package/dist/cjs/execute.js +70 -78
  10. package/dist/cjs/export.js +91 -5
  11. package/dist/cjs/geometry.js +28 -8
  12. package/dist/cjs/globals.js +1 -2
  13. package/dist/cjs/helpers.js +180 -7
  14. package/dist/cjs/index.js +2 -0
  15. package/dist/cjs/layout.js +8 -0
  16. package/dist/cjs/lexer.js +19 -22
  17. package/dist/cjs/main.js +27 -20
  18. package/dist/cjs/objects/ClassComponent.js +4 -0
  19. package/dist/cjs/objects/ExecutionScope.js +1 -0
  20. package/dist/cjs/objects/types.js +7 -1
  21. package/dist/cjs/parser.js +29 -258
  22. package/dist/cjs/render.js +1 -1
  23. package/dist/cjs/validate.js +81 -0
  24. package/dist/cjs/visitor.js +601 -823
  25. package/dist/esm/BaseVisitor.mjs +486 -0
  26. package/dist/esm/SemanticTokenVisitor.mjs +215 -0
  27. package/dist/esm/SymbolValidatorVisitor.mjs +222 -0
  28. package/dist/esm/antlr/CircuitScriptLexer.mjs +231 -218
  29. package/dist/esm/antlr/CircuitScriptParser.mjs +2852 -2144
  30. package/dist/esm/antlr/CircuitScriptVisitor.mjs +13 -4
  31. package/dist/esm/draw_symbols.mjs +74 -23
  32. package/dist/esm/execute.mjs +70 -75
  33. package/dist/esm/export.mjs +89 -6
  34. package/dist/esm/geometry.mjs +28 -8
  35. package/dist/esm/globals.mjs +1 -2
  36. package/dist/esm/helpers.mjs +171 -9
  37. package/dist/esm/index.mjs +2 -0
  38. package/dist/esm/layout.mjs +8 -0
  39. package/dist/esm/lexer.mjs +10 -10
  40. package/dist/esm/main.mjs +28 -21
  41. package/dist/esm/objects/ClassComponent.mjs +4 -0
  42. package/dist/esm/objects/ExecutionScope.mjs +1 -0
  43. package/dist/esm/objects/types.mjs +6 -0
  44. package/dist/esm/parser.mjs +25 -230
  45. package/dist/esm/render.mjs +2 -2
  46. package/dist/esm/validate.mjs +74 -0
  47. package/dist/esm/visitor.mjs +415 -643
  48. package/dist/types/BaseVisitor.d.ts +66 -0
  49. package/dist/types/SemanticTokenVisitor.d.ts +36 -0
  50. package/dist/types/SymbolValidatorVisitor.d.ts +61 -0
  51. package/dist/types/antlr/CircuitScriptLexer.d.ts +37 -29
  52. package/dist/types/antlr/CircuitScriptParser.d.ts +606 -494
  53. package/dist/types/antlr/CircuitScriptVisitor.d.ts +78 -60
  54. package/dist/types/draw_symbols.d.ts +12 -3
  55. package/dist/types/execute.d.ts +5 -10
  56. package/dist/types/export.d.ts +27 -1
  57. package/dist/types/geometry.d.ts +4 -0
  58. package/dist/types/globals.d.ts +2 -3
  59. package/dist/types/helpers.d.ts +32 -1
  60. package/dist/types/index.d.ts +2 -0
  61. package/dist/types/lexer.d.ts +2 -2
  62. package/dist/types/objects/ClassComponent.d.ts +1 -0
  63. package/dist/types/objects/ExecutionScope.d.ts +4 -1
  64. package/dist/types/objects/types.d.ts +5 -0
  65. package/dist/types/parser.d.ts +15 -28
  66. package/dist/types/validate.d.ts +2 -0
  67. package/dist/types/visitor.d.ts +43 -95
  68. package/fonts/Inter-Bold.ttf +0 -0
  69. package/fonts/Inter-Regular.ttf +0 -0
  70. package/fonts/OpenSans-Regular.ttf +0 -0
  71. package/fonts/Roboto-Regular.ttf +0 -0
  72. package/libs/lib.cst +184 -0
  73. package/package.json +11 -6
@@ -1,10 +1,34 @@
1
1
  "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
2
25
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const antlr4_1 = require("antlr4");
4
- class CircuitScriptLexer extends antlr4_1.Lexer {
26
+ exports.CircuitScriptLexer = void 0;
27
+ const antlr = __importStar(require("antlr4ng"));
28
+ class CircuitScriptLexer extends antlr.Lexer {
5
29
  constructor(input) {
6
30
  super(input);
7
- this._interp = new antlr4_1.LexerATNSimulator(this, CircuitScriptLexer._ATN, CircuitScriptLexer.DecisionsToDFA, new antlr4_1.PredictionContextCache());
31
+ this.interpreter = new antlr.LexerATNSimulator(this, CircuitScriptLexer._ATN, CircuitScriptLexer.decisionsToDFA, new antlr.PredictionContextCache());
8
32
  }
9
33
  get grammarFileName() { return "CircuitScript.g4"; }
10
34
  get literalNames() { return CircuitScriptLexer.literalNames; }
@@ -13,34 +37,34 @@ class CircuitScriptLexer extends antlr4_1.Lexer {
13
37
  get serializedATN() { return CircuitScriptLexer._serializedATN; }
14
38
  get channelNames() { return CircuitScriptLexer.channelNames; }
15
39
  get modeNames() { return CircuitScriptLexer.modeNames; }
16
- action(localctx, ruleIndex, actionIndex) {
40
+ action(localContext, ruleIndex, actionIndex) {
17
41
  switch (ruleIndex) {
18
- case 32:
19
- this.OPEN_PAREN_action(localctx, actionIndex);
42
+ case 39:
43
+ this.OPEN_PAREN_action(localContext, actionIndex);
20
44
  break;
21
- case 33:
22
- this.CLOSE_PAREN_action(localctx, actionIndex);
45
+ case 40:
46
+ this.CLOSE_PAREN_action(localContext, actionIndex);
23
47
  break;
24
- case 45:
25
- this.NEWLINE_action(localctx, actionIndex);
48
+ case 52:
49
+ this.NEWLINE_action(localContext, actionIndex);
26
50
  break;
27
51
  }
28
52
  }
29
- OPEN_PAREN_action(localctx, actionIndex) {
53
+ OPEN_PAREN_action(localContext, actionIndex) {
30
54
  switch (actionIndex) {
31
55
  case 0:
32
56
  this.openBrace();
33
57
  break;
34
58
  }
35
59
  }
36
- CLOSE_PAREN_action(localctx, actionIndex) {
60
+ CLOSE_PAREN_action(localContext, actionIndex) {
37
61
  switch (actionIndex) {
38
62
  case 1:
39
63
  this.closeBrace();
40
64
  break;
41
65
  }
42
66
  }
43
- NEWLINE_action(localctx, actionIndex) {
67
+ NEWLINE_action(localContext, actionIndex) {
44
68
  switch (actionIndex) {
45
69
  case 2:
46
70
  this.onNewLine();
@@ -49,11 +73,15 @@ class CircuitScriptLexer extends antlr4_1.Lexer {
49
73
  }
50
74
  static get _ATN() {
51
75
  if (!CircuitScriptLexer.__ATN) {
52
- CircuitScriptLexer.__ATN = new antlr4_1.ATNDeserializer().deserialize(CircuitScriptLexer._serializedATN);
76
+ CircuitScriptLexer.__ATN = new antlr.ATNDeserializer().deserialize(CircuitScriptLexer._serializedATN);
53
77
  }
54
78
  return CircuitScriptLexer.__ATN;
55
79
  }
80
+ get vocabulary() {
81
+ return CircuitScriptLexer.vocabulary;
82
+ }
56
83
  }
84
+ exports.CircuitScriptLexer = CircuitScriptLexer;
57
85
  CircuitScriptLexer.T__0 = 1;
58
86
  CircuitScriptLexer.T__1 = 2;
59
87
  CircuitScriptLexer.T__2 = 3;
@@ -78,211 +106,220 @@ CircuitScriptLexer.Return = 21;
78
106
  CircuitScriptLexer.Define = 22;
79
107
  CircuitScriptLexer.Import = 23;
80
108
  CircuitScriptLexer.If = 24;
81
- CircuitScriptLexer.Not = 25;
82
- CircuitScriptLexer.Frame = 26;
83
- CircuitScriptLexer.Equals = 27;
84
- CircuitScriptLexer.NotEquals = 28;
85
- CircuitScriptLexer.Addition = 29;
86
- CircuitScriptLexer.Minus = 30;
87
- CircuitScriptLexer.Divide = 31;
88
- CircuitScriptLexer.Multiply = 32;
89
- CircuitScriptLexer.OPEN_PAREN = 33;
90
- CircuitScriptLexer.CLOSE_PAREN = 34;
91
- CircuitScriptLexer.NOT_CONNECTED = 35;
92
- CircuitScriptLexer.BOOLEAN_VALUE = 36;
93
- CircuitScriptLexer.ID = 37;
94
- CircuitScriptLexer.INTEGER_VALUE = 38;
95
- CircuitScriptLexer.DECIMAL_VALUE = 39;
96
- CircuitScriptLexer.NUMERIC_VALUE = 40;
97
- CircuitScriptLexer.STRING_VALUE = 41;
98
- CircuitScriptLexer.PERCENTAGE_VALUE = 42;
99
- CircuitScriptLexer.ALPHA_NUMERIC = 43;
100
- CircuitScriptLexer.WS = 44;
101
- CircuitScriptLexer.NEWLINE = 45;
102
- CircuitScriptLexer.COMMENT = 46;
103
- CircuitScriptLexer.EOF = antlr4_1.Token.EOF;
104
- CircuitScriptLexer.channelNames = ["DEFAULT_TOKEN_CHANNEL", "HIDDEN"];
105
- CircuitScriptLexer.literalNames = [null, "':'",
106
- "','", "'='",
107
- "'..'", "'.'",
108
- "'['", "']'",
109
- "'break'", "'branch'",
110
- "'create'",
111
- "'component'",
112
- "'graphic'",
113
- "'wire'", "'pin'",
114
- "'add'", "'at'",
115
- "'to'", "'point'",
116
- "'join'", "'parallel'",
117
- "'return'",
118
- "'def'", "'import'",
119
- "'if'", "'!'",
120
- "'frame'", "'=='",
121
- "'!='", "'+'",
122
- "'-'", "'/'",
123
- "'*'", "'('",
124
- "')'"];
125
- CircuitScriptLexer.symbolicNames = [null, null,
126
- null, null,
127
- null, null,
128
- null, null,
129
- "Break", "Branch",
130
- "Create", "Component",
131
- "Graphic",
132
- "Wire", "Pin",
133
- "Add", "At",
134
- "To", "Point",
135
- "Join", "Parallel",
136
- "Return", "Define",
137
- "Import", "If",
138
- "Not", "Frame",
139
- "Equals", "NotEquals",
140
- "Addition",
141
- "Minus", "Divide",
142
- "Multiply",
143
- "OPEN_PAREN",
144
- "CLOSE_PAREN",
145
- "NOT_CONNECTED",
146
- "BOOLEAN_VALUE",
147
- "ID", "INTEGER_VALUE",
148
- "DECIMAL_VALUE",
149
- "NUMERIC_VALUE",
150
- "STRING_VALUE",
151
- "PERCENTAGE_VALUE",
152
- "ALPHA_NUMERIC",
153
- "WS", "NEWLINE",
154
- "COMMENT"];
155
- CircuitScriptLexer.modeNames = ["DEFAULT_MODE",];
109
+ CircuitScriptLexer.Else = 25;
110
+ CircuitScriptLexer.Not = 26;
111
+ CircuitScriptLexer.Frame = 27;
112
+ CircuitScriptLexer.Equals = 28;
113
+ CircuitScriptLexer.NotEquals = 29;
114
+ CircuitScriptLexer.GreaterThan = 30;
115
+ CircuitScriptLexer.GreatOrEqualThan = 31;
116
+ CircuitScriptLexer.LessThan = 32;
117
+ CircuitScriptLexer.LessOrEqualThan = 33;
118
+ CircuitScriptLexer.LogicalAnd = 34;
119
+ CircuitScriptLexer.LogicalOr = 35;
120
+ CircuitScriptLexer.Addition = 36;
121
+ CircuitScriptLexer.Minus = 37;
122
+ CircuitScriptLexer.Divide = 38;
123
+ CircuitScriptLexer.Multiply = 39;
124
+ CircuitScriptLexer.OPEN_PAREN = 40;
125
+ CircuitScriptLexer.CLOSE_PAREN = 41;
126
+ CircuitScriptLexer.NOT_CONNECTED = 42;
127
+ CircuitScriptLexer.BOOLEAN_VALUE = 43;
128
+ CircuitScriptLexer.ID = 44;
129
+ CircuitScriptLexer.INTEGER_VALUE = 45;
130
+ CircuitScriptLexer.DECIMAL_VALUE = 46;
131
+ CircuitScriptLexer.NUMERIC_VALUE = 47;
132
+ CircuitScriptLexer.STRING_VALUE = 48;
133
+ CircuitScriptLexer.PERCENTAGE_VALUE = 49;
134
+ CircuitScriptLexer.ALPHA_NUMERIC = 50;
135
+ CircuitScriptLexer.WS = 51;
136
+ CircuitScriptLexer.NEWLINE = 52;
137
+ CircuitScriptLexer.COMMENT = 53;
138
+ CircuitScriptLexer.channelNames = [
139
+ "DEFAULT_TOKEN_CHANNEL", "HIDDEN"
140
+ ];
141
+ CircuitScriptLexer.literalNames = [
142
+ null, "':'", "','", "'='", "'..'", "'.'", "'['", "']'", "'break'",
143
+ "'branch'", "'create'", "'component'", "'graphic'", "'wire'", "'pin'",
144
+ "'add'", "'at'", "'to'", "'point'", "'join'", "'parallel'", "'return'",
145
+ "'def'", "'import'", "'if'", "'else'", "'!'", "'frame'", "'=='",
146
+ "'!='", "'>'", "'>='", "'<'", "'<='", "'&&'", "'||'", "'+'", "'-'",
147
+ "'/'", "'*'", "'('", "')'"
148
+ ];
149
+ CircuitScriptLexer.symbolicNames = [
150
+ null, null, null, null, null, null, null, null, "Break", "Branch",
151
+ "Create", "Component", "Graphic", "Wire", "Pin", "Add", "At", "To",
152
+ "Point", "Join", "Parallel", "Return", "Define", "Import", "If",
153
+ "Else", "Not", "Frame", "Equals", "NotEquals", "GreaterThan", "GreatOrEqualThan",
154
+ "LessThan", "LessOrEqualThan", "LogicalAnd", "LogicalOr", "Addition",
155
+ "Minus", "Divide", "Multiply", "OPEN_PAREN", "CLOSE_PAREN", "NOT_CONNECTED",
156
+ "BOOLEAN_VALUE", "ID", "INTEGER_VALUE", "DECIMAL_VALUE", "NUMERIC_VALUE",
157
+ "STRING_VALUE", "PERCENTAGE_VALUE", "ALPHA_NUMERIC", "WS", "NEWLINE",
158
+ "COMMENT"
159
+ ];
160
+ CircuitScriptLexer.modeNames = [
161
+ "DEFAULT_MODE",
162
+ ];
156
163
  CircuitScriptLexer.ruleNames = [
157
- "T__0", "T__1", "T__2", "T__3", "T__4", "T__5", "T__6", "Break", "Branch",
158
- "Create", "Component", "Graphic", "Wire", "Pin", "Add", "At", "To", "Point",
159
- "Join", "Parallel", "Return", "Define", "Import", "If", "Not", "Frame",
160
- "Equals", "NotEquals", "Addition", "Minus", "Divide", "Multiply", "OPEN_PAREN",
164
+ "T__0", "T__1", "T__2", "T__3", "T__4", "T__5", "T__6", "Break",
165
+ "Branch", "Create", "Component", "Graphic", "Wire", "Pin", "Add",
166
+ "At", "To", "Point", "Join", "Parallel", "Return", "Define", "Import",
167
+ "If", "Else", "Not", "Frame", "Equals", "NotEquals", "GreaterThan",
168
+ "GreatOrEqualThan", "LessThan", "LessOrEqualThan", "LogicalAnd",
169
+ "LogicalOr", "Addition", "Minus", "Divide", "Multiply", "OPEN_PAREN",
161
170
  "CLOSE_PAREN", "NOT_CONNECTED", "BOOLEAN_VALUE", "ID", "DecimalIntegerLiteral",
162
- "INTEGER_VALUE", "DECIMAL_VALUE", "NUMERIC_VALUE", "STRING_VALUE", "PERCENTAGE_VALUE",
163
- "ALPHA_NUMERIC", "WS", "NEWLINE", "SPACES", "COMMENT_FRAGMENT", "COMMENT",
171
+ "INTEGER_VALUE", "DECIMAL_VALUE", "NUMERIC_VALUE", "STRING_VALUE",
172
+ "PERCENTAGE_VALUE", "ALPHA_NUMERIC", "WS", "NEWLINE", "SPACES",
173
+ "COMMENT_FRAGMENT", "COMMENT",
174
+ ];
175
+ CircuitScriptLexer._serializedATN = [
176
+ 4, 0, 53, 403, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5,
177
+ 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2,
178
+ 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7,
179
+ 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2,
180
+ 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7,
181
+ 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2,
182
+ 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,
183
+ 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,
184
+ 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1,
185
+ 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1,
186
+ 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10,
187
+ 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11,
188
+ 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14,
189
+ 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17,
190
+ 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19,
191
+ 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21,
192
+ 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24,
193
+ 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27,
194
+ 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32,
195
+ 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38,
196
+ 1, 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 280,
197
+ 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 291, 8, 42,
198
+ 1, 43, 1, 43, 5, 43, 295, 8, 43, 10, 43, 12, 43, 298, 9, 43, 1, 44, 1, 44, 1, 44, 5, 44,
199
+ 303, 8, 44, 10, 44, 12, 44, 306, 9, 44, 3, 44, 308, 8, 44, 1, 45, 4, 45, 311, 8, 45, 11,
200
+ 45, 12, 45, 312, 1, 45, 5, 45, 316, 8, 45, 10, 45, 12, 45, 319, 9, 45, 1, 45, 3, 45, 322,
201
+ 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 328, 8, 46, 10, 46, 12, 46, 331, 9, 46, 1, 47,
202
+ 1, 47, 3, 47, 335, 8, 47, 1, 47, 3, 47, 338, 8, 47, 1, 48, 1, 48, 5, 48, 342, 8, 48, 10,
203
+ 48, 12, 48, 345, 9, 48, 1, 48, 1, 48, 1, 49, 4, 49, 350, 8, 49, 11, 49, 12, 49, 351, 1,
204
+ 49, 5, 49, 355, 8, 49, 10, 49, 12, 49, 358, 9, 49, 1, 49, 1, 49, 1, 50, 4, 50, 363, 8,
205
+ 50, 11, 50, 12, 50, 364, 1, 51, 4, 51, 368, 8, 51, 11, 51, 12, 51, 369, 1, 51, 1, 51,
206
+ 1, 52, 3, 52, 375, 8, 52, 1, 52, 1, 52, 3, 52, 379, 8, 52, 1, 52, 3, 52, 382, 8, 52, 1,
207
+ 52, 1, 52, 1, 53, 4, 53, 387, 8, 53, 11, 53, 12, 53, 388, 1, 54, 1, 54, 5, 54, 393, 8,
208
+ 54, 10, 54, 12, 54, 396, 9, 54, 1, 55, 1, 55, 3, 55, 400, 8, 55, 1, 55, 1, 55, 1, 343,
209
+ 0, 56, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25,
210
+ 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47,
211
+ 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69,
212
+ 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 0, 91,
213
+ 45, 93, 46, 95, 47, 97, 48, 99, 49, 101, 50, 103, 51, 105, 52, 107, 0, 109, 0, 111,
214
+ 53, 1, 0, 10, 3, 0, 65, 90, 95, 95, 97, 122, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 1,
215
+ 0, 49, 57, 2, 0, 48, 57, 95, 95, 1, 0, 48, 57, 1, 0, 48, 48, 5, 0, 77, 77, 107, 107, 109,
216
+ 110, 112, 112, 117, 117, 3, 0, 48, 57, 65, 90, 97, 122, 2, 0, 9, 9, 32, 32, 2, 0, 10,
217
+ 10, 12, 13, 421, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9,
218
+ 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19,
219
+ 1, 0, 0, 0, 0, 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,
220
+ 1, 0, 0, 0, 0, 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,
221
+ 1, 0, 0, 0, 0, 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,
222
+ 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59,
223
+ 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69,
224
+ 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, 0, 0, 79,
225
+ 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 91,
226
+ 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101,
227
+ 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 1, 113, 1, 0, 0, 0,
228
+ 3, 115, 1, 0, 0, 0, 5, 117, 1, 0, 0, 0, 7, 119, 1, 0, 0, 0, 9, 122, 1, 0, 0, 0, 11, 124, 1,
229
+ 0, 0, 0, 13, 126, 1, 0, 0, 0, 15, 128, 1, 0, 0, 0, 17, 134, 1, 0, 0, 0, 19, 141, 1, 0, 0,
230
+ 0, 21, 148, 1, 0, 0, 0, 23, 158, 1, 0, 0, 0, 25, 166, 1, 0, 0, 0, 27, 171, 1, 0, 0, 0, 29,
231
+ 175, 1, 0, 0, 0, 31, 179, 1, 0, 0, 0, 33, 182, 1, 0, 0, 0, 35, 185, 1, 0, 0, 0, 37, 191,
232
+ 1, 0, 0, 0, 39, 196, 1, 0, 0, 0, 41, 205, 1, 0, 0, 0, 43, 212, 1, 0, 0, 0, 45, 216, 1, 0,
233
+ 0, 0, 47, 223, 1, 0, 0, 0, 49, 226, 1, 0, 0, 0, 51, 231, 1, 0, 0, 0, 53, 233, 1, 0, 0, 0,
234
+ 55, 239, 1, 0, 0, 0, 57, 242, 1, 0, 0, 0, 59, 245, 1, 0, 0, 0, 61, 247, 1, 0, 0, 0, 63, 250,
235
+ 1, 0, 0, 0, 65, 252, 1, 0, 0, 0, 67, 255, 1, 0, 0, 0, 69, 258, 1, 0, 0, 0, 71, 261, 1, 0,
236
+ 0, 0, 73, 263, 1, 0, 0, 0, 75, 265, 1, 0, 0, 0, 77, 267, 1, 0, 0, 0, 79, 269, 1, 0, 0, 0,
237
+ 81, 272, 1, 0, 0, 0, 83, 279, 1, 0, 0, 0, 85, 290, 1, 0, 0, 0, 87, 292, 1, 0, 0, 0, 89, 307,
238
+ 1, 0, 0, 0, 91, 321, 1, 0, 0, 0, 93, 323, 1, 0, 0, 0, 95, 334, 1, 0, 0, 0, 97, 339, 1, 0,
239
+ 0, 0, 99, 349, 1, 0, 0, 0, 101, 362, 1, 0, 0, 0, 103, 367, 1, 0, 0, 0, 105, 378, 1, 0, 0,
240
+ 0, 107, 386, 1, 0, 0, 0, 109, 390, 1, 0, 0, 0, 111, 399, 1, 0, 0, 0, 113, 114, 5, 58, 0,
241
+ 0, 114, 2, 1, 0, 0, 0, 115, 116, 5, 44, 0, 0, 116, 4, 1, 0, 0, 0, 117, 118, 5, 61, 0, 0,
242
+ 118, 6, 1, 0, 0, 0, 119, 120, 5, 46, 0, 0, 120, 121, 5, 46, 0, 0, 121, 8, 1, 0, 0, 0, 122,
243
+ 123, 5, 46, 0, 0, 123, 10, 1, 0, 0, 0, 124, 125, 5, 91, 0, 0, 125, 12, 1, 0, 0, 0, 126,
244
+ 127, 5, 93, 0, 0, 127, 14, 1, 0, 0, 0, 128, 129, 5, 98, 0, 0, 129, 130, 5, 114, 0, 0, 130,
245
+ 131, 5, 101, 0, 0, 131, 132, 5, 97, 0, 0, 132, 133, 5, 107, 0, 0, 133, 16, 1, 0, 0, 0,
246
+ 134, 135, 5, 98, 0, 0, 135, 136, 5, 114, 0, 0, 136, 137, 5, 97, 0, 0, 137, 138, 5, 110,
247
+ 0, 0, 138, 139, 5, 99, 0, 0, 139, 140, 5, 104, 0, 0, 140, 18, 1, 0, 0, 0, 141, 142, 5,
248
+ 99, 0, 0, 142, 143, 5, 114, 0, 0, 143, 144, 5, 101, 0, 0, 144, 145, 5, 97, 0, 0, 145,
249
+ 146, 5, 116, 0, 0, 146, 147, 5, 101, 0, 0, 147, 20, 1, 0, 0, 0, 148, 149, 5, 99, 0, 0,
250
+ 149, 150, 5, 111, 0, 0, 150, 151, 5, 109, 0, 0, 151, 152, 5, 112, 0, 0, 152, 153, 5,
251
+ 111, 0, 0, 153, 154, 5, 110, 0, 0, 154, 155, 5, 101, 0, 0, 155, 156, 5, 110, 0, 0, 156,
252
+ 157, 5, 116, 0, 0, 157, 22, 1, 0, 0, 0, 158, 159, 5, 103, 0, 0, 159, 160, 5, 114, 0, 0,
253
+ 160, 161, 5, 97, 0, 0, 161, 162, 5, 112, 0, 0, 162, 163, 5, 104, 0, 0, 163, 164, 5, 105,
254
+ 0, 0, 164, 165, 5, 99, 0, 0, 165, 24, 1, 0, 0, 0, 166, 167, 5, 119, 0, 0, 167, 168, 5,
255
+ 105, 0, 0, 168, 169, 5, 114, 0, 0, 169, 170, 5, 101, 0, 0, 170, 26, 1, 0, 0, 0, 171, 172,
256
+ 5, 112, 0, 0, 172, 173, 5, 105, 0, 0, 173, 174, 5, 110, 0, 0, 174, 28, 1, 0, 0, 0, 175,
257
+ 176, 5, 97, 0, 0, 176, 177, 5, 100, 0, 0, 177, 178, 5, 100, 0, 0, 178, 30, 1, 0, 0, 0,
258
+ 179, 180, 5, 97, 0, 0, 180, 181, 5, 116, 0, 0, 181, 32, 1, 0, 0, 0, 182, 183, 5, 116,
259
+ 0, 0, 183, 184, 5, 111, 0, 0, 184, 34, 1, 0, 0, 0, 185, 186, 5, 112, 0, 0, 186, 187, 5,
260
+ 111, 0, 0, 187, 188, 5, 105, 0, 0, 188, 189, 5, 110, 0, 0, 189, 190, 5, 116, 0, 0, 190,
261
+ 36, 1, 0, 0, 0, 191, 192, 5, 106, 0, 0, 192, 193, 5, 111, 0, 0, 193, 194, 5, 105, 0, 0,
262
+ 194, 195, 5, 110, 0, 0, 195, 38, 1, 0, 0, 0, 196, 197, 5, 112, 0, 0, 197, 198, 5, 97,
263
+ 0, 0, 198, 199, 5, 114, 0, 0, 199, 200, 5, 97, 0, 0, 200, 201, 5, 108, 0, 0, 201, 202,
264
+ 5, 108, 0, 0, 202, 203, 5, 101, 0, 0, 203, 204, 5, 108, 0, 0, 204, 40, 1, 0, 0, 0, 205,
265
+ 206, 5, 114, 0, 0, 206, 207, 5, 101, 0, 0, 207, 208, 5, 116, 0, 0, 208, 209, 5, 117,
266
+ 0, 0, 209, 210, 5, 114, 0, 0, 210, 211, 5, 110, 0, 0, 211, 42, 1, 0, 0, 0, 212, 213, 5,
267
+ 100, 0, 0, 213, 214, 5, 101, 0, 0, 214, 215, 5, 102, 0, 0, 215, 44, 1, 0, 0, 0, 216, 217,
268
+ 5, 105, 0, 0, 217, 218, 5, 109, 0, 0, 218, 219, 5, 112, 0, 0, 219, 220, 5, 111, 0, 0,
269
+ 220, 221, 5, 114, 0, 0, 221, 222, 5, 116, 0, 0, 222, 46, 1, 0, 0, 0, 223, 224, 5, 105,
270
+ 0, 0, 224, 225, 5, 102, 0, 0, 225, 48, 1, 0, 0, 0, 226, 227, 5, 101, 0, 0, 227, 228, 5,
271
+ 108, 0, 0, 228, 229, 5, 115, 0, 0, 229, 230, 5, 101, 0, 0, 230, 50, 1, 0, 0, 0, 231, 232,
272
+ 5, 33, 0, 0, 232, 52, 1, 0, 0, 0, 233, 234, 5, 102, 0, 0, 234, 235, 5, 114, 0, 0, 235,
273
+ 236, 5, 97, 0, 0, 236, 237, 5, 109, 0, 0, 237, 238, 5, 101, 0, 0, 238, 54, 1, 0, 0, 0,
274
+ 239, 240, 5, 61, 0, 0, 240, 241, 5, 61, 0, 0, 241, 56, 1, 0, 0, 0, 242, 243, 5, 33, 0,
275
+ 0, 243, 244, 5, 61, 0, 0, 244, 58, 1, 0, 0, 0, 245, 246, 5, 62, 0, 0, 246, 60, 1, 0, 0,
276
+ 0, 247, 248, 5, 62, 0, 0, 248, 249, 5, 61, 0, 0, 249, 62, 1, 0, 0, 0, 250, 251, 5, 60,
277
+ 0, 0, 251, 64, 1, 0, 0, 0, 252, 253, 5, 60, 0, 0, 253, 254, 5, 61, 0, 0, 254, 66, 1, 0,
278
+ 0, 0, 255, 256, 5, 38, 0, 0, 256, 257, 5, 38, 0, 0, 257, 68, 1, 0, 0, 0, 258, 259, 5, 124,
279
+ 0, 0, 259, 260, 5, 124, 0, 0, 260, 70, 1, 0, 0, 0, 261, 262, 5, 43, 0, 0, 262, 72, 1, 0,
280
+ 0, 0, 263, 264, 5, 45, 0, 0, 264, 74, 1, 0, 0, 0, 265, 266, 5, 47, 0, 0, 266, 76, 1, 0,
281
+ 0, 0, 267, 268, 5, 42, 0, 0, 268, 78, 1, 0, 0, 0, 269, 270, 5, 40, 0, 0, 270, 271, 6, 39,
282
+ 0, 0, 271, 80, 1, 0, 0, 0, 272, 273, 5, 41, 0, 0, 273, 274, 6, 40, 1, 0, 274, 82, 1, 0,
283
+ 0, 0, 275, 276, 5, 110, 0, 0, 276, 280, 5, 99, 0, 0, 277, 278, 5, 78, 0, 0, 278, 280,
284
+ 5, 67, 0, 0, 279, 275, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 280, 84, 1, 0, 0, 0, 281, 282,
285
+ 5, 116, 0, 0, 282, 283, 5, 114, 0, 0, 283, 284, 5, 117, 0, 0, 284, 291, 5, 101, 0, 0,
286
+ 285, 286, 5, 102, 0, 0, 286, 287, 5, 97, 0, 0, 287, 288, 5, 108, 0, 0, 288, 289, 5, 115,
287
+ 0, 0, 289, 291, 5, 101, 0, 0, 290, 281, 1, 0, 0, 0, 290, 285, 1, 0, 0, 0, 291, 86, 1, 0,
288
+ 0, 0, 292, 296, 7, 0, 0, 0, 293, 295, 7, 1, 0, 0, 294, 293, 1, 0, 0, 0, 295, 298, 1, 0,
289
+ 0, 0, 296, 294, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 88, 1, 0, 0, 0, 298, 296, 1, 0, 0,
290
+ 0, 299, 308, 5, 48, 0, 0, 300, 304, 7, 2, 0, 0, 301, 303, 7, 3, 0, 0, 302, 301, 1, 0, 0,
291
+ 0, 303, 306, 1, 0, 0, 0, 304, 302, 1, 0, 0, 0, 304, 305, 1, 0, 0, 0, 305, 308, 1, 0, 0,
292
+ 0, 306, 304, 1, 0, 0, 0, 307, 299, 1, 0, 0, 0, 307, 300, 1, 0, 0, 0, 308, 90, 1, 0, 0, 0,
293
+ 309, 311, 7, 2, 0, 0, 310, 309, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 310, 1, 0, 0, 0,
294
+ 312, 313, 1, 0, 0, 0, 313, 317, 1, 0, 0, 0, 314, 316, 7, 4, 0, 0, 315, 314, 1, 0, 0, 0,
295
+ 316, 319, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 322, 1, 0, 0, 0,
296
+ 319, 317, 1, 0, 0, 0, 320, 322, 7, 5, 0, 0, 321, 310, 1, 0, 0, 0, 321, 320, 1, 0, 0, 0,
297
+ 322, 92, 1, 0, 0, 0, 323, 324, 3, 89, 44, 0, 324, 325, 5, 46, 0, 0, 325, 329, 7, 4, 0,
298
+ 0, 326, 328, 7, 3, 0, 0, 327, 326, 1, 0, 0, 0, 328, 331, 1, 0, 0, 0, 329, 327, 1, 0, 0,
299
+ 0, 329, 330, 1, 0, 0, 0, 330, 94, 1, 0, 0, 0, 331, 329, 1, 0, 0, 0, 332, 335, 3, 91, 45,
300
+ 0, 333, 335, 3, 93, 46, 0, 334, 332, 1, 0, 0, 0, 334, 333, 1, 0, 0, 0, 335, 337, 1, 0,
301
+ 0, 0, 336, 338, 7, 6, 0, 0, 337, 336, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 96, 1, 0, 0,
302
+ 0, 339, 343, 5, 34, 0, 0, 340, 342, 9, 0, 0, 0, 341, 340, 1, 0, 0, 0, 342, 345, 1, 0, 0,
303
+ 0, 343, 344, 1, 0, 0, 0, 343, 341, 1, 0, 0, 0, 344, 346, 1, 0, 0, 0, 345, 343, 1, 0, 0,
304
+ 0, 346, 347, 5, 34, 0, 0, 347, 98, 1, 0, 0, 0, 348, 350, 7, 2, 0, 0, 349, 348, 1, 0, 0,
305
+ 0, 350, 351, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 356, 1, 0, 0,
306
+ 0, 353, 355, 7, 4, 0, 0, 354, 353, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 354, 1, 0, 0,
307
+ 0, 356, 357, 1, 0, 0, 0, 357, 359, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 359, 360, 5, 37, 0,
308
+ 0, 360, 100, 1, 0, 0, 0, 361, 363, 7, 7, 0, 0, 362, 361, 1, 0, 0, 0, 363, 364, 1, 0, 0,
309
+ 0, 364, 362, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 102, 1, 0, 0, 0, 366, 368, 7, 8, 0,
310
+ 0, 367, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 369, 370, 1, 0, 0,
311
+ 0, 370, 371, 1, 0, 0, 0, 371, 372, 6, 51, 2, 0, 372, 104, 1, 0, 0, 0, 373, 375, 5, 13,
312
+ 0, 0, 374, 373, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 379, 5, 10,
313
+ 0, 0, 377, 379, 2, 12, 13, 0, 378, 374, 1, 0, 0, 0, 378, 377, 1, 0, 0, 0, 379, 381, 1,
314
+ 0, 0, 0, 380, 382, 3, 107, 53, 0, 381, 380, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 383,
315
+ 1, 0, 0, 0, 383, 384, 6, 52, 3, 0, 384, 106, 1, 0, 0, 0, 385, 387, 7, 8, 0, 0, 386, 385,
316
+ 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 386, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 108,
317
+ 1, 0, 0, 0, 390, 394, 5, 35, 0, 0, 391, 393, 8, 9, 0, 0, 392, 391, 1, 0, 0, 0, 393, 396,
318
+ 1, 0, 0, 0, 394, 392, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 110, 1, 0, 0, 0, 396, 394,
319
+ 1, 0, 0, 0, 397, 400, 3, 103, 51, 0, 398, 400, 3, 109, 54, 0, 399, 397, 1, 0, 0, 0, 399,
320
+ 398, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 402, 6, 55, 4, 0, 402, 112, 1, 0, 0, 0, 23,
321
+ 0, 279, 290, 296, 304, 307, 312, 317, 321, 329, 334, 337, 343, 351, 356, 364, 369,
322
+ 374, 378, 381, 388, 394, 399, 5, 1, 39, 0, 1, 40, 1, 6, 0, 0, 1, 52, 2, 0, 2, 0
164
323
  ];
165
- CircuitScriptLexer._serializedATN = [4, 0, 46, 368, 6, -1, 2, 0,
166
- 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,
167
- 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,
168
- 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,
169
- 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,
170
- 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,
171
- 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,
172
- 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1,
173
- 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1,
174
- 8, 1, 9, 1, 9, 1, 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, 1,
175
- 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12,
176
- 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1,
177
- 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19,
178
- 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1,
179
- 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25,
180
- 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 29, 1,
181
- 29, 1, 30, 1, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34,
182
- 3, 34, 245, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 256, 8, 35,
183
- 1, 36, 1, 36, 5, 36, 260, 8, 36, 10, 36, 12, 36, 263, 9, 36, 1, 37, 1, 37, 1, 37, 5, 37, 268, 8,
184
- 37, 10, 37, 12, 37, 271, 9, 37, 3, 37, 273, 8, 37, 1, 38, 4, 38, 276, 8, 38, 11, 38, 12, 38, 277,
185
- 1, 38, 5, 38, 281, 8, 38, 10, 38, 12, 38, 284, 9, 38, 1, 38, 3, 38, 287, 8, 38, 1, 39, 1, 39, 1,
186
- 39, 1, 39, 5, 39, 293, 8, 39, 10, 39, 12, 39, 296, 9, 39, 1, 40, 1, 40, 3, 40, 300, 8, 40, 1, 40,
187
- 3, 40, 303, 8, 40, 1, 41, 1, 41, 5, 41, 307, 8, 41, 10, 41, 12, 41, 310, 9, 41, 1, 41, 1, 41, 1,
188
- 42, 4, 42, 315, 8, 42, 11, 42, 12, 42, 316, 1, 42, 5, 42, 320, 8, 42, 10, 42, 12, 42, 323, 9, 42,
189
- 1, 42, 1, 42, 1, 43, 4, 43, 328, 8, 43, 11, 43, 12, 43, 329, 1, 44, 4, 44, 333, 8, 44, 11, 44, 12,
190
- 44, 334, 1, 44, 1, 44, 1, 45, 3, 45, 340, 8, 45, 1, 45, 1, 45, 3, 45, 344, 8, 45, 1, 45, 3, 45, 347,
191
- 8, 45, 1, 45, 1, 45, 1, 46, 4, 46, 352, 8, 46, 11, 46, 12, 46, 353, 1, 47, 1, 47, 5, 47, 358, 8,
192
- 47, 10, 47, 12, 47, 361, 9, 47, 1, 48, 1, 48, 3, 48, 365, 8, 48, 1, 48, 1, 48, 1, 308, 0, 49, 1,
193
- 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29,
194
- 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53,
195
- 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 0, 77,
196
- 38, 79, 39, 81, 40, 83, 41, 85, 42, 87, 43, 89, 44, 91, 45, 93, 0, 95, 0, 97, 46, 1, 0, 10, 3, 0,
197
- 65, 90, 95, 95, 97, 122, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 1, 0, 49, 57, 2, 0, 48, 57, 95,
198
- 95, 1, 0, 48, 57, 1, 0, 48, 48, 5, 0, 77, 77, 107, 107, 109, 110, 112, 112, 117, 117, 3, 0, 48,
199
- 57, 65, 90, 97, 122, 2, 0, 9, 9, 32, 32, 2, 0, 10, 10, 12, 13, 386, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0,
200
- 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1,
201
- 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0,
202
- 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1,
203
- 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0,
204
- 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1,
205
- 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0,
206
- 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1,
207
- 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0,
208
- 1, 99, 1, 0, 0, 0, 3, 101, 1, 0, 0, 0, 5, 103, 1, 0, 0, 0, 7, 105, 1, 0, 0, 0, 9, 108, 1, 0, 0, 0, 11,
209
- 110, 1, 0, 0, 0, 13, 112, 1, 0, 0, 0, 15, 114, 1, 0, 0, 0, 17, 120, 1, 0, 0, 0, 19, 127, 1, 0, 0, 0,
210
- 21, 134, 1, 0, 0, 0, 23, 144, 1, 0, 0, 0, 25, 152, 1, 0, 0, 0, 27, 157, 1, 0, 0, 0, 29, 161, 1, 0,
211
- 0, 0, 31, 165, 1, 0, 0, 0, 33, 168, 1, 0, 0, 0, 35, 171, 1, 0, 0, 0, 37, 177, 1, 0, 0, 0, 39, 182,
212
- 1, 0, 0, 0, 41, 191, 1, 0, 0, 0, 43, 198, 1, 0, 0, 0, 45, 202, 1, 0, 0, 0, 47, 209, 1, 0, 0, 0, 49,
213
- 212, 1, 0, 0, 0, 51, 214, 1, 0, 0, 0, 53, 220, 1, 0, 0, 0, 55, 223, 1, 0, 0, 0, 57, 226, 1, 0, 0, 0,
214
- 59, 228, 1, 0, 0, 0, 61, 230, 1, 0, 0, 0, 63, 232, 1, 0, 0, 0, 65, 234, 1, 0, 0, 0, 67, 237, 1, 0,
215
- 0, 0, 69, 244, 1, 0, 0, 0, 71, 255, 1, 0, 0, 0, 73, 257, 1, 0, 0, 0, 75, 272, 1, 0, 0, 0, 77, 286,
216
- 1, 0, 0, 0, 79, 288, 1, 0, 0, 0, 81, 299, 1, 0, 0, 0, 83, 304, 1, 0, 0, 0, 85, 314, 1, 0, 0, 0, 87,
217
- 327, 1, 0, 0, 0, 89, 332, 1, 0, 0, 0, 91, 343, 1, 0, 0, 0, 93, 351, 1, 0, 0, 0, 95, 355, 1, 0, 0, 0,
218
- 97, 364, 1, 0, 0, 0, 99, 100, 5, 58, 0, 0, 100, 2, 1, 0, 0, 0, 101, 102, 5, 44, 0, 0, 102, 4, 1, 0,
219
- 0, 0, 103, 104, 5, 61, 0, 0, 104, 6, 1, 0, 0, 0, 105, 106, 5, 46, 0, 0, 106, 107, 5, 46, 0, 0, 107,
220
- 8, 1, 0, 0, 0, 108, 109, 5, 46, 0, 0, 109, 10, 1, 0, 0, 0, 110, 111, 5, 91, 0, 0, 111, 12, 1, 0, 0,
221
- 0, 112, 113, 5, 93, 0, 0, 113, 14, 1, 0, 0, 0, 114, 115, 5, 98, 0, 0, 115, 116, 5, 114, 0, 0, 116,
222
- 117, 5, 101, 0, 0, 117, 118, 5, 97, 0, 0, 118, 119, 5, 107, 0, 0, 119, 16, 1, 0, 0, 0, 120, 121,
223
- 5, 98, 0, 0, 121, 122, 5, 114, 0, 0, 122, 123, 5, 97, 0, 0, 123, 124, 5, 110, 0, 0, 124, 125, 5,
224
- 99, 0, 0, 125, 126, 5, 104, 0, 0, 126, 18, 1, 0, 0, 0, 127, 128, 5, 99, 0, 0, 128, 129, 5, 114,
225
- 0, 0, 129, 130, 5, 101, 0, 0, 130, 131, 5, 97, 0, 0, 131, 132, 5, 116, 0, 0, 132, 133, 5, 101,
226
- 0, 0, 133, 20, 1, 0, 0, 0, 134, 135, 5, 99, 0, 0, 135, 136, 5, 111, 0, 0, 136, 137, 5, 109, 0, 0,
227
- 137, 138, 5, 112, 0, 0, 138, 139, 5, 111, 0, 0, 139, 140, 5, 110, 0, 0, 140, 141, 5, 101, 0, 0,
228
- 141, 142, 5, 110, 0, 0, 142, 143, 5, 116, 0, 0, 143, 22, 1, 0, 0, 0, 144, 145, 5, 103, 0, 0, 145,
229
- 146, 5, 114, 0, 0, 146, 147, 5, 97, 0, 0, 147, 148, 5, 112, 0, 0, 148, 149, 5, 104, 0, 0, 149,
230
- 150, 5, 105, 0, 0, 150, 151, 5, 99, 0, 0, 151, 24, 1, 0, 0, 0, 152, 153, 5, 119, 0, 0, 153, 154,
231
- 5, 105, 0, 0, 154, 155, 5, 114, 0, 0, 155, 156, 5, 101, 0, 0, 156, 26, 1, 0, 0, 0, 157, 158, 5,
232
- 112, 0, 0, 158, 159, 5, 105, 0, 0, 159, 160, 5, 110, 0, 0, 160, 28, 1, 0, 0, 0, 161, 162, 5, 97,
233
- 0, 0, 162, 163, 5, 100, 0, 0, 163, 164, 5, 100, 0, 0, 164, 30, 1, 0, 0, 0, 165, 166, 5, 97, 0, 0,
234
- 166, 167, 5, 116, 0, 0, 167, 32, 1, 0, 0, 0, 168, 169, 5, 116, 0, 0, 169, 170, 5, 111, 0, 0, 170,
235
- 34, 1, 0, 0, 0, 171, 172, 5, 112, 0, 0, 172, 173, 5, 111, 0, 0, 173, 174, 5, 105, 0, 0, 174, 175,
236
- 5, 110, 0, 0, 175, 176, 5, 116, 0, 0, 176, 36, 1, 0, 0, 0, 177, 178, 5, 106, 0, 0, 178, 179, 5,
237
- 111, 0, 0, 179, 180, 5, 105, 0, 0, 180, 181, 5, 110, 0, 0, 181, 38, 1, 0, 0, 0, 182, 183, 5, 112,
238
- 0, 0, 183, 184, 5, 97, 0, 0, 184, 185, 5, 114, 0, 0, 185, 186, 5, 97, 0, 0, 186, 187, 5, 108, 0,
239
- 0, 187, 188, 5, 108, 0, 0, 188, 189, 5, 101, 0, 0, 189, 190, 5, 108, 0, 0, 190, 40, 1, 0, 0, 0,
240
- 191, 192, 5, 114, 0, 0, 192, 193, 5, 101, 0, 0, 193, 194, 5, 116, 0, 0, 194, 195, 5, 117, 0, 0,
241
- 195, 196, 5, 114, 0, 0, 196, 197, 5, 110, 0, 0, 197, 42, 1, 0, 0, 0, 198, 199, 5, 100, 0, 0, 199,
242
- 200, 5, 101, 0, 0, 200, 201, 5, 102, 0, 0, 201, 44, 1, 0, 0, 0, 202, 203, 5, 105, 0, 0, 203, 204,
243
- 5, 109, 0, 0, 204, 205, 5, 112, 0, 0, 205, 206, 5, 111, 0, 0, 206, 207, 5, 114, 0, 0, 207, 208,
244
- 5, 116, 0, 0, 208, 46, 1, 0, 0, 0, 209, 210, 5, 105, 0, 0, 210, 211, 5, 102, 0, 0, 211, 48, 1, 0,
245
- 0, 0, 212, 213, 5, 33, 0, 0, 213, 50, 1, 0, 0, 0, 214, 215, 5, 102, 0, 0, 215, 216, 5, 114, 0, 0,
246
- 216, 217, 5, 97, 0, 0, 217, 218, 5, 109, 0, 0, 218, 219, 5, 101, 0, 0, 219, 52, 1, 0, 0, 0, 220,
247
- 221, 5, 61, 0, 0, 221, 222, 5, 61, 0, 0, 222, 54, 1, 0, 0, 0, 223, 224, 5, 33, 0, 0, 224, 225, 5,
248
- 61, 0, 0, 225, 56, 1, 0, 0, 0, 226, 227, 5, 43, 0, 0, 227, 58, 1, 0, 0, 0, 228, 229, 5, 45, 0, 0,
249
- 229, 60, 1, 0, 0, 0, 230, 231, 5, 47, 0, 0, 231, 62, 1, 0, 0, 0, 232, 233, 5, 42, 0, 0, 233, 64,
250
- 1, 0, 0, 0, 234, 235, 5, 40, 0, 0, 235, 236, 6, 32, 0, 0, 236, 66, 1, 0, 0, 0, 237, 238, 5, 41, 0,
251
- 0, 238, 239, 6, 33, 1, 0, 239, 68, 1, 0, 0, 0, 240, 241, 5, 110, 0, 0, 241, 245, 5, 99, 0, 0, 242,
252
- 243, 5, 78, 0, 0, 243, 245, 5, 67, 0, 0, 244, 240, 1, 0, 0, 0, 244, 242, 1, 0, 0, 0, 245, 70, 1,
253
- 0, 0, 0, 246, 247, 5, 116, 0, 0, 247, 248, 5, 114, 0, 0, 248, 249, 5, 117, 0, 0, 249, 256, 5, 101,
254
- 0, 0, 250, 251, 5, 102, 0, 0, 251, 252, 5, 97, 0, 0, 252, 253, 5, 108, 0, 0, 253, 254, 5, 115,
255
- 0, 0, 254, 256, 5, 101, 0, 0, 255, 246, 1, 0, 0, 0, 255, 250, 1, 0, 0, 0, 256, 72, 1, 0, 0, 0, 257,
256
- 261, 7, 0, 0, 0, 258, 260, 7, 1, 0, 0, 259, 258, 1, 0, 0, 0, 260, 263, 1, 0, 0, 0, 261, 259, 1, 0,
257
- 0, 0, 261, 262, 1, 0, 0, 0, 262, 74, 1, 0, 0, 0, 263, 261, 1, 0, 0, 0, 264, 273, 5, 48, 0, 0, 265,
258
- 269, 7, 2, 0, 0, 266, 268, 7, 3, 0, 0, 267, 266, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 267, 1, 0,
259
- 0, 0, 269, 270, 1, 0, 0, 0, 270, 273, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 272, 264, 1, 0, 0, 0, 272,
260
- 265, 1, 0, 0, 0, 273, 76, 1, 0, 0, 0, 274, 276, 7, 2, 0, 0, 275, 274, 1, 0, 0, 0, 276, 277, 1, 0,
261
- 0, 0, 277, 275, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 282, 1, 0, 0, 0, 279, 281, 7, 4, 0, 0, 280,
262
- 279, 1, 0, 0, 0, 281, 284, 1, 0, 0, 0, 282, 280, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 287, 1, 0,
263
- 0, 0, 284, 282, 1, 0, 0, 0, 285, 287, 7, 5, 0, 0, 286, 275, 1, 0, 0, 0, 286, 285, 1, 0, 0, 0, 287,
264
- 78, 1, 0, 0, 0, 288, 289, 3, 75, 37, 0, 289, 290, 5, 46, 0, 0, 290, 294, 7, 4, 0, 0, 291, 293, 7,
265
- 3, 0, 0, 292, 291, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295,
266
- 80, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 297, 300, 3, 77, 38, 0, 298, 300, 3, 79, 39, 0, 299, 297,
267
- 1, 0, 0, 0, 299, 298, 1, 0, 0, 0, 300, 302, 1, 0, 0, 0, 301, 303, 7, 6, 0, 0, 302, 301, 1, 0, 0, 0,
268
- 302, 303, 1, 0, 0, 0, 303, 82, 1, 0, 0, 0, 304, 308, 5, 34, 0, 0, 305, 307, 9, 0, 0, 0, 306, 305,
269
- 1, 0, 0, 0, 307, 310, 1, 0, 0, 0, 308, 309, 1, 0, 0, 0, 308, 306, 1, 0, 0, 0, 309, 311, 1, 0, 0, 0,
270
- 310, 308, 1, 0, 0, 0, 311, 312, 5, 34, 0, 0, 312, 84, 1, 0, 0, 0, 313, 315, 7, 2, 0, 0, 314, 313,
271
- 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 314, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 321, 1, 0, 0, 0,
272
- 318, 320, 7, 4, 0, 0, 319, 318, 1, 0, 0, 0, 320, 323, 1, 0, 0, 0, 321, 319, 1, 0, 0, 0, 321, 322,
273
- 1, 0, 0, 0, 322, 324, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0, 324, 325, 5, 37, 0, 0, 325, 86, 1, 0, 0, 0,
274
- 326, 328, 7, 7, 0, 0, 327, 326, 1, 0, 0, 0, 328, 329, 1, 0, 0, 0, 329, 327, 1, 0, 0, 0, 329, 330,
275
- 1, 0, 0, 0, 330, 88, 1, 0, 0, 0, 331, 333, 7, 8, 0, 0, 332, 331, 1, 0, 0, 0, 333, 334, 1, 0, 0, 0,
276
- 334, 332, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 337, 6, 44, 2, 0, 337, 90,
277
- 1, 0, 0, 0, 338, 340, 5, 13, 0, 0, 339, 338, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 341, 1, 0, 0,
278
- 0, 341, 344, 5, 10, 0, 0, 342, 344, 2, 12, 13, 0, 343, 339, 1, 0, 0, 0, 343, 342, 1, 0, 0, 0, 344,
279
- 346, 1, 0, 0, 0, 345, 347, 3, 93, 46, 0, 346, 345, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 348, 1,
280
- 0, 0, 0, 348, 349, 6, 45, 3, 0, 349, 92, 1, 0, 0, 0, 350, 352, 7, 8, 0, 0, 351, 350, 1, 0, 0, 0, 352,
281
- 353, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 94, 1, 0, 0, 0, 355, 359, 5, 35,
282
- 0, 0, 356, 358, 8, 9, 0, 0, 357, 356, 1, 0, 0, 0, 358, 361, 1, 0, 0, 0, 359, 357, 1, 0, 0, 0, 359,
283
- 360, 1, 0, 0, 0, 360, 96, 1, 0, 0, 0, 361, 359, 1, 0, 0, 0, 362, 365, 3, 89, 44, 0, 363, 365, 3,
284
- 95, 47, 0, 364, 362, 1, 0, 0, 0, 364, 363, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 367, 6, 48, 4,
285
- 0, 367, 98, 1, 0, 0, 0, 23, 0, 244, 255, 261, 269, 272, 277, 282, 286, 294, 299, 302, 308, 316,
286
- 321, 329, 334, 339, 343, 346, 353, 359, 364, 5, 1, 32, 0, 1, 33, 1, 6, 0, 0, 1, 45, 2, 0, 2, 0];
287
- CircuitScriptLexer.DecisionsToDFA = CircuitScriptLexer._ATN.decisionToState.map((ds, index) => new antlr4_1.DFA(ds, index));
288
- exports.default = CircuitScriptLexer;
324
+ CircuitScriptLexer.vocabulary = new antlr.Vocabulary(CircuitScriptLexer.literalNames, CircuitScriptLexer.symbolicNames, []);
325
+ CircuitScriptLexer.decisionsToDFA = CircuitScriptLexer._ATN.decisionToState.map((ds, index) => new antlr.DFA(ds, index));