aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-11-16 02:50:14 +0000
committerJustin Clark-Casey (justincc)2013-11-16 02:50:14 +0000
commitedd7e1946372bc57bb49d0b6b65c546795ea896a (patch)
treee902b526782fac80fa1cb83e30896f7b707d1265
parentMake state_exit, moving_end, moving_start, not_at_rot_target, not_at_target a... (diff)
downloadopensim-SC_OLD-edd7e1946372bc57bb49d0b6b65c546795ea896a.zip
opensim-SC_OLD-edd7e1946372bc57bb49d0b6b65c546795ea896a.tar.gz
opensim-SC_OLD-edd7e1946372bc57bb49d0b6b65c546795ea896a.tar.bz2
opensim-SC_OLD-edd7e1946372bc57bb49d0b6b65c546795ea896a.tar.xz
If anything other than a single integer is specified for events that only take a single integer, generate a syntax error on LSL script compile rather than an exception later on.
This applies to events changed, collision, collision_start, collision_end, on_rez, run_time_permissions, sensor, touch, touch_start, touch_end
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs107
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs16829
2 files changed, 8691 insertions, 8245 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs
index 6c51060..42d2d7b 100644
--- a/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs
@@ -108,20 +108,123 @@ namespace OpenSim.Region.ScriptEngine.Shared.Tests
108 TestCompile("default { timer(integer n) {} }", true); 108 TestCompile("default { timer(integer n) {} }", true);
109 } 109 }
110 110
111 [Test]
112 public void TestChangedEvent()
113 {
114 TestHelpers.InMethod();
115// TestHelpers.EnableLogging();
116
117 TestIntArgEvent("changed");
118 }
119
120 [Test]
121 public void TestCollisionEvent()
122 {
123 TestHelpers.InMethod();
124// TestHelpers.EnableLogging();
125
126 TestIntArgEvent("collision");
127 }
128
129 [Test]
130 public void TestCollisionStartEvent()
131 {
132 TestHelpers.InMethod();
133// TestHelpers.EnableLogging();
134
135 TestIntArgEvent("collision_start");
136 }
137
138 [Test]
139 public void TestCollisionEndEvent()
140 {
141 TestHelpers.InMethod();
142// TestHelpers.EnableLogging();
143
144 TestIntArgEvent("collision_end");
145 }
146
147 [Test]
148 public void TestOnRezEvent()
149 {
150 TestHelpers.InMethod();
151// TestHelpers.EnableLogging();
152
153 TestIntArgEvent("on_rez");
154 }
155
156 [Test]
157 public void TestRunTimePermissionsEvent()
158 {
159 TestHelpers.InMethod();
160// TestHelpers.EnableLogging();
161
162 TestIntArgEvent("run_time_permissions");
163 }
164
165 [Test]
166 public void TestSensorEvent()
167 {
168 TestHelpers.InMethod();
169// TestHelpers.EnableLogging();
170
171 TestIntArgEvent("sensor");
172 }
173
174 [Test]
175 public void TestTouchEvent()
176 {
177 TestHelpers.InMethod();
178// TestHelpers.EnableLogging();
179
180 TestIntArgEvent("touch");
181 }
182
183 [Test]
184 public void TestTouchStartEvent()
185 {
186 TestHelpers.InMethod();
187// TestHelpers.EnableLogging();
188
189 TestIntArgEvent("touch_start");
190 }
191
192 [Test]
193 public void TestTouchEndEvent()
194 {
195 TestHelpers.InMethod();
196// TestHelpers.EnableLogging();
197
198 TestIntArgEvent("touch_end");
199 }
200
201 private void TestIntArgEvent(string eventName)
202 {
203 TestCompile("default { " + eventName + "(integer n) {} }", false);
204 TestCompile("default { " + eventName + "{{}} }", true);
205 TestCompile("default { " + eventName + "(string s) {{}} }", true);
206 TestCompile("default { " + eventName + "(integer n, integer o) {{}} }", true);
207 }
208
111 private void TestCompile(string script, bool expectException) 209 private void TestCompile(string script, bool expectException)
112 { 210 {
113 bool gotException = false; 211 bool gotException = false;
212 Exception ge = null;
114 213
115 try 214 try
116 { 215 {
117 m_cg.Convert(script); 216 m_cg.Convert(script);
118 } 217 }
119 catch (Exception) 218 catch (Exception e)
120 { 219 {
121 gotException = true; 220 gotException = true;
221 ge = e;
122 } 222 }
123 223
124 Assert.That(gotException, Is.EqualTo(expectException)); 224 Assert.That(
225 gotException,
226 Is.EqualTo(expectException),
227 "Failed on {0}, exception {1}", script, ge != null ? ge.ToString() : "n/a");
125 } 228 }
126 } 229 }
127} \ No newline at end of file 230} \ No newline at end of file
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs
index 96dcea9..3b1567f 100644
--- a/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs
@@ -116,9 +116,9 @@ public class StateEvent : SYMBOL{
116)yyp)){ m_name = name ; 116)yyp)){ m_name = name ;
117 kids . Add ( cs ); 117 kids . Add ( cs );
118} 118}
119 public StateEvent (Parser yyp, string name , ArgumentDeclarationList dal , CompoundStatement cs ):base(((LSLSyntax 119 public StateEvent (Parser yyp, string name , ArgumentDeclarationList adl , CompoundStatement cs ):base(((LSLSyntax
120)yyp)){ m_name = name ; 120)yyp)){ m_name = name ;
121 if (0< dal . kids . Count ) kids . Add ( dal ); 121 if (0< adl . kids . Count ) kids . Add ( adl );
122 kids . Add ( cs ); 122 kids . Add ( cs );
123} 123}
124 public override string ToString (){ return "EVENT<"+ m_name +">"; 124 public override string ToString (){ return "EVENT<"+ m_name +">";
@@ -130,15 +130,23 @@ public class StateEvent : SYMBOL{
130public override string yyname { get { return "StateEvent"; }} 130public override string yyname { get { return "StateEvent"; }}
131public override int yynum { get { return 103; }} 131public override int yynum { get { return 103; }}
132public StateEvent(Parser yyp):base(yyp){}} 132public StateEvent(Parser yyp):base(yyp){}}
133//%+VoidArgStateEvent+104 133//%+IntArgStateEvent+104
134public class IntArgStateEvent : StateEvent{
135 public IntArgStateEvent (Parser yyp, string name , IntArgumentDeclarationList iadl , CompoundStatement cs ):base(((LSLSyntax
136)yyp), name , iadl , cs ){}
137
138public override string yyname { get { return "IntArgStateEvent"; }}
139public override int yynum { get { return 104; }}
140public IntArgStateEvent(Parser yyp):base(yyp){}}
141//%+VoidArgStateEvent+105
134public class VoidArgStateEvent : StateEvent{ 142public class VoidArgStateEvent : StateEvent{
135 public VoidArgStateEvent (Parser yyp, string name , CompoundStatement cs ):base(((LSLSyntax 143 public VoidArgStateEvent (Parser yyp, string name , CompoundStatement cs ):base(((LSLSyntax
136)yyp), name , cs ){} 144)yyp), name , cs ){}
137 145
138public override string yyname { get { return "VoidArgStateEvent"; }} 146public override string yyname { get { return "VoidArgStateEvent"; }}
139public override int yynum { get { return 104; }} 147public override int yynum { get { return 105; }}
140public VoidArgStateEvent(Parser yyp):base(yyp){}} 148public VoidArgStateEvent(Parser yyp):base(yyp){}}
141//%+ArgumentDeclarationList+105 149//%+ArgumentDeclarationList+106
142public class ArgumentDeclarationList : SYMBOL{ 150public class ArgumentDeclarationList : SYMBOL{
143 public ArgumentDeclarationList (Parser yyp, Declaration d ):base(((LSLSyntax 151 public ArgumentDeclarationList (Parser yyp, Declaration d ):base(((LSLSyntax
144)yyp)){ kids . Add ( d ); 152)yyp)){ kids . Add ( d );
@@ -149,9 +157,17 @@ public class ArgumentDeclarationList : SYMBOL{
149} 157}
150 158
151public override string yyname { get { return "ArgumentDeclarationList"; }} 159public override string yyname { get { return "ArgumentDeclarationList"; }}
152public override int yynum { get { return 105; }} 160public override int yynum { get { return 106; }}
153public ArgumentDeclarationList(Parser yyp):base(yyp){}} 161public ArgumentDeclarationList(Parser yyp):base(yyp){}}
154//%+Declaration+106 162//%+IntArgumentDeclarationList+107
163public class IntArgumentDeclarationList : ArgumentDeclarationList{
164 public IntArgumentDeclarationList (Parser yyp, IntDeclaration d ):base(((LSLSyntax
165)yyp), d ){}
166
167public override string yyname { get { return "IntArgumentDeclarationList"; }}
168public override int yynum { get { return 107; }}
169public IntArgumentDeclarationList(Parser yyp):base(yyp){}}
170//%+Declaration+108
155public class Declaration : SYMBOL{ 171public class Declaration : SYMBOL{
156 private string m_datatype ; 172 private string m_datatype ;
157 private string m_id ; 173 private string m_id ;
@@ -171,9 +187,17 @@ public class Declaration : SYMBOL{
171} 187}
172 188
173public override string yyname { get { return "Declaration"; }} 189public override string yyname { get { return "Declaration"; }}
174public override int yynum { get { return 106; }} 190public override int yynum { get { return 108; }}
175public Declaration(Parser yyp):base(yyp){}} 191public Declaration(Parser yyp):base(yyp){}}
176//%+Typename+107 192//%+IntDeclaration+109
193public class IntDeclaration : Declaration{
194 public IntDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax
195)yyp), type , id ){}
196
197public override string yyname { get { return "IntDeclaration"; }}
198public override int yynum { get { return 109; }}
199public IntDeclaration(Parser yyp):base(yyp){}}
200//%+Typename+110
177public class Typename : SYMBOL{ 201public class Typename : SYMBOL{
178 public string yytext ; 202 public string yytext ;
179 public Typename (Parser yyp, string text ):base(((LSLSyntax 203 public Typename (Parser yyp, string text ):base(((LSLSyntax
@@ -181,9 +205,9 @@ public class Typename : SYMBOL{
181} 205}
182 206
183public override string yyname { get { return "Typename"; }} 207public override string yyname { get { return "Typename"; }}
184public override int yynum { get { return 107; }} 208public override int yynum { get { return 110; }}
185public Typename(Parser yyp):base(yyp){}} 209public Typename(Parser yyp):base(yyp){}}
186//%+Event+108 210//%+Event+111
187public class Event : SYMBOL{ 211public class Event : SYMBOL{
188 public string yytext ; 212 public string yytext ;
189 public Event (Parser yyp, string text ):base(((LSLSyntax 213 public Event (Parser yyp, string text ):base(((LSLSyntax
@@ -191,17 +215,25 @@ public class Event : SYMBOL{
191} 215}
192 216
193public override string yyname { get { return "Event"; }} 217public override string yyname { get { return "Event"; }}
194public override int yynum { get { return 108; }} 218public override int yynum { get { return 111; }}
195public Event(Parser yyp):base(yyp){}} 219public Event(Parser yyp):base(yyp){}}
196//%+VoidArgEvent+109 220//%+IntArgEvent+112
221public class IntArgEvent : Event{
222 public IntArgEvent (Parser yyp, string text ):base(((LSLSyntax
223)yyp), text ){}
224
225public override string yyname { get { return "IntArgEvent"; }}
226public override int yynum { get { return 112; }}
227public IntArgEvent(Parser yyp):base(yyp){}}
228//%+VoidArgEvent+113
197public class VoidArgEvent : Event{ 229public class VoidArgEvent : Event{
198 public VoidArgEvent (Parser yyp, string text ):base(((LSLSyntax 230 public VoidArgEvent (Parser yyp, string text ):base(((LSLSyntax
199)yyp), text ){} 231)yyp), text ){}
200 232
201public override string yyname { get { return "VoidArgEvent"; }} 233public override string yyname { get { return "VoidArgEvent"; }}
202public override int yynum { get { return 109; }} 234public override int yynum { get { return 113; }}
203public VoidArgEvent(Parser yyp):base(yyp){}} 235public VoidArgEvent(Parser yyp):base(yyp){}}
204//%+CompoundStatement+110 236//%+CompoundStatement+114
205public class CompoundStatement : SYMBOL{ 237public class CompoundStatement : SYMBOL{
206 public CompoundStatement (Parser yyp):base(((LSLSyntax 238 public CompoundStatement (Parser yyp):base(((LSLSyntax
207)yyp)){} 239)yyp)){}
@@ -210,9 +242,9 @@ public class CompoundStatement : SYMBOL{
210} 242}
211 243
212public override string yyname { get { return "CompoundStatement"; }} 244public override string yyname { get { return "CompoundStatement"; }}
213public override int yynum { get { return 110; }} 245public override int yynum { get { return 114; }}
214} 246}
215//%+StatementList+111 247//%+StatementList+115
216public class StatementList : SYMBOL{ 248public class StatementList : SYMBOL{
217 private void AddStatement ( Statement s ){ if ( s . kids . Top is IfStatement || s . kids . Top is WhileStatement || s . kids . Top is DoWhileStatement || s . kids . Top is ForLoop ) kids . Add ( s . kids . Pop ()); 249 private void AddStatement ( Statement s ){ if ( s . kids . Top is IfStatement || s . kids . Top is WhileStatement || s . kids . Top is DoWhileStatement || s . kids . Top is ForLoop ) kids . Add ( s . kids . Pop ());
218 else kids . Add ( s ); 250 else kids . Add ( s );
@@ -226,9 +258,9 @@ public class StatementList : SYMBOL{
226} 258}
227 259
228public override string yyname { get { return "StatementList"; }} 260public override string yyname { get { return "StatementList"; }}
229public override int yynum { get { return 111; }} 261public override int yynum { get { return 115; }}
230public StatementList(Parser yyp):base(yyp){}} 262public StatementList(Parser yyp):base(yyp){}}
231//%+Statement+112 263//%+Statement+116
232public class Statement : SYMBOL{ 264public class Statement : SYMBOL{
233 public Statement (Parser yyp, Declaration d ):base(((LSLSyntax 265 public Statement (Parser yyp, Declaration d ):base(((LSLSyntax
234)yyp)){ kids . Add ( d ); 266)yyp)){ kids . Add ( d );
@@ -274,9 +306,9 @@ public class Statement : SYMBOL{
274} 306}
275 307
276public override string yyname { get { return "Statement"; }} 308public override string yyname { get { return "Statement"; }}
277public override int yynum { get { return 112; }} 309public override int yynum { get { return 116; }}
278public Statement(Parser yyp):base(yyp){}} 310public Statement(Parser yyp):base(yyp){}}
279//%+EmptyStatement+113 311//%+EmptyStatement+117
280public class EmptyStatement : SYMBOL{ 312public class EmptyStatement : SYMBOL{
281 public EmptyStatement (Parser yyp):base(((LSLSyntax 313 public EmptyStatement (Parser yyp):base(((LSLSyntax
282)yyp)){} 314)yyp)){}
@@ -284,9 +316,9 @@ public class EmptyStatement : SYMBOL{
284} 316}
285 317
286public override string yyname { get { return "EmptyStatement"; }} 318public override string yyname { get { return "EmptyStatement"; }}
287public override int yynum { get { return 113; }} 319public override int yynum { get { return 117; }}
288} 320}
289//%+Assignment+114 321//%+Assignment+118
290public class Assignment : SYMBOL{ 322public class Assignment : SYMBOL{
291 protected string m_assignmentType ; 323 protected string m_assignmentType ;
292 public Assignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax 324 public Assignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax
@@ -306,9 +338,9 @@ public class Assignment : SYMBOL{
306} 338}
307 339
308public override string yyname { get { return "Assignment"; }} 340public override string yyname { get { return "Assignment"; }}
309public override int yynum { get { return 114; }} 341public override int yynum { get { return 118; }}
310public Assignment(Parser yyp):base(yyp){}} 342public Assignment(Parser yyp):base(yyp){}}
311//%+SimpleAssignment+115 343//%+SimpleAssignment+119
312public class SimpleAssignment : Assignment{ 344public class SimpleAssignment : Assignment{
313 public SimpleAssignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax 345 public SimpleAssignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax
314)yyp)){ m_assignmentType = assignmentType ; 346)yyp)){ m_assignmentType = assignmentType ;
@@ -318,9 +350,9 @@ public class SimpleAssignment : Assignment{
318} 350}
319 351
320public override string yyname { get { return "SimpleAssignment"; }} 352public override string yyname { get { return "SimpleAssignment"; }}
321public override int yynum { get { return 115; }} 353public override int yynum { get { return 119; }}
322public SimpleAssignment(Parser yyp):base(yyp){}} 354public SimpleAssignment(Parser yyp):base(yyp){}}
323//%+ReturnStatement+116 355//%+ReturnStatement+120
324public class ReturnStatement : SYMBOL{ 356public class ReturnStatement : SYMBOL{
325 public ReturnStatement (Parser yyp):base(((LSLSyntax 357 public ReturnStatement (Parser yyp):base(((LSLSyntax
326)yyp)){} 358)yyp)){}
@@ -330,9 +362,9 @@ public class ReturnStatement : SYMBOL{
330} 362}
331 363
332public override string yyname { get { return "ReturnStatement"; }} 364public override string yyname { get { return "ReturnStatement"; }}
333public override int yynum { get { return 116; }} 365public override int yynum { get { return 120; }}
334} 366}
335//%+JumpLabel+117 367//%+JumpLabel+121
336public class JumpLabel : SYMBOL{ 368public class JumpLabel : SYMBOL{
337 private string m_labelName ; 369 private string m_labelName ;
338 public JumpLabel (Parser yyp, string labelName ):base(((LSLSyntax 370 public JumpLabel (Parser yyp, string labelName ):base(((LSLSyntax
@@ -345,9 +377,9 @@ public class JumpLabel : SYMBOL{
345} 377}
346 378
347public override string yyname { get { return "JumpLabel"; }} 379public override string yyname { get { return "JumpLabel"; }}
348public override int yynum { get { return 117; }} 380public override int yynum { get { return 121; }}
349public JumpLabel(Parser yyp):base(yyp){}} 381public JumpLabel(Parser yyp):base(yyp){}}
350//%+JumpStatement+118 382//%+JumpStatement+122
351public class JumpStatement : SYMBOL{ 383public class JumpStatement : SYMBOL{
352 private string m_targetName ; 384 private string m_targetName ;
353 public JumpStatement (Parser yyp, string targetName ):base(((LSLSyntax 385 public JumpStatement (Parser yyp, string targetName ):base(((LSLSyntax
@@ -360,9 +392,9 @@ public class JumpStatement : SYMBOL{
360} 392}
361 393
362public override string yyname { get { return "JumpStatement"; }} 394public override string yyname { get { return "JumpStatement"; }}
363public override int yynum { get { return 118; }} 395public override int yynum { get { return 122; }}
364public JumpStatement(Parser yyp):base(yyp){}} 396public JumpStatement(Parser yyp):base(yyp){}}
365//%+StateChange+119 397//%+StateChange+123
366public class StateChange : SYMBOL{ 398public class StateChange : SYMBOL{
367 private string m_newState ; 399 private string m_newState ;
368 public StateChange (Parser yyp, string newState ):base(((LSLSyntax 400 public StateChange (Parser yyp, string newState ):base(((LSLSyntax
@@ -373,9 +405,9 @@ public class StateChange : SYMBOL{
373} 405}
374 406
375public override string yyname { get { return "StateChange"; }} 407public override string yyname { get { return "StateChange"; }}
376public override int yynum { get { return 119; }} 408public override int yynum { get { return 123; }}
377public StateChange(Parser yyp):base(yyp){}} 409public StateChange(Parser yyp):base(yyp){}}
378//%+IfStatement+120 410//%+IfStatement+124
379public class IfStatement : SYMBOL{ 411public class IfStatement : SYMBOL{
380 private void AddStatement ( Statement s ){ if (0< s . kids . Count && s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); 412 private void AddStatement ( Statement s ){ if (0< s . kids . Count && s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ());
381 else kids . Add ( s ); 413 else kids . Add ( s );
@@ -392,9 +424,9 @@ public class IfStatement : SYMBOL{
392} 424}
393 425
394public override string yyname { get { return "IfStatement"; }} 426public override string yyname { get { return "IfStatement"; }}
395public override int yynum { get { return 120; }} 427public override int yynum { get { return 124; }}
396public IfStatement(Parser yyp):base(yyp){}} 428public IfStatement(Parser yyp):base(yyp){}}
397//%+WhileStatement+121 429//%+WhileStatement+125
398public class WhileStatement : SYMBOL{ 430public class WhileStatement : SYMBOL{
399 public WhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax 431 public WhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax
400)yyp)){ kids . Add ( s ); 432)yyp)){ kids . Add ( s );
@@ -403,9 +435,9 @@ public class WhileStatement : SYMBOL{
403} 435}
404 436
405public override string yyname { get { return "WhileStatement"; }} 437public override string yyname { get { return "WhileStatement"; }}
406public override int yynum { get { return 121; }} 438public override int yynum { get { return 125; }}
407public WhileStatement(Parser yyp):base(yyp){}} 439public WhileStatement(Parser yyp):base(yyp){}}
408//%+DoWhileStatement+122 440//%+DoWhileStatement+126
409public class DoWhileStatement : SYMBOL{ 441public class DoWhileStatement : SYMBOL{
410 public DoWhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax 442 public DoWhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax
411)yyp)){ if (0< st . kids . Count && st . kids . Top is CompoundStatement ) kids . Add ( st . kids . Pop ()); 443)yyp)){ if (0< st . kids . Count && st . kids . Top is CompoundStatement ) kids . Add ( st . kids . Pop ());
@@ -414,9 +446,9 @@ public class DoWhileStatement : SYMBOL{
414} 446}
415 447
416public override string yyname { get { return "DoWhileStatement"; }} 448public override string yyname { get { return "DoWhileStatement"; }}
417public override int yynum { get { return 122; }} 449public override int yynum { get { return 126; }}
418public DoWhileStatement(Parser yyp):base(yyp){}} 450public DoWhileStatement(Parser yyp):base(yyp){}}
419//%+ForLoop+123 451//%+ForLoop+127
420public class ForLoop : SYMBOL{ 452public class ForLoop : SYMBOL{
421 public ForLoop (Parser yyp, ForLoopStatement flsa , Expression e , ForLoopStatement flsb , Statement s ):base(((LSLSyntax 453 public ForLoop (Parser yyp, ForLoopStatement flsa , Expression e , ForLoopStatement flsb , Statement s ):base(((LSLSyntax
422)yyp)){ kids . Add ( flsa ); 454)yyp)){ kids . Add ( flsa );
@@ -427,9 +459,9 @@ public class ForLoop : SYMBOL{
427} 459}
428 460
429public override string yyname { get { return "ForLoop"; }} 461public override string yyname { get { return "ForLoop"; }}
430public override int yynum { get { return 123; }} 462public override int yynum { get { return 127; }}
431public ForLoop(Parser yyp):base(yyp){}} 463public ForLoop(Parser yyp):base(yyp){}}
432//%+ForLoopStatement+124 464//%+ForLoopStatement+128
433public class ForLoopStatement : SYMBOL{ 465public class ForLoopStatement : SYMBOL{
434 public ForLoopStatement (Parser yyp, Expression e ):base(((LSLSyntax 466 public ForLoopStatement (Parser yyp, Expression e ):base(((LSLSyntax
435)yyp)){ kids . Add ( e ); 467)yyp)){ kids . Add ( e );
@@ -447,9 +479,9 @@ public class ForLoopStatement : SYMBOL{
447} 479}
448 480
449public override string yyname { get { return "ForLoopStatement"; }} 481public override string yyname { get { return "ForLoopStatement"; }}
450public override int yynum { get { return 124; }} 482public override int yynum { get { return 128; }}
451public ForLoopStatement(Parser yyp):base(yyp){}} 483public ForLoopStatement(Parser yyp):base(yyp){}}
452//%+FunctionCall+125 484//%+FunctionCall+129
453public class FunctionCall : SYMBOL{ 485public class FunctionCall : SYMBOL{
454 private string m_id ; 486 private string m_id ;
455 public FunctionCall (Parser yyp, string id , ArgumentList al ):base(((LSLSyntax 487 public FunctionCall (Parser yyp, string id , ArgumentList al ):base(((LSLSyntax
@@ -463,9 +495,9 @@ public class FunctionCall : SYMBOL{
463} 495}
464 496
465public override string yyname { get { return "FunctionCall"; }} 497public override string yyname { get { return "FunctionCall"; }}
466public override int yynum { get { return 125; }} 498public override int yynum { get { return 129; }}
467public FunctionCall(Parser yyp):base(yyp){}} 499public FunctionCall(Parser yyp):base(yyp){}}
468//%+ArgumentList+126 500//%+ArgumentList+130
469public class ArgumentList : SYMBOL{ 501public class ArgumentList : SYMBOL{
470 public ArgumentList (Parser yyp, Argument a ):base(((LSLSyntax 502 public ArgumentList (Parser yyp, Argument a ):base(((LSLSyntax
471)yyp)){ AddArgument ( a ); 503)yyp)){ AddArgument ( a );
@@ -479,14 +511,14 @@ public class ArgumentList : SYMBOL{
479} 511}
480 512
481public override string yyname { get { return "ArgumentList"; }} 513public override string yyname { get { return "ArgumentList"; }}
482public override int yynum { get { return 126; }} 514public override int yynum { get { return 130; }}
483public ArgumentList(Parser yyp):base(yyp){}} 515public ArgumentList(Parser yyp):base(yyp){}}
484//%+Argument+127 516//%+Argument+131
485public class Argument : SYMBOL{ 517public class Argument : SYMBOL{
486public override string yyname { get { return "Argument"; }} 518public override string yyname { get { return "Argument"; }}
487public override int yynum { get { return 127; }} 519public override int yynum { get { return 131; }}
488public Argument(Parser yyp):base(yyp){}} 520public Argument(Parser yyp):base(yyp){}}
489//%+ExpressionArgument+128 521//%+ExpressionArgument+132
490public class ExpressionArgument : Argument{ 522public class ExpressionArgument : Argument{
491 public ExpressionArgument (Parser yyp, Expression e ):base(((LSLSyntax 523 public ExpressionArgument (Parser yyp, Expression e ):base(((LSLSyntax
492)yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); 524)yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ());
@@ -494,9 +526,9 @@ public class ExpressionArgument : Argument{
494} 526}
495 527
496public override string yyname { get { return "ExpressionArgument"; }} 528public override string yyname { get { return "ExpressionArgument"; }}
497public override int yynum { get { return 128; }} 529public override int yynum { get { return 132; }}
498public ExpressionArgument(Parser yyp):base(yyp){}} 530public ExpressionArgument(Parser yyp):base(yyp){}}
499//%+Constant+129 531//%+Constant+133
500public class Constant : SYMBOL{ 532public class Constant : SYMBOL{
501 private string m_type ; 533 private string m_type ;
502 private string m_val ; 534 private string m_val ;
@@ -518,9 +550,9 @@ public class Constant : SYMBOL{
518} 550}
519 551
520public override string yyname { get { return "Constant"; }} 552public override string yyname { get { return "Constant"; }}
521public override int yynum { get { return 129; }} 553public override int yynum { get { return 133; }}
522public Constant(Parser yyp):base(yyp){}} 554public Constant(Parser yyp):base(yyp){}}
523//%+VectorConstant+130 555//%+VectorConstant+134
524public class VectorConstant : Constant{ 556public class VectorConstant : Constant{
525 public VectorConstant (Parser yyp, Expression valX , Expression valY , Expression valZ ):base(((LSLSyntax 557 public VectorConstant (Parser yyp, Expression valX , Expression valY , Expression valZ ):base(((LSLSyntax
526)yyp),"vector", null ){ kids . Add ( valX ); 558)yyp),"vector", null ){ kids . Add ( valX );
@@ -529,9 +561,9 @@ public class VectorConstant : Constant{
529} 561}
530 562
531public override string yyname { get { return "VectorConstant"; }} 563public override string yyname { get { return "VectorConstant"; }}
532public override int yynum { get { return 130; }} 564public override int yynum { get { return 134; }}
533public VectorConstant(Parser yyp):base(yyp){}} 565public VectorConstant(Parser yyp):base(yyp){}}
534//%+RotationConstant+131 566//%+RotationConstant+135
535public class RotationConstant : Constant{ 567public class RotationConstant : Constant{
536 public RotationConstant (Parser yyp, Expression valX , Expression valY , Expression valZ , Expression valS ):base(((LSLSyntax 568 public RotationConstant (Parser yyp, Expression valX , Expression valY , Expression valZ , Expression valS ):base(((LSLSyntax
537)yyp),"rotation", null ){ kids . Add ( valX ); 569)yyp),"rotation", null ){ kids . Add ( valX );
@@ -541,36 +573,36 @@ public class RotationConstant : Constant{
541} 573}
542 574
543public override string yyname { get { return "RotationConstant"; }} 575public override string yyname { get { return "RotationConstant"; }}
544public override int yynum { get { return 131; }} 576public override int yynum { get { return 135; }}
545public RotationConstant(Parser yyp):base(yyp){}} 577public RotationConstant(Parser yyp):base(yyp){}}
546//%+ListConstant+132 578//%+ListConstant+136
547public class ListConstant : Constant{ 579public class ListConstant : Constant{
548 public ListConstant (Parser yyp, ArgumentList al ):base(((LSLSyntax 580 public ListConstant (Parser yyp, ArgumentList al ):base(((LSLSyntax
549)yyp),"list", null ){ kids . Add ( al ); 581)yyp),"list", null ){ kids . Add ( al );
550} 582}
551 583
552public override string yyname { get { return "ListConstant"; }} 584public override string yyname { get { return "ListConstant"; }}
553public override int yynum { get { return 132; }} 585public override int yynum { get { return 136; }}
554public ListConstant(Parser yyp):base(yyp){}} 586public ListConstant(Parser yyp):base(yyp){}}
555//%+Expression+133 587//%+Expression+137
556public class Expression : SYMBOL{ 588public class Expression : SYMBOL{
557 protected void AddExpression ( Expression e ){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); 589 protected void AddExpression ( Expression e ){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ());
558 else kids . Add ( e ); 590 else kids . Add ( e );
559} 591}
560 592
561public override string yyname { get { return "Expression"; }} 593public override string yyname { get { return "Expression"; }}
562public override int yynum { get { return 133; }} 594public override int yynum { get { return 137; }}
563public Expression(Parser yyp):base(yyp){}} 595public Expression(Parser yyp):base(yyp){}}
564//%+ConstantExpression+134 596//%+ConstantExpression+138
565public class ConstantExpression : Expression{ 597public class ConstantExpression : Expression{
566 public ConstantExpression (Parser yyp, Constant c ):base(((LSLSyntax 598 public ConstantExpression (Parser yyp, Constant c ):base(((LSLSyntax
567)yyp)){ kids . Add ( c ); 599)yyp)){ kids . Add ( c );
568} 600}
569 601
570public override string yyname { get { return "ConstantExpression"; }} 602public override string yyname { get { return "ConstantExpression"; }}
571public override int yynum { get { return 134; }} 603public override int yynum { get { return 138; }}
572public ConstantExpression(Parser yyp):base(yyp){}} 604public ConstantExpression(Parser yyp):base(yyp){}}
573//%+IdentExpression+135 605//%+IdentExpression+139
574public class IdentExpression : Expression{ 606public class IdentExpression : Expression{
575 protected string m_name ; 607 protected string m_name ;
576 public IdentExpression (Parser yyp, string name ):base(((LSLSyntax 608 public IdentExpression (Parser yyp, string name ):base(((LSLSyntax
@@ -583,9 +615,9 @@ public class IdentExpression : Expression{
583} 615}
584 616
585public override string yyname { get { return "IdentExpression"; }} 617public override string yyname { get { return "IdentExpression"; }}
586public override int yynum { get { return 135; }} 618public override int yynum { get { return 139; }}
587public IdentExpression(Parser yyp):base(yyp){}} 619public IdentExpression(Parser yyp):base(yyp){}}
588//%+IdentDotExpression+136 620//%+IdentDotExpression+140
589public class IdentDotExpression : IdentExpression{ 621public class IdentDotExpression : IdentExpression{
590 private string m_member ; 622 private string m_member ;
591 public IdentDotExpression (Parser yyp, string name , string member ):base(((LSLSyntax 623 public IdentDotExpression (Parser yyp, string name , string member ):base(((LSLSyntax
@@ -599,18 +631,18 @@ public class IdentDotExpression : IdentExpression{
599} 631}
600 632
601public override string yyname { get { return "IdentDotExpression"; }} 633public override string yyname { get { return "IdentDotExpression"; }}
602public override int yynum { get { return 136; }} 634public override int yynum { get { return 140; }}
603public IdentDotExpression(Parser yyp):base(yyp){}} 635public IdentDotExpression(Parser yyp):base(yyp){}}
604//%+FunctionCallExpression+137 636//%+FunctionCallExpression+141
605public class FunctionCallExpression : Expression{ 637public class FunctionCallExpression : Expression{
606 public FunctionCallExpression (Parser yyp, FunctionCall fc ):base(((LSLSyntax 638 public FunctionCallExpression (Parser yyp, FunctionCall fc ):base(((LSLSyntax
607)yyp)){ kids . Add ( fc ); 639)yyp)){ kids . Add ( fc );
608} 640}
609 641
610public override string yyname { get { return "FunctionCallExpression"; }} 642public override string yyname { get { return "FunctionCallExpression"; }}
611public override int yynum { get { return 137; }} 643public override int yynum { get { return 141; }}
612public FunctionCallExpression(Parser yyp):base(yyp){}} 644public FunctionCallExpression(Parser yyp):base(yyp){}}
613//%+BinaryExpression+138 645//%+BinaryExpression+142
614public class BinaryExpression : Expression{ 646public class BinaryExpression : Expression{
615 private string m_expressionSymbol ; 647 private string m_expressionSymbol ;
616 public BinaryExpression (Parser yyp, Expression lhs , Expression rhs , string expressionSymbol ):base(((LSLSyntax 648 public BinaryExpression (Parser yyp, Expression lhs , Expression rhs , string expressionSymbol ):base(((LSLSyntax
@@ -625,9 +657,9 @@ public class BinaryExpression : Expression{
625} 657}
626 658
627public override string yyname { get { return "BinaryExpression"; }} 659public override string yyname { get { return "BinaryExpression"; }}
628public override int yynum { get { return 138; }} 660public override int yynum { get { return 142; }}
629public BinaryExpression(Parser yyp):base(yyp){}} 661public BinaryExpression(Parser yyp):base(yyp){}}
630//%+UnaryExpression+139 662//%+UnaryExpression+143
631public class UnaryExpression : Expression{ 663public class UnaryExpression : Expression{
632 private string m_unarySymbol ; 664 private string m_unarySymbol ;
633 public UnaryExpression (Parser yyp, string unarySymbol , Expression e ):base(((LSLSyntax 665 public UnaryExpression (Parser yyp, string unarySymbol , Expression e ):base(((LSLSyntax
@@ -641,9 +673,9 @@ public class UnaryExpression : Expression{
641} 673}
642 674
643public override string yyname { get { return "UnaryExpression"; }} 675public override string yyname { get { return "UnaryExpression"; }}
644public override int yynum { get { return 139; }} 676public override int yynum { get { return 143; }}
645public UnaryExpression(Parser yyp):base(yyp){}} 677public UnaryExpression(Parser yyp):base(yyp){}}
646//%+TypecastExpression+140 678//%+TypecastExpression+144
647public class TypecastExpression : Expression{ 679public class TypecastExpression : Expression{
648 private string m_typecastType ; 680 private string m_typecastType ;
649 public TypecastExpression (Parser yyp, string typecastType , SYMBOL rhs ):base(((LSLSyntax 681 public TypecastExpression (Parser yyp, string typecastType , SYMBOL rhs ):base(((LSLSyntax
@@ -657,18 +689,18 @@ public class TypecastExpression : Expression{
657} 689}
658 690
659public override string yyname { get { return "TypecastExpression"; }} 691public override string yyname { get { return "TypecastExpression"; }}
660public override int yynum { get { return 140; }} 692public override int yynum { get { return 144; }}
661public TypecastExpression(Parser yyp):base(yyp){}} 693public TypecastExpression(Parser yyp):base(yyp){}}
662//%+ParenthesisExpression+141 694//%+ParenthesisExpression+145
663public class ParenthesisExpression : Expression{ 695public class ParenthesisExpression : Expression{
664 public ParenthesisExpression (Parser yyp, SYMBOL s ):base(((LSLSyntax 696 public ParenthesisExpression (Parser yyp, SYMBOL s ):base(((LSLSyntax
665)yyp)){ kids . Add ( s ); 697)yyp)){ kids . Add ( s );
666} 698}
667 699
668public override string yyname { get { return "ParenthesisExpression"; }} 700public override string yyname { get { return "ParenthesisExpression"; }}
669public override int yynum { get { return 141; }} 701public override int yynum { get { return 145; }}
670public ParenthesisExpression(Parser yyp):base(yyp){}} 702public ParenthesisExpression(Parser yyp):base(yyp){}}
671//%+IncrementDecrementExpression+142 703//%+IncrementDecrementExpression+146
672public class IncrementDecrementExpression : Expression{ 704public class IncrementDecrementExpression : Expression{
673 private string m_name ; 705 private string m_name ;
674 private string m_operation ; 706 private string m_operation ;
@@ -696,7 +728,7 @@ public class IncrementDecrementExpression : Expression{
696} 728}
697 729
698public override string yyname { get { return "IncrementDecrementExpression"; }} 730public override string yyname { get { return "IncrementDecrementExpression"; }}
699public override int yynum { get { return 142; }} 731public override int yynum { get { return 146; }}
700public IncrementDecrementExpression(Parser yyp):base(yyp){}} 732public IncrementDecrementExpression(Parser yyp):base(yyp){}}
701 733
702public class LSLProgramRoot_1 : LSLProgramRoot { 734public class LSLProgramRoot_1 : LSLProgramRoot {
@@ -810,13 +842,25 @@ public class StateBody_2 : StateBody {
810 842
811public class StateBody_3 : StateBody { 843public class StateBody_3 : StateBody {
812 public StateBody_3(Parser yyq):base(yyq, 844 public StateBody_3(Parser yyq):base(yyq,
813 ((VoidArgStateEvent)(yyq.StackAt(0).m_value)) 845 ((IntArgStateEvent)(yyq.StackAt(0).m_value))
814 ){}} 846 ){}}
815 847
816public class StateBody_4 : StateBody { 848public class StateBody_4 : StateBody {
817 public StateBody_4(Parser yyq):base(yyq, 849 public StateBody_4(Parser yyq):base(yyq,
818 ((StateBody)(yyq.StackAt(1).m_value)) 850 ((StateBody)(yyq.StackAt(1).m_value))
819 , 851 ,
852 ((IntArgStateEvent)(yyq.StackAt(0).m_value))
853 ){}}
854
855public class StateBody_5 : StateBody {
856 public StateBody_5(Parser yyq):base(yyq,
857 ((VoidArgStateEvent)(yyq.StackAt(0).m_value))
858 ){}}
859
860public class StateBody_6 : StateBody {
861 public StateBody_6(Parser yyq):base(yyq,
862 ((StateBody)(yyq.StackAt(1).m_value))
863 ,
820 ((VoidArgStateEvent)(yyq.StackAt(0).m_value)) 864 ((VoidArgStateEvent)(yyq.StackAt(0).m_value))
821 ){}} 865 ){}}
822 866
@@ -829,6 +873,15 @@ public class StateEvent_1 : StateEvent {
829 ((CompoundStatement)(yyq.StackAt(0).m_value)) 873 ((CompoundStatement)(yyq.StackAt(0).m_value))
830 ){}} 874 ){}}
831 875
876public class IntArgStateEvent_1 : IntArgStateEvent {
877 public IntArgStateEvent_1(Parser yyq):base(yyq,
878 ((IntArgEvent)(yyq.StackAt(4).m_value))
879 .yytext,
880 ((IntArgumentDeclarationList)(yyq.StackAt(2).m_value))
881 ,
882 ((CompoundStatement)(yyq.StackAt(0).m_value))
883 ){}}
884
832public class VoidArgStateEvent_1 : VoidArgStateEvent { 885public class VoidArgStateEvent_1 : VoidArgStateEvent {
833 public VoidArgStateEvent_1(Parser yyq):base(yyq, 886 public VoidArgStateEvent_1(Parser yyq):base(yyq,
834 ((VoidArgEvent)(yyq.StackAt(3).m_value)) 887 ((VoidArgEvent)(yyq.StackAt(3).m_value))
@@ -848,6 +901,18 @@ public class ArgumentDeclarationList_2 : ArgumentDeclarationList {
848 ((Declaration)(yyq.StackAt(0).m_value)) 901 ((Declaration)(yyq.StackAt(0).m_value))
849 ){}} 902 ){}}
850 903
904public class IntArgumentDeclarationList_1 : IntArgumentDeclarationList {
905 public IntArgumentDeclarationList_1(Parser yyq):base(yyq,
906 ((IntDeclaration)(yyq.StackAt(0).m_value))
907 ){}}
908
909public class IntDeclaration_1 : IntDeclaration {
910 public IntDeclaration_1(Parser yyq):base(yyq,
911 ((INTEGER_TYPE)(yyq.StackAt(1).m_value))
912 .yytext,
913 ((IDENT)(yyq.StackAt(0).m_value))
914 .yytext){}}
915
851public class Declaration_1 : Declaration { 916public class Declaration_1 : Declaration {
852 public Declaration_1(Parser yyq):base(yyq, 917 public Declaration_1(Parser yyq):base(yyq,
853 ((Typename)(yyq.StackAt(1).m_value)) 918 ((Typename)(yyq.StackAt(1).m_value))
@@ -1830,124 +1895,124 @@ public class Event_3 : Event {
1830 1895
1831public class Event_4 : Event { 1896public class Event_4 : Event {
1832 public Event_4(Parser yyq):base(yyq, 1897 public Event_4(Parser yyq):base(yyq,
1833 ((CHANGED_EVENT)(yyq.StackAt(0).m_value)) 1898 ((CONTROL_EVENT)(yyq.StackAt(0).m_value))
1834 .yytext){}} 1899 .yytext){}}
1835 1900
1836public class Event_5 : Event { 1901public class Event_5 : Event {
1837 public Event_5(Parser yyq):base(yyq, 1902 public Event_5(Parser yyq):base(yyq,
1838 ((COLLISION_EVENT)(yyq.StackAt(0).m_value)) 1903 ((DATASERVER_EVENT)(yyq.StackAt(0).m_value))
1839 .yytext){}} 1904 .yytext){}}
1840 1905
1841public class Event_6 : Event { 1906public class Event_6 : Event {
1842 public Event_6(Parser yyq):base(yyq, 1907 public Event_6(Parser yyq):base(yyq,
1843 ((COLLISION_END_EVENT)(yyq.StackAt(0).m_value)) 1908 ((EMAIL_EVENT)(yyq.StackAt(0).m_value))
1844 .yytext){}} 1909 .yytext){}}
1845 1910
1846public class Event_7 : Event { 1911public class Event_7 : Event {
1847 public Event_7(Parser yyq):base(yyq, 1912 public Event_7(Parser yyq):base(yyq,
1848 ((COLLISION_START_EVENT)(yyq.StackAt(0).m_value)) 1913 ((HTTP_RESPONSE_EVENT)(yyq.StackAt(0).m_value))
1849 .yytext){}} 1914 .yytext){}}
1850 1915
1851public class Event_8 : Event { 1916public class Event_8 : Event {
1852 public Event_8(Parser yyq):base(yyq, 1917 public Event_8(Parser yyq):base(yyq,
1853 ((CONTROL_EVENT)(yyq.StackAt(0).m_value)) 1918 ((LAND_COLLISION_EVENT)(yyq.StackAt(0).m_value))
1854 .yytext){}} 1919 .yytext){}}
1855 1920
1856public class Event_9 : Event { 1921public class Event_9 : Event {
1857 public Event_9(Parser yyq):base(yyq, 1922 public Event_9(Parser yyq):base(yyq,
1858 ((DATASERVER_EVENT)(yyq.StackAt(0).m_value)) 1923 ((LAND_COLLISION_END_EVENT)(yyq.StackAt(0).m_value))
1859 .yytext){}} 1924 .yytext){}}
1860 1925
1861public class Event_10 : Event { 1926public class Event_10 : Event {
1862 public Event_10(Parser yyq):base(yyq, 1927 public Event_10(Parser yyq):base(yyq,
1863 ((EMAIL_EVENT)(yyq.StackAt(0).m_value)) 1928 ((LAND_COLLISION_START_EVENT)(yyq.StackAt(0).m_value))
1864 .yytext){}} 1929 .yytext){}}
1865 1930
1866public class Event_11 : Event { 1931public class Event_11 : Event {
1867 public Event_11(Parser yyq):base(yyq, 1932 public Event_11(Parser yyq):base(yyq,
1868 ((HTTP_RESPONSE_EVENT)(yyq.StackAt(0).m_value)) 1933 ((LINK_MESSAGE_EVENT)(yyq.StackAt(0).m_value))
1869 .yytext){}} 1934 .yytext){}}
1870 1935
1871public class Event_12 : Event { 1936public class Event_12 : Event {
1872 public Event_12(Parser yyq):base(yyq, 1937 public Event_12(Parser yyq):base(yyq,
1873 ((LAND_COLLISION_EVENT)(yyq.StackAt(0).m_value)) 1938 ((LISTEN_EVENT)(yyq.StackAt(0).m_value))
1874 .yytext){}} 1939 .yytext){}}
1875 1940
1876public class Event_13 : Event { 1941public class Event_13 : Event {
1877 public Event_13(Parser yyq):base(yyq, 1942 public Event_13(Parser yyq):base(yyq,
1878 ((LAND_COLLISION_END_EVENT)(yyq.StackAt(0).m_value)) 1943 ((MONEY_EVENT)(yyq.StackAt(0).m_value))
1879 .yytext){}} 1944 .yytext){}}
1880 1945
1881public class Event_14 : Event { 1946public class Event_14 : Event {
1882 public Event_14(Parser yyq):base(yyq, 1947 public Event_14(Parser yyq):base(yyq,
1883 ((LAND_COLLISION_START_EVENT)(yyq.StackAt(0).m_value)) 1948 ((NO_SENSOR_EVENT)(yyq.StackAt(0).m_value))
1884 .yytext){}} 1949 .yytext){}}
1885 1950
1886public class Event_15 : Event { 1951public class Event_15 : Event {
1887 public Event_15(Parser yyq):base(yyq, 1952 public Event_15(Parser yyq):base(yyq,
1888 ((LINK_MESSAGE_EVENT)(yyq.StackAt(0).m_value)) 1953 ((OBJECT_REZ_EVENT)(yyq.StackAt(0).m_value))
1889 .yytext){}} 1954 .yytext){}}
1890 1955
1891public class Event_16 : Event { 1956public class Event_16 : Event {
1892 public Event_16(Parser yyq):base(yyq, 1957 public Event_16(Parser yyq):base(yyq,
1893 ((LISTEN_EVENT)(yyq.StackAt(0).m_value)) 1958 ((REMOTE_DATA_EVENT)(yyq.StackAt(0).m_value))
1894 .yytext){}} 1959 .yytext){}}
1895 1960
1896public class Event_17 : Event { 1961public class Event_17 : Event {
1897 public Event_17(Parser yyq):base(yyq, 1962 public Event_17(Parser yyq):base(yyq,
1898 ((MONEY_EVENT)(yyq.StackAt(0).m_value)) 1963 ((HTTP_REQUEST_EVENT)(yyq.StackAt(0).m_value))
1899 .yytext){}} 1964 .yytext){}}
1900 1965
1901public class Event_18 : Event { 1966public class IntArgEvent_1 : IntArgEvent {
1902 public Event_18(Parser yyq):base(yyq, 1967 public IntArgEvent_1(Parser yyq):base(yyq,
1903 ((NO_SENSOR_EVENT)(yyq.StackAt(0).m_value)) 1968 ((CHANGED_EVENT)(yyq.StackAt(0).m_value))
1904 .yytext){}} 1969 .yytext){}}
1905 1970
1906public class Event_19 : Event { 1971public class IntArgEvent_2 : IntArgEvent {
1907 public Event_19(Parser yyq):base(yyq, 1972 public IntArgEvent_2(Parser yyq):base(yyq,
1908 ((OBJECT_REZ_EVENT)(yyq.StackAt(0).m_value)) 1973 ((COLLISION_EVENT)(yyq.StackAt(0).m_value))
1909 .yytext){}} 1974 .yytext){}}
1910 1975
1911public class Event_20 : Event { 1976public class IntArgEvent_3 : IntArgEvent {
1912 public Event_20(Parser yyq):base(yyq, 1977 public IntArgEvent_3(Parser yyq):base(yyq,
1913 ((ON_REZ_EVENT)(yyq.StackAt(0).m_value)) 1978 ((COLLISION_END_EVENT)(yyq.StackAt(0).m_value))
1914 .yytext){}} 1979 .yytext){}}
1915 1980
1916public class Event_21 : Event { 1981public class IntArgEvent_4 : IntArgEvent {
1917 public Event_21(Parser yyq):base(yyq, 1982 public IntArgEvent_4(Parser yyq):base(yyq,
1918 ((REMOTE_DATA_EVENT)(yyq.StackAt(0).m_value)) 1983 ((COLLISION_START_EVENT)(yyq.StackAt(0).m_value))
1984 .yytext){}}
1985
1986public class IntArgEvent_5 : IntArgEvent {
1987 public IntArgEvent_5(Parser yyq):base(yyq,
1988 ((ON_REZ_EVENT)(yyq.StackAt(0).m_value))
1919 .yytext){}} 1989 .yytext){}}
1920 1990
1921public class Event_22 : Event { 1991public class IntArgEvent_6 : IntArgEvent {
1922 public Event_22(Parser yyq):base(yyq, 1992 public IntArgEvent_6(Parser yyq):base(yyq,
1923 ((RUN_TIME_PERMISSIONS_EVENT)(yyq.StackAt(0).m_value)) 1993 ((RUN_TIME_PERMISSIONS_EVENT)(yyq.StackAt(0).m_value))
1924 .yytext){}} 1994 .yytext){}}
1925 1995
1926public class Event_23 : Event { 1996public class IntArgEvent_7 : IntArgEvent {
1927 public Event_23(Parser yyq):base(yyq, 1997 public IntArgEvent_7(Parser yyq):base(yyq,
1928 ((SENSOR_EVENT)(yyq.StackAt(0).m_value)) 1998 ((SENSOR_EVENT)(yyq.StackAt(0).m_value))
1929 .yytext){}} 1999 .yytext){}}
1930 2000
1931public class Event_24 : Event { 2001public class IntArgEvent_8 : IntArgEvent {
1932 public Event_24(Parser yyq):base(yyq, 2002 public IntArgEvent_8(Parser yyq):base(yyq,
1933 ((TOUCH_EVENT)(yyq.StackAt(0).m_value)) 2003 ((TOUCH_EVENT)(yyq.StackAt(0).m_value))
1934 .yytext){}} 2004 .yytext){}}
1935 2005
1936public class Event_25 : Event { 2006public class IntArgEvent_9 : IntArgEvent {
1937 public Event_25(Parser yyq):base(yyq, 2007 public IntArgEvent_9(Parser yyq):base(yyq,
1938 ((TOUCH_END_EVENT)(yyq.StackAt(0).m_value)) 2008 ((TOUCH_END_EVENT)(yyq.StackAt(0).m_value))
1939 .yytext){}} 2009 .yytext){}}
1940 2010
1941public class Event_26 : Event { 2011public class IntArgEvent_10 : IntArgEvent {
1942 public Event_26(Parser yyq):base(yyq, 2012 public IntArgEvent_10(Parser yyq):base(yyq,
1943 ((TOUCH_START_EVENT)(yyq.StackAt(0).m_value)) 2013 ((TOUCH_START_EVENT)(yyq.StackAt(0).m_value))
1944 .yytext){}} 2014 .yytext){}}
1945 2015
1946public class Event_27 : Event {
1947 public Event_27(Parser yyq):base(yyq,
1948 ((HTTP_REQUEST_EVENT)(yyq.StackAt(0).m_value))
1949 .yytext){}}
1950
1951public class VoidArgEvent_1 : VoidArgEvent { 2016public class VoidArgEvent_1 : VoidArgEvent {
1952 public VoidArgEvent_1(Parser yyq):base(yyq, 2017 public VoidArgEvent_1(Parser yyq):base(yyq,
1953 ((STATE_ENTRY_EVENT)(yyq.StackAt(0).m_value)) 2018 ((STATE_ENTRY_EVENT)(yyq.StackAt(0).m_value))
@@ -2014,9 +2079,9 @@ public yyLSLSyntax
201497,0,109,0,82, 207997,0,109,0,82,
20150,111,0,111,0, 20800,111,0,111,0,
2016116,0,1,96,1, 2081116,0,1,96,1,
20172,104,18,1,2729, 20822,104,18,1,2745,
2018102,2,0,105,5, 2083102,2,0,105,5,
2019326,1,0,106,18, 2084336,1,0,106,18,
20201,0,0,2,0, 20851,0,0,2,0,
20211,1,107,18,1, 20861,1,107,18,1,
20221,108,20,109,4, 20871,108,20,109,4,
@@ -2077,7 +2142,7 @@ public yyLSLSyntax
2077121,0,112,0,101, 2142121,0,112,0,101,
20780,110,0,97,0, 21430,110,0,97,0,
2079109,0,101,0,1, 2144109,0,101,0,1,
2080107,1,2,2,0, 2145110,1,2,2,0,
20811,9,131,18,1, 21461,9,131,18,1,
20829,132,20,133,4, 21479,132,20,133,4,
208310,73,0,68,0, 214810,73,0,68,0,
@@ -2106,7 +2171,7 @@ public yyLSLSyntax
2106105,0,111,0,110, 2171105,0,111,0,110,
21070,76,0,105,0, 21720,76,0,105,0,
2108115,0,116,0,1, 2173115,0,116,0,1,
2109105,1,2,2,0, 2174106,1,2,2,0,
21101,21,142,18,1, 21751,21,142,18,1,
211121,143,20,144,4, 217621,143,20,144,4,
211210,67,0,79,0, 217710,67,0,79,0,
@@ -2121,709 +2186,721 @@ public yyLSLSyntax
21210,97,0,116,0, 21860,97,0,116,0,
2122101,0,109,0,101, 2187101,0,109,0,101,
21230,110,0,116,0, 21880,110,0,116,0,
21241,124,1,2,2, 21891,128,1,2,2,
21250,1,1695,148,18, 21900,1,1695,148,18,
21261,1695,143,2,0, 21911,1695,143,2,0,
21271,2645,149,18,1, 21921,30,149,18,1,
21282645,150,20,151,4, 219330,150,20,151,4,
212922,82,0,73,0, 219422,68,0,101,0,
213071,0,72,0,84, 219599,0,108,0,97,
21310,95,0,66,0, 21960,114,0,97,0,
213282,0,65,0,67,
21330,69,0,1,13,
21341,1,2,0,1,
21352727,152,18,1,2727,
2136153,20,154,4,48,
213771,0,108,0,111,
21380,98,0,97,0,
2139108,0,70,0,117,
21400,110,0,99,0,
2141116,0,105,0,111,
21420,110,0,68,0,
2143101,0,102,0,105,
21440,110,0,105,0,
2145116,0,105,0,111, 2197116,0,105,0,111,
21460,110,0,1,99, 21980,110,0,1,108,
21471,2,2,0,1, 21991,2,2,0,1,
214830,155,18,1,30, 220031,152,18,1,31,
2149156,20,157,4,22, 2201153,20,154,4,22,
215068,0,101,0,99, 220282,0,73,0,71,
21510,108,0,97,0, 22030,72,0,84,0,
2152114,0,97,0,116, 220495,0,80,0,65,
22050,82,0,69,0,
220678,0,1,17,1,
22071,2,0,1,32,
2208155,18,1,32,156,
220920,157,4,20,76,
22100,69,0,70,0,
221184,0,95,0,66,
22120,82,0,65,0,
221367,0,69,0,1,
221412,1,1,2,0,
22151,1114,158,18,1,
22161114,132,2,0,1,
22171152,159,18,1,1152,
2218160,20,161,4,32,
221983,0,105,0,109,
22200,112,0,108,0,
2221101,0,65,0,115,
22220,115,0,105,0,
2223103,0,110,0,109,
22240,101,0,110,0,
2225116,0,1,119,1,
22262,2,0,1,1117,
2227162,18,1,1117,163,
222820,164,4,28,80,
22290,69,0,82,0,
223067,0,69,0,78,
22310,84,0,95,0,
223269,0,81,0,85,
22330,65,0,76,0,
223483,0,1,10,1,
22351,2,0,1,40,
2236165,18,1,40,132,
22372,0,1,41,166,
223818,1,41,135,2,
22390,1,42,167,18,
22401,42,168,20,169,
22414,20,69,0,120,
22420,112,0,114,0,
2243101,0,115,0,115,
21530,105,0,111,0, 22440,105,0,111,0,
2154110,0,1,106,1, 2245110,0,1,137,1,
21552,2,0,1,31, 22462,2,0,1,43,
2156158,18,1,31,159, 2247170,18,1,43,171,
215720,160,4,22,82, 224820,172,4,22,82,
21580,73,0,71,0, 22490,73,0,71,0,
215972,0,84,0,95, 225072,0,84,0,95,
21600,80,0,65,0, 22510,83,0,72,0,
216182,0,69,0,78, 225273,0,70,0,84,
21620,1,17,1,1, 22530,1,41,1,1,
21632,0,1,32,161, 22542,0,1,44,173,
216418,1,32,162,20, 225518,1,44,132,2,
2165163,4,20,76,0, 22560,1,1159,174,18,
216669,0,70,0,84, 22571,1159,168,2,0,
21670,95,0,66,0, 22581,46,175,18,1,
216882,0,65,0,67, 225946,176,20,177,4,
21690,69,0,1,12, 226012,80,0,69,0,
226182,0,73,0,79,
22620,68,0,1,24,
21701,1,2,0,1, 22631,1,2,0,1,
21712651,164,18,1,2651, 226447,178,18,1,47,
2172165,20,166,4,10, 2265132,2,0,1,48,
217383,0,116,0,97, 2266179,18,1,48,180,
21740,116,0,101,0, 226720,181,4,18,68,
21751,101,1,2,2, 22680,69,0,67,0,
21760,1,1114,167,18, 226982,0,69,0,77,
21771,1114,132,2,0, 22700,69,0,78,0,
21781,1152,168,18,1, 227184,0,1,5,1,
21791152,169,20,170,4, 22721,2,0,1,49,
218032,83,0,105,0, 2273182,18,1,49,183,
2181109,0,112,0,108, 227420,184,4,18,73,
21820,101,0,65,0, 22750,78,0,67,0,
2183115,0,115,0,105, 227682,0,69,0,77,
21840,103,0,110,0, 22770,69,0,78,0,
2185109,0,101,0,110, 227884,0,1,4,1,
21860,116,0,1,115, 22791,2,0,1,50,
21871,2,2,0,1, 2280185,18,1,50,180,
21881117,171,18,1,1117, 22812,0,1,51,186,
2189172,20,173,4,28, 228218,1,51,183,2,
219080,0,69,0,82, 22830,1,52,187,18,
21910,67,0,69,0, 22841,52,135,2,0,
219278,0,84,0,95, 22851,2281,188,18,1,
22862281,160,2,0,1,
22872669,189,18,1,2669,
2288132,2,0,1,1730,
2289190,18,1,1730,160,
22902,0,1,1731,191,
229118,1,1731,192,20,
2292193,4,18,83,0,
229369,0,77,0,73,
22940,67,0,79,0,
229576,0,79,0,78,
22960,1,11,1,1,
22972,0,1,61,194,
229818,1,61,129,2,
22990,1,62,195,18,
23001,62,153,2,0,
23011,63,196,18,1,
230263,132,2,0,1,
230365,197,18,1,65,
2304176,2,0,1,66,
2305198,18,1,66,132,
23062,0,1,67,199,
230718,1,67,180,2,
23080,1,68,200,18,
23091,68,183,2,0,
23101,69,201,18,1,
231169,180,2,0,1,
231270,202,18,1,70,
2313183,2,0,1,71,
2314203,18,1,71,135,
23152,0,1,73,204,
231618,1,73,168,2,
23170,1,74,205,18,
23181,74,153,2,0,
23191,1189,206,18,1,
23201189,207,20,208,4,
232122,83,0,84,0,
232265,0,82,0,95,
21930,69,0,81,0, 23230,69,0,81,0,
219485,0,65,0,76, 232485,0,65,0,76,
21950,83,0,1,10, 23250,83,0,1,8,
21961,1,2,0,1,
219740,174,18,1,40,
2198132,2,0,1,41,
2199175,18,1,41,135,
22002,0,1,42,176,
220118,1,42,177,20,
2202178,4,20,69,0,
2203120,0,112,0,114,
22040,101,0,115,0,
2205115,0,105,0,111,
22060,110,0,1,133,
22071,2,2,0,1,
220843,179,18,1,43,
2209180,20,181,4,22,
221082,0,73,0,71,
22110,72,0,84,0,
221295,0,83,0,72,
22130,73,0,70,0,
221484,0,1,41,1,
22151,2,0,1,44,
2216182,18,1,44,132,
22172,0,1,1159,183,
221818,1,1159,177,2,
22190,1,46,184,18,
22201,46,185,20,186,
22214,12,80,0,69,
22220,82,0,73,0,
222379,0,68,0,1,
222424,1,1,2,0,
22251,47,187,18,1,
222647,132,2,0,1,
222748,188,18,1,48,
2228189,20,190,4,18,
222968,0,69,0,67,
22300,82,0,69,0,
223177,0,69,0,78,
22320,84,0,1,5,
22331,1,2,0,1, 23261,1,2,0,1,
223449,191,18,1,49, 232776,209,18,1,76,
2235192,20,193,4,18, 2328210,20,211,4,20,
223673,0,78,0,67, 232976,0,69,0,70,
22370,82,0,69,0, 23300,84,0,95,0,
223877,0,69,0,78, 233183,0,72,0,73,
22390,84,0,1,4, 23320,70,0,84,0,
23331,40,1,1,2,
23340,1,1153,212,18,
23351,1153,213,20,214,
23364,24,83,0,76,
23370,65,0,83,0,
233872,0,95,0,69,
23390,81,0,85,0,
234065,0,76,0,83,
23410,1,9,1,1,
23422,0,1,79,215,
234318,1,79,216,20,
2344217,4,10,84,0,
234573,0,76,0,68,
23460,69,0,1,36,
22401,1,2,0,1, 23471,1,2,0,1,
224150,194,18,1,50, 23481195,218,18,1,1195,
2242189,2,0,1,51, 2349168,2,0,1,82,
2243195,18,1,51,192, 2350219,18,1,82,168,
22442,0,1,52,196, 23512,0,1,1123,220,
224518,1,52,135,2, 235218,1,1123,168,2,
22460,1,2281,197,18, 23530,1,85,221,18,
22471,2281,169,2,0, 23541,85,222,20,223,
22481,2669,198,18,1, 23554,26,83,0,84,
22492669,156,2,0,1,
22501730,199,18,1,1730,
2251169,2,0,1,1731,
2252200,18,1,1731,201,
225320,202,4,18,83,
22540,69,0,77,0,
225573,0,67,0,79,
22560,76,0,79,0,
225778,0,1,11,1,
22581,2,0,1,61,
2259203,18,1,61,129,
22602,0,1,62,204,
226118,1,62,159,2,
22620,1,63,205,18,
22631,63,132,2,0,
22641,65,206,18,1,
226565,185,2,0,1,
226666,207,18,1,66,
2267132,2,0,1,67,
2268208,18,1,67,189,
22692,0,1,68,209,
227018,1,68,192,2,
22710,1,69,210,18,
22721,69,189,2,0,
22731,70,211,18,1,
227470,192,2,0,1,
227571,212,18,1,71,
2276135,2,0,1,73,
2277213,18,1,73,177,
22782,0,1,74,214,
227918,1,74,159,2,
22800,1,1189,215,18,
22811,1189,216,20,217,
22824,22,83,0,84,
22830,65,0,82,0,
228495,0,69,0,81,
22850,85,0,65,0,
228676,0,83,0,1,
22878,1,1,2,0,
22881,76,218,18,1,
228976,219,20,220,4,
229020,76,0,69,0,
229170,0,84,0,95,
22920,83,0,72,0,
229373,0,70,0,84,
22940,1,40,1,1,
22952,0,1,1153,221,
229618,1,1153,222,20,
2297223,4,24,83,0,
229876,0,65,0,83,
22990,72,0,95,0,
230069,0,81,0,85,
23010,65,0,76,0,
230283,0,1,9,1,
23031,2,0,1,79,
2304224,18,1,79,225,
230520,226,4,10,84,
23060,73,0,76,0,
230768,0,69,0,1,
230836,1,1,2,0,
23091,1195,227,18,1,
23101195,177,2,0,1,
231182,228,18,1,82,
2312177,2,0,1,1123,
2313229,18,1,1123,177,
23142,0,1,85,230,
231518,1,85,231,20,
2316232,4,26,83,0,
231784,0,82,0,79,
23180,75,0,69,0,
231995,0,83,0,84,
23200,82,0,79,0, 23560,82,0,79,0,
232175,0,69,0,1, 235775,0,69,0,95,
232239,1,1,2,0, 23580,83,0,84,0,
23231,89,233,18,1, 235982,0,79,0,75,
232489,234,20,235,4, 23600,69,0,1,39,
232510,77,0,73,0, 23611,1,2,0,1,
232678,0,85,0,83, 236289,224,18,1,89,
23270,1,19,1,1, 2363225,20,226,4,10,
23282,0,1,2318,236, 236477,0,73,0,78,
232918,1,2318,201,2, 23650,85,0,83,0,
23300,1,93,237,18, 23661,19,1,1,2,
23311,93,177,2,0, 23670,1,2318,227,18,
23321,2707,238,18,1, 23681,2318,192,2,0,
23332707,239,20,240,4, 23691,93,228,18,1,
233434,71,0,108,0, 237093,168,2,0,1,
2335111,0,98,0,97, 237197,229,18,1,97,
23360,108,0,68,0, 2372230,20,231,4,14,
2337101,0,102,0,105,
23380,110,0,105,0,
2339116,0,105,0,111,
23400,110,0,115,0,
23411,97,1,2,2,
23420,1,97,241,18,
23431,97,242,20,243,
23444,14,65,0,77,
23450,80,0,95,0,
234665,0,77,0,80, 237365,0,77,0,80,
23470,1,38,1,1, 23740,95,0,65,0,
23482,0,1,102,244, 237577,0,80,0,1,
234918,1,102,245,20, 237638,1,1,2,0,
2350246,4,22,69,0, 23771,102,232,18,1,
235188,0,67,0,76, 2378102,233,20,234,4,
23520,65,0,77,0, 237922,69,0,88,0,
235365,0,84,0,73,
23540,79,0,78,0,
23551,37,1,1,2,
23560,1,1775,247,18,
23571,1775,159,2,0,
23581,107,248,18,1,
2359107,177,2,0,1,
23602337,249,18,1,2337,
2361159,2,0,1,1224,
2362250,18,1,1224,169,
23632,0,1,1225,251,
236418,1,1225,252,20,
2365253,4,24,77,0,
236673,0,78,0,85,
23670,83,0,95,0,
236869,0,81,0,85,
23690,65,0,76,0,
237083,0,1,7,1,
23711,2,0,1,112,
2372254,18,1,112,255,
237320,256,4,28,71,
23740,82,0,69,0,
237565,0,84,0,69,
23760,82,0,95,0,
237769,0,81,0,85,
23780,65,0,76,0,
237983,0,1,32,1,
23801,2,0,1,1188,
2381257,18,1,1188,169,
23822,0,1,1231,258,
238318,1,1231,177,2,
23840,1,118,259,18,
23851,118,177,2,0,
23861,2730,260,18,1,
23872730,261,23,262,4,
23886,69,0,79,0,
238970,0,1,2,1,
23906,2,0,1,1737,
2391263,18,1,1737,177,
23922,0,1,124,264,
239318,1,124,265,20,
2394266,4,22,76,0,
239569,0,83,0,83,
23960,95,0,69,0,
239781,0,85,0,65,
23980,76,0,83,0,
23991,31,1,1,2,
24000,1,130,267,18,
24011,130,177,2,0,
24021,1803,268,18,1,
24031803,269,20,270,4,
240418,83,0,116,0,
240597,0,116,0,101,
24060,109,0,101,0,
2407110,0,116,0,1,
2408112,1,2,2,0,
24091,1804,271,18,1,
24101804,272,20,273,4,
24114,68,0,79,0,
24121,44,1,1,2,
24130,1,2364,274,18,
24141,2364,269,2,0,
24151,137,275,18,1,
2416137,276,20,277,4,
241736,69,0,88,0,
241867,0,76,0,65, 238067,0,76,0,65,
24190,77,0,65,0, 23810,77,0,65,0,
242084,0,73,0,79, 238284,0,73,0,79,
24210,78,0,95,0, 23830,78,0,1,37,
242269,0,81,0,85, 23841,1,2,0,1,
24230,65,0,76,0, 23851775,235,18,1,1775,
242483,0,1,30,1, 2386153,2,0,1,107,
24251,2,0,1,2293, 2387236,18,1,107,168,
2426278,18,1,2293,201, 23882,0,1,2337,237,
24272,0,1,1701,279, 238918,1,2337,153,2,
242818,1,1701,177,2, 23900,1,1224,238,18,
24290,1,1756,280,18, 23911,1224,160,2,0,
24301,1756,201,2,0, 23921,1225,239,18,1,
24311,143,281,18,1, 23931225,240,20,241,4,
2432143,177,2,0,1, 239424,77,0,73,0,
24332299,282,18,1,2299, 239578,0,85,0,83,
2434177,2,0,1,1260,
2435283,18,1,1260,169,
24362,0,1,1261,284,
243718,1,1261,285,20,
2438286,4,22,80,0,
243976,0,85,0,83,
24400,95,0,69,0, 23960,95,0,69,0,
244181,0,85,0,65, 239781,0,85,0,65,
24420,76,0,83,0, 23980,76,0,83,0,
24431,6,1,1,2, 23991,7,1,1,2,
24440,1,151,287,18, 24000,1,112,242,18,
24451,151,288,20,289, 24011,112,243,20,244,
24464,26,69,0,81, 24024,28,71,0,82,
24030,69,0,65,0,
240484,0,69,0,82,
24050,95,0,69,0,
240681,0,85,0,65,
24070,76,0,83,0,
24081,32,1,1,2,
24090,1,1188,245,18,
24101,1188,160,2,0,
24111,1231,246,18,1,
24121231,168,2,0,1,
2413118,247,18,1,118,
2414168,2,0,1,1737,
2415248,18,1,1737,168,
24162,0,1,2734,249,
241718,1,2734,250,20,
2418251,4,12,83,0,
2419116,0,97,0,116,
24200,101,0,115,0,
24211,100,1,2,2,
24220,1,124,252,18,
24231,124,253,20,254,
24244,22,76,0,69,
24250,83,0,83,0,
242695,0,69,0,81,
24470,85,0,65,0, 24270,85,0,65,0,
244876,0,83,0,95, 242876,0,83,0,1,
24490,69,0,81,0, 242931,1,1,2,0,
24301,130,255,18,1,
2431130,168,2,0,1,
24322742,256,18,1,2742,
2433257,20,258,4,50,
243471,0,108,0,111,
24350,98,0,97,0,
2436108,0,86,0,97,
24370,114,0,105,0,
243897,0,98,0,108,
24390,101,0,68,0,
2440101,0,99,0,108,
24410,97,0,114,0,
244297,0,116,0,105,
24430,111,0,110,0,
24441,98,1,2,2,
24450,1,1803,259,18,
24461,1803,260,20,261,
24474,18,83,0,116,
24480,97,0,116,0,
2449101,0,109,0,101,
24500,110,0,116,0,
24511,116,1,2,2,
24520,1,1804,262,18,
24531,1804,263,20,264,
24544,4,68,0,79,
24550,1,44,1,1,
24562,0,1,2745,104,
24571,2364,265,18,1,
24582364,260,2,0,1,
2459137,266,18,1,137,
2460267,20,268,4,36,
246169,0,88,0,67,
24620,76,0,65,0,
246377,0,65,0,84,
24640,73,0,79,0,
246578,0,95,0,69,
24660,81,0,85,0,
246765,0,76,0,83,
24680,1,30,1,1,
24692,0,1,2293,269,
247018,1,2293,192,2,
24710,1,1701,270,18,
24721,1701,168,2,0,
24731,1756,271,18,1,
24741756,192,2,0,1,
2475143,272,18,1,143,
2476168,2,0,1,2299,
2477273,18,1,2299,168,
24782,0,1,1260,274,
247918,1,1260,160,2,
24800,1,1261,275,18,
24811,1261,276,20,277,
24824,22,80,0,76,
24830,85,0,83,0,
248495,0,69,0,81,
24850,85,0,65,0,
248676,0,83,0,1,
24876,1,1,2,0,
24881,151,278,18,1,
2489151,279,20,280,4,
249026,69,0,81,0,
245085,0,65,0,76, 249185,0,65,0,76,
24510,83,0,1,29, 24920,83,0,95,0,
24521,1,2,0,1, 249369,0,81,0,85,
24531267,290,18,1,1267, 24940,65,0,76,0,
2454177,2,0,1,157, 249583,0,1,29,1,
2455291,18,1,157,177, 24961,2,0,1,1267,
24562,0,1,1773,292, 2497281,18,1,1267,168,
245718,1,1773,146,2, 24982,0,1,157,282,
24580,1,1832,293,18, 249918,1,157,168,2,
24591,1832,269,2,0, 25000,1,1773,283,18,
24601,1833,294,18,1, 25011,1773,146,2,0,
24611833,295,20,296,4, 25021,1832,284,18,1,
246210,87,0,72,0, 25031832,260,2,0,1,
246373,0,76,0,69, 25041833,285,18,1,1833,
24640,1,45,1,1, 2505286,20,287,4,10,
24652,0,1,1834,297, 250687,0,72,0,73,
246618,1,1834,135,2, 25070,76,0,69,0,
24670,1,166,298,18, 25081,45,1,1,2,
24681,166,299,20,300, 25090,1,1834,288,18,
24694,20,76,0,69, 25101,1834,135,2,0,
24700,70,0,84,0, 25111,166,289,18,1,
247195,0,65,0,78, 2512166,290,20,291,4,
24720,71,0,76,0, 251320,76,0,69,0,
247369,0,1,25,1, 251470,0,84,0,95,
24741,2,0,1,1840, 25150,65,0,78,0,
2475301,18,1,1840,177, 251671,0,76,0,69,
24762,0,1,172,302, 25170,1,25,1,1,
247718,1,172,177,2, 25182,0,1,1840,292,
24780,1,2706,303,18, 251918,1,1840,168,2,
24791,2706,201,2,0, 25200,1,172,293,18,
24801,2335,304,18,1, 25211,172,168,2,0,
25221,2335,294,18,1,
24812335,146,2,0,1, 25232335,146,2,0,1,
24821296,305,18,1,1296, 25241296,295,18,1,1296,
2483169,2,0,1,1297, 2525160,2,0,1,1297,
2484306,18,1,1297,307, 2526296,18,1,1297,297,
248520,308,4,12,69, 252720,298,4,12,69,
24860,81,0,85,0, 25280,81,0,85,0,
248765,0,76,0,83, 252965,0,76,0,83,
24880,1,15,1,1, 25300,1,15,1,1,
24892,0,1,2413,309, 25312,0,1,2413,299,
249018,1,2413,310,20, 253218,1,2413,300,20,
2491311,4,26,83,0, 2533301,4,26,83,0,
2492116,0,97,0,116, 2534116,0,97,0,116,
24930,101,0,109,0, 25350,101,0,109,0,
2494101,0,110,0,116, 2536101,0,110,0,116,
24950,76,0,105,0, 25370,76,0,105,0,
2496115,0,116,0,1, 2538115,0,116,0,1,
2497111,1,2,2,0, 2539115,1,2,2,0,
24981,1859,312,18,1, 25401,1859,302,18,1,
24991859,159,2,0,1, 25411859,153,2,0,1,
25001860,313,18,1,1860, 25421860,303,18,1,1860,
2501201,2,0,1,188, 2543192,2,0,1,188,
2502314,18,1,188,177, 2544304,18,1,188,168,
25032,0,1,182,315, 25452,0,1,182,305,
250418,1,182,316,20, 254618,1,182,306,20,
2505317,4,22,82,0, 2547307,4,22,82,0,
250673,0,71,0,72, 254873,0,71,0,72,
25070,84,0,95,0, 25490,84,0,95,0,
250865,0,78,0,71, 255065,0,78,0,71,
25090,76,0,69,0, 25510,76,0,69,0,
25101,26,1,1,2, 25521,26,1,1,2,
25110,1,199,318,18, 25530,1,199,308,18,
25121,199,319,20,320, 25541,199,309,20,310,
25134,10,67,0,65, 25554,10,67,0,65,
25140,82,0,69,0, 25560,82,0,69,0,
251584,0,1,35,1, 255784,0,1,35,1,
25161,2,0,1,1871, 25581,2,0,1,1871,
2517321,18,1,1871,169, 2559311,18,1,1871,160,
25182,0,1,1872,322, 25602,0,1,1872,312,
251918,1,1872,159,2, 256118,1,1872,153,2,
25200,1,1873,323,18, 25620,1,1873,313,18,
25211,1873,201,2,0, 25631,1873,192,2,0,
25221,1875,324,18,1, 25641,1875,314,18,1,
25231875,295,2,0,1, 25651875,286,2,0,1,
2524205,325,18,1,205, 2566205,315,18,1,205,
2525177,2,0,1,1882, 2567168,2,0,1,2581,
2526326,18,1,1882,177, 2568316,18,1,2581,156,
25272,0,1,2227,327, 25692,0,1,2515,317,
252818,1,2227,269,2, 257018,1,2515,318,20,
25290,1,217,328,18, 2571319,4,52,73,0,
25301,217,329,20,330, 2572110,0,116,0,65,
25314,12,83,0,84, 25730,114,0,103,0,
25320,82,0,79,0, 2574117,0,109,0,101,
253375,0,69,0,1, 25750,110,0,116,0,
253434,1,1,2,0, 257668,0,101,0,99,
25351,1332,331,18,1, 25770,108,0,97,0,
25361332,169,2,0,1, 2578114,0,97,0,116,
25371335,332,18,1,1335, 25790,105,0,111,0,
2538172,2,0,1,223, 2580110,0,76,0,105,
2539333,18,1,223,177, 25810,115,0,116,0,
25402,0,1,1341,334, 25821,107,1,2,2,
254118,1,1341,177,2, 25830,1,1882,320,18,
25420,1,1901,335,18, 25841,1882,168,2,0,
25431,1901,159,2,0, 25851,2227,321,18,1,
25441,1303,336,18,1, 25862227,260,2,0,1,
25451303,177,2,0,1, 25872660,322,18,1,2660,
25462462,337,18,1,2462, 2588323,20,324,4,22,
2547269,2,0,1,236, 258982,0,73,0,71,
2548338,18,1,236,339, 25900,72,0,84,0,
254920,340,4,6,65, 259195,0,66,0,82,
25500,77,0,80,0, 25920,65,0,67,0,
25511,33,1,1,2, 259369,0,1,13,1,
25520,1,2466,341,18, 25941,2,0,1,217,
25531,2466,342,20,343, 2595325,18,1,217,326,
25544,34,67,0,111, 259620,327,4,12,83,
25550,109,0,112,0, 25970,84,0,82,0,
2556111,0,117,0,110, 259879,0,75,0,69,
25570,100,0,83,0, 25990,1,34,1,1,
2558116,0,97,0,116, 26002,0,1,1332,328,
25590,101,0,109,0, 260118,1,1332,160,2,
2560101,0,110,0,116, 26020,1,2743,329,18,
25610,1,110,1,2, 26031,2743,330,20,331,
25622,0,1,2467,344, 26044,48,71,0,108,
256318,1,2467,156,2, 26050,111,0,98,0,
25640,1,2468,345,18, 260697,0,108,0,70,
25651,2468,346,20,347, 26070,117,0,110,0,
25664,10,83,0,84, 260899,0,116,0,105,
25670,65,0,84,0, 26090,111,0,110,0,
256869,0,1,48,1, 261068,0,101,0,102,
25691,2,0,1,2469, 26110,105,0,110,0,
2570348,18,1,2469,132, 2612105,0,116,0,105,
25712,0,1,242,349, 26130,111,0,110,0,
257218,1,242,177,2, 26141,99,1,2,2,
25730,1,2471,350,18, 26150,1,2744,332,18,
25741,2471,351,20,352, 26161,2744,257,2,0,
25754,22,84,0,73, 26171,1335,333,18,1,
25760,77,0,69,0, 26181335,163,2,0,1,
257782,0,95,0,69, 2619223,334,18,1,223,
25780,86,0,69,0, 2620168,2,0,1,1341,
257978,0,84,0,1, 2621335,18,1,1341,168,
258087,1,1,2,0, 26222,0,1,1901,336,
25811,2472,353,18,1, 262318,1,1901,153,2,
25822472,354,20,355,4, 26240,1,1303,337,18,
258338,78,0,79,0, 26251,1303,168,2,0,
258484,0,95,0,65, 26261,2462,338,18,1,
26272462,260,2,0,1,
2628236,339,18,1,236,
2629340,20,341,4,6,
263065,0,77,0,80,
26310,1,33,1,1,
26322,0,1,2466,342,
263318,1,2466,343,20,
2634344,4,34,67,0,
2635111,0,109,0,112,
26360,111,0,117,0,
2637110,0,100,0,83,
26380,116,0,97,0,
2639116,0,101,0,109,
26400,101,0,110,0,
2641116,0,1,114,1,
26422,2,0,1,2467,
2643345,18,1,2467,150,
26442,0,1,2468,346,
264518,1,2468,347,20,
2646348,4,10,83,0,
264784,0,65,0,84,
26480,69,0,1,48,
26491,1,2,0,1,
26502469,349,18,1,2469,
2651132,2,0,1,242,
2652350,18,1,242,168,
26532,0,1,2471,351,
265418,1,2471,352,20,
2655353,4,22,84,0,
265673,0,77,0,69,
26570,82,0,95,0,
265869,0,86,0,69,
26590,78,0,84,0,
26601,87,1,1,2,
26610,1,2472,354,18,
26621,2472,355,20,356,
26634,38,78,0,79,
25850,84,0,95,0, 26640,84,0,95,0,
258684,0,65,0,82, 266565,0,84,0,95,
25870,71,0,69,0, 26660,84,0,65,0,
258884,0,95,0,69, 266782,0,71,0,69,
25890,86,0,69,0,
259078,0,84,0,1,
259179,1,1,2,0,
25921,2473,356,18,1,
25932473,357,20,358,4,
259446,78,0,79,0,
259584,0,95,0,65,
25960,84,0,95,0, 26680,84,0,95,0,
259782,0,79,0,84, 266969,0,86,0,69,
25980,95,0,84,0, 26700,78,0,84,0,
259965,0,82,0,71, 26711,79,1,1,2,
26000,69,0,84,0, 26720,1,2473,357,18,
260195,0,69,0,86, 26731,2473,358,20,359,
26020,69,0,78,0, 26744,46,78,0,79,
260384,0,1,78,1,
26041,2,0,1,2474,
2605359,18,1,2474,360,
260620,361,4,36,77,
26070,79,0,86,0,
260873,0,78,0,71,
26090,95,0,83,0,
261084,0,65,0,82,
26110,84,0,95,0, 26750,84,0,95,0,
267665,0,84,0,95,
26770,82,0,79,0,
267884,0,95,0,84,
26790,65,0,82,0,
268071,0,69,0,84,
26810,95,0,69,0,
268286,0,69,0,78,
26830,84,0,1,78,
26841,1,2,0,1,
26852474,360,18,1,2474,
2686361,20,362,4,36,
268777,0,79,0,86,
26880,73,0,78,0,
268971,0,95,0,83,
26900,84,0,65,0,
269182,0,84,0,95,
26920,69,0,86,0,
269369,0,78,0,84,
26940,1,76,1,1,
26952,0,1,2475,363,
269618,1,2475,364,20,
2697365,4,32,77,0,
269879,0,86,0,73,
26990,78,0,71,0,
270095,0,69,0,78,
27010,68,0,95,0,
261269,0,86,0,69, 270269,0,86,0,69,
26130,78,0,84,0, 27030,78,0,84,0,
26141,76,1,1,2, 27041,75,1,1,2,
26150,1,2475,362,18, 27050,1,2476,366,18,
26161,2475,363,20,364, 27061,2476,367,20,368,
26174,32,77,0,79, 27074,32,83,0,84,
26180,86,0,73,0, 27080,65,0,84,0,
261978,0,71,0,95, 270969,0,95,0,69,
26200,69,0,78,0, 27100,88,0,73,0,
262168,0,95,0,69, 271184,0,95,0,69,
26220,86,0,69,0, 27120,86,0,69,0,
262378,0,84,0,1, 271378,0,84,0,1,
262475,1,1,2,0, 271486,1,1,2,0,
26251,2476,365,18,1, 27151,2477,369,18,1,
26262476,366,20,367,4, 27162477,370,20,371,4,
262732,83,0,84,0, 271734,83,0,84,0,
262865,0,84,0,69, 271865,0,84,0,69,
26290,95,0,69,0, 27190,95,0,69,0,
263088,0,73,0,84, 272078,0,84,0,82,
27210,89,0,95,0,
272269,0,86,0,69,
27230,78,0,84,0,
27241,85,1,1,2,
27250,1,2478,372,18,
27261,2478,373,20,374,
27274,34,84,0,79,
27280,85,0,67,0,
272972,0,95,0,83,
27300,84,0,65,0,
273182,0,84,0,95,
27320,69,0,86,0,
273369,0,78,0,84,
27340,1,89,1,1,
27352,0,1,2479,375,
273618,1,2479,376,20,
2737377,4,30,84,0,
273879,0,85,0,67,
27390,72,0,95,0,
274069,0,78,0,68,
26310,95,0,69,0, 27410,95,0,69,0,
263286,0,69,0,78, 274286,0,69,0,78,
26330,84,0,1,86, 27430,84,0,1,90,
26341,1,2,0,1, 27441,1,2,0,1,
26352477,368,18,1,2477, 27452480,378,18,1,2480,
2636369,20,370,4,34, 2746379,20,380,4,22,
263783,0,84,0,65, 274784,0,79,0,85,
26380,84,0,69,0, 27480,67,0,72,0,
263995,0,69,0,78,
26400,84,0,82,0,
264189,0,95,0,69,
26420,86,0,69,0,
264378,0,84,0,1,
264485,1,1,2,0,
26451,2478,371,18,1,
26462478,372,20,373,4,
264736,72,0,84,0,
264884,0,80,0,95,
26490,82,0,69,0,
265081,0,85,0,69,
26510,83,0,84,0,
265295,0,69,0,86, 274995,0,69,0,86,
26530,69,0,78,0, 27500,69,0,78,0,
265484,0,1,91,1, 275184,0,1,88,1,
26551,2,0,1,2479, 27521,2,0,1,2481,
2656374,18,1,2479,375, 2753381,18,1,2481,382,
265720,376,4,34,84, 275420,383,4,24,83,
26580,79,0,85,0, 27550,69,0,78,0,
265967,0,72,0,95, 275683,0,79,0,82,
26600,83,0,84,0,
266165,0,82,0,84,
26620,95,0,69,0, 27570,95,0,69,0,
266386,0,69,0,78, 275886,0,69,0,78,
26640,84,0,1,89, 27590,84,0,1,84,
26651,1,2,0,1, 27601,1,2,0,1,
26662480,377,18,1,2480, 27612482,384,18,1,2482,
2667378,20,379,4,30, 2762385,20,386,4,52,
266884,0,79,0,85, 276382,0,85,0,78,
26690,67,0,72,0, 27640,95,0,84,0,
267095,0,69,0,78, 276573,0,77,0,69,
26710,68,0,95,0, 27660,95,0,80,0,
267269,0,86,0,69, 276769,0,82,0,77,
26730,78,0,84,0, 27680,73,0,83,0,
26741,90,1,1,2, 276983,0,73,0,79,
26750,1,2481,380,18, 27700,78,0,83,0,
26761,2481,381,20,382, 277195,0,69,0,86,
26774,22,84,0,79, 27720,69,0,78,0,
26780,85,0,67,0, 277384,0,1,83,1,
267972,0,95,0,69, 27741,2,0,1,2483,
26800,86,0,69,0, 2775387,18,1,2483,388,
268178,0,84,0,1, 277620,389,4,24,79,
268288,1,1,2,0,
26831,2482,383,18,1,
26842482,384,20,385,4,
268524,83,0,69,0,
268678,0,83,0,79,
26870,82,0,95,0,
268869,0,86,0,69,
26890,78,0,84,0,
26901,84,1,1,2,
26910,1,2483,386,18,
26921,2483,387,20,388,
26934,52,82,0,85,
26940,78,0,95,0, 27770,78,0,95,0,
269584,0,73,0,77,
26960,69,0,95,0,
269780,0,69,0,82,
26980,77,0,73,0,
269983,0,83,0,73,
27000,79,0,78,0,
270183,0,95,0,69,
27020,86,0,69,0,
270378,0,84,0,1,
270483,1,1,2,0,
27051,256,389,18,1,
2706256,390,20,391,4,
270714,80,0,69,0,
270882,0,67,0,69,
27090,78,0,84,0,
27101,22,1,1,2,
27110,1,1371,392,18,
27121,1371,222,2,0,
27131,2486,393,18,1,
27142486,394,20,395,4,
271532,79,0,66,0,
271674,0,69,0,67,
27170,84,0,95,0,
271882,0,69,0,90, 277882,0,69,0,90,
27190,95,0,69,0, 27790,95,0,69,0,
272086,0,69,0,78, 278086,0,69,0,78,
27210,84,0,1,80, 27810,84,0,1,81,
27221,1,2,0,1, 27821,1,2,0,1,
27232487,396,18,1,2487, 2783256,390,18,1,256,
2724397,20,398,4,30, 2784391,20,392,4,14,
272578,0,79,0,95, 278580,0,69,0,82,
27260,83,0,69,0, 27860,67,0,69,0,
272778,0,83,0,79, 278778,0,84,0,1,
27280,82,0,95,0, 278822,1,1,2,0,
272969,0,86,0,69, 27891,1371,393,18,1,
27300,78,0,84,0, 27901371,213,2,0,1,
27311,77,1,1,2, 27912486,394,18,1,2486,
27320,1,1931,399,18, 2792395,20,396,4,30,
27331,1931,269,2,0,
27341,1932,400,18,1,
27351932,401,20,402,4,
27364,73,0,70,0,
27371,42,1,1,2,
27380,1,262,403,18,
27391,262,177,2,0,
27401,1377,404,18,1,
27411377,177,2,0,1,
27422492,405,18,1,2492,
2743406,20,407,4,48,
274476,0,65,0,78,
27450,68,0,95,0,
274667,0,79,0,76, 279367,0,79,0,76,
27470,76,0,73,0, 27940,76,0,73,0,
274883,0,73,0,79, 279583,0,73,0,79,
27490,78,0,95,0, 27960,78,0,95,0,
275069,0,78,0,68, 279769,0,86,0,69,
27980,78,0,84,0,
27991,62,1,1,2,
28000,1,2487,397,18,
28011,2487,398,20,399,
28024,26,67,0,72,
28030,65,0,78,0,
280471,0,69,0,68,
27510,95,0,69,0, 28050,95,0,69,0,
275286,0,69,0,78, 280686,0,69,0,78,
27530,84,0,1,70, 28070,84,0,1,61,
27541,1,2,0,1, 28081,1,2,0,1,
27551876,408,18,1,1876, 28091931,400,18,1,1931,
2756135,2,0,1,2494, 2810260,2,0,1,1932,
2757409,18,1,2494,410, 2811401,18,1,1932,402,
275820,411,4,38,72, 281220,403,4,4,73,
27590,84,0,84,0, 28130,70,0,1,42,
276080,0,95,0,82, 28141,1,2,0,1,
27610,69,0,83,0, 2815262,404,18,1,262,
276280,0,79,0,78, 2816168,2,0,1,1377,
27630,83,0,69,0, 2817405,18,1,1377,168,
28182,0,1,2492,406,
281918,1,2492,407,20,
2820408,4,22,77,0,
282179,0,78,0,69,
28220,89,0,95,0,
282369,0,86,0,69,
28240,78,0,84,0,
28251,74,1,1,2,
28260,1,1876,409,18,
28271,1876,135,2,0,
28281,2494,410,18,1,
28292494,411,20,412,4,
283036,76,0,73,0,
283178,0,75,0,95,
28320,77,0,69,0,
283383,0,83,0,65,
28340,71,0,69,0,
276495,0,69,0,86, 283595,0,69,0,86,
27650,69,0,78,0, 28360,69,0,78,0,
276684,0,1,68,1, 283784,0,1,72,1,
27671,2,0,1,2495, 28381,2,0,1,2495,
2768412,18,1,2495,413, 2839413,18,1,2495,414,
276920,414,4,22,69, 284020,415,4,52,76,
27700,77,0,65,0, 28410,65,0,78,0,
277173,0,76,0,95, 284268,0,95,0,67,
27720,69,0,86,0,
277369,0,78,0,84,
27740,1,67,1,1,
27752,0,1,1939,415,
277618,1,1939,177,2,
27770,1,2497,416,18,
27781,2497,417,20,418,
27794,26,67,0,79,
27800,78,0,84,0,
278182,0,79,0,76,
27820,95,0,69,0,
278386,0,69,0,78,
27840,84,0,1,65,
27851,1,2,0,1,
2786827,419,18,1,827,
2787177,2,0,1,2499,
2788420,18,1,2499,421,
278920,422,4,38,67,
27900,79,0,76,0, 28430,79,0,76,0,
279176,0,73,0,83, 284476,0,73,0,83,
27920,73,0,79,0, 28450,73,0,79,0,
279378,0,95,0,69, 284678,0,95,0,83,
28470,84,0,65,0,
284882,0,84,0,95,
28490,69,0,86,0,
285069,0,78,0,84,
28510,1,71,1,1,
28522,0,1,1939,416,
285318,1,1939,168,2,
28540,1,2497,417,18,
28551,2497,418,20,419,
28564,40,76,0,65,
27940,78,0,68,0, 28570,78,0,68,0,
285895,0,67,0,79,
28590,76,0,76,0,
286073,0,83,0,73,
28610,79,0,78,0,
279595,0,69,0,86, 286295,0,69,0,86,
27960,69,0,78,0, 28630,69,0,78,0,
279784,0,1,63,1, 286484,0,1,69,1,
27981,2,0,1,2500, 28651,2,0,1,827,
2799423,18,1,2500,424, 2866420,18,1,827,168,
280020,425,4,30,67, 28672,0,1,2499,421,
28010,79,0,76,0, 286818,1,2499,422,20,
280276,0,73,0,83, 2869423,4,22,69,0,
28030,73,0,79,0, 287077,0,65,0,73,
280478,0,95,0,69, 28710,76,0,95,0,
287269,0,86,0,69,
28730,78,0,84,0,
28741,67,1,1,2,
28750,1,2500,424,18,
28761,2500,425,20,426,
28774,32,68,0,65,
28780,84,0,65,0,
287983,0,69,0,82,
28800,86,0,69,0,
288182,0,95,0,69,
28050,86,0,69,0, 28820,86,0,69,0,
280678,0,84,0,1, 288378,0,84,0,1,
280762,1,1,2,0, 288466,1,1,2,0,
28081,2501,426,18,1, 28851,2501,427,18,1,
28092501,427,20,428,4, 28862501,428,20,429,4,
281026,67,0,72,0, 288726,67,0,79,0,
281165,0,78,0,71, 288878,0,84,0,82,
28120,69,0,68,0, 28890,79,0,76,0,
281395,0,69,0,86, 289095,0,69,0,86,
28140,69,0,78,0, 28910,69,0,78,0,
281584,0,1,61,1, 289284,0,1,65,1,
28161,2,0,1,2502, 28931,2,0,1,2502,
2817429,18,1,2502,430, 2894430,18,1,2502,431,
281820,431,4,24,65, 289520,432,4,24,65,
28190,84,0,84,0, 28960,84,0,84,0,
282065,0,67,0,72, 289765,0,67,0,72,
28210,95,0,69,0, 28980,95,0,69,0,
282286,0,69,0,78, 289986,0,69,0,78,
28230,84,0,1,60, 29000,84,0,1,60,
28241,1,2,0,1, 29011,1,2,0,1,
28252503,432,18,1,2503, 29022503,433,18,1,2503,
2826433,20,434,4,30, 2903434,20,435,4,30,
282765,0,84,0,95, 290465,0,84,0,95,
28280,84,0,65,0, 29050,84,0,65,0,
282982,0,71,0,69, 290682,0,71,0,69,
@@ -2831,8 +2908,8 @@ public yyLSLSyntax
283169,0,86,0,69, 290869,0,86,0,69,
28320,78,0,84,0, 29090,78,0,84,0,
28331,59,1,1,2, 29101,59,1,1,2,
28340,1,2504,435,18, 29110,1,2504,436,18,
28351,2504,436,20,437, 29121,2504,437,20,438,
28364,38,65,0,84, 29134,38,65,0,84,
28370,95,0,82,0, 29140,95,0,82,0,
283879,0,84,0,95, 291579,0,84,0,95,
@@ -2842,192 +2919,224 @@ public yyLSLSyntax
284269,0,86,0,69, 291969,0,86,0,69,
28430,78,0,84,0, 29200,78,0,84,0,
28441,58,1,1,2, 29211,58,1,1,2,
28450,1,277,438,18, 29220,1,277,439,18,
28461,277,439,20,440, 29231,277,440,20,441,
28474,10,83,0,76, 29244,10,83,0,76,
28480,65,0,83,0, 29250,65,0,83,0,
284972,0,1,21,1, 292672,0,1,21,1,
28501,2,0,1,2506, 29271,2,0,1,2506,
2851441,18,1,2506,135, 2928442,18,1,2506,135,
28522,0,1,2507,442, 29292,0,1,2507,443,
285318,1,2507,159,2, 293018,1,2507,153,2,
28540,1,2509,443,18, 29310,1,2509,444,18,
28551,2509,342,2,0, 29321,2509,343,2,0,
28561,2510,444,18,1, 29331,2510,445,18,1,
28572510,445,20,446,4, 29342510,446,20,447,4,
285810,69,0,118,0, 293522,73,0,110,0,
2859101,0,110,0,116, 2936116,0,65,0,114,
28600,1,108,1,2, 29370,103,0,69,0,
28612,0,1,283,447, 2938118,0,101,0,110,
286218,1,283,177,2, 29390,116,0,1,112,
28630,1,1958,448,18, 29401,2,2,0,1,
28641,1958,159,2,0, 2941283,448,18,1,283,
28651,1406,449,18,1, 2942168,2,0,1,2512,
28661406,169,2,0,1, 2943449,18,1,2512,126,
28671407,450,18,1,1407, 29442,0,1,2513,450,
2868216,2,0,1,2522, 294518,1,2513,132,2,
2869451,18,1,2522,159, 29460,1,2514,451,18,
28702,0,1,2524,452, 29471,2514,452,20,453,
287118,1,2524,342,2, 29484,28,73,0,110,
28720,1,2526,453,18, 29490,116,0,68,0,
28731,2526,454,20,455, 2950101,0,99,0,108,
28744,18,83,0,116, 29510,97,0,114,0,
28750,97,0,116,0, 295297,0,116,0,105,
2876101,0,66,0,111, 29530,111,0,110,0,
28770,100,0,121,0, 29541,109,1,2,2,
28781,102,1,2,2, 29550,1,1958,454,18,
28790,1,299,456,18, 29561,1958,153,2,0,
28801,299,457,20,458, 29571,2516,455,18,1,
28814,8,83,0,84, 29582516,153,2,0,1,
28820,65,0,82,0, 29592518,456,18,1,2518,
28831,20,1,1,2, 2960343,2,0,1,2519,
28840,1,1370,459,18, 2961457,18,1,2519,458,
28851,1370,169,2,0, 296220,459,4,10,69,
28861,305,460,18,1, 29630,118,0,101,0,
2887305,177,2,0,1, 2964110,0,116,0,1,
28882458,461,18,1,2458, 2965111,1,2,2,0,
2889269,2,0,1,2459, 29661,1406,460,18,1,
2890462,18,1,2459,150, 29671406,160,2,0,1,
28912,0,1,2464,463, 29681407,461,18,1,1407,
289218,1,2464,150,2, 2969207,2,0,1,299,
28930,1,1989,464,18, 2970462,18,1,299,463,
28941,1989,269,2,0, 297120,464,4,8,83,
28951,1990,465,18,1, 29720,84,0,65,0,
28961990,466,20,467,4, 297382,0,1,20,1,
29741,2,0,1,1370,
2975465,18,1,1370,160,
29762,0,1,2529,466,
297718,1,2529,140,2,
29780,1,2531,467,18,
29791,2531,153,2,0,
29801,305,468,18,1,
2981305,168,2,0,1,
29822535,469,18,1,2535,
2983470,20,471,4,18,
298483,0,116,0,97,
29850,116,0,101,0,
298666,0,111,0,100,
29870,121,0,1,102,
29881,2,2,0,1,
29892458,472,18,1,2458,
2990260,2,0,1,2459,
2991473,18,1,2459,323,
29922,0,1,2464,474,
299318,1,2464,323,2,
29940,1,1989,475,18,
29951,1989,260,2,0,
29961,1990,476,18,1,
29971990,477,20,478,4,
28978,69,0,76,0, 29988,69,0,76,0,
289883,0,69,0,1, 299983,0,69,0,1,
289943,1,1,2,0, 300043,1,1,2,0,
29001,2470,468,18,1, 30011,2470,479,18,1,
29012470,162,2,0,1, 30022470,156,2,0,1,
2902322,469,18,1,322, 3003322,480,18,1,322,
2903234,2,0,1,1933, 3004225,2,0,1,1933,
2904470,18,1,1933,135, 3005481,18,1,1933,135,
29052,0,1,883,471, 30062,0,1,883,482,
290618,1,883,177,2, 300718,1,883,168,2,
29070,1,328,472,18, 30080,1,328,483,18,
29081,328,177,2,0, 30091,328,168,2,0,
29091,1443,473,18,1, 30101,1443,484,18,1,
29101443,252,2,0,1, 30111443,240,2,0,1,
29111449,474,18,1,1449, 30121449,485,18,1,1449,
2912177,2,0,1,2485, 3013168,2,0,1,2485,
2913475,18,1,2485,476, 3014486,18,1,2485,487,
291420,477,4,24,79, 301520,488,4,38,67,
29150,78,0,95,0, 30160,79,0,76,0,
291682,0,69,0,90, 301776,0,73,0,83,
29170,95,0,69,0, 30180,73,0,79,0,
291886,0,69,0,78, 301978,0,95,0,69,
29190,84,0,1,81, 30200,78,0,68,0,
29201,1,2,0,1, 302195,0,69,0,86,
29212565,478,18,1,2565, 30220,69,0,78,0,
2922150,2,0,1,2566, 302384,0,1,63,1,
2923479,18,1,2566,480, 30241,2,0,1,2488,
292420,481,4,34,86, 3025489,18,1,2488,490,
29250,111,0,105,0, 302620,491,4,36,72,
2926100,0,65,0,114, 30270,84,0,84,0,
29270,103,0,83,0, 302880,0,95,0,82,
2928116,0,97,0,116, 30290,69,0,81,0,
29290,101,0,69,0, 303085,0,69,0,83,
2930118,0,101,0,110, 30310,84,0,95,0,
29310,116,0,1,104, 303269,0,86,0,69,
29321,2,2,0,1, 30330,78,0,84,0,
29332488,482,18,1,2488, 30341,91,1,1,2,
2934483,20,484,4,22, 30350,1,2489,492,18,
293577,0,79,0,78, 30361,2489,493,20,494,
29360,69,0,89,0, 30374,34,82,0,69,
30380,77,0,79,0,
303984,0,69,0,95,
30400,68,0,65,0,
304184,0,65,0,95,
30420,69,0,86,0,
304369,0,78,0,84,
30440,1,82,1,1,
30452,0,1,2490,495,
304618,1,2490,496,20,
3047497,4,32,79,0,
304866,0,74,0,69,
30490,67,0,84,0,
305095,0,82,0,69,
30510,90,0,95,0,
305269,0,86,0,69,
30530,78,0,84,0,
30541,80,1,1,2,
30550,1,2491,498,18,
30561,2491,499,20,500,
30574,30,78,0,79,
30580,95,0,83,0,
305969,0,78,0,83,
30600,79,0,82,0,
293795,0,69,0,86, 306195,0,69,0,86,
29380,69,0,78,0, 30620,69,0,78,0,
293984,0,1,74,1, 306384,0,1,77,1,
29401,2,0,1,2489, 30641,2,0,1,2493,
2941485,18,1,2489,486, 3065501,18,1,2493,502,
294220,487,4,24,76, 306620,503,4,24,76,
29430,73,0,83,0, 30670,73,0,83,0,
294484,0,69,0,78, 306884,0,69,0,78,
29450,95,0,69,0, 30690,95,0,69,0,
294686,0,69,0,78, 307086,0,69,0,78,
29470,84,0,1,73, 30710,84,0,1,73,
29481,1,2,0,1, 30721,1,2,0,1,
29492490,488,18,1,2490, 30731413,504,18,1,1413,
2950489,20,490,4,36, 3074168,2,0,1,346,
295176,0,73,0,78, 3075505,18,1,346,506,
29520,75,0,95,0, 307620,507,4,8,80,
295377,0,69,0,83, 30770,76,0,85,0,
29540,83,0,65,0, 307883,0,1,18,1,
295571,0,69,0,95, 30791,2,0,1,2575,
29560,69,0,86,0, 3080508,18,1,2575,509,
295769,0,78,0,84, 308120,510,4,20,83,
29580,1,72,1,1, 30820,116,0,97,0,
29592,0,1,2491,491, 3083116,0,101,0,69,
296018,1,2491,492,20, 30840,118,0,101,0,
2961493,4,52,76,0, 3085110,0,116,0,1,
296265,0,78,0,68, 3086103,1,2,2,0,
29630,95,0,67,0, 30871,2496,511,18,1,
296479,0,76,0,76, 30882496,512,20,513,4,
29650,73,0,83,0, 308948,76,0,65,0,
296673,0,79,0,78, 309078,0,68,0,95,
29670,95,0,83,0, 30910,67,0,79,0,
296884,0,65,0,82, 309276,0,76,0,73,
29690,84,0,95,0, 30930,83,0,73,0,
297069,0,86,0,69, 309479,0,78,0,95,
29710,78,0,84,0,
29721,71,1,1,2,
29730,1,2493,494,18,
29741,2493,495,20,496,
29754,40,76,0,65,
29760,78,0,68,0,
297795,0,67,0,79,
29780,76,0,76,0,
297973,0,83,0,73,
29800,79,0,78,0,
298195,0,69,0,86,
29820,69,0,78,0, 30950,69,0,78,0,
298384,0,1,69,1, 309668,0,95,0,69,
29841,2,0,1,1413, 30970,86,0,69,0,
2985497,18,1,1413,177, 309878,0,84,0,1,
29862,0,1,346,498, 309970,1,1,2,0,
298718,1,346,499,20, 31001,2577,514,18,1,
2988500,4,8,80,0, 31012577,515,20,516,4,
298976,0,85,0,83, 310234,86,0,111,0,
29900,1,18,1,1, 3103105,0,100,0,65,
29912,0,1,2496,501, 31040,114,0,103,0,
299218,1,2496,502,20, 310583,0,116,0,97,
2993503,4,32,68,0, 31060,116,0,101,0,
299465,0,84,0,65, 310769,0,118,0,101,
29950,83,0,69,0, 31080,110,0,116,0,
299682,0,86,0,69, 31091,105,1,2,2,
29970,82,0,95,0, 31100,1,2021,517,18,
299869,0,86,0,69, 31111,2021,260,2,0,
29990,78,0,84,0, 31121,2022,518,18,1,
30001,66,1,1,2, 31132022,347,2,0,1,
30010,1,2021,504,18, 3114352,519,18,1,352,
30021,2021,269,2,0, 3115168,2,0,1,2024,
30031,2022,505,18,1, 3116520,18,1,2024,132,
30042022,346,2,0,1, 31172,0,1,2025,521,
3005352,506,18,1,352, 311818,1,2025,522,20,
3006177,2,0,1,2024, 3119523,4,8,74,0,
3007507,18,1,2024,132,
30082,0,1,2025,508,
300918,1,2025,509,20,
3010510,4,8,74,0,
301185,0,77,0,80, 312085,0,77,0,80,
30120,1,49,1,1, 31210,1,49,1,1,
30132,0,1,2026,511, 31222,0,1,2026,524,
301418,1,2026,132,2, 312318,1,2026,132,2,
30150,1,2027,512,18, 31240,1,2027,525,18,
30161,2027,513,20,514, 31251,2027,526,20,527,
30174,4,65,0,84, 31264,4,65,0,84,
30180,1,23,1,1, 31270,1,23,1,1,
30192,0,1,2028,515, 31282,0,1,2028,528,
302018,1,2028,132,2, 312918,1,2028,132,2,
30210,1,2029,516,18, 31300,1,2029,529,18,
30221,2029,342,2,0, 31311,2029,343,2,0,
30231,2030,517,18,1, 31321,2030,530,18,1,
30242030,518,20,519,4, 31332030,531,20,532,4,
302514,70,0,111,0, 313414,70,0,111,0,
3026114,0,76,0,111, 3135114,0,76,0,111,
30270,111,0,112,0, 31360,111,0,112,0,
30281,123,1,2,2, 31371,127,1,2,2,
30290,1,2031,520,18, 31380,1,2031,533,18,
30301,2031,521,20,522, 31391,2031,534,20,535,
30314,32,68,0,111, 31404,32,68,0,111,
30320,87,0,104,0, 31410,87,0,104,0,
3033105,0,108,0,101, 3142105,0,108,0,101,
@@ -3035,241 +3144,244 @@ public yyLSLSyntax
303597,0,116,0,101, 314497,0,116,0,101,
30360,109,0,101,0, 31450,109,0,101,0,
3037110,0,116,0,1, 3146110,0,116,0,1,
3038122,1,2,2,0, 3147126,1,2,2,0,
30391,2032,523,18,1, 31481,2032,536,18,1,
30402032,524,20,525,4, 31492032,537,20,538,4,
304128,87,0,104,0, 315028,87,0,104,0,
3042105,0,108,0,101, 3151105,0,108,0,101,
30430,83,0,116,0, 31520,83,0,116,0,
304497,0,116,0,101, 315397,0,116,0,101,
30450,109,0,101,0, 31540,109,0,101,0,
3046110,0,116,0,1, 3155110,0,116,0,1,
3047121,1,2,2,0, 3156125,1,2,2,0,
30481,2033,526,18,1, 31571,2033,539,18,1,
30492033,527,20,528,4, 31582033,540,20,541,4,
305022,73,0,102,0, 315922,73,0,102,0,
305183,0,116,0,97, 316083,0,116,0,97,
30520,116,0,101,0, 31610,116,0,101,0,
3053109,0,101,0,110, 3162109,0,101,0,110,
30540,116,0,1,120, 31630,116,0,1,124,
30551,2,2,0,1, 31641,2,2,0,1,
30562034,529,18,1,2034, 31652034,542,18,1,2034,
3057530,20,531,4,22, 3166543,20,544,4,22,
305883,0,116,0,97, 316783,0,116,0,97,
30590,116,0,101,0, 31680,116,0,101,0,
306067,0,104,0,97, 316967,0,104,0,97,
30610,110,0,103,0, 31700,110,0,103,0,
3062101,0,1,119,1, 3171101,0,1,123,1,
30632,2,0,1,1478, 31722,2,0,1,1478,
3064532,18,1,1478,169, 3173545,18,1,1478,160,
30652,0,1,1479,533, 31742,0,1,1479,546,
306618,1,1479,285,2, 317518,1,1479,276,2,
30670,1,2037,534,18, 31760,1,2037,547,18,
30681,2037,201,2,0, 31771,2037,192,2,0,
30691,2038,535,18,1, 31781,2038,548,18,1,
30702038,536,20,537,4, 31792038,549,20,550,4,
307118,74,0,117,0, 318018,74,0,117,0,
3072109,0,112,0,76, 3181109,0,112,0,76,
30730,97,0,98,0, 31820,97,0,98,0,
3074101,0,108,0,1, 3183101,0,108,0,1,
3075117,1,2,2,0, 3184121,1,2,2,0,
30761,2039,538,18,1, 31851,2039,551,18,1,
30772039,201,2,0,1, 31862039,192,2,0,1,
30782040,539,18,1,2040, 31872040,552,18,1,2040,
3079540,20,541,4,30, 3188553,20,554,4,30,
308082,0,101,0,116, 318982,0,101,0,116,
30810,117,0,114,0, 31900,117,0,114,0,
3082110,0,83,0,116, 3191110,0,83,0,116,
30830,97,0,116,0, 31920,97,0,116,0,
3084101,0,109,0,101, 3193101,0,109,0,101,
30850,110,0,116,0, 31940,110,0,116,0,
30861,116,1,2,2, 31951,120,1,2,2,
30870,1,2041,542,18, 31960,1,2041,555,18,
30881,2041,201,2,0, 31971,2041,192,2,0,
30891,1485,543,18,1, 31981,1485,556,18,1,
30901485,177,2,0,1, 31991485,168,2,0,1,
3091372,544,18,1,372, 3200372,557,18,1,372,
3092189,2,0,1,373, 3201180,2,0,1,373,
3093545,18,1,373,132, 3202558,18,1,373,132,
30942,0,1,374,546, 32032,0,1,374,559,
309518,1,374,185,2, 320418,1,374,176,2,
30960,1,375,547,18, 32050,1,375,560,18,
30971,375,132,2,0, 32061,375,132,2,0,
30981,376,548,18,1, 32071,376,561,18,1,
3099376,192,2,0,1, 3208376,183,2,0,1,
3100377,549,18,1,377, 3209377,562,18,1,377,
3101132,2,0,1,378, 3210132,2,0,1,378,
3102550,18,1,378,185, 3211563,18,1,378,176,
31032,0,1,379,551, 32122,0,1,379,564,
310418,1,379,132,2, 321318,1,379,132,2,
31050,1,380,552,18, 32140,1,380,565,18,
31061,380,553,20,554, 32151,380,566,20,567,
31074,16,67,0,111, 32164,16,67,0,111,
31080,110,0,115,0, 32170,110,0,115,0,
3109116,0,97,0,110, 3218116,0,97,0,110,
31100,116,0,1,129, 32190,116,0,1,133,
31111,2,2,0,1, 32201,2,2,0,1,
3112381,555,18,1,381, 3221381,568,18,1,381,
3113299,2,0,1,371, 3222290,2,0,1,371,
3114556,18,1,371,557, 3223569,18,1,371,570,
311520,558,4,24,70, 322420,571,4,24,70,
31160,117,0,110,0, 32250,117,0,110,0,
311799,0,116,0,105, 322699,0,116,0,105,
31180,111,0,110,0, 32270,111,0,110,0,
311967,0,97,0,108, 322867,0,97,0,108,
31200,108,0,1,125, 32290,108,0,1,129,
31211,2,2,0,1,
3122942,559,18,1,942,
3123177,2,0,1,387,
3124560,18,1,387,177,
31252,0,1,1514,561,
312618,1,1514,169,2,
31270,1,1515,562,18,
31281,1515,307,2,0,
31291,2606,563,18,1,
31302606,454,2,0,1,
31312074,564,18,1,2074,
3132169,2,0,1,2075,
3133565,18,1,2075,159,
31342,0,1,406,566,
313518,1,406,143,2,
31360,1,1521,567,18,
31371,1521,177,2,0,
31381,412,568,18,1,
3139412,177,2,0,1,
31402484,569,18,1,2484,
3141570,20,571,4,34,
314282,0,69,0,77,
31430,79,0,84,0,
314469,0,95,0,68,
31450,65,0,84,0,
314665,0,95,0,69,
31470,86,0,69,0,
314878,0,84,0,1,
314982,1,1,2,0,
31501,2023,572,18,1,
31512023,573,20,574,4,
315226,68,0,69,0,
315370,0,65,0,85,
31540,76,0,84,0,
315595,0,83,0,84,
31560,65,0,84,0,
315769,0,1,47,1,
31581,2,0,1,2564,
3159575,18,1,2564,576,
316020,577,4,20,83,
31610,116,0,97,0,
3162116,0,101,0,69,
31630,118,0,101,0,
3164110,0,116,0,1,
3165103,1,2,2,0,
31661,2648,578,18,1,
31672648,579,20,580,4,
316812,83,0,116,0,
316997,0,116,0,101,
31700,115,0,1,100,
31711,2,2,0,1, 32301,2,2,0,1,
31722567,581,18,1,2567, 3231942,572,18,1,942,
3173576,2,0,1,1442, 3232168,2,0,1,2533,
3174582,18,1,1442,169, 3233573,18,1,2533,343,
31752,0,1,2569,583, 32342,0,1,387,574,
317618,1,2569,162,2, 323518,1,387,168,2,
31770,1,2652,584,18, 32360,1,2619,575,18,
31781,2652,165,2,0, 32371,2619,470,2,0,
31791,2653,585,18,1, 32381,1514,576,18,1,
31802653,132,2,0,1, 32391514,160,2,0,1,
31812654,586,18,1,2654, 32401515,577,18,1,1515,
3182135,2,0,1,2035, 3241297,2,0,1,2074,
3183587,18,1,2035,201, 3242578,18,1,2074,160,
31842,0,1,2036,588, 32432,0,1,2075,579,
318518,1,2036,589,20, 324418,1,2075,153,2,
3186590,4,26,74,0, 32450,1,406,580,18,
3187117,0,109,0,112, 32461,406,143,2,0,
31880,83,0,116,0, 32471,1521,581,18,1,
318997,0,116,0,101, 32481521,168,2,0,1,
31900,109,0,101,0, 3249412,582,18,1,412,
3191110,0,116,0,1, 3250168,2,0,1,2484,
3192118,1,2,2,0, 3251583,18,1,2484,584,
31931,431,591,18,1, 325220,585,4,42,67,
3194431,143,2,0,1, 32530,79,0,76,0,
31952105,592,18,1,2105, 325476,0,73,0,83,
3196269,2,0,1,2106, 32550,73,0,79,0,
3197593,18,1,2106,466, 325678,0,95,0,83,
31982,0,1,1550,594, 32570,84,0,65,0,
319918,1,1550,169,2, 325882,0,84,0,95,
32000,1,437,595,18, 32590,69,0,86,0,
32011,437,177,2,0, 326069,0,78,0,84,
32021,2044,596,18,1, 32610,1,64,1,1,
32032044,597,20,598,4, 32622,0,1,2023,586,
320428,69,0,109,0, 326318,1,2023,587,20,
3205112,0,116,0,121, 3264588,4,26,68,0,
326569,0,70,0,65,
32660,85,0,76,0,
326784,0,95,0,83,
32680,84,0,65,0,
326984,0,69,0,1,
327047,1,1,2,0,
32711,1442,589,18,1,
32721442,160,2,0,1,
32732573,590,18,1,2573,
3274515,2,0,1,2574,
3275591,18,1,2574,592,
327620,593,4,32,73,
32770,110,0,116,0,
327865,0,114,0,103,
32060,83,0,116,0, 32790,83,0,116,0,
320797,0,116,0,101, 328097,0,116,0,101,
32080,109,0,101,0, 32810,69,0,118,0,
3209110,0,116,0,1, 3282101,0,110,0,116,
3210113,1,2,2,0, 32830,1,104,1,2,
32111,2045,599,18,1, 32842,0,1,2035,594,
32122045,201,2,0,1, 328518,1,2035,192,2,
32131555,600,18,1,1555, 32860,1,2036,595,18,
3214177,2,0,1,2670, 32871,2036,596,20,597,
3215601,18,1,2670,307, 32884,26,74,0,117,
32162,0,1,2511,602, 32890,109,0,112,0,
321718,1,2511,135,2, 329083,0,116,0,97,
32180,1,1001,603,18, 32910,116,0,101,0,
32191,1001,557,2,0, 3292109,0,101,0,110,
32201,1002,604,18,1, 32930,116,0,1,122,
32211002,553,2,0,1, 32941,2,2,0,1,
3222447,605,18,1,447, 3295431,598,18,1,431,
3223316,2,0,1,2676, 3296143,2,0,1,2578,
3224606,18,1,2676,177, 3297599,18,1,2578,592,
32252,0,1,2520,607, 32982,0,1,2579,600,
322618,1,2520,140,2, 329918,1,2579,509,2,
32270,1,1010,608,18, 33000,1,2105,601,18,
32281,1010,169,2,0, 33011,2105,260,2,0,
32291,1011,609,18,1, 33021,2106,602,18,1,
32301011,159,2,0,1, 33032106,477,2,0,1,
32311012,610,18,1,1012, 33041550,603,18,1,1550,
3232177,2,0,1,1013, 3305160,2,0,1,437,
3233611,18,1,1013,159, 3306604,18,1,437,168,
32342,0,1,459,612, 33072,0,1,2044,605,
323518,1,459,613,20, 330818,1,2044,606,20,
3236614,4,24,76,0, 3309607,4,28,69,0,
323769,0,70,0,84, 3310109,0,112,0,116,
32380,95,0,66,0, 33110,121,0,83,0,
323982,0,65,0,67, 3312116,0,97,0,116,
32400,75,0,69,0, 33130,101,0,109,0,
324184,0,1,27,1, 3314101,0,110,0,116,
32421,2,0,1,1574, 33150,1,117,1,2,
3243615,18,1,1574,201, 33162,0,1,2045,608,
32442,0,1,461,616, 331718,1,2045,192,2,
324518,1,461,617,20, 33180,1,2668,609,18,
3246618,4,24,65,0, 33191,2668,610,20,611,
3247114,0,103,0,117, 33204,10,83,0,116,
32480,109,0,101,0, 33210,97,0,116,0,
3249110,0,116,0,76, 3322101,0,1,101,1,
32500,105,0,115,0, 33232,2,0,1,1555,
3251116,0,1,126,1, 3324612,18,1,1555,168,
32522,2,0,1,462, 33252,0,1,2670,613,
3253619,18,1,462,143, 332618,1,2670,135,2,
32542,0,1,464,620, 33270,1,2511,614,18,
325518,1,464,621,20, 33281,2511,135,2,0,
3256622,4,16,65,0, 33291,1001,615,18,1,
3257114,0,103,0,117, 33301001,570,2,0,1,
32580,109,0,101,0, 33311002,616,18,1,1002,
3259110,0,116,0,1, 3332566,2,0,1,447,
3260127,1,2,2,0, 3333617,18,1,447,306,
32611,2136,623,18,1, 33342,0,1,2679,618,
32622136,269,2,0,1, 333518,1,2679,140,2,
32632729,104,1,2695,624, 33360,1,2520,619,18,
326418,1,2695,201,2, 33371,2520,135,2,0,
32650,1,1585,625,18, 33381,1010,620,18,1,
32661,1585,626,20,627, 33391010,160,2,0,1,
33401011,621,18,1,1011,
3341153,2,0,1,1012,
3342622,18,1,1012,168,
33432,0,1,1013,623,
334418,1,1013,153,2,
33450,1,2685,624,18,
33461,2685,150,2,0,
33471,2686,625,18,1,
33482686,297,2,0,1,
3349459,626,18,1,459,
3350627,20,628,4,24,
335176,0,69,0,70,
33520,84,0,95,0,
335366,0,82,0,65,
33540,67,0,75,0,
335569,0,84,0,1,
335627,1,1,2,0,
33571,1574,629,18,1,
33581574,192,2,0,1,
3359461,630,18,1,461,
3360631,20,632,4,24,
336165,0,114,0,103,
33620,117,0,109,0,
3363101,0,110,0,116,
33640,76,0,105,0,
3365115,0,116,0,1,
3366130,1,2,2,0,
33671,462,633,18,1,
3368462,143,2,0,1,
3369464,634,18,1,464,
3370635,20,636,4,16,
337165,0,114,0,103,
33720,117,0,109,0,
3373101,0,110,0,116,
33740,1,131,1,2,
33752,0,1,2136,637,
337618,1,2136,260,2,
33770,1,1585,638,18,
33781,1585,639,20,640,
32674,12,82,0,69, 33794,12,82,0,69,
32680,84,0,85,0, 33800,84,0,85,0,
326982,0,78,0,1, 338182,0,78,0,1,
327050,1,1,2,0, 338250,1,1,2,0,
32711,476,628,18,1, 33831,476,641,18,1,
3272476,629,20,630,4, 3384476,642,20,643,4,
327330,83,0,84,0, 338530,83,0,84,0,
327482,0,73,0,78, 338682,0,73,0,78,
32750,71,0,95,0, 33870,71,0,95,0,
@@ -3277,18 +3389,18 @@ public yyLSLSyntax
32770,83,0,84,0, 33890,83,0,84,0,
327865,0,78,0,84, 339065,0,78,0,84,
32790,1,3,1,1, 33910,1,3,1,1,
32802,0,1,477,631, 33922,0,1,477,644,
328118,1,477,632,20, 339318,1,477,645,20,
3282633,4,28,70,0, 3394646,4,28,70,0,
328376,0,79,0,65, 339576,0,79,0,65,
32840,84,0,95,0, 33960,84,0,95,0,
328567,0,79,0,78, 339767,0,79,0,78,
32860,83,0,84,0, 33980,83,0,84,0,
328765,0,78,0,84, 339965,0,78,0,84,
32880,1,95,1,1, 34000,1,95,1,1,
32892,0,1,478,634, 34012,0,1,478,647,
329018,1,478,635,20, 340218,1,478,648,20,
3291636,4,40,72,0, 3403649,4,40,72,0,
329269,0,88,0,95, 340469,0,88,0,95,
32930,73,0,78,0, 34050,73,0,78,0,
329484,0,69,0,71, 340684,0,69,0,71,
@@ -3298,8 +3410,8 @@ public yyLSLSyntax
329884,0,65,0,78, 341084,0,65,0,78,
32990,84,0,1,94, 34110,84,0,1,94,
33001,1,2,0,1, 34121,1,2,0,1,
3301479,637,18,1,479, 3413479,650,18,1,479,
3302638,20,639,4,32, 3414651,20,652,4,32,
330373,0,78,0,84, 341573,0,78,0,84,
33040,69,0,71,0, 34160,69,0,71,0,
330569,0,82,0,95, 341769,0,82,0,95,
@@ -3308,1159 +3420,1128 @@ public yyLSLSyntax
33080,65,0,78,0, 34200,65,0,78,0,
330984,0,1,93,1, 342184,0,1,93,1,
33101,2,0,1,480, 34221,2,0,1,480,
3311640,18,1,480,641, 3423653,18,1,480,654,
331220,642,4,26,82, 342420,655,4,26,82,
33130,73,0,71,0, 34250,73,0,71,0,
331472,0,84,0,95, 342672,0,84,0,95,
33150,66,0,82,0, 34270,66,0,82,0,
331665,0,67,0,75, 342865,0,67,0,75,
33170,69,0,84,0, 34290,69,0,84,0,
33181,28,1,1,2, 34301,28,1,1,2,
33190,1,481,643,18, 34310,1,481,656,18,
33201,481,621,2,0, 34321,481,635,2,0,
33211,2718,644,18,1, 34331,2711,657,18,1,
33222718,579,2,0,1, 34342711,192,2,0,1,
33231048,645,18,1,1048, 34351048,658,18,1,1048,
3324177,2,0,1,2725, 3436168,2,0,1,2722,
3325646,18,1,2725,153, 3437659,18,1,2722,192,
33262,0,1,2726,647, 34382,0,1,2723,660,
332718,1,2726,648,20, 343918,1,2723,661,20,
3328649,4,50,71,0, 3440662,4,34,71,0,
3329108,0,111,0,98, 3441108,0,111,0,98,
33300,97,0,108,0, 34420,97,0,108,0,
333186,0,97,0,114, 344368,0,101,0,102,
33320,105,0,97,0, 34440,105,0,110,0,
333398,0,108,0,101, 3445105,0,116,0,105,
33340,68,0,101,0, 34460,111,0,110,0,
333599,0,108,0,97, 3447115,0,1,97,1,
33360,114,0,97,0, 34482,2,0,1,2042,
3337116,0,105,0,111, 3449663,18,1,2042,664,
33380,110,0,1,98, 345020,665,4,20,65,
33391,2,2,0,1, 34510,115,0,115,0,
33402563,650,18,1,2563, 3452105,0,103,0,110,
3341480,2,0,1,2728, 34530,109,0,101,0,
3342651,18,1,2728,648, 3454110,0,116,0,1,
33432,0,1,2042,652, 3455118,1,2,2,0,
334418,1,2042,653,20, 34561,2043,666,18,1,
3345654,4,20,65,0, 34572043,192,2,0,1,
3346115,0,115,0,105, 34581620,667,18,1,1620,
33470,103,0,110,0, 3459160,2,0,1,1621,
3348109,0,101,0,110, 3460668,18,1,1621,150,
33490,116,0,1,114, 34612,0,1,1622,669,
33501,2,2,0,1, 346218,1,1622,297,2,
33512043,655,18,1,2043, 34630,1,509,670,18,
3352201,2,0,1,2568, 34641,509,143,2,0,
3353656,18,1,2568,573, 34651,2498,671,18,1,
33542,0,1,1620,657, 34662498,672,20,673,4,
335518,1,1620,169,2, 346738,72,0,84,0,
33560,1,1621,658,18, 346884,0,80,0,95,
33571,1621,156,2,0, 34690,82,0,69,0,
33581,1622,659,18,1, 347083,0,80,0,79,
33591622,307,2,0,1, 34710,78,0,83,0,
3360509,660,18,1,509, 347269,0,95,0,69,
3361143,2,0,1,2498, 34730,86,0,69,0,
3362661,18,1,2498,662, 347478,0,84,0,1,
336320,663,4,42,67, 347568,1,1,2,0,
33640,79,0,76,0, 34761,2576,674,18,1,
336576,0,73,0,83, 34772576,323,2,0,1,
33660,73,0,79,0, 34782741,675,18,1,2741,
336778,0,95,0,83, 3479330,2,0,1,1628,
33680,84,0,65,0, 3480676,18,1,1628,168,
336982,0,84,0,95, 34812,0,1,515,677,
33700,69,0,86,0, 348218,1,515,168,2,
337169,0,78,0,84, 34830,1,2580,678,18,
33720,1,64,1,1, 34841,2580,587,2,0,
33732,0,1,1628,664, 34851,2505,679,18,1,
337418,1,1628,177,2, 34862505,680,20,681,4,
33750,1,515,665,18,
33761,515,177,2,0,
33771,2505,666,18,1,
33782505,667,20,668,4,
337924,86,0,111,0, 348724,86,0,111,0,
3380105,0,100,0,65, 3488105,0,100,0,65,
33810,114,0,103,0, 34890,114,0,103,0,
338269,0,118,0,101, 349069,0,118,0,101,
33830,110,0,116,0, 34910,110,0,116,0,
33841,109,1,2,2, 34921,113,1,2,2,
33850,1,2663,669,18, 34930,1,2746,682,18,
33861,2663,140,2,0, 34941,2746,683,23,684,
33871,2665,670,18,1, 34954,6,69,0,79,
33882665,159,2,0,1, 34960,70,0,1,2,
33892667,671,18,1,2667, 34971,6,2,0,1,
3390342,2,0,1,525, 34982664,685,18,1,2664,
3391672,18,1,525,316, 3499250,2,0,1,2667,
33922,0,1,2197,673, 3500686,18,1,2667,610,
339318,1,2197,169,2, 35012,0,1,525,687,
33940,1,2198,674,18, 350218,1,525,306,2,
33951,2198,159,2,0, 35030,1,2197,688,18,
33961,1591,675,18,1, 35041,2197,160,2,0,
33971591,177,2,0,1, 35051,2198,689,18,1,
33981094,676,18,1,1094, 35062198,153,2,0,1,
3399617,2,0,1,1096, 35071591,690,18,1,1591,
3400677,18,1,1096,159, 3508168,2,0,1,1094,
34012,0,1,1657,678, 3509691,18,1,1094,631,
340218,1,1657,201,2, 35102,0,1,2681,692,
34030,1,1658,679,18, 351118,1,2681,153,2,
34041,1658,680,20,681, 35120,1,1096,693,18,
34054,6,70,0,79, 35131,1096,153,2,0,
34060,82,0,1,46, 35141,2683,694,18,1,
34071,1,2,0,1, 35152683,343,2,0,1,
34081659,682,18,1,1659, 35161657,695,18,1,1657,
3409135,2,0,1,1665, 3517192,2,0,1,1658,
3410683,18,1,1665,177, 3518696,18,1,1658,697,
34112,0,1,1113,684, 351920,698,4,6,70,
341218,1,1113,185,2, 35200,79,0,82,0,
34130,685,5,0,686, 35211,46,1,1,2,
34145,329,1,2,687, 35220,1,1659,699,18,
341519,262,1,2,688, 35231,1659,135,2,0,
34165,6,1,2651,689, 35241,2692,700,18,1,
341717,690,15,691,4, 35252692,168,2,0,1,
341814,37,0,83,0, 35261665,701,18,1,1665,
3419116,0,97,0,116, 3527168,2,0,1,1113,
34200,101,0,115,0, 3528702,18,1,1113,176,
34211,-1,1,5,692, 35292,0,703,5,0,
342220,693,4,16,83, 3530704,5,338,1,2,
3531705,19,684,1,2,
3532706,5,6,1,2668,
3533707,17,708,15,709,
35344,14,37,0,83,
34230,116,0,97,0, 35350,116,0,97,0,
3424116,0,101,0,115, 3536116,0,101,0,115,
34250,95,0,50,0, 35370,1,-1,1,5,
34261,155,1,3,1, 3538710,20,711,4,16,
34273,1,2,694,22, 353983,0,116,0,97,
34281,12,1,2652,695, 35400,116,0,101,0,
342917,696,15,691,1, 3541115,0,95,0,49,
3430-1,1,5,697,20, 35420,1,158,1,3,
3431698,4,16,83,0, 35431,2,1,1,712,
3432116,0,97,0,116, 354422,1,11,1,2576,
34330,101,0,115,0, 3545713,17,714,15,715,
343495,0,49,0,1, 35464,12,37,0,83,
3435154,1,3,1,2, 35470,116,0,97,0,
34361,1,699,22,1, 3548116,0,101,0,1,
343711,1,2565,700,17, 3549-1,1,5,716,20,
3438701,15,702,4,12, 3550717,4,14,83,0,
343937,0,83,0,116,
34400,97,0,116,0,
3441101,0,1,-1,1,
34425,703,20,704,4,
344314,83,0,116,0,
344497,0,116,0,101,
34450,95,0,50,0,
34461,157,1,3,1,
34476,1,5,705,22,
34481,14,1,2645,706,
344917,707,15,702,1,
3450-1,1,5,708,20,
3451709,4,14,83,0,
3452116,0,97,0,116, 3551116,0,97,0,116,
34530,101,0,95,0, 35520,101,0,95,0,
345449,0,1,156,1, 355350,0,1,161,1,
34553,1,5,1,4, 35543,1,6,1,5,
3456710,22,1,13,1, 3555718,22,1,14,1,
34572718,711,17,712,15, 35562667,719,17,720,15,
3458713,4,30,37,0, 3557709,1,-1,1,5,
345976,0,83,0,76, 3558721,20,722,4,16,
34600,80,0,114,0,
3461111,0,103,0,114,
34620,97,0,109,0,
346382,0,111,0,111,
34640,116,0,1,-1,
34651,5,714,20,715,
34664,32,76,0,83,
34670,76,0,80,0,
3468114,0,111,0,103,
34690,114,0,97,0,
3470109,0,82,0,111,
34710,111,0,116,0,
347295,0,49,0,1,
3473144,1,3,1,3,
34741,2,716,22,1,
34751,1,2648,717,17,
3476718,15,713,1,-1,
34771,5,719,20,720,
34784,32,76,0,83,
34790,76,0,80,0,
3480114,0,111,0,103,
34810,114,0,97,0,
3482109,0,82,0,111,
34830,111,0,116,0,
348495,0,50,0,1,
3485145,1,3,1,2,
34861,1,721,22,1,
34872,1,3,722,19,
3488630,1,3,723,5,
348995,1,256,724,16,
34900,628,1,1261,725,
349116,0,628,1,509,
3492726,16,0,628,1,
34931515,727,16,0,628,
34941,2021,728,17,729,
349515,730,4,24,37,
34960,73,0,102,0,
349783,0,116,0,97, 355983,0,116,0,97,
34980,116,0,101,0, 35600,116,0,101,0,
3499109,0,101,0,110, 3561115,0,95,0,50,
35000,116,0,1,-1, 35620,1,159,1,3,
35011,5,731,20,732, 35631,3,1,2,723,
35024,26,73,0,102, 356422,1,12,1,2734,
35030,83,0,116,0, 3565724,17,725,15,726,
35664,30,37,0,76,
35670,83,0,76,0,
356880,0,114,0,111,
35690,103,0,114,0,
357097,0,109,0,82,
35710,111,0,111,0,
3572116,0,1,-1,1,
35735,727,20,728,4,
357432,76,0,83,0,
357576,0,80,0,114,
35760,111,0,103,0,
3577114,0,97,0,109,
35780,82,0,111,0,
3579111,0,116,0,95,
35800,49,0,1,148,
35811,3,1,3,1,
35822,729,22,1,1,
35831,2664,730,17,731,
358415,726,1,-1,1,
35855,732,20,733,4,
358632,76,0,83,0,
358776,0,80,0,114,
35880,111,0,103,0,
3589114,0,97,0,109,
35900,82,0,111,0,
3591111,0,116,0,95,
35920,50,0,1,149,
35931,3,1,2,1,
35941,734,22,1,2,
35951,2660,735,17,736,
359615,715,1,-1,1,
35975,737,20,738,4,
359814,83,0,116,0,
350497,0,116,0,101, 359997,0,116,0,101,
35050,109,0,101,0, 36000,95,0,49,0,
3506110,0,116,0,95, 36011,160,1,3,1,
35070,50,0,1,190, 36025,1,4,739,22,
35081,3,1,8,1, 36031,13,1,3,740,
35097,733,22,1,48, 360419,643,1,3,741,
35101,1775,734,16,0, 36055,95,1,256,742,
3511628,1,2029,735,17, 360616,0,641,1,1261,
3512736,15,737,4,20, 3607743,16,0,641,1,
351337,0,83,0,116, 3608509,744,16,0,641,
36091,1515,745,16,0,
3610641,1,2686,746,16,
36110,641,1,2021,747,
361217,748,15,749,4,
361324,37,0,73,0,
3614102,0,83,0,116,
35140,97,0,116,0, 36150,97,0,116,0,
3515101,0,109,0,101, 3616101,0,109,0,101,
35160,110,0,116,0, 36170,110,0,116,0,
35171,-1,1,5,738, 36181,-1,1,5,750,
351820,739,4,24,83, 361920,751,4,26,73,
36200,102,0,83,0,
3621116,0,97,0,116,
36220,101,0,109,0,
3623101,0,110,0,116,
36240,95,0,50,0,
36251,199,1,3,1,
36268,1,7,752,22,
36271,53,1,1775,753,
362816,0,641,1,2029,
3629754,17,755,15,756,
36304,20,37,0,83,
35190,116,0,97,0, 36310,116,0,97,0,
3520116,0,101,0,109, 3632116,0,101,0,109,
35210,101,0,110,0, 36330,101,0,110,0,
3522116,0,95,0,49, 3634116,0,1,-1,1,
35230,51,0,1,184, 36355,757,20,758,4,
35241,3,1,2,1,
35251,740,22,1,42,
35261,2030,741,17,742,
352715,737,1,-1,1,
35285,743,20,744,4,
352924,83,0,116,0, 363624,83,0,116,0,
353097,0,116,0,101, 363797,0,116,0,101,
35310,109,0,101,0, 36380,109,0,101,0,
3532110,0,116,0,95, 3639110,0,116,0,95,
35330,49,0,50,0, 36400,49,0,51,0,
35341,183,1,3,1, 36411,193,1,3,1,
35352,1,1,745,22, 36422,1,1,759,22,
35361,41,1,2031,746, 36431,47,1,2030,760,
353717,747,15,737,1, 364417,761,15,756,1,
3538-1,1,5,748,20, 3645-1,1,5,762,20,
3539749,4,24,83,0, 3646763,4,24,83,0,
3540116,0,97,0,116, 3647116,0,97,0,116,
35410,101,0,109,0, 36480,101,0,109,0,
3542101,0,110,0,116, 3649101,0,110,0,116,
35430,95,0,49,0, 36500,95,0,49,0,
354449,0,1,182,1, 365150,0,1,192,1,
35453,1,2,1,1, 36523,1,2,1,1,
3546750,22,1,40,1, 3653764,22,1,46,1,
35472032,751,17,752,15, 36542031,765,17,766,15,
3548737,1,-1,1,5, 3655756,1,-1,1,5,
3549753,20,754,4,24, 3656767,20,768,4,24,
355083,0,116,0,97, 365783,0,116,0,97,
35510,116,0,101,0, 36580,116,0,101,0,
3552109,0,101,0,110, 3659109,0,101,0,110,
35530,116,0,95,0, 36600,116,0,95,0,
355449,0,48,0,1, 366149,0,49,0,1,
3555181,1,3,1,2, 3662191,1,3,1,2,
35561,1,755,22,1, 36631,1,769,22,1,
355739,1,2033,756,17, 366445,1,2032,770,17,
3558757,15,737,1,-1, 3665771,15,756,1,-1,
35591,5,758,20,759, 36661,5,772,20,773,
35604,22,83,0,116, 36674,24,83,0,116,
35610,97,0,116,0, 36680,97,0,116,0,
3562101,0,109,0,101, 3669101,0,109,0,101,
35630,110,0,116,0, 36700,110,0,116,0,
356495,0,57,0,1, 367195,0,49,0,48,
3565180,1,3,1,2, 36720,1,190,1,3,
35661,1,760,22,1, 36731,2,1,1,774,
356738,1,277,761,16, 367422,1,44,1,2033,
35680,628,1,2035,762, 3675775,17,776,15,756,
356917,763,15,737,1, 36761,-1,1,5,777,
3570-1,1,5,764,20, 367720,778,4,22,83,
3571765,4,22,83,0,
3572116,0,97,0,116,
35730,101,0,109,0,
3574101,0,110,0,116,
35750,95,0,56,0,
35761,179,1,3,1,
35773,1,2,766,22,
35781,37,1,2037,767,
357917,768,15,737,1,
3580-1,1,5,769,20,
3581770,4,22,83,0,
3582116,0,97,0,116,
35830,101,0,109,0,
3584101,0,110,0,116,
35850,95,0,55,0,
35861,178,1,3,1,
35873,1,2,771,22,
35881,36,1,2039,772,
358917,773,15,737,1,
3590-1,1,5,774,20,
3591775,4,22,83,0,
3592116,0,97,0,116,
35930,101,0,109,0,
3594101,0,110,0,116,
35950,95,0,54,0,
35961,177,1,3,1,
35973,1,2,776,22,
35981,35,1,32,777,
359916,0,628,1,2041,
3600778,17,779,15,737,
36011,-1,1,5,780,
360220,781,4,22,83,
36030,116,0,97,0, 36780,116,0,97,0,
3604116,0,101,0,109, 3679116,0,101,0,109,
36050,101,0,110,0, 36800,101,0,110,0,
3606116,0,95,0,53, 3681116,0,95,0,57,
36070,1,176,1,3, 36820,1,189,1,3,
36081,3,1,2,782, 36831,2,1,1,779,
360922,1,34,1,2293, 368422,1,43,1,277,
3610783,16,0,628,1, 3685780,16,0,641,1,
36112043,784,17,785,15, 36862035,781,17,782,15,
3612737,1,-1,1,5, 3687756,1,-1,1,5,
3613786,20,787,4,22, 3688783,20,784,4,22,
368983,0,116,0,97,
36900,116,0,101,0,
3691109,0,101,0,110,
36920,116,0,95,0,
369356,0,1,188,1,
36943,1,3,1,2,
3695785,22,1,42,1,
36962037,786,17,787,15,
3697756,1,-1,1,5,
3698788,20,789,4,22,
361483,0,116,0,97, 369983,0,116,0,97,
36150,116,0,101,0, 37000,116,0,101,0,
3616109,0,101,0,110, 3701109,0,101,0,110,
36170,116,0,95,0, 37020,116,0,95,0,
361851,0,1,174,1, 370355,0,1,187,1,
36193,1,3,1,2, 37043,1,3,1,2,
3620788,22,1,32,1, 3705790,22,1,41,1,
36212045,789,17,790,15, 37062039,791,17,792,15,
3622737,1,-1,1,5, 3707756,1,-1,1,5,
3623791,20,792,4,22, 3708793,20,794,4,22,
362483,0,116,0,97, 370983,0,116,0,97,
36250,116,0,101,0, 37100,116,0,101,0,
3626109,0,101,0,110, 3711109,0,101,0,110,
36270,116,0,95,0, 37120,116,0,95,0,
362849,0,1,172,1, 371354,0,1,186,1,
36293,1,3,1,2, 37143,1,3,1,2,
3630793,22,1,30,1, 3715795,22,1,40,1,
363141,794,16,0,628, 371632,796,16,0,641,
36321,1297,795,16,0, 37171,2041,797,17,798,
3633628,1,43,796,16, 371815,756,1,-1,1,
36340,628,1,1803,797, 37195,799,20,800,4,
363517,798,15,799,4, 372022,83,0,116,0,
363616,37,0,70,0, 372197,0,116,0,101,
37220,109,0,101,0,
3723110,0,116,0,95,
37240,53,0,1,185,
37251,3,1,3,1,
37262,801,22,1,39,
37271,2293,802,16,0,
3728641,1,2043,803,17,
3729804,15,756,1,-1,
37301,5,805,20,806,
37314,22,83,0,116,
37320,97,0,116,0,
3733101,0,109,0,101,
37340,110,0,116,0,
373595,0,51,0,1,
3736183,1,3,1,3,
37371,2,807,22,1,
373837,1,2045,808,17,
3739809,15,756,1,-1,
37401,5,810,20,811,
37414,22,83,0,116,
37420,97,0,116,0,
3743101,0,109,0,101,
37440,110,0,116,0,
374595,0,49,0,1,
3746181,1,3,1,3,
37471,2,812,22,1,
374835,1,41,813,16,
37490,641,1,1297,814,
375016,0,641,1,43,
3751815,16,0,641,1,
37521803,816,17,817,15,
3753818,4,16,37,0,
375470,0,111,0,114,
37550,76,0,111,0,
3756111,0,112,0,1,
3757-1,1,5,819,20,
3758820,4,18,70,0,
3637111,0,114,0,76, 3759111,0,114,0,76,
36380,111,0,111,0, 37600,111,0,111,0,
3639112,0,1,-1,1, 3761112,0,95,0,49,
36405,800,20,801,4, 37620,1,206,1,3,
37631,10,1,9,821,
376422,1,60,1,1804,
3765822,16,0,641,1,
3766299,823,16,0,641,
37671,52,824,16,0,
3768641,1,2318,825,16,
37690,641,1,62,826,
377016,0,641,1,2075,
3771827,16,0,641,1,
37721574,828,17,829,15,
3773756,1,-1,1,5,
3774830,20,831,4,22,
377583,0,116,0,97,
37760,116,0,101,0,
3777109,0,101,0,110,
37780,116,0,95,0,
377952,0,1,184,1,
37803,1,3,1,2,
3781832,22,1,38,1,
378271,833,16,0,641,
37831,76,834,16,0,
3784641,1,1834,835,16,
37850,641,1,2337,836,
378616,0,641,1,79,
3787837,16,0,641,1,
37881335,838,16,0,641,
37891,322,839,16,0,
3790641,1,85,840,16,
37910,641,1,89,841,
379216,0,641,1,346,
3793842,16,0,641,1,
37942105,843,17,844,15,
3795749,1,-1,1,5,
3796845,20,846,4,26,
379773,0,102,0,83,
37980,116,0,97,0,
3799116,0,101,0,109,
38000,101,0,110,0,
3801116,0,95,0,51,
38020,1,200,1,3,
38031,6,1,5,847,
380422,1,54,1,2106,
3805848,16,0,641,1,
380697,849,16,0,641,
38071,1860,850,17,851,
380815,852,4,34,37,
38090,68,0,111,0,
381087,0,104,0,105,
38110,108,0,101,0,
381283,0,116,0,97,
38130,116,0,101,0,
3814109,0,101,0,110,
38150,116,0,1,-1,
38161,5,853,20,854,
38174,36,68,0,111,
38180,87,0,104,0,
3819105,0,108,0,101,
38200,83,0,116,0,
382197,0,116,0,101,
38220,109,0,101,0,
3823110,0,116,0,95,
38240,49,0,1,204,
38251,3,1,8,1,
38267,855,22,1,58,
38271,2364,856,17,857,
382815,818,1,-1,1,
38295,858,20,859,4,
364118,70,0,111,0, 383018,70,0,111,0,
3642114,0,76,0,111, 3831114,0,76,0,111,
36430,111,0,112,0, 38320,111,0,112,0,
364495,0,49,0,1, 383395,0,50,0,1,
3645197,1,3,1,10, 3834207,1,3,1,9,
36461,9,802,22,1, 38351,8,860,22,1,
364755,1,1804,803,16, 383661,1,102,861,16,
36480,628,1,299,804, 38370,641,1,112,862,
364916,0,628,1,52, 383816,0,641,1,1117,
3650805,16,0,628,1, 3839863,16,0,641,1,
36512318,806,16,0,628, 38401873,864,17,865,15,
36521,62,807,16,0, 3841852,1,-1,1,5,
3653628,1,2075,808,16, 3842866,20,867,4,36,
36540,628,1,1574,809, 384368,0,111,0,87,
365517,810,15,737,1, 38440,104,0,105,0,
3656-1,1,5,811,20, 3845108,0,101,0,83,
3657812,4,22,83,0, 38460,116,0,97,0,
3658116,0,97,0,116, 3847116,0,101,0,109,
36590,101,0,109,0, 38480,101,0,110,0,
3660101,0,110,0,116, 3849116,0,95,0,50,
36610,95,0,52,0, 38500,1,205,1,3,
36621,175,1,3,1, 38511,8,1,7,868,
36633,1,2,813,22, 385222,1,59,1,1876,
36641,33,1,71,814, 3853869,16,0,641,1,
366516,0,628,1,76, 3854124,870,16,0,641,
3666815,16,0,628,1, 38551,2136,871,17,872,
36671834,816,16,0,628, 385615,749,1,-1,1,
36681,2337,817,16,0, 38575,873,20,874,4,
3669628,1,79,818,16, 385826,73,0,102,0,
36700,628,1,1335,819, 385983,0,116,0,97,
367116,0,628,1,322, 38600,116,0,101,0,
3672820,16,0,628,1, 3861109,0,101,0,110,
367385,821,16,0,628, 38620,116,0,95,0,
36741,89,822,16,0, 386352,0,1,201,1,
3675628,1,346,823,16, 38643,1,8,1,7,
36760,628,1,2105,824, 3865875,22,1,55,1,
367717,825,15,730,1, 3866381,876,16,0,641,
3678-1,1,5,826,20, 38671,525,877,16,0,
3679827,4,26,73,0, 3868641,1,137,878,16,
3680102,0,83,0,116, 38690,641,1,1901,879,
36810,97,0,116,0, 387016,0,641,1,1153,
3682101,0,109,0,101, 3871880,16,0,641,1,
36830,110,0,116,0, 3872151,881,16,0,641,
368495,0,51,0,1, 38731,1407,882,16,0,
3685191,1,3,1,6, 3874641,1,1659,883,16,
36861,5,828,22,1, 38750,641,1,2413,884,
368749,1,2106,829,16, 387616,0,641,1,406,
36880,628,1,97,830, 3877885,16,0,641,1,
368916,0,628,1,1860, 38781371,886,16,0,641,
3690831,17,832,15,833, 38791,166,887,16,0,
36914,34,37,0,68, 3880641,1,1622,888,16,
36920,111,0,87,0, 38810,641,1,1931,889,
388217,890,15,891,4,
388330,37,0,87,0,
3693104,0,105,0,108, 3884104,0,105,0,108,
36940,101,0,83,0, 38850,101,0,83,0,
3695116,0,97,0,116, 3886116,0,97,0,116,
36960,101,0,109,0, 38870,101,0,109,0,
3697101,0,110,0,116, 3888101,0,110,0,116,
36980,1,-1,1,5, 38890,1,-1,1,5,
3699834,20,835,4,36, 3890892,20,893,4,32,
370068,0,111,0,87, 389187,0,104,0,105,
37010,104,0,105,0, 38920,108,0,101,0,
3702108,0,101,0,83, 389383,0,116,0,97,
38940,116,0,101,0,
3895109,0,101,0,110,
38960,116,0,95,0,
389749,0,1,202,1,
38983,1,6,1,5,
3899894,22,1,56,1,
39001933,895,16,0,641,
39011,431,896,16,0,
3902641,1,1585,897,16,
39030,641,1,182,898,
390416,0,641,1,1189,
3905899,16,0,641,1,
39061443,900,16,0,641,
39071,1695,901,16,0,
3908641,1,2198,902,16,
39090,641,1,447,903,
391016,0,641,1,2458,
3911904,17,905,15,906,
39124,28,37,0,83,
37030,116,0,97,0, 39130,116,0,97,0,
3704116,0,101,0,109, 3914116,0,101,0,109,
37050,101,0,110,0, 39150,101,0,110,0,
3706116,0,95,0,49, 3916116,0,76,0,105,
37070,1,195,1,3, 39170,115,0,116,0,
37081,8,1,7,836, 39181,-1,1,5,907,
370922,1,53,1,2364, 391920,908,4,30,83,
3710837,17,838,15,799, 39200,116,0,97,0,
37111,-1,1,5,839, 3921116,0,101,0,109,
371220,840,4,18,70, 39220,101,0,110,0,
37130,111,0,114,0, 3923116,0,76,0,105,
371476,0,111,0,111, 39240,115,0,116,0,
37150,112,0,95,0,
371650,0,1,198,1,
37173,1,9,1,8,
3718841,22,1,56,1,
3719102,842,16,0,628,
37201,112,843,16,0,
3721628,1,1117,844,16,
37220,628,1,1873,845,
372317,846,15,833,1,
3724-1,1,5,847,20,
3725848,4,36,68,0,
3726111,0,87,0,104,
37270,105,0,108,0,
3728101,0,83,0,116,
37290,97,0,116,0,
3730101,0,109,0,101,
37310,110,0,116,0,
373295,0,50,0,1, 392595,0,50,0,1,
3733196,1,3,1,8, 3926179,1,3,1,3,
37341,7,849,22,1, 39271,2,909,22,1,
373554,1,1876,850,16, 392833,1,2459,910,17,
37360,628,1,124,851, 3929911,15,912,4,36,
373716,0,628,1,2136, 393037,0,67,0,111,
3738852,17,853,15,730, 39310,109,0,112,0,
37391,-1,1,5,854, 3932111,0,117,0,110,
374020,855,4,26,73, 39330,100,0,83,0,
37410,102,0,83,0,
3742116,0,97,0,116, 3934116,0,97,0,116,
37430,101,0,109,0, 39350,101,0,109,0,
3744101,0,110,0,116, 3936101,0,110,0,116,
37450,95,0,52,0, 39370,1,-1,1,5,
37461,192,1,3,1, 3938913,20,914,4,38,
37478,1,7,856,22, 393967,0,111,0,109,
37481,50,1,381,857, 39400,112,0,111,0,
374916,0,628,1,525, 3941117,0,110,0,100,
3750858,16,0,628,1,
3751137,859,16,0,628,
37521,1901,860,16,0,
3753628,1,1153,861,16,
37540,628,1,151,862,
375516,0,628,1,1407,
3756863,16,0,628,1,
37571659,864,16,0,628,
37581,2413,865,16,0,
3759628,1,406,866,16,
37600,628,1,1371,867,
376116,0,628,1,166,
3762868,16,0,628,1,
37631622,869,16,0,628,
37641,1931,870,17,871,
376515,872,4,30,37,
37660,87,0,104,0,
3767105,0,108,0,101,
37680,83,0,116,0, 39420,83,0,116,0,
376997,0,116,0,101, 394397,0,116,0,101,
37700,109,0,101,0, 39440,109,0,101,0,
3771110,0,116,0,1, 3945110,0,116,0,95,
3772-1,1,5,873,20, 39460,50,0,1,177,
3773874,4,32,87,0, 39471,3,1,4,1,
3774104,0,105,0,108, 39483,915,22,1,31,
37750,101,0,83,0, 39491,1958,916,16,0,
3776116,0,97,0,116, 3950641,1,2462,917,17,
37770,101,0,109,0, 3951918,15,906,1,-1,
3778101,0,110,0,116, 39521,5,919,20,920,
37790,95,0,49,0,
37801,193,1,3,1,
37816,1,5,875,22,
37821,51,1,1933,876,
378316,0,628,1,431,
3784877,16,0,628,1,
37851585,878,16,0,628,
37861,182,879,16,0,
3787628,1,1189,880,16,
37880,628,1,1443,881,
378916,0,628,1,1695,
3790882,16,0,628,1,
37912198,883,16,0,628,
37921,447,884,16,0,
3793628,1,2458,885,17,
3794886,15,887,4,28,
379537,0,83,0,116,
37960,97,0,116,0,
3797101,0,109,0,101,
37980,110,0,116,0,
379976,0,105,0,115,
38000,116,0,1,-1,
38011,5,888,20,889,
38024,30,83,0,116, 39534,30,83,0,116,
38030,97,0,116,0, 39540,97,0,116,0,
3804101,0,109,0,101, 3955101,0,109,0,101,
38050,110,0,116,0, 39560,110,0,116,0,
380676,0,105,0,115, 395776,0,105,0,115,
38070,116,0,95,0, 39580,116,0,95,0,
380850,0,1,170,1, 395949,0,1,178,1,
39603,1,2,1,1,
3961921,22,1,32,1,
39621657,922,17,923,15,
3963756,1,-1,1,5,
3964924,20,925,4,22,
396583,0,116,0,97,
39660,116,0,101,0,
3967109,0,101,0,110,
39680,116,0,95,0,
396950,0,1,182,1,
38093,1,3,1,2, 39703,1,3,1,2,
3810890,22,1,28,1, 3971926,22,1,36,1,
38112459,891,17,892,15, 39722464,927,17,928,15,
3812893,4,36,37,0, 3973912,1,-1,1,5,
3974929,20,930,4,38,
381367,0,111,0,109, 397567,0,111,0,109,
38140,112,0,111,0, 39760,112,0,111,0,
3815117,0,110,0,100, 3977117,0,110,0,100,
38160,83,0,116,0, 39780,83,0,116,0,
381797,0,116,0,101, 397997,0,116,0,101,
38180,109,0,101,0, 39800,109,0,101,0,
3819110,0,116,0,1, 3981110,0,116,0,95,
3820-1,1,5,894,20, 39820,49,0,1,176,
3821895,4,38,67,0, 39831,3,1,3,1,
3822111,0,109,0,112, 39842,931,22,1,30,
38230,111,0,117,0, 39851,199,932,16,0,
3824110,0,100,0,83, 3986641,1,459,933,16,
38250,116,0,97,0, 39870,641,1,462,934,
3826116,0,101,0,109, 398816,0,641,1,217,
38270,101,0,110,0, 3989935,16,0,641,1,
3828116,0,95,0,50, 39902227,936,17,937,15,
38290,1,168,1,3, 3991891,1,-1,1,5,
38301,4,1,3,896, 3992938,20,939,4,32,
383122,1,26,1,1958, 399387,0,104,0,105,
3832897,16,0,628,1, 39940,108,0,101,0,
38332462,898,17,899,15,
3834887,1,-1,1,5,
3835900,20,901,4,30,
383683,0,116,0,97,
38370,116,0,101,0,
3838109,0,101,0,110,
38390,116,0,76,0,
3840105,0,115,0,116,
38410,95,0,49,0,
38421,169,1,3,1,
38432,1,1,902,22,
38441,27,1,1657,903,
384517,904,15,737,1,
3846-1,1,5,905,20,
3847906,4,22,83,0,
3848116,0,97,0,116,
38490,101,0,109,0,
3850101,0,110,0,116,
38510,95,0,50,0,
38521,173,1,3,1,
38533,1,2,907,22,
38541,31,1,2464,908,
385517,909,15,893,1,
3856-1,1,5,910,20,
3857911,4,38,67,0,
3858111,0,109,0,112,
38590,111,0,117,0,
3860110,0,100,0,83,
38610,116,0,97,0,
3862116,0,101,0,109,
38630,101,0,110,0,
3864116,0,95,0,49,
38650,1,167,1,3,
38661,3,1,2,912,
386722,1,25,1,199,
3868913,16,0,628,1,
3869459,914,16,0,628,
38701,462,915,16,0,
3871628,1,217,916,16,
38720,628,1,2227,917,
387317,918,15,872,1,
3874-1,1,5,919,20,
3875920,4,32,87,0,
3876104,0,105,0,108,
38770,101,0,83,0,
3878116,0,97,0,116,
38790,101,0,109,0,
3880101,0,110,0,116,
38810,95,0,50,0,
38821,194,1,3,1,
38836,1,5,921,22,
38841,52,1,1225,922,
388516,0,628,1,1479,
3886923,16,0,628,1,
38871731,924,16,0,628,
38881,1989,925,17,926,
388915,730,1,-1,1,
38905,927,20,928,4,
389126,73,0,102,0,
389283,0,116,0,97, 399583,0,116,0,97,
38930,116,0,101,0, 39960,116,0,101,0,
3894109,0,101,0,110, 3997109,0,101,0,110,
38950,116,0,95,0, 39980,116,0,95,0,
389649,0,1,189,1, 399950,0,1,203,1,
38973,1,6,1,5, 40003,1,6,1,5,
3898929,22,1,47,1, 4001940,22,1,57,1,
38991990,930,16,0,628, 40021225,941,16,0,641,
39001,236,931,16,0, 40031,1479,942,16,0,
3901628,1,2670,932,16, 4004641,1,1731,943,16,
39020,628,1,1756,933, 40050,641,1,1989,944,
390316,0,628,1,4, 400617,945,15,749,1,
3904934,19,193,1,4, 4007-1,1,5,946,20,
3905935,5,100,1,256, 4008947,4,26,73,0,
3906936,16,0,548,1, 4009102,0,83,0,116,
39071261,937,16,0,548, 40100,97,0,116,0,
39081,509,938,16,0, 4011101,0,109,0,101,
3909548,1,1515,939,16, 40120,110,0,116,0,
39100,548,1,2021,728, 401395,0,49,0,1,
39111,1775,940,16,0, 4014198,1,3,1,6,
3912548,1,2029,735,1, 40151,5,948,22,1,
39132030,741,1,2031,746, 401652,1,1990,949,16,
39141,2032,751,1,2033, 40170,641,1,236,950,
3915756,1,277,941,16, 401816,0,641,1,1756,
39160,548,1,2035,762, 4019951,16,0,641,1,
39171,2037,767,1,2039, 40204,952,19,184,1,
3918772,1,32,942,16, 40214,953,5,100,1,
39190,548,1,2041,778, 4022256,954,16,0,561,
39201,2293,943,16,0, 40231,1261,955,16,0,
3921548,1,2043,784,1, 4024561,1,509,956,16,
39222045,789,1,40,944, 40250,561,1,1515,957,
392316,0,195,1,41, 402616,0,561,1,2686,
3924945,16,0,548,1, 4027958,16,0,561,1,
39251297,946,16,0,548, 40282021,747,1,1775,959,
39261,43,947,16,0, 402916,0,561,1,2029,
3927548,1,44,948,16, 4030754,1,2030,760,1,
39280,195,1,1803,797, 40312031,765,1,2032,770,
39291,1804,949,16,0, 40321,2033,775,1,277,
3930548,1,299,950,16, 4033960,16,0,561,1,
39310,548,1,47,951, 40342035,781,1,2037,786,
393216,0,191,1,52, 40351,2039,791,1,32,
3933952,16,0,548,1, 4036961,16,0,561,1,
39342318,953,16,0,548, 40372041,797,1,2293,962,
39351,63,954,16,0, 403816,0,561,1,2043,
3936211,1,66,955,16, 4039803,1,2045,808,1,
39370,209,1,2075,956, 404040,963,16,0,186,
393816,0,548,1,1574, 40411,41,964,16,0,
3939809,1,71,957,16, 4042561,1,1297,965,16,
39400,548,1,76,958, 40430,561,1,43,966,
394116,0,548,1,1834, 404416,0,561,1,44,
3942959,16,0,548,1, 4045967,16,0,186,1,
39432337,960,16,0,548, 40461803,816,1,1804,968,
39441,79,961,16,0, 404716,0,561,1,299,
3945548,1,1335,962,16, 4048969,16,0,561,1,
39460,548,1,322,963, 404947,970,16,0,182,
394716,0,548,1,85, 40501,52,971,16,0,
3948964,16,0,548,1, 4051561,1,2318,972,16,
394989,965,16,0,548, 40520,561,1,63,973,
39501,346,966,16,0, 405316,0,202,1,66,
3951548,1,97,967,16, 4054974,16,0,200,1,
39520,548,1,2106,968, 40552075,975,16,0,561,
395316,0,548,1,102, 40561,1574,828,1,71,
3954969,16,0,548,1, 4057976,16,0,561,1,
39551860,831,1,2364,837, 405876,977,16,0,561,
39561,1114,970,16,0, 40591,1834,978,16,0,
3957191,1,112,971,16, 4060561,1,2337,979,16,
39580,548,1,1117,972, 40610,561,1,79,980,
395916,0,548,1,1873, 406216,0,561,1,1335,
3960845,1,1876,973,16, 4063981,16,0,561,1,
39610,548,1,124,974, 4064322,982,16,0,561,
396216,0,548,1,2136, 40651,85,983,16,0,
3963852,1,381,975,16, 4066561,1,89,984,16,
39640,548,1,525,976, 40670,561,1,346,985,
396516,0,548,1,137, 406816,0,561,1,97,
3966977,16,0,548,1, 4069986,16,0,561,1,
39671901,978,16,0,548, 40702106,987,16,0,561,
39681,1153,979,16,0, 40711,102,988,16,0,
3969548,1,151,980,16, 4072561,1,1860,850,1,
39700,548,1,1407,981, 40732364,856,1,1114,989,
397116,0,548,1,1659, 407416,0,182,1,112,
3972982,16,0,548,1, 4075990,16,0,561,1,
39732413,983,16,0,548, 40761117,991,16,0,561,
39741,406,984,16,0, 40771,1873,864,1,1876,
3975548,1,1371,985,16, 4078992,16,0,561,1,
39760,548,1,2105,824, 4079124,993,16,0,561,
39771,166,986,16,0, 40801,2136,871,1,381,
3978548,1,1622,987,16, 4081994,16,0,561,1,
39790,548,1,1931,870, 4082525,995,16,0,561,
39801,1933,988,16,0, 40831,137,996,16,0,
3981548,1,431,989,16, 4084561,1,1901,997,16,
39820,548,1,1585,990, 40850,561,1,1153,998,
398316,0,548,1,182, 408616,0,561,1,151,
3984991,16,0,548,1, 4087999,16,0,561,1,
39851189,992,16,0,548, 40881407,1000,16,0,561,
39861,1443,993,16,0, 40891,1659,1001,16,0,
3987548,1,1695,994,16, 4090561,1,2413,1002,16,
39880,548,1,2198,995, 40910,561,1,406,1003,
398916,0,548,1,447, 409216,0,561,1,1371,
3990996,16,0,548,1, 40931004,16,0,561,1,
39912458,885,1,2459,891, 40942105,843,1,166,1005,
39921,1958,997,16,0, 409516,0,561,1,1622,
3993548,1,2462,898,1, 40961006,16,0,561,1,
39941657,903,1,2464,908, 40971931,889,1,1933,1007,
39951,199,998,16,0, 409816,0,561,1,431,
3996548,1,459,999,16, 40991008,16,0,561,1,
39970,548,1,462,1000, 41001585,1009,16,0,561,
399816,0,548,1,217, 41011,182,1010,16,0,
39991001,16,0,548,1, 4102561,1,1189,1011,16,
40002227,917,1,1225,1002, 41030,561,1,1443,1012,
400116,0,548,1,1479, 410416,0,561,1,1695,
40021003,16,0,548,1, 41051013,16,0,561,1,
40031731,1004,16,0,548, 41062198,1014,16,0,561,
40041,1989,925,1,1990, 41071,447,1015,16,0,
40051005,16,0,548,1, 4108561,1,2458,904,1,
4006236,1006,16,0,548, 41092459,910,1,1958,1016,
40071,2670,1007,16,0, 411016,0,561,1,2462,
4008548,1,1756,1008,16, 4111917,1,1657,922,1,
40090,548,1,5,1009, 41122464,927,1,199,1017,
401019,190,1,5,1010, 411316,0,561,1,459,
40115,100,1,256,1011, 41141018,16,0,561,1,
401216,0,544,1,1261, 4115462,1019,16,0,561,
40131012,16,0,544,1, 41161,217,1020,16,0,
4014509,1013,16,0,544, 4117561,1,2227,936,1,
40151,1515,1014,16,0, 41181225,1021,16,0,561,
4016544,1,2021,728,1, 41191,1479,1022,16,0,
40171775,1015,16,0,544, 4120561,1,1731,1023,16,
40181,2029,735,1,2030, 41210,561,1,1989,944,
4019741,1,2031,746,1, 41221,1990,1024,16,0,
40202032,751,1,2033,756, 4123561,1,236,1025,16,
40211,277,1016,16,0, 41240,561,1,1756,1026,
4022544,1,2035,762,1, 412516,0,561,1,5,
40232037,767,1,2039,772, 41261027,19,181,1,5,
40241,32,1017,16,0, 41271028,5,100,1,256,
4025544,1,2041,778,1, 41281029,16,0,557,1,
40262293,1018,16,0,544, 41291261,1030,16,0,557,
40271,2043,784,1,2045, 41301,509,1031,16,0,
4028789,1,40,1019,16, 4131557,1,1515,1032,16,
40290,194,1,41,1020, 41320,557,1,2686,1033,
403016,0,544,1,1297, 413316,0,557,1,2021,
40311021,16,0,544,1, 4134747,1,1775,1034,16,
403243,1022,16,0,544, 41350,557,1,2029,754,
40331,44,1023,16,0, 41361,2030,760,1,2031,
4034194,1,1803,797,1, 4137765,1,2032,770,1,
40351804,1024,16,0,544, 41382033,775,1,277,1035,
40361,299,1025,16,0, 413916,0,557,1,2035,
4037544,1,47,1026,16, 4140781,1,2037,786,1,
40380,188,1,52,1027, 41412039,791,1,32,1036,
403916,0,544,1,2318, 414216,0,557,1,2041,
40401028,16,0,544,1, 4143797,1,2293,1037,16,
404163,1029,16,0,210, 41440,557,1,2043,803,
40421,66,1030,16,0, 41451,2045,808,1,40,
4043208,1,2075,1031,16, 41461038,16,0,185,1,
40440,544,1,1574,809, 414741,1039,16,0,557,
40451,71,1032,16,0, 41481,1297,1040,16,0,
4046544,1,76,1033,16, 4149557,1,43,1041,16,
40470,544,1,1834,1034, 41500,557,1,44,1042,
404816,0,544,1,2337, 415116,0,185,1,1803,
40491035,16,0,544,1, 4152816,1,1804,1043,16,
405079,1036,16,0,544, 41530,557,1,299,1044,
40511,1335,1037,16,0, 415416,0,557,1,47,
4052544,1,322,1038,16, 41551045,16,0,179,1,
40530,544,1,85,1039, 415652,1046,16,0,557,
405416,0,544,1,89, 41571,2318,1047,16,0,
40551040,16,0,544,1, 4158557,1,63,1048,16,
4056346,1041,16,0,544, 41590,201,1,66,1049,
40571,97,1042,16,0, 416016,0,199,1,2075,
4058544,1,2106,1043,16, 41611050,16,0,557,1,
40590,544,1,102,1044, 41621574,828,1,71,1051,
406016,0,544,1,1860, 416316,0,557,1,76,
4061831,1,2364,837,1, 41641052,16,0,557,1,
40621114,1045,16,0,188, 41651834,1053,16,0,557,
40631,112,1046,16,0, 41661,2337,1054,16,0,
4064544,1,1117,1047,16, 4167557,1,79,1055,16,
40650,544,1,1873,845, 41680,557,1,1335,1056,
40661,1876,1048,16,0, 416916,0,557,1,322,
4067544,1,124,1049,16, 41701057,16,0,557,1,
40680,544,1,2136,852, 417185,1058,16,0,557,
40691,381,1050,16,0, 41721,89,1059,16,0,
4070544,1,525,1051,16, 4173557,1,346,1060,16,
40710,544,1,137,1052, 41740,557,1,97,1061,
407216,0,544,1,1901, 417516,0,557,1,2106,
40731053,16,0,544,1, 41761062,16,0,557,1,
40741153,1054,16,0,544, 4177102,1063,16,0,557,
40751,151,1055,16,0, 41781,1860,850,1,2364,
4076544,1,1407,1056,16, 4179856,1,1114,1064,16,
40770,544,1,1659,1057, 41800,179,1,112,1065,
407816,0,544,1,2413, 418116,0,557,1,1117,
40791058,16,0,544,1, 41821066,16,0,557,1,
4080406,1059,16,0,544, 41831873,864,1,1876,1067,
40811,1371,1060,16,0, 418416,0,557,1,124,
4082544,1,2105,824,1, 41851068,16,0,557,1,
4083166,1061,16,0,544, 41862136,871,1,381,1069,
40841,1622,1062,16,0, 418716,0,557,1,525,
4085544,1,1931,870,1, 41881070,16,0,557,1,
40861933,1063,16,0,544, 4189137,1071,16,0,557,
40871,431,1064,16,0, 41901,1901,1072,16,0,
4088544,1,1585,1065,16, 4191557,1,1153,1073,16,
40890,544,1,182,1066, 41920,557,1,151,1074,
409016,0,544,1,1189, 419316,0,557,1,1407,
40911067,16,0,544,1, 41941075,16,0,557,1,
40921443,1068,16,0,544, 41951659,1076,16,0,557,
40931,1695,1069,16,0, 41961,2413,1077,16,0,
4094544,1,2198,1070,16, 4197557,1,406,1078,16,
40950,544,1,447,1071, 41980,557,1,1371,1079,
409616,0,544,1,2458, 419916,0,557,1,2105,
4097885,1,2459,891,1, 4200843,1,166,1080,16,
40981958,1072,16,0,544, 42010,557,1,1622,1081,
40991,2462,898,1,1657, 420216,0,557,1,1931,
4100903,1,2464,908,1, 4203889,1,1933,1082,16,
4101199,1073,16,0,544, 42040,557,1,431,1083,
41021,459,1074,16,0, 420516,0,557,1,1585,
4103544,1,462,1075,16, 42061084,16,0,557,1,
41040,544,1,217,1076, 4207182,1085,16,0,557,
410516,0,544,1,2227, 42081,1189,1086,16,0,
4106917,1,1225,1077,16, 4209557,1,1443,1087,16,
41070,544,1,1479,1078, 42100,557,1,1695,1088,
410816,0,544,1,1731, 421116,0,557,1,2198,
41091079,16,0,544,1, 42121089,16,0,557,1,
41101989,925,1,1990,1080, 4213447,1090,16,0,557,
411116,0,544,1,236, 42141,2458,904,1,2459,
41121081,16,0,544,1, 4215910,1,1958,1091,16,
41132670,1082,16,0,544, 42160,557,1,2462,917,
41141,1756,1083,16,0, 42171,1657,922,1,2464,
4115544,1,6,1084,19, 4218927,1,199,1092,16,
4116286,1,6,1085,5, 42190,557,1,459,1093,
41172,1,1114,1086,16, 422016,0,557,1,462,
41180,284,1,40,1087, 42211094,16,0,557,1,
411916,0,533,1,7, 4222217,1095,16,0,557,
41201088,19,253,1,7, 42231,2227,936,1,1225,
41211089,5,2,1,1114, 42241096,16,0,557,1,
41221090,16,0,251,1, 42251479,1097,16,0,557,
412340,1091,16,0,473, 42261,1731,1098,16,0,
41241,8,1092,19,217, 4227557,1,1989,944,1,
41251,8,1093,5,2, 42281990,1099,16,0,557,
41261,1114,1094,16,0, 42291,236,1100,16,0,
4127215,1,40,1095,16, 4230557,1,1756,1101,16,
41280,450,1,9,1096, 42310,557,1,6,1102,
412919,223,1,9,1097, 423219,277,1,6,1103,
41305,2,1,1114,1098, 42335,2,1,1114,1104,
413116,0,221,1,40, 423416,0,275,1,40,
41321099,16,0,392,1, 42351105,16,0,546,1,
413310,1100,19,173,1, 42367,1106,19,241,1,
413410,1101,5,2,1, 42377,1107,5,2,1,
41351114,1102,16,0,171, 42381114,1108,16,0,239,
41361,40,1103,16,0, 42391,40,1109,16,0,
4137332,1,11,1104,19, 4240484,1,8,1110,19,
4138202,1,11,1105,5, 4241208,1,8,1111,5,
4139146,1,1260,1106,17, 42422,1,1114,1112,16,
41401107,15,1108,4,34, 42430,206,1,40,1113,
414137,0,83,0,105, 424416,0,461,1,9,
41420,109,0,112,0, 42451114,19,214,1,9,
4143108,0,101,0,65, 42461115,5,2,1,1114,
41440,115,0,115,0, 42471116,16,0,212,1,
4145105,0,103,0,110, 424840,1117,16,0,393,
41460,109,0,101,0, 42491,10,1118,19,164,
4147110,0,116,0,1, 42501,10,1119,5,2,
4148-1,1,5,1109,20, 42511,1114,1120,16,0,
41491110,4,38,83,0, 4252162,1,40,1121,16,
42530,333,1,11,1122,
425419,193,1,11,1123,
42555,146,1,1260,1124,
425617,1125,15,1126,4,
425734,37,0,83,0,
4150105,0,109,0,112, 4258105,0,109,0,112,
41510,108,0,101,0, 42590,108,0,101,0,
415265,0,115,0,115, 426065,0,115,0,115,
41530,105,0,103,0, 42610,105,0,103,0,
4154110,0,109,0,101, 4262110,0,109,0,101,
41550,110,0,116,0, 42630,110,0,116,0,
415695,0,50,0,49, 42641,-1,1,5,1127,
41570,1,225,1,3, 426520,1128,4,38,83,
41581,6,1,5,1111,
415922,1,83,1,1011,
41601112,17,1113,15,1114,
41614,44,37,0,80,
41620,97,0,114,0,
4163101,0,110,0,116,
41640,104,0,101,0,
4165115,0,105,0,115,
41660,69,0,120,0,
4167112,0,114,0,101,
41680,115,0,115,0,
4169105,0,111,0,110,
41700,1,-1,1,5,
41711115,20,1116,4,46,
417280,0,97,0,114,
41730,101,0,110,0,
4174116,0,104,0,101,
41750,115,0,105,0,
4176115,0,69,0,120,
41770,112,0,114,0,
4178101,0,115,0,115,
41790,105,0,111,0,
4180110,0,95,0,50,
41810,1,272,1,3,
41821,4,1,3,1117,
418322,1,130,1,1514,
41841118,17,1119,15,1108,
41851,-1,1,5,1120,
418620,1121,4,38,83,
41870,105,0,109,0, 42660,105,0,109,0,
4188112,0,108,0,101, 4267112,0,108,0,101,
41890,65,0,115,0, 42680,65,0,115,0,
4190115,0,105,0,103, 4269115,0,105,0,103,
41910,110,0,109,0, 42700,110,0,109,0,
4192101,0,110,0,116, 4271101,0,110,0,116,
41930,95,0,49,0, 42720,95,0,50,0,
419452,0,1,218,1, 427349,0,1,234,1,
41953,1,4,1,3, 42743,1,6,1,5,
41961122,22,1,76,1, 42751129,22,1,88,1,
41979,1123,17,1124,15, 42761011,1130,17,1131,15,
41981125,4,24,37,0, 42771132,4,44,37,0,
419968,0,101,0,99, 427880,0,97,0,114,
42000,108,0,97,0, 42790,101,0,110,0,
4201114,0,97,0,116, 4280116,0,104,0,101,
42020,105,0,111,0, 42810,115,0,105,0,
4203110,0,1,-1,1, 4282115,0,69,0,120,
42045,1126,20,1127,4,
420526,68,0,101,0,
420699,0,108,0,97,
42070,114,0,97,0,
4208116,0,105,0,111,
42090,110,0,95,0,
421049,0,1,166,1,
42113,1,3,1,2,
42121128,22,1,24,1,
4213262,1129,17,1130,15,
42141131,4,34,37,0,
421566,0,105,0,110,
42160,97,0,114,0,
4217121,0,69,0,120,
42180,112,0,114,0, 42830,112,0,114,0,
4219101,0,115,0,115, 4284101,0,115,0,115,
42200,105,0,111,0, 42850,105,0,111,0,
4221110,0,1,-1,1, 4286110,0,1,-1,1,
42225,1132,20,1133,4, 42875,1133,20,1134,4,
422336,66,0,105,0, 428846,80,0,97,0,
4224110,0,97,0,114, 4289114,0,101,0,110,
42250,121,0,69,0, 42900,116,0,104,0,
4291101,0,115,0,105,
42920,115,0,69,0,
4226120,0,112,0,114, 4293120,0,112,0,114,
42270,101,0,115,0, 42940,101,0,115,0,
4228115,0,105,0,111, 4295115,0,105,0,111,
42290,110,0,95,0, 42960,110,0,95,0,
423053,0,1,254,1, 429750,0,1,281,1,
42313,1,4,1,3, 42983,1,4,1,3,
42321134,22,1,112,1, 42991135,22,1,135,1,
42331267,1135,17,1136,15, 43001514,1136,17,1137,15,
42341108,1,-1,1,5, 43011126,1,-1,1,5,
42351137,20,1138,4,36, 43021138,20,1139,4,38,
423683,0,105,0,109, 430383,0,105,0,109,
42370,112,0,108,0, 43040,112,0,108,0,
4238101,0,65,0,115, 4305101,0,65,0,115,
42390,115,0,105,0, 43060,115,0,105,0,
4240103,0,110,0,109, 4307103,0,110,0,109,
42410,101,0,110,0, 43080,101,0,110,0,
4242116,0,95,0,56, 4309116,0,95,0,49,
42430,1,212,1,3, 43100,52,0,1,227,
42441,6,1,5,1139,
424522,1,70,1,2021,
4246728,1,1521,1140,17,
42471141,15,1108,1,-1,
42481,5,1142,20,1143,
42494,36,83,0,105,
42500,109,0,112,0,
4251108,0,101,0,65,
42520,115,0,115,0,
4253105,0,103,0,110,
42540,109,0,101,0,
4255110,0,116,0,95,
42560,49,0,1,205,
42571,3,1,4,1, 43111,3,1,4,1,
42583,1144,22,1,63, 43123,1140,22,1,81,
42591,2024,1145,17,1146, 43131,9,1141,17,1142,
426015,1147,4,24,37, 431415,1143,4,24,37,
42610,83,0,116,0, 43150,68,0,101,0,
426297,0,116,0,101, 431699,0,108,0,97,
42630,67,0,104,0, 43170,114,0,97,0,
426497,0,110,0,103, 4318116,0,105,0,111,
42650,101,0,1,-1, 43190,110,0,1,-1,
42661,5,1148,20,1149, 43201,5,1144,20,1145,
42674,26,83,0,116, 43214,26,68,0,101,
43220,99,0,108,0,
432397,0,114,0,97,
43240,116,0,105,0,
4325111,0,110,0,95,
43260,49,0,1,175,
43271,3,1,3,1,
43282,1146,22,1,29,
43291,262,1147,17,1148,
433015,1149,4,34,37,
43310,66,0,105,0,
4332110,0,97,0,114,
43330,121,0,69,0,
4334120,0,112,0,114,
43350,101,0,115,0,
4336115,0,105,0,111,
43370,110,0,1,-1,
43381,5,1150,20,1151,
43394,36,66,0,105,
43400,110,0,97,0,
4341114,0,121,0,69,
43420,120,0,112,0,
4343114,0,101,0,115,
43440,115,0,105,0,
4345111,0,110,0,95,
43460,53,0,1,263,
43471,3,1,4,1,
43483,1152,22,1,117,
43491,1267,1153,17,1154,
435015,1126,1,-1,1,
43515,1155,20,1156,4,
435236,83,0,105,0,
4353109,0,112,0,108,
43540,101,0,65,0,
4355115,0,115,0,105,
43560,103,0,110,0,
4357109,0,101,0,110,
43580,116,0,95,0,
435956,0,1,221,1,
43603,1,6,1,5,
43611157,22,1,75,1,
43622021,747,1,1521,1158,
436317,1159,15,1126,1,
4364-1,1,5,1160,20,
43651161,4,36,83,0,
4366105,0,109,0,112,
43670,108,0,101,0,
436865,0,115,0,115,
43690,105,0,103,0,
4370110,0,109,0,101,
43710,110,0,116,0,
437295,0,49,0,1,
4373214,1,3,1,4,
43741,3,1162,22,1,
437568,1,2024,1163,17,
43761164,15,1165,4,24,
437737,0,83,0,116,
42680,97,0,116,0, 43780,97,0,116,0,
4269101,0,67,0,104, 4379101,0,67,0,104,
42700,97,0,110,0, 43800,97,0,110,0,
4271103,0,101,0,95, 4381103,0,101,0,1,
42720,49,0,1,187, 4382-1,1,5,1166,20,
42731,3,1,3,1, 43831167,4,26,83,0,
42742,1150,22,1,45,
42751,1775,1151,17,1152,
427615,1153,4,30,37,
42770,69,0,109,0,
4278112,0,116,0,121,
42790,83,0,116,0,
428097,0,116,0,101,
42810,109,0,101,0,
4282110,0,116,0,1,
4283-1,1,5,1154,20,
42841155,4,32,69,0,
4285109,0,112,0,116,
42860,121,0,83,0,
4287116,0,97,0,116, 4384116,0,97,0,116,
42880,101,0,109,0, 43850,101,0,67,0,
4289101,0,110,0,116, 4386104,0,97,0,110,
42900,95,0,49,0, 43870,103,0,101,0,
42911,171,1,3,1, 438895,0,49,0,1,
42921,1,0,1156,22, 4389196,1,3,1,3,
42931,29,1,19,1157, 43901,2,1168,22,1,
429417,1124,1,2,1128, 439150,1,1775,1169,17,
42951,2028,1158,17,1159, 43921170,15,1171,4,30,
429615,1160,4,20,37, 439337,0,69,0,109,
42970,74,0,117,0, 43940,112,0,116,0,
4298109,0,112,0,76, 4395121,0,83,0,116,
42990,97,0,98,0, 43960,97,0,116,0,
4300101,0,108,0,1, 4397101,0,109,0,101,
4301-1,1,5,1161,20, 43980,110,0,116,0,
43021162,4,22,74,0, 43991,-1,1,5,1172,
4303117,0,109,0,112, 440020,1173,4,32,69,
43040,76,0,97,0, 44010,109,0,112,0,
430598,0,101,0,108, 4402116,0,121,0,83,
43060,95,0,49,0, 44030,116,0,97,0,
43071,185,1,3,1, 4404116,0,101,0,109,
43083,1,2,1163,22, 44050,101,0,110,0,
43091,43,1,2029,735, 4406116,0,95,0,49,
43101,2281,1164,17,1165, 44070,1,180,1,3,
431115,1166,4,34,37, 44081,1,1,0,1174,
43120,70,0,111,0, 440922,1,34,1,19,
4313114,0,76,0,111, 44101175,17,1142,1,2,
43140,111,0,112,0, 44111146,1,2028,1176,17,
431583,0,116,0,97, 44121177,15,1178,4,20,
43160,116,0,101,0, 441337,0,74,0,117,
4317109,0,101,0,110, 44140,109,0,112,0,
43180,116,0,1,-1, 441576,0,97,0,98,
43191,5,1167,20,1168, 44160,101,0,108,0,
43204,36,70,0,111, 44171,-1,1,5,1179,
441820,1180,4,22,74,
44190,117,0,109,0,
4420112,0,76,0,97,
44210,98,0,101,0,
4422108,0,95,0,49,
44230,1,194,1,3,
44241,3,1,2,1181,
442522,1,48,1,2029,
4426754,1,2281,1182,17,
44271183,15,1184,4,34,
442837,0,70,0,111,
43210,114,0,76,0, 44290,114,0,76,0,
4322111,0,111,0,112, 4430111,0,111,0,112,
43230,83,0,116,0, 44310,83,0,116,0,
432497,0,116,0,101, 443297,0,116,0,101,
43250,109,0,101,0, 44330,109,0,101,0,
4326110,0,116,0,95, 4434110,0,116,0,1,
43270,50,0,1,200, 4435-1,1,5,1185,20,
43281,3,1,2,1, 44361186,4,36,70,0,
43291,1169,22,1,58, 4437111,0,114,0,76,
43301,2031,746,1,2032, 44380,111,0,111,0,
4331751,1,2033,756,1, 4439112,0,83,0,116,
43322034,1170,16,0,587, 44400,97,0,116,0,
43331,2035,762,1,2036, 4441101,0,109,0,101,
43341171,16,0,534,1, 44420,110,0,116,0,
43352037,767,1,2038,1172, 444395,0,50,0,1,
433616,0,538,1,2039, 4444209,1,3,1,2,
4337772,1,32,1173,17, 44451,1,1187,22,1,
43381152,1,0,1156,1, 444663,1,2031,765,1,
43392041,778,1,2042,1174, 44472032,770,1,2033,775,
434016,0,655,1,2043, 44481,2034,1188,16,0,
4341784,1,2044,1175,16, 4449594,1,2035,781,1,
43420,599,1,2045,789, 44502036,1189,16,0,547,
43431,2299,1176,16,0, 44511,2037,786,1,2038,
4344236,1,1296,1177,17, 44521190,16,0,551,1,
43451178,15,1108,1,-1, 44532039,791,1,32,1191,
43461,5,1179,20,1180, 445417,1170,1,0,1174,
43474,38,83,0,105, 44551,2041,797,1,2042,
43480,109,0,112,0, 44561192,16,0,666,1,
4349108,0,101,0,65, 44572043,803,1,2044,1193,
445816,0,608,1,2045,
4459808,1,2299,1194,16,
44600,227,1,1296,1195,
446117,1196,15,1126,1,
4462-1,1,5,1197,20,
44631198,4,38,83,0,
4464105,0,109,0,112,
44650,108,0,101,0,
446665,0,115,0,115,
44670,105,0,103,0,
4468110,0,109,0,101,
44690,110,0,116,0,
447095,0,50,0,48,
44710,1,233,1,3,
44721,6,1,5,1199,
447322,1,87,1,283,
44741200,17,1201,15,1149,
44751,-1,1,5,1202,
447620,1203,4,36,66,
44770,105,0,110,0,
447897,0,114,0,121,
44790,69,0,120,0,
4480112,0,114,0,101,
43500,115,0,115,0, 44810,115,0,115,0,
4351105,0,103,0,110, 4482105,0,111,0,110,
43520,109,0,101,0, 44830,95,0,52,0,
4353110,0,116,0,95, 44841,262,1,3,1,
43540,50,0,48,0, 44854,1,3,1204,22,
43551,224,1,3,1, 44861,116,1,40,1205,
43566,1,5,1181,22, 448717,1206,15,1207,4,
43571,82,1,283,1182, 448832,37,0,73,0,
435817,1183,15,1131,1, 4489100,0,101,0,110,
4359-1,1,5,1184,20, 44900,116,0,69,0,
43601185,4,36,66,0, 4491120,0,112,0,114,
4361105,0,110,0,97, 44920,101,0,115,0,
43620,114,0,121,0, 4493115,0,105,0,111,
436369,0,120,0,112, 44940,110,0,1,-1,
43640,114,0,101,0, 44951,5,1208,20,1209,
4365115,0,115,0,105, 44964,34,73,0,100,
43660,111,0,110,0,
436795,0,52,0,1,
4368253,1,3,1,4,
43691,3,1186,22,1,
4370111,1,40,1187,17,
43711188,15,1189,4,32,
437237,0,73,0,100,
43730,101,0,110,0, 44970,101,0,110,0,
4374116,0,69,0,120, 4498116,0,69,0,120,
43750,112,0,114,0, 44990,112,0,114,0,
4376101,0,115,0,115, 4500101,0,115,0,115,
43770,105,0,111,0, 45010,105,0,111,0,
4378110,0,1,-1,1, 4502110,0,95,0,49,
43795,1190,20,1191,4, 45030,1,248,1,3,
438034,73,0,100,0, 45041,2,1,1,1210,
4381101,0,110,0,116, 450522,1,102,1,44,
45061211,17,1206,1,1,
45071210,1,1803,816,1,
450847,1212,17,1213,15,
45091214,4,38,37,0,
451073,0,100,0,101,
45110,110,0,116,0,
451268,0,111,0,116,
43820,69,0,120,0, 45130,69,0,120,0,
4383112,0,114,0,101, 4514112,0,114,0,101,
43840,115,0,115,0, 45150,115,0,115,0,
4385105,0,111,0,110, 4516105,0,111,0,110,
43860,95,0,49,0, 45170,1,-1,1,5,
43871,239,1,3,1, 45181215,20,1216,4,40,
43882,1,1,1192,22, 451973,0,100,0,101,
43891,97,1,44,1193,
439017,1188,1,1,1192,
43911,1803,797,1,47,
43921194,17,1195,15,1196,
43934,38,37,0,73,
43940,100,0,101,0,
4395110,0,116,0,68,
43960,111,0,116,0,
439769,0,120,0,112,
43980,114,0,101,0,
4399115,0,115,0,105,
44000,111,0,110,0,
44011,-1,1,5,1197,
440220,1198,4,40,73,
44030,100,0,101,0,
4404110,0,116,0,68,
44050,111,0,116,0,
440669,0,120,0,112,
44070,114,0,101,0,
4408115,0,115,0,105,
44090,111,0,110,0,
441095,0,49,0,1,
4411240,1,3,1,4,
44121,3,1199,22,1,
441398,1,48,1200,17,
44141201,15,1202,4,58,
441537,0,73,0,110,
44160,99,0,114,0,
4417101,0,109,0,101,
44180,110,0,116,0,
441968,0,101,0,99,
44200,114,0,101,0,
4421109,0,101,0,110,
44220,116,0,69,0,
4423120,0,112,0,114,
44240,101,0,115,0,
4425115,0,105,0,111,
44260,110,0,1,-1,
44271,5,1203,20,1204,
44284,60,73,0,110,
44290,99,0,114,0,
4430101,0,109,0,101,
44310,110,0,116,0, 45200,110,0,116,0,
443268,0,101,0,99, 452168,0,111,0,116,
44330,114,0,101,0,
4434109,0,101,0,110,
44350,116,0,69,0,
4436120,0,112,0,114,
44370,101,0,115,0,
4438115,0,105,0,111,
44390,110,0,95,0,
444052,0,1,244,1,
44413,1,5,1,4,
44421205,22,1,102,1,
444349,1206,17,1207,15,
44441202,1,-1,1,5,
44451208,20,1209,4,60,
444673,0,110,0,99,
44470,114,0,101,0,
4448109,0,101,0,110,
44490,116,0,68,0,
4450101,0,99,0,114,
44510,101,0,109,0,
4452101,0,110,0,116,
44530,69,0,120,0, 45220,69,0,120,0,
4454112,0,114,0,101, 4523112,0,114,0,101,
44550,115,0,115,0, 45240,115,0,115,0,
4456105,0,111,0,110, 4525105,0,111,0,110,
44570,95,0,51,0, 45260,95,0,49,0,
44581,243,1,3,1, 45271,249,1,3,1,
44595,1,4,1210,22, 45284,1,3,1217,22,
44601,101,1,50,1211, 45291,103,1,48,1218,
446117,1212,15,1202,1, 453017,1219,15,1220,4,
4462-1,1,5,1213,20, 453158,37,0,73,0,
44631214,4,60,73,0, 4532110,0,99,0,114,
45330,101,0,109,0,
4534101,0,110,0,116,
45350,68,0,101,0,
453699,0,114,0,101,
45370,109,0,101,0,
4538110,0,116,0,69,
45390,120,0,112,0,
4540114,0,101,0,115,
45410,115,0,105,0,
4542111,0,110,0,1,
4543-1,1,5,1221,20,
45441222,4,60,73,0,
4464110,0,99,0,114, 4545110,0,99,0,114,
44650,101,0,109,0, 45460,101,0,109,0,
4466101,0,110,0,116, 4547101,0,110,0,116,
@@ -4472,12 +4553,12 @@ public yyLSLSyntax
4472114,0,101,0,115, 4553114,0,101,0,115,
44730,115,0,105,0, 45540,115,0,105,0,
4474111,0,110,0,95, 4555111,0,110,0,95,
44750,50,0,1,242, 45560,52,0,1,253,
44761,3,1,3,1, 45571,3,1,5,1,
44772,1215,22,1,100, 45584,1223,22,1,107,
44781,51,1216,17,1217, 45591,49,1224,17,1225,
447915,1202,1,-1,1, 456015,1220,1,-1,1,
44805,1218,20,1219,4, 45615,1226,20,1227,4,
448160,73,0,110,0, 456260,73,0,110,0,
448299,0,114,0,101, 456399,0,114,0,101,
44830,109,0,101,0, 45640,109,0,101,0,
@@ -4489,81 +4570,80 @@ public yyLSLSyntax
44890,112,0,114,0, 45700,112,0,114,0,
4490101,0,115,0,115, 4571101,0,115,0,115,
44910,105,0,111,0, 45720,105,0,111,0,
4492110,0,95,0,49, 4573110,0,95,0,51,
44930,1,241,1,3, 45740,1,252,1,3,
44941,3,1,2,1220, 45751,5,1,4,1228,
449522,1,99,1,305, 457622,1,106,1,50,
44961221,17,1222,15,1131, 45771229,17,1230,15,1220,
44971,-1,1,5,1223, 45781,-1,1,5,1231,
449820,1224,4,36,66, 457920,1232,4,60,73,
44990,105,0,110,0, 45800,110,0,99,0,
450097,0,114,0,121, 4581114,0,101,0,109,
45010,69,0,120,0, 45820,101,0,110,0,
4502112,0,114,0,101, 4583116,0,68,0,101,
45030,115,0,115,0, 45840,99,0,114,0,
4504105,0,111,0,110, 4585101,0,109,0,101,
45050,95,0,51,0, 45860,110,0,116,0,
45061,252,1,3,1, 458769,0,120,0,112,
45074,1,3,1225,22, 45880,114,0,101,0,
45081,110,1,525,1226, 4589115,0,115,0,105,
450917,1227,15,1228,4,
451034,37,0,82,0,
4511111,0,116,0,97,
45120,116,0,105,0,
4513111,0,110,0,67,
45140,111,0,110,0, 45900,111,0,110,0,
4515115,0,116,0,97, 459195,0,50,0,1,
4592251,1,3,1,3,
45931,2,1233,22,1,
4594105,1,51,1234,17,
45951235,15,1220,1,-1,
45961,5,1236,20,1237,
45974,60,73,0,110,
45980,99,0,114,0,
4599101,0,109,0,101,
45160,110,0,116,0, 46000,110,0,116,0,
45171,-1,1,5,1229, 460168,0,101,0,99,
451820,1230,4,36,82, 46020,114,0,101,0,
4603109,0,101,0,110,
46040,116,0,69,0,
4605120,0,112,0,114,
46060,101,0,115,0,
4607115,0,105,0,111,
46080,110,0,95,0,
460949,0,1,250,1,
46103,1,3,1,2,
46111238,22,1,104,1,
4612305,1239,17,1240,15,
46131149,1,-1,1,5,
46141241,20,1242,4,36,
461566,0,105,0,110,
46160,97,0,114,0,
4617121,0,69,0,120,
46180,112,0,114,0,
4619101,0,115,0,115,
46200,105,0,111,0,
4621110,0,95,0,51,
46220,1,261,1,3,
46231,4,1,3,1243,
462422,1,115,1,525,
46251244,17,1245,15,1246,
46264,34,37,0,82,
45190,111,0,116,0, 46270,111,0,116,0,
452097,0,116,0,105, 462897,0,116,0,105,
45210,111,0,110,0, 46290,111,0,110,0,
452267,0,111,0,110, 463067,0,111,0,110,
45230,115,0,116,0, 46310,115,0,116,0,
452497,0,110,0,116, 463297,0,110,0,116,
45250,95,0,49,0, 46330,1,-1,1,5,
45261,237,1,3,1, 46341247,20,1248,4,36,
452710,1,9,1231,22, 463582,0,111,0,116,
45281,95,1,63,1232, 46360,97,0,116,0,
452917,1233,15,1234,4, 4637105,0,111,0,110,
453038,37,0,84,0, 46380,67,0,111,0,
4531121,0,112,0,101, 4639110,0,115,0,116,
45320,99,0,97,0, 46400,97,0,110,0,
4533115,0,116,0,69, 4641116,0,95,0,49,
45340,120,0,112,0, 46420,1,246,1,3,
4535114,0,101,0,115, 46431,10,1,9,1249,
45360,115,0,105,0, 464422,1,100,1,63,
4537111,0,110,0,1, 46451250,17,1251,15,1252,
4538-1,1,5,1235,20, 46464,38,37,0,84,
45391236,4,40,84,0,
4540121,0,112,0,101,
45410,99,0,97,0,
4542115,0,116,0,69,
45430,120,0,112,0,
4544114,0,101,0,115,
45450,115,0,105,0,
4546111,0,110,0,95,
45470,50,0,1,274,
45481,3,1,5,1,
45494,1237,22,1,132,
45501,66,1238,17,1239,
455115,1234,1,-1,1,
45525,1240,20,1241,4,
455340,84,0,121,0,
4554112,0,101,0,99,
45550,97,0,115,0,
4556116,0,69,0,120,
45570,112,0,114,0,
4558101,0,115,0,115,
45590,105,0,111,0,
4560110,0,95,0,51,
45610,1,275,1,3,
45621,7,1,6,1242,
456322,1,133,1,67,
45641243,17,1244,15,1234,
45651,-1,1,5,1245,
456620,1246,4,40,84,
45670,121,0,112,0, 46470,121,0,112,0,
4568101,0,99,0,97, 4648101,0,99,0,97,
45690,115,0,116,0, 46490,115,0,116,0,
@@ -4571,12 +4651,21 @@ public yyLSLSyntax
45710,114,0,101,0, 46510,114,0,101,0,
4572115,0,115,0,105, 4652115,0,115,0,105,
45730,111,0,110,0, 46530,111,0,110,0,
457495,0,55,0,1, 46541,-1,1,5,1253,
4575279,1,3,1,8, 465520,1254,4,40,84,
45761,7,1247,22,1, 46560,121,0,112,0,
4577137,1,68,1248,17, 4657101,0,99,0,97,
45781249,15,1234,1,-1, 46580,115,0,116,0,
45791,5,1250,20,1251, 465969,0,120,0,112,
46600,114,0,101,0,
4661115,0,115,0,105,
46620,111,0,110,0,
466395,0,50,0,1,
4664283,1,3,1,5,
46651,4,1255,22,1,
4666137,1,66,1256,17,
46671257,15,1252,1,-1,
46681,5,1258,20,1259,
45804,40,84,0,121, 46694,40,84,0,121,
45810,112,0,101,0, 46700,112,0,101,0,
458299,0,97,0,115, 467199,0,97,0,115,
@@ -4585,12 +4674,12 @@ public yyLSLSyntax
45850,101,0,115,0, 46740,101,0,115,0,
4586115,0,105,0,111, 4675115,0,105,0,111,
45870,110,0,95,0, 46760,110,0,95,0,
458853,0,1,277,1, 467751,0,1,284,1,
45893,1,8,1,7, 46783,1,7,1,6,
45901252,22,1,135,1, 46791260,22,1,138,1,
459169,1253,17,1254,15, 468067,1261,17,1262,15,
45921234,1,-1,1,5, 46811252,1,-1,1,5,
45931255,20,1256,4,40, 46821263,20,1264,4,40,
459484,0,121,0,112, 468384,0,121,0,112,
45950,101,0,99,0, 46840,101,0,99,0,
459697,0,115,0,116, 468597,0,115,0,116,
@@ -4598,13 +4687,13 @@ public yyLSLSyntax
4598112,0,114,0,101, 4687112,0,114,0,101,
45990,115,0,115,0, 46880,115,0,115,0,
4600105,0,111,0,110, 4689105,0,111,0,110,
46010,95,0,54,0, 46900,95,0,55,0,
46021,278,1,3,1, 46911,288,1,3,1,
46036,1,5,1257,22, 46928,1,7,1265,22,
46041,136,1,70,1258, 46931,142,1,68,1266,
460517,1259,15,1234,1, 469417,1267,15,1252,1,
4606-1,1,5,1260,20, 4695-1,1,5,1268,20,
46071261,4,40,84,0, 46961269,4,40,84,0,
4608121,0,112,0,101, 4697121,0,112,0,101,
46090,99,0,97,0, 46980,99,0,97,0,
4610115,0,116,0,69, 4699115,0,116,0,69,
@@ -4612,12 +4701,12 @@ public yyLSLSyntax
4612114,0,101,0,115, 4701114,0,101,0,115,
46130,115,0,105,0, 47020,115,0,105,0,
4614111,0,110,0,95, 4703111,0,110,0,95,
46150,52,0,1,276, 47040,53,0,1,286,
46161,3,1,6,1, 47051,3,1,8,1,
46175,1262,22,1,134, 47067,1270,22,1,140,
46181,74,1263,17,1264, 47071,69,1271,17,1272,
461915,1234,1,-1,1, 470815,1252,1,-1,1,
46205,1265,20,1266,4, 47095,1273,20,1274,4,
462140,84,0,121,0, 471040,84,0,121,0,
4622112,0,101,0,99, 4711112,0,101,0,99,
46230,97,0,115,0, 47120,97,0,115,0,
@@ -4625,348 +4714,462 @@ public yyLSLSyntax
46250,112,0,114,0, 47140,112,0,114,0,
4626101,0,115,0,115, 4715101,0,115,0,115,
46270,105,0,111,0, 47160,105,0,111,0,
4628110,0,95,0,57, 4717110,0,95,0,54,
46290,1,281,1,3, 47180,1,287,1,3,
46301,7,1,6,1267, 47191,6,1,5,1275,
463122,1,139,1,1013, 472022,1,141,1,70,
46321268,17,1269,15,1114, 47211276,17,1277,15,1252,
46331,-1,1,5,1270, 47221,-1,1,5,1278,
463420,1271,4,46,80, 472320,1279,4,40,84,
46350,97,0,114,0, 47240,121,0,112,0,
4725101,0,99,0,97,
47260,115,0,116,0,
472769,0,120,0,112,
47280,114,0,101,0,
4729115,0,115,0,105,
47300,111,0,110,0,
473195,0,52,0,1,
4732285,1,3,1,6,
47331,5,1280,22,1,
4734139,1,74,1281,17,
47351282,15,1252,1,-1,
47361,5,1283,20,1284,
47374,40,84,0,121,
47380,112,0,101,0,
473999,0,97,0,115,
47400,116,0,69,0,
4741120,0,112,0,114,
47420,101,0,115,0,
4743115,0,105,0,111,
47440,110,0,95,0,
474557,0,1,290,1,
47463,1,7,1,6,
47471285,22,1,144,1,
47481013,1286,17,1287,15,
47491132,1,-1,1,5,
47501288,20,1289,4,46,
475180,0,97,0,114,
47520,101,0,110,0,
4753116,0,104,0,101,
47540,115,0,105,0,
4755115,0,69,0,120,
47560,112,0,114,0,
4757101,0,115,0,115,
47580,105,0,111,0,
4759110,0,95,0,49,
47600,1,280,1,3,
47611,4,1,3,1290,
476222,1,134,1,1332,
47631291,17,1292,15,1126,
47641,-1,1,5,1293,
476520,1294,4,38,83,
47660,105,0,109,0,
4767112,0,108,0,101,
47680,65,0,115,0,
4769115,0,105,0,103,
47700,110,0,109,0,
4636101,0,110,0,116, 4771101,0,110,0,116,
46370,104,0,101,0,
4638115,0,105,0,115,
46390,69,0,120,0,
4640112,0,114,0,101,
46410,115,0,115,0,
4642105,0,111,0,110,
46430,95,0,49,0, 47720,95,0,49,0,
46441,271,1,3,1, 477357,0,1,232,1,
46454,1,3,1272,22, 47743,1,6,1,5,
46461,129,1,1332,1273, 47751295,22,1,86,1,
464717,1274,15,1108,1, 47762337,1296,17,1170,1,
4648-1,1,5,1275,20, 47770,1174,1,1585,1297,
46491276,4,38,83,0, 477817,1298,15,1299,4,
4650105,0,109,0,112, 477932,37,0,82,0,
46510,108,0,101,0, 4780101,0,116,0,117,
465265,0,115,0,115, 47810,114,0,110,0,
46530,105,0,103,0, 478283,0,116,0,97,
4654110,0,109,0,101, 47830,116,0,101,0,
46550,110,0,116,0, 4784109,0,101,0,110,
465695,0,49,0,57, 47850,116,0,1,-1,
46570,1,223,1,3, 47861,5,1300,20,1301,
46581,6,1,5,1277, 47874,34,82,0,101,
465922,1,81,1,2337,
46601278,17,1152,1,0,
46611156,1,1585,1279,17,
46621280,15,1281,4,32,
466337,0,82,0,101,
46640,116,0,117,0, 47880,116,0,117,0,
4665114,0,110,0,83, 4789114,0,110,0,83,
46660,116,0,97,0, 47900,116,0,97,0,
4667116,0,101,0,109, 4791116,0,101,0,109,
46680,101,0,110,0, 47920,101,0,110,0,
4669116,0,1,-1,1, 4793116,0,95,0,50,
46705,1282,20,1283,4, 47940,1,239,1,3,
467134,82,0,101,0, 47951,2,1,1,1302,
4672116,0,117,0,114, 479622,1,93,1,2023,
46730,110,0,83,0, 47971303,17,1304,15,1165,
4674116,0,97,0,116, 47981,-1,1,5,1305,
46750,101,0,109,0, 479920,1306,4,26,83,
4676101,0,110,0,116, 48000,116,0,97,0,
4801116,0,101,0,67,
48020,104,0,97,0,
4803110,0,103,0,101,
46770,95,0,50,0, 48040,95,0,50,0,
46781,230,1,3,1, 48051,197,1,3,1,
46792,1,1,1284,22, 48063,1,2,1307,22,
46801,88,1,2023,1285, 48071,51,1,2136,871,
468117,1286,15,1147,1, 48081,82,1308,17,1309,
4682-1,1,5,1287,20, 480915,1310,4,32,37,
46831288,4,26,83,0, 48100,85,0,110,0,
4684116,0,97,0,116, 481197,0,114,0,121,
46850,101,0,67,0, 48120,69,0,120,0,
4686104,0,97,0,110, 4813112,0,114,0,101,
46870,103,0,101,0, 48140,115,0,115,0,
468895,0,50,0,1, 4815105,0,111,0,110,
4689188,1,3,1,3, 48160,1,-1,1,5,
46901,2,1289,22,1, 48171311,20,1312,4,34,
469146,1,2136,852,1,
469282,1290,17,1291,15,
46931292,4,32,37,0,
469485,0,110,0,97, 481885,0,110,0,97,
46950,114,0,121,0, 48190,114,0,121,0,
469669,0,120,0,112, 482069,0,120,0,112,
46970,114,0,101,0, 48210,114,0,101,0,
4698115,0,115,0,105, 4822115,0,115,0,105,
46990,111,0,110,0, 48230,111,0,110,0,
47001,-1,1,5,1293, 482495,0,51,0,1,
470120,1294,4,34,85, 4825279,1,3,1,3,
48261,2,1313,22,1,
4827133,1,2026,1314,17,
48281315,15,1316,4,28,
482937,0,74,0,117,
48300,109,0,112,0,
483183,0,116,0,97,
48320,116,0,101,0,
4833109,0,101,0,110,
48340,116,0,1,-1,
48351,5,1317,20,1318,
48364,30,74,0,117,
48370,109,0,112,0,
483883,0,116,0,97,
48390,116,0,101,0,
4840109,0,101,0,110,
48410,116,0,95,0,
484249,0,1,195,1,
48433,1,3,1,2,
48441319,22,1,49,1,
48451591,1320,17,1321,15,
48461299,1,-1,1,5,
48471322,20,1323,4,34,
484882,0,101,0,116,
48490,117,0,114,0,
4850110,0,83,0,116,
48510,97,0,116,0,
4852101,0,109,0,101,
48530,110,0,116,0,
485495,0,49,0,1,
4855238,1,3,1,3,
48561,2,1324,22,1,
485792,1,1341,1325,17,
48581326,15,1126,1,-1,
48591,5,1327,20,1328,
48604,36,83,0,105,
48610,109,0,112,0,
4862108,0,101,0,65,
48630,115,0,115,0,
4864105,0,103,0,110,
48650,109,0,101,0,
4866110,0,116,0,95,
48670,54,0,1,219,
48681,3,1,4,1,
48693,1329,22,1,73,
48701,2030,760,1,328,
48711330,17,1331,15,1149,
48721,-1,1,5,1332,
487320,1333,4,36,66,
48740,105,0,110,0,
487597,0,114,0,121,
48760,69,0,120,0,
4877112,0,114,0,101,
48780,115,0,115,0,
4879105,0,111,0,110,
48800,95,0,50,0,
48811,260,1,3,1,
48824,1,3,1334,22,
48831,114,1,1303,1335,
488417,1336,15,1126,1,
4885-1,1,5,1337,20,
48861338,4,36,83,0,
4887105,0,109,0,112,
48880,108,0,101,0,
488965,0,115,0,115,
48900,105,0,103,0,
4891110,0,109,0,101,
48920,110,0,116,0,
489395,0,55,0,1,
4894220,1,3,1,6,
48951,5,1339,22,1,
489674,1,1096,1340,17,
48971341,15,1342,4,26,
489837,0,70,0,117,
48990,110,0,99,0,
4900116,0,105,0,111,
49010,110,0,67,0,
490297,0,108,0,108,
49030,1,-1,1,5,
49041343,20,1344,4,28,
490570,0,117,0,110,
49060,99,0,116,0,
4907105,0,111,0,110,
49080,67,0,97,0,
4909108,0,108,0,95,
49100,49,0,1,291,
49111,3,1,5,1,
49124,1345,22,1,145,
49131,93,1346,17,1347,
491415,1310,1,-1,1,
49155,1348,20,1349,4,
491634,85,0,110,0,
491797,0,114,0,121,
49180,69,0,120,0,
4919112,0,114,0,101,
49200,115,0,115,0,
4921105,0,111,0,110,
49220,95,0,50,0,
49231,278,1,3,1,
49243,1,2,1350,22,
49251,132,1,1550,1351,
492617,1352,15,1126,1,
4927-1,1,5,1353,20,
49281354,4,38,83,0,
4929105,0,109,0,112,
49300,108,0,101,0,
493165,0,115,0,115,
49320,105,0,103,0,
4933110,0,109,0,101,
49340,110,0,116,0,
493595,0,49,0,51,
49360,1,226,1,3,
49371,4,1,3,1355,
493822,1,80,1,2040,
49391356,16,0,555,1,
49402106,1357,17,1170,1,
49410,1174,1,1555,1358,
494216,0,629,1,827,
49431359,17,1360,15,1149,
49441,-1,1,5,1361,
494520,1362,4,38,66,
49460,105,0,110,0,
494797,0,114,0,121,
49480,69,0,120,0,
4949112,0,114,0,101,
49500,115,0,115,0,
4951105,0,111,0,110,
49520,95,0,49,0,
495353,0,1,273,1,
49543,1,4,1,3,
49551363,22,1,127,1,
49561859,1364,16,0,303,
49571,1860,850,1,1804,
49581365,17,1170,1,0,
49591174,1,107,1366,17,
49601367,15,1310,1,-1,
49611,5,1368,20,1369,
49624,34,85,0,110,
49630,97,0,114,0,
4964121,0,69,0,120,
49650,112,0,114,0,
4966101,0,115,0,115,
49670,105,0,111,0,
4968110,0,95,0,49,
49690,1,277,1,3,
49701,3,1,2,1370,
497122,1,131,1,1114,
49721371,17,1213,1,3,
49731217,1,1048,1372,17,
49741373,15,1149,1,-1,
49751,5,1374,20,1375,
49764,38,66,0,105,
47020,110,0,97,0, 49770,110,0,97,0,
4703114,0,121,0,69, 4978114,0,121,0,69,
47040,120,0,112,0, 49790,120,0,112,0,
4705114,0,101,0,115, 4980114,0,101,0,115,
47060,115,0,105,0, 49810,115,0,105,0,
4707111,0,110,0,95, 4982111,0,110,0,95,
47080,51,0,1,270, 49830,49,0,56,0,
47091,3,1,3,1, 49841,276,1,3,1,
47102,1295,22,1,128, 49854,1,3,1376,22,
47111,2026,1296,17,1297, 49861,130,1,352,1377,
471215,1298,4,28,37, 498717,1378,15,1149,1,
47130,74,0,117,0, 4988-1,1,5,1379,20,
4714109,0,112,0,83, 49891380,4,36,66,0,
47150,116,0,97,0,
4716116,0,101,0,109,
47170,101,0,110,0,
4718116,0,1,-1,1,
47195,1299,20,1300,4,
472030,74,0,117,0,
4721109,0,112,0,83,
47220,116,0,97,0,
4723116,0,101,0,109,
47240,101,0,110,0,
4725116,0,95,0,49,
47260,1,186,1,3,
47271,3,1,2,1301,
472822,1,44,1,1591,
47291302,17,1303,15,1281,
47301,-1,1,5,1304,
473120,1305,4,34,82,
47320,101,0,116,0,
4733117,0,114,0,110,
47340,83,0,116,0,
473597,0,116,0,101,
47360,109,0,101,0,
4737110,0,116,0,95,
47380,49,0,1,229,
47391,3,1,3,1,
47402,1306,22,1,87,
47411,1341,1307,17,1308,
474215,1108,1,-1,1,
47435,1309,20,1310,4,
474436,83,0,105,0,
4745109,0,112,0,108,
47460,101,0,65,0,
4747115,0,115,0,105,
47480,103,0,110,0,
4749109,0,101,0,110,
47500,116,0,95,0,
475154,0,1,210,1,
47523,1,4,1,3,
47531311,22,1,68,1,
47542030,741,1,328,1312,
475517,1313,15,1131,1,
4756-1,1,5,1314,20,
47571315,4,36,66,0,
4758105,0,110,0,97, 4990105,0,110,0,97,
47590,114,0,121,0, 49910,114,0,121,0,
476069,0,120,0,112, 499269,0,120,0,112,
47610,114,0,101,0, 49930,114,0,101,0,
4762115,0,115,0,105, 4994115,0,115,0,105,
47630,111,0,110,0, 49950,111,0,110,0,
476495,0,50,0,1, 499695,0,49,0,1,
4765251,1,3,1,4, 4997259,1,3,1,4,
47661,3,1316,22,1, 49981,3,1381,22,1,
4767109,1,1303,1317,17, 4999113,1,1872,1382,16,
47681318,15,1108,1,-1, 50000,313,1,1873,864,
47691,5,1319,20,1320, 50011,118,1383,17,1384,
47704,36,83,0,105, 500215,1149,1,-1,1,
50035,1385,20,1386,4,
500438,66,0,105,0,
5005110,0,97,0,114,
50060,121,0,69,0,
5007120,0,112,0,114,
50080,101,0,115,0,
5009115,0,105,0,111,
50100,110,0,95,0,
501149,0,52,0,1,
5012272,1,3,1,4,
50131,3,1387,22,1,
5014126,1,1123,1388,17,
50151389,15,1126,1,-1,
50161,5,1390,20,1391,
50174,38,83,0,105,
47710,109,0,112,0, 50180,109,0,112,0,
4772108,0,101,0,65, 5019108,0,101,0,65,
47730,115,0,115,0, 50200,115,0,115,0,
4774105,0,103,0,110, 5021105,0,103,0,110,
47750,109,0,101,0, 50220,109,0,101,0,
4776110,0,116,0,95, 5023110,0,116,0,95,
47770,55,0,1,211, 50240,49,0,50,0,
47781,3,1,6,1, 50251,225,1,3,1,
47795,1321,22,1,69, 50266,1,5,1392,22,
47801,1096,1322,17,1323, 50271,79,1,371,1393,
478115,1324,4,26,37, 502817,1394,15,1395,4,
47820,70,0,117,0, 502946,37,0,70,0,
5030117,0,110,0,99,
50310,116,0,105,0,
5032111,0,110,0,67,
50330,97,0,108,0,
5034108,0,69,0,120,
50350,112,0,114,0,
5036101,0,115,0,115,
50370,105,0,111,0,
5038110,0,1,-1,1,
50395,1396,20,1397,4,
504048,70,0,117,0,
4783110,0,99,0,116, 5041110,0,99,0,116,
47840,105,0,111,0, 50420,105,0,111,0,
4785110,0,67,0,97, 5043110,0,67,0,97,
47860,108,0,108,0, 50440,108,0,108,0,
47871,-1,1,5,1325,
478820,1326,4,28,70,
47890,117,0,110,0,
479099,0,116,0,105,
47910,111,0,110,0,
479267,0,97,0,108,
47930,108,0,95,0,
479449,0,1,282,1,
47953,1,5,1,4,
47961327,22,1,140,1,
479793,1328,17,1329,15,
47981292,1,-1,1,5,
47991330,20,1331,4,34,
480085,0,110,0,97,
48010,114,0,121,0,
480269,0,120,0,112, 504569,0,120,0,112,
48030,114,0,101,0, 50460,114,0,101,0,
4804115,0,115,0,105, 5047115,0,115,0,105,
48050,111,0,110,0, 50480,111,0,110,0,
480695,0,50,0,1, 504995,0,49,0,1,
4807269,1,3,1,3, 5050258,1,3,1,2,
48081,2,1332,22,1, 50511,1,1398,22,1,
4809127,1,1550,1333,17, 5052112,1,1377,1399,17,
48101334,15,1108,1,-1, 50531400,15,1126,1,-1,
48111,5,1335,20,1336, 50541,5,1401,20,1402,
48124,38,83,0,105, 50554,36,83,0,105,
48130,109,0,112,0, 50560,109,0,112,0,
4814108,0,101,0,65, 5057108,0,101,0,65,
48150,115,0,115,0, 50580,115,0,115,0,
4816105,0,103,0,110, 5059105,0,103,0,110,
48170,109,0,101,0, 50600,109,0,101,0,
4818110,0,116,0,95, 5061110,0,116,0,95,
48190,49,0,51,0, 50620,53,0,1,218,
48201,217,1,3,1, 50631,3,1,4,1,
48214,1,3,1337,22, 50643,1403,22,1,72,
48221,75,1,2040,1338, 50651,375,1404,17,1405,
482316,0,542,1,2106, 506615,1220,1,-1,1,
48241339,17,1152,1,0, 50675,1406,20,1407,4,
48251156,1,1555,1340,16, 506860,73,0,110,0,
48260,615,1,827,1341, 506999,0,114,0,101,
482717,1342,15,1131,1, 50700,109,0,101,0,
4828-1,1,5,1343,20, 5071110,0,116,0,68,
48291344,4,38,66,0, 50720,101,0,99,0,
4830105,0,110,0,97, 5073114,0,101,0,109,
48310,114,0,121,0, 50740,101,0,110,0,
5075116,0,69,0,120,
50760,112,0,114,0,
5077101,0,115,0,115,
50780,105,0,111,0,
5079110,0,95,0,56,
50800,1,257,1,3,
50811,5,1,4,1408,
508222,1,111,1,377,
50831409,17,1410,15,1220,
50841,-1,1,5,1411,
508520,1412,4,60,73,
50860,110,0,99,0,
5087114,0,101,0,109,
50880,101,0,110,0,
5089116,0,68,0,101,
50900,99,0,114,0,
5091101,0,109,0,101,
50920,110,0,116,0,
483269,0,120,0,112, 509369,0,120,0,112,
48330,114,0,101,0, 50940,114,0,101,0,
4834115,0,115,0,105, 5095115,0,115,0,105,
48350,111,0,110,0, 50960,111,0,110,0,
483695,0,49,0,53, 509795,0,53,0,1,
48370,1,264,1,3, 5098254,1,3,1,3,
48381,4,1,3,1345, 50991,2,1413,22,1,
483922,1,122,1,1859, 5100108,1,379,1414,17,
48401346,16,0,313,1, 51011415,15,1220,1,-1,
48411860,831,1,1804,1347, 51021,5,1416,20,1417,
484217,1152,1,0,1156, 51034,60,73,0,110,
48431,107,1348,17,1349, 51040,99,0,114,0,
484415,1292,1,-1,1, 5105101,0,109,0,101,
48455,1350,20,1351,4, 51060,110,0,116,0,
484634,85,0,110,0, 510768,0,101,0,99,
484797,0,114,0,121, 51080,114,0,101,0,
48480,69,0,120,0, 5109109,0,101,0,110,
4849112,0,114,0,101, 51100,116,0,69,0,
48500,115,0,115,0,
4851105,0,111,0,110,
48520,95,0,49,0,
48531,268,1,3,1,
48543,1,2,1352,22,
48551,126,1,1114,1353,
485617,1195,1,3,1199,
48571,1048,1354,17,1355,
485815,1131,1,-1,1,
48595,1356,20,1357,4,
486038,66,0,105,0,
4861110,0,97,0,114,
48620,121,0,69,0,
4863120,0,112,0,114, 5111120,0,112,0,114,
48640,101,0,115,0, 51120,101,0,115,0,
4865115,0,105,0,111, 5113115,0,105,0,111,
48660,110,0,95,0, 51140,110,0,95,0,
486749,0,56,0,1, 511555,0,1,256,1,
4868267,1,3,1,4, 51163,1,5,1,4,
48691,3,1358,22,1, 51171418,22,1,110,1,
4870125,1,352,1359,17, 5118380,1419,17,1420,15,
48711360,15,1131,1,-1, 51191421,4,38,37,0,
48721,5,1361,20,1362, 512067,0,111,0,110,
48734,36,66,0,105, 51210,115,0,116,0,
48740,110,0,97,0, 512297,0,110,0,116,
4875114,0,121,0,69,
48760,120,0,112,0,
4877114,0,101,0,115,
48780,115,0,105,0,
4879111,0,110,0,95,
48800,49,0,1,250,
48811,3,1,4,1,
48823,1363,22,1,108,
48831,1872,1364,16,0,
4884323,1,1873,845,1,
4885118,1365,17,1366,15,
48861131,1,-1,1,5,
48871367,20,1368,4,38,
488866,0,105,0,110,
48890,97,0,114,0,
4890121,0,69,0,120,
48910,112,0,114,0,
4892101,0,115,0,115,
48930,105,0,111,0,
4894110,0,95,0,49,
48950,52,0,1,263,
48961,3,1,4,1,
48973,1369,22,1,121,
48981,1123,1370,17,1371,
489915,1108,1,-1,1,
49005,1372,20,1373,4,
490138,83,0,105,0,
4902109,0,112,0,108,
49030,101,0,65,0,
4904115,0,115,0,105,
49050,103,0,110,0,
4906109,0,101,0,110,
49070,116,0,95,0,
490849,0,50,0,1,
4909216,1,3,1,6,
49101,5,1374,22,1,
491174,1,371,1375,17,
49121376,15,1377,4,46,
491337,0,70,0,117,
49140,110,0,99,0,
4915116,0,105,0,111,
49160,110,0,67,0,
491797,0,108,0,108,
49180,69,0,120,0, 51230,69,0,120,0,
4919112,0,114,0,101, 5124112,0,114,0,101,
49200,115,0,115,0, 51250,115,0,115,0,
4921105,0,111,0,110, 5126105,0,111,0,110,
49220,1,-1,1,5, 51270,1,-1,1,5,
49231378,20,1379,4,48, 51281422,20,1423,4,40,
492470,0,117,0,110, 512967,0,111,0,110,
49250,99,0,116,0, 51300,115,0,116,0,
513197,0,110,0,116,
51320,69,0,120,0,
5133112,0,114,0,101,
51340,115,0,115,0,
4926105,0,111,0,110, 5135105,0,111,0,110,
49270,67,0,97,0, 51360,95,0,49,0,
4928108,0,108,0,69, 51371,247,1,3,1,
49290,120,0,112,0, 51382,1,1,1424,22,
4930114,0,101,0,115, 51391,101,1,883,1425,
49310,115,0,105,0, 514017,1426,15,1149,1,
4932111,0,110,0,95, 5141-1,1,5,1427,20,
49330,49,0,1,249, 51421428,4,38,66,0,
49341,3,1,2,1, 5143105,0,110,0,97,
49351,1380,22,1,107, 51440,114,0,121,0,
49361,1377,1381,17,1382, 514569,0,120,0,112,
493715,1108,1,-1,1, 51460,114,0,101,0,
49385,1383,20,1384,4, 5147115,0,115,0,105,
493936,83,0,105,0, 51480,111,0,110,0,
4940109,0,112,0,108, 514995,0,49,0,54,
49410,101,0,65,0, 51500,1,274,1,3,
51511,4,1,3,1429,
515222,1,128,1,1628,
51531430,17,1431,15,1432,
51544,22,37,0,65,
51550,115,0,115,0,
5156105,0,103,0,110,
51570,109,0,101,0,
5158110,0,116,0,1,
5159-1,1,5,1433,20,
51601434,4,24,65,0,
4942115,0,115,0,105, 5161115,0,115,0,105,
49430,103,0,110,0, 51620,103,0,110,0,
4944109,0,101,0,110, 5163109,0,101,0,110,
49450,116,0,95,0, 51640,116,0,95,0,
494653,0,1,209,1, 516549,0,1,212,1,
49473,1,4,1,3, 51663,1,4,1,3,
49481385,22,1,67,1, 51671435,22,1,66,1,
4949375,1386,17,1387,15, 51682075,1436,17,1170,1,
49501202,1,-1,1,5, 51690,1174,1,373,1437,
49511388,20,1389,4,60, 517017,1438,15,1220,1,
495273,0,110,0,99, 5171-1,1,5,1439,20,
49530,114,0,101,0, 51721440,4,60,73,0,
4954109,0,101,0,110,
49550,116,0,68,0,
4956101,0,99,0,114,
49570,101,0,109,0,
4958101,0,110,0,116,
49590,69,0,120,0,
4960112,0,114,0,101,
49610,115,0,115,0,
4962105,0,111,0,110,
49630,95,0,56,0,
49641,248,1,3,1,
49655,1,4,1390,22,
49661,106,1,377,1391,
496717,1392,15,1202,1,
4968-1,1,5,1393,20,
49691394,4,60,73,0,
4970110,0,99,0,114, 5173110,0,99,0,114,
49710,101,0,109,0, 51740,101,0,109,0,
4972101,0,110,0,116, 5175101,0,110,0,116,
@@ -4978,112 +5181,12 @@ public yyLSLSyntax
4978114,0,101,0,115, 5181114,0,101,0,115,
49790,115,0,105,0, 51820,115,0,105,0,
4980111,0,110,0,95, 5183111,0,110,0,95,
49810,53,0,1,245, 51840,54,0,1,255,
49821,3,1,3,1, 51851,3,1,3,1,
49832,1395,22,1,103, 51862,1441,22,1,109,
49841,379,1396,17,1397, 51871,130,1442,17,1443,
498515,1202,1,-1,1, 518815,1149,1,-1,1,
49865,1398,20,1399,4, 51895,1444,20,1445,4,
498760,73,0,110,0,
498899,0,114,0,101,
49890,109,0,101,0,
4990110,0,116,0,68,
49910,101,0,99,0,
4992114,0,101,0,109,
49930,101,0,110,0,
4994116,0,69,0,120,
49950,112,0,114,0,
4996101,0,115,0,115,
49970,105,0,111,0,
4998110,0,95,0,55,
49990,1,247,1,3,
50001,5,1,4,1400,
500122,1,105,1,380,
50021401,17,1402,15,1403,
50034,38,37,0,67,
50040,111,0,110,0,
5005115,0,116,0,97,
50060,110,0,116,0,
500769,0,120,0,112,
50080,114,0,101,0,
5009115,0,115,0,105,
50100,111,0,110,0,
50111,-1,1,5,1404,
501220,1405,4,40,67,
50130,111,0,110,0,
5014115,0,116,0,97,
50150,110,0,116,0,
501669,0,120,0,112,
50170,114,0,101,0,
5018115,0,115,0,105,
50190,111,0,110,0,
502095,0,49,0,1,
5021238,1,3,1,2,
50221,1,1406,22,1,
502396,1,883,1407,17,
50241408,15,1131,1,-1,
50251,5,1409,20,1410,
50264,38,66,0,105,
50270,110,0,97,0,
5028114,0,121,0,69,
50290,120,0,112,0,
5030114,0,101,0,115,
50310,115,0,105,0,
5032111,0,110,0,95,
50330,49,0,54,0,
50341,265,1,3,1,
50354,1,3,1411,22,
50361,123,1,1628,1412,
503717,1413,15,1414,4,
503822,37,0,65,0,
5039115,0,115,0,105,
50400,103,0,110,0,
5041109,0,101,0,110,
50420,116,0,1,-1,
50431,5,1415,20,1416,
50444,24,65,0,115,
50450,115,0,105,0,
5046103,0,110,0,109,
50470,101,0,110,0,
5048116,0,95,0,49,
50490,1,203,1,3,
50501,4,1,3,1417,
505122,1,61,1,2075,
50521418,17,1152,1,0,
50531156,1,373,1419,17,
50541420,15,1202,1,-1,
50551,5,1421,20,1422,
50564,60,73,0,110,
50570,99,0,114,0,
5058101,0,109,0,101,
50590,110,0,116,0,
506068,0,101,0,99,
50610,114,0,101,0,
5062109,0,101,0,110,
50630,116,0,69,0,
5064120,0,112,0,114,
50650,101,0,115,0,
5066115,0,105,0,111,
50670,110,0,95,0,
506854,0,1,246,1,
50693,1,3,1,2,
50701423,22,1,104,1,
5071130,1424,17,1425,15,
50721131,1,-1,1,5,
50731426,20,1427,4,38,
507466,0,105,0,110,
50750,97,0,114,0,
5076121,0,69,0,120,
50770,112,0,114,0,
5078101,0,115,0,115,
50790,105,0,111,0,
5080110,0,95,0,49,
50810,51,0,1,262,
50821,3,1,4,1,
50833,1428,22,1,120,
50841,143,1429,17,1430,
508515,1131,1,-1,1,
50865,1431,20,1432,4,
508738,66,0,105,0, 519038,66,0,105,0,
5088110,0,97,0,114, 5191110,0,97,0,114,
50890,121,0,69,0, 51920,121,0,69,0,
@@ -5091,43 +5194,27 @@ public yyLSLSyntax
50910,101,0,115,0, 51940,101,0,115,0,
5092115,0,105,0,111, 5195115,0,105,0,111,
50930,110,0,95,0, 51960,110,0,95,0,
509449,0,50,0,1, 519749,0,51,0,1,
5095261,1,3,1,4, 5198271,1,3,1,4,
50961,3,1433,22,1, 51991,3,1446,22,1,
5097119,1,1901,1434,17, 5200125,1,143,1447,17,
50981152,1,0,1156,1, 52011448,15,1149,1,-1,
50991152,1435,17,1436,15, 52021,5,1449,20,1450,
51001108,1,-1,1,5, 52034,38,66,0,105,
51011437,20,1438,4,38, 52040,110,0,97,0,
510283,0,105,0,109, 5205114,0,121,0,69,
51030,112,0,108,0, 52060,120,0,112,0,
5104101,0,65,0,115, 5207114,0,101,0,115,
51050,115,0,105,0, 52080,115,0,105,0,
5106103,0,110,0,109, 5209111,0,110,0,95,
51070,101,0,110,0, 52100,49,0,50,0,
5108116,0,95,0,50, 52111,270,1,3,1,
51090,52,0,1,228, 52124,1,3,1451,22,
51101,3,1,6,1, 52131,124,1,1901,1452,
51115,1439,22,1,86, 521417,1170,1,0,1174,
51121,1406,1440,17,1441, 52151,1152,1453,17,1454,
511315,1108,1,-1,1, 521615,1126,1,-1,1,
51145,1442,20,1443,4, 52175,1455,20,1456,4,
511538,83,0,105,0,
5116109,0,112,0,108,
51170,101,0,65,0,
5118115,0,115,0,105,
51190,103,0,110,0,
5120109,0,101,0,110,
51210,116,0,95,0,
512249,0,55,0,1,
5123221,1,3,1,4,
51241,3,1444,22,1,
512579,1,1659,1445,16,
51260,278,1,2413,1446,
512717,1152,1,0,1156,
51281,1159,1447,17,1448,
512915,1108,1,-1,1,
51305,1449,20,1450,4,
513138,83,0,105,0, 521838,83,0,105,0,
5132109,0,112,0,108, 5219109,0,112,0,108,
51330,101,0,65,0, 52200,101,0,65,0,
@@ -5135,82 +5222,66 @@ public yyLSLSyntax
51350,103,0,110,0, 52220,103,0,110,0,
5136109,0,101,0,110, 5223109,0,101,0,110,
51370,116,0,95,0, 52240,116,0,95,0,
513849,0,49,0,1, 522550,0,52,0,1,
5139215,1,3,1,6, 5226237,1,3,1,6,
51401,5,1451,22,1, 52271,5,1457,22,1,
514173,1,157,1452,17, 522891,1,1406,1458,17,
51421453,15,1131,1,-1, 52291459,15,1126,1,-1,
51431,5,1454,20,1455, 52301,5,1460,20,1461,
51444,38,66,0,105, 52314,38,83,0,105,
51450,110,0,97,0, 52320,109,0,112,0,
5146114,0,121,0,69, 5233108,0,101,0,65,
51470,120,0,112,0,
5148114,0,101,0,115,
51490,115,0,105,0,
5150111,0,110,0,95,
51510,49,0,49,0,
51521,260,1,3,1,
51534,1,3,1456,22,
51541,118,1,1413,1457,
515517,1458,15,1108,1,
5156-1,1,5,1459,20,
51571460,4,36,83,0,
5158105,0,109,0,112,
51590,108,0,101,0,
516065,0,115,0,115,
51610,105,0,103,0,
5162110,0,109,0,101,
51630,110,0,116,0,
516495,0,52,0,1,
5165208,1,3,1,4,
51661,3,1461,22,1,
516766,1,2669,1462,16,
51680,303,1,1478,1463,
516917,1464,15,1108,1,
5170-1,1,5,1465,20,
51711466,4,38,83,0,
5172105,0,109,0,112,
51730,108,0,101,0,
517465,0,115,0,115,
51750,105,0,103,0,
5176110,0,109,0,101,
51770,110,0,116,0,
517895,0,49,0,53,
51790,1,219,1,3,
51801,4,1,3,1467,
518122,1,77,1,2676,
51821468,16,0,624,1,
51831621,1469,16,0,678,
51841,1574,809,1,172,
51851470,17,1471,15,1131,
51861,-1,1,5,1472,
518720,1473,4,38,66,
51880,105,0,110,0,
518997,0,114,0,121,
51900,69,0,120,0,
5191112,0,114,0,101,
51920,115,0,115,0, 52340,115,0,115,0,
5193105,0,111,0,110, 5235105,0,103,0,110,
51940,95,0,49,0, 52360,109,0,101,0,
519548,0,1,259,1, 5237110,0,116,0,95,
51963,1,4,1,3, 52380,49,0,55,0,
51971474,22,1,117,1, 52391,230,1,3,1,
51981931,870,1,1665,1475, 52404,1,3,1462,22,
519917,1476,15,1166,1, 52411,84,1,1659,1463,
5200-1,1,5,1477,20, 524216,0,269,1,2413,
52011478,4,36,70,0, 52431464,17,1170,1,0,
5202111,0,114,0,76, 52441174,1,1159,1465,17,
52030,111,0,111,0, 52451466,15,1126,1,-1,
5204112,0,83,0,116, 52461,5,1467,20,1468,
52050,97,0,116,0, 52474,38,83,0,105,
5206101,0,109,0,101, 52480,109,0,112,0,
52070,110,0,116,0, 5249108,0,101,0,65,
520895,0,49,0,1, 52500,115,0,115,0,
5209199,1,3,1,2, 5251105,0,103,0,110,
52101,1,1479,22,1, 52520,109,0,101,0,
521157,1,2364,837,1, 5253110,0,116,0,95,
52122105,824,1,1188,1480, 52540,49,0,49,0,
521317,1481,15,1108,1, 52551,224,1,3,1,
52566,1,5,1469,22,
52571,78,1,157,1470,
525817,1471,15,1149,1,
5259-1,1,5,1472,20,
52601473,4,38,66,0,
5261105,0,110,0,97,
52620,114,0,121,0,
526369,0,120,0,112,
52640,114,0,101,0,
5265115,0,115,0,105,
52660,111,0,110,0,
526795,0,49,0,49,
52680,1,269,1,3,
52691,4,1,3,1474,
527022,1,123,1,1413,
52711475,17,1476,15,1126,
52721,-1,1,5,1477,
527320,1478,4,36,83,
52740,105,0,109,0,
5275112,0,108,0,101,
52760,65,0,115,0,
5277115,0,105,0,103,
52780,110,0,109,0,
5279101,0,110,0,116,
52800,95,0,52,0,
52811,217,1,3,1,
52824,1,3,1479,22,
52831,71,1,1370,1480,
528417,1481,15,1126,1,
5214-1,1,5,1482,20, 5285-1,1,5,1482,20,
52151483,4,38,83,0, 52861483,4,38,83,0,
5216105,0,109,0,112, 5287105,0,109,0,112,
@@ -5219,11 +5290,11 @@ public yyLSLSyntax
52190,105,0,103,0, 52900,105,0,103,0,
5220110,0,109,0,101, 5291110,0,109,0,101,
52210,110,0,116,0, 52920,110,0,116,0,
522295,0,50,0,51, 529395,0,49,0,56,
52230,1,227,1,3, 52940,1,231,1,3,
52241,6,1,5,1484, 52951,4,1,3,1484,
522522,1,85,1,1442, 529622,1,85,1,1478,
52261485,17,1486,15,1108, 52971485,17,1486,15,1126,
52271,-1,1,5,1487, 52981,-1,1,5,1487,
522820,1488,4,38,83, 529920,1488,4,38,83,
52290,105,0,109,0, 53000,105,0,109,0,
@@ -5233,13 +5304,24 @@ public yyLSLSyntax
52330,110,0,109,0, 53040,110,0,109,0,
5234101,0,110,0,116, 5305101,0,110,0,116,
52350,95,0,49,0, 53060,95,0,49,0,
523654,0,1,220,1, 530753,0,1,228,1,
52373,1,4,1,3, 53083,1,4,1,3,
52381489,22,1,78,1, 53091489,22,1,82,1,
52391694,1490,16,0,200, 53101620,1490,17,1491,15,
52401,942,1491,17,1492, 53111432,1,-1,1,5,
524115,1131,1,-1,1, 53121492,20,1493,4,24,
52425,1493,20,1494,4, 531365,0,115,0,115,
53140,105,0,103,0,
5315110,0,109,0,101,
53160,110,0,116,0,
531795,0,50,0,1,
5318213,1,3,1,2,
53191,1,1494,22,1,
532067,1,1621,1495,16,
53210,695,1,1574,828,
53221,172,1496,17,1497,
532315,1149,1,-1,1,
53245,1498,20,1499,4,
524338,66,0,105,0, 532538,66,0,105,0,
5244110,0,97,0,114, 5326110,0,97,0,114,
52450,121,0,69,0, 53270,121,0,69,0,
@@ -5247,112 +5329,29 @@ public yyLSLSyntax
52470,101,0,115,0, 53290,101,0,115,0,
5248115,0,105,0,111, 5330115,0,105,0,111,
52490,110,0,95,0, 53310,110,0,95,0,
525049,0,55,0,1, 533249,0,48,0,1,
5251266,1,3,1,4, 5333268,1,3,1,4,
52521,3,1495,22,1, 53341,3,1500,22,1,
5253124,1,2198,1496,17, 5335122,1,1931,889,1,
52541152,1,0,1156,1, 53362685,1501,16,0,659,
52551195,1497,17,1498,15, 53371,1665,1502,17,1503,
52561108,1,-1,1,5, 533815,1184,1,-1,1,
52571499,20,1500,4,38,
525883,0,105,0,109,
52590,112,0,108,0,
5260101,0,65,0,115,
52610,115,0,105,0,
5262103,0,110,0,109,
52630,101,0,110,0,
5264116,0,95,0,49,
52650,48,0,1,214,
52661,3,1,6,1,
52675,1501,22,1,72,
52681,1449,1502,17,1503,
526915,1108,1,-1,1,
52705,1504,20,1505,4, 53395,1504,20,1505,4,
527136,83,0,105,0, 534036,70,0,111,0,
5272109,0,112,0,108, 5341114,0,76,0,111,
52730,101,0,65,0, 53420,111,0,112,0,
5274115,0,115,0,105, 534383,0,116,0,97,
52750,103,0,110,0, 53440,116,0,101,0,
5276109,0,101,0,110, 5345109,0,101,0,110,
52770,116,0,95,0, 53460,116,0,95,0,
527851,0,1,207,1, 534749,0,1,208,1,
52793,1,4,1,3, 53483,1,2,1,1,
52801506,22,1,65,1, 53491506,22,1,62,1,
52811701,1507,17,1508,15, 53502364,856,1,2105,843,
52821166,1,-1,1,5, 53511,2692,1507,16,0,
52831509,20,1510,4,36, 5352657,1,1188,1508,17,
528470,0,111,0,114, 53531509,15,1126,1,-1,
52850,76,0,111,0, 53541,5,1510,20,1511,
5286111,0,112,0,83,
52870,116,0,97,0,
5288116,0,101,0,109,
52890,101,0,110,0,
5290116,0,95,0,51,
52910,1,201,1,3,
52921,4,1,3,1511,
529322,1,59,1,447,
52941512,17,1513,15,1514,
52954,30,37,0,86,
52960,101,0,99,0,
5297116,0,111,0,114,
52980,67,0,111,0,
5299110,0,115,0,116,
53000,97,0,110,0,
5301116,0,1,-1,1,
53025,1515,20,1516,4,
530332,86,0,101,0,
530499,0,116,0,111,
53050,114,0,67,0,
5306111,0,110,0,115,
53070,116,0,97,0,
5308110,0,116,0,95,
53090,49,0,1,236,
53101,3,1,8,1,
53117,1517,22,1,94,
53121,2458,885,1,2459,
5313891,1,1958,1518,17,
53141152,1,0,1156,1,
5315188,1519,17,1520,15,
53161131,1,-1,1,5,
53171521,20,1522,4,36,
531866,0,105,0,110,
53190,97,0,114,0,
5320121,0,69,0,120,
53210,112,0,114,0,
5322101,0,115,0,115,
53230,105,0,111,0,
5324110,0,95,0,57,
53250,1,258,1,3,
53261,4,1,3,1523,
532722,1,116,1,2462,
5328898,1,1657,903,1,
53292464,908,1,205,1524,
533017,1525,15,1131,1,
5331-1,1,5,1526,20,
53321527,4,36,66,0,
5333105,0,110,0,97,
53340,114,0,121,0,
533569,0,120,0,112,
53360,114,0,101,0,
5337115,0,115,0,105,
53380,111,0,110,0,
533995,0,56,0,1,
5340257,1,3,1,4,
53411,3,1528,22,1,
5342115,1,1620,1529,17,
53431530,15,1414,1,-1,
53441,5,1531,20,1532,
53454,24,65,0,115,
53460,115,0,105,0,
5347103,0,110,0,109,
53480,101,0,110,0,
5349116,0,95,0,50,
53500,1,204,1,3,
53511,2,1,1,1533,
535222,1,62,1,2227,
5353917,1,1224,1534,17,
53541535,15,1108,1,-1,
53551,5,1536,20,1537,
53564,38,83,0,105, 53554,38,83,0,105,
53570,109,0,112,0, 53560,109,0,112,0,
5358108,0,101,0,65, 5357108,0,101,0,65,
@@ -5360,349 +5359,504 @@ public yyLSLSyntax
5360105,0,103,0,110, 5359105,0,103,0,110,
53610,109,0,101,0, 53600,109,0,101,0,
5362110,0,116,0,95, 5361110,0,116,0,95,
53630,50,0,50,0, 53620,50,0,51,0,
53641,226,1,3,1, 53631,236,1,3,1,
53656,1,5,1538,22, 53646,1,5,1512,22,
53661,84,1,223,1539, 53651,90,1,1442,1513,
536717,1540,15,1131,1, 536617,1514,15,1126,1,
5368-1,1,5,1541,20, 5367-1,1,5,1515,20,
53691542,4,36,66,0, 53681516,4,38,83,0,
5370105,0,110,0,97,
53710,114,0,121,0,
537269,0,120,0,112,
53730,114,0,101,0,
5374115,0,115,0,105,
53750,111,0,110,0,
537695,0,55,0,1,
5377256,1,3,1,4,
53781,3,1543,22,1,
5379114,1,1730,1544,17,
53801545,15,1166,1,-1,
53811,5,1546,20,1547,
53824,36,70,0,111,
53830,114,0,76,0,
5384111,0,111,0,112,
53850,83,0,116,0,
538697,0,116,0,101,
53870,109,0,101,0,
5388110,0,116,0,95,
53890,52,0,1,202,
53901,3,1,4,1,
53913,1548,22,1,60,
53921,476,1549,17,1550,
539315,1551,4,18,37,
53940,67,0,111,0,
5395110,0,115,0,116,
53960,97,0,110,0,
5397116,0,1,-1,1,
53985,1552,20,1553,4,
539920,67,0,111,0,
5400110,0,115,0,116,
54010,97,0,110,0,
5402116,0,95,0,52,
54030,1,234,1,3,
54041,2,1,1,1554,
540522,1,92,1,477,
54061555,17,1556,15,1551,
54071,-1,1,5,1557,
540820,1558,4,20,67,
54090,111,0,110,0,
5410115,0,116,0,97,
54110,110,0,116,0,
541295,0,51,0,1,
5413233,1,3,1,2,
54141,1,1559,22,1,
541591,1,1231,1560,17,
54161561,15,1108,1,-1,
54171,5,1562,20,1563,
54184,36,83,0,105,
54190,109,0,112,0,
5420108,0,101,0,65,
54210,115,0,115,0,
5422105,0,103,0,110,
54230,109,0,101,0,
5424110,0,116,0,95,
54250,57,0,1,213,
54261,3,1,6,1,
54275,1564,22,1,71,
54281,479,1565,17,1566,
542915,1551,1,-1,1,
54305,1567,20,1568,4,
543120,67,0,111,0,
5432110,0,115,0,116,
54330,97,0,110,0,
5434116,0,95,0,49,
54350,1,231,1,3,
54361,2,1,1,1569,
543722,1,89,1,480,
54381570,17,1571,15,1572,
54394,26,37,0,76,
54400,105,0,115,0,
5441116,0,67,0,111,
54420,110,0,115,0,
5443116,0,97,0,110,
54440,116,0,1,-1,
54451,5,1573,20,1574,
54464,28,76,0,105,
54470,115,0,116,0,
544867,0,111,0,110,
54490,115,0,116,0,
545097,0,110,0,116,
54510,95,0,49,0,
54521,235,1,3,1,
54534,1,3,1575,22,
54541,93,1,1485,1576,
545517,1577,15,1108,1,
5456-1,1,5,1578,20,
54571579,4,36,83,0,
5458105,0,109,0,112, 5369105,0,109,0,112,
54590,108,0,101,0, 53700,108,0,101,0,
546065,0,115,0,115, 537165,0,115,0,115,
54610,105,0,103,0, 53720,105,0,103,0,
5462110,0,109,0,101, 5373110,0,109,0,101,
54630,110,0,116,0, 53740,110,0,116,0,
546495,0,50,0,1, 537595,0,49,0,54,
5465206,1,3,1,4, 53760,1,229,1,3,
54661,3,1580,22,1, 53771,4,1,3,1517,
546764,1,1737,1581,16, 537822,1,83,1,1694,
54680,280,1,1989,925, 53791518,16,0,191,1,
54691,1990,1582,17,1152, 5380942,1519,17,1520,15,
54701,0,1156,1,242, 53811149,1,-1,1,5,
54711583,17,1584,15,1131, 53821521,20,1522,4,38,
54721,-1,1,5,1585, 538366,0,105,0,110,
547320,1586,4,36,66, 53840,97,0,114,0,
5385121,0,69,0,120,
53860,112,0,114,0,
5387101,0,115,0,115,
53880,105,0,111,0,
5389110,0,95,0,49,
53900,55,0,1,275,
53911,3,1,4,1,
53923,1523,22,1,129,
53931,2198,1524,17,1170,
53941,0,1174,1,1195,
53951525,17,1526,15,1126,
53961,-1,1,5,1527,
539720,1528,4,38,83,
53980,105,0,109,0,
5399112,0,108,0,101,
54000,65,0,115,0,
5401115,0,105,0,103,
54020,110,0,109,0,
5403101,0,110,0,116,
54040,95,0,49,0,
540548,0,1,223,1,
54063,1,6,1,5,
54071529,22,1,77,1,
54081449,1530,17,1531,15,
54091126,1,-1,1,5,
54101532,20,1533,4,36,
541183,0,105,0,109,
54120,112,0,108,0,
5413101,0,65,0,115,
54140,115,0,105,0,
5415103,0,110,0,109,
54160,101,0,110,0,
5417116,0,95,0,51,
54180,1,216,1,3,
54191,4,1,3,1534,
542022,1,70,1,1701,
54211535,17,1536,15,1184,
54221,-1,1,5,1537,
542320,1538,4,36,70,
54240,111,0,114,0,
542576,0,111,0,111,
54260,112,0,83,0,
5427116,0,97,0,116,
54280,101,0,109,0,
5429101,0,110,0,116,
54300,95,0,51,0,
54311,210,1,3,1,
54324,1,3,1539,22,
54331,64,1,447,1540,
543417,1541,15,1542,4,
543530,37,0,86,0,
5436101,0,99,0,116,
54370,111,0,114,0,
543867,0,111,0,110,
54390,115,0,116,0,
544097,0,110,0,116,
54410,1,-1,1,5,
54421543,20,1544,4,32,
544386,0,101,0,99,
54440,116,0,111,0,
5445114,0,67,0,111,
54460,110,0,115,0,
5447116,0,97,0,110,
54480,116,0,95,0,
544949,0,1,245,1,
54503,1,8,1,7,
54511545,22,1,99,1,
54522458,904,1,2459,910,
54531,1958,1546,17,1170,
54541,0,1174,1,188,
54551547,17,1548,15,1149,
54561,-1,1,5,1549,
545720,1550,4,36,66,
54740,105,0,110,0, 54580,105,0,110,0,
547597,0,114,0,121, 545997,0,114,0,121,
54760,69,0,120,0, 54600,69,0,120,0,
5477112,0,114,0,101, 5461112,0,114,0,101,
54780,115,0,115,0, 54620,115,0,115,0,
5479105,0,111,0,110, 5463105,0,111,0,110,
54800,95,0,54,0, 54640,95,0,57,0,
54811,255,1,3,1, 54651,267,1,3,1,
54824,1,3,1587,22, 54664,1,3,1551,22,
54831,113,1,478,1588, 54671,121,1,2462,917,
548417,1589,15,1551,1, 54681,1657,922,1,2464,
5469927,1,205,1552,17,
54701553,15,1149,1,-1,
54711,5,1554,20,1555,
54724,36,66,0,105,
54730,110,0,97,0,
5474114,0,121,0,69,
54750,120,0,112,0,
5476114,0,101,0,115,
54770,115,0,105,0,
5478111,0,110,0,95,
54790,56,0,1,266,
54801,3,1,4,1,
54813,1556,22,1,120,
54821,2227,936,1,1224,
54831557,17,1558,15,1126,
54841,-1,1,5,1559,
548520,1560,4,38,83,
54860,105,0,109,0,
5487112,0,108,0,101,
54880,65,0,115,0,
5489115,0,105,0,103,
54900,110,0,109,0,
5491101,0,110,0,116,
54920,95,0,50,0,
549350,0,1,235,1,
54943,1,6,1,5,
54951561,22,1,89,1,
5496223,1562,17,1563,15,
54971149,1,-1,1,5,
54981564,20,1565,4,36,
549966,0,105,0,110,
55000,97,0,114,0,
5501121,0,69,0,120,
55020,112,0,114,0,
5503101,0,115,0,115,
55040,105,0,111,0,
5505110,0,95,0,55,
55060,1,265,1,3,
55071,4,1,3,1566,
550822,1,119,1,1730,
55091567,17,1568,15,1184,
55101,-1,1,5,1569,
551120,1570,4,36,70,
55120,111,0,114,0,
551376,0,111,0,111,
55140,112,0,83,0,
5515116,0,97,0,116,
55160,101,0,109,0,
5517101,0,110,0,116,
55180,95,0,52,0,
55191,211,1,3,1,
55204,1,3,1571,22,
55211,65,1,476,1572,
552217,1573,15,1574,4,
552318,37,0,67,0,
5524111,0,110,0,115,
55250,116,0,97,0,
5526110,0,116,0,1,
5527-1,1,5,1575,20,
55281576,4,20,67,0,
5529111,0,110,0,115,
55300,116,0,97,0,
5531110,0,116,0,95,
55320,52,0,1,243,
55331,3,1,2,1,
55341,1577,22,1,97,
55351,477,1578,17,1579,
553615,1574,1,-1,1,
55375,1580,20,1581,4,
553820,67,0,111,0,
5539110,0,115,0,116,
55400,97,0,110,0,
5541116,0,95,0,51,
55420,1,242,1,3,
55431,2,1,1,1582,
554422,1,96,1,1231,
55451583,17,1584,15,1126,
55461,-1,1,5,1585,
554720,1586,4,36,83,
55480,105,0,109,0,
5549112,0,108,0,101,
55500,65,0,115,0,
5551115,0,105,0,103,
55520,110,0,109,0,
5553101,0,110,0,116,
55540,95,0,57,0,
55551,222,1,3,1,
55566,1,5,1587,22,
55571,76,1,479,1588,
555817,1589,15,1574,1,
5485-1,1,5,1590,20, 5559-1,1,5,1590,20,
54861591,4,20,67,0, 55601591,4,20,67,0,
5487111,0,110,0,115, 5561111,0,110,0,115,
54880,116,0,97,0, 55620,116,0,97,0,
5489110,0,116,0,95, 5563110,0,116,0,95,
54900,50,0,1,232, 55640,49,0,1,240,
54911,3,1,2,1, 55651,3,1,2,1,
54921,1592,22,1,90, 55661,1592,22,1,94,
54931,1370,1593,17,1594, 55671,480,1593,17,1594,
549415,1108,1,-1,1, 556815,1595,4,26,37,
54955,1595,20,1596,4, 55690,76,0,105,0,
549638,83,0,105,0, 5570115,0,116,0,67,
5497109,0,112,0,108, 55710,111,0,110,0,
54980,101,0,65,0, 5572115,0,116,0,97,
5499115,0,115,0,105, 55730,110,0,116,0,
55000,103,0,110,0, 55741,-1,1,5,1596,
5501109,0,101,0,110, 557520,1597,4,28,76,
55760,105,0,115,0,
5577116,0,67,0,111,
55780,110,0,115,0,
5579116,0,97,0,110,
55020,116,0,95,0, 55800,116,0,95,0,
550349,0,56,0,1, 558149,0,1,244,1,
5504222,1,3,1,4, 55823,1,4,1,3,
55051,3,1597,22,1, 55831598,22,1,98,1,
550680,1,1001,1598,17, 55841485,1599,17,1600,15,
55071599,15,1234,1,-1, 55851126,1,-1,1,5,
55081,5,1600,20,1601, 55861601,20,1602,4,36,
55094,40,84,0,121, 558783,0,105,0,109,
55100,112,0,101,0, 55880,112,0,108,0,
551199,0,97,0,115, 5589101,0,65,0,115,
55120,116,0,69,0, 55900,115,0,105,0,
5591103,0,110,0,109,
55920,101,0,110,0,
5593116,0,95,0,50,
55940,1,215,1,3,
55951,4,1,3,1603,
559622,1,69,1,1737,
55971604,16,0,271,1,
55981989,944,1,1990,1605,
559917,1170,1,0,1174,
56001,242,1606,17,1607,
560115,1149,1,-1,1,
56025,1608,20,1609,4,
560336,66,0,105,0,
5604110,0,97,0,114,
56050,121,0,69,0,
5513120,0,112,0,114, 5606120,0,112,0,114,
55140,101,0,115,0, 56070,101,0,115,0,
5515115,0,105,0,111, 5608115,0,105,0,111,
55160,110,0,95,0, 56090,110,0,95,0,
551756,0,1,280,1, 561054,0,1,264,1,
55183,1,5,1,4, 56113,1,4,1,3,
55191602,22,1,138,1, 56121610,22,1,118,1,
55201002,1603,17,1604,15, 5613478,1611,17,1612,15,
55211234,1,-1,1,5, 56141574,1,-1,1,5,
55221605,20,1606,4,40, 56151613,20,1614,4,20,
552384,0,121,0,112, 561667,0,111,0,110,
55240,101,0,99,0, 56170,115,0,116,0,
552597,0,115,0,116, 561897,0,110,0,116,
55260,69,0,120,0, 56190,95,0,50,0,
5527112,0,114,0,101, 56201,241,1,3,1,
55280,115,0,115,0, 56212,1,1,1615,22,
5529105,0,111,0,110, 56221,95,1,1001,1616,
55300,95,0,49,0, 562317,1617,15,1252,1,
55311,273,1,3,1, 5624-1,1,5,1618,20,
55325,1,4,1607,22, 56251619,4,40,84,0,
55331,131,1,12,1608, 5626121,0,112,0,101,
553419,163,1,12,1609, 56270,99,0,97,0,
55355,44,1,1901,1610, 5628115,0,116,0,69,
553616,0,161,1,2075, 56290,120,0,112,0,
55371611,16,0,161,1, 5630114,0,101,0,115,
55381860,831,1,1803,797, 56310,115,0,105,0,
55391,1804,1612,16,0, 5632111,0,110,0,95,
5540161,1,2413,1613,16, 56330,56,0,1,289,
55410,161,1,2198,1614, 56341,3,1,5,1,
554216,0,161,1,1873, 56354,1620,22,1,143,
5543845,1,1657,903,1, 56361,1002,1621,17,1622,
55441989,925,1,1990,1615, 563715,1252,1,-1,1,
554516,0,161,1,31, 56385,1623,20,1624,4,
55461616,16,0,161,1, 563940,84,0,121,0,
554732,1617,16,0,161, 5640112,0,101,0,99,
55481,2105,824,1,2106, 56410,97,0,115,0,
55491618,16,0,161,1, 5642116,0,69,0,120,
55502227,917,1,2337,1619, 56430,112,0,114,0,
555116,0,161,1,2665, 5644101,0,115,0,115,
55521620,16,0,161,1, 56450,105,0,111,0,
55532021,728,1,2458,885, 5646110,0,95,0,49,
55541,2459,891,1,2462, 56470,1,282,1,3,
5555898,1,2136,852,1, 56481,5,1,4,1625,
55562464,908,1,2029,735, 564922,1,136,1,12,
55571,2030,741,1,2031, 56501626,19,157,1,12,
5558746,1,2032,751,1, 56511627,5,45,1,1901,
55592469,1621,16,0,468, 56521628,16,0,155,1,
55601,2035,762,1,2364, 56532075,1629,16,0,155,
5561837,1,2039,772,1, 56541,1860,850,1,1803,
55621931,870,1,2041,778, 5655816,1,2516,1630,16,
55631,2507,1622,16,0, 56560,155,1,2413,1631,
5564161,1,2043,784,1, 565716,0,155,1,1804,
55652045,789,1,1775,1623, 56581632,16,0,155,1,
556616,0,161,1,2568, 56592198,1633,16,0,155,
55671624,16,0,583,1, 56601,1873,864,1,1657,
55682033,756,1,2522,1625, 5661922,1,2531,1634,16,
556916,0,161,1,2037, 56620,155,1,1989,944,
5570767,1,1574,809,1, 56631,1990,1635,16,0,
55711958,1626,16,0,161, 5664155,1,31,1636,16,
55721,13,1627,19,151, 56650,155,1,32,1637,
55731,13,1628,5,37, 566616,0,155,1,2105,
55741,2509,1629,17,1630, 5667843,1,2106,1638,16,
557515,1631,4,36,37, 56680,155,1,2681,1639,
55760,86,0,111,0, 566916,0,155,1,2580,
56701640,16,0,316,1,
56712227,936,1,2337,1641,
567216,0,155,1,2021,
5673747,1,2458,904,1,
56742459,910,1,2462,917,
56751,2136,871,1,2464,
5676927,1,2029,754,1,
56772030,760,1,2031,765,
56781,2032,770,1,2469,
56791642,16,0,479,1,
56802035,781,1,2364,856,
56811,2039,791,1,1931,
5682889,1,2041,797,1,
56832507,1643,16,0,155,
56841,2043,803,1,2045,
5685808,1,1775,1644,16,
56860,155,1,2033,775,
56871,2037,786,1,1574,
5688828,1,1958,1645,16,
56890,155,1,13,1646,
569019,324,1,13,1647,
56915,40,1,2509,1648,
569217,1649,15,1650,4,
569336,37,0,86,0,
5694111,0,105,0,100,
56950,65,0,114,0,
5696103,0,83,0,116,
56970,97,0,116,0,
5698101,0,69,0,118,
56990,101,0,110,0,
5700116,0,1,-1,1,
57015,1651,20,1652,4,
570238,86,0,111,0,
5577105,0,100,0,65, 5703105,0,100,0,65,
55780,114,0,103,0, 57040,114,0,103,0,
557983,0,116,0,97, 570583,0,116,0,97,
55800,116,0,101,0, 57060,116,0,101,0,
558169,0,118,0,101, 570769,0,118,0,101,
55820,110,0,116,0, 57080,110,0,116,0,
55831,-1,1,5,1632, 570995,0,49,0,1,
558420,1633,4,38,86, 5710170,1,3,1,5,
55850,111,0,105,0, 57111,4,1653,22,1,
5586100,0,65,0,114, 571223,1,2619,1654,16,
55870,103,0,83,0, 57130,322,1,1860,850,
5588116,0,97,0,116, 57141,1803,816,1,2518,
55890,101,0,69,0, 57151655,17,1656,15,1657,
5590118,0,101,0,110, 57164,34,37,0,73,
55910,116,0,95,0, 57170,110,0,116,0,
559249,0,1,163,1, 571865,0,114,0,103,
55933,1,5,1,4, 57190,83,0,116,0,
55941634,22,1,20,1,
55951860,831,1,1803,797,
55961,2413,1635,16,0,
5597462,1,2524,1636,17,
55981637,15,1638,4,22,
559937,0,83,0,116,
56000,97,0,116,0,
5601101,0,69,0,118,
56020,101,0,110,0,
5603116,0,1,-1,1,
56045,1639,20,1640,4,
560524,83,0,116,0,
560697,0,116,0,101, 572097,0,116,0,101,
56070,69,0,118,0, 57210,69,0,118,0,
5608101,0,110,0,116, 5722101,0,110,0,116,
56090,95,0,49,0, 57230,1,-1,1,5,
56101,162,1,3,1, 57241658,20,1659,4,36,
56116,1,5,1641,22, 572573,0,110,0,116,
56121,19,1,2526,1642, 57260,65,0,114,0,
561316,0,478,1,1873, 5727103,0,83,0,116,
5614845,1,1657,903,1, 57280,97,0,116,0,
56151989,925,1,32,1643, 5729101,0,69,0,118,
561616,0,463,1,2567, 57300,101,0,110,0,
56171644,17,1645,15,1646, 5731116,0,95,0,49,
56184,20,37,0,83, 57320,1,169,1,3,
56190,116,0,97,0, 57331,6,1,5,1660,
5620116,0,101,0,66, 573422,1,22,1,2413,
56210,111,0,100,0, 57351661,16,0,473,1,
5622121,0,1,-1,1, 57361873,864,1,1657,922,
56235,1647,20,1648,4, 57371,2032,770,1,1989,
562422,83,0,116,0, 5738944,1,2535,1662,16,
562597,0,116,0,101, 57390,674,1,2037,786,
56260,66,0,111,0, 57401,32,1663,16,0,
5627100,0,121,0,95, 5741474,1,2105,843,1,
56280,49,0,1,158, 57422573,1664,17,1665,15,
56291,3,1,2,1, 57431666,4,20,37,0,
56301,1649,22,1,15, 574483,0,116,0,97,
56311,2105,824,1,2364, 57450,116,0,101,0,
5632837,1,2227,917,1, 574666,0,111,0,100,
56331574,809,1,2563,1650, 57470,121,0,1,-1,
563417,1651,15,1646,1, 57481,5,1667,20,1668,
5635-1,1,5,1652,20, 57494,22,83,0,116,
56361653,4,22,83,0, 57500,97,0,116,0,
5637116,0,97,0,116, 5751101,0,66,0,111,
56380,101,0,66,0, 57520,100,0,121,0,
5639111,0,100,0,121, 575395,0,54,0,1,
56400,95,0,52,0, 5754167,1,3,1,3,
56411,161,1,3,1, 57551,2,1669,22,1,
56423,1,2,1654,22, 575620,1,2574,1670,17,
56431,18,1,2564,1655, 57571671,15,1666,1,-1,
564417,1656,15,1646,1, 57581,5,1672,20,1673,
5645-1,1,5,1657,20, 57594,22,83,0,116,
56461658,4,22,83,0, 57600,97,0,116,0,
5761101,0,66,0,111,
57620,100,0,121,0,
576395,0,52,0,1,
5764165,1,3,1,3,
57651,2,1674,22,1,
576618,1,2575,1675,17,
57671676,15,1666,1,-1,
57681,5,1677,20,1678,
57694,22,83,0,116,
57700,97,0,116,0,
5771101,0,66,0,111,
57720,100,0,121,0,
577395,0,50,0,1,
5774163,1,3,1,3,
57751,2,1679,22,1,
577616,1,2578,1680,17,
57771681,15,1666,1,-1,
57781,5,1682,20,1683,
57794,22,83,0,116,
57800,97,0,116,0,
5781101,0,66,0,111,
57820,100,0,121,0,
578395,0,51,0,1,
5784164,1,3,1,2,
57851,1,1684,22,1,
578617,1,2227,936,1,
57871574,828,1,2021,747,
57881,2458,904,1,2459,
5789910,1,2462,917,1,
57902136,871,1,2464,927,
57911,2029,754,1,2030,
5792760,1,2031,765,1,
57932577,1685,17,1686,15,
57941666,1,-1,1,5,
57951687,20,1688,4,22,
579683,0,116,0,97,
57970,116,0,101,0,
579866,0,111,0,100,
57990,121,0,95,0,
580053,0,1,166,1,
58013,1,2,1,1,
58021689,22,1,19,1,
58032033,775,1,2579,1690,
580417,1691,15,1666,1,
5805-1,1,5,1692,20,
58061693,4,22,83,0,
5647116,0,97,0,116, 5807116,0,97,0,116,
56480,101,0,66,0, 58080,101,0,66,0,
5649111,0,100,0,121, 5809111,0,100,0,121,
56500,95,0,50,0, 58100,95,0,49,0,
56511,159,1,3,1, 58111,162,1,3,1,
56523,1,2,1659,22, 58122,1,1,1694,22,
56531,16,1,2566,1660, 58131,15,1,2035,781,
565417,1661,15,1646,1, 58141,2364,856,1,2039,
5655-1,1,5,1662,20, 5815791,1,1931,889,1,
56561663,4,22,83,0, 58162041,797,1,2043,803,
58171,2045,808,1,2533,
58181695,17,1696,15,1697,
58194,22,37,0,83,
58200,116,0,97,0,
5821116,0,101,0,69,
58220,118,0,101,0,
5823110,0,116,0,1,
5824-1,1,5,1698,20,
58251699,4,24,83,0,
5657116,0,97,0,116, 5826116,0,97,0,116,
56580,101,0,66,0, 58270,101,0,69,0,
5659111,0,100,0,121, 5828118,0,101,0,110,
56600,95,0,51,0, 58290,116,0,95,0,
56611,160,1,3,1, 583049,0,1,168,1,
56622,1,1,1664,22, 58313,1,6,1,5,
56631,17,1,2458,885, 58321700,22,1,21,1,
56641,2459,891,1,2462, 583314,1701,19,144,1,
5665898,1,2136,852,1, 583414,1702,5,105,1,
56662464,908,1,2029,735, 58351260,1124,1,1011,1130,
56671,2030,741,1,2031, 58361,1514,1136,1,9,
5668746,1,2032,751,1, 58371141,1,10,1703,17,
56692033,756,1,2035,762, 58381704,15,1705,4,48,
56701,2037,767,1,2039, 583937,0,65,0,114,
5671772,1,1931,870,1, 58400,103,0,117,0,
56722041,778,1,2021,728, 5841109,0,101,0,110,
56731,2043,784,1,2045, 58420,116,0,68,0,
5674789,1,2606,1665,16, 5843101,0,99,0,108,
56750,149,1,14,1666, 58440,97,0,114,0,
567619,144,1,14,1667, 584597,0,116,0,105,
56775,105,1,2511,1668, 58460,111,0,110,0,
567817,1669,15,1670,4, 584776,0,105,0,115,
567948,37,0,65,0, 58480,116,0,1,-1,
5680114,0,103,0,117, 58491,5,140,1,0,
56810,109,0,101,0, 58501,0,1706,22,1,
5682110,0,116,0,68, 585124,1,262,1147,1,
56830,101,0,99,0, 58521267,1153,1,1521,1158,
5684108,0,97,0,114, 58531,1773,1707,16,0,
56850,97,0,116,0, 5854148,1,19,1175,1,
5686105,0,111,0,110, 585520,1708,16,0,142,
56870,76,0,105,0, 58561,2281,1182,1,525,
5688115,0,116,0,1, 58571244,1,30,1709,17,
5689-1,1,5,140,1, 58581710,15,1705,1,-1,
56900,1,0,1671,22, 58591,5,1711,20,1712,
56911,21,1,1260,1106,
56921,1011,1112,1,1514,
56931118,1,9,1123,1,
569410,1672,17,1673,15,
56951670,1,-1,1,5,
5696140,1,0,1,0,
56971671,1,262,1129,1,
56981267,1135,1,1521,1140,
56991,1773,1674,16,0,
5700148,1,19,1157,1,
570120,1675,16,0,142,
57021,2281,1164,1,525,
57031226,1,30,1676,17,
57041677,15,1670,1,-1,
57051,5,1678,20,1679,
57064,50,65,0,114, 58604,50,65,0,114,
57070,103,0,117,0, 58610,103,0,117,0,
5708109,0,101,0,110, 5862109,0,101,0,110,
@@ -5713,21 +5867,21 @@ public yyLSLSyntax
57130,111,0,110,0, 58670,111,0,110,0,
571476,0,105,0,115, 586876,0,105,0,115,
57150,116,0,95,0, 58690,116,0,95,0,
571650,0,1,165,1, 587050,0,1,172,1,
57173,1,4,1,3, 58713,1,4,1,3,
57181680,22,1,23,1, 58721713,22,1,26,1,
5719283,1182,1,40,1187, 5873283,1200,1,40,1205,
57201,41,1681,17,1682, 58741,41,1714,17,1715,
572115,1683,4,26,37, 587515,1716,4,26,37,
57220,65,0,114,0, 58760,65,0,114,0,
5723103,0,117,0,109, 5877103,0,117,0,109,
57240,101,0,110,0, 58780,101,0,110,0,
5725116,0,76,0,105, 5879116,0,76,0,105,
57260,115,0,116,0, 58800,115,0,116,0,
57271,-1,1,5,617, 58811,-1,1,5,631,
57281,0,1,0,1684, 58821,0,1,0,1717,
572922,1,141,1,42, 588322,1,146,1,42,
57301685,17,1686,15,1687, 58841718,17,1719,15,1720,
57314,38,37,0,69, 58854,38,37,0,69,
57320,120,0,112,0, 58860,120,0,112,0,
5733114,0,101,0,115, 5887114,0,101,0,115,
@@ -5736,8 +5890,8 @@ public yyLSLSyntax
57360,114,0,103,0, 58900,114,0,103,0,
5737117,0,109,0,101, 5891117,0,109,0,101,
57380,110,0,116,0, 58920,110,0,116,0,
57391,-1,1,5,1688, 58931,-1,1,5,1721,
574020,1689,4,40,69, 589420,1722,4,40,69,
57410,120,0,112,0, 58950,120,0,112,0,
5742114,0,101,0,115, 5896114,0,101,0,115,
57430,115,0,105,0, 58970,115,0,105,0,
@@ -5746,2885 +5900,2875 @@ public yyLSLSyntax
5746117,0,109,0,101, 5900117,0,109,0,101,
57470,110,0,116,0, 59010,110,0,116,0,
574895,0,49,0,1, 590295,0,49,0,1,
5749285,1,3,1,2, 5903294,1,3,1,2,
57501,1,1690,22,1, 59041,1,1723,22,1,
5751144,1,44,1193,1, 5905149,1,44,1211,1,
575247,1194,1,48,1200, 590647,1212,1,48,1218,
57531,49,1206,1,50, 59071,49,1224,1,50,
57541211,1,51,1216,1, 59081229,1,51,1234,1,
5755305,1221,1,63,1232, 5909305,1239,1,63,1250,
57561,66,1238,1,67, 59101,66,1256,1,67,
57571243,1,1478,1463,1, 59111261,1,1478,1485,1,
575869,1253,1,70,1258, 591269,1271,1,70,1276,
57591,68,1248,1,74, 59131,68,1266,1,74,
57601263,1,1013,1268,1, 59141281,1,1013,1286,1,
57612335,1691,16,0,148, 59152335,1724,16,0,148,
57621,1332,1273,1,1048, 59161,1332,1291,1,1048,
57631354,1,82,1290,1, 59171372,1,82,1308,1,
57641296,1177,1,1341,1307, 59181296,1195,1,1341,1325,
57651,328,1312,1,1303, 59191,328,1330,1,1303,
57661317,1,1096,1322,1, 59201335,1,1096,1340,1,
576793,1328,1,1550,1333, 592193,1346,1,1550,1351,
57681,352,1359,1,107, 59221,2529,1725,16,0,
57691348,1,1114,1353,1, 5923142,1,352,1377,1,
57701370,1593,1,118,1365, 5924107,1366,1,1114,1371,
57711,1123,1370,1,371, 59251,1370,1480,1,118,
57721375,1,1377,1381,1, 59261383,1,1123,1388,1,
5773375,1386,1,377,1391, 5927371,1393,1,1377,1399,
57741,379,1396,1,380, 59281,375,1404,1,377,
57751401,1,883,1407,1, 59291409,1,379,1414,1,
5776373,1419,1,130,1424, 5930380,1419,1,883,1425,
57771,143,1429,1,2654, 59311,373,1437,1,130,
57781692,17,1693,15,1670, 59321442,1,143,1447,1,
59331152,1453,1,387,1726,
593416,0,580,1,1406,
59351458,1,1159,1465,1,
5936157,1470,1,1413,1475,
59371,1665,1502,1,2670,
59381727,17,1728,15,1705,
57791,-1,1,5,140, 59391,-1,1,5,140,
57801,0,1,0,1671, 59401,0,1,0,1706,
57811,1152,1435,1,387, 59411,412,1729,16,0,
57821694,16,0,566,1, 5942598,1,1094,1730,16,
57831406,1440,1,2663,1695, 59430,633,1,2679,1731,
578416,0,142,1,1159, 594416,0,142,1,2520,
57851447,1,157,1452,1, 59451732,17,1733,15,1705,
57861413,1457,1,1665,1475, 59461,-1,1,5,140,
57871,412,1696,16,0, 59471,0,1,0,1706,
5788591,1,1094,1697,16, 59481,172,1496,1,827,
57890,619,1,2520,1698, 59491359,1,1188,1508,1,
579016,0,142,1,172, 5950437,1734,16,0,670,
57911470,1,827,1341,1, 59511,1442,1513,1,1694,
57921188,1480,1,437,1699, 59521735,16,0,148,1,
579316,0,660,1,1442, 5953942,1519,1,1195,1525,
57941485,1,1694,1700,16, 59541,1449,1530,1,1701,
57950,148,1,942,1491, 59551535,1,447,1540,1,
57961,1195,1497,1,1449, 5956188,1547,1,205,1552,
57971502,1,1701,1507,1, 59571,2467,1736,17,1737,
5798447,1512,1,188,1519, 595815,1705,1,-1,1,
57991,205,1524,1,2467, 59595,1738,20,1739,4,
58001701,17,1702,15,1670, 596050,65,0,114,0,
58011,-1,1,5,1703, 5961103,0,117,0,109,
580220,1704,4,50,65, 59620,101,0,110,0,
58030,114,0,103,0, 5963116,0,68,0,101,
5804117,0,109,0,101, 59640,99,0,108,0,
58050,110,0,116,0, 596597,0,114,0,97,
580668,0,101,0,99, 59660,116,0,105,0,
58070,108,0,97,0, 5967111,0,110,0,76,
5808114,0,97,0,116, 59680,105,0,115,0,
58090,105,0,111,0, 5969116,0,95,0,49,
5810110,0,76,0,105, 59700,1,171,1,3,
59711,2,1,1,1740,
597222,1,25,1,461,
59731741,16,0,633,1,
5974464,1742,17,1743,15,
59751716,1,-1,1,5,
59761744,20,1745,4,28,
597765,0,114,0,103,
59780,117,0,109,0,
5979101,0,110,0,116,
59800,76,0,105,0,
5981115,0,116,0,95,
59820,50,0,1,293,
59831,3,1,4,1,
59843,1746,22,1,148,
59851,1224,1557,1,223,
59861562,1,1730,1567,1,
5987476,1572,1,477,1578,
59881,1231,1583,1,479,
59891588,1,480,1593,1,
59901485,1599,1,459,1747,
599117,1748,15,1716,1,
5992-1,1,5,631,1,
59930,1,0,1717,1,
5994242,1606,1,478,1611,
59951,481,1749,17,1750,
599615,1716,1,-1,1,
59975,1751,20,1752,4,
599828,65,0,114,0,
5999103,0,117,0,109,
60000,101,0,110,0,
6001116,0,76,0,105,
58110,115,0,116,0, 60020,115,0,116,0,
581295,0,49,0,1, 600395,0,49,0,1,
5813164,1,3,1,2, 6004292,1,3,1,2,
58141,1,1705,22,1, 60051,1,1753,22,1,
581522,1,461,1706,16, 6006147,1,1001,1616,1,
58160,619,1,464,1707, 60071002,1621,1,15,1754,
581717,1708,15,1683,1, 600819,298,1,15,1755,
5818-1,1,5,1709,20, 60095,6,1,2685,1756,
58191710,4,28,65,0, 601016,0,625,1,1114,
5820114,0,103,0,117, 60111757,16,0,296,1,
58210,109,0,101,0, 60121621,1758,16,0,669,
5822110,0,116,0,76, 60131,40,1759,16,0,
58230,105,0,115,0, 6014577,1,19,1175,1,
5824116,0,95,0,50, 60159,1141,1,16,1760,
58250,1,284,1,3, 601619,136,1,16,1761,
58261,4,1,3,1711, 60175,141,1,2510,1762,
582722,1,143,1,1224, 601816,0,614,1,256,
58281534,1,223,1539,1, 60191763,16,0,187,1,
58291730,1544,1,476,1549, 60201261,1764,16,0,187,
58301,477,1555,1,1231, 60211,509,1765,16,0,
58311560,1,479,1565,1, 6022187,1,9,1766,16,
5832480,1570,1,1485,1576, 60230,134,1,2686,1767,
58331,459,1712,17,1713, 602416,0,187,1,2021,
583415,1683,1,-1,1, 6025747,1,1775,1768,16,
58355,617,1,0,1, 60260,187,1,2029,754,
58360,1684,1,242,1583, 60271,2030,760,1,2031,
58371,478,1588,1,481, 6028765,1,2032,770,1,
58381714,17,1715,15,1683, 60292033,775,1,277,1769,
58391,-1,1,5,1716, 603016,0,187,1,2035,
584020,1717,4,28,65, 6031781,1,2037,786,1,
58410,114,0,103,0, 60322039,791,1,32,1770,
5842117,0,109,0,101, 603316,0,187,1,2041,
6034797,1,2293,1771,16,
60350,187,1,2043,803,
60361,2045,808,1,40,
60371772,16,0,166,1,
603841,1773,16,0,187,
60391,1297,1774,16,0,
6040187,1,43,1775,16,
60410,187,1,44,1776,
604216,0,166,1,1803,
6043816,1,1804,1777,16,
60440,187,1,299,1778,
604516,0,187,1,2480,
60461779,17,1780,15,1781,
60474,24,37,0,73,
58430,110,0,116,0, 60480,110,0,116,0,
584476,0,105,0,115, 604965,0,114,0,103,
58450,116,0,95,0,
584649,0,1,283,1,
58473,1,2,1,1,
58481718,22,1,142,1,
58491001,1598,1,1002,1603,
58501,15,1719,19,308,
58511,15,1720,5,6,
58521,2669,1721,16,0,
5853601,1,1114,1722,16,
58540,306,1,1621,1723,
585516,0,659,1,40,
58561724,16,0,562,1,
585719,1157,1,9,1123,
58581,16,1725,19,136,
58591,16,1726,5,140,
58601,2510,1727,16,0,
5861602,1,256,1728,16,
58620,196,1,1261,1729,
586316,0,196,1,509,
58641730,16,0,196,1,
58659,1731,16,0,134,
58661,2021,728,1,1775,
58671732,16,0,196,1,
58682029,735,1,2030,741,
58691,2031,746,1,2032,
5870751,1,2033,756,1,
5871277,1733,16,0,196,
58721,2035,762,1,2037,
5873767,1,2039,772,1,
587432,1734,16,0,196,
58751,2041,778,1,2293,
58761735,16,0,196,1,
58772043,784,1,2045,789,
58781,40,1736,16,0,
5879175,1,41,1737,16,
58800,196,1,1297,1738,
588116,0,196,1,43,
58821739,16,0,196,1,
588344,1740,16,0,175,
58841,1803,797,1,1804,
58851741,16,0,196,1,
5886299,1742,16,0,196,
58871,2480,1743,17,1744,
588815,1745,4,12,37,
58890,69,0,118,0, 60500,69,0,118,0,
5890101,0,110,0,116, 6051101,0,110,0,116,
58910,1,-1,1,5, 60520,1,-1,1,5,
58921746,20,1747,4,16, 60531782,20,1783,4,26,
589369,0,118,0,101, 605473,0,110,0,116,
58940,110,0,116,0, 60550,65,0,114,0,
589595,0,50,0,53, 6056103,0,69,0,118,
58960,1,317,1,3, 60570,101,0,110,0,
58971,2,1,1,1748, 6058116,0,95,0,56,
589822,1,176,1,52, 60590,1,326,1,3,
58991749,16,0,196,1, 60601,2,1,1,1784,
59002484,1750,17,1751,15, 606122,1,181,1,52,
59011745,1,-1,1,5, 60621785,16,0,187,1,
59021752,20,1753,4,16, 60632484,1786,17,1787,15,
60641781,1,-1,1,5,
60651788,20,1789,4,26,
606673,0,110,0,116,
60670,65,0,114,0,
6068103,0,69,0,118,
60690,101,0,110,0,
6070116,0,95,0,52,
60710,1,322,1,3,
60721,2,1,1,1790,
607322,1,177,1,1515,
60741791,16,0,187,1,
60752318,1792,16,0,187,
60761,2491,1793,17,1794,
607715,1795,4,12,37,
60780,69,0,118,0,
6079101,0,110,0,116,
60800,1,-1,1,5,
60811796,20,1797,4,16,
590369,0,118,0,101, 608269,0,118,0,101,
59040,110,0,116,0, 60830,110,0,116,0,
590595,0,50,0,49, 608495,0,49,0,52,
59060,1,313,1,3, 60850,1,315,1,3,
59071,2,1,1,1754, 60861,2,1,1,1798,
590822,1,172,1,1515, 608722,1,170,1,62,
59091755,16,0,196,1, 60881799,16,0,203,1,
59102318,1756,16,0,196, 608963,1800,16,0,166,
59111,2491,1757,17,1758, 60901,2495,1801,17,1802,
591215,1745,1,-1,1, 609115,1795,1,-1,1,
59135,1759,20,1760,4, 60925,1803,20,1804,4,
591416,69,0,118,0, 609316,69,0,118,0,
5915101,0,110,0,116, 6094101,0,110,0,116,
59160,95,0,49,0, 60950,95,0,49,0,
591752,0,1,306,1, 609648,0,1,311,1,
59183,1,2,1,1, 60973,1,2,1,1,
59191761,22,1,165,1, 60981805,22,1,166,1,
592062,1762,16,0,212, 60992075,1806,16,0,187,
59211,63,1763,16,0, 61001,1574,828,1,1479,
5922175,1,2495,1764,17, 61011807,16,0,187,1,
59231765,15,1745,1,-1, 610271,1808,16,0,187,
59241,5,1766,20,1767, 61031,1658,1809,16,0,
59254,16,69,0,118, 6104699,1,1833,1810,16,
59260,101,0,110,0, 61050,288,1,1834,1811,
5927116,0,95,0,49, 610616,0,187,1,2337,
59280,48,0,1,302, 61071812,16,0,187,1,
59291,3,1,2,1, 610879,1813,16,0,187,
59301,1768,22,1,161, 61091,1335,1814,16,0,
59311,2075,1769,16,0, 6110187,1,322,1815,16,
5932196,1,1574,809,1, 61110,187,1,76,1816,
59331479,1770,16,0,196, 611216,0,187,1,85,
59341,71,1771,16,0, 61131817,16,0,187,1,
5935196,1,1622,1772,16, 611489,1818,16,0,187,
59360,196,1,1658,1773, 61151,346,1819,16,0,
593716,0,682,1,1833, 6116187,1,97,1820,16,
59381774,16,0,297,1, 61170,187,1,2106,1821,
59391834,1775,16,0,196, 611816,0,187,1,102,
59401,2337,1776,16,0, 61191822,16,0,187,1,
5941196,1,79,1777,16, 61201860,850,1,2458,904,
59420,196,1,1335,1778, 61211,2364,856,1,1990,
594316,0,196,1,322, 61221823,16,0,187,1,
59441779,16,0,196,1, 6123112,1824,16,0,187,
594576,1780,16,0,196, 61241,1117,1825,16,0,
59461,85,1781,16,0, 6125187,1,1873,864,1,
5947196,1,89,1782,16, 61261875,1826,16,0,409,
59480,196,1,346,1783, 61271,1876,1827,16,0,
594916,0,196,1,97, 6128187,1,124,1828,16,
59501784,16,0,196,1, 61290,187,1,2478,1829,
59512106,1785,16,0,196, 613017,1830,15,1781,1,
59521,102,1786,16,0, 6131-1,1,5,1831,20,
5953196,1,1860,831,1, 61321832,4,28,73,0,
59542458,885,1,2364,837, 6133110,0,116,0,65,
59551,1990,1787,16,0,
5956196,1,112,1788,16,
59570,196,1,1117,1789,
595816,0,196,1,1873,
5959845,1,1875,1790,16,
59600,408,1,1876,1791,
596116,0,196,1,124,
59621792,16,0,196,1,
59632478,1793,17,1794,15,
59641745,1,-1,1,5,
59651795,20,1796,4,16,
596669,0,118,0,101,
59670,110,0,116,0,
596895,0,50,0,55,
59690,1,319,1,3,
59701,2,1,1,1797,
597122,1,178,1,2136,
5972852,1,381,1798,16,
59730,196,1,525,1799,
597416,0,196,1,137,
59751800,16,0,196,1,
59762653,1801,16,0,586,
59771,1901,1802,16,0,
5978196,1,1153,1803,16,
59790,196,1,151,1804,
598016,0,196,1,1407,
59811805,16,0,196,1,
59821659,1806,16,0,196,
59831,2413,1807,16,0,
5984196,1,406,1808,16,
59850,196,1,1371,1809,
598616,0,196,1,2105,
5987824,1,166,1810,16,
59880,196,1,2670,1811,
598916,0,196,1,1931,
5990870,1,1932,1812,16,
59910,470,1,1933,1813,
599216,0,196,1,431,
59931814,16,0,196,1,
59941585,1815,16,0,196,
59951,182,1816,16,0,
5996196,1,1189,1817,16,
59970,196,1,1443,1818,
599816,0,196,1,1695,
59991819,16,0,196,1,
60002198,1820,16,0,196,
60011,447,1821,16,0,
6002196,1,199,1822,16,
60030,196,1,2459,891,
60041,1958,1823,16,0,
6005196,1,2462,898,1,
60061657,903,1,2464,908,
60071,459,1824,16,0,
6008196,1,462,1825,16,
60090,196,1,2471,1826,
601017,1827,15,1828,4,
601126,37,0,86,0,
6012111,0,105,0,100,
60130,65,0,114,0,
6014103,0,69,0,118,
60150,101,0,110,0,
6016116,0,1,-1,1,
60175,1829,20,1830,4,
601828,86,0,111,0,
6019105,0,100,0,65,
60200,114,0,103,0, 61340,114,0,103,0,
602169,0,118,0,101, 613569,0,118,0,101,
60220,110,0,116,0, 61360,110,0,116,0,
602395,0,55,0,1, 613795,0,49,0,48,
6024326,1,3,1,2, 61380,1,328,1,3,
60251,1,1831,22,1, 61391,2,1,1,1833,
6026185,1,2472,1832,17, 614022,1,183,1,2136,
60271833,15,1828,1,-1, 6141871,1,381,1834,16,
60281,5,1834,20,1835, 61420,187,1,525,1835,
614316,0,187,1,137,
61441836,16,0,187,1,
61451901,1837,16,0,187,
61461,1153,1838,16,0,
6147187,1,151,1839,16,
61480,187,1,1407,1840,
614916,0,187,1,1659,
61501841,16,0,187,1,
61512413,1842,16,0,187,
61521,406,1843,16,0,
6153187,1,2669,1844,16,
61540,613,1,1371,1845,
615516,0,187,1,2105,
6156843,1,166,1846,16,
61570,187,1,1622,1847,
615816,0,187,1,2519,
61591848,16,0,619,1,
61601931,889,1,1932,1849,
616116,0,481,1,1933,
61621850,16,0,187,1,
6163431,1851,16,0,187,
61641,1585,1852,16,0,
6165187,1,182,1853,16,
61660,187,1,1189,1854,
616716,0,187,1,1443,
61681855,16,0,187,1,
61691695,1856,16,0,187,
61701,2198,1857,16,0,
6171187,1,447,1858,16,
61720,187,1,199,1859,
617316,0,187,1,2459,
6174910,1,1958,1860,16,
61750,187,1,2462,917,
61761,1657,922,1,2464,
6177927,1,459,1861,16,
61780,187,1,462,1862,
617916,0,187,1,2471,
61801863,17,1864,15,1865,
61814,26,37,0,86,
61820,111,0,105,0,
6183100,0,65,0,114,
61840,103,0,69,0,
6185118,0,101,0,110,
61860,116,0,1,-1,
61871,5,1866,20,1867,
60294,28,86,0,111, 61884,28,86,0,111,
60300,105,0,100,0, 61890,105,0,100,0,
603165,0,114,0,103, 619065,0,114,0,103,
60320,69,0,118,0, 61910,69,0,118,0,
6033101,0,110,0,116, 6192101,0,110,0,116,
60340,95,0,54,0, 61930,95,0,55,0,
60351,325,1,3,1, 61941,335,1,3,1,
60362,1,1,1836,22, 61952,1,1,1868,22,
60371,184,1,2473,1837, 61961,190,1,2472,1869,
603817,1838,15,1828,1, 619717,1870,15,1865,1,
6039-1,1,5,1839,20, 6198-1,1,5,1871,20,
60401840,4,28,86,0, 61991872,4,28,86,0,
6041111,0,105,0,100, 6200111,0,105,0,100,
60420,65,0,114,0, 62010,65,0,114,0,
6043103,0,69,0,118, 6202103,0,69,0,118,
60440,101,0,110,0, 62030,101,0,110,0,
6045116,0,95,0,53, 6204116,0,95,0,54,
60460,1,324,1,3, 62050,1,334,1,3,
60471,2,1,1,1841, 62061,2,1,1,1873,
604822,1,183,1,2474, 620722,1,189,1,2473,
60491842,17,1843,15,1828, 62081874,17,1875,15,1865,
60501,-1,1,5,1844, 62091,-1,1,5,1876,
605120,1845,4,28,86, 621020,1877,4,28,86,
60520,111,0,105,0, 62110,111,0,105,0,
6053100,0,65,0,114, 6212100,0,65,0,114,
60540,103,0,69,0, 62130,103,0,69,0,
6055118,0,101,0,110, 6214118,0,101,0,110,
60560,116,0,95,0, 62150,116,0,95,0,
605752,0,1,323,1, 621653,0,1,333,1,
60583,1,2,1,1, 62173,1,2,1,1,
60591846,22,1,182,1, 62181878,22,1,188,1,
60602475,1847,17,1848,15, 62192474,1879,17,1880,15,
60611828,1,-1,1,5, 62201865,1,-1,1,5,
60621849,20,1850,4,28, 62211881,20,1882,4,28,
606386,0,111,0,105, 622286,0,111,0,105,
60640,100,0,65,0, 62230,100,0,65,0,
6065114,0,103,0,69, 6224114,0,103,0,69,
60660,118,0,101,0, 62250,118,0,101,0,
6067110,0,116,0,95, 6226110,0,116,0,95,
60680,51,0,1,322, 62270,52,0,1,332,
60691,3,1,2,1, 62281,3,1,2,1,
60701,1851,22,1,181, 62291,1883,22,1,187,
60711,2476,1852,17,1853, 62301,2475,1884,17,1885,
607215,1828,1,-1,1, 623115,1865,1,-1,1,
60735,1854,20,1855,4, 62325,1886,20,1887,4,
607428,86,0,111,0, 623328,86,0,111,0,
6075105,0,100,0,65, 6234105,0,100,0,65,
60760,114,0,103,0, 62350,114,0,103,0,
607769,0,118,0,101, 623669,0,118,0,101,
60780,110,0,116,0, 62370,110,0,116,0,
607995,0,50,0,1, 623895,0,51,0,1,
6080321,1,3,1,2, 6239331,1,3,1,2,
60811,1,1856,22,1, 62401,1,1888,22,1,
6082180,1,2477,1857,17, 6241186,1,2476,1889,17,
60831858,15,1828,1,-1, 62421890,15,1865,1,-1,
60841,5,1859,20,1860, 62431,5,1891,20,1892,
60854,28,86,0,111, 62444,28,86,0,111,
60860,105,0,100,0, 62450,105,0,100,0,
608765,0,114,0,103, 624665,0,114,0,103,
60880,69,0,118,0, 62470,69,0,118,0,
6089101,0,110,0,116, 6248101,0,110,0,116,
60900,95,0,49,0,
60911,320,1,3,1,
60922,1,1,1861,22,
60931,179,1,2227,917,
60941,2479,1862,17,1863,
609515,1745,1,-1,1,
60965,1864,20,1865,4,
609716,69,0,118,0,
6098101,0,110,0,116,
60990,95,0,50,0,
610054,0,1,318,1,
61013,1,2,1,1,
61021866,22,1,177,1,
61031225,1867,16,0,196,
61041,2481,1868,17,1869,
610515,1745,1,-1,1,
61065,1870,20,1871,4,
610716,69,0,118,0,
6108101,0,110,0,116,
61090,95,0,50,0, 62490,95,0,50,0,
611052,0,1,316,1, 62501,330,1,3,1,
61113,1,2,1,1, 62512,1,1,1893,22,
61121872,22,1,175,1, 62521,185,1,2477,1894,
61132482,1873,17,1874,15, 625317,1895,15,1865,1,
61141745,1,-1,1,5, 6254-1,1,5,1896,20,
61151875,20,1876,4,16, 62551897,4,28,86,0,
611669,0,118,0,101, 6256111,0,105,0,100,
61170,110,0,116,0, 62570,65,0,114,0,
611895,0,50,0,51, 6258103,0,69,0,118,
61190,1,315,1,3, 62590,101,0,110,0,
61201,2,1,1,1877, 6260116,0,95,0,49,
612122,1,174,1,2483, 62610,1,329,1,3,
61221878,17,1879,15,1745, 62621,2,1,1,1898,
61231,-1,1,5,1880, 626322,1,184,1,2227,
612420,1881,4,16,69, 6264936,1,2479,1899,17,
62651900,15,1781,1,-1,
62661,5,1901,20,1902,
62674,26,73,0,110,
62680,116,0,65,0,
6269114,0,103,0,69,
61250,118,0,101,0, 62700,118,0,101,0,
6126110,0,116,0,95, 6271110,0,116,0,95,
61270,50,0,50,0, 62720,57,0,1,327,
61281,314,1,3,1, 62731,3,1,2,1,
61292,1,1,1882,22, 62741,1903,22,1,182,
61301,173,1,1731,1883, 62751,1225,1904,16,0,
613116,0,196,1,2485, 6276187,1,2481,1905,17,
61321884,17,1885,15,1745, 62771906,15,1781,1,-1,
61331,-1,1,5,1886, 62781,5,1907,20,1908,
613420,1887,4,16,69, 62794,26,73,0,110,
62800,116,0,65,0,
6281114,0,103,0,69,
61350,118,0,101,0, 62820,118,0,101,0,
6136110,0,116,0,95, 6283110,0,116,0,95,
61370,50,0,48,0, 62840,55,0,1,325,
61381,312,1,3,1, 62851,3,1,2,1,
61392,1,1,1888,22, 62861,1909,22,1,180,
61401,171,1,2486,1889, 62871,2482,1910,17,1911,
614117,1890,15,1745,1, 628815,1781,1,-1,1,
6142-1,1,5,1891,20, 62895,1912,20,1913,4,
61431892,4,16,69,0, 629026,73,0,110,0,
6291116,0,65,0,114,
62920,103,0,69,0,
6144118,0,101,0,110, 6293118,0,101,0,110,
61450,116,0,95,0, 62940,116,0,95,0,
614649,0,57,0,1, 629554,0,1,324,1,
6147311,1,3,1,2, 62963,1,2,1,1,
61481,1,1893,22,1, 62971914,22,1,179,1,
6149170,1,2487,1894,17, 62982483,1915,17,1916,15,
61501895,15,1745,1,-1, 62991781,1,-1,1,5,
61511,5,1896,20,1897, 63001917,20,1918,4,26,
630173,0,110,0,116,
63020,65,0,114,0,
6303103,0,69,0,118,
63040,101,0,110,0,
6305116,0,95,0,53,
63060,1,323,1,3,
63071,2,1,1,1919,
630822,1,178,1,1731,
63091920,16,0,187,1,
63102485,1921,17,1922,15,
63111781,1,-1,1,5,
63121923,20,1924,4,26,
631373,0,110,0,116,
63140,65,0,114,0,
6315103,0,69,0,118,
63160,101,0,110,0,
6317116,0,95,0,51,
63180,1,321,1,3,
63191,2,1,1,1925,
632022,1,176,1,2486,
63211926,17,1927,15,1781,
63221,-1,1,5,1928,
632320,1929,4,26,73,
63240,110,0,116,0,
632565,0,114,0,103,
63260,69,0,118,0,
6327101,0,110,0,116,
63280,95,0,50,0,
63291,320,1,3,1,
63302,1,1,1930,22,
63311,175,1,2487,1931,
633217,1932,15,1781,1,
6333-1,1,5,1933,20,
63341934,4,26,73,0,
6335110,0,116,0,65,
63360,114,0,103,0,
633769,0,118,0,101,
63380,110,0,116,0,
633995,0,49,0,1,
6340319,1,3,1,2,
63411,1,1935,22,1,
6342174,1,2488,1936,17,
63431937,15,1795,1,-1,
63441,5,1938,20,1939,
61524,16,69,0,118, 63454,16,69,0,118,
61530,101,0,110,0, 63460,101,0,110,0,
6154116,0,95,0,49, 6347116,0,95,0,49,
61550,56,0,1,310, 63480,55,0,1,318,
61561,3,1,2,1, 63491,3,1,2,1,
61571,1898,22,1,169, 63501,1940,22,1,173,
61581,2488,1899,17,1900, 63511,2489,1941,17,1942,
615915,1745,1,-1,1, 635215,1795,1,-1,1,
61605,1901,20,1902,4, 63535,1943,20,1944,4,
616116,69,0,118,0, 635416,69,0,118,0,
6162101,0,110,0,116, 6355101,0,110,0,116,
61630,95,0,49,0, 63560,95,0,49,0,
616455,0,1,309,1, 635754,0,1,317,1,
61653,1,2,1,1, 63583,1,2,1,1,
61661903,22,1,168,1, 63591945,22,1,172,1,
61672489,1904,17,1905,15, 63602490,1946,17,1947,15,
61681745,1,-1,1,5, 63611795,1,-1,1,5,
61691906,20,1907,4,16, 63621948,20,1949,4,16,
617069,0,118,0,101, 636369,0,118,0,101,
61710,110,0,116,0, 63640,110,0,116,0,
617295,0,49,0,54, 636595,0,49,0,53,
61730,1,308,1,3, 63660,1,316,1,3,
61741,2,1,1,1908, 63671,2,1,1,1950,
617522,1,167,1,2490, 636822,1,171,1,1989,
61761909,17,1910,15,1745, 6369944,1,2492,1951,17,
61771,-1,1,5,1911, 63701952,15,1795,1,-1,
617820,1912,4,16,69, 63711,5,1953,20,1954,
61790,118,0,101,0, 63724,16,69,0,118,
6180110,0,116,0,95, 63730,101,0,110,0,
61810,49,0,53,0, 6374116,0,95,0,49,
61821,307,1,3,1, 63750,51,0,1,314,
61832,1,1,1913,22, 63761,3,1,2,1,
61841,166,1,1989,925, 63771,1955,22,1,169,
61851,2492,1914,17,1915, 63781,2493,1956,17,1957,
618615,1745,1,-1,1, 637915,1795,1,-1,1,
61875,1916,20,1917,4, 63805,1958,20,1959,4,
618816,69,0,118,0, 638116,69,0,118,0,
6189101,0,110,0,116, 6382101,0,110,0,116,
61900,95,0,49,0, 63830,95,0,49,0,
619151,0,1,305,1, 638450,0,1,313,1,
61923,1,2,1,1, 63853,1,2,1,1,
61931918,22,1,164,1, 63861960,22,1,168,1,
61942493,1919,17,1920,15, 63872494,1961,17,1962,15,
61951745,1,-1,1,5, 63881795,1,-1,1,5,
61961921,20,1922,4,16, 63891963,20,1964,4,16,
619769,0,118,0,101, 639069,0,118,0,101,
61980,110,0,116,0, 63910,110,0,116,0,
619995,0,49,0,50, 639295,0,49,0,49,
62000,1,304,1,3, 63930,1,312,1,3,
62011,2,1,1,1923, 63941,2,1,1,1965,
620222,1,163,1,2494, 639522,1,167,1,236,
62031924,17,1925,15,1745, 63961966,16,0,187,1,
62041,-1,1,5,1926, 63972496,1967,17,1968,15,
620520,1927,4,16,69, 63981795,1,-1,1,5,
62060,118,0,101,0, 63991969,20,1970,4,14,
6207110,0,116,0,95, 640069,0,118,0,101,
62080,49,0,49,0, 64010,110,0,116,0,
62091,303,1,3,1, 640295,0,57,0,1,
62102,1,1,1928,22, 6403310,1,3,1,2,
62111,162,1,236,1929, 64041,1,1971,22,1,
621216,0,196,1,2496, 6405165,1,2497,1972,17,
62131930,17,1931,15,1745, 64061973,15,1795,1,-1,
62141,-1,1,5,1932, 64071,5,1974,20,1975,
621520,1933,4,14,69, 64084,14,69,0,118,
64090,101,0,110,0,
6410116,0,95,0,56,
64110,1,309,1,3,
64121,2,1,1,1976,
641322,1,164,1,2498,
64141977,17,1978,15,1795,
64151,-1,1,5,1979,
641620,1980,4,14,69,
62160,118,0,101,0, 64170,118,0,101,0,
6217110,0,116,0,95, 6418110,0,116,0,95,
62180,57,0,1,301, 64190,55,0,1,308,
62191,3,1,2,1, 64201,3,1,2,1,
62201,1934,22,1,160, 64211,1981,22,1,163,
62211,2497,1935,17,1936, 64221,2499,1982,17,1983,
622215,1745,1,-1,1, 642315,1795,1,-1,1,
62235,1937,20,1938,4, 64245,1984,20,1985,4,
622414,69,0,118,0, 642514,69,0,118,0,
6225101,0,110,0,116, 6426101,0,110,0,116,
62260,95,0,56,0, 64270,95,0,54,0,
62271,300,1,3,1, 64281,307,1,3,1,
62282,1,1,1939,22, 64292,1,1,1986,22,
62291,159,1,2498,1940, 64301,162,1,2500,1987,
623017,1941,15,1745,1, 643117,1988,15,1795,1,
6231-1,1,5,1942,20, 6432-1,1,5,1989,20,
62321943,4,14,69,0, 64331990,4,14,69,0,
6233118,0,101,0,110, 6434118,0,101,0,110,
62340,116,0,95,0, 64350,116,0,95,0,
623555,0,1,299,1, 643653,0,1,306,1,
62363,1,2,1,1, 64373,1,2,1,1,
62371944,22,1,158,1, 64381991,22,1,161,1,
62382499,1945,17,1946,15, 64392501,1992,17,1993,15,
62391745,1,-1,1,5, 64401795,1,-1,1,5,
62401947,20,1948,4,14, 64411994,20,1995,4,14,
624169,0,118,0,101, 644269,0,118,0,101,
62420,110,0,116,0, 64430,110,0,116,0,
624395,0,54,0,1, 644495,0,52,0,1,
6244298,1,3,1,2, 6445305,1,3,1,2,
62451,1,1949,22,1, 64461,1,1996,22,1,
6246157,1,2500,1950,17, 6447160,1,2502,1997,17,
62471951,15,1745,1,-1, 64481998,15,1795,1,-1,
62481,5,1952,20,1953, 64491,5,1999,20,2000,
62494,14,69,0,118, 64504,14,69,0,118,
62500,101,0,110,0, 64510,101,0,110,0,
6251116,0,95,0,53, 6452116,0,95,0,51,
62520,1,297,1,3, 64530,1,304,1,3,
62531,2,1,1,1954, 64541,2,1,1,2001,
625422,1,156,1,2501, 645522,1,159,1,2503,
62551955,17,1956,15,1745, 64562002,17,2003,15,1795,
62561,-1,1,5,1957, 64571,-1,1,5,2004,
625720,1958,4,14,69, 645820,2005,4,14,69,
62580,118,0,101,0, 64590,118,0,101,0,
6259110,0,116,0,95, 6460110,0,116,0,95,
62600,52,0,1,296, 64610,50,0,1,303,
62611,3,1,2,1, 64621,3,1,2,1,
62621,1959,22,1,155, 64631,2006,22,1,158,
62631,2502,1960,17,1961, 64641,2504,2007,17,2008,
626415,1745,1,-1,1, 646515,1795,1,-1,1,
62655,1962,20,1963,4, 64665,2009,20,2010,4,
626614,69,0,118,0, 646714,69,0,118,0,
6267101,0,110,0,116, 6468101,0,110,0,116,
62680,95,0,51,0, 64690,95,0,49,0,
62691,295,1,3,1, 64701,302,1,3,1,
62702,1,1,1964,22, 64712,1,1,2011,22,
62711,154,1,2503,1965, 64721,157,1,2505,2012,
627217,1966,15,1745,1, 647316,0,442,1,217,
6273-1,1,5,1967,20, 64742013,16,0,187,1,
62741968,4,14,69,0, 64751756,2014,16,0,187,
6275118,0,101,0,110, 64761,17,2015,19,154,
62760,116,0,95,0, 64771,17,2016,5,121,
627750,0,1,294,1, 64781,1,2017,17,2018,
62783,1,2,1,1, 647915,2019,4,18,37,
62791969,22,1,153,1, 64800,84,0,121,0,
62802504,1970,17,1971,15, 6481112,0,101,0,110,
62811745,1,-1,1,5, 64820,97,0,109,0,
62821972,20,1973,4,14, 6483101,0,1,-1,1,
628369,0,118,0,101, 64845,2020,20,2021,4,
62840,110,0,116,0,
628595,0,49,0,1,
6286293,1,3,1,2,
62871,1,1974,22,1,
6288152,1,2505,1975,16,
62890,441,1,217,1976,
629016,0,196,1,1756,
62911977,16,0,196,1,
629217,1978,19,160,1,
629317,1979,5,118,1,
62941,1980,17,1981,15,
62951982,4,18,37,0,
629684,0,121,0,112,
62970,101,0,110,0,
629897,0,109,0,101,
62990,1,-1,1,5,
63001983,20,1984,4,20,
630184,0,121,0,112,
63020,101,0,110,0,
630397,0,109,0,101,
63040,95,0,55,0,
63051,292,1,3,1,
63062,1,1,1985,22,
63071,151,1,2,1986,
630817,1987,15,1982,1,
6309-1,1,5,1988,20,
63101989,4,20,84,0,
6311121,0,112,0,101,
63120,110,0,97,0,
6313109,0,101,0,95,
63140,54,0,1,291,
63151,3,1,2,1,
63161,1990,22,1,150,
63171,3,1991,17,1992,
631815,1982,1,-1,1,
63195,1993,20,1994,4,
632020,84,0,121,0, 648520,84,0,121,0,
6321112,0,101,0,110, 6486112,0,101,0,110,
63220,97,0,109,0, 64870,97,0,109,0,
6323101,0,95,0,53, 6488101,0,95,0,55,
63240,1,290,1,3, 64890,1,301,1,3,
63251,2,1,1,1995, 64901,2,1,1,2022,
632622,1,149,1,4, 649122,1,156,1,2,
63271996,17,1997,15,1982, 64922023,17,2024,15,2019,
63281,-1,1,5,1998, 64931,-1,1,5,2025,
632920,1999,4,20,84, 649420,2026,4,20,84,
63300,121,0,112,0, 64950,121,0,112,0,
6331101,0,110,0,97, 6496101,0,110,0,97,
63320,109,0,101,0, 64970,109,0,101,0,
633395,0,52,0,1, 649895,0,54,0,1,
6334289,1,3,1,2, 6499300,1,3,1,2,
63351,1,2000,22,1, 65001,1,2027,22,1,
6336148,1,5,2001,17, 6501155,1,3,2028,17,
63372002,15,1982,1,-1, 65022029,15,2019,1,-1,
63381,5,2003,20,2004, 65031,5,2030,20,2031,
63394,20,84,0,121, 65044,20,84,0,121,
63400,112,0,101,0, 65050,112,0,101,0,
6341110,0,97,0,109, 6506110,0,97,0,109,
63420,101,0,95,0, 65070,101,0,95,0,
634351,0,1,288,1, 650853,0,1,299,1,
63443,1,2,1,1, 65093,1,2,1,1,
63452005,22,1,147,1, 65102032,22,1,154,1,
63466,2006,17,2007,15, 65114,2033,17,2034,15,
63471982,1,-1,1,5, 65122019,1,-1,1,5,
63482008,20,2009,4,20, 65132035,20,2036,4,20,
634984,0,121,0,112, 651484,0,121,0,112,
63500,101,0,110,0, 65150,101,0,110,0,
635197,0,109,0,101, 651697,0,109,0,101,
63520,95,0,50,0, 65170,95,0,52,0,
63531,287,1,3,1, 65181,298,1,3,1,
63542,1,1,2010,22, 65192,1,1,2037,22,
63551,146,1,7,2011, 65201,153,1,5,2038,
635617,2012,15,1982,1, 652117,2039,15,2019,1,
6357-1,1,5,2013,20, 6522-1,1,5,2040,20,
63582014,4,20,84,0, 65232041,4,20,84,0,
6359121,0,112,0,101, 6524121,0,112,0,101,
63600,110,0,97,0, 65250,110,0,97,0,
6361109,0,101,0,95, 6526109,0,101,0,95,
63620,49,0,1,286, 65270,51,0,1,297,
63631,3,1,2,1, 65281,3,1,2,1,
63641,2015,22,1,145, 65291,2042,22,1,152,
63651,1514,1118,1,9, 65301,6,2043,17,2044,
63661123,1,10,1672,1, 653115,2019,1,-1,1,
6367262,1129,1,1267,1135, 65325,2045,20,2046,4,
63681,481,1714,1,1521, 653320,84,0,121,0,
63691140,1,1773,2016,16, 6534112,0,101,0,110,
63700,247,1,19,1157, 65350,97,0,109,0,
63711,20,2017,16,0, 6536101,0,95,0,50,
6372158,1,2281,1164,1, 65370,1,296,1,3,
6373525,1226,1,30,1676, 65381,2,1,1,2047,
63741,283,1182,1,1010, 653922,1,151,1,7,
63752018,16,0,609,1, 65402048,17,2049,15,2019,
637640,1187,1,41,1681, 65411,-1,1,5,2050,
63771,42,1685,1,44, 654220,2051,4,20,84,
63781193,1,1260,1106,1, 65430,121,0,112,0,
637947,1194,1,1303,1317, 6544101,0,110,0,97,
63801,49,1206,1,50, 65450,109,0,101,0,
63811211,1,48,1200,1, 654695,0,49,0,1,
6382305,1221,1,51,1216, 6547295,1,3,1,2,
63831,61,2019,16,0, 65481,1,2052,22,1,
6384204,1,63,1232,1, 6549150,1,1514,1136,1,
638566,1238,1,67,1243, 65509,1141,1,10,1703,
63861,1478,1463,1,69, 65511,262,1147,1,1267,
63871253,1,70,1258,1, 65521153,1,481,1749,1,
638868,1248,1,73,2020, 65531521,1158,1,1773,2053,
638916,0,214,1,74, 655416,0,235,1,19,
63901263,1,1013,1268,1, 65551175,1,20,2054,16,
63912335,2021,16,0,249, 65560,152,1,2281,1182,
63921,328,1312,1,1048, 65571,525,1244,1,30,
63931354,1,2511,1668,1, 65581709,1,283,1200,1,
639482,1290,1,1840,2022, 65591010,2055,16,0,621,
639516,0,312,1,1341, 65601,40,1205,1,41,
63961307,1,2520,2023,16, 65611714,1,42,1718,1,
63970,451,1,1096,1322, 656244,1211,1,1260,1124,
63981,93,1328,1,1550, 65631,47,1212,1,1303,
63991333,1,352,1359,1, 65641335,1,49,1224,1,
64001011,1112,1,107,1348, 656550,1229,1,48,1218,
64011,1114,1353,1,1871, 65661,305,1239,1,51,
64022024,16,0,322,1, 65671234,1,61,2056,16,
64031370,1593,1,118,1365, 65680,195,1,63,1250,
64041,1123,1370,1,1332, 65691,66,1256,1,67,
64051273,1,1377,1381,1, 65701261,1,68,1266,1,
6406375,1386,1,1882,2025, 657169,1271,1,70,1276,
640716,0,335,1,377, 65721,73,2057,16,0,
64081391,1,827,1341,1, 6573205,1,74,1281,1,
6409380,1401,1,130,1424, 65741013,1286,1,2335,2058,
64101,2074,2026,16,0, 657516,0,237,1,328,
6411565,1,371,1375,1, 65761330,1,1048,1372,1,
6412373,1419,1,1012,2027, 657782,1308,1,2513,2059,
641316,0,611,1,379, 657817,2060,15,2061,4,
64141396,1,143,1429,1, 657930,37,0,73,0,
64152654,1692,1,1152,1435, 6580110,0,116,0,68,
64161,1406,1440,1,2663, 65810,101,0,99,0,
64172028,16,0,670,1, 6582108,0,97,0,114,
64181159,1447,1,157,1452, 65830,97,0,116,0,
64191,1413,1457,1,883,
64201407,1,1094,2029,16,
64210,677,1,1296,1177,
64221,172,1470,1,1665,
64231475,1,1939,2030,16,
64240,448,1,1188,1480,
64251,1442,1485,1,188,
64261519,1,942,1491,1,
64271195,1497,1,1449,1502,
64281,1701,1507,1,447,
64291512,1,205,1524,1,
64302467,1701,1,464,1707,
64311,2197,2031,16,0,
6432674,1,1224,1534,1,
6433223,1539,1,1730,1544,
64341,476,1549,1,477,
64351555,1,1231,1560,1,
6436479,1565,1,480,1570,
64371,1485,1576,1,459,
64381712,1,242,1583,1,
6439478,1588,1,2506,2032,
644016,0,442,1,1001,
64411598,1,1002,1603,1,
644218,2033,19,500,1,
644318,2034,5,84,1,
64441011,1112,1,1012,2035,
644516,0,498,1,1013,
64461268,1,262,1129,1,
64471267,2036,16,0,498,
64481,515,2037,16,0,
6449498,1,1521,2038,16,
64500,498,1,525,1226,
64511,283,1182,1,2299,
64522039,16,0,498,1,
645342,2040,16,0,498,
64541,40,1187,1,44,
64551193,1,47,1194,1,
64561303,2041,16,0,498,
64571,1555,2042,16,0,
6458498,1,50,1211,1,
645948,1200,1,49,1206,
64601,51,1216,1,63,
64611232,1,305,1221,1,
646266,1238,1,67,1243,
64631,68,1248,1,69,
64641253,1,70,1258,1,
646573,2043,16,0,498,
64661,74,1263,1,328,
64671312,1,1048,2044,16,
64680,498,1,82,2045,
646916,0,498,1,1840,
64702046,16,0,498,1,
64711591,2047,16,0,498,
64721,1341,2048,16,0,
6473498,1,1096,1322,1,
647493,1328,1,352,1359,
64751,107,2049,16,0,
6476498,1,1114,1353,1,
6477118,2050,16,0,498,
64781,1123,2051,16,0,
6479498,1,371,1375,1,
64801628,2052,16,0,498,
64811,375,1386,1,1882,
64822053,16,0,498,1,
6483377,1391,1,379,1396,
64841,380,1401,1,883,
64852054,16,0,498,1,
6486373,1419,1,130,2055,
648716,0,498,1,143,
64882056,16,0,498,1,
6489387,2057,16,0,498,
64901,1159,2058,16,0,
6491498,1,157,2059,16,
64920,498,1,1413,2060,
649316,0,498,1,1665,
64942061,16,0,498,1,
6495412,2062,16,0,498,
64961,2676,2063,16,0,
6497498,1,1377,2064,16,
64980,498,1,172,2065,
649916,0,498,1,1939,
65002066,16,0,498,1,
6501437,2067,16,0,498,
65021,188,2068,16,0,
6503498,1,942,2069,16,
65040,498,1,1195,2070,
650516,0,498,1,1449,
65062071,16,0,498,1,
65071701,2072,16,0,498,
65081,447,1512,1,205,
65092073,16,0,498,1,
6510827,2074,16,0,498,
65111,223,2075,16,0,
6512498,1,476,1549,1,
6513477,1555,1,1231,2076,
651416,0,498,1,479,
65151565,1,480,1570,1,
65161485,2077,16,0,498,
65171,1737,2078,16,0,
6518498,1,242,2079,16,
65190,498,1,478,1588,
65201,1001,1598,1,1002,
65211603,1,19,2080,19,
6522235,1,19,2081,5,
6523176,1,2676,2082,16,
65240,469,1,256,2083,
652516,0,233,1,1261,
65262084,16,0,233,1,
65271011,1112,1,1012,2085,
652816,0,469,1,2458,
6529885,1,262,1129,1,
65301267,2086,16,0,469,
65311,2021,728,1,1521,
65322087,16,0,469,1,
65331775,2088,16,0,233,
65341,2029,735,1,2030,
6535741,1,2031,746,1,
65362032,751,1,2033,756,
65371,277,2089,16,0,
6538233,1,2035,762,1,
65392037,767,1,2039,772,
65401,32,2090,16,0,
6541233,1,2464,908,1,
65422293,2091,16,0,233,
65431,2043,784,1,2045,
6544789,1,2299,2092,16,
65450,469,1,41,2093,
654616,0,233,1,42,
65472094,16,0,469,1,
654840,1187,1,44,1193,
65491,43,2095,16,0,
6550233,1,1804,2096,16,
65510,233,1,48,1200,
65521,49,1206,1,47,
65531194,1,51,1216,1,
655452,2097,16,0,233,
65551,50,1211,1,305,
65561221,1,1096,1322,1,
65571515,2098,16,0,233,
65581,2318,2099,16,0,
6559233,1,283,1182,1,
656063,1232,1,66,1238,
65611,67,1243,1,68,
65621248,1,69,1253,1,
656370,1258,1,71,2100,
656416,0,233,1,73,
65652101,16,0,469,1,
656674,1263,1,1013,1268,
65671,76,2102,16,0,
6568233,1,1834,2103,16,
65690,233,1,2337,2104,
657016,0,233,1,79,
65712105,16,0,233,1,
65721335,2106,16,0,233,
65731,299,2107,16,0,
6574233,1,82,2108,16,
65750,469,1,1840,2109,
657616,0,469,1,1297,
65772110,16,0,233,1,
657885,2111,16,0,233,
65791,1341,2112,16,0,
6580469,1,89,2113,16,
65810,233,1,1303,2114,
658216,0,469,1,509,
65832115,16,0,233,1,
658493,1328,1,322,2116,
658516,0,233,1,97,
65862117,16,0,233,1,
65872041,778,1,1555,2118,
658816,0,469,1,827,
65892119,16,0,469,1,
6590102,2120,16,0,233,
65911,1860,831,1,1803,
6592797,1,2364,837,1,
6593107,2121,16,0,469,
65941,1114,1353,1,112,
65952122,16,0,233,1,
65961117,2123,16,0,233,
65971,352,1359,1,1873,
6598845,1,118,2124,16,
65990,469,1,1123,2125,
660016,0,469,1,371,
66011375,1,515,2126,16,
66020,469,1,1377,2127,
660316,0,469,1,124,
66042128,16,0,233,1,
66051882,2129,16,0,469,
66061,377,1391,1,379,
66071396,1,380,1401,1,
6608130,2130,16,0,469,
66091,346,2131,16,0,
6610233,1,2075,2132,16,
66110,233,1,373,1419,
66121,387,2133,16,0,
6613469,1,137,2134,16,
66140,233,1,143,2135,
661516,0,469,1,1901,
66162136,16,0,233,1,
66171048,2137,16,0,469,
66181,1153,2138,16,0,
6619233,1,375,1386,1,
6620151,2139,16,0,233,
66211,1407,2140,16,0,
6622233,1,1659,2141,16,
66230,233,1,2413,2142,
662416,0,233,1,1159,
66252143,16,0,469,1,
6626381,2144,16,0,233,
66271,157,2145,16,0,
6628469,1,1413,2146,16,
66290,469,1,883,2147,
663016,0,469,1,1371,
66312148,16,0,233,1,
6632328,1312,1,2105,824,
66331,2106,2149,16,0,
6634233,1,166,2150,16,
66350,233,1,525,2151,
663616,0,233,1,1622,
66372152,16,0,233,1,
6638406,2153,16,0,233,
66391,1574,809,1,172,
66402154,16,0,469,1,
66411931,870,1,412,2155,
664216,0,469,1,1933,
66432156,16,0,233,1,
66441876,2157,16,0,233,
66451,431,2158,16,0,
6646233,1,1585,2159,16,
66470,233,1,182,2160,
664816,0,233,1,1628,
66492161,16,0,469,1,
66501189,2162,16,0,233,
66511,437,2163,16,0,
6652469,1,1591,2164,16,
66530,469,1,188,2165,
665416,0,469,1,1695,
66552166,16,0,233,1,
66562198,2167,16,0,233,
66571,1195,2168,16,0,
6658469,1,1449,2169,16,
66590,469,1,1701,2170,
666016,0,469,1,447,
66612171,16,0,233,1,
6662199,2172,16,0,233,
66631,2459,891,1,1958,
66642173,16,0,233,1,
66652462,898,1,1657,903,
66661,205,2174,16,0,
6667469,1,459,2175,16,
66680,233,1,462,2176,
666916,0,233,1,1665,
66702177,16,0,469,1,
6671217,2178,16,0,233,
66721,2227,917,1,942,
66732179,16,0,469,1,
66741225,2180,16,0,233,
66751,223,2181,16,0,
6676469,1,1479,2182,16,
66770,233,1,1731,2183,
667816,0,233,1,477,
66791555,1,1231,2184,16,
66800,469,1,479,1565,
66811,480,1570,1,1485,
66822185,16,0,469,1,
66831737,2186,16,0,469,
66841,1989,925,1,1990,
66852187,16,0,233,1,
66861443,2188,16,0,233,
66871,236,2189,16,0,
6688233,1,2136,852,1,
6689476,1549,1,242,2190,
669016,0,469,1,478,
66911588,1,1939,2191,16,
66920,469,1,2670,2192,
669316,0,233,1,1001,
66941598,1,1002,1603,1,
66951756,2193,16,0,233,
66961,20,2194,19,458,
66971,20,2195,5,84,
66981,1011,1112,1,1012,
66992196,16,0,456,1,
67001013,1268,1,262,1129,
67011,1267,2197,16,0,
6702456,1,515,2198,16,
67030,456,1,1521,2199,
670416,0,456,1,525,
67051226,1,283,1182,1,
67062299,2200,16,0,456,
67071,42,2201,16,0,
6708456,1,40,1187,1,
670944,1193,1,47,1194,
67101,1303,2202,16,0,
6711456,1,1555,2203,16,
67120,456,1,50,1211,
67131,48,1200,1,49,
67141206,1,51,1216,1,
671563,1232,1,305,1221,
67161,66,1238,1,67,
67171243,1,68,1248,1,
671869,1253,1,70,1258,
67191,73,2204,16,0,
6720456,1,74,1263,1,
6721328,2205,16,0,456,
67221,1048,2206,16,0,
6723456,1,82,2207,16,
67240,456,1,1840,2208,
672516,0,456,1,1591,
67262209,16,0,456,1,
67271341,2210,16,0,456,
67281,1096,1322,1,93,
67291328,1,352,2211,16,
67300,456,1,107,2212,
673116,0,456,1,1114,
67321353,1,118,2213,16,
67330,456,1,1123,2214,
673416,0,456,1,371,
67351375,1,1628,2215,16,
67360,456,1,375,1386,
67371,1882,2216,16,0,
6738456,1,377,1391,1,
6739379,1396,1,380,1401,
67401,883,2217,16,0,
6741456,1,373,1419,1,
6742130,2218,16,0,456,
67431,143,2219,16,0,
6744456,1,387,2220,16,
67450,456,1,1159,2221,
674616,0,456,1,157,
67472222,16,0,456,1,
67481413,2223,16,0,456,
67491,1665,2224,16,0,
6750456,1,412,2225,16,
67510,456,1,2676,2226,
675216,0,456,1,1377,
67532227,16,0,456,1,
6754172,2228,16,0,456,
67551,1939,2229,16,0,
6756456,1,437,2230,16,
67570,456,1,188,2231,
675816,0,456,1,942,
67592232,16,0,456,1,
67601195,2233,16,0,456,
67611,1449,2234,16,0,
6762456,1,1701,2235,16,
67630,456,1,447,1512,
67641,205,2236,16,0,
6765456,1,827,2237,16,
67660,456,1,223,2238,
676716,0,456,1,476,
67681549,1,477,1555,1,
67691231,2239,16,0,456,
67701,479,1565,1,480,
67711570,1,1485,2240,16,
67720,456,1,1737,2241,
677316,0,456,1,242,
67742242,16,0,456,1,
6775478,1588,1,1001,1598,
67761,1002,1603,1,21,
67772243,19,440,1,21,
67782244,5,84,1,1011,
67791112,1,1012,2245,16,
67800,438,1,1013,1268,
67811,262,1129,1,1267,
67822246,16,0,438,1,
6783515,2247,16,0,438,
67841,1521,2248,16,0,
6785438,1,525,1226,1,
6786283,1182,1,2299,2249,
678716,0,438,1,42,
67882250,16,0,438,1,
678940,1187,1,44,1193,
67901,47,1194,1,1303,
67912251,16,0,438,1,
67921555,2252,16,0,438,
67931,50,1211,1,48,
67941200,1,49,1206,1,
679551,1216,1,63,1232,
67961,305,1221,1,66,
67971238,1,67,1243,1,
679868,1248,1,69,1253,
67991,70,1258,1,73,
68002253,16,0,438,1,
680174,1263,1,328,2254,
680216,0,438,1,1048,
68032255,16,0,438,1,
680482,2256,16,0,438,
68051,1840,2257,16,0,
6806438,1,1591,2258,16,
68070,438,1,1341,2259,
680816,0,438,1,1096,
68091322,1,93,1328,1,
6810352,2260,16,0,438,
68111,107,2261,16,0,
6812438,1,1114,1353,1,
6813118,2262,16,0,438,
68141,1123,2263,16,0,
6815438,1,371,1375,1,
68161628,2264,16,0,438,
68171,375,1386,1,1882,
68182265,16,0,438,1,
6819377,1391,1,379,1396,
68201,380,1401,1,883,
68212266,16,0,438,1,
6822373,1419,1,130,2267,
682316,0,438,1,143,
68242268,16,0,438,1,
6825387,2269,16,0,438,
68261,1159,2270,16,0,
6827438,1,157,2271,16,
68280,438,1,1413,2272,
682916,0,438,1,1665,
68302273,16,0,438,1,
6831412,2274,16,0,438,
68321,2676,2275,16,0,
6833438,1,1377,2276,16,
68340,438,1,172,2277,
683516,0,438,1,1939,
68362278,16,0,438,1,
6837437,2279,16,0,438,
68381,188,2280,16,0,
6839438,1,942,2281,16,
68400,438,1,1195,2282,
684116,0,438,1,1449,
68422283,16,0,438,1,
68431701,2284,16,0,438,
68441,447,1512,1,205,
68452285,16,0,438,1,
6846827,2286,16,0,438,
68471,223,2287,16,0,
6848438,1,476,1549,1,
6849477,1555,1,1231,2288,
685016,0,438,1,479,
68511565,1,480,1570,1,
68521485,2289,16,0,438,
68531,1737,2290,16,0,
6854438,1,242,2291,16,
68550,438,1,478,1588,
68561,1001,1598,1,1002,
68571603,1,22,2292,19,
6858391,1,22,2293,5,
685984,1,1011,1112,1,
68601012,2294,16,0,389,
68611,1013,1268,1,262,
68621129,1,1267,2295,16,
68630,389,1,515,2296,
686416,0,389,1,1521,
68652297,16,0,389,1,
6866525,1226,1,283,1182,
68671,2299,2298,16,0,
6868389,1,42,2299,16,
68690,389,1,40,1187,
68701,44,1193,1,47,
68711194,1,1303,2300,16,
68720,389,1,1555,2301,
687316,0,389,1,50,
68741211,1,48,1200,1,
687549,1206,1,51,1216,
68761,63,1232,1,305,
68771221,1,66,1238,1,
687867,1243,1,68,1248,
68791,69,1253,1,70,
68801258,1,73,2302,16,
68810,389,1,74,1263,
68821,328,2303,16,0,
6883389,1,1048,2304,16,
68840,389,1,82,2305,
688516,0,389,1,1840,
68862306,16,0,389,1,
68871591,2307,16,0,389,
68881,1341,2308,16,0,
6889389,1,1096,1322,1,
689093,1328,1,352,2309,
689116,0,389,1,107,
68922310,16,0,389,1,
68931114,1353,1,118,2311,
689416,0,389,1,1123,
68952312,16,0,389,1,
6896371,1375,1,1628,2313,
689716,0,389,1,375,
68981386,1,1882,2314,16,
68990,389,1,377,1391,
69001,379,1396,1,380,
69011401,1,883,2315,16,
69020,389,1,373,1419,
69031,130,2316,16,0,
6904389,1,143,2317,16,
69050,389,1,387,2318,
690616,0,389,1,1159,
69072319,16,0,389,1,
6908157,2320,16,0,389,
69091,1413,2321,16,0,
6910389,1,1665,2322,16,
69110,389,1,412,2323,
691216,0,389,1,2676,
69132324,16,0,389,1,
69141377,2325,16,0,389,
69151,172,2326,16,0,
6916389,1,1939,2327,16,
69170,389,1,437,2328,
691816,0,389,1,188,
69192329,16,0,389,1,
6920942,2330,16,0,389,
69211,1195,2331,16,0,
6922389,1,1449,2332,16,
69230,389,1,1701,2333,
692416,0,389,1,447,
69251512,1,205,2334,16,
69260,389,1,827,2335,
692716,0,389,1,223,
69282336,16,0,389,1,
6929476,1549,1,477,1555,
69301,1231,2337,16,0,
6931389,1,479,1565,1,
6932480,1570,1,1485,2338,
693316,0,389,1,1737,
69342339,16,0,389,1,
6935242,2340,16,0,389,
69361,478,1588,1,1001,
69371598,1,1002,1603,1,
693823,2341,19,514,1,
693923,2342,5,38,1,
69401901,2343,16,0,512,
69411,2075,2344,16,0,
6942512,1,1860,831,1,
69431803,797,1,1804,2345,
694416,0,512,1,2413,
69452346,16,0,512,1,
69462198,2347,16,0,512,
69471,1873,845,1,1657,
6948903,1,1989,925,1,
69491990,2348,16,0,512,
69501,1775,2349,16,0,
6951512,1,32,2350,16,
69520,512,1,2105,824,
69531,2106,2351,16,0,
6954512,1,2364,837,1,
69552227,917,1,2337,2352,
695616,0,512,1,2021,
6957728,1,2458,885,1,
69582459,891,1,2462,898,
69591,2136,852,1,2464,
6960908,1,2029,735,1,
69612030,741,1,2031,746,
69621,2032,751,1,2033,
6963756,1,2035,762,1,
69642037,767,1,2039,772,
69651,1931,870,1,2041,
6966778,1,2043,784,1,
69672045,789,1,1574,809,
69681,1958,2353,16,0,
6969512,1,24,2354,19,
6970186,1,24,2355,5,
69715,1,44,2356,16,
69720,184,1,377,2357,
697316,0,550,1,40,
69742358,16,0,684,1,
697563,2359,16,0,206,
69761,373,2360,16,0,
6977546,1,25,2361,19,
6978300,1,25,2362,5,
6979177,1,2676,2363,16,
69800,298,1,256,2364,
698116,0,555,1,1261,
69822365,16,0,555,1,
69831011,1112,1,1012,2366,
698416,0,298,1,2458,
6985885,1,262,1129,1,
69861267,2367,16,0,298,
69871,2021,728,1,1521,
69882368,16,0,298,1,
69891775,2369,16,0,555,
69901,2029,735,1,2030,
6991741,1,2031,746,1,
69922032,751,1,2033,756,
69931,277,2370,16,0,
6994555,1,2035,762,1,
69952037,767,1,2039,772,
69961,32,2371,16,0,
6997555,1,2464,908,1,
69982293,2372,16,0,555,
69991,2043,784,1,2045,
7000789,1,2299,2373,16,
70010,298,1,41,2374,
700216,0,555,1,42,
70032375,16,0,298,1,
700440,1187,1,44,1193,
70051,43,2376,16,0,
7006555,1,1804,2377,16,
70070,555,1,48,1200,
70081,49,1206,1,47,
70091194,1,51,1216,1,
701052,2378,16,0,555,
70111,50,1211,1,305,
70121221,1,1096,1322,1,
70131515,2379,16,0,555,
70141,2318,2380,16,0,
7015555,1,62,2381,16,
70160,555,1,63,1232,
70171,66,1238,1,67,
70181243,1,68,1248,1,
701969,1253,1,70,1258,
70201,71,2382,16,0,
7021555,1,283,1182,1,
702273,2383,16,0,298,
70231,74,1263,1,1013,
70241268,1,76,2384,16,
70250,555,1,1834,2385,
702616,0,555,1,2337,
70272386,16,0,555,1,
702879,2387,16,0,555,
70291,1335,2388,16,0,
7030555,1,299,2389,16,
70310,555,1,82,2390,
703216,0,298,1,1840,
70332391,16,0,298,1,
70341297,2392,16,0,555,
70351,85,2393,16,0,
7036555,1,1341,2394,16,
70370,298,1,89,2395,
703816,0,555,1,1303,
70392396,16,0,298,1,
7040509,2397,16,0,555,
70411,93,1328,1,322,
70422398,16,0,555,1,
704397,2399,16,0,555,
70441,2041,778,1,1555,
70452400,16,0,298,1,
7046827,2401,16,0,298,
70471,102,2402,16,0,
7048555,1,1860,831,1,
70491803,797,1,2364,837,
70501,107,2403,16,0,
7051298,1,1114,1353,1,
7052112,2404,16,0,555,
70531,1117,2405,16,0,
7054555,1,352,1359,1,
70551873,845,1,118,1365,
70561,1123,2406,16,0,
7057298,1,371,1375,1,
7058515,2407,16,0,298,
70591,1377,2408,16,0,
7060298,1,124,2409,16,
70610,555,1,1882,2410,
706216,0,298,1,377,
70631391,1,379,1396,1,
7064380,1401,1,130,1424,
70651,346,2411,16,0,
7066555,1,2075,2412,16,
70670,555,1,373,1419,
70681,387,2413,16,0,
7069298,1,137,2414,16,
70700,555,1,143,2415,
707116,0,298,1,1901,
70722416,16,0,555,1,
70731048,1354,1,1153,2417,
707416,0,555,1,375,
70751386,1,151,2418,16,
70760,555,1,1407,2419,
707716,0,555,1,1659,
70782420,16,0,555,1,
70792413,2421,16,0,555,
70801,1159,2422,16,0,
7081298,1,381,2423,16,
70820,555,1,157,2424,
708316,0,298,1,1413,
70842425,16,0,298,1,
7085883,2426,16,0,298,
70861,1371,2427,16,0,
7087555,1,328,1312,1,
70882105,824,1,2106,2428,
708916,0,555,1,166,
70902429,16,0,555,1,
7091525,2430,16,0,555,
70921,1622,2431,16,0,
7093555,1,406,2432,16,
70940,555,1,1574,809,
70951,172,1470,1,1931,
7096870,1,412,2433,16,
70970,298,1,1933,2434,
709816,0,555,1,1876,
70992435,16,0,555,1,
7100431,2436,16,0,555,
71011,1585,2437,16,0,
7102555,1,182,2438,16,
71030,555,1,1628,2439,
710416,0,298,1,1189,
71052440,16,0,555,1,
7106437,2441,16,0,298,
71071,1591,2442,16,0,
7108298,1,188,1519,1,
71091695,2443,16,0,555,
71101,2198,2444,16,0,
7111555,1,1195,2445,16,
71120,298,1,1449,2446,
711316,0,298,1,1701,
71142447,16,0,298,1,
7115447,2448,16,0,555,
71161,199,2449,16,0,
7117555,1,2459,891,1,
71181958,2450,16,0,555,
71191,2462,898,1,1657,
7120903,1,205,2451,16,
71210,298,1,459,2452,
712216,0,555,1,462,
71232453,16,0,555,1,
71241665,2454,16,0,298,
71251,217,2455,16,0,
7126555,1,2227,917,1,
7127942,1491,1,1225,2456,
712816,0,555,1,223,
71292457,16,0,298,1,
71301479,2458,16,0,555,
71311,1731,2459,16,0,
7132555,1,477,1555,1,
71331231,2460,16,0,298,
71341,479,1565,1,480,
71351570,1,1485,2461,16,
71360,298,1,1737,2462,
713716,0,298,1,1989,
7138925,1,1990,2463,16,
71390,555,1,1443,2464,
714016,0,555,1,236,
71412465,16,0,555,1,
71422136,852,1,476,1549,
71431,242,2466,16,0,
7144298,1,478,1588,1,
71451939,2467,16,0,298,
71461,2670,2468,16,0,
7147555,1,1001,1598,1,
71481002,1603,1,1756,2469,
714916,0,555,1,26,
71502470,19,317,1,26,
71512471,5,84,1,1011,
71521112,1,1012,2472,16,
71530,315,1,1013,1268,
71541,262,1129,1,1267,
71552473,16,0,315,1,
7156515,2474,16,0,672,
71571,1521,2475,16,0,
7158315,1,525,1226,1,
7159283,1182,1,2299,2476,
716016,0,315,1,42,
71612477,16,0,315,1,
716240,1187,1,44,1193,
71631,47,1194,1,1303,
71642478,16,0,315,1,
71651555,2479,16,0,315,
71661,50,1211,1,48,
71671200,1,49,1206,1,
716851,1216,1,63,1232,
71691,305,1221,1,66,
71701238,1,67,1243,1,
717168,1248,1,69,1253,
71721,70,1258,1,73,
71732480,16,0,315,1,
717474,1263,1,328,1312,
71751,1048,1354,1,82,
71762481,16,0,315,1,
71771840,2482,16,0,315,
71781,1591,2483,16,0,
7179315,1,1341,2484,16,
71800,315,1,1096,1322,
71811,93,1328,1,352,
71821359,1,107,2485,16,
71830,315,1,1114,1353,
71841,118,1365,1,1123,
71852486,16,0,315,1,
7186371,1375,1,1628,2487,
718716,0,315,1,375,
71881386,1,1882,2488,16,
71890,315,1,377,1391,
71901,379,1396,1,380,
71911401,1,883,2489,16,
71920,315,1,373,1419,
71931,130,1424,1,143,
71942490,16,0,315,1,
7195387,2491,16,0,315,
71961,1159,2492,16,0,
7197315,1,157,2493,16,
71980,315,1,1413,2494,
719916,0,315,1,1665,
72002495,16,0,315,1,
7201412,2496,16,0,315,
72021,2676,2497,16,0,
7203315,1,1377,2498,16,
72040,315,1,172,1470,
72051,1939,2499,16,0,
7206315,1,437,2500,16,
72070,605,1,188,1519,
72081,942,1491,1,1195,
72092501,16,0,315,1,
72101449,2502,16,0,315,
72111,1701,2503,16,0,
7212315,1,447,1512,1,
7213205,2504,16,0,315,
72141,827,2505,16,0,
7215315,1,223,2506,16,
72160,315,1,476,1549,
72171,477,1555,1,1231,
72182507,16,0,315,1,
7219479,1565,1,480,1570,
72201,1485,2508,16,0,
7221315,1,1737,2509,16,
72220,315,1,242,2510,
722316,0,315,1,478,
72241588,1,1001,1598,1,
72251002,1603,1,27,2511,
722619,614,1,27,2512,
72275,95,1,256,2513,
722816,0,612,1,1261,
72292514,16,0,612,1,
7230509,2515,16,0,612,
72311,1515,2516,16,0,
7232612,1,2021,728,1,
72331775,2517,16,0,612,
72341,2029,735,1,2030,
7235741,1,2031,746,1,
72362032,751,1,2033,756,
72371,277,2518,16,0,
7238612,1,2035,762,1,
72392037,767,1,2039,772,
72401,32,2519,16,0,
7241612,1,2041,778,1,
72422293,2520,16,0,612,
72431,2043,784,1,2045,
7244789,1,41,2521,16,
72450,612,1,1297,2522,
724616,0,612,1,43,
72472523,16,0,612,1,
72481803,797,1,1804,2524,
724916,0,612,1,299,
72502525,16,0,612,1,
725152,2526,16,0,612,
72521,2318,2527,16,0,
7253612,1,62,2528,16,
72540,612,1,2075,2529,
725516,0,612,1,1574,
7256809,1,71,2530,16,
72570,612,1,76,2531,
725816,0,612,1,1834,
72592532,16,0,612,1,
72602337,2533,16,0,612,
72611,79,2534,16,0,
7262612,1,1335,2535,16,
72630,612,1,322,2536,
726416,0,612,1,85,
72652537,16,0,612,1,
726689,2538,16,0,612,
72671,346,2539,16,0,
7268612,1,2105,824,1,
72692106,2540,16,0,612,
72701,97,2541,16,0,
7271612,1,1860,831,1,
72722364,837,1,102,2542,
727316,0,612,1,112,
72742543,16,0,612,1,
72751117,2544,16,0,612,
72761,1873,845,1,1876,
72772545,16,0,612,1,
7278124,2546,16,0,612,
72791,2136,852,1,381,
72802547,16,0,612,1,
7281525,2548,16,0,612,
72821,137,2549,16,0,
7283612,1,1901,2550,16,
72840,612,1,1153,2551,
728516,0,612,1,151,
72862552,16,0,612,1,
72871407,2553,16,0,612,
72881,1659,2554,16,0,
7289612,1,2413,2555,16,
72900,612,1,406,2556,
729116,0,612,1,1371,
72922557,16,0,612,1,
7293166,2558,16,0,612,
72941,1622,2559,16,0,
7295612,1,1931,870,1,
72961933,2560,16,0,612,
72971,431,2561,16,0,
7298612,1,1585,2562,16,
72990,612,1,182,2563,
730016,0,612,1,1189,
73012564,16,0,612,1,
73021443,2565,16,0,612,
73031,1695,2566,16,0,
7304612,1,2198,2567,16,
73050,612,1,447,2568,
730616,0,612,1,2458,
7307885,1,2459,891,1,
73081958,2569,16,0,612,
73091,2462,898,1,1657,
7310903,1,2464,908,1,
7311199,2570,16,0,612,
73121,459,2571,16,0,
7313612,1,462,2572,16,
73140,612,1,217,2573,
731516,0,612,1,2227,
7316917,1,1225,2574,16,
73170,612,1,1479,2575,
731816,0,612,1,1731,
73192576,16,0,612,1,
73201989,925,1,1990,2577,
732116,0,612,1,236,
73222578,16,0,612,1,
73232670,2579,16,0,612,
73241,1756,2580,16,0,
7325612,1,28,2581,19,
7326642,1,28,2582,5,
732760,1,328,1312,1,
7328223,1539,1,1096,1322,
73291,118,1365,1,883,
73301407,1,525,1226,1,
73311001,1598,1,130,1424,
73321,459,1712,1,1114,
73331353,1,352,1359,1,
7334447,1512,1,464,1707,
73351,1011,1112,1,1013,
73361268,1,242,1583,1,
7337143,1429,1,40,1187,
73381,41,1681,1,42,
73391685,1,479,1565,1,
734044,1193,1,481,1714,
73411,373,1419,1,47,
73421194,1,157,1452,1,
734349,1206,1,50,1211,
73441,48,1200,1,379,
73451396,1,380,1401,1,
734651,1216,1,476,1549,
73471,371,1375,1,478,
73481588,1,1048,1354,1,
7349375,1386,1,172,1470,
73501,262,1129,1,283,
73511182,1,63,1232,1,
735267,1243,1,68,1248,
73531,69,1253,1,66,
73541238,1,461,2583,16,
73550,640,1,74,1263,
73561,377,1391,1,1002,
73571603,1,70,1258,1,
7358188,1519,1,82,1290,
73591,305,1221,1,477,
73601555,1,827,1341,1,
736193,1328,1,480,1570,
73621,205,1524,1,942,
73631491,1,107,1348,1,
736429,2584,19,289,1,
736529,2585,5,84,1,
73661011,1112,1,1012,2586,
736716,0,287,1,1013,
73681268,1,262,1129,1,
73691267,2587,16,0,287,
73701,515,2588,16,0,
7371287,1,1521,2589,16,
73720,287,1,525,1226,
73731,283,1182,1,2299,
73742590,16,0,287,1,
737542,2591,16,0,287,
73761,40,1187,1,44,
73771193,1,47,1194,1,
73781303,2592,16,0,287,
73791,1555,2593,16,0,
7380287,1,50,1211,1,
738148,1200,1,49,1206,
73821,51,1216,1,63,
73831232,1,305,1221,1,
738466,1238,1,67,1243,
73851,68,1248,1,69,
73861253,1,70,1258,1,
738773,2594,16,0,287,
73881,74,1263,1,328,
73891312,1,1048,1354,1,
739082,2595,16,0,287,
73911,1840,2596,16,0,
7392287,1,1591,2597,16,
73930,287,1,1341,2598,
739416,0,287,1,1096,
73951322,1,93,1328,1,
7396352,1359,1,107,2599,
739716,0,287,1,1114,
73981353,1,118,1365,1,
73991123,2600,16,0,287,
74001,371,1375,1,1628,
74012601,16,0,287,1,
7402375,1386,1,1882,2602,
740316,0,287,1,377,
74041391,1,379,1396,1,
7405380,1401,1,883,2603,
740616,0,287,1,373,
74071419,1,130,1424,1,
7408143,1429,1,387,2604,
740916,0,287,1,1159,
74102605,16,0,287,1,
7411157,1452,1,1413,2606,
741216,0,287,1,1665,
74132607,16,0,287,1,
7414412,2608,16,0,287,
74151,2676,2609,16,0,
7416287,1,1377,2610,16,
74170,287,1,172,1470,
74181,1939,2611,16,0,
7419287,1,437,2612,16,
74200,287,1,188,1519,
74211,942,1491,1,1195,
74222613,16,0,287,1,
74231449,2614,16,0,287,
74241,1701,2615,16,0,
7425287,1,447,1512,1,
7426205,2616,16,0,287,
74271,827,2617,16,0,
7428287,1,223,2618,16,
74290,287,1,476,1549,
74301,477,1555,1,1231,
74312619,16,0,287,1,
7432479,1565,1,480,1570,
74331,1485,2620,16,0,
7434287,1,1737,2621,16,
74350,287,1,242,2622,
743616,0,287,1,478,
74371588,1,1001,1598,1,
74381002,1603,1,30,2623,
743919,277,1,30,2624,
74405,84,1,1011,1112,
74411,1012,2625,16,0,
7442275,1,1013,1268,1,
7443262,1129,1,1267,2626,
744416,0,275,1,515,
74452627,16,0,275,1,
74461521,2628,16,0,275,
74471,525,1226,1,283,
74481182,1,2299,2629,16,
74490,275,1,42,2630,
745016,0,275,1,40,
74511187,1,44,1193,1,
745247,1194,1,1303,2631,
745316,0,275,1,1555,
74542632,16,0,275,1,
745550,1211,1,48,1200,
74561,49,1206,1,51,
74571216,1,63,1232,1,
7458305,1221,1,66,1238,
74591,67,1243,1,68,
74601248,1,69,1253,1,
746170,1258,1,73,2633,
746216,0,275,1,74,
74631263,1,328,1312,1,
74641048,1354,1,82,2634,
746516,0,275,1,1840,
74662635,16,0,275,1,
74671591,2636,16,0,275,
74681,1341,2637,16,0,
7469275,1,1096,1322,1,
747093,1328,1,352,1359,
74711,107,2638,16,0,
7472275,1,1114,1353,1,
7473118,1365,1,1123,2639,
747416,0,275,1,371,
74751375,1,1628,2640,16,
74760,275,1,375,1386,
74771,1882,2641,16,0,
7478275,1,377,1391,1,
7479379,1396,1,380,1401,
74801,883,2642,16,0,
7481275,1,373,1419,1,
7482130,1424,1,143,1429,
74831,387,2643,16,0,
7484275,1,1159,2644,16,
74850,275,1,157,1452,
74861,1413,2645,16,0,
7487275,1,1665,2646,16,
74880,275,1,412,2647,
748916,0,275,1,2676,
74902648,16,0,275,1,
74911377,2649,16,0,275,
74921,172,1470,1,1939,
74932650,16,0,275,1,
7494437,2651,16,0,275,
74951,188,1519,1,942,
74961491,1,1195,2652,16,
74970,275,1,1449,2653,
749816,0,275,1,1701,
74992654,16,0,275,1,
7500447,1512,1,205,2655,
750116,0,275,1,827,
75022656,16,0,275,1,
7503223,2657,16,0,275,
75041,476,1549,1,477,
75051555,1,1231,2658,16,
75060,275,1,479,1565,
75071,480,1570,1,1485,
75082659,16,0,275,1,
75091737,2660,16,0,275,
75101,242,2661,16,0,
7511275,1,478,1588,1,
75121001,1598,1,1002,1603,
75131,31,2662,19,266,
75141,31,2663,5,84,
75151,1011,1112,1,1012,
75162664,16,0,264,1,
75171013,1268,1,262,1129,
75181,1267,2665,16,0,
7519264,1,515,2666,16,
75200,264,1,1521,2667,
752116,0,264,1,525,
75221226,1,283,1182,1,
75232299,2668,16,0,264,
75241,42,2669,16,0,
7525264,1,40,1187,1,
752644,1193,1,47,1194,
75271,1303,2670,16,0,
7528264,1,1555,2671,16,
75290,264,1,50,1211,
75301,48,1200,1,49,
75311206,1,51,1216,1,
753263,1232,1,305,1221,
75331,66,1238,1,67,
75341243,1,68,1248,1,
753569,1253,1,70,1258,
75361,73,2672,16,0,
7537264,1,74,1263,1,
7538328,1312,1,1048,1354,
75391,82,2673,16,0,
7540264,1,1840,2674,16,
75410,264,1,1591,2675,
754216,0,264,1,1341,
75432676,16,0,264,1,
75441096,1322,1,93,1328,
75451,352,1359,1,107,
75462677,16,0,264,1,
75471114,1353,1,118,1365,
75481,1123,2678,16,0,
7549264,1,371,1375,1,
75501628,2679,16,0,264,
75511,375,1386,1,1882,
75522680,16,0,264,1,
7553377,1391,1,379,1396,
75541,380,1401,1,883,
75552681,16,0,264,1,
7556373,1419,1,130,1424,
75571,143,2682,16,0,
7558264,1,387,2683,16,
75590,264,1,1159,2684,
756016,0,264,1,157,
75612685,16,0,264,1,
75621413,2686,16,0,264,
75631,1665,2687,16,0,
7564264,1,412,2688,16,
75650,264,1,2676,2689,
756616,0,264,1,1377,
75672690,16,0,264,1,
7568172,1470,1,1939,2691,
756916,0,264,1,437,
75702692,16,0,264,1,
7571188,1519,1,942,1491,
75721,1195,2693,16,0,
7573264,1,1449,2694,16,
75740,264,1,1701,2695,
757516,0,264,1,447,
75761512,1,205,2696,16,
75770,264,1,827,2697,
757816,0,264,1,223,
75792698,16,0,264,1,
7580476,1549,1,477,1555,
75811,1231,2699,16,0,
7582264,1,479,1565,1,
7583480,1570,1,1485,2700,
758416,0,264,1,1737,
75852701,16,0,264,1,
7586242,2702,16,0,264,
75871,478,1588,1,1001,
75881598,1,1002,1603,1,
758932,2703,19,256,1,
759032,2704,5,84,1,
75911011,1112,1,1012,2705,
759216,0,254,1,1013,
75931268,1,262,1129,1,
75941267,2706,16,0,254,
75951,515,2707,16,0,
7596254,1,1521,2708,16,
75970,254,1,525,1226,
75981,283,1182,1,2299,
75992709,16,0,254,1,
760042,2710,16,0,254,
76011,40,1187,1,44,
76021193,1,47,1194,1,
76031303,2711,16,0,254,
76041,1555,2712,16,0,
7605254,1,50,1211,1,
760648,1200,1,49,1206,
76071,51,1216,1,63,
76081232,1,305,1221,1,
760966,1238,1,67,1243,
76101,68,1248,1,69,
76111253,1,70,1258,1,
761273,2713,16,0,254,
76131,74,1263,1,328,
76141312,1,1048,1354,1,
761582,2714,16,0,254,
76161,1840,2715,16,0,
7617254,1,1591,2716,16,
76180,254,1,1341,2717,
761916,0,254,1,1096,
76201322,1,93,1328,1,
7621352,1359,1,107,2718,
762216,0,254,1,1114,
76231353,1,118,1365,1,
76241123,2719,16,0,254,
76251,371,1375,1,1628,
76262720,16,0,254,1,
7627375,1386,1,1882,2721,
762816,0,254,1,377,
76291391,1,379,1396,1,
7630380,1401,1,883,2722,
763116,0,254,1,373,
76321419,1,130,1424,1,
7633143,2723,16,0,254,
76341,387,2724,16,0,
7635254,1,1159,2725,16,
76360,254,1,157,2726,
763716,0,254,1,1413,
76382727,16,0,254,1,
76391665,2728,16,0,254,
76401,412,2729,16,0,
7641254,1,2676,2730,16,
76420,254,1,1377,2731,
764316,0,254,1,172,
76441470,1,1939,2732,16,
76450,254,1,437,2733,
764616,0,254,1,188,
76471519,1,942,1491,1,
76481195,2734,16,0,254,
76491,1449,2735,16,0,
7650254,1,1701,2736,16,
76510,254,1,447,1512,
76521,205,2737,16,0,
7653254,1,827,2738,16,
76540,254,1,223,2739,
765516,0,254,1,476,
76561549,1,477,1555,1,
76571231,2740,16,0,254,
76581,479,1565,1,480,
76591570,1,1485,2741,16,
76600,254,1,1737,2742,
766116,0,254,1,242,
76622743,16,0,254,1,
7663478,1588,1,1001,1598,
76641,1002,1603,1,33,
76652744,19,340,1,33,
76662745,5,84,1,1011,
76671112,1,1012,2746,16,
76680,338,1,1013,1268,
76691,262,1129,1,1267,
76702747,16,0,338,1,
7671515,2748,16,0,338,
76721,1521,2749,16,0,
7673338,1,525,1226,1,
7674283,1182,1,2299,2750,
767516,0,338,1,42,
76762751,16,0,338,1,
767740,1187,1,44,1193,
76781,47,1194,1,1303,
76792752,16,0,338,1,
76801555,2753,16,0,338,
76811,50,1211,1,48,
76821200,1,49,1206,1,
768351,1216,1,63,1232,
76841,305,1221,1,66,
76851238,1,67,1243,1,
768668,1248,1,69,1253,
76871,70,1258,1,73,
76882754,16,0,338,1,
768974,1263,1,328,1312,
76901,1048,1354,1,82,
76912755,16,0,338,1,
76921840,2756,16,0,338,
76931,1591,2757,16,0,
7694338,1,1341,2758,16,
76950,338,1,1096,1322,
76961,93,1328,1,352,
76971359,1,107,2759,16,
76980,338,1,1114,1353,
76991,118,1365,1,1123,
77002760,16,0,338,1,
7701371,1375,1,1628,2761,
770216,0,338,1,375,
77031386,1,1882,2762,16,
77040,338,1,377,1391,
77051,379,1396,1,380,
77061401,1,883,2763,16,
77070,338,1,373,1419,
77081,130,1424,1,143,
77091429,1,387,2764,16,
77100,338,1,1159,2765,
771116,0,338,1,157,
77121452,1,1413,2766,16,
77130,338,1,1665,2767,
771416,0,338,1,412,
77152768,16,0,338,1,
77162676,2769,16,0,338,
77171,1377,2770,16,0,
7718338,1,172,1470,1,
77191939,2771,16,0,338,
77201,437,2772,16,0,
7721338,1,188,1519,1,
7722942,1491,1,1195,2773,
772316,0,338,1,1449,
77242774,16,0,338,1,
77251701,2775,16,0,338,
77261,447,1512,1,205,
77272776,16,0,338,1,
7728827,2777,16,0,338,
77291,223,2778,16,0,
7730338,1,476,1549,1,
7731477,1555,1,1231,2779,
773216,0,338,1,479,
77331565,1,480,1570,1,
77341485,2780,16,0,338,
77351,1737,2781,16,0,
7736338,1,242,1583,1,
7737478,1588,1,1001,1598,
77381,1002,1603,1,34,
77392782,19,330,1,34,
77402783,5,84,1,1011,
77411112,1,1012,2784,16,
77420,328,1,1013,1268,
77431,262,1129,1,1267,
77442785,16,0,328,1,
7745515,2786,16,0,328,
77461,1521,2787,16,0,
7747328,1,525,1226,1,
7748283,1182,1,2299,2788,
774916,0,328,1,42,
77502789,16,0,328,1,
775140,1187,1,44,1193,
77521,47,1194,1,1303,
77532790,16,0,328,1,
77541555,2791,16,0,328,
77551,50,1211,1,48,
77561200,1,49,1206,1,
775751,1216,1,63,1232,
77581,305,1221,1,66,
77591238,1,67,1243,1,
776068,1248,1,69,1253,
77611,70,1258,1,73,
77622792,16,0,328,1,
776374,1263,1,328,1312,
77641,1048,1354,1,82,
77652793,16,0,328,1,
77661840,2794,16,0,328,
77671,1591,2795,16,0,
7768328,1,1341,2796,16,
77690,328,1,1096,1322,
77701,93,1328,1,352,
77711359,1,107,2797,16,
77720,328,1,1114,1353,
77731,118,1365,1,1123,
77742798,16,0,328,1,
7775371,1375,1,1628,2799,
777616,0,328,1,375,
77771386,1,1882,2800,16,
77780,328,1,377,1391,
77791,379,1396,1,380,
77801401,1,883,2801,16,
77810,328,1,373,1419,
77821,130,1424,1,143,
77831429,1,387,2802,16,
77840,328,1,1159,2803,
778516,0,328,1,157,
77861452,1,1413,2804,16,
77870,328,1,1665,2805,
778816,0,328,1,412,
77892806,16,0,328,1,
77902676,2807,16,0,328,
77911,1377,2808,16,0,
7792328,1,172,1470,1,
77931939,2809,16,0,328,
77941,437,2810,16,0,
7795328,1,188,1519,1,
7796942,1491,1,1195,2811,
779716,0,328,1,1449,
77982812,16,0,328,1,
77991701,2813,16,0,328,
78001,447,1512,1,205,
78011524,1,827,2814,16,
78020,328,1,223,1539,
78031,476,1549,1,477,
78041555,1,1231,2815,16,
78050,328,1,479,1565,
78061,480,1570,1,1485,
78072816,16,0,328,1,
78081737,2817,16,0,328,
78091,242,1583,1,478,
78101588,1,1001,1598,1,
78111002,1603,1,35,2818,
781219,320,1,35,2819,
78135,84,1,1011,1112,
78141,1012,2820,16,0,
7815318,1,1013,1268,1,
7816262,1129,1,1267,2821,
781716,0,318,1,515,
78182822,16,0,318,1,
78191521,2823,16,0,318,
78201,525,1226,1,283,
78211182,1,2299,2824,16,
78220,318,1,42,2825,
782316,0,318,1,40,
78241187,1,44,1193,1,
782547,1194,1,1303,2826,
782616,0,318,1,1555,
78272827,16,0,318,1,
782850,1211,1,48,1200,
78291,49,1206,1,51,
78301216,1,63,1232,1,
7831305,1221,1,66,1238,
78321,67,1243,1,68,
78331248,1,69,1253,1,
783470,1258,1,73,2828,
783516,0,318,1,74,
78361263,1,328,1312,1,
78371048,1354,1,82,2829,
783816,0,318,1,1840,
78392830,16,0,318,1,
78401591,2831,16,0,318,
78411,1341,2832,16,0,
7842318,1,1096,1322,1,
784393,1328,1,352,1359,
78441,107,2833,16,0,
7845318,1,1114,1353,1,
7846118,1365,1,1123,2834,
784716,0,318,1,371,
78481375,1,1628,2835,16,
78490,318,1,375,1386,
78501,1882,2836,16,0,
7851318,1,377,1391,1,
7852379,1396,1,380,1401,
78531,883,2837,16,0,
7854318,1,373,1419,1,
7855130,1424,1,143,1429,
78561,387,2838,16,0,
7857318,1,1159,2839,16,
78580,318,1,157,1452,
78591,1413,2840,16,0,
7860318,1,1665,2841,16,
78610,318,1,412,2842,
786216,0,318,1,2676,
78632843,16,0,318,1,
78641377,2844,16,0,318,
78651,172,1470,1,1939,
78662845,16,0,318,1,
7867437,2846,16,0,318,
78681,188,1519,1,942,
78691491,1,1195,2847,16,
78700,318,1,1449,2848,
787116,0,318,1,1701,
78722849,16,0,318,1,
7873447,1512,1,205,1524,
78741,827,2850,16,0,
7875318,1,223,2851,16,
78760,318,1,476,1549,
78771,477,1555,1,1231,
78782852,16,0,318,1,
7879479,1565,1,480,1570,
78801,1485,2853,16,0,
7881318,1,1737,2854,16,
78820,318,1,242,1583,
78831,478,1588,1,1001,
78841598,1,1002,1603,1,
788536,2855,19,226,1,
788636,2856,5,94,1,
7887256,2857,16,0,224,
78881,1261,2858,16,0,
7889224,1,509,2859,16,
78900,224,1,1515,2860,
789116,0,224,1,2021,
7892728,1,1775,2861,16,
78930,224,1,2029,735,
78941,2030,741,1,2031,
7895746,1,2032,751,1,
78962033,756,1,277,2862,
789716,0,224,1,2035,
7898762,1,2037,767,1,
78992039,772,1,32,2863,
790016,0,224,1,2041,
7901778,1,2293,2864,16,
79020,224,1,2043,784,
79031,2045,789,1,41,
79042865,16,0,224,1,
79051297,2866,16,0,224,
79061,43,2867,16,0,
7907224,1,1803,797,1,
79081804,2868,16,0,224,
79091,299,2869,16,0,
7910224,1,52,2870,16,
79110,224,1,2318,2871,
791216,0,224,1,2075,
79132872,16,0,224,1,
79141574,809,1,71,2873,
791516,0,224,1,76,
79162874,16,0,224,1,
79171834,2875,16,0,224,
79181,2337,2876,16,0,
7919224,1,79,2877,16,
79200,224,1,1335,2878,
792116,0,224,1,322,
79222879,16,0,224,1,
792385,2880,16,0,224,
79241,89,2881,16,0,
7925224,1,346,2882,16,
79260,224,1,2105,824,
79271,2106,2883,16,0,
7928224,1,97,2884,16,
79290,224,1,1860,831,
79301,2364,837,1,102,
79312885,16,0,224,1,
7932112,2886,16,0,224,
79331,1117,2887,16,0,
7934224,1,1873,845,1,
79351876,2888,16,0,224,
79361,124,2889,16,0,
7937224,1,2136,852,1,
7938381,2890,16,0,224,
79391,525,2891,16,0,
7940224,1,137,2892,16,
79410,224,1,1901,2893,
794216,0,224,1,1153,
79432894,16,0,224,1,
7944151,2895,16,0,224,
79451,1407,2896,16,0,
7946224,1,1659,2897,16,
79470,224,1,2413,2898,
794816,0,224,1,406,
79492899,16,0,224,1,
79502670,2900,16,0,224,
79511,1657,903,1,166,
79522901,16,0,224,1,
79531622,2902,16,0,224,
79541,1931,870,1,1933,
79552903,16,0,224,1,
7956431,2904,16,0,224,
79571,1585,2905,16,0,
7958224,1,182,2906,16,
79590,224,1,1189,2907,
796016,0,224,1,1443,
79612908,16,0,224,1,
79621695,2909,16,0,224,
79631,2198,2910,16,0,
7964224,1,447,2911,16,
79650,224,1,2458,885,
79661,2459,891,1,1958,
79672912,16,0,224,1,
79682462,898,1,1371,2913,
796916,0,224,1,2464,
7970908,1,199,2914,16,
79710,224,1,459,2915,
797216,0,224,1,462,
79732916,16,0,224,1,
7974217,2917,16,0,224,
79751,2227,917,1,1225,
79762918,16,0,224,1,
79771479,2919,16,0,224,
79781,1731,2920,16,0,
7979224,1,1989,925,1,
79801990,2921,16,0,224,
79811,236,2922,16,0,
7982224,1,1756,2923,16,
79830,224,1,37,2924,
798419,246,1,37,2925,
79855,94,1,256,2926,
798616,0,244,1,1261,
79872927,16,0,244,1,
7988509,2928,16,0,244,
79891,1515,2929,16,0,
7990244,1,2021,728,1,
79911775,2930,16,0,244,
79921,2029,735,1,2030,
7993741,1,2031,746,1,
79942032,751,1,2033,756,
79951,277,2931,16,0,
7996244,1,2035,762,1,
79972037,767,1,2039,772,
79981,32,2932,16,0,
7999244,1,2041,778,1,
80002293,2933,16,0,244,
80011,2043,784,1,2045,
8002789,1,41,2934,16,
80030,244,1,1297,2935,
800416,0,244,1,43,
80052936,16,0,244,1,
80061803,797,1,1804,2937,
800716,0,244,1,299,
80082938,16,0,244,1,
800952,2939,16,0,244,
80101,2318,2940,16,0,
8011244,1,2075,2941,16,
80120,244,1,1574,809,
80131,71,2942,16,0,
8014244,1,76,2943,16,
80150,244,1,1834,2944,
801616,0,244,1,2337,
80172945,16,0,244,1,
801879,2946,16,0,244,
80191,1335,2947,16,0,
8020244,1,322,2948,16,
80210,244,1,85,2949,
802216,0,244,1,89,
80232950,16,0,244,1,
8024346,2951,16,0,244,
80251,2105,824,1,2106,
80262952,16,0,244,1,
802797,2953,16,0,244,
80281,1860,831,1,2364,
8029837,1,102,2954,16,
80300,244,1,112,2955,
803116,0,244,1,1117,
80322956,16,0,244,1,
80331873,845,1,1876,2957,
803416,0,244,1,124,
80352958,16,0,244,1,
80362136,852,1,381,2959,
803716,0,244,1,525,
80382960,16,0,244,1,
8039137,2961,16,0,244,
80401,1901,2962,16,0,
8041244,1,1153,2963,16,
80420,244,1,151,2964,
804316,0,244,1,1407,
80442965,16,0,244,1,
80451659,2966,16,0,244,
80461,2413,2967,16,0,
8047244,1,406,2968,16,
80480,244,1,2670,2969,
804916,0,244,1,1657,
8050903,1,166,2970,16,
80510,244,1,1622,2971,
805216,0,244,1,1931,
8053870,1,1933,2972,16,
80540,244,1,431,2973,
805516,0,244,1,1585,
80562974,16,0,244,1,
8057182,2975,16,0,244,
80581,1189,2976,16,0,
8059244,1,1443,2977,16,
80600,244,1,1695,2978,
806116,0,244,1,2198,
80622979,16,0,244,1,
8063447,2980,16,0,244,
80641,2458,885,1,2459,
8065891,1,1958,2981,16,
80660,244,1,2462,898,
80671,1371,2982,16,0,
8068244,1,2464,908,1,
8069199,2983,16,0,244,
80701,459,2984,16,0,
8071244,1,462,2985,16,
80720,244,1,217,2986,
807316,0,244,1,2227,
8074917,1,1225,2987,16,
80750,244,1,1479,2988,
807616,0,244,1,1731,
80772989,16,0,244,1,
80781989,925,1,1990,2990,
807916,0,244,1,236,
80802991,16,0,244,1,
80811756,2992,16,0,244,
80821,38,2993,19,243,
80831,38,2994,5,84,
80841,1011,1112,1,1012,
80852995,16,0,241,1,
80861013,1268,1,262,1129,
80871,1267,2996,16,0,
8088241,1,515,2997,16,
80890,241,1,1521,2998,
809016,0,241,1,525,
80911226,1,283,1182,1,
80922299,2999,16,0,241,
80931,42,3000,16,0,
8094241,1,40,1187,1,
809544,1193,1,47,1194,
80961,1303,3001,16,0,
8097241,1,1555,3002,16,
80980,241,1,50,1211,
80991,48,1200,1,49,
81001206,1,51,1216,1,
810163,1232,1,305,1221,
81021,66,1238,1,67,
81031243,1,68,1248,1,
810469,1253,1,70,1258,
81051,73,3003,16,0,
8106241,1,74,1263,1,
8107328,1312,1,1048,1354,
81081,82,3004,16,0,
8109241,1,1840,3005,16,
81100,241,1,1591,3006,
811116,0,241,1,1341,
81123007,16,0,241,1,
81131096,1322,1,93,1328,
81141,352,1359,1,107,
81153008,16,0,241,1,
81161114,1353,1,118,1365,
81171,1123,3009,16,0,
8118241,1,371,1375,1,
81191628,3010,16,0,241,
81201,375,1386,1,1882,
81213011,16,0,241,1,
8122377,1391,1,379,1396,
81231,380,1401,1,883,
81241407,1,373,1419,1,
8125130,1424,1,143,1429,
81261,387,3012,16,0,
8127241,1,1159,3013,16,
81280,241,1,157,1452,
81291,1413,3014,16,0,
8130241,1,1665,3015,16,
81310,241,1,412,3016,
813216,0,241,1,2676,
81333017,16,0,241,1,
81341377,3018,16,0,241,
81351,172,1470,1,1939,
81363019,16,0,241,1,
8137437,3020,16,0,241,
81381,188,1519,1,942,
81391491,1,1195,3021,16,
81400,241,1,1449,3022,
814116,0,241,1,1701,
81423023,16,0,241,1,
8143447,1512,1,205,1524,
81441,827,1341,1,223,
81451539,1,476,1549,1,
8146477,1555,1,1231,3024,
814716,0,241,1,479,
81481565,1,480,1570,1,
81491485,3025,16,0,241,
81501,1737,3026,16,0,
8151241,1,242,1583,1,
8152478,1588,1,1001,1598,
81531,1002,1603,1,39,
81543027,19,232,1,39,
81553028,5,84,1,1011,
81561112,1,1012,3029,16,
81570,230,1,1013,1268,
81581,262,1129,1,1267,
81593030,16,0,230,1,
8160515,3031,16,0,230,
81611,1521,3032,16,0,
8162230,1,525,1226,1,
8163283,1182,1,2299,3033,
816416,0,230,1,42,
81653034,16,0,230,1,
816640,1187,1,44,1193,
81671,47,1194,1,1303,
81683035,16,0,230,1,
81691555,3036,16,0,230,
81701,50,1211,1,48,
81711200,1,49,1206,1,
817251,1216,1,63,1232,
81731,305,1221,1,66,
81741238,1,67,1243,1,
817568,1248,1,69,1253,
81761,70,1258,1,73,
81773037,16,0,230,1,
817874,1263,1,328,1312,
81791,1048,1354,1,82,
81803038,16,0,230,1,
81811840,3039,16,0,230,
81821,1591,3040,16,0,
8183230,1,1341,3041,16,
81840,230,1,1096,1322,
81851,93,1328,1,352,
81861359,1,107,3042,16,
81870,230,1,1114,1353,
81881,118,1365,1,1123,
81893043,16,0,230,1,
8190371,1375,1,1628,3044,
819116,0,230,1,375,
81921386,1,1882,3045,16,
81930,230,1,377,1391,
81941,379,1396,1,380,
81951401,1,883,1407,1,
8196373,1419,1,130,1424,
81971,143,1429,1,387,
81983046,16,0,230,1,
81991159,3047,16,0,230,
82001,157,1452,1,1413,
82013048,16,0,230,1,
82021665,3049,16,0,230,
82031,412,3050,16,0,
8204230,1,2676,3051,16,
82050,230,1,1377,3052,
820616,0,230,1,172,
82071470,1,1939,3053,16,
82080,230,1,437,3054,
820916,0,230,1,188,
82101519,1,942,1491,1,
82111195,3055,16,0,230,
82121,1449,3056,16,0,
8213230,1,1701,3057,16,
82140,230,1,447,1512,
82151,205,1524,1,827,
82161341,1,223,1539,1,
8217476,1549,1,477,1555,
82181,1231,3058,16,0,
8219230,1,479,1565,1,
8220480,1570,1,1485,3059,
822116,0,230,1,1737,
82223060,16,0,230,1,
8223242,1583,1,478,1588,
82241,1001,1598,1,1002,
82251603,1,40,3061,19,
8226220,1,40,3062,5,
822784,1,1011,1112,1,
82281012,3063,16,0,218,
82291,1013,1268,1,262,
82301129,1,1267,3064,16,
82310,218,1,515,3065,
823216,0,218,1,1521,
82333066,16,0,218,1,
8234525,1226,1,283,1182,
82351,2299,3067,16,0,
8236218,1,42,3068,16,
82370,218,1,40,1187,
82381,44,1193,1,47,
82391194,1,1303,3069,16,
82400,218,1,1555,3070,
824116,0,218,1,50,
82421211,1,48,1200,1,
824349,1206,1,51,1216,
82441,63,1232,1,305,
82451221,1,66,1238,1,
824667,1243,1,68,1248,
82471,69,1253,1,70,
82481258,1,73,3071,16,
82490,218,1,74,1263,
82501,328,1312,1,1048,
82511354,1,82,3072,16,
82520,218,1,1840,3073,
825316,0,218,1,1591,
82543074,16,0,218,1,
82551341,3075,16,0,218,
82561,1096,1322,1,93,
82571328,1,352,1359,1,
8258107,3076,16,0,218,
82591,1114,1353,1,118,
82603077,16,0,218,1,
82611123,3078,16,0,218,
82621,371,1375,1,1628,
82633079,16,0,218,1,
8264375,1386,1,1882,3080,
826516,0,218,1,377,
82661391,1,379,1396,1,
8267380,1401,1,883,3081,
826816,0,218,1,373,
82691419,1,130,3082,16,
82700,218,1,143,3083,
827116,0,218,1,387,
82723084,16,0,218,1,
82731159,3085,16,0,218,
82741,157,3086,16,0,
8275218,1,1413,3087,16,
82760,218,1,1665,3088,
827716,0,218,1,412,
82783089,16,0,218,1,
82792676,3090,16,0,218,
82801,1377,3091,16,0,
8281218,1,172,3092,16,
82820,218,1,1939,3093,
828316,0,218,1,437,
82843094,16,0,218,1,
8285188,3095,16,0,218,
82861,942,1491,1,1195,
82873096,16,0,218,1,
82881449,3097,16,0,218,
82891,1701,3098,16,0,
8290218,1,447,1512,1,
8291205,3099,16,0,218,
82921,827,3100,16,0,
8293218,1,223,3101,16,
82940,218,1,476,1549,
82951,477,1555,1,1231,
82963102,16,0,218,1,
8297479,1565,1,480,1570,
82981,1485,3103,16,0,
8299218,1,1737,3104,16,
83000,218,1,242,3105,
830116,0,218,1,478,
83021588,1,1001,1598,1,
83031002,1603,1,41,3106,
830419,181,1,41,3107,
83055,84,1,1011,1112,
83061,1012,3108,16,0,
8307179,1,1013,1268,1,
8308262,1129,1,1267,3109,
830916,0,179,1,515,
83103110,16,0,179,1,
83111521,3111,16,0,179,
83121,525,1226,1,283,
83131182,1,2299,3112,16,
83140,179,1,42,3113,
831516,0,179,1,40,
83161187,1,44,1193,1,
831747,1194,1,1303,3114,
831816,0,179,1,1555,
83193115,16,0,179,1,
832050,1211,1,48,1200,
83211,49,1206,1,51,
83221216,1,63,1232,1,
8323305,1221,1,66,1238,
83241,67,1243,1,68,
83251248,1,69,1253,1,
832670,1258,1,73,3116,
832716,0,179,1,74,
83281263,1,328,1312,1,
83291048,1354,1,82,3117,
833016,0,179,1,1840,
83313118,16,0,179,1,
83321591,3119,16,0,179,
83331,1341,3120,16,0,
8334179,1,1096,1322,1,
833593,1328,1,352,1359,
83361,107,3121,16,0,
8337179,1,1114,1353,1,
8338118,3122,16,0,179,
83391,1123,3123,16,0,
8340179,1,371,1375,1,
83411628,3124,16,0,179,
83421,375,1386,1,1882,
83433125,16,0,179,1,
8344377,1391,1,379,1396,
83451,380,1401,1,883,
83463126,16,0,179,1,
8347373,1419,1,130,3127,
834816,0,179,1,143,
83493128,16,0,179,1,
8350387,3129,16,0,179,
83511,1159,3130,16,0,
8352179,1,157,3131,16,
83530,179,1,1413,3132,
835416,0,179,1,1665,
83553133,16,0,179,1,
8356412,3134,16,0,179,
83571,2676,3135,16,0,
8358179,1,1377,3136,16,
83590,179,1,172,3137,
836016,0,179,1,1939,
83613138,16,0,179,1,
8362437,3139,16,0,179,
83631,188,3140,16,0,
8364179,1,942,1491,1,
83651195,3141,16,0,179,
83661,1449,3142,16,0,
8367179,1,1701,3143,16,
83680,179,1,447,1512,
83691,205,3144,16,0,
8370179,1,827,3145,16,
83710,179,1,223,3146,
837216,0,179,1,476,
83731549,1,477,1555,1,
83741231,3147,16,0,179,
83751,479,1565,1,480,
83761570,1,1485,3148,16,
83770,179,1,1737,3149,
837816,0,179,1,242,
83793150,16,0,179,1,
8380478,1588,1,1001,1598,
83811,1002,1603,1,42,
83823151,19,402,1,42,
83833152,5,38,1,1901,
83843153,16,0,400,1,
83852075,3154,16,0,400,
83861,1860,831,1,1803,
8387797,1,1804,3155,16,
83880,400,1,2413,3156,
838916,0,400,1,2198,
83903157,16,0,400,1,
83911873,845,1,1657,903,
83921,1989,925,1,1990,
83933158,16,0,400,1,
83941775,3159,16,0,400,
83951,32,3160,16,0,
8396400,1,2105,824,1,
83972106,3161,16,0,400,
83981,2364,837,1,2227,
8399917,1,2337,3162,16,
84000,400,1,2021,728,
84011,2458,885,1,2459,
8402891,1,2462,898,1,
84032136,852,1,2464,908,
84041,2029,735,1,2030,
8405741,1,2031,746,1,
84062032,751,1,2033,756,
84071,2035,762,1,2037,
8408767,1,2039,772,1,
84091931,870,1,2041,778,
84101,2043,784,1,2045,
8411789,1,1574,809,1,
84121958,3163,16,0,400,
84131,43,3164,19,467,
84141,43,3165,5,25,
84151,2035,762,1,2037,
8416767,1,2039,772,1,
84172041,778,1,2227,917,
84181,2043,784,1,1657,
8419903,1,1860,831,1,
84202136,852,1,2021,728,
84211,2459,891,1,1574,
8422809,1,2105,3166,16,
84230,593,1,1931,870,
84241,1873,845,1,2031,
8425746,1,1803,797,1,
84261989,3167,16,0,465,
84271,2464,908,1,2029,
8428735,1,2030,741,1,
84292364,837,1,2032,751,
84301,2033,756,1,2045,
8431789,1,44,3168,19,
8432273,1,44,3169,5,
843338,1,1901,3170,16,
84340,271,1,2075,3171,
843516,0,271,1,1860,
8436831,1,1803,797,1,
84371804,3172,16,0,271,
84381,2413,3173,16,0,
8439271,1,2198,3174,16,
84400,271,1,1873,845,
84411,1657,903,1,1989,
8442925,1,1990,3175,16,
84430,271,1,1775,3176,
844416,0,271,1,32,
84453177,16,0,271,1,
84462105,824,1,2106,3178,
844716,0,271,1,2364,
8448837,1,2227,917,1,
84492337,3179,16,0,271,
84501,2021,728,1,2458,
8451885,1,2459,891,1,
84522462,898,1,2136,852,
84531,2464,908,1,2029,
8454735,1,2030,741,1,
84552031,746,1,2032,751,
84561,2033,756,1,2035,
8457762,1,2037,767,1,
84582039,772,1,1931,870,
84591,2041,778,1,2043,
8460784,1,2045,789,1,
84611574,809,1,1958,3180,
846216,0,271,1,45,
84633181,19,296,1,45,
84643182,5,39,1,1901,
84653183,16,0,324,1,
84662075,3184,16,0,324,
84671,1860,831,1,1803,
8468797,1,1804,3185,16,
84690,324,1,2413,3186,
847016,0,324,1,2198,
84713187,16,0,324,1,
84721873,845,1,1657,903,
84731,1989,925,1,1990,
84743188,16,0,324,1,
84751775,3189,16,0,324,
84761,32,3190,16,0,
8477324,1,2105,824,1,
84782106,3191,16,0,324,
84791,2364,837,1,2227,
8480917,1,2337,3192,16,
84810,324,1,2021,728,
84821,2458,885,1,2459,
8483891,1,2462,898,1,
84842136,852,1,2464,908,
84851,2029,735,1,2030,
8486741,1,2031,746,1,
84872032,751,1,2033,756,
84881,2035,762,1,2037,
8489767,1,2039,772,1,
84901931,870,1,2041,778,
84911,2043,784,1,2045,
8492789,1,1832,3193,16,
84930,294,1,1574,809,
84941,1958,3194,16,0,
8495324,1,46,3195,19,
8496681,1,46,3196,5,
849738,1,1901,3197,16,
84980,679,1,2075,3198,
849916,0,679,1,1860,
8500831,1,1803,797,1,
85011804,3199,16,0,679,
85021,2413,3200,16,0,
8503679,1,2198,3201,16,
85040,679,1,1873,845,
85051,1657,903,1,1989,
8506925,1,1990,3202,16,
85070,679,1,1775,3203,
850816,0,679,1,32,
85093204,16,0,679,1,
85102105,824,1,2106,3205,
851116,0,679,1,2364,
8512837,1,2227,917,1,
85132337,3206,16,0,679,
85141,2021,728,1,2458,
8515885,1,2459,891,1,
85162462,898,1,2136,852,
85171,2464,908,1,2029,
8518735,1,2030,741,1,
85192031,746,1,2032,751,
85201,2033,756,1,2035,
8521762,1,2037,767,1,
85222039,772,1,1931,870,
85231,2041,778,1,2043,
8524784,1,2045,789,1,
85251574,809,1,1958,3207,
852616,0,679,1,47,
85273208,19,574,1,47,
85283209,5,19,1,0,
85293210,16,0,656,1,
85302725,3211,17,3212,15,
85313213,4,36,37,0,
853271,0,108,0,111,
85330,98,0,97,0,
8534108,0,68,0,101,
85350,102,0,105,0,
8536110,0,105,0,116,
85370,105,0,111,0,
8538110,0,115,0,1,
8539-1,1,5,3214,20,
85403215,4,38,71,0,
8541108,0,111,0,98,
85420,97,0,108,0,
854368,0,101,0,102,
85440,105,0,110,0,
8545105,0,116,0,105,
85460,111,0,110,0,
8547115,0,95,0,52,
85480,1,149,1,3,
85491,3,1,2,3216,
855022,1,6,1,2726,
85513217,17,3218,15,3213,
85521,-1,1,5,3219,
855320,3220,4,38,71,
85540,108,0,111,0,
855598,0,97,0,108,
85560,68,0,101,0,
8557102,0,105,0,110,
85580,105,0,116,0,
8559105,0,111,0,110, 6584105,0,111,0,110,
85600,115,0,95,0, 65850,1,-1,1,5,
856150,0,1,147,1, 65862062,20,2063,4,32,
658773,0,110,0,116,
65880,68,0,101,0,
658999,0,108,0,97,
65900,114,0,97,0,
6591116,0,105,0,111,
65920,110,0,95,0,
659349,0,1,174,1,
85623,1,3,1,2, 65943,1,3,1,2,
85633221,22,1,4,1, 65952064,22,1,28,1,
85642706,3222,17,3223,15, 65962514,2065,17,2066,15,
85653224,4,52,37,0, 65972067,4,54,37,0,
856671,0,108,0,111, 659873,0,110,0,116,
85670,98,0,97,0, 65990,65,0,114,0,
8568108,0,86,0,97, 6600103,0,117,0,109,
85690,114,0,105,0, 66010,101,0,110,0,
857097,0,98,0,108, 6602116,0,68,0,101,
85710,101,0,68,0,
8572101,0,99,0,108,
85730,97,0,114,0,
857497,0,116,0,105,
85750,111,0,110,0,
85761,-1,1,5,3225,
857720,3226,4,54,71,
85780,108,0,111,0,
857998,0,97,0,108,
85800,86,0,97,0,
8581114,0,105,0,97,
85820,98,0,108,0,
8583101,0,68,0,101,
85840,99,0,108,0, 66030,99,0,108,0,
858597,0,114,0,97, 660497,0,114,0,97,
85860,116,0,105,0, 66050,116,0,105,0,
8587111,0,110,0,95, 6606111,0,110,0,76,
85880,49,0,1,150, 66070,105,0,115,0,
85891,3,1,3,1, 6608116,0,1,-1,1,
85902,3227,22,1,7, 66095,2068,20,2069,4,
85911,2707,3228,16,0, 661056,73,0,110,0,
8592656,1,2718,3229,16, 6611116,0,65,0,114,
85930,656,1,2565,700, 66120,103,0,117,0,
85941,2022,3230,16,0, 6613109,0,101,0,110,
8595572,1,2459,891,1, 66140,116,0,68,0,
85962645,706,1,2648,3231, 6615101,0,99,0,108,
859716,0,656,1,2464, 66160,97,0,114,0,
8598908,1,2466,3232,17, 661797,0,116,0,105,
85993233,15,3234,4,50,
860037,0,71,0,108,
86010,111,0,98,0,
860297,0,108,0,70,
86030,117,0,110,0,
860499,0,116,0,105,
86050,111,0,110,0,
860668,0,101,0,102,
86070,105,0,110,0,
8608105,0,116,0,105,
86090,111,0,110,0, 66180,111,0,110,0,
86101,-1,1,5,3235, 661976,0,105,0,115,
861120,3236,4,52,71, 66200,116,0,95,0,
662149,0,1,173,1,
66223,1,2,1,1,
66232070,22,1,27,1,
66242515,2071,16,0,455,
66251,1341,1325,1,2520,
66261732,1,1096,1340,1,
662793,1346,1,1550,1351,
66281,2529,2072,16,0,
6629467,1,827,1359,1,
66301011,1130,1,107,1366,
66311,1114,1371,1,1871,
66322073,16,0,312,1,
66331370,1480,1,1478,1485,
66341,118,1383,1,1123,
66351388,1,1332,1291,1,
66361377,1399,1,375,1404,
66371,1882,2074,16,0,
6638336,1,377,1409,1,
6639352,1377,1,379,1414,
66401,380,1419,1,130,
66411442,1,2074,2075,16,
66420,579,1,371,1393,
66431,373,1437,1,1012,
66442076,16,0,623,1,
66451840,2077,16,0,302,
66461,143,1447,1,1152,
66471453,1,1406,1458,1,
66481159,1465,1,157,1470,
66491,1413,1475,1,883,
66501425,1,2670,1727,1,
66511094,2078,16,0,693,
66521,1296,1195,1,2679,
66532079,16,0,692,1,
6654172,1496,1,1665,1502,
66551,1939,2080,16,0,
6656454,1,1188,1508,1,
66571442,1513,1,188,1547,
66581,942,1519,1,1195,
66591525,1,1449,1530,1,
66601701,1535,1,447,1540,
66611,205,1552,1,2467,
66621736,1,464,1742,1,
66632197,2081,16,0,689,
66641,1224,1557,1,223,
66651562,1,1730,1567,1,
6666476,1572,1,477,1578,
66671,1231,1583,1,479,
66681588,1,480,1593,1,
66691485,1599,1,459,1747,
66701,242,1606,1,478,
66711611,1,2506,2082,16,
66720,443,1,1001,1616,
66731,1002,1621,1,18,
66742083,19,507,1,18,
66752084,5,84,1,1011,
66761130,1,1012,2085,16,
66770,505,1,1013,1286,
66781,262,1147,1,1267,
66792086,16,0,505,1,
6680515,2087,16,0,505,
66811,1521,2088,16,0,
6682505,1,2692,2089,16,
66830,505,1,525,1244,
66841,283,1200,1,2299,
66852090,16,0,505,1,
668642,2091,16,0,505,
66871,40,1205,1,44,
66881211,1,47,1212,1,
66891303,2092,16,0,505,
66901,1555,2093,16,0,
6691505,1,50,1229,1,
669248,1218,1,49,1224,
66931,51,1234,1,63,
66941250,1,305,1239,1,
669566,1256,1,67,1261,
66961,68,1266,1,69,
66971271,1,70,1276,1,
669873,2094,16,0,505,
66991,74,1281,1,328,
67001330,1,1048,2095,16,
67010,505,1,82,2096,
670216,0,505,1,1840,
67032097,16,0,505,1,
67041591,2098,16,0,505,
67051,1341,2099,16,0,
6706505,1,1096,1340,1,
670793,1346,1,352,1377,
67081,107,2100,16,0,
6709505,1,1114,1371,1,
6710118,2101,16,0,505,
67111,1123,2102,16,0,
6712505,1,371,1393,1,
67131628,2103,16,0,505,
67141,375,1404,1,1882,
67152104,16,0,505,1,
6716377,1409,1,379,1414,
67171,380,1419,1,883,
67182105,16,0,505,1,
6719373,1437,1,130,2106,
672016,0,505,1,143,
67212107,16,0,505,1,
6722387,2108,16,0,505,
67231,1159,2109,16,0,
6724505,1,157,2110,16,
67250,505,1,1413,2111,
672616,0,505,1,1665,
67272112,16,0,505,1,
6728412,2113,16,0,505,
67291,1377,2114,16,0,
6730505,1,172,2115,16,
67310,505,1,1939,2116,
673216,0,505,1,437,
67332117,16,0,505,1,
6734188,2118,16,0,505,
67351,942,2119,16,0,
6736505,1,1195,2120,16,
67370,505,1,1449,2121,
673816,0,505,1,1701,
67392122,16,0,505,1,
6740447,1540,1,205,2123,
674116,0,505,1,827,
67422124,16,0,505,1,
6743223,2125,16,0,505,
67441,476,1572,1,477,
67451578,1,1231,2126,16,
67460,505,1,479,1588,
67471,480,1593,1,1485,
67482127,16,0,505,1,
67491737,2128,16,0,505,
67501,242,2129,16,0,
6751505,1,478,1611,1,
67521001,1616,1,1002,1621,
67531,19,2130,19,226,
67541,19,2131,5,176,
67551,256,2132,16,0,
6756224,1,1261,2133,16,
67570,224,1,1011,1130,
67581,1012,2134,16,0,
6759480,1,2458,904,1,
67602686,2135,16,0,224,
67611,262,1147,1,1267,
67622136,16,0,480,1,
67632021,747,1,1521,2137,
676416,0,480,1,2692,
67652138,16,0,480,1,
67661775,2139,16,0,224,
67671,2029,754,1,2030,
6768760,1,2031,765,1,
67692032,770,1,2033,775,
67701,277,2140,16,0,
6771224,1,2035,781,1,
67722037,786,1,2039,791,
67731,32,2141,16,0,
6774224,1,2464,927,1,
67752293,2142,16,0,224,
67761,2043,803,1,2045,
6777808,1,2299,2143,16,
67780,480,1,41,2144,
677916,0,224,1,42,
67802145,16,0,480,1,
678140,1205,1,44,1211,
67821,43,2146,16,0,
6783224,1,1804,2147,16,
67840,224,1,48,1218,
67851,49,1224,1,47,
67861212,1,51,1234,1,
678752,2148,16,0,224,
67881,50,1229,1,305,
67891239,1,1096,1340,1,
67901515,2149,16,0,224,
67911,2318,2150,16,0,
6792224,1,283,1200,1,
679363,1250,1,66,1256,
67941,67,1261,1,68,
67951266,1,69,1271,1,
679670,1276,1,71,2151,
679716,0,224,1,73,
67982152,16,0,480,1,
679974,1281,1,1013,1286,
68001,76,2153,16,0,
6801224,1,1834,2154,16,
68020,224,1,2337,2155,
680316,0,224,1,79,
68042156,16,0,224,1,
68051335,2157,16,0,224,
68061,299,2158,16,0,
6807224,1,82,2159,16,
68080,480,1,1840,2160,
680916,0,480,1,1297,
68102161,16,0,224,1,
681185,2162,16,0,224,
68121,1341,2163,16,0,
6813480,1,89,2164,16,
68140,224,1,1303,2165,
681516,0,480,1,509,
68162166,16,0,224,1,
681793,1346,1,322,2167,
681816,0,224,1,97,
68192168,16,0,224,1,
68202041,797,1,1555,2169,
682116,0,480,1,827,
68222170,16,0,480,1,
6823102,2171,16,0,224,
68241,1860,850,1,1803,
6825816,1,2364,856,1,
6826107,2172,16,0,480,
68271,1114,1371,1,112,
68282173,16,0,224,1,
68291117,2174,16,0,224,
68301,352,1377,1,1873,
6831864,1,118,2175,16,
68320,480,1,1123,2176,
683316,0,480,1,371,
68341393,1,515,2177,16,
68350,480,1,1377,2178,
683616,0,480,1,124,
68372179,16,0,224,1,
68381882,2180,16,0,480,
68391,377,1409,1,379,
68401414,1,380,1419,1,
6841130,2181,16,0,480,
68421,346,2182,16,0,
6843224,1,2075,2183,16,
68440,224,1,373,1437,
68451,387,2184,16,0,
6846480,1,137,2185,16,
68470,224,1,143,2186,
684816,0,480,1,1901,
68492187,16,0,224,1,
68501048,2188,16,0,480,
68511,1153,2189,16,0,
6852224,1,375,1404,1,
6853151,2190,16,0,224,
68541,1407,2191,16,0,
6855224,1,1659,2192,16,
68560,224,1,2413,2193,
685716,0,224,1,1159,
68582194,16,0,480,1,
6859381,2195,16,0,224,
68601,157,2196,16,0,
6861480,1,1413,2197,16,
68620,480,1,883,2198,
686316,0,480,1,1371,
68642199,16,0,224,1,
6865328,1330,1,2105,843,
68661,2106,2200,16,0,
6867224,1,166,2201,16,
68680,224,1,525,2202,
686916,0,224,1,1622,
68702203,16,0,224,1,
6871406,2204,16,0,224,
68721,1574,828,1,172,
68732205,16,0,480,1,
68741931,889,1,412,2206,
687516,0,480,1,1933,
68762207,16,0,224,1,
68771876,2208,16,0,224,
68781,431,2209,16,0,
6879224,1,1585,2210,16,
68800,224,1,182,2211,
688116,0,224,1,1628,
68822212,16,0,480,1,
68831189,2213,16,0,224,
68841,437,2214,16,0,
6885480,1,1591,2215,16,
68860,480,1,188,2216,
688716,0,480,1,1695,
68882217,16,0,224,1,
68892198,2218,16,0,224,
68901,1195,2219,16,0,
6891480,1,1449,2220,16,
68920,480,1,1701,2221,
689316,0,480,1,447,
68942222,16,0,224,1,
6895199,2223,16,0,224,
68961,2459,910,1,1958,
68972224,16,0,224,1,
68982462,917,1,1657,922,
68991,205,2225,16,0,
6900480,1,459,2226,16,
69010,224,1,462,2227,
690216,0,224,1,1665,
69032228,16,0,480,1,
6904217,2229,16,0,224,
69051,2227,936,1,942,
69062230,16,0,480,1,
69071225,2231,16,0,224,
69081,223,2232,16,0,
6909480,1,1479,2233,16,
69100,224,1,1731,2234,
691116,0,224,1,477,
69121578,1,1231,2235,16,
69130,480,1,479,1588,
69141,480,1593,1,1485,
69152236,16,0,480,1,
69161737,2237,16,0,480,
69171,1989,944,1,1990,
69182238,16,0,224,1,
69191443,2239,16,0,224,
69201,236,2240,16,0,
6921224,1,2136,871,1,
6922476,1572,1,242,2241,
692316,0,480,1,478,
69241611,1,1939,2242,16,
69250,480,1,1001,1616,
69261,1002,1621,1,1756,
69272243,16,0,224,1,
692820,2244,19,464,1,
692920,2245,5,84,1,
69301011,1130,1,1012,2246,
693116,0,462,1,1013,
69321286,1,262,1147,1,
69331267,2247,16,0,462,
69341,515,2248,16,0,
6935462,1,1521,2249,16,
69360,462,1,2692,2250,
693716,0,462,1,525,
69381244,1,283,1200,1,
69392299,2251,16,0,462,
69401,42,2252,16,0,
6941462,1,40,1205,1,
694244,1211,1,47,1212,
69431,1303,2253,16,0,
6944462,1,1555,2254,16,
69450,462,1,50,1229,
69461,48,1218,1,49,
69471224,1,51,1234,1,
694863,1250,1,305,1239,
69491,66,1256,1,67,
69501261,1,68,1266,1,
695169,1271,1,70,1276,
69521,73,2255,16,0,
6953462,1,74,1281,1,
6954328,2256,16,0,462,
69551,1048,2257,16,0,
6956462,1,82,2258,16,
69570,462,1,1840,2259,
695816,0,462,1,1591,
69592260,16,0,462,1,
69601341,2261,16,0,462,
69611,1096,1340,1,93,
69621346,1,352,2262,16,
69630,462,1,107,2263,
696416,0,462,1,1114,
69651371,1,118,2264,16,
69660,462,1,1123,2265,
696716,0,462,1,371,
69681393,1,1628,2266,16,
69690,462,1,375,1404,
69701,1882,2267,16,0,
6971462,1,377,1409,1,
6972379,1414,1,380,1419,
69731,883,2268,16,0,
6974462,1,373,1437,1,
6975130,2269,16,0,462,
69761,143,2270,16,0,
6977462,1,387,2271,16,
69780,462,1,1159,2272,
697916,0,462,1,157,
69802273,16,0,462,1,
69811413,2274,16,0,462,
69821,1665,2275,16,0,
6983462,1,412,2276,16,
69840,462,1,1377,2277,
698516,0,462,1,172,
69862278,16,0,462,1,
69871939,2279,16,0,462,
69881,437,2280,16,0,
6989462,1,188,2281,16,
69900,462,1,942,2282,
699116,0,462,1,1195,
69922283,16,0,462,1,
69931449,2284,16,0,462,
69941,1701,2285,16,0,
6995462,1,447,1540,1,
6996205,2286,16,0,462,
69971,827,2287,16,0,
6998462,1,223,2288,16,
69990,462,1,476,1572,
70001,477,1578,1,1231,
70012289,16,0,462,1,
7002479,1588,1,480,1593,
70031,1485,2290,16,0,
7004462,1,1737,2291,16,
70050,462,1,242,2292,
700616,0,462,1,478,
70071611,1,1001,1616,1,
70081002,1621,1,21,2293,
700919,441,1,21,2294,
70105,84,1,1011,1130,
70111,1012,2295,16,0,
7012439,1,1013,1286,1,
7013262,1147,1,1267,2296,
701416,0,439,1,515,
70152297,16,0,439,1,
70161521,2298,16,0,439,
70171,2692,2299,16,0,
7018439,1,525,1244,1,
7019283,1200,1,2299,2300,
702016,0,439,1,42,
70212301,16,0,439,1,
702240,1205,1,44,1211,
70231,47,1212,1,1303,
70242302,16,0,439,1,
70251555,2303,16,0,439,
70261,50,1229,1,48,
70271218,1,49,1224,1,
702851,1234,1,63,1250,
70291,305,1239,1,66,
70301256,1,67,1261,1,
703168,1266,1,69,1271,
70321,70,1276,1,73,
70332304,16,0,439,1,
703474,1281,1,328,2305,
703516,0,439,1,1048,
70362306,16,0,439,1,
703782,2307,16,0,439,
70381,1840,2308,16,0,
7039439,1,1591,2309,16,
70400,439,1,1341,2310,
704116,0,439,1,1096,
70421340,1,93,1346,1,
7043352,2311,16,0,439,
70441,107,2312,16,0,
7045439,1,1114,1371,1,
7046118,2313,16,0,439,
70471,1123,2314,16,0,
7048439,1,371,1393,1,
70491628,2315,16,0,439,
70501,375,1404,1,1882,
70512316,16,0,439,1,
7052377,1409,1,379,1414,
70531,380,1419,1,883,
70542317,16,0,439,1,
7055373,1437,1,130,2318,
705616,0,439,1,143,
70572319,16,0,439,1,
7058387,2320,16,0,439,
70591,1159,2321,16,0,
7060439,1,157,2322,16,
70610,439,1,1413,2323,
706216,0,439,1,1665,
70632324,16,0,439,1,
7064412,2325,16,0,439,
70651,1377,2326,16,0,
7066439,1,172,2327,16,
70670,439,1,1939,2328,
706816,0,439,1,437,
70692329,16,0,439,1,
7070188,2330,16,0,439,
70711,942,2331,16,0,
7072439,1,1195,2332,16,
70730,439,1,1449,2333,
707416,0,439,1,1701,
70752334,16,0,439,1,
7076447,1540,1,205,2335,
707716,0,439,1,827,
70782336,16,0,439,1,
7079223,2337,16,0,439,
70801,476,1572,1,477,
70811578,1,1231,2338,16,
70820,439,1,479,1588,
70831,480,1593,1,1485,
70842339,16,0,439,1,
70851737,2340,16,0,439,
70861,242,2341,16,0,
7087439,1,478,1611,1,
70881001,1616,1,1002,1621,
70891,22,2342,19,392,
70901,22,2343,5,84,
70911,1011,1130,1,1012,
70922344,16,0,390,1,
70931013,1286,1,262,1147,
70941,1267,2345,16,0,
7095390,1,515,2346,16,
70960,390,1,1521,2347,
709716,0,390,1,2692,
70982348,16,0,390,1,
7099525,1244,1,283,1200,
71001,2299,2349,16,0,
7101390,1,42,2350,16,
71020,390,1,40,1205,
71031,44,1211,1,47,
71041212,1,1303,2351,16,
71050,390,1,1555,2352,
710616,0,390,1,50,
71071229,1,48,1218,1,
710849,1224,1,51,1234,
71091,63,1250,1,305,
71101239,1,66,1256,1,
711167,1261,1,68,1266,
71121,69,1271,1,70,
71131276,1,73,2353,16,
71140,390,1,74,1281,
71151,328,2354,16,0,
7116390,1,1048,2355,16,
71170,390,1,82,2356,
711816,0,390,1,1840,
71192357,16,0,390,1,
71201591,2358,16,0,390,
71211,1341,2359,16,0,
7122390,1,1096,1340,1,
712393,1346,1,352,2360,
712416,0,390,1,107,
71252361,16,0,390,1,
71261114,1371,1,118,2362,
712716,0,390,1,1123,
71282363,16,0,390,1,
7129371,1393,1,1628,2364,
713016,0,390,1,375,
71311404,1,1882,2365,16,
71320,390,1,377,1409,
71331,379,1414,1,380,
71341419,1,883,2366,16,
71350,390,1,373,1437,
71361,130,2367,16,0,
7137390,1,143,2368,16,
71380,390,1,387,2369,
713916,0,390,1,1159,
71402370,16,0,390,1,
7141157,2371,16,0,390,
71421,1413,2372,16,0,
7143390,1,1665,2373,16,
71440,390,1,412,2374,
714516,0,390,1,1377,
71462375,16,0,390,1,
7147172,2376,16,0,390,
71481,1939,2377,16,0,
7149390,1,437,2378,16,
71500,390,1,188,2379,
715116,0,390,1,942,
71522380,16,0,390,1,
71531195,2381,16,0,390,
71541,1449,2382,16,0,
7155390,1,1701,2383,16,
71560,390,1,447,1540,
71571,205,2384,16,0,
7158390,1,827,2385,16,
71590,390,1,223,2386,
716016,0,390,1,476,
71611572,1,477,1578,1,
71621231,2387,16,0,390,
71631,479,1588,1,480,
71641593,1,1485,2388,16,
71650,390,1,1737,2389,
716616,0,390,1,242,
71672390,16,0,390,1,
7168478,1611,1,1001,1616,
71691,1002,1621,1,23,
71702391,19,527,1,23,
71712392,5,38,1,1901,
71722393,16,0,525,1,
71732075,2394,16,0,525,
71741,1860,850,1,1803,
7175816,1,1804,2395,16,
71760,525,1,2413,2396,
717716,0,525,1,2198,
71782397,16,0,525,1,
71791873,864,1,1657,922,
71801,1989,944,1,1990,
71812398,16,0,525,1,
71821775,2399,16,0,525,
71831,32,2400,16,0,
7184525,1,2105,843,1,
71852106,2401,16,0,525,
71861,2364,856,1,2227,
7187936,1,2337,2402,16,
71880,525,1,2021,747,
71891,2458,904,1,2459,
7190910,1,2462,917,1,
71912136,871,1,2464,927,
71921,2029,754,1,2030,
7193760,1,2031,765,1,
71942032,770,1,2033,775,
71951,2035,781,1,2037,
7196786,1,2039,791,1,
71971931,889,1,2041,797,
71981,2043,803,1,2045,
7199808,1,1574,828,1,
72001958,2403,16,0,525,
72011,24,2404,19,177,
72021,24,2405,5,5,
72031,44,2406,16,0,
7204175,1,377,2407,16,
72050,563,1,40,2408,
720616,0,702,1,63,
72072409,16,0,197,1,
7208373,2410,16,0,559,
72091,25,2411,19,291,
72101,25,2412,5,177,
72111,256,2413,16,0,
7212568,1,1261,2414,16,
72130,568,1,1011,1130,
72141,1012,2415,16,0,
7215289,1,2458,904,1,
72162686,2416,16,0,568,
72171,262,1147,1,1267,
72182417,16,0,289,1,
72192021,747,1,1521,2418,
722016,0,289,1,2692,
72212419,16,0,289,1,
72221775,2420,16,0,568,
72231,2029,754,1,2030,
7224760,1,2031,765,1,
72252032,770,1,2033,775,
72261,277,2421,16,0,
7227568,1,2035,781,1,
72282037,786,1,2039,791,
72291,32,2422,16,0,
7230568,1,2464,927,1,
72312293,2423,16,0,568,
72321,2043,803,1,2045,
7233808,1,2299,2424,16,
72340,289,1,41,2425,
723516,0,568,1,42,
72362426,16,0,289,1,
723740,1205,1,44,1211,
72381,43,2427,16,0,
7239568,1,1804,2428,16,
72400,568,1,48,1218,
72411,49,1224,1,47,
72421212,1,51,1234,1,
724352,2429,16,0,568,
72441,50,1229,1,305,
72451239,1,1096,1340,1,
72461515,2430,16,0,568,
72471,2318,2431,16,0,
7248568,1,62,2432,16,
72490,568,1,63,1250,
72501,66,1256,1,67,
72511261,1,68,1266,1,
725269,1271,1,70,1276,
72531,71,2433,16,0,
7254568,1,283,1200,1,
725573,2434,16,0,289,
72561,74,1281,1,1013,
72571286,1,76,2435,16,
72580,568,1,1834,2436,
725916,0,568,1,2337,
72602437,16,0,568,1,
726179,2438,16,0,568,
72621,1335,2439,16,0,
7263568,1,299,2440,16,
72640,568,1,82,2441,
726516,0,289,1,1840,
72662442,16,0,289,1,
72671297,2443,16,0,568,
72681,85,2444,16,0,
7269568,1,1341,2445,16,
72700,289,1,89,2446,
727116,0,568,1,1303,
72722447,16,0,289,1,
7273509,2448,16,0,568,
72741,93,1346,1,322,
72752449,16,0,568,1,
727697,2450,16,0,568,
72771,2041,797,1,1555,
72782451,16,0,289,1,
7279827,2452,16,0,289,
72801,102,2453,16,0,
7281568,1,1860,850,1,
72821803,816,1,2364,856,
72831,107,2454,16,0,
7284289,1,1114,1371,1,
7285112,2455,16,0,568,
72861,1117,2456,16,0,
7287568,1,352,1377,1,
72881873,864,1,118,1383,
72891,1123,2457,16,0,
7290289,1,371,1393,1,
7291515,2458,16,0,289,
72921,1377,2459,16,0,
7293289,1,124,2460,16,
72940,568,1,1882,2461,
729516,0,289,1,377,
72961409,1,379,1414,1,
7297380,1419,1,130,1442,
72981,346,2462,16,0,
7299568,1,2075,2463,16,
73000,568,1,373,1437,
73011,387,2464,16,0,
7302289,1,137,2465,16,
73030,568,1,143,2466,
730416,0,289,1,1901,
73052467,16,0,568,1,
73061048,1372,1,1153,2468,
730716,0,568,1,375,
73081404,1,151,2469,16,
73090,568,1,1407,2470,
731016,0,568,1,1659,
73112471,16,0,568,1,
73122413,2472,16,0,568,
73131,1159,2473,16,0,
7314289,1,381,2474,16,
73150,568,1,157,2475,
731616,0,289,1,1413,
73172476,16,0,289,1,
7318883,2477,16,0,289,
73191,1371,2478,16,0,
7320568,1,328,1330,1,
73212105,843,1,2106,2479,
732216,0,568,1,166,
73232480,16,0,568,1,
7324525,2481,16,0,568,
73251,1622,2482,16,0,
7326568,1,406,2483,16,
73270,568,1,1574,828,
73281,172,1496,1,1931,
7329889,1,412,2484,16,
73300,289,1,1933,2485,
733116,0,568,1,1876,
73322486,16,0,568,1,
7333431,2487,16,0,568,
73341,1585,2488,16,0,
7335568,1,182,2489,16,
73360,568,1,1628,2490,
733716,0,289,1,1189,
73382491,16,0,568,1,
7339437,2492,16,0,289,
73401,1591,2493,16,0,
7341289,1,188,1547,1,
73421695,2494,16,0,568,
73431,2198,2495,16,0,
7344568,1,1195,2496,16,
73450,289,1,1449,2497,
734616,0,289,1,1701,
73472498,16,0,289,1,
7348447,2499,16,0,568,
73491,199,2500,16,0,
7350568,1,2459,910,1,
73511958,2501,16,0,568,
73521,2462,917,1,1657,
7353922,1,205,2502,16,
73540,289,1,459,2503,
735516,0,568,1,462,
73562504,16,0,568,1,
73571665,2505,16,0,289,
73581,217,2506,16,0,
7359568,1,2227,936,1,
7360942,1519,1,1225,2507,
736116,0,568,1,223,
73622508,16,0,289,1,
73631479,2509,16,0,568,
73641,1731,2510,16,0,
7365568,1,477,1578,1,
73661231,2511,16,0,289,
73671,479,1588,1,480,
73681593,1,1485,2512,16,
73690,289,1,1737,2513,
737016,0,289,1,1989,
7371944,1,1990,2514,16,
73720,568,1,1443,2515,
737316,0,568,1,236,
73742516,16,0,568,1,
73752136,871,1,476,1572,
73761,242,2517,16,0,
7377289,1,478,1611,1,
73781939,2518,16,0,289,
73791,1001,1616,1,1002,
73801621,1,1756,2519,16,
73810,568,1,26,2520,
738219,307,1,26,2521,
73835,84,1,1011,1130,
73841,1012,2522,16,0,
7385305,1,1013,1286,1,
7386262,1147,1,1267,2523,
738716,0,305,1,515,
73882524,16,0,687,1,
73891521,2525,16,0,305,
73901,2692,2526,16,0,
7391305,1,525,1244,1,
7392283,1200,1,2299,2527,
739316,0,305,1,42,
73942528,16,0,305,1,
739540,1205,1,44,1211,
73961,47,1212,1,1303,
73972529,16,0,305,1,
73981555,2530,16,0,305,
73991,50,1229,1,48,
74001218,1,49,1224,1,
740151,1234,1,63,1250,
74021,305,1239,1,66,
74031256,1,67,1261,1,
740468,1266,1,69,1271,
74051,70,1276,1,73,
74062531,16,0,305,1,
740774,1281,1,328,1330,
74081,1048,1372,1,82,
74092532,16,0,305,1,
74101840,2533,16,0,305,
74111,1591,2534,16,0,
7412305,1,1341,2535,16,
74130,305,1,1096,1340,
74141,93,1346,1,352,
74151377,1,107,2536,16,
74160,305,1,1114,1371,
74171,118,1383,1,1123,
74182537,16,0,305,1,
7419371,1393,1,1628,2538,
742016,0,305,1,375,
74211404,1,1882,2539,16,
74220,305,1,377,1409,
74231,379,1414,1,380,
74241419,1,883,2540,16,
74250,305,1,373,1437,
74261,130,1442,1,143,
74272541,16,0,305,1,
7428387,2542,16,0,305,
74291,1159,2543,16,0,
7430305,1,157,2544,16,
74310,305,1,1413,2545,
743216,0,305,1,1665,
74332546,16,0,305,1,
7434412,2547,16,0,305,
74351,1377,2548,16,0,
7436305,1,172,1496,1,
74371939,2549,16,0,305,
74381,437,2550,16,0,
7439617,1,188,1547,1,
7440942,1519,1,1195,2551,
744116,0,305,1,1449,
74422552,16,0,305,1,
74431701,2553,16,0,305,
74441,447,1540,1,205,
74452554,16,0,305,1,
7446827,2555,16,0,305,
74471,223,2556,16,0,
7448305,1,476,1572,1,
7449477,1578,1,1231,2557,
745016,0,305,1,479,
74511588,1,480,1593,1,
74521485,2558,16,0,305,
74531,1737,2559,16,0,
7454305,1,242,2560,16,
74550,305,1,478,1611,
74561,1001,1616,1,1002,
74571621,1,27,2561,19,
7458628,1,27,2562,5,
745995,1,256,2563,16,
74600,626,1,1261,2564,
746116,0,626,1,509,
74622565,16,0,626,1,
74631515,2566,16,0,626,
74641,2686,2567,16,0,
7465626,1,2021,747,1,
74661775,2568,16,0,626,
74671,2029,754,1,2030,
7468760,1,2031,765,1,
74692032,770,1,2033,775,
74701,277,2569,16,0,
7471626,1,2035,781,1,
74722037,786,1,2039,791,
74731,32,2570,16,0,
7474626,1,2041,797,1,
74752293,2571,16,0,626,
74761,2043,803,1,2045,
7477808,1,41,2572,16,
74780,626,1,1297,2573,
747916,0,626,1,43,
74802574,16,0,626,1,
74811803,816,1,1804,2575,
748216,0,626,1,299,
74832576,16,0,626,1,
748452,2577,16,0,626,
74851,2318,2578,16,0,
7486626,1,62,2579,16,
74870,626,1,2075,2580,
748816,0,626,1,1574,
7489828,1,71,2581,16,
74900,626,1,76,2582,
749116,0,626,1,1834,
74922583,16,0,626,1,
74932337,2584,16,0,626,
74941,79,2585,16,0,
7495626,1,1335,2586,16,
74960,626,1,322,2587,
749716,0,626,1,85,
74982588,16,0,626,1,
749989,2589,16,0,626,
75001,346,2590,16,0,
7501626,1,2105,843,1,
75022106,2591,16,0,626,
75031,97,2592,16,0,
7504626,1,1860,850,1,
75052364,856,1,102,2593,
750616,0,626,1,112,
75072594,16,0,626,1,
75081117,2595,16,0,626,
75091,1873,864,1,1876,
75102596,16,0,626,1,
7511124,2597,16,0,626,
75121,2136,871,1,381,
75132598,16,0,626,1,
7514525,2599,16,0,626,
75151,137,2600,16,0,
7516626,1,1901,2601,16,
75170,626,1,1153,2602,
751816,0,626,1,151,
75192603,16,0,626,1,
75201407,2604,16,0,626,
75211,1659,2605,16,0,
7522626,1,2413,2606,16,
75230,626,1,406,2607,
752416,0,626,1,1371,
75252608,16,0,626,1,
7526166,2609,16,0,626,
75271,1622,2610,16,0,
7528626,1,1931,889,1,
75291933,2611,16,0,626,
75301,431,2612,16,0,
7531626,1,1585,2613,16,
75320,626,1,182,2614,
753316,0,626,1,1189,
75342615,16,0,626,1,
75351443,2616,16,0,626,
75361,1695,2617,16,0,
7537626,1,2198,2618,16,
75380,626,1,447,2619,
753916,0,626,1,2458,
7540904,1,2459,910,1,
75411958,2620,16,0,626,
75421,2462,917,1,1657,
7543922,1,2464,927,1,
7544199,2621,16,0,626,
75451,459,2622,16,0,
7546626,1,462,2623,16,
75470,626,1,217,2624,
754816,0,626,1,2227,
7549936,1,1225,2625,16,
75500,626,1,1479,2626,
755116,0,626,1,1731,
75522627,16,0,626,1,
75531989,944,1,1990,2628,
755416,0,626,1,236,
75552629,16,0,626,1,
75561756,2630,16,0,626,
75571,28,2631,19,655,
75581,28,2632,5,60,
75591,328,1330,1,223,
75601562,1,1096,1340,1,
7561118,1383,1,883,1425,
75621,525,1244,1,1001,
75631616,1,130,1442,1,
7564459,1747,1,1114,1371,
75651,352,1377,1,447,
75661540,1,464,1742,1,
75671011,1130,1,1013,1286,
75681,242,1606,1,143,
75691447,1,40,1205,1,
757041,1714,1,42,1718,
75711,479,1588,1,44,
75721211,1,481,1749,1,
7573373,1437,1,47,1212,
75741,157,1470,1,49,
75751224,1,50,1229,1,
757648,1218,1,379,1414,
75771,380,1419,1,51,
75781234,1,476,1572,1,
7579371,1393,1,478,1611,
75801,1048,1372,1,375,
75811404,1,172,1496,1,
7582262,1147,1,283,1200,
75831,63,1250,1,67,
75841261,1,68,1266,1,
758569,1271,1,66,1256,
75861,461,2633,16,0,
7587653,1,74,1281,1,
7588377,1409,1,1002,1621,
75891,70,1276,1,188,
75901547,1,82,1308,1,
7591305,1239,1,477,1578,
75921,827,1359,1,93,
75931346,1,480,1593,1,
7594205,1552,1,942,1519,
75951,107,1366,1,29,
75962634,19,280,1,29,
75972635,5,84,1,1011,
75981130,1,1012,2636,16,
75990,278,1,1013,1286,
76001,262,1147,1,1267,
76012637,16,0,278,1,
7602515,2638,16,0,278,
76031,1521,2639,16,0,
7604278,1,2692,2640,16,
76050,278,1,525,1244,
76061,283,1200,1,2299,
76072641,16,0,278,1,
760842,2642,16,0,278,
76091,40,1205,1,44,
76101211,1,47,1212,1,
76111303,2643,16,0,278,
76121,1555,2644,16,0,
7613278,1,50,1229,1,
761448,1218,1,49,1224,
76151,51,1234,1,63,
76161250,1,305,1239,1,
761766,1256,1,67,1261,
76181,68,1266,1,69,
76191271,1,70,1276,1,
762073,2645,16,0,278,
76211,74,1281,1,328,
76221330,1,1048,1372,1,
762382,2646,16,0,278,
76241,1840,2647,16,0,
7625278,1,1591,2648,16,
76260,278,1,1341,2649,
762716,0,278,1,1096,
76281340,1,93,1346,1,
7629352,1377,1,107,2650,
763016,0,278,1,1114,
76311371,1,118,1383,1,
76321123,2651,16,0,278,
76331,371,1393,1,1628,
76342652,16,0,278,1,
7635375,1404,1,1882,2653,
763616,0,278,1,377,
76371409,1,379,1414,1,
7638380,1419,1,883,2654,
763916,0,278,1,373,
76401437,1,130,1442,1,
7641143,1447,1,387,2655,
764216,0,278,1,1159,
76432656,16,0,278,1,
7644157,1470,1,1413,2657,
764516,0,278,1,1665,
76462658,16,0,278,1,
7647412,2659,16,0,278,
76481,1377,2660,16,0,
7649278,1,172,1496,1,
76501939,2661,16,0,278,
76511,437,2662,16,0,
7652278,1,188,1547,1,
7653942,1519,1,1195,2663,
765416,0,278,1,1449,
76552664,16,0,278,1,
76561701,2665,16,0,278,
76571,447,1540,1,205,
76582666,16,0,278,1,
7659827,2667,16,0,278,
76601,223,2668,16,0,
7661278,1,476,1572,1,
7662477,1578,1,1231,2669,
766316,0,278,1,479,
76641588,1,480,1593,1,
76651485,2670,16,0,278,
76661,1737,2671,16,0,
7667278,1,242,2672,16,
76680,278,1,478,1611,
76691,1001,1616,1,1002,
76701621,1,30,2673,19,
7671268,1,30,2674,5,
767284,1,1011,1130,1,
76731012,2675,16,0,266,
76741,1013,1286,1,262,
76751147,1,1267,2676,16,
76760,266,1,515,2677,
767716,0,266,1,1521,
76782678,16,0,266,1,
76792692,2679,16,0,266,
76801,525,1244,1,283,
76811200,1,2299,2680,16,
76820,266,1,42,2681,
768316,0,266,1,40,
76841205,1,44,1211,1,
768547,1212,1,1303,2682,
768616,0,266,1,1555,
76872683,16,0,266,1,
768850,1229,1,48,1218,
76891,49,1224,1,51,
76901234,1,63,1250,1,
7691305,1239,1,66,1256,
76921,67,1261,1,68,
76931266,1,69,1271,1,
769470,1276,1,73,2684,
769516,0,266,1,74,
76961281,1,328,1330,1,
76971048,1372,1,82,2685,
769816,0,266,1,1840,
76992686,16,0,266,1,
77001591,2687,16,0,266,
77011,1341,2688,16,0,
7702266,1,1096,1340,1,
770393,1346,1,352,1377,
77041,107,2689,16,0,
7705266,1,1114,1371,1,
7706118,1383,1,1123,2690,
770716,0,266,1,371,
77081393,1,1628,2691,16,
77090,266,1,375,1404,
77101,1882,2692,16,0,
7711266,1,377,1409,1,
7712379,1414,1,380,1419,
77131,883,2693,16,0,
7714266,1,373,1437,1,
7715130,1442,1,143,1447,
77161,387,2694,16,0,
7717266,1,1159,2695,16,
77180,266,1,157,1470,
77191,1413,2696,16,0,
7720266,1,1665,2697,16,
77210,266,1,412,2698,
772216,0,266,1,1377,
77232699,16,0,266,1,
7724172,1496,1,1939,2700,
772516,0,266,1,437,
77262701,16,0,266,1,
7727188,1547,1,942,1519,
77281,1195,2702,16,0,
7729266,1,1449,2703,16,
77300,266,1,1701,2704,
773116,0,266,1,447,
77321540,1,205,2705,16,
77330,266,1,827,2706,
773416,0,266,1,223,
77352707,16,0,266,1,
7736476,1572,1,477,1578,
77371,1231,2708,16,0,
7738266,1,479,1588,1,
7739480,1593,1,1485,2709,
774016,0,266,1,1737,
77412710,16,0,266,1,
7742242,2711,16,0,266,
77431,478,1611,1,1001,
77441616,1,1002,1621,1,
774531,2712,19,254,1,
774631,2713,5,84,1,
77471011,1130,1,1012,2714,
774816,0,252,1,1013,
77491286,1,262,1147,1,
77501267,2715,16,0,252,
77511,515,2716,16,0,
7752252,1,1521,2717,16,
77530,252,1,2692,2718,
775416,0,252,1,525,
77551244,1,283,1200,1,
77562299,2719,16,0,252,
77571,42,2720,16,0,
7758252,1,40,1205,1,
775944,1211,1,47,1212,
77601,1303,2721,16,0,
7761252,1,1555,2722,16,
77620,252,1,50,1229,
77631,48,1218,1,49,
77641224,1,51,1234,1,
776563,1250,1,305,1239,
77661,66,1256,1,67,
77671261,1,68,1266,1,
776869,1271,1,70,1276,
77691,73,2723,16,0,
7770252,1,74,1281,1,
7771328,1330,1,1048,1372,
77721,82,2724,16,0,
7773252,1,1840,2725,16,
77740,252,1,1591,2726,
777516,0,252,1,1341,
77762727,16,0,252,1,
77771096,1340,1,93,1346,
77781,352,1377,1,107,
77792728,16,0,252,1,
77801114,1371,1,118,1383,
77811,1123,2729,16,0,
7782252,1,371,1393,1,
77831628,2730,16,0,252,
77841,375,1404,1,1882,
77852731,16,0,252,1,
7786377,1409,1,379,1414,
77871,380,1419,1,883,
77882732,16,0,252,1,
7789373,1437,1,130,1442,
77901,143,2733,16,0,
7791252,1,387,2734,16,
77920,252,1,1159,2735,
779316,0,252,1,157,
77942736,16,0,252,1,
77951413,2737,16,0,252,
77961,1665,2738,16,0,
7797252,1,412,2739,16,
77980,252,1,1377,2740,
779916,0,252,1,172,
78001496,1,1939,2741,16,
78010,252,1,437,2742,
780216,0,252,1,188,
78031547,1,942,1519,1,
78041195,2743,16,0,252,
78051,1449,2744,16,0,
7806252,1,1701,2745,16,
78070,252,1,447,1540,
78081,205,2746,16,0,
7809252,1,827,2747,16,
78100,252,1,223,2748,
781116,0,252,1,476,
78121572,1,477,1578,1,
78131231,2749,16,0,252,
78141,479,1588,1,480,
78151593,1,1485,2750,16,
78160,252,1,1737,2751,
781716,0,252,1,242,
78182752,16,0,252,1,
7819478,1611,1,1001,1616,
78201,1002,1621,1,32,
78212753,19,244,1,32,
78222754,5,84,1,1011,
78231130,1,1012,2755,16,
78240,242,1,1013,1286,
78251,262,1147,1,1267,
78262756,16,0,242,1,
7827515,2757,16,0,242,
78281,1521,2758,16,0,
7829242,1,2692,2759,16,
78300,242,1,525,1244,
78311,283,1200,1,2299,
78322760,16,0,242,1,
783342,2761,16,0,242,
78341,40,1205,1,44,
78351211,1,47,1212,1,
78361303,2762,16,0,242,
78371,1555,2763,16,0,
7838242,1,50,1229,1,
783948,1218,1,49,1224,
78401,51,1234,1,63,
78411250,1,305,1239,1,
784266,1256,1,67,1261,
78431,68,1266,1,69,
78441271,1,70,1276,1,
784573,2764,16,0,242,
78461,74,1281,1,328,
78471330,1,1048,1372,1,
784882,2765,16,0,242,
78491,1840,2766,16,0,
7850242,1,1591,2767,16,
78510,242,1,1341,2768,
785216,0,242,1,1096,
78531340,1,93,1346,1,
7854352,1377,1,107,2769,
785516,0,242,1,1114,
78561371,1,118,1383,1,
78571123,2770,16,0,242,
78581,371,1393,1,1628,
78592771,16,0,242,1,
7860375,1404,1,1882,2772,
786116,0,242,1,377,
78621409,1,379,1414,1,
7863380,1419,1,883,2773,
786416,0,242,1,373,
78651437,1,130,1442,1,
7866143,2774,16,0,242,
78671,387,2775,16,0,
7868242,1,1159,2776,16,
78690,242,1,157,2777,
787016,0,242,1,1413,
78712778,16,0,242,1,
78721665,2779,16,0,242,
78731,412,2780,16,0,
7874242,1,1377,2781,16,
78750,242,1,172,1496,
78761,1939,2782,16,0,
7877242,1,437,2783,16,
78780,242,1,188,1547,
78791,942,1519,1,1195,
78802784,16,0,242,1,
78811449,2785,16,0,242,
78821,1701,2786,16,0,
7883242,1,447,1540,1,
7884205,2787,16,0,242,
78851,827,2788,16,0,
7886242,1,223,2789,16,
78870,242,1,476,1572,
78881,477,1578,1,1231,
78892790,16,0,242,1,
7890479,1588,1,480,1593,
78911,1485,2791,16,0,
7892242,1,1737,2792,16,
78930,242,1,242,2793,
789416,0,242,1,478,
78951611,1,1001,1616,1,
78961002,1621,1,33,2794,
789719,341,1,33,2795,
78985,84,1,1011,1130,
78991,1012,2796,16,0,
7900339,1,1013,1286,1,
7901262,1147,1,1267,2797,
790216,0,339,1,515,
79032798,16,0,339,1,
79041521,2799,16,0,339,
79051,2692,2800,16,0,
7906339,1,525,1244,1,
7907283,1200,1,2299,2801,
790816,0,339,1,42,
79092802,16,0,339,1,
791040,1205,1,44,1211,
79111,47,1212,1,1303,
79122803,16,0,339,1,
79131555,2804,16,0,339,
79141,50,1229,1,48,
79151218,1,49,1224,1,
791651,1234,1,63,1250,
79171,305,1239,1,66,
79181256,1,67,1261,1,
791968,1266,1,69,1271,
79201,70,1276,1,73,
79212805,16,0,339,1,
792274,1281,1,328,1330,
79231,1048,1372,1,82,
79242806,16,0,339,1,
79251840,2807,16,0,339,
79261,1591,2808,16,0,
7927339,1,1341,2809,16,
79280,339,1,1096,1340,
79291,93,1346,1,352,
79301377,1,107,2810,16,
79310,339,1,1114,1371,
79321,118,1383,1,1123,
79332811,16,0,339,1,
7934371,1393,1,1628,2812,
793516,0,339,1,375,
79361404,1,1882,2813,16,
79370,339,1,377,1409,
79381,379,1414,1,380,
79391419,1,883,2814,16,
79400,339,1,373,1437,
79411,130,1442,1,143,
79421447,1,387,2815,16,
79430,339,1,1159,2816,
794416,0,339,1,157,
79451470,1,1413,2817,16,
79460,339,1,1665,2818,
794716,0,339,1,412,
79482819,16,0,339,1,
79491377,2820,16,0,339,
79501,172,1496,1,1939,
79512821,16,0,339,1,
7952437,2822,16,0,339,
79531,188,1547,1,942,
79541519,1,1195,2823,16,
79550,339,1,1449,2824,
795616,0,339,1,1701,
79572825,16,0,339,1,
7958447,1540,1,205,2826,
795916,0,339,1,827,
79602827,16,0,339,1,
7961223,2828,16,0,339,
79621,476,1572,1,477,
79631578,1,1231,2829,16,
79640,339,1,479,1588,
79651,480,1593,1,1485,
79662830,16,0,339,1,
79671737,2831,16,0,339,
79681,242,1606,1,478,
79691611,1,1001,1616,1,
79701002,1621,1,34,2832,
797119,327,1,34,2833,
79725,84,1,1011,1130,
79731,1012,2834,16,0,
7974325,1,1013,1286,1,
7975262,1147,1,1267,2835,
797616,0,325,1,515,
79772836,16,0,325,1,
79781521,2837,16,0,325,
79791,2692,2838,16,0,
7980325,1,525,1244,1,
7981283,1200,1,2299,2839,
798216,0,325,1,42,
79832840,16,0,325,1,
798440,1205,1,44,1211,
79851,47,1212,1,1303,
79862841,16,0,325,1,
79871555,2842,16,0,325,
79881,50,1229,1,48,
79891218,1,49,1224,1,
799051,1234,1,63,1250,
79911,305,1239,1,66,
79921256,1,67,1261,1,
799368,1266,1,69,1271,
79941,70,1276,1,73,
79952843,16,0,325,1,
799674,1281,1,328,1330,
79971,1048,1372,1,82,
79982844,16,0,325,1,
79991840,2845,16,0,325,
80001,1591,2846,16,0,
8001325,1,1341,2847,16,
80020,325,1,1096,1340,
80031,93,1346,1,352,
80041377,1,107,2848,16,
80050,325,1,1114,1371,
80061,118,1383,1,1123,
80072849,16,0,325,1,
8008371,1393,1,1628,2850,
800916,0,325,1,375,
80101404,1,1882,2851,16,
80110,325,1,377,1409,
80121,379,1414,1,380,
80131419,1,883,2852,16,
80140,325,1,373,1437,
80151,130,1442,1,143,
80161447,1,387,2853,16,
80170,325,1,1159,2854,
801816,0,325,1,157,
80191470,1,1413,2855,16,
80200,325,1,1665,2856,
802116,0,325,1,412,
80222857,16,0,325,1,
80231377,2858,16,0,325,
80241,172,1496,1,1939,
80252859,16,0,325,1,
8026437,2860,16,0,325,
80271,188,1547,1,942,
80281519,1,1195,2861,16,
80290,325,1,1449,2862,
803016,0,325,1,1701,
80312863,16,0,325,1,
8032447,1540,1,205,1552,
80331,827,2864,16,0,
8034325,1,223,1562,1,
8035476,1572,1,477,1578,
80361,1231,2865,16,0,
8037325,1,479,1588,1,
8038480,1593,1,1485,2866,
803916,0,325,1,1737,
80402867,16,0,325,1,
8041242,1606,1,478,1611,
80421,1001,1616,1,1002,
80431621,1,35,2868,19,
8044310,1,35,2869,5,
804584,1,1011,1130,1,
80461012,2870,16,0,308,
80471,1013,1286,1,262,
80481147,1,1267,2871,16,
80490,308,1,515,2872,
805016,0,308,1,1521,
80512873,16,0,308,1,
80522692,2874,16,0,308,
80531,525,1244,1,283,
80541200,1,2299,2875,16,
80550,308,1,42,2876,
805616,0,308,1,40,
80571205,1,44,1211,1,
805847,1212,1,1303,2877,
805916,0,308,1,1555,
80602878,16,0,308,1,
806150,1229,1,48,1218,
80621,49,1224,1,51,
80631234,1,63,1250,1,
8064305,1239,1,66,1256,
80651,67,1261,1,68,
80661266,1,69,1271,1,
806770,1276,1,73,2879,
806816,0,308,1,74,
80691281,1,328,1330,1,
80701048,1372,1,82,2880,
807116,0,308,1,1840,
80722881,16,0,308,1,
80731591,2882,16,0,308,
80741,1341,2883,16,0,
8075308,1,1096,1340,1,
807693,1346,1,352,1377,
80771,107,2884,16,0,
8078308,1,1114,1371,1,
8079118,1383,1,1123,2885,
808016,0,308,1,371,
80811393,1,1628,2886,16,
80820,308,1,375,1404,
80831,1882,2887,16,0,
8084308,1,377,1409,1,
8085379,1414,1,380,1419,
80861,883,2888,16,0,
8087308,1,373,1437,1,
8088130,1442,1,143,1447,
80891,387,2889,16,0,
8090308,1,1159,2890,16,
80910,308,1,157,1470,
80921,1413,2891,16,0,
8093308,1,1665,2892,16,
80940,308,1,412,2893,
809516,0,308,1,1377,
80962894,16,0,308,1,
8097172,1496,1,1939,2895,
809816,0,308,1,437,
80992896,16,0,308,1,
8100188,1547,1,942,1519,
81011,1195,2897,16,0,
8102308,1,1449,2898,16,
81030,308,1,1701,2899,
810416,0,308,1,447,
81051540,1,205,1552,1,
8106827,2900,16,0,308,
81071,223,2901,16,0,
8108308,1,476,1572,1,
8109477,1578,1,1231,2902,
811016,0,308,1,479,
81111588,1,480,1593,1,
81121485,2903,16,0,308,
81131,1737,2904,16,0,
8114308,1,242,1606,1,
8115478,1611,1,1001,1616,
81161,1002,1621,1,36,
81172905,19,217,1,36,
81182906,5,94,1,256,
81192907,16,0,215,1,
81201261,2908,16,0,215,
81211,509,2909,16,0,
8122215,1,1515,2910,16,
81230,215,1,2686,2911,
812416,0,215,1,2021,
8125747,1,1775,2912,16,
81260,215,1,2029,754,
81271,2030,760,1,2031,
8128765,1,2032,770,1,
81292033,775,1,277,2913,
813016,0,215,1,2035,
8131781,1,2037,786,1,
81322039,791,1,32,2914,
813316,0,215,1,2041,
8134797,1,2293,2915,16,
81350,215,1,2043,803,
81361,2045,808,1,41,
81372916,16,0,215,1,
81381297,2917,16,0,215,
81391,43,2918,16,0,
8140215,1,1803,816,1,
81411804,2919,16,0,215,
81421,299,2920,16,0,
8143215,1,52,2921,16,
81440,215,1,2318,2922,
814516,0,215,1,2075,
81462923,16,0,215,1,
81471574,828,1,71,2924,
814816,0,215,1,76,
81492925,16,0,215,1,
81501834,2926,16,0,215,
81511,2337,2927,16,0,
8152215,1,79,2928,16,
81530,215,1,1335,2929,
815416,0,215,1,322,
81552930,16,0,215,1,
815685,2931,16,0,215,
81571,89,2932,16,0,
8158215,1,346,2933,16,
81590,215,1,2105,843,
81601,2106,2934,16,0,
8161215,1,97,2935,16,
81620,215,1,1860,850,
81631,2364,856,1,102,
81642936,16,0,215,1,
8165112,2937,16,0,215,
81661,1117,2938,16,0,
8167215,1,1873,864,1,
81681876,2939,16,0,215,
81691,124,2940,16,0,
8170215,1,2136,871,1,
8171381,2941,16,0,215,
81721,525,2942,16,0,
8173215,1,137,2943,16,
81740,215,1,1901,2944,
817516,0,215,1,1153,
81762945,16,0,215,1,
8177151,2946,16,0,215,
81781,1407,2947,16,0,
8179215,1,1659,2948,16,
81800,215,1,2413,2949,
818116,0,215,1,406,
81822950,16,0,215,1,
81831371,2951,16,0,215,
81841,166,2952,16,0,
8185215,1,1622,2953,16,
81860,215,1,1931,889,
81871,1933,2954,16,0,
8188215,1,431,2955,16,
81890,215,1,1585,2956,
819016,0,215,1,182,
81912957,16,0,215,1,
81921189,2958,16,0,215,
81931,1443,2959,16,0,
8194215,1,1695,2960,16,
81950,215,1,2198,2961,
819616,0,215,1,447,
81972962,16,0,215,1,
81982458,904,1,2459,910,
81991,1958,2963,16,0,
8200215,1,2462,917,1,
82011657,922,1,2464,927,
82021,199,2964,16,0,
8203215,1,459,2965,16,
82040,215,1,462,2966,
820516,0,215,1,217,
82062967,16,0,215,1,
82072227,936,1,1225,2968,
820816,0,215,1,1479,
82092969,16,0,215,1,
82101731,2970,16,0,215,
82111,1989,944,1,1990,
82122971,16,0,215,1,
8213236,2972,16,0,215,
82141,1756,2973,16,0,
8215215,1,37,2974,19,
8216234,1,37,2975,5,
821794,1,256,2976,16,
82180,232,1,1261,2977,
821916,0,232,1,509,
82202978,16,0,232,1,
82211515,2979,16,0,232,
82221,2686,2980,16,0,
8223232,1,2021,747,1,
82241775,2981,16,0,232,
82251,2029,754,1,2030,
8226760,1,2031,765,1,
82272032,770,1,2033,775,
82281,277,2982,16,0,
8229232,1,2035,781,1,
82302037,786,1,2039,791,
82311,32,2983,16,0,
8232232,1,2041,797,1,
82332293,2984,16,0,232,
82341,2043,803,1,2045,
8235808,1,41,2985,16,
82360,232,1,1297,2986,
823716,0,232,1,43,
82382987,16,0,232,1,
82391803,816,1,1804,2988,
824016,0,232,1,299,
82412989,16,0,232,1,
824252,2990,16,0,232,
82431,2318,2991,16,0,
8244232,1,2075,2992,16,
82450,232,1,1574,828,
82461,71,2993,16,0,
8247232,1,76,2994,16,
82480,232,1,1834,2995,
824916,0,232,1,2337,
82502996,16,0,232,1,
825179,2997,16,0,232,
82521,1335,2998,16,0,
8253232,1,322,2999,16,
82540,232,1,85,3000,
825516,0,232,1,89,
82563001,16,0,232,1,
8257346,3002,16,0,232,
82581,2105,843,1,2106,
82593003,16,0,232,1,
826097,3004,16,0,232,
82611,1860,850,1,2364,
8262856,1,102,3005,16,
82630,232,1,112,3006,
826416,0,232,1,1117,
82653007,16,0,232,1,
82661873,864,1,1876,3008,
826716,0,232,1,124,
82683009,16,0,232,1,
82692136,871,1,381,3010,
827016,0,232,1,525,
82713011,16,0,232,1,
8272137,3012,16,0,232,
82731,1901,3013,16,0,
8274232,1,1153,3014,16,
82750,232,1,151,3015,
827616,0,232,1,1407,
82773016,16,0,232,1,
82781659,3017,16,0,232,
82791,2413,3018,16,0,
8280232,1,406,3019,16,
82810,232,1,1371,3020,
828216,0,232,1,166,
82833021,16,0,232,1,
82841622,3022,16,0,232,
82851,1931,889,1,1933,
82863023,16,0,232,1,
8287431,3024,16,0,232,
82881,1585,3025,16,0,
8289232,1,182,3026,16,
82900,232,1,1189,3027,
829116,0,232,1,1443,
82923028,16,0,232,1,
82931695,3029,16,0,232,
82941,2198,3030,16,0,
8295232,1,447,3031,16,
82960,232,1,2458,904,
82971,2459,910,1,1958,
82983032,16,0,232,1,
82992462,917,1,1657,922,
83001,2464,927,1,199,
83013033,16,0,232,1,
8302459,3034,16,0,232,
83031,462,3035,16,0,
8304232,1,217,3036,16,
83050,232,1,2227,936,
83061,1225,3037,16,0,
8307232,1,1479,3038,16,
83080,232,1,1731,3039,
830916,0,232,1,1989,
8310944,1,1990,3040,16,
83110,232,1,236,3041,
831216,0,232,1,1756,
83133042,16,0,232,1,
831438,3043,19,231,1,
831538,3044,5,84,1,
83161011,1130,1,1012,3045,
831716,0,229,1,1013,
83181286,1,262,1147,1,
83191267,3046,16,0,229,
83201,515,3047,16,0,
8321229,1,1521,3048,16,
83220,229,1,2692,3049,
832316,0,229,1,525,
83241244,1,283,1200,1,
83252299,3050,16,0,229,
83261,42,3051,16,0,
8327229,1,40,1205,1,
832844,1211,1,47,1212,
83291,1303,3052,16,0,
8330229,1,1555,3053,16,
83310,229,1,50,1229,
83321,48,1218,1,49,
83331224,1,51,1234,1,
833463,1250,1,305,1239,
83351,66,1256,1,67,
83361261,1,68,1266,1,
833769,1271,1,70,1276,
83381,73,3054,16,0,
8339229,1,74,1281,1,
8340328,1330,1,1048,1372,
83411,82,3055,16,0,
8342229,1,1840,3056,16,
83430,229,1,1591,3057,
834416,0,229,1,1341,
83453058,16,0,229,1,
83461096,1340,1,93,1346,
83471,352,1377,1,107,
83483059,16,0,229,1,
83491114,1371,1,118,1383,
83501,1123,3060,16,0,
8351229,1,371,1393,1,
83521628,3061,16,0,229,
83531,375,1404,1,1882,
83543062,16,0,229,1,
8355377,1409,1,379,1414,
83561,380,1419,1,883,
83571425,1,373,1437,1,
8358130,1442,1,143,1447,
83591,387,3063,16,0,
8360229,1,1159,3064,16,
83610,229,1,157,1470,
83621,1413,3065,16,0,
8363229,1,1665,3066,16,
83640,229,1,412,3067,
836516,0,229,1,1377,
83663068,16,0,229,1,
8367172,1496,1,1939,3069,
836816,0,229,1,437,
83693070,16,0,229,1,
8370188,1547,1,942,1519,
83711,1195,3071,16,0,
8372229,1,1449,3072,16,
83730,229,1,1701,3073,
837416,0,229,1,447,
83751540,1,205,1552,1,
8376827,1359,1,223,1562,
83771,476,1572,1,477,
83781578,1,1231,3074,16,
83790,229,1,479,1588,
83801,480,1593,1,1485,
83813075,16,0,229,1,
83821737,3076,16,0,229,
83831,242,1606,1,478,
83841611,1,1001,1616,1,
83851002,1621,1,39,3077,
838619,223,1,39,3078,
83875,84,1,1011,1130,
83881,1012,3079,16,0,
8389221,1,1013,1286,1,
8390262,1147,1,1267,3080,
839116,0,221,1,515,
83923081,16,0,221,1,
83931521,3082,16,0,221,
83941,2692,3083,16,0,
8395221,1,525,1244,1,
8396283,1200,1,2299,3084,
839716,0,221,1,42,
83983085,16,0,221,1,
839940,1205,1,44,1211,
84001,47,1212,1,1303,
84013086,16,0,221,1,
84021555,3087,16,0,221,
84031,50,1229,1,48,
84041218,1,49,1224,1,
840551,1234,1,63,1250,
84061,305,1239,1,66,
84071256,1,67,1261,1,
840868,1266,1,69,1271,
84091,70,1276,1,73,
84103088,16,0,221,1,
841174,1281,1,328,1330,
84121,1048,1372,1,82,
84133089,16,0,221,1,
84141840,3090,16,0,221,
84151,1591,3091,16,0,
8416221,1,1341,3092,16,
84170,221,1,1096,1340,
84181,93,1346,1,352,
84191377,1,107,3093,16,
84200,221,1,1114,1371,
84211,118,1383,1,1123,
84223094,16,0,221,1,
8423371,1393,1,1628,3095,
842416,0,221,1,375,
84251404,1,1882,3096,16,
84260,221,1,377,1409,
84271,379,1414,1,380,
84281419,1,883,1425,1,
8429373,1437,1,130,1442,
84301,143,1447,1,387,
84313097,16,0,221,1,
84321159,3098,16,0,221,
84331,157,1470,1,1413,
84343099,16,0,221,1,
84351665,3100,16,0,221,
84361,412,3101,16,0,
8437221,1,1377,3102,16,
84380,221,1,172,1496,
84391,1939,3103,16,0,
8440221,1,437,3104,16,
84410,221,1,188,1547,
84421,942,1519,1,1195,
84433105,16,0,221,1,
84441449,3106,16,0,221,
84451,1701,3107,16,0,
8446221,1,447,1540,1,
8447205,1552,1,827,1359,
84481,223,1562,1,476,
84491572,1,477,1578,1,
84501231,3108,16,0,221,
84511,479,1588,1,480,
84521593,1,1485,3109,16,
84530,221,1,1737,3110,
845416,0,221,1,242,
84551606,1,478,1611,1,
84561001,1616,1,1002,1621,
84571,40,3111,19,211,
84581,40,3112,5,84,
84591,1011,1130,1,1012,
84603113,16,0,209,1,
84611013,1286,1,262,1147,
84621,1267,3114,16,0,
8463209,1,515,3115,16,
84640,209,1,1521,3116,
846516,0,209,1,2692,
84663117,16,0,209,1,
8467525,1244,1,283,1200,
84681,2299,3118,16,0,
8469209,1,42,3119,16,
84700,209,1,40,1205,
84711,44,1211,1,47,
84721212,1,1303,3120,16,
84730,209,1,1555,3121,
847416,0,209,1,50,
84751229,1,48,1218,1,
847649,1224,1,51,1234,
84771,63,1250,1,305,
84781239,1,66,1256,1,
847967,1261,1,68,1266,
84801,69,1271,1,70,
84811276,1,73,3122,16,
84820,209,1,74,1281,
84831,328,1330,1,1048,
84841372,1,82,3123,16,
84850,209,1,1840,3124,
848616,0,209,1,1591,
84873125,16,0,209,1,
84881341,3126,16,0,209,
84891,1096,1340,1,93,
84901346,1,352,1377,1,
8491107,3127,16,0,209,
84921,1114,1371,1,118,
84933128,16,0,209,1,
84941123,3129,16,0,209,
84951,371,1393,1,1628,
84963130,16,0,209,1,
8497375,1404,1,1882,3131,
849816,0,209,1,377,
84991409,1,379,1414,1,
8500380,1419,1,883,3132,
850116,0,209,1,373,
85021437,1,130,3133,16,
85030,209,1,143,3134,
850416,0,209,1,387,
85053135,16,0,209,1,
85061159,3136,16,0,209,
85071,157,3137,16,0,
8508209,1,1413,3138,16,
85090,209,1,1665,3139,
851016,0,209,1,412,
85113140,16,0,209,1,
85121377,3141,16,0,209,
85131,172,3142,16,0,
8514209,1,1939,3143,16,
85150,209,1,437,3144,
851616,0,209,1,188,
85173145,16,0,209,1,
8518942,1519,1,1195,3146,
851916,0,209,1,1449,
85203147,16,0,209,1,
85211701,3148,16,0,209,
85221,447,1540,1,205,
85233149,16,0,209,1,
8524827,3150,16,0,209,
85251,223,3151,16,0,
8526209,1,476,1572,1,
8527477,1578,1,1231,3152,
852816,0,209,1,479,
85291588,1,480,1593,1,
85301485,3153,16,0,209,
85311,1737,3154,16,0,
8532209,1,242,3155,16,
85330,209,1,478,1611,
85341,1001,1616,1,1002,
85351621,1,41,3156,19,
8536172,1,41,3157,5,
853784,1,1011,1130,1,
85381012,3158,16,0,170,
85391,1013,1286,1,262,
85401147,1,1267,3159,16,
85410,170,1,515,3160,
854216,0,170,1,1521,
85433161,16,0,170,1,
85442692,3162,16,0,170,
85451,525,1244,1,283,
85461200,1,2299,3163,16,
85470,170,1,42,3164,
854816,0,170,1,40,
85491205,1,44,1211,1,
855047,1212,1,1303,3165,
855116,0,170,1,1555,
85523166,16,0,170,1,
855350,1229,1,48,1218,
85541,49,1224,1,51,
85551234,1,63,1250,1,
8556305,1239,1,66,1256,
85571,67,1261,1,68,
85581266,1,69,1271,1,
855970,1276,1,73,3167,
856016,0,170,1,74,
85611281,1,328,1330,1,
85621048,1372,1,82,3168,
856316,0,170,1,1840,
85643169,16,0,170,1,
85651591,3170,16,0,170,
85661,1341,3171,16,0,
8567170,1,1096,1340,1,
856893,1346,1,352,1377,
85691,107,3172,16,0,
8570170,1,1114,1371,1,
8571118,3173,16,0,170,
85721,1123,3174,16,0,
8573170,1,371,1393,1,
85741628,3175,16,0,170,
85751,375,1404,1,1882,
85763176,16,0,170,1,
8577377,1409,1,379,1414,
85781,380,1419,1,883,
85793177,16,0,170,1,
8580373,1437,1,130,3178,
858116,0,170,1,143,
85823179,16,0,170,1,
8583387,3180,16,0,170,
85841,1159,3181,16,0,
8585170,1,157,3182,16,
85860,170,1,1413,3183,
858716,0,170,1,1665,
85883184,16,0,170,1,
8589412,3185,16,0,170,
85901,1377,3186,16,0,
8591170,1,172,3187,16,
85920,170,1,1939,3188,
859316,0,170,1,437,
85943189,16,0,170,1,
8595188,3190,16,0,170,
85961,942,1519,1,1195,
85973191,16,0,170,1,
85981449,3192,16,0,170,
85991,1701,3193,16,0,
8600170,1,447,1540,1,
8601205,3194,16,0,170,
86021,827,3195,16,0,
8603170,1,223,3196,16,
86040,170,1,476,1572,
86051,477,1578,1,1231,
86063197,16,0,170,1,
8607479,1588,1,480,1593,
86081,1485,3198,16,0,
8609170,1,1737,3199,16,
86100,170,1,242,3200,
861116,0,170,1,478,
86121611,1,1001,1616,1,
86131002,1621,1,42,3201,
861419,403,1,42,3202,
86155,38,1,1901,3203,
861616,0,401,1,2075,
86173204,16,0,401,1,
86181860,850,1,1803,816,
86191,1804,3205,16,0,
8620401,1,2413,3206,16,
86210,401,1,2198,3207,
862216,0,401,1,1873,
8623864,1,1657,922,1,
86241989,944,1,1990,3208,
862516,0,401,1,1775,
86263209,16,0,401,1,
862732,3210,16,0,401,
86281,2105,843,1,2106,
86293211,16,0,401,1,
86302364,856,1,2227,936,
86311,2337,3212,16,0,
8632401,1,2021,747,1,
86332458,904,1,2459,910,
86341,2462,917,1,2136,
8635871,1,2464,927,1,
86362029,754,1,2030,760,
86371,2031,765,1,2032,
8638770,1,2033,775,1,
86392035,781,1,2037,786,
86401,2039,791,1,1931,
8641889,1,2041,797,1,
86422043,803,1,2045,808,
86431,1574,828,1,1958,
86443213,16,0,401,1,
864543,3214,19,478,1,
864643,3215,5,25,1,
86472035,781,1,2037,786,
86481,2039,791,1,2041,
8649797,1,2227,936,1,
86502043,803,1,1657,922,
86511,1860,850,1,2136,
8652871,1,2021,747,1,
86532459,910,1,1574,828,
86541,2105,3216,16,0,
8655602,1,1931,889,1,
86561873,864,1,2031,765,
86571,1803,816,1,1989,
86583217,16,0,476,1,
86592464,927,1,2029,754,
86601,2030,760,1,2364,
8661856,1,2032,770,1,
86622033,775,1,2045,808,
86631,44,3218,19,264,
86641,44,3219,5,38,
86651,1901,3220,16,0,
8666262,1,2075,3221,16,
86670,262,1,1860,850,
86681,1803,816,1,1804,
86693222,16,0,262,1,
86702413,3223,16,0,262,
86711,2198,3224,16,0,
8672262,1,1873,864,1,
86731657,922,1,1989,944,
86741,1990,3225,16,0,
8675262,1,1775,3226,16,
86760,262,1,32,3227,
867716,0,262,1,2105,
8678843,1,2106,3228,16,
86790,262,1,2364,856,
86801,2227,936,1,2337,
86813229,16,0,262,1,
86822021,747,1,2458,904,
86831,2459,910,1,2462,
8684917,1,2136,871,1,
86852464,927,1,2029,754,
86861,2030,760,1,2031,
8687765,1,2032,770,1,
86882033,775,1,2035,781,
86891,2037,786,1,2039,
8690791,1,1931,889,1,
86912041,797,1,2043,803,
86921,2045,808,1,1574,
8693828,1,1958,3230,16,
86940,262,1,45,3231,
869519,287,1,45,3232,
86965,39,1,1901,3233,
869716,0,314,1,2075,
86983234,16,0,314,1,
86991860,850,1,1803,816,
87001,1804,3235,16,0,
8701314,1,2413,3236,16,
87020,314,1,2198,3237,
870316,0,314,1,1873,
8704864,1,1657,922,1,
87051989,944,1,1990,3238,
870616,0,314,1,1775,
87073239,16,0,314,1,
870832,3240,16,0,314,
87091,2105,843,1,2106,
87103241,16,0,314,1,
87112364,856,1,2227,936,
87121,2337,3242,16,0,
8713314,1,2021,747,1,
87142458,904,1,2459,910,
87151,2462,917,1,2136,
8716871,1,2464,927,1,
87172029,754,1,2030,760,
87181,2031,765,1,2032,
8719770,1,2033,775,1,
87202035,781,1,2037,786,
87211,2039,791,1,1931,
8722889,1,2041,797,1,
87232043,803,1,2045,808,
87241,1832,3243,16,0,
8725285,1,1574,828,1,
87261958,3244,16,0,314,
87271,46,3245,19,698,
87281,46,3246,5,38,
87291,1901,3247,16,0,
8730696,1,2075,3248,16,
87310,696,1,1860,850,
87321,1803,816,1,1804,
87333249,16,0,696,1,
87342413,3250,16,0,696,
87351,2198,3251,16,0,
8736696,1,1873,864,1,
87371657,922,1,1989,944,
87381,1990,3252,16,0,
8739696,1,1775,3253,16,
87400,696,1,32,3254,
874116,0,696,1,2105,
8742843,1,2106,3255,16,
87430,696,1,2364,856,
87441,2227,936,1,2337,
87453256,16,0,696,1,
87462021,747,1,2458,904,
87471,2459,910,1,2462,
8748917,1,2136,871,1,
87492464,927,1,2029,754,
87501,2030,760,1,2031,
8751765,1,2032,770,1,
87522033,775,1,2035,781,
87531,2037,786,1,2039,
8754791,1,1931,889,1,
87552041,797,1,2043,803,
87561,2045,808,1,1574,
8757828,1,1958,3257,16,
87580,696,1,47,3258,
875919,588,1,47,3259,
87605,19,1,0,3260,
876116,0,678,1,2741,
87623261,17,3262,15,3263,
87634,36,37,0,71,
86120,108,0,111,0, 87640,108,0,111,0,
861398,0,97,0,108, 876598,0,97,0,108,
86140,70,0,117,0, 87660,68,0,101,0,
8615110,0,99,0,116, 8767102,0,105,0,110,
86160,105,0,111,0, 87680,105,0,116,0,
8617110,0,68,0,101, 8769105,0,111,0,110,
86180,102,0,105,0, 87700,115,0,1,-1,
8619110,0,105,0,116, 87711,5,3264,20,3265,
86200,105,0,111,0,
8621110,0,95,0,50,
86220,1,153,1,3,
86231,7,1,6,3237,
862422,1,10,1,2652,
8625695,1,2727,3238,17,
86263239,15,3213,1,-1,
86271,5,3240,20,3241,
86284,38,71,0,108, 87724,38,71,0,108,
86290,111,0,98,0, 87730,111,0,98,0,
863097,0,108,0,68, 877497,0,108,0,68,
@@ -8632,42 +8776,52 @@ public yyLSLSyntax
8632105,0,110,0,105, 8776105,0,110,0,105,
86330,116,0,105,0, 87770,116,0,105,0,
8634111,0,110,0,115, 8778111,0,110,0,115,
86350,95,0,51,0, 87790,95,0,52,0,
86361,148,1,3,1, 87801,153,1,3,1,
86372,1,1,3242,22, 87813,1,2,3266,22,
86381,5,1,2728,3243, 87821,6,1,2742,3267,
863917,3244,15,3213,1, 878317,3268,15,3263,1,
8640-1,1,5,3245,20, 8784-1,1,5,3269,20,
86413246,4,38,71,0, 87853270,4,38,71,0,
8642108,0,111,0,98, 8786108,0,111,0,98,
86430,97,0,108,0, 87870,97,0,108,0,
864468,0,101,0,102, 878868,0,101,0,102,
86450,105,0,110,0, 87890,105,0,110,0,
8646105,0,116,0,105, 8790105,0,116,0,105,
86470,111,0,110,0, 87910,111,0,110,0,
8648115,0,95,0,49, 8792115,0,95,0,50,
86490,1,146,1,3, 87930,1,151,1,3,
86501,2,1,1,3247, 87941,3,1,2,3271,
865122,1,3,1,2667, 879522,1,4,1,2743,
86523248,17,3249,15,3234, 87963272,17,3273,15,3263,
86531,-1,1,5,3250, 87971,-1,1,5,3274,
865420,3251,4,52,71, 879820,3275,4,38,71,
86550,108,0,111,0, 87990,108,0,111,0,
865698,0,97,0,108, 880098,0,97,0,108,
86570,70,0,117,0, 88010,68,0,101,0,
8658110,0,99,0,116, 8802102,0,105,0,110,
86590,105,0,111,0, 88030,105,0,116,0,
8660110,0,68,0,101, 8804105,0,111,0,110,
88050,115,0,95,0,
880651,0,1,152,1,
88073,1,2,1,1,
88083276,22,1,5,1,
88092744,3277,17,3278,15,
88103263,1,-1,1,5,
88113279,20,3280,4,38,
881271,0,108,0,111,
88130,98,0,97,0,
8814108,0,68,0,101,
86610,102,0,105,0, 88150,102,0,105,0,
8662110,0,105,0,116, 8816110,0,105,0,116,
86630,105,0,111,0, 88170,105,0,111,0,
8664110,0,95,0,49, 8818110,0,115,0,95,
86650,1,152,1,3, 88190,49,0,1,150,
86661,6,1,5,3252, 88201,3,1,2,1,
866722,1,9,1,2695, 88211,3281,22,1,3,
86683253,17,3254,15,3224, 88221,2660,735,1,2711,
86691,-1,1,5,3255, 88233282,17,3283,15,3284,
867020,3256,4,54,71, 88244,52,37,0,71,
86710,108,0,111,0, 88250,108,0,111,0,
867298,0,97,0,108, 882698,0,97,0,108,
86730,86,0,97,0, 88270,86,0,97,0,
@@ -8677,2298 +8831,2437 @@ public yyLSLSyntax
86770,99,0,108,0, 88310,99,0,108,0,
867897,0,114,0,97, 883297,0,114,0,97,
86790,116,0,105,0, 88330,116,0,105,0,
8834111,0,110,0,1,
8835-1,1,5,3285,20,
88363286,4,54,71,0,
8837108,0,111,0,98,
88380,97,0,108,0,
883986,0,97,0,114,
88400,105,0,97,0,
884198,0,108,0,101,
88420,68,0,101,0,
884399,0,108,0,97,
88440,114,0,97,0,
8845116,0,105,0,111,
88460,110,0,95,0,
884750,0,1,155,1,
88483,1,5,1,4,
88493287,22,1,8,1,
88502664,3288,16,0,678,
88511,2723,3289,16,0,
8852678,1,2022,3290,16,
88530,586,1,2459,910,
88541,2683,3291,17,3292,
885515,3293,4,50,37,
88560,71,0,108,0,
8857111,0,98,0,97,
88580,108,0,70,0,
8859117,0,110,0,99,
88600,116,0,105,0,
8861111,0,110,0,68,
88620,101,0,102,0,
8863105,0,110,0,105,
88640,116,0,105,0,
8865111,0,110,0,1,
8866-1,1,5,3294,20,
88673295,4,52,71,0,
8868108,0,111,0,98,
88690,97,0,108,0,
887070,0,117,0,110,
88710,99,0,116,0,
8872105,0,111,0,110,
88730,68,0,101,0,
8874102,0,105,0,110,
88750,105,0,116,0,
8876105,0,111,0,110,
88770,95,0,49,0,
88781,156,1,3,1,
88796,1,5,3296,22,
88801,9,1,2722,3297,
888117,3298,15,3284,1,
8882-1,1,5,3299,20,
88833300,4,54,71,0,
8884108,0,111,0,98,
88850,97,0,108,0,
888686,0,97,0,114,
88870,105,0,97,0,
888898,0,108,0,101,
88890,68,0,101,0,
889099,0,108,0,97,
88910,114,0,97,0,
8892116,0,105,0,111,
88930,110,0,95,0,
889449,0,1,154,1,
88953,1,3,1,2,
88963301,22,1,7,1,
88972464,927,1,2576,713,
88981,2466,3302,17,3303,
889915,3293,1,-1,1,
89005,3304,20,3305,4,
890152,71,0,108,0,
8902111,0,98,0,97,
89030,108,0,70,0,
8904117,0,110,0,99,
89050,116,0,105,0,
8906111,0,110,0,68,
89070,101,0,102,0,
8908105,0,110,0,105,
89090,116,0,105,0,
8680111,0,110,0,95, 8910111,0,110,0,95,
86810,50,0,1,151, 89110,50,0,1,157,
86821,3,1,5,1, 89121,3,1,7,1,
86834,3257,22,1,8, 89136,3306,22,1,10,
86841,2651,689,1,48, 89141,2667,719,1,2668,
86853258,19,347,1,48, 8915707,1,2734,3307,16,
86863259,5,54,1,0, 89160,678,1,48,3308,
86873260,16,0,345,1, 891719,348,1,48,3309,
86882726,3217,1,2727,3238, 89185,54,1,0,3310,
86891,2728,3243,1,2075, 891916,0,346,1,2075,
86903261,16,0,505,1, 89203311,16,0,518,1,
86911860,831,1,1804,3262, 89211860,850,1,1803,816,
869216,0,505,1,2413, 89221,1804,3312,16,0,
86933263,16,0,505,1, 8923518,1,2413,3313,16,
86942198,3264,16,0,505, 89240,518,1,2741,3261,
86951,1873,845,1,1657, 89251,2742,3267,1,2743,
8696903,1,2030,741,1, 89263272,1,2744,3277,1,
86971989,925,1,1990,3265, 89271873,864,1,1657,922,
869816,0,505,1,2645, 89281,2030,760,1,1989,
8699706,1,2459,891,1, 8929944,1,1990,3314,16,
87001775,3266,16,0,505, 89300,518,1,2459,910,
87011,32,3267,16,0, 89311,1775,3315,16,0,
8702505,1,2718,3268,16, 8932518,1,32,3316,16,
87030,345,1,2105,824, 89330,518,1,2105,843,
87041,2651,689,1,2652, 89341,2106,3317,16,0,
8705695,1,2648,3269,16, 8935518,1,2576,713,1,
87060,345,1,2227,917, 89362683,3291,1,2660,735,
87071,2337,3270,16,0, 89371,2227,936,1,2337,
8708505,1,2667,3248,1, 89383318,16,0,518,1,
87092695,3253,1,2565,700, 89392667,719,1,2037,786,
87101,1803,797,1,2458, 89401,2021,747,1,2458,
8711885,1,1901,3271,16, 8941904,1,1901,3319,16,
87120,505,1,2462,898, 89420,518,1,2462,917,
87131,2136,852,1,2464, 89431,2136,871,1,2464,
8714908,1,2029,735,1, 8944927,1,2029,754,1,
87152466,3232,1,2031,746, 89452466,3302,1,2031,765,
87161,2032,751,1,2033, 89461,2032,770,1,2033,
8717756,1,2035,762,1, 8947775,1,2035,781,1,
87182364,837,1,2039,772, 89482364,856,1,2039,791,
87191,1931,870,1,2041, 89491,1931,889,1,2041,
8720778,1,2021,728,1, 8950797,1,2043,803,1,
87212043,784,1,2045,789, 89512045,808,1,2664,3320,
87221,2725,3211,1,2706, 895216,0,346,1,2198,
87233222,1,2707,3272,16, 89533321,16,0,518,1,
87240,345,1,2037,767, 89542668,707,1,2711,3282,
87251,1574,809,1,2106, 89551,2734,3322,16,0,
87263273,16,0,505,1, 8956346,1,1574,828,1,
87271958,3274,16,0,505, 89571958,3323,16,0,518,
87281,49,3275,19,510, 89581,2722,3297,1,2723,
87291,49,3276,5,38, 89593324,16,0,346,1,
87301,1901,3277,16,0, 896049,3325,19,523,1,
8731508,1,2075,3278,16, 896149,3326,5,38,1,
87320,508,1,1860,831, 89621901,3327,16,0,521,
87331,1803,797,1,1804, 89631,2075,3328,16,0,
87343279,16,0,508,1, 8964521,1,1860,850,1,
87352413,3280,16,0,508, 89651803,816,1,1804,3329,
87361,2198,3281,16,0, 896616,0,521,1,2413,
8737508,1,1873,845,1, 89673330,16,0,521,1,
87381657,903,1,1989,925, 89682198,3331,16,0,521,
87391,1990,3282,16,0, 89691,1873,864,1,1657,
8740508,1,1775,3283,16, 8970922,1,1989,944,1,
87410,508,1,32,3284, 89711990,3332,16,0,521,
874216,0,508,1,2105, 89721,1775,3333,16,0,
8743824,1,2106,3285,16, 8973521,1,32,3334,16,
87440,508,1,2364,837, 89740,521,1,2105,843,
87451,2227,917,1,2337, 89751,2106,3335,16,0,
87463286,16,0,508,1, 8976521,1,2364,856,1,
87472021,728,1,2458,885, 89772227,936,1,2337,3336,
87481,2459,891,1,2462, 897816,0,521,1,2021,
8749898,1,2136,852,1, 8979747,1,2458,904,1,
87502464,908,1,2029,735, 89802459,910,1,2462,917,
87511,2030,741,1,2031, 89811,2136,871,1,2464,
8752746,1,2032,751,1, 8982927,1,2029,754,1,
87532033,756,1,2035,762, 89832030,760,1,2031,765,
87541,2037,767,1,2039, 89841,2032,770,1,2033,
8755772,1,1931,870,1, 8985775,1,2035,781,1,
87562041,778,1,2043,784, 89862037,786,1,2039,791,
87571,2045,789,1,1574, 89871,1931,889,1,2041,
8758809,1,1958,3287,16, 8988797,1,2043,803,1,
87590,508,1,50,3288, 89892045,808,1,1574,828,
876019,627,1,50,3289, 89901,1958,3337,16,0,
87615,38,1,1901,3290, 8991521,1,50,3338,19,
876216,0,625,1,2075, 8992640,1,50,3339,5,
87633291,16,0,625,1, 899338,1,1901,3340,16,
87641860,831,1,1803,797, 89940,638,1,2075,3341,
87651,1804,3292,16,0, 899516,0,638,1,1860,
8766625,1,2413,3293,16, 8996850,1,1803,816,1,
87670,625,1,2198,3294, 89971804,3342,16,0,638,
876816,0,625,1,1873, 89981,2413,3343,16,0,
8769845,1,1657,903,1, 8999638,1,2198,3344,16,
87701989,925,1,1990,3295, 90000,638,1,1873,864,
877116,0,625,1,1775, 90011,1657,922,1,1989,
87723296,16,0,625,1, 9002944,1,1990,3345,16,
877332,3297,16,0,625, 90030,638,1,1775,3346,
87741,2105,824,1,2106, 900416,0,638,1,32,
87753298,16,0,625,1, 90053347,16,0,638,1,
87762364,837,1,2227,917, 90062105,843,1,2106,3348,
87771,2337,3299,16,0, 900716,0,638,1,2364,
8778625,1,2021,728,1, 9008856,1,2227,936,1,
87792458,885,1,2459,891, 90092337,3349,16,0,638,
87801,2462,898,1,2136, 90101,2021,747,1,2458,
8781852,1,2464,908,1, 9011904,1,2459,910,1,
87822029,735,1,2030,741, 90122462,917,1,2136,871,
87831,2031,746,1,2032, 90131,2464,927,1,2029,
8784751,1,2033,756,1, 9014754,1,2030,760,1,
87852035,762,1,2037,767, 90152031,765,1,2032,770,
87861,2039,772,1,1931, 90161,2033,775,1,2035,
8787870,1,2041,778,1, 9017781,1,2037,786,1,
87882043,784,1,2045,789, 90182039,791,1,1931,889,
87891,1574,809,1,1958, 90191,2041,797,1,2043,
87903300,16,0,625,1, 9020803,1,2045,808,1,
879151,3301,19,127,1, 90211574,828,1,1958,3350,
879251,3302,5,53,1, 902216,0,638,1,51,
87930,3303,16,0,125, 90233351,19,127,1,51,
87941,2726,3217,1,2727, 90243352,5,54,1,0,
87953238,1,2728,3243,1, 90253353,16,0,125,1,
87962075,3304,16,0,125, 90262075,3354,16,0,125,
87971,1860,831,1,1804, 90271,1860,850,1,1804,
87983305,16,0,125,1, 90283355,16,0,125,1,
879910,3306,16,0,125, 902910,3356,16,0,125,
88001,2413,3307,16,0, 90301,2520,3357,16,0,
8801125,1,2198,3308,16, 9031125,1,2337,3358,16,
88020,125,1,1873,845, 90320,125,1,2413,3359,
88031,21,3309,16,0, 903316,0,125,1,2741,
8804125,1,1657,903,1, 90343261,1,2742,3267,1,
88052030,741,1,1989,925, 90352743,3272,1,2744,3277,
88061,1990,3310,16,0, 90361,1873,864,1,21,
8807125,1,2459,891,1, 90373360,16,0,125,1,
88081775,3311,16,0,125, 90381657,922,1,2030,760,
88091,32,3312,16,0, 90391,1989,944,1,1990,
8810125,1,2105,824,1, 90403361,16,0,125,1,
88112106,3313,16,0,125, 90411775,3362,16,0,125,
88121,2654,3314,16,0, 90421,32,3363,16,0,
8813125,1,2227,917,1, 9043125,1,2105,843,1,
88142337,3315,16,0,125, 90442106,3364,16,0,125,
88151,2667,3248,1,52, 90451,2683,3291,1,2227,
88163316,16,0,125,1, 9046936,1,1901,3365,16,
88172695,3253,1,1803,797, 90470,125,1,52,3366,
88181,2458,885,1,1901, 904816,0,125,1,2670,
88193317,16,0,125,1, 90493367,16,0,125,1,
88202462,898,1,2136,852, 90501803,816,1,2458,904,
88211,2464,908,1,2029, 90511,2459,910,1,2462,
8822735,1,2466,3232,1, 9052917,1,2136,871,1,
88232031,746,1,2032,751, 90532464,927,1,2029,754,
88241,2033,756,1,2035, 90541,2466,3302,1,2031,
8825762,1,2364,837,1, 9055765,1,2032,770,1,
88262039,772,1,1931,870, 90562033,775,1,2035,781,
88271,2041,778,1,2021, 90571,2364,856,1,2039,
8828728,1,2043,784,1, 9058791,1,1931,889,1,
88292045,789,1,2511,3318, 90592041,797,1,2021,747,
883016,0,125,1,2725, 90601,2043,803,1,2045,
88313211,1,2706,3222,1, 9061808,1,2511,3368,16,
88322707,3319,16,0,125, 90620,449,1,2198,3369,
88331,2037,767,1,1574, 906316,0,125,1,2711,
8834809,1,1958,3320,16, 90643282,1,2037,786,1,
88350,125,1,52,3321, 90651574,828,1,1958,3370,
883619,124,1,52,3322, 906616,0,125,1,2722,
88375,53,1,0,3323, 90673297,1,2723,3371,16,
883816,0,122,1,2726, 90680,125,1,52,3372,
88393217,1,2727,3238,1, 906919,124,1,52,3373,
88402728,3243,1,2075,3324, 90705,53,1,0,3374,
884116,0,122,1,1860, 907116,0,122,1,2075,
8842831,1,1804,3325,16, 90723375,16,0,122,1,
88430,122,1,10,3326, 90731860,850,1,1804,3376,
884416,0,122,1,2413, 907416,0,122,1,10,
88453327,16,0,122,1, 90753377,16,0,122,1,
88462198,3328,16,0,122, 90762520,3378,16,0,122,
88471,1873,845,1,21, 90771,2337,3379,16,0,
88483329,16,0,122,1, 9078122,1,2413,3380,16,
88491657,903,1,2030,741, 90790,122,1,2741,3261,
88501,1989,925,1,1990, 90801,2742,3267,1,2743,
88513330,16,0,122,1, 90813272,1,2744,3277,1,
88522459,891,1,1775,3331, 90821873,864,1,21,3381,
885316,0,122,1,32, 908316,0,122,1,1657,
88543332,16,0,122,1, 9084922,1,2030,760,1,
88552105,824,1,2106,3333, 90851989,944,1,1990,3382,
885616,0,122,1,2654, 908616,0,122,1,1775,
88573334,16,0,122,1, 90873383,16,0,122,1,
88582227,917,1,2337,3335, 908832,3384,16,0,122,
885916,0,122,1,2667, 90891,2105,843,1,2106,
88603248,1,52,3336,16, 90903385,16,0,122,1,
88610,122,1,2695,3253, 90912683,3291,1,2227,936,
88621,1803,797,1,2458, 90921,1901,3386,16,0,
8863885,1,1901,3337,16, 9093122,1,52,3387,16,
88640,122,1,2462,898, 90940,122,1,2670,3388,
88651,2136,852,1,2464, 909516,0,122,1,1803,
8866908,1,2029,735,1, 9096816,1,2458,904,1,
88672466,3232,1,2031,746, 90972459,910,1,2462,917,
88681,2032,751,1,2033, 90981,2136,871,1,2464,
8869756,1,2035,762,1, 9099927,1,2029,754,1,
88702364,837,1,2039,772, 91002466,3302,1,2031,765,
88711,1931,870,1,2041, 91011,2032,770,1,2033,
8872778,1,2021,728,1, 9102775,1,2035,781,1,
88732043,784,1,2045,789, 91032364,856,1,2039,791,
88741,2511,3338,16,0, 91041,1931,889,1,2041,
8875122,1,2725,3211,1, 9105797,1,2021,747,1,
88762706,3222,1,2707,3339, 91062043,803,1,2045,808,
887716,0,122,1,2037, 91071,2198,3389,16,0,
8878767,1,1574,809,1, 9108122,1,2711,3282,1,
88791958,3340,16,0,122, 91092037,786,1,1574,828,
88801,53,3341,19,121, 91101,1958,3390,16,0,
88811,53,3342,5,53, 9111122,1,2722,3297,1,
88821,0,3343,16,0, 91122723,3391,16,0,122,
8883119,1,2726,3217,1, 91131,53,3392,19,121,
88842727,3238,1,2728,3243, 91141,53,3393,5,53,
88851,2075,3344,16,0, 91151,0,3394,16,0,
8886119,1,1860,831,1, 9116119,1,2075,3395,16,
88871804,3345,16,0,119, 91170,119,1,1860,850,
88881,10,3346,16,0, 91181,1804,3396,16,0,
8889119,1,2413,3347,16, 9119119,1,10,3397,16,
88900,119,1,2198,3348, 91200,119,1,2520,3398,
889116,0,119,1,1873, 912116,0,119,1,2337,
8892845,1,21,3349,16, 91223399,16,0,119,1,
88930,119,1,1657,903, 91232413,3400,16,0,119,
88941,2030,741,1,1989, 91241,2741,3261,1,2742,
8895925,1,1990,3350,16, 91253267,1,2743,3272,1,
88960,119,1,2459,891, 91262744,3277,1,1873,864,
88971,1775,3351,16,0, 91271,21,3401,16,0,
8898119,1,32,3352,16, 9128119,1,1657,922,1,
88990,119,1,2105,824, 91292030,760,1,1989,944,
89001,2106,3353,16,0, 91301,1990,3402,16,0,
8901119,1,2654,3354,16, 9131119,1,1775,3403,16,
89020,119,1,2227,917, 91320,119,1,32,3404,
89031,2337,3355,16,0, 913316,0,119,1,2105,
8904119,1,2667,3248,1, 9134843,1,2106,3405,16,
890552,3356,16,0,119, 91350,119,1,2683,3291,
89061,2695,3253,1,1803, 91361,2227,936,1,1901,
8907797,1,2458,885,1, 91373406,16,0,119,1,
89081901,3357,16,0,119, 913852,3407,16,0,119,
89091,2462,898,1,2136, 91391,2670,3408,16,0,
8910852,1,2464,908,1, 9140119,1,1803,816,1,
89112029,735,1,2466,3232, 91412458,904,1,2459,910,
89121,2031,746,1,2032, 91421,2462,917,1,2136,
8913751,1,2033,756,1, 9143871,1,2464,927,1,
89142035,762,1,2364,837, 91442029,754,1,2466,3302,
89151,2039,772,1,1931, 91451,2031,765,1,2032,
8916870,1,2041,778,1, 9146770,1,2033,775,1,
89172021,728,1,2043,784, 91472035,781,1,2364,856,
89181,2045,789,1,2511, 91481,2039,791,1,1931,
89193358,16,0,119,1, 9149889,1,2041,797,1,
89202725,3211,1,2706,3222, 91502021,747,1,2043,803,
89211,2707,3359,16,0, 91511,2045,808,1,2198,
8922119,1,2037,767,1, 91523409,16,0,119,1,
89231574,809,1,1958,3360, 91532711,3282,1,2037,786,
91541,1574,828,1,1958,
91553410,16,0,119,1,
91562722,3297,1,2723,3411,
892416,0,119,1,54, 915716,0,119,1,54,
89253361,19,118,1,54, 91583412,19,118,1,54,
89263362,5,53,1,0, 91593413,5,53,1,0,
89273363,16,0,116,1, 91603414,16,0,116,1,
89282726,3217,1,2727,3238, 91612075,3415,16,0,116,
89291,2728,3243,1,2075, 91621,1860,850,1,1804,
89303364,16,0,116,1, 91633416,16,0,116,1,
89311860,831,1,1804,3365, 916410,3417,16,0,116,
893216,0,116,1,10, 91651,2520,3418,16,0,
89333366,16,0,116,1, 9166116,1,2337,3419,16,
89342413,3367,16,0,116, 91670,116,1,2413,3420,
89351,2198,3368,16,0, 916816,0,116,1,2741,
8936116,1,1873,845,1, 91693261,1,2742,3267,1,
893721,3369,16,0,116, 91702743,3272,1,2744,3277,
89381,1657,903,1,2030, 91711,1873,864,1,21,
8939741,1,1989,925,1, 91723421,16,0,116,1,
89401990,3370,16,0,116, 91731657,922,1,2030,760,
89411,2459,891,1,1775, 91741,1989,944,1,1990,
89423371,16,0,116,1, 91753422,16,0,116,1,
894332,3372,16,0,116, 91761775,3423,16,0,116,
89441,2105,824,1,2106, 91771,32,3424,16,0,
89453373,16,0,116,1, 9178116,1,2105,843,1,
89462654,3374,16,0,116, 91792106,3425,16,0,116,
89471,2227,917,1,2337, 91801,2683,3291,1,2227,
89483375,16,0,116,1, 9181936,1,1901,3426,16,
89492667,3248,1,52,3376, 91820,116,1,52,3427,
895016,0,116,1,2695, 918316,0,116,1,2670,
89513253,1,1803,797,1, 91843428,16,0,116,1,
89522458,885,1,1901,3377, 91851803,816,1,2458,904,
895316,0,116,1,2462, 91861,2459,910,1,2462,
8954898,1,2136,852,1, 9187917,1,2136,871,1,
89552464,908,1,2029,735, 91882464,927,1,2029,754,
89561,2466,3232,1,2031, 91891,2466,3302,1,2031,
8957746,1,2032,751,1, 9190765,1,2032,770,1,
89582033,756,1,2035,762, 91912033,775,1,2035,781,
89591,2364,837,1,2039, 91921,2364,856,1,2039,
8960772,1,1931,870,1, 9193791,1,1931,889,1,
89612041,778,1,2021,728, 91942041,797,1,2021,747,
89621,2043,784,1,2045, 91951,2043,803,1,2045,
8963789,1,2511,3378,16, 9196808,1,2198,3429,16,
89640,116,1,2725,3211, 91970,116,1,2711,3282,
89651,2706,3222,1,2707, 91981,2037,786,1,1574,
89663379,16,0,116,1, 9199828,1,1958,3430,16,
89672037,767,1,1574,809, 92000,116,1,2722,3297,
89681,1958,3380,16,0, 92011,2723,3431,16,0,
8969116,1,55,3381,19, 9202116,1,55,3432,19,
8970115,1,55,3382,5, 9203115,1,55,3433,5,
897153,1,0,3383,16, 920453,1,0,3434,16,
89720,113,1,2726,3217, 92050,113,1,2075,3435,
89731,2727,3238,1,2728, 920616,0,113,1,1860,
89743243,1,2075,3384,16, 9207850,1,1804,3436,16,
89750,113,1,1860,831, 92080,113,1,10,3437,
89761,1804,3385,16,0, 920916,0,113,1,2520,
8977113,1,10,3386,16, 92103438,16,0,113,1,
89780,113,1,2413,3387, 92112337,3439,16,0,113,
897916,0,113,1,2198, 92121,2413,3440,16,0,
89803388,16,0,113,1, 9213113,1,2741,3261,1,
89811873,845,1,21,3389, 92142742,3267,1,2743,3272,
898216,0,113,1,1657, 92151,2744,3277,1,1873,
8983903,1,2030,741,1, 9216864,1,21,3441,16,
89841989,925,1,1990,3390, 92170,113,1,1657,922,
898516,0,113,1,2459, 92181,2030,760,1,1989,
8986891,1,1775,3391,16, 9219944,1,1990,3442,16,
89870,113,1,32,3392, 92200,113,1,1775,3443,
898816,0,113,1,2105, 922116,0,113,1,32,
8989824,1,2106,3393,16, 92223444,16,0,113,1,
89900,113,1,2654,3394, 92232105,843,1,2106,3445,
899116,0,113,1,2227, 922416,0,113,1,2683,
8992917,1,2337,3395,16, 92253291,1,2227,936,1,
89930,113,1,2667,3248, 92261901,3446,16,0,113,
89941,52,3396,16,0, 92271,52,3447,16,0,
8995113,1,2695,3253,1, 9228113,1,2670,3448,16,
89961803,797,1,2458,885, 92290,113,1,1803,816,
89971,1901,3397,16,0, 92301,2458,904,1,2459,
8998113,1,2462,898,1, 9231910,1,2462,917,1,
89992136,852,1,2464,908, 92322136,871,1,2464,927,
90001,2029,735,1,2466, 92331,2029,754,1,2466,
90013232,1,2031,746,1, 92343302,1,2031,765,1,
90022032,751,1,2033,756, 92352032,770,1,2033,775,
90031,2035,762,1,2364, 92361,2035,781,1,2364,
9004837,1,2039,772,1, 9237856,1,2039,791,1,
90051931,870,1,2041,778, 92381931,889,1,2041,797,
90061,2021,728,1,2043, 92391,2021,747,1,2043,
9007784,1,2045,789,1, 9240803,1,2045,808,1,
90082511,3398,16,0,113, 92412198,3449,16,0,113,
90091,2725,3211,1,2706, 92421,2711,3282,1,2037,
90103222,1,2707,3399,16, 9243786,1,1574,828,1,
90110,113,1,2037,767, 92441958,3450,16,0,113,
90121,1574,809,1,1958, 92451,2722,3297,1,2723,
90133400,16,0,113,1, 92463451,16,0,113,1,
901456,3401,19,112,1, 924756,3452,19,112,1,
901556,3402,5,53,1, 924856,3453,5,53,1,
90160,3403,16,0,110, 92490,3454,16,0,110,
90171,2726,3217,1,2727, 92501,2075,3455,16,0,
90183238,1,2728,3243,1, 9251110,1,1860,850,1,
90192075,3404,16,0,110, 92521804,3456,16,0,110,
90201,1860,831,1,1804, 92531,10,3457,16,0,
90213405,16,0,110,1, 9254110,1,2520,3458,16,
902210,3406,16,0,110, 92550,110,1,2337,3459,
90231,2413,3407,16,0, 925616,0,110,1,2413,
9024110,1,2198,3408,16, 92573460,16,0,110,1,
90250,110,1,1873,845, 92582741,3261,1,2742,3267,
90261,21,3409,16,0, 92591,2743,3272,1,2744,
9027110,1,1657,903,1, 92603277,1,1873,864,1,
90282030,741,1,1989,925, 926121,3461,16,0,110,
90291,1990,3410,16,0, 92621,1657,922,1,2030,
9030110,1,2459,891,1, 9263760,1,1989,944,1,
90311775,3411,16,0,110, 92641990,3462,16,0,110,
90321,32,3412,16,0, 92651,1775,3463,16,0,
9033110,1,2105,824,1, 9266110,1,32,3464,16,
90342106,3413,16,0,110, 92670,110,1,2105,843,
90351,2654,3414,16,0, 92681,2106,3465,16,0,
9036110,1,2227,917,1, 9269110,1,2683,3291,1,
90372337,3415,16,0,110, 92702227,936,1,1901,3466,
90381,2667,3248,1,52, 927116,0,110,1,52,
90393416,16,0,110,1, 92723467,16,0,110,1,
90402695,3253,1,1803,797, 92732670,3468,16,0,110,
90411,2458,885,1,1901, 92741,1803,816,1,2458,
90423417,16,0,110,1, 9275904,1,2459,910,1,
90432462,898,1,2136,852, 92762462,917,1,2136,871,
90441,2464,908,1,2029, 92771,2464,927,1,2029,
9045735,1,2466,3232,1, 9278754,1,2466,3302,1,
90462031,746,1,2032,751, 92792031,765,1,2032,770,
90471,2033,756,1,2035, 92801,2033,775,1,2035,
9048762,1,2364,837,1, 9281781,1,2364,856,1,
90492039,772,1,1931,870, 92822039,791,1,1931,889,
90501,2041,778,1,2021, 92831,2041,797,1,2021,
9051728,1,2043,784,1, 9284747,1,2043,803,1,
90522045,789,1,2511,3418, 92852045,808,1,2198,3469,
905316,0,110,1,2725, 928616,0,110,1,2711,
90543211,1,2706,3222,1, 92873282,1,2037,786,1,
90552707,3419,16,0,110, 92881574,828,1,1958,3470,
90561,2037,767,1,1574, 928916,0,110,1,2722,
9057809,1,1958,3420,16, 92903297,1,2723,3471,16,
90580,110,1,57,3421, 92910,110,1,57,3472,
905919,109,1,57,3422, 929219,109,1,57,3473,
90605,53,1,0,3423, 92935,53,1,0,3474,
906116,0,107,1,2726, 929416,0,107,1,2075,
90623217,1,2727,3238,1, 92953475,16,0,107,1,
90632728,3243,1,2075,3424, 92961860,850,1,1804,3476,
906416,0,107,1,1860, 929716,0,107,1,10,
9065831,1,1804,3425,16, 92983477,16,0,107,1,
90660,107,1,10,3426, 92992520,3478,16,0,107,
906716,0,107,1,2413, 93001,2337,3479,16,0,
90683427,16,0,107,1, 9301107,1,2413,3480,16,
90692198,3428,16,0,107, 93020,107,1,2741,3261,
90701,1873,845,1,21, 93031,2742,3267,1,2743,
90713429,16,0,107,1, 93043272,1,2744,3277,1,
90721657,903,1,2030,741, 93051873,864,1,21,3481,
90731,1989,925,1,1990, 930616,0,107,1,1657,
90743430,16,0,107,1, 9307922,1,2030,760,1,
90752459,891,1,1775,3431, 93081989,944,1,1990,3482,
907616,0,107,1,32, 930916,0,107,1,1775,
90773432,16,0,107,1, 93103483,16,0,107,1,
90782105,824,1,2106,3433, 931132,3484,16,0,107,
907916,0,107,1,2654, 93121,2105,843,1,2106,
90803434,16,0,107,1, 93133485,16,0,107,1,
90812227,917,1,2337,3435, 93142683,3291,1,2227,936,
908216,0,107,1,2667, 93151,1901,3486,16,0,
90833248,1,52,3436,16, 9316107,1,52,3487,16,
90840,107,1,2695,3253, 93170,107,1,2670,3488,
90851,1803,797,1,2458, 931816,0,107,1,1803,
9086885,1,1901,3437,16, 9319816,1,2458,904,1,
90870,107,1,2462,898, 93202459,910,1,2462,917,
90881,2136,852,1,2464, 93211,2136,871,1,2464,
9089908,1,2029,735,1, 9322927,1,2029,754,1,
90902466,3232,1,2031,746, 93232466,3302,1,2031,765,
90911,2032,751,1,2033, 93241,2032,770,1,2033,
9092756,1,2035,762,1, 9325775,1,2035,781,1,
90932364,837,1,2039,772, 93262364,856,1,2039,791,
90941,1931,870,1,2041, 93271,1931,889,1,2041,
9095778,1,2021,728,1, 9328797,1,2021,747,1,
90962043,784,1,2045,789, 93292043,803,1,2045,808,
90971,2511,3438,16,0, 93301,2198,3489,16,0,
9098107,1,2725,3211,1, 9331107,1,2711,3282,1,
90992706,3222,1,2707,3439, 93322037,786,1,1574,828,
910016,0,107,1,2037, 93331,1958,3490,16,0,
9101767,1,1574,809,1, 9334107,1,2722,3297,1,
91021958,3440,16,0,107, 93352723,3491,16,0,107,
91031,58,3441,19,437, 93361,58,3492,19,438,
91041,58,3442,5,12, 93371,58,3493,5,15,
91051,2524,1636,1,2526, 93381,2581,3494,16,0,
91063443,16,0,435,1, 9339436,1,2518,1655,1,
91072564,1655,1,2566,1660, 93402459,910,1,2535,3495,
91081,2567,1644,1,2606, 934116,0,436,1,2573,
91093444,16,0,435,1, 93421664,1,2574,1670,1,
91102459,891,1,2563,1650, 93432464,927,1,2577,1685,
91111,2464,908,1,2569, 93441,2578,1680,1,2533,
91123445,16,0,435,1, 93451695,1,2470,3496,16,
91132470,3446,16,0,435, 93460,436,1,2619,3497,
91141,2509,1629,1,59, 934716,0,436,1,2509,
91153447,19,434,1,59, 93481648,1,2575,1675,1,
91163448,5,12,1,2524, 93492579,1690,1,59,3498,
91171636,1,2526,3449,16, 935019,435,1,59,3499,
91180,432,1,2564,1655, 93515,15,1,2581,3500,
91191,2566,1660,1,2567, 935216,0,433,1,2518,
91201644,1,2606,3450,16, 93531655,1,2459,910,1,
91210,432,1,2459,891, 93542535,3501,16,0,433,
91221,2563,1650,1,2464, 93551,2573,1664,1,2574,
9123908,1,2569,3451,16, 93561670,1,2464,927,1,
91240,432,1,2470,3452, 93572577,1685,1,2578,1680,
912516,0,432,1,2509, 93581,2533,1695,1,2470,
91261629,1,60,3453,19, 93593502,16,0,433,1,
9127431,1,60,3454,5, 93602619,3503,16,0,433,
912812,1,2524,1636,1, 93611,2509,1648,1,2575,
91292526,3455,16,0,429, 93621675,1,2579,1690,1,
91301,2564,1655,1,2566, 936360,3504,19,432,1,
91311660,1,2567,1644,1, 936460,3505,5,15,1,
91322606,3456,16,0,429, 93652581,3506,16,0,430,
91331,2459,891,1,2563, 93661,2518,1655,1,2459,
91341650,1,2464,908,1, 9367910,1,2535,3507,16,
91352569,3457,16,0,429, 93680,430,1,2573,1664,
91361,2470,3458,16,0, 93691,2574,1670,1,2464,
9137429,1,2509,1629,1, 9370927,1,2577,1685,1,
913861,3459,19,428,1, 93712578,1680,1,2533,1695,
913961,3460,5,12,1, 93721,2470,3508,16,0,
91402524,1636,1,2526,3461, 9373430,1,2619,3509,16,
914116,0,426,1,2564, 93740,430,1,2509,1648,
91421655,1,2566,1660,1, 93751,2575,1675,1,2579,
91432567,1644,1,2606,3462, 93761690,1,61,3510,19,
914416,0,426,1,2459, 9377399,1,61,3511,5,
9145891,1,2563,1650,1, 937815,1,2581,3512,16,
91462464,908,1,2569,3463, 93790,397,1,2518,1655,
914716,0,426,1,2470, 93801,2459,910,1,2535,
91483464,16,0,426,1, 93813513,16,0,397,1,
91492509,1629,1,62,3465, 93822573,1664,1,2574,1670,
915019,425,1,62,3466, 93831,2464,927,1,2577,
91515,12,1,2524,1636, 93841685,1,2578,1680,1,
91521,2526,3467,16,0, 93852533,1695,1,2470,3514,
9153423,1,2564,1655,1, 938616,0,397,1,2619,
91542566,1660,1,2567,1644, 93873515,16,0,397,1,
91551,2606,3468,16,0, 93882509,1648,1,2575,1675,
9156423,1,2459,891,1, 93891,2579,1690,1,62,
91572563,1650,1,2464,908, 93903516,19,396,1,62,
91581,2569,3469,16,0, 93913517,5,15,1,2581,
9159423,1,2470,3470,16, 93923518,16,0,394,1,
91600,423,1,2509,1629, 93932518,1655,1,2459,910,
91611,63,3471,19,422, 93941,2535,3519,16,0,
91621,63,3472,5,12, 9395394,1,2573,1664,1,
91631,2524,1636,1,2526, 93962574,1670,1,2464,927,
91643473,16,0,420,1, 93971,2577,1685,1,2578,
91652564,1655,1,2566,1660, 93981680,1,2533,1695,1,
91661,2567,1644,1,2606, 93992470,3520,16,0,394,
91673474,16,0,420,1, 94001,2619,3521,16,0,
91682459,891,1,2563,1650, 9401394,1,2509,1648,1,
91691,2464,908,1,2569, 94022575,1675,1,2579,1690,
91703475,16,0,420,1, 94031,63,3522,19,488,
91712470,3476,16,0,420, 94041,63,3523,5,15,
91721,2509,1629,1,64, 94051,2581,3524,16,0,
91733477,19,663,1,64, 9406486,1,2518,1655,1,
91743478,5,12,1,2524, 94072459,910,1,2535,3525,
91751636,1,2526,3479,16, 940816,0,486,1,2573,
91760,661,1,2564,1655, 94091664,1,2574,1670,1,
91771,2566,1660,1,2567, 94102464,927,1,2577,1685,
91781644,1,2606,3480,16, 94111,2578,1680,1,2533,
91790,661,1,2459,891, 94121695,1,2470,3526,16,
91801,2563,1650,1,2464, 94130,486,1,2619,3527,
9181908,1,2569,3481,16, 941416,0,486,1,2509,
91820,661,1,2470,3482, 94151648,1,2575,1675,1,
918316,0,661,1,2509, 94162579,1690,1,64,3528,
91841629,1,65,3483,19, 941719,585,1,64,3529,
9185418,1,65,3484,5, 94185,15,1,2581,3530,
918612,1,2524,1636,1, 941916,0,583,1,2518,
91872526,3485,16,0,416, 94201655,1,2459,910,1,
91881,2564,1655,1,2566, 94212535,3531,16,0,583,
91891660,1,2567,1644,1, 94221,2573,1664,1,2574,
91902606,3486,16,0,416, 94231670,1,2464,927,1,
91911,2459,891,1,2563, 94242577,1685,1,2578,1680,
91921650,1,2464,908,1, 94251,2533,1695,1,2470,
91932569,3487,16,0,416, 94263532,16,0,583,1,
91941,2470,3488,16,0, 94272619,3533,16,0,583,
9195416,1,2509,1629,1, 94281,2509,1648,1,2575,
919666,3489,19,503,1, 94291675,1,2579,1690,1,
919766,3490,5,12,1, 943065,3534,19,429,1,
91982524,1636,1,2526,3491, 943165,3535,5,15,1,
919916,0,501,1,2564, 94322581,3536,16,0,427,
92001655,1,2566,1660,1, 94331,2518,1655,1,2459,
92012567,1644,1,2606,3492, 9434910,1,2535,3537,16,
920216,0,501,1,2459, 94350,427,1,2573,1664,
9203891,1,2563,1650,1, 94361,2574,1670,1,2464,
92042464,908,1,2569,3493, 9437927,1,2577,1685,1,
920516,0,501,1,2470, 94382578,1680,1,2533,1695,
92063494,16,0,501,1, 94391,2470,3538,16,0,
92072509,1629,1,67,3495, 9440427,1,2619,3539,16,
920819,414,1,67,3496, 94410,427,1,2509,1648,
92095,12,1,2524,1636, 94421,2575,1675,1,2579,
92101,2526,3497,16,0, 94431690,1,66,3540,19,
9211412,1,2564,1655,1, 9444426,1,66,3541,5,
92122566,1660,1,2567,1644, 944515,1,2581,3542,16,
92131,2606,3498,16,0, 94460,424,1,2518,1655,
9214412,1,2459,891,1, 94471,2459,910,1,2535,
92152563,1650,1,2464,908, 94483543,16,0,424,1,
92161,2569,3499,16,0, 94492573,1664,1,2574,1670,
9217412,1,2470,3500,16, 94501,2464,927,1,2577,
92180,412,1,2509,1629, 94511685,1,2578,1680,1,
92191,68,3501,19,411, 94522533,1695,1,2470,3544,
92201,68,3502,5,12, 945316,0,424,1,2619,
92211,2524,1636,1,2526, 94543545,16,0,424,1,
92223503,16,0,409,1, 94552509,1648,1,2575,1675,
92232564,1655,1,2566,1660, 94561,2579,1690,1,67,
92241,2567,1644,1,2606, 94573546,19,423,1,67,
92253504,16,0,409,1, 94583547,5,15,1,2581,
92262459,891,1,2563,1650, 94593548,16,0,421,1,
92271,2464,908,1,2569, 94602518,1655,1,2459,910,
92283505,16,0,409,1, 94611,2535,3549,16,0,
92292470,3506,16,0,409, 9462421,1,2573,1664,1,
92301,2509,1629,1,69, 94632574,1670,1,2464,927,
92313507,19,496,1,69, 94641,2577,1685,1,2578,
92323508,5,12,1,2524, 94651680,1,2533,1695,1,
92331636,1,2526,3509,16, 94662470,3550,16,0,421,
92340,494,1,2564,1655, 94671,2619,3551,16,0,
92351,2566,1660,1,2567, 9468421,1,2509,1648,1,
92361644,1,2606,3510,16, 94692575,1675,1,2579,1690,
92370,494,1,2459,891, 94701,68,3552,19,673,
92381,2563,1650,1,2464, 94711,68,3553,5,15,
9239908,1,2569,3511,16, 94721,2581,3554,16,0,
92400,494,1,2470,3512, 9473671,1,2518,1655,1,
924116,0,494,1,2509, 94742459,910,1,2535,3555,
92421629,1,70,3513,19, 947516,0,671,1,2573,
9243407,1,70,3514,5, 94761664,1,2574,1670,1,
924412,1,2524,1636,1, 94772464,927,1,2577,1685,
92452526,3515,16,0,405, 94781,2578,1680,1,2533,
92461,2564,1655,1,2566, 94791695,1,2470,3556,16,
92471660,1,2567,1644,1, 94800,671,1,2619,3557,
92482606,3516,16,0,405, 948116,0,671,1,2509,
92491,2459,891,1,2563, 94821648,1,2575,1675,1,
92501650,1,2464,908,1, 94832579,1690,1,69,3558,
92512569,3517,16,0,405, 948419,419,1,69,3559,
92521,2470,3518,16,0, 94855,15,1,2581,3560,
9253405,1,2509,1629,1, 948616,0,417,1,2518,
925471,3519,19,493,1, 94871655,1,2459,910,1,
925571,3520,5,12,1, 94882535,3561,16,0,417,
92562524,1636,1,2526,3521, 94891,2573,1664,1,2574,
925716,0,491,1,2564, 94901670,1,2464,927,1,
92581655,1,2566,1660,1, 94912577,1685,1,2578,1680,
92592567,1644,1,2606,3522, 94921,2533,1695,1,2470,
926016,0,491,1,2459, 94933562,16,0,417,1,
9261891,1,2563,1650,1, 94942619,3563,16,0,417,
92622464,908,1,2569,3523, 94951,2509,1648,1,2575,
926316,0,491,1,2470, 94961675,1,2579,1690,1,
92643524,16,0,491,1, 949770,3564,19,513,1,
92652509,1629,1,72,3525, 949870,3565,5,15,1,
926619,490,1,72,3526, 94992581,3566,16,0,511,
92675,12,1,2524,1636, 95001,2518,1655,1,2459,
92681,2526,3527,16,0, 9501910,1,2535,3567,16,
9269488,1,2564,1655,1, 95020,511,1,2573,1664,
92702566,1660,1,2567,1644, 95031,2574,1670,1,2464,
92711,2606,3528,16,0, 9504927,1,2577,1685,1,
9272488,1,2459,891,1, 95052578,1680,1,2533,1695,
92732563,1650,1,2464,908, 95061,2470,3568,16,0,
92741,2569,3529,16,0, 9507511,1,2619,3569,16,
9275488,1,2470,3530,16, 95080,511,1,2509,1648,
92760,488,1,2509,1629, 95091,2575,1675,1,2579,
92771,73,3531,19,487, 95101690,1,71,3570,19,
92781,73,3532,5,12, 9511415,1,71,3571,5,
92791,2524,1636,1,2526, 951215,1,2581,3572,16,
92803533,16,0,485,1, 95130,413,1,2518,1655,
92812564,1655,1,2566,1660, 95141,2459,910,1,2535,
92821,2567,1644,1,2606, 95153573,16,0,413,1,
92833534,16,0,485,1, 95162573,1664,1,2574,1670,
92842459,891,1,2563,1650, 95171,2464,927,1,2577,
92851,2464,908,1,2569, 95181685,1,2578,1680,1,
92863535,16,0,485,1, 95192533,1695,1,2470,3574,
92872470,3536,16,0,485, 952016,0,413,1,2619,
92881,2509,1629,1,74, 95213575,16,0,413,1,
92893537,19,484,1,74, 95222509,1648,1,2575,1675,
92903538,5,12,1,2524, 95231,2579,1690,1,72,
92911636,1,2526,3539,16, 95243576,19,412,1,72,
92920,482,1,2564,1655, 95253577,5,15,1,2581,
92931,2566,1660,1,2567, 95263578,16,0,410,1,
92941644,1,2606,3540,16, 95272518,1655,1,2459,910,
92950,482,1,2459,891, 95281,2535,3579,16,0,
92961,2563,1650,1,2464, 9529410,1,2573,1664,1,
9297908,1,2569,3541,16, 95302574,1670,1,2464,927,
92980,482,1,2470,3542, 95311,2577,1685,1,2578,
929916,0,482,1,2509, 95321680,1,2533,1695,1,
93001629,1,75,3543,19, 95332470,3580,16,0,410,
9301364,1,75,3544,5, 95341,2619,3581,16,0,
930212,1,2524,1636,1, 9535410,1,2509,1648,1,
93032526,3545,16,0,362, 95362575,1675,1,2579,1690,
93041,2564,1655,1,2566, 95371,73,3582,19,503,
93051660,1,2567,1644,1, 95381,73,3583,5,15,
93062606,3546,16,0,362, 95391,2581,3584,16,0,
93071,2459,891,1,2563, 9540501,1,2518,1655,1,
93081650,1,2464,908,1, 95412459,910,1,2535,3585,
93092569,3547,16,0,362, 954216,0,501,1,2573,
93101,2470,3548,16,0, 95431664,1,2574,1670,1,
9311362,1,2509,1629,1, 95442464,927,1,2577,1685,
931276,3549,19,361,1, 95451,2578,1680,1,2533,
931376,3550,5,12,1, 95461695,1,2470,3586,16,
93142524,1636,1,2526,3551, 95470,501,1,2619,3587,
931516,0,359,1,2564, 954816,0,501,1,2509,
93161655,1,2566,1660,1, 95491648,1,2575,1675,1,
93172567,1644,1,2606,3552, 95502579,1690,1,74,3588,
931816,0,359,1,2459, 955119,408,1,74,3589,
9319891,1,2563,1650,1, 95525,15,1,2581,3590,
93202464,908,1,2569,3553, 955316,0,406,1,2518,
932116,0,359,1,2470, 95541655,1,2459,910,1,
93223554,16,0,359,1, 95552535,3591,16,0,406,
93232509,1629,1,77,3555, 95561,2573,1664,1,2574,
932419,398,1,77,3556, 95571670,1,2464,927,1,
93255,12,1,2524,1636, 95582577,1685,1,2578,1680,
93261,2526,3557,16,0, 95591,2533,1695,1,2470,
9327396,1,2564,1655,1, 95603592,16,0,406,1,
93282566,1660,1,2567,1644, 95612619,3593,16,0,406,
93291,2606,3558,16,0, 95621,2509,1648,1,2575,
9330396,1,2459,891,1, 95631675,1,2579,1690,1,
93312563,1650,1,2464,908, 956475,3594,19,365,1,
93321,2569,3559,16,0, 956575,3595,5,15,1,
9333396,1,2470,3560,16, 95662581,3596,16,0,363,
93340,396,1,2509,1629, 95671,2518,1655,1,2459,
93351,78,3561,19,358, 9568910,1,2535,3597,16,
93361,78,3562,5,12, 95690,363,1,2573,1664,
93371,2524,1636,1,2526, 95701,2574,1670,1,2464,
93383563,16,0,356,1, 9571927,1,2577,1685,1,
93392564,1655,1,2566,1660, 95722578,1680,1,2533,1695,
93401,2567,1644,1,2606, 95731,2470,3598,16,0,
93413564,16,0,356,1, 9574363,1,2619,3599,16,
93422459,891,1,2563,1650, 95750,363,1,2509,1648,
93431,2464,908,1,2569, 95761,2575,1675,1,2579,
93443565,16,0,356,1, 95771690,1,76,3600,19,
93452470,3566,16,0,356, 9578362,1,76,3601,5,
93461,2509,1629,1,79, 957915,1,2581,3602,16,
93473567,19,355,1,79, 95800,360,1,2518,1655,
93483568,5,12,1,2524, 95811,2459,910,1,2535,
93491636,1,2526,3569,16, 95823603,16,0,360,1,
93500,353,1,2564,1655, 95832573,1664,1,2574,1670,
93511,2566,1660,1,2567, 95841,2464,927,1,2577,
93521644,1,2606,3570,16, 95851685,1,2578,1680,1,
93530,353,1,2459,891, 95862533,1695,1,2470,3604,
93541,2563,1650,1,2464, 958716,0,360,1,2619,
9355908,1,2569,3571,16, 95883605,16,0,360,1,
93560,353,1,2470,3572, 95892509,1648,1,2575,1675,
935716,0,353,1,2509, 95901,2579,1690,1,77,
93581629,1,80,3573,19, 95913606,19,500,1,77,
9359395,1,80,3574,5, 95923607,5,15,1,2581,
936012,1,2524,1636,1, 95933608,16,0,498,1,
93612526,3575,16,0,393, 95942518,1655,1,2459,910,
93621,2564,1655,1,2566, 95951,2535,3609,16,0,
93631660,1,2567,1644,1, 9596498,1,2573,1664,1,
93642606,3576,16,0,393, 95972574,1670,1,2464,927,
93651,2459,891,1,2563, 95981,2577,1685,1,2578,
93661650,1,2464,908,1, 95991680,1,2533,1695,1,
93672569,3577,16,0,393, 96002470,3610,16,0,498,
93681,2470,3578,16,0, 96011,2619,3611,16,0,
9369393,1,2509,1629,1, 9602498,1,2509,1648,1,
937081,3579,19,477,1, 96032575,1675,1,2579,1690,
937181,3580,5,12,1, 96041,78,3612,19,359,
93722524,1636,1,2526,3581, 96051,78,3613,5,15,
937316,0,475,1,2564, 96061,2581,3614,16,0,
93741655,1,2566,1660,1, 9607357,1,2518,1655,1,
93752567,1644,1,2606,3582, 96082459,910,1,2535,3615,
937616,0,475,1,2459, 960916,0,357,1,2573,
9377891,1,2563,1650,1, 96101664,1,2574,1670,1,
93782464,908,1,2569,3583, 96112464,927,1,2577,1685,
937916,0,475,1,2470, 96121,2578,1680,1,2533,
93803584,16,0,475,1, 96131695,1,2470,3616,16,
93812509,1629,1,82,3585, 96140,357,1,2619,3617,
938219,571,1,82,3586, 961516,0,357,1,2509,
93835,12,1,2524,1636, 96161648,1,2575,1675,1,
93841,2526,3587,16,0, 96172579,1690,1,79,3618,
9385569,1,2564,1655,1, 961819,356,1,79,3619,
93862566,1660,1,2567,1644, 96195,15,1,2581,3620,
93871,2606,3588,16,0, 962016,0,354,1,2518,
9388569,1,2459,891,1, 96211655,1,2459,910,1,
93892563,1650,1,2464,908, 96222535,3621,16,0,354,
93901,2569,3589,16,0, 96231,2573,1664,1,2574,
9391569,1,2470,3590,16, 96241670,1,2464,927,1,
93920,569,1,2509,1629, 96252577,1685,1,2578,1680,
93931,83,3591,19,388, 96261,2533,1695,1,2470,
93941,83,3592,5,12, 96273622,16,0,354,1,
93951,2524,1636,1,2526, 96282619,3623,16,0,354,
93963593,16,0,386,1, 96291,2509,1648,1,2575,
93972564,1655,1,2566,1660, 96301675,1,2579,1690,1,
93981,2567,1644,1,2606, 963180,3624,19,497,1,
93993594,16,0,386,1, 963280,3625,5,15,1,
94002459,891,1,2563,1650, 96332581,3626,16,0,495,
94011,2464,908,1,2569, 96341,2518,1655,1,2459,
94023595,16,0,386,1, 9635910,1,2535,3627,16,
94032470,3596,16,0,386, 96360,495,1,2573,1664,
94041,2509,1629,1,84, 96371,2574,1670,1,2464,
94053597,19,385,1,84, 9638927,1,2577,1685,1,
94063598,5,12,1,2524, 96392578,1680,1,2533,1695,
94071636,1,2526,3599,16, 96401,2470,3628,16,0,
94080,383,1,2564,1655, 9641495,1,2619,3629,16,
94091,2566,1660,1,2567, 96420,495,1,2509,1648,
94101644,1,2606,3600,16, 96431,2575,1675,1,2579,
94110,383,1,2459,891, 96441690,1,81,3630,19,
94121,2563,1650,1,2464, 9645389,1,81,3631,5,
9413908,1,2569,3601,16, 964615,1,2581,3632,16,
94140,383,1,2470,3602, 96470,387,1,2518,1655,
941516,0,383,1,2509, 96481,2459,910,1,2535,
94161629,1,85,3603,19, 96493633,16,0,387,1,
9417370,1,85,3604,5, 96502573,1664,1,2574,1670,
941812,1,2524,1636,1, 96511,2464,927,1,2577,
94192526,3605,16,0,368, 96521685,1,2578,1680,1,
94201,2564,1655,1,2566, 96532533,1695,1,2470,3634,
94211660,1,2567,1644,1, 965416,0,387,1,2619,
94222606,3606,16,0,368, 96553635,16,0,387,1,
94231,2459,891,1,2563, 96562509,1648,1,2575,1675,
94241650,1,2464,908,1, 96571,2579,1690,1,82,
94252569,3607,16,0,368, 96583636,19,494,1,82,
94261,2470,3608,16,0, 96593637,5,15,1,2581,
9427368,1,2509,1629,1, 96603638,16,0,492,1,
942886,3609,19,367,1, 96612518,1655,1,2459,910,
942986,3610,5,12,1, 96621,2535,3639,16,0,
94302524,1636,1,2526,3611, 9663492,1,2573,1664,1,
943116,0,365,1,2564, 96642574,1670,1,2464,927,
94321655,1,2566,1660,1, 96651,2577,1685,1,2578,
94332567,1644,1,2606,3612, 96661680,1,2533,1695,1,
943416,0,365,1,2459, 96672470,3640,16,0,492,
9435891,1,2563,1650,1, 96681,2619,3641,16,0,
94362464,908,1,2569,3613, 9669492,1,2509,1648,1,
943716,0,365,1,2470, 96702575,1675,1,2579,1690,
94383614,16,0,365,1, 96711,83,3642,19,386,
94392509,1629,1,87,3615, 96721,83,3643,5,15,
944019,352,1,87,3616, 96731,2581,3644,16,0,
94415,12,1,2524,1636, 9674384,1,2518,1655,1,
94421,2526,3617,16,0, 96752459,910,1,2535,3645,
9443350,1,2564,1655,1, 967616,0,384,1,2573,
94442566,1660,1,2567,1644, 96771664,1,2574,1670,1,
94451,2606,3618,16,0, 96782464,927,1,2577,1685,
9446350,1,2459,891,1, 96791,2578,1680,1,2533,
94472563,1650,1,2464,908, 96801695,1,2470,3646,16,
94481,2569,3619,16,0, 96810,384,1,2619,3647,
9449350,1,2470,3620,16, 968216,0,384,1,2509,
94500,350,1,2509,1629, 96831648,1,2575,1675,1,
94511,88,3621,19,382, 96842579,1690,1,84,3648,
94521,88,3622,5,12, 968519,383,1,84,3649,
94531,2524,1636,1,2526, 96865,15,1,2581,3650,
94543623,16,0,380,1, 968716,0,381,1,2518,
94552564,1655,1,2566,1660, 96881655,1,2459,910,1,
94561,2567,1644,1,2606, 96892535,3651,16,0,381,
94573624,16,0,380,1, 96901,2573,1664,1,2574,
94582459,891,1,2563,1650, 96911670,1,2464,927,1,
94591,2464,908,1,2569, 96922577,1685,1,2578,1680,
94603625,16,0,380,1, 96931,2533,1695,1,2470,
94612470,3626,16,0,380, 96943652,16,0,381,1,
94621,2509,1629,1,89, 96952619,3653,16,0,381,
94633627,19,376,1,89, 96961,2509,1648,1,2575,
94643628,5,12,1,2524, 96971675,1,2579,1690,1,
94651636,1,2526,3629,16, 969885,3654,19,371,1,
94660,374,1,2564,1655, 969985,3655,5,15,1,
94671,2566,1660,1,2567, 97002581,3656,16,0,369,
94681644,1,2606,3630,16, 97011,2518,1655,1,2459,
94690,374,1,2459,891, 9702910,1,2535,3657,16,
94701,2563,1650,1,2464, 97030,369,1,2573,1664,
9471908,1,2569,3631,16, 97041,2574,1670,1,2464,
94720,374,1,2470,3632, 9705927,1,2577,1685,1,
947316,0,374,1,2509, 97062578,1680,1,2533,1695,
94741629,1,90,3633,19, 97071,2470,3658,16,0,
9475379,1,90,3634,5, 9708369,1,2619,3659,16,
947612,1,2524,1636,1, 97090,369,1,2509,1648,
94772526,3635,16,0,377, 97101,2575,1675,1,2579,
94781,2564,1655,1,2566, 97111690,1,86,3660,19,
94791660,1,2567,1644,1, 9712368,1,86,3661,5,
94802606,3636,16,0,377, 971315,1,2581,3662,16,
94811,2459,891,1,2563, 97140,366,1,2518,1655,
94821650,1,2464,908,1, 97151,2459,910,1,2535,
94832569,3637,16,0,377, 97163663,16,0,366,1,
94841,2470,3638,16,0, 97172573,1664,1,2574,1670,
9485377,1,2509,1629,1, 97181,2464,927,1,2577,
948691,3639,19,373,1, 97191685,1,2578,1680,1,
948791,3640,5,12,1, 97202533,1695,1,2470,3664,
94882524,1636,1,2526,3641, 972116,0,366,1,2619,
948916,0,371,1,2564, 97223665,16,0,366,1,
94901655,1,2566,1660,1, 97232509,1648,1,2575,1675,
94912567,1644,1,2606,3642, 97241,2579,1690,1,87,
949216,0,371,1,2459, 97253666,19,353,1,87,
9493891,1,2563,1650,1, 97263667,5,15,1,2581,
94942464,908,1,2569,3643, 97273668,16,0,351,1,
949516,0,371,1,2470, 97282518,1655,1,2459,910,
94963644,16,0,371,1, 97291,2535,3669,16,0,
94972509,1629,1,92,3645, 9730351,1,2573,1664,1,
949819,133,1,92,3646, 97312574,1670,1,2464,927,
94995,125,1,0,3647, 97321,2577,1685,1,2578,
950016,0,585,1,1, 97331680,1,2533,1695,1,
95011980,1,2,1986,1, 97342470,3670,16,0,351,
95023,1991,1,4,1996, 97351,2619,3671,16,0,
95031,5,2001,1,6, 9736351,1,2509,1648,1,
95042006,1,7,2011,1, 97372575,1675,1,2579,1690,
95058,3648,16,0,131, 97381,88,3672,19,380,
95061,1515,3649,16,0, 97391,88,3673,5,15,
9507174,1,2021,728,1, 97401,2581,3674,16,0,
95082022,3650,16,0,507, 9741378,1,2518,1655,1,
95091,256,3651,16,0, 97422459,910,1,2535,3675,
9510182,1,2025,3652,16, 974316,0,378,1,2573,
95110,511,1,18,3653, 97441664,1,2574,1670,1,
951216,0,138,1,2027, 97452464,927,1,2577,1685,
95133654,16,0,515,1, 97461,2578,1680,1,2533,
95142695,3253,1,2029,735, 97471695,1,2470,3676,16,
95151,2030,741,1,2031, 97480,378,1,2619,3677,
9516746,1,2032,751,1, 974916,0,378,1,2509,
95172033,756,1,277,3655, 97501648,1,2575,1675,1,
951816,0,182,1,2035, 97512579,1690,1,89,3678,
9519762,1,2037,767,1, 975219,374,1,89,3679,
95202039,772,1,32,3656, 97535,15,1,2581,3680,
952116,0,174,1,2041, 975416,0,372,1,2518,
9522778,1,2293,3657,16, 97551655,1,2459,910,1,
95230,182,1,2043,784, 97562535,3681,16,0,372,
95241,2045,789,1,41, 97571,2573,1664,1,2574,
95253658,16,0,182,1, 97581670,1,2464,927,1,
95261297,3659,16,0,174, 97592577,1685,1,2578,1680,
95271,43,3660,16,0, 97601,2533,1695,1,2470,
9528182,1,46,3661,16, 97613682,16,0,372,1,
95290,187,1,1804,3662, 97622619,3683,16,0,372,
953016,0,174,1,299, 97631,2509,1648,1,2575,
95313663,16,0,182,1, 97641675,1,2579,1690,1,
95322725,3211,1,52,3664, 976590,3684,19,377,1,
953316,0,174,1,509, 976690,3685,5,15,1,
95343665,16,0,182,1, 97672581,3686,16,0,375,
95352318,3666,16,0,174, 97681,2518,1655,1,2459,
95361,62,3667,16,0, 9769910,1,2535,3687,16,
9537205,1,65,3668,16, 97700,375,1,2573,1664,
95380,207,1,2075,3669, 97711,2574,1670,1,2464,
953916,0,174,1,1574, 9772927,1,2577,1685,1,
9540809,1,71,3670,16, 97732578,1680,1,2533,1695,
95410,182,1,1775,3671, 97741,2470,3688,16,0,
954216,0,174,1,76, 9775375,1,2619,3689,16,
95433672,16,0,182,1, 97760,375,1,2509,1648,
95441834,3673,16,0,174, 97771,2575,1675,1,2579,
95451,2337,3674,16,0, 97781690,1,91,3690,19,
9546174,1,79,3675,16, 9779491,1,91,3691,5,
95470,182,1,1335,3676, 978015,1,2581,3692,16,
954816,0,174,1,322, 97810,489,1,2518,1655,
95493677,16,0,182,1, 97821,2459,910,1,2535,
955085,3678,16,0,182, 97833693,16,0,489,1,
95511,1261,3679,16,0, 97842573,1664,1,2574,1670,
9552174,1,89,3680,16, 97851,2464,927,1,2577,
95530,182,1,346,3681, 97861685,1,2578,1680,1,
955416,0,182,1,97, 97872533,1695,1,2470,3694,
95553682,16,0,182,1, 978816,0,489,1,2619,
95562106,3683,16,0,174, 97893695,16,0,489,1,
95571,102,3684,16,0, 97902509,1648,1,2575,1675,
9558182,1,1860,831,1, 97911,2579,1690,1,92,
95591803,797,1,2364,837, 97923696,19,133,1,92,
95601,1113,3685,16,0, 97933697,5,126,1,0,
9561167,1,112,3686,16, 97943698,16,0,189,1,
95620,182,1,1117,3687, 97951,2017,1,2,2023,
956316,0,174,1,1873, 97961,3,2028,1,4,
9564845,1,1876,3688,16, 97972033,1,5,2038,1,
95650,174,1,372,3689, 97986,2043,1,7,2048,
956616,0,545,1,374, 97991,8,3699,16,0,
95673690,16,0,547,1, 9800131,1,1515,3700,16,
9568124,3691,16,0,182, 98010,165,1,2686,3701,
95691,376,3692,16,0, 980216,0,173,1,2021,
9570549,1,378,3693,16, 9803747,1,2022,3702,16,
95710,551,1,2136,852, 98040,520,1,256,3703,
95721,381,3694,16,0, 980516,0,173,1,2025,
9573182,1,525,3695,16, 98063704,16,0,524,1,
95740,182,1,137,3696, 980718,3705,16,0,138,
957516,0,182,1,1901, 98081,2027,3706,16,0,
95763697,16,0,174,1, 9809528,1,2029,754,1,
95771153,3698,16,0,174, 98102030,760,1,2031,765,
95781,151,3699,16,0, 98111,2032,770,1,2033,
9579182,1,1407,3700,16, 9812775,1,277,3707,16,
95800,174,1,1659,3701, 98130,173,1,2035,781,
958116,0,174,1,2413, 98141,2037,786,1,2039,
95823702,16,0,174,1, 9815791,1,32,3708,16,
9583406,3703,16,0,182, 98160,165,1,2041,797,
95841,2667,3248,1,1371, 98171,2293,3709,16,0,
95853704,16,0,174,1, 9818173,1,2043,803,1,
95862105,824,1,166,3705, 98192711,3282,1,2045,808,
958716,0,182,1,1622, 98201,41,3710,16,0,
95883706,16,0,182,1, 9821173,1,1297,3711,16,
95891931,870,1,1933,3707, 98220,165,1,43,3712,
959016,0,174,1,431, 982316,0,173,1,1989,
95913708,16,0,182,1, 9824944,1,46,3713,16,
95921585,3709,16,0,182, 98250,178,1,1804,3714,
95931,182,3710,16,0, 982616,0,165,1,299,
9594182,1,1189,3711,16, 98273715,16,0,173,1,
95950,174,1,1443,3712, 982852,3716,16,0,165,
959616,0,174,1,1695, 98291,509,3717,16,0,
95973713,16,0,174,1, 9830173,1,2318,3718,16,
95982198,3714,16,0,174, 98310,165,1,62,3719,
95991,2706,3222,1,2707, 983216,0,196,1,65,
96003715,16,0,585,1, 98333720,16,0,198,1,
96012458,885,1,2459,891, 98342075,3721,16,0,165,
96021,1958,3716,16,0, 98351,1574,828,1,2743,
9603174,1,2462,898,1, 98363272,1,71,3722,16,
96041657,903,1,2464,908, 98370,173,1,1775,3723,
96051,2466,3232,1,459, 983816,0,165,1,76,
96063717,16,0,182,1, 98393724,16,0,173,1,
96072468,3718,16,0,348, 98401834,3725,16,0,165,
96081,447,3719,16,0, 98411,2337,3726,16,0,
9609182,1,199,3720,16, 9842165,1,79,3727,16,
96100,182,1,2726,3217, 98430,173,1,1335,3728,
96111,2727,3238,1,2728, 984416,0,165,1,2512,
96123243,1,2227,917,1, 98453729,16,0,450,1,
96131225,3721,16,0,174, 9846322,3730,16,0,173,
96141,1479,3722,16,0, 98471,85,3731,16,0,
9615174,1,1731,3723,16, 9848173,1,1261,3732,16,
96160,182,1,462,3724, 98490,165,1,89,3733,
961716,0,182,1,1989, 985016,0,173,1,346,
9618925,1,1990,3725,16, 98513734,16,0,173,1,
96190,174,1,236,3726, 985297,3735,16,0,173,
962016,0,182,1,217, 98531,2106,3736,16,0,
96213727,16,0,182,1, 9854165,1,102,3737,16,
96222670,3728,16,0,182, 98550,173,1,1860,850,
96231,1756,3729,16,0, 98561,1803,816,1,2364,
9624174,1,93,3730,19, 9857856,1,1113,3738,16,
9625639,1,93,3731,5, 98580,158,1,112,3739,
962695,1,256,3732,16, 985916,0,173,1,1117,
96270,637,1,1261,3733, 98603740,16,0,165,1,
962816,0,637,1,509, 98611873,864,1,1876,3741,
96293734,16,0,637,1, 986216,0,165,1,372,
96301515,3735,16,0,637, 98633742,16,0,558,1,
96311,2021,728,1,1775, 9864374,3743,16,0,560,
96323736,16,0,637,1, 98651,124,3744,16,0,
96332029,735,1,2030,741, 9866173,1,376,3745,16,
96341,2031,746,1,2032, 98670,562,1,378,3746,
9635751,1,2033,756,1, 986816,0,564,1,2136,
9636277,3737,16,0,637, 9869871,1,381,3747,16,
96371,2035,762,1,2037, 98700,173,1,525,3748,
9638767,1,2039,772,1, 987116,0,173,1,137,
963932,3738,16,0,637, 98723749,16,0,173,1,
96401,2041,778,1,2293, 98731901,3750,16,0,165,
96413739,16,0,637,1, 98741,1153,3751,16,0,
96422043,784,1,2045,789, 9875165,1,151,3752,16,
96431,41,3740,16,0, 98760,173,1,1407,3753,
9644637,1,1297,3741,16, 987716,0,165,1,1659,
96450,637,1,43,3742, 98783754,16,0,165,1,
964616,0,637,1,1803, 98792413,3755,16,0,165,
9647797,1,1804,3743,16, 98801,406,3756,16,0,
96480,637,1,299,3744, 9881173,1,1371,3757,16,
964916,0,637,1,52, 98820,165,1,2105,843,
96503745,16,0,637,1, 98831,166,3758,16,0,
96512318,3746,16,0,637, 9884173,1,1622,3759,16,
96521,62,3747,16,0, 98850,173,1,2683,3291,
9653637,1,2075,3748,16, 98861,1931,889,1,1933,
96540,637,1,1574,809, 98873760,16,0,165,1,
96551,71,3749,16,0, 9888431,3761,16,0,173,
9656637,1,76,3750,16, 98891,1585,3762,16,0,
96570,637,1,1834,3751, 9890173,1,182,3763,16,
965816,0,637,1,2337, 98910,173,1,1189,3764,
96593752,16,0,637,1, 989216,0,165,1,1443,
966079,3753,16,0,637, 98933765,16,0,165,1,
96611,1335,3754,16,0, 98941695,3766,16,0,165,
9662637,1,322,3755,16, 98951,2198,3767,16,0,
96630,637,1,85,3756, 9896165,1,447,3768,16,
966416,0,637,1,89, 98970,173,1,2458,904,
96653757,16,0,637,1, 98981,2459,910,1,1958,
9666346,3758,16,0,637, 98993769,16,0,165,1,
96671,2105,824,1,2106, 99002462,917,1,1657,922,
96683759,16,0,637,1, 99011,2464,927,1,2466,
966997,3760,16,0,637, 99023302,1,459,3770,16,
96701,1860,831,1,2364, 99030,173,1,2468,3771,
9671837,1,102,3761,16, 990416,0,349,1,462,
96720,637,1,112,3762, 99053772,16,0,173,1,
967316,0,637,1,1117, 99062722,3297,1,2723,3773,
96743763,16,0,637,1, 990716,0,189,1,199,
96751873,845,1,1876,3764, 99083774,16,0,173,1,
967616,0,637,1,124, 9909217,3775,16,0,173,
96773765,16,0,637,1, 99101,2227,936,1,1225,
96782136,852,1,381,3766, 99113776,16,0,165,1,
967916,0,637,1,525, 99121479,3777,16,0,165,
96803767,16,0,637,1, 99131,1731,3778,16,0,
9681137,3768,16,0,637, 9914173,1,2741,3261,1,
96821,1901,3769,16,0, 99152742,3267,1,1990,3779,
9683637,1,1153,3770,16, 991616,0,165,1,2744,
96840,637,1,151,3771, 99173277,1,236,3780,16,
968516,0,637,1,1407, 99180,173,1,1756,3781,
96863772,16,0,637,1, 991916,0,165,1,93,
96871659,3773,16,0,637, 99203782,19,652,1,93,
96881,2413,3774,16,0, 99213783,5,95,1,256,
9689637,1,406,3775,16, 99223784,16,0,650,1,
96900,637,1,1371,3776, 99231261,3785,16,0,650,
969116,0,637,1,166, 99241,509,3786,16,0,
96923777,16,0,637,1, 9925650,1,1515,3787,16,
96931622,3778,16,0,637, 99260,650,1,2686,3788,
96941,1931,870,1,1933, 992716,0,650,1,2021,
96953779,16,0,637,1, 9928747,1,1775,3789,16,
9696431,3780,16,0,637, 99290,650,1,2029,754,
96971,1585,3781,16,0, 99301,2030,760,1,2031,
9698637,1,182,3782,16, 9931765,1,2032,770,1,
96990,637,1,1189,3783, 99322033,775,1,277,3790,
970016,0,637,1,1443, 993316,0,650,1,2035,
97013784,16,0,637,1, 9934781,1,2037,786,1,
97021695,3785,16,0,637, 99352039,791,1,32,3791,
97031,2198,3786,16,0, 993616,0,650,1,2041,
9704637,1,447,3787,16, 9937797,1,2293,3792,16,
97050,637,1,2458,885, 99380,650,1,2043,803,
97061,2459,891,1,1958, 99391,2045,808,1,41,
97073788,16,0,637,1, 99403793,16,0,650,1,
97082462,898,1,1657,903, 99411297,3794,16,0,650,
97091,2464,908,1,199, 99421,43,3795,16,0,
97103789,16,0,637,1, 9943650,1,1803,816,1,
9711459,3790,16,0,637, 99441804,3796,16,0,650,
97121,462,3791,16,0, 99451,299,3797,16,0,
9713637,1,217,3792,16, 9946650,1,52,3798,16,
97140,637,1,2227,917, 99470,650,1,2318,3799,
97151,1225,3793,16,0, 994816,0,650,1,62,
9716637,1,1479,3794,16, 99493800,16,0,650,1,
97170,637,1,1731,3795, 99502075,3801,16,0,650,
971816,0,637,1,1989, 99511,1574,828,1,71,
9719925,1,1990,3796,16, 99523802,16,0,650,1,
97200,637,1,236,3797, 995376,3803,16,0,650,
972116,0,637,1,2670, 99541,1834,3804,16,0,
97223798,16,0,637,1, 9955650,1,2337,3805,16,
97231756,3799,16,0,637, 99560,650,1,79,3806,
97241,94,3800,19,636, 995716,0,650,1,1335,
97251,94,3801,5,95, 99583807,16,0,650,1,
97261,256,3802,16,0, 9959322,3808,16,0,650,
9727634,1,1261,3803,16, 99601,85,3809,16,0,
97280,634,1,509,3804, 9961650,1,89,3810,16,
972916,0,634,1,1515, 99620,650,1,346,3811,
97303805,16,0,634,1, 996316,0,650,1,2105,
97312021,728,1,1775,3806, 9964843,1,2106,3812,16,
973216,0,634,1,2029, 99650,650,1,97,3813,
9733735,1,2030,741,1, 996616,0,650,1,1860,
97342031,746,1,2032,751, 9967850,1,2364,856,1,
97351,2033,756,1,277, 9968102,3814,16,0,650,
97363807,16,0,634,1, 99691,112,3815,16,0,
97372035,762,1,2037,767, 9970650,1,1117,3816,16,
97381,2039,772,1,32, 99710,650,1,1873,864,
97393808,16,0,634,1, 99721,1876,3817,16,0,
97402041,778,1,2293,3809, 9973650,1,124,3818,16,
974116,0,634,1,2043, 99740,650,1,2136,871,
9742784,1,2045,789,1, 99751,381,3819,16,0,
974341,3810,16,0,634, 9976650,1,525,3820,16,
97441,1297,3811,16,0, 99770,650,1,137,3821,
9745634,1,43,3812,16, 997816,0,650,1,1901,
97460,634,1,1803,797, 99793822,16,0,650,1,
97471,1804,3813,16,0, 99801153,3823,16,0,650,
9748634,1,299,3814,16, 99811,151,3824,16,0,
97490,634,1,52,3815, 9982650,1,1407,3825,16,
975016,0,634,1,2318, 99830,650,1,1659,3826,
97513816,16,0,634,1, 998416,0,650,1,2413,
975262,3817,16,0,634, 99853827,16,0,650,1,
97531,2075,3818,16,0, 9986406,3828,16,0,650,
9754634,1,1574,809,1, 99871,1371,3829,16,0,
975571,3819,16,0,634, 9988650,1,166,3830,16,
97561,76,3820,16,0, 99890,650,1,1622,3831,
9757634,1,1834,3821,16, 999016,0,650,1,1931,
97580,634,1,2337,3822, 9991889,1,1933,3832,16,
975916,0,634,1,79, 99920,650,1,431,3833,
97603823,16,0,634,1, 999316,0,650,1,1585,
97611335,3824,16,0,634, 99943834,16,0,650,1,
97621,322,3825,16,0, 9995182,3835,16,0,650,
9763634,1,85,3826,16, 99961,1189,3836,16,0,
97640,634,1,89,3827, 9997650,1,1443,3837,16,
976516,0,634,1,346, 99980,650,1,1695,3838,
97663828,16,0,634,1, 999916,0,650,1,2198,
97672105,824,1,2106,3829, 100003839,16,0,650,1,
976816,0,634,1,97, 10001447,3840,16,0,650,
97693830,16,0,634,1, 100021,2458,904,1,2459,
97701860,831,1,2364,837, 10003910,1,1958,3841,16,
97711,102,3831,16,0, 100040,650,1,2462,917,
9772634,1,112,3832,16, 100051,1657,922,1,2464,
97730,634,1,1117,3833, 10006927,1,199,3842,16,
977416,0,634,1,1873, 100070,650,1,459,3843,
9775845,1,1876,3834,16, 1000816,0,650,1,462,
97760,634,1,124,3835, 100093844,16,0,650,1,
977716,0,634,1,2136, 10010217,3845,16,0,650,
9778852,1,381,3836,16, 100111,2227,936,1,1225,
97790,634,1,525,3837, 100123846,16,0,650,1,
978016,0,634,1,137, 100131479,3847,16,0,650,
97813838,16,0,634,1, 100141,1731,3848,16,0,
97821901,3839,16,0,634, 10015650,1,1989,944,1,
97831,1153,3840,16,0, 100161990,3849,16,0,650,
9784634,1,151,3841,16, 100171,236,3850,16,0,
97850,634,1,1407,3842, 10018650,1,1756,3851,16,
978616,0,634,1,1659, 100190,650,1,94,3852,
97873843,16,0,634,1, 1002019,649,1,94,3853,
97882413,3844,16,0,634, 100215,95,1,256,3854,
97891,406,3845,16,0, 1002216,0,647,1,1261,
9790634,1,1371,3846,16, 100233855,16,0,647,1,
97910,634,1,166,3847, 10024509,3856,16,0,647,
979216,0,634,1,1622, 100251,1515,3857,16,0,
97933848,16,0,634,1, 10026647,1,2686,3858,16,
97941931,870,1,1933,3849, 100270,647,1,2021,747,
979516,0,634,1,431, 100281,1775,3859,16,0,
97963850,16,0,634,1, 10029647,1,2029,754,1,
97971585,3851,16,0,634, 100302030,760,1,2031,765,
97981,182,3852,16,0, 100311,2032,770,1,2033,
9799634,1,1189,3853,16, 10032775,1,277,3860,16,
98000,634,1,1443,3854, 100330,647,1,2035,781,
980116,0,634,1,1695, 100341,2037,786,1,2039,
98023855,16,0,634,1, 10035791,1,32,3861,16,
98032198,3856,16,0,634, 100360,647,1,2041,797,
98041,447,3857,16,0, 100371,2293,3862,16,0,
9805634,1,2458,885,1, 10038647,1,2043,803,1,
98062459,891,1,1958,3858, 100392045,808,1,41,3863,
980716,0,634,1,2462, 1004016,0,647,1,1297,
9808898,1,1657,903,1, 100413864,16,0,647,1,
98092464,908,1,199,3859, 1004243,3865,16,0,647,
981016,0,634,1,459, 100431,1803,816,1,1804,
98113860,16,0,634,1, 100443866,16,0,647,1,
9812462,3861,16,0,634, 10045299,3867,16,0,647,
98131,217,3862,16,0, 100461,52,3868,16,0,
9814634,1,2227,917,1, 10047647,1,2318,3869,16,
98151225,3863,16,0,634, 100480,647,1,62,3870,
98161,1479,3864,16,0, 1004916,0,647,1,2075,
9817634,1,1731,3865,16, 100503871,16,0,647,1,
98180,634,1,1989,925, 100511574,828,1,71,3872,
98191,1990,3866,16,0, 1005216,0,647,1,76,
9820634,1,236,3867,16, 100533873,16,0,647,1,
98210,634,1,2670,3868, 100541834,3874,16,0,647,
982216,0,634,1,1756, 100551,2337,3875,16,0,
98233869,16,0,634,1, 10056647,1,79,3876,16,
982495,3870,19,633,1, 100570,647,1,1335,3877,
982595,3871,5,95,1, 1005816,0,647,1,322,
9826256,3872,16,0,631, 100593878,16,0,647,1,
98271,1261,3873,16,0, 1006085,3879,16,0,647,
9828631,1,509,3874,16, 100611,89,3880,16,0,
98290,631,1,1515,3875, 10062647,1,346,3881,16,
983016,0,631,1,2021, 100630,647,1,2105,843,
9831728,1,1775,3876,16, 100641,2106,3882,16,0,
98320,631,1,2029,735, 10065647,1,97,3883,16,
98331,2030,741,1,2031, 100660,647,1,1860,850,
9834746,1,2032,751,1, 100671,2364,856,1,102,
98352033,756,1,277,3877, 100683884,16,0,647,1,
983616,0,631,1,2035, 10069112,3885,16,0,647,
9837762,1,2037,767,1, 100701,1117,3886,16,0,
98382039,772,1,32,3878, 10071647,1,1873,864,1,
983916,0,631,1,2041, 100721876,3887,16,0,647,
9840778,1,2293,3879,16, 100731,124,3888,16,0,
98410,631,1,2043,784, 10074647,1,2136,871,1,
98421,2045,789,1,41, 10075381,3889,16,0,647,
98433880,16,0,631,1, 100761,525,3890,16,0,
98441297,3881,16,0,631, 10077647,1,137,3891,16,
98451,43,3882,16,0, 100780,647,1,1901,3892,
9846631,1,1803,797,1, 1007916,0,647,1,1153,
98471804,3883,16,0,631, 100803893,16,0,647,1,
98481,299,3884,16,0, 10081151,3894,16,0,647,
9849631,1,52,3885,16, 100821,1407,3895,16,0,
98500,631,1,2318,3886, 10083647,1,1659,3896,16,
985116,0,631,1,62, 100840,647,1,2413,3897,
98523887,16,0,631,1, 1008516,0,647,1,406,
98532075,3888,16,0,631, 100863898,16,0,647,1,
98541,1574,809,1,71, 100871371,3899,16,0,647,
98553889,16,0,631,1, 100881,166,3900,16,0,
985676,3890,16,0,631, 10089647,1,1622,3901,16,
98571,1834,3891,16,0, 100900,647,1,1931,889,
9858631,1,2337,3892,16, 100911,1933,3902,16,0,
98590,631,1,79,3893, 10092647,1,431,3903,16,
986016,0,631,1,1335, 100930,647,1,1585,3904,
98613894,16,0,631,1, 1009416,0,647,1,182,
9862322,3895,16,0,631, 100953905,16,0,647,1,
98631,85,3896,16,0, 100961189,3906,16,0,647,
9864631,1,89,3897,16, 100971,1443,3907,16,0,
98650,631,1,346,3898, 10098647,1,1695,3908,16,
986616,0,631,1,2105, 100990,647,1,2198,3909,
9867824,1,2106,3899,16, 1010016,0,647,1,447,
98680,631,1,97,3900, 101013910,16,0,647,1,
986916,0,631,1,1860, 101022458,904,1,2459,910,
9870831,1,2364,837,1, 101031,1958,3911,16,0,
9871102,3901,16,0,631, 10104647,1,2462,917,1,
98721,112,3902,16,0, 101051657,922,1,2464,927,
9873631,1,1117,3903,16, 101061,199,3912,16,0,
98740,631,1,1873,845, 10107647,1,459,3913,16,
98751,1876,3904,16,0, 101080,647,1,462,3914,
9876631,1,124,3905,16, 1010916,0,647,1,217,
98770,631,1,2136,852, 101103915,16,0,647,1,
98781,381,3906,16,0, 101112227,936,1,1225,3916,
9879631,1,525,3907,16, 1011216,0,647,1,1479,
98800,631,1,137,3908, 101133917,16,0,647,1,
988116,0,631,1,1901, 101141731,3918,16,0,647,
98823909,16,0,631,1, 101151,1989,944,1,1990,
98831153,3910,16,0,631, 101163919,16,0,647,1,
98841,151,3911,16,0, 10117236,3920,16,0,647,
9885631,1,1407,3912,16, 101181,1756,3921,16,0,
98860,631,1,1659,3913, 10119647,1,95,3922,19,
988716,0,631,1,2413, 10120646,1,95,3923,5,
98883914,16,0,631,1, 1012195,1,256,3924,16,
9889406,3915,16,0,631, 101220,644,1,1261,3925,
98901,1371,3916,16,0, 1012316,0,644,1,509,
9891631,1,166,3917,16, 101243926,16,0,644,1,
98920,631,1,1622,3918, 101251515,3927,16,0,644,
989316,0,631,1,1931, 101261,2686,3928,16,0,
9894870,1,1933,3919,16, 10127644,1,2021,747,1,
98950,631,1,431,3920, 101281775,3929,16,0,644,
989616,0,631,1,1585, 101291,2029,754,1,2030,
98973921,16,0,631,1, 10130760,1,2031,765,1,
9898182,3922,16,0,631, 101312032,770,1,2033,775,
98991,1189,3923,16,0, 101321,277,3930,16,0,
9900631,1,1443,3924,16, 10133644,1,2035,781,1,
99010,631,1,1695,3925, 101342037,786,1,2039,791,
990216,0,631,1,2198, 101351,32,3931,16,0,
99033926,16,0,631,1, 10136644,1,2041,797,1,
9904447,3927,16,0,631, 101372293,3932,16,0,644,
99051,2458,885,1,2459, 101381,2043,803,1,2045,
9906891,1,1958,3928,16, 10139808,1,41,3933,16,
99070,631,1,2462,898, 101400,644,1,1297,3934,
99081,1657,903,1,2464, 1014116,0,644,1,43,
9909908,1,199,3929,16, 101423935,16,0,644,1,
99100,631,1,459,3930, 101431803,816,1,1804,3936,
991116,0,631,1,462, 1014416,0,644,1,299,
99123931,16,0,631,1, 101453937,16,0,644,1,
9913217,3932,16,0,631, 1014652,3938,16,0,644,
99141,2227,917,1,1225, 101471,2318,3939,16,0,
99153933,16,0,631,1, 10148644,1,62,3940,16,
99161479,3934,16,0,631, 101490,644,1,2075,3941,
99171,1731,3935,16,0, 1015016,0,644,1,1574,
9918631,1,1989,925,1, 10151828,1,71,3942,16,
99191990,3936,16,0,631, 101520,644,1,76,3943,
99201,236,3937,16,0, 1015316,0,644,1,1834,
9921631,1,2670,3938,16, 101543944,16,0,644,1,
99220,631,1,1756,3939, 101552337,3945,16,0,644,
992316,0,631,1,96, 101561,79,3946,16,0,
99243940,19,103,1,96, 10157644,1,1335,3947,16,
99253941,5,1,1,0, 101580,644,1,322,3948,
99263942,16,0,104,1, 1015916,0,644,1,85,
992797,3943,19,240,1, 101603949,16,0,644,1,
992897,3944,5,1,1, 1016189,3950,16,0,644,
99290,3945,16,0,238, 101621,346,3951,16,0,
99301,98,3946,19,649, 10163644,1,2105,843,1,
99311,98,3947,5,2, 101642106,3952,16,0,644,
99321,0,3948,16,0, 101651,97,3953,16,0,
9933651,1,2707,3949,16, 10166644,1,1860,850,1,
99340,647,1,99,3950, 101672364,856,1,102,3954,
993519,154,1,99,3951, 1016816,0,644,1,112,
99365,2,1,0,3952, 101693955,16,0,644,1,
993716,0,152,1,2707, 101701117,3956,16,0,644,
99383953,16,0,646,1, 101711,1873,864,1,1876,
9939100,3954,19,580,1, 101723957,16,0,644,1,
9940100,3955,5,2,1, 10173124,3958,16,0,644,
99410,3956,16,0,578, 101741,2136,871,1,381,
99421,2707,3957,16,0, 101753959,16,0,644,1,
9943644,1,101,3958,19, 10176525,3960,16,0,644,
9944166,1,101,3959,5, 101771,137,3961,16,0,
99454,1,0,3960,16, 10178644,1,1901,3962,16,
99460,584,1,2707,3961, 101790,644,1,1153,3963,
994716,0,584,1,2718, 1018016,0,644,1,151,
99483962,16,0,164,1, 101813964,16,0,644,1,
99492648,3963,16,0,164, 101821407,3965,16,0,644,
99501,102,3964,19,455, 101831,1659,3966,16,0,
99511,102,3965,5,2, 10184644,1,2413,3967,16,
99521,2470,3966,16,0, 101850,644,1,406,3968,
9953453,1,2569,3967,16, 1018616,0,644,1,1371,
99540,563,1,103,3968, 101873969,16,0,644,1,
995519,577,1,103,3969, 10188166,3970,16,0,644,
99565,4,1,2470,3970, 101891,1622,3971,16,0,
995716,0,581,1,2526, 10190644,1,1931,889,1,
99583971,16,0,575,1, 101911933,3972,16,0,644,
99592569,3972,16,0,581, 101921,431,3973,16,0,
99601,2606,3973,16,0, 10193644,1,1585,3974,16,
9961575,1,104,3974,19, 101940,644,1,182,3975,
9962481,1,104,3975,5, 1019516,0,644,1,1189,
99634,1,2470,3976,16, 101963976,16,0,644,1,
99640,479,1,2526,3977, 101971443,3977,16,0,644,
996516,0,650,1,2569, 101981,1695,3978,16,0,
99663978,16,0,479,1, 10199644,1,2198,3979,16,
99672606,3979,16,0,650, 102000,644,1,447,3980,
99681,105,3980,19,141, 1020116,0,644,1,2458,
99691,105,3981,5,3, 10202904,1,2459,910,1,
99701,2511,3982,16,0, 102031958,3981,16,0,644,
9971607,1,2654,3983,16, 102041,2462,917,1,1657,
99720,669,1,10,3984, 10205922,1,2464,927,1,
997316,0,139,1,106, 10206199,3982,16,0,644,
99743985,19,157,1,106, 102071,459,3983,16,0,
99753986,5,17,1,0, 10208644,1,462,3984,16,
99763987,16,0,198,1, 102090,644,1,217,3985,
99772075,3988,16,0,658, 1021016,0,644,1,2227,
99781,2337,3989,16,0, 10211936,1,1225,3986,16,
9979658,1,2413,3990,16, 102120,644,1,1479,3987,
99800,658,1,10,3991, 1021316,0,644,1,1731,
998116,0,344,1,2511, 102143988,16,0,644,1,
99823992,16,0,344,1, 102151989,944,1,1990,3989,
99831901,3993,16,0,658, 1021616,0,644,1,236,
99841,2198,3994,16,0, 102173990,16,0,644,1,
9985658,1,2707,3995,16, 102181756,3991,16,0,644,
99860,198,1,21,3996, 102191,96,3992,19,103,
998716,0,155,1,2106, 102201,96,3993,5,1,
99883997,16,0,658,1, 102211,0,3994,16,0,
99892654,3998,16,0,344, 10222104,1,97,3995,19,
99901,1804,3999,16,0, 10223662,1,97,3996,5,
9991658,1,1990,4000,16, 102241,1,0,3997,16,
99920,658,1,32,4001, 102250,660,1,98,3998,
999316,0,658,1,1958, 1022619,258,1,98,3999,
99944002,16,0,658,1, 102275,2,1,0,4000,
99951775,4003,16,0,658, 1022816,0,332,1,2723,
99961,107,4004,19,130, 102294001,16,0,256,1,
99971,107,4005,5,18, 1023099,4002,19,331,1,
99981,0,4006,16,0, 1023199,4003,5,2,1,
9999128,1,2075,4007,16, 102320,4004,16,0,329,
100000,137,1,2337,4008, 102331,2723,4005,16,0,
1000116,0,137,1,2413, 10234675,1,100,4006,19,
100024009,16,0,137,1, 10235251,1,100,4007,5,
1000310,4010,16,0,137, 102362,1,0,4008,16,
100041,2511,4011,16,0, 102370,685,1,2723,4009,
10005137,1,2198,4012,16, 1023816,0,249,1,101,
100060,137,1,1901,4013, 102394010,19,611,1,101,
1000716,0,137,1,52, 102404011,5,4,1,0,
100084014,16,0,203,1, 102414012,16,0,609,1,
100092707,4015,16,0,128, 102422723,4013,16,0,609,
100101,21,4016,16,0, 102431,2734,4014,16,0,
10011137,1,2106,4017,16, 10244686,1,2664,4015,16,
100120,137,1,2654,4018, 102450,686,1,102,4016,
1001316,0,137,1,1804, 1024619,471,1,102,4017,
100144019,16,0,137,1, 102475,2,1,2470,4018,
100151990,4020,16,0,137, 1024816,0,469,1,2581,
100161,32,4021,16,0, 102494019,16,0,575,1,
10017137,1,1958,4022,16, 10250103,4020,19,510,1,
100180,137,1,1775,4023, 10251103,4021,5,4,1,
1001916,0,137,1,108, 102522619,4022,16,0,508,
100204024,19,446,1,108, 102531,2535,4023,16,0,
100214025,5,4,1,2470, 10254508,1,2470,4024,16,
100224026,16,0,444,1, 102550,600,1,2581,4025,
100232526,4027,16,0,444, 1025616,0,600,1,104,
100241,2569,4028,16,0, 102574026,19,593,1,104,
10025444,1,2606,4029,16, 102584027,5,4,1,2619,
100260,444,1,109,4030, 102594028,16,0,591,1,
1002719,668,1,109,4031, 102602535,4029,16,0,591,
100285,4,1,2470,4032, 102611,2470,4030,16,0,
1002916,0,666,1,2526, 10262599,1,2581,4031,16,
100304033,16,0,666,1, 102630,599,1,105,4032,
100312569,4034,16,0,666, 1026419,516,1,105,4033,
100321,2606,4035,16,0, 102655,4,1,2619,4034,
10033666,1,110,4036,19, 1026616,0,590,1,2535,
10034343,1,110,4037,5, 102674035,16,0,590,1,
1003515,1,2665,4038,16, 102682470,4036,16,0,514,
100360,671,1,2075,4039, 102691,2581,4037,16,0,
1003716,0,516,1,2337, 10270514,1,106,4038,19,
100384040,16,0,516,1, 10271141,1,106,4039,5,
100392507,4041,16,0,443, 102723,1,2520,4040,16,
100401,2413,4042,16,0, 102730,466,1,2670,4041,
10041516,1,1901,4043,16, 1027416,0,618,1,10,
100420,516,1,2198,4044, 102754042,16,0,139,1,
1004316,0,516,1,2106, 10276107,4043,19,319,1,
100444045,16,0,516,1, 10277107,4044,5,1,1,
100452522,4046,16,0,452, 102782511,4045,16,0,317,
100461,1804,4047,16,0, 102791,108,4046,19,151,
10047516,1,1990,4048,16, 102801,108,4047,5,17,
100480,516,1,31,4049, 102811,0,4048,16,0,
1004916,0,341,1,32, 10282624,1,2075,4049,16,
100504050,16,0,516,1, 102830,668,1,2520,4050,
100511958,4051,16,0,516, 1028416,0,345,1,2337,
100521,1775,4052,16,0, 102854051,16,0,668,1,
10053516,1,111,4053,19, 102862413,4052,16,0,668,
10054311,1,111,4054,5, 102871,10,4053,16,0,
100551,1,32,4055,16, 10288345,1,2198,4054,16,
100560,309,1,112,4056, 102890,668,1,1901,4055,
1005719,270,1,112,4057, 1029016,0,668,1,2723,
100585,11,1,2075,4058, 102914056,16,0,624,1,
1005916,0,592,1,2337, 102922670,4057,16,0,345,
100604059,16,0,274,1, 102931,21,4058,16,0,
100612413,4060,16,0,461, 10294149,1,2106,4059,16,
100621,1901,4061,16,0, 102950,668,1,1804,4060,
10063399,1,2198,4062,16, 1029616,0,668,1,1990,
100640,327,1,2106,4063, 102974061,16,0,668,1,
1006516,0,623,1,1804, 1029832,4062,16,0,668,
100664064,16,0,293,1, 102991,1958,4063,16,0,
100671990,4065,16,0,504, 10300668,1,1775,4064,16,
100681,32,4066,16,0, 103010,668,1,109,4065,
10069337,1,1958,4067,16, 1030219,453,1,109,4066,
100700,464,1,1775,4068, 103035,1,1,2511,4067,
1007116,0,268,1,113, 1030416,0,451,1,110,
100724069,19,598,1,113, 103054068,19,130,1,110,
100734070,5,11,1,2075, 103064069,5,18,1,0,
100744071,16,0,596,1, 103074070,16,0,128,1,
100752337,4072,16,0,596, 103082075,4071,16,0,137,
100761,2413,4073,16,0, 103091,2520,4072,16,0,
10077596,1,1901,4074,16, 10310137,1,2337,4073,16,
100780,596,1,2198,4075, 103110,137,1,2413,4074,
1007916,0,596,1,2106, 1031216,0,137,1,10,
100804076,16,0,596,1, 103134075,16,0,137,1,
100811804,4077,16,0,596, 103142198,4076,16,0,137,
100821,1990,4078,16,0, 103151,1901,4077,16,0,
10083596,1,32,4079,16, 10316137,1,52,4078,16,
100840,596,1,1958,4080, 103170,194,1,2670,4079,
1008516,0,596,1,1775, 1031816,0,137,1,21,
100864081,16,0,596,1, 103194080,16,0,137,1,
10087114,4082,19,654,1, 103202106,4081,16,0,137,
10088114,4083,5,11,1, 103211,1804,4082,16,0,
100892075,4084,16,0,652, 10322137,1,1990,4083,16,
100901,2337,4085,16,0, 103230,137,1,2723,4084,
10091652,1,2413,4086,16, 1032416,0,128,1,32,
100920,652,1,1901,4087, 103254085,16,0,137,1,
1009316,0,652,1,2198, 103261958,4086,16,0,137,
100944088,16,0,652,1, 103271,1775,4087,16,0,
100952106,4089,16,0,652, 10328137,1,111,4088,19,
100961,1804,4090,16,0, 10329459,1,111,4089,5,
10097652,1,1990,4091,16, 103304,1,2619,4090,16,
100980,652,1,32,4092, 103310,457,1,2535,4091,
1009916,0,652,1,1958, 1033216,0,457,1,2470,
101004093,16,0,652,1, 103334092,16,0,457,1,
101011775,4094,16,0,652, 103342581,4093,16,0,457,
101021,115,4095,19,170, 103351,112,4094,19,447,
101031,115,4096,5,31, 103361,112,4095,5,4,
101041,1901,4097,16,0, 103371,2619,4096,16,0,
10105657,1,1479,4098,16, 10338445,1,2535,4097,16,
101060,561,1,2075,4099, 103390,445,1,2470,4098,
1010716,0,657,1,1695, 1034016,0,445,1,2581,
101084100,16,0,199,1, 103414099,16,0,445,1,
101091756,4101,16,0,197, 10342113,4100,19,681,1,
101101,2413,4102,16,0, 10343113,4101,5,4,1,
10111657,1,2198,4103,16, 103442619,4102,16,0,679,
101120,657,1,1876,4104, 103451,2535,4103,16,0,
1011316,0,673,1,1659, 10346679,1,2470,4104,16,
101144105,16,0,197,1, 103470,679,1,2581,4105,
101151443,4106,16,0,532, 1034816,0,679,1,114,
101161,1117,4107,16,0, 103494106,19,344,1,114,
10117168,1,1990,4108,16, 103504107,5,16,1,2516,
101180,657,1,1189,4109, 103514108,16,0,456,1,
1011916,0,250,1,1775, 103522075,4109,16,0,529,
101204110,16,0,657,1, 103531,2337,4110,16,0,
1012132,4111,16,0,657, 10354529,1,2507,4111,16,
101221,2106,4112,16,0, 103550,444,1,2413,4112,
10123657,1,1515,4113,16,
101240,594,1,2337,4114,
1012516,0,657,1,52,
101264115,16,0,608,1,
101271804,4116,16,0,657,
101281,1261,4117,16,0,
10129305,1,1153,4118,16,
101300,257,1,1225,4119,
1013116,0,283,1,1335,
101324120,16,0,459,1,
101331933,4121,16,0,564,
101341,1834,4122,16,0,
10135321,1,1297,4123,16,
101360,331,1,1407,4124,
1013716,0,582,1,2318,
101384125,16,0,197,1,
101391958,4126,16,0,657,
101401,1371,4127,16,0,
10141449,1,116,4128,19,
10142541,1,116,4129,5,
1014311,1,2075,4130,16,
101440,539,1,2337,4131,
1014516,0,539,1,2413,
101464132,16,0,539,1,
101471901,4133,16,0,539,
101481,2198,4134,16,0,
10149539,1,2106,4135,16,
101500,539,1,1804,4136,
1015116,0,539,1,1990,
101524137,16,0,539,1,
1015332,4138,16,0,539,
101541,1958,4139,16,0,
10155539,1,1775,4140,16,
101560,539,1,117,4141,
1015719,537,1,117,4142,
101585,11,1,2075,4143,
1015916,0,535,1,2337,
101604144,16,0,535,1,
101612413,4145,16,0,535,
101621,1901,4146,16,0,
10163535,1,2198,4147,16,
101640,535,1,2106,4148,
1016516,0,535,1,1804,
101664149,16,0,535,1,
101671990,4150,16,0,535,
101681,32,4151,16,0,
10169535,1,1958,4152,16,
101700,535,1,1775,4153,
1017116,0,535,1,118,
101724154,19,590,1,118,
101734155,5,11,1,2075,
101744156,16,0,588,1,
101752337,4157,16,0,588,
101761,2413,4158,16,0,
10177588,1,1901,4159,16,
101780,588,1,2198,4160,
1017916,0,588,1,2106,
101804161,16,0,588,1,
101811804,4162,16,0,588,
101821,1990,4163,16,0,
10183588,1,32,4164,16,
101840,588,1,1958,4165,
1018516,0,588,1,1775,
101864166,16,0,588,1,
10187119,4167,19,531,1,
10188119,4168,5,11,1,
101892075,4169,16,0,529,
101901,2337,4170,16,0,
10191529,1,2413,4171,16,
101920,529,1,1901,4172,
1019316,0,529,1,2198, 1035616,0,529,1,2198,
101944173,16,0,529,1, 103574113,16,0,529,1,
101952106,4174,16,0,529, 103581901,4114,16,0,529,
101961,1804,4175,16,0, 103591,2531,4115,16,0,
10197529,1,1990,4176,16, 10360573,1,2681,4116,16,
101980,529,1,32,4177, 103610,694,1,2106,4117,
1019916,0,529,1,1958, 1036216,0,529,1,1804,
102004178,16,0,529,1, 103634118,16,0,529,1,
102011775,4179,16,0,529, 103641990,4119,16,0,529,
102021,120,4180,19,528, 103651,31,4120,16,0,
102031,120,4181,5,11, 10366342,1,32,4121,16,
102041,2075,4182,16,0, 103670,529,1,1958,4122,
10205526,1,2337,4183,16, 1036816,0,529,1,1775,
102060,526,1,2413,4184, 103694123,16,0,529,1,
1020716,0,526,1,1901, 10370115,4124,19,301,1,
102084185,16,0,526,1, 10371115,4125,5,1,1,
102092198,4186,16,0,526, 1037232,4126,16,0,299,
102101,2106,4187,16,0, 103731,116,4127,19,261,
10211526,1,1804,4188,16, 103741,116,4128,5,11,
102120,526,1,1990,4189, 103751,2075,4129,16,0,
1021316,0,526,1,32, 10376601,1,2337,4130,16,
102144190,16,0,526,1, 103770,265,1,2413,4131,
102151958,4191,16,0,526, 1037816,0,472,1,1901,
102161,1775,4192,16,0, 103794132,16,0,400,1,
10217526,1,121,4193,19, 103802198,4133,16,0,321,
10218525,1,121,4194,5, 103811,2106,4134,16,0,
1021911,1,2075,4195,16, 10382637,1,1804,4135,16,
102200,523,1,2337,4196, 103830,284,1,1990,4136,
1022116,0,523,1,2413, 1038416,0,517,1,32,
102224197,16,0,523,1, 103854137,16,0,338,1,
102231901,4198,16,0,523, 103861958,4138,16,0,475,
102241,2198,4199,16,0, 103871,1775,4139,16,0,
10225523,1,2106,4200,16, 10388259,1,117,4140,19,
102260,523,1,1804,4201, 10389607,1,117,4141,5,
1022716,0,523,1,1990, 1039011,1,2075,4142,16,
102284202,16,0,523,1, 103910,605,1,2337,4143,
1022932,4203,16,0,523, 1039216,0,605,1,2413,
102301,1958,4204,16,0, 103934144,16,0,605,1,
10231523,1,1775,4205,16, 103941901,4145,16,0,605,
102320,523,1,122,4206, 103951,2198,4146,16,0,
1023319,522,1,122,4207, 10396605,1,2106,4147,16,
102345,11,1,2075,4208, 103970,605,1,1804,4148,
1023516,0,520,1,2337, 1039816,0,605,1,1990,
102364209,16,0,520,1, 103994149,16,0,605,1,
102372413,4210,16,0,520, 1040032,4150,16,0,605,
102381,1901,4211,16,0, 104011,1958,4151,16,0,
10239520,1,2198,4212,16, 10402605,1,1775,4152,16,
102400,520,1,2106,4213, 104030,605,1,118,4153,
1024116,0,520,1,1804, 1040419,665,1,118,4154,
102424214,16,0,520,1, 104055,11,1,2075,4155,
102431990,4215,16,0,520, 1040616,0,663,1,2337,
102441,32,4216,16,0, 104074156,16,0,663,1,
10245520,1,1958,4217,16, 104082413,4157,16,0,663,
102460,520,1,1775,4218, 104091,1901,4158,16,0,
1024716,0,520,1,123, 10410663,1,2198,4159,16,
102484219,19,519,1,123, 104110,663,1,2106,4160,
102494220,5,11,1,2075, 1041216,0,663,1,1804,
102504221,16,0,517,1, 104134161,16,0,663,1,
102512337,4222,16,0,517, 104141990,4162,16,0,663,
102521,2413,4223,16,0, 104151,32,4163,16,0,
10253517,1,1901,4224,16, 10416663,1,1958,4164,16,
102540,517,1,2198,4225, 104170,663,1,1775,4165,
1025516,0,517,1,2106, 1041816,0,663,1,119,
102564226,16,0,517,1, 104194166,19,161,1,119,
102571804,4227,16,0,517, 104204167,5,31,1,1901,
102581,1990,4228,16,0, 104214168,16,0,667,1,
10259517,1,32,4229,16, 104221479,4169,16,0,576,
102600,517,1,1958,4230, 104231,2075,4170,16,0,
1026116,0,517,1,1775, 10424667,1,1695,4171,16,
102624231,16,0,517,1, 104250,190,1,1756,4172,
10263124,4232,19,147,1, 1042616,0,188,1,2413,
10264124,4233,5,3,1, 104274173,16,0,667,1,
102651756,4234,16,0,292, 104282198,4174,16,0,667,
102661,2318,4235,16,0, 104291,1876,4175,16,0,
10267304,1,1659,4236,16, 10430688,1,1659,4176,16,
102680,145,1,125,4237, 104310,188,1,1443,4177,
1026919,558,1,125,4238, 1043216,0,545,1,1117,
102705,68,1,1901,4239, 104334178,16,0,159,1,
1027116,0,556,1,1479, 104341990,4179,16,0,667,
102724240,16,0,556,1, 104351,1189,4180,16,0,
10273112,4241,16,0,556, 10436238,1,1775,4181,16,
102741,2293,4242,16,0, 104370,667,1,32,4182,
10275556,1,1804,4243,16, 1043816,0,667,1,2106,
102760,556,1,431,4244, 104394183,16,0,667,1,
1027716,0,556,1,1443, 104401515,4184,16,0,603,
102784245,16,0,556,1, 104411,2337,4185,16,0,
102791756,4246,16,0,556, 10442667,1,52,4186,16,
102801,124,4247,16,0, 104430,620,1,1804,4187,
10281556,1,525,4248,16, 1044416,0,667,1,1261,
102820,556,1,236,4249, 104454188,16,0,295,1,
1028316,0,556,1,346, 104461153,4189,16,0,245,
102844250,16,0,556,1, 104471,1225,4190,16,0,
102851876,4251,16,0,556, 10448274,1,1335,4191,16,
102861,1659,4252,16,0, 104490,465,1,1933,4192,
10287556,1,1225,4253,16, 1045016,0,578,1,1834,
102880,556,1,1117,4254, 104514193,16,0,311,1,
1028916,0,556,1,137, 104521297,4194,16,0,328,
102904255,16,0,556,1, 104531,1407,4195,16,0,
102912318,4256,16,0,556, 10454589,1,2318,4196,16,
102921,2670,4257,16,0, 104550,188,1,1958,4197,
10293556,1,1775,4258,16, 1045616,0,667,1,1371,
102940,556,1,32,4259, 104574198,16,0,460,1,
1029516,0,556,1,1407, 10458120,4199,19,554,1,
102964260,16,0,556,1, 10459120,4200,5,11,1,
10297256,4261,16,0,556, 104602075,4201,16,0,552,
102981,459,4262,16,0, 104611,2337,4202,16,0,
10299556,1,406,4263,16, 10462552,1,2413,4203,16,
103000,556,1,41,4264, 104630,552,1,1901,4204,
1030116,0,556,1,151, 1046416,0,552,1,2198,
103024265,16,0,556,1, 104654205,16,0,552,1,
1030343,4266,16,0,556, 104662106,4206,16,0,552,
103041,1585,4267,16,0, 104671,1804,4207,16,0,
10305556,1,1990,4268,16, 10468552,1,1990,4208,16,
103060,556,1,2337,4269, 104690,552,1,32,4209,
1030716,0,556,1,509, 1047016,0,552,1,1958,
103084270,16,0,556,1, 104714210,16,0,552,1,
1030952,4271,16,0,556, 104721775,4211,16,0,552,
103101,381,4272,16,0, 104731,121,4212,19,550,
10311556,1,447,4273,16, 104741,121,4213,5,11,
103120,556,1,166,4274, 104751,2075,4214,16,0,
1031316,0,556,1,462, 10476548,1,2337,4215,16,
103144275,16,0,556,1, 104770,548,1,2413,4216,
10315277,4276,16,0,556, 1047816,0,548,1,1901,
103161,1695,4277,16,0, 104794217,16,0,548,1,
10317556,1,62,4278,16, 104802198,4218,16,0,548,
103180,603,1,1153,4279, 104811,2106,4219,16,0,
1031916,0,556,1,2106, 10482548,1,1804,4220,16,
103204280,16,0,556,1, 104830,548,1,1990,4221,
103211335,4281,16,0,556, 1048416,0,548,1,32,
103221,71,4282,16,0, 104854222,16,0,548,1,
10323556,1,182,4283,16, 104861958,4223,16,0,548,
103240,556,1,76,4284, 104871,1775,4224,16,0,
1032516,0,556,1,79, 10488548,1,122,4225,19,
103264285,16,0,556,1, 10489597,1,122,4226,5,
103271933,4286,16,0,556, 1049011,1,2075,4227,16,
103281,299,4287,16,0, 104910,595,1,2337,4228,
10329556,1,85,4288,16, 1049216,0,595,1,2413,
103300,556,1,1515,4289, 104934229,16,0,595,1,
1033116,0,556,1,2198, 104941901,4230,16,0,595,
103324290,16,0,556,1, 104951,2198,4231,16,0,
1033389,4291,16,0,556, 10496595,1,2106,4232,16,
103341,1834,4292,16,0, 104970,595,1,1804,4233,
10335556,1,1622,4293,16, 1049816,0,595,1,1990,
103360,556,1,2413,4294, 104994234,16,0,595,1,
1033716,0,556,1,2075, 1050032,4235,16,0,595,
103384295,16,0,556,1, 105011,1958,4236,16,0,
103391731,4296,16,0,556, 10502595,1,1775,4237,16,
103401,97,4297,16,0, 105030,595,1,123,4238,
10341556,1,1297,4298,16, 1050419,544,1,123,4239,
103420,556,1,1189,4299, 105055,11,1,2075,4240,
1034316,0,556,1,102, 1050616,0,542,1,2337,
103444300,16,0,556,1, 105074241,16,0,542,1,
103451261,4301,16,0,556, 105082413,4242,16,0,542,
103461,322,4302,16,0, 105091,1901,4243,16,0,
10347556,1,1958,4303,16, 10510542,1,2198,4244,16,
103480,556,1,199,4304, 105110,542,1,2106,4245,
1034916,0,556,1,1371, 1051216,0,542,1,1804,
103504305,16,0,556,1, 105134246,16,0,542,1,
10351217,4306,16,0,556, 105141990,4247,16,0,542,
103521,126,4307,19,618, 105151,32,4248,16,0,
103531,126,4308,5,2, 10516542,1,1958,4249,16,
103541,459,4309,16,0, 105170,542,1,1775,4250,
10355616,1,41,4310,16, 1051816,0,542,1,124,
103560,676,1,127,4311, 105194251,19,541,1,124,
1035719,622,1,127,4312, 105204252,5,11,1,2075,
103585,3,1,462,4313, 105214253,16,0,539,1,
1035916,0,620,1,459, 105222337,4254,16,0,539,
103604314,16,0,643,1, 105231,2413,4255,16,0,
1036141,4315,16,0,643, 10524539,1,1901,4256,16,
103621,128,4316,19,4317, 105250,539,1,2198,4257,
103634,36,69,0,120, 1052616,0,539,1,2106,
103640,112,0,114,0, 105274258,16,0,539,1,
10365101,0,115,0,115, 105281804,4259,16,0,539,
103660,105,0,111,0, 105291,1990,4260,16,0,
10367110,0,65,0,114, 10530539,1,32,4261,16,
103680,103,0,117,0, 105310,539,1,1958,4262,
10369109,0,101,0,110, 1053216,0,539,1,1775,
103700,116,0,1,128, 105334263,16,0,539,1,
103714312,1,129,4318,19, 10534125,4264,19,538,1,
10372554,1,129,4319,5, 10535125,4265,5,11,1,
1037368,1,1901,4320,16, 105362075,4266,16,0,536,
103740,552,1,1479,4321, 105371,2337,4267,16,0,
1037516,0,552,1,112, 10538536,1,2413,4268,16,
103764322,16,0,552,1, 105390,536,1,1901,4269,
103772293,4323,16,0,552, 1054016,0,536,1,2198,
103781,1804,4324,16,0, 105414270,16,0,536,1,
10379552,1,431,4325,16, 105422106,4271,16,0,536,
103800,552,1,1443,4326, 105431,1804,4272,16,0,
1038116,0,552,1,1756, 10544536,1,1990,4273,16,
103824327,16,0,552,1, 105450,536,1,32,4274,
10383124,4328,16,0,552, 1054616,0,536,1,1958,
103841,525,4329,16,0, 105474275,16,0,536,1,
10385552,1,236,4330,16, 105481775,4276,16,0,536,
103860,552,1,346,4331, 105491,126,4277,19,535,
1038716,0,552,1,1876, 105501,126,4278,5,11,
103884332,16,0,552,1, 105511,2075,4279,16,0,
103891659,4333,16,0,552, 10552533,1,2337,4280,16,
103901,1225,4334,16,0, 105530,533,1,2413,4281,
10391552,1,1117,4335,16, 1055416,0,533,1,1901,
103920,552,1,137,4336, 105554282,16,0,533,1,
1039316,0,552,1,2318, 105562198,4283,16,0,533,
103944337,16,0,552,1, 105571,2106,4284,16,0,
103952670,4338,16,0,552, 10558533,1,1804,4285,16,
103961,1775,4339,16,0, 105590,533,1,1990,4286,
10397552,1,32,4340,16, 1056016,0,533,1,32,
103980,552,1,1407,4341, 105614287,16,0,533,1,
1039916,0,552,1,256, 105621958,4288,16,0,533,
104004342,16,0,552,1, 105631,1775,4289,16,0,
10401459,4343,16,0,552, 10564533,1,127,4290,19,
104021,406,4344,16,0, 10565532,1,127,4291,5,
10403552,1,41,4345,16, 1056611,1,2075,4292,16,
104040,552,1,151,4346, 105670,530,1,2337,4293,
1040516,0,552,1,43, 1056816,0,530,1,2413,
104064347,16,0,552,1, 105694294,16,0,530,1,
104071585,4348,16,0,552, 105701901,4295,16,0,530,
104081,1990,4349,16,0, 105711,2198,4296,16,0,
10409552,1,2337,4350,16, 10572530,1,2106,4297,16,
104100,552,1,509,4351, 105730,530,1,1804,4298,
1041116,0,552,1,52, 1057416,0,530,1,1990,
104124352,16,0,552,1, 105754299,16,0,530,1,
10413381,4353,16,0,552, 1057632,4300,16,0,530,
104141,447,4354,16,0, 105771,1958,4301,16,0,
10415552,1,166,4355,16, 10578530,1,1775,4302,16,
104160,552,1,462,4356, 105790,530,1,128,4303,
1041716,0,552,1,277, 1058019,147,1,128,4304,
104184357,16,0,552,1, 105815,3,1,1756,4305,
104191695,4358,16,0,552, 1058216,0,283,1,2318,
104201,62,4359,16,0, 105834306,16,0,294,1,
10421604,1,1153,4360,16, 105841659,4307,16,0,145,
104220,552,1,2106,4361, 105851,129,4308,19,571,
1042316,0,552,1,1335, 105861,129,4309,5,68,
104244362,16,0,552,1, 105871,1901,4310,16,0,
1042571,4363,16,0,552, 10588569,1,1479,4311,16,
104261,182,4364,16,0, 105890,569,1,112,4312,
10427552,1,76,4365,16, 1059016,0,569,1,2293,
104280,552,1,79,4366, 105914313,16,0,569,1,
1042916,0,552,1,1933, 105921804,4314,16,0,569,
104304367,16,0,552,1, 105931,431,4315,16,0,
10431299,4368,16,0,552, 10594569,1,1443,4316,16,
104321,85,4369,16,0, 105950,569,1,1756,4317,
10433552,1,1515,4370,16, 1059616,0,569,1,124,
104340,552,1,2198,4371, 105974318,16,0,569,1,
1043516,0,552,1,89, 10598525,4319,16,0,569,
104364372,16,0,552,1, 105991,236,4320,16,0,
104371834,4373,16,0,552, 10600569,1,346,4321,16,
104381,1622,4374,16,0, 106010,569,1,1876,4322,
10439552,1,2413,4375,16, 1060216,0,569,1,1659,
104400,552,1,2075,4376, 106034323,16,0,569,1,
1044116,0,552,1,1731, 106041225,4324,16,0,569,
104424377,16,0,552,1, 106051,1117,4325,16,0,
1044397,4378,16,0,552, 10606569,1,137,4326,16,
104441,1297,4379,16,0, 106070,569,1,2318,4327,
10445552,1,1189,4380,16, 1060816,0,569,1,1775,
104460,552,1,102,4381, 106094328,16,0,569,1,
1044716,0,552,1,1261, 1061032,4329,16,0,569,
104484382,16,0,552,1, 106111,1407,4330,16,0,
10449322,4383,16,0,552, 10612569,1,256,4331,16,
104501,1958,4384,16,0, 106130,569,1,459,4332,
10451552,1,199,4385,16, 1061416,0,569,1,406,
104520,552,1,1371,4386, 106154333,16,0,569,1,
1045316,0,552,1,217, 1061641,4334,16,0,569,
104544387,16,0,552,1, 106171,151,4335,16,0,
10455130,4388,19,4389,4, 10618569,1,43,4336,16,
1045628,86,0,101,0, 106190,569,1,1585,4337,
1045799,0,116,0,111, 1062016,0,569,1,2686,
104580,114,0,67,0, 106214338,16,0,569,1,
106221990,4339,16,0,569,
106231,2337,4340,16,0,
10624569,1,509,4341,16,
106250,569,1,52,4342,
1062616,0,569,1,381,
106274343,16,0,569,1,
10628447,4344,16,0,569,
106291,166,4345,16,0,
10630569,1,462,4346,16,
106310,569,1,277,4347,
1063216,0,569,1,1695,
106334348,16,0,569,1,
1063462,4349,16,0,615,
106351,1153,4350,16,0,
10636569,1,2106,4351,16,
106370,569,1,1335,4352,
1063816,0,569,1,71,
106394353,16,0,569,1,
10640182,4354,16,0,569,
106411,76,4355,16,0,
10642569,1,79,4356,16,
106430,569,1,1933,4357,
1064416,0,569,1,299,
106454358,16,0,569,1,
1064685,4359,16,0,569,
106471,1515,4360,16,0,
10648569,1,2198,4361,16,
106490,569,1,89,4362,
1065016,0,569,1,1834,
106514363,16,0,569,1,
106521622,4364,16,0,569,
106531,2413,4365,16,0,
10654569,1,2075,4366,16,
106550,569,1,1731,4367,
1065616,0,569,1,97,
106574368,16,0,569,1,
106581297,4369,16,0,569,
106591,1189,4370,16,0,
10660569,1,102,4371,16,
106610,569,1,1261,4372,
1066216,0,569,1,322,
106634373,16,0,569,1,
106641958,4374,16,0,569,
106651,199,4375,16,0,
10666569,1,1371,4376,16,
106670,569,1,217,4377,
1066816,0,569,1,130,
106694378,19,632,1,130,
106704379,5,2,1,459,
106714380,16,0,630,1,
1067241,4381,16,0,691,
106731,131,4382,19,636,
106741,131,4383,5,3,
106751,462,4384,16,0,
10676634,1,459,4385,16,
106770,656,1,41,4386,
1067816,0,656,1,132,
106794387,19,4388,4,36,
1068069,0,120,0,112,
106810,114,0,101,0,
10682115,0,115,0,105,
106830,111,0,110,0,
1068465,0,114,0,103,
106850,117,0,109,0,
10686101,0,110,0,116,
106870,1,132,4383,1,
10688133,4389,19,567,1,
10689133,4390,5,68,1,
106901901,4391,16,0,565,
106911,1479,4392,16,0,
10692565,1,112,4393,16,
106930,565,1,2293,4394,
1069416,0,565,1,1804,
106954395,16,0,565,1,
10696431,4396,16,0,565,
106971,1443,4397,16,0,
10698565,1,1756,4398,16,
106990,565,1,124,4399,
1070016,0,565,1,525,
107014400,16,0,565,1,
10702236,4401,16,0,565,
107031,346,4402,16,0,
10704565,1,1876,4403,16,
107050,565,1,1659,4404,
1070616,0,565,1,1225,
107074405,16,0,565,1,
107081117,4406,16,0,565,
107091,137,4407,16,0,
10710565,1,2318,4408,16,
107110,565,1,1775,4409,
1071216,0,565,1,32,
107134410,16,0,565,1,
107141407,4411,16,0,565,
107151,256,4412,16,0,
10716565,1,459,4413,16,
107170,565,1,406,4414,
1071816,0,565,1,41,
107194415,16,0,565,1,
10720151,4416,16,0,565,
107211,43,4417,16,0,
10722565,1,1585,4418,16,
107230,565,1,2686,4419,
1072416,0,565,1,1990,
107254420,16,0,565,1,
107262337,4421,16,0,565,
107271,509,4422,16,0,
10728565,1,52,4423,16,
107290,565,1,381,4424,
1073016,0,565,1,447,
107314425,16,0,565,1,
10732166,4426,16,0,565,
107331,462,4427,16,0,
10734565,1,277,4428,16,
107350,565,1,1695,4429,
1073616,0,565,1,62,
107374430,16,0,616,1,
107381153,4431,16,0,565,
107391,2106,4432,16,0,
10740565,1,1335,4433,16,
107410,565,1,71,4434,
1074216,0,565,1,182,
107434435,16,0,565,1,
1074476,4436,16,0,565,
107451,79,4437,16,0,
10746565,1,1933,4438,16,
107470,565,1,299,4439,
1074816,0,565,1,85,
107494440,16,0,565,1,
107501515,4441,16,0,565,
107511,2198,4442,16,0,
10752565,1,89,4443,16,
107530,565,1,1834,4444,
1075416,0,565,1,1622,
107554445,16,0,565,1,
107562413,4446,16,0,565,
107571,2075,4447,16,0,
10758565,1,1731,4448,16,
107590,565,1,97,4449,
1076016,0,565,1,1297,
107614450,16,0,565,1,
107621189,4451,16,0,565,
107631,102,4452,16,0,
10764565,1,1261,4453,16,
107650,565,1,322,4454,
1076616,0,565,1,1958,
107674455,16,0,565,1,
10768199,4456,16,0,565,
107691,1371,4457,16,0,
10770565,1,217,4458,16,
107710,565,1,134,4459,
1077219,4460,4,28,86,
107730,101,0,99,0,
10774116,0,111,0,114,
107750,67,0,111,0,
10776110,0,115,0,116,
107770,97,0,110,0,
10778116,0,1,134,4390,
107791,135,4461,19,4462,
107804,32,82,0,111,
107810,116,0,97,0,
10782116,0,105,0,111,
107830,110,0,67,0,
10459111,0,110,0,115, 10784111,0,110,0,115,
104600,116,0,97,0, 107850,116,0,97,0,
10461110,0,116,0,1, 10786110,0,116,0,1,
10462130,4319,1,131,4390, 10787135,4390,1,136,4463,
1046319,4391,4,32,82, 1078819,4464,4,24,76,
104640,111,0,116,0, 107890,105,0,115,0,
1046597,0,116,0,105, 10790116,0,67,0,111,
104660,111,0,110,0, 107910,110,0,115,0,
10792116,0,97,0,110,
107930,116,0,1,136,
107944390,1,137,4465,19,
10795169,1,137,4466,5,
1079667,1,1901,4467,16,
107970,612,1,1479,4468,
1079816,0,556,1,112,
107994469,16,0,247,1,
108002293,4470,16,0,273,
108011,1804,4471,16,0,
10802612,1,431,4472,16,
108030,604,1,1443,4473,
1080416,0,485,1,1756,
108054474,16,0,701,1,
10806124,4475,16,0,255,
108071,525,4476,16,0,
10808304,1,236,4477,16,
108090,350,1,346,4478,
1081016,0,519,1,1876,
108114479,16,0,320,1,
108121659,4480,16,0,701,
108131,1225,4481,16,0,
10814246,1,1117,4482,16,
108150,220,1,137,4483,
1081616,0,272,1,2318,
108174484,16,0,701,1,
108181775,4485,16,0,612,
108191,32,4486,16,0,
10820612,1,1407,4487,16,
108210,504,1,256,4488,
1082216,0,404,1,459,
108234489,16,0,167,1,
10824406,4490,16,0,582,
108251,41,4491,16,0,
10826167,1,151,4492,16,
108270,282,1,43,4493,
1082816,0,658,1,2686,
108294494,16,0,700,1,
108301990,4495,16,0,612,
108311,2337,4496,16,0,
10832612,1,509,4497,16,
108330,677,1,52,4498,
1083416,0,622,1,381,
108354499,16,0,574,1,
10836447,4500,16,0,304,
108371,166,4501,16,0,
10838293,1,462,4502,16,
108390,167,1,277,4503,
1084016,0,448,1,1695,
108414504,16,0,270,1,
108421261,4505,16,0,281,
108431,1153,4506,16,0,
10844174,1,2106,4507,16,
108450,612,1,1335,4508,
1084616,0,335,1,71,
108474509,16,0,204,1,
10848182,4510,16,0,304,
108491,76,4511,16,0,
10850572,1,79,4512,16,
108510,219,1,1933,4513,
1085216,0,416,1,299,
108534514,16,0,468,1,
1085485,4515,16,0,482,
108551,1515,4516,16,0,
10856581,1,2198,4517,16,
108570,612,1,89,4518,
1085816,0,228,1,1834,
108594519,16,0,292,1,
108601622,4520,16,0,676,
108611,2413,4521,16,0,
10862612,1,2075,4522,16,
108630,612,1,1731,4523,
1086416,0,248,1,97,
108654524,16,0,420,1,
108661297,4525,16,0,337,
108671,1189,4526,16,0,
10868218,1,102,4527,16,
108690,236,1,1585,4528,
1087016,0,690,1,322,
108714529,16,0,483,1,
108721958,4530,16,0,612,
108731,199,4531,16,0,
10874315,1,1371,4532,16,
108750,405,1,217,4533,
1087616,0,334,1,138,
108774534,19,4535,4,36,
1046767,0,111,0,110, 1087867,0,111,0,110,
104680,115,0,116,0, 108790,115,0,116,0,
1046997,0,110,0,116, 1088097,0,110,0,116,
104700,1,131,4319,1, 108810,69,0,120,0,
10471132,4392,19,4393,4, 10882112,0,114,0,101,
1047224,76,0,105,0, 108830,115,0,115,0,
10473115,0,116,0,67, 10884105,0,111,0,110,
104740,111,0,110,0, 108850,1,138,4466,1,
10475115,0,116,0,97, 10886139,4536,19,4537,4,
104760,110,0,116,0, 1088730,73,0,100,0,
104771,132,4319,1,133, 10888101,0,110,0,116,
104784394,19,178,1,133, 108890,69,0,120,0,
104794395,5,67,1,1901, 10890112,0,114,0,101,
104804396,16,0,600,1, 108910,115,0,115,0,
104811479,4397,16,0,543, 10892105,0,111,0,110,
104821,112,4398,16,0, 108930,1,139,4466,1,
10483259,1,2293,4399,16, 10894140,4538,19,4539,4,
104840,282,1,1804,4400, 1089536,73,0,100,0,
1048516,0,600,1,431, 10896101,0,110,0,116,
104864401,16,0,595,1, 108970,68,0,111,0,
104871443,4402,16,0,474, 10898116,0,69,0,120,
104881,1756,4403,16,0, 108990,112,0,114,0,
10489683,1,124,4404,16, 10900101,0,115,0,115,
104900,267,1,525,4405, 109010,105,0,111,0,
1049116,0,314,1,236, 10902110,0,1,140,4466,
104924406,16,0,349,1, 109031,141,4540,19,4541,
10493346,4407,16,0,506, 109044,44,70,0,117,
104941,1876,4408,16,0, 109050,110,0,99,0,
10495326,1,1659,4409,16, 10906116,0,105,0,111,
104960,683,1,1225,4410, 109070,110,0,67,0,
1049716,0,258,1,1117, 1090897,0,108,0,108,
104984411,16,0,229,1, 109090,69,0,120,0,
10499137,4412,16,0,281, 10910112,0,114,0,101,
105001,2318,4413,16,0, 109110,115,0,115,0,
10501683,1,2670,4414,16, 10912105,0,111,0,110,
105020,606,1,1775,4415, 109130,1,141,4466,1,
1050316,0,600,1,32, 10914142,4542,19,4543,4,
105044416,16,0,600,1, 1091532,66,0,105,0,
105051407,4417,16,0,497, 10916110,0,97,0,114,
105061,256,4418,16,0, 109170,121,0,69,0,
10507403,1,459,4419,16,
105080,176,1,406,4420,
1050916,0,568,1,41,
105104421,16,0,176,1,
10511151,4422,16,0,291,
105121,43,4423,16,0,
10513645,1,1990,4424,16,
105140,600,1,2337,4425,
1051516,0,600,1,509,
105164426,16,0,665,1,
1051752,4427,16,0,610,
105181,381,4428,16,0,
10519560,1,447,4429,16,
105200,314,1,166,4430,
1052116,0,302,1,462,
105224431,16,0,176,1,
10523277,4432,16,0,447,
105241,1695,4433,16,0,
10525279,1,1261,4434,16,
105260,290,1,1153,4435,
1052716,0,183,1,2106,
105284436,16,0,600,1,
105291335,4437,16,0,334,
105301,71,4438,16,0,
10531213,1,182,4439,16,
105320,314,1,76,4440,
1053316,0,559,1,79,
105344441,16,0,228,1,
105351933,4442,16,0,415,
105361,299,4443,16,0,
10537460,1,85,4444,16,
105380,471,1,1515,4445,
1053916,0,567,1,2198,
105404446,16,0,600,1,
1054189,4447,16,0,237,
105421,1834,4448,16,0,
10543301,1,1622,4449,16,
105440,664,1,2413,4450,
1054516,0,600,1,2075,
105464451,16,0,600,1,
105471731,4452,16,0,263,
105481,97,4453,16,0,
10549419,1,1297,4454,16,
105500,336,1,1189,4455,
1055116,0,227,1,102,
105524456,16,0,248,1,
105531585,4457,16,0,675,
105541,322,4458,16,0,
10555472,1,1958,4459,16,
105560,600,1,199,4460,
1055716,0,325,1,1371,
105584461,16,0,404,1,
10559217,4462,16,0,333,
105601,134,4463,19,4464,
105614,36,67,0,111,
105620,110,0,115,0,
10563116,0,97,0,110,
105640,116,0,69,0,
10565120,0,112,0,114, 10918120,0,112,0,114,
105660,101,0,115,0, 109190,101,0,115,0,
10567115,0,105,0,111, 10920115,0,105,0,111,
105680,110,0,1,134, 109210,110,0,1,142,
105694395,1,135,4465,19, 109224466,1,143,4544,19,
105704466,4,30,73,0, 109234545,4,30,85,0,
10571100,0,101,0,110, 10924110,0,97,0,114,
105720,116,0,69,0, 109250,121,0,69,0,
10573120,0,112,0,114, 10926120,0,112,0,114,
105740,101,0,115,0, 109270,101,0,115,0,
10575115,0,105,0,111, 10928115,0,105,0,111,
105760,110,0,1,135, 109290,110,0,1,143,
105774395,1,136,4467,19, 109304466,1,144,4546,19,
105784468,4,36,73,0, 109314547,4,36,84,0,
10579100,0,101,0,110, 10932121,0,112,0,101,
105800,116,0,68,0, 109330,99,0,97,0,
10581111,0,116,0,69, 10934115,0,116,0,69,
105820,120,0,112,0, 109350,120,0,112,0,
10583114,0,101,0,115, 10936114,0,101,0,115,
105840,115,0,105,0, 109370,115,0,105,0,
10585111,0,110,0,1, 10938111,0,110,0,1,
10586136,4395,1,137,4469, 10939144,4466,1,145,4548,
1058719,4470,4,44,70, 1094019,4549,4,42,80,
105880,117,0,110,0, 109410,97,0,114,0,
1058999,0,116,0,105, 10942101,0,110,0,116,
105900,111,0,110,0, 109430,104,0,101,0,
1059167,0,97,0,108, 10944115,0,105,0,115,
105920,108,0,69,0,
10593120,0,112,0,114,
105940,101,0,115,0,
10595115,0,105,0,111,
105960,110,0,1,137,
105974395,1,138,4471,19,
105984472,4,32,66,0,
10599105,0,110,0,97,
106000,114,0,121,0,
1060169,0,120,0,112,
106020,114,0,101,0,
10603115,0,115,0,105,
106040,111,0,110,0,
106051,138,4395,1,139,
106064473,19,4474,4,30,
1060785,0,110,0,97,
106080,114,0,121,0,
1060969,0,120,0,112,
106100,114,0,101,0,
10611115,0,115,0,105,
106120,111,0,110,0,
106131,139,4395,1,140,
106144475,19,4476,4,36,
1061584,0,121,0,112,
106160,101,0,99,0,
1061797,0,115,0,116,
106180,69,0,120,0, 109450,69,0,120,0,
10619112,0,114,0,101, 10946112,0,114,0,101,
106200,115,0,115,0, 109470,115,0,115,0,
10621105,0,111,0,110, 10948105,0,111,0,110,
106220,1,140,4395,1, 109490,1,145,4466,1,
10623141,4477,19,4478,4, 10950146,4550,19,4551,4,
1062442,80,0,97,0, 1095156,73,0,110,0,
10625114,0,101,0,110,
106260,116,0,104,0,
10627101,0,115,0,105,
106280,115,0,69,0,
10629120,0,112,0,114,
106300,101,0,115,0,
10631115,0,105,0,111,
106320,110,0,1,141,
106334395,1,142,4479,19,
106344480,4,56,73,0,
10635110,0,99,0,114,
106360,101,0,109,0,
10637101,0,110,0,116,
106380,68,0,101,0,
1063999,0,114,0,101, 1095299,0,114,0,101,
106400,109,0,101,0, 109530,109,0,101,0,
10641110,0,116,0,69,
106420,120,0,112,0,
10643114,0,101,0,115,
106440,115,0,105,0,
10645111,0,110,0,1,
10646142,4395,1,144,4481,
1064719,715,1,144,3941,
106481,145,4482,19,720,
106491,145,3941,1,146,
106504483,19,3246,1,146,
106513944,1,147,4484,19,
106523220,1,147,3944,1,
10653148,4485,19,3241,1,
10654148,3944,1,149,4486,
1065519,3215,1,149,3944,
106561,150,4487,19,3226,
106571,150,3947,1,151,
106584488,19,3256,1,151,
106593947,1,152,4489,19,
106603251,1,152,3951,1,
10661153,4490,19,3236,1,
10662153,3951,1,154,4491,
1066319,698,1,154,3955,
106641,155,4492,19,693,
106651,155,3955,1,156,
106664493,19,709,1,156,
106673959,1,157,4494,19,
10668704,1,157,3959,1,
10669158,4495,19,1648,1,
10670158,3965,1,159,4496,
1067119,1658,1,159,3965,
106721,160,4497,19,1663,
106731,160,3965,1,161,
106744498,19,1653,1,161,
106753965,1,162,4499,19,
106761640,1,162,3969,1,
10677163,4500,19,1633,1,
10678163,3975,1,164,4501,
1067919,1704,1,164,3981,
106801,165,4502,19,1679,
106811,165,3981,1,166,
106824503,19,1127,1,166,
106833986,1,167,4504,19,
10684911,1,167,4037,1,
10685168,4505,19,895,1,
10686168,4037,1,169,4506,
1068719,901,1,169,4054,
106881,170,4507,19,889,
106891,170,4054,1,171,
106904508,19,1155,1,171,
106914070,1,172,4509,19,
10692792,1,172,4057,1,
10693173,4510,19,906,1,
10694173,4057,1,174,4511,
1069519,787,1,174,4057,
106961,175,4512,19,812,
106971,175,4057,1,176,
106984513,19,781,1,176,
106994057,1,177,4514,19,
10700775,1,177,4057,1,
10701178,4515,19,770,1,
10702178,4057,1,179,4516,
1070319,765,1,179,4057,
107041,180,4517,19,759,
107051,180,4057,1,181,
107064518,19,754,1,181,
107074057,1,182,4519,19,
10708749,1,182,4057,1,
10709183,4520,19,744,1,
10710183,4057,1,184,4521,
1071119,739,1,184,4057,
107121,185,4522,19,1162,
107131,185,4142,1,186,
107144523,19,1300,1,186,
107154155,1,187,4524,19,
107161149,1,187,4168,1,
10717188,4525,19,1288,1,
10718188,4168,1,189,4526,
1071919,928,1,189,4181,
107201,190,4527,19,732,
107211,190,4181,1,191,
107224528,19,827,1,191,
107234181,1,192,4529,19,
10724855,1,192,4181,1,
10725193,4530,19,874,1,
10726193,4194,1,194,4531,
1072719,920,1,194,4194,
107281,195,4532,19,835,
107291,195,4207,1,196,
107304533,19,848,1,196,
107314207,1,197,4534,19,
10732801,1,197,4220,1,
10733198,4535,19,840,1,
10734198,4220,1,199,4536,
1073519,1478,1,199,4233,
107361,200,4537,19,1168,
107371,200,4233,1,201,
107384538,19,1510,1,201,
107394233,1,202,4539,19,
107401547,1,202,4233,1,
10741203,4540,19,1416,1,
10742203,4083,1,204,4541,
1074319,1532,1,204,4083,
107441,205,4542,19,1143,
107451,205,4096,1,206,
107464543,19,1579,1,206,
107474096,1,207,4544,19,
107481505,1,207,4096,1,
10749208,4545,19,1460,1,
10750208,4096,1,209,4546,
1075119,1384,1,209,4096,
107521,210,4547,19,1310,
107531,210,4096,1,211,
107544548,19,1320,1,211,
107554096,1,212,4549,19,
107561138,1,212,4096,1,
10757213,4550,19,1563,1,
10758213,4096,1,214,4551,
1075919,1500,1,214,4096,
107601,215,4552,19,1450,
107611,215,4096,1,216,
107624553,19,1373,1,216,
107634096,1,217,4554,19,
107641336,1,217,4096,1,
10765218,4555,19,1121,1,
10766218,4096,1,219,4556,
1076719,1466,1,219,4096,
107681,220,4557,19,1488,
107691,220,4096,1,221,
107704558,19,1443,1,221,
107714096,1,222,4559,19,
107721596,1,222,4096,1,
10773223,4560,19,1276,1,
10774223,4096,1,224,4561,
1077519,1180,1,224,4096,
107761,225,4562,19,1110,
107771,225,4096,1,226,
107784563,19,1537,1,226,
107794096,1,227,4564,19,
107801483,1,227,4096,1,
10781228,4565,19,1438,1,
10782228,4096,1,229,4566,
1078319,1305,1,229,4129,
107841,230,4567,19,1283,
107851,230,4129,1,231,
107864568,19,1568,1,231,
107874319,1,232,4569,19,
107881591,1,232,4319,1,
10789233,4570,19,1558,1,
10790233,4319,1,234,4571,
1079119,1553,1,234,4319,
107921,235,4572,19,1574,
107931,235,4319,1,236,
107944573,19,1516,1,236,
107954319,1,237,4574,19,
107961230,1,237,4319,1,
10797238,4575,19,1405,1,
10798238,4395,1,239,4576,
1079919,1191,1,239,4395,
108001,240,4577,19,1198,
108011,240,4395,1,241,
108024578,19,1219,1,241,
108034395,1,242,4579,19,
108041214,1,242,4395,1,
10805243,4580,19,1209,1,
10806243,4395,1,244,4581,
1080719,1204,1,244,4395,
108081,245,4582,19,1394,
108091,245,4395,1,246,
108104583,19,1422,1,246,
108114395,1,247,4584,19,
108121399,1,247,4395,1,
10813248,4585,19,1389,1,
10814248,4395,1,249,4586,
1081519,1379,1,249,4395,
108161,250,4587,19,1362,
108171,250,4395,1,251,
108184588,19,1315,1,251,
108194395,1,252,4589,19,
108201224,1,252,4395,1,
10821253,4590,19,1185,1,
10822253,4395,1,254,4591,
1082319,1133,1,254,4395,
108241,255,4592,19,1586,
108251,255,4395,1,256,
108264593,19,1542,1,256,
108274395,1,257,4594,19,
108281527,1,257,4395,1,
10829258,4595,19,1522,1,
10830258,4395,1,259,4596,
1083119,1473,1,259,4395,
108321,260,4597,19,1455,
108331,260,4395,1,261,
108344598,19,1432,1,261,
108354395,1,262,4599,19,
108361427,1,262,4395,1,
10837263,4600,19,1368,1,
10838263,4395,1,264,4601,
1083919,1344,1,264,4395,
108401,265,4602,19,1410,
108411,265,4395,1,266,
108424603,19,1494,1,266,
108434395,1,267,4604,19,
108441357,1,267,4395,1,
10845268,4605,19,1351,1,
10846268,4395,1,269,4606,
1084719,1331,1,269,4395,
108481,270,4607,19,1294,
108491,270,4395,1,271,
108504608,19,1271,1,271,
108514395,1,272,4609,19,
108521116,1,272,4395,1,
10853273,4610,19,1606,1,
10854273,4395,1,274,4611,
1085519,1236,1,274,4395,
108561,275,4612,19,1241,
108571,275,4395,1,276,
108584613,19,1261,1,276,
108594395,1,277,4614,19,
108601251,1,277,4395,1,
10861278,4615,19,1256,1,
10862278,4395,1,279,4616,
1086319,1246,1,279,4395,
108641,280,4617,19,1601,
108651,280,4395,1,281,
108664618,19,1266,1,281,
108674395,1,282,4619,19,
108681326,1,282,4238,1,
10869283,4620,19,1717,1,
10870283,4308,1,284,4621,
1087119,1710,1,284,4308,
108721,285,4622,19,1689,
108731,285,4312,1,286,
108744623,19,2014,1,286,
108754005,1,287,4624,19,
108762009,1,287,4005,1,
10877288,4625,19,2004,1,
10878288,4005,1,289,4626,
1087919,1999,1,289,4005,
108801,290,4627,19,1994,
108811,290,4005,1,291,
108824628,19,1989,1,291,
108834005,1,292,4629,19,
108841984,1,292,4005,1,
10885293,4630,19,1973,1,
10886293,4025,1,294,4631,
1088719,1968,1,294,4025,
108881,295,4632,19,1963,
108891,295,4025,1,296,
108904633,19,1958,1,296,
108914025,1,297,4634,19,
108921953,1,297,4025,1,
10893298,4635,19,1948,1,
10894298,4025,1,299,4636,
1089519,1943,1,299,4025,
108961,300,4637,19,1938,
108971,300,4025,1,301,
108984638,19,1933,1,301,
108994025,1,302,4639,19,
109001767,1,302,4025,1,
10901303,4640,19,1927,1,
10902303,4025,1,304,4641,
1090319,1922,1,304,4025,
109041,305,4642,19,1917,
109051,305,4025,1,306,
109064643,19,1760,1,306,
109074025,1,307,4644,19,
109081912,1,307,4025,1,
10909308,4645,19,1907,1,
10910308,4025,1,309,4646,
1091119,1902,1,309,4025,
109121,310,4647,19,1897,
109131,310,4025,1,311,
109144648,19,1892,1,311,
109154025,1,312,4649,19,
109161887,1,312,4025,1,
10917313,4650,19,1753,1,
10918313,4025,1,314,4651,
1091919,1881,1,314,4025,
109201,315,4652,19,1876,
109211,315,4025,1,316,
109224653,19,1871,1,316,
109234025,1,317,4654,19,
109241747,1,317,4025,1,
10925318,4655,19,1865,1,
10926318,4025,1,319,4656,
1092719,1796,1,319,4025,
109281,320,4657,19,1860,
109291,320,4031,1,321,
109304658,19,1855,1,321,
109314031,1,322,4659,19,
109321850,1,322,4031,1,
10933323,4660,19,1845,1,
10934323,4031,1,324,4661,
1093519,1840,1,324,4031,
109361,325,4662,19,1835,
109371,325,4031,1,326,
109384663,19,1830,1,326,
109394031,1,327,4664,19,
109404665,4,50,65,0,
10941114,0,103,0,117,
109420,109,0,101,0,
10943110,0,116,0,68, 10954110,0,116,0,68,
109440,101,0,99,0, 109550,101,0,99,0,
10945108,0,97,0,114, 10956114,0,101,0,109,
109460,97,0,116,0,
10947105,0,111,0,110,
109480,76,0,105,0,
10949115,0,116,0,95,
109500,51,0,1,327,
109513981,1,328,4666,19,
109524667,4,28,65,0,
10953114,0,103,0,117,
109540,109,0,101,0,
10955110,0,116,0,76,
109560,105,0,115,0,
10957116,0,95,0,51,
109580,1,328,4308,1,
10959329,4668,19,4669,4,
1096050,65,0,114,0,
10961103,0,117,0,109,
109620,101,0,110,0, 109570,101,0,110,0,
10963116,0,68,0,101, 10958116,0,69,0,120,
109640,99,0,108,0, 109590,112,0,114,0,
1096597,0,114,0,97, 10960101,0,115,0,115,
109660,116,0,105,0, 109610,105,0,111,0,
10967111,0,110,0,76, 10962110,0,1,146,4466,
109680,105,0,115,0, 109631,148,4552,19,728,
10969116,0,95,0,52, 109641,148,3993,1,149,
109700,1,329,3981,1, 109654553,19,733,1,149,
10971330,4670,19,4671,4, 109663993,1,150,4554,19,
109673280,1,150,3996,1,
10968151,4555,19,3270,1,
10969151,3996,1,152,4556,
1097019,3275,1,152,3996,
109711,153,4557,19,3265,
109721,153,3996,1,154,
109734558,19,3300,1,154,
109743999,1,155,4559,19,
109753286,1,155,3999,1,
10976156,4560,19,3295,1,
10977156,4003,1,157,4561,
1097819,3305,1,157,4003,
109791,158,4562,19,711,
109801,158,4007,1,159,
109814563,19,722,1,159,
109824007,1,160,4564,19,
10983738,1,160,4011,1,
10984161,4565,19,717,1,
10985161,4011,1,162,4566,
1098619,1693,1,162,4017,
109871,163,4567,19,1678,
109881,163,4017,1,164,
109894568,19,1683,1,164,
109904017,1,165,4569,19,
109911673,1,165,4017,1,
10992166,4570,19,1688,1,
10993166,4017,1,167,4571,
1099419,1668,1,167,4017,
109951,168,4572,19,1699,
109961,168,4021,1,169,
109974573,19,1659,1,169,
109984027,1,170,4574,19,
109991652,1,170,4033,1,
11000171,4575,19,1739,1,
11001171,4039,1,172,4576,
1100219,1712,1,172,4039,
110031,173,4577,19,2069,
110041,173,4044,1,174,
110054578,19,2063,1,174,
110064066,1,175,4579,19,
110071145,1,175,4047,1,
11008176,4580,19,930,1,
11009176,4107,1,177,4581,
1101019,914,1,177,4107,
110111,178,4582,19,920,
110121,178,4125,1,179,
110134583,19,908,1,179,
110144125,1,180,4584,19,
110151173,1,180,4141,1,
11016181,4585,19,811,1,
11017181,4128,1,182,4586,
1101819,925,1,182,4128,
110191,183,4587,19,806,
110201,183,4128,1,184,
110214588,19,831,1,184,
110224128,1,185,4589,19,
11023800,1,185,4128,1,
11024186,4590,19,794,1,
11025186,4128,1,187,4591,
1102619,789,1,187,4128,
110271,188,4592,19,784,
110281,188,4128,1,189,
110294593,19,778,1,189,
110304128,1,190,4594,19,
11031773,1,190,4128,1,
11032191,4595,19,768,1,
11033191,4128,1,192,4596,
1103419,763,1,192,4128,
110351,193,4597,19,758,
110361,193,4128,1,194,
110374598,19,1180,1,194,
110384213,1,195,4599,19,
110391318,1,195,4226,1,
11040196,4600,19,1167,1,
11041196,4239,1,197,4601,
1104219,1306,1,197,4239,
110431,198,4602,19,947,
110441,198,4252,1,199,
110454603,19,751,1,199,
110464252,1,200,4604,19,
11047846,1,200,4252,1,
11048201,4605,19,874,1,
11049201,4252,1,202,4606,
1105019,893,1,202,4265,
110511,203,4607,19,939,
110521,203,4265,1,204,
110534608,19,854,1,204,
110544278,1,205,4609,19,
11055867,1,205,4278,1,
11056206,4610,19,820,1,
11057206,4291,1,207,4611,
1105819,859,1,207,4291,
110591,208,4612,19,1505,
110601,208,4304,1,209,
110614613,19,1186,1,209,
110624304,1,210,4614,19,
110631538,1,210,4304,1,
11064211,4615,19,1570,1,
11065211,4304,1,212,4616,
1106619,1434,1,212,4154,
110671,213,4617,19,1493,
110681,213,4154,1,214,
110694618,19,1161,1,214,
110704167,1,215,4619,19,
110711602,1,215,4167,1,
11072216,4620,19,1533,1,
11073216,4167,1,217,4621,
1107419,1478,1,217,4167,
110751,218,4622,19,1402,
110761,218,4167,1,219,
110774623,19,1328,1,219,
110784167,1,220,4624,19,
110791338,1,220,4167,1,
11080221,4625,19,1156,1,
11081221,4167,1,222,4626,
1108219,1586,1,222,4167,
110831,223,4627,19,1528,
110841,223,4167,1,224,
110854628,19,1468,1,224,
110864167,1,225,4629,19,
110871391,1,225,4167,1,
11088226,4630,19,1354,1,
11089226,4167,1,227,4631,
1109019,1139,1,227,4167,
110911,228,4632,19,1488,
110921,228,4167,1,229,
110934633,19,1516,1,229,
110944167,1,230,4634,19,
110951461,1,230,4167,1,
11096231,4635,19,1483,1,
11097231,4167,1,232,4636,
1109819,1294,1,232,4167,
110991,233,4637,19,1198,
111001,233,4167,1,234,
111014638,19,1128,1,234,
111024167,1,235,4639,19,
111031560,1,235,4167,1,
11104236,4640,19,1511,1,
11105236,4167,1,237,4641,
1110619,1456,1,237,4167,
111071,238,4642,19,1323,
111081,238,4200,1,239,
111094643,19,1301,1,239,
111104200,1,240,4644,19,
111111591,1,240,4390,1,
11112241,4645,19,1614,1,
11113241,4390,1,242,4646,
1111419,1581,1,242,4390,
111151,243,4647,19,1576,
111161,243,4390,1,244,
111174648,19,1597,1,244,
111184390,1,245,4649,19,
111191544,1,245,4390,1,
11120246,4650,19,1248,1,
11121246,4390,1,247,4651,
1112219,1423,1,247,4466,
111231,248,4652,19,1209,
111241,248,4466,1,249,
111254653,19,1216,1,249,
111264466,1,250,4654,19,
111271237,1,250,4466,1,
11128251,4655,19,1232,1,
11129251,4466,1,252,4656,
1113019,1227,1,252,4466,
111311,253,4657,19,1222,
111321,253,4466,1,254,
111334658,19,1412,1,254,
111344466,1,255,4659,19,
111351440,1,255,4466,1,
11136256,4660,19,1417,1,
11137256,4466,1,257,4661,
1113819,1407,1,257,4466,
111391,258,4662,19,1397,
111401,258,4466,1,259,
111414663,19,1380,1,259,
111424466,1,260,4664,19,
111431333,1,260,4466,1,
11144261,4665,19,1242,1,
11145261,4466,1,262,4666,
1114619,1203,1,262,4466,
111471,263,4667,19,1151,
111481,263,4466,1,264,
111494668,19,1609,1,264,
111504466,1,265,4669,19,
111511565,1,265,4466,1,
11152266,4670,19,1555,1,
11153266,4466,1,267,4671,
1115419,1550,1,267,4466,
111551,268,4672,19,1499,
111561,268,4466,1,269,
111574673,19,1473,1,269,
111584466,1,270,4674,19,
111591450,1,270,4466,1,
11160271,4675,19,1445,1,
11161271,4466,1,272,4676,
1116219,1386,1,272,4466,
111631,273,4677,19,1362,
111641,273,4466,1,274,
111654678,19,1428,1,274,
111664466,1,275,4679,19,
111671522,1,275,4466,1,
11168276,4680,19,1375,1,
11169276,4466,1,277,4681,
1117019,1369,1,277,4466,
111711,278,4682,19,1349,
111721,278,4466,1,279,
111734683,19,1312,1,279,
111744466,1,280,4684,19,
111751289,1,280,4466,1,
11176281,4685,19,1134,1,
11177281,4466,1,282,4686,
1117819,1624,1,282,4466,
111791,283,4687,19,1254,
111801,283,4466,1,284,
111814688,19,1259,1,284,
111824466,1,285,4689,19,
111831279,1,285,4466,1,
11184286,4690,19,1269,1,
11185286,4466,1,287,4691,
1118619,1274,1,287,4466,
111871,288,4692,19,1264,
111881,288,4466,1,289,
111894693,19,1619,1,289,
111904466,1,290,4694,19,
111911284,1,290,4466,1,
11192291,4695,19,1344,1,
11193291,4309,1,292,4696,
1119419,1752,1,292,4379,
111951,293,4697,19,1745,
111961,293,4379,1,294,
111974698,19,1722,1,294,
111984383,1,295,4699,19,
111992051,1,295,4069,1,
11200296,4700,19,2046,1,
11201296,4069,1,297,4701,
1120219,2041,1,297,4069,
112031,298,4702,19,2036,
112041,298,4069,1,299,
112054703,19,2031,1,299,
112064069,1,300,4704,19,
112072026,1,300,4069,1,
11208301,4705,19,2021,1,
11209301,4069,1,302,4706,
1121019,2010,1,302,4089,
112111,303,4707,19,2005,
112121,303,4089,1,304,
112134708,19,2000,1,304,
112144089,1,305,4709,19,
112151995,1,305,4089,1,
11216306,4710,19,1990,1,
11217306,4089,1,307,4711,
1121819,1985,1,307,4089,
112191,308,4712,19,1980,
112201,308,4089,1,309,
112214713,19,1975,1,309,
112224089,1,310,4714,19,
112231970,1,310,4089,1,
11224311,4715,19,1804,1,
11225311,4089,1,312,4716,
1122619,1964,1,312,4089,
112271,313,4717,19,1959,
112281,313,4089,1,314,
112294718,19,1954,1,314,
112304089,1,315,4719,19,
112311797,1,315,4089,1,
11232316,4720,19,1949,1,
11233316,4089,1,317,4721,
1123419,1944,1,317,4089,
112351,318,4722,19,1939,
112361,318,4089,1,319,
112374723,19,1934,1,319,
112384095,1,320,4724,19,
112391929,1,320,4095,1,
11240321,4725,19,1924,1,
11241321,4095,1,322,4726,
1124219,1789,1,322,4095,
112431,323,4727,19,1918,
112441,323,4095,1,324,
112454728,19,1913,1,324,
112464095,1,325,4729,19,
112471908,1,325,4095,1,
11248326,4730,19,1783,1,
11249326,4095,1,327,4731,
1125019,1902,1,327,4095,
112511,328,4732,19,1832,
112521,328,4095,1,329,
112534733,19,1897,1,329,
112544101,1,330,4734,19,
112551892,1,330,4101,1,
11256331,4735,19,1887,1,
11257331,4101,1,332,4736,
1125819,1882,1,332,4101,
112591,333,4737,19,1877,
112601,333,4101,1,334,
112614738,19,1872,1,334,
112624101,1,335,4739,19,
112631867,1,335,4101,1,
11264336,4740,19,4741,4,
1097250,65,0,114,0, 1126550,65,0,114,0,
10973103,0,117,0,109, 11266103,0,117,0,109,
109740,101,0,110,0, 112670,101,0,110,0,
@@ -10978,16 +11271,48 @@ public yyLSLSyntax
109780,116,0,105,0, 112710,116,0,105,0,
10979111,0,110,0,76, 11272111,0,110,0,76,
109800,105,0,115,0, 112730,105,0,115,0,
10981116,0,95,0,53, 11274116,0,95,0,51,
109820,1,330,3981,1, 112750,1,336,4039,1,
10983331,4672,19,4673,4, 11276337,4742,19,4743,4,
1098428,65,0,114,0, 1127728,65,0,114,0,
10985103,0,117,0,109, 11278103,0,117,0,109,
109860,101,0,110,0, 112790,101,0,110,0,
10987116,0,76,0,105, 11280116,0,76,0,105,
109880,115,0,116,0, 112810,115,0,116,0,
1128295,0,51,0,1,
11283337,4379,1,338,4744,
1128419,4745,4,50,65,
112850,114,0,103,0,
11286117,0,109,0,101,
112870,110,0,116,0,
1128868,0,101,0,99,
112890,108,0,97,0,
11290114,0,97,0,116,
112910,105,0,111,0,
11292110,0,76,0,105,
112930,115,0,116,0,
1098995,0,52,0,1, 1129495,0,52,0,1,
10990331,4308,2,0,0}; 11295338,4039,1,339,4746,
1129619,4747,4,50,65,
112970,114,0,103,0,
11298117,0,109,0,101,
112990,110,0,116,0,
1130068,0,101,0,99,
113010,108,0,97,0,
11302114,0,97,0,116,
113030,105,0,111,0,
11304110,0,76,0,105,
113050,115,0,116,0,
1130695,0,53,0,1,
11307339,4039,1,340,4748,
1130819,4749,4,28,65,
113090,114,0,103,0,
11310117,0,109,0,101,
113110,110,0,116,0,
1131276,0,105,0,115,
113130,116,0,95,0,
1131452,0,1,340,4379,
113152,0,0};
10991new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory)); 11316new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory));
10992new Sfactory(this,"SimpleAssignment_8",new SCreator(SimpleAssignment_8_factory)); 11317new Sfactory(this,"SimpleAssignment_8",new SCreator(SimpleAssignment_8_factory));
10993new Sfactory(this,"SimpleAssignment_9",new SCreator(SimpleAssignment_9_factory)); 11318new Sfactory(this,"SimpleAssignment_9",new SCreator(SimpleAssignment_9_factory));
@@ -11012,6 +11337,7 @@ new Sfactory(this,"IdentDotExpression_1",new SCreator(IdentDotExpression_1_facto
11012new Sfactory(this,"ArgumentList_4",new SCreator(ArgumentList_4_factory)); 11337new Sfactory(this,"ArgumentList_4",new SCreator(ArgumentList_4_factory));
11013new Sfactory(this,"Typename",new SCreator(Typename_factory)); 11338new Sfactory(this,"Typename",new SCreator(Typename_factory));
11014new Sfactory(this,"IfStatement_1",new SCreator(IfStatement_1_factory)); 11339new Sfactory(this,"IfStatement_1",new SCreator(IfStatement_1_factory));
11340new Sfactory(this,"RotationConstant_1",new SCreator(RotationConstant_1_factory));
11015new Sfactory(this,"Assignment",new SCreator(Assignment_factory)); 11341new Sfactory(this,"Assignment",new SCreator(Assignment_factory));
11016new Sfactory(this,"CompoundStatement_1",new SCreator(CompoundStatement_1_factory)); 11342new Sfactory(this,"CompoundStatement_1",new SCreator(CompoundStatement_1_factory));
11017new Sfactory(this,"CompoundStatement_2",new SCreator(CompoundStatement_2_factory)); 11343new Sfactory(this,"CompoundStatement_2",new SCreator(CompoundStatement_2_factory));
@@ -11044,6 +11370,7 @@ new Sfactory(this,"States_1",new SCreator(States_1_factory));
11044new Sfactory(this,"States_2",new SCreator(States_2_factory)); 11370new Sfactory(this,"States_2",new SCreator(States_2_factory));
11045new Sfactory(this,"FunctionCallExpression_1",new SCreator(FunctionCallExpression_1_factory)); 11371new Sfactory(this,"FunctionCallExpression_1",new SCreator(FunctionCallExpression_1_factory));
11046new Sfactory(this,"ForLoopStatement",new SCreator(ForLoopStatement_factory)); 11372new Sfactory(this,"ForLoopStatement",new SCreator(ForLoopStatement_factory));
11373new Sfactory(this,"IntArgStateEvent_1",new SCreator(IntArgStateEvent_1_factory));
11047new Sfactory(this,"DoWhileStatement_1",new SCreator(DoWhileStatement_1_factory)); 11374new Sfactory(this,"DoWhileStatement_1",new SCreator(DoWhileStatement_1_factory));
11048new Sfactory(this,"DoWhileStatement_2",new SCreator(DoWhileStatement_2_factory)); 11375new Sfactory(this,"DoWhileStatement_2",new SCreator(DoWhileStatement_2_factory));
11049new Sfactory(this,"ForLoopStatement_4",new SCreator(ForLoopStatement_4_factory)); 11376new Sfactory(this,"ForLoopStatement_4",new SCreator(ForLoopStatement_4_factory));
@@ -11056,11 +11383,10 @@ new Sfactory(this,"SimpleAssignment_17",new SCreator(SimpleAssignment_17_factory
11056new Sfactory(this,"SimpleAssignment_18",new SCreator(SimpleAssignment_18_factory)); 11383new Sfactory(this,"SimpleAssignment_18",new SCreator(SimpleAssignment_18_factory));
11057new Sfactory(this,"JumpStatement_1",new SCreator(JumpStatement_1_factory)); 11384new Sfactory(this,"JumpStatement_1",new SCreator(JumpStatement_1_factory));
11058new Sfactory(this,"GlobalDefinitions",new SCreator(GlobalDefinitions_factory)); 11385new Sfactory(this,"GlobalDefinitions",new SCreator(GlobalDefinitions_factory));
11386new Sfactory(this,"ConstantExpression_1",new SCreator(ConstantExpression_1_factory));
11059new Sfactory(this,"VoidArgEvent_4",new SCreator(VoidArgEvent_4_factory)); 11387new Sfactory(this,"VoidArgEvent_4",new SCreator(VoidArgEvent_4_factory));
11060new Sfactory(this,"FunctionCall_1",new SCreator(FunctionCall_1_factory)); 11388new Sfactory(this,"FunctionCall_1",new SCreator(FunctionCall_1_factory));
11061new Sfactory(this,"ArgumentList_3",new SCreator(ArgumentList_3_factory));
11062new Sfactory(this,"Assignment_2",new SCreator(Assignment_2_factory)); 11389new Sfactory(this,"Assignment_2",new SCreator(Assignment_2_factory));
11063new Sfactory(this,"VoidArgEvent_1",new SCreator(VoidArgEvent_1_factory));
11064new Sfactory(this,"TypecastExpression_1",new SCreator(TypecastExpression_1_factory)); 11390new Sfactory(this,"TypecastExpression_1",new SCreator(TypecastExpression_1_factory));
11065new Sfactory(this,"SimpleAssignment_21",new SCreator(SimpleAssignment_21_factory)); 11391new Sfactory(this,"SimpleAssignment_21",new SCreator(SimpleAssignment_21_factory));
11066new Sfactory(this,"SimpleAssignment_22",new SCreator(SimpleAssignment_22_factory)); 11392new Sfactory(this,"SimpleAssignment_22",new SCreator(SimpleAssignment_22_factory));
@@ -11075,10 +11401,13 @@ new Sfactory(this,"GlobalDefinitions_1",new SCreator(GlobalDefinitions_1_factory
11075new Sfactory(this,"GlobalDefinitions_2",new SCreator(GlobalDefinitions_2_factory)); 11401new Sfactory(this,"GlobalDefinitions_2",new SCreator(GlobalDefinitions_2_factory));
11076new Sfactory(this,"IncrementDecrementExpression",new SCreator(IncrementDecrementExpression_factory)); 11402new Sfactory(this,"IncrementDecrementExpression",new SCreator(IncrementDecrementExpression_factory));
11077new Sfactory(this,"GlobalVariableDeclaration",new SCreator(GlobalVariableDeclaration_factory)); 11403new Sfactory(this,"GlobalVariableDeclaration",new SCreator(GlobalVariableDeclaration_factory));
11078new Sfactory(this,"ArgumentDeclarationList_3",new SCreator(ArgumentDeclarationList_3_factory)); 11404new Sfactory(this,"IntArgumentDeclarationList_1",new SCreator(IntArgumentDeclarationList_1_factory));
11405new Sfactory(this,"IntDeclaration_1",new SCreator(IntDeclaration_1_factory));
11406new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory));
11079new Sfactory(this,"Event_11",new SCreator(Event_11_factory)); 11407new Sfactory(this,"Event_11",new SCreator(Event_11_factory));
11080new Sfactory(this,"TypecastExpression_2",new SCreator(TypecastExpression_2_factory)); 11408new Sfactory(this,"TypecastExpression_2",new SCreator(TypecastExpression_2_factory));
11081new Sfactory(this,"TypecastExpression_3",new SCreator(TypecastExpression_3_factory)); 11409new Sfactory(this,"TypecastExpression_3",new SCreator(TypecastExpression_3_factory));
11410new Sfactory(this,"TypecastExpression_4",new SCreator(TypecastExpression_4_factory));
11082new Sfactory(this,"TypecastExpression_5",new SCreator(TypecastExpression_5_factory)); 11411new Sfactory(this,"TypecastExpression_5",new SCreator(TypecastExpression_5_factory));
11083new Sfactory(this,"TypecastExpression_8",new SCreator(TypecastExpression_8_factory)); 11412new Sfactory(this,"TypecastExpression_8",new SCreator(TypecastExpression_8_factory));
11084new Sfactory(this,"Constant_1",new SCreator(Constant_1_factory)); 11413new Sfactory(this,"Constant_1",new SCreator(Constant_1_factory));
@@ -11089,15 +11418,17 @@ new Sfactory(this,"BinaryExpression_1",new SCreator(BinaryExpression_1_factory))
11089new Sfactory(this,"IfStatement_2",new SCreator(IfStatement_2_factory)); 11418new Sfactory(this,"IfStatement_2",new SCreator(IfStatement_2_factory));
11090new Sfactory(this,"IfStatement_3",new SCreator(IfStatement_3_factory)); 11419new Sfactory(this,"IfStatement_3",new SCreator(IfStatement_3_factory));
11091new Sfactory(this,"IfStatement_4",new SCreator(IfStatement_4_factory)); 11420new Sfactory(this,"IfStatement_4",new SCreator(IfStatement_4_factory));
11092new Sfactory(this,"ReturnStatement",new SCreator(ReturnStatement_factory));
11093new Sfactory(this,"Event_2",new SCreator(Event_2_factory)); 11421new Sfactory(this,"Event_2",new SCreator(Event_2_factory));
11422new Sfactory(this,"JumpLabel_1",new SCreator(JumpLabel_1_factory));
11094new Sfactory(this,"RotationConstant",new SCreator(RotationConstant_factory)); 11423new Sfactory(this,"RotationConstant",new SCreator(RotationConstant_factory));
11095new Sfactory(this,"Statement_12",new SCreator(Statement_12_factory)); 11424new Sfactory(this,"Statement_12",new SCreator(Statement_12_factory));
11425new Sfactory(this,"Statement_13",new SCreator(Statement_13_factory));
11096new Sfactory(this,"UnaryExpression_1",new SCreator(UnaryExpression_1_factory)); 11426new Sfactory(this,"UnaryExpression_1",new SCreator(UnaryExpression_1_factory));
11097new Sfactory(this,"UnaryExpression_2",new SCreator(UnaryExpression_2_factory)); 11427new Sfactory(this,"UnaryExpression_2",new SCreator(UnaryExpression_2_factory));
11098new Sfactory(this,"UnaryExpression_3",new SCreator(UnaryExpression_3_factory)); 11428new Sfactory(this,"UnaryExpression_3",new SCreator(UnaryExpression_3_factory));
11099new Sfactory(this,"ArgumentList_1",new SCreator(ArgumentList_1_factory)); 11429new Sfactory(this,"ArgumentList_1",new SCreator(ArgumentList_1_factory));
11100new Sfactory(this,"ArgumentList_2",new SCreator(ArgumentList_2_factory)); 11430new Sfactory(this,"ArgumentList_2",new SCreator(ArgumentList_2_factory));
11431new Sfactory(this,"ArgumentList_3",new SCreator(ArgumentList_3_factory));
11101new Sfactory(this,"Constant",new SCreator(Constant_factory)); 11432new Sfactory(this,"Constant",new SCreator(Constant_factory));
11102new Sfactory(this,"State",new SCreator(State_factory)); 11433new Sfactory(this,"State",new SCreator(State_factory));
11103new Sfactory(this,"Event_13",new SCreator(Event_13_factory)); 11434new Sfactory(this,"Event_13",new SCreator(Event_13_factory));
@@ -11108,15 +11439,14 @@ new Sfactory(this,"IncrementDecrementExpression_2",new SCreator(IncrementDecreme
11108new Sfactory(this,"GlobalVariableDeclaration_1",new SCreator(GlobalVariableDeclaration_1_factory)); 11439new Sfactory(this,"GlobalVariableDeclaration_1",new SCreator(GlobalVariableDeclaration_1_factory));
11109new Sfactory(this,"GlobalVariableDeclaration_2",new SCreator(GlobalVariableDeclaration_2_factory)); 11440new Sfactory(this,"GlobalVariableDeclaration_2",new SCreator(GlobalVariableDeclaration_2_factory));
11110new Sfactory(this,"IncrementDecrementExpression_5",new SCreator(IncrementDecrementExpression_5_factory)); 11441new Sfactory(this,"IncrementDecrementExpression_5",new SCreator(IncrementDecrementExpression_5_factory));
11111new Sfactory(this,"GlobalFunctionDefinition_2",new SCreator(GlobalFunctionDefinition_2_factory)); 11442new Sfactory(this,"ReturnStatement",new SCreator(ReturnStatement_factory));
11112new Sfactory(this,"IncrementDecrementExpression_7",new SCreator(IncrementDecrementExpression_7_factory)); 11443new Sfactory(this,"IncrementDecrementExpression_7",new SCreator(IncrementDecrementExpression_7_factory));
11113new Sfactory(this,"IncrementDecrementExpression_8",new SCreator(IncrementDecrementExpression_8_factory)); 11444new Sfactory(this,"IncrementDecrementExpression_8",new SCreator(IncrementDecrementExpression_8_factory));
11114new Sfactory(this,"Assignment_1",new SCreator(Assignment_1_factory)); 11445new Sfactory(this,"Assignment_1",new SCreator(Assignment_1_factory));
11115new Sfactory(this,"Event_21",new SCreator(Event_21_factory)); 11446new Sfactory(this,"IntArgEvent_9",new SCreator(IntArgEvent_9_factory));
11116new Sfactory(this,"Event_22",new SCreator(Event_22_factory)); 11447new Sfactory(this,"IntArgEvent_10",new SCreator(IntArgEvent_10_factory));
11117new Sfactory(this,"CompoundStatement",new SCreator(CompoundStatement_factory)); 11448new Sfactory(this,"CompoundStatement",new SCreator(CompoundStatement_factory));
11118new Sfactory(this,"RotationConstant_1",new SCreator(RotationConstant_1_factory)); 11449new Sfactory(this,"IntArgumentDeclarationList",new SCreator(IntArgumentDeclarationList_factory));
11119new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory));
11120new Sfactory(this,"SimpleAssignment_3",new SCreator(SimpleAssignment_3_factory)); 11450new Sfactory(this,"SimpleAssignment_3",new SCreator(SimpleAssignment_3_factory));
11121new Sfactory(this,"SimpleAssignment_4",new SCreator(SimpleAssignment_4_factory)); 11451new Sfactory(this,"SimpleAssignment_4",new SCreator(SimpleAssignment_4_factory));
11122new Sfactory(this,"Statement_1",new SCreator(Statement_1_factory)); 11452new Sfactory(this,"Statement_1",new SCreator(Statement_1_factory));
@@ -11143,10 +11473,12 @@ new Sfactory(this,"IncrementDecrementExpression_3",new SCreator(IncrementDecreme
11143new Sfactory(this,"IncrementDecrementExpression_4",new SCreator(IncrementDecrementExpression_4_factory)); 11473new Sfactory(this,"IncrementDecrementExpression_4",new SCreator(IncrementDecrementExpression_4_factory));
11144new Sfactory(this,"IncrementDecrementExpression_6",new SCreator(IncrementDecrementExpression_6_factory)); 11474new Sfactory(this,"IncrementDecrementExpression_6",new SCreator(IncrementDecrementExpression_6_factory));
11145new Sfactory(this,"StateEvent",new SCreator(StateEvent_factory)); 11475new Sfactory(this,"StateEvent",new SCreator(StateEvent_factory));
11146new Sfactory(this,"Event_20",new SCreator(Event_20_factory)); 11476new Sfactory(this,"IntArgEvent_3",new SCreator(IntArgEvent_3_factory));
11147new Sfactory(this,"Event_23",new SCreator(Event_23_factory)); 11477new Sfactory(this,"IntArgEvent_4",new SCreator(IntArgEvent_4_factory));
11148new Sfactory(this,"Event_24",new SCreator(Event_24_factory)); 11478new Sfactory(this,"IntArgEvent_5",new SCreator(IntArgEvent_5_factory));
11149new Sfactory(this,"Event_26",new SCreator(Event_26_factory)); 11479new Sfactory(this,"IntArgEvent_6",new SCreator(IntArgEvent_6_factory));
11480new Sfactory(this,"IntArgEvent_7",new SCreator(IntArgEvent_7_factory));
11481new Sfactory(this,"IntArgEvent_8",new SCreator(IntArgEvent_8_factory));
11150new Sfactory(this,"SimpleAssignment_10",new SCreator(SimpleAssignment_10_factory)); 11482new Sfactory(this,"SimpleAssignment_10",new SCreator(SimpleAssignment_10_factory));
11151new Sfactory(this,"Event",new SCreator(Event_factory)); 11483new Sfactory(this,"Event",new SCreator(Event_factory));
11152new Sfactory(this,"SimpleAssignment_14",new SCreator(SimpleAssignment_14_factory)); 11484new Sfactory(this,"SimpleAssignment_14",new SCreator(SimpleAssignment_14_factory));
@@ -11154,7 +11486,7 @@ new Sfactory(this,"SimpleAssignment_16",new SCreator(SimpleAssignment_16_factory
11154new Sfactory(this,"Statement_10",new SCreator(Statement_10_factory)); 11486new Sfactory(this,"Statement_10",new SCreator(Statement_10_factory));
11155new Sfactory(this,"Statement_11",new SCreator(Statement_11_factory)); 11487new Sfactory(this,"Statement_11",new SCreator(Statement_11_factory));
11156new Sfactory(this,"SimpleAssignment",new SCreator(SimpleAssignment_factory)); 11488new Sfactory(this,"SimpleAssignment",new SCreator(SimpleAssignment_factory));
11157new Sfactory(this,"Statement_13",new SCreator(Statement_13_factory)); 11489new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory));
11158new Sfactory(this,"Event_15",new SCreator(Event_15_factory)); 11490new Sfactory(this,"Event_15",new SCreator(Event_15_factory));
11159new Sfactory(this,"Event_16",new SCreator(Event_16_factory)); 11491new Sfactory(this,"Event_16",new SCreator(Event_16_factory));
11160new Sfactory(this,"SimpleAssignment_20",new SCreator(SimpleAssignment_20_factory)); 11492new Sfactory(this,"SimpleAssignment_20",new SCreator(SimpleAssignment_20_factory));
@@ -11168,53 +11500,55 @@ new Sfactory(this,"StateBody_1",new SCreator(StateBody_1_factory));
11168new Sfactory(this,"StatementList_2",new SCreator(StatementList_2_factory)); 11500new Sfactory(this,"StatementList_2",new SCreator(StatementList_2_factory));
11169new Sfactory(this,"StateBody_3",new SCreator(StateBody_3_factory)); 11501new Sfactory(this,"StateBody_3",new SCreator(StateBody_3_factory));
11170new Sfactory(this,"StateBody_4",new SCreator(StateBody_4_factory)); 11502new Sfactory(this,"StateBody_4",new SCreator(StateBody_4_factory));
11171new Sfactory(this,"BinaryExpression_16",new SCreator(BinaryExpression_16_factory)); 11503new Sfactory(this,"StateBody_5",new SCreator(StateBody_5_factory));
11172new Sfactory(this,"BinaryExpression_17",new SCreator(BinaryExpression_17_factory)); 11504new Sfactory(this,"StateBody_6",new SCreator(StateBody_6_factory));
11173new Sfactory(this,"BinaryExpression_18",new SCreator(BinaryExpression_18_factory)); 11505new Sfactory(this,"BinaryExpression_18",new SCreator(BinaryExpression_18_factory));
11174new Sfactory(this,"Event_25",new SCreator(Event_25_factory)); 11506new Sfactory(this,"ArgumentDeclarationList_3",new SCreator(ArgumentDeclarationList_3_factory));
11175new Sfactory(this,"Event_9",new SCreator(Event_9_factory)); 11507new Sfactory(this,"Event_9",new SCreator(Event_9_factory));
11176new Sfactory(this,"Statement",new SCreator(Statement_factory)); 11508new Sfactory(this,"Statement",new SCreator(Statement_factory));
11177new Sfactory(this,"JumpStatement",new SCreator(JumpStatement_factory)); 11509new Sfactory(this,"JumpStatement",new SCreator(JumpStatement_factory));
11178new Sfactory(this,"BinaryExpression_11",new SCreator(BinaryExpression_11_factory)); 11510new Sfactory(this,"BinaryExpression_11",new SCreator(BinaryExpression_11_factory));
11179new Sfactory(this,"BinaryExpression_12",new SCreator(BinaryExpression_12_factory)); 11511new Sfactory(this,"IntArgEvent",new SCreator(IntArgEvent_factory));
11180new Sfactory(this,"BinaryExpression_13",new SCreator(BinaryExpression_13_factory)); 11512new Sfactory(this,"BinaryExpression_13",new SCreator(BinaryExpression_13_factory));
11181new Sfactory(this,"BinaryExpression_14",new SCreator(BinaryExpression_14_factory)); 11513new Sfactory(this,"BinaryExpression_14",new SCreator(BinaryExpression_14_factory));
11182new Sfactory(this,"BinaryExpression_15",new SCreator(BinaryExpression_15_factory)); 11514new Sfactory(this,"BinaryExpression_15",new SCreator(BinaryExpression_15_factory));
11515new Sfactory(this,"BinaryExpression_16",new SCreator(BinaryExpression_16_factory));
11183new Sfactory(this,"BinaryExpression_6",new SCreator(BinaryExpression_6_factory)); 11516new Sfactory(this,"BinaryExpression_6",new SCreator(BinaryExpression_6_factory));
11184new Sfactory(this,"BinaryExpression_7",new SCreator(BinaryExpression_7_factory)); 11517new Sfactory(this,"BinaryExpression_7",new SCreator(BinaryExpression_7_factory));
11185new Sfactory(this,"ArgumentList",new SCreator(ArgumentList_factory)); 11518new Sfactory(this,"ArgumentList",new SCreator(ArgumentList_factory));
11519new Sfactory(this,"BinaryExpression_12",new SCreator(BinaryExpression_12_factory));
11186new Sfactory(this,"Event_10",new SCreator(Event_10_factory)); 11520new Sfactory(this,"Event_10",new SCreator(Event_10_factory));
11187new Sfactory(this,"ConstantExpression_1",new SCreator(ConstantExpression_1_factory)); 11521new Sfactory(this,"GlobalFunctionDefinition_2",new SCreator(GlobalFunctionDefinition_2_factory));
11188new Sfactory(this,"Event_12",new SCreator(Event_12_factory)); 11522new Sfactory(this,"Event_12",new SCreator(Event_12_factory));
11189new Sfactory(this,"StateChange_2",new SCreator(StateChange_2_factory)); 11523new Sfactory(this,"StateChange_2",new SCreator(StateChange_2_factory));
11190new Sfactory(this,"Event_17",new SCreator(Event_17_factory)); 11524new Sfactory(this,"Event_17",new SCreator(Event_17_factory));
11191new Sfactory(this,"Event_18",new SCreator(Event_18_factory)); 11525new Sfactory(this,"VoidArgEvent_1",new SCreator(VoidArgEvent_1_factory));
11192new Sfactory(this,"Event_19",new SCreator(Event_19_factory));
11193new Sfactory(this,"BinaryExpression_10",new SCreator(BinaryExpression_10_factory)); 11526new Sfactory(this,"BinaryExpression_10",new SCreator(BinaryExpression_10_factory));
11194new Sfactory(this,"VoidArgEvent_5",new SCreator(VoidArgEvent_5_factory)); 11527new Sfactory(this,"VoidArgEvent_5",new SCreator(VoidArgEvent_5_factory));
11195new Sfactory(this,"VoidArgEvent_7",new SCreator(VoidArgEvent_7_factory)); 11528new Sfactory(this,"VoidArgEvent_7",new SCreator(VoidArgEvent_7_factory));
11529new Sfactory(this,"BinaryExpression_17",new SCreator(BinaryExpression_17_factory));
11196new Sfactory(this,"StateEvent_1",new SCreator(StateEvent_1_factory)); 11530new Sfactory(this,"StateEvent_1",new SCreator(StateEvent_1_factory));
11197new Sfactory(this,"VectorConstant",new SCreator(VectorConstant_factory)); 11531new Sfactory(this,"VectorConstant",new SCreator(VectorConstant_factory));
11198new Sfactory(this,"EmptyStatement_1",new SCreator(EmptyStatement_1_factory)); 11532new Sfactory(this,"IntDeclaration",new SCreator(IntDeclaration_factory));
11199new Sfactory(this,"TypecastExpression_4",new SCreator(TypecastExpression_4_factory)); 11533new Sfactory(this,"IntArgStateEvent",new SCreator(IntArgStateEvent_factory));
11200new Sfactory(this,"TypecastExpression_6",new SCreator(TypecastExpression_6_factory)); 11534new Sfactory(this,"TypecastExpression_6",new SCreator(TypecastExpression_6_factory));
11201new Sfactory(this,"TypecastExpression_7",new SCreator(TypecastExpression_7_factory)); 11535new Sfactory(this,"TypecastExpression_7",new SCreator(TypecastExpression_7_factory));
11202new Sfactory(this,"FunctionCall",new SCreator(FunctionCall_factory)); 11536new Sfactory(this,"FunctionCall",new SCreator(FunctionCall_factory));
11203new Sfactory(this,"Event_27",new SCreator(Event_27_factory));
11204new Sfactory(this,"ListConstant_1",new SCreator(ListConstant_1_factory)); 11537new Sfactory(this,"ListConstant_1",new SCreator(ListConstant_1_factory));
11205new Sfactory(this,"Event_6",new SCreator(Event_6_factory)); 11538new Sfactory(this,"Event_6",new SCreator(Event_6_factory));
11206new Sfactory(this,"Declaration_1",new SCreator(Declaration_1_factory)); 11539new Sfactory(this,"Declaration_1",new SCreator(Declaration_1_factory));
11540new Sfactory(this,"EmptyStatement_1",new SCreator(EmptyStatement_1_factory));
11207new Sfactory(this,"SimpleAssignment_7",new SCreator(SimpleAssignment_7_factory)); 11541new Sfactory(this,"SimpleAssignment_7",new SCreator(SimpleAssignment_7_factory));
11208new Sfactory(this,"ForLoop",new SCreator(ForLoop_factory)); 11542new Sfactory(this,"ForLoop",new SCreator(ForLoop_factory));
11209new Sfactory(this,"ForLoop_2",new SCreator(ForLoop_2_factory)); 11543new Sfactory(this,"ForLoop_2",new SCreator(ForLoop_2_factory));
11210new Sfactory(this,"GlobalFunctionDefinition_1",new SCreator(GlobalFunctionDefinition_1_factory)); 11544new Sfactory(this,"GlobalFunctionDefinition_1",new SCreator(GlobalFunctionDefinition_1_factory));
11211new Sfactory(this,"JumpLabel_1",new SCreator(JumpLabel_1_factory));
11212new Sfactory(this,"IfStatement",new SCreator(IfStatement_factory)); 11545new Sfactory(this,"IfStatement",new SCreator(IfStatement_factory));
11213new Sfactory(this,"ForLoopStatement_1",new SCreator(ForLoopStatement_1_factory)); 11546new Sfactory(this,"ForLoopStatement_1",new SCreator(ForLoopStatement_1_factory));
11214new Sfactory(this,"ForLoopStatement_2",new SCreator(ForLoopStatement_2_factory)); 11547new Sfactory(this,"ForLoopStatement_2",new SCreator(ForLoopStatement_2_factory));
11215new Sfactory(this,"ForLoopStatement_3",new SCreator(ForLoopStatement_3_factory)); 11548new Sfactory(this,"ForLoopStatement_3",new SCreator(ForLoopStatement_3_factory));
11216new Sfactory(this,"ArgumentDeclarationList_4",new SCreator(ArgumentDeclarationList_4_factory)); 11549new Sfactory(this,"ArgumentDeclarationList_4",new SCreator(ArgumentDeclarationList_4_factory));
11217new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory)); 11550new Sfactory(this,"IntArgEvent_1",new SCreator(IntArgEvent_1_factory));
11551new Sfactory(this,"IntArgEvent_2",new SCreator(IntArgEvent_2_factory));
11218new Sfactory(this,"WhileStatement",new SCreator(WhileStatement_factory)); 11552new Sfactory(this,"WhileStatement",new SCreator(WhileStatement_factory));
11219new Sfactory(this,"ForLoop_1",new SCreator(ForLoop_1_factory)); 11553new Sfactory(this,"ForLoop_1",new SCreator(ForLoop_1_factory));
11220new Sfactory(this,"Constant_2",new SCreator(Constant_2_factory)); 11554new Sfactory(this,"Constant_2",new SCreator(Constant_2_factory));
@@ -11249,6 +11583,7 @@ public static object IdentDotExpression_1_factory(Parser yyp) { return new Ident
11249public static object ArgumentList_4_factory(Parser yyp) { return new ArgumentList_4(yyp); } 11583public static object ArgumentList_4_factory(Parser yyp) { return new ArgumentList_4(yyp); }
11250public static object Typename_factory(Parser yyp) { return new Typename(yyp); } 11584public static object Typename_factory(Parser yyp) { return new Typename(yyp); }
11251public static object IfStatement_1_factory(Parser yyp) { return new IfStatement_1(yyp); } 11585public static object IfStatement_1_factory(Parser yyp) { return new IfStatement_1(yyp); }
11586public static object RotationConstant_1_factory(Parser yyp) { return new RotationConstant_1(yyp); }
11252public static object Assignment_factory(Parser yyp) { return new Assignment(yyp); } 11587public static object Assignment_factory(Parser yyp) { return new Assignment(yyp); }
11253public static object CompoundStatement_1_factory(Parser yyp) { return new CompoundStatement_1(yyp); } 11588public static object CompoundStatement_1_factory(Parser yyp) { return new CompoundStatement_1(yyp); }
11254public static object CompoundStatement_2_factory(Parser yyp) { return new CompoundStatement_2(yyp); } 11589public static object CompoundStatement_2_factory(Parser yyp) { return new CompoundStatement_2(yyp); }
@@ -11281,6 +11616,7 @@ public static object States_1_factory(Parser yyp) { return new States_1(yyp); }
11281public static object States_2_factory(Parser yyp) { return new States_2(yyp); } 11616public static object States_2_factory(Parser yyp) { return new States_2(yyp); }
11282public static object FunctionCallExpression_1_factory(Parser yyp) { return new FunctionCallExpression_1(yyp); } 11617public static object FunctionCallExpression_1_factory(Parser yyp) { return new FunctionCallExpression_1(yyp); }
11283public static object ForLoopStatement_factory(Parser yyp) { return new ForLoopStatement(yyp); } 11618public static object ForLoopStatement_factory(Parser yyp) { return new ForLoopStatement(yyp); }
11619public static object IntArgStateEvent_1_factory(Parser yyp) { return new IntArgStateEvent_1(yyp); }
11284public static object DoWhileStatement_1_factory(Parser yyp) { return new DoWhileStatement_1(yyp); } 11620public static object DoWhileStatement_1_factory(Parser yyp) { return new DoWhileStatement_1(yyp); }
11285public static object DoWhileStatement_2_factory(Parser yyp) { return new DoWhileStatement_2(yyp); } 11621public static object DoWhileStatement_2_factory(Parser yyp) { return new DoWhileStatement_2(yyp); }
11286public static object ForLoopStatement_4_factory(Parser yyp) { return new ForLoopStatement_4(yyp); } 11622public static object ForLoopStatement_4_factory(Parser yyp) { return new ForLoopStatement_4(yyp); }
@@ -11293,11 +11629,10 @@ public static object SimpleAssignment_17_factory(Parser yyp) { return new Simple
11293public static object SimpleAssignment_18_factory(Parser yyp) { return new SimpleAssignment_18(yyp); } 11629public static object SimpleAssignment_18_factory(Parser yyp) { return new SimpleAssignment_18(yyp); }
11294public static object JumpStatement_1_factory(Parser yyp) { return new JumpStatement_1(yyp); } 11630public static object JumpStatement_1_factory(Parser yyp) { return new JumpStatement_1(yyp); }
11295public static object GlobalDefinitions_factory(Parser yyp) { return new GlobalDefinitions(yyp); } 11631public static object GlobalDefinitions_factory(Parser yyp) { return new GlobalDefinitions(yyp); }
11632public static object ConstantExpression_1_factory(Parser yyp) { return new ConstantExpression_1(yyp); }
11296public static object VoidArgEvent_4_factory(Parser yyp) { return new VoidArgEvent_4(yyp); } 11633public static object VoidArgEvent_4_factory(Parser yyp) { return new VoidArgEvent_4(yyp); }
11297public static object FunctionCall_1_factory(Parser yyp) { return new FunctionCall_1(yyp); } 11634public static object FunctionCall_1_factory(Parser yyp) { return new FunctionCall_1(yyp); }
11298public static object ArgumentList_3_factory(Parser yyp) { return new ArgumentList_3(yyp); }
11299public static object Assignment_2_factory(Parser yyp) { return new Assignment_2(yyp); } 11635public static object Assignment_2_factory(Parser yyp) { return new Assignment_2(yyp); }
11300public static object VoidArgEvent_1_factory(Parser yyp) { return new VoidArgEvent_1(yyp); }
11301public static object TypecastExpression_1_factory(Parser yyp) { return new TypecastExpression_1(yyp); } 11636public static object TypecastExpression_1_factory(Parser yyp) { return new TypecastExpression_1(yyp); }
11302public static object SimpleAssignment_21_factory(Parser yyp) { return new SimpleAssignment_21(yyp); } 11637public static object SimpleAssignment_21_factory(Parser yyp) { return new SimpleAssignment_21(yyp); }
11303public static object SimpleAssignment_22_factory(Parser yyp) { return new SimpleAssignment_22(yyp); } 11638public static object SimpleAssignment_22_factory(Parser yyp) { return new SimpleAssignment_22(yyp); }
@@ -11312,10 +11647,13 @@ public static object GlobalDefinitions_1_factory(Parser yyp) { return new Global
11312public static object GlobalDefinitions_2_factory(Parser yyp) { return new GlobalDefinitions_2(yyp); } 11647public static object GlobalDefinitions_2_factory(Parser yyp) { return new GlobalDefinitions_2(yyp); }
11313public static object IncrementDecrementExpression_factory(Parser yyp) { return new IncrementDecrementExpression(yyp); } 11648public static object IncrementDecrementExpression_factory(Parser yyp) { return new IncrementDecrementExpression(yyp); }
11314public static object GlobalVariableDeclaration_factory(Parser yyp) { return new GlobalVariableDeclaration(yyp); } 11649public static object GlobalVariableDeclaration_factory(Parser yyp) { return new GlobalVariableDeclaration(yyp); }
11315public static object ArgumentDeclarationList_3_factory(Parser yyp) { return new ArgumentDeclarationList_3(yyp); } 11650public static object IntArgumentDeclarationList_1_factory(Parser yyp) { return new IntArgumentDeclarationList_1(yyp); }
11651public static object IntDeclaration_1_factory(Parser yyp) { return new IntDeclaration_1(yyp); }
11652public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); }
11316public static object Event_11_factory(Parser yyp) { return new Event_11(yyp); } 11653public static object Event_11_factory(Parser yyp) { return new Event_11(yyp); }
11317public static object TypecastExpression_2_factory(Parser yyp) { return new TypecastExpression_2(yyp); } 11654public static object TypecastExpression_2_factory(Parser yyp) { return new TypecastExpression_2(yyp); }
11318public static object TypecastExpression_3_factory(Parser yyp) { return new TypecastExpression_3(yyp); } 11655public static object TypecastExpression_3_factory(Parser yyp) { return new TypecastExpression_3(yyp); }
11656public static object TypecastExpression_4_factory(Parser yyp) { return new TypecastExpression_4(yyp); }
11319public static object TypecastExpression_5_factory(Parser yyp) { return new TypecastExpression_5(yyp); } 11657public static object TypecastExpression_5_factory(Parser yyp) { return new TypecastExpression_5(yyp); }
11320public static object TypecastExpression_8_factory(Parser yyp) { return new TypecastExpression_8(yyp); } 11658public static object TypecastExpression_8_factory(Parser yyp) { return new TypecastExpression_8(yyp); }
11321public static object Constant_1_factory(Parser yyp) { return new Constant_1(yyp); } 11659public static object Constant_1_factory(Parser yyp) { return new Constant_1(yyp); }
@@ -11326,15 +11664,17 @@ public static object BinaryExpression_1_factory(Parser yyp) { return new BinaryE
11326public static object IfStatement_2_factory(Parser yyp) { return new IfStatement_2(yyp); } 11664public static object IfStatement_2_factory(Parser yyp) { return new IfStatement_2(yyp); }
11327public static object IfStatement_3_factory(Parser yyp) { return new IfStatement_3(yyp); } 11665public static object IfStatement_3_factory(Parser yyp) { return new IfStatement_3(yyp); }
11328public static object IfStatement_4_factory(Parser yyp) { return new IfStatement_4(yyp); } 11666public static object IfStatement_4_factory(Parser yyp) { return new IfStatement_4(yyp); }
11329public static object ReturnStatement_factory(Parser yyp) { return new ReturnStatement(yyp); }
11330public static object Event_2_factory(Parser yyp) { return new Event_2(yyp); } 11667public static object Event_2_factory(Parser yyp) { return new Event_2(yyp); }
11668public static object JumpLabel_1_factory(Parser yyp) { return new JumpLabel_1(yyp); }
11331public static object RotationConstant_factory(Parser yyp) { return new RotationConstant(yyp); } 11669public static object RotationConstant_factory(Parser yyp) { return new RotationConstant(yyp); }
11332public static object Statement_12_factory(Parser yyp) { return new Statement_12(yyp); } 11670public static object Statement_12_factory(Parser yyp) { return new Statement_12(yyp); }
11671public static object Statement_13_factory(Parser yyp) { return new Statement_13(yyp); }
11333public static object UnaryExpression_1_factory(Parser yyp) { return new UnaryExpression_1(yyp); } 11672public static object UnaryExpression_1_factory(Parser yyp) { return new UnaryExpression_1(yyp); }
11334public static object UnaryExpression_2_factory(Parser yyp) { return new UnaryExpression_2(yyp); } 11673public static object UnaryExpression_2_factory(Parser yyp) { return new UnaryExpression_2(yyp); }
11335public static object UnaryExpression_3_factory(Parser yyp) { return new UnaryExpression_3(yyp); } 11674public static object UnaryExpression_3_factory(Parser yyp) { return new UnaryExpression_3(yyp); }
11336public static object ArgumentList_1_factory(Parser yyp) { return new ArgumentList_1(yyp); } 11675public static object ArgumentList_1_factory(Parser yyp) { return new ArgumentList_1(yyp); }
11337public static object ArgumentList_2_factory(Parser yyp) { return new ArgumentList_2(yyp); } 11676public static object ArgumentList_2_factory(Parser yyp) { return new ArgumentList_2(yyp); }
11677public static object ArgumentList_3_factory(Parser yyp) { return new ArgumentList_3(yyp); }
11338public static object Constant_factory(Parser yyp) { return new Constant(yyp); } 11678public static object Constant_factory(Parser yyp) { return new Constant(yyp); }
11339public static object State_factory(Parser yyp) { return new State(yyp); } 11679public static object State_factory(Parser yyp) { return new State(yyp); }
11340public static object Event_13_factory(Parser yyp) { return new Event_13(yyp); } 11680public static object Event_13_factory(Parser yyp) { return new Event_13(yyp); }
@@ -11345,15 +11685,14 @@ public static object IncrementDecrementExpression_2_factory(Parser yyp) { return
11345public static object GlobalVariableDeclaration_1_factory(Parser yyp) { return new GlobalVariableDeclaration_1(yyp); } 11685public static object GlobalVariableDeclaration_1_factory(Parser yyp) { return new GlobalVariableDeclaration_1(yyp); }
11346public static object GlobalVariableDeclaration_2_factory(Parser yyp) { return new GlobalVariableDeclaration_2(yyp); } 11686public static object GlobalVariableDeclaration_2_factory(Parser yyp) { return new GlobalVariableDeclaration_2(yyp); }
11347public static object IncrementDecrementExpression_5_factory(Parser yyp) { return new IncrementDecrementExpression_5(yyp); } 11687public static object IncrementDecrementExpression_5_factory(Parser yyp) { return new IncrementDecrementExpression_5(yyp); }
11348public static object GlobalFunctionDefinition_2_factory(Parser yyp) { return new GlobalFunctionDefinition_2(yyp); } 11688public static object ReturnStatement_factory(Parser yyp) { return new ReturnStatement(yyp); }
11349public static object IncrementDecrementExpression_7_factory(Parser yyp) { return new IncrementDecrementExpression_7(yyp); } 11689public static object IncrementDecrementExpression_7_factory(Parser yyp) { return new IncrementDecrementExpression_7(yyp); }
11350public static object IncrementDecrementExpression_8_factory(Parser yyp) { return new IncrementDecrementExpression_8(yyp); } 11690public static object IncrementDecrementExpression_8_factory(Parser yyp) { return new IncrementDecrementExpression_8(yyp); }
11351public static object Assignment_1_factory(Parser yyp) { return new Assignment_1(yyp); } 11691public static object Assignment_1_factory(Parser yyp) { return new Assignment_1(yyp); }
11352public static object Event_21_factory(Parser yyp) { return new Event_21(yyp); } 11692public static object IntArgEvent_9_factory(Parser yyp) { return new IntArgEvent_9(yyp); }
11353public static object Event_22_factory(Parser yyp) { return new Event_22(yyp); } 11693public static object IntArgEvent_10_factory(Parser yyp) { return new IntArgEvent_10(yyp); }
11354public static object CompoundStatement_factory(Parser yyp) { return new CompoundStatement(yyp); } 11694public static object CompoundStatement_factory(Parser yyp) { return new CompoundStatement(yyp); }
11355public static object RotationConstant_1_factory(Parser yyp) { return new RotationConstant_1(yyp); } 11695public static object IntArgumentDeclarationList_factory(Parser yyp) { return new IntArgumentDeclarationList(yyp); }
11356public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); }
11357public static object SimpleAssignment_3_factory(Parser yyp) { return new SimpleAssignment_3(yyp); } 11696public static object SimpleAssignment_3_factory(Parser yyp) { return new SimpleAssignment_3(yyp); }
11358public static object SimpleAssignment_4_factory(Parser yyp) { return new SimpleAssignment_4(yyp); } 11697public static object SimpleAssignment_4_factory(Parser yyp) { return new SimpleAssignment_4(yyp); }
11359public static object Statement_1_factory(Parser yyp) { return new Statement_1(yyp); } 11698public static object Statement_1_factory(Parser yyp) { return new Statement_1(yyp); }
@@ -11380,10 +11719,12 @@ public static object IncrementDecrementExpression_3_factory(Parser yyp) { return
11380public static object IncrementDecrementExpression_4_factory(Parser yyp) { return new IncrementDecrementExpression_4(yyp); } 11719public static object IncrementDecrementExpression_4_factory(Parser yyp) { return new IncrementDecrementExpression_4(yyp); }
11381public static object IncrementDecrementExpression_6_factory(Parser yyp) { return new IncrementDecrementExpression_6(yyp); } 11720public static object IncrementDecrementExpression_6_factory(Parser yyp) { return new IncrementDecrementExpression_6(yyp); }
11382public static object StateEvent_factory(Parser yyp) { return new StateEvent(yyp); } 11721public static object StateEvent_factory(Parser yyp) { return new StateEvent(yyp); }
11383public static object Event_20_factory(Parser yyp) { return new Event_20(yyp); } 11722public static object IntArgEvent_3_factory(Parser yyp) { return new IntArgEvent_3(yyp); }
11384public static object Event_23_factory(Parser yyp) { return new Event_23(yyp); } 11723public static object IntArgEvent_4_factory(Parser yyp) { return new IntArgEvent_4(yyp); }
11385public static object Event_24_factory(Parser yyp) { return new Event_24(yyp); } 11724public static object IntArgEvent_5_factory(Parser yyp) { return new IntArgEvent_5(yyp); }
11386public static object Event_26_factory(Parser yyp) { return new Event_26(yyp); } 11725public static object IntArgEvent_6_factory(Parser yyp) { return new IntArgEvent_6(yyp); }
11726public static object IntArgEvent_7_factory(Parser yyp) { return new IntArgEvent_7(yyp); }
11727public static object IntArgEvent_8_factory(Parser yyp) { return new IntArgEvent_8(yyp); }
11387public static object SimpleAssignment_10_factory(Parser yyp) { return new SimpleAssignment_10(yyp); } 11728public static object SimpleAssignment_10_factory(Parser yyp) { return new SimpleAssignment_10(yyp); }
11388public static object Event_factory(Parser yyp) { return new Event(yyp); } 11729public static object Event_factory(Parser yyp) { return new Event(yyp); }
11389public static object SimpleAssignment_14_factory(Parser yyp) { return new SimpleAssignment_14(yyp); } 11730public static object SimpleAssignment_14_factory(Parser yyp) { return new SimpleAssignment_14(yyp); }
@@ -11391,7 +11732,7 @@ public static object SimpleAssignment_16_factory(Parser yyp) { return new Simple
11391public static object Statement_10_factory(Parser yyp) { return new Statement_10(yyp); } 11732public static object Statement_10_factory(Parser yyp) { return new Statement_10(yyp); }
11392public static object Statement_11_factory(Parser yyp) { return new Statement_11(yyp); } 11733public static object Statement_11_factory(Parser yyp) { return new Statement_11(yyp); }
11393public static object SimpleAssignment_factory(Parser yyp) { return new SimpleAssignment(yyp); } 11734public static object SimpleAssignment_factory(Parser yyp) { return new SimpleAssignment(yyp); }
11394public static object Statement_13_factory(Parser yyp) { return new Statement_13(yyp); } 11735public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); }
11395public static object Event_15_factory(Parser yyp) { return new Event_15(yyp); } 11736public static object Event_15_factory(Parser yyp) { return new Event_15(yyp); }
11396public static object Event_16_factory(Parser yyp) { return new Event_16(yyp); } 11737public static object Event_16_factory(Parser yyp) { return new Event_16(yyp); }
11397public static object SimpleAssignment_20_factory(Parser yyp) { return new SimpleAssignment_20(yyp); } 11738public static object SimpleAssignment_20_factory(Parser yyp) { return new SimpleAssignment_20(yyp); }
@@ -11405,53 +11746,55 @@ public static object StateBody_1_factory(Parser yyp) { return new StateBody_1(yy
11405public static object StatementList_2_factory(Parser yyp) { return new StatementList_2(yyp); } 11746public static object StatementList_2_factory(Parser yyp) { return new StatementList_2(yyp); }
11406public static object StateBody_3_factory(Parser yyp) { return new StateBody_3(yyp); } 11747public static object StateBody_3_factory(Parser yyp) { return new StateBody_3(yyp); }
11407public static object StateBody_4_factory(Parser yyp) { return new StateBody_4(yyp); } 11748public static object StateBody_4_factory(Parser yyp) { return new StateBody_4(yyp); }
11408public static object BinaryExpression_16_factory(Parser yyp) { return new BinaryExpression_16(yyp); } 11749public static object StateBody_5_factory(Parser yyp) { return new StateBody_5(yyp); }
11409public static object BinaryExpression_17_factory(Parser yyp) { return new BinaryExpression_17(yyp); } 11750public static object StateBody_6_factory(Parser yyp) { return new StateBody_6(yyp); }
11410public static object BinaryExpression_18_factory(Parser yyp) { return new BinaryExpression_18(yyp); } 11751public static object BinaryExpression_18_factory(Parser yyp) { return new BinaryExpression_18(yyp); }
11411public static object Event_25_factory(Parser yyp) { return new Event_25(yyp); } 11752public static object ArgumentDeclarationList_3_factory(Parser yyp) { return new ArgumentDeclarationList_3(yyp); }
11412public static object Event_9_factory(Parser yyp) { return new Event_9(yyp); } 11753public static object Event_9_factory(Parser yyp) { return new Event_9(yyp); }
11413public static object Statement_factory(Parser yyp) { return new Statement(yyp); } 11754public static object Statement_factory(Parser yyp) { return new Statement(yyp); }
11414public static object JumpStatement_factory(Parser yyp) { return new JumpStatement(yyp); } 11755public static object JumpStatement_factory(Parser yyp) { return new JumpStatement(yyp); }
11415public static object BinaryExpression_11_factory(Parser yyp) { return new BinaryExpression_11(yyp); } 11756public static object BinaryExpression_11_factory(Parser yyp) { return new BinaryExpression_11(yyp); }
11416public static object BinaryExpression_12_factory(Parser yyp) { return new BinaryExpression_12(yyp); } 11757public static object IntArgEvent_factory(Parser yyp) { return new IntArgEvent(yyp); }
11417public static object BinaryExpression_13_factory(Parser yyp) { return new BinaryExpression_13(yyp); } 11758public static object BinaryExpression_13_factory(Parser yyp) { return new BinaryExpression_13(yyp); }
11418public static object BinaryExpression_14_factory(Parser yyp) { return new BinaryExpression_14(yyp); } 11759public static object BinaryExpression_14_factory(Parser yyp) { return new BinaryExpression_14(yyp); }
11419public static object BinaryExpression_15_factory(Parser yyp) { return new BinaryExpression_15(yyp); } 11760public static object BinaryExpression_15_factory(Parser yyp) { return new BinaryExpression_15(yyp); }
11761public static object BinaryExpression_16_factory(Parser yyp) { return new BinaryExpression_16(yyp); }
11420public static object BinaryExpression_6_factory(Parser yyp) { return new BinaryExpression_6(yyp); } 11762public static object BinaryExpression_6_factory(Parser yyp) { return new BinaryExpression_6(yyp); }
11421public static object BinaryExpression_7_factory(Parser yyp) { return new BinaryExpression_7(yyp); } 11763public static object BinaryExpression_7_factory(Parser yyp) { return new BinaryExpression_7(yyp); }
11422public static object ArgumentList_factory(Parser yyp) { return new ArgumentList(yyp); } 11764public static object ArgumentList_factory(Parser yyp) { return new ArgumentList(yyp); }
11765public static object BinaryExpression_12_factory(Parser yyp) { return new BinaryExpression_12(yyp); }
11423public static object Event_10_factory(Parser yyp) { return new Event_10(yyp); } 11766public static object Event_10_factory(Parser yyp) { return new Event_10(yyp); }
11424public static object ConstantExpression_1_factory(Parser yyp) { return new ConstantExpression_1(yyp); } 11767public static object GlobalFunctionDefinition_2_factory(Parser yyp) { return new GlobalFunctionDefinition_2(yyp); }
11425public static object Event_12_factory(Parser yyp) { return new Event_12(yyp); } 11768public static object Event_12_factory(Parser yyp) { return new Event_12(yyp); }
11426public static object StateChange_2_factory(Parser yyp) { return new StateChange_2(yyp); } 11769public static object StateChange_2_factory(Parser yyp) { return new StateChange_2(yyp); }
11427public static object Event_17_factory(Parser yyp) { return new Event_17(yyp); } 11770public static object Event_17_factory(Parser yyp) { return new Event_17(yyp); }
11428public static object Event_18_factory(Parser yyp) { return new Event_18(yyp); } 11771public static object VoidArgEvent_1_factory(Parser yyp) { return new VoidArgEvent_1(yyp); }
11429public static object Event_19_factory(Parser yyp) { return new Event_19(yyp); }
11430public static object BinaryExpression_10_factory(Parser yyp) { return new BinaryExpression_10(yyp); } 11772public static object BinaryExpression_10_factory(Parser yyp) { return new BinaryExpression_10(yyp); }
11431public static object VoidArgEvent_5_factory(Parser yyp) { return new VoidArgEvent_5(yyp); } 11773public static object VoidArgEvent_5_factory(Parser yyp) { return new VoidArgEvent_5(yyp); }
11432public static object VoidArgEvent_7_factory(Parser yyp) { return new VoidArgEvent_7(yyp); } 11774public static object VoidArgEvent_7_factory(Parser yyp) { return new VoidArgEvent_7(yyp); }
11775public static object BinaryExpression_17_factory(Parser yyp) { return new BinaryExpression_17(yyp); }
11433public static object StateEvent_1_factory(Parser yyp) { return new StateEvent_1(yyp); } 11776public static object StateEvent_1_factory(Parser yyp) { return new StateEvent_1(yyp); }
11434public static object VectorConstant_factory(Parser yyp) { return new VectorConstant(yyp); } 11777public static object VectorConstant_factory(Parser yyp) { return new VectorConstant(yyp); }
11435public static object EmptyStatement_1_factory(Parser yyp) { return new EmptyStatement_1(yyp); } 11778public static object IntDeclaration_factory(Parser yyp) { return new IntDeclaration(yyp); }
11436public static object TypecastExpression_4_factory(Parser yyp) { return new TypecastExpression_4(yyp); } 11779public static object IntArgStateEvent_factory(Parser yyp) { return new IntArgStateEvent(yyp); }
11437public static object TypecastExpression_6_factory(Parser yyp) { return new TypecastExpression_6(yyp); } 11780public static object TypecastExpression_6_factory(Parser yyp) { return new TypecastExpression_6(yyp); }
11438public static object TypecastExpression_7_factory(Parser yyp) { return new TypecastExpression_7(yyp); } 11781public static object TypecastExpression_7_factory(Parser yyp) { return new TypecastExpression_7(yyp); }
11439public static object FunctionCall_factory(Parser yyp) { return new FunctionCall(yyp); } 11782public static object FunctionCall_factory(Parser yyp) { return new FunctionCall(yyp); }
11440public static object Event_27_factory(Parser yyp) { return new Event_27(yyp); }
11441public static object ListConstant_1_factory(Parser yyp) { return new ListConstant_1(yyp); } 11783public static object ListConstant_1_factory(Parser yyp) { return new ListConstant_1(yyp); }
11442public static object Event_6_factory(Parser yyp) { return new Event_6(yyp); } 11784public static object Event_6_factory(Parser yyp) { return new Event_6(yyp); }
11443public static object Declaration_1_factory(Parser yyp) { return new Declaration_1(yyp); } 11785public static object Declaration_1_factory(Parser yyp) { return new Declaration_1(yyp); }
11786public static object EmptyStatement_1_factory(Parser yyp) { return new EmptyStatement_1(yyp); }
11444public static object SimpleAssignment_7_factory(Parser yyp) { return new SimpleAssignment_7(yyp); } 11787public static object SimpleAssignment_7_factory(Parser yyp) { return new SimpleAssignment_7(yyp); }
11445public static object ForLoop_factory(Parser yyp) { return new ForLoop(yyp); } 11788public static object ForLoop_factory(Parser yyp) { return new ForLoop(yyp); }
11446public static object ForLoop_2_factory(Parser yyp) { return new ForLoop_2(yyp); } 11789public static object ForLoop_2_factory(Parser yyp) { return new ForLoop_2(yyp); }
11447public static object GlobalFunctionDefinition_1_factory(Parser yyp) { return new GlobalFunctionDefinition_1(yyp); } 11790public static object GlobalFunctionDefinition_1_factory(Parser yyp) { return new GlobalFunctionDefinition_1(yyp); }
11448public static object JumpLabel_1_factory(Parser yyp) { return new JumpLabel_1(yyp); }
11449public static object IfStatement_factory(Parser yyp) { return new IfStatement(yyp); } 11791public static object IfStatement_factory(Parser yyp) { return new IfStatement(yyp); }
11450public static object ForLoopStatement_1_factory(Parser yyp) { return new ForLoopStatement_1(yyp); } 11792public static object ForLoopStatement_1_factory(Parser yyp) { return new ForLoopStatement_1(yyp); }
11451public static object ForLoopStatement_2_factory(Parser yyp) { return new ForLoopStatement_2(yyp); } 11793public static object ForLoopStatement_2_factory(Parser yyp) { return new ForLoopStatement_2(yyp); }
11452public static object ForLoopStatement_3_factory(Parser yyp) { return new ForLoopStatement_3(yyp); } 11794public static object ForLoopStatement_3_factory(Parser yyp) { return new ForLoopStatement_3(yyp); }
11453public static object ArgumentDeclarationList_4_factory(Parser yyp) { return new ArgumentDeclarationList_4(yyp); } 11795public static object ArgumentDeclarationList_4_factory(Parser yyp) { return new ArgumentDeclarationList_4(yyp); }
11454public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); } 11796public static object IntArgEvent_1_factory(Parser yyp) { return new IntArgEvent_1(yyp); }
11797public static object IntArgEvent_2_factory(Parser yyp) { return new IntArgEvent_2(yyp); }
11455public static object WhileStatement_factory(Parser yyp) { return new WhileStatement(yyp); } 11798public static object WhileStatement_factory(Parser yyp) { return new WhileStatement(yyp); }
11456public static object ForLoop_1_factory(Parser yyp) { return new ForLoop_1(yyp); } 11799public static object ForLoop_1_factory(Parser yyp) { return new ForLoop_1(yyp); }
11457public static object Constant_2_factory(Parser yyp) { return new Constant_2(yyp); } 11800public static object Constant_2_factory(Parser yyp) { return new Constant_2(yyp); }