aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-12-21 00:37:56 +0000
committerJustin Clark-Casey (justincc)2013-12-21 00:37:56 +0000
commita5e478054723cb28403e9d2f4fef1ac306e673c1 (patch)
tree7029357378cc80f2102d7c397111c71556e57c82 /OpenSim/Region/ScriptEngine
parentAdd lsl event argument checking for attach and on_rez (diff)
downloadopensim-SC_OLD-a5e478054723cb28403e9d2f4fef1ac306e673c1.zip
opensim-SC_OLD-a5e478054723cb28403e9d2f4fef1ac306e673c1.tar.gz
opensim-SC_OLD-a5e478054723cb28403e9d2f4fef1ac306e673c1.tar.bz2
opensim-SC_OLD-a5e478054723cb28403e9d2f4fef1ac306e673c1.tar.xz
Add lsl event arg checking for at_rot_target
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs16
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs18205
2 files changed, 9306 insertions, 8915 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs
index 4e27c00..854b4bf 100644
--- a/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs
@@ -260,6 +260,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.Tests
260 TestVectorArgEvent("land_collision_end"); 260 TestVectorArgEvent("land_collision_end");
261 } 261 }
262 262
263 [Test]
264 public void TestAtRotTargetEvent()
265 {
266 TestHelpers.InMethod();
267// TestHelpers.EnableLogging();
268
269 TestIntRotRotArgEvent("at_rot_target");
270 }
263 271
264 private void TestIntArgEvent(string eventName) 272 private void TestIntArgEvent(string eventName)
265 { 273 {
@@ -285,6 +293,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.Tests
285 TestCompile("default { " + eventName + "(vector v, vector w) {{}} }", true); 293 TestCompile("default { " + eventName + "(vector v, vector w) {{}} }", true);
286 } 294 }
287 295
296 private void TestIntRotRotArgEvent(string eventName)
297 {
298 TestCompile("default { " + eventName + "(integer n, rotation r, rotation s) {} }", false);
299 TestCompile("default { " + eventName + "{{}} }", true);
300 TestCompile("default { " + eventName + "(string s) {{}} }", true);
301 TestCompile("default { " + eventName + "(integer n, rotation r, rotation s, rotation t) {{}} }", true);
302 }
303
288 private void TestCompile(string script, bool expectException) 304 private void TestCompile(string script, bool expectException)
289 { 305 {
290 bool gotException = false; 306 bool gotException = false;
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs
index 6f44c87..a4938a0 100644
--- a/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs
@@ -162,44 +162,69 @@ public class VectorArgStateEvent : StateEvent{
162public override string yyname { get { return "VectorArgStateEvent"; }} 162public override string yyname { get { return "VectorArgStateEvent"; }}
163public override int yynum { get { return 107; }} 163public override int yynum { get { return 107; }}
164public VectorArgStateEvent(Parser yyp):base(yyp){}} 164public VectorArgStateEvent(Parser yyp):base(yyp){}}
165//%+ArgumentDeclarationList+108 165//%+IntRotRotArgStateEvent+108
166public class IntRotRotArgStateEvent : StateEvent{
167 public IntRotRotArgStateEvent (Parser yyp, string name , IntRotRotArgumentDeclarationList adl , CompoundStatement cs ):base(((LSLSyntax
168)yyp), name , adl , cs ){}
169
170public override string yyname { get { return "IntRotRotArgStateEvent"; }}
171public override int yynum { get { return 108; }}
172public IntRotRotArgStateEvent(Parser yyp):base(yyp){}}
173//%+ArgumentDeclarationList+109
166public class ArgumentDeclarationList : SYMBOL{ 174public class ArgumentDeclarationList : SYMBOL{
167 public ArgumentDeclarationList (Parser yyp, Declaration d ):base(((LSLSyntax 175 public ArgumentDeclarationList (Parser yyp, Declaration d ):base(((LSLSyntax
168)yyp)){ kids . Add ( d ); 176)yyp)){ kids . Add ( d );
169} 177}
178 public ArgumentDeclarationList (Parser yyp, Declaration d , Declaration d2 ):base(((LSLSyntax
179)yyp)){ kids . Add ( d );
180 kids . Add ( d2 );
181}
182 public ArgumentDeclarationList (Parser yyp, Declaration d , Declaration d2 , Declaration d3 ):base(((LSLSyntax
183)yyp)){ kids . Add ( d );
184 kids . Add ( d2 );
185 kids . Add ( d3 );
186}
170 public ArgumentDeclarationList (Parser yyp, ArgumentDeclarationList adl , Declaration d ):base(((LSLSyntax 187 public ArgumentDeclarationList (Parser yyp, ArgumentDeclarationList adl , Declaration d ):base(((LSLSyntax
171)yyp)){ while (0< adl . kids . Count ) kids . Add ( adl . kids . Pop ()); 188)yyp)){ while (0< adl . kids . Count ) kids . Add ( adl . kids . Pop ());
172 kids . Add ( d ); 189 kids . Add ( d );
173} 190}
174 191
175public override string yyname { get { return "ArgumentDeclarationList"; }} 192public override string yyname { get { return "ArgumentDeclarationList"; }}
176public override int yynum { get { return 108; }} 193public override int yynum { get { return 109; }}
177public ArgumentDeclarationList(Parser yyp):base(yyp){}} 194public ArgumentDeclarationList(Parser yyp):base(yyp){}}
178//%+KeyArgumentDeclarationList+109 195//%+KeyArgumentDeclarationList+110
179public class KeyArgumentDeclarationList : ArgumentDeclarationList{ 196public class KeyArgumentDeclarationList : ArgumentDeclarationList{
180 public KeyArgumentDeclarationList (Parser yyp, KeyDeclaration d ):base(((LSLSyntax 197 public KeyArgumentDeclarationList (Parser yyp, KeyDeclaration d ):base(((LSLSyntax
181)yyp), d ){} 198)yyp), d ){}
182 199
183public override string yyname { get { return "KeyArgumentDeclarationList"; }} 200public override string yyname { get { return "KeyArgumentDeclarationList"; }}
184public override int yynum { get { return 109; }} 201public override int yynum { get { return 110; }}
185public KeyArgumentDeclarationList(Parser yyp):base(yyp){}} 202public KeyArgumentDeclarationList(Parser yyp):base(yyp){}}
186//%+IntArgumentDeclarationList+110 203//%+IntArgumentDeclarationList+111
187public class IntArgumentDeclarationList : ArgumentDeclarationList{ 204public class IntArgumentDeclarationList : ArgumentDeclarationList{
188 public IntArgumentDeclarationList (Parser yyp, IntDeclaration d ):base(((LSLSyntax 205 public IntArgumentDeclarationList (Parser yyp, IntDeclaration d ):base(((LSLSyntax
189)yyp), d ){} 206)yyp), d ){}
190 207
191public override string yyname { get { return "IntArgumentDeclarationList"; }} 208public override string yyname { get { return "IntArgumentDeclarationList"; }}
192public override int yynum { get { return 110; }} 209public override int yynum { get { return 111; }}
193public IntArgumentDeclarationList(Parser yyp):base(yyp){}} 210public IntArgumentDeclarationList(Parser yyp):base(yyp){}}
194//%+VectorArgumentDeclarationList+111 211//%+VectorArgumentDeclarationList+112
195public class VectorArgumentDeclarationList : ArgumentDeclarationList{ 212public class VectorArgumentDeclarationList : ArgumentDeclarationList{
196 public VectorArgumentDeclarationList (Parser yyp, VectorDeclaration d ):base(((LSLSyntax 213 public VectorArgumentDeclarationList (Parser yyp, VectorDeclaration d ):base(((LSLSyntax
197)yyp), d ){} 214)yyp), d ){}
198 215
199public override string yyname { get { return "VectorArgumentDeclarationList"; }} 216public override string yyname { get { return "VectorArgumentDeclarationList"; }}
200public override int yynum { get { return 111; }} 217public override int yynum { get { return 112; }}
201public VectorArgumentDeclarationList(Parser yyp):base(yyp){}} 218public VectorArgumentDeclarationList(Parser yyp):base(yyp){}}
202//%+Declaration+112 219//%+IntRotRotArgumentDeclarationList+113
220public class IntRotRotArgumentDeclarationList : ArgumentDeclarationList{
221 public IntRotRotArgumentDeclarationList (Parser yyp, Declaration d1 , Declaration d2 , Declaration d3 ):base(((LSLSyntax
222)yyp), d1 , d2 , d3 ){}
223
224public override string yyname { get { return "IntRotRotArgumentDeclarationList"; }}
225public override int yynum { get { return 113; }}
226public IntRotRotArgumentDeclarationList(Parser yyp):base(yyp){}}
227//%+Declaration+114
203public class Declaration : SYMBOL{ 228public class Declaration : SYMBOL{
204 private string m_datatype ; 229 private string m_datatype ;
205 private string m_id ; 230 private string m_id ;
@@ -219,33 +244,41 @@ public class Declaration : SYMBOL{
219} 244}
220 245
221public override string yyname { get { return "Declaration"; }} 246public override string yyname { get { return "Declaration"; }}
222public override int yynum { get { return 112; }} 247public override int yynum { get { return 114; }}
223public Declaration(Parser yyp):base(yyp){}} 248public Declaration(Parser yyp):base(yyp){}}
224//%+KeyDeclaration+113 249//%+KeyDeclaration+115
225public class KeyDeclaration : Declaration{ 250public class KeyDeclaration : Declaration{
226 public KeyDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax 251 public KeyDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax
227)yyp), type , id ){} 252)yyp), type , id ){}
228 253
229public override string yyname { get { return "KeyDeclaration"; }} 254public override string yyname { get { return "KeyDeclaration"; }}
230public override int yynum { get { return 113; }} 255public override int yynum { get { return 115; }}
231public KeyDeclaration(Parser yyp):base(yyp){}} 256public KeyDeclaration(Parser yyp):base(yyp){}}
232//%+IntDeclaration+114 257//%+IntDeclaration+116
233public class IntDeclaration : Declaration{ 258public class IntDeclaration : Declaration{
234 public IntDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax 259 public IntDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax
235)yyp), type , id ){} 260)yyp), type , id ){}
236 261
237public override string yyname { get { return "IntDeclaration"; }} 262public override string yyname { get { return "IntDeclaration"; }}
238public override int yynum { get { return 114; }} 263public override int yynum { get { return 116; }}
239public IntDeclaration(Parser yyp):base(yyp){}} 264public IntDeclaration(Parser yyp):base(yyp){}}
240//%+VectorDeclaration+115 265//%+VectorDeclaration+117
241public class VectorDeclaration : Declaration{ 266public class VectorDeclaration : Declaration{
242 public VectorDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax 267 public VectorDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax
243)yyp), type , id ){} 268)yyp), type , id ){}
244 269
245public override string yyname { get { return "VectorDeclaration"; }} 270public override string yyname { get { return "VectorDeclaration"; }}
246public override int yynum { get { return 115; }} 271public override int yynum { get { return 117; }}
247public VectorDeclaration(Parser yyp):base(yyp){}} 272public VectorDeclaration(Parser yyp):base(yyp){}}
248//%+Typename+116 273//%+RotDeclaration+118
274public class RotDeclaration : Declaration{
275 public RotDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax
276)yyp), type , id ){}
277
278public override string yyname { get { return "RotDeclaration"; }}
279public override int yynum { get { return 118; }}
280public RotDeclaration(Parser yyp):base(yyp){}}
281//%+Typename+119
249public class Typename : SYMBOL{ 282public class Typename : SYMBOL{
250 public string yytext ; 283 public string yytext ;
251 public Typename (Parser yyp, string text ):base(((LSLSyntax 284 public Typename (Parser yyp, string text ):base(((LSLSyntax
@@ -253,9 +286,9 @@ public class Typename : SYMBOL{
253} 286}
254 287
255public override string yyname { get { return "Typename"; }} 288public override string yyname { get { return "Typename"; }}
256public override int yynum { get { return 116; }} 289public override int yynum { get { return 119; }}
257public Typename(Parser yyp):base(yyp){}} 290public Typename(Parser yyp):base(yyp){}}
258//%+Event+117 291//%+Event+120
259public class Event : SYMBOL{ 292public class Event : SYMBOL{
260 public string yytext ; 293 public string yytext ;
261 public Event (Parser yyp, string text ):base(((LSLSyntax 294 public Event (Parser yyp, string text ):base(((LSLSyntax
@@ -263,41 +296,49 @@ public class Event : SYMBOL{
263} 296}
264 297
265public override string yyname { get { return "Event"; }} 298public override string yyname { get { return "Event"; }}
266public override int yynum { get { return 117; }} 299public override int yynum { get { return 120; }}
267public Event(Parser yyp):base(yyp){}} 300public Event(Parser yyp):base(yyp){}}
268//%+VoidArgEvent+118 301//%+VoidArgEvent+121
269public class VoidArgEvent : Event{ 302public class VoidArgEvent : Event{
270 public VoidArgEvent (Parser yyp, string text ):base(((LSLSyntax 303 public VoidArgEvent (Parser yyp, string text ):base(((LSLSyntax
271)yyp), text ){} 304)yyp), text ){}
272 305
273public override string yyname { get { return "VoidArgEvent"; }} 306public override string yyname { get { return "VoidArgEvent"; }}
274public override int yynum { get { return 118; }} 307public override int yynum { get { return 121; }}
275public VoidArgEvent(Parser yyp):base(yyp){}} 308public VoidArgEvent(Parser yyp):base(yyp){}}
276//%+KeyArgEvent+119 309//%+KeyArgEvent+122
277public class KeyArgEvent : Event{ 310public class KeyArgEvent : Event{
278 public KeyArgEvent (Parser yyp, string text ):base(((LSLSyntax 311 public KeyArgEvent (Parser yyp, string text ):base(((LSLSyntax
279)yyp), text ){} 312)yyp), text ){}
280 313
281public override string yyname { get { return "KeyArgEvent"; }} 314public override string yyname { get { return "KeyArgEvent"; }}
282public override int yynum { get { return 119; }} 315public override int yynum { get { return 122; }}
283public KeyArgEvent(Parser yyp):base(yyp){}} 316public KeyArgEvent(Parser yyp):base(yyp){}}
284//%+IntArgEvent+120 317//%+IntArgEvent+123
285public class IntArgEvent : Event{ 318public class IntArgEvent : Event{
286 public IntArgEvent (Parser yyp, string text ):base(((LSLSyntax 319 public IntArgEvent (Parser yyp, string text ):base(((LSLSyntax
287)yyp), text ){} 320)yyp), text ){}
288 321
289public override string yyname { get { return "IntArgEvent"; }} 322public override string yyname { get { return "IntArgEvent"; }}
290public override int yynum { get { return 120; }} 323public override int yynum { get { return 123; }}
291public IntArgEvent(Parser yyp):base(yyp){}} 324public IntArgEvent(Parser yyp):base(yyp){}}
292//%+VectorArgEvent+121 325//%+VectorArgEvent+124
293public class VectorArgEvent : Event{ 326public class VectorArgEvent : Event{
294 public VectorArgEvent (Parser yyp, string text ):base(((LSLSyntax 327 public VectorArgEvent (Parser yyp, string text ):base(((LSLSyntax
295)yyp), text ){} 328)yyp), text ){}
296 329
297public override string yyname { get { return "VectorArgEvent"; }} 330public override string yyname { get { return "VectorArgEvent"; }}
298public override int yynum { get { return 121; }} 331public override int yynum { get { return 124; }}
299public VectorArgEvent(Parser yyp):base(yyp){}} 332public VectorArgEvent(Parser yyp):base(yyp){}}
300//%+CompoundStatement+122 333//%+IntRotRotArgEvent+125
334public class IntRotRotArgEvent : Event{
335 public IntRotRotArgEvent (Parser yyp, string text ):base(((LSLSyntax
336)yyp), text ){}
337
338public override string yyname { get { return "IntRotRotArgEvent"; }}
339public override int yynum { get { return 125; }}
340public IntRotRotArgEvent(Parser yyp):base(yyp){}}
341//%+CompoundStatement+126
301public class CompoundStatement : SYMBOL{ 342public class CompoundStatement : SYMBOL{
302 public CompoundStatement (Parser yyp):base(((LSLSyntax 343 public CompoundStatement (Parser yyp):base(((LSLSyntax
303)yyp)){} 344)yyp)){}
@@ -306,9 +347,9 @@ public class CompoundStatement : SYMBOL{
306} 347}
307 348
308public override string yyname { get { return "CompoundStatement"; }} 349public override string yyname { get { return "CompoundStatement"; }}
309public override int yynum { get { return 122; }} 350public override int yynum { get { return 126; }}
310} 351}
311//%+StatementList+123 352//%+StatementList+127
312public class StatementList : SYMBOL{ 353public class StatementList : SYMBOL{
313 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 ()); 354 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 ());
314 else kids . Add ( s ); 355 else kids . Add ( s );
@@ -322,9 +363,9 @@ public class StatementList : SYMBOL{
322} 363}
323 364
324public override string yyname { get { return "StatementList"; }} 365public override string yyname { get { return "StatementList"; }}
325public override int yynum { get { return 123; }} 366public override int yynum { get { return 127; }}
326public StatementList(Parser yyp):base(yyp){}} 367public StatementList(Parser yyp):base(yyp){}}
327//%+Statement+124 368//%+Statement+128
328public class Statement : SYMBOL{ 369public class Statement : SYMBOL{
329 public Statement (Parser yyp, Declaration d ):base(((LSLSyntax 370 public Statement (Parser yyp, Declaration d ):base(((LSLSyntax
330)yyp)){ kids . Add ( d ); 371)yyp)){ kids . Add ( d );
@@ -370,9 +411,9 @@ public class Statement : SYMBOL{
370} 411}
371 412
372public override string yyname { get { return "Statement"; }} 413public override string yyname { get { return "Statement"; }}
373public override int yynum { get { return 124; }} 414public override int yynum { get { return 128; }}
374public Statement(Parser yyp):base(yyp){}} 415public Statement(Parser yyp):base(yyp){}}
375//%+EmptyStatement+125 416//%+EmptyStatement+129
376public class EmptyStatement : SYMBOL{ 417public class EmptyStatement : SYMBOL{
377 public EmptyStatement (Parser yyp):base(((LSLSyntax 418 public EmptyStatement (Parser yyp):base(((LSLSyntax
378)yyp)){} 419)yyp)){}
@@ -380,9 +421,9 @@ public class EmptyStatement : SYMBOL{
380} 421}
381 422
382public override string yyname { get { return "EmptyStatement"; }} 423public override string yyname { get { return "EmptyStatement"; }}
383public override int yynum { get { return 125; }} 424public override int yynum { get { return 129; }}
384} 425}
385//%+Assignment+126 426//%+Assignment+130
386public class Assignment : SYMBOL{ 427public class Assignment : SYMBOL{
387 protected string m_assignmentType ; 428 protected string m_assignmentType ;
388 public Assignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax 429 public Assignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax
@@ -402,9 +443,9 @@ public class Assignment : SYMBOL{
402} 443}
403 444
404public override string yyname { get { return "Assignment"; }} 445public override string yyname { get { return "Assignment"; }}
405public override int yynum { get { return 126; }} 446public override int yynum { get { return 130; }}
406public Assignment(Parser yyp):base(yyp){}} 447public Assignment(Parser yyp):base(yyp){}}
407//%+SimpleAssignment+127 448//%+SimpleAssignment+131
408public class SimpleAssignment : Assignment{ 449public class SimpleAssignment : Assignment{
409 public SimpleAssignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax 450 public SimpleAssignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax
410)yyp)){ m_assignmentType = assignmentType ; 451)yyp)){ m_assignmentType = assignmentType ;
@@ -414,9 +455,9 @@ public class SimpleAssignment : Assignment{
414} 455}
415 456
416public override string yyname { get { return "SimpleAssignment"; }} 457public override string yyname { get { return "SimpleAssignment"; }}
417public override int yynum { get { return 127; }} 458public override int yynum { get { return 131; }}
418public SimpleAssignment(Parser yyp):base(yyp){}} 459public SimpleAssignment(Parser yyp):base(yyp){}}
419//%+ReturnStatement+128 460//%+ReturnStatement+132
420public class ReturnStatement : SYMBOL{ 461public class ReturnStatement : SYMBOL{
421 public ReturnStatement (Parser yyp):base(((LSLSyntax 462 public ReturnStatement (Parser yyp):base(((LSLSyntax
422)yyp)){} 463)yyp)){}
@@ -426,9 +467,9 @@ public class ReturnStatement : SYMBOL{
426} 467}
427 468
428public override string yyname { get { return "ReturnStatement"; }} 469public override string yyname { get { return "ReturnStatement"; }}
429public override int yynum { get { return 128; }} 470public override int yynum { get { return 132; }}
430} 471}
431//%+JumpLabel+129 472//%+JumpLabel+133
432public class JumpLabel : SYMBOL{ 473public class JumpLabel : SYMBOL{
433 private string m_labelName ; 474 private string m_labelName ;
434 public JumpLabel (Parser yyp, string labelName ):base(((LSLSyntax 475 public JumpLabel (Parser yyp, string labelName ):base(((LSLSyntax
@@ -441,9 +482,9 @@ public class JumpLabel : SYMBOL{
441} 482}
442 483
443public override string yyname { get { return "JumpLabel"; }} 484public override string yyname { get { return "JumpLabel"; }}
444public override int yynum { get { return 129; }} 485public override int yynum { get { return 133; }}
445public JumpLabel(Parser yyp):base(yyp){}} 486public JumpLabel(Parser yyp):base(yyp){}}
446//%+JumpStatement+130 487//%+JumpStatement+134
447public class JumpStatement : SYMBOL{ 488public class JumpStatement : SYMBOL{
448 private string m_targetName ; 489 private string m_targetName ;
449 public JumpStatement (Parser yyp, string targetName ):base(((LSLSyntax 490 public JumpStatement (Parser yyp, string targetName ):base(((LSLSyntax
@@ -456,9 +497,9 @@ public class JumpStatement : SYMBOL{
456} 497}
457 498
458public override string yyname { get { return "JumpStatement"; }} 499public override string yyname { get { return "JumpStatement"; }}
459public override int yynum { get { return 130; }} 500public override int yynum { get { return 134; }}
460public JumpStatement(Parser yyp):base(yyp){}} 501public JumpStatement(Parser yyp):base(yyp){}}
461//%+StateChange+131 502//%+StateChange+135
462public class StateChange : SYMBOL{ 503public class StateChange : SYMBOL{
463 private string m_newState ; 504 private string m_newState ;
464 public StateChange (Parser yyp, string newState ):base(((LSLSyntax 505 public StateChange (Parser yyp, string newState ):base(((LSLSyntax
@@ -469,9 +510,9 @@ public class StateChange : SYMBOL{
469} 510}
470 511
471public override string yyname { get { return "StateChange"; }} 512public override string yyname { get { return "StateChange"; }}
472public override int yynum { get { return 131; }} 513public override int yynum { get { return 135; }}
473public StateChange(Parser yyp):base(yyp){}} 514public StateChange(Parser yyp):base(yyp){}}
474//%+IfStatement+132 515//%+IfStatement+136
475public class IfStatement : SYMBOL{ 516public class IfStatement : SYMBOL{
476 private void AddStatement ( Statement s ){ if (0< s . kids . Count && s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); 517 private void AddStatement ( Statement s ){ if (0< s . kids . Count && s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ());
477 else kids . Add ( s ); 518 else kids . Add ( s );
@@ -488,9 +529,9 @@ public class IfStatement : SYMBOL{
488} 529}
489 530
490public override string yyname { get { return "IfStatement"; }} 531public override string yyname { get { return "IfStatement"; }}
491public override int yynum { get { return 132; }} 532public override int yynum { get { return 136; }}
492public IfStatement(Parser yyp):base(yyp){}} 533public IfStatement(Parser yyp):base(yyp){}}
493//%+WhileStatement+133 534//%+WhileStatement+137
494public class WhileStatement : SYMBOL{ 535public class WhileStatement : SYMBOL{
495 public WhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax 536 public WhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax
496)yyp)){ kids . Add ( s ); 537)yyp)){ kids . Add ( s );
@@ -499,9 +540,9 @@ public class WhileStatement : SYMBOL{
499} 540}
500 541
501public override string yyname { get { return "WhileStatement"; }} 542public override string yyname { get { return "WhileStatement"; }}
502public override int yynum { get { return 133; }} 543public override int yynum { get { return 137; }}
503public WhileStatement(Parser yyp):base(yyp){}} 544public WhileStatement(Parser yyp):base(yyp){}}
504//%+DoWhileStatement+134 545//%+DoWhileStatement+138
505public class DoWhileStatement : SYMBOL{ 546public class DoWhileStatement : SYMBOL{
506 public DoWhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax 547 public DoWhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax
507)yyp)){ if (0< st . kids . Count && st . kids . Top is CompoundStatement ) kids . Add ( st . kids . Pop ()); 548)yyp)){ if (0< st . kids . Count && st . kids . Top is CompoundStatement ) kids . Add ( st . kids . Pop ());
@@ -510,9 +551,9 @@ public class DoWhileStatement : SYMBOL{
510} 551}
511 552
512public override string yyname { get { return "DoWhileStatement"; }} 553public override string yyname { get { return "DoWhileStatement"; }}
513public override int yynum { get { return 134; }} 554public override int yynum { get { return 138; }}
514public DoWhileStatement(Parser yyp):base(yyp){}} 555public DoWhileStatement(Parser yyp):base(yyp){}}
515//%+ForLoop+135 556//%+ForLoop+139
516public class ForLoop : SYMBOL{ 557public class ForLoop : SYMBOL{
517 public ForLoop (Parser yyp, ForLoopStatement flsa , Expression e , ForLoopStatement flsb , Statement s ):base(((LSLSyntax 558 public ForLoop (Parser yyp, ForLoopStatement flsa , Expression e , ForLoopStatement flsb , Statement s ):base(((LSLSyntax
518)yyp)){ kids . Add ( flsa ); 559)yyp)){ kids . Add ( flsa );
@@ -523,9 +564,9 @@ public class ForLoop : SYMBOL{
523} 564}
524 565
525public override string yyname { get { return "ForLoop"; }} 566public override string yyname { get { return "ForLoop"; }}
526public override int yynum { get { return 135; }} 567public override int yynum { get { return 139; }}
527public ForLoop(Parser yyp):base(yyp){}} 568public ForLoop(Parser yyp):base(yyp){}}
528//%+ForLoopStatement+136 569//%+ForLoopStatement+140
529public class ForLoopStatement : SYMBOL{ 570public class ForLoopStatement : SYMBOL{
530 public ForLoopStatement (Parser yyp, Expression e ):base(((LSLSyntax 571 public ForLoopStatement (Parser yyp, Expression e ):base(((LSLSyntax
531)yyp)){ kids . Add ( e ); 572)yyp)){ kids . Add ( e );
@@ -543,9 +584,9 @@ public class ForLoopStatement : SYMBOL{
543} 584}
544 585
545public override string yyname { get { return "ForLoopStatement"; }} 586public override string yyname { get { return "ForLoopStatement"; }}
546public override int yynum { get { return 136; }} 587public override int yynum { get { return 140; }}
547public ForLoopStatement(Parser yyp):base(yyp){}} 588public ForLoopStatement(Parser yyp):base(yyp){}}
548//%+FunctionCall+137 589//%+FunctionCall+141
549public class FunctionCall : SYMBOL{ 590public class FunctionCall : SYMBOL{
550 private string m_id ; 591 private string m_id ;
551 public FunctionCall (Parser yyp, string id , ArgumentList al ):base(((LSLSyntax 592 public FunctionCall (Parser yyp, string id , ArgumentList al ):base(((LSLSyntax
@@ -559,9 +600,9 @@ public class FunctionCall : SYMBOL{
559} 600}
560 601
561public override string yyname { get { return "FunctionCall"; }} 602public override string yyname { get { return "FunctionCall"; }}
562public override int yynum { get { return 137; }} 603public override int yynum { get { return 141; }}
563public FunctionCall(Parser yyp):base(yyp){}} 604public FunctionCall(Parser yyp):base(yyp){}}
564//%+ArgumentList+138 605//%+ArgumentList+142
565public class ArgumentList : SYMBOL{ 606public class ArgumentList : SYMBOL{
566 public ArgumentList (Parser yyp, Argument a ):base(((LSLSyntax 607 public ArgumentList (Parser yyp, Argument a ):base(((LSLSyntax
567)yyp)){ AddArgument ( a ); 608)yyp)){ AddArgument ( a );
@@ -575,14 +616,14 @@ public class ArgumentList : SYMBOL{
575} 616}
576 617
577public override string yyname { get { return "ArgumentList"; }} 618public override string yyname { get { return "ArgumentList"; }}
578public override int yynum { get { return 138; }} 619public override int yynum { get { return 142; }}
579public ArgumentList(Parser yyp):base(yyp){}} 620public ArgumentList(Parser yyp):base(yyp){}}
580//%+Argument+139 621//%+Argument+143
581public class Argument : SYMBOL{ 622public class Argument : SYMBOL{
582public override string yyname { get { return "Argument"; }} 623public override string yyname { get { return "Argument"; }}
583public override int yynum { get { return 139; }} 624public override int yynum { get { return 143; }}
584public Argument(Parser yyp):base(yyp){}} 625public Argument(Parser yyp):base(yyp){}}
585//%+ExpressionArgument+140 626//%+ExpressionArgument+144
586public class ExpressionArgument : Argument{ 627public class ExpressionArgument : Argument{
587 public ExpressionArgument (Parser yyp, Expression e ):base(((LSLSyntax 628 public ExpressionArgument (Parser yyp, Expression e ):base(((LSLSyntax
588)yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); 629)yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ());
@@ -590,9 +631,9 @@ public class ExpressionArgument : Argument{
590} 631}
591 632
592public override string yyname { get { return "ExpressionArgument"; }} 633public override string yyname { get { return "ExpressionArgument"; }}
593public override int yynum { get { return 140; }} 634public override int yynum { get { return 144; }}
594public ExpressionArgument(Parser yyp):base(yyp){}} 635public ExpressionArgument(Parser yyp):base(yyp){}}
595//%+Constant+141 636//%+Constant+145
596public class Constant : SYMBOL{ 637public class Constant : SYMBOL{
597 private string m_type ; 638 private string m_type ;
598 private string m_val ; 639 private string m_val ;
@@ -614,9 +655,9 @@ public class Constant : SYMBOL{
614} 655}
615 656
616public override string yyname { get { return "Constant"; }} 657public override string yyname { get { return "Constant"; }}
617public override int yynum { get { return 141; }} 658public override int yynum { get { return 145; }}
618public Constant(Parser yyp):base(yyp){}} 659public Constant(Parser yyp):base(yyp){}}
619//%+VectorConstant+142 660//%+VectorConstant+146
620public class VectorConstant : Constant{ 661public class VectorConstant : Constant{
621 public VectorConstant (Parser yyp, Expression valX , Expression valY , Expression valZ ):base(((LSLSyntax 662 public VectorConstant (Parser yyp, Expression valX , Expression valY , Expression valZ ):base(((LSLSyntax
622)yyp),"vector", null ){ kids . Add ( valX ); 663)yyp),"vector", null ){ kids . Add ( valX );
@@ -625,9 +666,9 @@ public class VectorConstant : Constant{
625} 666}
626 667
627public override string yyname { get { return "VectorConstant"; }} 668public override string yyname { get { return "VectorConstant"; }}
628public override int yynum { get { return 142; }} 669public override int yynum { get { return 146; }}
629public VectorConstant(Parser yyp):base(yyp){}} 670public VectorConstant(Parser yyp):base(yyp){}}
630//%+RotationConstant+143 671//%+RotationConstant+147
631public class RotationConstant : Constant{ 672public class RotationConstant : Constant{
632 public RotationConstant (Parser yyp, Expression valX , Expression valY , Expression valZ , Expression valS ):base(((LSLSyntax 673 public RotationConstant (Parser yyp, Expression valX , Expression valY , Expression valZ , Expression valS ):base(((LSLSyntax
633)yyp),"rotation", null ){ kids . Add ( valX ); 674)yyp),"rotation", null ){ kids . Add ( valX );
@@ -637,36 +678,36 @@ public class RotationConstant : Constant{
637} 678}
638 679
639public override string yyname { get { return "RotationConstant"; }} 680public override string yyname { get { return "RotationConstant"; }}
640public override int yynum { get { return 143; }} 681public override int yynum { get { return 147; }}
641public RotationConstant(Parser yyp):base(yyp){}} 682public RotationConstant(Parser yyp):base(yyp){}}
642//%+ListConstant+144 683//%+ListConstant+148
643public class ListConstant : Constant{ 684public class ListConstant : Constant{
644 public ListConstant (Parser yyp, ArgumentList al ):base(((LSLSyntax 685 public ListConstant (Parser yyp, ArgumentList al ):base(((LSLSyntax
645)yyp),"list", null ){ kids . Add ( al ); 686)yyp),"list", null ){ kids . Add ( al );
646} 687}
647 688
648public override string yyname { get { return "ListConstant"; }} 689public override string yyname { get { return "ListConstant"; }}
649public override int yynum { get { return 144; }} 690public override int yynum { get { return 148; }}
650public ListConstant(Parser yyp):base(yyp){}} 691public ListConstant(Parser yyp):base(yyp){}}
651//%+Expression+145 692//%+Expression+149
652public class Expression : SYMBOL{ 693public class Expression : SYMBOL{
653 protected void AddExpression ( Expression e ){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); 694 protected void AddExpression ( Expression e ){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ());
654 else kids . Add ( e ); 695 else kids . Add ( e );
655} 696}
656 697
657public override string yyname { get { return "Expression"; }} 698public override string yyname { get { return "Expression"; }}
658public override int yynum { get { return 145; }} 699public override int yynum { get { return 149; }}
659public Expression(Parser yyp):base(yyp){}} 700public Expression(Parser yyp):base(yyp){}}
660//%+ConstantExpression+146 701//%+ConstantExpression+150
661public class ConstantExpression : Expression{ 702public class ConstantExpression : Expression{
662 public ConstantExpression (Parser yyp, Constant c ):base(((LSLSyntax 703 public ConstantExpression (Parser yyp, Constant c ):base(((LSLSyntax
663)yyp)){ kids . Add ( c ); 704)yyp)){ kids . Add ( c );
664} 705}
665 706
666public override string yyname { get { return "ConstantExpression"; }} 707public override string yyname { get { return "ConstantExpression"; }}
667public override int yynum { get { return 146; }} 708public override int yynum { get { return 150; }}
668public ConstantExpression(Parser yyp):base(yyp){}} 709public ConstantExpression(Parser yyp):base(yyp){}}
669//%+IdentExpression+147 710//%+IdentExpression+151
670public class IdentExpression : Expression{ 711public class IdentExpression : Expression{
671 protected string m_name ; 712 protected string m_name ;
672 public IdentExpression (Parser yyp, string name ):base(((LSLSyntax 713 public IdentExpression (Parser yyp, string name ):base(((LSLSyntax
@@ -679,9 +720,9 @@ public class IdentExpression : Expression{
679} 720}
680 721
681public override string yyname { get { return "IdentExpression"; }} 722public override string yyname { get { return "IdentExpression"; }}
682public override int yynum { get { return 147; }} 723public override int yynum { get { return 151; }}
683public IdentExpression(Parser yyp):base(yyp){}} 724public IdentExpression(Parser yyp):base(yyp){}}
684//%+IdentDotExpression+148 725//%+IdentDotExpression+152
685public class IdentDotExpression : IdentExpression{ 726public class IdentDotExpression : IdentExpression{
686 private string m_member ; 727 private string m_member ;
687 public IdentDotExpression (Parser yyp, string name , string member ):base(((LSLSyntax 728 public IdentDotExpression (Parser yyp, string name , string member ):base(((LSLSyntax
@@ -695,18 +736,18 @@ public class IdentDotExpression : IdentExpression{
695} 736}
696 737
697public override string yyname { get { return "IdentDotExpression"; }} 738public override string yyname { get { return "IdentDotExpression"; }}
698public override int yynum { get { return 148; }} 739public override int yynum { get { return 152; }}
699public IdentDotExpression(Parser yyp):base(yyp){}} 740public IdentDotExpression(Parser yyp):base(yyp){}}
700//%+FunctionCallExpression+149 741//%+FunctionCallExpression+153
701public class FunctionCallExpression : Expression{ 742public class FunctionCallExpression : Expression{
702 public FunctionCallExpression (Parser yyp, FunctionCall fc ):base(((LSLSyntax 743 public FunctionCallExpression (Parser yyp, FunctionCall fc ):base(((LSLSyntax
703)yyp)){ kids . Add ( fc ); 744)yyp)){ kids . Add ( fc );
704} 745}
705 746
706public override string yyname { get { return "FunctionCallExpression"; }} 747public override string yyname { get { return "FunctionCallExpression"; }}
707public override int yynum { get { return 149; }} 748public override int yynum { get { return 153; }}
708public FunctionCallExpression(Parser yyp):base(yyp){}} 749public FunctionCallExpression(Parser yyp):base(yyp){}}
709//%+BinaryExpression+150 750//%+BinaryExpression+154
710public class BinaryExpression : Expression{ 751public class BinaryExpression : Expression{
711 private string m_expressionSymbol ; 752 private string m_expressionSymbol ;
712 public BinaryExpression (Parser yyp, Expression lhs , Expression rhs , string expressionSymbol ):base(((LSLSyntax 753 public BinaryExpression (Parser yyp, Expression lhs , Expression rhs , string expressionSymbol ):base(((LSLSyntax
@@ -721,9 +762,9 @@ public class BinaryExpression : Expression{
721} 762}
722 763
723public override string yyname { get { return "BinaryExpression"; }} 764public override string yyname { get { return "BinaryExpression"; }}
724public override int yynum { get { return 150; }} 765public override int yynum { get { return 154; }}
725public BinaryExpression(Parser yyp):base(yyp){}} 766public BinaryExpression(Parser yyp):base(yyp){}}
726//%+UnaryExpression+151 767//%+UnaryExpression+155
727public class UnaryExpression : Expression{ 768public class UnaryExpression : Expression{
728 private string m_unarySymbol ; 769 private string m_unarySymbol ;
729 public UnaryExpression (Parser yyp, string unarySymbol , Expression e ):base(((LSLSyntax 770 public UnaryExpression (Parser yyp, string unarySymbol , Expression e ):base(((LSLSyntax
@@ -737,9 +778,9 @@ public class UnaryExpression : Expression{
737} 778}
738 779
739public override string yyname { get { return "UnaryExpression"; }} 780public override string yyname { get { return "UnaryExpression"; }}
740public override int yynum { get { return 151; }} 781public override int yynum { get { return 155; }}
741public UnaryExpression(Parser yyp):base(yyp){}} 782public UnaryExpression(Parser yyp):base(yyp){}}
742//%+TypecastExpression+152 783//%+TypecastExpression+156
743public class TypecastExpression : Expression{ 784public class TypecastExpression : Expression{
744 private string m_typecastType ; 785 private string m_typecastType ;
745 public TypecastExpression (Parser yyp, string typecastType , SYMBOL rhs ):base(((LSLSyntax 786 public TypecastExpression (Parser yyp, string typecastType , SYMBOL rhs ):base(((LSLSyntax
@@ -753,18 +794,18 @@ public class TypecastExpression : Expression{
753} 794}
754 795
755public override string yyname { get { return "TypecastExpression"; }} 796public override string yyname { get { return "TypecastExpression"; }}
756public override int yynum { get { return 152; }} 797public override int yynum { get { return 156; }}
757public TypecastExpression(Parser yyp):base(yyp){}} 798public TypecastExpression(Parser yyp):base(yyp){}}
758//%+ParenthesisExpression+153 799//%+ParenthesisExpression+157
759public class ParenthesisExpression : Expression{ 800public class ParenthesisExpression : Expression{
760 public ParenthesisExpression (Parser yyp, SYMBOL s ):base(((LSLSyntax 801 public ParenthesisExpression (Parser yyp, SYMBOL s ):base(((LSLSyntax
761)yyp)){ kids . Add ( s ); 802)yyp)){ kids . Add ( s );
762} 803}
763 804
764public override string yyname { get { return "ParenthesisExpression"; }} 805public override string yyname { get { return "ParenthesisExpression"; }}
765public override int yynum { get { return 153; }} 806public override int yynum { get { return 157; }}
766public ParenthesisExpression(Parser yyp):base(yyp){}} 807public ParenthesisExpression(Parser yyp):base(yyp){}}
767//%+IncrementDecrementExpression+154 808//%+IncrementDecrementExpression+158
768public class IncrementDecrementExpression : Expression{ 809public class IncrementDecrementExpression : Expression{
769 private string m_name ; 810 private string m_name ;
770 private string m_operation ; 811 private string m_operation ;
@@ -792,7 +833,7 @@ public class IncrementDecrementExpression : Expression{
792} 833}
793 834
794public override string yyname { get { return "IncrementDecrementExpression"; }} 835public override string yyname { get { return "IncrementDecrementExpression"; }}
795public override int yynum { get { return 154; }} 836public override int yynum { get { return 158; }}
796public IncrementDecrementExpression(Parser yyp):base(yyp){}} 837public IncrementDecrementExpression(Parser yyp):base(yyp){}}
797 838
798public class LSLProgramRoot_1 : LSLProgramRoot { 839public class LSLProgramRoot_1 : LSLProgramRoot {
@@ -952,6 +993,18 @@ public class StateBody_10 : StateBody {
952 ((VectorArgStateEvent)(yyq.StackAt(0).m_value)) 993 ((VectorArgStateEvent)(yyq.StackAt(0).m_value))
953 ){}} 994 ){}}
954 995
996public class StateBody_11 : StateBody {
997 public StateBody_11(Parser yyq):base(yyq,
998 ((IntRotRotArgStateEvent)(yyq.StackAt(0).m_value))
999 ){}}
1000
1001public class StateBody_12 : StateBody {
1002 public StateBody_12(Parser yyq):base(yyq,
1003 ((StateBody)(yyq.StackAt(1).m_value))
1004 ,
1005 ((IntRotRotArgStateEvent)(yyq.StackAt(0).m_value))
1006 ){}}
1007
955public class StateEvent_1 : StateEvent { 1008public class StateEvent_1 : StateEvent {
956 public StateEvent_1(Parser yyq):base(yyq, 1009 public StateEvent_1(Parser yyq):base(yyq,
957 ((Event)(yyq.StackAt(4).m_value)) 1010 ((Event)(yyq.StackAt(4).m_value))
@@ -995,6 +1048,15 @@ public class VectorArgStateEvent_1 : VectorArgStateEvent {
995 ((CompoundStatement)(yyq.StackAt(0).m_value)) 1048 ((CompoundStatement)(yyq.StackAt(0).m_value))
996 ){}} 1049 ){}}
997 1050
1051public class IntRotRotArgStateEvent_1 : IntRotRotArgStateEvent {
1052 public IntRotRotArgStateEvent_1(Parser yyq):base(yyq,
1053 ((IntRotRotArgEvent)(yyq.StackAt(4).m_value))
1054 .yytext,
1055 ((IntRotRotArgumentDeclarationList)(yyq.StackAt(2).m_value))
1056 ,
1057 ((CompoundStatement)(yyq.StackAt(0).m_value))
1058 ){}}
1059
998public class ArgumentDeclarationList_1 : ArgumentDeclarationList { 1060public class ArgumentDeclarationList_1 : ArgumentDeclarationList {
999 public ArgumentDeclarationList_1(Parser yyq):base(yyq, 1061 public ArgumentDeclarationList_1(Parser yyq):base(yyq,
1000 ((Declaration)(yyq.StackAt(0).m_value)) 1062 ((Declaration)(yyq.StackAt(0).m_value))
@@ -1022,6 +1084,15 @@ public class VectorArgumentDeclarationList_1 : VectorArgumentDeclarationList {
1022 ((VectorDeclaration)(yyq.StackAt(0).m_value)) 1084 ((VectorDeclaration)(yyq.StackAt(0).m_value))
1023 ){}} 1085 ){}}
1024 1086
1087public class IntRotRotArgumentDeclarationList_1 : IntRotRotArgumentDeclarationList {
1088 public IntRotRotArgumentDeclarationList_1(Parser yyq):base(yyq,
1089 ((IntDeclaration)(yyq.StackAt(4).m_value))
1090 ,
1091 ((RotDeclaration)(yyq.StackAt(2).m_value))
1092 ,
1093 ((RotDeclaration)(yyq.StackAt(0).m_value))
1094 ){}}
1095
1025public class Declaration_1 : Declaration { 1096public class Declaration_1 : Declaration {
1026 public Declaration_1(Parser yyq):base(yyq, 1097 public Declaration_1(Parser yyq):base(yyq,
1027 ((Typename)(yyq.StackAt(1).m_value)) 1098 ((Typename)(yyq.StackAt(1).m_value))
@@ -1050,6 +1121,13 @@ public class VectorDeclaration_1 : VectorDeclaration {
1050 ((IDENT)(yyq.StackAt(0).m_value)) 1121 ((IDENT)(yyq.StackAt(0).m_value))
1051 .yytext){}} 1122 .yytext){}}
1052 1123
1124public class RotDeclaration_1 : RotDeclaration {
1125 public RotDeclaration_1(Parser yyq):base(yyq,
1126 ((ROTATION_TYPE)(yyq.StackAt(1).m_value))
1127 .yytext,
1128 ((IDENT)(yyq.StackAt(0).m_value))
1129 .yytext){}}
1130
1053public class CompoundStatement_1 : CompoundStatement { 1131public class CompoundStatement_1 : CompoundStatement {
1054 public CompoundStatement_1(Parser yyq):base(yyq){}} 1132 public CompoundStatement_1(Parser yyq):base(yyq){}}
1055 1133
@@ -2010,56 +2088,51 @@ public class Typename_7 : Typename {
2010 2088
2011public class Event_1 : Event { 2089public class Event_1 : Event {
2012 public Event_1(Parser yyq):base(yyq, 2090 public Event_1(Parser yyq):base(yyq,
2013 ((AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value)) 2091 ((AT_TARGET_EVENT)(yyq.StackAt(0).m_value))
2014 .yytext){}} 2092 .yytext){}}
2015 2093
2016public class Event_2 : Event { 2094public class Event_2 : Event {
2017 public Event_2(Parser yyq):base(yyq, 2095 public Event_2(Parser yyq):base(yyq,
2018 ((AT_TARGET_EVENT)(yyq.StackAt(0).m_value)) 2096 ((CONTROL_EVENT)(yyq.StackAt(0).m_value))
2019 .yytext){}} 2097 .yytext){}}
2020 2098
2021public class Event_3 : Event { 2099public class Event_3 : Event {
2022 public Event_3(Parser yyq):base(yyq, 2100 public Event_3(Parser yyq):base(yyq,
2023 ((CONTROL_EVENT)(yyq.StackAt(0).m_value)) 2101 ((DATASERVER_EVENT)(yyq.StackAt(0).m_value))
2024 .yytext){}} 2102 .yytext){}}
2025 2103
2026public class Event_4 : Event { 2104public class Event_4 : Event {
2027 public Event_4(Parser yyq):base(yyq, 2105 public Event_4(Parser yyq):base(yyq,
2028 ((DATASERVER_EVENT)(yyq.StackAt(0).m_value)) 2106 ((EMAIL_EVENT)(yyq.StackAt(0).m_value))
2029 .yytext){}} 2107 .yytext){}}
2030 2108
2031public class Event_5 : Event { 2109public class Event_5 : Event {
2032 public Event_5(Parser yyq):base(yyq, 2110 public Event_5(Parser yyq):base(yyq,
2033 ((EMAIL_EVENT)(yyq.StackAt(0).m_value)) 2111 ((HTTP_RESPONSE_EVENT)(yyq.StackAt(0).m_value))
2034 .yytext){}} 2112 .yytext){}}
2035 2113
2036public class Event_6 : Event { 2114public class Event_6 : Event {
2037 public Event_6(Parser yyq):base(yyq, 2115 public Event_6(Parser yyq):base(yyq,
2038 ((HTTP_RESPONSE_EVENT)(yyq.StackAt(0).m_value)) 2116 ((LINK_MESSAGE_EVENT)(yyq.StackAt(0).m_value))
2039 .yytext){}} 2117 .yytext){}}
2040 2118
2041public class Event_7 : Event { 2119public class Event_7 : Event {
2042 public Event_7(Parser yyq):base(yyq, 2120 public Event_7(Parser yyq):base(yyq,
2043 ((LINK_MESSAGE_EVENT)(yyq.StackAt(0).m_value)) 2121 ((LISTEN_EVENT)(yyq.StackAt(0).m_value))
2044 .yytext){}} 2122 .yytext){}}
2045 2123
2046public class Event_8 : Event { 2124public class Event_8 : Event {
2047 public Event_8(Parser yyq):base(yyq, 2125 public Event_8(Parser yyq):base(yyq,
2048 ((LISTEN_EVENT)(yyq.StackAt(0).m_value)) 2126 ((MONEY_EVENT)(yyq.StackAt(0).m_value))
2049 .yytext){}} 2127 .yytext){}}
2050 2128
2051public class Event_9 : Event { 2129public class Event_9 : Event {
2052 public Event_9(Parser yyq):base(yyq, 2130 public Event_9(Parser yyq):base(yyq,
2053 ((MONEY_EVENT)(yyq.StackAt(0).m_value)) 2131 ((REMOTE_DATA_EVENT)(yyq.StackAt(0).m_value))
2054 .yytext){}} 2132 .yytext){}}
2055 2133
2056public class Event_10 : Event { 2134public class Event_10 : Event {
2057 public Event_10(Parser yyq):base(yyq, 2135 public Event_10(Parser yyq):base(yyq,
2058 ((REMOTE_DATA_EVENT)(yyq.StackAt(0).m_value))
2059 .yytext){}}
2060
2061public class Event_11 : Event {
2062 public Event_11(Parser yyq):base(yyq,
2063 ((HTTP_REQUEST_EVENT)(yyq.StackAt(0).m_value)) 2136 ((HTTP_REQUEST_EVENT)(yyq.StackAt(0).m_value))
2064 .yytext){}} 2137 .yytext){}}
2065 2138
@@ -2177,6 +2250,11 @@ public class VectorArgEvent_3 : VectorArgEvent {
2177 public VectorArgEvent_3(Parser yyq):base(yyq, 2250 public VectorArgEvent_3(Parser yyq):base(yyq,
2178 ((LAND_COLLISION_START_EVENT)(yyq.StackAt(0).m_value)) 2251 ((LAND_COLLISION_START_EVENT)(yyq.StackAt(0).m_value))
2179 .yytext){}} 2252 .yytext){}}
2253
2254public class IntRotRotArgEvent_1 : IntRotRotArgEvent {
2255 public IntRotRotArgEvent_1(Parser yyq):base(yyq,
2256 ((AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value))
2257 .yytext){}}
2180public class yyLSLSyntax 2258public class yyLSLSyntax
2181: YyParser { 2259: YyParser {
2182 public override object Action(Parser yyq,SYMBOL yysym, int yyact) { 2260 public override object Action(Parser yyq,SYMBOL yysym, int yyact) {
@@ -2209,9 +2287,9 @@ public yyLSLSyntax
220997,0,109,0,82, 228797,0,109,0,82,
22100,111,0,111,0, 22880,111,0,111,0,
2211116,0,1,96,1, 2289116,0,1,96,1,
22122,104,18,1,2777, 22902,104,18,1,2799,
2213102,2,0,105,5, 2291102,2,0,105,5,
2214356,1,0,106,18, 2292370,1,0,106,18,
22151,0,0,2,0, 22931,0,0,2,0,
22161,1,107,18,1, 22941,1,107,18,1,
22171,108,20,109,4, 22951,108,20,109,4,
@@ -2272,7 +2350,7 @@ public yyLSLSyntax
2272121,0,112,0,101, 2350121,0,112,0,101,
22730,110,0,97,0, 23510,110,0,97,0,
2274109,0,101,0,1, 2352109,0,101,0,1,
2275116,1,2,2,0, 2353119,1,2,2,0,
22761,9,131,18,1, 23541,9,131,18,1,
22779,132,20,133,4, 23559,132,20,133,4,
227810,73,0,68,0, 235610,73,0,68,0,
@@ -2286,529 +2364,510 @@ public yyLSLSyntax
228665,0,82,0,69, 236465,0,82,0,69,
22870,78,0,1,16, 23650,78,0,1,16,
22881,1,2,0,1, 23661,1,2,0,1,
228918,137,18,1,18, 23672796,137,18,1,2796,
2290129,2,0,1,19, 2368138,20,139,4,50,
2291138,18,1,19,132, 236971,0,108,0,111,
22922,0,1,20,139, 23700,98,0,97,0,
229318,1,20,140,20, 2371108,0,86,0,97,
2294141,4,46,65,0, 23720,114,0,105,0,
2295114,0,103,0,117, 237397,0,98,0,108,
22960,109,0,101,0, 23740,101,0,68,0,
2297110,0,116,0,68, 2375101,0,99,0,108,
22980,101,0,99,0, 23760,97,0,114,0,
2299108,0,97,0,114, 237797,0,116,0,105,
23000,97,0,116,0, 23780,111,0,110,0,
2301105,0,111,0,110, 23791,98,1,2,2,
23020,76,0,105,0, 23800,1,2797,140,18,
2303115,0,116,0,1, 23811,2797,141,20,142,
2304108,1,2,2,0, 23824,48,71,0,108,
23051,21,142,18,1, 23830,111,0,98,0,
230621,143,20,144,4, 238497,0,108,0,70,
230710,67,0,79,0, 23850,117,0,110,0,
230877,0,77,0,65, 238699,0,116,0,105,
23090,1,14,1,1, 23870,111,0,110,0,
23102,0,1,1694,145, 238868,0,101,0,102,
231118,1,1694,146,20, 23890,105,0,110,0,
2312147,4,32,70,0, 2390105,0,116,0,105,
2313111,0,114,0,76, 23910,111,0,110,0,
23140,111,0,111,0, 23921,99,1,2,2,
2315112,0,83,0,116, 23930,1,2798,143,18,
23160,97,0,116,0, 23941,2798,138,2,0,
2317101,0,109,0,101, 23951,2799,104,1,2800,
23180,110,0,116,0, 2396144,18,1,2800,145,
23191,136,1,2,2, 239723,146,4,6,69,
23200,1,1695,148,18, 23980,79,0,70,0,
23211,1695,143,2,0, 23991,2,1,6,2,
23221,2645,149,18,1, 24000,1,18,147,18,
23232645,150,20,151,4, 24011,18,129,2,0,
232418,83,0,116,0, 24021,19,148,18,1,
232597,0,116,0,101, 240319,132,2,0,1,
23260,66,0,111,0, 240420,149,18,1,20,
2327100,0,121,0,1, 2405150,20,151,4,46,
2328102,1,2,2,0, 240665,0,114,0,103,
23291,30,152,18,1, 24070,117,0,109,0,
233030,153,20,154,4, 2408101,0,110,0,116,
233122,68,0,101,0, 24090,68,0,101,0,
233299,0,108,0,97, 241099,0,108,0,97,
23330,114,0,97,0, 24110,114,0,97,0,
2334116,0,105,0,111, 2412116,0,105,0,111,
23350,110,0,1,112, 24130,110,0,76,0,
2414105,0,115,0,116,
24150,1,109,1,2,
24162,0,1,21,152,
241718,1,21,153,20,
2418154,4,10,67,0,
241979,0,77,0,77,
24200,65,0,1,14,
24211,1,2,0,1,
24221694,155,18,1,1694,
2423156,20,157,4,32,
242470,0,111,0,114,
24250,76,0,111,0,
2426111,0,112,0,83,
24270,116,0,97,0,
2428116,0,101,0,109,
24290,101,0,110,0,
2430116,0,1,140,1,
24312,2,0,1,1695,
2432158,18,1,1695,153,
24332,0,1,30,159,
243418,1,30,160,20,
2435161,4,22,68,0,
2436101,0,99,0,108,
24370,97,0,114,0,
243897,0,116,0,105,
24390,111,0,110,0,
24401,114,1,2,2,
24410,1,31,162,18,
24421,31,163,20,164,
24434,22,82,0,73,
24440,71,0,72,0,
244584,0,95,0,80,
24460,65,0,82,0,
244769,0,78,0,1,
244817,1,1,2,0,
24491,32,165,18,1,
245032,166,20,167,4,
245120,76,0,69,0,
245270,0,84,0,95,
24530,66,0,82,0,
245465,0,67,0,69,
24550,1,12,1,1,
24562,0,1,1114,168,
245718,1,1114,132,2,
24580,1,2735,169,18,
24591,2735,163,2,0,
24601,1152,170,18,1,
24611152,171,20,172,4,
246232,83,0,105,0,
2463109,0,112,0,108,
24640,101,0,65,0,
2465115,0,115,0,105,
24660,103,0,110,0,
2467109,0,101,0,110,
24680,116,0,1,131,
23361,2,2,0,1, 24691,2,2,0,1,
233731,155,18,1,31, 24701117,173,18,1,1117,
2338156,20,157,4,22, 2471174,20,175,4,28,
247280,0,69,0,82,
24730,67,0,69,0,
247478,0,84,0,95,
24750,69,0,81,0,
247685,0,65,0,76,
24770,83,0,1,10,
24781,1,2,0,1,
247940,176,18,1,40,
2480132,2,0,1,41,
2481177,18,1,41,135,
24822,0,1,42,178,
248318,1,42,179,20,
2484180,4,20,69,0,
2485120,0,112,0,114,
24860,101,0,115,0,
2487115,0,105,0,111,
24880,110,0,1,149,
24891,2,2,0,1,
249043,181,18,1,43,
2491182,20,183,4,22,
233982,0,73,0,71, 249282,0,73,0,71,
23400,72,0,84,0, 24930,72,0,84,0,
234195,0,80,0,65, 249495,0,83,0,72,
24950,73,0,70,0,
249684,0,1,41,1,
24971,2,0,1,44,
2498184,18,1,44,132,
24992,0,1,1159,185,
250018,1,1159,179,2,
25010,1,46,186,18,
25021,46,187,20,188,
25034,12,80,0,69,
25040,82,0,73,0,
250579,0,68,0,1,
250624,1,1,2,0,
25071,47,189,18,1,
250847,132,2,0,1,
250948,190,18,1,48,
2510191,20,192,4,18,
251168,0,69,0,67,
23420,82,0,69,0, 25120,82,0,69,0,
234378,0,1,17,1, 251377,0,69,0,78,
23441,2,0,1,32, 25140,84,0,1,5,
2345158,18,1,32,159,
234620,160,4,20,76,
23470,69,0,70,0,
234884,0,95,0,66,
23490,82,0,65,0,
235067,0,69,0,1,
235112,1,1,2,0,
23521,1114,161,18,1,
23531114,132,2,0,1,
23541152,162,18,1,1152,
2355163,20,164,4,32,
235683,0,105,0,109,
23570,112,0,108,0,
2358101,0,65,0,115,
23590,115,0,105,0,
2360103,0,110,0,109,
23610,101,0,110,0,
2362116,0,1,127,1,
23632,2,0,1,1117,
2364165,18,1,1117,166,
236520,167,4,28,80,
23660,69,0,82,0,
236767,0,69,0,78,
23680,84,0,95,0,
236969,0,81,0,85,
23700,65,0,76,0,
237183,0,1,10,1,
23721,2,0,1,40,
2373168,18,1,40,132,
23742,0,1,41,169,
237518,1,41,135,2,
23760,1,42,170,18,
23771,42,171,20,172,
23784,20,69,0,120,
23790,112,0,114,0,
2380101,0,115,0,115,
23810,105,0,111,0,
2382110,0,1,145,1,
23832,2,0,1,43,
2384173,18,1,43,174,
238520,175,4,22,82,
23860,73,0,71,0,
238772,0,84,0,95,
23880,83,0,72,0,
238973,0,70,0,84,
23900,1,41,1,1,
23912,0,1,44,176,
239218,1,44,132,2,
23930,1,1159,177,18,
23941,1159,171,2,0,
23951,46,178,18,1,
239646,179,20,180,4,
239712,80,0,69,0,
239882,0,73,0,79,
23990,68,0,1,24,
24001,1,2,0,1, 25151,1,2,0,1,
240147,181,18,1,47, 251649,193,18,1,49,
2402132,2,0,1,48, 2517194,20,195,4,18,
2403182,18,1,48,183, 251873,0,78,0,67,
240420,184,4,18,68, 25190,82,0,69,0,
24050,69,0,67,0, 252077,0,69,0,78,
240682,0,69,0,77, 25210,84,0,1,4,
24070,69,0,78,0, 25221,1,2,0,1,
240884,0,1,5,1, 252350,196,18,1,50,
24091,2,0,1,49, 2524191,2,0,1,51,
2410185,18,1,49,186, 2525197,18,1,51,194,
241120,187,4,18,73, 25262,0,1,52,198,
24120,78,0,67,0, 252718,1,52,135,2,
241382,0,69,0,77, 25280,1,2281,199,18,
24140,69,0,78,0, 25291,2281,171,2,0,
241584,0,1,4,1, 25301,1730,200,18,1,
24161,2,0,1,50, 25311730,171,2,0,1,
2417188,18,1,50,183, 25321731,201,18,1,1731,
24182,0,1,51,189, 2533202,20,203,4,18,
241918,1,51,186,2,
24200,1,52,190,18,
24211,52,135,2,0,
24221,2281,191,18,1,
24232281,163,2,0,1,
24242754,192,18,1,2754,
2425193,20,194,4,18,
242683,0,69,0,77, 253483,0,69,0,77,
24270,73,0,67,0, 25350,73,0,67,0,
242879,0,76,0,79, 253679,0,76,0,79,
24290,78,0,1,11, 25370,78,0,1,11,
24301,1,2,0,1, 25381,1,2,0,1,
24312755,195,18,1,2755, 253961,204,18,1,61,
2432196,20,197,4,34, 2540129,2,0,1,62,
243371,0,108,0,111, 2541205,18,1,62,163,
24340,98,0,97,0, 25422,0,1,63,206,
2435108,0,68,0,101, 254318,1,63,132,2,
24360,102,0,105,0, 25440,1,65,207,18,
2437110,0,105,0,116, 25451,65,187,2,0,
24380,105,0,111,0, 25461,66,208,18,1,
2439110,0,115,0,1, 254766,132,2,0,1,
244097,1,2,2,0, 254867,209,18,1,67,
24411,1730,198,18,1, 2549191,2,0,1,68,
24421730,163,2,0,1, 2550210,18,1,68,194,
24431731,199,18,1,1731, 25512,0,1,69,211,
2444193,2,0,1,61, 255218,1,69,191,2,
2445200,18,1,61,129, 25530,1,70,212,18,
24462,0,1,62,201, 25541,70,194,2,0,
244718,1,62,156,2, 25551,71,213,18,1,
24480,1,63,202,18, 255671,135,2,0,1,
24491,63,132,2,0, 255773,214,18,1,73,
24501,65,203,18,1, 2558179,2,0,1,74,
245165,179,2,0,1, 2559215,18,1,74,163,
245266,204,18,1,66, 25602,0,1,1189,216,
2453132,2,0,1,67, 256118,1,1189,217,20,
2454205,18,1,67,183, 2562218,4,22,83,0,
24552,0,1,68,206, 256384,0,65,0,82,
245618,1,68,186,2,
24570,1,69,207,18,
24581,69,183,2,0,
24591,70,208,18,1,
246070,186,2,0,1,
246171,209,18,1,71,
2462135,2,0,1,73,
2463210,18,1,73,171,
24642,0,1,74,211,
246518,1,74,156,2,
24660,1,1189,212,18,
24671,1189,213,20,214,
24684,22,83,0,84,
24690,65,0,82,0,
247095,0,69,0,81,
24710,85,0,65,0,
247276,0,83,0,1,
24738,1,1,2,0,
24741,76,215,18,1,
247576,216,20,217,4,
247620,76,0,69,0,
247770,0,84,0,95,
24780,83,0,72,0,
247973,0,70,0,84,
24800,1,40,1,1,
24812,0,1,1153,218,
248218,1,1153,219,20,
2483220,4,24,83,0,
248476,0,65,0,83,
24850,72,0,95,0,
248669,0,81,0,85,
24870,65,0,76,0,
248883,0,1,9,1,
24891,2,0,1,79,
2490221,18,1,79,222,
249120,223,4,10,84,
24920,73,0,76,0,
249368,0,69,0,1,
249436,1,1,2,0,
24951,1195,224,18,1,
24961195,171,2,0,1,
249782,225,18,1,82,
2498171,2,0,1,1123,
2499226,18,1,1123,171,
25002,0,1,85,227,
250118,1,85,228,20,
2502229,4,26,83,0,
250384,0,82,0,79,
25040,75,0,69,0,
250595,0,83,0,84,
25060,82,0,79,0,
250775,0,69,0,1,
250839,1,1,2,0,
25091,2547,230,18,1,
25102547,140,2,0,1,
251189,231,18,1,89,
2512232,20,233,4,10,
251377,0,73,0,78,
25140,85,0,83,0,
25151,19,1,1,2,
25160,1,2318,234,18,
25171,2318,193,2,0,
25181,93,235,18,1,
251993,171,2,0,1,
252097,236,18,1,97,
2521237,20,238,4,14,
252265,0,77,0,80,
25230,95,0,65,0,
252477,0,80,0,1,
252538,1,1,2,0,
25261,102,239,18,1,
2527102,240,20,241,4,
252822,69,0,88,0,
252967,0,76,0,65,
25300,77,0,65,0,
253184,0,73,0,79,
25320,78,0,1,37,
25331,1,2,0,1,
25341775,242,18,1,1775,
2535156,2,0,1,107,
2536243,18,1,107,171,
25372,0,1,2337,244,
253818,1,2337,156,2,
25390,1,1224,245,18,
25401,1224,163,2,0,
25411,1225,246,18,1,
25421225,247,20,248,4,
254324,77,0,73,0,
254478,0,85,0,83,
25450,95,0,69,0,
254681,0,85,0,65,
25470,76,0,83,0,
25481,7,1,1,2,
25490,1,112,249,18,
25501,112,250,20,251,
25514,28,71,0,82,
25520,69,0,65,0,
255384,0,69,0,82,
25540,95,0,69,0,
255581,0,85,0,65,
25560,76,0,83,0,
25571,32,1,1,2,
25580,1,1188,252,18,
25591,1188,163,2,0,
25601,1231,253,18,1,
25611231,171,2,0,1,
2562118,254,18,1,118,
2563171,2,0,1,1737,
2564255,18,1,1737,171,
25652,0,1,124,256,
256618,1,124,257,20,
2567258,4,22,76,0,
256869,0,83,0,83,
25690,95,0,69,0, 25640,95,0,69,0,
257081,0,85,0,65, 256581,0,85,0,65,
25710,76,0,83,0, 25660,76,0,83,0,
25721,31,1,1,2, 25671,8,1,1,2,
25730,1,130,259,18, 25680,1,76,219,18,
25741,130,171,2,0, 25691,76,220,20,221,
25751,1803,260,18,1, 25704,20,76,0,69,
25761803,261,20,262,4, 25710,70,0,84,0,
257718,83,0,116,0, 257295,0,83,0,72,
257897,0,116,0,101, 25730,73,0,70,0,
25790,109,0,101,0, 257484,0,1,40,1,
2580110,0,116,0,1, 25751,2,0,1,1153,
2581124,1,2,2,0, 2576222,18,1,1153,223,
25821,1804,263,18,1, 257720,224,4,24,83,
25831804,264,20,265,4, 25780,76,0,65,0,
25844,68,0,79,0, 257983,0,72,0,95,
25851,44,1,1,2, 25800,69,0,81,0,
25860,1,2364,266,18, 258185,0,65,0,76,
25871,2364,261,2,0, 25820,83,0,1,9,
25881,137,267,18,1, 25831,1,2,0,1,
2589137,268,20,269,4, 258479,225,18,1,79,
259036,69,0,88,0, 2585226,20,227,4,10,
259167,0,76,0,65, 258684,0,73,0,76,
25920,77,0,65,0, 25870,68,0,69,0,
259384,0,73,0,79, 25881,36,1,1,2,
25940,78,0,95,0, 25890,1,1195,228,18,
259569,0,81,0,85, 25901,1195,179,2,0,
25960,65,0,76,0, 25911,82,229,18,1,
259783,0,1,30,1, 259282,179,2,0,1,
25981,2,0,1,2293, 25931123,230,18,1,1123,
2599270,18,1,2293,193, 2594179,2,0,1,85,
26002,0,1,1701,271, 2595231,18,1,85,232,
260118,1,1701,171,2, 259620,233,4,26,83,
26020,1,1756,272,18, 25970,84,0,82,0,
26031,1756,193,2,0, 259879,0,75,0,69,
26041,2527,273,18,1, 25990,95,0,83,0,
26052527,274,20,275,4, 260084,0,82,0,79,
260628,75,0,101,0, 26010,75,0,69,0,
2607121,0,68,0,101, 26021,39,1,1,2,
26080,99,0,108,0, 26030,1,2547,234,18,
260997,0,114,0,97, 26041,2547,235,20,236,
26100,116,0,105,0, 26054,24,86,0,111,
2611111,0,110,0,1, 26060,105,0,100,0,
2612113,1,2,2,0, 260765,0,114,0,103,
26131,143,276,18,1, 26080,69,0,118,0,
2614143,171,2,0,1, 2609101,0,110,0,116,
26152299,277,18,1,2299, 26100,1,121,1,2,
2616171,2,0,1,1260, 26112,0,1,89,237,
2617278,18,1,1260,163, 261218,1,89,238,20,
26182,0,1,1261,279, 2613239,4,10,77,0,
261918,1,1261,280,20, 261473,0,78,0,85,
2620281,4,22,80,0, 26150,83,0,1,19,
262176,0,85,0,83, 26161,1,2,0,1,
26220,95,0,69,0, 26172318,240,18,1,2318,
2618202,2,0,1,2788,
2619241,18,1,2788,242,
262020,243,4,12,83,
26210,116,0,97,0,
2622116,0,101,0,115,
26230,1,100,1,2,
26242,0,1,93,244,
262518,1,93,179,2,
26260,1,97,245,18,
26271,97,246,20,247,
26284,14,65,0,77,
26290,80,0,95,0,
263065,0,77,0,80,
26310,1,38,1,1,
26322,0,1,2795,248,
263318,1,2795,141,2,
26340,1,102,249,18,
26351,102,250,20,251,
26364,22,69,0,88,
26370,67,0,76,0,
263865,0,77,0,65,
26390,84,0,73,0,
264079,0,78,0,1,
264137,1,1,2,0,
26421,1775,252,18,1,
26431775,163,2,0,1,
2644107,253,18,1,107,
2645179,2,0,1,2337,
2646254,18,1,2337,163,
26472,0,1,1224,255,
264818,1,1224,171,2,
26490,1,1225,256,18,
26501,1225,257,20,258,
26514,24,77,0,73,
26520,78,0,85,0,
265383,0,95,0,69,
26540,81,0,85,0,
265565,0,76,0,83,
26560,1,7,1,1,
26572,0,1,112,259,
265818,1,112,260,20,
2659261,4,28,71,0,
266082,0,69,0,65,
26610,84,0,69,0,
266282,0,95,0,69,
26630,81,0,85,0,
266465,0,76,0,83,
26650,1,32,1,1,
26662,0,1,1188,262,
266718,1,1188,171,2,
26680,1,1231,263,18,
26691,1231,179,2,0,
26701,118,264,18,1,
2671118,179,2,0,1,
26721737,265,18,1,1737,
2673179,2,0,1,124,
2674266,18,1,124,267,
267520,268,4,22,76,
26760,69,0,83,0,
267783,0,95,0,69,
26780,81,0,85,0,
267965,0,76,0,83,
26800,1,31,1,1,
26812,0,1,2737,269,
268218,1,2737,270,20,
2683271,4,34,67,0,
2684111,0,109,0,112,
26850,111,0,117,0,
2686110,0,100,0,83,
26870,116,0,97,0,
2688116,0,101,0,109,
26890,101,0,110,0,
2690116,0,1,126,1,
26912,2,0,1,130,
2692272,18,1,130,179,
26932,0,1,1803,273,
269418,1,1803,274,20,
2695275,4,18,83,0,
2696116,0,97,0,116,
26970,101,0,109,0,
2698101,0,110,0,116,
26990,1,128,1,2,
27002,0,1,1804,276,
270118,1,1804,277,20,
2702278,4,4,68,0,
270379,0,1,44,1,
27041,2,0,1,2364,
2705279,18,1,2364,274,
27062,0,1,137,280,
270718,1,137,281,20,
2708282,4,36,69,0,
270988,0,67,0,76,
27100,65,0,77,0,
271165,0,84,0,73,
27120,79,0,78,0,
271395,0,69,0,81,
27140,85,0,65,0,
271576,0,83,0,1,
271630,1,1,2,0,
27171,2293,283,18,1,
27182293,202,2,0,1,
27191701,284,18,1,1701,
2720179,2,0,1,1756,
2721285,18,1,1756,202,
27222,0,1,2527,286,
272318,1,2527,163,2,
27240,1,143,287,18,
27251,143,179,2,0,
27261,2299,288,18,1,
27272299,179,2,0,1,
27281260,289,18,1,1260,
2729171,2,0,1,1261,
2730290,18,1,1261,291,
273120,292,4,22,80,
27320,76,0,85,0,
273383,0,95,0,69,
27340,81,0,85,0,
273565,0,76,0,83,
27360,1,6,1,1,
27372,0,1,151,293,
273818,1,151,294,20,
2739295,4,26,69,0,
262381,0,85,0,65, 274081,0,85,0,65,
26240,76,0,83,0, 27410,76,0,83,0,
26251,6,1,1,2, 274295,0,69,0,81,
26260,1,2528,282,18, 27430,85,0,65,0,
26271,2528,283,20,284, 274476,0,83,0,1,
26284,52,75,0,101, 274529,1,1,2,0,
26290,121,0,65,0, 27461,1267,296,18,1,
2630114,0,103,0,117, 27471267,179,2,0,1,
26310,109,0,101,0, 27482765,297,18,1,2765,
2632110,0,116,0,68, 2749202,2,0,1,157,
26330,101,0,99,0, 2750298,18,1,157,179,
2634108,0,97,0,114, 27512,0,1,1773,299,
26350,97,0,116,0, 275218,1,1773,156,2,
2636105,0,111,0,110, 27530,1,1832,300,18,
26370,76,0,105,0, 27541,1832,274,2,0,
2638115,0,116,0,1, 27551,1833,301,18,1,
2639109,1,2,2,0, 27561833,302,20,303,4,
26401,151,285,18,1, 275710,87,0,72,0,
2641151,286,20,287,4, 275873,0,76,0,69,
264226,69,0,81,0, 27590,1,45,1,1,
264385,0,65,0,76, 27602,0,1,1834,304,
26440,83,0,95,0, 276118,1,1834,135,2,
264569,0,81,0,85, 27620,1,166,305,18,
26460,65,0,76,0, 27631,166,306,20,307,
264783,0,1,29,1, 27644,20,76,0,69,
26481,2,0,1,2605, 27650,70,0,84,0,
2649288,18,1,2605,159, 276695,0,65,0,78,
26502,0,1,1267,289, 27670,71,0,76,0,
265118,1,1267,171,2, 276869,0,1,25,1,
26520,1,157,290,18, 27691,2,0,1,1840,
26531,157,171,2,0, 2770308,18,1,1840,179,
26541,1773,291,18,1, 27712,0,1,172,309,
26551773,146,2,0,1, 277218,1,172,179,2,
26561832,292,18,1,1832, 27730,1,2335,310,18,
2657261,2,0,1,1833, 27741,2335,156,2,0,
2658293,18,1,1833,294, 27751,1296,311,18,1,
265920,295,4,10,87, 27761296,171,2,0,1,
26600,72,0,73,0, 27771297,312,18,1,1297,
266176,0,69,0,1, 2778313,20,314,4,12,
266245,1,1,2,0,
26631,1834,296,18,1,
26641834,135,2,0,1,
26652773,297,18,1,2773,
2666298,20,299,4,48,
266771,0,108,0,111,
26680,98,0,97,0,
2669108,0,70,0,117,
26700,110,0,99,0,
2671116,0,105,0,111,
26720,110,0,68,0,
2673101,0,102,0,105,
26740,110,0,105,0,
2675116,0,105,0,111,
26760,110,0,1,99,
26771,2,2,0,1,
2678166,300,18,1,166,
2679301,20,302,4,20,
268076,0,69,0,70,
26810,84,0,95,0,
268265,0,78,0,71,
26830,76,0,69,0,
26841,25,1,1,2,
26850,1,2776,303,18,
26861,2776,304,20,305,
26874,50,71,0,108,
26880,111,0,98,0,
268997,0,108,0,86,
26900,97,0,114,0,
2691105,0,97,0,98,
26920,108,0,101,0,
269368,0,101,0,99,
26940,108,0,97,0,
2695114,0,97,0,116,
26960,105,0,111,0,
2697110,0,1,98,1,
26982,2,0,1,1840,
2699306,18,1,1840,171,
27002,0,1,172,307,
270118,1,172,171,2,
27020,1,2335,308,18,
27031,2335,146,2,0,
27041,1296,309,18,1,
27051296,163,2,0,1,
27061297,310,18,1,1297,
2707311,20,312,4,12,
270869,0,81,0,85, 277969,0,81,0,85,
27090,65,0,76,0, 27800,65,0,76,0,
271083,0,1,15,1, 278183,0,1,15,1,
27111,2,0,1,2413, 27821,2,0,1,2413,
2712313,18,1,2413,314, 2783315,18,1,2413,316,
271320,315,4,26,83, 278420,317,4,26,83,
27140,116,0,97,0, 27850,116,0,97,0,
2715116,0,101,0,109, 2786116,0,101,0,109,
27160,101,0,110,0, 27870,101,0,110,0,
2717116,0,76,0,105, 2788116,0,76,0,105,
27180,115,0,116,0, 27890,115,0,116,0,
27191,123,1,2,2, 27901,127,1,2,2,
27200,1,1859,316,18, 27910,1,1859,318,18,
27211,1859,156,2,0, 27921,1859,163,2,0,
27221,1860,317,18,1, 27931,1860,319,18,1,
27231860,193,2,0,1, 27941860,202,2,0,1,
2724188,318,18,1,188, 2795188,320,18,1,188,
2725171,2,0,1,182, 2796179,2,0,1,182,
2726319,18,1,182,320, 2797321,18,1,182,322,
272720,321,4,22,82, 279820,323,4,22,82,
27280,73,0,71,0, 27990,73,0,71,0,
272972,0,84,0,95, 280072,0,84,0,95,
27300,65,0,78,0, 28010,65,0,78,0,
273171,0,76,0,69, 280271,0,76,0,69,
27320,1,26,1,1, 28030,1,26,1,1,
27332,0,1,199,322, 28042,0,1,199,324,
273418,1,199,323,20, 280518,1,199,325,20,
2735324,4,10,67,0, 2806326,4,10,67,0,
273665,0,82,0,69, 280765,0,82,0,69,
27370,84,0,1,35, 28080,84,0,1,35,
27381,1,2,0,1, 28091,1,2,0,1,
27391871,325,18,1,1871, 28101871,327,18,1,1871,
2740163,2,0,1,1872, 2811171,2,0,1,1872,
2741326,18,1,1872,156, 2812328,18,1,1872,163,
27422,0,1,1873,327, 28132,0,1,1873,329,
274318,1,1873,193,2, 281418,1,1873,202,2,
27440,1,1875,328,18, 28150,1,1875,330,18,
27451,1875,294,2,0, 28161,1875,302,2,0,
27461,205,329,18,1, 28171,205,331,18,1,
2747205,171,2,0,1, 2818205,179,2,0,1,
27482515,330,18,1,2515, 28191882,332,18,1,1882,
2749135,2,0,1,1882, 2820179,2,0,1,2227,
2750331,18,1,1882,171, 2821333,18,1,2227,274,
27512,0,1,2227,332, 28222,0,1,217,334,
275218,1,2227,261,2, 282318,1,217,335,20,
27530,1,217,333,18, 2824336,4,12,83,0,
27541,217,334,20,335, 282584,0,82,0,79,
27554,12,83,0,84, 28260,75,0,69,0,
27560,82,0,79,0, 28271,34,1,1,2,
275775,0,69,0,1, 28280,1,1332,337,18,
275834,1,1,2,0, 28291,1332,171,2,0,
27591,1332,336,18,1, 28301,1335,338,18,1,
27601332,163,2,0,1, 28311335,174,2,0,1,
27612743,337,18,1,2743, 2832223,339,18,1,223,
2762193,2,0,1,1335, 2833179,2,0,1,1341,
2763338,18,1,1335,166, 2834340,18,1,1341,179,
27642,0,1,223,339, 28352,0,1,1901,341,
276518,1,223,171,2, 283618,1,1901,163,2,
27660,1,1341,340,18, 28370,1,1303,342,18,
27671,1341,171,2,0, 28381,1303,179,2,0,
27681,2599,341,18,1, 28391,2462,343,18,1,
27692599,342,20,343,4, 28402462,274,2,0,1,
277038,86,0,101,0, 2841236,344,18,1,236,
277199,0,116,0,111, 2842345,20,346,4,6,
27720,114,0,65,0, 284365,0,77,0,80,
2773114,0,103,0,83, 28440,1,33,1,1,
27740,116,0,97,0, 28452,0,1,2466,347,
2775116,0,101,0,69, 284618,1,2466,270,2,
27760,118,0,101,0, 28470,1,2467,348,18,
2777110,0,116,0,1, 28481,2467,160,2,0,
2778107,1,2,2,0, 28491,2468,349,18,1,
27791,1901,344,18,1, 28502468,350,20,351,4,
27801901,156,2,0,1,
27811303,345,18,1,1303,
2782171,2,0,1,2462,
2783346,18,1,2462,261,
27842,0,1,236,347,
278518,1,236,348,20,
2786349,4,6,65,0,
278777,0,80,0,1,
278833,1,1,2,0,
27891,2466,350,18,1,
27902466,351,20,352,4,
279134,67,0,111,0,
2792109,0,112,0,111,
27930,117,0,110,0,
2794100,0,83,0,116,
27950,97,0,116,0,
2796101,0,109,0,101,
27970,110,0,116,0,
27981,122,1,2,2,
27990,1,2467,353,18,
28001,2467,153,2,0,
28011,2468,354,18,1,
28022468,355,20,356,4,
280310,83,0,84,0, 285110,83,0,84,0,
280465,0,84,0,69, 285265,0,84,0,69,
28050,1,48,1,1, 28530,1,48,1,1,
28062,0,1,2469,357, 28542,0,1,2469,352,
280718,1,2469,132,2, 285518,1,2469,132,2,
28080,1,242,358,18, 28560,1,242,353,18,
28091,242,171,2,0, 28571,242,179,2,0,
28101,2471,359,18,1, 28581,2471,354,18,1,
28112471,360,20,361,4, 28592471,355,20,356,4,
286038,65,0,84,0,
286195,0,82,0,79,
28620,84,0,95,0,
286384,0,65,0,82,
28640,71,0,69,0,
286584,0,95,0,69,
28660,86,0,69,0,
286778,0,84,0,1,
286858,1,1,2,0,
28691,2472,357,18,1,
28702472,358,20,359,4,
281252,76,0,65,0, 287152,76,0,65,0,
281378,0,68,0,95, 287278,0,68,0,95,
28140,67,0,79,0, 28730,67,0,79,0,
@@ -2821,8 +2880,8 @@ public yyLSLSyntax
282186,0,69,0,78, 288086,0,69,0,78,
28220,84,0,1,71, 28810,84,0,1,71,
28231,1,2,0,1, 28821,1,2,0,1,
28242472,362,18,1,2472, 28832473,360,18,1,2473,
2825363,20,364,4,48, 2884361,20,362,4,48,
282676,0,65,0,78, 288576,0,65,0,78,
28270,68,0,95,0, 28860,68,0,95,0,
282867,0,79,0,76, 288767,0,79,0,76,
@@ -2834,8 +2893,8 @@ public yyLSLSyntax
283486,0,69,0,78, 289386,0,69,0,78,
28350,84,0,1,70, 28940,84,0,1,70,
28361,1,2,0,1, 28951,1,2,0,1,
28372473,365,18,1,2473, 28962474,363,18,1,2474,
2838366,20,367,4,40, 2897364,20,365,4,40,
283976,0,65,0,78, 289876,0,65,0,78,
28400,68,0,95,0, 28990,68,0,95,0,
284167,0,79,0,76, 290067,0,79,0,76,
@@ -2845,8 +2904,8 @@ public yyLSLSyntax
284569,0,86,0,69, 290469,0,86,0,69,
28460,78,0,84,0, 29050,78,0,84,0,
28471,69,1,1,2, 29061,69,1,1,2,
28480,1,2474,368,18, 29070,1,2475,366,18,
28491,2474,369,20,370, 29081,2475,367,20,368,
28504,34,84,0,79, 29094,34,84,0,79,
28510,85,0,67,0, 29100,85,0,67,0,
285272,0,95,0,83, 291172,0,95,0,83,
@@ -2855,9 +2914,9 @@ public yyLSLSyntax
28550,69,0,86,0, 29140,69,0,86,0,
285669,0,78,0,84, 291569,0,78,0,84,
28570,1,89,1,1, 29160,1,89,1,1,
28582,0,1,2475,371, 29172,0,1,2476,369,
285918,1,2475,372,20, 291818,1,2476,370,20,
2860373,4,30,84,0, 2919371,4,30,84,0,
286179,0,85,0,67, 292079,0,85,0,67,
28620,72,0,95,0, 29210,72,0,95,0,
286369,0,78,0,68, 292269,0,78,0,68,
@@ -2865,24 +2924,24 @@ public yyLSLSyntax
286586,0,69,0,78, 292486,0,69,0,78,
28660,84,0,1,90, 29250,84,0,1,90,
28671,1,2,0,1, 29261,1,2,0,1,
28682476,374,18,1,2476, 29272477,372,18,1,2477,
2869375,20,376,4,22, 2928373,20,374,4,22,
287084,0,79,0,85, 292984,0,79,0,85,
28710,67,0,72,0, 29300,67,0,72,0,
287295,0,69,0,86, 293195,0,69,0,86,
28730,69,0,78,0, 29320,69,0,78,0,
287484,0,1,88,1, 293384,0,1,88,1,
28751,2,0,1,2477, 29341,2,0,1,2478,
2876377,18,1,2477,378, 2935375,18,1,2478,376,
287720,379,4,24,83, 293620,377,4,24,83,
28780,69,0,78,0, 29370,69,0,78,0,
287983,0,79,0,82, 293883,0,79,0,82,
28800,95,0,69,0, 29390,95,0,69,0,
288186,0,69,0,78, 294086,0,69,0,78,
28820,84,0,1,84, 29410,84,0,1,84,
28831,1,2,0,1, 29421,1,2,0,1,
28842478,380,18,1,2478, 29432479,378,18,1,2479,
2885381,20,382,4,52, 2944379,20,380,4,52,
288682,0,85,0,78, 294582,0,85,0,78,
28870,95,0,84,0, 29460,95,0,84,0,
288873,0,77,0,69, 294773,0,77,0,69,
@@ -2894,17 +2953,17 @@ public yyLSLSyntax
289495,0,69,0,86, 295395,0,69,0,86,
28950,69,0,78,0, 29540,69,0,78,0,
289684,0,1,83,1, 295584,0,1,83,1,
28971,2,0,1,2479, 29561,2,0,1,2480,
2898383,18,1,2479,384, 2957381,18,1,2480,382,
289920,385,4,24,79, 295820,383,4,24,79,
29000,78,0,95,0, 29590,78,0,95,0,
290182,0,69,0,90, 296082,0,69,0,90,
29020,95,0,69,0, 29610,95,0,69,0,
290386,0,69,0,78, 296286,0,69,0,78,
29040,84,0,1,81, 29630,84,0,1,81,
29051,1,2,0,1, 29641,1,2,0,1,
29062480,386,18,1,2480, 29652481,384,18,1,2481,
2907387,20,388,4,42, 2966385,20,386,4,42,
290867,0,79,0,76, 296767,0,79,0,76,
29090,76,0,73,0, 29680,76,0,73,0,
291083,0,73,0,79, 296983,0,73,0,79,
@@ -2914,9 +2973,9 @@ public yyLSLSyntax
291495,0,69,0,86, 297395,0,69,0,86,
29150,69,0,78,0, 29740,69,0,78,0,
291684,0,1,64,1, 297584,0,1,64,1,
29171,2,0,1,2481, 29761,2,0,1,2482,
2918389,18,1,2481,390, 2977387,18,1,2482,388,
291920,391,4,38,67, 297820,389,4,38,67,
29200,79,0,76,0, 29790,79,0,76,0,
292176,0,73,0,83, 298076,0,73,0,83,
29220,73,0,79,0, 29810,73,0,79,0,
@@ -2925,9 +2984,9 @@ public yyLSLSyntax
292595,0,69,0,86, 298495,0,69,0,86,
29260,69,0,78,0, 29850,69,0,78,0,
292784,0,1,63,1, 298684,0,1,63,1,
29281,2,0,1,2482, 29871,2,0,1,2483,
2929392,18,1,2482,393, 2988390,18,1,2483,391,
293020,394,4,30,67, 298920,392,4,30,67,
29310,79,0,76,0, 29900,79,0,76,0,
293276,0,73,0,83, 299176,0,73,0,83,
29330,73,0,79,0, 29920,73,0,79,0,
@@ -2935,692 +2994,755 @@ public yyLSLSyntax
29350,86,0,69,0, 29940,86,0,69,0,
293678,0,84,0,1, 299578,0,84,0,1,
293762,1,1,2,0, 299662,1,1,2,0,
29381,2483,395,18,1, 29971,256,393,18,1,
29392483,396,20,397,4, 2998256,394,20,395,4,
294026,67,0,72,0, 299914,80,0,69,0,
294165,0,78,0,71, 300082,0,67,0,69,
29420,69,0,68,0,
294395,0,69,0,86,
29440,69,0,78,0,
294584,0,1,61,1,
29461,2,0,1,256,
2947398,18,1,256,399,
294820,400,4,14,80,
29490,69,0,82,0,
295067,0,69,0,78,
29510,84,0,1,22,
29521,1,2,0,1,
29531371,401,18,1,1371,
2954219,2,0,1,2486,
2955402,18,1,2486,403,
295620,404,4,22,84,
29570,73,0,77,0,
295869,0,82,0,95,
29590,69,0,86,0,
296069,0,78,0,84,
29610,1,87,1,1,
29622,0,1,2487,405,
296318,1,2487,406,20,
2964407,4,38,78,0,
296579,0,84,0,95,
29660,65,0,84,0,
296795,0,84,0,65,
29680,82,0,71,0,
296969,0,84,0,95,
29700,69,0,86,0,
297169,0,78,0,84,
29720,1,79,1,1,
29732,0,1,1931,408,
297418,1,1931,261,2,
29750,1,1932,409,18,
29761,1932,410,20,411,
29774,4,73,0,70,
29780,1,42,1,1,
29792,0,1,262,412,
298018,1,262,171,2,
29810,1,1377,413,18,
29821,1377,171,2,0,
29831,2492,414,18,1,
29842492,415,20,416,4,
298532,83,0,84,0,
298665,0,84,0,69,
29870,95,0,69,0,
298888,0,73,0,84,
29890,95,0,69,0,
299086,0,69,0,78,
29910,84,0,1,86,
29921,1,2,0,1,
29931876,417,18,1,1876,
2994135,2,0,1,2494,
2995418,18,1,2494,419,
299620,420,4,36,72,
29970,84,0,84,0,
299880,0,95,0,82,
29990,69,0,81,0,
300085,0,69,0,83,
30010,84,0,95,0,
300269,0,86,0,69,
30030,78,0,84,0, 30010,78,0,84,0,
30041,91,1,1,2, 30021,22,1,1,2,
30050,1,2495,421,18, 30030,1,1371,396,18,
30061,2495,422,20,423, 30041,1371,223,2,0,
30074,34,82,0,69, 30051,2486,397,18,1,
30080,77,0,79,0, 30062486,398,20,399,4,
300984,0,69,0,95, 300724,65,0,84,0,
30100,68,0,65,0, 300884,0,65,0,67,
301184,0,65,0,95, 30090,72,0,95,0,
30120,69,0,86,0,
301369,0,78,0,84,
30140,1,82,1,1,
30152,0,1,1939,424,
301618,1,1939,171,2,
30170,1,2497,425,18,
30181,2497,426,20,427,
30194,24,76,0,73,
30200,83,0,84,0,
302169,0,78,0,95,
30220,69,0,86,0,
302369,0,78,0,84,
30240,1,73,1,1,
30252,0,1,827,428,
302618,1,827,171,2,
30270,1,2499,429,18,
30281,2499,430,20,431,
30294,38,72,0,84,
30300,84,0,80,0,
303195,0,82,0,69,
30320,83,0,80,0,
303379,0,78,0,83,
30340,69,0,95,0,
303569,0,86,0,69, 301069,0,86,0,69,
30360,78,0,84,0, 30110,78,0,84,0,
30371,68,1,1,2, 30121,60,1,1,2,
30380,1,2500,432,18, 30130,1,2487,400,18,
30391,2500,433,20,434, 30141,2487,401,20,402,
30404,22,69,0,77, 30154,22,84,0,73,
30410,65,0,73,0, 30160,77,0,69,0,
304276,0,95,0,69, 301782,0,95,0,69,
30430,86,0,69,0, 30180,86,0,69,0,
304478,0,84,0,1, 301978,0,84,0,1,
304567,1,1,2,0, 302087,1,1,2,0,
30461,2501,435,18,1, 30211,1931,403,18,1,
30472501,436,20,437,4, 30221931,274,2,0,1,
304832,68,0,65,0, 30231932,404,18,1,1932,
304984,0,65,0,83, 3024405,20,406,4,4,
30500,69,0,82,0, 302573,0,70,0,1,
305186,0,69,0,82, 302642,1,1,2,0,
30271,262,407,18,1,
3028262,179,2,0,1,
30291377,408,18,1,1377,
3030179,2,0,1,2492,
3031409,18,1,2492,410,
303220,411,4,32,77,
30330,79,0,86,0,
303473,0,78,0,71,
30520,95,0,69,0, 30350,95,0,69,0,
305386,0,69,0,78, 303678,0,68,0,95,
30540,84,0,1,66,
30551,1,2,0,1,
30562502,438,18,1,2502,
3057439,20,440,4,26,
305867,0,79,0,78,
30590,84,0,82,0,
306079,0,76,0,95,
30610,69,0,86,0, 30370,69,0,86,0,
306269,0,78,0,84, 303869,0,78,0,84,
30630,1,65,1,1, 30390,1,75,1,1,
30642,0,1,2503,441, 30402,0,1,1876,412,
306518,1,2503,442,20, 304118,1,1876,135,2,
3066443,4,30,65,0, 30420,1,2494,413,18,
306784,0,95,0,84, 30431,2494,414,20,415,
30680,65,0,82,0, 30444,34,83,0,84,
306971,0,69,0,84, 30450,65,0,84,0,
30700,95,0,69,0, 304669,0,95,0,69,
307186,0,69,0,78, 30470,78,0,84,0,
30720,84,0,1,59, 304882,0,89,0,95,
30731,1,2,0,1, 30490,69,0,86,0,
30742504,444,18,1,2504, 305069,0,78,0,84,
3075445,20,446,4,38, 30510,1,85,1,1,
307665,0,84,0,95, 30522,0,1,2495,416,
30770,82,0,79,0, 305318,1,2495,417,20,
307884,0,95,0,84, 3054418,4,36,72,0,
30790,65,0,82,0, 305584,0,84,0,80,
308071,0,69,0,84, 30560,95,0,82,0,
305769,0,81,0,85,
30580,69,0,83,0,
305984,0,95,0,69,
30600,86,0,69,0,
306178,0,84,0,1,
306291,1,1,2,0,
30631,1939,419,18,1,
30641939,179,2,0,1,
30652497,420,18,1,2497,
3066421,20,422,4,22,
306777,0,79,0,78,
30680,69,0,89,0,
306995,0,69,0,86,
30700,69,0,78,0,
307184,0,1,74,1,
30721,2,0,1,827,
3073423,18,1,827,179,
30742,0,1,2499,424,
307518,1,2499,425,20,
3076426,4,36,76,0,
307773,0,78,0,75,
30780,95,0,77,0,
307969,0,83,0,83,
30800,65,0,71,0,
308169,0,95,0,69,
30820,86,0,69,0,
308378,0,84,0,1,
308472,1,1,2,0,
30851,2500,427,18,1,
30862500,428,20,429,4,
308738,72,0,84,0,
308884,0,80,0,95,
30890,82,0,69,0,
309083,0,80,0,79,
30910,78,0,83,0,
309269,0,95,0,69,
30930,86,0,69,0,
309478,0,84,0,1,
309568,1,1,2,0,
30961,2501,430,18,1,
30972501,431,20,432,4,
309822,69,0,77,0,
309965,0,73,0,76,
30810,95,0,69,0, 31000,95,0,69,0,
308286,0,69,0,78, 310186,0,69,0,78,
30830,84,0,1,58, 31020,84,0,1,67,
30841,1,2,0,1, 31031,1,2,0,1,
3085277,447,18,1,277, 31042502,433,18,1,2502,
3086448,20,449,4,10, 3105434,20,435,4,32,
308783,0,76,0,65, 310668,0,65,0,84,
30880,83,0,72,0, 31070,65,0,83,0,
30891,21,1,1,2, 310869,0,82,0,86,
30900,1,2506,450,18, 31090,69,0,82,0,
30911,2506,135,2,0, 311095,0,69,0,86,
30921,2507,451,18,1, 31110,69,0,78,0,
30932507,114,2,0,1, 311284,0,1,66,1,
30942508,452,18,1,2508, 31131,2,0,1,2503,
3095132,2,0,1,2509, 3114436,18,1,2503,437,
3096453,18,1,2509,454, 311520,438,4,26,67,
309720,455,4,34,86, 31160,79,0,78,0,
311784,0,82,0,79,
31180,76,0,95,0,
311969,0,86,0,69,
31200,78,0,84,0,
31211,65,1,1,2,
31220,1,2504,439,18,
31231,2504,440,20,441,
31244,30,65,0,84,
31250,95,0,84,0,
312665,0,82,0,71,
31270,69,0,84,0,
312895,0,69,0,86,
31290,69,0,78,0,
313084,0,1,59,1,
31311,2,0,1,277,
3132442,18,1,277,443,
313320,444,4,10,83,
31340,76,0,65,0,
313583,0,72,0,1,
313621,1,1,2,0,
31371,2506,445,18,1,
31382506,135,2,0,1,
31392507,446,18,1,2507,
3140126,2,0,1,2508,
3141447,18,1,2508,132,
31422,0,1,2509,448,
314318,1,2509,449,20,
3144450,4,28,73,0,
3145110,0,116,0,68,
30980,101,0,99,0, 31460,101,0,99,0,
3099116,0,111,0,114, 3147108,0,97,0,114,
31480,97,0,116,0,
3149105,0,111,0,110,
31500,1,116,1,2,
31512,0,1,2510,451,
315218,1,2510,153,2,
31530,1,283,452,18,
31541,283,179,2,0,
31551,2512,453,18,1,
31562512,132,2,0,1,
31572513,454,18,1,2513,
3158455,20,456,4,28,
315982,0,111,0,116,
31000,68,0,101,0, 31600,68,0,101,0,
310199,0,108,0,97, 316199,0,108,0,97,
31020,114,0,97,0, 31620,114,0,97,0,
3103116,0,105,0,111, 3163116,0,105,0,111,
31040,110,0,1,115, 31640,110,0,1,118,
31051,2,2,0,1, 31651,2,2,0,1,
31062510,456,18,1,2510, 31662514,457,18,1,2514,
3107457,20,458,4,58, 3167153,2,0,1,1958,
310886,0,101,0,99, 3168458,18,1,1958,163,
31090,116,0,111,0, 31692,0,1,2516,459,
3110114,0,65,0,114, 317018,1,2516,455,2,
31110,103,0,117,0, 31710,1,2517,460,18,
3112109,0,101,0,110, 31721,2517,461,20,462,
31130,116,0,68,0, 31734,64,73,0,110,
3114101,0,99,0,108, 31740,116,0,82,0,
31150,97,0,114,0, 3175111,0,116,0,82,
311697,0,116,0,105, 31760,111,0,116,0,
31170,111,0,110,0, 317765,0,114,0,103,
311876,0,105,0,115, 31780,117,0,109,0,
31190,116,0,1,111, 3179101,0,110,0,116,
31800,68,0,101,0,
318199,0,108,0,97,
31820,114,0,97,0,
3183116,0,105,0,111,
31840,110,0,76,0,
3185105,0,115,0,116,
31860,1,113,1,2,
31872,0,1,2518,463,
318818,1,2518,163,2,
31890,1,1406,464,18,
31901,1406,171,2,0,
31911,1407,465,18,1,
31921407,217,2,0,1,
31932522,466,18,1,2522,
3194135,2,0,1,2523,
3195467,18,1,2523,114,
31962,0,1,2524,468,
319718,1,2524,132,2,
31980,1,2525,469,18,
31991,2525,470,20,471,
32004,34,86,0,101,
32010,99,0,116,0,
3202111,0,114,0,68,
32030,101,0,99,0,
3204108,0,97,0,114,
32050,97,0,116,0,
3206105,0,111,0,110,
32070,1,117,1,2,
32082,0,1,2526,472,
320918,1,2526,473,20,
3210474,4,58,86,0,
3211101,0,99,0,116,
32120,111,0,114,0,
321365,0,114,0,103,
32140,117,0,109,0,
3215101,0,110,0,116,
32160,68,0,101,0,
321799,0,108,0,97,
32180,114,0,97,0,
3219116,0,105,0,111,
32200,110,0,76,0,
3221105,0,115,0,116,
32220,1,112,1,2,
32232,0,1,299,475,
322418,1,299,476,20,
3225477,4,8,83,0,
322684,0,65,0,82,
32270,1,20,1,1,
32282,0,1,1370,478,
322918,1,1370,171,2,
32300,1,2529,479,18,
32311,2529,270,2,0,
32321,2530,480,18,1,
32332530,481,20,482,4,
323422,73,0,110,0,
3235116,0,65,0,114,
32360,103,0,69,0,
3237118,0,101,0,110,
32380,116,0,1,123,
31201,2,2,0,1, 32391,2,2,0,1,
3121283,459,18,1,283, 32402531,483,18,1,2531,
3122171,2,0,1,2513, 3241135,2,0,1,305,
3123460,18,1,2513,351, 3242484,18,1,305,179,
31242,0,1,2514,461, 32432,0,1,2534,485,
312518,1,2514,462,20, 324418,1,2534,486,20,
3126463,4,22,73,0, 3245487,4,52,73,0,
3127110,0,116,0,65, 3246110,0,116,0,65,
31280,114,0,103,0, 32470,114,0,103,0,
312969,0,118,0,101, 3248117,0,109,0,101,
31300,110,0,116,0,
31311,120,1,2,2,
31320,1,1958,464,18,
31331,1958,156,2,0,
31341,2516,465,18,1,
31352516,126,2,0,1,
31362517,466,18,1,2517,
3137132,2,0,1,2518,
3138467,18,1,2518,468,
313920,469,4,28,73,
31400,110,0,116,0, 32490,110,0,116,0,
314168,0,101,0,99, 325068,0,101,0,99,
31420,108,0,97,0, 32510,108,0,97,0,
3143114,0,97,0,116, 3252114,0,97,0,116,
31440,105,0,111,0, 32530,105,0,111,0,
3145110,0,1,114,1, 3254110,0,76,0,105,
31462,2,0,1,2519, 32550,115,0,116,0,
3147470,18,1,2519,471, 32561,111,1,2,2,
314820,472,4,52,73, 32570,1,2535,488,18,
31490,110,0,116,0, 32581,2535,163,2,0,
32591,2458,489,18,1,
32602458,274,2,0,1,
32612459,490,18,1,2459,
3262491,20,492,4,22,
326382,0,73,0,71,
32640,72,0,84,0,
326595,0,66,0,82,
32660,65,0,67,0,
326769,0,1,13,1,
32681,2,0,1,2538,
3269493,18,1,2538,494,
327020,495,4,22,75,
32710,101,0,121,0,
315065,0,114,0,103, 327265,0,114,0,103,
31510,117,0,109,0, 32730,69,0,118,0,
3152101,0,110,0,116, 3274101,0,110,0,116,
32750,1,122,1,2,
32762,0,1,2539,496,
327718,1,2539,135,2,
32780,1,2540,497,18,
32791,2540,117,2,0,
32801,2541,498,18,1,
32812541,132,2,0,1,
32822542,499,18,1,2542,
3283500,20,501,4,28,
328475,0,101,0,121,
31530,68,0,101,0, 32850,68,0,101,0,
315499,0,108,0,97, 328699,0,108,0,97,
31550,114,0,97,0, 32870,114,0,97,0,
3156116,0,105,0,111, 3288116,0,105,0,111,
31570,110,0,76,0, 32890,110,0,1,115,
3158105,0,115,0,116, 32901,2,2,0,1,
31590,1,110,1,2, 32912464,502,18,1,2464,
31602,0,1,1406,473, 3292491,2,0,1,2544,
316118,1,1406,163,2, 3293503,18,1,2544,163,
31620,1,1407,474,18, 32942,0,1,1989,504,
31631,1407,213,2,0, 329518,1,1989,274,2,
31641,2522,475,18,1, 32960,1,1990,505,18,
31652522,351,2,0,1, 32971,1990,506,20,507,
31662523,476,18,1,2523, 32984,8,69,0,76,
3167477,20,478,4,22, 32990,83,0,69,0,
316875,0,101,0,121, 33001,43,1,1,2,
31690,65,0,114,0, 33010,1,2548,508,18,
3170103,0,69,0,118, 33021,2548,135,2,0,
31710,101,0,110,0, 33031,2470,509,18,1,
3172116,0,1,119,1, 33042470,166,2,0,1,
31732,2,0,1,2524, 3305322,510,18,1,322,
3174479,18,1,2524,135, 3306238,2,0,1,2551,
31752,0,1,2525,480, 3307511,18,1,2551,270,
317618,1,2525,117,2, 33082,0,1,1933,512,
31770,1,2526,481,18,
31781,2526,132,2,0,
31791,299,482,18,1,
3180299,483,20,484,4,
31818,83,0,84,0,
318265,0,82,0,1,
318320,1,1,2,0,
31841,1370,485,18,1,
31851370,163,2,0,1,
31862529,486,18,1,2529,
3187156,2,0,1,2531,
3188487,18,1,2531,351,
31892,0,1,2532,488,
319018,1,2532,489,20,
3191490,4,24,86,0,
3192111,0,105,0,100,
31930,65,0,114,0,
3194103,0,69,0,118,
31950,101,0,110,0,
3196116,0,1,118,1,
31972,2,0,1,305,
3198491,18,1,305,171,
31992,0,1,2534,492,
320018,1,2534,156,2,
32010,1,2458,493,18,
32021,2458,261,2,0,
32031,2459,494,18,1,
32042459,495,20,496,4,
320522,82,0,73,0,
320671,0,72,0,84,
32070,95,0,66,0,
320882,0,65,0,67,
32090,69,0,1,13,
32101,1,2,0,1,
32112538,497,18,1,2538,
3212135,2,0,1,2601,
3213498,18,1,2601,499,
321420,500,4,32,75,
32150,101,0,121,0,
321665,0,114,0,103,
32170,83,0,116,0,
321897,0,116,0,101,
32190,69,0,118,0,
3220101,0,110,0,116,
32210,1,105,1,2,
32222,0,1,2464,501,
322318,1,2464,495,2,
32240,1,1989,502,18,
32251,1989,261,2,0,
32261,1990,503,18,1,
32271990,504,20,505,4,
32288,69,0,76,0,
322983,0,69,0,1,
323043,1,1,2,0,
32311,2470,506,18,1,
32322470,159,2,0,1,
3233322,507,18,1,322,
3234232,2,0,1,2551,
3235508,18,1,2551,351,
32362,0,1,1933,509,
323718,1,1933,135,2, 330918,1,1933,135,2,
32380,1,2553,510,18, 33100,1,2553,513,18,
32391,2553,150,2,0, 33111,2553,135,2,0,
32401,883,511,18,1, 33121,883,514,18,1,
3241883,171,2,0,1, 3313883,179,2,0,1,
3242328,512,18,1,328, 3314328,515,18,1,328,
3243171,2,0,1,1443, 3315179,2,0,1,1443,
3244513,18,1,1443,247, 3316516,18,1,1443,257,
32452,0,1,2766,514, 33172,0,1,2562,517,
324618,1,2766,515,20, 331818,1,2562,150,2,
3247516,4,12,83,0, 33190,1,1449,518,18,
3248116,0,97,0,116, 33201,1449,179,2,0,
32490,101,0,115,0, 33211,2485,519,18,1,
32501,100,1,2,2, 33222485,520,20,521,4,
32510,1,1449,517,18, 332332,79,0,66,0,
32521,1449,171,2,0, 332474,0,69,0,67,
32531,2485,518,18,1,
32542485,519,20,520,4,
325524,65,0,84,0,
325684,0,65,0,67,
32570,72,0,95,0,
325869,0,86,0,69,
32590,78,0,84,0,
32601,60,1,1,2,
32610,1,2488,521,18,
32621,2488,522,20,523,
32634,46,78,0,79,
32640,84,0,95,0, 33250,84,0,95,0,
326565,0,84,0,95, 332682,0,69,0,90,
32660,82,0,79,0,
326784,0,95,0,84,
32680,65,0,82,0,
326971,0,69,0,84,
32700,95,0,69,0,
327186,0,69,0,78,
32720,84,0,1,78,
32731,1,2,0,1,
32742489,524,18,1,2489,
3275525,20,526,4,30,
327678,0,79,0,95,
32770,83,0,69,0,
327878,0,83,0,79,
32790,82,0,95,0,
328069,0,86,0,69,
32810,78,0,84,0,
32821,77,1,1,2,
32830,1,2490,527,18,
32841,2490,528,20,529,
32854,36,77,0,79,
32860,86,0,73,0,
328778,0,71,0,95,
32880,83,0,84,0,
328965,0,82,0,84,
32900,95,0,69,0, 33270,95,0,69,0,
329186,0,69,0,78, 332886,0,69,0,78,
32920,84,0,1,76, 33290,84,0,1,80,
32931,1,2,0,1, 33301,1,2,0,1,
32942491,530,18,1,2491, 33312566,522,18,1,2566,
3295531,20,532,4,32, 3332270,2,0,1,2488,
329677,0,79,0,86, 3333523,18,1,2488,524,
32970,73,0,78,0, 333420,525,4,38,78,
329871,0,95,0,69, 33350,79,0,84,0,
32990,78,0,68,0, 333695,0,65,0,84,
33370,95,0,84,0,
333865,0,82,0,71,
33390,69,0,84,0,
330095,0,69,0,86, 334095,0,69,0,86,
33010,69,0,78,0, 33410,69,0,78,0,
330284,0,1,75,1, 334284,0,1,79,1,
33031,2,0,1,2493, 33431,2,0,1,2489,
3304533,18,1,2493,534, 3344526,18,1,2489,527,
330520,535,4,34,83, 334520,528,4,46,78,
33460,79,0,84,0,
334795,0,65,0,84,
33480,95,0,82,0,
334979,0,84,0,95,
33060,84,0,65,0, 33500,84,0,65,0,
330784,0,69,0,95, 335182,0,71,0,69,
33520,84,0,95,0,
335369,0,86,0,69,
33540,78,0,84,0,
33551,78,1,1,2,
33560,1,2490,529,18,
33571,2490,530,20,531,
33584,30,78,0,79,
33590,95,0,83,0,
336069,0,78,0,83,
33610,79,0,82,0,
336295,0,69,0,86,
33080,69,0,78,0, 33630,69,0,78,0,
330984,0,82,0,89, 336484,0,1,77,1,
33100,95,0,69,0, 33651,2,0,1,2491,
331186,0,69,0,78, 3366532,18,1,2491,533,
33120,84,0,1,85, 336720,534,4,36,77,
33680,79,0,86,0,
336973,0,78,0,71,
33700,95,0,83,0,
337184,0,65,0,82,
33720,84,0,95,0,
337369,0,86,0,69,
33740,78,0,84,0,
33751,76,1,1,2,
33760,1,2493,535,18,
33771,2493,536,20,537,
33784,32,83,0,84,
33790,65,0,84,0,
338069,0,95,0,69,
33810,88,0,73,0,
338284,0,95,0,69,
33830,86,0,69,0,
338478,0,84,0,1,
338586,1,1,2,0,
33861,1413,538,18,1,
33871413,179,2,0,1,
3388346,539,18,1,346,
3389540,20,541,4,8,
339080,0,76,0,85,
33910,83,0,1,18,
33131,1,2,0,1, 33921,1,2,0,1,
33141413,536,18,1,1413, 33932496,542,18,1,2496,
3315171,2,0,1,346, 3394543,20,544,4,34,
3316537,18,1,346,538, 339582,0,69,0,77,
331720,539,4,8,80, 33960,79,0,84,0,
33180,76,0,85,0, 339769,0,95,0,68,
331983,0,1,18,1, 33980,65,0,84,0,
33201,2,0,1,2496, 339965,0,95,0,69,
3321540,18,1,2496,541, 34000,86,0,69,0,
332220,542,4,22,77, 340178,0,84,0,1,
33230,79,0,78,0, 340282,1,1,2,0,
332469,0,89,0,95, 34031,2021,545,18,1,
33250,69,0,86,0, 34042021,274,2,0,1,
332669,0,78,0,84, 34052022,546,18,1,2022,
33270,1,74,1,1, 3406350,2,0,1,352,
33282,0,1,2021,543, 3407547,18,1,352,179,
332918,1,2021,261,2, 34082,0,1,2024,548,
33300,1,2022,544,18, 340918,1,2024,132,2,
33311,2022,355,2,0, 34100,1,2025,549,18,
33321,352,545,18,1, 34111,2025,550,20,551,
3333352,171,2,0,1, 34124,8,74,0,85,
33342024,546,18,1,2024, 34130,77,0,80,0,
3335132,2,0,1,2025, 34141,49,1,1,2,
3336547,18,1,2025,548, 34150,1,2026,552,18,
333720,549,4,8,74, 34161,2026,132,2,0,
33380,85,0,77,0, 34171,2027,553,18,1,
333980,0,1,49,1, 34182027,554,20,555,4,
33401,2,0,1,2026, 34194,65,0,84,0,
3341550,18,1,2026,132, 34201,23,1,1,2,
33422,0,1,2027,551, 34210,1,2028,556,18,
334318,1,2027,552,20, 34221,2028,132,2,0,
3344553,4,4,65,0, 34231,2029,557,18,1,
334584,0,1,23,1, 34242029,270,2,0,1,
33461,2,0,1,2028, 34252030,558,18,1,2030,
3347554,18,1,2028,132, 3426559,20,560,4,14,
33482,0,1,2029,555, 342770,0,111,0,114,
334918,1,2029,351,2, 34280,76,0,111,0,
33500,1,2030,556,18, 3429111,0,112,0,1,
33511,2030,557,20,558, 3430139,1,2,2,0,
33524,14,70,0,111, 34311,2031,561,18,1,
33530,114,0,76,0, 34322031,562,20,563,4,
3354111,0,111,0,112, 343332,68,0,111,0,
343487,0,104,0,105,
34350,108,0,101,0,
343683,0,116,0,97,
34370,116,0,101,0,
3438109,0,101,0,110,
34390,116,0,1,138,
34401,2,2,0,1,
34412032,564,18,1,2032,
3442565,20,566,4,28,
344387,0,104,0,105,
34440,108,0,101,0,
344583,0,116,0,97,
34460,116,0,101,0,
3447109,0,101,0,110,
34480,116,0,1,137,
34491,2,2,0,1,
34502033,567,18,1,2033,
3451568,20,569,4,22,
345273,0,102,0,83,
34530,116,0,97,0,
3454116,0,101,0,109,
34550,101,0,110,0,
3456116,0,1,136,1,
34572,2,0,1,2034,
3458570,18,1,2034,571,
345920,572,4,22,83,
34600,116,0,97,0,
3461116,0,101,0,67,
34620,104,0,97,0,
3463110,0,103,0,101,
33550,1,135,1,2, 34640,1,135,1,2,
33562,0,1,2031,559, 34652,0,1,1478,573,
335718,1,2031,560,20, 346618,1,1478,171,2,
3358561,4,32,68,0, 34670,1,1479,574,18,
3359111,0,87,0,104, 34681,1479,291,2,0,
33600,105,0,108,0, 34691,2037,575,18,1,
3361101,0,83,0,116, 34702037,202,2,0,1,
33620,97,0,116,0, 34712038,576,18,1,2038,
3363101,0,109,0,101, 3472577,20,578,4,18,
33640,110,0,116,0, 347374,0,117,0,109,
33651,134,1,2,2, 34740,112,0,76,0,
33660,1,2032,562,18, 347597,0,98,0,101,
33671,2032,563,20,564, 34760,108,0,1,133,
33684,28,87,0,104, 34771,2,2,0,1,
33690,105,0,108,0, 34782039,579,18,1,2039,
3370101,0,83,0,116, 3479202,2,0,1,2040,
33710,97,0,116,0, 3480580,18,1,2040,581,
3372101,0,109,0,101, 348120,582,4,30,82,
33730,110,0,116,0, 34820,101,0,116,0,
33741,133,1,2,2, 3483117,0,114,0,110,
33750,1,2033,565,18,
33761,2033,566,20,567,
33774,22,73,0,102,
33780,83,0,116,0, 34840,83,0,116,0,
337997,0,116,0,101, 348597,0,116,0,101,
33800,109,0,101,0, 34860,109,0,101,0,
3381110,0,116,0,1, 3487110,0,116,0,1,
3382132,1,2,2,0, 3488132,1,2,2,0,
33831,2034,568,18,1, 34891,2041,583,18,1,
33842034,569,20,570,4, 34902041,202,2,0,1,
338522,83,0,116,0, 34911485,584,18,1,1485,
3492179,2,0,1,372,
3493585,18,1,372,191,
34942,0,1,373,586,
349518,1,373,132,2,
34960,1,374,587,18,
34971,374,187,2,0,
34981,375,588,18,1,
3499375,132,2,0,1,
3500376,589,18,1,376,
3501194,2,0,1,377,
3502590,18,1,377,132,
35032,0,1,378,591,
350418,1,378,187,2,
35050,1,379,592,18,
35061,379,132,2,0,
35071,380,593,18,1,
3508380,594,20,595,4,
350916,67,0,111,0,
3510110,0,115,0,116,
35110,97,0,110,0,
3512116,0,1,145,1,
35132,2,0,1,381,
3514596,18,1,381,306,
35152,0,1,2610,597,
351618,1,2610,598,20,
3517599,4,38,86,0,
3518101,0,99,0,116,
35190,111,0,114,0,
352065,0,114,0,103,
35210,83,0,116,0,
338697,0,116,0,101, 352297,0,116,0,101,
33870,67,0,104,0, 35230,69,0,118,0,
338897,0,110,0,103,
33890,101,0,1,131,
33901,2,2,0,1,
33911478,571,18,1,1478,
3392163,2,0,1,1479,
3393572,18,1,1479,280,
33942,0,1,2037,573,
339518,1,2037,193,2,
33960,1,2038,574,18,
33971,2038,575,20,576,
33984,18,74,0,117,
33990,109,0,112,0,
340076,0,97,0,98,
34010,101,0,108,0,
34021,129,1,2,2,
34030,1,2039,577,18,
34041,2039,193,2,0,
34051,2040,578,18,1,
34062040,579,20,580,4,
340730,82,0,101,0,
3408116,0,117,0,114,
34090,110,0,83,0,
3410116,0,97,0,116,
34110,101,0,109,0,
3412101,0,110,0,116, 3524101,0,110,0,116,
34130,1,128,1,2, 35250,1,107,1,2,
34142,0,1,2041,581, 35262,0,1,2611,600,
341518,1,2041,193,2, 352718,1,2611,601,20,
34160,1,1485,582,18, 3528602,4,32,73,0,
34171,1485,171,2,0, 3529110,0,116,0,65,
34181,372,583,18,1, 35300,114,0,103,0,
3419372,183,2,0,1, 353183,0,116,0,97,
3420373,584,18,1,373, 35320,116,0,101,0,
3421132,2,0,1,374, 353369,0,118,0,101,
3422585,18,1,374,179, 35340,110,0,116,0,
34232,0,1,375,586, 35351,106,1,2,2,
342418,1,375,132,2, 35360,1,371,603,18,
34250,1,376,587,18, 35371,371,604,20,605,
34261,376,186,2,0, 35384,24,70,0,117,
34271,377,588,18,1, 35390,110,0,99,0,
3428377,132,2,0,1, 3540116,0,105,0,111,
3429378,589,18,1,378, 35410,110,0,67,0,
3430179,2,0,1,379, 354297,0,108,0,108,
3431590,18,1,379,132, 35430,1,141,1,2,
34322,0,1,380,591, 35442,0,1,942,606,
343318,1,380,592,20, 354518,1,942,179,2,
3434593,4,16,67,0, 35460,1,2533,607,18,
3435111,0,110,0,115, 35471,2533,449,2,0,
34360,116,0,97,0, 35481,387,608,18,1,
3437110,0,116,0,1, 3549387,179,2,0,1,
3438141,1,2,2,0, 35502616,609,18,1,2616,
34391,381,594,18,1, 3551610,20,611,4,44,
3440381,301,2,0,1, 355273,0,110,0,116,
3441371,595,18,1,371, 35530,82,0,111,0,
3442596,20,597,4,24, 3554116,0,82,0,111,
344370,0,117,0,110,
34440,99,0,116,0,
3445105,0,111,0,110,
34460,67,0,97,0,
3447108,0,108,0,1,
3448137,1,2,2,0,
34491,942,598,18,1,
3450942,171,2,0,1,
34512533,599,18,1,2533,
3452135,2,0,1,387,
3453600,18,1,387,171,
34542,0,1,2536,601,
345518,1,2536,351,2,
34560,1,2537,602,18,
34571,2537,603,20,604,
34584,10,69,0,118,
34590,101,0,110,0,
3460116,0,1,117,1,
34612,2,0,1,1514,
3462605,18,1,1514,163,
34632,0,1,1515,606,
346418,1,1515,311,2,
34650,1,2549,607,18,
34661,2549,156,2,0,
34671,2074,608,18,1,
34682074,163,2,0,1,
34692075,609,18,1,2075,
3470156,2,0,1,406,
3471610,18,1,406,143,
34722,0,1,1521,611,
347318,1,1521,171,2,
34740,1,412,612,18,
34751,412,171,2,0,
34761,2484,613,18,1,
34772484,614,20,615,4,
347832,79,0,66,0,
347974,0,69,0,67,
34800,84,0,95,0,
348182,0,69,0,90,
34820,95,0,69,0,
348386,0,69,0,78,
34840,84,0,1,80,
34851,1,2,0,1,
34862023,616,18,1,2023,
3487617,20,618,4,26,
348868,0,69,0,70,
34890,65,0,85,0,
349076,0,84,0,95,
34910,83,0,84,0,
349265,0,84,0,69,
34930,1,47,1,1,
34942,0,1,1442,619,
349518,1,1442,163,2,
34960,1,2035,620,18,
34971,2035,193,2,0,
34981,2036,621,18,1,
34992036,622,20,623,4,
350026,74,0,117,0,
3501109,0,112,0,83,
35020,116,0,97,0,
3503116,0,101,0,109,
35040,101,0,110,0,
3505116,0,1,130,1,
35062,2,0,1,431,
3507624,18,1,431,143,
35082,0,1,2105,625,
350918,1,2105,261,2,
35100,1,2106,626,18,
35111,2106,504,2,0,
35121,1550,627,18,1,
35131550,163,2,0,1,
3514437,628,18,1,437,
3515171,2,0,1,2044,
3516629,18,1,2044,630,
351720,631,4,28,69,
35180,109,0,112,0,
3519116,0,121,0,83,
35200,116,0,97,0,
3521116,0,101,0,109,
35220,101,0,110,0,
3523116,0,1,125,1,
35242,2,0,1,2045,
3525632,18,1,2045,193,
35262,0,1,1555,633,
352718,1,1555,171,2,
35280,1,2511,634,18,
35291,2511,156,2,0,
35301,1001,635,18,1,
35311001,596,2,0,1,
35321002,636,18,1,1002,
3533592,2,0,1,447,
3534637,18,1,447,320,
35352,0,1,2593,638,
353618,1,2593,342,2,
35370,1,2594,639,18,
35381,2594,640,20,641,
35394,32,73,0,110,
35400,116,0,65,0, 35550,116,0,65,0,
3541114,0,103,0,83, 3556114,0,103,0,83,
35420,116,0,97,0, 35570,116,0,97,0,
3543116,0,101,0,69, 3558116,0,101,0,69,
35440,118,0,101,0, 35590,118,0,101,0,
3545110,0,116,0,1, 3560110,0,116,0,1,
3546106,1,2,2,0, 3561108,1,2,2,0,
35471,2595,642,18,1, 35621,2617,612,18,1,
35482595,499,2,0,1, 35632617,598,2,0,1,
35492596,643,18,1,2596, 35642537,613,18,1,2537,
3550644,20,645,4,34, 3565270,2,0,1,2619,
355186,0,111,0,105, 3566614,18,1,2619,615,
35520,100,0,65,0, 356720,616,4,32,75,
3553114,0,103,0,83, 35680,101,0,121,0,
356965,0,114,0,103,
35700,83,0,116,0,
357197,0,116,0,101,
35720,69,0,118,0,
3573101,0,110,0,116,
35740,1,105,1,2,
35752,0,1,2620,617,
357618,1,2620,618,20,
3577619,4,34,86,0,
3578111,0,105,0,100,
35790,65,0,114,0,
3580103,0,83,0,116,
35810,97,0,116,0,
3582101,0,69,0,118,
35830,101,0,110,0,
3584116,0,1,104,1,
35852,2,0,1,2621,
3586620,18,1,2621,621,
358720,622,4,20,83,
35540,116,0,97,0, 35880,116,0,97,0,
3555116,0,101,0,69, 3589116,0,101,0,69,
35560,118,0,101,0, 35900,118,0,101,0,
3557110,0,116,0,1, 3591110,0,116,0,1,
3558104,1,2,2,0, 3592103,1,2,2,0,
35591,2520,646,18,1, 35931,2622,623,18,1,
35602520,156,2,0,1, 35942622,624,20,625,4,
35611010,647,18,1,1010, 359526,68,0,69,0,
3562163,2,0,1,1011, 359670,0,65,0,85,
3563648,18,1,1011,156, 35970,76,0,84,0,
35642,0,1,1012,649, 359895,0,83,0,84,
356518,1,1012,171,2, 35990,65,0,84,0,
35660,1,1013,650,18, 360069,0,1,47,1,
35671,1013,156,2,0, 36011,2,0,1,2623,
35681,2602,651,18,1, 3602626,18,1,2623,166,
35692602,644,2,0,1, 36032,0,1,2543,627,
35702603,652,18,1,2603, 360418,1,2543,628,20,
3571653,20,654,4,20, 3605629,4,52,75,0,
357283,0,116,0,97, 3606101,0,121,0,65,
35730,116,0,101,0, 36070,114,0,103,0,
357469,0,118,0,101, 3608117,0,109,0,101,
35750,110,0,116,0, 36090,110,0,116,0,
35761,103,1,2,2, 361068,0,101,0,99,
35770,1,459,655,18, 36110,108,0,97,0,
35781,459,656,20,657, 3612114,0,97,0,116,
35794,24,76,0,69, 36130,105,0,111,0,
35800,70,0,84,0, 3614110,0,76,0,105,
358195,0,66,0,82, 36150,115,0,116,0,
35820,65,0,67,0, 36161,110,1,2,2,
358375,0,69,0,84, 36170,1,2546,630,18,
35840,1,27,1,1, 36181,2546,270,2,0,
35852,0,1,1574,658, 36191,1514,631,18,1,
358618,1,1574,193,2, 36201514,171,2,0,1,
35870,1,461,659,18, 36211515,632,18,1,1515,
35881,461,660,20,661, 3622313,2,0,1,2549,
35894,24,65,0,114, 3623633,18,1,2549,163,
35900,103,0,117,0, 36242,0,1,2074,634,
3591109,0,101,0,110, 362518,1,2074,171,2,
35920,116,0,76,0, 36260,1,2075,635,18,
3593105,0,115,0,116, 36271,2075,163,2,0,
35940,1,138,1,2, 36281,2552,636,18,1,
35952,0,1,462,662, 36292552,637,20,638,4,
359618,1,462,143,2, 363010,69,0,118,0,
35970,1,464,663,18, 3631101,0,110,0,116,
35981,464,664,20,665, 36320,1,120,1,2,
35994,16,65,0,114, 36332,0,1,406,639,
36000,103,0,117,0, 363418,1,406,153,2,
3601109,0,101,0,110, 36350,1,1521,640,18,
36020,116,0,1,139, 36361,1521,179,2,0,
36031,2,2,0,1, 36371,412,641,18,1,
36042136,666,18,1,2136, 3638412,179,2,0,1,
3605261,2,0,1,2696, 36392484,642,18,1,2484,
3606667,18,1,2696,515, 3640643,20,644,4,26,
36072,0,1,1585,668, 364167,0,72,0,65,
360818,1,1585,669,20, 36420,78,0,71,0,
3609670,4,12,82,0, 364369,0,68,0,95,
361069,0,84,0,85, 36440,69,0,86,0,
36110,82,0,78,0, 364569,0,78,0,84,
36121,50,1,1,2, 36460,1,61,1,1,
36130,1,2700,671,18, 36472,0,1,2023,645,
36141,2700,672,20,673, 364818,1,2023,624,2,
36154,10,83,0,116, 36490,1,2564,646,18,
36501,2564,163,2,0,
36511,1442,647,18,1,
36521442,171,2,0,1,
36532035,648,18,1,2035,
3654202,2,0,1,2036,
3655649,18,1,2036,650,
365620,651,4,26,74,
36570,117,0,109,0,
3658112,0,83,0,116,
36590,97,0,116,0,
3660101,0,109,0,101,
36610,110,0,116,0,
36621,134,1,2,2,
36630,1,431,652,18,
36641,431,153,2,0,
36651,2105,653,18,1,
36662105,274,2,0,1,
36672106,654,18,1,2106,
3668506,2,0,1,1550,
3669655,18,1,1550,171,
36702,0,1,437,656,
367118,1,437,179,2,
36720,1,2044,657,18,
36731,2044,658,20,659,
36744,28,69,0,109,
36750,112,0,116,0,
3676121,0,83,0,116,
36160,97,0,116,0, 36770,97,0,116,0,
3617101,0,1,101,1, 3678101,0,109,0,101,
36182,2,0,1,2701, 36790,110,0,116,0,
3619674,18,1,2701,132, 36801,129,1,2,2,
36202,0,1,2702,675, 36810,1,2045,660,18,
362118,1,2702,135,2, 36821,2045,202,2,0,
36220,1,476,676,18, 36831,1555,661,18,1,
36231,476,677,20,678, 36841555,179,2,0,1,
36852511,662,18,1,2511,
3686111,2,0,1,1001,
3687663,18,1,1001,604,
36882,0,1,1002,664,
368918,1,1002,594,2,
36900,1,447,665,18,
36911,447,322,2,0,
36921,2520,666,18,1,
36932520,270,2,0,1,
36941010,667,18,1,1010,
3695171,2,0,1,1011,
3696668,18,1,1011,163,
36972,0,1,1012,669,
369818,1,1012,179,2,
36990,1,1013,670,18,
37001,1013,163,2,0,
37011,459,671,18,1,
3702459,672,20,673,4,
370324,76,0,69,0,
370470,0,84,0,95,
37050,66,0,82,0,
370665,0,67,0,75,
37070,69,0,84,0,
37081,27,1,1,2,
37090,1,1574,674,18,
37101,1574,202,2,0,
37111,461,675,18,1,
3712461,676,20,677,4,
371324,65,0,114,0,
3714103,0,117,0,109,
37150,101,0,110,0,
3716116,0,76,0,105,
37170,115,0,116,0,
37181,142,1,2,2,
37190,1,462,678,18,
37201,462,153,2,0,
37211,464,679,18,1,
3722464,680,20,681,4,
372316,65,0,114,0,
3724103,0,117,0,109,
37250,101,0,110,0,
3726116,0,1,143,1,
37272,2,0,1,2136,
3728682,18,1,2136,274,
37292,0,1,2612,683,
373018,1,2612,615,2,
37310,1,2613,684,18,
37321,2613,618,2,0,
37331,2614,685,18,1,
37342614,621,2,0,1,
37352615,686,18,1,2615,
3736491,2,0,1,1585,
3737687,18,1,1585,688,
373820,689,4,12,82,
37390,69,0,84,0,
374085,0,82,0,78,
37410,1,50,1,1,
37422,0,1,2618,690,
374318,1,2618,601,2,
37440,1,476,691,18,
37451,476,692,20,693,
36244,30,83,0,84, 37464,30,83,0,84,
36250,82,0,73,0, 37470,82,0,73,0,
362678,0,71,0,95, 374878,0,71,0,95,
@@ -3629,8 +3751,8 @@ public yyLSLSyntax
36290,65,0,78,0, 37510,65,0,78,0,
363084,0,1,3,1, 375284,0,1,3,1,
36311,2,0,1,477, 37531,2,0,1,477,
3632679,18,1,477,680, 3754694,18,1,477,695,
363320,681,4,28,70, 375520,696,4,28,70,
36340,76,0,79,0, 37560,76,0,79,0,
363565,0,84,0,95, 375765,0,84,0,95,
36360,67,0,79,0, 37580,67,0,79,0,
@@ -3638,8 +3760,8 @@ public yyLSLSyntax
36380,65,0,78,0, 37600,65,0,78,0,
363984,0,1,95,1, 376184,0,1,95,1,
36401,2,0,1,478, 37621,2,0,1,478,
3641682,18,1,478,683, 3763697,18,1,478,698,
364220,684,4,40,72, 376420,699,4,40,72,
36430,69,0,88,0, 37650,69,0,88,0,
364495,0,73,0,78, 376695,0,73,0,78,
36450,84,0,69,0, 37670,84,0,69,0,
@@ -3649,8 +3771,8 @@ public yyLSLSyntax
36490,84,0,65,0, 37710,84,0,65,0,
365078,0,84,0,1, 377278,0,84,0,1,
365194,1,1,2,0, 377394,1,1,2,0,
36521,479,685,18,1, 37741,479,700,18,1,
3653479,686,20,687,4, 3775479,701,20,702,4,
365432,73,0,78,0, 377632,73,0,78,0,
365584,0,69,0,71, 377784,0,69,0,71,
36560,69,0,82,0, 37780,69,0,82,0,
@@ -3659,933 +3781,968 @@ public yyLSLSyntax
365984,0,65,0,78, 378184,0,65,0,78,
36600,84,0,1,93, 37820,84,0,1,93,
36611,1,2,0,1, 37831,1,2,0,1,
3662480,688,18,1,480, 3784480,703,18,1,480,
3663689,20,690,4,26, 3785704,20,705,4,26,
366482,0,73,0,71, 378682,0,73,0,71,
36650,72,0,84,0, 37870,72,0,84,0,
366695,0,66,0,82, 378895,0,66,0,82,
36670,65,0,67,0, 37890,65,0,67,0,
366875,0,69,0,84, 379075,0,69,0,84,
36690,1,28,1,1, 37910,1,28,1,1,
36702,0,1,481,691, 37922,0,1,481,706,
367118,1,481,664,2, 379318,1,481,680,2,
36720,1,2711,692,18, 37940,1,2711,707,18,
36731,2711,140,2,0, 37951,2711,491,2,0,
36741,2713,693,18,1, 37961,2718,708,18,1,
36752713,156,2,0,1, 37972718,242,2,0,1,
36762715,694,18,1,2715, 37981048,709,18,1,1048,
3677351,2,0,1,2717, 3799179,2,0,1,2721,
3678695,18,1,2717,153, 3800710,18,1,2721,711,
36792,0,1,2718,696, 380120,712,4,10,83,
368018,1,2718,311,2, 38020,116,0,97,0,
36810,1,1048,697,18, 3803116,0,101,0,1,
36821,1048,171,2,0, 3804101,1,2,2,0,
36831,2724,698,18,1, 38051,2722,713,18,1,
36842724,171,2,0,1, 38062722,711,2,0,1,
36852042,699,18,1,2042, 38072723,714,18,1,2723,
3686700,20,701,4,20, 3808132,2,0,1,2724,
368765,0,115,0,115, 3809715,18,1,2724,135,
36880,105,0,103,0, 38102,0,1,2042,716,
3689110,0,109,0,101, 381118,1,2042,717,20,
36900,110,0,116,0, 3812718,4,20,65,0,
36911,126,1,2,2, 3813115,0,115,0,105,
36920,1,2043,702,18, 38140,103,0,110,0,
36931,2043,193,2,0, 3815109,0,101,0,110,
36941,1620,703,18,1, 38160,116,0,1,130,
36951620,163,2,0,1, 38171,2,2,0,1,
36961621,704,18,1,1621, 38182043,719,18,1,2043,
3697153,2,0,1,1622, 3819202,2,0,1,2568,
3698705,18,1,1622,311, 3820720,18,1,2568,721,
36992,0,1,509,706, 382120,722,4,18,83,
370018,1,509,143,2, 38220,116,0,97,0,
37010,1,2498,707,18, 3823116,0,101,0,66,
37021,2498,708,20,709, 38240,111,0,100,0,
37034,36,76,0,73, 3825121,0,1,102,1,
37040,78,0,75,0, 38262,2,0,1,2733,
370595,0,77,0,69, 3827723,18,1,2733,150,
37060,83,0,83,0, 38282,0,1,1620,724,
370765,0,71,0,69, 382918,1,1620,171,2,
38300,1,1621,725,18,
38311,1621,160,2,0,
38321,1622,726,18,1,
38331622,313,2,0,1,
3834509,727,18,1,509,
3835153,2,0,1,2498,
3836728,18,1,2498,729,
383720,730,4,24,76,
38380,73,0,83,0,
383984,0,69,0,78,
37080,95,0,69,0, 38400,95,0,69,0,
370986,0,69,0,78, 384186,0,69,0,78,
37100,84,0,1,72, 38420,84,0,1,73,
37111,1,2,0,1, 38431,1,2,0,1,
37121628,710,18,1,1628, 38442739,731,18,1,2739,
3713171,2,0,1,515, 3845160,2,0,1,2740,
3714711,18,1,515,171, 3846732,18,1,2740,313,
37152,0,1,2699,712, 38472,0,1,1628,733,
371618,1,2699,672,2, 384818,1,1628,179,2,
37170,1,2505,713,18, 38490,1,515,734,18,
37181,2505,714,20,715, 38501,515,179,2,0,
37194,28,86,0,101, 38511,2505,735,18,1,
37200,99,0,116,0, 38522505,736,20,737,4,
3721111,0,114,0,65, 385334,73,0,110,0,
3854116,0,82,0,111,
38550,116,0,82,0,
3856111,0,116,0,65,
37220,114,0,103,0, 38570,114,0,103,0,
372369,0,118,0,101, 385869,0,118,0,101,
37240,110,0,116,0, 38590,110,0,116,0,
37251,121,1,2,2, 38601,125,1,2,2,
37260,1,525,716,18, 38610,1,2746,738,18,
37271,525,320,2,0, 38621,2746,179,2,0,
37281,2197,717,18,1, 38631,2664,739,18,1,
37292197,163,2,0,1, 38642664,721,2,0,1,
37302198,718,18,1,2198, 3865525,740,18,1,525,
3731156,2,0,1,1591, 3866322,2,0,1,2197,
3732719,18,1,1591,171, 3867741,18,1,2197,171,
37332,0,1,2597,720, 38682,0,1,2198,742,
373418,1,2597,653,2, 386918,1,2198,163,2,
37350,1,2598,721,18, 38700,1,1591,743,18,
37361,2598,495,2,0, 38711,1591,179,2,0,
37371,1094,722,18,1, 38721,2521,744,18,1,
37381094,660,2,0,1, 38732521,745,20,746,4,
37392600,723,18,1,2600, 387428,86,0,101,0,
3740640,2,0,1,1096, 387599,0,116,0,111,
3741724,18,1,1096,156, 38760,114,0,65,0,
37422,0,1,2604,725, 3877114,0,103,0,69,
374318,1,2604,617,2, 38780,118,0,101,0,
37440,1,1657,726,18, 3879110,0,116,0,1,
37451,1657,193,2,0, 3880124,1,2,2,0,
37461,1658,727,18,1, 38811,1094,747,18,1,
37471658,728,20,729,4, 38821094,676,2,0,1,
37486,70,0,79,0, 38831096,748,18,1,1096,
374982,0,1,46,1, 3884163,2,0,1,1657,
37501,2,0,1,1659, 3885749,18,1,1657,202,
3751730,18,1,1659,135, 38862,0,1,1658,750,
37522,0,1,2774,731, 388718,1,1658,751,20,
375318,1,2774,304,2, 3888752,4,6,70,0,
37540,1,2775,732,18, 388979,0,82,0,1,
37551,2775,298,2,0, 389046,1,1,2,0,
37561,2690,733,18,1, 38911,1659,753,18,1,
37572690,495,2,0,1, 38921659,135,2,0,1,
37582777,104,1,2778,734, 38932609,754,18,1,2609,
375918,1,2778,735,23, 3894610,2,0,1,2776,
3760736,4,6,69,0, 3895755,18,1,2776,202,
376179,0,70,0,1, 38962,0,1,2777,756,
37622,1,6,2,0, 389718,1,2777,757,20,
37631,1665,737,18,1, 3898758,4,34,71,0,
37641665,171,2,0,1, 3899108,0,111,0,98,
37651113,738,18,1,1113, 39000,97,0,108,0,
3766179,2,0,739,5, 390168,0,101,0,102,
37670,740,5,356,1, 39020,105,0,110,0,
37682,741,19,736,1, 3903105,0,116,0,105,
37692,742,5,6,1, 39040,111,0,110,0,
37702700,743,17,744,15, 3905115,0,1,97,1,
3771745,4,14,37,0, 39062,2,0,1,1665,
377283,0,116,0,97, 3907759,18,1,1665,179,
37730,116,0,101,0, 39082,0,1,1113,760,
3774115,0,1,-1,1, 390918,1,1113,187,2,
37755,746,20,747,4, 39100,761,5,0,762,
39115,365,1,2,763,
391219,146,1,2,764,
39135,6,1,2711,765,
391417,766,15,767,4,
391512,37,0,83,0,
3916116,0,97,0,116,
39170,101,0,1,-1,
39181,5,768,20,769,
39194,14,83,0,116,
39200,97,0,116,0,
3921101,0,95,0,49,
39220,1,172,1,3,
39231,5,1,4,770,
392422,1,13,1,2718,
3925771,17,772,15,773,
39264,30,37,0,76,
39270,83,0,76,0,
392880,0,114,0,111,
39290,103,0,114,0,
393097,0,109,0,82,
39310,111,0,111,0,
3932116,0,1,-1,1,
39335,774,20,775,4,
393432,76,0,83,0,
393576,0,80,0,114,
39360,111,0,103,0,
3937114,0,97,0,109,
39380,82,0,111,0,
3939111,0,116,0,95,
39400,50,0,1,161,
39411,3,1,2,1,
39421,776,22,1,2,
39431,2721,777,17,778,
394415,779,4,14,37,
39450,83,0,116,0,
394697,0,116,0,101,
39470,115,0,1,-1,
39481,5,780,20,781,
39494,16,83,0,116,
39500,97,0,116,0,
3951101,0,115,0,95,
39520,50,0,1,171,
39531,3,1,3,1,
39542,782,22,1,12,
39551,2788,783,17,784,
395615,773,1,-1,1,
39575,785,20,786,4,
395832,76,0,83,0,
395976,0,80,0,114,
39600,111,0,103,0,
3961114,0,97,0,109,
39620,82,0,111,0,
3963111,0,116,0,95,
39640,49,0,1,160,
39651,3,1,3,1,
39662,787,22,1,1,
39671,2722,788,17,789,
396815,779,1,-1,1,
39695,790,20,791,4,
377616,83,0,116,0, 397016,83,0,116,0,
377797,0,116,0,101, 397197,0,116,0,101,
37780,115,0,95,0, 39720,115,0,95,0,
377949,0,1,166,1, 397349,0,1,170,1,
37803,1,2,1,1, 39743,1,2,1,1,
3781748,22,1,11,1, 3975792,22,1,11,1,
37822696,749,17,750,15, 39762615,793,17,794,15,
3783751,4,30,37,0, 3977767,1,-1,1,5,
378476,0,83,0,76, 3978795,20,796,4,14,
37850,80,0,114,0, 397983,0,116,0,97,
3786111,0,103,0,114, 39800,116,0,101,0,
37870,97,0,109,0,
378882,0,111,0,111,
37890,116,0,1,-1,
37901,5,752,20,753,
37914,32,76,0,83,
37920,76,0,80,0,
3793114,0,111,0,103,
37940,114,0,97,0,
3795109,0,82,0,111,
37960,111,0,116,0,
379795,0,50,0,1, 398195,0,50,0,1,
3798157,1,3,1,2, 3982173,1,3,1,6,
37991,1,754,22,1, 39831,5,797,22,1,
38002,1,2598,755,17, 398414,1,3,798,19,
3801756,15,757,4,12, 3985693,1,3,799,5,
380237,0,83,0,116, 398695,1,256,800,16,
38030,97,0,116,0, 39870,691,1,1261,801,
3804101,0,1,-1,1, 398816,0,691,1,509,
38055,758,20,759,4, 3989802,16,0,691,1,
380614,83,0,116,0, 39901515,803,16,0,691,
39911,2021,804,17,805,
399215,806,4,24,37,
39930,73,0,102,0,
399483,0,116,0,97,
39950,116,0,101,0,
3996109,0,101,0,110,
39970,116,0,1,-1,
39981,5,807,20,808,
39994,26,73,0,102,
40000,83,0,116,0,
380797,0,116,0,101, 400197,0,116,0,101,
38080,95,0,50,0, 40020,109,0,101,0,
38091,169,1,3,1, 4003110,0,116,0,95,
38106,1,5,760,22, 40040,50,0,1,226,
38111,14,1,2699,761, 40051,3,1,8,1,
381217,762,15,745,1, 40067,809,22,1,68,
3813-1,1,5,763,20, 40071,1775,810,16,0,
3814764,4,16,83,0, 4008691,1,2029,811,17,
3815116,0,97,0,116, 4009812,15,813,4,20,
38160,101,0,115,0, 401037,0,83,0,116,
381795,0,50,0,1,
3818167,1,3,1,3,
38191,2,765,22,1,
382012,1,2766,766,17,
3821767,15,751,1,-1,
38221,5,768,20,769,
38234,32,76,0,83,
38240,76,0,80,0,
3825114,0,111,0,103,
38260,114,0,97,0,
3827109,0,82,0,111,
38280,111,0,116,0,
382995,0,49,0,1,
3830156,1,3,1,3,
38311,2,770,22,1,
38321,1,2690,771,17,
3833772,15,757,1,-1,
38341,5,773,20,774,
38354,14,83,0,116,
38360,97,0,116,0,
3837101,0,95,0,49,
38380,1,168,1,3,
38391,5,1,4,775,
384022,1,13,1,3,
3841776,19,678,1,3,
3842777,5,95,1,256,
3843778,16,0,676,1,
38441261,779,16,0,676,
38451,509,780,16,0,
3846676,1,1515,781,16,
38470,676,1,2021,782,
384817,783,15,784,4,
384924,37,0,73,0,
3850102,0,83,0,116,
38510,97,0,116,0, 40110,97,0,116,0,
3852101,0,109,0,101, 4012101,0,109,0,101,
38530,110,0,116,0, 40130,110,0,116,0,
38541,-1,1,5,785, 40141,-1,1,5,814,
385520,786,4,26,73, 401520,815,4,24,83,
38560,102,0,83,0,
3857116,0,97,0,116,
38580,101,0,109,0,
3859101,0,110,0,116,
38600,95,0,50,0,
38611,217,1,3,1,
38628,1,7,787,22,
38631,63,1,1775,788,
386416,0,676,1,2029,
3865789,17,790,15,791,
38664,20,37,0,83,
38670,116,0,97,0, 40160,116,0,97,0,
3868116,0,101,0,109, 4017116,0,101,0,109,
38690,101,0,110,0, 40180,101,0,110,0,
3870116,0,1,-1,1, 4019116,0,95,0,49,
38715,792,20,793,4, 40200,51,0,1,220,
40211,3,1,2,1,
40221,816,22,1,62,
40231,2030,817,17,818,
402415,813,1,-1,1,
40255,819,20,820,4,
387224,83,0,116,0, 402624,83,0,116,0,
387397,0,116,0,101, 402797,0,116,0,101,
38740,109,0,101,0, 40280,109,0,101,0,
3875110,0,116,0,95, 4029110,0,116,0,95,
38760,49,0,51,0, 40300,49,0,50,0,
38771,211,1,3,1, 40311,219,1,3,1,
38782,1,1,794,22, 40322,1,1,821,22,
38791,57,1,2030,795, 40331,61,1,2031,822,
388017,796,15,791,1, 403417,823,15,813,1,
3881-1,1,5,797,20, 4035-1,1,5,824,20,
3882798,4,24,83,0, 4036825,4,24,83,0,
3883116,0,97,0,116, 4037116,0,97,0,116,
38840,101,0,109,0, 40380,101,0,109,0,
3885101,0,110,0,116, 4039101,0,110,0,116,
38860,95,0,49,0, 40400,95,0,49,0,
388750,0,1,210,1, 404149,0,1,218,1,
38883,1,2,1,1, 40423,1,2,1,1,
3889799,22,1,56,1, 4043826,22,1,60,1,
38902031,800,17,801,15, 40442032,827,17,828,15,
3891791,1,-1,1,5, 4045813,1,-1,1,5,
3892802,20,803,4,24, 4046829,20,830,4,24,
389383,0,116,0,97, 404783,0,116,0,97,
38940,116,0,101,0, 40480,116,0,101,0,
3895109,0,101,0,110, 4049109,0,101,0,110,
38960,116,0,95,0, 40500,116,0,95,0,
389749,0,49,0,1, 405149,0,48,0,1,
3898209,1,3,1,2, 4052217,1,3,1,2,
38991,1,804,22,1, 40531,1,831,22,1,
390055,1,2032,805,17, 405459,1,2033,832,17,
3901806,15,791,1,-1, 4055833,15,813,1,-1,
39021,5,807,20,808, 40561,5,834,20,835,
39034,24,83,0,116, 40574,22,83,0,116,
39040,97,0,116,0, 40580,97,0,116,0,
3905101,0,109,0,101, 4059101,0,109,0,101,
39060,110,0,116,0, 40600,110,0,116,0,
390795,0,49,0,48, 406195,0,57,0,1,
39080,1,208,1,3, 4062216,1,3,1,2,
39091,2,1,1,809, 40631,1,836,22,1,
391022,1,54,1,2033, 406458,1,277,837,16,
3911810,17,811,15,791, 40650,691,1,2035,838,
39121,-1,1,5,812, 406617,839,15,813,1,
391320,813,4,22,83, 4067-1,1,5,840,20,
4068841,4,22,83,0,
4069116,0,97,0,116,
40700,101,0,109,0,
4071101,0,110,0,116,
40720,95,0,56,0,
40731,215,1,3,1,
40743,1,2,842,22,
40751,57,1,2037,843,
407617,844,15,813,1,
4077-1,1,5,845,20,
4078846,4,22,83,0,
4079116,0,97,0,116,
40800,101,0,109,0,
4081101,0,110,0,116,
40820,95,0,55,0,
40831,214,1,3,1,
40843,1,2,847,22,
40851,56,1,2039,848,
408617,849,15,813,1,
4087-1,1,5,850,20,
4088851,4,22,83,0,
4089116,0,97,0,116,
40900,101,0,109,0,
4091101,0,110,0,116,
40920,95,0,54,0,
40931,213,1,3,1,
40943,1,2,852,22,
40951,55,1,32,853,
409616,0,691,1,2041,
4097854,17,855,15,813,
40981,-1,1,5,856,
409920,857,4,22,83,
39140,116,0,97,0, 41000,116,0,97,0,
3915116,0,101,0,109, 4101116,0,101,0,109,
39160,101,0,110,0, 41020,101,0,110,0,
3917116,0,95,0,57, 4103116,0,95,0,53,
39180,1,207,1,3, 41040,1,212,1,3,
39191,2,1,1,814, 41051,3,1,2,858,
392022,1,53,1,277, 410622,1,54,1,2293,
3921815,16,0,676,1, 4107859,16,0,691,1,
39222035,816,17,817,15, 41082043,860,17,861,15,
3923791,1,-1,1,5, 4109813,1,-1,1,5,
3924818,20,819,4,22, 4110862,20,863,4,22,
392583,0,116,0,97,
39260,116,0,101,0,
3927109,0,101,0,110,
39280,116,0,95,0,
392956,0,1,206,1,
39303,1,3,1,2,
3931820,22,1,52,1,
39322037,821,17,822,15,
3933791,1,-1,1,5,
3934823,20,824,4,22,
393583,0,116,0,97, 411183,0,116,0,97,
39360,116,0,101,0, 41120,116,0,101,0,
3937109,0,101,0,110, 4113109,0,101,0,110,
39380,116,0,95,0, 41140,116,0,95,0,
393955,0,1,205,1, 411551,0,1,210,1,
39403,1,3,1,2, 41163,1,3,1,2,
3941825,22,1,51,1, 4117864,22,1,52,1,
39422039,826,17,827,15, 41182045,865,17,866,15,
3943791,1,-1,1,5, 4119813,1,-1,1,5,
3944828,20,829,4,22, 4120867,20,868,4,22,
394583,0,116,0,97, 412183,0,116,0,97,
39460,116,0,101,0, 41220,116,0,101,0,
3947109,0,101,0,110, 4123109,0,101,0,110,
39480,116,0,95,0, 41240,116,0,95,0,
394954,0,1,204,1, 412549,0,1,208,1,
39503,1,3,1,2, 41263,1,3,1,2,
3951830,22,1,50,1, 4127869,22,1,50,1,
395232,831,16,0,676, 412841,870,16,0,691,
39531,2041,832,17,833, 41291,1297,871,16,0,
395415,791,1,-1,1, 4130691,1,43,872,16,
39555,834,20,835,4, 41310,691,1,1803,873,
395622,83,0,116,0, 413217,874,15,875,4,
413316,37,0,70,0,
4134111,0,114,0,76,
41350,111,0,111,0,
4136112,0,1,-1,1,
41375,876,20,877,4,
413818,70,0,111,0,
4139114,0,76,0,111,
41400,111,0,112,0,
414195,0,49,0,1,
4142233,1,3,1,10,
41431,9,878,22,1,
414475,1,1804,879,16,
41450,691,1,299,880,
414616,0,691,1,52,
4147881,16,0,691,1,
41482318,882,16,0,691,
41491,62,883,16,0,
4150691,1,2075,884,16,
41510,691,1,1574,885,
415217,886,15,813,1,
4153-1,1,5,887,20,
4154888,4,22,83,0,
4155116,0,97,0,116,
41560,101,0,109,0,
4157101,0,110,0,116,
41580,95,0,52,0,
41591,211,1,3,1,
41603,1,2,889,22,
41611,53,1,71,890,
416216,0,691,1,76,
4163891,16,0,691,1,
41641834,892,16,0,691,
41651,2337,893,16,0,
4166691,1,79,894,16,
41670,691,1,1335,895,
416816,0,691,1,322,
4169896,16,0,691,1,
417085,897,16,0,691,
41711,89,898,16,0,
4172691,1,346,899,16,
41730,691,1,2105,900,
417417,901,15,806,1,
4175-1,1,5,902,20,
4176903,4,26,73,0,
4177102,0,83,0,116,
41780,97,0,116,0,
4179101,0,109,0,101,
41800,110,0,116,0,
418195,0,51,0,1,
4182227,1,3,1,6,
41831,5,904,22,1,
418469,1,2106,905,16,
41850,691,1,97,906,
418616,0,691,1,1860,
4187907,17,908,15,909,
41884,34,37,0,68,
41890,111,0,87,0,
4190104,0,105,0,108,
41910,101,0,83,0,
4192116,0,97,0,116,
41930,101,0,109,0,
4194101,0,110,0,116,
41950,1,-1,1,5,
4196910,20,911,4,36,
419768,0,111,0,87,
41980,104,0,105,0,
4199108,0,101,0,83,
42000,116,0,97,0,
4201116,0,101,0,109,
42020,101,0,110,0,
4203116,0,95,0,49,
42040,1,231,1,3,
42051,8,1,7,912,
420622,1,73,1,2364,
4207913,17,914,15,875,
42081,-1,1,5,915,
420920,916,4,18,70,
42100,111,0,114,0,
421176,0,111,0,111,
42120,112,0,95,0,
421350,0,1,234,1,
42143,1,9,1,8,
4215917,22,1,76,1,
4216102,918,16,0,691,
42171,112,919,16,0,
4218691,1,1117,920,16,
42190,691,1,1873,921,
422017,922,15,909,1,
4221-1,1,5,923,20,
4222924,4,36,68,0,
4223111,0,87,0,104,
42240,105,0,108,0,
4225101,0,83,0,116,
42260,97,0,116,0,
4227101,0,109,0,101,
42280,110,0,116,0,
422995,0,50,0,1,
4230232,1,3,1,8,
42311,7,925,22,1,
423274,1,1876,926,16,
42330,691,1,124,927,
423416,0,691,1,2136,
4235928,17,929,15,806,
42361,-1,1,5,930,
423720,931,4,26,73,
42380,102,0,83,0,
4239116,0,97,0,116,
42400,101,0,109,0,
4241101,0,110,0,116,
42420,95,0,52,0,
42431,228,1,3,1,
42448,1,7,932,22,
42451,70,1,381,933,
424616,0,691,1,525,
4247934,16,0,691,1,
4248137,935,16,0,691,
42491,1901,936,16,0,
4250691,1,1153,937,16,
42510,691,1,151,938,
425216,0,691,1,1407,
4253939,16,0,691,1,
42541659,940,16,0,691,
42551,2413,941,16,0,
4256691,1,406,942,16,
42570,691,1,1371,943,
425816,0,691,1,166,
4259944,16,0,691,1,
42601622,945,16,0,691,
42611,1931,946,17,947,
426215,948,4,30,37,
42630,87,0,104,0,
4264105,0,108,0,101,
42650,83,0,116,0,
395797,0,116,0,101, 426697,0,116,0,101,
39580,109,0,101,0, 42670,109,0,101,0,
3959110,0,116,0,95, 4268110,0,116,0,1,
39600,53,0,1,203, 4269-1,1,5,949,20,
39611,3,1,3,1, 4270950,4,32,87,0,
39622,836,22,1,49, 4271104,0,105,0,108,
39631,2293,837,16,0, 42720,101,0,83,0,
3964676,1,2043,838,17, 4273116,0,97,0,116,
3965839,15,791,1,-1, 42740,101,0,109,0,
39661,5,840,20,841, 4275101,0,110,0,116,
39674,22,83,0,116, 42760,95,0,49,0,
42771,229,1,3,1,
42786,1,5,951,22,
42791,71,1,1933,952,
428016,0,691,1,431,
4281953,16,0,691,1,
42821585,954,16,0,691,
42831,182,955,16,0,
4284691,1,1189,956,16,
42850,691,1,1443,957,
428616,0,691,1,1695,
4287958,16,0,691,1,
42882198,959,16,0,691,
42891,447,960,16,0,
4290691,1,2458,961,17,
4291962,15,963,4,28,
429237,0,83,0,116,
39680,97,0,116,0, 42930,97,0,116,0,
3969101,0,109,0,101, 4294101,0,109,0,101,
39700,110,0,116,0, 42950,110,0,116,0,
397195,0,51,0,1, 429676,0,105,0,115,
3972201,1,3,1,3, 42970,116,0,1,-1,
39731,2,842,22,1, 42981,5,964,20,965,
397447,1,2045,843,17, 42994,30,83,0,116,
3975844,15,791,1,-1,
39761,5,845,20,846,
39774,22,83,0,116,
39780,97,0,116,0, 43000,97,0,116,0,
3979101,0,109,0,101, 4301101,0,109,0,101,
39800,110,0,116,0, 43020,110,0,116,0,
398195,0,49,0,1, 430376,0,105,0,115,
3982199,1,3,1,3,
39831,2,847,22,1,
398445,1,41,848,16,
39850,676,1,1297,849,
398616,0,676,1,43,
3987850,16,0,676,1,
39881803,851,17,852,15,
3989853,4,16,37,0,
399070,0,111,0,114,
39910,76,0,111,0,
3992111,0,112,0,1,
3993-1,1,5,854,20,
3994855,4,18,70,0,
3995111,0,114,0,76,
39960,111,0,111,0,
3997112,0,95,0,49,
39980,1,224,1,3,
39991,10,1,9,856,
400022,1,70,1,1804,
4001857,16,0,676,1,
4002299,858,16,0,676,
40031,52,859,16,0,
4004676,1,2318,860,16,
40050,676,1,62,861,
400616,0,676,1,2075,
4007862,16,0,676,1,
40081574,863,17,864,15,
4009791,1,-1,1,5,
4010865,20,866,4,22,
401183,0,116,0,97,
40120,116,0,101,0,
4013109,0,101,0,110,
40140,116,0,95,0, 43040,116,0,95,0,
401552,0,1,202,1, 430550,0,1,206,1,
40163,1,3,1,2, 43063,1,3,1,2,
4017867,22,1,48,1, 4307966,22,1,48,1,
401871,868,16,0,676, 43082459,967,17,968,15,
40191,76,869,16,0, 4309969,4,36,37,0,
4020676,1,1834,870,16, 431067,0,111,0,109,
40210,676,1,2337,871, 43110,112,0,111,0,
402216,0,676,1,79, 4312117,0,110,0,100,
4023872,16,0,676,1,
40241335,873,16,0,676,
40251,322,874,16,0,
4026676,1,85,875,16,
40270,676,1,89,876,
402816,0,676,1,346,
4029877,16,0,676,1,
40302105,878,17,879,15,
4031784,1,-1,1,5,
4032880,20,881,4,26,
403373,0,102,0,83,
40340,116,0,97,0,
4035116,0,101,0,109,
40360,101,0,110,0,
4037116,0,95,0,51,
40380,1,218,1,3,
40391,6,1,5,882,
404022,1,64,1,2106,
4041883,16,0,676,1,
404297,884,16,0,676,
40431,1860,885,17,886,
404415,887,4,34,37,
40450,68,0,111,0,
404687,0,104,0,105,
40470,108,0,101,0,
404883,0,116,0,97,
40490,116,0,101,0,
4050109,0,101,0,110,
40510,116,0,1,-1,
40521,5,888,20,889,
40534,36,68,0,111,
40540,87,0,104,0,
4055105,0,108,0,101,
40560,83,0,116,0, 43130,83,0,116,0,
405797,0,116,0,101, 431497,0,116,0,101,
40580,109,0,101,0, 43150,109,0,101,0,
4059110,0,116,0,95, 4316110,0,116,0,1,
40600,49,0,1,222, 4317-1,1,5,970,20,
40611,3,1,8,1, 4318971,4,38,67,0,
40627,890,22,1,68, 4319111,0,109,0,112,
40631,2364,891,17,892, 43200,111,0,117,0,
406415,853,1,-1,1, 4321110,0,100,0,83,
40655,893,20,894,4,
406618,70,0,111,0,
4067114,0,76,0,111,
40680,111,0,112,0,
406995,0,50,0,1,
4070225,1,3,1,9,
40711,8,895,22,1,
407271,1,102,896,16,
40730,676,1,112,897,
407416,0,676,1,1117,
4075898,16,0,676,1,
40761873,899,17,900,15,
4077887,1,-1,1,5,
4078901,20,902,4,36,
407968,0,111,0,87,
40800,104,0,105,0,
4081108,0,101,0,83,
40820,116,0,97,0, 43220,116,0,97,0,
4083116,0,101,0,109, 4323116,0,101,0,109,
40840,101,0,110,0, 43240,101,0,110,0,
4085116,0,95,0,50, 4325116,0,95,0,50,
40860,1,223,1,3, 43260,1,204,1,3,
40871,8,1,7,903, 43271,4,1,3,972,
408822,1,69,1,1876, 432822,1,46,1,1958,
4089904,16,0,676,1, 4329973,16,0,691,1,
4090124,905,16,0,676, 43302462,974,17,975,15,
40911,2136,906,17,907, 4331963,1,-1,1,5,
409215,784,1,-1,1, 4332976,20,977,4,30,
40935,908,20,909,4,
409426,73,0,102,0,
409583,0,116,0,97,
40960,116,0,101,0,
4097109,0,101,0,110,
40980,116,0,95,0,
409952,0,1,219,1,
41003,1,8,1,7,
4101910,22,1,65,1,
41022718,911,16,0,676,
41031,381,912,16,0,
4104676,1,525,913,16,
41050,676,1,137,914,
410616,0,676,1,1901,
4107915,16,0,676,1,
41081153,916,16,0,676,
41091,151,917,16,0,
4110676,1,1407,918,16,
41110,676,1,1659,919,
411216,0,676,1,2413,
4113920,16,0,676,1,
4114406,921,16,0,676,
41151,1371,922,16,0,
4116676,1,166,923,16,
41170,676,1,1622,924,
411816,0,676,1,1931,
4119925,17,926,15,927,
41204,30,37,0,87,
41210,104,0,105,0,
4122108,0,101,0,83,
41230,116,0,97,0,
4124116,0,101,0,109,
41250,101,0,110,0,
4126116,0,1,-1,1,
41275,928,20,929,4,
412832,87,0,104,0,
4129105,0,108,0,101,
41300,83,0,116,0,
413197,0,116,0,101,
41320,109,0,101,0,
4133110,0,116,0,95,
41340,49,0,1,220,
41351,3,1,6,1,
41365,930,22,1,66,
41371,1933,931,16,0,
4138676,1,431,932,16,
41390,676,1,1585,933,
414016,0,676,1,182,
4141934,16,0,676,1,
41421189,935,16,0,676,
41431,1443,936,16,0,
4144676,1,1695,937,16,
41450,676,1,2198,938,
414616,0,676,1,447,
4147939,16,0,676,1,
41482458,940,17,941,15,
4149942,4,28,37,0,
415083,0,116,0,97,
41510,116,0,101,0,
4152109,0,101,0,110,
41530,116,0,76,0,
4154105,0,115,0,116,
41550,1,-1,1,5,
4156943,20,944,4,30,
415783,0,116,0,97, 433383,0,116,0,97,
41580,116,0,101,0, 43340,116,0,101,0,
4159109,0,101,0,110, 4335109,0,101,0,110,
41600,116,0,76,0, 43360,116,0,76,0,
4161105,0,115,0,116, 4337105,0,115,0,116,
43380,95,0,49,0,
43391,205,1,3,1,
43402,1,1,978,22,
43411,47,1,1657,979,
434217,980,15,813,1,
4343-1,1,5,981,20,
4344982,4,22,83,0,
4345116,0,97,0,116,
43460,101,0,109,0,
4347101,0,110,0,116,
41620,95,0,50,0, 43480,95,0,50,0,
41631,197,1,3,1, 43491,209,1,3,1,
41643,1,2,945,22, 43503,1,2,983,22,
41651,43,1,2459,946, 43511,51,1,2464,984,
416617,947,15,948,4, 435217,985,15,969,1,
416736,37,0,67,0, 4353-1,1,5,986,20,
4354987,4,38,67,0,
4168111,0,109,0,112, 4355111,0,109,0,112,
41690,111,0,117,0, 43560,111,0,117,0,
4170110,0,100,0,83, 4357110,0,100,0,83,
41710,116,0,97,0, 43580,116,0,97,0,
4172116,0,101,0,109, 4359116,0,101,0,109,
41730,101,0,110,0, 43600,101,0,110,0,
4174116,0,1,-1,1, 4361116,0,95,0,49,
41755,949,20,950,4, 43620,1,203,1,3,
417638,67,0,111,0, 43631,3,1,2,988,
4177109,0,112,0,111, 436422,1,45,1,199,
41780,117,0,110,0, 4365989,16,0,691,1,
4179100,0,83,0,116, 4366459,990,16,0,691,
41800,97,0,116,0, 43671,462,991,16,0,
4181101,0,109,0,101, 4368691,1,217,992,16,
41820,110,0,116,0, 43690,691,1,2227,993,
418395,0,50,0,1, 437017,994,15,948,1,
4184195,1,3,1,4, 4371-1,1,5,995,20,
41851,3,951,22,1, 4372996,4,32,87,0,
418641,1,1958,952,16, 4373104,0,105,0,108,
41870,676,1,2462,953, 43740,101,0,83,0,
418817,954,15,942,1,
4189-1,1,5,955,20,
4190956,4,30,83,0,
4191116,0,97,0,116, 4375116,0,97,0,116,
41920,101,0,109,0, 43760,101,0,109,0,
4193101,0,110,0,116, 4377101,0,110,0,116,
41940,76,0,105,0, 43780,95,0,50,0,
4195115,0,116,0,95, 43791,230,1,3,1,
41960,49,0,1,196, 43806,1,5,997,22,
41971,3,1,2,1, 43811,72,1,1225,998,
41981,957,22,1,42, 438216,0,691,1,1479,
41991,1657,958,17,959, 4383999,16,0,691,1,
420015,791,1,-1,1, 43841731,1000,16,0,691,
42015,960,20,961,4, 43851,2740,1001,16,0,
420222,83,0,116,0, 4386691,1,1989,1002,17,
420397,0,116,0,101, 43871003,15,806,1,-1,
42040,109,0,101,0, 43881,5,1004,20,1005,
4205110,0,116,0,95, 43894,26,73,0,102,
42060,50,0,1,200,
42071,3,1,3,1,
42082,962,22,1,46,
42091,2464,963,17,964,
421015,948,1,-1,1,
42115,965,20,966,4,
421238,67,0,111,0,
4213109,0,112,0,111,
42140,117,0,110,0,
4215100,0,83,0,116,
42160,97,0,116,0,
4217101,0,109,0,101,
42180,110,0,116,0,
421995,0,49,0,1,
4220194,1,3,1,3,
42211,2,967,22,1,
422240,1,199,968,16,
42230,676,1,459,969,
422416,0,676,1,462,
4225970,16,0,676,1,
4226217,971,16,0,676,
42271,2227,972,17,973,
422815,927,1,-1,1,
42295,974,20,975,4,
423032,87,0,104,0,
4231105,0,108,0,101,
42320,83,0,116,0, 43900,83,0,116,0,
423397,0,116,0,101, 439197,0,116,0,101,
42340,109,0,101,0, 43920,109,0,101,0,
4235110,0,116,0,95, 4393110,0,116,0,95,
42360,50,0,1,221, 43940,49,0,1,225,
42371,3,1,6,1, 43951,3,1,6,1,
42385,976,22,1,67, 43965,1006,22,1,67,
42391,1225,977,16,0, 43971,1990,1007,16,0,
4240676,1,1479,978,16, 4398691,1,236,1008,16,
42410,676,1,1731,979, 43990,691,1,1756,1009,
424216,0,676,1,1989, 440016,0,691,1,4,
4243980,17,981,15,784, 44011010,19,195,1,4,
42441,-1,1,5,982, 44021011,5,100,1,256,
424520,983,4,26,73, 44031012,16,0,589,1,
42460,102,0,83,0, 44041261,1013,16,0,589,
4247116,0,97,0,116, 44051,509,1014,16,0,
42480,101,0,109,0, 4406589,1,1515,1015,16,
44070,589,1,2021,804,
44081,1775,1016,16,0,
4409589,1,2029,811,1,
44102030,817,1,2031,822,
44111,2032,827,1,2033,
4412832,1,277,1017,16,
44130,589,1,2035,838,
44141,2037,843,1,2039,
4415848,1,32,1018,16,
44160,589,1,2041,854,
44171,2293,1019,16,0,
4418589,1,2043,860,1,
44192045,865,1,40,1020,
442016,0,197,1,41,
44211021,16,0,589,1,
44221297,1022,16,0,589,
44231,43,1023,16,0,
4424589,1,44,1024,16,
44250,197,1,1803,873,
44261,1804,1025,16,0,
4427589,1,299,1026,16,
44280,589,1,47,1027,
442916,0,193,1,52,
44301028,16,0,589,1,
44312318,1029,16,0,589,
44321,63,1030,16,0,
4433212,1,66,1031,16,
44340,210,1,2075,1032,
443516,0,589,1,1574,
4436885,1,71,1033,16,
44370,589,1,76,1034,
443816,0,589,1,1834,
44391035,16,0,589,1,
44402337,1036,16,0,589,
44411,79,1037,16,0,
4442589,1,1335,1038,16,
44430,589,1,322,1039,
444416,0,589,1,85,
44451040,16,0,589,1,
444689,1041,16,0,589,
44471,346,1042,16,0,
4448589,1,97,1043,16,
44490,589,1,2106,1044,
445016,0,589,1,102,
44511045,16,0,589,1,
44521860,907,1,2364,913,
44531,1114,1046,16,0,
4454193,1,112,1047,16,
44550,589,1,1117,1048,
445616,0,589,1,1873,
4457921,1,1876,1049,16,
44580,589,1,124,1050,
445916,0,589,1,2136,
4460928,1,381,1051,16,
44610,589,1,525,1052,
446216,0,589,1,137,
44631053,16,0,589,1,
44641901,1054,16,0,589,
44651,1153,1055,16,0,
4466589,1,151,1056,16,
44670,589,1,1407,1057,
446816,0,589,1,1659,
44691058,16,0,589,1,
44702413,1059,16,0,589,
44711,406,1060,16,0,
4472589,1,1371,1061,16,
44730,589,1,2105,900,
44741,166,1062,16,0,
4475589,1,1622,1063,16,
44760,589,1,1931,946,
44771,1933,1064,16,0,
4478589,1,431,1065,16,
44790,589,1,1585,1066,
448016,0,589,1,182,
44811067,16,0,589,1,
44821189,1068,16,0,589,
44831,1443,1069,16,0,
4484589,1,1695,1070,16,
44850,589,1,2198,1071,
448616,0,589,1,447,
44871072,16,0,589,1,
44882458,961,1,2459,967,
44891,1958,1073,16,0,
4490589,1,2462,974,1,
44911657,979,1,2464,984,
44921,199,1074,16,0,
4493589,1,459,1075,16,
44940,589,1,462,1076,
449516,0,589,1,217,
44961077,16,0,589,1,
44972227,993,1,1225,1078,
449816,0,589,1,1479,
44991079,16,0,589,1,
45001731,1080,16,0,589,
45011,2740,1081,16,0,
4502589,1,1989,1002,1,
45031990,1082,16,0,589,
45041,236,1083,16,0,
4505589,1,1756,1084,16,
45060,589,1,5,1085,
450719,192,1,5,1086,
45085,100,1,256,1087,
450916,0,585,1,1261,
45101088,16,0,585,1,
4511509,1089,16,0,585,
45121,1515,1090,16,0,
4513585,1,2021,804,1,
45141775,1091,16,0,585,
45151,2029,811,1,2030,
4516817,1,2031,822,1,
45172032,827,1,2033,832,
45181,277,1092,16,0,
4519585,1,2035,838,1,
45202037,843,1,2039,848,
45211,32,1093,16,0,
4522585,1,2041,854,1,
45232293,1094,16,0,585,
45241,2043,860,1,2045,
4525865,1,40,1095,16,
45260,196,1,41,1096,
452716,0,585,1,1297,
45281097,16,0,585,1,
452943,1098,16,0,585,
45301,44,1099,16,0,
4531196,1,1803,873,1,
45321804,1100,16,0,585,
45331,299,1101,16,0,
4534585,1,47,1102,16,
45350,190,1,52,1103,
453616,0,585,1,2318,
45371104,16,0,585,1,
453863,1105,16,0,211,
45391,66,1106,16,0,
4540209,1,2075,1107,16,
45410,585,1,1574,885,
45421,71,1108,16,0,
4543585,1,76,1109,16,
45440,585,1,1834,1110,
454516,0,585,1,2337,
45461111,16,0,585,1,
454779,1112,16,0,585,
45481,1335,1113,16,0,
4549585,1,322,1114,16,
45500,585,1,85,1115,
455116,0,585,1,89,
45521116,16,0,585,1,
4553346,1117,16,0,585,
45541,97,1118,16,0,
4555585,1,2106,1119,16,
45560,585,1,102,1120,
455716,0,585,1,1860,
4558907,1,2364,913,1,
45591114,1121,16,0,190,
45601,112,1122,16,0,
4561585,1,1117,1123,16,
45620,585,1,1873,921,
45631,1876,1124,16,0,
4564585,1,124,1125,16,
45650,585,1,2136,928,
45661,381,1126,16,0,
4567585,1,525,1127,16,
45680,585,1,137,1128,
456916,0,585,1,1901,
45701129,16,0,585,1,
45711153,1130,16,0,585,
45721,151,1131,16,0,
4573585,1,1407,1132,16,
45740,585,1,1659,1133,
457516,0,585,1,2413,
45761134,16,0,585,1,
4577406,1135,16,0,585,
45781,1371,1136,16,0,
4579585,1,2105,900,1,
4580166,1137,16,0,585,
45811,1622,1138,16,0,
4582585,1,1931,946,1,
45831933,1139,16,0,585,
45841,431,1140,16,0,
4585585,1,1585,1141,16,
45860,585,1,182,1142,
458716,0,585,1,1189,
45881143,16,0,585,1,
45891443,1144,16,0,585,
45901,1695,1145,16,0,
4591585,1,2198,1146,16,
45920,585,1,447,1147,
459316,0,585,1,2458,
4594961,1,2459,967,1,
45951958,1148,16,0,585,
45961,2462,974,1,1657,
4597979,1,2464,984,1,
4598199,1149,16,0,585,
45991,459,1150,16,0,
4600585,1,462,1151,16,
46010,585,1,217,1152,
460216,0,585,1,2227,
4603993,1,1225,1153,16,
46040,585,1,1479,1154,
460516,0,585,1,1731,
46061155,16,0,585,1,
46072740,1156,16,0,585,
46081,1989,1002,1,1990,
46091157,16,0,585,1,
4610236,1158,16,0,585,
46111,1756,1159,16,0,
4612585,1,6,1160,19,
4613292,1,6,1161,5,
46142,1,1114,1162,16,
46150,290,1,40,1163,
461616,0,574,1,7,
46171164,19,258,1,7,
46181165,5,2,1,1114,
46191166,16,0,256,1,
462040,1167,16,0,516,
46211,8,1168,19,218,
46221,8,1169,5,2,
46231,1114,1170,16,0,
4624216,1,40,1171,16,
46250,465,1,9,1172,
462619,224,1,9,1173,
46275,2,1,1114,1174,
462816,0,222,1,40,
46291175,16,0,396,1,
463010,1176,19,175,1,
463110,1177,5,2,1,
46321114,1178,16,0,173,
46331,40,1179,16,0,
4634338,1,11,1180,19,
4635203,1,11,1181,5,
4636146,1,1260,1182,17,
46371183,15,1184,4,34,
463837,0,83,0,105,
46390,109,0,112,0,
4640108,0,101,0,65,
46410,115,0,115,0,
4642105,0,103,0,110,
46430,109,0,101,0,
4644110,0,116,0,1,
4645-1,1,5,1185,20,
46461186,4,38,83,0,
4647105,0,109,0,112,
46480,108,0,101,0,
464965,0,115,0,115,
46500,105,0,103,0,
4651110,0,109,0,101,
46520,110,0,116,0,
465395,0,50,0,49,
46540,1,261,1,3,
46551,6,1,5,1187,
465622,1,103,1,1011,
46571188,17,1189,15,1190,
46584,44,37,0,80,
46590,97,0,114,0,
4249101,0,110,0,116, 4660101,0,110,0,116,
42500,95,0,49,0, 46610,104,0,101,0,
42511,216,1,3,1, 4662115,0,105,0,115,
42526,1,5,984,22, 46630,69,0,120,0,
42531,62,1,1990,985, 4664112,0,114,0,101,
425416,0,676,1,236, 46650,115,0,115,0,
4255986,16,0,676,1, 4666105,0,111,0,110,
42561756,987,16,0,676, 46670,1,-1,1,5,
42571,4,988,19,187, 46681191,20,1192,4,46,
42581,4,989,5,100, 466980,0,97,0,114,
42591,256,990,16,0, 46700,101,0,110,0,
4260587,1,1261,991,16, 4671116,0,104,0,101,
42610,587,1,509,992, 46720,115,0,105,0,
426216,0,587,1,1515, 4673115,0,69,0,120,
4263993,16,0,587,1, 46740,112,0,114,0,
42642021,782,1,1775,994, 4675101,0,115,0,115,
426516,0,587,1,2029, 46760,105,0,111,0,
4266789,1,2030,795,1, 4677110,0,95,0,50,
42672031,800,1,2032,805, 46780,1,308,1,3,
42681,2033,810,1,277, 46791,4,1,3,1193,
4269995,16,0,587,1, 468022,1,150,1,1514,
42702035,816,1,2037,821, 46811194,17,1195,15,1184,
42711,2039,826,1,32, 46821,-1,1,5,1196,
4272996,16,0,587,1, 468320,1197,4,38,83,
42732041,832,1,2293,997,
427416,0,587,1,2043,
4275838,1,2045,843,1,
427640,998,16,0,189,
42771,41,999,16,0,
4278587,1,1297,1000,16,
42790,587,1,43,1001,
428016,0,587,1,44,
42811002,16,0,189,1,
42821803,851,1,1804,1003,
428316,0,587,1,299,
42841004,16,0,587,1,
428547,1005,16,0,185,
42861,52,1006,16,0,
4287587,1,2318,1007,16,
42880,587,1,63,1008,
428916,0,208,1,66,
42901009,16,0,206,1,
42912075,1010,16,0,587,
42921,1574,863,1,71,
42931011,16,0,587,1,
429476,1012,16,0,587,
42951,1834,1013,16,0,
4296587,1,2337,1014,16,
42970,587,1,79,1015,
429816,0,587,1,1335,
42991016,16,0,587,1,
4300322,1017,16,0,587,
43011,85,1018,16,0,
4302587,1,89,1019,16,
43030,587,1,346,1020,
430416,0,587,1,97,
43051021,16,0,587,1,
43062106,1022,16,0,587,
43071,102,1023,16,0,
4308587,1,1860,885,1,
43092364,891,1,1114,1024,
431016,0,185,1,112,
43111025,16,0,587,1,
43121117,1026,16,0,587,
43131,1873,899,1,1876,
43141027,16,0,587,1,
4315124,1028,16,0,587,
43161,2136,906,1,2718,
43171029,16,0,587,1,
4318381,1030,16,0,587,
43191,525,1031,16,0,
4320587,1,137,1032,16,
43210,587,1,1901,1033,
432216,0,587,1,1153,
43231034,16,0,587,1,
4324151,1035,16,0,587,
43251,1407,1036,16,0,
4326587,1,1659,1037,16,
43270,587,1,2413,1038,
432816,0,587,1,406,
43291039,16,0,587,1,
43301371,1040,16,0,587,
43311,2105,878,1,166,
43321041,16,0,587,1,
43331622,1042,16,0,587,
43341,1931,925,1,1933,
43351043,16,0,587,1,
4336431,1044,16,0,587,
43371,1585,1045,16,0,
4338587,1,182,1046,16,
43390,587,1,1189,1047,
434016,0,587,1,1443,
43411048,16,0,587,1,
43421695,1049,16,0,587,
43431,2198,1050,16,0,
4344587,1,447,1051,16,
43450,587,1,2458,940,
43461,2459,946,1,1958,
43471052,16,0,587,1,
43482462,953,1,1657,958,
43491,2464,963,1,199,
43501053,16,0,587,1,
4351459,1054,16,0,587,
43521,462,1055,16,0,
4353587,1,217,1056,16,
43540,587,1,2227,972,
43551,1225,1057,16,0,
4356587,1,1479,1058,16,
43570,587,1,1731,1059,
435816,0,587,1,1989,
4359980,1,1990,1060,16,
43600,587,1,236,1061,
436116,0,587,1,1756,
43621062,16,0,587,1,
43635,1063,19,184,1,
43645,1064,5,100,1,
4365256,1065,16,0,583,
43661,1261,1066,16,0,
4367583,1,509,1067,16,
43680,583,1,1515,1068,
436916,0,583,1,2021,
4370782,1,1775,1069,16,
43710,583,1,2029,789,
43721,2030,795,1,2031,
4373800,1,2032,805,1,
43742033,810,1,277,1070,
437516,0,583,1,2035,
4376816,1,2037,821,1,
43772039,826,1,32,1071,
437816,0,583,1,2041,
4379832,1,2293,1072,16,
43800,583,1,2043,838,
43811,2045,843,1,40,
43821073,16,0,188,1,
438341,1074,16,0,583,
43841,1297,1075,16,0,
4385583,1,43,1076,16,
43860,583,1,44,1077,
438716,0,188,1,1803,
4388851,1,1804,1078,16,
43890,583,1,299,1079,
439016,0,583,1,47,
43911080,16,0,182,1,
439252,1081,16,0,583,
43931,2318,1082,16,0,
4394583,1,63,1083,16,
43950,207,1,66,1084,
439616,0,205,1,2075,
43971085,16,0,583,1,
43981574,863,1,71,1086,
439916,0,583,1,76,
44001087,16,0,583,1,
44011834,1088,16,0,583,
44021,2337,1089,16,0,
4403583,1,79,1090,16,
44040,583,1,1335,1091,
440516,0,583,1,322,
44061092,16,0,583,1,
440785,1093,16,0,583,
44081,89,1094,16,0,
4409583,1,346,1095,16,
44100,583,1,97,1096,
441116,0,583,1,2106,
44121097,16,0,583,1,
4413102,1098,16,0,583,
44141,1860,885,1,2364,
4415891,1,1114,1099,16,
44160,182,1,112,1100,
441716,0,583,1,1117,
44181101,16,0,583,1,
44191873,899,1,1876,1102,
442016,0,583,1,124,
44211103,16,0,583,1,
44222136,906,1,2718,1104,
442316,0,583,1,381,
44241105,16,0,583,1,
4425525,1106,16,0,583,
44261,137,1107,16,0,
4427583,1,1901,1108,16,
44280,583,1,1153,1109,
442916,0,583,1,151,
44301110,16,0,583,1,
44311407,1111,16,0,583,
44321,1659,1112,16,0,
4433583,1,2413,1113,16,
44340,583,1,406,1114,
443516,0,583,1,1371,
44361115,16,0,583,1,
44372105,878,1,166,1116,
443816,0,583,1,1622,
44391117,16,0,583,1,
44401931,925,1,1933,1118,
444116,0,583,1,431,
44421119,16,0,583,1,
44431585,1120,16,0,583,
44441,182,1121,16,0,
4445583,1,1189,1122,16,
44460,583,1,1443,1123,
444716,0,583,1,1695,
44481124,16,0,583,1,
44492198,1125,16,0,583,
44501,447,1126,16,0,
4451583,1,2458,940,1,
44522459,946,1,1958,1127,
445316,0,583,1,2462,
4454953,1,1657,958,1,
44552464,963,1,199,1128,
445616,0,583,1,459,
44571129,16,0,583,1,
4458462,1130,16,0,583,
44591,217,1131,16,0,
4460583,1,2227,972,1,
44611225,1132,16,0,583,
44621,1479,1133,16,0,
4463583,1,1731,1134,16,
44640,583,1,1989,980,
44651,1990,1135,16,0,
4466583,1,236,1136,16,
44670,583,1,1756,1137,
446816,0,583,1,6,
44691138,19,281,1,6,
44701139,5,2,1,1114,
44711140,16,0,279,1,
447240,1141,16,0,572,
44731,7,1142,19,248,
44741,7,1143,5,2,
44751,1114,1144,16,0,
4476246,1,40,1145,16,
44770,513,1,8,1146,
447819,214,1,8,1147,
44795,2,1,1114,1148,
448016,0,212,1,40,
44811149,16,0,474,1,
44829,1150,19,220,1,
44839,1151,5,2,1,
44841114,1152,16,0,218,
44851,40,1153,16,0,
4486401,1,10,1154,19,
4487167,1,10,1155,5,
44882,1,1114,1156,16,
44890,165,1,40,1157,
449016,0,338,1,11,
44911158,19,194,1,11,
44921159,5,146,1,1260,
44931160,17,1161,15,1162,
44944,34,37,0,83,
44950,105,0,109,0, 46840,105,0,109,0,
4496112,0,108,0,101, 4685112,0,108,0,101,
44970,65,0,115,0, 46860,65,0,115,0,
4498115,0,105,0,103, 4687115,0,105,0,103,
44990,110,0,109,0, 46880,110,0,109,0,
4500101,0,110,0,116, 4689101,0,110,0,116,
45010,1,-1,1,5, 46900,95,0,49,0,
45021163,20,1164,4,38, 469152,0,1,254,1,
46923,1,4,1,3,
46931198,22,1,96,1,
46949,1199,17,1200,15,
46951201,4,24,37,0,
469668,0,101,0,99,
46970,108,0,97,0,
4698114,0,97,0,116,
46990,105,0,111,0,
4700110,0,1,-1,1,
47015,1202,20,1203,4,
470226,68,0,101,0,
470399,0,108,0,97,
47040,114,0,97,0,
4705116,0,105,0,111,
47060,110,0,95,0,
470749,0,1,198,1,
47083,1,3,1,2,
47091204,22,1,40,1,
4710262,1205,17,1206,15,
47111207,4,34,37,0,
471266,0,105,0,110,
47130,97,0,114,0,
4714121,0,69,0,120,
47150,112,0,114,0,
4716101,0,115,0,115,
47170,105,0,111,0,
4718110,0,1,-1,1,
47195,1208,20,1209,4,
472036,66,0,105,0,
4721110,0,97,0,114,
47220,121,0,69,0,
4723120,0,112,0,114,
47240,101,0,115,0,
4725115,0,105,0,111,
47260,110,0,95,0,
472753,0,1,290,1,
47283,1,4,1,3,
47291210,22,1,132,1,
47301267,1211,17,1212,15,
47311184,1,-1,1,5,
47321213,20,1214,4,36,
450383,0,105,0,109, 473383,0,105,0,109,
45040,112,0,108,0, 47340,112,0,108,0,
4505101,0,65,0,115, 4735101,0,65,0,115,
45060,115,0,105,0, 47360,115,0,105,0,
4507103,0,110,0,109, 4737103,0,110,0,109,
45080,101,0,110,0, 47380,101,0,110,0,
4509116,0,95,0,50, 4739116,0,95,0,56,
45100,49,0,1,252, 47400,1,248,1,3,
45111,3,1,6,1, 47411,6,1,5,1215,
45125,1165,22,1,98, 474222,1,90,1,2021,
45131,1011,1166,17,1167, 4743804,1,1521,1216,17,
451415,1168,4,44,37, 47441217,15,1184,1,-1,
45150,80,0,97,0, 47451,5,1218,20,1219,
4516114,0,101,0,110,
45170,116,0,104,0,
4518101,0,115,0,105,
45190,115,0,69,0,
4520120,0,112,0,114,
45210,101,0,115,0,
4522115,0,105,0,111,
45230,110,0,1,-1,
45241,5,1169,20,1170,
45254,46,80,0,97,
45260,114,0,101,0,
4527110,0,116,0,104,
45280,101,0,115,0,
4529105,0,115,0,69,
45300,120,0,112,0,
4531114,0,101,0,115,
45320,115,0,105,0,
4533111,0,110,0,95,
45340,50,0,1,299,
45351,3,1,4,1,
45363,1171,22,1,145,
45371,1514,1172,17,1173,
453815,1162,1,-1,1,
45395,1174,20,1175,4,
454038,83,0,105,0,
4541109,0,112,0,108,
45420,101,0,65,0,
4543115,0,115,0,105,
45440,103,0,110,0,
4545109,0,101,0,110,
45460,116,0,95,0,
454749,0,52,0,1,
4548245,1,3,1,4,
45491,3,1176,22,1,
455091,1,9,1177,17,
45511178,15,1179,4,24,
455237,0,68,0,101,
45530,99,0,108,0,
455497,0,114,0,97,
45550,116,0,105,0,
4556111,0,110,0,1,
4557-1,1,5,1180,20,
45581181,4,26,68,0,
4559101,0,99,0,108,
45600,97,0,114,0,
456197,0,116,0,105,
45620,111,0,110,0,
456395,0,49,0,1,
4564190,1,3,1,3,
45651,2,1182,22,1,
456636,1,262,1183,17,
45671184,15,1185,4,34,
456837,0,66,0,105,
45690,110,0,97,0,
4570114,0,121,0,69,
45710,120,0,112,0,
4572114,0,101,0,115,
45730,115,0,105,0,
4574111,0,110,0,1,
4575-1,1,5,1186,20,
45761187,4,36,66,0,
4577105,0,110,0,97,
45780,114,0,121,0,
457969,0,120,0,112,
45800,114,0,101,0,
4581115,0,115,0,105,
45820,111,0,110,0,
458395,0,53,0,1,
4584281,1,3,1,4,
45851,3,1188,22,1,
4586127,1,1267,1189,17,
45871190,15,1162,1,-1,
45881,5,1191,20,1192,
45894,36,83,0,105, 47464,36,83,0,105,
45900,109,0,112,0, 47470,109,0,112,0,
4591108,0,101,0,65, 4748108,0,101,0,65,
@@ -4593,209 +4750,178 @@ public yyLSLSyntax
4593105,0,103,0,110, 4750105,0,103,0,110,
45940,109,0,101,0, 47510,109,0,101,0,
4595110,0,116,0,95, 4752110,0,116,0,95,
45960,56,0,1,239, 47530,49,0,1,241,
45971,3,1,6,1, 47541,3,1,4,1,
45985,1193,22,1,85, 47553,1220,22,1,83,
45991,2021,782,1,1521, 47561,2024,1221,17,1222,
46001194,17,1195,15,1162, 475715,1223,4,24,37,
46011,-1,1,5,1196, 47580,83,0,116,0,
460220,1197,4,36,83, 475997,0,116,0,101,
46030,105,0,109,0, 47600,67,0,104,0,
4604112,0,108,0,101, 476197,0,110,0,103,
46050,65,0,115,0, 47620,101,0,1,-1,
4606115,0,105,0,103, 47631,5,1224,20,1225,
46070,110,0,109,0, 47644,26,83,0,116,
4608101,0,110,0,116, 47650,97,0,116,0,
46090,95,0,49,0, 4766101,0,67,0,104,
46101,232,1,3,1, 47670,97,0,110,0,
46114,1,3,1198,22, 4768103,0,101,0,95,
46121,78,1,2024,1199, 47690,49,0,1,223,
461317,1200,15,1201,4, 47701,3,1,3,1,
461424,37,0,83,0, 47712,1226,22,1,65,
4615116,0,97,0,116, 47721,1775,1227,17,1228,
46160,101,0,67,0, 477315,1229,4,30,37,
4617104,0,97,0,110, 47740,69,0,109,0,
46180,103,0,101,0, 4775112,0,116,0,121,
46191,-1,1,5,1202, 47760,83,0,116,0,
462020,1203,4,26,83, 477797,0,116,0,101,
46210,116,0,97,0, 47780,109,0,101,0,
4622116,0,101,0,67, 4779110,0,116,0,1,
46230,104,0,97,0, 4780-1,1,5,1230,20,
4624110,0,103,0,101, 47811231,4,32,69,0,
46250,95,0,49,0,
46261,214,1,3,1,
46273,1,2,1204,22,
46281,60,1,1775,1205,
462917,1206,15,1207,4,
463030,37,0,69,0,
4631109,0,112,0,116, 4782109,0,112,0,116,
46320,121,0,83,0, 47830,121,0,83,0,
4633116,0,97,0,116, 4784116,0,97,0,116,
46340,101,0,109,0, 47850,101,0,109,0,
4635101,0,110,0,116, 4786101,0,110,0,116,
46360,1,-1,1,5, 47870,95,0,49,0,
46371208,20,1209,4,32, 47881,207,1,3,1,
463869,0,109,0,112, 47891,1,0,1232,22,
46390,116,0,121,0, 47901,49,1,19,1233,
464083,0,116,0,97, 479117,1200,1,2,1204,
46410,116,0,101,0, 47921,2028,1234,17,1235,
4642109,0,101,0,110, 479315,1236,4,20,37,
46430,116,0,95,0, 47940,74,0,117,0,
464449,0,1,198,1, 4795109,0,112,0,76,
46453,1,1,1,0, 47960,97,0,98,0,
46461210,22,1,44,1, 4797101,0,108,0,1,
464719,1211,17,1178,1, 4798-1,1,5,1237,20,
46482,1182,1,2028,1212, 47991238,4,22,74,0,
464917,1213,15,1214,4,
465020,37,0,74,0,
4651117,0,109,0,112, 4800117,0,109,0,112,
46520,76,0,97,0, 48010,76,0,97,0,
465398,0,101,0,108, 480298,0,101,0,108,
46540,1,-1,1,5, 48030,95,0,49,0,
46551215,20,1216,4,22, 48041,221,1,3,1,
465674,0,117,0,109, 48053,1,2,1239,22,
46570,112,0,76,0, 48061,63,1,2029,811,
465897,0,98,0,101, 48071,2281,1240,17,1241,
46590,108,0,95,0, 480815,1242,4,34,37,
466049,0,1,212,1, 48090,70,0,111,0,
46613,1,3,1,2, 4810114,0,76,0,111,
46621217,22,1,58,1, 48110,111,0,112,0,
46632029,789,1,2281,1218, 481283,0,116,0,97,
466417,1219,15,1220,4, 48130,116,0,101,0,
466534,37,0,70,0, 4814109,0,101,0,110,
4666111,0,114,0,76, 48150,116,0,1,-1,
46670,111,0,111,0, 48161,5,1243,20,1244,
4668112,0,83,0,116, 48174,36,70,0,111,
46690,97,0,116,0, 48180,114,0,76,0,
4670101,0,109,0,101, 4819111,0,111,0,112,
46710,110,0,116,0, 48200,83,0,116,0,
46721,-1,1,5,1221, 482197,0,116,0,101,
467320,1222,4,36,70, 48220,109,0,101,0,
46740,111,0,114,0, 4823110,0,116,0,95,
467576,0,111,0,111, 48240,50,0,1,236,
46760,112,0,83,0, 48251,3,1,2,1,
4677116,0,97,0,116, 48261,1245,22,1,78,
46780,101,0,109,0, 48271,2031,822,1,2032,
4679101,0,110,0,116, 4828827,1,2033,832,1,
46800,95,0,50,0, 48292034,1246,16,0,648,
46811,227,1,3,1, 48301,2035,838,1,2036,
46822,1,1,1223,22, 48311247,16,0,575,1,
46831,73,1,2031,800, 48322037,843,1,2038,1248,
46841,2032,805,1,2033, 483316,0,579,1,2039,
4685810,1,2034,1224,16, 4834848,1,32,1249,17,
46860,620,1,2035,816, 48351228,1,0,1232,1,
46871,2036,1225,16,0, 48362041,854,1,2042,1250,
4688573,1,2037,821,1, 483716,0,719,1,2043,
46892038,1226,16,0,577, 4838860,1,2044,1251,16,
46901,2039,826,1,32, 48390,660,1,2045,865,
46911227,17,1206,1,0, 48401,2299,1252,16,0,
46921210,1,2041,832,1, 4841240,1,1296,1253,17,
46932042,1228,16,0,702, 48421254,15,1184,1,-1,
46941,2043,838,1,2044, 48431,5,1255,20,1256,
46951229,16,0,632,1, 48444,38,83,0,105,
46962045,843,1,2299,1230, 48450,109,0,112,0,
469716,0,234,1,1296, 4846108,0,101,0,65,
46981231,17,1232,15,1162, 48470,115,0,115,0,
46991,-1,1,5,1233, 4848105,0,103,0,110,
470020,1234,4,38,83, 48490,109,0,101,0,
47010,105,0,109,0, 4850110,0,116,0,95,
4702112,0,108,0,101, 48510,50,0,48,0,
47030,65,0,115,0, 48521,260,1,3,1,
4704115,0,105,0,103, 48536,1,5,1257,22,
47050,110,0,109,0, 48541,102,1,283,1258,
4706101,0,110,0,116, 485517,1259,15,1207,1,
47070,95,0,50,0, 4856-1,1,5,1260,20,
470848,0,1,251,1, 48571261,4,36,66,0,
47093,1,6,1,5, 4858105,0,110,0,97,
47101235,22,1,97,1, 48590,114,0,121,0,
4711283,1236,17,1237,15, 486069,0,120,0,112,
47121185,1,-1,1,5, 48610,114,0,101,0,
47131238,20,1239,4,36, 4862115,0,115,0,105,
471466,0,105,0,110, 48630,111,0,110,0,
47150,97,0,114,0, 486495,0,52,0,1,
4716121,0,69,0,120, 4865289,1,3,1,4,
47170,112,0,114,0, 48661,3,1262,22,1,
4718101,0,115,0,115, 4867131,1,40,1263,17,
47190,105,0,111,0, 48681264,15,1265,4,32,
4720110,0,95,0,52, 486937,0,73,0,100,
47210,1,280,1,3, 48700,101,0,110,0,
47221,4,1,3,1240,
472322,1,126,1,40,
47241241,17,1242,15,1243,
47254,32,37,0,73,
47260,100,0,101,0,
4727110,0,116,0,69,
47280,120,0,112,0,
4729114,0,101,0,115,
47300,115,0,105,0,
4731111,0,110,0,1,
4732-1,1,5,1244,20,
47331245,4,34,73,0,
4734100,0,101,0,110,
47350,116,0,69,0,
4736120,0,112,0,114,
47370,101,0,115,0,
4738115,0,105,0,111,
47390,110,0,95,0,
474049,0,1,266,1,
47413,1,2,1,1,
47421246,22,1,112,1,
474344,1247,17,1242,1,
47441,1246,1,1803,851,
47451,47,1248,17,1249,
474615,1250,4,38,37,
47470,73,0,100,0,
4748101,0,110,0,116,
47490,68,0,111,0,
4750116,0,69,0,120, 4871116,0,69,0,120,
47510,112,0,114,0, 48720,112,0,114,0,
4752101,0,115,0,115, 4873101,0,115,0,115,
47530,105,0,111,0, 48740,105,0,111,0,
4754110,0,1,-1,1, 4875110,0,1,-1,1,
47555,1251,20,1252,4, 48765,1266,20,1267,4,
475640,73,0,100,0, 487734,73,0,100,0,
4757101,0,110,0,116, 4878101,0,110,0,116,
47580,68,0,111,0, 48790,69,0,120,0,
4759116,0,69,0,120, 4880112,0,114,0,101,
47600,112,0,114,0, 48810,115,0,115,0,
4761101,0,115,0,115, 4882105,0,111,0,110,
47620,105,0,111,0, 48830,95,0,49,0,
4763110,0,95,0,49, 48841,275,1,3,1,
47640,1,267,1,3, 48852,1,1,1268,22,
47651,4,1,3,1253, 48861,117,1,44,1269,
476622,1,113,1,48, 488717,1264,1,1,1268,
47671254,17,1255,15,1256, 48881,1803,873,1,47,
47684,58,37,0,73, 48891270,17,1271,15,1272,
47690,110,0,99,0, 48904,38,37,0,73,
4770114,0,101,0,109, 48910,100,0,101,0,
47710,101,0,110,0, 4892110,0,116,0,68,
4772116,0,68,0,101, 48930,111,0,116,0,
47730,99,0,114,0,
4774101,0,109,0,101,
47750,110,0,116,0,
477669,0,120,0,112, 489469,0,120,0,112,
47770,114,0,101,0, 48950,114,0,101,0,
4778115,0,115,0,105, 4896115,0,115,0,105,
47790,111,0,110,0, 48970,111,0,110,0,
47801,-1,1,5,1257, 48981,-1,1,5,1273,
478120,1258,4,60,73, 489920,1274,4,40,73,
47820,110,0,99,0, 49000,100,0,101,0,
4783114,0,101,0,109, 4901110,0,116,0,68,
47840,101,0,110,0, 49020,111,0,116,0,
4785116,0,68,0,101,
47860,99,0,114,0,
4787101,0,109,0,101,
47880,110,0,116,0,
478969,0,120,0,112, 490369,0,120,0,112,
47900,114,0,101,0, 49040,114,0,101,0,
4791115,0,115,0,105, 4905115,0,115,0,105,
47920,111,0,110,0, 49060,111,0,110,0,
479395,0,52,0,1, 490795,0,49,0,1,
4794271,1,3,1,5, 4908276,1,3,1,4,
47951,4,1259,22,1, 49091,3,1275,22,1,
4796117,1,49,1260,17, 4910118,1,48,1276,17,
47971261,15,1256,1,-1, 49111277,15,1278,4,58,
47981,5,1262,20,1263, 491237,0,73,0,110,
49130,99,0,114,0,
4914101,0,109,0,101,
49150,110,0,116,0,
491668,0,101,0,99,
49170,114,0,101,0,
4918109,0,101,0,110,
49190,116,0,69,0,
4920120,0,112,0,114,
49210,101,0,115,0,
4922115,0,105,0,111,
49230,110,0,1,-1,
49241,5,1279,20,1280,
47994,60,73,0,110, 49254,60,73,0,110,
48000,99,0,114,0, 49260,99,0,114,0,
4801101,0,109,0,101, 4927101,0,109,0,101,
@@ -4808,12 +4934,12 @@ public yyLSLSyntax
48080,101,0,115,0, 49340,101,0,115,0,
4809115,0,105,0,111, 4935115,0,105,0,111,
48100,110,0,95,0, 49360,110,0,95,0,
481151,0,1,270,1, 493752,0,1,280,1,
48123,1,5,1,4, 49383,1,5,1,4,
48131264,22,1,116,1, 49391281,22,1,122,1,
481450,1265,17,1266,15, 494049,1282,17,1283,15,
48151256,1,-1,1,5, 49411278,1,-1,1,5,
48161267,20,1268,4,60, 49421284,20,1285,4,60,
481773,0,110,0,99, 494373,0,110,0,99,
48180,114,0,101,0, 49440,114,0,101,0,
4819109,0,101,0,110, 4945109,0,101,0,110,
@@ -4825,13 +4951,13 @@ public yyLSLSyntax
4825112,0,114,0,101, 4951112,0,114,0,101,
48260,115,0,115,0, 49520,115,0,115,0,
4827105,0,111,0,110, 4953105,0,111,0,110,
48280,95,0,50,0, 49540,95,0,51,0,
48291,269,1,3,1, 49551,279,1,3,1,
48303,1,2,1269,22, 49565,1,4,1286,22,
48311,115,1,51,1270, 49571,121,1,50,1287,
483217,1271,15,1256,1, 495817,1288,15,1278,1,
4833-1,1,5,1272,20, 4959-1,1,5,1289,20,
48341273,4,60,73,0, 49601290,4,60,73,0,
4835110,0,99,0,114, 4961110,0,99,0,114,
48360,101,0,109,0, 49620,101,0,109,0,
4837101,0,110,0,116, 4963101,0,110,0,116,
@@ -4843,53 +4969,99 @@ public yyLSLSyntax
4843114,0,101,0,115, 4969114,0,101,0,115,
48440,115,0,105,0, 49700,115,0,105,0,
4845111,0,110,0,95, 4971111,0,110,0,95,
48460,49,0,1,268, 49720,50,0,1,278,
48471,3,1,3,1, 49731,3,1,3,1,
48482,1274,22,1,114, 49742,1291,22,1,120,
48491,305,1275,17,1276, 49751,51,1292,17,1293,
485015,1185,1,-1,1, 497615,1278,1,-1,1,
48515,1277,20,1278,4, 49775,1294,20,1295,4,
485236,66,0,105,0, 497860,73,0,110,0,
4853110,0,97,0,114, 497999,0,114,0,101,
48540,121,0,69,0, 49800,109,0,101,0,
4855120,0,112,0,114, 4981110,0,116,0,68,
48560,101,0,115,0,
4857115,0,105,0,111,
48580,110,0,95,0,
485951,0,1,279,1,
48603,1,4,1,3,
48611279,22,1,125,1,
4862525,1280,17,1281,15,
48631282,4,34,37,0,
486482,0,111,0,116,
48650,97,0,116,0,
4866105,0,111,0,110,
48670,67,0,111,0,
4868110,0,115,0,116,
48690,97,0,110,0,
4870116,0,1,-1,1,
48715,1283,20,1284,4,
487236,82,0,111,0,
4873116,0,97,0,116,
48740,105,0,111,0,
4875110,0,67,0,111,
48760,110,0,115,0,
4877116,0,97,0,110,
48780,116,0,95,0,
487949,0,1,264,1,
48803,1,10,1,9,
48811285,22,1,110,1,
488263,1286,17,1287,15,
48831288,4,38,37,0,
488484,0,121,0,112,
48850,101,0,99,0, 49820,101,0,99,0,
488697,0,115,0,116, 4983114,0,101,0,109,
49840,101,0,110,0,
4985116,0,69,0,120,
49860,112,0,114,0,
4987101,0,115,0,115,
49880,105,0,111,0,
4989110,0,95,0,49,
49900,1,277,1,3,
49911,3,1,2,1296,
499222,1,119,1,305,
49931297,17,1298,15,1207,
49941,-1,1,5,1299,
499520,1300,4,36,66,
49960,105,0,110,0,
499797,0,114,0,121,
48870,69,0,120,0, 49980,69,0,120,0,
4888112,0,114,0,101, 4999112,0,114,0,101,
48890,115,0,115,0, 50000,115,0,115,0,
4890105,0,111,0,110, 5001105,0,111,0,110,
48910,1,-1,1,5, 50020,95,0,51,0,
48921289,20,1290,4,40, 50031,288,1,3,1,
50044,1,3,1301,22,
50051,130,1,525,1302,
500617,1303,15,1304,4,
500734,37,0,82,0,
5008111,0,116,0,97,
50090,116,0,105,0,
5010111,0,110,0,67,
50110,111,0,110,0,
5012115,0,116,0,97,
50130,110,0,116,0,
50141,-1,1,5,1305,
501520,1306,4,36,82,
50160,111,0,116,0,
501797,0,116,0,105,
50180,111,0,110,0,
501967,0,111,0,110,
50200,115,0,116,0,
502197,0,110,0,116,
50220,95,0,49,0,
50231,273,1,3,1,
502410,1,9,1307,22,
50251,115,1,63,1308,
502617,1309,15,1310,4,
502738,37,0,84,0,
5028121,0,112,0,101,
50290,99,0,97,0,
5030115,0,116,0,69,
50310,120,0,112,0,
5032114,0,101,0,115,
50330,115,0,105,0,
5034111,0,110,0,1,
5035-1,1,5,1311,20,
50361312,4,40,84,0,
5037121,0,112,0,101,
50380,99,0,97,0,
5039115,0,116,0,69,
50400,120,0,112,0,
5041114,0,101,0,115,
50420,115,0,105,0,
5043111,0,110,0,95,
50440,50,0,1,310,
50451,3,1,5,1,
50464,1313,22,1,152,
50471,2739,1314,16,0,
5048755,1,66,1315,17,
50491316,15,1310,1,-1,
50501,5,1317,20,1318,
50514,40,84,0,121,
50520,112,0,101,0,
505399,0,97,0,115,
50540,116,0,69,0,
5055120,0,112,0,114,
50560,101,0,115,0,
5057115,0,105,0,111,
50580,110,0,95,0,
505951,0,1,311,1,
50603,1,7,1,6,
50611319,22,1,153,1,
506267,1320,17,1321,15,
50631310,1,-1,1,5,
50641322,20,1323,4,40,
489384,0,121,0,112, 506584,0,121,0,112,
48940,101,0,99,0, 50660,101,0,99,0,
489597,0,115,0,116, 506797,0,115,0,116,
@@ -4897,13 +5069,13 @@ public yyLSLSyntax
4897112,0,114,0,101, 5069112,0,114,0,101,
48980,115,0,115,0, 50700,115,0,115,0,
4899105,0,111,0,110, 5071105,0,111,0,110,
49000,95,0,50,0, 50720,95,0,55,0,
49011,301,1,3,1, 50731,315,1,3,1,
49025,1,4,1291,22, 50748,1,7,1324,22,
49031,147,1,66,1292, 50751,157,1,68,1325,
490417,1293,15,1288,1, 507617,1326,15,1310,1,
4905-1,1,5,1294,20, 5077-1,1,5,1327,20,
49061295,4,40,84,0, 50781328,4,40,84,0,
4907121,0,112,0,101, 5079121,0,112,0,101,
49080,99,0,97,0, 50800,99,0,97,0,
4909115,0,116,0,69, 5081115,0,116,0,69,
@@ -4911,12 +5083,12 @@ public yyLSLSyntax
4911114,0,101,0,115, 5083114,0,101,0,115,
49120,115,0,105,0, 50840,115,0,105,0,
4913111,0,110,0,95, 5085111,0,110,0,95,
49140,51,0,1,302, 50860,53,0,1,313,
49151,3,1,7,1, 50871,3,1,8,1,
49166,1296,22,1,148, 50887,1329,22,1,155,
49171,67,1297,17,1298, 50891,69,1330,17,1331,
491815,1288,1,-1,1, 509015,1310,1,-1,1,
49195,1299,20,1300,4, 50915,1332,20,1333,4,
492040,84,0,121,0, 509240,84,0,121,0,
4921112,0,101,0,99, 5093112,0,101,0,99,
49220,97,0,115,0, 50940,97,0,115,0,
@@ -4924,13 +5096,13 @@ public yyLSLSyntax
49240,112,0,114,0, 50960,112,0,114,0,
4925101,0,115,0,115, 5097101,0,115,0,115,
49260,105,0,111,0, 50980,105,0,111,0,
4927110,0,95,0,55, 5099110,0,95,0,54,
49280,1,306,1,3, 51000,1,314,1,3,
49291,8,1,7,1301, 51011,6,1,5,1334,
493022,1,152,1,68, 510222,1,156,1,70,
49311302,17,1303,15,1288, 51031335,17,1336,15,1310,
49321,-1,1,5,1304, 51041,-1,1,5,1337,
493320,1305,4,40,84, 510520,1338,4,40,84,
49340,121,0,112,0, 51060,121,0,112,0,
4935101,0,99,0,97, 5107101,0,99,0,97,
49360,115,0,116,0, 51080,115,0,116,0,
@@ -4938,12 +5110,12 @@ public yyLSLSyntax
49380,114,0,101,0, 51100,114,0,101,0,
4939115,0,115,0,105, 5111115,0,115,0,105,
49400,111,0,110,0, 51120,111,0,110,0,
494195,0,53,0,1, 511395,0,52,0,1,
4942304,1,3,1,8, 5114312,1,3,1,6,
49431,7,1306,22,1, 51151,5,1339,22,1,
4944150,1,69,1307,17, 5116154,1,74,1340,17,
49451308,15,1288,1,-1, 51171341,15,1310,1,-1,
49461,5,1309,20,1310, 51181,5,1342,20,1343,
49474,40,84,0,121, 51194,40,84,0,121,
49480,112,0,101,0, 51200,112,0,101,0,
494999,0,97,0,115, 512199,0,97,0,115,
@@ -4952,217 +5124,27 @@ public yyLSLSyntax
49520,101,0,115,0, 51240,101,0,115,0,
4953115,0,105,0,111, 5125115,0,105,0,111,
49540,110,0,95,0, 51260,110,0,95,0,
495554,0,1,305,1, 512757,0,1,317,1,
49563,1,6,1,5, 51283,1,7,1,6,
49571311,22,1,151,1, 51291344,22,1,159,1,
495870,1312,17,1313,15, 51301013,1345,17,1346,15,
49591288,1,-1,1,5, 51311190,1,-1,1,5,
49601314,20,1315,4,40, 51321347,20,1348,4,46,
496184,0,121,0,112, 513380,0,97,0,114,
49620,101,0,99,0,
496397,0,115,0,116,
49640,69,0,120,0,
4965112,0,114,0,101,
49660,115,0,115,0,
4967105,0,111,0,110,
49680,95,0,52,0,
49691,303,1,3,1,
49706,1,5,1316,22,
49711,149,1,74,1317,
497217,1318,15,1288,1,
4973-1,1,5,1319,20,
49741320,4,40,84,0,
4975121,0,112,0,101,
49760,99,0,97,0,
4977115,0,116,0,69,
49780,120,0,112,0,
4979114,0,101,0,115,
49800,115,0,105,0,
4981111,0,110,0,95,
49820,57,0,1,308,
49831,3,1,7,1,
49846,1321,22,1,154,
49851,1013,1322,17,1323,
498615,1168,1,-1,1,
49875,1324,20,1325,4,
498846,80,0,97,0,
4989114,0,101,0,110,
49900,116,0,104,0,
4991101,0,115,0,105,
49920,115,0,69,0,
4993120,0,112,0,114,
49940,101,0,115,0,
4995115,0,105,0,111,
49960,110,0,95,0,
499749,0,1,298,1,
49983,1,4,1,3,
49991326,22,1,144,1,
50001332,1327,17,1328,15,
50011162,1,-1,1,5,
50021329,20,1330,4,38,
500383,0,105,0,109,
50040,112,0,108,0,
5005101,0,65,0,115,
50060,115,0,105,0,
5007103,0,110,0,109,
50080,101,0,110,0, 51340,101,0,110,0,
5009116,0,95,0,49, 5135116,0,104,0,101,
50100,57,0,1,250, 51360,115,0,105,0,
50111,3,1,6,1, 5137115,0,69,0,120,
50125,1331,22,1,96,
50131,2337,1332,17,1206,
50141,0,1210,1,1585,
50151333,17,1334,15,1335,
50164,32,37,0,82,
50170,101,0,116,0,
5018117,0,114,0,110,
50190,83,0,116,0,
502097,0,116,0,101,
50210,109,0,101,0,
5022110,0,116,0,1,
5023-1,1,5,1336,20,
50241337,4,34,82,0,
5025101,0,116,0,117,
50260,114,0,110,0,
502783,0,116,0,97,
50280,116,0,101,0,
5029109,0,101,0,110,
50300,116,0,95,0,
503150,0,1,257,1,
50323,1,2,1,1,
50331338,22,1,103,1,
50342023,1339,17,1340,15,
50351201,1,-1,1,5,
50361341,20,1342,4,26,
503783,0,116,0,97,
50380,116,0,101,0,
503967,0,104,0,97,
50400,110,0,103,0,
5041101,0,95,0,50,
50420,1,215,1,3,
50431,3,1,2,1343,
504422,1,61,1,2136,
5045906,1,82,1344,17,
50461345,15,1346,4,32,
504737,0,85,0,110,
50480,97,0,114,0,
5049121,0,69,0,120,
50500,112,0,114,0,
5051101,0,115,0,115,
50520,105,0,111,0,
5053110,0,1,-1,1,
50545,1347,20,1348,4,
505534,85,0,110,0,
505697,0,114,0,121,
50570,69,0,120,0,
5058112,0,114,0,101,
50590,115,0,115,0,
5060105,0,111,0,110,
50610,95,0,51,0,
50621,297,1,3,1,
50633,1,2,1349,22,
50641,143,1,2026,1350,
506517,1351,15,1352,4,
506628,37,0,74,0,
5067117,0,109,0,112,
50680,83,0,116,0,
506997,0,116,0,101,
50700,109,0,101,0,
5071110,0,116,0,1,
5072-1,1,5,1353,20,
50731354,4,30,74,0,
5074117,0,109,0,112,
50750,83,0,116,0,
507697,0,116,0,101,
50770,109,0,101,0,
5078110,0,116,0,95,
50790,49,0,1,213,
50801,3,1,3,1,
50812,1355,22,1,59,
50821,1591,1356,17,1357,
508315,1335,1,-1,1,
50845,1358,20,1359,4,
508534,82,0,101,0,
5086116,0,117,0,114,
50870,110,0,83,0,
5088116,0,97,0,116,
50890,101,0,109,0,
5090101,0,110,0,116,
50910,95,0,49,0,
50921,256,1,3,1,
50933,1,2,1360,22,
50941,102,1,1341,1361,
509517,1362,15,1162,1,
5096-1,1,5,1363,20,
50971364,4,36,83,0,
5098105,0,109,0,112,
50990,108,0,101,0,
510065,0,115,0,115,
51010,105,0,103,0,
5102110,0,109,0,101,
51030,110,0,116,0,
510495,0,54,0,1,
5105237,1,3,1,4,
51061,3,1365,22,1,
510783,1,2030,795,1,
5108328,1366,17,1367,15,
51091185,1,-1,1,5,
51101368,20,1369,4,36,
511166,0,105,0,110,
51120,97,0,114,0,
5113121,0,69,0,120,
51140,112,0,114,0,
5115101,0,115,0,115,
51160,105,0,111,0,
5117110,0,95,0,50,
51180,1,278,1,3,
51191,4,1,3,1370,
512022,1,124,1,1303,
51211371,17,1372,15,1162,
51221,-1,1,5,1373,
512320,1374,4,36,83,
51240,105,0,109,0,
5125112,0,108,0,101,
51260,65,0,115,0,
5127115,0,105,0,103,
51280,110,0,109,0,
5129101,0,110,0,116,
51300,95,0,55,0,
51311,238,1,3,1,
51326,1,5,1375,22,
51331,84,1,1096,1376,
513417,1377,15,1378,4,
513526,37,0,70,0,
5136117,0,110,0,99,
51370,116,0,105,0,
5138111,0,110,0,67,
51390,97,0,108,0,
5140108,0,1,-1,1,
51415,1379,20,1380,4,
514228,70,0,117,0,
5143110,0,99,0,116,
51440,105,0,111,0,
5145110,0,67,0,97,
51460,108,0,108,0,
514795,0,49,0,1,
5148309,1,3,1,5,
51491,4,1381,22,1,
5150155,1,93,1382,17,
51511383,15,1346,1,-1,
51521,5,1384,20,1385,
51534,34,85,0,110,
51540,97,0,114,0,
5155121,0,69,0,120,
51560,112,0,114,0, 51380,112,0,114,0,
5157101,0,115,0,115, 5139101,0,115,0,115,
51580,105,0,111,0, 51400,105,0,111,0,
5159110,0,95,0,50, 5141110,0,95,0,49,
51600,1,296,1,3, 51420,1,307,1,3,
51611,3,1,2,1386, 51431,4,1,3,1349,
516222,1,142,1,1550, 514422,1,149,1,1332,
51631387,17,1388,15,1162, 51451350,17,1351,15,1184,
51641,-1,1,5,1389, 51461,-1,1,5,1352,
516520,1390,4,38,83, 514720,1353,4,38,83,
51660,105,0,109,0, 51480,105,0,109,0,
5167112,0,108,0,101, 5149112,0,108,0,101,
51680,65,0,115,0, 51500,65,0,115,0,
@@ -5170,243 +5152,319 @@ public yyLSLSyntax
51700,110,0,109,0, 51520,110,0,109,0,
5171101,0,110,0,116, 5153101,0,110,0,116,
51720,95,0,49,0, 51540,95,0,49,0,
517351,0,1,244,1, 515557,0,1,259,1,
51743,1,4,1,3, 51563,1,6,1,5,
51751391,22,1,90,1, 51571354,22,1,101,1,
51762040,1392,16,0,581, 51582337,1355,17,1228,1,
51771,2106,1393,17,1206, 51590,1232,1,1585,1356,
51781,0,1210,1,1555, 516017,1357,15,1358,4,
51791394,16,0,658,1, 516132,37,0,82,0,
5180827,1395,17,1396,15, 5162101,0,116,0,117,
51811185,1,-1,1,5, 51630,114,0,110,0,
51821397,20,1398,4,38, 516483,0,116,0,97,
518366,0,105,0,110, 51650,116,0,101,0,
51840,97,0,114,0, 5166109,0,101,0,110,
5185121,0,69,0,120, 51670,116,0,1,-1,
51860,112,0,114,0, 51681,5,1359,20,1360,
5187101,0,115,0,115, 51694,34,82,0,101,
51880,105,0,111,0, 51700,116,0,117,0,
5189110,0,95,0,49, 5171114,0,110,0,83,
51900,53,0,1,291, 51720,116,0,97,0,
51911,3,1,4,1, 5173116,0,101,0,109,
51923,1399,22,1,137, 51740,101,0,110,0,
51931,1859,1400,16,0, 5175116,0,95,0,50,
5194317,1,1860,885,1, 51760,1,266,1,3,
51951804,1401,17,1206,1, 51771,2,1,1,1361,
51960,1210,1,107,1402, 517822,1,108,1,2023,
519717,1403,15,1346,1, 51791362,17,1363,15,1223,
5198-1,1,5,1404,20, 51801,-1,1,5,1364,
51991405,4,34,85,0, 518120,1365,4,26,83,
5200110,0,97,0,114, 51820,116,0,97,0,
52010,121,0,69,0, 5183116,0,101,0,67,
5202120,0,112,0,114, 51840,104,0,97,0,
52030,101,0,115,0, 5185110,0,103,0,101,
5204115,0,105,0,111, 51860,95,0,50,0,
52050,110,0,95,0, 51871,224,1,3,1,
520649,0,1,295,1, 51883,1,2,1366,22,
52073,1,3,1,2, 51891,66,1,2136,928,
52081406,22,1,141,1, 51901,82,1367,17,1368,
52091114,1407,17,1249,1, 519115,1369,4,32,37,
52103,1253,1,1048,1408, 51920,85,0,110,0,
521117,1409,15,1185,1, 519397,0,114,0,121,
5212-1,1,5,1410,20, 51940,69,0,120,0,
52131411,4,38,66,0, 5195112,0,114,0,101,
5214105,0,110,0,97, 51960,115,0,115,0,
5197105,0,111,0,110,
51980,1,-1,1,5,
51991370,20,1371,4,34,
520085,0,110,0,97,
52150,114,0,121,0, 52010,114,0,121,0,
521669,0,120,0,112, 520269,0,120,0,112,
52170,114,0,101,0, 52030,114,0,101,0,
5218115,0,115,0,105, 5204115,0,115,0,105,
52190,111,0,110,0, 52050,111,0,110,0,
522095,0,49,0,56, 520695,0,51,0,1,
52210,1,294,1,3, 5207306,1,3,1,3,
52221,4,1,3,1412, 52081,2,1372,22,1,
522322,1,140,1,352, 5209148,1,2026,1373,17,
52241413,17,1414,15,1185, 52101374,15,1375,4,28,
52251,-1,1,5,1415, 521137,0,74,0,117,
522620,1416,4,36,66, 52120,109,0,112,0,
521383,0,116,0,97,
52140,116,0,101,0,
5215109,0,101,0,110,
52160,116,0,1,-1,
52171,5,1376,20,1377,
52184,30,74,0,117,
52190,109,0,112,0,
522083,0,116,0,97,
52210,116,0,101,0,
5222109,0,101,0,110,
52230,116,0,95,0,
522449,0,1,222,1,
52253,1,3,1,2,
52261378,22,1,64,1,
52271591,1379,17,1380,15,
52281358,1,-1,1,5,
52291381,20,1382,4,34,
523082,0,101,0,116,
52310,117,0,114,0,
5232110,0,83,0,116,
52330,97,0,116,0,
5234101,0,109,0,101,
52350,110,0,116,0,
523695,0,49,0,1,
5237265,1,3,1,3,
52381,2,1383,22,1,
5239107,1,1341,1384,17,
52401385,15,1184,1,-1,
52411,5,1386,20,1387,
52424,36,83,0,105,
52430,109,0,112,0,
5244108,0,101,0,65,
52450,115,0,115,0,
5246105,0,103,0,110,
52470,109,0,101,0,
5248110,0,116,0,95,
52490,54,0,1,246,
52501,3,1,4,1,
52513,1388,22,1,88,
52521,2030,817,1,328,
52531389,17,1390,15,1207,
52541,-1,1,5,1391,
525520,1392,4,36,66,
52270,105,0,110,0, 52560,105,0,110,0,
522897,0,114,0,121, 525797,0,114,0,121,
52290,69,0,120,0, 52580,69,0,120,0,
5230112,0,114,0,101, 5259112,0,114,0,101,
52310,115,0,115,0, 52600,115,0,115,0,
5232105,0,111,0,110, 5261105,0,111,0,110,
52330,95,0,49,0, 52620,95,0,50,0,
52341,277,1,3,1, 52631,287,1,3,1,
52354,1,3,1417,22, 52644,1,3,1393,22,
52361,123,1,1872,1418, 52651,129,1,1303,1394,
523716,0,327,1,1873, 526617,1395,15,1184,1,
5238899,1,118,1419,17, 5267-1,1,5,1396,20,
52391420,15,1185,1,-1, 52681397,4,36,83,0,
52401,5,1421,20,1422,
52414,38,66,0,105,
52420,110,0,97,0,
5243114,0,121,0,69,
52440,120,0,112,0,
5245114,0,101,0,115,
52460,115,0,105,0,
5247111,0,110,0,95,
52480,49,0,52,0,
52491,290,1,3,1,
52504,1,3,1423,22,
52511,136,1,1123,1424,
525217,1425,15,1162,1,
5253-1,1,5,1426,20,
52541427,4,38,83,0,
5255105,0,109,0,112, 5269105,0,109,0,112,
52560,108,0,101,0, 52700,108,0,101,0,
525765,0,115,0,115, 527165,0,115,0,115,
52580,105,0,103,0, 52720,105,0,103,0,
5259110,0,109,0,101, 5273110,0,109,0,101,
52600,110,0,116,0, 52740,110,0,116,0,
526195,0,49,0,50, 527595,0,55,0,1,
52620,1,243,1,3, 5276247,1,3,1,6,
52631,6,1,5,1428, 52771,5,1398,22,1,
526422,1,89,1,371, 527889,1,1096,1399,17,
52651429,17,1430,15,1431, 52791400,15,1401,4,26,
52664,46,37,0,70, 528037,0,70,0,117,
52670,117,0,110,0,
526899,0,116,0,105,
52690,111,0,110,0,
527067,0,97,0,108,
52710,108,0,69,0,
5272120,0,112,0,114,
52730,101,0,115,0,
5274115,0,105,0,111,
52750,110,0,1,-1,
52761,5,1432,20,1433,
52774,48,70,0,117,
52780,110,0,99,0, 52810,110,0,99,0,
5279116,0,105,0,111, 5282116,0,105,0,111,
52800,110,0,67,0, 52830,110,0,67,0,
528197,0,108,0,108, 528497,0,108,0,108,
52850,1,-1,1,5,
52861402,20,1403,4,28,
528770,0,117,0,110,
52880,99,0,116,0,
5289105,0,111,0,110,
52900,67,0,97,0,
5291108,0,108,0,95,
52920,49,0,1,318,
52931,3,1,5,1,
52944,1404,22,1,160,
52951,93,1405,17,1406,
529615,1369,1,-1,1,
52975,1407,20,1408,4,
529834,85,0,110,0,
529997,0,114,0,121,
52820,69,0,120,0, 53000,69,0,120,0,
5283112,0,114,0,101, 5301112,0,114,0,101,
52840,115,0,115,0, 53020,115,0,115,0,
5285105,0,111,0,110, 5303105,0,111,0,110,
52860,95,0,49,0, 53040,95,0,50,0,
52871,276,1,3,1, 53051,305,1,3,1,
52882,1,1,1434,22, 53063,1,2,1409,22,
52891,122,1,1377,1435, 53071,147,1,1550,1410,
529017,1436,15,1162,1, 530817,1411,15,1184,1,
5291-1,1,5,1437,20, 5309-1,1,5,1412,20,
52921438,4,36,83,0, 53101413,4,38,83,0,
5293105,0,109,0,112, 5311105,0,109,0,112,
52940,108,0,101,0, 53120,108,0,101,0,
529565,0,115,0,115, 531365,0,115,0,115,
52960,105,0,103,0, 53140,105,0,103,0,
5297110,0,109,0,101, 5315110,0,109,0,101,
52980,110,0,116,0, 53160,110,0,116,0,
529995,0,53,0,1, 531795,0,49,0,51,
5300236,1,3,1,4, 53180,1,253,1,3,
53011,3,1439,22,1, 53191,4,1,3,1414,
530282,1,375,1440,17, 532022,1,95,1,2040,
53031441,15,1256,1,-1, 53211415,16,0,583,1,
53041,5,1442,20,1443, 53222106,1416,17,1228,1,
53054,60,73,0,110, 53230,1232,1,1555,1417,
53060,99,0,114,0, 532416,0,674,1,827,
5307101,0,109,0,101, 53251418,17,1419,15,1207,
53080,110,0,116,0, 53261,-1,1,5,1420,
530968,0,101,0,99, 532720,1421,4,38,66,
53100,114,0,101,0, 53280,105,0,110,0,
5311109,0,101,0,110, 532997,0,114,0,121,
53120,116,0,69,0,
5313120,0,112,0,114,
53140,101,0,115,0,
5315115,0,105,0,111,
53160,110,0,95,0,
531756,0,1,275,1,
53183,1,5,1,4,
53191444,22,1,121,1,
5320377,1445,17,1446,15,
53211256,1,-1,1,5,
53221447,20,1448,4,60,
532373,0,110,0,99,
53240,114,0,101,0,
5325109,0,101,0,110,
53260,116,0,68,0,
5327101,0,99,0,114,
53280,101,0,109,0,
5329101,0,110,0,116,
53300,69,0,120,0, 53300,69,0,120,0,
5331112,0,114,0,101, 5331112,0,114,0,101,
53320,115,0,115,0, 53320,115,0,115,0,
5333105,0,111,0,110, 5333105,0,111,0,110,
53340,95,0,53,0, 53340,95,0,49,0,
53351,272,1,3,1, 533553,0,1,300,1,
53363,1,2,1449,22, 53363,1,4,1,3,
53371,118,1,379,1450, 53371422,22,1,142,1,
533817,1451,15,1256,1, 53381859,1423,16,0,319,
5339-1,1,5,1452,20, 53391,1860,907,1,1804,
53401453,4,60,73,0, 53401424,17,1228,1,0,
5341110,0,99,0,114, 53411232,1,107,1425,17,
53420,101,0,109,0, 53421426,15,1369,1,-1,
5343101,0,110,0,116, 53431,5,1427,20,1428,
53440,68,0,101,0, 53444,34,85,0,110,
534599,0,114,0,101, 53450,97,0,114,0,
53460,109,0,101,0, 5346121,0,69,0,120,
5347110,0,116,0,69, 53470,112,0,114,0,
5348101,0,115,0,115,
53490,105,0,111,0,
5350110,0,95,0,49,
53510,1,304,1,3,
53521,3,1,2,1429,
535322,1,146,1,1114,
53541430,17,1271,1,3,
53551275,1,1048,1431,17,
53561432,15,1207,1,-1,
53571,5,1433,20,1434,
53584,38,66,0,105,
53590,110,0,97,0,
5360114,0,121,0,69,
53480,120,0,112,0, 53610,120,0,112,0,
5349114,0,101,0,115, 5362114,0,101,0,115,
53500,115,0,105,0, 53630,115,0,105,0,
5351111,0,110,0,95, 5364111,0,110,0,95,
53520,55,0,1,274, 53650,49,0,56,0,
53531,3,1,5,1, 53661,303,1,3,1,
53544,1454,22,1,120, 53674,1,3,1435,22,
53551,380,1455,17,1456, 53681,145,1,352,1436,
535615,1457,4,38,37, 536917,1437,15,1207,1,
53570,67,0,111,0, 5370-1,1,5,1438,20,
5358110,0,115,0,116, 53711439,4,36,66,0,
53590,97,0,110,0, 5372105,0,110,0,97,
5360116,0,69,0,120, 53730,114,0,121,0,
537469,0,120,0,112,
53750,114,0,101,0,
5376115,0,115,0,105,
53770,111,0,110,0,
537895,0,49,0,1,
5379286,1,3,1,4,
53801,3,1440,22,1,
5381128,1,1872,1441,16,
53820,329,1,1873,921,
53831,118,1442,17,1443,
538415,1207,1,-1,1,
53855,1444,20,1445,4,
538638,66,0,105,0,
5387110,0,97,0,114,
53880,121,0,69,0,
5389120,0,112,0,114,
53900,101,0,115,0,
5391115,0,105,0,111,
53920,110,0,95,0,
539349,0,52,0,1,
5394299,1,3,1,4,
53951,3,1446,22,1,
5396141,1,1123,1447,17,
53971448,15,1184,1,-1,
53981,5,1449,20,1450,
53994,38,83,0,105,
54000,109,0,112,0,
5401108,0,101,0,65,
54020,115,0,115,0,
5403105,0,103,0,110,
54040,109,0,101,0,
5405110,0,116,0,95,
54060,49,0,50,0,
54071,252,1,3,1,
54086,1,5,1451,22,
54091,94,1,371,1452,
541017,1453,15,1454,4,
541146,37,0,70,0,
5412117,0,110,0,99,
54130,116,0,105,0,
5414111,0,110,0,67,
54150,97,0,108,0,
5416108,0,69,0,120,
53610,112,0,114,0, 54170,112,0,114,0,
5362101,0,115,0,115, 5418101,0,115,0,115,
53630,105,0,111,0, 54190,105,0,111,0,
5364110,0,1,-1,1, 5420110,0,1,-1,1,
53655,1458,20,1459,4, 54215,1455,20,1456,4,
536640,67,0,111,0, 542248,70,0,117,0,
5367110,0,115,0,116, 5423110,0,99,0,116,
53680,97,0,110,0,
5369116,0,69,0,120,
53700,112,0,114,0,
5371101,0,115,0,115,
53720,105,0,111,0, 54240,105,0,111,0,
5373110,0,95,0,49, 5425110,0,67,0,97,
53740,1,265,1,3, 54260,108,0,108,0,
53751,2,1,1,1460, 542769,0,120,0,112,
537622,1,111,1,883, 54280,114,0,101,0,
53771461,17,1462,15,1185, 5429115,0,115,0,105,
53781,-1,1,5,1463, 54300,111,0,110,0,
537920,1464,4,38,66, 543195,0,49,0,1,
53800,105,0,110,0, 5432285,1,3,1,2,
538197,0,114,0,121, 54331,1,1457,22,1,
53820,69,0,120,0, 5434127,1,1377,1458,17,
5383112,0,114,0,101, 54351459,15,1184,1,-1,
53840,115,0,115,0, 54361,5,1460,20,1461,
5385105,0,111,0,110, 54374,36,83,0,105,
53860,95,0,49,0, 54380,109,0,112,0,
538754,0,1,292,1, 5439108,0,101,0,65,
53883,1,4,1,3,
53891465,22,1,138,1,
53901628,1466,17,1467,15,
53911468,4,22,37,0,
539265,0,115,0,115,
53930,105,0,103,0,
5394110,0,109,0,101,
53950,110,0,116,0,
53961,-1,1,5,1469,
539720,1470,4,24,65,
53980,115,0,115,0, 54400,115,0,115,0,
5399105,0,103,0,110, 5441105,0,103,0,110,
54000,109,0,101,0, 54420,109,0,101,0,
5401110,0,116,0,95, 5443110,0,116,0,95,
54020,49,0,1,230, 54440,53,0,1,245,
54031,3,1,4,1, 54451,3,1,4,1,
54043,1471,22,1,76, 54463,1462,22,1,87,
54051,2075,1472,17,1206, 54471,375,1463,17,1464,
54061,0,1210,1,373, 544815,1278,1,-1,1,
54071473,17,1474,15,1256, 54495,1465,20,1466,4,
54081,-1,1,5,1475, 545060,73,0,110,0,
540920,1476,4,60,73, 545199,0,114,0,101,
54520,109,0,101,0,
5453110,0,116,0,68,
54540,101,0,99,0,
5455114,0,101,0,109,
54560,101,0,110,0,
5457116,0,69,0,120,
54580,112,0,114,0,
5459101,0,115,0,115,
54600,105,0,111,0,
5461110,0,95,0,56,
54620,1,284,1,3,
54631,5,1,4,1467,
546422,1,126,1,377,
54651468,17,1469,15,1278,
54661,-1,1,5,1470,
546720,1471,4,60,73,
54100,110,0,99,0, 54680,110,0,99,0,
5411114,0,101,0,109, 5469114,0,101,0,109,
54120,101,0,110,0, 54700,101,0,110,0,
@@ -5418,147 +5476,112 @@ public yyLSLSyntax
54180,114,0,101,0, 54760,114,0,101,0,
5419115,0,115,0,105, 5477115,0,115,0,105,
54200,111,0,110,0, 54780,111,0,110,0,
542195,0,54,0,1, 547995,0,53,0,1,
5422273,1,3,1,3, 5480281,1,3,1,3,
54231,2,1477,22,1, 54811,2,1472,22,1,
5424119,1,130,1478,17, 5482123,1,379,1473,17,
54251479,15,1185,1,-1, 54831474,15,1278,1,-1,
54261,5,1480,20,1481, 54841,5,1475,20,1476,
54274,38,66,0,105, 54854,60,73,0,110,
54280,110,0,97,0, 54860,99,0,114,0,
5429114,0,121,0,69, 5487101,0,109,0,101,
54300,120,0,112,0, 54880,110,0,116,0,
5431114,0,101,0,115, 548968,0,101,0,99,
54320,115,0,105,0, 54900,114,0,101,0,
5433111,0,110,0,95, 5491109,0,101,0,110,
54340,49,0,51,0, 54920,116,0,69,0,
54351,289,1,3,1, 5493120,0,112,0,114,
54364,1,3,1482,22, 54940,101,0,115,0,
54371,135,1,143,1483, 5495115,0,105,0,111,
543817,1484,15,1185,1, 54960,110,0,95,0,
5439-1,1,5,1485,20, 549755,0,1,283,1,
54401486,4,38,66,0, 54983,1,5,1,4,
54991477,22,1,125,1,
5500380,1478,17,1479,15,
55011480,4,38,37,0,
550267,0,111,0,110,
55030,115,0,116,0,
550497,0,110,0,116,
55050,69,0,120,0,
5506112,0,114,0,101,
55070,115,0,115,0,
5508105,0,111,0,110,
55090,1,-1,1,5,
55101481,20,1482,4,40,
551167,0,111,0,110,
55120,115,0,116,0,
551397,0,110,0,116,
55140,69,0,120,0,
5515112,0,114,0,101,
55160,115,0,115,0,
5517105,0,111,0,110,
55180,95,0,49,0,
55191,274,1,3,1,
55202,1,1,1483,22,
55211,116,1,883,1484,
552217,1485,15,1207,1,
5523-1,1,5,1486,20,
55241487,4,38,66,0,
5441105,0,110,0,97, 5525105,0,110,0,97,
54420,114,0,121,0, 55260,114,0,121,0,
544369,0,120,0,112, 552769,0,120,0,112,
54440,114,0,101,0, 55280,114,0,101,0,
5445115,0,115,0,105, 5529115,0,115,0,105,
54460,111,0,110,0, 55300,111,0,110,0,
544795,0,49,0,50, 553195,0,49,0,54,
54480,1,288,1,3, 55320,1,301,1,3,
54491,4,1,3,1487, 55331,4,1,3,1488,
545022,1,134,1,1901, 553422,1,143,1,1628,
54511488,17,1206,1,0, 55351489,17,1490,15,1491,
54521210,1,1152,1489,17, 55364,22,37,0,65,
54531490,15,1162,1,-1,
54541,5,1491,20,1492,
54554,38,83,0,105,
54560,109,0,112,0,
5457108,0,101,0,65,
54580,115,0,115,0, 55370,115,0,115,0,
5459105,0,103,0,110, 5538105,0,103,0,110,
54600,109,0,101,0, 55390,109,0,101,0,
5461110,0,116,0,95, 5540110,0,116,0,1,
54620,50,0,52,0, 5541-1,1,5,1492,20,
54631,255,1,3,1, 55421493,4,24,65,0,
54646,1,5,1493,22, 5543115,0,115,0,105,
54651,101,1,1406,1494, 55440,103,0,110,0,
546617,1495,15,1162,1, 5545109,0,101,0,110,
5467-1,1,5,1496,20, 55460,116,0,95,0,
54681497,4,38,83,0, 554749,0,1,239,1,
5469105,0,109,0,112,
54700,108,0,101,0,
547165,0,115,0,115,
54720,105,0,103,0,
5473110,0,109,0,101,
54740,110,0,116,0,
547595,0,49,0,55,
54760,1,248,1,3,
54771,4,1,3,1498,
547822,1,94,1,1659,
54791499,16,0,270,1,
54802413,1500,17,1206,1,
54810,1210,1,1159,1501,
548217,1502,15,1162,1,
5483-1,1,5,1503,20,
54841504,4,38,83,0,
5485105,0,109,0,112,
54860,108,0,101,0,
548765,0,115,0,115,
54880,105,0,103,0,
5489110,0,109,0,101,
54900,110,0,116,0,
549195,0,49,0,49,
54920,1,242,1,3,
54931,6,1,5,1505,
549422,1,88,1,157,
54951506,17,1507,15,1185,
54961,-1,1,5,1508,
549720,1509,4,38,66,
54980,105,0,110,0,
549997,0,114,0,121,
55000,69,0,120,0,
5501112,0,114,0,101,
55020,115,0,115,0,
5503105,0,111,0,110,
55040,95,0,49,0,
550549,0,1,287,1,
55063,1,4,1,3, 55483,1,4,1,3,
55071510,22,1,133,1, 55491494,22,1,81,1,
55081413,1511,17,1512,15, 55502075,1495,17,1228,1,
55091162,1,-1,1,5, 55510,1232,1,373,1496,
55101513,20,1514,4,36, 555217,1497,15,1278,1,
551183,0,105,0,109, 5553-1,1,5,1498,20,
55120,112,0,108,0, 55541499,4,60,73,0,
5513101,0,65,0,115, 5555110,0,99,0,114,
55140,115,0,105,0, 55560,101,0,109,0,
5515103,0,110,0,109,
55160,101,0,110,0,
5517116,0,95,0,52,
55180,1,235,1,3,
55191,4,1,3,1515,
552022,1,81,1,1370,
55211516,17,1517,15,1162,
55221,-1,1,5,1518,
552320,1519,4,38,83,
55240,105,0,109,0,
5525112,0,108,0,101,
55260,65,0,115,0,
5527115,0,105,0,103,
55280,110,0,109,0,
5529101,0,110,0,116, 5557101,0,110,0,116,
55300,95,0,49,0, 55580,68,0,101,0,
553156,0,1,249,1, 555999,0,114,0,101,
55323,1,4,1,3, 55600,109,0,101,0,
55331520,22,1,95,1, 5561110,0,116,0,69,
55341478,1521,17,1522,15, 55620,120,0,112,0,
55351162,1,-1,1,5, 5563114,0,101,0,115,
55361523,20,1524,4,38,
553783,0,105,0,109,
55380,112,0,108,0,
5539101,0,65,0,115,
55400,115,0,105,0, 55640,115,0,105,0,
5541103,0,110,0,109, 5565111,0,110,0,95,
55420,101,0,110,0, 55660,54,0,1,282,
5543116,0,95,0,49, 55671,3,1,3,1,
55440,53,0,1,246, 55682,1500,22,1,124,
55451,3,1,4,1, 55691,130,1501,17,1502,
55463,1525,22,1,92, 557015,1207,1,-1,1,
55471,1620,1526,17,1527, 55715,1503,20,1504,4,
554815,1468,1,-1,1, 557238,66,0,105,0,
55495,1528,20,1529,4, 5573110,0,97,0,114,
555024,65,0,115,0, 55740,121,0,69,0,
5551115,0,105,0,103, 5575120,0,112,0,114,
55520,110,0,109,0, 55760,101,0,115,0,
5553101,0,110,0,116, 5577115,0,105,0,111,
55540,95,0,50,0, 55780,110,0,95,0,
55551,231,1,3,1, 557949,0,51,0,1,
55562,1,1,1530,22, 5580298,1,3,1,4,
55571,77,1,1621,1531, 55811,3,1505,22,1,
555816,0,726,1,1574, 5582140,1,143,1506,17,
5559863,1,172,1532,17, 55831507,15,1207,1,-1,
55601533,15,1185,1,-1, 55841,5,1508,20,1509,
55611,5,1534,20,1535,
55624,38,66,0,105, 55854,38,66,0,105,
55630,110,0,97,0, 55860,110,0,97,0,
5564114,0,121,0,69, 5587114,0,121,0,69,
@@ -5566,27 +5589,14 @@ public yyLSLSyntax
5566114,0,101,0,115, 5589114,0,101,0,115,
55670,115,0,105,0, 55900,115,0,105,0,
5568111,0,110,0,95, 5591111,0,110,0,95,
55690,49,0,48,0, 55920,49,0,50,0,
55701,286,1,3,1, 55931,297,1,3,1,
55714,1,3,1536,22, 55944,1,3,1510,22,
55721,132,1,1931,925, 55951,139,1,1901,1511,
55731,1665,1537,17,1538, 559617,1228,1,0,1232,
557415,1220,1,-1,1, 55971,1152,1512,17,1513,
55755,1539,20,1540,4, 559815,1184,1,-1,1,
557636,70,0,111,0, 55995,1514,20,1515,4,
5577114,0,76,0,111,
55780,111,0,112,0,
557983,0,116,0,97,
55800,116,0,101,0,
5581109,0,101,0,110,
55820,116,0,95,0,
558349,0,1,226,1,
55843,1,2,1,1,
55851541,22,1,72,1,
55862364,891,1,2105,878,
55871,1188,1542,17,1543,
558815,1162,1,-1,1,
55895,1544,20,1545,4,
559038,83,0,105,0, 560038,83,0,105,0,
5591109,0,112,0,108, 5601109,0,112,0,108,
55920,101,0,65,0, 56020,101,0,65,0,
@@ -5594,12 +5604,12 @@ public yyLSLSyntax
55940,103,0,110,0, 56040,103,0,110,0,
5595109,0,101,0,110, 5605109,0,101,0,110,
55960,116,0,95,0, 56060,116,0,95,0,
559750,0,51,0,1, 560750,0,52,0,1,
5598254,1,3,1,6, 5608264,1,3,1,6,
55991,5,1546,22,1, 56091,5,1516,22,1,
5600100,1,1442,1547,17, 5610106,1,1406,1517,17,
56011548,15,1162,1,-1, 56111518,15,1184,1,-1,
56021,5,1549,20,1550, 56121,5,1519,20,1520,
56034,38,83,0,105, 56134,38,83,0,105,
56040,109,0,112,0, 56140,109,0,112,0,
5605108,0,101,0,65, 5615108,0,101,0,65,
@@ -5607,236 +5617,223 @@ public yyLSLSyntax
5607105,0,103,0,110, 5617105,0,103,0,110,
56080,109,0,101,0, 56180,109,0,101,0,
5609110,0,116,0,95, 5619110,0,116,0,95,
56100,49,0,54,0, 56200,49,0,55,0,
56111,247,1,3,1, 56211,257,1,3,1,
56124,1,3,1551,22, 56224,1,3,1521,22,
56131,93,1,1694,1552, 56231,99,1,1659,1522,
561416,0,199,1,942, 562416,0,283,1,2413,
56151553,17,1554,15,1185, 56251523,17,1228,1,0,
56161,-1,1,5,1555, 56261232,1,1159,1524,17,
561720,1556,4,38,66, 56271525,15,1184,1,-1,
56180,105,0,110,0, 56281,5,1526,20,1527,
561997,0,114,0,121, 56294,38,83,0,105,
56200,69,0,120,0, 56300,109,0,112,0,
5621112,0,114,0,101, 5631108,0,101,0,65,
56220,115,0,115,0, 56320,115,0,115,0,
5623105,0,111,0,110, 5633105,0,103,0,110,
56240,95,0,49,0, 56340,109,0,101,0,
562555,0,1,293,1, 5635110,0,116,0,95,
56263,1,4,1,3, 56360,49,0,49,0,
56271557,22,1,139,1, 56371,251,1,3,1,
56282198,1558,17,1206,1, 56386,1,5,1528,22,
56290,1210,1,1195,1559, 56391,93,1,157,1529,
563017,1560,15,1162,1, 564017,1530,15,1207,1,
5631-1,1,5,1561,20, 5641-1,1,5,1531,20,
56321562,4,38,83,0, 56421532,4,38,66,0,
5643105,0,110,0,97,
56440,114,0,121,0,
564569,0,120,0,112,
56460,114,0,101,0,
5647115,0,115,0,105,
56480,111,0,110,0,
564995,0,49,0,49,
56500,1,296,1,3,
56511,4,1,3,1533,
565222,1,138,1,1413,
56531534,17,1535,15,1184,
56541,-1,1,5,1536,
565520,1537,4,36,83,
56560,105,0,109,0,
5657112,0,108,0,101,
56580,65,0,115,0,
5659115,0,105,0,103,
56600,110,0,109,0,
5661101,0,110,0,116,
56620,95,0,52,0,
56631,244,1,3,1,
56644,1,3,1538,22,
56651,86,1,1370,1539,
566617,1540,15,1184,1,
5667-1,1,5,1541,20,
56681542,4,38,83,0,
5633105,0,109,0,112, 5669105,0,109,0,112,
56340,108,0,101,0, 56700,108,0,101,0,
563565,0,115,0,115, 567165,0,115,0,115,
56360,105,0,103,0, 56720,105,0,103,0,
5637110,0,109,0,101, 5673110,0,109,0,101,
56380,110,0,116,0, 56740,110,0,116,0,
563995,0,49,0,48, 567595,0,49,0,56,
56400,1,241,1,3, 56760,1,258,1,3,
56411,6,1,5,1563, 56771,4,1,3,1543,
564222,1,87,1,1449, 567822,1,100,1,1478,
56431564,17,1565,15,1162, 56791544,17,1545,15,1184,
56441,-1,1,5,1566, 56801,-1,1,5,1546,
564520,1567,4,36,83, 568120,1547,4,38,83,
56460,105,0,109,0, 56820,105,0,109,0,
5647112,0,108,0,101, 5683112,0,108,0,101,
56480,65,0,115,0, 56840,65,0,115,0,
5649115,0,105,0,103, 5685115,0,105,0,103,
56500,110,0,109,0, 56860,110,0,109,0,
5651101,0,110,0,116, 5687101,0,110,0,116,
56520,95,0,51,0, 56880,95,0,49,0,
56531,234,1,3,1, 568953,0,1,255,1,
56544,1,3,1568,22, 56903,1,4,1,3,
56551,80,1,1701,1569, 56911548,22,1,97,1,
565617,1570,15,1220,1, 56921620,1549,17,1550,15,
5657-1,1,5,1571,20, 56931491,1,-1,1,5,
56581572,4,36,70,0, 56941551,20,1552,4,24,
5659111,0,114,0,76, 569565,0,115,0,115,
56600,111,0,111,0, 56960,105,0,103,0,
5661112,0,83,0,116, 5697110,0,109,0,101,
56620,97,0,116,0,
5663101,0,109,0,101,
56640,110,0,116,0,
566595,0,51,0,1,
5666228,1,3,1,4,
56671,3,1573,22,1,
566874,1,447,1574,17,
56691575,15,1576,4,30,
567037,0,86,0,101,
56710,99,0,116,0,
5672111,0,114,0,67,
56730,111,0,110,0,
5674115,0,116,0,97,
56750,110,0,116,0, 56980,110,0,116,0,
56761,-1,1,5,1577, 569995,0,50,0,1,
567720,1578,4,32,86, 5700240,1,3,1,2,
56780,101,0,99,0, 57011,1,1553,22,1,
5679116,0,111,0,114, 570282,1,1621,1554,16,
56800,67,0,111,0, 57030,749,1,1574,885,
5681110,0,115,0,116, 57041,172,1555,17,1556,
56820,97,0,110,0, 570515,1207,1,-1,1,
5683116,0,95,0,49, 57065,1557,20,1558,4,
56840,1,263,1,3, 570738,66,0,105,0,
56851,8,1,7,1579,
568622,1,109,1,2458,
5687940,1,2459,946,1,
56881958,1580,17,1206,1,
56890,1210,1,188,1581,
569017,1582,15,1185,1,
5691-1,1,5,1583,20,
56921584,4,36,66,0,
5693105,0,110,0,97,
56940,114,0,121,0,
569569,0,120,0,112,
56960,114,0,101,0,
5697115,0,115,0,105,
56980,111,0,110,0,
569995,0,57,0,1,
5700285,1,3,1,4,
57011,3,1585,22,1,
5702131,1,2462,953,1,
57031657,958,1,2464,963,
57041,2717,1586,16,0,
5705192,1,205,1587,17,
57061588,15,1185,1,-1,
57071,5,1589,20,1590,
57084,36,66,0,105,
57090,110,0,97,0,
5710114,0,121,0,69,
57110,120,0,112,0,
5712114,0,101,0,115,
57130,115,0,105,0,
5714111,0,110,0,95,
57150,56,0,1,284,
57161,3,1,4,1,
57173,1591,22,1,130,
57181,2724,1592,16,0,
5719337,1,2227,972,1,
57201224,1593,17,1594,15,
57211162,1,-1,1,5,
57221595,20,1596,4,38,
572383,0,105,0,109,
57240,112,0,108,0,
5725101,0,65,0,115,
57260,115,0,105,0,
5727103,0,110,0,109,
57280,101,0,110,0,
5729116,0,95,0,50,
57300,50,0,1,253,
57311,3,1,6,1,
57325,1597,22,1,99,
57331,223,1598,17,1599,
573415,1185,1,-1,1,
57355,1600,20,1601,4,
573636,66,0,105,0,
5737110,0,97,0,114, 5708110,0,97,0,114,
57380,121,0,69,0, 57090,121,0,69,0,
5739120,0,112,0,114, 5710120,0,112,0,114,
57400,101,0,115,0, 57110,101,0,115,0,
5741115,0,105,0,111, 5712115,0,105,0,111,
57420,110,0,95,0, 57130,110,0,95,0,
574355,0,1,283,1, 571449,0,48,0,1,
57443,1,4,1,3, 5715295,1,3,1,4,
57451602,22,1,129,1, 57161,3,1559,22,1,
57461730,1603,17,1604,15, 5717137,1,1931,946,1,
57471220,1,-1,1,5, 57181665,1560,17,1561,15,
57481605,20,1606,4,36, 57191242,1,-1,1,5,
57201562,20,1563,4,36,
574970,0,111,0,114, 572170,0,111,0,114,
57500,76,0,111,0, 57220,76,0,111,0,
5751111,0,112,0,83, 5723111,0,112,0,83,
57520,116,0,97,0, 57240,116,0,97,0,
5753116,0,101,0,109, 5725116,0,101,0,109,
57540,101,0,110,0, 57260,101,0,110,0,
5755116,0,95,0,52, 5727116,0,95,0,49,
57560,1,229,1,3, 57280,1,235,1,3,
57571,4,1,3,1607, 57291,2,1,1,1564,
575822,1,75,1,476, 573022,1,77,1,2364,
57591608,17,1609,15,1610, 5731913,1,2105,900,1,
57604,18,37,0,67, 57321188,1565,17,1566,15,
57610,111,0,110,0, 57331184,1,-1,1,5,
5762115,0,116,0,97, 57341567,20,1568,4,38,
57630,110,0,116,0,
57641,-1,1,5,1611,
576520,1612,4,20,67,
57660,111,0,110,0,
5767115,0,116,0,97,
57680,110,0,116,0,
576995,0,52,0,1,
5770261,1,3,1,2,
57711,1,1613,22,1,
5772107,1,477,1614,17,
57731615,15,1610,1,-1,
57741,5,1616,20,1617,
57754,20,67,0,111,
57760,110,0,115,0,
5777116,0,97,0,110,
57780,116,0,95,0,
577951,0,1,260,1,
57803,1,2,1,1,
57811618,22,1,106,1,
57821231,1619,17,1620,15,
57831162,1,-1,1,5,
57841621,20,1622,4,36,
578583,0,105,0,109, 573583,0,105,0,109,
57860,112,0,108,0, 57360,112,0,108,0,
5787101,0,65,0,115, 5737101,0,65,0,115,
57880,115,0,105,0, 57380,115,0,105,0,
5789103,0,110,0,109, 5739103,0,110,0,109,
57900,101,0,110,0, 57400,101,0,110,0,
5791116,0,95,0,57, 5741116,0,95,0,50,
57920,1,240,1,3, 57420,51,0,1,263,
57931,6,1,5,1623, 57431,3,1,6,1,
579422,1,86,1,479, 57445,1569,22,1,105,
57951624,17,1625,15,1610, 57451,1442,1570,17,1571,
57961,-1,1,5,1626, 574615,1184,1,-1,1,
579720,1627,4,20,67, 57475,1572,20,1573,4,
57980,111,0,110,0, 574838,83,0,105,0,
5799115,0,116,0,97,
58000,110,0,116,0,
580195,0,49,0,1,
5802258,1,3,1,2,
58031,1,1628,22,1,
5804104,1,480,1629,17,
58051630,15,1631,4,26,
580637,0,76,0,105,
58070,115,0,116,0,
580867,0,111,0,110,
58090,115,0,116,0,
581097,0,110,0,116,
58110,1,-1,1,5,
58121632,20,1633,4,28,
581376,0,105,0,115,
58140,116,0,67,0,
5815111,0,110,0,115,
58160,116,0,97,0,
5817110,0,116,0,95,
58180,49,0,1,262,
58191,3,1,4,1,
58203,1634,22,1,108,
58211,1485,1635,17,1636,
582215,1162,1,-1,1,
58235,1637,20,1638,4,
582436,83,0,105,0,
5825109,0,112,0,108, 5749109,0,112,0,108,
58260,101,0,65,0, 57500,101,0,65,0,
5827115,0,115,0,105, 5751115,0,115,0,105,
58280,103,0,110,0, 57520,103,0,110,0,
5829109,0,101,0,110, 5753109,0,101,0,110,
58300,116,0,95,0, 57540,116,0,95,0,
583150,0,1,233,1, 575549,0,54,0,1,
58323,1,4,1,3, 5756256,1,3,1,4,
58331639,22,1,79,1, 57571,3,1574,22,1,
58341737,1640,16,0,272, 575898,1,1694,1575,16,
58351,1989,980,1,1990, 57590,201,1,942,1576,
58361641,17,1206,1,0, 576017,1577,15,1207,1,
58371210,1,242,1642,17, 5761-1,1,5,1578,20,
58381643,15,1185,1,-1, 57621579,4,38,66,0,
58391,5,1644,20,1645, 5763105,0,110,0,97,
57640,114,0,121,0,
576569,0,120,0,112,
57660,114,0,101,0,
5767115,0,115,0,105,
57680,111,0,110,0,
576995,0,49,0,55,
57700,1,302,1,3,
57711,4,1,3,1580,
577222,1,144,1,2198,
57731581,17,1228,1,0,
57741232,1,1195,1582,17,
57751583,15,1184,1,-1,
57761,5,1584,20,1585,
57774,38,83,0,105,
57780,109,0,112,0,
5779108,0,101,0,65,
57800,115,0,115,0,
5781105,0,103,0,110,
57820,109,0,101,0,
5783110,0,116,0,95,
57840,49,0,48,0,
57851,250,1,3,1,
57866,1,5,1586,22,
57871,92,1,1449,1587,
578817,1588,15,1184,1,
5789-1,1,5,1589,20,
57901590,4,36,83,0,
5791105,0,109,0,112,
57920,108,0,101,0,
579365,0,115,0,115,
57940,105,0,103,0,
5795110,0,109,0,101,
57960,110,0,116,0,
579795,0,51,0,1,
5798243,1,3,1,4,
57991,3,1591,22,1,
580085,1,1701,1592,17,
58011593,15,1242,1,-1,
58021,5,1594,20,1595,
58034,36,70,0,111,
58040,114,0,76,0,
5805111,0,111,0,112,
58060,83,0,116,0,
580797,0,116,0,101,
58080,109,0,101,0,
5809110,0,116,0,95,
58100,51,0,1,237,
58111,3,1,4,1,
58123,1596,22,1,79,
58131,447,1597,17,1598,
581415,1599,4,30,37,
58150,86,0,101,0,
581699,0,116,0,111,
58170,114,0,67,0,
5818111,0,110,0,115,
58190,116,0,97,0,
5820110,0,116,0,1,
5821-1,1,5,1600,20,
58221601,4,32,86,0,
5823101,0,99,0,116,
58240,111,0,114,0,
582567,0,111,0,110,
58260,115,0,116,0,
582797,0,110,0,116,
58280,95,0,49,0,
58291,272,1,3,1,
58308,1,7,1602,22,
58311,114,1,2458,961,
58321,2459,967,1,1958,
58331603,17,1228,1,0,
58341232,1,188,1604,17,
58351605,15,1207,1,-1,
58361,5,1606,20,1607,
58404,36,66,0,105, 58374,36,66,0,105,
58410,110,0,97,0, 58380,110,0,97,0,
5842114,0,121,0,69, 5839114,0,121,0,69,
@@ -5844,35 +5841,168 @@ public yyLSLSyntax
5844114,0,101,0,115, 5841114,0,101,0,115,
58450,115,0,105,0, 58420,115,0,105,0,
5846111,0,110,0,95, 5843111,0,110,0,95,
58470,54,0,1,282, 58440,57,0,1,294,
58451,3,1,4,1,
58463,1608,22,1,136,
58471,2462,974,1,1657,
5848979,1,2464,984,1,
5849205,1609,17,1610,15,
58501207,1,-1,1,5,
58511611,20,1612,4,36,
585266,0,105,0,110,
58530,97,0,114,0,
5854121,0,69,0,120,
58550,112,0,114,0,
5856101,0,115,0,115,
58570,105,0,111,0,
5858110,0,95,0,56,
58590,1,293,1,3,
58601,4,1,3,1613,
586122,1,135,1,2227,
5862993,1,1224,1614,17,
58631615,15,1184,1,-1,
58641,5,1616,20,1617,
58654,38,83,0,105,
58660,109,0,112,0,
5867108,0,101,0,65,
58680,115,0,115,0,
5869105,0,103,0,110,
58700,109,0,101,0,
5871110,0,116,0,95,
58720,50,0,50,0,
58731,262,1,3,1,
58746,1,5,1618,22,
58751,104,1,223,1619,
587617,1620,15,1207,1,
5877-1,1,5,1621,20,
58781622,4,36,66,0,
5879105,0,110,0,97,
58800,114,0,121,0,
588169,0,120,0,112,
58820,114,0,101,0,
5883115,0,115,0,105,
58840,111,0,110,0,
588595,0,55,0,1,
5886292,1,3,1,4,
58871,3,1623,22,1,
5888134,1,1730,1624,17,
58891625,15,1242,1,-1,
58901,5,1626,20,1627,
58914,36,70,0,111,
58920,114,0,76,0,
5893111,0,111,0,112,
58940,83,0,116,0,
589597,0,116,0,101,
58960,109,0,101,0,
5897110,0,116,0,95,
58980,52,0,1,238,
58481,3,1,4,1, 58991,3,1,4,1,
58493,1646,22,1,128, 59003,1628,22,1,80,
58501,478,1647,17,1648, 59011,476,1629,17,1630,
585115,1610,1,-1,1, 590215,1631,4,18,37,
58525,1649,20,1650,4, 59030,67,0,111,0,
5904110,0,115,0,116,
59050,97,0,110,0,
5906116,0,1,-1,1,
59075,1632,20,1633,4,
585320,67,0,111,0, 590820,67,0,111,0,
5854110,0,115,0,116, 5909110,0,115,0,116,
58550,97,0,110,0, 59100,97,0,110,0,
5856116,0,95,0,50, 5911116,0,95,0,52,
58570,1,259,1,3, 59120,1,270,1,3,
58581,2,1,1,1651, 59131,2,1,1,1634,
585922,1,105,1,1001, 591422,1,112,1,477,
58601652,17,1653,15,1288, 59151635,17,1636,15,1631,
58611,-1,1,5,1654, 59161,-1,1,5,1637,
586220,1655,4,40,84, 591720,1638,4,20,67,
58630,121,0,112,0, 59180,111,0,110,0,
5864101,0,99,0,97, 5919115,0,116,0,97,
59200,110,0,116,0,
592195,0,51,0,1,
5922269,1,3,1,2,
59231,1,1639,22,1,
5924111,1,1231,1640,17,
59251641,15,1184,1,-1,
59261,5,1642,20,1643,
59274,36,83,0,105,
59280,109,0,112,0,
5929108,0,101,0,65,
59300,115,0,115,0,
5931105,0,103,0,110,
59320,109,0,101,0,
5933110,0,116,0,95,
59340,57,0,1,249,
59351,3,1,6,1,
59365,1644,22,1,91,
59371,479,1645,17,1646,
593815,1631,1,-1,1,
59395,1647,20,1648,4,
594020,67,0,111,0,
5941110,0,115,0,116,
59420,97,0,110,0,
5943116,0,95,0,49,
59440,1,267,1,3,
59451,2,1,1,1649,
594622,1,109,1,480,
59471650,17,1651,15,1652,
59484,26,37,0,76,
59490,105,0,115,0,
5950116,0,67,0,111,
59510,110,0,115,0,
5952116,0,97,0,110,
59530,116,0,1,-1,
59541,5,1653,20,1654,
59554,28,76,0,105,
58650,115,0,116,0, 59560,115,0,116,0,
586669,0,120,0,112, 595767,0,111,0,110,
58670,114,0,101,0, 59580,115,0,116,0,
5868115,0,115,0,105, 595997,0,110,0,116,
59600,95,0,49,0,
59611,271,1,3,1,
59624,1,3,1655,22,
59631,113,1,1485,1656,
596417,1657,15,1184,1,
5965-1,1,5,1658,20,
59661659,4,36,83,0,
5967105,0,109,0,112,
59680,108,0,101,0,
596965,0,115,0,115,
59700,105,0,103,0,
5971110,0,109,0,101,
59720,110,0,116,0,
597395,0,50,0,1,
5974242,1,3,1,4,
59751,3,1660,22,1,
597684,1,1737,1661,16,
59770,285,1,1989,1002,
59781,1990,1662,17,1228,
59791,0,1232,1,2746,
59801663,16,0,297,1,
5981242,1664,17,1665,15,
59821207,1,-1,1,5,
59831666,20,1667,4,36,
598466,0,105,0,110,
59850,97,0,114,0,
5986121,0,69,0,120,
59870,112,0,114,0,
5988101,0,115,0,115,
59890,105,0,111,0,
5990110,0,95,0,54,
59910,1,291,1,3,
59921,4,1,3,1668,
599322,1,133,1,478,
59941669,17,1670,15,1631,
59951,-1,1,5,1671,
599620,1672,4,20,67,
58690,111,0,110,0, 59970,111,0,110,0,
587095,0,56,0,1, 5998115,0,116,0,97,
5871307,1,3,1,5, 59990,110,0,116,0,
58721,4,1656,22,1, 600095,0,50,0,1,
5873153,1,1002,1657,17, 6001268,1,3,1,2,
58741658,15,1288,1,-1, 60021,1,1673,22,1,
58751,5,1659,20,1660, 6003110,1,1001,1674,17,
60041675,15,1310,1,-1,
60051,5,1676,20,1677,
58764,40,84,0,121, 60064,40,84,0,121,
58770,112,0,101,0, 60070,112,0,101,0,
587899,0,97,0,115, 600899,0,97,0,115,
@@ -5881,120 +6011,209 @@ public yyLSLSyntax
58810,101,0,115,0, 60110,101,0,115,0,
5882115,0,105,0,111, 6012115,0,105,0,111,
58830,110,0,95,0, 60130,110,0,95,0,
588449,0,1,300,1, 601456,0,1,316,1,
58853,1,5,1,4,
58861661,22,1,146,1,
588712,1662,19,160,1,
588812,1663,5,47,1,
58891901,1664,16,0,158,
58901,2075,1665,16,0,
5891158,1,1860,885,1,
58921803,851,1,1804,1666,
589316,0,158,1,2520,
58941667,16,0,158,1,
58952413,1668,16,0,158,
58961,2198,1669,16,0,
5897158,1,1657,958,1,
58981873,899,1,2529,1670,
589916,0,158,1,2534,
59001671,16,0,158,1,
59011990,1672,16,0,158,
59021,31,1673,16,0,
5903158,1,32,1674,16,
59040,158,1,2105,878,
59051,2106,1675,16,0,
5906158,1,2549,1676,16,
59070,158,1,2604,1677,
590816,0,288,1,2227,
5909972,1,2337,1678,16,
59100,158,1,2021,782,
59111,2458,940,1,2459,
5912946,1,2462,953,1,
59132136,906,1,2464,963,
59141,2029,789,1,2030,
5915795,1,2031,800,1,
59162032,805,1,2469,1679,
591716,0,506,1,2035,
5918816,1,2364,891,1,
59192039,826,1,1931,925,
59201,2041,832,1,2043,
5921838,1,2045,843,1,
59222511,1680,16,0,158,
59231,1775,1681,16,0,
5924158,1,1989,980,1,
59252033,810,1,2037,821,
59261,2713,1682,16,0,
5927158,1,1574,863,1,
59281958,1683,16,0,158,
59291,13,1684,19,496,
59301,13,1685,5,46,
59311,2536,1686,17,1687,
593215,1688,4,36,37,
59330,86,0,111,0,
5934105,0,100,0,65,
59350,114,0,103,0,
593683,0,116,0,97,
59370,116,0,101,0,
593869,0,118,0,101,
59390,110,0,116,0,
59401,-1,1,5,1689,
594120,1690,4,38,86,
59420,111,0,105,0,
5943100,0,65,0,114,
59440,103,0,83,0,
5945116,0,97,0,116,
59460,101,0,69,0,
5947118,0,101,0,110,
59480,116,0,95,0,
594949,0,1,181,1,
59503,1,5,1,4, 60153,1,5,1,4,
59511691,22,1,26,1, 60161678,22,1,158,1,
59522513,1692,17,1693,15, 60171002,1679,17,1680,15,
59531694,4,40,37,0, 60181310,1,-1,1,5,
595486,0,101,0,99, 60191681,20,1682,4,40,
59550,116,0,111,0, 602084,0,121,0,112,
5956114,0,65,0,114, 60210,101,0,99,0,
59570,103,0,83,0, 602297,0,115,0,116,
5958116,0,97,0,116, 60230,69,0,120,0,
59590,101,0,69,0, 6024112,0,114,0,101,
5960118,0,101,0,110, 60250,115,0,115,0,
59610,116,0,1,-1, 6026105,0,111,0,110,
59621,5,1695,20,1696, 60270,95,0,49,0,
59634,42,86,0,101, 60281,309,1,3,1,
59640,99,0,116,0, 60295,1,4,1683,22,
5965111,0,114,0,65, 60301,151,1,12,1684,
59660,114,0,103,0, 603119,167,1,12,1685,
60325,48,1,1901,1686,
603316,0,165,1,2033,
6034832,1,2622,1687,16,
60350,626,1,1860,907,
60361,1803,873,1,1804,
60371688,16,0,165,1,
60382735,1689,16,0,165,
60391,2518,1690,16,0,
6040165,1,2413,1691,16,
60410,165,1,2198,1692,
604216,0,165,1,2527,
60431693,16,0,165,1,
60441657,979,1,1989,1002,
60451,2535,1694,16,0,
6046165,1,31,1695,16,
60470,165,1,32,1696,
604816,0,165,1,2105,
6049900,1,2106,1697,16,
60500,165,1,2544,1698,
605116,0,165,1,2549,
60521699,16,0,165,1,
60532227,993,1,2337,1700,
605416,0,165,1,2564,
60551701,16,0,165,1,
60562021,804,1,2458,961,
60571,2459,967,1,2462,
6058974,1,2136,928,1,
60592464,984,1,2029,811,
60601,2030,817,1,2031,
6061822,1,2032,827,1,
60622469,1702,16,0,509,
60631,2035,838,1,2364,
6064913,1,2039,848,1,
60651931,946,1,2041,854,
60661,1873,921,1,2043,
6067860,1,2045,865,1,
60681775,1703,16,0,165,
60691,1990,1704,16,0,
6070165,1,2075,1705,16,
60710,165,1,2037,843,
60721,1574,885,1,1958,
60731706,16,0,165,1,
607413,1707,19,492,1,
607513,1708,5,49,1,
60762616,1709,17,1710,15,
60771711,4,20,37,0,
596783,0,116,0,97, 607883,0,116,0,97,
59680,116,0,101,0, 60790,116,0,101,0,
596969,0,118,0,101, 608066,0,111,0,100,
59700,110,0,116,0, 60810,121,0,1,-1,
597195,0,49,0,1, 60821,5,1712,20,1713,
5972184,1,3,1,6, 60834,24,83,0,116,
59731,5,1697,22,1, 60840,97,0,116,0,
597429,1,1860,885,1, 6085101,0,66,0,111,
59752522,1698,17,1699,15, 60860,100,0,121,0,
59761700,4,34,37,0, 608795,0,49,0,49,
60880,1,184,1,3,
60891,2,1,1,1714,
609022,1,25,1,2617,
60911715,17,1716,15,1711,
60921,-1,1,5,1717,
609320,1718,4,22,83,
60940,116,0,97,0,
6095116,0,101,0,66,
60960,111,0,100,0,
6097121,0,95,0,57,
60980,1,182,1,3,
60991,2,1,1,1719,
610022,1,23,1,2618,
61011720,17,1721,15,1711,
61021,-1,1,5,1722,
610320,1723,4,22,83,
61040,116,0,97,0,
6105116,0,101,0,66,
61060,111,0,100,0,
6107121,0,95,0,55,
61080,1,180,1,3,
61091,2,1,1,1724,
611022,1,21,1,2619,
61111725,17,1726,15,1711,
61121,-1,1,5,1727,
611320,1728,4,22,83,
61140,116,0,97,0,
6115116,0,101,0,66,
61160,111,0,100,0,
6117121,0,95,0,53,
61180,1,178,1,3,
61191,2,1,1,1729,
612022,1,19,1,2620,
61211730,17,1731,15,1711,
61221,-1,1,5,1732,
612320,1733,4,22,83,
61240,116,0,97,0,
6125116,0,101,0,66,
61260,111,0,100,0,
6127121,0,95,0,51,
61280,1,176,1,3,
61291,2,1,1,1734,
613022,1,17,1,2621,
61311735,17,1736,15,1711,
61321,-1,1,5,1737,
613320,1738,4,22,83,
61340,116,0,97,0,
6135116,0,101,0,66,
61360,111,0,100,0,
6137121,0,95,0,49,
61380,1,174,1,3,
61391,2,1,1,1739,
614022,1,15,1,1860,
6141907,1,1803,873,1,
61422520,1740,17,1741,15,
61431742,4,46,37,0,
597773,0,110,0,116, 614473,0,110,0,116,
61450,82,0,111,0,
6146116,0,82,0,111,
61470,116,0,65,0,
6148114,0,103,0,83,
61490,116,0,97,0,
6150116,0,101,0,69,
61510,118,0,101,0,
6152110,0,116,0,1,
6153-1,1,5,1743,20,
61541744,4,48,73,0,
6155110,0,116,0,82,
61560,111,0,116,0,
615782,0,111,0,116,
59780,65,0,114,0, 61580,65,0,114,0,
5979103,0,83,0,116, 6159103,0,83,0,116,
59800,97,0,116,0, 61600,97,0,116,0,
5981101,0,69,0,118, 6161101,0,69,0,118,
59820,101,0,110,0, 61620,101,0,110,0,
5983116,0,1,-1,1, 6163116,0,95,0,49,
59845,1701,20,1702,4, 61640,1,191,1,3,
598536,73,0,110,0, 61651,6,1,5,1745,
5986116,0,65,0,114, 616622,1,32,1,2413,
59870,103,0,83,0, 61671746,16,0,490,1,
5988116,0,97,0,116, 61681657,979,1,1873,921,
59890,101,0,69,0, 61691,2529,1747,17,1748,
5990118,0,101,0,110, 617015,1749,4,40,37,
59910,116,0,95,0, 61710,86,0,101,0,
599249,0,1,183,1, 617299,0,116,0,111,
59933,1,6,1,5, 61730,114,0,65,0,
59941703,22,1,28,1, 6174114,0,103,0,83,
59951873,899,1,1657,958, 61750,116,0,97,0,
59961,2531,1704,17,1705, 6176116,0,101,0,69,
599715,1706,4,34,37, 61770,118,0,101,0,
6178110,0,116,0,1,
6179-1,1,5,1750,20,
61801751,4,42,86,0,
6181101,0,99,0,116,
61820,111,0,114,0,
618365,0,114,0,103,
61840,83,0,116,0,
618597,0,116,0,101,
61860,69,0,118,0,
6187101,0,110,0,116,
61880,95,0,49,0,
61891,190,1,3,1,
61906,1,5,1752,22,
61911,31,1,2664,1753,
619216,0,707,1,1989,
61931002,1,2537,1754,17,
61941755,15,1756,4,34,
619537,0,73,0,110,
61960,116,0,65,0,
6197114,0,103,0,83,
61980,116,0,97,0,
6199116,0,101,0,69,
62000,118,0,101,0,
6201110,0,116,0,1,
6202-1,1,5,1757,20,
62031758,4,36,73,0,
6204110,0,116,0,65,
62050,114,0,103,0,
620683,0,116,0,97,
62070,116,0,101,0,
620869,0,118,0,101,
62090,110,0,116,0,
621095,0,49,0,1,
6211189,1,3,1,6,
62121,5,1759,22,1,
621330,1,32,1760,16,
62140,502,1,2105,900,
62151,2546,1761,17,1762,
621615,1763,4,34,37,
59980,75,0,101,0, 62170,75,0,101,0,
5999121,0,65,0,114, 6218121,0,65,0,114,
60000,103,0,83,0, 62190,103,0,83,0,
@@ -6002,7 +6221,7 @@ public yyLSLSyntax
60020,101,0,69,0, 62210,101,0,69,0,
6003118,0,101,0,110, 6222118,0,101,0,110,
60040,116,0,1,-1, 62230,116,0,1,-1,
60051,5,1707,20,1708, 62241,5,1764,20,1765,
60064,36,75,0,101, 62254,36,75,0,101,
60070,121,0,65,0, 62260,121,0,65,0,
6008114,0,103,0,83, 6227114,0,103,0,83,
@@ -6010,154 +6229,145 @@ public yyLSLSyntax
6010116,0,101,0,69, 6229116,0,101,0,69,
60110,118,0,101,0, 62300,118,0,101,0,
6012110,0,116,0,95, 6231110,0,116,0,95,
60130,49,0,1,182, 62320,49,0,1,188,
60141,3,1,6,1, 62331,3,1,6,1,
60155,1709,22,1,27, 62345,1766,22,1,29,
60161,1989,980,1,2645, 62351,2364,913,1,2551,
60171710,16,0,733,1, 62361767,17,1768,15,1769,
60182037,821,1,32,1711, 62374,36,37,0,86,
601916,0,501,1,2105, 62380,111,0,105,0,
6020878,1,2464,963,1, 6239100,0,65,0,114,
60212551,1712,17,1713,15, 62400,103,0,83,0,
60221714,4,22,37,0, 6241116,0,97,0,116,
602383,0,116,0,97, 62420,101,0,69,0,
60240,116,0,101,0, 6243118,0,101,0,110,
602569,0,118,0,101, 62440,116,0,1,-1,
60260,110,0,116,0, 62451,5,1770,20,1771,
60271,-1,1,5,1715, 62464,38,86,0,111,
602820,1716,4,24,83, 62470,105,0,100,0,
624865,0,114,0,103,
62490,83,0,116,0,
625097,0,116,0,101,
62510,69,0,118,0,
6252101,0,110,0,116,
62530,95,0,49,0,
62541,187,1,3,1,
62555,1,4,1772,22,
62561,28,1,2227,993,
62571,1574,885,1,2566,
62581773,17,1774,15,1775,
62594,22,37,0,83,
60290,116,0,97,0, 62600,116,0,97,0,
6030116,0,101,0,69, 6261116,0,101,0,69,
60310,118,0,101,0, 62620,118,0,101,0,
6032110,0,116,0,95, 6263110,0,116,0,1,
60330,49,0,1,180, 6264-1,1,5,1776,20,
60341,3,1,6,1, 62651777,4,24,83,0,
60355,1717,22,1,25,
60361,2553,1718,16,0,
6037721,1,2227,972,1,
60381574,863,1,1803,851,
60391,2458,940,1,2459,
6040946,1,2462,953,1,
60412136,906,1,2599,1719,
604217,1720,15,1721,4,
604320,37,0,83,0,
6044116,0,97,0,116, 6266116,0,97,0,116,
60450,101,0,66,0, 62670,101,0,69,0,
6046111,0,100,0,121, 6268118,0,101,0,110,
60470,1,-1,1,5, 62690,116,0,95,0,
60481722,20,1723,4,22, 627049,0,1,186,1,
62713,1,6,1,5,
62721778,22,1,27,1,
62732458,961,1,2459,967,
62741,2462,974,1,2136,
6275928,1,2464,984,1,
62762029,811,1,2030,817,
62771,2031,822,1,2032,
6278827,1,2033,832,1,
62792035,838,1,2037,843,
62801,2039,848,1,1931,
6281946,1,2041,854,1,
62822021,804,1,2043,860,
62831,2045,865,1,2568,
62841779,16,0,686,1,
62852609,1780,17,1781,15,
62861711,1,-1,1,5,
62871782,20,1783,4,24,
604983,0,116,0,97, 628883,0,116,0,97,
60500,116,0,101,0, 62890,116,0,101,0,
605166,0,111,0,100, 629066,0,111,0,100,
60520,121,0,95,0, 62910,121,0,95,0,
605357,0,1,178,1, 629249,0,50,0,1,
60543,1,2,1,1, 6293185,1,3,1,3,
60551724,22,1,23,1, 62941,2,1784,22,1,
60562029,789,1,2030,795, 629526,1,2610,1785,17,
60571,2031,800,1,2032, 62961786,15,1711,1,-1,
6058805,1,2033,810,1, 62971,5,1787,20,1788,
60592035,816,1,2364,891, 62984,24,83,0,116,
60601,2039,826,1,1931, 62990,97,0,116,0,
6061925,1,2041,832,1, 6300101,0,66,0,111,
60622021,782,1,2043,838, 63010,100,0,121,0,
60631,2045,843,1,2593, 630295,0,49,0,48,
60641725,17,1726,15,1721, 63030,1,183,1,3,
60651,-1,1,5,1727, 63041,3,1,2,1789,
606620,1728,4,24,83, 630522,1,24,1,2611,
63061790,17,1791,15,1711,
63071,-1,1,5,1792,
630820,1793,4,22,83,
60670,116,0,97,0, 63090,116,0,97,0,
6068116,0,101,0,66, 6310116,0,101,0,66,
60690,111,0,100,0, 63110,111,0,100,0,
6070121,0,95,0,49, 6312121,0,95,0,56,
60710,48,0,1,179, 63130,1,181,1,3,
60721,3,1,3,1, 63141,3,1,2,1794,
60732,1729,22,1,24, 631522,1,22,1,2612,
60741,2594,1730,17,1731, 63161795,17,1796,15,1711,
607515,1721,1,-1,1, 63171,-1,1,5,1797,
60765,1732,20,1733,4, 631820,1798,4,22,83,
607722,83,0,116,0, 63190,116,0,97,0,
607897,0,116,0,101, 6320116,0,101,0,66,
60790,66,0,111,0, 63210,111,0,100,0,
6080100,0,121,0,95, 6322121,0,95,0,54,
60810,56,0,1,177, 63230,1,179,1,3,
60821,3,1,3,1, 63241,3,1,2,1799,
60832,1734,22,1,22, 632522,1,20,1,2613,
60841,2595,1735,17,1736, 63261800,17,1801,15,1711,
608515,1721,1,-1,1, 63271,-1,1,5,1802,
60865,1737,20,1738,4, 632820,1803,4,22,83,
608722,83,0,116,0, 63290,116,0,97,0,
608897,0,116,0,101, 6330116,0,101,0,66,
60890,66,0,111,0, 63310,111,0,100,0,
6090100,0,121,0,95, 6332121,0,95,0,52,
60910,54,0,1,175, 63330,1,177,1,3,
60921,3,1,3,1, 63341,3,1,2,1804,
60932,1739,22,1,20, 633522,1,18,1,2614,
60941,2596,1740,17,1741, 63361805,17,1806,15,1711,
609515,1721,1,-1,1, 63371,-1,1,5,1807,
60965,1742,20,1743,4, 633820,1808,4,22,83,
609722,83,0,116,0, 63390,116,0,97,0,
609897,0,116,0,101, 6340116,0,101,0,66,
60990,66,0,111,0, 63410,111,0,100,0,
6100100,0,121,0,95, 6342121,0,95,0,50,
61010,52,0,1,173, 63430,1,175,1,3,
61021,3,1,3,1, 63441,3,1,2,1809,
61032,1744,22,1,18, 634522,1,16,1,14,
61041,2597,1745,17,1746, 63461810,19,154,1,14,
610515,1721,1,-1,1, 63471811,5,109,1,2512,
61065,1747,20,1748,4, 63481812,17,1813,15,1814,
610722,83,0,116,0, 63494,30,37,0,82,
610897,0,116,0,101, 63500,111,0,116,0,
61090,66,0,111,0, 635168,0,101,0,99,
6110100,0,121,0,95, 63520,108,0,97,0,
61110,50,0,1,171, 6353114,0,97,0,116,
63540,105,0,111,0,
6355110,0,1,-1,1,
63565,1815,20,1816,4,
635732,82,0,111,0,
6358116,0,68,0,101,
63590,99,0,108,0,
636097,0,114,0,97,
63610,116,0,105,0,
6362111,0,110,0,95,
63630,49,0,1,202,
61121,3,1,3,1, 63641,3,1,3,1,
61132,1749,22,1,16, 63652,1817,22,1,44,
61141,2413,1750,16,0, 63661,2513,1818,16,0,
6115494,1,2600,1751,17, 6367457,1,1260,1182,1,
61161752,15,1721,1,-1, 63681011,1188,1,1514,1194,
61171,5,1753,20,1754, 63691,9,1199,1,10,
61184,22,83,0,116, 63701819,17,1820,15,1821,
61190,97,0,116,0,
6120101,0,66,0,111,
61210,100,0,121,0,
612295,0,55,0,1,
6123176,1,3,1,2,
61241,1,1755,22,1,
612521,1,2601,1756,17,
61261757,15,1721,1,-1,
61271,5,1758,20,1759,
61284,22,83,0,116,
61290,97,0,116,0,
6130101,0,66,0,111,
61310,100,0,121,0,
613295,0,53,0,1,
6133174,1,3,1,2,
61341,1,1760,22,1,
613519,1,2602,1761,17,
61361762,15,1721,1,-1,
61371,5,1763,20,1764,
61384,22,83,0,116,
61390,97,0,116,0,
6140101,0,66,0,111,
61410,100,0,121,0,
614295,0,51,0,1,
6143172,1,3,1,2,
61441,1,1765,22,1,
614517,1,2603,1766,17,
61461767,15,1721,1,-1,
61471,5,1768,20,1769,
61484,22,83,0,116,
61490,97,0,116,0,
6150101,0,66,0,111,
61510,100,0,121,0,
615295,0,49,0,1,
6153170,1,3,1,2,
61541,1,1770,22,1,
615515,1,14,1771,19,
6156144,1,14,1772,5,
6157105,1,1260,1160,1,
61581011,1166,1,1514,1172,
61591,9,1177,1,10,
61601773,17,1774,15,1775,
61614,48,37,0,65, 63714,48,37,0,65,
61620,114,0,103,0, 63720,114,0,103,0,
6163117,0,109,0,101, 6373117,0,109,0,101,
@@ -6168,47 +6378,43 @@ public yyLSLSyntax
61680,105,0,111,0, 63780,105,0,111,0,
6169110,0,76,0,105, 6379110,0,76,0,105,
61700,115,0,116,0, 63800,115,0,116,0,
61711,-1,1,5,140, 63811,-1,1,5,150,
61721,0,1,0,1776, 63821,0,1,0,1822,
617322,1,30,1,262, 638322,1,33,1,262,
61741183,1,1267,1189,1, 63841205,1,1267,1211,1,
61751521,1194,1,1773,1777, 63851521,1216,1,1773,1823,
617616,0,148,1,19, 638616,0,158,1,19,
61771211,1,20,1778,16, 63871233,1,20,1824,16,
61780,142,1,2281,1218, 63880,152,1,2281,1240,
61791,525,1280,1,2538, 63891,525,1302,1,30,
61801779,17,1780,15,1775, 63901825,17,1826,15,1821,
61811,-1,1,5,140, 63911,-1,1,5,1827,
61821,0,1,0,1776, 639220,1828,4,50,65,
61831,30,1781,17,1782, 63930,114,0,103,0,
618415,1775,1,-1,1, 6394117,0,109,0,101,
61855,1783,20,1784,4, 63950,110,0,116,0,
618650,65,0,114,0, 639668,0,101,0,99,
6187103,0,117,0,109, 63970,108,0,97,0,
61880,101,0,110,0, 6398114,0,97,0,116,
6189116,0,68,0,101, 63990,105,0,111,0,
61900,99,0,108,0, 6400110,0,76,0,105,
619197,0,114,0,97, 64010,115,0,116,0,
61920,116,0,105,0, 640295,0,50,0,1,
6193111,0,110,0,76, 6403193,1,3,1,4,
61940,105,0,115,0, 64041,3,1829,22,1,
6195116,0,95,0,50, 640535,1,1002,1679,1,
61960,1,186,1,3, 6406283,1258,1,40,1263,
61971,4,1,3,1785, 64071,41,1830,17,1831,
619822,1,32,1,283, 640815,1832,4,26,37,
61991236,1,2547,1786,16,
62000,142,1,40,1241,
62011,41,1787,17,1788,
620215,1789,4,26,37,
62030,65,0,114,0, 64090,65,0,114,0,
6204103,0,117,0,109, 6410103,0,117,0,109,
62050,101,0,110,0, 64110,101,0,110,0,
6206116,0,76,0,105, 6412116,0,76,0,105,
62070,115,0,116,0, 64130,115,0,116,0,
62081,-1,1,5,660, 64141,-1,1,5,676,
62091,0,1,0,1790, 64151,0,1,0,1833,
621022,1,156,1,42, 641622,1,161,1,42,
62111791,17,1792,15,1793, 64171834,17,1835,15,1836,
62124,38,37,0,69, 64184,38,37,0,69,
62130,120,0,112,0, 64190,120,0,112,0,
6214114,0,101,0,115, 6420114,0,101,0,115,
@@ -6217,8 +6423,8 @@ public yyLSLSyntax
62170,114,0,103,0, 64230,114,0,103,0,
6218117,0,109,0,101, 6424117,0,109,0,101,
62190,110,0,116,0, 64250,110,0,116,0,
62201,-1,1,5,1794, 64261,-1,1,5,1837,
622120,1795,4,40,69, 642720,1838,4,40,69,
62220,120,0,112,0, 64280,120,0,112,0,
6223114,0,101,0,115, 6429114,0,101,0,115,
62240,115,0,105,0, 64300,115,0,105,0,
@@ -6227,682 +6433,756 @@ public yyLSLSyntax
6227117,0,109,0,101, 6433117,0,109,0,101,
62280,110,0,116,0, 64340,110,0,116,0,
622995,0,49,0,1, 643595,0,49,0,1,
6230312,1,3,1,2, 6436321,1,3,1,2,
62311,1,1796,22,1, 64371,1,1839,22,1,
6232159,1,44,1247,1, 6438164,1,2553,1840,17,
623347,1248,1,48,1254, 64391841,15,1821,1,-1,
62341,49,1260,1,50, 64401,5,150,1,0,
62351265,1,51,1270,1, 64411,0,1822,1,44,
6236305,1275,1,63,1286, 64421269,1,47,1270,1,
62371,66,1292,1,67, 644348,1276,1,49,1282,
62381297,1,1478,1521,1, 64441,50,1287,1,51,
623969,1307,1,70,1312, 64451292,1,2562,1842,16,
62401,68,1302,1,74, 64460,152,1,305,1297,
62411317,1,1013,1322,1, 64471,2733,1843,16,0,
62422335,1797,16,0,148, 6448152,1,63,1308,1,
62431,1332,1327,1,1048, 644966,1315,1,67,1320,
62441408,1,82,1344,1, 64501,1478,1544,1,69,
62451296,1231,1,1341,1361, 64511330,1,70,1335,1,
62461,328,1366,1,1303, 645268,1325,1,74,1340,
62471371,1,1096,1376,1, 64531,1013,1345,1,2335,
624893,1382,1,1550,1387, 64541844,16,0,158,1,
62491,352,1413,1,107, 64551332,1350,1,1048,1431,
62501402,1,1114,1407,1, 64561,82,1367,1,1296,
62511370,1516,1,118,1419, 64571253,1,1341,1384,1,
62521,1123,1424,1,371, 6458328,1389,1,1303,1394,
62531429,1,1377,1435,1, 64591,1096,1399,1,93,
6254375,1440,1,377,1445, 64601405,1,1550,1410,1,
62551,379,1450,1,380, 6461352,1436,1,107,1425,
62561455,1,883,1461,1, 64621,1114,1430,1,1370,
6257373,1473,1,130,1478, 64631539,1,118,1442,1,
62581,143,1483,1,1152, 64641123,1447,1,371,1452,
62591489,1,387,1798,16, 64651,1377,1458,1,375,
62600,610,1,1406,1494, 64661463,1,377,1468,1,
62611,1159,1501,1,157, 6467379,1473,1,380,1478,
62621506,1,1413,1511,1, 64681,883,1484,1,373,
62631665,1537,1,412,1799, 64691496,1,130,1501,1,
626416,0,624,1,1094, 6470143,1506,1,1152,1512,
62651800,16,0,662,1, 64711,387,1845,16,0,
6266172,1532,1,827,1395, 6472639,1,1406,1517,1,
62671,1188,1542,1,437, 64731159,1524,1,157,1529,
62681801,16,0,706,1, 64741,1413,1534,1,1665,
62691442,1547,1,1694,1802, 64751560,1,412,1846,16,
627016,0,148,1,942, 64760,652,1,1094,1847,
62711553,1,1195,1559,1, 647716,0,678,1,172,
62722702,1803,17,1804,15, 64781555,1,827,1418,1,
62731775,1,-1,1,5, 64791188,1565,1,437,1848,
6274140,1,0,1,0, 648016,0,727,1,1442,
62751776,1,1449,1564,1, 64811570,1,1694,1849,16,
62761701,1569,1,447,1574, 64820,158,1,942,1576,
62771,2711,1805,16,0, 64831,1195,1582,1,1449,
6278142,1,188,1581,1, 64841587,1,1701,1592,1,
6279205,1587,1,2467,1806, 6485447,1597,1,188,1604,
628017,1807,15,1775,1, 64861,205,1609,1,2467,
6281-1,1,5,1808,20, 64871850,17,1851,15,1821,
62821809,4,50,65,0, 64881,-1,1,5,1852,
6283114,0,103,0,117, 648920,1853,4,50,65,
62840,109,0,101,0, 64900,114,0,103,0,
6285110,0,116,0,68, 6491117,0,109,0,101,
62860,101,0,99,0, 64920,110,0,116,0,
6287108,0,97,0,114, 649368,0,101,0,99,
62880,97,0,116,0, 64940,108,0,97,0,
6289105,0,111,0,110, 6495114,0,97,0,116,
62900,76,0,105,0, 64960,105,0,111,0,
6291115,0,116,0,95, 6497110,0,76,0,105,
62920,49,0,1,185, 64980,115,0,116,0,
62931,3,1,2,1, 649995,0,49,0,1,
62941,1810,22,1,31, 6500192,1,3,1,2,
62951,461,1811,16,0, 65011,1,1854,22,1,
6296662,1,464,1812,17, 650234,1,461,1855,16,
62971813,15,1789,1,-1, 65030,678,1,464,1856,
62981,5,1814,20,1815, 650417,1857,15,1832,1,
62994,28,65,0,114, 6505-1,1,5,1858,20,
63000,103,0,117,0, 65061859,4,28,65,0,
6301109,0,101,0,110,
63020,116,0,76,0,
6303105,0,115,0,116,
63040,95,0,50,0,
63051,311,1,3,1,
63064,1,3,1816,22,
63071,158,1,1224,1593,
63081,223,1598,1,1730,
63091603,1,476,1608,1,
6310477,1614,1,1231,1619,
63111,479,1624,1,480,
63121629,1,1485,1635,1,
6313459,1817,17,1818,15,
63141789,1,-1,1,5,
6315660,1,0,1,0,
63161790,1,242,1642,1,
6317478,1647,1,481,1819,
631817,1820,15,1789,1,
6319-1,1,5,1821,20,
63201822,4,28,65,0,
6321114,0,103,0,117, 6507114,0,103,0,117,
63220,109,0,101,0, 65080,109,0,101,0,
6323110,0,116,0,76, 6509110,0,116,0,76,
63240,105,0,115,0, 65100,105,0,115,0,
6325116,0,95,0,49, 6511116,0,95,0,50,
63260,1,310,1,3, 65120,1,320,1,3,
63271,2,1,1,1823, 65131,4,1,3,1860,
632822,1,157,1,1001, 651422,1,163,1,2724,
63291652,1,1002,1657,1, 65151861,17,1862,15,1821,
633015,1824,19,312,1, 65161,-1,1,5,150,
633115,1825,5,6,1, 65171,0,1,0,1822,
63322717,1826,16,0,696, 65181,1224,1614,1,223,
63331,1114,1827,16,0, 65191619,1,1730,1624,1,
6334310,1,1621,1828,16, 6520476,1629,1,477,1635,
63350,705,1,40,1829, 65211,1231,1640,1,479,
633616,0,606,1,19, 65221645,1,480,1650,1,
63371211,1,9,1177,1, 65231485,1656,1,459,1863,
633816,1830,19,136,1, 652417,1864,15,1832,1,
633916,1831,5,143,1, 6525-1,1,5,676,1,
63402514,1832,16,0,330, 65260,1,0,1833,1,
63411,256,1833,16,0, 6527242,1664,1,478,1669,
6342190,1,1261,1834,16, 65281,481,1865,17,1866,
63430,190,1,509,1835, 652915,1832,1,-1,1,
634416,0,190,1,9, 65305,1867,20,1868,4,
63451836,16,0,134,1, 653128,65,0,114,0,
63462523,1837,16,0,479, 6532103,0,117,0,109,
63471,1775,1838,16,0, 65330,101,0,110,0,
6348190,1,2029,789,1, 6534116,0,76,0,105,
63492532,1839,16,0,599, 65350,115,0,116,0,
63501,2031,800,1,2032, 653695,0,49,0,1,
6351805,1,2033,810,1, 6537319,1,3,1,2,
6352277,1840,16,0,190, 65381,1,1869,22,1,
63531,2537,1841,16,0, 6539162,1,1001,1674,1,
6354497,1,2037,821,1, 65402508,1870,17,1871,15,
63552039,826,1,32,1842, 65411872,4,30,37,0,
635616,0,190,1,2041, 654273,0,110,0,116,
6357832,1,2293,1843,16, 65430,68,0,101,0,
63580,190,1,2043,838, 654499,0,108,0,97,
63591,2045,843,1,40, 65450,114,0,97,0,
63601844,16,0,169,1, 6546116,0,105,0,111,
636141,1845,16,0,190, 65470,110,0,1,-1,
63621,1297,1846,16,0, 65481,5,1873,20,1874,
6363190,1,43,1847,16, 65494,32,73,0,110,
63640,190,1,44,1848, 65500,116,0,68,0,
636516,0,169,1,1803, 6551101,0,99,0,108,
6366851,1,1804,1849,16, 65520,97,0,114,0,
63670,190,1,299,1850, 655397,0,116,0,105,
636816,0,190,1,2480, 65540,111,0,110,0,
63691851,17,1852,15,1853, 655595,0,49,0,1,
63704,24,37,0,73, 6556200,1,3,1,3,
65571,2,1875,22,1,
655842,1,2509,1876,16,
65590,451,1,15,1877,
656019,314,1,15,1878,
65615,6,1,2739,1879,
656216,0,732,1,1114,
65631880,16,0,312,1,
65641621,1881,16,0,726,
65651,40,1882,16,0,
6566632,1,19,1233,1,
65679,1199,1,16,1883,
656819,136,1,16,1884,
65695,144,1,256,1885,
657016,0,198,1,1261,
65711886,16,0,198,1,
6572509,1887,16,0,198,
65731,9,1888,16,0,
6574134,1,2521,1889,16,
65750,466,1,2021,804,
65761,1775,1890,16,0,
6577198,1,2530,1891,16,
65780,483,1,2029,811,
65791,2030,817,1,2031,
6580822,1,2032,827,1,
65812033,832,1,277,1892,
658216,0,198,1,2035,
6583838,1,2538,1893,16,
65840,496,1,2037,843,
65851,2039,848,1,32,
65861894,16,0,198,1,
65872041,854,1,2293,1895,
658816,0,198,1,2043,
6589860,1,2547,1896,16,
65900,508,1,40,1897,
659116,0,177,1,41,
65921898,16,0,198,1,
65931297,1899,16,0,198,
65941,43,1900,16,0,
6595198,1,44,1901,16,
65960,177,1,1803,873,
65971,1804,1902,16,0,
6598198,1,299,1903,16,
65990,198,1,2480,1904,
660017,1905,15,1906,4,
660124,37,0,73,0,
6602110,0,116,0,65,
66030,114,0,103,0,
660469,0,118,0,101,
66050,110,0,116,0,
66061,-1,1,5,1907,
660720,1908,4,26,73,
63710,110,0,116,0, 66080,110,0,116,0,
637265,0,114,0,103, 660965,0,114,0,103,
63730,69,0,118,0, 66100,69,0,118,0,
6374101,0,110,0,116, 6611101,0,110,0,116,
63750,1,-1,1,5, 66120,95,0,53,0,
63761854,20,1855,4,26, 66131,353,1,3,1,
637773,0,110,0,116, 66142,1,1,1909,22,
63780,65,0,114,0, 66151,196,1,52,1910,
6379103,0,69,0,118, 661616,0,198,1,2484,
63800,101,0,110,0, 66171911,17,1912,15,1906,
6381116,0,95,0,52, 66181,-1,1,5,1913,
63820,1,344,1,3, 661920,1914,4,26,73,
63831,2,1,1,1856, 66200,110,0,116,0,
638422,1,191,1,52,
63851857,16,0,190,1,
63862484,1858,17,1859,15,
63871860,4,24,37,0,
638875,0,101,0,121,
63890,65,0,114,0,
6390103,0,69,0,118,
63910,101,0,110,0,
6392116,0,1,-1,1,
63935,1861,20,1862,4,
639426,75,0,101,0,
6395121,0,65,0,114,
63960,103,0,69,0,
6397118,0,101,0,110,
63980,116,0,95,0,
639950,0,1,340,1,
64003,1,2,1,1,
64011863,22,1,187,1,
64021515,1864,16,0,190,
64031,2318,1865,16,0,
6404190,1,2491,1866,17,
64051867,15,1868,4,26,
640637,0,86,0,111,
64070,105,0,100,0,
640865,0,114,0,103, 662165,0,114,0,103,
64090,69,0,118,0, 66220,69,0,118,0,
6410101,0,110,0,116, 6623101,0,110,0,116,
64110,1,-1,1,5, 66240,95,0,49,0,
64121869,20,1870,4,28, 66251,349,1,3,1,
66262,1,1,1915,22,
66271,192,1,1515,1916,
662816,0,198,1,2318,
66291917,16,0,198,1,
66302491,1918,17,1919,15,
66311920,4,26,37,0,
641386,0,111,0,105, 663286,0,111,0,105,
64140,100,0,65,0, 66330,100,0,65,0,
6415114,0,103,0,69, 6634114,0,103,0,69,
64160,118,0,101,0, 66350,118,0,101,0,
6417110,0,116,0,95, 6636110,0,116,0,1,
64180,51,0,1,333, 6637-1,1,5,1921,20,
64191,3,1,2,1, 66381922,4,28,86,0,
64201,1871,22,1,180, 6639111,0,105,0,100,
64211,62,1872,16,0,
6422209,1,63,1873,16,
64230,169,1,2495,1874,
642417,1875,15,1876,4,
642512,37,0,69,0,
6426118,0,101,0,110,
64270,116,0,1,-1,
64281,5,1877,20,1878,
64294,16,69,0,118,
64300,101,0,110,0,
6431116,0,95,0,49,
64320,48,0,1,329,
64331,3,1,2,1,
64341,1879,22,1,176,
64351,2075,1880,16,0,
6436190,1,1574,863,1,
64371479,1881,16,0,190,
64381,71,1882,16,0,
6439190,1,1658,1883,16,
64400,730,1,1833,1884,
644116,0,296,1,1834,
64421885,16,0,190,1,
64432337,1886,16,0,190,
64441,79,1887,16,0,
6445190,1,1335,1888,16,
64460,190,1,322,1889,
644716,0,190,1,76,
64481890,16,0,190,1,
644985,1891,16,0,190,
64501,2030,795,1,89,
64511892,16,0,190,1,
64522035,816,1,346,1893,
645316,0,190,1,97,
64541894,16,0,190,1,
64552106,1895,16,0,190,
64561,102,1896,16,0,
6457190,1,1860,885,1,
64582458,940,1,2364,891,
64591,1990,1897,16,0,
6460190,1,112,1898,16,
64610,190,1,1117,1899,
646216,0,190,1,1873,
6463899,1,1875,1900,16,
64640,417,1,1876,1901,
646516,0,190,1,124,
64661902,16,0,190,1,
64672478,1903,17,1904,15,
64681853,1,-1,1,5,
64691905,20,1906,4,26,
647073,0,110,0,116,
64710,65,0,114,0,
6472103,0,69,0,118,
64730,101,0,110,0,
6474116,0,95,0,54,
64750,1,346,1,3,
64761,2,1,1,1907,
647722,1,193,1,2136,
6478906,1,2718,1908,16,
64790,190,1,381,1909,
648016,0,190,1,525,
64811910,16,0,190,1,
6482137,1911,16,0,190,
64831,2021,782,1,1901,
64841912,16,0,190,1,
64851153,1913,16,0,190,
64861,151,1914,16,0,
6487190,1,1407,1915,16,
64880,190,1,1659,1916,
648916,0,190,1,2413,
64901917,16,0,190,1,
6491406,1918,16,0,190,
64921,1371,1919,16,0,
6493190,1,2105,878,1,
6494166,1920,16,0,190,
64951,1622,1921,16,0,
6496190,1,1931,925,1,
64971932,1922,16,0,509,
64981,1933,1923,16,0,
6499190,1,431,1924,16,
65000,190,1,1585,1925,
650116,0,190,1,182,
65021926,16,0,190,1,
65031189,1927,16,0,190,
65041,1443,1928,16,0,
6505190,1,1695,1929,16,
65060,190,1,2198,1930,
650716,0,190,1,2701,
65081931,16,0,675,1,
6509447,1932,16,0,190,
65101,199,1933,16,0,
6511190,1,2459,946,1,
65121958,1934,16,0,190,
65131,2462,953,1,1657,
6514958,1,2464,963,1,
6515459,1935,16,0,190,
65161,462,1936,16,0,
6517190,1,2471,1937,17,
65181938,15,1939,4,30,
651937,0,86,0,101,
65200,99,0,116,0,
6521111,0,114,0,65,
65220,114,0,103,0,
652369,0,118,0,101,
65240,110,0,116,0,
65251,-1,1,5,1940,
652620,1941,4,32,86,
65270,101,0,99,0,
6528116,0,111,0,114,
65290,65,0,114,0,
6530103,0,69,0,118,
65310,101,0,110,0,
6532116,0,95,0,51,
65330,1,353,1,3,
65341,2,1,1,1942,
653522,1,200,1,2472,
65361943,17,1944,15,1939,
65371,-1,1,5,1945,
653820,1946,4,32,86,
65390,101,0,99,0,
6540116,0,111,0,114,
65410,65,0,114,0,
6542103,0,69,0,118,
65430,101,0,110,0,
6544116,0,95,0,50,
65450,1,352,1,3,
65461,2,1,1,1947,
654722,1,199,1,2473,
65481948,17,1949,15,1939,
65491,-1,1,5,1950,
655020,1951,4,32,86,
65510,101,0,99,0,
6552116,0,111,0,114,
65530,65,0,114,0, 66400,65,0,114,0,
6554103,0,69,0,118, 6641103,0,69,0,118,
65550,101,0,110,0, 66420,101,0,110,0,
6556116,0,95,0,49, 6643116,0,95,0,52,
65570,1,351,1,3, 66440,1,342,1,3,
65581,2,1,1,1952, 66451,2,1,1,1923,
655922,1,198,1,2474, 664622,1,185,1,62,
65601953,17,1954,15,1853, 66471924,16,0,213,1,
65611,-1,1,5,1955, 664863,1925,16,0,177,
656220,1956,4,28,73, 66491,2495,1926,17,1927,
65630,110,0,116,0, 665015,1928,4,12,37,
656465,0,114,0,103,
65650,69,0,118,0, 66510,69,0,118,0,
6566101,0,110,0,116, 6652101,0,110,0,116,
65670,95,0,49,0, 66530,1,-1,1,5,
656848,0,1,350,1, 66541929,20,1930,4,16,
65693,1,2,1,1, 665569,0,118,0,101,
65701957,22,1,197,1, 66560,110,0,116,0,
65712475,1958,17,1959,15, 665795,0,49,0,48,
65721853,1,-1,1,5, 66580,1,338,1,3,
65731960,20,1961,4,26, 66591,2,1,1,1931,
657473,0,110,0,116, 666022,1,181,1,2740,
65750,65,0,114,0, 66611932,16,0,198,1,
6576103,0,69,0,118, 66622075,1933,16,0,198,
65770,101,0,110,0, 66631,1574,885,1,1479,
6578116,0,95,0,57, 66641934,16,0,198,1,
65790,1,349,1,3, 666571,1935,16,0,198,
65801,2,1,1,1962, 66661,1658,1936,16,0,
658122,1,196,1,2476, 6667753,1,1833,1937,16,
65821963,17,1964,15,1853, 66680,304,1,1834,1938,
65831,-1,1,5,1965, 666916,0,198,1,2337,
658420,1966,4,26,73, 66701939,16,0,198,1,
667179,1940,16,0,198,
66721,1335,1941,16,0,
6673198,1,322,1942,16,
66740,198,1,76,1943,
667516,0,198,1,85,
66761944,16,0,198,1,
667789,1945,16,0,198,
66781,346,1946,16,0,
6679198,1,97,1947,16,
66800,198,1,2106,1948,
668116,0,198,1,102,
66821949,16,0,198,1,
66831860,907,1,2458,961,
66841,2364,913,1,1990,
66851950,16,0,198,1,
6686112,1951,16,0,198,
66871,1117,1952,16,0,
6688198,1,1873,921,1,
66891875,1953,16,0,412,
66901,1876,1954,16,0,
6691198,1,2552,1955,16,
66920,513,1,124,1956,
669316,0,198,1,2478,
66941957,17,1958,15,1906,
66951,-1,1,5,1959,
669620,1960,4,26,73,
65850,110,0,116,0, 66970,110,0,116,0,
658665,0,114,0,103, 669865,0,114,0,103,
65870,69,0,118,0, 66990,69,0,118,0,
6588101,0,110,0,116, 6700101,0,110,0,116,
65890,95,0,56,0, 67010,95,0,55,0,
65901,348,1,3,1, 67021,355,1,3,1,
65912,1,1,1967,22, 67032,1,1,1961,22,
65921,195,1,2477,1968, 67041,198,1,2136,928,
659317,1969,15,1853,1, 67051,381,1962,16,0,
6594-1,1,5,1970,20, 6706198,1,525,1963,16,
65951971,4,26,73,0, 67070,198,1,2723,1964,
6596110,0,116,0,65, 670816,0,715,1,137,
65970,114,0,103,0, 67091965,16,0,198,1,
659869,0,118,0,101, 67101901,1966,16,0,198,
65990,110,0,116,0, 67111,1153,1967,16,0,
660095,0,55,0,1, 6712198,1,151,1968,16,
6601347,1,3,1,2, 67130,198,1,1407,1969,
66021,1,1972,22,1, 671416,0,198,1,1659,
6603194,1,2227,972,1, 67151970,16,0,198,1,
66042479,1973,17,1974,15, 67162413,1971,16,0,198,
66051853,1,-1,1,5, 67171,406,1972,16,0,
66061975,20,1976,4,26, 6718198,1,1371,1973,16,
67190,198,1,2105,900,
67201,166,1974,16,0,
6721198,1,2045,865,1,
67221622,1975,16,0,198,
67231,1931,946,1,1932,
67241976,16,0,512,1,
67251933,1977,16,0,198,
67261,431,1978,16,0,
6727198,1,1585,1979,16,
67280,198,1,182,1980,
672916,0,198,1,1189,
67301981,16,0,198,1,
67311443,1982,16,0,198,
67321,1695,1983,16,0,
6733198,1,2198,1984,16,
67340,198,1,447,1985,
673516,0,198,1,199,
67361986,16,0,198,1,
67372459,967,1,1958,1987,
673816,0,198,1,2462,
6739974,1,1657,979,1,
67402464,984,1,459,1988,
674116,0,198,1,462,
67421989,16,0,198,1,
67432471,1990,17,1991,15,
67441992,4,36,37,0,
660773,0,110,0,116, 674573,0,110,0,116,
67460,82,0,111,0,
6747116,0,82,0,111,
67480,116,0,65,0,
6749114,0,103,0,69,
67500,118,0,101,0,
6751110,0,116,0,1,
6752-1,1,5,1993,20,
67531994,4,38,73,0,
6754110,0,116,0,82,
67550,111,0,116,0,
675682,0,111,0,116,
66080,65,0,114,0, 67570,65,0,114,0,
6609103,0,69,0,118, 6758103,0,69,0,118,
66100,101,0,110,0, 67590,101,0,110,0,
6611116,0,95,0,53, 6760116,0,95,0,49,
66120,1,345,1,3, 67610,1,362,1,3,
66131,2,1,1,1977, 67621,2,1,1,1995,
661422,1,192,1,1225, 676322,1,205,1,2472,
66151978,16,0,190,1, 67641996,17,1997,15,1998,
66162481,1979,17,1980,15, 67654,30,37,0,86,
66171853,1,-1,1,5, 67660,101,0,99,0,
66181981,20,1982,4,26, 6767116,0,111,0,114,
661973,0,110,0,116,
66200,65,0,114,0, 67680,65,0,114,0,
6621103,0,69,0,118, 6769103,0,69,0,118,
66220,101,0,110,0, 67700,101,0,110,0,
6623116,0,95,0,51, 6771116,0,1,-1,1,
66240,1,343,1,3, 67725,1999,20,2000,4,
66251,2,1,1,1983, 677332,86,0,101,0,
662622,1,190,1,2482, 677499,0,116,0,111,
66271984,17,1985,15,1853, 67750,114,0,65,0,
66281,-1,1,5,1986, 6776114,0,103,0,69,
662920,1987,4,26,73, 67770,118,0,101,0,
66300,110,0,116,0, 6778110,0,116,0,95,
663165,0,114,0,103, 67790,51,0,1,361,
66320,69,0,118,0, 67801,3,1,2,1,
6633101,0,110,0,116, 67811,2001,22,1,204,
66340,95,0,50,0, 67821,2473,2002,17,2003,
66351,342,1,3,1, 678315,1998,1,-1,1,
66362,1,1,1988,22, 67845,2004,20,2005,4,
66371,189,1,2483,1989, 678532,86,0,101,0,
663817,1990,15,1853,1, 678699,0,116,0,111,
6639-1,1,5,1991,20, 67870,114,0,65,0,
66401992,4,26,73,0, 6788114,0,103,0,69,
67890,118,0,101,0,
6790110,0,116,0,95,
67910,50,0,1,360,
67921,3,1,2,1,
67931,2006,22,1,203,
67941,2474,2007,17,2008,
679515,1998,1,-1,1,
67965,2009,20,2010,4,
679732,86,0,101,0,
679899,0,116,0,111,
67990,114,0,65,0,
6800114,0,103,0,69,
68010,118,0,101,0,
6802110,0,116,0,95,
68030,49,0,1,359,
68041,3,1,2,1,
68051,2011,22,1,202,
68061,2475,2012,17,2013,
680715,1906,1,-1,1,
68085,2014,20,2015,4,
680928,73,0,110,0,
6810116,0,65,0,114,
68110,103,0,69,0,
6812118,0,101,0,110,
68130,116,0,95,0,
681449,0,48,0,1,
6815358,1,3,1,2,
68161,1,2016,22,1,
6817201,1,2476,2017,17,
68182018,15,1906,1,-1,
68191,5,2019,20,2020,
68204,26,73,0,110,
68210,116,0,65,0,
6822114,0,103,0,69,
68230,118,0,101,0,
6824110,0,116,0,95,
68250,57,0,1,357,
68261,3,1,2,1,
68271,2021,22,1,200,
68281,2477,2022,17,2023,
682915,1906,1,-1,1,
68305,2024,20,2025,4,
683126,73,0,110,0,
6832116,0,65,0,114,
68330,103,0,69,0,
6834118,0,101,0,110,
68350,116,0,95,0,
683656,0,1,356,1,
68373,1,2,1,1,
68382026,22,1,199,1,
68392227,993,1,2479,2027,
684017,2028,15,1906,1,
6841-1,1,5,2029,20,
68422030,4,26,73,0,
6641110,0,116,0,65, 6843110,0,116,0,65,
66420,114,0,103,0, 68440,114,0,103,0,
664369,0,118,0,101, 684569,0,118,0,101,
66440,110,0,116,0, 68460,110,0,116,0,
664595,0,49,0,1, 684795,0,54,0,1,
6646341,1,3,1,2, 6848354,1,3,1,2,
66471,1,1993,22,1, 68491,1,2031,22,1,
6648188,1,1731,1994,16, 6850197,1,1225,2032,16,
66490,190,1,2485,1995, 68510,198,1,2481,2033,
665017,1996,15,1860,1, 685217,2034,15,1906,1,
6651-1,1,5,1997,20, 6853-1,1,5,2035,20,
66521998,4,26,75,0, 68542036,4,26,73,0,
6653101,0,121,0,65, 6855110,0,116,0,65,
66540,114,0,103,0, 68560,114,0,103,0,
665569,0,118,0,101, 685769,0,118,0,101,
66560,110,0,116,0, 68580,110,0,116,0,
665795,0,49,0,1, 685995,0,52,0,1,
6658339,1,3,1,2, 6860352,1,3,1,2,
66591,1,1999,22,1, 68611,1,2037,22,1,
6660186,1,2486,2000,17, 6862195,1,2482,2038,17,
66612001,15,1868,1,-1, 68632039,15,1906,1,-1,
66621,5,2002,20,2003, 68641,5,2040,20,2041,
66634,28,86,0,111, 68654,26,73,0,110,
66640,105,0,100,0, 68660,116,0,65,0,
666565,0,114,0,103, 6867114,0,103,0,69,
66660,69,0,118,0, 68680,118,0,101,0,
6667101,0,110,0,116, 6869110,0,116,0,95,
66680,95,0,56,0, 68700,51,0,1,351,
66691,338,1,3,1, 68711,3,1,2,1,
66702,1,1,2004,22, 68721,2042,22,1,194,
66711,185,1,2487,2005, 68731,2483,2043,17,2044,
667217,2006,15,1868,1, 687415,1906,1,-1,1,
6673-1,1,5,2007,20, 68755,2045,20,2046,4,
66742008,4,28,86,0, 687626,73,0,110,0,
6675111,0,105,0,100, 6877116,0,65,0,114,
66760,65,0,114,0,
6677103,0,69,0,118,
66780,101,0,110,0,
6679116,0,95,0,55,
66800,1,337,1,3,
66811,2,1,1,2009,
668222,1,184,1,2488,
66832010,17,2011,15,1868,
66841,-1,1,5,2012,
668520,2013,4,28,86,
66860,111,0,105,0,
6687100,0,65,0,114,
66880,103,0,69,0, 68780,103,0,69,0,
6689118,0,101,0,110, 6879118,0,101,0,110,
66900,116,0,95,0, 68800,116,0,95,0,
669154,0,1,336,1, 688150,0,1,350,1,
66923,1,2,1,1, 68823,1,2,1,1,
66932014,22,1,183,1, 68832047,22,1,193,1,
66942489,2015,17,2016,15, 68841731,2048,16,0,198,
66951868,1,-1,1,5, 68851,2485,2049,17,2050,
66962017,20,2018,4,28, 688615,2051,4,24,37,
669786,0,111,0,105, 68870,75,0,101,0,
66980,100,0,65,0, 6888121,0,65,0,114,
68890,103,0,69,0,
6890118,0,101,0,110,
68910,116,0,1,-1,
68921,5,2052,20,2053,
68934,26,75,0,101,
68940,121,0,65,0,
6699114,0,103,0,69, 6895114,0,103,0,69,
67000,118,0,101,0, 68960,118,0,101,0,
6701110,0,116,0,95, 6897110,0,116,0,95,
67020,53,0,1,335, 68980,50,0,1,348,
67031,3,1,2,1, 68991,3,1,2,1,
67041,2019,22,1,182, 69001,2054,22,1,191,
67051,2490,2020,17,2021, 69011,2486,2055,17,2056,
670615,1868,1,-1,1, 690215,2051,1,-1,1,
67075,2022,20,2023,4, 69035,2057,20,2058,4,
670828,86,0,111,0, 690426,75,0,101,0,
6709105,0,100,0,65, 6905121,0,65,0,114,
67100,114,0,103,0, 69060,103,0,69,0,
671169,0,118,0,101, 6907118,0,101,0,110,
67120,110,0,116,0, 69080,116,0,95,0,
671395,0,52,0,1, 690949,0,1,347,1,
6714334,1,3,1,2, 69103,1,2,1,1,
67151,1,2024,22,1, 69112059,22,1,190,1,
6716181,1,1989,980,1, 69122487,2060,17,2061,15,
67172492,2025,17,2026,15, 69131920,1,-1,1,5,
67181868,1,-1,1,5, 69142062,20,2063,4,28,
67192027,20,2028,4,28,
672086,0,111,0,105, 691586,0,111,0,105,
67210,100,0,65,0, 69160,100,0,65,0,
6722114,0,103,0,69, 6917114,0,103,0,69,
67230,118,0,101,0, 69180,118,0,101,0,
6724110,0,116,0,95, 6919110,0,116,0,95,
67250,50,0,1,332, 69200,56,0,1,346,
67261,3,1,2,1, 69211,3,1,2,1,
67271,2029,22,1,179, 69221,2064,22,1,189,
67281,2493,2030,17,2031, 69231,2488,2065,17,2066,
672915,1868,1,-1,1, 692415,1920,1,-1,1,
67305,2032,20,2033,4, 69255,2067,20,2068,4,
673128,86,0,111,0, 692628,86,0,111,0,
6732105,0,100,0,65, 6927105,0,100,0,65,
67330,114,0,103,0, 69280,114,0,103,0,
673469,0,118,0,101, 692969,0,118,0,101,
67350,110,0,116,0, 69300,110,0,116,0,
673695,0,49,0,1, 693195,0,55,0,1,
6737331,1,3,1,2, 6932345,1,3,1,2,
67381,1,2034,22,1, 69331,1,2069,22,1,
6739178,1,2494,2035,17, 6934188,1,2489,2070,17,
67402036,15,1876,1,-1, 69352071,15,1920,1,-1,
67411,5,2037,20,2038, 69361,5,2072,20,2073,
67424,16,69,0,118, 69374,28,86,0,111,
69380,105,0,100,0,
693965,0,114,0,103,
69400,69,0,118,0,
6941101,0,110,0,116,
69420,95,0,54,0,
69431,344,1,3,1,
69442,1,1,2074,22,
69451,187,1,2490,2075,
694617,2076,15,1920,1,
6947-1,1,5,2077,20,
69482078,4,28,86,0,
6949111,0,105,0,100,
69500,65,0,114,0,
6951103,0,69,0,118,
67430,101,0,110,0, 69520,101,0,110,0,
6744116,0,95,0,49, 6953116,0,95,0,53,
67450,49,0,1,330, 69540,1,343,1,3,
67461,3,1,2,1, 69551,2,1,1,2079,
67471,2039,22,1,177, 695622,1,186,1,1989,
67481,236,2040,16,0, 69571002,1,2492,2080,17,
6749190,1,2496,2041,17, 69582081,15,1920,1,-1,
67502042,15,1876,1,-1, 69591,5,2082,20,2083,
67511,5,2043,20,2044, 69604,28,86,0,111,
67524,14,69,0,118, 69610,105,0,100,0,
696265,0,114,0,103,
69630,69,0,118,0,
6964101,0,110,0,116,
69650,95,0,51,0,
69661,341,1,3,1,
69672,1,1,2084,22,
69681,184,1,2493,2085,
696917,2086,15,1920,1,
6970-1,1,5,2087,20,
69712088,4,28,86,0,
6972111,0,105,0,100,
69730,65,0,114,0,
6974103,0,69,0,118,
67530,101,0,110,0, 69750,101,0,110,0,
6754116,0,95,0,57, 6976116,0,95,0,50,
67550,1,328,1,3, 69770,1,340,1,3,
67561,2,1,1,2045, 69781,2,1,1,2089,
675722,1,175,1,2497, 697922,1,183,1,2494,
67582046,17,2047,15,1876, 69802090,17,2091,15,1920,
67591,-1,1,5,2048, 69811,-1,1,5,2092,
676020,2049,4,14,69, 698220,2093,4,28,86,
67610,118,0,101,0, 69830,111,0,105,0,
6762110,0,116,0,95, 6984100,0,65,0,114,
67630,56,0,1,327, 69850,103,0,69,0,
67641,3,1,2,1, 6986118,0,101,0,110,
67651,2050,22,1,174, 69870,116,0,95,0,
67661,2498,2051,17,2052, 698849,0,1,339,1,
676715,1876,1,-1,1, 69893,1,2,1,1,
67685,2053,20,2054,4, 69902094,22,1,182,1,
6991236,2095,16,0,198,
69921,2496,2096,17,2097,
699315,1928,1,-1,1,
69945,2098,20,2099,4,
676914,69,0,118,0, 699514,69,0,118,0,
6770101,0,110,0,116, 6996101,0,110,0,116,
67710,95,0,55,0, 69970,95,0,57,0,
67721,326,1,3,1, 69981,337,1,3,1,
67732,1,1,2055,22, 69992,1,1,2100,22,
67741,173,1,2499,2056, 70001,180,1,2497,2101,
677517,2057,15,1876,1, 700117,2102,15,1928,1,
6776-1,1,5,2058,20, 7002-1,1,5,2103,20,
67772059,4,14,69,0, 70032104,4,14,69,0,
6778118,0,101,0,110, 7004118,0,101,0,110,
67790,116,0,95,0, 70050,116,0,95,0,
678054,0,1,325,1, 700656,0,1,336,1,
67813,1,2,1,1, 70073,1,2,1,1,
67822060,22,1,172,1, 70082105,22,1,179,1,
67832500,2061,17,2062,15, 70092498,2106,17,2107,15,
67841876,1,-1,1,5, 70101928,1,-1,1,5,
67852063,20,2064,4,14, 70112108,20,2109,4,14,
678669,0,118,0,101, 701269,0,118,0,101,
67870,110,0,116,0, 70130,110,0,116,0,
678895,0,53,0,1, 701495,0,55,0,1,
6789324,1,3,1,2, 7015335,1,3,1,2,
67901,1,2065,22,1, 70161,1,2110,22,1,
6791171,1,2501,2066,17, 7017178,1,2499,2111,17,
67922067,15,1876,1,-1, 70182112,15,1928,1,-1,
67931,5,2068,20,2069, 70191,5,2113,20,2114,
67944,14,69,0,118, 70204,14,69,0,118,
67950,101,0,110,0, 70210,101,0,110,0,
6796116,0,95,0,52, 7022116,0,95,0,54,
67970,1,323,1,3, 70230,1,334,1,3,
67981,2,1,1,2070, 70241,2,1,1,2115,
679922,1,170,1,2502, 702522,1,177,1,2500,
68002071,17,2072,15,1876, 70262116,17,2117,15,1928,
68011,-1,1,5,2073, 70271,-1,1,5,2118,
680220,2074,4,14,69, 702820,2119,4,14,69,
68030,118,0,101,0, 70290,118,0,101,0,
6804110,0,116,0,95, 7030110,0,116,0,95,
68050,51,0,1,322, 70310,53,0,1,333,
68061,3,1,2,1, 70321,3,1,2,1,
68071,2075,22,1,169, 70331,2120,22,1,176,
68081,2503,2076,17,2077, 70341,2501,2121,17,2122,
680915,1876,1,-1,1, 703515,1928,1,-1,1,
68105,2078,20,2079,4, 70365,2123,20,2124,4,
681114,69,0,118,0, 703714,69,0,118,0,
6812101,0,110,0,116, 7038101,0,110,0,116,
68130,95,0,50,0, 70390,95,0,52,0,
68141,321,1,3,1, 70401,332,1,3,1,
68152,1,1,2080,22, 70412,1,1,2125,22,
68161,168,1,2504,2081, 70421,175,1,2502,2126,
681717,2082,15,1876,1, 704317,2127,15,1928,1,
6818-1,1,5,2083,20, 7044-1,1,5,2128,20,
68192084,4,14,69,0, 70452129,4,14,69,0,
6820118,0,101,0,110, 7046118,0,101,0,110,
68210,116,0,95,0, 70470,116,0,95,0,
682249,0,1,320,1, 704851,0,1,331,1,
68233,1,2,1,1, 70493,1,2,1,1,
68242085,22,1,167,1, 70502130,22,1,174,1,
68252505,2086,16,0,450, 70512503,2131,17,2132,15,
68261,217,2087,16,0, 70521928,1,-1,1,5,
6827190,1,1756,2088,16, 70532133,20,2134,4,14,
68280,190,1,17,2089, 705469,0,118,0,101,
682919,157,1,17,2090, 70550,110,0,116,0,
68305,127,1,2510,2091, 705695,0,50,0,1,
683116,0,634,1,1, 7057330,1,3,1,2,
68322092,17,2093,15,2094, 70581,1,2135,22,1,
68334,18,37,0,84, 7059173,1,2504,2136,17,
68340,121,0,112,0, 70602137,15,1928,1,-1,
6835101,0,110,0,97, 70611,5,2138,20,2139,
68360,109,0,101,0, 70624,14,69,0,118,
68371,-1,1,5,2095, 70630,101,0,110,0,
683820,2096,4,20,84, 7064116,0,95,0,49,
68390,121,0,112,0, 70650,1,329,1,3,
6840101,0,110,0,97, 70661,2,1,1,2140,
68410,109,0,101,0, 706722,1,172,1,2505,
684295,0,55,0,1, 70682141,16,0,445,1,
6843319,1,3,1,2, 7069217,2142,16,0,198,
68441,1,2097,22,1, 70701,1756,2143,16,0,
6845166,1,2,2098,17, 7071198,1,17,2144,19,
68462099,15,2094,1,-1, 7072164,1,17,2145,5,
68471,5,2100,20,2101, 7073130,1,1,2146,17,
70742147,15,2148,4,18,
707537,0,84,0,121,
70760,112,0,101,0,
7077110,0,97,0,109,
70780,101,0,1,-1,
70791,5,2149,20,2150,
68484,20,84,0,121, 70804,20,84,0,121,
68490,112,0,101,0, 70810,112,0,101,0,
6850110,0,97,0,109, 7082110,0,97,0,109,
68510,101,0,95,0, 70830,101,0,95,0,
685254,0,1,318,1, 708455,0,1,328,1,
68533,1,2,1,1, 70853,1,2,1,1,
68542102,22,1,165,1, 70862151,22,1,171,1,
68553,2103,17,2104,15, 70872,2152,17,2153,15,
68562094,1,-1,1,5, 70882148,1,-1,1,5,
68572105,20,2106,4,20, 70892154,20,2155,4,20,
685884,0,121,0,112, 709084,0,121,0,112,
68590,101,0,110,0, 70910,101,0,110,0,
686097,0,109,0,101, 709297,0,109,0,101,
68610,95,0,53,0, 70930,95,0,54,0,
68621,317,1,3,1, 70941,327,1,3,1,
68632,1,1,2107,22, 70952,1,1,2156,22,
68641,164,1,4,2108, 70961,170,1,3,2157,
686517,2109,15,2094,1, 709717,2158,15,2148,1,
6866-1,1,5,2110,20, 7098-1,1,5,2159,20,
68672111,4,20,84,0, 70992160,4,20,84,0,
6868121,0,112,0,101, 7100121,0,112,0,101,
68690,110,0,97,0, 71010,110,0,97,0,
6870109,0,101,0,95, 7102109,0,101,0,95,
68710,52,0,1,316, 71030,53,0,1,326,
68721,3,1,2,1, 71041,3,1,2,1,
68731,2112,22,1,163, 71051,2161,22,1,169,
68741,5,2113,17,2114, 71061,4,2162,17,2163,
687515,2094,1,-1,1, 710715,2148,1,-1,1,
68765,2115,20,2116,4, 71085,2164,20,2165,4,
687720,84,0,121,0, 710920,84,0,121,0,
6878112,0,101,0,110, 7110112,0,101,0,110,
68790,97,0,109,0, 71110,97,0,109,0,
6880101,0,95,0,51, 7112101,0,95,0,52,
68810,1,315,1,3, 71130,1,325,1,3,
68821,2,1,1,2117, 71141,2,1,1,2166,
688322,1,162,1,6, 711522,1,168,1,5,
68842118,17,2119,15,2094, 71162167,17,2168,15,2148,
68851,-1,1,5,2120, 71171,-1,1,5,2169,
688620,2121,4,20,84, 711820,2170,4,20,84,
68870,121,0,112,0, 71190,121,0,112,0,
6888101,0,110,0,97, 7120101,0,110,0,97,
68890,109,0,101,0, 71210,109,0,101,0,
689095,0,50,0,1, 712295,0,51,0,1,
6891314,1,3,1,2, 7123324,1,3,1,2,
68921,1,2122,22,1, 71241,1,2171,22,1,
6893161,1,7,2123,17, 7125167,1,6,2172,17,
68942124,15,2094,1,-1, 71262173,15,2148,1,-1,
68951,5,2125,20,2126, 71271,5,2174,20,2175,
68964,20,84,0,121, 71284,20,84,0,121,
68970,112,0,101,0, 71290,112,0,101,0,
6898110,0,97,0,109, 7130110,0,97,0,109,
68990,101,0,95,0, 71310,101,0,95,0,
690049,0,1,313,1, 713250,0,1,323,1,
69013,1,2,1,1, 71333,1,2,1,1,
69022127,22,1,160,1, 71342176,22,1,166,1,
69032518,2128,17,2129,15, 71357,2177,17,2178,15,
69042130,4,54,37,0, 71362148,1,-1,1,5,
690573,0,110,0,116, 71372179,20,2180,4,20,
713884,0,121,0,112,
71390,101,0,110,0,
714097,0,109,0,101,
71410,95,0,49,0,
71421,322,1,3,1,
71432,1,1,2181,22,
71441,165,1,1514,1194,
71451,9,1199,1,10,
71461819,1,262,1205,1,
71471267,1211,1,2524,2182,
714817,2183,15,2184,4,
714936,37,0,86,0,
7150101,0,99,0,116,
71510,111,0,114,0,
715268,0,101,0,99,
71530,108,0,97,0,
7154114,0,97,0,116,
71550,105,0,111,0,
7156110,0,1,-1,1,
71575,2185,20,2186,4,
715838,86,0,101,0,
715999,0,116,0,111,
71600,114,0,68,0,
7161101,0,99,0,108,
71620,97,0,114,0,
716397,0,116,0,105,
71640,111,0,110,0,
716595,0,49,0,1,
7166201,1,3,1,3,
71671,2,2187,22,1,
716843,1,2525,2188,17,
71692189,15,2190,4,60,
717037,0,86,0,101,
71710,99,0,116,0,
7172111,0,114,0,65,
71730,114,0,103,0,
7174117,0,109,0,101,
71750,110,0,116,0,
717668,0,101,0,99,
71770,108,0,97,0,
7178114,0,97,0,116,
71790,105,0,111,0,
7180110,0,76,0,105,
71810,115,0,116,0,
71821,-1,1,5,2191,
718320,2192,4,62,86,
71840,101,0,99,0,
7185116,0,111,0,114,
69060,65,0,114,0, 71860,65,0,114,0,
6907103,0,117,0,109, 7187103,0,117,0,109,
69080,101,0,110,0, 71880,101,0,110,0,
@@ -6912,42 +7192,17 @@ public yyLSLSyntax
69120,116,0,105,0, 71920,116,0,105,0,
6913111,0,110,0,76, 7193111,0,110,0,76,
69140,105,0,115,0, 71940,105,0,115,0,
6915116,0,1,-1,1, 7195116,0,95,0,49,
69165,2131,20,2132,4, 71960,1,196,1,3,
691756,73,0,110,0, 71971,2,1,1,2193,
6918116,0,65,0,114, 719822,1,38,1,1773,
69190,103,0,117,0, 71992194,16,0,252,1,
6920109,0,101,0,110, 720019,1233,1,20,2195,
69210,116,0,68,0, 720116,0,162,1,2281,
6922101,0,99,0,108, 72021240,1,2533,2196,17,
69230,97,0,114,0, 72032197,15,2198,4,54,
692497,0,116,0,105, 720437,0,73,0,110,
69250,111,0,110,0, 72050,116,0,65,0,
692676,0,105,0,115,
69270,116,0,95,0,
692849,0,1,188,1,
69293,1,2,1,1,
69302133,22,1,34,1,
69319,1177,1,10,1773,
69321,262,1183,1,1267,
69331189,1,1521,1194,1,
69341773,2134,16,0,242,
69351,2527,2135,17,2136,
693615,2137,4,54,37,
69370,75,0,101,0,
6938121,0,65,0,114,
69390,103,0,117,0,
6940109,0,101,0,110,
69410,116,0,68,0,
6942101,0,99,0,108,
69430,97,0,114,0,
694497,0,116,0,105,
69450,111,0,110,0,
694676,0,105,0,115,
69470,116,0,1,-1,
69481,5,2138,20,2139,
69494,56,75,0,101,
69500,121,0,65,0,
6951114,0,103,0,117, 7206114,0,103,0,117,
69520,109,0,101,0, 72070,109,0,101,0,
6953110,0,116,0,68, 7208110,0,116,0,68,
@@ -6956,147 +7211,89 @@ public yyLSLSyntax
69560,97,0,116,0, 72110,97,0,116,0,
6957105,0,111,0,110, 7212105,0,111,0,110,
69580,76,0,105,0, 72130,76,0,105,0,
6959115,0,116,0,95, 7214115,0,116,0,1,
69600,49,0,1,187, 7215-1,1,5,2199,20,
69611,3,1,2,1, 72162200,4,56,73,0,
69621,2140,22,1,33, 7217110,0,116,0,65,
69631,2528,2141,16,0, 72180,114,0,103,0,
6964486,1,19,1211,1, 7219117,0,109,0,101,
696520,2142,16,0,155, 72200,110,0,116,0,
69661,2281,1218,1,2533, 722168,0,101,0,99,
69672143,16,0,492,1, 72220,108,0,97,0,
69682538,1779,1,30,1781, 7223114,0,97,0,116,
69691,1002,1657,1,283, 72240,105,0,111,0,
69701236,1,2547,2144,16, 7225110,0,76,0,105,
69710,607,1,1010,2145, 72260,115,0,116,0,
697216,0,648,1,40, 722795,0,49,0,1,
69731241,1,41,1787,1, 7228195,1,3,1,2,
697442,1791,1,44,1247, 72291,1,2201,22,1,
69751,1260,1160,1,47, 723037,1,2534,2202,16,
69761248,1,48,1254,1, 72310,488,1,30,1825,
697749,1260,1,50,1265, 72321,2541,2203,17,2204,
69781,51,1270,1,305, 723315,2205,4,30,37,
69791275,1,1514,1172,1, 72340,75,0,101,0,
6980525,1280,1,61,2146, 7235121,0,68,0,101,
698116,0,201,1,63, 72360,99,0,108,0,
69821286,1,66,1292,1, 723797,0,114,0,97,
698367,1297,1,68,1302, 72380,116,0,105,0,
69841,69,1307,1,70, 7239111,0,110,0,1,
69851312,1,73,2147,16, 7240-1,1,5,2206,20,
69860,211,1,74,1317, 72412207,4,32,75,0,
69871,1013,1322,1,2335, 7242101,0,121,0,68,
69882148,16,0,244,1,
69891332,1327,1,1048,1408,
69901,82,1344,1,1840,
69912149,16,0,316,1,
69921341,1361,1,2517,2150,
699317,2151,15,2152,4,
699430,37,0,73,0,
6995110,0,116,0,68,
69960,101,0,99,0, 72430,101,0,99,0,
6997108,0,97,0,114, 7244108,0,97,0,114,
69980,97,0,116,0, 72450,97,0,116,0,
6999105,0,111,0,110, 7246105,0,111,0,110,
70000,1,-1,1,5, 72470,95,0,49,0,
70012153,20,2154,4,32, 72481,199,1,3,1,
72493,1,2,2208,22,
72501,41,1,283,1258,
72511,2543,2209,16,0,
7252503,1,2548,2210,16,
72530,633,1,1010,2211,
725416,0,668,1,40,
72551263,1,41,1830,1,
725642,1834,1,2553,1840,
72571,44,1269,1,1260,
72581182,1,47,1270,1,
72591303,1394,1,49,1282,
72601,50,1287,1,48,
72611276,1,2562,2212,16,
72620,646,1,305,1297,
72631,51,1292,1,2733,
72642213,16,0,169,1,
726561,2214,16,0,205,
72661,63,1308,1,1521,
72671216,1,66,1315,1,
726867,1320,1,68,1325,
72691,69,1330,1,70,
72701335,1,73,2215,16,
72710,215,1,74,1340,
72721,1013,1345,1,2335,
72732216,16,0,254,1,
72741332,1350,1,1048,1431,
72751,82,1367,1,1840,
72762217,16,0,318,1,
72772516,2218,17,2219,15,
72782220,4,66,37,0,
700273,0,110,0,116, 727973,0,110,0,116,
70030,68,0,101,0, 72800,82,0,111,0,
700499,0,108,0,97, 7281116,0,82,0,111,
70050,114,0,97,0, 72820,116,0,65,0,
7006116,0,105,0,111, 7283114,0,103,0,117,
70070,110,0,95,0, 72840,109,0,101,0,
700849,0,1,192,1, 7285110,0,116,0,68,
70093,1,3,1,2,
70102155,22,1,38,1,
70112519,2156,16,0,646,
70121,1303,1371,1,1096,
70131376,1,93,1382,1,
70141550,1387,1,2526,2157,
701517,2158,15,2159,4,
701630,37,0,75,0,
7017101,0,121,0,68,
70180,101,0,99,0, 72860,101,0,99,0,
7019108,0,97,0,114, 7287108,0,97,0,114,
70200,97,0,116,0, 72880,97,0,116,0,
7021105,0,111,0,110, 7289105,0,111,0,110,
70220,1,-1,1,5, 72900,76,0,105,0,
70232160,20,2161,4,32, 7291115,0,116,0,1,
702475,0,101,0,121, 7292-1,1,5,2221,20,
70250,68,0,101,0, 72932222,4,68,73,0,
702699,0,108,0,97, 7294110,0,116,0,82,
70270,114,0,97,0, 72950,111,0,116,0,
7028116,0,105,0,111, 729682,0,111,0,116,
70290,110,0,95,0,
703049,0,1,191,1,
70313,1,3,1,2,
70322162,22,1,37,1,
7033827,1395,1,1011,1166,
70341,107,1402,1,1114,
70351407,1,328,1366,1,
70361871,2163,16,0,326,
70371,1370,1516,1,1478,
70381521,1,118,1419,1,
70391123,1424,1,371,1429,
70401,1377,1435,1,375,
70411440,1,1882,2164,16,
70420,344,1,377,1445,
70431,352,1413,1,379,
70441450,1,380,1455,1,
7045130,1478,1,2074,2165,
704616,0,609,1,373,
70471473,1,1012,2166,16,
70480,650,1,143,1483,
70491,1152,1489,1,1406,
70501494,1,1159,1501,1,
7051157,1506,1,1413,1511,
70521,883,1461,1,1094,
70532167,16,0,724,1,
70541296,1231,1,172,1532,
70551,1665,1537,1,1939,
70562168,16,0,464,1,
70571188,1542,1,1442,1547,
70581,188,1581,1,942,
70591553,1,1195,1559,1,
70602702,1803,1,1449,1564,
70611,1701,1569,1,447,
70621574,1,2711,2169,16,
70630,693,1,205,1587,
70641,2467,1806,1,464,
70651812,1,2197,2170,16,
70660,718,1,1224,1593,
70671,223,1598,1,1730,
70681603,1,476,1608,1,
7069477,1614,1,1231,1619,
70701,479,1624,1,480,
70711629,1,1485,1635,1,
7072459,1817,1,242,1642,
70731,478,1647,1,481,
70741819,1,1001,1652,1,
70752508,2171,17,2172,15,
70762173,4,36,37,0,
707786,0,101,0,99,
70780,116,0,111,0,
7079114,0,68,0,101,
70800,99,0,108,0,
708197,0,114,0,97,
70820,116,0,105,0,
7083111,0,110,0,1,
7084-1,1,5,2174,20,
70852175,4,38,86,0,
7086101,0,99,0,116,
70870,111,0,114,0,
708868,0,101,0,99,
70890,108,0,97,0,
7090114,0,97,0,116,
70910,105,0,111,0,
7092110,0,95,0,49,
70930,1,193,1,3,
70941,3,1,2,2176,
709522,1,39,1,2509,
70962177,17,2178,15,2179,
70974,60,37,0,86,
70980,101,0,99,0,
7099116,0,111,0,114,
71000,65,0,114,0, 72970,65,0,114,0,
7101103,0,117,0,109, 7298103,0,117,0,109,
71020,101,0,110,0, 72990,101,0,110,0,
@@ -7106,11 +7303,23 @@ public yyLSLSyntax
71060,116,0,105,0, 73030,116,0,105,0,
7107111,0,110,0,76, 7304111,0,110,0,76,
71080,105,0,115,0, 73050,105,0,115,0,
7109116,0,1,-1,1, 7306116,0,95,0,49,
71105,2180,20,2181,4, 73070,1,197,1,3,
711162,86,0,101,0, 73081,6,1,5,2223,
711299,0,116,0,111, 730922,1,39,1,2517,
71130,114,0,65,0, 73102224,16,0,463,1,
7311328,1389,1,1094,2225,
731216,0,748,1,1096,
73131399,1,93,1405,1,
73141550,1410,1,525,1302,
73151,2526,2226,16,0,
7316286,1,1002,1679,1,
7317827,1418,1,1011,1188,
73181,107,1425,1,1114,
73191430,1,2542,2227,17,
73202228,15,2229,4,54,
732137,0,75,0,101,
73220,121,0,65,0,
7114114,0,103,0,117, 7323114,0,103,0,117,
71150,109,0,101,0, 73240,109,0,101,0,
7116110,0,116,0,68, 7325110,0,116,0,68,
@@ -7119,2133 +7328,2151 @@ public yyLSLSyntax
71190,97,0,116,0, 73280,97,0,116,0,
7120105,0,111,0,110, 7329105,0,111,0,110,
71210,76,0,105,0, 73300,76,0,105,0,
7122115,0,116,0,95, 7331115,0,116,0,1,
71230,49,0,1,189, 7332-1,1,5,2230,20,
71241,3,1,2,1, 73332231,4,56,75,0,
71251,2182,22,1,35, 7334101,0,121,0,65,
71261,18,2183,19,539, 73350,114,0,103,0,
71271,18,2184,5,84, 7336117,0,109,0,101,
71281,1011,1166,1,1012, 73370,110,0,116,0,
71292185,16,0,537,1, 733868,0,101,0,99,
71301013,1322,1,262,1183, 73390,108,0,97,0,
71311,1267,2186,16,0, 7340114,0,97,0,116,
7132537,1,515,2187,16, 73410,105,0,111,0,
71330,537,1,1521,2188, 7342110,0,76,0,105,
713416,0,537,1,525, 73430,115,0,116,0,
71351280,1,283,1236,1, 734495,0,49,0,1,
71362299,2189,16,0,537, 7345194,1,3,1,2,
71371,42,2190,16,0, 73461,1,2232,22,1,
7138537,1,40,1241,1, 734736,1,1871,2233,16,
713944,1247,1,47,1248, 73480,328,1,1370,1539,
71401,1303,2191,16,0, 73491,1478,1544,1,118,
7141537,1,1555,2192,16, 73501442,1,1123,1447,1,
71420,537,1,50,1265, 7351371,1452,1,1377,1458,
71431,48,1254,1,49, 73521,375,1463,1,1882,
71441260,1,51,1270,1, 73532234,16,0,341,1,
714563,1286,1,305,1275, 7354377,1468,1,352,1436,
71461,66,1292,1,67, 73551,379,1473,1,1341,
71471297,1,68,1302,1, 73561384,1,130,1501,1,
714869,1307,1,70,1312, 73572074,2235,16,0,635,
71491,73,2193,16,0, 73581,373,1496,1,1012,
7150537,1,74,1317,1, 73592236,16,0,670,1,
7151328,1366,1,1048,2194, 7360380,1478,1,143,1506,
715216,0,537,1,82, 73611,1152,1512,1,1406,
71532195,16,0,537,1, 73621517,1,1159,1524,1,
71541840,2196,16,0,537, 7363157,1529,1,1413,1534,
71551,1591,2197,16,0, 73641,883,1484,1,2512,
7156537,1,1341,2198,16, 73651812,1,1296,1253,1,
71570,537,1,1096,1376, 7366172,1555,1,1665,1560,
71581,93,1382,1,352, 73671,1939,2237,16,0,
71591413,1,107,2199,16, 7368458,1,1188,1565,1,
71600,537,1,1114,1407, 73691442,1570,1,188,1604,
71611,118,2200,16,0, 73701,942,1576,1,1195,
7162537,1,1123,2201,16, 73711582,1,1449,1587,1,
71630,537,1,371,1429, 73721701,1592,1,447,1597,
71641,1628,2202,16,0, 73731,205,1609,1,2467,
7165537,1,375,1440,1, 73741850,1,464,1856,1,
71661882,2203,16,0,537, 73752724,1861,1,2197,2238,
71671,377,1445,1,379, 737616,0,742,1,1224,
71681450,1,380,1455,1, 73771614,1,223,1619,1,
7169883,2204,16,0,537, 73781730,1624,1,476,1629,
71701,373,1473,1,130, 73791,477,1635,1,1231,
71712205,16,0,537,1, 73801640,1,479,1645,1,
7172143,2206,16,0,537, 7381480,1650,1,1485,1656,
71731,387,2207,16,0, 73821,459,1863,1,242,
7174537,1,1159,2208,16, 73831664,1,478,1669,1,
71750,537,1,157,2209, 7384481,1865,1,1001,1674,
717616,0,537,1,1413, 73851,2508,1870,1,18,
71772210,16,0,537,1, 73862239,19,541,1,18,
71781665,2211,16,0,537, 73872240,5,84,1,1011,
71791,412,2212,16,0, 73881188,1,1012,2241,16,
7180537,1,1377,2213,16, 73890,539,1,1013,1345,
71810,537,1,172,2214, 73901,262,1205,1,1267,
718216,0,537,1,1939, 73912242,16,0,539,1,
71832215,16,0,537,1, 7392515,2243,16,0,539,
7184437,2216,16,0,537, 73931,1521,2244,16,0,
71851,188,2217,16,0, 7394539,1,525,1302,1,
7186537,1,942,2218,16, 7395283,1258,1,2299,2245,
71870,537,1,1195,2219, 739616,0,539,1,42,
718816,0,537,1,1449, 73972246,16,0,539,1,
71892220,16,0,537,1, 739840,1263,1,44,1269,
71901701,2221,16,0,537, 73991,47,1270,1,1303,
71911,447,1574,1,205, 74002247,16,0,539,1,
71922222,16,0,537,1, 74011555,2248,16,0,539,
7193827,2223,16,0,537, 74021,50,1287,1,48,
71941,2724,2224,16,0, 74031276,1,49,1282,1,
7195537,1,223,2225,16, 740451,1292,1,63,1308,
71960,537,1,476,1608, 74051,305,1297,1,66,
71971,477,1614,1,1231, 74061315,1,67,1320,1,
71982226,16,0,537,1, 740768,1325,1,69,1330,
7199479,1624,1,480,1629, 74081,70,1335,1,73,
72001,1485,2227,16,0, 74092249,16,0,539,1,
7201537,1,1737,2228,16, 741074,1340,1,328,1389,
72020,537,1,242,2229, 74111,1048,2250,16,0,
720316,0,537,1,478, 7412539,1,82,2251,16,
72041647,1,1001,1652,1, 74130,539,1,1840,2252,
72051002,1657,1,19,2230, 741416,0,539,1,1591,
720619,233,1,19,2231, 74152253,16,0,539,1,
72075,176,1,256,2232, 74161341,2254,16,0,539,
720816,0,231,1,1261, 74171,1096,1399,1,93,
72092233,16,0,231,1, 74181405,1,352,1436,1,
72101011,1166,1,1012,2234, 7419107,2255,16,0,539,
721116,0,507,1,2458, 74201,1114,1430,1,118,
7212940,1,262,1183,1, 74212256,16,0,539,1,
72131267,2235,16,0,507, 74221123,2257,16,0,539,
72141,2021,782,1,1521, 74231,371,1452,1,1628,
72152236,16,0,507,1, 74242258,16,0,539,1,
72161775,2237,16,0,231, 7425375,1463,1,1882,2259,
72171,2029,789,1,2030, 742616,0,539,1,377,
7218795,1,2031,800,1, 74271468,1,379,1473,1,
72192032,805,1,2033,810, 7428380,1478,1,883,2260,
72201,277,2238,16,0, 742916,0,539,1,373,
7221231,1,2035,816,1, 74301496,1,130,2261,16,
72222037,821,1,2039,826, 74310,539,1,143,2262,
72231,32,2239,16,0, 743216,0,539,1,387,
7224231,1,2464,963,1, 74332263,16,0,539,1,
72252293,2240,16,0,231, 74341159,2264,16,0,539,
72261,2043,838,1,2045, 74351,157,2265,16,0,
7227843,1,2299,2241,16, 7436539,1,1413,2266,16,
72280,507,1,41,2242, 74370,539,1,1665,2267,
722916,0,231,1,42, 743816,0,539,1,412,
72302243,16,0,507,1, 74392268,16,0,539,1,
723140,1241,1,44,1247, 74401377,2269,16,0,539,
72321,43,2244,16,0, 74411,172,2270,16,0,
7233231,1,1804,2245,16, 7442539,1,1939,2271,16,
72340,231,1,48,1254, 74430,539,1,437,2272,
72351,49,1260,1,47, 744416,0,539,1,188,
72361248,1,51,1270,1, 74452273,16,0,539,1,
723752,2246,16,0,231, 7446942,2274,16,0,539,
72381,50,1265,1,305, 74471,1195,2275,16,0,
72391275,1,1096,1376,1, 7448539,1,1449,2276,16,
72401515,2247,16,0,231, 74490,539,1,1701,2277,
72411,2318,2248,16,0, 745016,0,539,1,447,
7242231,1,283,1236,1, 74511597,1,205,2278,16,
724363,1286,1,66,1292, 74520,539,1,827,2279,
72441,67,1297,1,68, 745316,0,539,1,223,
72451302,1,69,1307,1, 74542280,16,0,539,1,
724670,1312,1,71,2249, 7455476,1629,1,477,1635,
724716,0,231,1,73, 74561,1231,2281,16,0,
72482250,16,0,507,1, 7457539,1,479,1645,1,
724974,1317,1,1013,1322, 7458480,1650,1,1485,2282,
72501,76,2251,16,0, 745916,0,539,1,1737,
7251231,1,1834,2252,16, 74602283,16,0,539,1,
72520,231,1,2337,2253, 74612746,2284,16,0,539,
725316,0,231,1,79, 74621,242,2285,16,0,
72542254,16,0,231,1, 7463539,1,478,1669,1,
72551335,2255,16,0,231, 74641001,1674,1,1002,1679,
72561,299,2256,16,0, 74651,19,2286,19,239,
7257231,1,82,2257,16, 74661,19,2287,5,176,
72580,507,1,1840,2258, 74671,256,2288,16,0,
725916,0,507,1,1297, 7468237,1,1261,2289,16,
72602259,16,0,231,1, 74690,237,1,1011,1188,
726185,2260,16,0,231, 74701,1012,2290,16,0,
72621,1341,2261,16,0, 7471510,1,2458,961,1,
7263507,1,89,2262,16, 7472262,1205,1,1267,2291,
72640,231,1,1303,2263, 747316,0,510,1,2021,
726516,0,507,1,509, 7474804,1,1521,2292,16,
72662264,16,0,231,1, 74750,510,1,1775,2293,
726793,1382,1,322,2265, 747616,0,237,1,2029,
726816,0,231,1,97, 7477811,1,2030,817,1,
72692266,16,0,231,1, 74782031,822,1,2032,827,
72702041,832,1,1555,2267, 74791,2033,832,1,277,
727116,0,507,1,827, 74802294,16,0,237,1,
72722268,16,0,507,1, 74812035,838,1,2037,843,
7273102,2269,16,0,231, 74821,2039,848,1,32,
72741,1860,885,1,1803, 74832295,16,0,237,1,
7275851,1,2364,891,1, 74842464,984,1,2293,2296,
7276107,2270,16,0,507, 748516,0,237,1,2043,
72771,1114,1407,1,112, 7486860,1,2045,865,1,
72782271,16,0,231,1, 74872299,2297,16,0,510,
72791117,2272,16,0,231, 74881,41,2298,16,0,
72801,352,1413,1,1873, 7489237,1,42,2299,16,
7281899,1,118,2273,16, 74900,510,1,40,1263,
72820,507,1,1123,2274, 74911,44,1269,1,43,
728316,0,507,1,371, 74922300,16,0,237,1,
72841429,1,515,2275,16, 74931804,2301,16,0,237,
72850,507,1,1377,2276, 74941,48,1276,1,49,
728616,0,507,1,124, 74951282,1,47,1270,1,
72872277,16,0,231,1, 749651,1292,1,52,2302,
72881882,2278,16,0,507, 749716,0,237,1,50,
72891,377,1445,1,379, 74981287,1,305,1297,1,
72901450,1,380,1455,1, 74991096,1399,1,1515,2303,
7291130,2279,16,0,507, 750016,0,237,1,2318,
72921,346,2280,16,0, 75012304,16,0,237,1,
7293231,1,2075,2281,16, 7502283,1258,1,63,1308,
72940,231,1,373,1473, 75031,66,1315,1,67,
72951,387,2282,16,0, 75041320,1,68,1325,1,
7296507,1,137,2283,16, 750569,1330,1,70,1335,
72970,231,1,143,2284, 75061,71,2305,16,0,
729816,0,507,1,1901, 7507237,1,2746,2306,16,
72992285,16,0,231,1, 75080,510,1,73,2307,
73001048,2286,16,0,507, 750916,0,510,1,74,
73011,1153,2287,16,0, 75101340,1,1013,1345,1,
7302231,1,375,1440,1, 751176,2308,16,0,237,
7303151,2288,16,0,231, 75121,1834,2309,16,0,
73041,1407,2289,16,0, 7513237,1,2337,2310,16,
7305231,1,1659,2290,16, 75140,237,1,79,2311,
73060,231,1,2413,2291, 751516,0,237,1,1335,
75162312,16,0,237,1,
7517299,2313,16,0,237,
75181,82,2314,16,0,
7519510,1,1840,2315,16,
75200,510,1,1297,2316,
752116,0,237,1,85,
75222317,16,0,237,1,
75231341,2318,16,0,510,
75241,89,2319,16,0,
7525237,1,1303,2320,16,
75260,510,1,509,2321,
752716,0,237,1,93,
75281405,1,322,2322,16,
75290,237,1,97,2323,
753016,0,237,1,2041,
7531854,1,1555,2324,16,
75320,510,1,827,2325,
753316,0,510,1,102,
75342326,16,0,237,1,
75351860,907,1,1803,873,
75361,2364,913,1,107,
75372327,16,0,510,1,
75381114,1430,1,112,2328,
753916,0,237,1,1117,
75402329,16,0,237,1,
7541352,1436,1,1873,921,
75421,118,2330,16,0,
7543510,1,1123,2331,16,
75440,510,1,371,1452,
75451,515,2332,16,0,
7546510,1,1377,2333,16,
75470,510,1,124,2334,
754816,0,237,1,1882,
75492335,16,0,510,1,
7550377,1468,1,379,1473,
75511,380,1478,1,130,
75522336,16,0,510,1,
7553346,2337,16,0,237,
75541,2075,2338,16,0,
7555237,1,373,1496,1,
7556387,2339,16,0,510,
75571,137,2340,16,0,
7558237,1,143,2341,16,
75590,510,1,1901,2342,
756016,0,237,1,1048,
75612343,16,0,510,1,
75621153,2344,16,0,237,
75631,375,1463,1,151,
75642345,16,0,237,1,
75651407,2346,16,0,237,
75661,2740,2347,16,0,
7567237,1,2413,2348,16,
75680,237,1,1159,2349,
756916,0,510,1,381,
75702350,16,0,237,1,
7571157,2351,16,0,510,
75721,1413,2352,16,0,
7573510,1,883,2353,16,
75740,510,1,1371,2354,
757516,0,237,1,328,
75761389,1,2105,900,1,
75772106,2355,16,0,237,
75781,166,2356,16,0,
7579237,1,525,2357,16,
75800,237,1,1622,2358,
758116,0,237,1,406,
75822359,16,0,237,1,
75831574,885,1,172,2360,
758416,0,510,1,1931,
7585946,1,412,2361,16,
75860,510,1,1933,2362,
758716,0,237,1,1876,
75882363,16,0,237,1,
7589431,2364,16,0,237,
75901,1585,2365,16,0,
7591237,1,182,2366,16,
75920,237,1,1628,2367,
759316,0,510,1,1189,
75942368,16,0,237,1,
7595437,2369,16,0,510,
75961,1591,2370,16,0,
7597510,1,188,2371,16,
75980,510,1,1695,2372,
759916,0,237,1,2198,
76002373,16,0,237,1,
76011195,2374,16,0,510,
76021,1449,2375,16,0,
7603510,1,1701,2376,16,
76040,510,1,447,2377,
760516,0,237,1,199,
76062378,16,0,237,1,
76072459,967,1,1958,2379,
760816,0,237,1,2462,
7609974,1,1657,979,1,
7610205,2380,16,0,510,
76111,1659,2381,16,0,
7612237,1,459,2382,16,
76130,237,1,462,2383,
761416,0,237,1,1665,
76152384,16,0,510,1,
7616217,2385,16,0,237,
76171,2227,993,1,942,
76182386,16,0,510,1,
76191225,2387,16,0,237,
76201,223,2388,16,0,
7621510,1,1479,2389,16,
76220,237,1,1731,2390,
762316,0,237,1,477,
76241635,1,1231,2391,16,
76250,510,1,479,1645,
76261,480,1650,1,1485,
76272392,16,0,510,1,
76281737,2393,16,0,510,
76291,1989,1002,1,1990,
76302394,16,0,237,1,
76311443,2395,16,0,237,
76321,236,2396,16,0,
7633237,1,2136,928,1,
7634476,1629,1,242,2397,
763516,0,510,1,478,
76361669,1,1939,2398,16,
76370,510,1,1001,1674,
76381,1002,1679,1,1756,
76392399,16,0,237,1,
764020,2400,19,477,1,
764120,2401,5,84,1,
76421011,1188,1,1012,2402,
764316,0,475,1,1013,
76441345,1,262,1205,1,
76451267,2403,16,0,475,
76461,515,2404,16,0,
7647475,1,1521,2405,16,
76480,475,1,525,1302,
76491,283,1258,1,2299,
76502406,16,0,475,1,
765142,2407,16,0,475,
76521,40,1263,1,44,
76531269,1,47,1270,1,
76541303,2408,16,0,475,
76551,1555,2409,16,0,
7656475,1,50,1287,1,
765748,1276,1,49,1282,
76581,51,1292,1,63,
76591308,1,305,1297,1,
766066,1315,1,67,1320,
76611,68,1325,1,69,
76621330,1,70,1335,1,
766373,2410,16,0,475,
76641,74,1340,1,328,
76652411,16,0,475,1,
76661048,2412,16,0,475,
76671,82,2413,16,0,
7668475,1,1840,2414,16,
76690,475,1,1591,2415,
767016,0,475,1,1341,
76712416,16,0,475,1,
76721096,1399,1,93,1405,
76731,352,2417,16,0,
7674475,1,107,2418,16,
76750,475,1,1114,1430,
76761,118,2419,16,0,
7677475,1,1123,2420,16,
76780,475,1,371,1452,
76791,1628,2421,16,0,
7680475,1,375,1463,1,
76811882,2422,16,0,475,
76821,377,1468,1,379,
76831473,1,380,1478,1,
7684883,2423,16,0,475,
76851,373,1496,1,130,
76862424,16,0,475,1,
7687143,2425,16,0,475,
76881,387,2426,16,0,
7689475,1,1159,2427,16,
76900,475,1,157,2428,
769116,0,475,1,1413,
76922429,16,0,475,1,
76931665,2430,16,0,475,
76941,412,2431,16,0,
7695475,1,1377,2432,16,
76960,475,1,172,2433,
769716,0,475,1,1939,
76982434,16,0,475,1,
7699437,2435,16,0,475,
77001,188,2436,16,0,
7701475,1,942,2437,16,
77020,475,1,1195,2438,
770316,0,475,1,1449,
77042439,16,0,475,1,
77051701,2440,16,0,475,
77061,447,1597,1,205,
77072441,16,0,475,1,
7708827,2442,16,0,475,
77091,223,2443,16,0,
7710475,1,476,1629,1,
7711477,1635,1,1231,2444,
771216,0,475,1,479,
77131645,1,480,1650,1,
77141485,2445,16,0,475,
77151,1737,2446,16,0,
7716475,1,2746,2447,16,
77170,475,1,242,2448,
771816,0,475,1,478,
77191669,1,1001,1674,1,
77201002,1679,1,21,2449,
772119,444,1,21,2450,
77225,84,1,1011,1188,
77231,1012,2451,16,0,
7724442,1,1013,1345,1,
7725262,1205,1,1267,2452,
772616,0,442,1,515,
77272453,16,0,442,1,
77281521,2454,16,0,442,
77291,525,1302,1,283,
77301258,1,2299,2455,16,
77310,442,1,42,2456,
773216,0,442,1,40,
77331263,1,44,1269,1,
773447,1270,1,1303,2457,
773516,0,442,1,1555,
77362458,16,0,442,1,
773750,1287,1,48,1276,
77381,49,1282,1,51,
77391292,1,63,1308,1,
7740305,1297,1,66,1315,
77411,67,1320,1,68,
77421325,1,69,1330,1,
774370,1335,1,73,2459,
774416,0,442,1,74,
77451340,1,328,2460,16,
77460,442,1,1048,2461,
774716,0,442,1,82,
77482462,16,0,442,1,
77491840,2463,16,0,442,
77501,1591,2464,16,0,
7751442,1,1341,2465,16,
77520,442,1,1096,1399,
77531,93,1405,1,352,
77542466,16,0,442,1,
7755107,2467,16,0,442,
77561,1114,1430,1,118,
77572468,16,0,442,1,
77581123,2469,16,0,442,
77591,371,1452,1,1628,
77602470,16,0,442,1,
7761375,1463,1,1882,2471,
776216,0,442,1,377,
77631468,1,379,1473,1,
7764380,1478,1,883,2472,
776516,0,442,1,373,
77661496,1,130,2473,16,
77670,442,1,143,2474,
776816,0,442,1,387,
77692475,16,0,442,1,
77701159,2476,16,0,442,
77711,157,2477,16,0,
7772442,1,1413,2478,16,
77730,442,1,1665,2479,
777416,0,442,1,412,
77752480,16,0,442,1,
77761377,2481,16,0,442,
77771,172,2482,16,0,
7778442,1,1939,2483,16,
77790,442,1,437,2484,
778016,0,442,1,188,
77812485,16,0,442,1,
7782942,2486,16,0,442,
77831,1195,2487,16,0,
7784442,1,1449,2488,16,
77850,442,1,1701,2489,
778616,0,442,1,447,
77871597,1,205,2490,16,
77880,442,1,827,2491,
778916,0,442,1,223,
77902492,16,0,442,1,
7791476,1629,1,477,1635,
77921,1231,2493,16,0,
7793442,1,479,1645,1,
7794480,1650,1,1485,2494,
779516,0,442,1,1737,
77962495,16,0,442,1,
77972746,2496,16,0,442,
77981,242,2497,16,0,
7799442,1,478,1669,1,
78001001,1674,1,1002,1679,
78011,22,2498,19,395,
78021,22,2499,5,84,
78031,1011,1188,1,1012,
78042500,16,0,393,1,
78051013,1345,1,262,1205,
78061,1267,2501,16,0,
7807393,1,515,2502,16,
78080,393,1,1521,2503,
780916,0,393,1,525,
78101302,1,283,1258,1,
78112299,2504,16,0,393,
78121,42,2505,16,0,
7813393,1,40,1263,1,
781444,1269,1,47,1270,
78151,1303,2506,16,0,
7816393,1,1555,2507,16,
78170,393,1,50,1287,
78181,48,1276,1,49,
78191282,1,51,1292,1,
782063,1308,1,305,1297,
78211,66,1315,1,67,
78221320,1,68,1325,1,
782369,1330,1,70,1335,
78241,73,2508,16,0,
7825393,1,74,1340,1,
7826328,2509,16,0,393,
78271,1048,2510,16,0,
7828393,1,82,2511,16,
78290,393,1,1840,2512,
783016,0,393,1,1591,
78312513,16,0,393,1,
78321341,2514,16,0,393,
78331,1096,1399,1,93,
78341405,1,352,2515,16,
78350,393,1,107,2516,
783616,0,393,1,1114,
78371430,1,118,2517,16,
78380,393,1,1123,2518,
783916,0,393,1,371,
78401452,1,1628,2519,16,
78410,393,1,375,1463,
78421,1882,2520,16,0,
7843393,1,377,1468,1,
7844379,1473,1,380,1478,
78451,883,2521,16,0,
7846393,1,373,1496,1,
7847130,2522,16,0,393,
78481,143,2523,16,0,
7849393,1,387,2524,16,
78500,393,1,1159,2525,
785116,0,393,1,157,
78522526,16,0,393,1,
78531413,2527,16,0,393,
78541,1665,2528,16,0,
7855393,1,412,2529,16,
78560,393,1,1377,2530,
785716,0,393,1,172,
78582531,16,0,393,1,
78591939,2532,16,0,393,
78601,437,2533,16,0,
7861393,1,188,2534,16,
78620,393,1,942,2535,
786316,0,393,1,1195,
78642536,16,0,393,1,
78651449,2537,16,0,393,
78661,1701,2538,16,0,
7867393,1,447,1597,1,
7868205,2539,16,0,393,
78691,827,2540,16,0,
7870393,1,223,2541,16,
78710,393,1,476,1629,
78721,477,1635,1,1231,
78732542,16,0,393,1,
7874479,1645,1,480,1650,
78751,1485,2543,16,0,
7876393,1,1737,2544,16,
78770,393,1,2746,2545,
787816,0,393,1,242,
78792546,16,0,393,1,
7880478,1669,1,1001,1674,
78811,1002,1679,1,23,
78822547,19,555,1,23,
78832548,5,38,1,1901,
78842549,16,0,553,1,
78852075,2550,16,0,553,
78861,1860,907,1,1803,
7887873,1,1804,2551,16,
78880,553,1,2413,2552,
788916,0,553,1,2198,
78902553,16,0,553,1,
78911873,921,1,1657,979,
78921,1989,1002,1,1990,
78932554,16,0,553,1,
78941775,2555,16,0,553,
78951,32,2556,16,0,
7896553,1,2105,900,1,
78972106,2557,16,0,553,
78981,2364,913,1,2227,
7899993,1,2337,2558,16,
79000,553,1,2021,804,
79011,2458,961,1,2459,
7902967,1,2462,974,1,
79032136,928,1,2464,984,
79041,2029,811,1,2030,
7905817,1,2031,822,1,
79062032,827,1,2033,832,
79071,2035,838,1,2037,
7908843,1,2039,848,1,
79091931,946,1,2041,854,
79101,2043,860,1,2045,
7911865,1,1574,885,1,
79121958,2559,16,0,553,
79131,24,2560,19,188,
79141,24,2561,5,5,
79151,44,2562,16,0,
7916186,1,377,2563,16,
79170,591,1,40,2564,
791816,0,760,1,63,
79192565,16,0,207,1,
7920373,2566,16,0,587,
79211,25,2567,19,307,
79221,25,2568,5,177,
79231,256,2569,16,0,
7924596,1,1261,2570,16,
79250,596,1,1011,1188,
79261,1012,2571,16,0,
7927305,1,2458,961,1,
7928262,1205,1,1267,2572,
792916,0,305,1,2021,
7930804,1,1521,2573,16,
79310,305,1,1775,2574,
793216,0,596,1,2029,
7933811,1,2030,817,1,
79342031,822,1,2032,827,
79351,2033,832,1,277,
79362575,16,0,596,1,
79372035,838,1,2037,843,
79381,2039,848,1,32,
79392576,16,0,596,1,
79402464,984,1,2293,2577,
794116,0,596,1,2043,
7942860,1,2045,865,1,
79432299,2578,16,0,305,
79441,41,2579,16,0,
7945596,1,42,2580,16,
79460,305,1,40,1263,
79471,44,1269,1,43,
79482581,16,0,596,1,
79491804,2582,16,0,596,
79501,48,1276,1,49,
79511282,1,47,1270,1,
795251,1292,1,52,2583,
795316,0,596,1,50,
79541287,1,305,1297,1,
79551096,1399,1,1515,2584,
795616,0,596,1,2318,
79572585,16,0,596,1,
795862,2586,16,0,596,
79591,63,1308,1,66,
79601315,1,67,1320,1,
796168,1325,1,69,1330,
79621,70,1335,1,71,
79632587,16,0,596,1,
7964283,1258,1,73,2588,
796516,0,305,1,74,
79661340,1,1013,1345,1,
796776,2589,16,0,596,
79681,1834,2590,16,0,
7969596,1,2337,2591,16,
79700,596,1,79,2592,
797116,0,596,1,1335,
79722593,16,0,596,1,
7973299,2594,16,0,596,
79741,82,2595,16,0,
7975305,1,1840,2596,16,
79760,305,1,1297,2597,
797716,0,596,1,85,
79782598,16,0,596,1,
79791341,2599,16,0,305,
79801,89,2600,16,0,
7981596,1,1303,2601,16,
79820,305,1,509,2602,
798316,0,596,1,93,
79841405,1,322,2603,16,
79850,596,1,97,2604,
798616,0,596,1,2041,
7987854,1,1555,2605,16,
79880,305,1,827,2606,
798916,0,305,1,102,
79902607,16,0,596,1,
79911860,907,1,1803,873,
79921,2364,913,1,107,
79932608,16,0,305,1,
79941114,1430,1,112,2609,
799516,0,596,1,1117,
79962610,16,0,596,1,
7997352,1436,1,1873,921,
79981,118,1442,1,1123,
79992611,16,0,305,1,
8000371,1452,1,515,2612,
800116,0,305,1,1377,
80022613,16,0,305,1,
8003124,2614,16,0,596,
80041,1882,2615,16,0,
8005305,1,377,1468,1,
8006379,1473,1,380,1478,
80071,130,1501,1,346,
80082616,16,0,596,1,
80092075,2617,16,0,596,
80101,373,1496,1,387,
80112618,16,0,305,1,
8012137,2619,16,0,596,
80131,143,2620,16,0,
8014305,1,1901,2621,16,
80150,596,1,1048,1431,
80161,1153,2622,16,0,
8017596,1,375,1463,1,
8018151,2623,16,0,596,
80191,1407,2624,16,0,
8020596,1,2740,2625,16,
80210,596,1,2413,2626,
802216,0,596,1,1159,
80232627,16,0,305,1,
8024381,2628,16,0,596,
80251,157,2629,16,0,
8026305,1,1413,2630,16,
80270,305,1,883,2631,
802816,0,305,1,1371,
80292632,16,0,596,1,
8030328,1389,1,2105,900,
80311,2106,2633,16,0,
8032596,1,166,2634,16,
80330,596,1,525,2635,
803416,0,596,1,1622,
80352636,16,0,596,1,
8036406,2637,16,0,596,
80371,1574,885,1,172,
80381555,1,1931,946,1,
8039412,2638,16,0,305,
80401,1933,2639,16,0,
8041596,1,1876,2640,16,
80420,596,1,431,2641,
804316,0,596,1,1585,
80442642,16,0,596,1,
8045182,2643,16,0,596,
80461,1628,2644,16,0,
8047305,1,1189,2645,16,
80480,596,1,437,2646,
804916,0,305,1,1591,
80502647,16,0,305,1,
8051188,1604,1,1695,2648,
805216,0,596,1,2198,
80532649,16,0,596,1,
80541195,2650,16,0,305,
80551,1449,2651,16,0,
8056305,1,1701,2652,16,
80570,305,1,447,2653,
805816,0,596,1,199,
80592654,16,0,596,1,
80602459,967,1,1958,2655,
806116,0,596,1,2462,
8062974,1,1657,979,1,
8063205,2656,16,0,305,
80641,1659,2657,16,0,
8065596,1,459,2658,16,
80660,596,1,462,2659,
806716,0,596,1,1665,
80682660,16,0,305,1,
8069217,2661,16,0,596,
80701,2227,993,1,942,
80711576,1,1225,2662,16,
80720,596,1,223,2663,
807316,0,305,1,1479,
80742664,16,0,596,1,
80751731,2665,16,0,596,
80761,477,1635,1,1231,
80772666,16,0,305,1,
8078479,1645,1,480,1650,
80791,1485,2667,16,0,
8080305,1,1737,2668,16,
80810,305,1,1989,1002,
80821,1990,2669,16,0,
8083596,1,1443,2670,16,
80840,596,1,236,2671,
808516,0,596,1,2136,
8086928,1,476,1629,1,
8087242,2672,16,0,305,
80881,478,1669,1,1939,
80892673,16,0,305,1,
80902746,2674,16,0,305,
80911,1001,1674,1,1002,
80921679,1,1756,2675,16,
80930,596,1,26,2676,
809419,323,1,26,2677,
80955,84,1,1011,1188,
80961,1012,2678,16,0,
8097321,1,1013,1345,1,
8098262,1205,1,1267,2679,
809916,0,321,1,515,
81002680,16,0,740,1,
81011521,2681,16,0,321,
81021,525,1302,1,283,
81031258,1,2299,2682,16,
81040,321,1,42,2683,
810516,0,321,1,40,
81061263,1,44,1269,1,
810747,1270,1,1303,2684,
810816,0,321,1,1555,
81092685,16,0,321,1,
811050,1287,1,48,1276,
81111,49,1282,1,51,
81121292,1,63,1308,1,
8113305,1297,1,66,1315,
81141,67,1320,1,68,
81151325,1,69,1330,1,
811670,1335,1,73,2686,
811716,0,321,1,74,
81181340,1,328,1389,1,
81191048,1431,1,82,2687,
812016,0,321,1,1840,
81212688,16,0,321,1,
81221591,2689,16,0,321,
81231,1341,2690,16,0,
8124321,1,1096,1399,1,
812593,1405,1,352,1436,
81261,107,2691,16,0,
8127321,1,1114,1430,1,
8128118,1442,1,1123,2692,
812916,0,321,1,371,
81301452,1,1628,2693,16,
81310,321,1,375,1463,
81321,1882,2694,16,0,
8133321,1,377,1468,1,
8134379,1473,1,380,1478,
81351,883,2695,16,0,
8136321,1,373,1496,1,
8137130,1501,1,143,2696,
813816,0,321,1,387,
81392697,16,0,321,1,
81401159,2698,16,0,321,
81411,157,2699,16,0,
8142321,1,1413,2700,16,
81430,321,1,1665,2701,
814416,0,321,1,412,
81452702,16,0,321,1,
81461377,2703,16,0,321,
81471,172,1555,1,1939,
81482704,16,0,321,1,
8149437,2705,16,0,665,
81501,188,1604,1,942,
81511576,1,1195,2706,16,
81520,321,1,1449,2707,
815316,0,321,1,1701,
81542708,16,0,321,1,
8155447,1597,1,205,2709,
815616,0,321,1,827,
81572710,16,0,321,1,
8158223,2711,16,0,321,
81591,476,1629,1,477,
81601635,1,1231,2712,16,
81610,321,1,479,1645,
81621,480,1650,1,1485,
81632713,16,0,321,1,
81641737,2714,16,0,321,
81651,2746,2715,16,0,
8166321,1,242,2716,16,
81670,321,1,478,1669,
81681,1001,1674,1,1002,
81691679,1,27,2717,19,
8170673,1,27,2718,5,
817195,1,256,2719,16,
81720,671,1,1261,2720,
817316,0,671,1,509,
81742721,16,0,671,1,
81751515,2722,16,0,671,
81761,2021,804,1,1775,
81772723,16,0,671,1,
81782029,811,1,2030,817,
81791,2031,822,1,2032,
8180827,1,2033,832,1,
8181277,2724,16,0,671,
81821,2035,838,1,2037,
8183843,1,2039,848,1,
818432,2725,16,0,671,
81851,2041,854,1,2293,
81862726,16,0,671,1,
81872043,860,1,2045,865,
81881,41,2727,16,0,
8189671,1,1297,2728,16,
81900,671,1,43,2729,
819116,0,671,1,1803,
8192873,1,1804,2730,16,
81930,671,1,299,2731,
819416,0,671,1,52,
81952732,16,0,671,1,
81962318,2733,16,0,671,
81971,62,2734,16,0,
8198671,1,2075,2735,16,
81990,671,1,1574,885,
82001,71,2736,16,0,
8201671,1,76,2737,16,
82020,671,1,1834,2738,
820316,0,671,1,2337,
82042739,16,0,671,1,
820579,2740,16,0,671,
82061,1335,2741,16,0,
8207671,1,322,2742,16,
82080,671,1,85,2743,
820916,0,671,1,89,
82102744,16,0,671,1,
8211346,2745,16,0,671,
82121,2105,900,1,2106,
82132746,16,0,671,1,
821497,2747,16,0,671,
82151,1860,907,1,2364,
8216913,1,102,2748,16,
82170,671,1,112,2749,
821816,0,671,1,1117,
82192750,16,0,671,1,
82201873,921,1,1876,2751,
822116,0,671,1,124,
82222752,16,0,671,1,
82232136,928,1,381,2753,
822416,0,671,1,525,
82252754,16,0,671,1,
8226137,2755,16,0,671,
82271,1901,2756,16,0,
8228671,1,1153,2757,16,
82290,671,1,151,2758,
823016,0,671,1,1407,
82312759,16,0,671,1,
82321659,2760,16,0,671,
82331,2413,2761,16,0,
8234671,1,406,2762,16,
82350,671,1,1371,2763,
823616,0,671,1,166,
82372764,16,0,671,1,
82381622,2765,16,0,671,
82391,1931,946,1,1933,
82402766,16,0,671,1,
8241431,2767,16,0,671,
82421,1585,2768,16,0,
8243671,1,182,2769,16,
82440,671,1,1189,2770,
824516,0,671,1,1443,
82462771,16,0,671,1,
82471695,2772,16,0,671,
82481,2198,2773,16,0,
8249671,1,447,2774,16,
82500,671,1,2458,961,
82511,2459,967,1,1958,
82522775,16,0,671,1,
82532462,974,1,1657,979,
82541,2464,984,1,199,
82552776,16,0,671,1,
8256459,2777,16,0,671,
82571,462,2778,16,0,
8258671,1,217,2779,16,
82590,671,1,2227,993,
82601,1225,2780,16,0,
8261671,1,1479,2781,16,
82620,671,1,1731,2782,
826316,0,671,1,2740,
82642783,16,0,671,1,
82651989,1002,1,1990,2784,
826616,0,671,1,236,
82672785,16,0,671,1,
82681756,2786,16,0,671,
82691,28,2787,19,705,
82701,28,2788,5,60,
82711,328,1389,1,223,
82721619,1,1096,1399,1,
8273118,1442,1,883,1484,
82741,525,1302,1,1001,
82751674,1,130,1501,1,
8276459,1863,1,1114,1430,
82771,352,1436,1,447,
82781597,1,464,1856,1,
82791011,1188,1,1013,1345,
82801,242,1664,1,143,
82811506,1,40,1263,1,
828241,1830,1,42,1834,
82831,479,1645,1,44,
82841269,1,481,1865,1,
8285373,1496,1,47,1270,
82861,157,1529,1,49,
82871282,1,50,1287,1,
828848,1276,1,379,1473,
82891,380,1478,1,51,
82901292,1,476,1629,1,
8291371,1452,1,478,1669,
82921,1048,1431,1,375,
82931463,1,172,1555,1,
8294262,1205,1,283,1258,
82951,63,1308,1,67,
82961320,1,68,1325,1,
829769,1330,1,66,1315,
82981,461,2789,16,0,
8299703,1,74,1340,1,
8300377,1468,1,1002,1679,
83011,70,1335,1,188,
83021604,1,82,1367,1,
8303305,1297,1,477,1635,
83041,827,1418,1,93,
83051405,1,480,1650,1,
8306205,1609,1,942,1576,
83071,107,1425,1,29,
83082790,19,295,1,29,
83092791,5,84,1,1011,
83101188,1,1012,2792,16,
83110,293,1,1013,1345,
83121,262,1205,1,1267,
83132793,16,0,293,1,
8314515,2794,16,0,293,
83151,1521,2795,16,0,
8316293,1,525,1302,1,
8317283,1258,1,2299,2796,
831816,0,293,1,42,
83192797,16,0,293,1,
832040,1263,1,44,1269,
83211,47,1270,1,1303,
83222798,16,0,293,1,
83231555,2799,16,0,293,
83241,50,1287,1,48,
83251276,1,49,1282,1,
832651,1292,1,63,1308,
83271,305,1297,1,66,
83281315,1,67,1320,1,
832968,1325,1,69,1330,
83301,70,1335,1,73,
83312800,16,0,293,1,
833274,1340,1,328,1389,
83331,1048,1431,1,82,
83342801,16,0,293,1,
83351840,2802,16,0,293,
83361,1591,2803,16,0,
8337293,1,1341,2804,16,
83380,293,1,1096,1399,
83391,93,1405,1,352,
83401436,1,107,2805,16,
83410,293,1,1114,1430,
83421,118,1442,1,1123,
83432806,16,0,293,1,
8344371,1452,1,1628,2807,
834516,0,293,1,375,
83461463,1,1882,2808,16,
83470,293,1,377,1468,
83481,379,1473,1,380,
83491478,1,883,2809,16,
83500,293,1,373,1496,
83511,130,1501,1,143,
83521506,1,387,2810,16,
83530,293,1,1159,2811,
835416,0,293,1,157,
83551529,1,1413,2812,16,
83560,293,1,1665,2813,
835716,0,293,1,412,
83582814,16,0,293,1,
83591377,2815,16,0,293,
83601,172,1555,1,1939,
83612816,16,0,293,1,
8362437,2817,16,0,293,
83631,188,1604,1,942,
83641576,1,1195,2818,16,
83650,293,1,1449,2819,
836616,0,293,1,1701,
83672820,16,0,293,1,
8368447,1597,1,205,2821,
836916,0,293,1,827,
83702822,16,0,293,1,
8371223,2823,16,0,293,
83721,476,1629,1,477,
83731635,1,1231,2824,16,
83740,293,1,479,1645,
83751,480,1650,1,1485,
83762825,16,0,293,1,
83771737,2826,16,0,293,
83781,2746,2827,16,0,
8379293,1,242,2828,16,
83800,293,1,478,1669,
83811,1001,1674,1,1002,
83821679,1,30,2829,19,
8383282,1,30,2830,5,
838484,1,1011,1188,1,
83851012,2831,16,0,280,
83861,1013,1345,1,262,
83871205,1,1267,2832,16,
83880,280,1,515,2833,
838916,0,280,1,1521,
83902834,16,0,280,1,
8391525,1302,1,283,1258,
83921,2299,2835,16,0,
8393280,1,42,2836,16,
83940,280,1,40,1263,
83951,44,1269,1,47,
83961270,1,1303,2837,16,
83970,280,1,1555,2838,
839816,0,280,1,50,
83991287,1,48,1276,1,
840049,1282,1,51,1292,
84011,63,1308,1,305,
84021297,1,66,1315,1,
840367,1320,1,68,1325,
84041,69,1330,1,70,
84051335,1,73,2839,16,
84060,280,1,74,1340,
84071,328,1389,1,1048,
84081431,1,82,2840,16,
84090,280,1,1840,2841,
841016,0,280,1,1591,
84112842,16,0,280,1,
84121341,2843,16,0,280,
84131,1096,1399,1,93,
84141405,1,352,1436,1,
8415107,2844,16,0,280,
84161,1114,1430,1,118,
84171442,1,1123,2845,16,
84180,280,1,371,1452,
84191,1628,2846,16,0,
8420280,1,375,1463,1,
84211882,2847,16,0,280,
84221,377,1468,1,379,
84231473,1,380,1478,1,
8424883,2848,16,0,280,
84251,373,1496,1,130,
84261501,1,143,1506,1,
8427387,2849,16,0,280,
84281,1159,2850,16,0,
8429280,1,157,1529,1,
84301413,2851,16,0,280,
84311,1665,2852,16,0,
8432280,1,412,2853,16,
84330,280,1,1377,2854,
843416,0,280,1,172,
84351555,1,1939,2855,16,
84360,280,1,437,2856,
843716,0,280,1,188,
84381604,1,942,1576,1,
84391195,2857,16,0,280,
84401,1449,2858,16,0,
8441280,1,1701,2859,16,
84420,280,1,447,1597,
84431,205,2860,16,0,
8444280,1,827,2861,16,
84450,280,1,223,2862,
844616,0,280,1,476,
84471629,1,477,1635,1,
84481231,2863,16,0,280,
84491,479,1645,1,480,
84501650,1,1485,2864,16,
84510,280,1,1737,2865,
845216,0,280,1,2746,
84532866,16,0,280,1,
8454242,2867,16,0,280,
84551,478,1669,1,1001,
84561674,1,1002,1679,1,
845731,2868,19,268,1,
845831,2869,5,84,1,
84591011,1188,1,1012,2870,
846016,0,266,1,1013,
84611345,1,262,1205,1,
84621267,2871,16,0,266,
84631,515,2872,16,0,
8464266,1,1521,2873,16,
84650,266,1,525,1302,
84661,283,1258,1,2299,
84672874,16,0,266,1,
846842,2875,16,0,266,
84691,40,1263,1,44,
84701269,1,47,1270,1,
84711303,2876,16,0,266,
84721,1555,2877,16,0,
8473266,1,50,1287,1,
847448,1276,1,49,1282,
84751,51,1292,1,63,
84761308,1,305,1297,1,
847766,1315,1,67,1320,
84781,68,1325,1,69,
84791330,1,70,1335,1,
848073,2878,16,0,266,
84811,74,1340,1,328,
84821389,1,1048,1431,1,
848382,2879,16,0,266,
84841,1840,2880,16,0,
8485266,1,1591,2881,16,
84860,266,1,1341,2882,
848716,0,266,1,1096,
84881399,1,93,1405,1,
8489352,1436,1,107,2883,
849016,0,266,1,1114,
84911430,1,118,1442,1,
84921123,2884,16,0,266,
84931,371,1452,1,1628,
84942885,16,0,266,1,
8495375,1463,1,1882,2886,
849616,0,266,1,377,
84971468,1,379,1473,1,
8498380,1478,1,883,2887,
849916,0,266,1,373,
85001496,1,130,1501,1,
8501143,2888,16,0,266,
85021,387,2889,16,0,
8503266,1,1159,2890,16,
85040,266,1,157,2891,
850516,0,266,1,1413,
85062892,16,0,266,1,
85071665,2893,16,0,266,
85081,412,2894,16,0,
8509266,1,1377,2895,16,
85100,266,1,172,1555,
85111,1939,2896,16,0,
8512266,1,437,2897,16,
85130,266,1,188,1604,
85141,942,1576,1,1195,
85152898,16,0,266,1,
85161449,2899,16,0,266,
85171,1701,2900,16,0,
8518266,1,447,1597,1,
8519205,2901,16,0,266,
85201,827,2902,16,0,
8521266,1,223,2903,16,
85220,266,1,476,1629,
85231,477,1635,1,1231,
85242904,16,0,266,1,
8525479,1645,1,480,1650,
85261,1485,2905,16,0,
8527266,1,1737,2906,16,
85280,266,1,2746,2907,
852916,0,266,1,242,
85302908,16,0,266,1,
8531478,1669,1,1001,1674,
85321,1002,1679,1,32,
85332909,19,261,1,32,
85342910,5,84,1,1011,
85351188,1,1012,2911,16,
85360,259,1,1013,1345,
85371,262,1205,1,1267,
85382912,16,0,259,1,
8539515,2913,16,0,259,
85401,1521,2914,16,0,
8541259,1,525,1302,1,
8542283,1258,1,2299,2915,
854316,0,259,1,42,
85442916,16,0,259,1,
854540,1263,1,44,1269,
85461,47,1270,1,1303,
85472917,16,0,259,1,
85481555,2918,16,0,259,
85491,50,1287,1,48,
85501276,1,49,1282,1,
855151,1292,1,63,1308,
85521,305,1297,1,66,
85531315,1,67,1320,1,
855468,1325,1,69,1330,
85551,70,1335,1,73,
85562919,16,0,259,1,
855774,1340,1,328,1389,
85581,1048,1431,1,82,
85592920,16,0,259,1,
85601840,2921,16,0,259,
85611,1591,2922,16,0,
8562259,1,1341,2923,16,
85630,259,1,1096,1399,
85641,93,1405,1,352,
85651436,1,107,2924,16,
85660,259,1,1114,1430,
85671,118,1442,1,1123,
85682925,16,0,259,1,
8569371,1452,1,1628,2926,
857016,0,259,1,375,
85711463,1,1882,2927,16,
85720,259,1,377,1468,
85731,379,1473,1,380,
85741478,1,883,2928,16,
85750,259,1,373,1496,
85761,130,1501,1,143,
85772929,16,0,259,1,
8578387,2930,16,0,259,
85791,1159,2931,16,0,
8580259,1,157,2932,16,
85810,259,1,1413,2933,
858216,0,259,1,1665,
85832934,16,0,259,1,
8584412,2935,16,0,259,
85851,1377,2936,16,0,
8586259,1,172,1555,1,
85871939,2937,16,0,259,
85881,437,2938,16,0,
8589259,1,188,1604,1,
8590942,1576,1,1195,2939,
859116,0,259,1,1449,
85922940,16,0,259,1,
85931701,2941,16,0,259,
85941,447,1597,1,205,
85952942,16,0,259,1,
8596827,2943,16,0,259,
85971,223,2944,16,0,
8598259,1,476,1629,1,
8599477,1635,1,1231,2945,
860016,0,259,1,479,
86011645,1,480,1650,1,
86021485,2946,16,0,259,
86031,1737,2947,16,0,
8604259,1,2746,2948,16,
86050,259,1,242,2949,
860616,0,259,1,478,
86071669,1,1001,1674,1,
86081002,1679,1,33,2950,
860919,346,1,33,2951,
86105,84,1,1011,1188,
86111,1012,2952,16,0,
8612344,1,1013,1345,1,
8613262,1205,1,1267,2953,
861416,0,344,1,515,
86152954,16,0,344,1,
86161521,2955,16,0,344,
86171,525,1302,1,283,
86181258,1,2299,2956,16,
86190,344,1,42,2957,
862016,0,344,1,40,
86211263,1,44,1269,1,
862247,1270,1,1303,2958,
862316,0,344,1,1555,
86242959,16,0,344,1,
862550,1287,1,48,1276,
86261,49,1282,1,51,
86271292,1,63,1308,1,
8628305,1297,1,66,1315,
86291,67,1320,1,68,
86301325,1,69,1330,1,
863170,1335,1,73,2960,
863216,0,344,1,74,
86331340,1,328,1389,1,
86341048,1431,1,82,2961,
863516,0,344,1,1840,
86362962,16,0,344,1,
86371591,2963,16,0,344,
86381,1341,2964,16,0,
8639344,1,1096,1399,1,
864093,1405,1,352,1436,
86411,107,2965,16,0,
8642344,1,1114,1430,1,
8643118,1442,1,1123,2966,
864416,0,344,1,371,
86451452,1,1628,2967,16,
86460,344,1,375,1463,
86471,1882,2968,16,0,
8648344,1,377,1468,1,
8649379,1473,1,380,1478,
86501,883,2969,16,0,
8651344,1,373,1496,1,
8652130,1501,1,143,1506,
86531,387,2970,16,0,
8654344,1,1159,2971,16,
86550,344,1,157,1529,
86561,1413,2972,16,0,
8657344,1,1665,2973,16,
86580,344,1,412,2974,
865916,0,344,1,1377,
86602975,16,0,344,1,
8661172,1555,1,1939,2976,
866216,0,344,1,437,
86632977,16,0,344,1,
8664188,1604,1,942,1576,
86651,1195,2978,16,0,
8666344,1,1449,2979,16,
86670,344,1,1701,2980,
866816,0,344,1,447,
86691597,1,205,2981,16,
86700,344,1,827,2982,
867116,0,344,1,223,
86722983,16,0,344,1,
8673476,1629,1,477,1635,
86741,1231,2984,16,0,
8675344,1,479,1645,1,
8676480,1650,1,1485,2985,
867716,0,344,1,1737,
86782986,16,0,344,1,
86792746,2987,16,0,344,
86801,242,1664,1,478,
86811669,1,1001,1674,1,
86821002,1679,1,34,2988,
868319,336,1,34,2989,
86845,84,1,1011,1188,
86851,1012,2990,16,0,
8686334,1,1013,1345,1,
8687262,1205,1,1267,2991,
868816,0,334,1,515,
86892992,16,0,334,1,
86901521,2993,16,0,334,
86911,525,1302,1,283,
86921258,1,2299,2994,16,
86930,334,1,42,2995,
869416,0,334,1,40,
86951263,1,44,1269,1,
869647,1270,1,1303,2996,
869716,0,334,1,1555,
86982997,16,0,334,1,
869950,1287,1,48,1276,
87001,49,1282,1,51,
87011292,1,63,1308,1,
8702305,1297,1,66,1315,
87031,67,1320,1,68,
87041325,1,69,1330,1,
870570,1335,1,73,2998,
870616,0,334,1,74,
87071340,1,328,1389,1,
87081048,1431,1,82,2999,
870916,0,334,1,1840,
87103000,16,0,334,1,
87111591,3001,16,0,334,
87121,1341,3002,16,0,
8713334,1,1096,1399,1,
871493,1405,1,352,1436,
87151,107,3003,16,0,
8716334,1,1114,1430,1,
8717118,1442,1,1123,3004,
871816,0,334,1,371,
87191452,1,1628,3005,16,
87200,334,1,375,1463,
87211,1882,3006,16,0,
8722334,1,377,1468,1,
8723379,1473,1,380,1478,
87241,883,3007,16,0,
8725334,1,373,1496,1,
8726130,1501,1,143,1506,
87271,387,3008,16,0,
8728334,1,1159,3009,16,
87290,334,1,157,1529,
87301,1413,3010,16,0,
8731334,1,1665,3011,16,
87320,334,1,412,3012,
873316,0,334,1,1377,
87343013,16,0,334,1,
8735172,1555,1,1939,3014,
873616,0,334,1,437,
87373015,16,0,334,1,
8738188,1604,1,942,1576,
87391,1195,3016,16,0,
8740334,1,1449,3017,16,
87410,334,1,1701,3018,
874216,0,334,1,447,
87431597,1,205,1609,1,
8744827,3019,16,0,334,
87451,223,1619,1,476,
87461629,1,477,1635,1,
87471231,3020,16,0,334,
87481,479,1645,1,480,
87491650,1,1485,3021,16,
87500,334,1,1737,3022,
875116,0,334,1,2746,
87523023,16,0,334,1,
8753242,1664,1,478,1669,
87541,1001,1674,1,1002,
87551679,1,35,3024,19,
8756326,1,35,3025,5,
875784,1,1011,1188,1,
87581012,3026,16,0,324,
87591,1013,1345,1,262,
87601205,1,1267,3027,16,
87610,324,1,515,3028,
876216,0,324,1,1521,
87633029,16,0,324,1,
8764525,1302,1,283,1258,
87651,2299,3030,16,0,
8766324,1,42,3031,16,
87670,324,1,40,1263,
87681,44,1269,1,47,
87691270,1,1303,3032,16,
87700,324,1,1555,3033,
877116,0,324,1,50,
87721287,1,48,1276,1,
877349,1282,1,51,1292,
87741,63,1308,1,305,
87751297,1,66,1315,1,
877667,1320,1,68,1325,
87771,69,1330,1,70,
87781335,1,73,3034,16,
87790,324,1,74,1340,
87801,328,1389,1,1048,
87811431,1,82,3035,16,
87820,324,1,1840,3036,
878316,0,324,1,1591,
87843037,16,0,324,1,
87851341,3038,16,0,324,
87861,1096,1399,1,93,
87871405,1,352,1436,1,
8788107,3039,16,0,324,
87891,1114,1430,1,118,
87901442,1,1123,3040,16,
87910,324,1,371,1452,
87921,1628,3041,16,0,
8793324,1,375,1463,1,
87941882,3042,16,0,324,
87951,377,1468,1,379,
87961473,1,380,1478,1,
8797883,3043,16,0,324,
87981,373,1496,1,130,
87991501,1,143,1506,1,
8800387,3044,16,0,324,
88011,1159,3045,16,0,
8802324,1,157,1529,1,
88031413,3046,16,0,324,
88041,1665,3047,16,0,
8805324,1,412,3048,16,
88060,324,1,1377,3049,
880716,0,324,1,172,
88081555,1,1939,3050,16,
88090,324,1,437,3051,
881016,0,324,1,188,
88111604,1,942,1576,1,
88121195,3052,16,0,324,
88131,1449,3053,16,0,
8814324,1,1701,3054,16,
88150,324,1,447,1597,
88161,205,1609,1,827,
88173055,16,0,324,1,
8818223,3056,16,0,324,
88191,476,1629,1,477,
88201635,1,1231,3057,16,
88210,324,1,479,1645,
88221,480,1650,1,1485,
88233058,16,0,324,1,
88241737,3059,16,0,324,
88251,2746,3060,16,0,
8826324,1,242,1664,1,
8827478,1669,1,1001,1674,
88281,1002,1679,1,36,
88293061,19,227,1,36,
88303062,5,94,1,256,
88313063,16,0,225,1,
88321261,3064,16,0,225,
88331,509,3065,16,0,
8834225,1,1515,3066,16,
88350,225,1,2021,804,
88361,1775,3067,16,0,
8837225,1,2029,811,1,
88382030,817,1,2031,822,
88391,2032,827,1,2033,
8840832,1,277,3068,16,
88410,225,1,2035,838,
88421,2037,843,1,2039,
8843848,1,32,3069,16,
88440,225,1,2041,854,
88451,2293,3070,16,0,
8846225,1,2043,860,1,
88472045,865,1,41,3071,
884816,0,225,1,1297,
88493072,16,0,225,1,
885043,3073,16,0,225,
88511,1803,873,1,1804,
88523074,16,0,225,1,
8853299,3075,16,0,225,
88541,52,3076,16,0,
8855225,1,2318,3077,16,
88560,225,1,2075,3078,
885716,0,225,1,1574,
8858885,1,71,3079,16,
88590,225,1,76,3080,
886016,0,225,1,1834,
88613081,16,0,225,1,
88622337,3082,16,0,225,
88631,79,3083,16,0,
8864225,1,1335,3084,16,
88650,225,1,322,3085,
886616,0,225,1,85,
88673086,16,0,225,1,
886889,3087,16,0,225,
88691,346,3088,16,0,
8870225,1,2105,900,1,
88712106,3089,16,0,225,
88721,97,3090,16,0,
8873225,1,1860,907,1,
88742364,913,1,102,3091,
887516,0,225,1,112,
88763092,16,0,225,1,
88771117,3093,16,0,225,
88781,1873,921,1,1876,
88793094,16,0,225,1,
8880124,3095,16,0,225,
88811,2136,928,1,381,
88823096,16,0,225,1,
8883525,3097,16,0,225,
88841,137,3098,16,0,
8885225,1,1901,3099,16,
88860,225,1,1153,3100,
888716,0,225,1,151,
88883101,16,0,225,1,
88891407,3102,16,0,225,
88901,1659,3103,16,0,
8891225,1,2413,3104,16,
88920,225,1,406,3105,
889316,0,225,1,1371,
88943106,16,0,225,1,
8895166,3107,16,0,225,
88961,1622,3108,16,0,
8897225,1,1931,946,1,
88981933,3109,16,0,225,
88991,431,3110,16,0,
8900225,1,1585,3111,16,
89010,225,1,182,3112,
890216,0,225,1,1189,
89033113,16,0,225,1,
89041443,3114,16,0,225,
89051,1695,3115,16,0,
8906225,1,2198,3116,16,
89070,225,1,447,3117,
890816,0,225,1,2458,
8909961,1,2459,967,1,
89101958,3118,16,0,225,
89111,2462,974,1,1657,
8912979,1,2464,984,1,
8913199,3119,16,0,225,
89141,459,3120,16,0,
8915225,1,462,3121,16,
89160,225,1,217,3122,
891716,0,225,1,2227,
8918993,1,1225,3123,16,
89190,225,1,1479,3124,
892016,0,225,1,1731,
89213125,16,0,225,1,
89222740,3126,16,0,225,
89231,1989,1002,1,1990,
89243127,16,0,225,1,
8925236,3128,16,0,225,
89261,1756,3129,16,0,
8927225,1,37,3130,19,
8928251,1,37,3131,5,
892994,1,256,3132,16,
89300,249,1,1261,3133,
893116,0,249,1,509,
89323134,16,0,249,1,
89331515,3135,16,0,249,
89341,2021,804,1,1775,
89353136,16,0,249,1,
89362029,811,1,2030,817,
89371,2031,822,1,2032,
8938827,1,2033,832,1,
8939277,3137,16,0,249,
89401,2035,838,1,2037,
8941843,1,2039,848,1,
894232,3138,16,0,249,
89431,2041,854,1,2293,
89443139,16,0,249,1,
89452043,860,1,2045,865,
89461,41,3140,16,0,
8947249,1,1297,3141,16,
89480,249,1,43,3142,
894916,0,249,1,1803,
8950873,1,1804,3143,16,
89510,249,1,299,3144,
895216,0,249,1,52,
89533145,16,0,249,1,
89542318,3146,16,0,249,
89551,2075,3147,16,0,
8956249,1,1574,885,1,
895771,3148,16,0,249,
89581,76,3149,16,0,
8959249,1,1834,3150,16,
89600,249,1,2337,3151,
896116,0,249,1,79,
89623152,16,0,249,1,
89631335,3153,16,0,249,
89641,322,3154,16,0,
8965249,1,85,3155,16,
89660,249,1,89,3156,
896716,0,249,1,346,
89683157,16,0,249,1,
89692105,900,1,2106,3158,
897016,0,249,1,97,
89713159,16,0,249,1,
89721860,907,1,2364,913,
89731,102,3160,16,0,
8974249,1,112,3161,16,
89750,249,1,1117,3162,
897616,0,249,1,1873,
8977921,1,1876,3163,16,
89780,249,1,124,3164,
897916,0,249,1,2136,
8980928,1,381,3165,16,
89810,249,1,525,3166,
898216,0,249,1,137,
89833167,16,0,249,1,
89841901,3168,16,0,249,
89851,1153,3169,16,0,
8986249,1,151,3170,16,
89870,249,1,1407,3171,
898816,0,249,1,1659,
89893172,16,0,249,1,
89902413,3173,16,0,249,
89911,406,3174,16,0,
8992249,1,1371,3175,16,
89930,249,1,166,3176,
899416,0,249,1,1622,
89953177,16,0,249,1,
89961931,946,1,1933,3178,
899716,0,249,1,431,
89983179,16,0,249,1,
89991585,3180,16,0,249,
90001,182,3181,16,0,
9001249,1,1189,3182,16,
90020,249,1,1443,3183,
900316,0,249,1,1695,
90043184,16,0,249,1,
90052198,3185,16,0,249,
90061,447,3186,16,0,
9007249,1,2458,961,1,
90082459,967,1,1958,3187,
900916,0,249,1,2462,
9010974,1,1657,979,1,
90112464,984,1,199,3188,
901216,0,249,1,459,
90133189,16,0,249,1,
9014462,3190,16,0,249,
90151,217,3191,16,0,
9016249,1,2227,993,1,
90171225,3192,16,0,249,
90181,1479,3193,16,0,
9019249,1,1731,3194,16,
90200,249,1,2740,3195,
902116,0,249,1,1989,
90221002,1,1990,3196,16,
90230,249,1,236,3197,
902416,0,249,1,1756,
90253198,16,0,249,1,
902638,3199,19,247,1,
902738,3200,5,84,1,
90281011,1188,1,1012,3201,
902916,0,245,1,1013,
90301345,1,262,1205,1,
90311267,3202,16,0,245,
90321,515,3203,16,0,
9033245,1,1521,3204,16,
90340,245,1,525,1302,
90351,283,1258,1,2299,
90363205,16,0,245,1,
903742,3206,16,0,245,
90381,40,1263,1,44,
90391269,1,47,1270,1,
90401303,3207,16,0,245,
90411,1555,3208,16,0,
9042245,1,50,1287,1,
904348,1276,1,49,1282,
90441,51,1292,1,63,
90451308,1,305,1297,1,
904666,1315,1,67,1320,
90471,68,1325,1,69,
90481330,1,70,1335,1,
904973,3209,16,0,245,
90501,74,1340,1,328,
90511389,1,1048,1431,1,
905282,3210,16,0,245,
90531,1840,3211,16,0,
9054245,1,1591,3212,16,
90550,245,1,1341,3213,
905616,0,245,1,1096,
90571399,1,93,1405,1,
9058352,1436,1,107,3214,
905916,0,245,1,1114,
90601430,1,118,1442,1,
90611123,3215,16,0,245,
90621,371,1452,1,1628,
90633216,16,0,245,1,
9064375,1463,1,1882,3217,
906516,0,245,1,377,
90661468,1,379,1473,1,
9067380,1478,1,883,1484,
90681,373,1496,1,130,
90691501,1,143,1506,1,
9070387,3218,16,0,245,
90711,1159,3219,16,0,
9072245,1,157,1529,1,
90731413,3220,16,0,245,
90741,1665,3221,16,0,
9075245,1,412,3222,16,
90760,245,1,1377,3223,
907716,0,245,1,172,
90781555,1,1939,3224,16,
90790,245,1,437,3225,
908016,0,245,1,188,
90811604,1,942,1576,1,
90821195,3226,16,0,245,
90831,1449,3227,16,0,
9084245,1,1701,3228,16,
90850,245,1,447,1597,
90861,205,1609,1,827,
90871418,1,223,1619,1,
9088476,1629,1,477,1635,
90891,1231,3229,16,0,
9090245,1,479,1645,1,
9091480,1650,1,1485,3230,
909216,0,245,1,1737,
90933231,16,0,245,1,
90942746,3232,16,0,245,
90951,242,1664,1,478,
90961669,1,1001,1674,1,
90971002,1679,1,39,3233,
909819,233,1,39,3234,
90995,84,1,1011,1188,
91001,1012,3235,16,0,
9101231,1,1013,1345,1,
9102262,1205,1,1267,3236,
910316,0,231,1,515,
91043237,16,0,231,1,
91051521,3238,16,0,231,
91061,525,1302,1,283,
91071258,1,2299,3239,16,
91080,231,1,42,3240,
910916,0,231,1,40,
91101263,1,44,1269,1,
911147,1270,1,1303,3241,
911216,0,231,1,1555,
91133242,16,0,231,1,
911450,1287,1,48,1276,
91151,49,1282,1,51,
91161292,1,63,1308,1,
9117305,1297,1,66,1315,
91181,67,1320,1,68,
91191325,1,69,1330,1,
912070,1335,1,73,3243,
912116,0,231,1,74,
91221340,1,328,1389,1,
91231048,1431,1,82,3244,
912416,0,231,1,1840,
91253245,16,0,231,1,
91261591,3246,16,0,231,
91271,1341,3247,16,0,
9128231,1,1096,1399,1,
912993,1405,1,352,1436,
91301,107,3248,16,0,
9131231,1,1114,1430,1,
9132118,1442,1,1123,3249,
913316,0,231,1,371,
91341452,1,1628,3250,16,
91350,231,1,375,1463,
91361,1882,3251,16,0,
9137231,1,377,1468,1,
9138379,1473,1,380,1478,
91391,883,1484,1,373,
91401496,1,130,1501,1,
9141143,1506,1,387,3252,
730716,0,231,1,1159, 914216,0,231,1,1159,
73082292,16,0,507,1, 91433253,16,0,231,1,
7309381,2293,16,0,231, 9144157,1529,1,1413,3254,
73101,157,2294,16,0,
7311507,1,1413,2295,16,
73120,507,1,883,2296,
731316,0,507,1,1371,
73142297,16,0,231,1,
7315328,1366,1,2105,878,
73161,2106,2298,16,0,
7317231,1,166,2299,16,
73180,231,1,525,2300,
731916,0,231,1,1622,
73202301,16,0,231,1,
7321406,2302,16,0,231,
73221,1574,863,1,172,
73232303,16,0,507,1,
73241931,925,1,412,2304,
732516,0,507,1,1933,
73262305,16,0,231,1,
73271876,2306,16,0,231,
73281,431,2307,16,0,
7329231,1,1585,2308,16,
73300,231,1,182,2309,
733116,0,231,1,1628,
73322310,16,0,507,1,
73331189,2311,16,0,231,
73341,437,2312,16,0,
7335507,1,1591,2313,16,
73360,507,1,188,2314,
733716,0,507,1,1695,
73382315,16,0,231,1,
73392198,2316,16,0,231,
73401,1195,2317,16,0,
7341507,1,1449,2318,16,
73420,507,1,1701,2319,
734316,0,507,1,447,
73442320,16,0,231,1,
7345199,2321,16,0,231,
73461,2459,946,1,1958,
73472322,16,0,231,1,
73482462,953,1,1657,958,
73491,205,2323,16,0,
7350507,1,459,2324,16,
73510,231,1,462,2325,
735216,0,231,1,1665, 914516,0,231,1,1665,
73532326,16,0,507,1, 91463255,16,0,231,1,
73542724,2327,16,0,507, 9147412,3256,16,0,231,
73551,2718,2328,16,0, 91481,1377,3257,16,0,
7356231,1,217,2329,16, 9149231,1,172,1555,1,
73570,231,1,2227,972, 91501939,3258,16,0,231,
73581,942,2330,16,0, 91511,437,3259,16,0,
7359507,1,1225,2331,16, 9152231,1,188,1604,1,
73600,231,1,223,2332, 9153942,1576,1,1195,3260,
736116,0,507,1,1479, 915416,0,231,1,1449,
73622333,16,0,231,1, 91553261,16,0,231,1,
73631731,2334,16,0,231, 91561701,3262,16,0,231,
73641,477,1614,1,1231, 91571,447,1597,1,205,
73652335,16,0,507,1, 91581609,1,827,1418,1,
7366479,1624,1,480,1629, 9159223,1619,1,476,1629,
73671,1485,2336,16,0, 91601,477,1635,1,1231,
7368507,1,1737,2337,16, 91613263,16,0,231,1,
73690,507,1,1989,980, 9162479,1645,1,480,1650,
73701,1990,2338,16,0, 91631,1485,3264,16,0,
7371231,1,1443,2339,16, 9164231,1,1737,3265,16,
73720,231,1,236,2340, 91650,231,1,2746,3266,
737316,0,231,1,2136, 916616,0,231,1,242,
7374906,1,476,1608,1, 91671664,1,478,1669,1,
7375242,2341,16,0,507, 91681001,1674,1,1002,1679,
73761,478,1647,1,1939, 91691,40,3267,19,221,
73772342,16,0,507,1, 91701,40,3268,5,84,
73781001,1652,1,1002,1657, 91711,1011,1188,1,1012,
73791,1756,2343,16,0, 91723269,16,0,219,1,
7380231,1,20,2344,19, 91731013,1345,1,262,1205,
7381484,1,20,2345,5, 91741,1267,3270,16,0,
738284,1,1011,1166,1, 9175219,1,515,3271,16,
73831012,2346,16,0,482, 91760,219,1,1521,3272,
73841,1013,1322,1,262, 917716,0,219,1,525,
73851183,1,1267,2347,16, 91781302,1,283,1258,1,
73860,482,1,515,2348, 91792299,3273,16,0,219,
738716,0,482,1,1521, 91801,42,3274,16,0,
73882349,16,0,482,1, 9181219,1,40,1263,1,
7389525,1280,1,283,1236, 918244,1269,1,47,1270,
73901,2299,2350,16,0, 91831,1303,3275,16,0,
7391482,1,42,2351,16, 9184219,1,1555,3276,16,
73920,482,1,40,1241, 91850,219,1,50,1287,
73931,44,1247,1,47, 91861,48,1276,1,49,
73941248,1,1303,2352,16, 91871282,1,51,1292,1,
73950,482,1,1555,2353, 918863,1308,1,305,1297,
739616,0,482,1,50, 91891,66,1315,1,67,
73971265,1,48,1254,1, 91901320,1,68,1325,1,
739849,1260,1,51,1270, 919169,1330,1,70,1335,
73991,63,1286,1,305, 91921,73,3277,16,0,
74001275,1,66,1292,1, 9193219,1,74,1340,1,
740167,1297,1,68,1302, 9194328,1389,1,1048,1431,
74021,69,1307,1,70, 91951,82,3278,16,0,
74031312,1,73,2354,16, 9196219,1,1840,3279,16,
74040,482,1,74,1317, 91970,219,1,1591,3280,
74051,328,2355,16,0, 919816,0,219,1,1341,
7406482,1,1048,2356,16, 91993281,16,0,219,1,
74070,482,1,82,2357, 92001096,1399,1,93,1405,
740816,0,482,1,1840, 92011,352,1436,1,107,
74092358,16,0,482,1, 92023282,16,0,219,1,
74101591,2359,16,0,482, 92031114,1430,1,118,3283,
74111,1341,2360,16,0, 920416,0,219,1,1123,
7412482,1,1096,1376,1, 92053284,16,0,219,1,
741393,1382,1,352,2361, 9206371,1452,1,1628,3285,
741416,0,482,1,107, 920716,0,219,1,375,
74152362,16,0,482,1, 92081463,1,1882,3286,16,
74161114,1407,1,118,2363, 92090,219,1,377,1468,
741716,0,482,1,1123, 92101,379,1473,1,380,
74182364,16,0,482,1, 92111478,1,883,3287,16,
7419371,1429,1,1628,2365, 92120,219,1,373,1496,
742016,0,482,1,375, 92131,130,3288,16,0,
74211440,1,1882,2366,16, 9214219,1,143,3289,16,
74220,482,1,377,1445, 92150,219,1,387,3290,
74231,379,1450,1,380, 921616,0,219,1,1159,
74241455,1,883,2367,16, 92173291,16,0,219,1,
74250,482,1,373,1473, 9218157,3292,16,0,219,
74261,130,2368,16,0, 92191,1413,3293,16,0,
7427482,1,143,2369,16, 9220219,1,1665,3294,16,
74280,482,1,387,2370, 92210,219,1,412,3295,
742916,0,482,1,1159, 922216,0,219,1,1377,
74302371,16,0,482,1, 92233296,16,0,219,1,
7431157,2372,16,0,482, 9224172,3297,16,0,219,
74321,1413,2373,16,0, 92251,1939,3298,16,0,
7433482,1,1665,2374,16, 9226219,1,437,3299,16,
74340,482,1,412,2375, 92270,219,1,188,3300,
743516,0,482,1,1377, 922816,0,219,1,942,
74362376,16,0,482,1, 92291576,1,1195,3301,16,
7437172,2377,16,0,482, 92300,219,1,1449,3302,
74381,1939,2378,16,0, 923116,0,219,1,1701,
7439482,1,437,2379,16, 92323303,16,0,219,1,
74400,482,1,188,2380, 9233447,1597,1,205,3304,
744116,0,482,1,942, 923416,0,219,1,827,
74422381,16,0,482,1, 92353305,16,0,219,1,
74431195,2382,16,0,482, 9236223,3306,16,0,219,
74441,1449,2383,16,0, 92371,476,1629,1,477,
7445482,1,1701,2384,16, 92381635,1,1231,3307,16,
74460,482,1,447,1574, 92390,219,1,479,1645,
74471,205,2385,16,0, 92401,480,1650,1,1485,
7448482,1,827,2386,16, 92413308,16,0,219,1,
74490,482,1,2724,2387, 92421737,3309,16,0,219,
745016,0,482,1,223, 92431,2746,3310,16,0,
74512388,16,0,482,1, 9244219,1,242,3311,16,
7452476,1608,1,477,1614, 92450,219,1,478,1669,
74531,1231,2389,16,0, 92461,1001,1674,1,1002,
7454482,1,479,1624,1, 92471679,1,41,3312,19,
7455480,1629,1,1485,2390, 9248183,1,41,3313,5,
745616,0,482,1,1737, 924984,1,1011,1188,1,
74572391,16,0,482,1, 92501012,3314,16,0,181,
7458242,2392,16,0,482, 92511,1013,1345,1,262,
74591,478,1647,1,1001, 92521205,1,1267,3315,16,
74601652,1,1002,1657,1, 92530,181,1,515,3316,
746121,2393,19,449,1, 925416,0,181,1,1521,
746221,2394,5,84,1, 92553317,16,0,181,1,
74631011,1166,1,1012,2395, 9256525,1302,1,283,1258,
746416,0,447,1,1013, 92571,2299,3318,16,0,
74651322,1,262,1183,1, 9258181,1,42,3319,16,
74661267,2396,16,0,447, 92590,181,1,40,1263,
74671,515,2397,16,0, 92601,44,1269,1,47,
7468447,1,1521,2398,16, 92611270,1,1303,3320,16,
74690,447,1,525,1280, 92620,181,1,1555,3321,
74701,283,1236,1,2299, 926316,0,181,1,50,
74712399,16,0,447,1, 92641287,1,48,1276,1,
747242,2400,16,0,447, 926549,1282,1,51,1292,
74731,40,1241,1,44, 92661,63,1308,1,305,
74741247,1,47,1248,1, 92671297,1,66,1315,1,
74751303,2401,16,0,447, 926867,1320,1,68,1325,
74761,1555,2402,16,0, 92691,69,1330,1,70,
7477447,1,50,1265,1, 92701335,1,73,3322,16,
747848,1254,1,49,1260, 92710,181,1,74,1340,
74791,51,1270,1,63, 92721,328,1389,1,1048,
74801286,1,305,1275,1, 92731431,1,82,3323,16,
748166,1292,1,67,1297, 92740,181,1,1840,3324,
74821,68,1302,1,69, 927516,0,181,1,1591,
74831307,1,70,1312,1, 92763325,16,0,181,1,
748473,2403,16,0,447, 92771341,3326,16,0,181,
74851,74,1317,1,328, 92781,1096,1399,1,93,
74862404,16,0,447,1, 92791405,1,352,1436,1,
74871048,2405,16,0,447, 9280107,3327,16,0,181,
74881,82,2406,16,0, 92811,1114,1430,1,118,
7489447,1,1840,2407,16, 92823328,16,0,181,1,
74900,447,1,1591,2408, 92831123,3329,16,0,181,
749116,0,447,1,1341, 92841,371,1452,1,1628,
74922409,16,0,447,1, 92853330,16,0,181,1,
74931096,1376,1,93,1382, 9286375,1463,1,1882,3331,
74941,352,2410,16,0, 928716,0,181,1,377,
7495447,1,107,2411,16, 92881468,1,379,1473,1,
74960,447,1,1114,1407, 9289380,1478,1,883,3332,
74971,118,2412,16,0, 929016,0,181,1,373,
7498447,1,1123,2413,16, 92911496,1,130,3333,16,
74990,447,1,371,1429, 92920,181,1,143,3334,
75001,1628,2414,16,0, 929316,0,181,1,387,
7501447,1,375,1440,1, 92943335,16,0,181,1,
75021882,2415,16,0,447, 92951159,3336,16,0,181,
75031,377,1445,1,379, 92961,157,3337,16,0,
75041450,1,380,1455,1, 9297181,1,1413,3338,16,
7505883,2416,16,0,447, 92980,181,1,1665,3339,
75061,373,1473,1,130, 929916,0,181,1,412,
75072417,16,0,447,1, 93003340,16,0,181,1,
7508143,2418,16,0,447, 93011377,3341,16,0,181,
75091,387,2419,16,0, 93021,172,3342,16,0,
7510447,1,1159,2420,16, 9303181,1,1939,3343,16,
75110,447,1,157,2421, 93040,181,1,437,3344,
751216,0,447,1,1413, 930516,0,181,1,188,
75132422,16,0,447,1, 93063345,16,0,181,1,
75141665,2423,16,0,447, 9307942,1576,1,1195,3346,
75151,412,2424,16,0, 930816,0,181,1,1449,
7516447,1,1377,2425,16, 93093347,16,0,181,1,
75170,447,1,172,2426, 93101701,3348,16,0,181,
751816,0,447,1,1939, 93111,447,1597,1,205,
75192427,16,0,447,1, 93123349,16,0,181,1,
7520437,2428,16,0,447, 9313827,3350,16,0,181,
75211,188,2429,16,0, 93141,223,3351,16,0,
7522447,1,942,2430,16, 9315181,1,476,1629,1,
75230,447,1,1195,2431, 9316477,1635,1,1231,3352,
752416,0,447,1,1449, 931716,0,181,1,479,
75252432,16,0,447,1, 93181645,1,480,1650,1,
75261701,2433,16,0,447, 93191485,3353,16,0,181,
75271,447,1574,1,205, 93201,1737,3354,16,0,
75282434,16,0,447,1, 9321181,1,2746,3355,16,
7529827,2435,16,0,447, 93220,181,1,242,3356,
75301,2724,2436,16,0, 932316,0,181,1,478,
7531447,1,223,2437,16, 93241669,1,1001,1674,1,
75320,447,1,476,1608, 93251002,1679,1,42,3357,
75331,477,1614,1,1231, 932619,406,1,42,3358,
75342438,16,0,447,1, 93275,38,1,1901,3359,
7535479,1624,1,480,1629, 932816,0,404,1,2075,
75361,1485,2439,16,0, 93293360,16,0,404,1,
7537447,1,1737,2440,16, 93301860,907,1,1803,873,
75380,447,1,242,2441, 93311,1804,3361,16,0,
753916,0,447,1,478, 9332404,1,2413,3362,16,
75401647,1,1001,1652,1, 93330,404,1,2198,3363,
75411002,1657,1,22,2442, 933416,0,404,1,1873,
754219,400,1,22,2443, 9335921,1,1657,979,1,
75435,84,1,1011,1166, 93361989,1002,1,1990,3364,
75441,1012,2444,16,0, 933716,0,404,1,1775,
7545398,1,1013,1322,1, 93383365,16,0,404,1,
7546262,1183,1,1267,2445, 933932,3366,16,0,404,
754716,0,398,1,515, 93401,2105,900,1,2106,
75482446,16,0,398,1, 93413367,16,0,404,1,
75491521,2447,16,0,398, 93422364,913,1,2227,993,
75501,525,1280,1,283, 93431,2337,3368,16,0,
75511236,1,2299,2448,16, 9344404,1,2021,804,1,
75520,398,1,42,2449, 93452458,961,1,2459,967,
755316,0,398,1,40, 93461,2462,974,1,2136,
75541241,1,44,1247,1, 9347928,1,2464,984,1,
755547,1248,1,1303,2450, 93482029,811,1,2030,817,
755616,0,398,1,1555, 93491,2031,822,1,2032,
75572451,16,0,398,1, 9350827,1,2033,832,1,
755850,1265,1,48,1254, 93512035,838,1,2037,843,
75591,49,1260,1,51, 93521,2039,848,1,1931,
75601270,1,63,1286,1, 9353946,1,2041,854,1,
7561305,1275,1,66,1292, 93542043,860,1,2045,865,
75621,67,1297,1,68, 93551,1574,885,1,1958,
75631302,1,69,1307,1, 93563369,16,0,404,1,
756470,1312,1,73,2452, 935743,3370,19,507,1,
756516,0,398,1,74, 935843,3371,5,25,1,
75661317,1,328,2453,16, 93592035,838,1,2037,843,
75670,398,1,1048,2454, 93601,2039,848,1,2041,
756816,0,398,1,82, 9361854,1,2227,993,1,
75692455,16,0,398,1, 93622043,860,1,1657,979,
75701840,2456,16,0,398, 93631,1860,907,1,2136,
75711,1591,2457,16,0, 9364928,1,2021,804,1,
7572398,1,1341,2458,16, 93652459,967,1,1574,885,
75730,398,1,1096,1376, 93661,2105,3372,16,0,
75741,93,1382,1,352, 9367654,1,1931,946,1,
75752459,16,0,398,1, 93681873,921,1,2031,822,
7576107,2460,16,0,398, 93691,1803,873,1,1989,
75771,1114,1407,1,118, 93703373,16,0,505,1,
75782461,16,0,398,1, 93712464,984,1,2029,811,
75791123,2462,16,0,398, 93721,2030,817,1,2364,
75801,371,1429,1,1628, 9373913,1,2032,827,1,
75812463,16,0,398,1, 93742033,832,1,2045,865,
7582375,1440,1,1882,2464, 93751,44,3374,19,278,
758316,0,398,1,377, 93761,44,3375,5,38,
75841445,1,379,1450,1, 93771,1901,3376,16,0,
7585380,1455,1,883,2465, 9378276,1,2075,3377,16,
758616,0,398,1,373, 93790,276,1,1860,907,
75871473,1,130,2466,16, 93801,1803,873,1,1804,
75880,398,1,143,2467, 93813378,16,0,276,1,
758916,0,398,1,387, 93822413,3379,16,0,276,
75902468,16,0,398,1, 93831,2198,3380,16,0,
75911159,2469,16,0,398, 9384276,1,1873,921,1,
75921,157,2470,16,0, 93851657,979,1,1989,1002,
7593398,1,1413,2471,16, 93861,1990,3381,16,0,
75940,398,1,1665,2472, 9387276,1,1775,3382,16,
759516,0,398,1,412, 93880,276,1,32,3383,
75962473,16,0,398,1, 938916,0,276,1,2105,
75971377,2474,16,0,398, 9390900,1,2106,3384,16,
75981,172,2475,16,0, 93910,276,1,2364,913,
7599398,1,1939,2476,16, 93921,2227,993,1,2337,
76000,398,1,437,2477, 93933385,16,0,276,1,
760116,0,398,1,188, 93942021,804,1,2458,961,
76022478,16,0,398,1, 93951,2459,967,1,2462,
7603942,2479,16,0,398, 9396974,1,2136,928,1,
76041,1195,2480,16,0, 93972464,984,1,2029,811,
7605398,1,1449,2481,16, 93981,2030,817,1,2031,
76060,398,1,1701,2482, 9399822,1,2032,827,1,
760716,0,398,1,447, 94002033,832,1,2035,838,
76081574,1,205,2483,16, 94011,2037,843,1,2039,
76090,398,1,827,2484, 9402848,1,1931,946,1,
761016,0,398,1,2724, 94032041,854,1,2043,860,
76112485,16,0,398,1, 94041,2045,865,1,1574,
7612223,2486,16,0,398, 9405885,1,1958,3386,16,
76131,476,1608,1,477, 94060,276,1,45,3387,
76141614,1,1231,2487,16, 940719,303,1,45,3388,
76150,398,1,479,1624, 94085,39,1,1901,3389,
76161,480,1629,1,1485, 940916,0,330,1,2075,
76172488,16,0,398,1, 94103390,16,0,330,1,
76181737,2489,16,0,398, 94111860,907,1,1803,873,
76191,242,2490,16,0, 94121,1804,3391,16,0,
7620398,1,478,1647,1, 9413330,1,2413,3392,16,
76211001,1652,1,1002,1657, 94140,330,1,2198,3393,
76221,23,2491,19,553, 941516,0,330,1,1873,
76231,23,2492,5,38, 9416921,1,1657,979,1,
76241,1901,2493,16,0, 94171989,1002,1,1990,3394,
7625551,1,2075,2494,16, 941816,0,330,1,1775,
76260,551,1,1860,885, 94193395,16,0,330,1,
76271,1803,851,1,1804, 942032,3396,16,0,330,
76282495,16,0,551,1, 94211,2105,900,1,2106,
76292413,2496,16,0,551, 94223397,16,0,330,1,
76301,2198,2497,16,0, 94232364,913,1,2227,993,
7631551,1,1873,899,1, 94241,2337,3398,16,0,
76321657,958,1,1989,980, 9425330,1,2021,804,1,
76331,1990,2498,16,0, 94262458,961,1,2459,967,
7634551,1,1775,2499,16, 94271,2462,974,1,2136,
76350,551,1,32,2500, 9428928,1,2464,984,1,
763616,0,551,1,2105, 94292029,811,1,2030,817,
7637878,1,2106,2501,16, 94301,2031,822,1,2032,
76380,551,1,2364,891, 9431827,1,2033,832,1,
76391,2227,972,1,2337, 94322035,838,1,2037,843,
76402502,16,0,551,1, 94331,2039,848,1,1931,
76412021,782,1,2458,940, 9434946,1,2041,854,1,
76421,2459,946,1,2462, 94352043,860,1,2045,865,
7643953,1,2136,906,1, 94361,1832,3399,16,0,
76442464,963,1,2029,789, 9437301,1,1574,885,1,
76451,2030,795,1,2031, 94381958,3400,16,0,330,
7646800,1,2032,805,1, 94391,46,3401,19,752,
76472033,810,1,2035,816, 94401,46,3402,5,38,
76481,2037,821,1,2039, 94411,1901,3403,16,0,
7649826,1,1931,925,1, 9442750,1,2075,3404,16,
76502041,832,1,2043,838, 94430,750,1,1860,907,
76511,2045,843,1,1574, 94441,1803,873,1,1804,
7652863,1,1958,2503,16, 94453405,16,0,750,1,
76530,551,1,24,2504, 94462413,3406,16,0,750,
765419,180,1,24,2505, 94471,2198,3407,16,0,
76555,5,1,44,2506, 9448750,1,1873,921,1,
765616,0,178,1,377, 94491657,979,1,1989,1002,
76572507,16,0,589,1, 94501,1990,3408,16,0,
765840,2508,16,0,738, 9451750,1,1775,3409,16,
76591,63,2509,16,0, 94520,750,1,32,3410,
7660203,1,373,2510,16, 945316,0,750,1,2105,
76610,585,1,25,2511, 9454900,1,2106,3411,16,
766219,302,1,25,2512, 94550,750,1,2364,913,
76635,177,1,256,2513, 94561,2227,993,1,2337,
766416,0,594,1,1261, 94573412,16,0,750,1,
76652514,16,0,594,1, 94582021,804,1,2458,961,
76661011,1166,1,1012,2515, 94591,2459,967,1,2462,
766716,0,300,1,2458, 9460974,1,2136,928,1,
7668940,1,262,1183,1, 94612464,984,1,2029,811,
76691267,2516,16,0,300, 94621,2030,817,1,2031,
76701,2021,782,1,1521, 9463822,1,2032,827,1,
76712517,16,0,300,1, 94642033,832,1,2035,838,
76721775,2518,16,0,594, 94651,2037,843,1,2039,
76731,2029,789,1,2030, 9466848,1,1931,946,1,
7674795,1,2031,800,1, 94672041,854,1,2043,860,
76752032,805,1,2033,810, 94681,2045,865,1,1574,
76761,277,2519,16,0, 9469885,1,1958,3413,16,
7677594,1,2035,816,1, 94700,750,1,47,3414,
76782037,821,1,2039,826, 947119,625,1,47,3415,
76791,32,2520,16,0, 94725,19,1,0,3416,
7680594,1,2464,963,1, 947316,0,623,1,2776,
76812293,2521,16,0,594, 94743417,17,3418,15,3419,
76821,2043,838,1,2045, 94754,52,37,0,71,
7683843,1,2299,2522,16,
76840,300,1,41,2523,
768516,0,594,1,42,
76862524,16,0,300,1,
768740,1241,1,44,1247,
76881,43,2525,16,0,
7689594,1,1804,2526,16,
76900,594,1,48,1254,
76911,49,1260,1,47,
76921248,1,51,1270,1,
769352,2527,16,0,594,
76941,50,1265,1,305,
76951275,1,1096,1376,1,
76961515,2528,16,0,594,
76971,2318,2529,16,0,
7698594,1,62,2530,16,
76990,594,1,63,1286,
77001,66,1292,1,67,
77011297,1,68,1302,1,
770269,1307,1,70,1312,
77031,71,2531,16,0,
7704594,1,283,1236,1,
770573,2532,16,0,300,
77061,74,1317,1,1013,
77071322,1,76,2533,16,
77080,594,1,1834,2534,
770916,0,594,1,2337,
77102535,16,0,594,1,
771179,2536,16,0,594,
77121,1335,2537,16,0,
7713594,1,299,2538,16,
77140,594,1,82,2539,
771516,0,300,1,1840,
77162540,16,0,300,1,
77171297,2541,16,0,594,
77181,85,2542,16,0,
7719594,1,1341,2543,16,
77200,300,1,89,2544,
772116,0,594,1,1303,
77222545,16,0,300,1,
7723509,2546,16,0,594,
77241,93,1382,1,322,
77252547,16,0,594,1,
772697,2548,16,0,594,
77271,2041,832,1,1555,
77282549,16,0,300,1,
7729827,2550,16,0,300,
77301,102,2551,16,0,
7731594,1,1860,885,1,
77321803,851,1,2364,891,
77331,107,2552,16,0,
7734300,1,1114,1407,1,
7735112,2553,16,0,594,
77361,1117,2554,16,0,
7737594,1,352,1413,1,
77381873,899,1,118,1419,
77391,1123,2555,16,0,
7740300,1,371,1429,1,
7741515,2556,16,0,300,
77421,1377,2557,16,0,
7743300,1,124,2558,16,
77440,594,1,1882,2559,
774516,0,300,1,377,
77461445,1,379,1450,1,
7747380,1455,1,130,1478,
77481,346,2560,16,0,
7749594,1,2075,2561,16,
77500,594,1,373,1473,
77511,387,2562,16,0,
7752300,1,137,2563,16,
77530,594,1,143,2564,
775416,0,300,1,1901,
77552565,16,0,594,1,
77561048,1408,1,1153,2566,
775716,0,594,1,375,
77581440,1,151,2567,16,
77590,594,1,1407,2568,
776016,0,594,1,1659,
77612569,16,0,594,1,
77622413,2570,16,0,594,
77631,1159,2571,16,0,
7764300,1,381,2572,16,
77650,594,1,157,2573,
776616,0,300,1,1413,
77672574,16,0,300,1,
7768883,2575,16,0,300,
77691,1371,2576,16,0,
7770594,1,328,1366,1,
77712105,878,1,2106,2577,
777216,0,594,1,166,
77732578,16,0,594,1,
7774525,2579,16,0,594,
77751,1622,2580,16,0,
7776594,1,406,2581,16,
77770,594,1,1574,863,
77781,172,1532,1,1931,
7779925,1,412,2582,16,
77800,300,1,1933,2583,
778116,0,594,1,1876,
77822584,16,0,594,1,
7783431,2585,16,0,594,
77841,1585,2586,16,0,
7785594,1,182,2587,16,
77860,594,1,1628,2588,
778716,0,300,1,1189,
77882589,16,0,594,1,
7789437,2590,16,0,300,
77901,1591,2591,16,0,
7791300,1,188,1581,1,
77921695,2592,16,0,594,
77931,2198,2593,16,0,
7794594,1,1195,2594,16,
77950,300,1,1449,2595,
779616,0,300,1,1701,
77972596,16,0,300,1,
7798447,2597,16,0,594,
77991,199,2598,16,0,
7800594,1,2459,946,1,
78011958,2599,16,0,594,
78021,2462,953,1,1657,
7803958,1,205,2600,16,
78040,300,1,459,2601,
780516,0,594,1,462,
78062602,16,0,594,1,
78071665,2603,16,0,300,
78081,2724,2604,16,0,
7809300,1,2718,2605,16,
78100,594,1,217,2606,
781116,0,594,1,2227,
7812972,1,942,1553,1,
78131225,2607,16,0,594,
78141,223,2608,16,0,
7815300,1,1479,2609,16,
78160,594,1,1731,2610,
781716,0,594,1,477,
78181614,1,1231,2611,16,
78190,300,1,479,1624,
78201,480,1629,1,1485,
78212612,16,0,300,1,
78221737,2613,16,0,300,
78231,1989,980,1,1990,
78242614,16,0,594,1,
78251443,2615,16,0,594,
78261,236,2616,16,0,
7827594,1,2136,906,1,
7828476,1608,1,242,2617,
782916,0,300,1,478,
78301647,1,1939,2618,16,
78310,300,1,1001,1652,
78321,1002,1657,1,1756,
78332619,16,0,594,1,
783426,2620,19,321,1,
783526,2621,5,84,1,
78361011,1166,1,1012,2622,
783716,0,319,1,1013,
78381322,1,262,1183,1,
78391267,2623,16,0,319,
78401,515,2624,16,0,
7841716,1,1521,2625,16,
78420,319,1,525,1280,
78431,283,1236,1,2299,
78442626,16,0,319,1,
784542,2627,16,0,319,
78461,40,1241,1,44,
78471247,1,47,1248,1,
78481303,2628,16,0,319,
78491,1555,2629,16,0,
7850319,1,50,1265,1,
785148,1254,1,49,1260,
78521,51,1270,1,63,
78531286,1,305,1275,1,
785466,1292,1,67,1297,
78551,68,1302,1,69,
78561307,1,70,1312,1,
785773,2630,16,0,319,
78581,74,1317,1,328,
78591366,1,1048,1408,1,
786082,2631,16,0,319,
78611,1840,2632,16,0,
7862319,1,1591,2633,16,
78630,319,1,1341,2634,
786416,0,319,1,1096,
78651376,1,93,1382,1,
7866352,1413,1,107,2635,
786716,0,319,1,1114,
78681407,1,118,1419,1,
78691123,2636,16,0,319,
78701,371,1429,1,1628,
78712637,16,0,319,1,
7872375,1440,1,1882,2638,
787316,0,319,1,377,
78741445,1,379,1450,1,
7875380,1455,1,883,2639,
787616,0,319,1,373,
78771473,1,130,1478,1,
7878143,2640,16,0,319,
78791,387,2641,16,0,
7880319,1,1159,2642,16,
78810,319,1,157,2643,
788216,0,319,1,1413,
78832644,16,0,319,1,
78841665,2645,16,0,319,
78851,412,2646,16,0,
7886319,1,1377,2647,16,
78870,319,1,172,1532,
78881,1939,2648,16,0,
7889319,1,437,2649,16,
78900,637,1,188,1581,
78911,942,1553,1,1195,
78922650,16,0,319,1,
78931449,2651,16,0,319,
78941,1701,2652,16,0,
7895319,1,447,1574,1,
7896205,2653,16,0,319,
78971,827,2654,16,0,
7898319,1,2724,2655,16,
78990,319,1,223,2656,
790016,0,319,1,476,
79011608,1,477,1614,1,
79021231,2657,16,0,319,
79031,479,1624,1,480,
79041629,1,1485,2658,16,
79050,319,1,1737,2659,
790616,0,319,1,242,
79072660,16,0,319,1,
7908478,1647,1,1001,1652,
79091,1002,1657,1,27,
79102661,19,657,1,27,
79112662,5,95,1,256,
79122663,16,0,655,1,
79131261,2664,16,0,655,
79141,509,2665,16,0,
7915655,1,1515,2666,16,
79160,655,1,2021,782,
79171,1775,2667,16,0,
7918655,1,2029,789,1,
79192030,795,1,2031,800,
79201,2032,805,1,2033,
7921810,1,277,2668,16,
79220,655,1,2035,816,
79231,2037,821,1,2039,
7924826,1,32,2669,16,
79250,655,1,2041,832,
79261,2293,2670,16,0,
7927655,1,2043,838,1,
79282045,843,1,41,2671,
792916,0,655,1,1297,
79302672,16,0,655,1,
793143,2673,16,0,655,
79321,1803,851,1,1804,
79332674,16,0,655,1,
7934299,2675,16,0,655,
79351,52,2676,16,0,
7936655,1,2318,2677,16,
79370,655,1,62,2678,
793816,0,655,1,2075,
79392679,16,0,655,1,
79401574,863,1,71,2680,
794116,0,655,1,76,
79422681,16,0,655,1,
79431834,2682,16,0,655,
79441,2337,2683,16,0,
7945655,1,79,2684,16,
79460,655,1,1335,2685,
794716,0,655,1,322,
79482686,16,0,655,1,
794985,2687,16,0,655,
79501,89,2688,16,0,
7951655,1,346,2689,16,
79520,655,1,2105,878,
79531,2106,2690,16,0,
7954655,1,97,2691,16,
79550,655,1,1860,885,
79561,2364,891,1,102,
79572692,16,0,655,1,
7958112,2693,16,0,655,
79591,1117,2694,16,0,
7960655,1,1873,899,1,
79611876,2695,16,0,655,
79621,124,2696,16,0,
7963655,1,2136,906,1,
79642718,2697,16,0,655,
79651,381,2698,16,0,
7966655,1,525,2699,16,
79670,655,1,137,2700,
796816,0,655,1,1901,
79692701,16,0,655,1,
79701153,2702,16,0,655,
79711,151,2703,16,0,
7972655,1,1407,2704,16,
79730,655,1,1659,2705,
797416,0,655,1,2413,
79752706,16,0,655,1,
7976406,2707,16,0,655,
79771,1371,2708,16,0,
7978655,1,166,2709,16,
79790,655,1,1622,2710,
798016,0,655,1,1931,
7981925,1,1933,2711,16,
79820,655,1,431,2712,
798316,0,655,1,1585,
79842713,16,0,655,1,
7985182,2714,16,0,655,
79861,1189,2715,16,0,
7987655,1,1443,2716,16,
79880,655,1,1695,2717,
798916,0,655,1,2198,
79902718,16,0,655,1,
7991447,2719,16,0,655,
79921,2458,940,1,2459,
7993946,1,1958,2720,16,
79940,655,1,2462,953,
79951,1657,958,1,2464,
7996963,1,199,2721,16,
79970,655,1,459,2722,
799816,0,655,1,462,
79992723,16,0,655,1,
8000217,2724,16,0,655,
80011,2227,972,1,1225,
80022725,16,0,655,1,
80031479,2726,16,0,655,
80041,1731,2727,16,0,
8005655,1,1989,980,1,
80061990,2728,16,0,655,
80071,236,2729,16,0,
8008655,1,1756,2730,16,
80090,655,1,28,2731,
801019,690,1,28,2732,
80115,60,1,328,1366,
80121,223,1598,1,1096,
80131376,1,118,1419,1,
8014883,1461,1,525,1280,
80151,1001,1652,1,130,
80161478,1,459,1817,1,
80171114,1407,1,352,1413,
80181,447,1574,1,464,
80191812,1,1011,1166,1,
80201013,1322,1,242,1642,
80211,143,1483,1,40,
80221241,1,41,1787,1,
802342,1791,1,479,1624,
80241,44,1247,1,481,
80251819,1,373,1473,1,
802647,1248,1,157,1506,
80271,49,1260,1,50,
80281265,1,48,1254,1,
8029379,1450,1,380,1455,
80301,51,1270,1,476,
80311608,1,371,1429,1,
8032478,1647,1,1048,1408,
80331,375,1440,1,172,
80341532,1,262,1183,1,
8035283,1236,1,63,1286,
80361,67,1297,1,68,
80371302,1,69,1307,1,
803866,1292,1,461,2733,
803916,0,688,1,74,
80401317,1,377,1445,1,
80411002,1657,1,70,1312,
80421,188,1581,1,82,
80431344,1,305,1275,1,
8044477,1614,1,827,1395,
80451,93,1382,1,480,
80461629,1,205,1587,1,
8047942,1553,1,107,1402,
80481,29,2734,19,287,
80491,29,2735,5,84,
80501,1011,1166,1,1012,
80512736,16,0,285,1,
80521013,1322,1,262,1183,
80531,1267,2737,16,0,
8054285,1,515,2738,16,
80550,285,1,1521,2739,
805616,0,285,1,525,
80571280,1,283,1236,1,
80582299,2740,16,0,285,
80591,42,2741,16,0,
8060285,1,40,1241,1,
806144,1247,1,47,1248,
80621,1303,2742,16,0,
8063285,1,1555,2743,16,
80640,285,1,50,1265,
80651,48,1254,1,49,
80661260,1,51,1270,1,
806763,1286,1,305,1275,
80681,66,1292,1,67,
80691297,1,68,1302,1,
807069,1307,1,70,1312,
80711,73,2744,16,0,
8072285,1,74,1317,1,
8073328,1366,1,1048,1408,
80741,82,2745,16,0,
8075285,1,1840,2746,16,
80760,285,1,1591,2747,
807716,0,285,1,1341,
80782748,16,0,285,1,
80791096,1376,1,93,1382,
80801,352,1413,1,107,
80812749,16,0,285,1,
80821114,1407,1,118,1419,
80831,1123,2750,16,0,
8084285,1,371,1429,1,
80851628,2751,16,0,285,
80861,375,1440,1,1882,
80872752,16,0,285,1,
8088377,1445,1,379,1450,
80891,380,1455,1,883,
80902753,16,0,285,1,
8091373,1473,1,130,1478,
80921,143,1483,1,387,
80932754,16,0,285,1,
80941159,2755,16,0,285,
80951,157,1506,1,1413,
80962756,16,0,285,1,
80971665,2757,16,0,285,
80981,412,2758,16,0,
8099285,1,1377,2759,16,
81000,285,1,172,1532,
81011,1939,2760,16,0,
8102285,1,437,2761,16,
81030,285,1,188,1581,
81041,942,1553,1,1195,
81052762,16,0,285,1,
81061449,2763,16,0,285,
81071,1701,2764,16,0,
8108285,1,447,1574,1,
8109205,2765,16,0,285,
81101,827,2766,16,0,
8111285,1,2724,2767,16,
81120,285,1,223,2768,
811316,0,285,1,476,
81141608,1,477,1614,1,
81151231,2769,16,0,285,
81161,479,1624,1,480,
81171629,1,1485,2770,16,
81180,285,1,1737,2771,
811916,0,285,1,242,
81202772,16,0,285,1,
8121478,1647,1,1001,1652,
81221,1002,1657,1,30,
81232773,19,269,1,30,
81242774,5,84,1,1011,
81251166,1,1012,2775,16,
81260,267,1,1013,1322,
81271,262,1183,1,1267,
81282776,16,0,267,1,
8129515,2777,16,0,267,
81301,1521,2778,16,0,
8131267,1,525,1280,1,
8132283,1236,1,2299,2779,
813316,0,267,1,42,
81342780,16,0,267,1,
813540,1241,1,44,1247,
81361,47,1248,1,1303,
81372781,16,0,267,1,
81381555,2782,16,0,267,
81391,50,1265,1,48,
81401254,1,49,1260,1,
814151,1270,1,63,1286,
81421,305,1275,1,66,
81431292,1,67,1297,1,
814468,1302,1,69,1307,
81451,70,1312,1,73,
81462783,16,0,267,1,
814774,1317,1,328,1366,
81481,1048,1408,1,82,
81492784,16,0,267,1,
81501840,2785,16,0,267,
81511,1591,2786,16,0,
8152267,1,1341,2787,16,
81530,267,1,1096,1376,
81541,93,1382,1,352,
81551413,1,107,2788,16,
81560,267,1,1114,1407,
81571,118,1419,1,1123,
81582789,16,0,267,1,
8159371,1429,1,1628,2790,
816016,0,267,1,375,
81611440,1,1882,2791,16,
81620,267,1,377,1445,
81631,379,1450,1,380,
81641455,1,883,2792,16,
81650,267,1,373,1473,
81661,130,1478,1,143,
81671483,1,387,2793,16,
81680,267,1,1159,2794,
816916,0,267,1,157,
81701506,1,1413,2795,16,
81710,267,1,1665,2796,
817216,0,267,1,412,
81732797,16,0,267,1,
81741377,2798,16,0,267,
81751,172,1532,1,1939,
81762799,16,0,267,1,
8177437,2800,16,0,267,
81781,188,1581,1,942,
81791553,1,1195,2801,16,
81800,267,1,1449,2802,
818116,0,267,1,1701,
81822803,16,0,267,1,
8183447,1574,1,205,2804,
818416,0,267,1,827,
81852805,16,0,267,1,
81862724,2806,16,0,267,
81871,223,2807,16,0,
8188267,1,476,1608,1,
8189477,1614,1,1231,2808,
819016,0,267,1,479,
81911624,1,480,1629,1,
81921485,2809,16,0,267,
81931,1737,2810,16,0,
8194267,1,242,2811,16,
81950,267,1,478,1647,
81961,1001,1652,1,1002,
81971657,1,31,2812,19,
8198258,1,31,2813,5,
819984,1,1011,1166,1,
82001012,2814,16,0,256,
82011,1013,1322,1,262,
82021183,1,1267,2815,16,
82030,256,1,515,2816,
820416,0,256,1,1521,
82052817,16,0,256,1,
8206525,1280,1,283,1236,
82071,2299,2818,16,0,
8208256,1,42,2819,16,
82090,256,1,40,1241,
82101,44,1247,1,47,
82111248,1,1303,2820,16,
82120,256,1,1555,2821,
821316,0,256,1,50,
82141265,1,48,1254,1,
821549,1260,1,51,1270,
82161,63,1286,1,305,
82171275,1,66,1292,1,
821867,1297,1,68,1302,
82191,69,1307,1,70,
82201312,1,73,2822,16,
82210,256,1,74,1317,
82221,328,1366,1,1048,
82231408,1,82,2823,16,
82240,256,1,1840,2824,
822516,0,256,1,1591,
82262825,16,0,256,1,
82271341,2826,16,0,256,
82281,1096,1376,1,93,
82291382,1,352,1413,1,
8230107,2827,16,0,256,
82311,1114,1407,1,118,
82321419,1,1123,2828,16,
82330,256,1,371,1429,
82341,1628,2829,16,0,
8235256,1,375,1440,1,
82361882,2830,16,0,256,
82371,377,1445,1,379,
82381450,1,380,1455,1,
8239883,2831,16,0,256,
82401,373,1473,1,130,
82411478,1,143,2832,16,
82420,256,1,387,2833,
824316,0,256,1,1159,
82442834,16,0,256,1,
8245157,2835,16,0,256,
82461,1413,2836,16,0,
8247256,1,1665,2837,16,
82480,256,1,412,2838,
824916,0,256,1,1377,
82502839,16,0,256,1,
8251172,1532,1,1939,2840,
825216,0,256,1,437,
82532841,16,0,256,1,
8254188,1581,1,942,1553,
82551,1195,2842,16,0,
8256256,1,1449,2843,16,
82570,256,1,1701,2844,
825816,0,256,1,447,
82591574,1,205,2845,16,
82600,256,1,827,2846,
826116,0,256,1,2724,
82622847,16,0,256,1,
8263223,2848,16,0,256,
82641,476,1608,1,477,
82651614,1,1231,2849,16,
82660,256,1,479,1624,
82671,480,1629,1,1485,
82682850,16,0,256,1,
82691737,2851,16,0,256,
82701,242,2852,16,0,
8271256,1,478,1647,1,
82721001,1652,1,1002,1657,
82731,32,2853,19,251,
82741,32,2854,5,84,
82751,1011,1166,1,1012,
82762855,16,0,249,1,
82771013,1322,1,262,1183,
82781,1267,2856,16,0,
8279249,1,515,2857,16,
82800,249,1,1521,2858,
828116,0,249,1,525,
82821280,1,283,1236,1,
82832299,2859,16,0,249,
82841,42,2860,16,0,
8285249,1,40,1241,1,
828644,1247,1,47,1248,
82871,1303,2861,16,0,
8288249,1,1555,2862,16,
82890,249,1,50,1265,
82901,48,1254,1,49,
82911260,1,51,1270,1,
829263,1286,1,305,1275,
82931,66,1292,1,67,
82941297,1,68,1302,1,
829569,1307,1,70,1312,
82961,73,2863,16,0,
8297249,1,74,1317,1,
8298328,1366,1,1048,1408,
82991,82,2864,16,0,
8300249,1,1840,2865,16,
83010,249,1,1591,2866,
830216,0,249,1,1341,
83032867,16,0,249,1,
83041096,1376,1,93,1382,
83051,352,1413,1,107,
83062868,16,0,249,1,
83071114,1407,1,118,1419,
83081,1123,2869,16,0,
8309249,1,371,1429,1,
83101628,2870,16,0,249,
83111,375,1440,1,1882,
83122871,16,0,249,1,
8313377,1445,1,379,1450,
83141,380,1455,1,883,
83152872,16,0,249,1,
8316373,1473,1,130,1478,
83171,143,2873,16,0,
8318249,1,387,2874,16,
83190,249,1,1159,2875,
832016,0,249,1,157,
83212876,16,0,249,1,
83221413,2877,16,0,249,
83231,1665,2878,16,0,
8324249,1,412,2879,16,
83250,249,1,1377,2880,
832616,0,249,1,172,
83271532,1,1939,2881,16,
83280,249,1,437,2882,
832916,0,249,1,188,
83301581,1,942,1553,1,
83311195,2883,16,0,249,
83321,1449,2884,16,0,
8333249,1,1701,2885,16,
83340,249,1,447,1574,
83351,205,2886,16,0,
8336249,1,827,2887,16,
83370,249,1,2724,2888,
833816,0,249,1,223,
83392889,16,0,249,1,
8340476,1608,1,477,1614,
83411,1231,2890,16,0,
8342249,1,479,1624,1,
8343480,1629,1,1485,2891,
834416,0,249,1,1737,
83452892,16,0,249,1,
8346242,2893,16,0,249,
83471,478,1647,1,1001,
83481652,1,1002,1657,1,
834933,2894,19,349,1,
835033,2895,5,84,1,
83511011,1166,1,1012,2896,
835216,0,347,1,1013,
83531322,1,262,1183,1,
83541267,2897,16,0,347,
83551,515,2898,16,0,
8356347,1,1521,2899,16,
83570,347,1,525,1280,
83581,283,1236,1,2299,
83592900,16,0,347,1,
836042,2901,16,0,347,
83611,40,1241,1,44,
83621247,1,47,1248,1,
83631303,2902,16,0,347,
83641,1555,2903,16,0,
8365347,1,50,1265,1,
836648,1254,1,49,1260,
83671,51,1270,1,63,
83681286,1,305,1275,1,
836966,1292,1,67,1297,
83701,68,1302,1,69,
83711307,1,70,1312,1,
837273,2904,16,0,347,
83731,74,1317,1,328,
83741366,1,1048,1408,1,
837582,2905,16,0,347,
83761,1840,2906,16,0,
8377347,1,1591,2907,16,
83780,347,1,1341,2908,
837916,0,347,1,1096,
83801376,1,93,1382,1,
8381352,1413,1,107,2909,
838216,0,347,1,1114,
83831407,1,118,1419,1,
83841123,2910,16,0,347,
83851,371,1429,1,1628,
83862911,16,0,347,1,
8387375,1440,1,1882,2912,
838816,0,347,1,377,
83891445,1,379,1450,1,
8390380,1455,1,883,2913,
839116,0,347,1,373,
83921473,1,130,1478,1,
8393143,1483,1,387,2914,
839416,0,347,1,1159,
83952915,16,0,347,1,
8396157,1506,1,1413,2916,
839716,0,347,1,1665,
83982917,16,0,347,1,
8399412,2918,16,0,347,
84001,1377,2919,16,0,
8401347,1,172,1532,1,
84021939,2920,16,0,347,
84031,437,2921,16,0,
8404347,1,188,1581,1,
8405942,1553,1,1195,2922,
840616,0,347,1,1449,
84072923,16,0,347,1,
84081701,2924,16,0,347,
84091,447,1574,1,205,
84102925,16,0,347,1,
8411827,2926,16,0,347,
84121,2724,2927,16,0,
8413347,1,223,2928,16,
84140,347,1,476,1608,
84151,477,1614,1,1231,
84162929,16,0,347,1,
8417479,1624,1,480,1629,
84181,1485,2930,16,0,
8419347,1,1737,2931,16,
84200,347,1,242,1642,
84211,478,1647,1,1001,
84221652,1,1002,1657,1,
842334,2932,19,335,1,
842434,2933,5,84,1,
84251011,1166,1,1012,2934,
842616,0,333,1,1013,
84271322,1,262,1183,1,
84281267,2935,16,0,333,
84291,515,2936,16,0,
8430333,1,1521,2937,16,
84310,333,1,525,1280,
84321,283,1236,1,2299,
84332938,16,0,333,1,
843442,2939,16,0,333,
84351,40,1241,1,44,
84361247,1,47,1248,1,
84371303,2940,16,0,333,
84381,1555,2941,16,0,
8439333,1,50,1265,1,
844048,1254,1,49,1260,
84411,51,1270,1,63,
84421286,1,305,1275,1,
844366,1292,1,67,1297,
84441,68,1302,1,69,
84451307,1,70,1312,1,
844673,2942,16,0,333,
84471,74,1317,1,328,
84481366,1,1048,1408,1,
844982,2943,16,0,333,
84501,1840,2944,16,0,
8451333,1,1591,2945,16,
84520,333,1,1341,2946,
845316,0,333,1,1096,
84541376,1,93,1382,1,
8455352,1413,1,107,2947,
845616,0,333,1,1114,
84571407,1,118,1419,1,
84581123,2948,16,0,333,
84591,371,1429,1,1628,
84602949,16,0,333,1,
8461375,1440,1,1882,2950,
846216,0,333,1,377,
84631445,1,379,1450,1,
8464380,1455,1,883,2951,
846516,0,333,1,373,
84661473,1,130,1478,1,
8467143,1483,1,387,2952,
846816,0,333,1,1159,
84692953,16,0,333,1,
8470157,1506,1,1413,2954,
847116,0,333,1,1665,
84722955,16,0,333,1,
8473412,2956,16,0,333,
84741,1377,2957,16,0,
8475333,1,172,1532,1,
84761939,2958,16,0,333,
84771,437,2959,16,0,
8478333,1,188,1581,1,
8479942,1553,1,1195,2960,
848016,0,333,1,1449,
84812961,16,0,333,1,
84821701,2962,16,0,333,
84831,447,1574,1,205,
84841587,1,827,2963,16,
84850,333,1,2724,2964,
848616,0,333,1,223,
84871598,1,476,1608,1,
8488477,1614,1,1231,2965,
848916,0,333,1,479,
84901624,1,480,1629,1,
84911485,2966,16,0,333,
84921,1737,2967,16,0,
8493333,1,242,1642,1,
8494478,1647,1,1001,1652,
84951,1002,1657,1,35,
84962968,19,324,1,35,
84972969,5,84,1,1011,
84981166,1,1012,2970,16,
84990,322,1,1013,1322,
85001,262,1183,1,1267,
85012971,16,0,322,1,
8502515,2972,16,0,322,
85031,1521,2973,16,0,
8504322,1,525,1280,1,
8505283,1236,1,2299,2974,
850616,0,322,1,42,
85072975,16,0,322,1,
850840,1241,1,44,1247,
85091,47,1248,1,1303,
85102976,16,0,322,1,
85111555,2977,16,0,322,
85121,50,1265,1,48,
85131254,1,49,1260,1,
851451,1270,1,63,1286,
85151,305,1275,1,66,
85161292,1,67,1297,1,
851768,1302,1,69,1307,
85181,70,1312,1,73,
85192978,16,0,322,1,
852074,1317,1,328,1366,
85211,1048,1408,1,82,
85222979,16,0,322,1,
85231840,2980,16,0,322,
85241,1591,2981,16,0,
8525322,1,1341,2982,16,
85260,322,1,1096,1376,
85271,93,1382,1,352,
85281413,1,107,2983,16,
85290,322,1,1114,1407,
85301,118,1419,1,1123,
85312984,16,0,322,1,
8532371,1429,1,1628,2985,
853316,0,322,1,375,
85341440,1,1882,2986,16,
85350,322,1,377,1445,
85361,379,1450,1,380,
85371455,1,883,2987,16,
85380,322,1,373,1473,
85391,130,1478,1,143,
85401483,1,387,2988,16,
85410,322,1,1159,2989,
854216,0,322,1,157,
85431506,1,1413,2990,16,
85440,322,1,1665,2991,
854516,0,322,1,412,
85462992,16,0,322,1,
85471377,2993,16,0,322,
85481,172,1532,1,1939,
85492994,16,0,322,1,
8550437,2995,16,0,322,
85511,188,1581,1,942,
85521553,1,1195,2996,16,
85530,322,1,1449,2997,
855416,0,322,1,1701,
85552998,16,0,322,1,
8556447,1574,1,205,1587,
85571,827,2999,16,0,
8558322,1,2724,3000,16,
85590,322,1,223,3001,
856016,0,322,1,476,
85611608,1,477,1614,1,
85621231,3002,16,0,322,
85631,479,1624,1,480,
85641629,1,1485,3003,16,
85650,322,1,1737,3004,
856616,0,322,1,242,
85671642,1,478,1647,1,
85681001,1652,1,1002,1657,
85691,36,3005,19,223,
85701,36,3006,5,94,
85711,256,3007,16,0,
8572221,1,1261,3008,16,
85730,221,1,509,3009,
857416,0,221,1,1515,
85753010,16,0,221,1,
85762021,782,1,1775,3011,
857716,0,221,1,2029,
8578789,1,2030,795,1,
85792031,800,1,2032,805,
85801,2033,810,1,277,
85813012,16,0,221,1,
85822035,816,1,2037,821,
85831,2039,826,1,32,
85843013,16,0,221,1,
85852041,832,1,2293,3014,
858616,0,221,1,2043,
8587838,1,2045,843,1,
858841,3015,16,0,221,
85891,1297,3016,16,0,
8590221,1,43,3017,16,
85910,221,1,1803,851,
85921,1804,3018,16,0,
8593221,1,299,3019,16,
85940,221,1,52,3020,
859516,0,221,1,2318,
85963021,16,0,221,1,
85972075,3022,16,0,221,
85981,1574,863,1,71,
85993023,16,0,221,1,
860076,3024,16,0,221,
86011,1834,3025,16,0,
8602221,1,2337,3026,16,
86030,221,1,79,3027,
860416,0,221,1,1335,
86053028,16,0,221,1,
8606322,3029,16,0,221,
86071,85,3030,16,0,
8608221,1,89,3031,16,
86090,221,1,346,3032,
861016,0,221,1,2105,
8611878,1,2106,3033,16,
86120,221,1,97,3034,
861316,0,221,1,1860,
8614885,1,2364,891,1,
8615102,3035,16,0,221,
86161,112,3036,16,0,
8617221,1,1117,3037,16,
86180,221,1,1873,899,
86191,1876,3038,16,0,
8620221,1,124,3039,16,
86210,221,1,2136,906,
86221,2718,3040,16,0,
8623221,1,381,3041,16,
86240,221,1,525,3042,
862516,0,221,1,137,
86263043,16,0,221,1,
86271901,3044,16,0,221,
86281,1153,3045,16,0,
8629221,1,151,3046,16,
86300,221,1,1407,3047,
863116,0,221,1,1659,
86323048,16,0,221,1,
86332413,3049,16,0,221,
86341,406,3050,16,0,
8635221,1,1371,3051,16,
86360,221,1,166,3052,
863716,0,221,1,1622,
86383053,16,0,221,1,
86391931,925,1,1933,3054,
864016,0,221,1,431,
86413055,16,0,221,1,
86421585,3056,16,0,221,
86431,182,3057,16,0,
8644221,1,1189,3058,16,
86450,221,1,1443,3059,
864616,0,221,1,1695,
86473060,16,0,221,1,
86482198,3061,16,0,221,
86491,447,3062,16,0,
8650221,1,2458,940,1,
86512459,946,1,1958,3063,
865216,0,221,1,2462,
8653953,1,1657,958,1,
86542464,963,1,199,3064,
865516,0,221,1,459,
86563065,16,0,221,1,
8657462,3066,16,0,221,
86581,217,3067,16,0,
8659221,1,2227,972,1,
86601225,3068,16,0,221,
86611,1479,3069,16,0,
8662221,1,1731,3070,16,
86630,221,1,1989,980,
86641,1990,3071,16,0,
8665221,1,236,3072,16,
86660,221,1,1756,3073,
866716,0,221,1,37,
86683074,19,241,1,37,
86693075,5,94,1,256,
86703076,16,0,239,1,
86711261,3077,16,0,239,
86721,509,3078,16,0,
8673239,1,1515,3079,16,
86740,239,1,2021,782,
86751,1775,3080,16,0,
8676239,1,2029,789,1,
86772030,795,1,2031,800,
86781,2032,805,1,2033,
8679810,1,277,3081,16,
86800,239,1,2035,816,
86811,2037,821,1,2039,
8682826,1,32,3082,16,
86830,239,1,2041,832,
86841,2293,3083,16,0,
8685239,1,2043,838,1,
86862045,843,1,41,3084,
868716,0,239,1,1297,
86883085,16,0,239,1,
868943,3086,16,0,239,
86901,1803,851,1,1804,
86913087,16,0,239,1,
8692299,3088,16,0,239,
86931,52,3089,16,0,
8694239,1,2318,3090,16,
86950,239,1,2075,3091,
869616,0,239,1,1574,
8697863,1,71,3092,16,
86980,239,1,76,3093,
869916,0,239,1,1834,
87003094,16,0,239,1,
87012337,3095,16,0,239,
87021,79,3096,16,0,
8703239,1,1335,3097,16,
87040,239,1,322,3098,
870516,0,239,1,85,
87063099,16,0,239,1,
870789,3100,16,0,239,
87081,346,3101,16,0,
8709239,1,2105,878,1,
87102106,3102,16,0,239,
87111,97,3103,16,0,
8712239,1,1860,885,1,
87132364,891,1,102,3104,
871416,0,239,1,112,
87153105,16,0,239,1,
87161117,3106,16,0,239,
87171,1873,899,1,1876,
87183107,16,0,239,1,
8719124,3108,16,0,239,
87201,2136,906,1,2718,
87213109,16,0,239,1,
8722381,3110,16,0,239,
87231,525,3111,16,0,
8724239,1,137,3112,16,
87250,239,1,1901,3113,
872616,0,239,1,1153,
87273114,16,0,239,1,
8728151,3115,16,0,239,
87291,1407,3116,16,0,
8730239,1,1659,3117,16,
87310,239,1,2413,3118,
873216,0,239,1,406,
87333119,16,0,239,1,
87341371,3120,16,0,239,
87351,166,3121,16,0,
8736239,1,1622,3122,16,
87370,239,1,1931,925,
87381,1933,3123,16,0,
8739239,1,431,3124,16,
87400,239,1,1585,3125,
874116,0,239,1,182,
87423126,16,0,239,1,
87431189,3127,16,0,239,
87441,1443,3128,16,0,
8745239,1,1695,3129,16,
87460,239,1,2198,3130,
874716,0,239,1,447,
87483131,16,0,239,1,
87492458,940,1,2459,946,
87501,1958,3132,16,0,
8751239,1,2462,953,1,
87521657,958,1,2464,963,
87531,199,3133,16,0,
8754239,1,459,3134,16,
87550,239,1,462,3135,
875616,0,239,1,217,
87573136,16,0,239,1,
87582227,972,1,1225,3137,
875916,0,239,1,1479,
87603138,16,0,239,1,
87611731,3139,16,0,239,
87621,1989,980,1,1990,
87633140,16,0,239,1,
8764236,3141,16,0,239,
87651,1756,3142,16,0,
8766239,1,38,3143,19,
8767238,1,38,3144,5,
876884,1,1011,1166,1,
87691012,3145,16,0,236,
87701,1013,1322,1,262,
87711183,1,1267,3146,16,
87720,236,1,515,3147,
877316,0,236,1,1521,
87743148,16,0,236,1,
8775525,1280,1,283,1236,
87761,2299,3149,16,0,
8777236,1,42,3150,16,
87780,236,1,40,1241,
87791,44,1247,1,47,
87801248,1,1303,3151,16,
87810,236,1,1555,3152,
878216,0,236,1,50,
87831265,1,48,1254,1,
878449,1260,1,51,1270,
87851,63,1286,1,305,
87861275,1,66,1292,1,
878767,1297,1,68,1302,
87881,69,1307,1,70,
87891312,1,73,3153,16,
87900,236,1,74,1317,
87911,328,1366,1,1048,
87921408,1,82,3154,16,
87930,236,1,1840,3155,
879416,0,236,1,1591,
87953156,16,0,236,1,
87961341,3157,16,0,236,
87971,1096,1376,1,93,
87981382,1,352,1413,1,
8799107,3158,16,0,236,
88001,1114,1407,1,118,
88011419,1,1123,3159,16,
88020,236,1,371,1429,
88031,1628,3160,16,0,
8804236,1,375,1440,1,
88051882,3161,16,0,236,
88061,377,1445,1,379,
88071450,1,380,1455,1,
8808883,1461,1,373,1473,
88091,130,1478,1,143,
88101483,1,387,3162,16,
88110,236,1,1159,3163,
881216,0,236,1,157,
88131506,1,1413,3164,16,
88140,236,1,1665,3165,
881516,0,236,1,412,
88163166,16,0,236,1,
88171377,3167,16,0,236,
88181,172,1532,1,1939,
88193168,16,0,236,1,
8820437,3169,16,0,236,
88211,188,1581,1,942,
88221553,1,1195,3170,16,
88230,236,1,1449,3171,
882416,0,236,1,1701,
88253172,16,0,236,1,
8826447,1574,1,205,1587,
88271,827,1395,1,2724,
88283173,16,0,236,1,
8829223,1598,1,476,1608,
88301,477,1614,1,1231,
88313174,16,0,236,1,
8832479,1624,1,480,1629,
88331,1485,3175,16,0,
8834236,1,1737,3176,16,
88350,236,1,242,1642,
88361,478,1647,1,1001,
88371652,1,1002,1657,1,
883839,3177,19,229,1,
883939,3178,5,84,1,
88401011,1166,1,1012,3179,
884116,0,227,1,1013,
88421322,1,262,1183,1,
88431267,3180,16,0,227,
88441,515,3181,16,0,
8845227,1,1521,3182,16,
88460,227,1,525,1280,
88471,283,1236,1,2299,
88483183,16,0,227,1,
884942,3184,16,0,227,
88501,40,1241,1,44,
88511247,1,47,1248,1,
88521303,3185,16,0,227,
88531,1555,3186,16,0,
8854227,1,50,1265,1,
885548,1254,1,49,1260,
88561,51,1270,1,63,
88571286,1,305,1275,1,
885866,1292,1,67,1297,
88591,68,1302,1,69,
88601307,1,70,1312,1,
886173,3187,16,0,227,
88621,74,1317,1,328,
88631366,1,1048,1408,1,
886482,3188,16,0,227,
88651,1840,3189,16,0,
8866227,1,1591,3190,16,
88670,227,1,1341,3191,
886816,0,227,1,1096,
88691376,1,93,1382,1,
8870352,1413,1,107,3192,
887116,0,227,1,1114,
88721407,1,118,1419,1,
88731123,3193,16,0,227,
88741,371,1429,1,1628,
88753194,16,0,227,1,
8876375,1440,1,1882,3195,
887716,0,227,1,377,
88781445,1,379,1450,1,
8879380,1455,1,883,1461,
88801,373,1473,1,130,
88811478,1,143,1483,1,
8882387,3196,16,0,227,
88831,1159,3197,16,0,
8884227,1,157,1506,1,
88851413,3198,16,0,227,
88861,1665,3199,16,0,
8887227,1,412,3200,16,
88880,227,1,1377,3201,
888916,0,227,1,172,
88901532,1,1939,3202,16,
88910,227,1,437,3203,
889216,0,227,1,188,
88931581,1,942,1553,1,
88941195,3204,16,0,227,
88951,1449,3205,16,0,
8896227,1,1701,3206,16,
88970,227,1,447,1574,
88981,205,1587,1,827,
88991395,1,2724,3207,16,
89000,227,1,223,1598,
89011,476,1608,1,477,
89021614,1,1231,3208,16,
89030,227,1,479,1624,
89041,480,1629,1,1485,
89053209,16,0,227,1,
89061737,3210,16,0,227,
89071,242,1642,1,478,
89081647,1,1001,1652,1,
89091002,1657,1,40,3211,
891019,217,1,40,3212,
89115,84,1,1011,1166,
89121,1012,3213,16,0,
8913215,1,1013,1322,1,
8914262,1183,1,1267,3214,
891516,0,215,1,515,
89163215,16,0,215,1,
89171521,3216,16,0,215,
89181,525,1280,1,283,
89191236,1,2299,3217,16,
89200,215,1,42,3218,
892116,0,215,1,40,
89221241,1,44,1247,1,
892347,1248,1,1303,3219,
892416,0,215,1,1555,
89253220,16,0,215,1,
892650,1265,1,48,1254,
89271,49,1260,1,51,
89281270,1,63,1286,1,
8929305,1275,1,66,1292,
89301,67,1297,1,68,
89311302,1,69,1307,1,
893270,1312,1,73,3221,
893316,0,215,1,74,
89341317,1,328,1366,1,
89351048,1408,1,82,3222,
893616,0,215,1,1840,
89373223,16,0,215,1,
89381591,3224,16,0,215,
89391,1341,3225,16,0,
8940215,1,1096,1376,1,
894193,1382,1,352,1413,
89421,107,3226,16,0,
8943215,1,1114,1407,1,
8944118,3227,16,0,215,
89451,1123,3228,16,0,
8946215,1,371,1429,1,
89471628,3229,16,0,215,
89481,375,1440,1,1882,
89493230,16,0,215,1,
8950377,1445,1,379,1450,
89511,380,1455,1,883,
89523231,16,0,215,1,
8953373,1473,1,130,3232,
895416,0,215,1,143,
89553233,16,0,215,1,
8956387,3234,16,0,215,
89571,1159,3235,16,0,
8958215,1,157,3236,16,
89590,215,1,1413,3237,
896016,0,215,1,1665,
89613238,16,0,215,1,
8962412,3239,16,0,215,
89631,1377,3240,16,0,
8964215,1,172,3241,16,
89650,215,1,1939,3242,
896616,0,215,1,437,
89673243,16,0,215,1,
8968188,3244,16,0,215,
89691,942,1553,1,1195,
89703245,16,0,215,1,
89711449,3246,16,0,215,
89721,1701,3247,16,0,
8973215,1,447,1574,1,
8974205,3248,16,0,215,
89751,827,3249,16,0,
8976215,1,2724,3250,16,
89770,215,1,223,3251,
897816,0,215,1,476,
89791608,1,477,1614,1,
89801231,3252,16,0,215,
89811,479,1624,1,480,
89821629,1,1485,3253,16,
89830,215,1,1737,3254,
898416,0,215,1,242,
89853255,16,0,215,1,
8986478,1647,1,1001,1652,
89871,1002,1657,1,41,
89883256,19,175,1,41,
89893257,5,84,1,1011,
89901166,1,1012,3258,16,
89910,173,1,1013,1322,
89921,262,1183,1,1267,
89933259,16,0,173,1,
8994515,3260,16,0,173,
89951,1521,3261,16,0,
8996173,1,525,1280,1,
8997283,1236,1,2299,3262,
899816,0,173,1,42,
89993263,16,0,173,1,
900040,1241,1,44,1247,
90011,47,1248,1,1303,
90023264,16,0,173,1,
90031555,3265,16,0,173,
90041,50,1265,1,48,
90051254,1,49,1260,1,
900651,1270,1,63,1286,
90071,305,1275,1,66,
90081292,1,67,1297,1,
900968,1302,1,69,1307,
90101,70,1312,1,73,
90113266,16,0,173,1,
901274,1317,1,328,1366,
90131,1048,1408,1,82,
90143267,16,0,173,1,
90151840,3268,16,0,173,
90161,1591,3269,16,0,
9017173,1,1341,3270,16,
90180,173,1,1096,1376,
90191,93,1382,1,352,
90201413,1,107,3271,16,
90210,173,1,1114,1407,
90221,118,3272,16,0,
9023173,1,1123,3273,16,
90240,173,1,371,1429,
90251,1628,3274,16,0,
9026173,1,375,1440,1,
90271882,3275,16,0,173,
90281,377,1445,1,379,
90291450,1,380,1455,1,
9030883,3276,16,0,173,
90311,373,1473,1,130,
90323277,16,0,173,1,
9033143,3278,16,0,173,
90341,387,3279,16,0,
9035173,1,1159,3280,16,
90360,173,1,157,3281,
903716,0,173,1,1413,
90383282,16,0,173,1,
90391665,3283,16,0,173,
90401,412,3284,16,0,
9041173,1,1377,3285,16,
90420,173,1,172,3286,
904316,0,173,1,1939,
90443287,16,0,173,1,
9045437,3288,16,0,173,
90461,188,3289,16,0,
9047173,1,942,1553,1,
90481195,3290,16,0,173,
90491,1449,3291,16,0,
9050173,1,1701,3292,16,
90510,173,1,447,1574,
90521,205,3293,16,0,
9053173,1,827,3294,16,
90540,173,1,2724,3295,
905516,0,173,1,223,
90563296,16,0,173,1,
9057476,1608,1,477,1614,
90581,1231,3297,16,0,
9059173,1,479,1624,1,
9060480,1629,1,1485,3298,
906116,0,173,1,1737,
90623299,16,0,173,1,
9063242,3300,16,0,173,
90641,478,1647,1,1001,
90651652,1,1002,1657,1,
906642,3301,19,411,1,
906742,3302,5,38,1,
90681901,3303,16,0,409,
90691,2075,3304,16,0,
9070409,1,1860,885,1,
90711803,851,1,1804,3305,
907216,0,409,1,2413,
90733306,16,0,409,1,
90742198,3307,16,0,409,
90751,1873,899,1,1657,
9076958,1,1989,980,1,
90771990,3308,16,0,409,
90781,1775,3309,16,0,
9079409,1,32,3310,16,
90800,409,1,2105,878,
90811,2106,3311,16,0,
9082409,1,2364,891,1,
90832227,972,1,2337,3312,
908416,0,409,1,2021,
9085782,1,2458,940,1,
90862459,946,1,2462,953,
90871,2136,906,1,2464,
9088963,1,2029,789,1,
90892030,795,1,2031,800,
90901,2032,805,1,2033,
9091810,1,2035,816,1,
90922037,821,1,2039,826,
90931,1931,925,1,2041,
9094832,1,2043,838,1,
90952045,843,1,1574,863,
90961,1958,3313,16,0,
9097409,1,43,3314,19,
9098505,1,43,3315,5,
909925,1,2035,816,1,
91002037,821,1,2039,826,
91011,2041,832,1,2227,
9102972,1,2043,838,1,
91031657,958,1,1860,885,
91041,2136,906,1,2021,
9105782,1,2459,946,1,
91061574,863,1,2105,3316,
910716,0,626,1,1931,
9108925,1,1873,899,1,
91092031,800,1,1803,851,
91101,1989,3317,16,0,
9111503,1,2464,963,1,
91122029,789,1,2030,795,
91131,2364,891,1,2032,
9114805,1,2033,810,1,
91152045,843,1,44,3318,
911619,265,1,44,3319,
91175,38,1,1901,3320,
911816,0,263,1,2075,
91193321,16,0,263,1,
91201860,885,1,1803,851,
91211,1804,3322,16,0,
9122263,1,2413,3323,16,
91230,263,1,2198,3324,
912416,0,263,1,1873,
9125899,1,1657,958,1,
91261989,980,1,1990,3325,
912716,0,263,1,1775,
91283326,16,0,263,1,
912932,3327,16,0,263,
91301,2105,878,1,2106,
91313328,16,0,263,1,
91322364,891,1,2227,972,
91331,2337,3329,16,0,
9134263,1,2021,782,1,
91352458,940,1,2459,946,
91361,2462,953,1,2136,
9137906,1,2464,963,1,
91382029,789,1,2030,795,
91391,2031,800,1,2032,
9140805,1,2033,810,1,
91412035,816,1,2037,821,
91421,2039,826,1,1931,
9143925,1,2041,832,1,
91442043,838,1,2045,843,
91451,1574,863,1,1958,
91463330,16,0,263,1,
914745,3331,19,295,1,
914845,3332,5,39,1,
91491901,3333,16,0,328,
91501,2075,3334,16,0,
9151328,1,1860,885,1,
91521803,851,1,1804,3335,
915316,0,328,1,2413,
91543336,16,0,328,1,
91552198,3337,16,0,328,
91561,1873,899,1,1657,
9157958,1,1989,980,1,
91581990,3338,16,0,328,
91591,1775,3339,16,0,
9160328,1,32,3340,16,
91610,328,1,2105,878,
91621,2106,3341,16,0,
9163328,1,2364,891,1,
91642227,972,1,2337,3342,
916516,0,328,1,2021,
9166782,1,2458,940,1,
91672459,946,1,2462,953,
91681,2136,906,1,2464,
9169963,1,2029,789,1,
91702030,795,1,2031,800,
91711,2032,805,1,2033,
9172810,1,2035,816,1,
91732037,821,1,2039,826,
91741,1931,925,1,2041,
9175832,1,2043,838,1,
91762045,843,1,1832,3343,
917716,0,293,1,1574,
9178863,1,1958,3344,16,
91790,328,1,46,3345,
918019,729,1,46,3346,
91815,38,1,1901,3347,
918216,0,727,1,2075,
91833348,16,0,727,1,
91841860,885,1,1803,851,
91851,1804,3349,16,0,
9186727,1,2413,3350,16,
91870,727,1,2198,3351,
918816,0,727,1,1873,
9189899,1,1657,958,1,
91901989,980,1,1990,3352,
919116,0,727,1,1775,
91923353,16,0,727,1,
919332,3354,16,0,727,
91941,2105,878,1,2106,
91953355,16,0,727,1,
91962364,891,1,2227,972,
91971,2337,3356,16,0,
9198727,1,2021,782,1,
91992458,940,1,2459,946,
92001,2462,953,1,2136,
9201906,1,2464,963,1,
92022029,789,1,2030,795,
92031,2031,800,1,2032,
9204805,1,2033,810,1,
92052035,816,1,2037,821,
92061,2039,826,1,1931,
9207925,1,2041,832,1,
92082043,838,1,2045,843,
92091,1574,863,1,1958,
92103357,16,0,727,1,
921147,3358,19,618,1,
921247,3359,5,19,1,
92130,3360,16,0,725,
92141,2776,3361,17,3362,
921515,3363,4,36,37,
92160,71,0,108,0,
9217111,0,98,0,97,
92180,108,0,68,0,
9219101,0,102,0,105,
92200,110,0,105,0,
9221116,0,105,0,111,
92220,110,0,115,0,
92231,-1,1,5,3364,
922420,3365,4,38,71,
92250,108,0,111,0,
922698,0,97,0,108,
92270,68,0,101,0,
9228102,0,105,0,110,
92290,105,0,116,0,
9230105,0,111,0,110,
92310,115,0,95,0,
923249,0,1,158,1,
92333,1,2,1,1,
92343366,22,1,3,1,
92352743,3367,17,3368,15,
92363369,4,52,37,0,
923771,0,108,0,111,
92380,98,0,97,0,
9239108,0,86,0,97,
92400,114,0,105,0,
924197,0,98,0,108,
92420,101,0,68,0,
9243101,0,99,0,108,
92440,97,0,114,0,
924597,0,116,0,105,
92460,111,0,110,0,
92471,-1,1,5,3370,
924820,3371,4,54,71,
92490,108,0,111,0, 94760,108,0,111,0,
925098,0,97,0,108, 947798,0,97,0,108,
92510,86,0,97,0, 94780,86,0,97,0,
@@ -9255,87 +9482,101 @@ public yyLSLSyntax
92550,99,0,108,0, 94820,99,0,108,0,
925697,0,114,0,97, 948397,0,114,0,97,
92570,116,0,105,0, 94840,116,0,105,0,
9258111,0,110,0,95, 9485111,0,110,0,1,
92590,50,0,1,163, 9486-1,1,5,3420,20,
92601,3,1,5,1, 94873421,4,54,71,0,
92614,3372,22,1,8, 9488108,0,111,0,98,
92621,2022,3373,16,0, 94890,97,0,108,0,
9263616,1,2775,3374,17, 949086,0,97,0,114,
92643375,15,3363,1,-1, 94910,105,0,97,0,
92651,5,3376,20,3377, 949298,0,108,0,101,
92664,38,71,0,108, 94930,68,0,101,0,
949499,0,108,0,97,
94950,114,0,97,0,
9496116,0,105,0,111,
94970,110,0,95,0,
949849,0,1,166,1,
94993,1,3,1,2,
95003422,22,1,7,1,
95012777,3423,16,0,623,
95021,2711,765,1,2788,
95033424,16,0,623,1,
95042722,788,1,2022,3425,
950516,0,645,1,2459,
9506967,1,2795,3426,17,
95073427,15,3428,4,36,
950837,0,71,0,108,
92670,111,0,98,0, 95090,111,0,98,0,
926897,0,108,0,68, 951097,0,108,0,68,
92690,101,0,102,0, 95110,101,0,102,0,
9270105,0,110,0,105, 9512105,0,110,0,105,
92710,116,0,105,0, 95130,116,0,105,0,
9272111,0,110,0,115, 9514111,0,110,0,115,
92730,95,0,51,0, 95150,1,-1,1,5,
92741,160,1,3,1, 95163429,20,3430,4,38,
92752,1,1,3378,22, 951771,0,108,0,111,
92761,5,1,2699,761, 95180,98,0,97,0,
92771,2715,3379,17,3380, 9519108,0,68,0,101,
927815,3381,4,50,37, 95200,102,0,105,0,
92790,71,0,108,0, 9521110,0,105,0,116,
95220,105,0,111,0,
9523110,0,115,0,95,
95240,52,0,1,165,
95251,3,1,3,1,
95262,3431,22,1,6,
95271,2796,3432,17,3433,
952815,3428,1,-1,1,
95295,3434,20,3435,4,
953038,71,0,108,0,
9280111,0,98,0,97, 9531111,0,98,0,97,
92810,108,0,70,0, 95320,108,0,68,0,
9282117,0,110,0,99, 9533101,0,102,0,105,
92830,116,0,105,0, 95340,110,0,105,0,
9284111,0,110,0,68, 9535116,0,105,0,111,
95360,110,0,115,0,
953795,0,50,0,1,
9538163,1,3,1,3,
95391,2,3436,22,1,
95404,1,2797,3437,17,
95413438,15,3428,1,-1,
95421,5,3439,20,3440,
95434,38,71,0,108,
95440,111,0,98,0,
954597,0,108,0,68,
92850,101,0,102,0, 95460,101,0,102,0,
9286105,0,110,0,105, 9547105,0,110,0,105,
92870,116,0,105,0, 95480,116,0,105,0,
9288111,0,110,0,1, 9549111,0,110,0,115,
9289-1,1,5,3382,20, 95500,95,0,51,0,
92903383,4,52,71,0,
9291108,0,111,0,98,
92920,97,0,108,0,
929370,0,117,0,110,
92940,99,0,116,0,
9295105,0,111,0,110,
92960,68,0,101,0,
9297102,0,105,0,110,
92980,105,0,116,0,
9299105,0,111,0,110,
93000,95,0,49,0,
93011,164,1,3,1, 95511,164,1,3,1,
93026,1,5,3384,22, 95522,1,1,3441,22,
93031,9,1,2774,3385, 95531,5,1,2798,3442,
930417,3386,15,3363,1, 955417,3443,15,3428,1,
9305-1,1,5,3387,20, 9555-1,1,5,3444,20,
93063388,4,38,71,0, 95563445,4,38,71,0,
9307108,0,111,0,98, 9557108,0,111,0,98,
93080,97,0,108,0, 95580,97,0,108,0,
930968,0,101,0,102, 955968,0,101,0,102,
93100,105,0,110,0, 95600,105,0,110,0,
9311105,0,116,0,105, 9561105,0,116,0,105,
93120,111,0,110,0, 95620,111,0,110,0,
9313115,0,95,0,50, 9563115,0,95,0,49,
93140,1,159,1,3, 95640,1,162,1,3,
93151,3,1,2,3389, 95651,2,1,1,3446,
931622,1,4,1,2754, 956622,1,3,1,2466,
93173390,17,3391,15,3369, 95673447,17,3448,15,3449,
93181,-1,1,5,3392, 95684,50,37,0,71,
931920,3393,4,54,71,
93200,108,0,111,0, 95690,108,0,111,0,
932198,0,97,0,108, 957098,0,97,0,108,
93220,86,0,97,0, 95710,70,0,117,0,
9323114,0,105,0,97, 9572110,0,99,0,116,
93240,98,0,108,0, 95730,105,0,111,0,
9325101,0,68,0,101, 9574110,0,68,0,101,
93260,99,0,108,0, 95750,102,0,105,0,
932797,0,114,0,97, 9576110,0,105,0,116,
93280,116,0,105,0, 95770,105,0,111,0,
9329111,0,110,0,95, 9578110,0,1,-1,1,
93300,49,0,1,162, 95795,3450,20,3451,4,
93311,3,1,3,1,
93322,3394,22,1,7,
93331,2755,3395,16,0,
9334725,1,2598,755,1,
93352464,963,1,2459,946,
93361,2466,3396,17,3397,
933715,3381,1,-1,1,
93385,3398,20,3399,4,
933952,71,0,108,0, 958052,71,0,108,0,
9340111,0,98,0,97, 9581111,0,98,0,97,
93410,108,0,70,0, 95820,108,0,70,0,
@@ -9346,2599 +9587,2676 @@ public yyLSLSyntax
9346105,0,110,0,105, 9587105,0,110,0,105,
93470,116,0,105,0, 95880,116,0,105,0,
9348111,0,110,0,95, 9589111,0,110,0,95,
93490,50,0,1,165, 95900,50,0,1,169,
93501,3,1,7,1, 95911,3,1,7,1,
93516,3400,22,1,10, 95926,3452,22,1,10,
93521,2690,771,1,2766, 95931,2615,793,1,2765,
93533401,16,0,725,1, 95943453,17,3454,15,3419,
93542696,3402,16,0,725, 95951,-1,1,5,3455,
93551,2773,3403,17,3404, 959620,3456,4,54,71,
935615,3363,1,-1,1, 95970,108,0,111,0,
93575,3405,20,3406,4, 959898,0,97,0,108,
935838,71,0,108,0, 95990,86,0,97,0,
9359111,0,98,0,97, 9600114,0,105,0,97,
93600,108,0,68,0, 96010,98,0,108,0,
9361101,0,102,0,105, 9602101,0,68,0,101,
93620,110,0,105,0, 96030,99,0,108,0,
9363116,0,105,0,111, 960497,0,114,0,97,
93640,110,0,115,0, 96050,116,0,105,0,
936595,0,52,0,1, 9606111,0,110,0,95,
9366161,1,3,1,3, 96070,50,0,1,167,
93671,2,3407,22,1, 96081,3,1,5,1,
93686,1,2700,743,1, 96094,3457,22,1,8,
936948,3408,19,356,1, 96101,2464,984,1,2718,
937048,3409,5,54,1, 96113458,16,0,623,1,
93710,3410,16,0,354, 96122721,777,1,2737,3459,
93721,2075,3411,16,0, 961317,3460,15,3449,1,
9373544,1,2773,3403,1, 9614-1,1,5,3461,20,
93741860,885,1,1804,3412, 96153462,4,52,71,0,
937516,0,544,1,2413, 9616108,0,111,0,98,
93763413,16,0,544,1, 96170,97,0,108,0,
93772743,3367,1,1873,899, 961870,0,117,0,110,
93781,1657,958,1,2030, 96190,99,0,116,0,
9379795,1,1989,980,1, 9620105,0,111,0,110,
93801990,3414,16,0,544, 96210,68,0,101,0,
93811,2754,3390,1,2755, 9622102,0,105,0,110,
93823415,16,0,354,1, 96230,105,0,116,0,
93831775,3416,16,0,544, 9624105,0,111,0,110,
93841,32,3417,16,0, 96250,95,0,49,0,
9385544,1,2105,878,1, 96261,168,1,3,1,
93862106,3418,16,0,544, 96276,1,5,3463,22,
93871,2699,761,1,2766, 96281,9,1,48,3464,
93883419,16,0,354,1, 962919,351,1,48,3465,
93892227,972,1,2337,3420, 96305,54,1,0,3466,
939016,0,544,1,2774, 963116,0,349,1,2075,
93913385,1,2775,3374,1, 96323467,16,0,546,1,
93922776,3361,1,2696,3421, 96331860,907,1,1804,3468,
939316,0,354,1,1803, 963416,0,546,1,2737,
9394851,1,2458,940,1, 96353459,1,2337,3469,16,
93951901,3422,16,0,544, 96360,546,1,2413,3470,
93961,2462,953,1,2136, 963716,0,546,1,2198,
9397906,1,2464,963,1, 96383471,16,0,546,1,
93982029,789,1,2466,3396, 96391873,921,1,1657,979,
93991,2031,800,1,2032, 96401,2030,817,1,2032,
9400805,1,2033,810,1, 9641827,1,1989,1002,1,
94012035,816,1,2690,771, 96421990,3472,16,0,546,
94021,2364,891,1,2715, 96431,2035,838,1,1775,
94033379,1,2039,826,1, 96443473,16,0,546,1,
94041931,925,1,2041,832, 964532,3474,16,0,546,
94051,2021,782,1,2043, 96461,2105,900,1,2106,
9406838,1,2045,843,1, 96473475,16,0,546,1,
94072700,743,1,2198,3423, 96482721,777,1,2765,3453,
940816,0,544,1,2598, 96491,2227,993,1,1901,
9409755,1,2037,821,1, 96503476,16,0,546,1,
94101574,863,1,1958,3424, 96512776,3417,1,2777,3477,
941116,0,544,1,2459, 965216,0,349,1,1803,
9412946,1,49,3425,19, 9653873,1,2458,961,1,
9413549,1,49,3426,5, 96542459,967,1,2788,3478,
941438,1,1901,3427,16, 965516,0,349,1,2462,
94150,547,1,2075,3428, 9656974,1,2136,928,1,
941616,0,547,1,1860, 96572464,984,1,2029,811,
9417885,1,1803,851,1, 96581,2466,3447,1,2031,
94181804,3429,16,0,547, 9659822,1,2795,3426,1,
94191,2413,3430,16,0, 96602796,3432,1,2797,3437,
9420547,1,2198,3431,16, 96611,2798,3442,1,2364,
94210,547,1,1873,899, 9662913,1,2039,848,1,
94221,1657,958,1,1989, 96631931,946,1,2041,854,
9423980,1,1990,3432,16, 96641,2021,804,1,2043,
94240,547,1,1775,3433, 9665860,1,2045,865,1,
942516,0,547,1,32, 96662033,832,1,2711,765,
94263434,16,0,547,1, 96671,2037,843,1,1574,
94272105,878,1,2106,3435, 9668885,1,2718,3479,16,
942816,0,547,1,2364, 96690,349,1,1958,3480,
9429891,1,2227,972,1, 967016,0,546,1,2722,
94302337,3436,16,0,547, 9671788,1,2615,793,1,
94311,2021,782,1,2458, 967249,3481,19,551,1,
9432940,1,2459,946,1, 967349,3482,5,38,1,
94332462,953,1,2136,906, 96741901,3483,16,0,549,
94341,2464,963,1,2029, 96751,2075,3484,16,0,
9435789,1,2030,795,1, 9676549,1,1860,907,1,
94362031,800,1,2032,805, 96771803,873,1,1804,3485,
94371,2033,810,1,2035, 967816,0,549,1,2413,
9438816,1,2037,821,1, 96793486,16,0,549,1,
94392039,826,1,1931,925, 96802198,3487,16,0,549,
94401,2041,832,1,2043, 96811,1873,921,1,1657,
9441838,1,2045,843,1, 9682979,1,1989,1002,1,
94421574,863,1,1958,3437, 96831990,3488,16,0,549,
944316,0,547,1,50, 96841,1775,3489,16,0,
94443438,19,670,1,50, 9685549,1,32,3490,16,
94453439,5,38,1,1901, 96860,549,1,2105,900,
94463440,16,0,668,1, 96871,2106,3491,16,0,
94472075,3441,16,0,668, 9688549,1,2364,913,1,
94481,1860,885,1,1803, 96892227,993,1,2337,3492,
9449851,1,1804,3442,16, 969016,0,549,1,2021,
94500,668,1,2413,3443, 9691804,1,2458,961,1,
945116,0,668,1,2198, 96922459,967,1,2462,974,
94523444,16,0,668,1, 96931,2136,928,1,2464,
94531873,899,1,1657,958, 9694984,1,2029,811,1,
94541,1989,980,1,1990, 96952030,817,1,2031,822,
94553445,16,0,668,1, 96961,2032,827,1,2033,
94561775,3446,16,0,668, 9697832,1,2035,838,1,
94571,32,3447,16,0, 96982037,843,1,2039,848,
9458668,1,2105,878,1, 96991,1931,946,1,2041,
94592106,3448,16,0,668, 9700854,1,2043,860,1,
94601,2364,891,1,2227, 97012045,865,1,1574,885,
9461972,1,2337,3449,16, 97021,1958,3493,16,0,
94620,668,1,2021,782, 9703549,1,50,3494,19,
94631,2458,940,1,2459, 9704689,1,50,3495,5,
9464946,1,2462,953,1, 970538,1,1901,3496,16,
94652136,906,1,2464,963, 97060,687,1,2075,3497,
94661,2029,789,1,2030, 970716,0,687,1,1860,
9467795,1,2031,800,1, 9708907,1,1803,873,1,
94682032,805,1,2033,810, 97091804,3498,16,0,687,
94691,2035,816,1,2037, 97101,2413,3499,16,0,
9470821,1,2039,826,1, 9711687,1,2198,3500,16,
94711931,925,1,2041,832, 97120,687,1,1873,921,
94721,2043,838,1,2045, 97131,1657,979,1,1989,
9473843,1,1574,863,1, 97141002,1,1990,3501,16,
94741958,3450,16,0,668, 97150,687,1,1775,3502,
94751,51,3451,19,127, 971616,0,687,1,32,
94761,51,3452,5,54, 97173503,16,0,687,1,
94771,0,3453,16,0, 97182105,900,1,2106,3504,
9478125,1,2538,3454,16, 971916,0,687,1,2364,
94790,125,1,2075,3455, 9720913,1,2227,993,1,
948016,0,125,1,1860, 97212337,3505,16,0,687,
9481885,1,2515,3456,16, 97221,2021,804,1,2458,
94820,465,1,1804,3457, 9723961,1,2459,967,1,
948316,0,125,1,10, 97242462,974,1,2136,928,
94843458,16,0,125,1, 97251,2464,984,1,2029,
94852413,3459,16,0,125, 9726811,1,2030,817,1,
94861,2743,3367,1,1873, 97272031,822,1,2032,827,
9487899,1,21,3460,16, 97281,2033,832,1,2035,
94880,125,1,1657,958, 9729838,1,2037,843,1,
94891,2030,795,1,2773, 97302039,848,1,1931,946,
94903403,1,1990,3461,16, 97311,2041,854,1,2043,
94910,125,1,2754,3390, 9732860,1,2045,865,1,
94921,2755,3462,16,0, 97331574,885,1,1958,3506,
9493125,1,1775,3463,16, 973416,0,687,1,51,
94940,125,1,32,3464, 97353507,19,127,1,51,
949516,0,125,1,2105, 97363508,5,55,1,0,
9496878,1,2106,3465,16, 97373509,16,0,125,1,
94970,125,1,2227,972, 97382075,3510,16,0,125,
94981,2337,3466,16,0, 97391,1860,907,1,10,
9499125,1,2774,3385,1, 97403511,16,0,125,1,
95002775,3374,1,2776,3361, 97412737,3459,1,2337,3512,
95011,52,3467,16,0, 974216,0,125,1,2413,
9502125,1,1803,851,1, 97433513,16,0,125,1,
95032458,940,1,1901,3468, 97442198,3514,16,0,125,
950416,0,125,1,2462, 97451,1873,921,1,21,
9505953,1,2136,906,1, 97463515,16,0,125,1,
95062464,963,1,2029,789, 97471657,979,1,2531,3516,
95071,2466,3396,1,2031, 974816,0,446,1,2032,
9508800,1,2032,805,1, 9749827,1,1989,1002,1,
95092033,810,1,2035,816, 97501990,3517,16,0,125,
95101,2364,891,1,2715, 97511,2458,961,1,1775,
95113379,1,2039,826,1, 97523518,16,0,125,1,
95121931,925,1,2041,832, 975332,3519,16,0,125,
95131,2021,782,1,2043, 97541,2105,900,1,2106,
9514838,1,2045,843,1, 97553520,16,0,125,1,
95152702,3469,16,0,125, 97562765,3453,1,2553,3521,
95161,2198,3470,16,0, 975716,0,125,1,2227,
9517125,1,1989,980,1, 9758993,1,1901,3522,16,
95182037,821,1,1574,863, 97590,125,1,2776,3417,
95191,1958,3471,16,0, 97601,52,3523,16,0,
9520125,1,2459,946,1, 9761125,1,1803,873,1,
952152,3472,19,124,1, 97621804,3524,16,0,125,
952252,3473,5,53,1, 97631,2459,967,1,2462,
95230,3474,16,0,122, 9764974,1,2136,928,1,
95241,2075,3475,16,0, 97652464,984,1,2029,811,
9525122,1,1860,885,1, 97661,2466,3447,1,2031,
95261804,3476,16,0,122, 9767822,1,2795,3426,1,
95271,10,3477,16,0, 97682796,3432,1,2797,3437,
9528122,1,2413,3478,16, 97691,2798,3442,1,2364,
95290,122,1,2743,3367, 9770913,1,2039,848,1,
95301,1873,899,1,21, 97711931,946,1,2041,854,
95313479,16,0,122,1, 97721,2021,804,1,2043,
95321657,958,1,2030,795, 9773860,1,2045,865,1,
95331,2773,3403,1,1990, 97742724,3525,16,0,125,
95343480,16,0,122,1, 97751,2030,817,1,2033,
95352754,3390,1,2755,3481, 9776832,1,2035,838,1,
953616,0,122,1,2538, 97772037,843,1,2777,3526,
95373482,16,0,122,1, 977816,0,125,1,1574,
953832,3483,16,0,122, 9779885,1,1958,3527,16,
95391,2105,878,1,2106, 97800,125,1,2506,3528,
95403484,16,0,122,1, 978116,0,446,1,52,
95412227,972,1,2337,3485, 97823529,19,124,1,52,
954216,0,122,1,2198, 97833530,5,53,1,0,
95433486,16,0,122,1, 97843531,16,0,122,1,
95442775,3374,1,2776,3361, 97852075,3532,16,0,122,
95451,52,3487,16,0, 97861,1860,907,1,1804,
9546122,1,1803,851,1, 97873533,16,0,122,1,
95472458,940,1,1901,3488, 978810,3534,16,0,122,
954816,0,122,1,2462, 97891,2737,3459,1,2337,
9549953,1,2136,906,1, 97903535,16,0,122,1,
95502464,963,1,2029,789, 97912413,3536,16,0,122,
95511,2466,3396,1,2031, 97921,2198,3537,16,0,
9552800,1,2032,805,1, 9793122,1,1873,921,1,
95532033,810,1,2035,816, 979421,3538,16,0,122,
95541,2364,891,1,2715, 97951,1657,979,1,2030,
95553379,1,2039,826,1, 9796817,1,2032,827,1,
95561931,925,1,2041,832, 97971989,1002,1,1990,3539,
95571,2021,782,1,2043, 979816,0,122,1,2035,
9558838,1,2045,843,1, 9799838,1,1775,3540,16,
95592702,3489,16,0,122, 98000,122,1,32,3541,
95601,1775,3490,16,0, 980116,0,122,1,2105,
9561122,1,1989,980,1, 9802900,1,2106,3542,16,
95622774,3385,1,2037,821, 98030,122,1,2765,3453,
95631,1574,863,1,1958, 98041,2553,3543,16,0,
95643491,16,0,122,1, 9805122,1,2227,993,1,
95652459,946,1,53,3492, 98061901,3544,16,0,122,
956619,121,1,53,3493, 98071,2776,3417,1,52,
95675,53,1,0,3494, 98083545,16,0,122,1,
956816,0,119,1,2075, 98091803,873,1,2458,961,
95693495,16,0,119,1, 98101,2459,967,1,2462,
95701860,885,1,1804,3496, 9811974,1,2136,928,1,
957116,0,119,1,10, 98122464,984,1,2029,811,
95723497,16,0,119,1, 98131,2466,3447,1,2031,
95732413,3498,16,0,119, 9814822,1,2795,3426,1,
95741,2743,3367,1,1873, 98152796,3432,1,2797,3437,
9575899,1,21,3499,16, 98161,2798,3442,1,2364,
95760,119,1,1657,958, 9817913,1,2039,848,1,
95771,2030,795,1,2773, 98181931,946,1,2041,854,
95783403,1,1990,3500,16, 98191,2021,804,1,2043,
95790,119,1,2754,3390, 9820860,1,2045,865,1,
95801,2755,3501,16,0, 98212033,832,1,2037,843,
9581119,1,2538,3502,16, 98221,2777,3546,16,0,
95820,119,1,32,3503, 9823122,1,1574,885,1,
958316,0,119,1,2105, 98241958,3547,16,0,122,
9584878,1,2106,3504,16, 98251,2724,3548,16,0,
95850,119,1,2227,972, 9826122,1,53,3549,19,
95861,2337,3505,16,0, 9827121,1,53,3550,5,
9587119,1,2198,3506,16, 982853,1,0,3551,16,
95880,119,1,2775,3374, 98290,119,1,2075,3552,
95891,2776,3361,1,52, 983016,0,119,1,1860,
95903507,16,0,119,1, 9831907,1,1804,3553,16,
95911803,851,1,2458,940, 98320,119,1,10,3554,
95921,1901,3508,16,0, 983316,0,119,1,2737,
9593119,1,2462,953,1, 98343459,1,2337,3555,16,
95942136,906,1,2464,963, 98350,119,1,2413,3556,
95951,2029,789,1,2466, 983616,0,119,1,2198,
95963396,1,2031,800,1, 98373557,16,0,119,1,
95972032,805,1,2033,810, 98381873,921,1,21,3558,
95981,2035,816,1,2364, 983916,0,119,1,1657,
9599891,1,2715,3379,1, 9840979,1,2030,817,1,
96002039,826,1,1931,925, 98412032,827,1,1989,1002,
96011,2041,832,1,2021, 98421,1990,3559,16,0,
9602782,1,2043,838,1, 9843119,1,2035,838,1,
96032045,843,1,2702,3509, 98441775,3560,16,0,119,
960416,0,119,1,1775, 98451,32,3561,16,0,
96053510,16,0,119,1, 9846119,1,2105,900,1,
96061989,980,1,2774,3385, 98472106,3562,16,0,119,
96071,2037,821,1,1574, 98481,2765,3453,1,2553,
9608863,1,1958,3511,16, 98493563,16,0,119,1,
96090,119,1,2459,946, 98502227,993,1,1901,3564,
96101,54,3512,19,118, 985116,0,119,1,2776,
96111,54,3513,5,54, 98523417,1,52,3565,16,
96121,0,3514,16,0, 98530,119,1,1803,873,
9613116,1,2538,3515,16, 98541,2458,961,1,2459,
96140,116,1,2075,3516, 9855967,1,2462,974,1,
961516,0,116,1,1860, 98562136,928,1,2464,984,
9616885,1,1804,3517,16, 98571,2029,811,1,2466,
96170,116,1,10,3518, 98583447,1,2031,822,1,
961816,0,116,1,2413, 98592795,3426,1,2796,3432,
96193519,16,0,116,1, 98601,2797,3437,1,2798,
96202524,3520,16,0,480, 98613442,1,2364,913,1,
96211,2743,3367,1,1873, 98622039,848,1,1931,946,
9622899,1,21,3521,16, 98631,2041,854,1,2021,
96230,116,1,1657,958, 9864804,1,2043,860,1,
96241,2030,795,1,2773, 98652045,865,1,2033,832,
96253403,1,1990,3522,16, 98661,2037,843,1,2777,
96260,116,1,2754,3390, 98673566,16,0,119,1,
96271,2755,3523,16,0, 98681574,885,1,1958,3567,
9628116,1,1775,3524,16, 986916,0,119,1,2724,
96290,116,1,32,3525, 98703568,16,0,119,1,
963016,0,116,1,2105, 987154,3569,19,118,1,
9631878,1,2106,3526,16, 987254,3570,5,54,1,
96320,116,1,2227,972, 98730,3571,16,0,116,
96331,2337,3527,16,0, 98741,2539,3572,16,0,
9634116,1,2774,3385,1, 9875497,1,1860,907,1,
96352775,3374,1,2776,3361, 98761804,3573,16,0,116,
96361,52,3528,16,0, 98771,10,3574,16,0,
9637116,1,1803,851,1, 9878116,1,2737,3459,1,
96382458,940,1,1901,3529, 98792337,3575,16,0,116,
963916,0,116,1,2462, 98801,2413,3576,16,0,
9640953,1,2136,906,1, 9881116,1,2198,3577,16,
96412464,963,1,2029,789, 98820,116,1,1873,921,
96421,2466,3396,1,2031, 98831,21,3578,16,0,
9643800,1,2032,805,1, 9884116,1,1657,979,1,
96442033,810,1,2035,816, 98852030,817,1,2032,827,
96451,2364,891,1,2715, 98861,1989,1002,1,1990,
96463379,1,2039,826,1, 98873579,16,0,116,1,
96471931,925,1,2041,832, 98882035,838,1,1775,3580,
96481,2021,782,1,2043, 988916,0,116,1,32,
9649838,1,2045,843,1, 98903581,16,0,116,1,
96502702,3530,16,0,116, 98912105,900,1,2106,3582,
96511,2198,3531,16,0, 989216,0,116,1,2765,
9652116,1,1989,980,1, 98933453,1,2553,3583,16,
96532037,821,1,1574,863, 98940,116,1,2227,993,
96541,1958,3532,16,0, 98951,1901,3584,16,0,
9655116,1,2459,946,1, 9896116,1,2776,3417,1,
965655,3533,19,115,1, 989752,3585,16,0,116,
965755,3534,5,54,1, 98981,1803,873,1,2458,
96580,3535,16,0,113, 9899961,1,2459,967,1,
96591,2538,3536,16,0, 99002462,974,1,2136,928,
9660113,1,2075,3537,16, 99011,2464,984,1,2029,
96610,113,1,1860,885, 9902811,1,2466,3447,1,
96621,1804,3538,16,0, 99032031,822,1,2795,3426,
9663113,1,10,3539,16, 99041,2796,3432,1,2797,
96640,113,1,2413,3540, 99053437,1,2798,3442,1,
966516,0,113,1,2743, 99062364,913,1,2039,848,
96663367,1,1873,899,1, 99071,1931,946,1,2041,
966721,3541,16,0,113, 9908854,1,2021,804,1,
96681,1657,958,1,2030, 99092043,860,1,2045,865,
9669795,1,2773,3403,1, 99101,2033,832,1,2075,
96701990,3542,16,0,113, 99113586,16,0,116,1,
96711,2754,3390,1,2755, 99122037,843,1,2777,3587,
96723543,16,0,113,1, 991316,0,116,1,1574,
96731775,3544,16,0,113, 9914885,1,1958,3588,16,
96741,32,3545,16,0, 99150,116,1,2724,3589,
9675113,1,2105,878,1, 991616,0,116,1,55,
96762041,832,1,2227,972, 99173590,19,115,1,55,
96771,2337,3546,16,0, 99183591,5,54,1,0,
9678113,1,2774,3385,1, 99193592,16,0,113,1,
96792775,3374,1,2776,3361, 99202075,3593,16,0,113,
96801,52,3547,16,0, 99211,1860,907,1,1804,
9681113,1,1803,851,1, 99223594,16,0,113,1,
96822458,940,1,1901,3548, 992310,3595,16,0,113,
968316,0,113,1,2462, 99241,2737,3459,1,2337,
9684953,1,2136,906,1, 99253596,16,0,113,1,
96852464,963,1,2029,789, 99262413,3597,16,0,113,
96861,2466,3396,1,2031, 99271,2198,3598,16,0,
9687800,1,2032,805,1, 9928113,1,1873,921,1,
96882033,810,1,2035,816, 992921,3599,16,0,113,
96891,2364,891,1,2715, 99301,1657,979,1,2030,
96903379,1,2039,826,1, 9931817,1,2032,827,1,
96911931,925,1,2506,3549, 99321989,1002,1,1990,3600,
969216,0,451,1,2021, 993316,0,113,1,2035,
9693782,1,2043,838,1, 9934838,1,1775,3601,16,
96942045,843,1,2702,3550, 99350,113,1,32,3602,
969516,0,113,1,2198, 993616,0,113,1,2105,
96963551,16,0,113,1, 9937900,1,2106,3603,16,
96971989,980,1,2037,821, 99380,113,1,2765,3453,
96981,1574,863,1,2106, 99391,2553,3604,16,0,
96993552,16,0,113,1, 9940113,1,2227,993,1,
97001958,3553,16,0,113, 99411901,3605,16,0,113,
97011,2459,946,1,56, 99421,2776,3417,1,52,
97023554,19,112,1,56, 99433606,16,0,113,1,
97033555,5,53,1,0, 99441803,873,1,2458,961,
97043556,16,0,110,1, 99451,2459,967,1,2462,
97052075,3557,16,0,110, 9946974,1,2136,928,1,
97061,1860,885,1,1804, 99472464,984,1,2029,811,
97073558,16,0,110,1, 99481,2466,3447,1,2031,
970810,3559,16,0,110, 9949822,1,2795,3426,1,
97091,2413,3560,16,0, 99502796,3432,1,2797,3437,
9710110,1,2743,3367,1, 99511,2798,3442,1,2364,
97111873,899,1,21,3561, 9952913,1,2039,848,1,
971216,0,110,1,1657, 99531931,946,1,2041,854,
9713958,1,2030,795,1, 99541,2021,804,1,2043,
97142773,3403,1,1990,3562, 9955860,1,2045,865,1,
971516,0,110,1,2754, 99562033,832,1,2522,3607,
97163390,1,2755,3563,16, 995716,0,467,1,2037,
97170,110,1,2538,3564, 9958843,1,2777,3608,16,
971816,0,110,1,32, 99590,113,1,1574,885,
97193565,16,0,110,1, 99601,1958,3609,16,0,
97202105,878,1,2106,3566, 9961113,1,2724,3610,16,
972116,0,110,1,2227, 99620,113,1,56,3611,
9722972,1,2337,3567,16, 996319,112,1,56,3612,
97230,110,1,2198,3568, 99645,55,1,0,3613,
972416,0,110,1,2775, 996516,0,110,1,2510,
97253374,1,2776,3361,1, 99663614,16,0,662,1,
972652,3569,16,0,110, 99672075,3615,16,0,110,
97271,1803,851,1,2458, 99681,1860,907,1,10,
9728940,1,1901,3570,16, 99693616,16,0,110,1,
97290,110,1,2462,953, 99702737,3459,1,2337,3617,
97301,2136,906,1,2464, 997116,0,110,1,2413,
9731963,1,2029,789,1, 99723618,16,0,110,1,
97322466,3396,1,2031,800, 99732198,3619,16,0,110,
97331,2032,805,1,2033, 99741,1873,921,1,21,
9734810,1,2035,816,1, 99753620,16,0,110,1,
97352364,891,1,2715,3379, 99761657,979,1,2030,817,
97361,2039,826,1,1931, 99771,2032,827,1,1989,
9737925,1,2041,832,1, 99781002,1,1990,3621,16,
97382021,782,1,2043,838, 99790,110,1,2458,961,
97391,2045,843,1,2702, 99801,1775,3622,16,0,
97403571,16,0,110,1, 9981110,1,32,3623,16,
97411775,3572,16,0,110, 99820,110,1,2105,900,
97421,1989,980,1,2774, 99831,2106,3624,16,0,
97433385,1,2037,821,1, 9984110,1,2765,3453,1,
97441574,863,1,1958,3573, 99852553,3625,16,0,110,
974516,0,110,1,2459, 99861,2227,993,1,1901,
9746946,1,57,3574,19, 99873626,16,0,110,1,
9747109,1,57,3575,5, 99882776,3417,1,52,3627,
974853,1,0,3576,16, 998916,0,110,1,1803,
97490,107,1,2075,3577, 9990873,1,1804,3628,16,
975016,0,107,1,1860, 99910,110,1,2459,967,
9751885,1,1804,3578,16, 99921,2462,974,1,2136,
97520,107,1,10,3579, 9993928,1,2464,984,1,
99942029,811,1,2466,3447,
99951,2031,822,1,2795,
99963426,1,2796,3432,1,
99972797,3437,1,2798,3442,
99981,2364,913,1,2039,
9999848,1,1931,946,1,
100002041,854,1,2021,804,
100011,2043,860,1,2045,
10002865,1,2514,3629,16,
100030,662,1,2033,832,
100041,2035,838,1,2037,
10005843,1,2777,3630,16,
100060,110,1,1574,885,
100071,1958,3631,16,0,
10008110,1,2724,3632,16,
100090,110,1,57,3633,
1001019,109,1,57,3634,
100115,53,1,0,3635,
1001216,0,107,1,2075,
100133636,16,0,107,1,
100141860,907,1,1804,3637,
1001516,0,107,1,10,
100163638,16,0,107,1,
100172737,3459,1,2337,3639,
975316,0,107,1,2413, 1001816,0,107,1,2413,
97543580,16,0,107,1, 100193640,16,0,107,1,
97552743,3367,1,1873,899, 100202198,3641,16,0,107,
97561,21,3581,16,0, 100211,1873,921,1,21,
9757107,1,1657,958,1, 100223642,16,0,107,1,
97582030,795,1,2773,3403, 100231657,979,1,2030,817,
97591,1990,3582,16,0, 100241,2032,827,1,1989,
9760107,1,2754,3390,1, 100251002,1,1990,3643,16,
97612755,3583,16,0,107, 100260,107,1,2035,838,
97621,2538,3584,16,0, 100271,1775,3644,16,0,
9763107,1,32,3585,16, 10028107,1,32,3645,16,
97640,107,1,2105,878, 100290,107,1,2105,900,
97651,2106,3586,16,0, 100301,2106,3646,16,0,
9766107,1,2227,972,1, 10031107,1,2765,3453,1,
97672337,3587,16,0,107, 100322553,3647,16,0,107,
97681,2198,3588,16,0, 100331,2227,993,1,1901,
9769107,1,2775,3374,1, 100343648,16,0,107,1,
97702776,3361,1,52,3589, 100352776,3417,1,52,3649,
977116,0,107,1,1803, 1003616,0,107,1,1803,
9772851,1,2458,940,1, 10037873,1,2458,961,1,
97731901,3590,16,0,107, 100382459,967,1,2462,974,
97741,2462,953,1,2136, 100391,2136,928,1,2464,
9775906,1,2464,963,1, 10040984,1,2029,811,1,
97762029,789,1,2466,3396, 100412466,3447,1,2031,822,
97771,2031,800,1,2032, 100421,2795,3426,1,2796,
9778805,1,2033,810,1, 100433432,1,2797,3437,1,
97792035,816,1,2364,891, 100442798,3442,1,2364,913,
97801,2715,3379,1,2039, 100451,2039,848,1,1931,
9781826,1,1931,925,1, 10046946,1,2041,854,1,
97822041,832,1,2021,782, 100472021,804,1,2043,860,
97831,2043,838,1,2045, 100481,2045,865,1,2033,
9784843,1,2702,3591,16, 10049832,1,2037,843,1,
97850,107,1,1775,3592, 100502777,3650,16,0,107,
978616,0,107,1,1989, 100511,1574,885,1,1958,
9787980,1,2774,3385,1, 100523651,16,0,107,1,
97882037,821,1,1574,863, 100532724,3652,16,0,107,
97891,1958,3593,16,0, 100541,58,3653,19,356,
9790107,1,2459,946,1, 100551,58,3654,5,24,
979158,3594,19,446,1, 100561,2664,3655,16,0,
979258,3595,5,21,1, 10057354,1,2546,1761,1,
97932553,3596,16,0,444, 100582620,1730,1,2621,1735,
97941,2596,1740,1,2593, 100591,2612,1795,1,2618,
97951725,1,2594,1730,1, 100601720,1,2520,1740,1,
97962595,1735,1,2522,1698, 100612566,1773,1,2568,3656,
97971,2597,1745,1,2599, 1006216,0,354,1,2459,
97981719,1,2600,1751,1, 10063967,1,2609,1780,1,
97992601,1756,1,2602,1761, 100642610,1785,1,2611,1790,
98001,2603,1766,1,2531, 100651,2464,984,1,2613,
98011704,1,2459,946,1, 100661800,1,2614,1805,1,
98022645,3597,16,0,444, 100672616,1709,1,2617,1715,
98031,2536,1686,1,2464, 100681,2470,3657,16,0,
9804963,1,2605,3598,16, 10069354,1,2619,1725,1,
98050,444,1,2470,3599, 100702537,1754,1,2529,1747,
980616,0,444,1,2513, 100711,2623,3658,16,0,
98071692,1,2551,1712,1, 10072354,1,2551,1767,1,
980859,3600,19,443,1, 1007359,3659,19,441,1,
980959,3601,5,21,1, 1007459,3660,5,24,1,
98102553,3602,16,0,441, 100752664,3661,16,0,439,
98111,2596,1740,1,2593, 100761,2546,1761,1,2620,
98121725,1,2594,1730,1, 100771730,1,2621,1735,1,
98132595,1735,1,2522,1698, 100782612,1795,1,2618,1720,
98141,2597,1745,1,2599, 100791,2520,1740,1,2566,
98151719,1,2600,1751,1, 100801773,1,2568,3662,16,
98162601,1756,1,2602,1761, 100810,439,1,2459,967,
98171,2603,1766,1,2531, 100821,2609,1780,1,2610,
98181704,1,2459,946,1, 100831785,1,2611,1790,1,
98192645,3603,16,0,441, 100842464,984,1,2613,1800,
98201,2536,1686,1,2464, 100851,2614,1805,1,2616,
9821963,1,2605,3604,16, 100861709,1,2617,1715,1,
98220,441,1,2470,3605, 100872470,3663,16,0,439,
982316,0,441,1,2513, 100881,2619,1725,1,2537,
98241692,1,2551,1712,1, 100891754,1,2529,1747,1,
982560,3606,19,520,1, 100902623,3664,16,0,439,
982660,3607,5,21,1, 100911,2551,1767,1,60,
98272553,3608,16,0,518, 100923665,19,399,1,60,
98281,2596,1740,1,2593, 100933666,5,24,1,2664,
98291725,1,2594,1730,1, 100943667,16,0,397,1,
98302595,1735,1,2522,1698, 100952546,1761,1,2620,1730,
98311,2597,1745,1,2599, 100961,2621,1735,1,2612,
98321719,1,2600,1751,1, 100971795,1,2618,1720,1,
98332601,1756,1,2602,1761, 100982520,1740,1,2566,1773,
98341,2603,1766,1,2531, 100991,2568,3668,16,0,
98351704,1,2459,946,1, 10100397,1,2459,967,1,
98362645,3609,16,0,518, 101012609,1780,1,2610,1785,
98371,2536,1686,1,2464, 101021,2611,1790,1,2464,
9838963,1,2605,3610,16, 10103984,1,2613,1800,1,
98390,518,1,2470,3611, 101042614,1805,1,2616,1709,
984016,0,518,1,2513, 101051,2617,1715,1,2470,
98411692,1,2551,1712,1, 101063669,16,0,397,1,
984261,3612,19,397,1, 101072619,1725,1,2537,1754,
984361,3613,5,21,1, 101081,2529,1747,1,2623,
98442553,3614,16,0,395, 101093670,16,0,397,1,
98451,2596,1740,1,2593, 101102551,1767,1,61,3671,
98461725,1,2594,1730,1, 1011119,644,1,61,3672,
98472595,1735,1,2522,1698, 101125,24,1,2664,3673,
98481,2597,1745,1,2599, 1011316,0,642,1,2546,
98491719,1,2600,1751,1, 101141761,1,2620,1730,1,
98502601,1756,1,2602,1761, 101152621,1735,1,2612,1795,
98511,2603,1766,1,2531, 101161,2618,1720,1,2520,
98521704,1,2459,946,1, 101171740,1,2566,1773,1,
98532645,3615,16,0,395, 101182568,3674,16,0,642,
98541,2536,1686,1,2464, 101191,2459,967,1,2609,
9855963,1,2605,3616,16, 101201780,1,2610,1785,1,
98560,395,1,2470,3617, 101212611,1790,1,2464,984,
985716,0,395,1,2513, 101221,2613,1800,1,2614,
98581692,1,2551,1712,1, 101231805,1,2616,1709,1,
985962,3618,19,394,1, 101242617,1715,1,2470,3675,
986062,3619,5,21,1, 1012516,0,642,1,2619,
98612553,3620,16,0,392, 101261725,1,2537,1754,1,
98621,2596,1740,1,2593, 101272529,1747,1,2623,3676,
98631725,1,2594,1730,1, 1012816,0,642,1,2551,
98642595,1735,1,2522,1698, 101291767,1,62,3677,19,
98651,2597,1745,1,2599, 10130392,1,62,3678,5,
98661719,1,2600,1751,1, 1013124,1,2664,3679,16,
98672601,1756,1,2602,1761, 101320,390,1,2546,1761,
98681,2603,1766,1,2531, 101331,2620,1730,1,2621,
98691704,1,2459,946,1, 101341735,1,2612,1795,1,
98702645,3621,16,0,392, 101352618,1720,1,2520,1740,
98711,2536,1686,1,2464, 101361,2566,1773,1,2568,
9872963,1,2605,3622,16, 101373680,16,0,390,1,
98730,392,1,2470,3623, 101382459,967,1,2609,1780,
987416,0,392,1,2513, 101391,2610,1785,1,2611,
98751692,1,2551,1712,1, 101401790,1,2464,984,1,
987663,3624,19,391,1, 101412613,1800,1,2614,1805,
987763,3625,5,21,1, 101421,2616,1709,1,2617,
98782553,3626,16,0,389, 101431715,1,2470,3681,16,
98791,2596,1740,1,2593, 101440,390,1,2619,1725,
98801725,1,2594,1730,1, 101451,2537,1754,1,2529,
98812595,1735,1,2522,1698, 101461747,1,2623,3682,16,
98821,2597,1745,1,2599, 101470,390,1,2551,1767,
98831719,1,2600,1751,1, 101481,63,3683,19,389,
98842601,1756,1,2602,1761, 101491,63,3684,5,24,
98851,2603,1766,1,2531, 101501,2664,3685,16,0,
98861704,1,2459,946,1, 10151387,1,2546,1761,1,
98872645,3627,16,0,389, 101522620,1730,1,2621,1735,
98881,2536,1686,1,2464, 101531,2612,1795,1,2618,
9889963,1,2605,3628,16, 101541720,1,2520,1740,1,
98900,389,1,2470,3629, 101552566,1773,1,2568,3686,
989116,0,389,1,2513, 1015616,0,387,1,2459,
98921692,1,2551,1712,1, 10157967,1,2609,1780,1,
989364,3630,19,388,1, 101582610,1785,1,2611,1790,
989464,3631,5,21,1, 101591,2464,984,1,2613,
98952553,3632,16,0,386, 101601800,1,2614,1805,1,
98961,2596,1740,1,2593, 101612616,1709,1,2617,1715,
98971725,1,2594,1730,1, 101621,2470,3687,16,0,
98982595,1735,1,2522,1698, 10163387,1,2619,1725,1,
98991,2597,1745,1,2599, 101642537,1754,1,2529,1747,
99001719,1,2600,1751,1, 101651,2623,3688,16,0,
99012601,1756,1,2602,1761, 10166387,1,2551,1767,1,
99021,2603,1766,1,2531, 1016764,3689,19,386,1,
99031704,1,2459,946,1, 1016864,3690,5,24,1,
99042645,3633,16,0,386, 101692664,3691,16,0,384,
99051,2536,1686,1,2464, 101701,2546,1761,1,2620,
9906963,1,2605,3634,16, 101711730,1,2621,1735,1,
99070,386,1,2470,3635, 101722612,1795,1,2618,1720,
990816,0,386,1,2513, 101731,2520,1740,1,2566,
99091692,1,2551,1712,1, 101741773,1,2568,3692,16,
991065,3636,19,440,1, 101750,384,1,2459,967,
991165,3637,5,21,1, 101761,2609,1780,1,2610,
99122553,3638,16,0,438, 101771785,1,2611,1790,1,
99131,2596,1740,1,2593, 101782464,984,1,2613,1800,
99141725,1,2594,1730,1, 101791,2614,1805,1,2616,
99152595,1735,1,2522,1698, 101801709,1,2617,1715,1,
99161,2597,1745,1,2599, 101812470,3693,16,0,384,
99171719,1,2600,1751,1, 101821,2619,1725,1,2537,
99182601,1756,1,2602,1761, 101831754,1,2529,1747,1,
99191,2603,1766,1,2531, 101842623,3694,16,0,384,
99201704,1,2459,946,1, 101851,2551,1767,1,65,
99212645,3639,16,0,438, 101863695,19,438,1,65,
99221,2536,1686,1,2464, 101873696,5,24,1,2664,
9923963,1,2605,3640,16, 101883697,16,0,436,1,
99240,438,1,2470,3641, 101892546,1761,1,2620,1730,
992516,0,438,1,2513, 101901,2621,1735,1,2612,
99261692,1,2551,1712,1, 101911795,1,2618,1720,1,
992766,3642,19,437,1, 101922520,1740,1,2566,1773,
992866,3643,5,21,1, 101931,2568,3698,16,0,
99292553,3644,16,0,435, 10194436,1,2459,967,1,
99301,2596,1740,1,2593, 101952609,1780,1,2610,1785,
99311725,1,2594,1730,1, 101961,2611,1790,1,2464,
99322595,1735,1,2522,1698, 10197984,1,2613,1800,1,
99331,2597,1745,1,2599, 101982614,1805,1,2616,1709,
99341719,1,2600,1751,1, 101991,2617,1715,1,2470,
99352601,1756,1,2602,1761, 102003699,16,0,436,1,
99361,2603,1766,1,2531, 102012619,1725,1,2537,1754,
99371704,1,2459,946,1, 102021,2529,1747,1,2623,
99382645,3645,16,0,435, 102033700,16,0,436,1,
99391,2536,1686,1,2464, 102042551,1767,1,66,3701,
9940963,1,2605,3646,16, 1020519,435,1,66,3702,
99410,435,1,2470,3647, 102065,24,1,2664,3703,
994216,0,435,1,2513, 1020716,0,433,1,2546,
99431692,1,2551,1712,1, 102081761,1,2620,1730,1,
994467,3648,19,434,1, 102092621,1735,1,2612,1795,
994567,3649,5,21,1, 102101,2618,1720,1,2520,
99462553,3650,16,0,432, 102111740,1,2566,1773,1,
99471,2596,1740,1,2593, 102122568,3704,16,0,433,
99481725,1,2594,1730,1, 102131,2459,967,1,2609,
99492595,1735,1,2522,1698, 102141780,1,2610,1785,1,
99501,2597,1745,1,2599, 102152611,1790,1,2464,984,
99511719,1,2600,1751,1, 102161,2613,1800,1,2614,
99522601,1756,1,2602,1761, 102171805,1,2616,1709,1,
99531,2603,1766,1,2531, 102182617,1715,1,2470,3705,
99541704,1,2459,946,1, 1021916,0,433,1,2619,
99552645,3651,16,0,432, 102201725,1,2537,1754,1,
99561,2536,1686,1,2464, 102212529,1747,1,2623,3706,
9957963,1,2605,3652,16, 1022216,0,433,1,2551,
99580,432,1,2470,3653, 102231767,1,67,3707,19,
995916,0,432,1,2513, 10224432,1,67,3708,5,
99601692,1,2551,1712,1, 1022524,1,2664,3709,16,
996168,3654,19,431,1, 102260,430,1,2546,1761,
996268,3655,5,21,1, 102271,2620,1730,1,2621,
99632553,3656,16,0,429, 102281735,1,2612,1795,1,
99641,2596,1740,1,2593, 102292618,1720,1,2520,1740,
99651725,1,2594,1730,1, 102301,2566,1773,1,2568,
99662595,1735,1,2522,1698, 102313710,16,0,430,1,
99671,2597,1745,1,2599, 102322459,967,1,2609,1780,
99681719,1,2600,1751,1, 102331,2610,1785,1,2611,
99692601,1756,1,2602,1761, 102341790,1,2464,984,1,
99701,2603,1766,1,2531, 102352613,1800,1,2614,1805,
99711704,1,2459,946,1, 102361,2616,1709,1,2617,
99722645,3657,16,0,429, 102371715,1,2470,3711,16,
99731,2536,1686,1,2464, 102380,430,1,2619,1725,
9974963,1,2605,3658,16, 102391,2537,1754,1,2529,
99750,429,1,2470,3659, 102401747,1,2623,3712,16,
997616,0,429,1,2513, 102410,430,1,2551,1767,
99771692,1,2551,1712,1, 102421,68,3713,19,429,
997869,3660,19,367,1, 102431,68,3714,5,24,
997969,3661,5,21,1, 102441,2664,3715,16,0,
99802553,3662,16,0,365, 10245427,1,2546,1761,1,
99811,2596,1740,1,2593, 102462620,1730,1,2621,1735,
99821725,1,2594,1730,1, 102471,2612,1795,1,2618,
99832595,1735,1,2522,1698, 102481720,1,2520,1740,1,
99841,2597,1745,1,2599, 102492566,1773,1,2568,3716,
99851719,1,2600,1751,1, 1025016,0,427,1,2459,
99862601,1756,1,2602,1761, 10251967,1,2609,1780,1,
99871,2603,1766,1,2531, 102522610,1785,1,2611,1790,
99881704,1,2459,946,1, 102531,2464,984,1,2613,
99892645,3663,16,0,365, 102541800,1,2614,1805,1,
99901,2536,1686,1,2464, 102552616,1709,1,2617,1715,
9991963,1,2605,3664,16, 102561,2470,3717,16,0,
99920,365,1,2470,3665, 10257427,1,2619,1725,1,
999316,0,365,1,2513, 102582537,1754,1,2529,1747,
99941692,1,2551,1712,1, 102591,2623,3718,16,0,
999570,3666,19,364,1, 10260427,1,2551,1767,1,
999670,3667,5,21,1, 1026169,3719,19,365,1,
99972553,3668,16,0,362, 1026269,3720,5,24,1,
99981,2596,1740,1,2593, 102632664,3721,16,0,363,
99991725,1,2594,1730,1, 102641,2546,1761,1,2620,
100002595,1735,1,2522,1698, 102651730,1,2621,1735,1,
100011,2597,1745,1,2599, 102662612,1795,1,2618,1720,
100021719,1,2600,1751,1, 102671,2520,1740,1,2566,
100032601,1756,1,2602,1761, 102681773,1,2568,3722,16,
100041,2603,1766,1,2531, 102690,363,1,2459,967,
100051704,1,2459,946,1, 102701,2609,1780,1,2610,
100062645,3669,16,0,362, 102711785,1,2611,1790,1,
100071,2536,1686,1,2464, 102722464,984,1,2613,1800,
10008963,1,2605,3670,16, 102731,2614,1805,1,2616,
100090,362,1,2470,3671, 102741709,1,2617,1715,1,
1001016,0,362,1,2513, 102752470,3723,16,0,363,
100111692,1,2551,1712,1, 102761,2619,1725,1,2537,
1001271,3672,19,361,1, 102771754,1,2529,1747,1,
1001371,3673,5,21,1, 102782623,3724,16,0,363,
100142553,3674,16,0,359, 102791,2551,1767,1,70,
100151,2596,1740,1,2593, 102803725,19,362,1,70,
100161725,1,2594,1730,1, 102813726,5,24,1,2664,
100172595,1735,1,2522,1698, 102823727,16,0,360,1,
100181,2597,1745,1,2599, 102832546,1761,1,2620,1730,
100191719,1,2600,1751,1, 102841,2621,1735,1,2612,
100202601,1756,1,2602,1761, 102851795,1,2618,1720,1,
100211,2603,1766,1,2531, 102862520,1740,1,2566,1773,
100221704,1,2459,946,1, 102871,2568,3728,16,0,
100232645,3675,16,0,359, 10288360,1,2459,967,1,
100241,2536,1686,1,2464, 102892609,1780,1,2610,1785,
10025963,1,2605,3676,16, 102901,2611,1790,1,2464,
100260,359,1,2470,3677, 10291984,1,2613,1800,1,
1002716,0,359,1,2513, 102922614,1805,1,2616,1709,
100281692,1,2551,1712,1, 102931,2617,1715,1,2470,
1002972,3678,19,709,1, 102943729,16,0,360,1,
1003072,3679,5,21,1, 102952619,1725,1,2537,1754,
100312553,3680,16,0,707, 102961,2529,1747,1,2623,
100321,2596,1740,1,2593, 102973730,16,0,360,1,
100331725,1,2594,1730,1, 102982551,1767,1,71,3731,
100342595,1735,1,2522,1698, 1029919,359,1,71,3732,
100351,2597,1745,1,2599, 103005,24,1,2664,3733,
100361719,1,2600,1751,1, 1030116,0,357,1,2546,
100372601,1756,1,2602,1761, 103021761,1,2620,1730,1,
100381,2603,1766,1,2531, 103032621,1735,1,2612,1795,
100391704,1,2459,946,1, 103041,2618,1720,1,2520,
100402645,3681,16,0,707, 103051740,1,2566,1773,1,
100411,2536,1686,1,2464, 103062568,3734,16,0,357,
10042963,1,2605,3682,16, 103071,2459,967,1,2609,
100430,707,1,2470,3683, 103081780,1,2610,1785,1,
1004416,0,707,1,2513, 103092611,1790,1,2464,984,
100451692,1,2551,1712,1, 103101,2613,1800,1,2614,
1004673,3684,19,427,1, 103111805,1,2616,1709,1,
1004773,3685,5,21,1, 103122617,1715,1,2470,3735,
100482553,3686,16,0,425, 1031316,0,357,1,2619,
100491,2596,1740,1,2593, 103141725,1,2537,1754,1,
100501725,1,2594,1730,1, 103152529,1747,1,2623,3736,
100512595,1735,1,2522,1698, 1031616,0,357,1,2551,
100521,2597,1745,1,2599, 103171767,1,72,3737,19,
100531719,1,2600,1751,1, 10318426,1,72,3738,5,
100542601,1756,1,2602,1761, 1031924,1,2664,3739,16,
100551,2603,1766,1,2531, 103200,424,1,2546,1761,
100561704,1,2459,946,1, 103211,2620,1730,1,2621,
100572645,3687,16,0,425, 103221735,1,2612,1795,1,
100581,2536,1686,1,2464, 103232618,1720,1,2520,1740,
10059963,1,2605,3688,16, 103241,2566,1773,1,2568,
100600,425,1,2470,3689, 103253740,16,0,424,1,
1006116,0,425,1,2513, 103262459,967,1,2609,1780,
100621692,1,2551,1712,1, 103271,2610,1785,1,2611,
1006374,3690,19,542,1, 103281790,1,2464,984,1,
1006474,3691,5,21,1, 103292613,1800,1,2614,1805,
100652553,3692,16,0,540, 103301,2616,1709,1,2617,
100661,2596,1740,1,2593, 103311715,1,2470,3741,16,
100671725,1,2594,1730,1, 103320,424,1,2619,1725,
100682595,1735,1,2522,1698, 103331,2537,1754,1,2529,
100691,2597,1745,1,2599, 103341747,1,2623,3742,16,
100701719,1,2600,1751,1, 103350,424,1,2551,1767,
100712601,1756,1,2602,1761, 103361,73,3743,19,730,
100721,2603,1766,1,2531, 103371,73,3744,5,24,
100731704,1,2459,946,1, 103381,2664,3745,16,0,
100742645,3693,16,0,540, 10339728,1,2546,1761,1,
100751,2536,1686,1,2464, 103402620,1730,1,2621,1735,
10076963,1,2605,3694,16, 103411,2612,1795,1,2618,
100770,540,1,2470,3695, 103421720,1,2520,1740,1,
1007816,0,540,1,2513, 103432566,1773,1,2568,3746,
100791692,1,2551,1712,1, 1034416,0,728,1,2459,
1008075,3696,19,532,1, 10345967,1,2609,1780,1,
1008175,3697,5,21,1, 103462610,1785,1,2611,1790,
100822553,3698,16,0,530, 103471,2464,984,1,2613,
100831,2596,1740,1,2593, 103481800,1,2614,1805,1,
100841725,1,2594,1730,1, 103492616,1709,1,2617,1715,
100852595,1735,1,2522,1698, 103501,2470,3747,16,0,
100861,2597,1745,1,2599, 10351728,1,2619,1725,1,
100871719,1,2600,1751,1, 103522537,1754,1,2529,1747,
100882601,1756,1,2602,1761, 103531,2623,3748,16,0,
100891,2603,1766,1,2531, 10354728,1,2551,1767,1,
100901704,1,2459,946,1, 1035574,3749,19,422,1,
100912645,3699,16,0,530, 1035674,3750,5,24,1,
100921,2536,1686,1,2464, 103572664,3751,16,0,420,
10093963,1,2605,3700,16, 103581,2546,1761,1,2620,
100940,530,1,2470,3701, 103591730,1,2621,1735,1,
1009516,0,530,1,2513, 103602612,1795,1,2618,1720,
100961692,1,2551,1712,1, 103611,2520,1740,1,2566,
1009776,3702,19,529,1, 103621773,1,2568,3752,16,
1009876,3703,5,21,1, 103630,420,1,2459,967,
100992553,3704,16,0,527, 103641,2609,1780,1,2610,
101001,2596,1740,1,2593, 103651785,1,2611,1790,1,
101011725,1,2594,1730,1, 103662464,984,1,2613,1800,
101022595,1735,1,2522,1698, 103671,2614,1805,1,2616,
101031,2597,1745,1,2599, 103681709,1,2617,1715,1,
101041719,1,2600,1751,1, 103692470,3753,16,0,420,
101052601,1756,1,2602,1761, 103701,2619,1725,1,2537,
101061,2603,1766,1,2531, 103711754,1,2529,1747,1,
101071704,1,2459,946,1, 103722623,3754,16,0,420,
101082645,3705,16,0,527, 103731,2551,1767,1,75,
101091,2536,1686,1,2464, 103743755,19,411,1,75,
10110963,1,2605,3706,16, 103753756,5,24,1,2664,
101110,527,1,2470,3707, 103763757,16,0,409,1,
1011216,0,527,1,2513, 103772546,1761,1,2620,1730,
101131692,1,2551,1712,1, 103781,2621,1735,1,2612,
1011477,3708,19,526,1, 103791795,1,2618,1720,1,
1011577,3709,5,21,1, 103802520,1740,1,2566,1773,
101162553,3710,16,0,524, 103811,2568,3758,16,0,
101171,2596,1740,1,2593, 10382409,1,2459,967,1,
101181725,1,2594,1730,1, 103832609,1780,1,2610,1785,
101192595,1735,1,2522,1698, 103841,2611,1790,1,2464,
101201,2597,1745,1,2599, 10385984,1,2613,1800,1,
101211719,1,2600,1751,1, 103862614,1805,1,2616,1709,
101222601,1756,1,2602,1761, 103871,2617,1715,1,2470,
101231,2603,1766,1,2531, 103883759,16,0,409,1,
101241704,1,2459,946,1, 103892619,1725,1,2537,1754,
101252645,3711,16,0,524, 103901,2529,1747,1,2623,
101261,2536,1686,1,2464, 103913760,16,0,409,1,
10127963,1,2605,3712,16, 103922551,1767,1,76,3761,
101280,524,1,2470,3713, 1039319,534,1,76,3762,
1012916,0,524,1,2513, 103945,24,1,2664,3763,
101301692,1,2551,1712,1, 1039516,0,532,1,2546,
1013178,3714,19,523,1, 103961761,1,2620,1730,1,
1013278,3715,5,21,1, 103972621,1735,1,2612,1795,
101332553,3716,16,0,521, 103981,2618,1720,1,2520,
101341,2596,1740,1,2593, 103991740,1,2566,1773,1,
101351725,1,2594,1730,1, 104002568,3764,16,0,532,
101362595,1735,1,2522,1698, 104011,2459,967,1,2609,
101371,2597,1745,1,2599, 104021780,1,2610,1785,1,
101381719,1,2600,1751,1, 104032611,1790,1,2464,984,
101392601,1756,1,2602,1761, 104041,2613,1800,1,2614,
101401,2603,1766,1,2531, 104051805,1,2616,1709,1,
101411704,1,2459,946,1, 104062617,1715,1,2470,3765,
101422645,3717,16,0,521, 1040716,0,532,1,2619,
101431,2536,1686,1,2464, 104081725,1,2537,1754,1,
10144963,1,2605,3718,16, 104092529,1747,1,2623,3766,
101450,521,1,2470,3719, 1041016,0,532,1,2551,
1014616,0,521,1,2513, 104111767,1,77,3767,19,
101471692,1,2551,1712,1, 10412531,1,77,3768,5,
1014879,3720,19,407,1, 1041324,1,2664,3769,16,
1014979,3721,5,21,1, 104140,529,1,2546,1761,
101502553,3722,16,0,405, 104151,2620,1730,1,2621,
101511,2596,1740,1,2593, 104161735,1,2612,1795,1,
101521725,1,2594,1730,1, 104172618,1720,1,2520,1740,
101532595,1735,1,2522,1698, 104181,2566,1773,1,2568,
101541,2597,1745,1,2599, 104193770,16,0,529,1,
101551719,1,2600,1751,1, 104202459,967,1,2609,1780,
101562601,1756,1,2602,1761, 104211,2610,1785,1,2611,
101571,2603,1766,1,2531, 104221790,1,2464,984,1,
101581704,1,2459,946,1, 104232613,1800,1,2614,1805,
101592645,3723,16,0,405, 104241,2616,1709,1,2617,
101601,2536,1686,1,2464, 104251715,1,2470,3771,16,
10161963,1,2605,3724,16, 104260,529,1,2619,1725,
101620,405,1,2470,3725, 104271,2537,1754,1,2529,
1016316,0,405,1,2513, 104281747,1,2623,3772,16,
101641692,1,2551,1712,1, 104290,529,1,2551,1767,
1016580,3726,19,615,1, 104301,78,3773,19,528,
1016680,3727,5,21,1, 104311,78,3774,5,24,
101672553,3728,16,0,613, 104321,2664,3775,16,0,
101681,2596,1740,1,2593, 10433526,1,2546,1761,1,
101691725,1,2594,1730,1, 104342620,1730,1,2621,1735,
101702595,1735,1,2522,1698, 104351,2612,1795,1,2618,
101711,2597,1745,1,2599, 104361720,1,2520,1740,1,
101721719,1,2600,1751,1, 104372566,1773,1,2568,3776,
101732601,1756,1,2602,1761, 1043816,0,526,1,2459,
101741,2603,1766,1,2531, 10439967,1,2609,1780,1,
101751704,1,2459,946,1, 104402610,1785,1,2611,1790,
101762645,3729,16,0,613, 104411,2464,984,1,2613,
101771,2536,1686,1,2464, 104421800,1,2614,1805,1,
10178963,1,2605,3730,16, 104432616,1709,1,2617,1715,
101790,613,1,2470,3731, 104441,2470,3777,16,0,
1018016,0,613,1,2513, 10445526,1,2619,1725,1,
101811692,1,2551,1712,1, 104462537,1754,1,2529,1747,
1018281,3732,19,385,1, 104471,2623,3778,16,0,
1018381,3733,5,21,1, 10448526,1,2551,1767,1,
101842553,3734,16,0,383, 1044979,3779,19,525,1,
101851,2596,1740,1,2593, 1045079,3780,5,24,1,
101861725,1,2594,1730,1, 104512664,3781,16,0,523,
101872595,1735,1,2522,1698, 104521,2546,1761,1,2620,
101881,2597,1745,1,2599, 104531730,1,2621,1735,1,
101891719,1,2600,1751,1, 104542612,1795,1,2618,1720,
101902601,1756,1,2602,1761, 104551,2520,1740,1,2566,
101911,2603,1766,1,2531, 104561773,1,2568,3782,16,
101921704,1,2459,946,1, 104570,523,1,2459,967,
101932645,3735,16,0,383, 104581,2609,1780,1,2610,
101941,2536,1686,1,2464, 104591785,1,2611,1790,1,
10195963,1,2605,3736,16, 104602464,984,1,2613,1800,
101960,383,1,2470,3737, 104611,2614,1805,1,2616,
1019716,0,383,1,2513, 104621709,1,2617,1715,1,
101981692,1,2551,1712,1, 104632470,3783,16,0,523,
1019982,3738,19,423,1, 104641,2619,1725,1,2537,
1020082,3739,5,21,1, 104651754,1,2529,1747,1,
102012553,3740,16,0,421, 104662623,3784,16,0,523,
102021,2596,1740,1,2593, 104671,2551,1767,1,80,
102031725,1,2594,1730,1, 104683785,19,521,1,80,
102042595,1735,1,2522,1698, 104693786,5,24,1,2664,
102051,2597,1745,1,2599, 104703787,16,0,519,1,
102061719,1,2600,1751,1, 104712546,1761,1,2620,1730,
102072601,1756,1,2602,1761, 104721,2621,1735,1,2612,
102081,2603,1766,1,2531, 104731795,1,2618,1720,1,
102091704,1,2459,946,1, 104742520,1740,1,2566,1773,
102102645,3741,16,0,421, 104751,2568,3788,16,0,
102111,2536,1686,1,2464, 10476519,1,2459,967,1,
10212963,1,2605,3742,16, 104772609,1780,1,2610,1785,
102130,421,1,2470,3743, 104781,2611,1790,1,2464,
1021416,0,421,1,2513, 10479984,1,2613,1800,1,
102151692,1,2551,1712,1, 104802614,1805,1,2616,1709,
1021683,3744,19,382,1, 104811,2617,1715,1,2470,
1021783,3745,5,21,1, 104823789,16,0,519,1,
102182553,3746,16,0,380, 104832619,1725,1,2537,1754,
102191,2596,1740,1,2593, 104841,2529,1747,1,2623,
102201725,1,2594,1730,1, 104853790,16,0,519,1,
102212595,1735,1,2522,1698, 104862551,1767,1,81,3791,
102221,2597,1745,1,2599, 1048719,383,1,81,3792,
102231719,1,2600,1751,1, 104885,24,1,2664,3793,
102242601,1756,1,2602,1761, 1048916,0,381,1,2546,
102251,2603,1766,1,2531, 104901761,1,2620,1730,1,
102261704,1,2459,946,1, 104912621,1735,1,2612,1795,
102272645,3747,16,0,380, 104921,2618,1720,1,2520,
102281,2536,1686,1,2464, 104931740,1,2566,1773,1,
10229963,1,2605,3748,16, 104942568,3794,16,0,381,
102300,380,1,2470,3749, 104951,2459,967,1,2609,
1023116,0,380,1,2513, 104961780,1,2610,1785,1,
102321692,1,2551,1712,1, 104972611,1790,1,2464,984,
1023384,3750,19,379,1, 104981,2613,1800,1,2614,
1023484,3751,5,21,1, 104991805,1,2616,1709,1,
102352553,3752,16,0,377, 105002617,1715,1,2470,3795,
102361,2596,1740,1,2593, 1050116,0,381,1,2619,
102371725,1,2594,1730,1, 105021725,1,2537,1754,1,
102382595,1735,1,2522,1698, 105032529,1747,1,2623,3796,
102391,2597,1745,1,2599, 1050416,0,381,1,2551,
102401719,1,2600,1751,1, 105051767,1,82,3797,19,
102412601,1756,1,2602,1761, 10506544,1,82,3798,5,
102421,2603,1766,1,2531, 1050724,1,2664,3799,16,
102431704,1,2459,946,1, 105080,542,1,2546,1761,
102442645,3753,16,0,377, 105091,2620,1730,1,2621,
102451,2536,1686,1,2464, 105101735,1,2612,1795,1,
10246963,1,2605,3754,16, 105112618,1720,1,2520,1740,
102470,377,1,2470,3755, 105121,2566,1773,1,2568,
1024816,0,377,1,2513, 105133800,16,0,542,1,
102491692,1,2551,1712,1, 105142459,967,1,2609,1780,
1025085,3756,19,535,1, 105151,2610,1785,1,2611,
1025185,3757,5,21,1, 105161790,1,2464,984,1,
102522553,3758,16,0,533, 105172613,1800,1,2614,1805,
102531,2596,1740,1,2593, 105181,2616,1709,1,2617,
102541725,1,2594,1730,1, 105191715,1,2470,3801,16,
102552595,1735,1,2522,1698, 105200,542,1,2619,1725,
102561,2597,1745,1,2599, 105211,2537,1754,1,2529,
102571719,1,2600,1751,1, 105221747,1,2623,3802,16,
102582601,1756,1,2602,1761, 105230,542,1,2551,1767,
102591,2603,1766,1,2531, 105241,83,3803,19,380,
102601704,1,2459,946,1, 105251,83,3804,5,24,
102612645,3759,16,0,533, 105261,2664,3805,16,0,
102621,2536,1686,1,2464, 10527378,1,2546,1761,1,
10263963,1,2605,3760,16, 105282620,1730,1,2621,1735,
102640,533,1,2470,3761, 105291,2612,1795,1,2618,
1026516,0,533,1,2513, 105301720,1,2520,1740,1,
102661692,1,2551,1712,1, 105312566,1773,1,2568,3806,
1026786,3762,19,416,1, 1053216,0,378,1,2459,
1026886,3763,5,21,1, 10533967,1,2609,1780,1,
102692553,3764,16,0,414, 105342610,1785,1,2611,1790,
102701,2596,1740,1,2593, 105351,2464,984,1,2613,
102711725,1,2594,1730,1, 105361800,1,2614,1805,1,
102722595,1735,1,2522,1698, 105372616,1709,1,2617,1715,
102731,2597,1745,1,2599, 105381,2470,3807,16,0,
102741719,1,2600,1751,1, 10539378,1,2619,1725,1,
102752601,1756,1,2602,1761, 105402537,1754,1,2529,1747,
102761,2603,1766,1,2531, 105411,2623,3808,16,0,
102771704,1,2459,946,1, 10542378,1,2551,1767,1,
102782645,3765,16,0,414, 1054384,3809,19,377,1,
102791,2536,1686,1,2464, 1054484,3810,5,24,1,
10280963,1,2605,3766,16, 105452664,3811,16,0,375,
102810,414,1,2470,3767, 105461,2546,1761,1,2620,
1028216,0,414,1,2513, 105471730,1,2621,1735,1,
102831692,1,2551,1712,1, 105482612,1795,1,2618,1720,
1028487,3768,19,404,1, 105491,2520,1740,1,2566,
1028587,3769,5,21,1, 105501773,1,2568,3812,16,
102862553,3770,16,0,402, 105510,375,1,2459,967,
102871,2596,1740,1,2593, 105521,2609,1780,1,2610,
102881725,1,2594,1730,1, 105531785,1,2611,1790,1,
102892595,1735,1,2522,1698, 105542464,984,1,2613,1800,
102901,2597,1745,1,2599, 105551,2614,1805,1,2616,
102911719,1,2600,1751,1, 105561709,1,2617,1715,1,
102922601,1756,1,2602,1761, 105572470,3813,16,0,375,
102931,2603,1766,1,2531, 105581,2619,1725,1,2537,
102941704,1,2459,946,1, 105591754,1,2529,1747,1,
102952645,3771,16,0,402, 105602623,3814,16,0,375,
102961,2536,1686,1,2464, 105611,2551,1767,1,85,
10297963,1,2605,3772,16, 105623815,19,415,1,85,
102980,402,1,2470,3773, 105633816,5,24,1,2664,
1029916,0,402,1,2513, 105643817,16,0,413,1,
103001692,1,2551,1712,1, 105652546,1761,1,2620,1730,
1030188,3774,19,376,1, 105661,2621,1735,1,2612,
1030288,3775,5,21,1, 105671795,1,2618,1720,1,
103032553,3776,16,0,374, 105682520,1740,1,2566,1773,
103041,2596,1740,1,2593, 105691,2568,3818,16,0,
103051725,1,2594,1730,1, 10570413,1,2459,967,1,
103062595,1735,1,2522,1698, 105712609,1780,1,2610,1785,
103071,2597,1745,1,2599, 105721,2611,1790,1,2464,
103081719,1,2600,1751,1, 10573984,1,2613,1800,1,
103092601,1756,1,2602,1761, 105742614,1805,1,2616,1709,
103101,2603,1766,1,2531, 105751,2617,1715,1,2470,
103111704,1,2459,946,1, 105763819,16,0,413,1,
103122645,3777,16,0,374, 105772619,1725,1,2537,1754,
103131,2536,1686,1,2464, 105781,2529,1747,1,2623,
10314963,1,2605,3778,16, 105793820,16,0,413,1,
103150,374,1,2470,3779, 105802551,1767,1,86,3821,
1031616,0,374,1,2513, 1058119,537,1,86,3822,
103171692,1,2551,1712,1, 105825,24,1,2664,3823,
1031889,3780,19,370,1, 1058316,0,535,1,2546,
1031989,3781,5,21,1, 105841761,1,2620,1730,1,
103202553,3782,16,0,368, 105852621,1735,1,2612,1795,
103211,2596,1740,1,2593, 105861,2618,1720,1,2520,
103221725,1,2594,1730,1, 105871740,1,2566,1773,1,
103232595,1735,1,2522,1698, 105882568,3824,16,0,535,
103241,2597,1745,1,2599, 105891,2459,967,1,2609,
103251719,1,2600,1751,1, 105901780,1,2610,1785,1,
103262601,1756,1,2602,1761, 105912611,1790,1,2464,984,
103271,2603,1766,1,2531, 105921,2613,1800,1,2614,
103281704,1,2459,946,1, 105931805,1,2616,1709,1,
103292645,3783,16,0,368, 105942617,1715,1,2470,3825,
103301,2536,1686,1,2464, 1059516,0,535,1,2619,
10331963,1,2605,3784,16, 105961725,1,2537,1754,1,
103320,368,1,2470,3785, 105972529,1747,1,2623,3826,
1033316,0,368,1,2513, 1059816,0,535,1,2551,
103341692,1,2551,1712,1, 105991767,1,87,3827,19,
1033590,3786,19,373,1, 10600402,1,87,3828,5,
1033690,3787,5,21,1, 1060124,1,2664,3829,16,
103372553,3788,16,0,371, 106020,400,1,2546,1761,
103381,2596,1740,1,2593, 106031,2620,1730,1,2621,
103391725,1,2594,1730,1, 106041735,1,2612,1795,1,
103402595,1735,1,2522,1698, 106052618,1720,1,2520,1740,
103411,2597,1745,1,2599, 106061,2566,1773,1,2568,
103421719,1,2600,1751,1, 106073830,16,0,400,1,
103432601,1756,1,2602,1761, 106082459,967,1,2609,1780,
103441,2603,1766,1,2531, 106091,2610,1785,1,2611,
103451704,1,2459,946,1, 106101790,1,2464,984,1,
103462645,3789,16,0,371, 106112613,1800,1,2614,1805,
103471,2536,1686,1,2464, 106121,2616,1709,1,2617,
10348963,1,2605,3790,16, 106131715,1,2470,3831,16,
103490,371,1,2470,3791, 106140,400,1,2619,1725,
1035016,0,371,1,2513, 106151,2537,1754,1,2529,
103511692,1,2551,1712,1, 106161747,1,2623,3832,16,
1035291,3792,19,420,1, 106170,400,1,2551,1767,
1035391,3793,5,21,1, 106181,88,3833,19,374,
103542553,3794,16,0,418, 106191,88,3834,5,24,
103551,2596,1740,1,2593, 106201,2664,3835,16,0,
103561725,1,2594,1730,1, 10621372,1,2546,1761,1,
103572595,1735,1,2522,1698, 106222620,1730,1,2621,1735,
103581,2597,1745,1,2599, 106231,2612,1795,1,2618,
103591719,1,2600,1751,1, 106241720,1,2520,1740,1,
103602601,1756,1,2602,1761, 106252566,1773,1,2568,3836,
103611,2603,1766,1,2531, 1062616,0,372,1,2459,
103621704,1,2459,946,1, 10627967,1,2609,1780,1,
103632645,3795,16,0,418, 106282610,1785,1,2611,1790,
103641,2536,1686,1,2464, 106291,2464,984,1,2613,
10365963,1,2605,3796,16, 106301800,1,2614,1805,1,
103660,418,1,2470,3797, 106312616,1709,1,2617,1715,
1036716,0,418,1,2513, 106321,2470,3837,16,0,
103681692,1,2551,1712,1, 10633372,1,2619,1725,1,
1036992,3798,19,133,1, 106342537,1754,1,2529,1747,
1037092,3799,5,128,1, 106351,2623,3838,16,0,
103710,3800,16,0,674, 10636372,1,2551,1767,1,
103721,1,2092,1,2, 1063789,3839,19,368,1,
103732098,1,3,2103,1, 1063889,3840,5,24,1,
103744,2108,1,5,2113, 106392664,3841,16,0,366,
103751,6,2118,1,7, 106401,2546,1761,1,2620,
103762123,1,8,3801,16, 106411730,1,2621,1735,1,
103770,131,1,1515,3802, 106422612,1795,1,2618,1720,
1037816,0,168,1,2773, 106431,2520,1740,1,2566,
103793403,1,2021,782,1, 106441773,1,2568,3842,16,
103802022,3803,16,0,546, 106450,366,1,2459,967,
103811,2525,3804,16,0, 106461,2609,1780,1,2610,
10382481,1,2025,3805,16, 106471785,1,2611,1790,1,
103830,550,1,18,3806, 106482464,984,1,2613,1800,
1038416,0,138,1,2027, 106491,2614,1805,1,2616,
103853807,16,0,554,1, 106501709,1,2617,1715,1,
103862029,789,1,2030,795, 106512470,3843,16,0,366,
103871,2031,800,1,2032, 106521,2619,1725,1,2537,
10388805,1,256,3808,16, 106531754,1,2529,1747,1,
103890,176,1,277,3809, 106542623,3844,16,0,366,
1039016,0,176,1,2035, 106551,2551,1767,1,90,
10391816,1,2037,821,1, 106563845,19,371,1,90,
103922039,826,1,32,3810, 106573846,5,24,1,2664,
1039316,0,168,1,2041, 106583847,16,0,369,1,
10394832,1,2293,3811,16, 106592546,1761,1,2620,1730,
103950,176,1,2043,838, 106601,2621,1735,1,2612,
103961,2045,843,1,2715, 106611795,1,2618,1720,1,
103973379,1,41,3812,16, 106622520,1740,1,2566,1773,
103980,176,1,1297,3813, 106631,2568,3848,16,0,
1039916,0,168,1,43, 10664369,1,2459,967,1,
104003814,16,0,176,1, 106652609,1780,1,2610,1785,
1040146,3815,16,0,181, 106661,2611,1790,1,2464,
104021,1804,3816,16,0, 10667984,1,2613,1800,1,
10403168,1,299,3817,16, 106682614,1805,1,2616,1709,
104040,176,1,52,3818, 106691,2617,1715,1,2470,
1040516,0,168,1,509, 106703849,16,0,369,1,
104063819,16,0,176,1, 106712619,1725,1,2537,1754,
104072318,3820,16,0,168, 106721,2529,1747,1,2623,
104081,62,3821,16,0, 106733850,16,0,369,1,
10409202,1,65,3822,16, 106742551,1767,1,91,3851,
104100,204,1,2075,3823, 1067519,418,1,91,3852,
1041116,0,168,1,1574, 106765,24,1,2664,3853,
10412863,1,2743,3367,1, 1067716,0,416,1,2546,
1041371,3824,16,0,176, 106781761,1,2620,1730,1,
104141,1775,3825,16,0, 106792621,1735,1,2612,1795,
10415168,1,76,3826,16, 106801,2618,1720,1,2520,
104160,176,1,1834,3827, 106811740,1,2566,1773,1,
1041716,0,168,1,2337, 106822568,3854,16,0,416,
104183828,16,0,168,1, 106831,2459,967,1,2609,
1041979,3829,16,0,176, 106841780,1,2610,1785,1,
104201,1335,3830,16,0, 106852611,1790,1,2464,984,
10421168,1,322,3831,16, 106861,2613,1800,1,2614,
104220,176,1,85,3832, 106871805,1,2616,1709,1,
1042316,0,176,1,2516, 106882617,1715,1,2470,3855,
104243833,16,0,466,1, 1068916,0,416,1,2619,
104251261,3834,16,0,168, 106901725,1,2537,1754,1,
104261,89,3835,16,0, 106912529,1747,1,2623,3856,
10427176,1,2033,810,1, 1069216,0,416,1,2551,
10428346,3836,16,0,176, 106931767,1,92,3857,19,
104291,97,3837,16,0, 10694133,1,92,3858,5,
10430176,1,2106,3838,16, 10695129,1,0,3859,16,
104310,168,1,2774,3385, 106960,714,1,1,2146,
104321,102,3839,16,0, 106971,2,2152,1,3,
10433176,1,2776,3361,1, 106982157,1,4,2162,1,
104341803,851,1,2364,891, 106995,2167,1,6,2172,
104351,1113,3840,16,0, 107001,7,2177,1,8,
10436161,1,112,3841,16, 107013860,16,0,131,1,
104370,176,1,1117,3842, 107021515,3861,16,0,176,
1043816,0,168,1,2775, 107031,2523,3862,16,0,
104393374,1,1873,899,1, 10704468,1,2022,3863,16,
104401876,3843,16,0,168, 107050,548,1,256,3864,
104411,372,3844,16,0, 1070616,0,184,1,2777,
10442584,1,374,3845,16, 107073865,16,0,714,1,
104430,586,1,124,3846, 107082025,3866,16,0,552,
1044416,0,176,1,376, 107091,18,3867,16,0,
104453847,16,0,588,1, 10710148,1,2027,3868,16,
10446378,3848,16,0,590, 107110,556,1,2029,811,
104471,2136,906,1,2718, 107121,2030,817,1,2031,
104483849,16,0,176,1, 10713822,1,2032,827,1,
10449381,3850,16,0,176, 107142033,832,1,277,3869,
104501,525,3851,16,0, 1071516,0,184,1,2035,
10451176,1,137,3852,16, 10716838,1,2037,843,1,
104520,176,1,1901,3853, 107172540,3870,16,0,498,
1045316,0,168,1,1153, 107181,2039,848,1,32,
104543854,16,0,168,1, 107193871,16,0,176,1,
10455151,3855,16,0,176, 107202041,854,1,2795,3426,
104561,1407,3856,16,0, 107211,2796,3432,1,2797,
10457168,1,1659,3857,16, 107223437,1,2798,3442,1,
104580,168,1,2413,3858, 1072341,3872,16,0,184,
1045916,0,168,1,406, 107241,1297,3873,16,0,
104603859,16,0,176,1, 10725176,1,43,3874,16,
104611371,3860,16,0,168, 107260,184,1,46,3875,
104621,1860,885,1,2105, 1072716,0,189,1,1804,
10463878,1,166,3861,16, 107283876,16,0,176,1,
104640,176,1,1622,3862, 10729299,3877,16,0,184,
1046516,0,176,1,1931, 107301,52,3878,16,0,
10466925,1,1933,3863,16, 10731176,1,509,3879,16,
104670,168,1,431,3864, 107320,184,1,2318,3880,
1046816,0,176,1,1585, 1073316,0,176,1,62,
104693865,16,0,176,1, 107343881,16,0,206,1,
10470182,3866,16,0,176, 1073565,3882,16,0,208,
104711,1189,3867,16,0, 107361,2075,3883,16,0,
10472168,1,1443,3868,16, 10737176,1,1574,885,1,
104730,168,1,1695,3869, 1073871,3884,16,0,184,
1047416,0,168,1,2198, 107391,1775,3885,16,0,
104753870,16,0,168,1, 10740176,1,76,3886,16,
10476447,3871,16,0,176, 107410,184,1,1834,3887,
104771,2458,940,1,2459, 1074216,0,176,1,2337,
10478946,1,1958,3872,16, 107433888,16,0,176,1,
104790,168,1,2462,953, 1074479,3889,16,0,184,
104801,1657,958,1,2464, 107451,1335,3890,16,0,
10481963,1,2466,3396,1, 10746176,1,2511,3891,16,
10482459,3873,16,0,176, 107470,453,1,322,3892,
104831,2468,3874,16,0, 1074816,0,184,1,85,
10484357,1,462,3875,16, 107493893,16,0,184,1,
104850,176,1,199,3876, 107501261,3894,16,0,176,
1048616,0,176,1,217, 107511,89,3895,16,0,
104873877,16,0,176,1, 10752184,1,2765,3453,1,
104882227,972,1,1225,3878, 10753346,3896,16,0,184,
1048916,0,168,1,1479, 107541,97,3897,16,0,
104903879,16,0,168,1, 10755184,1,2106,3898,16,
104911731,3880,16,0,176, 107560,176,1,2043,860,
104921,1989,980,1,1990, 107571,102,3899,16,0,
104933881,16,0,168,1, 10758184,1,1860,907,1,
10494236,3882,16,0,176, 107591803,873,1,2364,913,
104951,2754,3390,1,2755, 107601,2293,3900,16,0,
104963883,16,0,674,1, 10761184,1,1113,3901,16,
104972507,3884,16,0,452, 107620,168,1,112,3902,
104981,1756,3885,16,0, 1076316,0,184,1,1117,
10499168,1,93,3886,19, 107643903,16,0,176,1,
10500687,1,93,3887,5, 107651873,921,1,1876,3904,
1050195,1,256,3888,16, 1076616,0,176,1,372,
105020,685,1,1261,3889, 107673905,16,0,586,1,
1050316,0,685,1,509, 10768374,3906,16,0,588,
105043890,16,0,685,1, 107691,124,3907,16,0,
105051515,3891,16,0,685, 10770184,1,376,3908,16,
105061,2021,782,1,1775, 107710,590,1,378,3909,
105073892,16,0,685,1, 1077216,0,592,1,2136,
105082029,789,1,2030,795, 10773928,1,381,3910,16,
105091,2031,800,1,2032, 107740,184,1,525,3911,
10510805,1,2033,810,1, 1077516,0,184,1,137,
10511277,3893,16,0,685, 107763912,16,0,184,1,
105121,2035,816,1,2037, 107772021,804,1,1901,3913,
10513821,1,2039,826,1, 1077816,0,176,1,1153,
1051432,3894,16,0,685, 107793914,16,0,176,1,
105151,2041,832,1,2293, 10780151,3915,16,0,184,
105163895,16,0,685,1, 107811,1407,3916,16,0,
105172043,838,1,2045,843, 10782176,1,1659,3917,16,
105181,41,3896,16,0, 107830,176,1,2413,3918,
10519685,1,1297,3897,16, 1078416,0,176,1,406,
105200,685,1,43,3898, 107853919,16,0,184,1,
1052116,0,685,1,1803, 107861371,3920,16,0,176,
10522851,1,1804,3899,16, 107871,2105,900,1,166,
105230,685,1,299,3900, 107883921,16,0,184,1,
1052416,0,685,1,52, 107892045,865,1,1622,3922,
105253901,16,0,685,1, 1079016,0,184,1,1931,
105262318,3902,16,0,685, 10791946,1,1933,3923,16,
105271,62,3903,16,0, 107920,176,1,431,3924,
10528685,1,2075,3904,16, 1079316,0,184,1,1585,
105290,685,1,1574,863, 107943925,16,0,184,1,
105301,71,3905,16,0, 10795182,3926,16,0,184,
10531685,1,76,3906,16, 107961,1189,3927,16,0,
105320,685,1,1834,3907, 10797176,1,1443,3928,16,
1053316,0,685,1,2337, 107980,176,1,1695,3929,
105343908,16,0,685,1, 1079916,0,176,1,2198,
1053579,3909,16,0,685, 108003930,16,0,176,1,
105361,1335,3910,16,0, 108012776,3417,1,447,3931,
10537685,1,322,3911,16, 1080216,0,184,1,2458,
105380,685,1,85,3912, 10803961,1,2459,967,1,
1053916,0,685,1,89, 108041958,3932,16,0,176,
105403913,16,0,685,1, 108051,2462,974,1,1657,
10541346,3914,16,0,685, 10806979,1,2464,984,1,
105421,2105,878,1,2106, 108072466,3447,1,459,3933,
105433915,16,0,685,1, 1080816,0,184,1,2468,
1054497,3916,16,0,685, 108093934,16,0,352,1,
105451,1860,885,1,2364, 10810462,3935,16,0,184,
10546891,1,102,3917,16, 108111,199,3936,16,0,
105470,685,1,112,3918, 10812184,1,217,3937,16,
1054816,0,685,1,1117, 108130,184,1,2227,993,
105493919,16,0,685,1, 108141,1225,3938,16,0,
105501873,899,1,1876,3920, 10815176,1,1479,3939,16,
1055116,0,685,1,124, 108160,176,1,1731,3940,
105523921,16,0,685,1, 1081716,0,184,1,2737,
105532136,906,1,2718,3922, 108183459,1,2740,3941,16,
1055416,0,685,1,381, 108190,184,1,1989,1002,
105553923,16,0,685,1, 108201,1990,3942,16,0,
10556525,3924,16,0,685, 10821176,1,236,3943,16,
105571,137,3925,16,0, 108220,184,1,2507,3944,
10558685,1,1901,3926,16, 1082316,0,447,1,1756,
105590,685,1,1153,3927, 108243945,16,0,176,1,
1056016,0,685,1,151, 1082593,3946,19,702,1,
105613928,16,0,685,1, 1082693,3947,5,95,1,
105621407,3929,16,0,685, 10827256,3948,16,0,700,
105631,1659,3930,16,0, 108281,1261,3949,16,0,
10564685,1,2413,3931,16, 10829700,1,509,3950,16,
105650,685,1,406,3932, 108300,700,1,1515,3951,
1056616,0,685,1,1371, 1083116,0,700,1,2021,
105673933,16,0,685,1, 10832804,1,1775,3952,16,
10568166,3934,16,0,685, 108330,700,1,2029,811,
105691,1622,3935,16,0, 108341,2030,817,1,2031,
10570685,1,1931,925,1, 10835822,1,2032,827,1,
105711933,3936,16,0,685, 108362033,832,1,277,3953,
105721,431,3937,16,0, 1083716,0,700,1,2035,
10573685,1,1585,3938,16, 10838838,1,2037,843,1,
105740,685,1,182,3939, 108392039,848,1,32,3954,
1057516,0,685,1,1189, 1084016,0,700,1,2041,
105763940,16,0,685,1, 10841854,1,2293,3955,16,
105771443,3941,16,0,685, 108420,700,1,2043,860,
105781,1695,3942,16,0, 108431,2045,865,1,41,
10579685,1,2198,3943,16, 108443956,16,0,700,1,
105800,685,1,447,3944, 108451297,3957,16,0,700,
1058116,0,685,1,2458, 108461,43,3958,16,0,
10582940,1,2459,946,1, 10847700,1,1803,873,1,
105831958,3945,16,0,685, 108481804,3959,16,0,700,
105841,2462,953,1,1657, 108491,299,3960,16,0,
10585958,1,2464,963,1, 10850700,1,52,3961,16,
10586199,3946,16,0,685, 108510,700,1,2318,3962,
105871,459,3947,16,0, 1085216,0,700,1,62,
10588685,1,462,3948,16, 108533963,16,0,700,1,
105890,685,1,217,3949, 108542075,3964,16,0,700,
1059016,0,685,1,2227, 108551,1574,885,1,71,
10591972,1,1225,3950,16, 108563965,16,0,700,1,
105920,685,1,1479,3951, 1085776,3966,16,0,700,
1059316,0,685,1,1731, 108581,1834,3967,16,0,
105943952,16,0,685,1, 10859700,1,2337,3968,16,
105951989,980,1,1990,3953, 108600,700,1,79,3969,
1059616,0,685,1,236, 1086116,0,700,1,1335,
105973954,16,0,685,1, 108623970,16,0,700,1,
105981756,3955,16,0,685, 10863322,3971,16,0,700,
105991,94,3956,19,684, 108641,85,3972,16,0,
106001,94,3957,5,95, 10865700,1,89,3973,16,
106011,256,3958,16,0, 108660,700,1,346,3974,
10602682,1,1261,3959,16, 1086716,0,700,1,2105,
106030,682,1,509,3960, 10868900,1,2106,3975,16,
1060416,0,682,1,1515, 108690,700,1,97,3976,
106053961,16,0,682,1, 1087016,0,700,1,1860,
106062021,782,1,1775,3962, 10871907,1,2364,913,1,
1060716,0,682,1,2029, 10872102,3977,16,0,700,
10608789,1,2030,795,1, 108731,112,3978,16,0,
106092031,800,1,2032,805, 10874700,1,1117,3979,16,
106101,2033,810,1,277, 108750,700,1,1873,921,
106113963,16,0,682,1, 108761,1876,3980,16,0,
106122035,816,1,2037,821, 10877700,1,124,3981,16,
106131,2039,826,1,32, 108780,700,1,2136,928,
106143964,16,0,682,1, 108791,381,3982,16,0,
106152041,832,1,2293,3965, 10880700,1,525,3983,16,
1061616,0,682,1,2043, 108810,700,1,137,3984,
10617838,1,2045,843,1, 1088216,0,700,1,1901,
1061841,3966,16,0,682, 108833985,16,0,700,1,
106191,1297,3967,16,0, 108841153,3986,16,0,700,
10620682,1,43,3968,16, 108851,151,3987,16,0,
106210,682,1,1803,851, 10886700,1,1407,3988,16,
106221,1804,3969,16,0, 108870,700,1,1659,3989,
10623682,1,299,3970,16, 1088816,0,700,1,2413,
106240,682,1,52,3971, 108893990,16,0,700,1,
1062516,0,682,1,2318, 10890406,3991,16,0,700,
106263972,16,0,682,1, 108911,1371,3992,16,0,
1062762,3973,16,0,682, 10892700,1,166,3993,16,
106281,2075,3974,16,0, 108930,700,1,1622,3994,
10629682,1,1574,863,1, 1089416,0,700,1,1931,
1063071,3975,16,0,682, 10895946,1,1933,3995,16,
106311,76,3976,16,0, 108960,700,1,431,3996,
10632682,1,1834,3977,16, 1089716,0,700,1,1585,
106330,682,1,2337,3978, 108983997,16,0,700,1,
1063416,0,682,1,79, 10899182,3998,16,0,700,
106353979,16,0,682,1, 109001,1189,3999,16,0,
106361335,3980,16,0,682, 10901700,1,1443,4000,16,
106371,322,3981,16,0, 109020,700,1,1695,4001,
10638682,1,85,3982,16, 1090316,0,700,1,2198,
106390,682,1,89,3983, 109044002,16,0,700,1,
1064016,0,682,1,346, 10905447,4003,16,0,700,
106413984,16,0,682,1, 109061,2458,961,1,2459,
106422105,878,1,2106,3985, 10907967,1,1958,4004,16,
1064316,0,682,1,97, 109080,700,1,2462,974,
106443986,16,0,682,1, 109091,1657,979,1,2464,
106451860,885,1,2364,891, 10910984,1,199,4005,16,
106461,102,3987,16,0, 109110,700,1,459,4006,
10647682,1,112,3988,16, 1091216,0,700,1,462,
106480,682,1,1117,3989, 109134007,16,0,700,1,
1064916,0,682,1,1873, 10914217,4008,16,0,700,
10650899,1,1876,3990,16, 109151,2227,993,1,1225,
106510,682,1,124,3991, 109164009,16,0,700,1,
1065216,0,682,1,2136, 109171479,4010,16,0,700,
10653906,1,2718,3992,16, 109181,1731,4011,16,0,
106540,682,1,381,3993, 10919700,1,2740,4012,16,
1065516,0,682,1,525, 109200,700,1,1989,1002,
106563994,16,0,682,1, 109211,1990,4013,16,0,
10657137,3995,16,0,682, 10922700,1,236,4014,16,
106581,1901,3996,16,0, 109230,700,1,1756,4015,
10659682,1,1153,3997,16, 1092416,0,700,1,94,
106600,682,1,151,3998, 109254016,19,699,1,94,
1066116,0,682,1,1407, 109264017,5,95,1,256,
106623999,16,0,682,1, 109274018,16,0,697,1,
106631659,4000,16,0,682, 109281261,4019,16,0,697,
106641,2413,4001,16,0, 109291,509,4020,16,0,
10665682,1,406,4002,16, 10930697,1,1515,4021,16,
106660,682,1,1371,4003, 109310,697,1,2021,804,
1066716,0,682,1,166, 109321,1775,4022,16,0,
106684004,16,0,682,1, 10933697,1,2029,811,1,
106691622,4005,16,0,682, 109342030,817,1,2031,822,
106701,1931,925,1,1933, 109351,2032,827,1,2033,
106714006,16,0,682,1, 10936832,1,277,4023,16,
10672431,4007,16,0,682, 109370,697,1,2035,838,
106731,1585,4008,16,0, 109381,2037,843,1,2039,
10674682,1,182,4009,16, 10939848,1,32,4024,16,
106750,682,1,1189,4010, 109400,697,1,2041,854,
1067616,0,682,1,1443, 109411,2293,4025,16,0,
106774011,16,0,682,1, 10942697,1,2043,860,1,
106781695,4012,16,0,682, 109432045,865,1,41,4026,
106791,2198,4013,16,0, 1094416,0,697,1,1297,
10680682,1,447,4014,16, 109454027,16,0,697,1,
106810,682,1,2458,940, 1094643,4028,16,0,697,
106821,2459,946,1,1958, 109471,1803,873,1,1804,
106834015,16,0,682,1, 109484029,16,0,697,1,
106842462,953,1,1657,958, 10949299,4030,16,0,697,
106851,2464,963,1,199, 109501,52,4031,16,0,
106864016,16,0,682,1, 10951697,1,2318,4032,16,
10687459,4017,16,0,682, 109520,697,1,62,4033,
106881,462,4018,16,0, 1095316,0,697,1,2075,
10689682,1,217,4019,16, 109544034,16,0,697,1,
106900,682,1,2227,972, 109551574,885,1,71,4035,
106911,1225,4020,16,0, 1095616,0,697,1,76,
10692682,1,1479,4021,16, 109574036,16,0,697,1,
106930,682,1,1731,4022, 109581834,4037,16,0,697,
1069416,0,682,1,1989, 109591,2337,4038,16,0,
10695980,1,1990,4023,16, 10960697,1,79,4039,16,
106960,682,1,236,4024, 109610,697,1,1335,4040,
1069716,0,682,1,1756, 1096216,0,697,1,322,
106984025,16,0,682,1, 109634041,16,0,697,1,
1069995,4026,19,681,1, 1096485,4042,16,0,697,
1070095,4027,5,95,1, 109651,89,4043,16,0,
10701256,4028,16,0,679, 10966697,1,346,4044,16,
107021,1261,4029,16,0, 109670,697,1,2105,900,
10703679,1,509,4030,16, 109681,2106,4045,16,0,
107040,679,1,1515,4031, 10969697,1,97,4046,16,
1070516,0,679,1,2021, 109700,697,1,1860,907,
10706782,1,1775,4032,16, 109711,2364,913,1,102,
107070,679,1,2029,789, 109724047,16,0,697,1,
107081,2030,795,1,2031, 10973112,4048,16,0,697,
10709800,1,2032,805,1, 109741,1117,4049,16,0,
107102033,810,1,277,4033, 10975697,1,1873,921,1,
1071116,0,679,1,2035, 109761876,4050,16,0,697,
10712816,1,2037,821,1, 109771,124,4051,16,0,
107132039,826,1,32,4034, 10978697,1,2136,928,1,
1071416,0,679,1,2041, 10979381,4052,16,0,697,
10715832,1,2293,4035,16, 109801,525,4053,16,0,
107160,679,1,2043,838, 10981697,1,137,4054,16,
107171,2045,843,1,41, 109820,697,1,1901,4055,
107184036,16,0,679,1, 1098316,0,697,1,1153,
107191297,4037,16,0,679, 109844056,16,0,697,1,
107201,43,4038,16,0, 10985151,4057,16,0,697,
10721679,1,1803,851,1, 109861,1407,4058,16,0,
107221804,4039,16,0,679, 10987697,1,1659,4059,16,
107231,299,4040,16,0, 109880,697,1,2413,4060,
10724679,1,52,4041,16, 1098916,0,697,1,406,
107250,679,1,2318,4042, 109904061,16,0,697,1,
1072616,0,679,1,62, 109911371,4062,16,0,697,
107274043,16,0,679,1, 109921,166,4063,16,0,
107282075,4044,16,0,679, 10993697,1,1622,4064,16,
107291,1574,863,1,71, 109940,697,1,1931,946,
107304045,16,0,679,1, 109951,1933,4065,16,0,
1073176,4046,16,0,679, 10996697,1,431,4066,16,
107321,1834,4047,16,0, 109970,697,1,1585,4067,
10733679,1,2337,4048,16, 1099816,0,697,1,182,
107340,679,1,79,4049, 109994068,16,0,697,1,
1073516,0,679,1,1335, 110001189,4069,16,0,697,
107364050,16,0,679,1, 110011,1443,4070,16,0,
10737322,4051,16,0,679, 11002697,1,1695,4071,16,
107381,85,4052,16,0, 110030,697,1,2198,4072,
10739679,1,89,4053,16, 1100416,0,697,1,447,
107400,679,1,346,4054, 110054073,16,0,697,1,
1074116,0,679,1,2105, 110062458,961,1,2459,967,
10742878,1,2106,4055,16, 110071,1958,4074,16,0,
107430,679,1,97,4056, 11008697,1,2462,974,1,
1074416,0,679,1,1860, 110091657,979,1,2464,984,
10745885,1,2364,891,1, 110101,199,4075,16,0,
10746102,4057,16,0,679, 11011697,1,459,4076,16,
107471,112,4058,16,0, 110120,697,1,462,4077,
10748679,1,1117,4059,16, 1101316,0,697,1,217,
107490,679,1,1873,899, 110144078,16,0,697,1,
107501,1876,4060,16,0, 110152227,993,1,1225,4079,
10751679,1,124,4061,16, 1101616,0,697,1,1479,
107520,679,1,2136,906, 110174080,16,0,697,1,
107531,2718,4062,16,0, 110181731,4081,16,0,697,
10754679,1,381,4063,16, 110191,2740,4082,16,0,
107550,679,1,525,4064, 11020697,1,1989,1002,1,
1075616,0,679,1,137, 110211990,4083,16,0,697,
107574065,16,0,679,1, 110221,236,4084,16,0,
107581901,4066,16,0,679, 11023697,1,1756,4085,16,
107591,1153,4067,16,0, 110240,697,1,95,4086,
10760679,1,151,4068,16, 1102519,696,1,95,4087,
107610,679,1,1407,4069, 110265,95,1,256,4088,
1076216,0,679,1,1659, 1102716,0,694,1,1261,
107634070,16,0,679,1, 110284089,16,0,694,1,
107642413,4071,16,0,679, 11029509,4090,16,0,694,
107651,406,4072,16,0, 110301,1515,4091,16,0,
10766679,1,1371,4073,16, 11031694,1,2021,804,1,
107670,679,1,166,4074, 110321775,4092,16,0,694,
1076816,0,679,1,1622, 110331,2029,811,1,2030,
107694075,16,0,679,1, 11034817,1,2031,822,1,
107701931,925,1,1933,4076, 110352032,827,1,2033,832,
1077116,0,679,1,431, 110361,277,4093,16,0,
107724077,16,0,679,1, 11037694,1,2035,838,1,
107731585,4078,16,0,679, 110382037,843,1,2039,848,
107741,182,4079,16,0, 110391,32,4094,16,0,
10775679,1,1189,4080,16, 11040694,1,2041,854,1,
107760,679,1,1443,4081, 110412293,4095,16,0,694,
1077716,0,679,1,1695, 110421,2043,860,1,2045,
107784082,16,0,679,1, 11043865,1,41,4096,16,
107792198,4083,16,0,679, 110440,694,1,1297,4097,
107801,447,4084,16,0, 1104516,0,694,1,43,
10781679,1,2458,940,1, 110464098,16,0,694,1,
107822459,946,1,1958,4085, 110471803,873,1,1804,4099,
1078316,0,679,1,2462, 1104816,0,694,1,299,
10784953,1,1657,958,1, 110494100,16,0,694,1,
107852464,963,1,199,4086, 1105052,4101,16,0,694,
1078616,0,679,1,459, 110511,2318,4102,16,0,
107874087,16,0,679,1, 11052694,1,62,4103,16,
10788462,4088,16,0,679, 110530,694,1,2075,4104,
107891,217,4089,16,0, 1105416,0,694,1,1574,
10790679,1,2227,972,1, 11055885,1,71,4105,16,
107911225,4090,16,0,679, 110560,694,1,76,4106,
107921,1479,4091,16,0, 1105716,0,694,1,1834,
10793679,1,1731,4092,16, 110584107,16,0,694,1,
107940,679,1,1989,980, 110592337,4108,16,0,694,
107951,1990,4093,16,0, 110601,79,4109,16,0,
10796679,1,236,4094,16, 11061694,1,1335,4110,16,
107970,679,1,1756,4095, 110620,694,1,322,4111,
1079816,0,679,1,96, 1106316,0,694,1,85,
107994096,19,103,1,96, 110644112,16,0,694,1,
108004097,5,1,1,0, 1106589,4113,16,0,694,
108014098,16,0,104,1, 110661,346,4114,16,0,
1080297,4099,19,197,1, 11067694,1,2105,900,1,
1080397,4100,5,1,1, 110682106,4115,16,0,694,
108040,4101,16,0,195, 110691,97,4116,16,0,
108051,98,4102,19,305, 11070694,1,1860,907,1,
108061,98,4103,5,2, 110712364,913,1,102,4117,
108071,0,4104,16,0, 1107216,0,694,1,112,
10808303,1,2755,4105,16, 110734118,16,0,694,1,
108090,731,1,99,4106, 110741117,4119,16,0,694,
1081019,299,1,99,4107, 110751,1873,921,1,1876,
108115,2,1,0,4108, 110764120,16,0,694,1,
1081216,0,732,1,2755, 11077124,4121,16,0,694,
108134109,16,0,297,1, 110781,2136,928,1,381,
10814100,4110,19,516,1, 110794122,16,0,694,1,
10815100,4111,5,2,1, 11080525,4123,16,0,694,
108160,4112,16,0,667, 110811,137,4124,16,0,
108171,2755,4113,16,0, 11082694,1,1901,4125,16,
10818514,1,101,4114,19, 110830,694,1,1153,4126,
10819673,1,101,4115,5, 1108416,0,694,1,151,
108204,1,0,4116,16, 110854127,16,0,694,1,
108210,671,1,2696,4117, 110861407,4128,16,0,694,
1082216,0,712,1,2766, 110871,1659,4129,16,0,
108234118,16,0,712,1, 11088694,1,2413,4130,16,
108242755,4119,16,0,671, 110890,694,1,406,4131,
108251,102,4120,19,151, 1109016,0,694,1,1371,
108261,102,4121,5,2, 110914132,16,0,694,1,
108271,2470,4122,16,0, 11092166,4133,16,0,694,
10828510,1,2605,4123,16, 110931,1622,4134,16,0,
108290,149,1,103,4124, 11094694,1,1931,946,1,
1083019,654,1,103,4125, 110951933,4135,16,0,694,
108315,4,1,2553,4126, 110961,431,4136,16,0,
1083216,0,720,1,2645, 11097694,1,1585,4137,16,
108334127,16,0,720,1, 110980,694,1,182,4138,
108342470,4128,16,0,652, 1109916,0,694,1,1189,
108351,2605,4129,16,0, 111004139,16,0,694,1,
10836652,1,104,4130,19, 111011443,4140,16,0,694,
10837645,1,104,4131,5, 111021,1695,4141,16,0,
108384,1,2553,4132,16, 11103694,1,2198,4142,16,
108390,643,1,2645,4133, 111040,694,1,447,4143,
1084016,0,643,1,2470, 1110516,0,694,1,2458,
108414134,16,0,651,1, 11106961,1,2459,967,1,
108422605,4135,16,0,651, 111071958,4144,16,0,694,
108431,105,4136,19,500, 111081,2462,974,1,1657,
108441,105,4137,5,4, 11109979,1,2464,984,1,
108451,2553,4138,16,0, 11110199,4145,16,0,694,
10846642,1,2645,4139,16, 111111,459,4146,16,0,
108470,642,1,2470,4140, 11112694,1,462,4147,16,
1084816,0,498,1,2605, 111130,694,1,217,4148,
108494141,16,0,498,1, 1111416,0,694,1,2227,
10850106,4142,19,641,1, 11115993,1,1225,4149,16,
10851106,4143,5,4,1, 111160,694,1,1479,4150,
108522553,4144,16,0,639, 1111716,0,694,1,1731,
108531,2645,4145,16,0, 111184151,16,0,694,1,
10854639,1,2470,4146,16, 111192740,4152,16,0,694,
108550,723,1,2605,4147, 111201,1989,1002,1,1990,
1085616,0,723,1,107, 111214153,16,0,694,1,
108574148,19,343,1,107, 11122236,4154,16,0,694,
108584149,5,4,1,2553, 111231,1756,4155,16,0,
108594150,16,0,638,1, 11124694,1,96,4156,19,
108602645,4151,16,0,638, 11125103,1,96,4157,5,
108611,2470,4152,16,0, 111261,1,0,4158,16,
10862341,1,2605,4153,16, 111270,104,1,97,4159,
108630,341,1,108,4154, 1112819,758,1,97,4160,
1086419,141,1,108,4155, 111295,1,1,0,4161,
108655,3,1,2702,4156, 1113016,0,756,1,98,
1086616,0,692,1,2538, 111314162,19,139,1,98,
108674157,16,0,230,1, 111324163,5,2,1,0,
1086810,4158,16,0,139, 111334164,16,0,143,1,
108691,109,4159,19,284, 111342777,4165,16,0,137,
108701,109,4160,5,1, 111351,99,4166,19,142,
108711,2524,4161,16,0, 111361,99,4167,5,2,
10872282,1,110,4162,19, 111371,0,4168,16,0,
10873472,1,110,4163,5, 11138140,1,2777,4169,16,
108741,1,2515,4164,16, 111390,248,1,100,4170,
108750,470,1,111,4165, 1114019,243,1,100,4171,
1087619,458,1,111,4166, 111415,2,1,0,4172,
108775,1,1,2506,4167, 1114216,0,708,1,2777,
1087816,0,456,1,112, 111434173,16,0,241,1,
108794168,19,154,1,112, 11144101,4174,19,712,1,
108804169,5,17,1,0, 11145101,4175,5,4,1,
108814170,16,0,695,1, 111460,4176,16,0,713,
108822702,4171,16,0,353, 111471,2718,4177,16,0,
108831,2075,4172,16,0, 11148710,1,2777,4178,16,
10884704,1,2337,4173,16, 111490,713,1,2788,4179,
108850,704,1,2413,4174, 1115016,0,710,1,102,
1088616,0,704,1,10, 111514180,19,722,1,102,
108874175,16,0,353,1, 111524181,5,2,1,2623,
108881901,4176,16,0,704, 111534182,16,0,739,1,
108891,2198,4177,16,0, 111542470,4183,16,0,720,
10890704,1,2106,4178,16, 111551,103,4184,19,622,
108910,704,1,2755,4179, 111561,103,4185,5,4,
1089216,0,695,1,21, 111571,2664,4186,16,0,
108934180,16,0,152,1, 11158685,1,2623,4187,16,
108942538,4181,16,0,353, 111590,620,1,2470,4188,
108951,1804,4182,16,0, 1116016,0,620,1,2568,
10896704,1,1990,4183,16, 111614189,16,0,685,1,
108970,704,1,32,4184, 11162104,4190,19,619,1,
1089816,0,704,1,1958, 11163104,4191,5,4,1,
108994185,16,0,704,1, 111642664,4192,16,0,684,
109001775,4186,16,0,704, 111651,2623,4193,16,0,
109011,113,4187,19,275, 11166617,1,2470,4194,16,
109021,113,4188,5,1, 111670,617,1,2568,4195,
109031,2524,4189,16,0, 1116816,0,684,1,105,
10904273,1,114,4190,19, 111694196,19,616,1,105,
10905469,1,114,4191,5, 111704197,5,4,1,2664,
109061,1,2515,4192,16, 111714198,16,0,683,1,
109070,467,1,115,4193, 111722623,4199,16,0,614,
1090819,455,1,115,4194, 111731,2470,4200,16,0,
109095,1,1,2506,4195, 11174614,1,2568,4201,16,
1091016,0,453,1,116, 111750,683,1,106,4202,
109114196,19,130,1,116, 1117619,602,1,106,4203,
109124197,5,18,1,0, 111775,4,1,2664,4204,
109134198,16,0,128,1, 1117816,0,600,1,2623,
109142702,4199,16,0,137, 111794205,16,0,690,1,
109151,2075,4200,16,0, 111802470,4206,16,0,690,
10916137,1,2337,4201,16, 111811,2568,4207,16,0,
109170,137,1,2413,4202, 11182600,1,107,4208,19,
1091816,0,137,1,10, 11183599,1,107,4209,5,
109194203,16,0,137,1, 111844,1,2664,4210,16,
109202198,4204,16,0,137, 111850,597,1,2623,4211,
109211,1901,4205,16,0, 1118616,0,612,1,2470,
10922137,1,52,4206,16, 111874212,16,0,612,1,
109230,200,1,2106,4207, 111882568,4213,16,0,597,
1092416,0,137,1,2755, 111891,108,4214,19,611,
109254208,16,0,128,1, 111901,108,4215,5,4,
1092621,4209,16,0,137, 111911,2664,4216,16,0,
109271,2538,4210,16,0, 11192754,1,2623,4217,16,
10928137,1,1804,4211,16, 111930,609,1,2470,4218,
109290,137,1,1990,4212, 1119416,0,609,1,2568,
1093016,0,137,1,32, 111954219,16,0,754,1,
109314213,16,0,137,1, 11196109,4220,19,151,1,
109321958,4214,16,0,137, 11197109,4221,5,3,1,
109331,1775,4215,16,0, 111982553,4222,16,0,517,
10934137,1,117,4216,19, 111991,2724,4223,16,0,
10935604,1,117,4217,5, 11200723,1,10,4224,16,
109364,1,2553,4218,16, 112010,149,1,110,4225,
109370,602,1,2645,4219, 1120219,629,1,110,4226,
1093816,0,602,1,2470, 112035,1,1,2539,4227,
109394220,16,0,602,1, 1120416,0,627,1,111,
109402605,4221,16,0,602, 112054228,19,487,1,111,
109411,118,4222,19,490, 112064229,5,1,1,2531,
109421,118,4223,5,4, 112074230,16,0,485,1,
109431,2553,4224,16,0, 11208112,4231,19,474,1,
10944488,1,2645,4225,16, 11209112,4232,5,1,1,
109450,488,1,2470,4226, 112102522,4233,16,0,472,
1094616,0,488,1,2605, 112111,113,4234,19,462,
109474227,16,0,488,1, 112121,113,4235,5,1,
10948119,4228,19,478,1, 112131,2506,4236,16,0,
10949119,4229,5,4,1, 11214460,1,114,4237,19,
109502553,4230,16,0,476, 11215161,1,114,4238,5,
109511,2645,4231,16,0, 1121617,1,0,4239,16,
10952476,1,2470,4232,16, 112170,731,1,2777,4240,
109530,476,1,2605,4233, 1121816,0,731,1,2075,
1095416,0,476,1,120, 112194241,16,0,725,1,
109554234,19,463,1,120, 112202337,4242,16,0,725,
109564235,5,4,1,2553, 112211,2413,4243,16,0,
109574236,16,0,461,1, 11222725,1,2553,4244,16,
109582645,4237,16,0,461, 112230,348,1,10,4245,
109591,2470,4238,16,0, 1122416,0,348,1,1901,
10960461,1,2605,4239,16, 112254246,16,0,725,1,
109610,461,1,121,4240, 112262198,4247,16,0,725,
1096219,715,1,121,4241, 112271,21,4248,16,0,
109635,4,1,2553,4242, 11228159,1,2106,4249,16,
1096416,0,713,1,2645, 112290,725,1,2724,4250,
109654243,16,0,713,1, 1123016,0,348,1,1804,
109662470,4244,16,0,713, 112314251,16,0,725,1,
109671,2605,4245,16,0, 112321990,4252,16,0,725,
10968713,1,122,4246,19, 112331,32,4253,16,0,
10969352,1,122,4247,5, 11234725,1,1958,4254,16,
1097018,1,2075,4248,16, 112350,725,1,1775,4255,
109710,555,1,2520,4249, 1123616,0,725,1,115,
1097216,0,475,1,2337, 112374256,19,501,1,115,
109734250,16,0,555,1, 112384257,5,1,1,2539,
109742413,4251,16,0,555, 112394258,16,0,499,1,
109751,2511,4252,16,0, 11240116,4259,19,450,1,
10976460,1,2713,4253,16, 11241116,4260,5,2,1,
109770,694,1,2529,4254, 112422531,4261,16,0,607,
1097816,0,487,1,1901, 112431,2506,4262,16,0,
109794255,16,0,555,1, 11244448,1,117,4263,19,
109802198,4256,16,0,555, 11245471,1,117,4264,5,
109811,2534,4257,16,0, 112461,1,2522,4265,16,
10982601,1,2106,4258,16, 112470,469,1,118,4266,
109830,555,1,1804,4259, 1124819,456,1,118,4267,
1098416,0,555,1,1990, 112495,2,1,2510,4268,
109854260,16,0,555,1, 1125016,0,454,1,2514,
1098631,4261,16,0,350, 112514269,16,0,459,1,
109871,32,4262,16,0, 11252119,4270,19,130,1,
10988555,1,2549,4263,16, 11253119,4271,5,18,1,
109890,508,1,1958,4264, 112540,4272,16,0,128,
1099016,0,555,1,1775, 112551,2777,4273,16,0,
109914265,16,0,555,1, 11256128,1,2075,4274,16,
10992123,4266,19,315,1, 112570,147,1,2337,4275,
10993123,4267,5,1,1, 1125816,0,147,1,2413,
1099432,4268,16,0,313, 112594276,16,0,147,1,
109951,124,4269,19,262, 112602553,4277,16,0,147,
109961,124,4270,5,11, 112611,10,4278,16,0,
109971,2075,4271,16,0, 11262147,1,2198,4279,16,
10998625,1,2337,4272,16, 112630,147,1,1901,4280,
109990,266,1,2413,4273, 1126416,0,147,1,52,
1100016,0,493,1,1901, 112654281,16,0,204,1,
110014274,16,0,408,1, 1126621,4282,16,0,147,
110022198,4275,16,0,332, 112671,2106,4283,16,0,
110031,2106,4276,16,0, 11268147,1,2724,4284,16,
11004666,1,1804,4277,16, 112690,147,1,1804,4285,
110050,292,1,1990,4278, 1127016,0,147,1,1990,
1100616,0,543,1,32, 112714286,16,0,147,1,
110074279,16,0,346,1, 1127232,4287,16,0,147,
110081958,4280,16,0,502, 112731,1958,4288,16,0,
110091,1775,4281,16,0, 11274147,1,1775,4289,16,
11010260,1,125,4282,19, 112750,147,1,120,4290,
11011631,1,125,4283,5, 1127619,638,1,120,4291,
1101211,1,2075,4284,16, 112775,4,1,2664,4292,
110130,629,1,2337,4285, 1127816,0,636,1,2623,
1101416,0,629,1,2413, 112794293,16,0,636,1,
110154286,16,0,629,1, 112802470,4294,16,0,636,
110161901,4287,16,0,629, 112811,2568,4295,16,0,
110171,2198,4288,16,0, 11282636,1,121,4296,19,
11018629,1,2106,4289,16, 11283236,1,121,4297,5,
110190,629,1,1804,4290, 112844,1,2664,4298,16,
1102016,0,629,1,1990, 112850,234,1,2623,4299,
110214291,16,0,629,1, 1128616,0,234,1,2470,
1102232,4292,16,0,629, 112874300,16,0,234,1,
110231,1958,4293,16,0, 112882568,4301,16,0,234,
11024629,1,1775,4294,16, 112891,122,4302,19,495,
110250,629,1,126,4295, 112901,122,4303,5,4,
1102619,701,1,126,4296, 112911,2664,4304,16,0,
110275,11,1,2075,4297, 11292493,1,2623,4305,16,
1102816,0,699,1,2337, 112930,493,1,2470,4306,
110294298,16,0,699,1, 1129416,0,493,1,2568,
110302413,4299,16,0,699, 112954307,16,0,493,1,
110311,1901,4300,16,0, 11296123,4308,19,482,1,
11032699,1,2198,4301,16, 11297123,4309,5,4,1,
110330,699,1,2106,4302, 112982664,4310,16,0,480,
1103416,0,699,1,1804, 112991,2623,4311,16,0,
110354303,16,0,699,1, 11300480,1,2470,4312,16,
110361990,4304,16,0,699, 113010,480,1,2568,4313,
110371,32,4305,16,0, 1130216,0,480,1,124,
11038699,1,1958,4306,16, 113034314,19,746,1,124,
110390,699,1,1775,4307, 113044315,5,4,1,2664,
1104016,0,699,1,127, 113054316,16,0,744,1,
110414308,19,164,1,127, 113062623,4317,16,0,744,
110424309,5,31,1,1901, 113071,2470,4318,16,0,
110434310,16,0,703,1, 11308744,1,2568,4319,16,
110441479,4311,16,0,605, 113090,744,1,125,4320,
110451,2075,4312,16,0, 1131019,737,1,125,4321,
11046703,1,1695,4313,16, 113115,4,1,2664,4322,
110470,198,1,1756,4314, 1131216,0,735,1,2623,
1104816,0,191,1,2413, 113134323,16,0,735,1,
110494315,16,0,703,1, 113142470,4324,16,0,735,
110502198,4316,16,0,703, 113151,2568,4325,16,0,
110511,1876,4317,16,0, 11316735,1,126,4326,19,
11052717,1,1659,4318,16, 11317271,1,126,4327,5,
110530,191,1,1443,4319, 1131819,1,2544,4328,16,
1105416,0,571,1,1117, 113190,630,1,2518,4329,
110554320,16,0,162,1, 1132016,0,666,1,2075,
110561990,4321,16,0,703, 113214330,16,0,557,1,
110571,1189,4322,16,0, 113222337,4331,16,0,557,
11058245,1,1775,4323,16, 113231,2413,4332,16,0,
110590,703,1,32,4324, 11324557,1,2527,4333,16,
1106016,0,703,1,2106, 113250,479,1,1901,4334,
110614325,16,0,703,1, 1132616,0,557,1,2198,
110621515,4326,16,0,627, 113274335,16,0,557,1,
110631,2337,4327,16,0, 113282535,4336,16,0,613,
11064703,1,52,4328,16, 113291,2564,4337,16,0,
110650,647,1,1804,4329, 11330522,1,2106,4338,16,
1106616,0,703,1,1261, 113310,557,1,1958,4339,
110674330,16,0,309,1, 1133216,0,557,1,1804,
110681153,4331,16,0,252, 113334340,16,0,557,1,
110691,1225,4332,16,0, 113341990,4341,16,0,557,
11070278,1,1335,4333,16, 113351,31,4342,16,0,
110710,485,1,1933,4334, 11336347,1,32,4343,16,
1107216,0,608,1,1834, 113370,557,1,2549,4344,
110734335,16,0,325,1, 1133816,0,511,1,2735,
110741297,4336,16,0,336, 113394345,16,0,269,1,
110751,1407,4337,16,0, 113401775,4346,16,0,557,
11076619,1,2318,4338,16, 113411,127,4347,19,317,
110770,191,1,1958,4339, 113421,127,4348,5,1,
1107816,0,703,1,1371, 113431,32,4349,16,0,
110794340,16,0,473,1, 11344315,1,128,4350,19,
11080128,4341,19,580,1, 11345275,1,128,4351,5,
11081128,4342,5,11,1, 1134611,1,2075,4352,16,
110822075,4343,16,0,578, 113470,653,1,2337,4353,
110831,2337,4344,16,0, 1134816,0,279,1,2413,
11084578,1,2413,4345,16, 113494354,16,0,489,1,
110850,578,1,1901,4346, 113501901,4355,16,0,403,
1108616,0,578,1,2198, 113511,2198,4356,16,0,
110874347,16,0,578,1, 11352333,1,2106,4357,16,
110882106,4348,16,0,578, 113530,682,1,1804,4358,
110891,1804,4349,16,0, 1135416,0,300,1,1990,
11090578,1,1990,4350,16, 113554359,16,0,545,1,
110910,578,1,32,4351, 1135632,4360,16,0,343,
1109216,0,578,1,1958, 113571,1958,4361,16,0,
110934352,16,0,578,1, 11358504,1,1775,4362,16,
110941775,4353,16,0,578, 113590,273,1,129,4363,
110951,129,4354,19,576, 1136019,659,1,129,4364,
110961,129,4355,5,11, 113615,11,1,2075,4365,
110971,2075,4356,16,0, 1136216,0,657,1,2337,
11098574,1,2337,4357,16, 113634366,16,0,657,1,
110990,574,1,2413,4358, 113642413,4367,16,0,657,
1110016,0,574,1,1901, 113651,1901,4368,16,0,
111014359,16,0,574,1, 11366657,1,2198,4369,16,
111022198,4360,16,0,574, 113670,657,1,2106,4370,
111031,2106,4361,16,0, 1136816,0,657,1,1804,
11104574,1,1804,4362,16, 113694371,16,0,657,1,
111050,574,1,1990,4363, 113701990,4372,16,0,657,
1110616,0,574,1,32, 113711,32,4373,16,0,
111074364,16,0,574,1, 11372657,1,1958,4374,16,
111081958,4365,16,0,574, 113730,657,1,1775,4375,
111091,1775,4366,16,0, 1137416,0,657,1,130,
11110574,1,130,4367,19, 113754376,19,718,1,130,
11111623,1,130,4368,5, 113764377,5,11,1,2075,
1111211,1,2075,4369,16, 113774378,16,0,716,1,
111130,621,1,2337,4370, 113782337,4379,16,0,716,
1111416,0,621,1,2413, 113791,2413,4380,16,0,
111154371,16,0,621,1, 11380716,1,1901,4381,16,
111161901,4372,16,0,621, 113810,716,1,2198,4382,
111171,2198,4373,16,0, 1138216,0,716,1,2106,
11118621,1,2106,4374,16, 113834383,16,0,716,1,
111190,621,1,1804,4375, 113841804,4384,16,0,716,
1112016,0,621,1,1990, 113851,1990,4385,16,0,
111214376,16,0,621,1, 11386716,1,32,4386,16,
1112232,4377,16,0,621, 113870,716,1,1958,4387,
111231,1958,4378,16,0, 1138816,0,716,1,1775,
11124621,1,1775,4379,16, 113894388,16,0,716,1,
111250,621,1,131,4380, 11390131,4389,19,172,1,
1112619,570,1,131,4381, 11391131,4390,5,31,1,
111275,11,1,2075,4382, 113921901,4391,16,0,724,
1112816,0,568,1,2337, 113931,1479,4392,16,0,
111294383,16,0,568,1, 11394631,1,2075,4393,16,
111302413,4384,16,0,568, 113950,724,1,1695,4394,
111311,1901,4385,16,0, 1139616,0,200,1,1756,
11132568,1,2198,4386,16, 113974395,16,0,199,1,
111330,568,1,2106,4387, 113982413,4396,16,0,724,
1113416,0,568,1,1804, 113991,2198,4397,16,0,
111354388,16,0,568,1, 11400724,1,1876,4398,16,
111361990,4389,16,0,568, 114010,741,1,1659,4399,
111371,32,4390,16,0, 1140216,0,199,1,1443,
11138568,1,1958,4391,16, 114034400,16,0,573,1,
111390,568,1,1775,4392, 114041117,4401,16,0,170,
1114016,0,568,1,132,
111414393,19,567,1,132,
111424394,5,11,1,2075,
111434395,16,0,565,1,
111442337,4396,16,0,565,
111451,2413,4397,16,0,
11146565,1,1901,4398,16,
111470,565,1,2198,4399,
1114816,0,565,1,2106,
111494400,16,0,565,1,
111501804,4401,16,0,565,
111511,1990,4402,16,0, 114051,1990,4402,16,0,
11152565,1,32,4403,16, 11406724,1,1189,4403,16,
111530,565,1,1958,4404, 114070,255,1,1775,4404,
1115416,0,565,1,1775, 1140816,0,724,1,32,
111554405,16,0,565,1, 114094405,16,0,724,1,
11156133,4406,19,564,1, 114102106,4406,16,0,724,
11157133,4407,5,11,1, 114111,1515,4407,16,0,
111582075,4408,16,0,562, 11412655,1,2337,4408,16,
111591,2337,4409,16,0, 114130,724,1,52,4409,
11160562,1,2413,4410,16, 1141416,0,667,1,1804,
111610,562,1,1901,4411, 114154410,16,0,724,1,
1116216,0,562,1,2198, 114161261,4411,16,0,311,
111634412,16,0,562,1, 114171,1153,4412,16,0,
111642106,4413,16,0,562, 11418262,1,1225,4413,16,
111651,1804,4414,16,0, 114190,289,1,1335,4414,
11166562,1,1990,4415,16, 1142016,0,478,1,1933,
111670,562,1,32,4416, 114214415,16,0,634,1,
1116816,0,562,1,1958, 114221834,4416,16,0,327,
111694417,16,0,562,1, 114231,1297,4417,16,0,
111701775,4418,16,0,562, 11424337,1,1407,4418,16,
111711,134,4419,19,561, 114250,647,1,2318,4419,
111721,134,4420,5,11, 1142616,0,199,1,1958,
111731,2075,4421,16,0, 114274420,16,0,724,1,
11174559,1,2337,4422,16, 114281371,4421,16,0,464,
111750,559,1,2413,4423, 114291,132,4422,19,582,
1117616,0,559,1,1901, 114301,132,4423,5,11,
111774424,16,0,559,1, 114311,2075,4424,16,0,
111782198,4425,16,0,559, 11432580,1,2337,4425,16,
111791,2106,4426,16,0, 114330,580,1,2413,4426,
11180559,1,1804,4427,16, 1143416,0,580,1,1901,
111810,559,1,1990,4428, 114354427,16,0,580,1,
1118216,0,559,1,32, 114362198,4428,16,0,580,
111834429,16,0,559,1, 114371,2106,4429,16,0,
111841958,4430,16,0,559, 11438580,1,1804,4430,16,
111851,1775,4431,16,0, 114390,580,1,1990,4431,
11186559,1,135,4432,19, 1144016,0,580,1,32,
11187558,1,135,4433,5, 114414432,16,0,580,1,
1118811,1,2075,4434,16, 114421958,4433,16,0,580,
111890,556,1,2337,4435, 114431,1775,4434,16,0,
1119016,0,556,1,2413, 11444580,1,133,4435,19,
111914436,16,0,556,1, 11445578,1,133,4436,5,
111921901,4437,16,0,556, 1144611,1,2075,4437,16,
111931,2198,4438,16,0, 114470,576,1,2337,4438,
11194556,1,2106,4439,16, 1144816,0,576,1,2413,
111950,556,1,1804,4440, 114494439,16,0,576,1,
1119616,0,556,1,1990, 114501901,4440,16,0,576,
111974441,16,0,556,1, 114511,2198,4441,16,0,
1119832,4442,16,0,556, 11452576,1,2106,4442,16,
111991,1958,4443,16,0, 114530,576,1,1804,4443,
11200556,1,1775,4444,16, 1145416,0,576,1,1990,
112010,556,1,136,4445, 114554444,16,0,576,1,
1120219,147,1,136,4446, 1145632,4445,16,0,576,
112035,3,1,1756,4447, 114571,1958,4446,16,0,
1120416,0,291,1,2318, 11458576,1,1775,4447,16,
112054448,16,0,308,1, 114590,576,1,134,4448,
112061659,4449,16,0,145, 1146019,651,1,134,4449,
112071,137,4450,19,597, 114615,11,1,2075,4450,
112081,137,4451,5,68, 1146216,0,649,1,2337,
112091,1901,4452,16,0, 114634451,16,0,649,1,
11210595,1,1479,4453,16, 114642413,4452,16,0,649,
112110,595,1,112,4454, 114651,1901,4453,16,0,
1121216,0,595,1,2293, 11466649,1,2198,4454,16,
112134455,16,0,595,1, 114670,649,1,2106,4455,
112141804,4456,16,0,595, 1146816,0,649,1,1804,
112151,431,4457,16,0, 114694456,16,0,649,1,
11216595,1,1443,4458,16, 114701990,4457,16,0,649,
112170,595,1,1756,4459, 114711,32,4458,16,0,
1121816,0,595,1,124, 11472649,1,1958,4459,16,
112194460,16,0,595,1, 114730,649,1,1775,4460,
11220525,4461,16,0,595, 1147416,0,649,1,135,
112211,236,4462,16,0, 114754461,19,572,1,135,
11222595,1,346,4463,16, 114764462,5,11,1,2075,
112230,595,1,1876,4464, 114774463,16,0,570,1,
1122416,0,595,1,1659, 114782337,4464,16,0,570,
112254465,16,0,595,1, 114791,2413,4465,16,0,
112261225,4466,16,0,595, 11480570,1,1901,4466,16,
112271,1117,4467,16,0, 114810,570,1,2198,4467,
11228595,1,137,4468,16, 1148216,0,570,1,2106,
112290,595,1,2318,4469, 114834468,16,0,570,1,
1123016,0,595,1,1775, 114841804,4469,16,0,570,
112314470,16,0,595,1, 114851,1990,4470,16,0,
1123232,4471,16,0,595, 11486570,1,32,4471,16,
112331,2718,4472,16,0, 114870,570,1,1958,4472,
11234595,1,1407,4473,16, 1148816,0,570,1,1775,
112350,595,1,256,4474, 114894473,16,0,570,1,
1123616,0,595,1,459, 11490136,4474,19,569,1,
112374475,16,0,595,1, 11491136,4475,5,11,1,
11238406,4476,16,0,595, 114922075,4476,16,0,567,
112391,41,4477,16,0, 114931,2337,4477,16,0,
11240595,1,151,4478,16, 11494567,1,2413,4478,16,
112410,595,1,43,4479, 114950,567,1,1901,4479,
1124216,0,595,1,1585, 1149616,0,567,1,2198,
112434480,16,0,595,1, 114974480,16,0,567,1,
112441990,4481,16,0,595, 114982106,4481,16,0,567,
112451,2337,4482,16,0, 114991,1804,4482,16,0,
11246595,1,509,4483,16, 11500567,1,1990,4483,16,
112470,595,1,52,4484, 115010,567,1,32,4484,
1124816,0,595,1,381, 1150216,0,567,1,1958,
112494485,16,0,595,1, 115034485,16,0,567,1,
11250447,4486,16,0,595, 115041775,4486,16,0,567,
112511,166,4487,16,0, 115051,137,4487,19,566,
11252595,1,462,4488,16, 115061,137,4488,5,11,
112530,595,1,277,4489, 115071,2075,4489,16,0,
1125416,0,595,1,1695, 11508564,1,2337,4490,16,
112554490,16,0,595,1, 115090,564,1,2413,4491,
1125662,4491,16,0,635, 1151016,0,564,1,1901,
112571,1153,4492,16,0, 115114492,16,0,564,1,
11258595,1,2106,4493,16, 115122198,4493,16,0,564,
112590,595,1,1335,4494, 115131,2106,4494,16,0,
1126016,0,595,1,71, 11514564,1,1804,4495,16,
112614495,16,0,595,1, 115150,564,1,1990,4496,
11262182,4496,16,0,595, 1151616,0,564,1,32,
112631,76,4497,16,0, 115174497,16,0,564,1,
11264595,1,79,4498,16, 115181958,4498,16,0,564,
112650,595,1,1933,4499, 115191,1775,4499,16,0,
1126616,0,595,1,299, 11520564,1,138,4500,19,
112674500,16,0,595,1, 11521563,1,138,4501,5,
1126885,4501,16,0,595, 1152211,1,2075,4502,16,
112691,1515,4502,16,0, 115230,561,1,2337,4503,
11270595,1,2198,4503,16, 1152416,0,561,1,2413,
112710,595,1,89,4504, 115254504,16,0,561,1,
1127216,0,595,1,1834, 115261901,4505,16,0,561,
112734505,16,0,595,1, 115271,2198,4506,16,0,
112741622,4506,16,0,595, 11528561,1,2106,4507,16,
112751,2413,4507,16,0, 115290,561,1,1804,4508,
11276595,1,2075,4508,16, 1153016,0,561,1,1990,
112770,595,1,1731,4509, 115314509,16,0,561,1,
1127816,0,595,1,97, 1153232,4510,16,0,561,
112794510,16,0,595,1, 115331,1958,4511,16,0,
112801297,4511,16,0,595, 11534561,1,1775,4512,16,
112811,1189,4512,16,0, 115350,561,1,139,4513,
11282595,1,102,4513,16, 1153619,560,1,139,4514,
112830,595,1,1261,4514, 115375,11,1,2075,4515,
1128416,0,595,1,322, 1153816,0,558,1,2337,
112854515,16,0,595,1, 115394516,16,0,558,1,
112861958,4516,16,0,595, 115402413,4517,16,0,558,
112871,199,4517,16,0, 115411,1901,4518,16,0,
11288595,1,1371,4518,16, 11542558,1,2198,4519,16,
112890,595,1,217,4519, 115430,558,1,2106,4520,
1129016,0,595,1,138, 1154416,0,558,1,1804,
112914520,19,661,1,138, 115454521,16,0,558,1,
112924521,5,2,1,459, 115461990,4522,16,0,558,
112934522,16,0,659,1, 115471,32,4523,16,0,
1129441,4523,16,0,722, 11548558,1,1958,4524,16,
112951,139,4524,19,665, 115490,558,1,1775,4525,
112961,139,4525,5,3, 1155016,0,558,1,140,
112971,462,4526,16,0, 115514526,19,157,1,140,
11298663,1,459,4527,16, 115524527,5,3,1,1756,
112990,691,1,41,4528, 115534528,16,0,299,1,
1130016,0,691,1,140, 115542318,4529,16,0,310,
113014529,19,4530,4,36, 115551,1659,4530,16,0,
1130269,0,120,0,112, 11556155,1,141,4531,19,
113030,114,0,101,0, 11557605,1,141,4532,5,
11304115,0,115,0,105, 1155868,1,1901,4533,16,
115590,603,1,1479,4534,
1156016,0,603,1,112,
115614535,16,0,603,1,
115622293,4536,16,0,603,
115631,1804,4537,16,0,
11564603,1,431,4538,16,
115650,603,1,1443,4539,
1156616,0,603,1,1756,
115674540,16,0,603,1,
11568124,4541,16,0,603,
115691,525,4542,16,0,
11570603,1,236,4543,16,
115710,603,1,346,4544,
1157216,0,603,1,1876,
115734545,16,0,603,1,
115741659,4546,16,0,603,
115751,1225,4547,16,0,
11576603,1,1117,4548,16,
115770,603,1,137,4549,
1157816,0,603,1,2318,
115794550,16,0,603,1,
115801775,4551,16,0,603,
115811,32,4552,16,0,
11582603,1,1407,4553,16,
115830,603,1,2740,4554,
1158416,0,603,1,256,
115854555,16,0,603,1,
11586459,4556,16,0,603,
115871,406,4557,16,0,
11588603,1,41,4558,16,
115890,603,1,151,4559,
1159016,0,603,1,43,
115914560,16,0,603,1,
115921585,4561,16,0,603,
115931,1990,4562,16,0,
11594603,1,2337,4563,16,
115950,603,1,509,4564,
1159616,0,603,1,52,
115974565,16,0,603,1,
11598381,4566,16,0,603,
115991,447,4567,16,0,
11600603,1,166,4568,16,
116010,603,1,462,4569,
1160216,0,603,1,277,
116034570,16,0,603,1,
116041695,4571,16,0,603,
116051,62,4572,16,0,
11606663,1,1153,4573,16,
116070,603,1,2106,4574,
1160816,0,603,1,1335,
116094575,16,0,603,1,
1161071,4576,16,0,603,
116111,182,4577,16,0,
11612603,1,76,4578,16,
116130,603,1,79,4579,
1161416,0,603,1,1933,
116154580,16,0,603,1,
11616299,4581,16,0,603,
116171,85,4582,16,0,
11618603,1,1515,4583,16,
116190,603,1,2198,4584,
1162016,0,603,1,89,
116214585,16,0,603,1,
116221834,4586,16,0,603,
116231,1622,4587,16,0,
11624603,1,2413,4588,16,
116250,603,1,2075,4589,
1162616,0,603,1,1731,
116274590,16,0,603,1,
1162897,4591,16,0,603,
116291,1297,4592,16,0,
11630603,1,1189,4593,16,
116310,603,1,102,4594,
1163216,0,603,1,1261,
116334595,16,0,603,1,
11634322,4596,16,0,603,
116351,1958,4597,16,0,
11636603,1,199,4598,16,
116370,603,1,1371,4599,
1163816,0,603,1,217,
116394600,16,0,603,1,
11640142,4601,19,677,1,
11641142,4602,5,2,1,
11642459,4603,16,0,675,
116431,41,4604,16,0,
11644747,1,143,4605,19,
11645681,1,143,4606,5,
116463,1,462,4607,16,
116470,679,1,459,4608,
1164816,0,706,1,41,
116494609,16,0,706,1,
11650144,4610,19,4611,4,
1165136,69,0,120,0,
11652112,0,114,0,101,
116530,115,0,115,0,
11654105,0,111,0,110,
116550,65,0,114,0,
11656103,0,117,0,109,
116570,101,0,110,0,
11658116,0,1,144,4606,
116591,145,4612,19,595,
116601,145,4613,5,68,
116611,1901,4614,16,0,
11662593,1,1479,4615,16,
116630,593,1,112,4616,
1166416,0,593,1,2293,
116654617,16,0,593,1,
116661804,4618,16,0,593,
116671,431,4619,16,0,
11668593,1,1443,4620,16,
116690,593,1,1756,4621,
1167016,0,593,1,124,
116714622,16,0,593,1,
11672525,4623,16,0,593,
116731,236,4624,16,0,
11674593,1,346,4625,16,
116750,593,1,1876,4626,
1167616,0,593,1,1659,
116774627,16,0,593,1,
116781225,4628,16,0,593,
116791,1117,4629,16,0,
11680593,1,137,4630,16,
116810,593,1,2318,4631,
1168216,0,593,1,1775,
116834632,16,0,593,1,
1168432,4633,16,0,593,
116851,1407,4634,16,0,
11686593,1,2740,4635,16,
116870,593,1,256,4636,
1168816,0,593,1,459,
116894637,16,0,593,1,
11690406,4638,16,0,593,
116911,41,4639,16,0,
11692593,1,151,4640,16,
116930,593,1,43,4641,
1169416,0,593,1,1585,
116954642,16,0,593,1,
116961990,4643,16,0,593,
116971,2337,4644,16,0,
11698593,1,509,4645,16,
116990,593,1,52,4646,
1170016,0,593,1,381,
117014647,16,0,593,1,
11702447,4648,16,0,593,
117031,166,4649,16,0,
11704593,1,462,4650,16,
117050,593,1,277,4651,
1170616,0,593,1,1695,
117074652,16,0,593,1,
1170862,4653,16,0,664,
117091,1153,4654,16,0,
11710593,1,2106,4655,16,
117110,593,1,1335,4656,
1171216,0,593,1,71,
117134657,16,0,593,1,
11714182,4658,16,0,593,
117151,76,4659,16,0,
11716593,1,79,4660,16,
117170,593,1,1933,4661,
1171816,0,593,1,299,
117194662,16,0,593,1,
1172085,4663,16,0,593,
117211,1515,4664,16,0,
11722593,1,2198,4665,16,
117230,593,1,89,4666,
1172416,0,593,1,1834,
117254667,16,0,593,1,
117261622,4668,16,0,593,
117271,2413,4669,16,0,
11728593,1,2075,4670,16,
117290,593,1,1731,4671,
1173016,0,593,1,97,
117314672,16,0,593,1,
117321297,4673,16,0,593,
117331,1189,4674,16,0,
11734593,1,102,4675,16,
117350,593,1,1261,4676,
1173616,0,593,1,322,
117374677,16,0,593,1,
117381958,4678,16,0,593,
117391,199,4679,16,0,
11740593,1,1371,4680,16,
117410,593,1,217,4681,
1174216,0,593,1,146,
117434682,19,4683,4,28,
1174486,0,101,0,99,
117450,116,0,111,0,
11746114,0,67,0,111,
117470,110,0,115,0,
11748116,0,97,0,110,
117490,116,0,1,146,
117504613,1,147,4684,19,
117514685,4,32,82,0,
11752111,0,116,0,97,
117530,116,0,105,0,
11754111,0,110,0,67,
113050,111,0,110,0, 117550,111,0,110,0,
1130665,0,114,0,103, 11756115,0,116,0,97,
113070,117,0,109,0, 117570,110,0,116,0,
11308101,0,110,0,116, 117581,147,4613,1,148,
113090,1,140,4525,1, 117594686,19,4687,4,24,
11310141,4531,19,593,1, 1176076,0,105,0,115,
11311141,4532,5,68,1, 117610,116,0,67,0,
113121901,4533,16,0,591,
113131,1479,4534,16,0,
11314591,1,112,4535,16,
113150,591,1,2293,4536,
1131616,0,591,1,1804,
113174537,16,0,591,1,
11318431,4538,16,0,591,
113191,1443,4539,16,0,
11320591,1,1756,4540,16,
113210,591,1,124,4541,
1132216,0,591,1,525,
113234542,16,0,591,1,
11324236,4543,16,0,591,
113251,346,4544,16,0,
11326591,1,1876,4545,16,
113270,591,1,1659,4546,
1132816,0,591,1,1225,
113294547,16,0,591,1,
113301117,4548,16,0,591,
113311,137,4549,16,0,
11332591,1,2318,4550,16,
113330,591,1,1775,4551,
1133416,0,591,1,32,
113354552,16,0,591,1,
113362718,4553,16,0,591,
113371,1407,4554,16,0,
11338591,1,256,4555,16,
113390,591,1,459,4556,
1134016,0,591,1,406,
113414557,16,0,591,1,
1134241,4558,16,0,591,
113431,151,4559,16,0,
11344591,1,43,4560,16,
113450,591,1,1585,4561,
1134616,0,591,1,1990,
113474562,16,0,591,1,
113482337,4563,16,0,591,
113491,509,4564,16,0,
11350591,1,52,4565,16,
113510,591,1,381,4566,
1135216,0,591,1,447,
113534567,16,0,591,1,
11354166,4568,16,0,591,
113551,462,4569,16,0,
11356591,1,277,4570,16,
113570,591,1,1695,4571,
1135816,0,591,1,62,
113594572,16,0,636,1,
113601153,4573,16,0,591,
113611,2106,4574,16,0,
11362591,1,1335,4575,16,
113630,591,1,71,4576,
1136416,0,591,1,182,
113654577,16,0,591,1,
1136676,4578,16,0,591,
113671,79,4579,16,0,
11368591,1,1933,4580,16,
113690,591,1,299,4581,
1137016,0,591,1,85,
113714582,16,0,591,1,
113721515,4583,16,0,591,
113731,2198,4584,16,0,
11374591,1,89,4585,16,
113750,591,1,1834,4586,
1137616,0,591,1,1622,
113774587,16,0,591,1,
113782413,4588,16,0,591,
113791,2075,4589,16,0,
11380591,1,1731,4590,16,
113810,591,1,97,4591,
1138216,0,591,1,1297,
113834592,16,0,591,1,
113841189,4593,16,0,591,
113851,102,4594,16,0,
11386591,1,1261,4595,16,
113870,591,1,322,4596,
1138816,0,591,1,1958,
113894597,16,0,591,1,
11390199,4598,16,0,591,
113911,1371,4599,16,0,
11392591,1,217,4600,16,
113930,591,1,142,4601,
1139419,4602,4,28,86,
113950,101,0,99,0,
11396116,0,111,0,114,
113970,67,0,111,0,
11398110,0,115,0,116,
113990,97,0,110,0,
11400116,0,1,142,4532,
114011,143,4603,19,4604,
114024,32,82,0,111,
114030,116,0,97,0,
11404116,0,105,0,111,
114050,110,0,67,0,
11406111,0,110,0,115, 11762111,0,110,0,115,
114070,116,0,97,0, 117630,116,0,97,0,
11408110,0,116,0,1, 11764110,0,116,0,1,
11409143,4532,1,144,4605, 11765148,4613,1,149,4688,
1141019,4606,4,24,76, 1176619,180,1,149,4689,
114110,105,0,115,0, 117675,67,1,1901,4690,
11412116,0,67,0,111, 1176816,0,661,1,1479,
114130,110,0,115,0, 117694691,16,0,584,1,
11414116,0,97,0,110, 11770112,4692,16,0,264,
114150,116,0,1,144, 117711,2293,4693,16,0,
114164532,1,145,4607,19, 11772288,1,1804,4694,16,
11417172,1,145,4608,5, 117730,661,1,431,4695,
1141867,1,1901,4609,16, 1177416,0,656,1,1443,
114190,633,1,1479,4610, 117754696,16,0,518,1,
1142016,0,582,1,112, 117761756,4697,16,0,759,
114214611,16,0,254,1, 117771,124,4698,16,0,
114222293,4612,16,0,277, 11778272,1,525,4699,16,
114231,1804,4613,16,0, 117790,320,1,236,4700,
11424633,1,431,4614,16, 1178016,0,353,1,346,
114250,628,1,1443,4615, 117814701,16,0,547,1,
1142616,0,517,1,1756, 117821876,4702,16,0,332,
114274616,16,0,737,1, 117831,1659,4703,16,0,
11428124,4617,16,0,259, 11784759,1,1225,4704,16,
114291,525,4618,16,0, 117850,263,1,1117,4705,
11430318,1,236,4619,16, 1178616,0,230,1,137,
114310,358,1,346,4620, 117874706,16,0,287,1,
1143216,0,545,1,1876, 117882318,4707,16,0,759,
114334621,16,0,331,1, 117891,1775,4708,16,0,
114341659,4622,16,0,737, 11790661,1,32,4709,16,
114351,1225,4623,16,0, 117910,661,1,1407,4710,
11436253,1,1117,4624,16, 1179216,0,538,1,2740,
114370,226,1,137,4625, 117934711,16,0,738,1,
1143816,0,276,1,2318, 11794256,4712,16,0,407,
114394626,16,0,737,1, 117951,459,4713,16,0,
114401775,4627,16,0,633, 11796178,1,406,4714,16,
114411,32,4628,16,0, 117970,641,1,41,4715,
11442633,1,2718,4629,16, 1179816,0,178,1,151,
114430,698,1,1407,4630, 117994716,16,0,298,1,
1144416,0,536,1,256, 1180043,4717,16,0,709,
114454631,16,0,412,1, 118011,1990,4718,16,0,
11446459,4632,16,0,170, 11802661,1,2337,4719,16,
114471,406,4633,16,0, 118030,661,1,509,4720,
11448612,1,41,4634,16, 1180416,0,734,1,52,
114490,170,1,151,4635, 118054721,16,0,669,1,
1145016,0,290,1,43, 11806381,4722,16,0,608,
114514636,16,0,697,1, 118071,447,4723,16,0,
114521990,4637,16,0,633, 11808320,1,166,4724,16,
114531,2337,4638,16,0, 118090,309,1,462,4725,
11454633,1,509,4639,16, 1181016,0,178,1,277,
114550,711,1,52,4640, 118114726,16,0,452,1,
1145616,0,649,1,381, 118121695,4727,16,0,284,
114574641,16,0,600,1, 118131,1261,4728,16,0,
11458447,4642,16,0,318, 11814296,1,1153,4729,16,
114591,166,4643,16,0, 118150,185,1,2106,4730,
11460307,1,462,4644,16, 1181616,0,661,1,1335,
114610,170,1,277,4645, 118174731,16,0,340,1,
1146216,0,459,1,1695, 1181871,4732,16,0,214,
114634646,16,0,271,1, 118191,182,4733,16,0,
114641261,4647,16,0,289, 11820320,1,76,4734,16,
114651,1153,4648,16,0, 118210,606,1,79,4735,
11466177,1,2106,4649,16, 1182216,0,229,1,1933,
114670,633,1,1335,4650, 118234736,16,0,419,1,
1146816,0,340,1,71, 11824299,4737,16,0,484,
114694651,16,0,210,1, 118251,85,4738,16,0,
11470182,4652,16,0,318, 11826514,1,1515,4739,16,
114711,76,4653,16,0, 118270,640,1,2198,4740,
11472598,1,79,4654,16, 1182816,0,661,1,89,
114730,225,1,1933,4655, 118294741,16,0,244,1,
1147416,0,424,1,299, 118301834,4742,16,0,308,
114754656,16,0,491,1, 118311,1622,4743,16,0,
1147685,4657,16,0,511, 11832733,1,2413,4744,16,
114771,1515,4658,16,0, 118330,661,1,2075,4745,
11478611,1,2198,4659,16, 1183416,0,661,1,1731,
114790,633,1,89,4660, 118354746,16,0,265,1,
1148016,0,235,1,1834, 1183697,4747,16,0,423,
114814661,16,0,306,1, 118371,1297,4748,16,0,
114821622,4662,16,0,710, 11838342,1,1189,4749,16,
114831,2413,4663,16,0, 118390,228,1,102,4750,
11484633,1,2075,4664,16, 1184016,0,253,1,1585,
114850,633,1,1731,4665, 118414751,16,0,743,1,
1148616,0,255,1,97, 11842322,4752,16,0,515,
114874666,16,0,428,1, 118431,1958,4753,16,0,
114881297,4667,16,0,345, 11844661,1,199,4754,16,
114891,1189,4668,16,0, 118450,331,1,1371,4755,
11490224,1,102,4669,16, 1184616,0,408,1,217,
114910,243,1,1585,4670, 118474756,16,0,339,1,
1149216,0,719,1,322, 11848150,4757,19,4758,4,
114934671,16,0,512,1, 1184936,67,0,111,0,
114941958,4672,16,0,633, 11850110,0,115,0,116,
114951,199,4673,16,0, 118510,97,0,110,0,
11496329,1,1371,4674,16,
114970,413,1,217,4675,
1149816,0,339,1,146,
114994676,19,4677,4,36,
1150067,0,111,0,110,
115010,115,0,116,0,
1150297,0,110,0,116,
115030,69,0,120,0,
11504112,0,114,0,101,
115050,115,0,115,0,
11506105,0,111,0,110,
115070,1,146,4608,1,
11508147,4678,19,4679,4,
1150930,73,0,100,0,
11510101,0,110,0,116,
115110,69,0,120,0,
11512112,0,114,0,101,
115130,115,0,115,0,
11514105,0,111,0,110,
115150,1,147,4608,1,
11516148,4680,19,4681,4,
1151736,73,0,100,0,
11518101,0,110,0,116,
115190,68,0,111,0,
11520116,0,69,0,120, 11852116,0,69,0,120,
115210,112,0,114,0, 118530,112,0,114,0,
11522101,0,115,0,115, 11854101,0,115,0,115,
115230,105,0,111,0, 118550,105,0,111,0,
11524110,0,1,148,4608, 11856110,0,1,150,4689,
115251,149,4682,19,4683, 118571,151,4759,19,4760,
115264,44,70,0,117, 118584,30,73,0,100,
115270,110,0,99,0, 118590,101,0,110,0,
11528116,0,105,0,111, 11860116,0,69,0,120,
115290,110,0,67,0, 118610,112,0,114,0,
1153097,0,108,0,108, 11862101,0,115,0,115,
115310,69,0,120,0, 118630,105,0,111,0,
11532112,0,114,0,101, 11864110,0,1,151,4689,
115330,115,0,115,0, 118651,152,4761,19,4762,
11534105,0,111,0,110, 118664,36,73,0,100,
115350,1,149,4608,1, 118670,101,0,110,0,
11536150,4684,19,4685,4, 11868116,0,68,0,111,
1153732,66,0,105,0, 118690,116,0,69,0,
11538110,0,97,0,114,
115390,121,0,69,0,
11540120,0,112,0,114,
115410,101,0,115,0,
11542115,0,105,0,111,
115430,110,0,1,150,
115444608,1,151,4686,19,
115454687,4,30,85,0,
11546110,0,97,0,114,
115470,121,0,69,0,
11548120,0,112,0,114, 11870120,0,112,0,114,
115490,101,0,115,0, 118710,101,0,115,0,
11550115,0,105,0,111, 11872115,0,105,0,111,
115510,110,0,1,151, 118730,110,0,1,152,
115524608,1,152,4688,19, 118744689,1,153,4763,19,
115534689,4,36,84,0, 118754764,4,44,70,0,
11554121,0,112,0,101, 11876117,0,110,0,99,
115550,99,0,97,0, 118770,116,0,105,0,
11556115,0,116,0,69, 11878111,0,110,0,67,
118790,97,0,108,0,
11880108,0,69,0,120,
118810,112,0,114,0,
11882101,0,115,0,115,
118830,105,0,111,0,
11884110,0,1,153,4689,
118851,154,4765,19,4766,
118864,32,66,0,105,
118870,110,0,97,0,
11888114,0,121,0,69,
115570,120,0,112,0, 118890,120,0,112,0,
11558114,0,101,0,115, 11890114,0,101,0,115,
115590,115,0,105,0, 118910,115,0,105,0,
11560111,0,110,0,1, 11892111,0,110,0,1,
11561152,4608,1,153,4690, 11893154,4689,1,155,4767,
1156219,4691,4,42,80, 1189419,4768,4,30,85,
115630,97,0,114,0, 118950,110,0,97,0,
11564101,0,110,0,116, 11896114,0,121,0,69,
115650,104,0,101,0, 118970,120,0,112,0,
11566115,0,105,0,115, 11898114,0,101,0,115,
115670,69,0,120,0, 118990,115,0,105,0,
11568112,0,114,0,101, 11900111,0,110,0,1,
115690,115,0,115,0, 11901155,4689,1,156,4769,
11570105,0,111,0,110, 1190219,4770,4,36,84,
115710,1,153,4608,1, 119030,121,0,112,0,
11572154,4692,19,4693,4, 11904101,0,99,0,97,
1157356,73,0,110,0, 119050,115,0,116,0,
1157499,0,114,0,101, 1190669,0,120,0,112,
115750,109,0,101,0, 119070,114,0,101,0,
11576110,0,116,0,68, 11908115,0,115,0,105,
115770,101,0,99,0, 119090,111,0,110,0,
11578114,0,101,0,109, 119101,156,4689,1,157,
119114771,19,4772,4,42,
1191280,0,97,0,114,
115790,101,0,110,0, 119130,101,0,110,0,
11580116,0,69,0,120, 11914116,0,104,0,101,
119150,115,0,105,0,
11916115,0,69,0,120,
115810,112,0,114,0, 119170,112,0,114,0,
11582101,0,115,0,115, 11918101,0,115,0,115,
115830,105,0,111,0, 119190,105,0,111,0,
11584110,0,1,154,4608, 11920110,0,1,157,4689,
115851,156,4694,19,769, 119211,158,4773,19,4774,
115861,156,4097,1,157, 119224,56,73,0,110,
115874695,19,753,1,157, 119230,99,0,114,0,
115884097,1,158,4696,19, 11924101,0,109,0,101,
115893365,1,158,4100,1,
11590159,4697,19,3388,1,
11591159,4100,1,160,4698,
1159219,3377,1,160,4100,
115931,161,4699,19,3406,
115941,161,4100,1,162,
115954700,19,3393,1,162,
115964103,1,163,4701,19,
115973371,1,163,4103,1,
11598164,4702,19,3383,1,
11599164,4107,1,165,4703,
1160019,3399,1,165,4107,
116011,166,4704,19,747,
116021,166,4111,1,167,
116034705,19,764,1,167,
116044111,1,168,4706,19,
11605774,1,168,4115,1,
11606169,4707,19,759,1,
11607169,4115,1,170,4708,
1160819,1769,1,170,4121,
116091,171,4709,19,1748,
116101,171,4121,1,172,
116114710,19,1764,1,172,
116124121,1,173,4711,19,
116131743,1,173,4121,1,
11614174,4712,19,1759,1,
11615174,4121,1,175,4713,
1161619,1738,1,175,4121,
116171,176,4714,19,1754,
116181,176,4121,1,177,
116194715,19,1733,1,177,
116204121,1,178,4716,19,
116211723,1,178,4121,1,
11622179,4717,19,1728,1,
11623179,4121,1,180,4718,
1162419,1716,1,180,4125,
116251,181,4719,19,1690,
116261,181,4131,1,182,
116274720,19,1708,1,182,
116284137,1,183,4721,19,
116291702,1,183,4143,1,
11630184,4722,19,1696,1,
11631184,4149,1,185,4723,
1163219,1809,1,185,4155,
116331,186,4724,19,1784,
116341,186,4155,1,187,
116354725,19,2139,1,187,
116364160,1,188,4726,19,
116372132,1,188,4163,1,
11638189,4727,19,2181,1,
11639189,4166,1,190,4728,
1164019,1181,1,190,4169,
116411,191,4729,19,2161,
116421,191,4188,1,192,
116434730,19,2154,1,192,
116444191,1,193,4731,19,
116452175,1,193,4194,1,
11646194,4732,19,966,1,
11647194,4247,1,195,4733,
1164819,950,1,195,4247,
116491,196,4734,19,956,
116501,196,4267,1,197,
116514735,19,944,1,197,
116524267,1,198,4736,19,
116531209,1,198,4283,1,
11654199,4737,19,846,1,
11655199,4270,1,200,4738,
1165619,961,1,200,4270,
116571,201,4739,19,841,
116581,201,4270,1,202,
116594740,19,866,1,202,
116604270,1,203,4741,19,
11661835,1,203,4270,1,
11662204,4742,19,829,1,
11663204,4270,1,205,4743,
1166419,824,1,205,4270,
116651,206,4744,19,819,
116661,206,4270,1,207,
116674745,19,813,1,207,
116684270,1,208,4746,19,
11669808,1,208,4270,1,
11670209,4747,19,803,1,
11671209,4270,1,210,4748,
1167219,798,1,210,4270,
116731,211,4749,19,793,
116741,211,4270,1,212,
116754750,19,1216,1,212,
116764355,1,213,4751,19,
116771354,1,213,4368,1,
11678214,4752,19,1203,1,
11679214,4381,1,215,4753,
1168019,1342,1,215,4381,
116811,216,4754,19,983,
116821,216,4394,1,217,
116834755,19,786,1,217,
116844394,1,218,4756,19,
11685881,1,218,4394,1,
11686219,4757,19,909,1,
11687219,4394,1,220,4758,
1168819,929,1,220,4407,
116891,221,4759,19,975,
116901,221,4407,1,222,
116914760,19,889,1,222,
116924420,1,223,4761,19,
11693902,1,223,4420,1,
11694224,4762,19,855,1,
11695224,4433,1,225,4763,
1169619,894,1,225,4433,
116971,226,4764,19,1540,
116981,226,4446,1,227,
116994765,19,1222,1,227,
117004446,1,228,4766,19,
117011572,1,228,4446,1,
11702229,4767,19,1606,1,
11703229,4446,1,230,4768,
1170419,1470,1,230,4296,
117051,231,4769,19,1529,
117061,231,4296,1,232,
117074770,19,1197,1,232,
117084309,1,233,4771,19,
117091638,1,233,4309,1,
11710234,4772,19,1567,1,
11711234,4309,1,235,4773,
1171219,1514,1,235,4309,
117131,236,4774,19,1438,
117141,236,4309,1,237,
117154775,19,1364,1,237,
117164309,1,238,4776,19,
117171374,1,238,4309,1,
11718239,4777,19,1192,1,
11719239,4309,1,240,4778,
1172019,1622,1,240,4309,
117211,241,4779,19,1562,
117221,241,4309,1,242,
117234780,19,1504,1,242,
117244309,1,243,4781,19,
117251427,1,243,4309,1,
11726244,4782,19,1390,1,
11727244,4309,1,245,4783,
1172819,1175,1,245,4309,
117291,246,4784,19,1524,
117301,246,4309,1,247,
117314785,19,1550,1,247,
117324309,1,248,4786,19,
117331497,1,248,4309,1,
11734249,4787,19,1519,1,
11735249,4309,1,250,4788,
1173619,1330,1,250,4309,
117371,251,4789,19,1234,
117381,251,4309,1,252,
117394790,19,1164,1,252,
117404309,1,253,4791,19,
117411596,1,253,4309,1,
11742254,4792,19,1545,1,
11743254,4309,1,255,4793,
1174419,1492,1,255,4309,
117451,256,4794,19,1359,
117461,256,4342,1,257,
117474795,19,1337,1,257,
117484342,1,258,4796,19,
117491627,1,258,4532,1,
11750259,4797,19,1650,1,
11751259,4532,1,260,4798,
1175219,1617,1,260,4532,
117531,261,4799,19,1612,
117541,261,4532,1,262,
117554800,19,1633,1,262,
117564532,1,263,4801,19,
117571578,1,263,4532,1,
11758264,4802,19,1284,1,
11759264,4532,1,265,4803,
1176019,1459,1,265,4608,
117611,266,4804,19,1245,
117621,266,4608,1,267,
117634805,19,1252,1,267,
117644608,1,268,4806,19,
117651273,1,268,4608,1,
11766269,4807,19,1268,1,
11767269,4608,1,270,4808,
1176819,1263,1,270,4608,
117691,271,4809,19,1258,
117701,271,4608,1,272,
117714810,19,1448,1,272,
117724608,1,273,4811,19,
117731476,1,273,4608,1,
11774274,4812,19,1453,1,
11775274,4608,1,275,4813,
1177619,1443,1,275,4608,
117771,276,4814,19,1433,
117781,276,4608,1,277,
117794815,19,1416,1,277,
117804608,1,278,4816,19,
117811369,1,278,4608,1,
11782279,4817,19,1278,1,
11783279,4608,1,280,4818,
1178419,1239,1,280,4608,
117851,281,4819,19,1187,
117861,281,4608,1,282,
117874820,19,1645,1,282,
117884608,1,283,4821,19,
117891601,1,283,4608,1,
11790284,4822,19,1590,1,
11791284,4608,1,285,4823,
1179219,1584,1,285,4608,
117931,286,4824,19,1535,
117941,286,4608,1,287,
117954825,19,1509,1,287,
117964608,1,288,4826,19,
117971486,1,288,4608,1,
11798289,4827,19,1481,1,
11799289,4608,1,290,4828,
1180019,1422,1,290,4608,
118011,291,4829,19,1398,
118021,291,4608,1,292,
118034830,19,1464,1,292,
118044608,1,293,4831,19,
118051556,1,293,4608,1,
11806294,4832,19,1411,1,
11807294,4608,1,295,4833,
1180819,1405,1,295,4608,
118091,296,4834,19,1385,
118101,296,4608,1,297,
118114835,19,1348,1,297,
118124608,1,298,4836,19,
118131325,1,298,4608,1,
11814299,4837,19,1170,1,
11815299,4608,1,300,4838,
1181619,1660,1,300,4608,
118171,301,4839,19,1290,
118181,301,4608,1,302,
118194840,19,1295,1,302,
118204608,1,303,4841,19,
118211315,1,303,4608,1,
11822304,4842,19,1305,1,
11823304,4608,1,305,4843,
1182419,1310,1,305,4608,
118251,306,4844,19,1300,
118261,306,4608,1,307,
118274845,19,1655,1,307,
118284608,1,308,4846,19,
118291320,1,308,4608,1,
11830309,4847,19,1380,1,
11831309,4451,1,310,4848,
1183219,1822,1,310,4521,
118331,311,4849,19,1815,
118341,311,4521,1,312,
118354850,19,1795,1,312,
118364525,1,313,4851,19,
118372126,1,313,4197,1,
11838314,4852,19,2121,1,
11839314,4197,1,315,4853,
1184019,2116,1,315,4197,
118411,316,4854,19,2111,
118421,316,4197,1,317,
118434855,19,2106,1,317,
118444197,1,318,4856,19,
118452101,1,318,4197,1,
11846319,4857,19,2096,1,
11847319,4197,1,320,4858,
1184819,2084,1,320,4217,
118491,321,4859,19,2079,
118501,321,4217,1,322,
118514860,19,2074,1,322,
118524217,1,323,4861,19,
118532069,1,323,4217,1,
11854324,4862,19,2064,1,
11855324,4217,1,325,4863,
1185619,2059,1,325,4217,
118571,326,4864,19,2054,
118581,326,4217,1,327,
118594865,19,2049,1,327,
118604217,1,328,4866,19,
118612044,1,328,4217,1,
11862329,4867,19,1878,1,
11863329,4217,1,330,4868,
1186419,2038,1,330,4217,
118651,331,4869,19,2033,
118661,331,4223,1,332,
118674870,19,2028,1,332,
118684223,1,333,4871,19,
118691870,1,333,4223,1,
11870334,4872,19,2023,1,
11871334,4223,1,335,4873,
1187219,2018,1,335,4223,
118731,336,4874,19,2013,
118741,336,4223,1,337,
118754875,19,2008,1,337,
118764223,1,338,4876,19,
118772003,1,338,4223,1,
11878339,4877,19,1998,1,
11879339,4229,1,340,4878,
1188019,1862,1,340,4229,
118811,341,4879,19,1992,
118821,341,4235,1,342,
118834880,19,1987,1,342,
118844235,1,343,4881,19,
118851982,1,343,4235,1,
11886344,4882,19,1855,1,
11887344,4235,1,345,4883,
1188819,1976,1,345,4235,
118891,346,4884,19,1906,
118901,346,4235,1,347,
118914885,19,1971,1,347,
118924235,1,348,4886,19,
118931966,1,348,4235,1,
11894349,4887,19,1961,1,
11895349,4235,1,350,4888,
1189619,1956,1,350,4235,
118971,351,4889,19,1951,
118981,351,4241,1,352,
118994890,19,1946,1,352,
119004241,1,353,4891,19,
119011941,1,353,4241,1,
11902354,4892,19,4893,4,
1190350,65,0,114,0,
11904103,0,117,0,109,
119050,101,0,110,0,
11906116,0,68,0,101,
119070,99,0,108,0,
1190897,0,114,0,97,
119090,116,0,105,0,
11910111,0,110,0,76,
119110,105,0,115,0,
11912116,0,95,0,51,
119130,1,354,4155,1,
11914355,4894,19,4895,4,
1191528,65,0,114,0,
11916103,0,117,0,109,
119170,101,0,110,0,
11918116,0,76,0,105,
119190,115,0,116,0,
1192095,0,51,0,1,
11921355,4521,1,356,4896,
1192219,4897,4,50,65,
119230,114,0,103,0,
11924117,0,109,0,101,
119250,110,0,116,0, 119250,110,0,116,0,
1192668,0,101,0,99, 1192668,0,101,0,99,
119270,108,0,97,0, 119270,114,0,101,0,
11928114,0,97,0,116, 11928109,0,101,0,110,
119290,105,0,111,0, 119290,116,0,69,0,
11930110,0,76,0,105, 11930120,0,112,0,114,
119310,115,0,116,0, 119310,101,0,115,0,
1193295,0,52,0,1, 11932115,0,105,0,111,
11933356,4155,1,357,4898, 119330,110,0,1,158,
1193419,4899,4,28,65, 119344689,1,160,4775,19,
119350,114,0,103,0, 11935786,1,160,4157,1,
11936117,0,109,0,101, 11936161,4776,19,775,1,
119370,110,0,116,0, 11937161,4157,1,162,4777,
1193876,0,105,0,115, 1193819,3445,1,162,4160,
119390,116,0,95,0, 119391,163,4778,19,3435,
1194052,0,1,357,4521, 119401,163,4160,1,164,
119411,358,4900,19,4901, 119414779,19,3440,1,164,
119424160,1,165,4780,19,
119433430,1,165,4160,1,
11944166,4781,19,3421,1,
11945166,4163,1,167,4782,
1194619,3456,1,167,4163,
119471,168,4783,19,3462,
119481,168,4167,1,169,
119494784,19,3451,1,169,
119504167,1,170,4785,19,
11951791,1,170,4171,1,
11952171,4786,19,781,1,
11953171,4171,1,172,4787,
1195419,769,1,172,4175,
119551,173,4788,19,796,
119561,173,4175,1,174,
119574789,19,1738,1,174,
119584181,1,175,4790,19,
119591808,1,175,4181,1,
11960176,4791,19,1733,1,
11961176,4181,1,177,4792,
1196219,1803,1,177,4181,
119631,178,4793,19,1728,
119641,178,4181,1,179,
119654794,19,1798,1,179,
119664181,1,180,4795,19,
119671723,1,180,4181,1,
11968181,4796,19,1793,1,
11969181,4181,1,182,4797,
1197019,1718,1,182,4181,
119711,183,4798,19,1788,
119721,183,4181,1,184,
119734799,19,1713,1,184,
119744181,1,185,4800,19,
119751783,1,185,4181,1,
11976186,4801,19,1777,1,
11977186,4185,1,187,4802,
1197819,1771,1,187,4191,
119791,188,4803,19,1765,
119801,188,4197,1,189,
119814804,19,1758,1,189,
119824203,1,190,4805,19,
119831751,1,190,4209,1,
11984191,4806,19,1744,1,
11985191,4215,1,192,4807,
1198619,1853,1,192,4221,
119871,193,4808,19,1828,
119881,193,4221,1,194,
119894809,19,2231,1,194,
119904226,1,195,4810,19,
119912200,1,195,4229,1,
11992196,4811,19,2192,1,
11993196,4232,1,197,4812,
1199419,2222,1,197,4235,
119951,198,4813,19,1203,
119961,198,4238,1,199,
119974814,19,2207,1,199,
119984257,1,200,4815,19,
119991874,1,200,4260,1,
12000201,4816,19,2186,1,
12001201,4264,1,202,4817,
1200219,1816,1,202,4267,
120031,203,4818,19,987,
120041,203,4327,1,204,
120054819,19,971,1,204,
120064327,1,205,4820,19,
12007977,1,205,4348,1,
12008206,4821,19,965,1,
12009206,4348,1,207,4822,
1201019,1231,1,207,4364,
120111,208,4823,19,868,
120121,208,4351,1,209,
120134824,19,982,1,209,
120144351,1,210,4825,19,
12015863,1,210,4351,1,
12016211,4826,19,888,1,
12017211,4351,1,212,4827,
1201819,857,1,212,4351,
120191,213,4828,19,851,
120201,213,4351,1,214,
120214829,19,846,1,214,
120224351,1,215,4830,19,
12023841,1,215,4351,1,
12024216,4831,19,835,1,
12025216,4351,1,217,4832,
1202619,830,1,217,4351,
120271,218,4833,19,825,
120281,218,4351,1,219,
120294834,19,820,1,219,
120304351,1,220,4835,19,
12031815,1,220,4351,1,
12032221,4836,19,1238,1,
12033221,4436,1,222,4837,
1203419,1377,1,222,4449,
120351,223,4838,19,1225,
120361,223,4462,1,224,
120374839,19,1365,1,224,
120384462,1,225,4840,19,
120391005,1,225,4475,1,
12040226,4841,19,808,1,
12041226,4475,1,227,4842,
1204219,903,1,227,4475,
120431,228,4843,19,931,
120441,228,4475,1,229,
120454844,19,950,1,229,
120464488,1,230,4845,19,
12047996,1,230,4488,1,
12048231,4846,19,911,1,
12049231,4501,1,232,4847,
1205019,924,1,232,4501,
120511,233,4848,19,877,
120521,233,4514,1,234,
120534849,19,916,1,234,
120544514,1,235,4850,19,
120551563,1,235,4527,1,
12056236,4851,19,1244,1,
12057236,4527,1,237,4852,
1205819,1595,1,237,4527,
120591,238,4853,19,1627,
120601,238,4527,1,239,
120614854,19,1493,1,239,
120624377,1,240,4855,19,
120631552,1,240,4377,1,
12064241,4856,19,1219,1,
12065241,4390,1,242,4857,
1206619,1659,1,242,4390,
120671,243,4858,19,1590,
120681,243,4390,1,244,
120694859,19,1537,1,244,
120704390,1,245,4860,19,
120711461,1,245,4390,1,
12072246,4861,19,1387,1,
12073246,4390,1,247,4862,
1207419,1397,1,247,4390,
120751,248,4863,19,1214,
120761,248,4390,1,249,
120774864,19,1643,1,249,
120784390,1,250,4865,19,
120791585,1,250,4390,1,
12080251,4866,19,1527,1,
12081251,4390,1,252,4867,
1208219,1450,1,252,4390,
120831,253,4868,19,1413,
120841,253,4390,1,254,
120854869,19,1197,1,254,
120864390,1,255,4870,19,
120871547,1,255,4390,1,
12088256,4871,19,1573,1,
12089256,4390,1,257,4872,
1209019,1520,1,257,4390,
120911,258,4873,19,1542,
120921,258,4390,1,259,
120934874,19,1353,1,259,
120944390,1,260,4875,19,
120951256,1,260,4390,1,
12096261,4876,19,1186,1,
12097261,4390,1,262,4877,
1209819,1617,1,262,4390,
120991,263,4878,19,1568,
121001,263,4390,1,264,
121014879,19,1515,1,264,
121024390,1,265,4880,19,
121031382,1,265,4423,1,
12104266,4881,19,1360,1,
12105266,4423,1,267,4882,
1210619,1648,1,267,4613,
121071,268,4883,19,1672,
121081,268,4613,1,269,
121094884,19,1638,1,269,
121104613,1,270,4885,19,
121111633,1,270,4613,1,
12112271,4886,19,1654,1,
12113271,4613,1,272,4887,
1211419,1601,1,272,4613,
121151,273,4888,19,1306,
121161,273,4613,1,274,
121174889,19,1482,1,274,
121184689,1,275,4890,19,
121191267,1,275,4689,1,
12120276,4891,19,1274,1,
12121276,4689,1,277,4892,
1212219,1295,1,277,4689,
121231,278,4893,19,1290,
121241,278,4689,1,279,
121254894,19,1285,1,279,
121264689,1,280,4895,19,
121271280,1,280,4689,1,
12128281,4896,19,1471,1,
12129281,4689,1,282,4897,
1213019,1499,1,282,4689,
121311,283,4898,19,1476,
121321,283,4689,1,284,
121334899,19,1466,1,284,
121344689,1,285,4900,19,
121351456,1,285,4689,1,
12136286,4901,19,1439,1,
12137286,4689,1,287,4902,
1213819,1392,1,287,4689,
121391,288,4903,19,1300,
121401,288,4689,1,289,
121414904,19,1261,1,289,
121424689,1,290,4905,19,
121431209,1,290,4689,1,
12144291,4906,19,1667,1,
12145291,4689,1,292,4907,
1214619,1622,1,292,4689,
121471,293,4908,19,1612,
121481,293,4689,1,294,
121494909,19,1607,1,294,
121504689,1,295,4910,19,
121511558,1,295,4689,1,
12152296,4911,19,1532,1,
12153296,4689,1,297,4912,
1215419,1509,1,297,4689,
121551,298,4913,19,1504,
121561,298,4689,1,299,
121574914,19,1445,1,299,
121584689,1,300,4915,19,
121591421,1,300,4689,1,
12160301,4916,19,1487,1,
12161301,4689,1,302,4917,
1216219,1579,1,302,4689,
121631,303,4918,19,1434,
121641,303,4689,1,304,
121654919,19,1428,1,304,
121664689,1,305,4920,19,
121671408,1,305,4689,1,
12168306,4921,19,1371,1,
12169306,4689,1,307,4922,
1217019,1348,1,307,4689,
121711,308,4923,19,1192,
121721,308,4689,1,309,
121734924,19,1682,1,309,
121744689,1,310,4925,19,
121751312,1,310,4689,1,
12176311,4926,19,1318,1,
12177311,4689,1,312,4927,
1217819,1338,1,312,4689,
121791,313,4928,19,1328,
121801,313,4689,1,314,
121814929,19,1333,1,314,
121824689,1,315,4930,19,
121831323,1,315,4689,1,
12184316,4931,19,1677,1,
12185316,4689,1,317,4932,
1218619,1343,1,317,4689,
121871,318,4933,19,1403,
121881,318,4532,1,319,
121894934,19,1868,1,319,
121904602,1,320,4935,19,
121911859,1,320,4602,1,
12192321,4936,19,1838,1,
12193321,4606,1,322,4937,
1219419,2180,1,322,4271,
121951,323,4938,19,2175,
121961,323,4271,1,324,
121974939,19,2170,1,324,
121984271,1,325,4940,19,
121992165,1,325,4271,1,
12200326,4941,19,2160,1,
12201326,4271,1,327,4942,
1220219,2155,1,327,4271,
122031,328,4943,19,2150,
122041,328,4271,1,329,
122054944,19,2139,1,329,
122064291,1,330,4945,19,
122072134,1,330,4291,1,
12208331,4946,19,2129,1,
12209331,4291,1,332,4947,
1221019,2124,1,332,4291,
122111,333,4948,19,2119,
122121,333,4291,1,334,
122134949,19,2114,1,334,
122144291,1,335,4950,19,
122152109,1,335,4291,1,
12216336,4951,19,2104,1,
12217336,4291,1,337,4952,
1221819,2099,1,337,4291,
122191,338,4953,19,1930,
122201,338,4291,1,339,
122214954,19,2093,1,339,
122224297,1,340,4955,19,
122232088,1,340,4297,1,
12224341,4956,19,2083,1,
12225341,4297,1,342,4957,
1222619,1922,1,342,4297,
122271,343,4958,19,2078,
122281,343,4297,1,344,
122294959,19,2073,1,344,
122304297,1,345,4960,19,
122312068,1,345,4297,1,
12232346,4961,19,2063,1,
12233346,4297,1,347,4962,
1223419,2058,1,347,4303,
122351,348,4963,19,2053,
122361,348,4303,1,349,
122374964,19,1914,1,349,
122384309,1,350,4965,19,
122392046,1,350,4309,1,
12240351,4966,19,2041,1,
12241351,4309,1,352,4967,
1224219,2036,1,352,4309,
122431,353,4968,19,1908,
122441,353,4309,1,354,
122454969,19,2030,1,354,
122464309,1,355,4970,19,
122471960,1,355,4309,1,
12248356,4971,19,2025,1,
12249356,4309,1,357,4972,
1225019,2020,1,357,4309,
122511,358,4973,19,2015,
122521,358,4309,1,359,
122534974,19,2010,1,359,
122544315,1,360,4975,19,
122552005,1,360,4315,1,
12256361,4976,19,2000,1,
12257361,4315,1,362,4977,
1225819,1994,1,362,4321,
122591,363,4978,19,4979,
119424,50,65,0,114, 122604,50,65,0,114,
119430,103,0,117,0, 122610,103,0,117,0,
11944109,0,101,0,110, 12262109,0,101,0,110,
@@ -11949,14 +12267,54 @@ public yyLSLSyntax
119490,111,0,110,0, 122670,111,0,110,0,
1195076,0,105,0,115, 1226876,0,105,0,115,
119510,116,0,95,0, 122690,116,0,95,0,
1195253,0,1,358,4155, 1227051,0,1,363,4221,
119532,0,0}; 122711,364,4980,19,4981,
122724,28,65,0,114,
122730,103,0,117,0,
12274109,0,101,0,110,
122750,116,0,76,0,
12276105,0,115,0,116,
122770,95,0,51,0,
122781,364,4602,1,365,
122794982,19,4983,4,50,
1228065,0,114,0,103,
122810,117,0,109,0,
12282101,0,110,0,116,
122830,68,0,101,0,
1228499,0,108,0,97,
122850,114,0,97,0,
12286116,0,105,0,111,
122870,110,0,76,0,
12288105,0,115,0,116,
122890,95,0,52,0,
122901,365,4221,1,366,
122914984,19,4985,4,28,
1229265,0,114,0,103,
122930,117,0,109,0,
12294101,0,110,0,116,
122950,76,0,105,0,
12296115,0,116,0,95,
122970,52,0,1,366,
122984602,1,367,4986,19,
122994987,4,50,65,0,
12300114,0,103,0,117,
123010,109,0,101,0,
12302110,0,116,0,68,
123030,101,0,99,0,
12304108,0,97,0,114,
123050,97,0,116,0,
12306105,0,111,0,110,
123070,76,0,105,0,
12308115,0,116,0,95,
123090,53,0,1,367,
123104221,2,0,0};
11954new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory)); 12311new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory));
11955new Sfactory(this,"VectorArgStateEvent",new SCreator(VectorArgStateEvent_factory)); 12312new Sfactory(this,"VectorArgStateEvent",new SCreator(VectorArgStateEvent_factory));
11956new Sfactory(this,"SimpleAssignment_8",new SCreator(SimpleAssignment_8_factory)); 12313new Sfactory(this,"IntArgStateEvent_1",new SCreator(IntArgStateEvent_1_factory));
11957new Sfactory(this,"SimpleAssignment_9",new SCreator(SimpleAssignment_9_factory)); 12314new Sfactory(this,"SimpleAssignment_9",new SCreator(SimpleAssignment_9_factory));
11958new Sfactory(this,"StatementList_1",new SCreator(StatementList_1_factory)); 12315new Sfactory(this,"StatementList_1",new SCreator(StatementList_1_factory));
11959new Sfactory(this,"StatementList_2",new SCreator(StatementList_2_factory)); 12316new Sfactory(this,"RotDeclaration_1",new SCreator(RotDeclaration_1_factory));
12317new Sfactory(this,"IntRotRotArgEvent_1",new SCreator(IntRotRotArgEvent_1_factory));
11960new Sfactory(this,"StateChange_1",new SCreator(StateChange_1_factory)); 12318new Sfactory(this,"StateChange_1",new SCreator(StateChange_1_factory));
11961new Sfactory(this,"EmptyStatement",new SCreator(EmptyStatement_factory)); 12319new Sfactory(this,"EmptyStatement",new SCreator(EmptyStatement_factory));
11962new Sfactory(this,"Declaration",new SCreator(Declaration_factory)); 12320new Sfactory(this,"Declaration",new SCreator(Declaration_factory));
@@ -11972,6 +12330,7 @@ new Sfactory(this,"BinaryExpression_9",new SCreator(BinaryExpression_9_factory))
11972new Sfactory(this,"VectorConstant_1",new SCreator(VectorConstant_1_factory)); 12330new Sfactory(this,"VectorConstant_1",new SCreator(VectorConstant_1_factory));
11973new Sfactory(this,"ParenthesisExpression",new SCreator(ParenthesisExpression_factory)); 12331new Sfactory(this,"ParenthesisExpression",new SCreator(ParenthesisExpression_factory));
11974new Sfactory(this,"StatementList",new SCreator(StatementList_factory)); 12332new Sfactory(this,"StatementList",new SCreator(StatementList_factory));
12333new Sfactory(this,"IntRotRotArgEvent",new SCreator(IntRotRotArgEvent_factory));
11975new Sfactory(this,"UnaryExpression",new SCreator(UnaryExpression_factory)); 12334new Sfactory(this,"UnaryExpression",new SCreator(UnaryExpression_factory));
11976new Sfactory(this,"IdentDotExpression_1",new SCreator(IdentDotExpression_1_factory)); 12335new Sfactory(this,"IdentDotExpression_1",new SCreator(IdentDotExpression_1_factory));
11977new Sfactory(this,"ArgumentList_4",new SCreator(ArgumentList_4_factory)); 12336new Sfactory(this,"ArgumentList_4",new SCreator(ArgumentList_4_factory));
@@ -11999,7 +12358,7 @@ new Sfactory(this,"SimpleAssignment_5",new SCreator(SimpleAssignment_5_factory))
11999new Sfactory(this,"Typename_1",new SCreator(Typename_1_factory)); 12358new Sfactory(this,"Typename_1",new SCreator(Typename_1_factory));
12000new Sfactory(this,"VoidArgStateEvent_1",new SCreator(VoidArgStateEvent_1_factory)); 12359new Sfactory(this,"VoidArgStateEvent_1",new SCreator(VoidArgStateEvent_1_factory));
12001new Sfactory(this,"Typename_3",new SCreator(Typename_3_factory)); 12360new Sfactory(this,"Typename_3",new SCreator(Typename_3_factory));
12002new Sfactory(this,"Typename_4",new SCreator(Typename_4_factory)); 12361new Sfactory(this,"IntRotRotArgStateEvent",new SCreator(IntRotRotArgStateEvent_factory));
12003new Sfactory(this,"Typename_5",new SCreator(Typename_5_factory)); 12362new Sfactory(this,"Typename_5",new SCreator(Typename_5_factory));
12004new Sfactory(this,"Typename_6",new SCreator(Typename_6_factory)); 12363new Sfactory(this,"Typename_6",new SCreator(Typename_6_factory));
12005new Sfactory(this,"Typename_7",new SCreator(Typename_7_factory)); 12364new Sfactory(this,"Typename_7",new SCreator(Typename_7_factory));
@@ -12012,8 +12371,9 @@ new Sfactory(this,"States_2",new SCreator(States_2_factory));
12012new Sfactory(this,"FunctionCallExpression_1",new SCreator(FunctionCallExpression_1_factory)); 12371new Sfactory(this,"FunctionCallExpression_1",new SCreator(FunctionCallExpression_1_factory));
12013new Sfactory(this,"KeyArgEvent_1",new SCreator(KeyArgEvent_1_factory)); 12372new Sfactory(this,"KeyArgEvent_1",new SCreator(KeyArgEvent_1_factory));
12014new Sfactory(this,"ForLoopStatement",new SCreator(ForLoopStatement_factory)); 12373new Sfactory(this,"ForLoopStatement",new SCreator(ForLoopStatement_factory));
12015new Sfactory(this,"IntArgStateEvent_1",new SCreator(IntArgStateEvent_1_factory)); 12374new Sfactory(this,"IntArgStateEvent",new SCreator(IntArgStateEvent_factory));
12016new Sfactory(this,"IntArgEvent_6",new SCreator(IntArgEvent_6_factory)); 12375new Sfactory(this,"IntArgEvent_6",new SCreator(IntArgEvent_6_factory));
12376new Sfactory(this,"IntRotRotArgumentDeclarationList_1",new SCreator(IntRotRotArgumentDeclarationList_1_factory));
12017new Sfactory(this,"IntArgEvent_9",new SCreator(IntArgEvent_9_factory)); 12377new Sfactory(this,"IntArgEvent_9",new SCreator(IntArgEvent_9_factory));
12018new Sfactory(this,"DoWhileStatement_1",new SCreator(DoWhileStatement_1_factory)); 12378new Sfactory(this,"DoWhileStatement_1",new SCreator(DoWhileStatement_1_factory));
12019new Sfactory(this,"DoWhileStatement_2",new SCreator(DoWhileStatement_2_factory)); 12379new Sfactory(this,"DoWhileStatement_2",new SCreator(DoWhileStatement_2_factory));
@@ -12024,8 +12384,8 @@ new Sfactory(this,"SimpleAssignment_13",new SCreator(SimpleAssignment_13_factory
12024new Sfactory(this,"JumpLabel",new SCreator(JumpLabel_factory)); 12384new Sfactory(this,"JumpLabel",new SCreator(JumpLabel_factory));
12025new Sfactory(this,"SimpleAssignment_15",new SCreator(SimpleAssignment_15_factory)); 12385new Sfactory(this,"SimpleAssignment_15",new SCreator(SimpleAssignment_15_factory));
12026new Sfactory(this,"StateBody_10",new SCreator(StateBody_10_factory)); 12386new Sfactory(this,"StateBody_10",new SCreator(StateBody_10_factory));
12027new Sfactory(this,"SimpleAssignment_17",new SCreator(SimpleAssignment_17_factory)); 12387new Sfactory(this,"StateBody_11",new SCreator(StateBody_11_factory));
12028new Sfactory(this,"SimpleAssignment_18",new SCreator(SimpleAssignment_18_factory)); 12388new Sfactory(this,"StateBody_12",new SCreator(StateBody_12_factory));
12029new Sfactory(this,"JumpStatement_1",new SCreator(JumpStatement_1_factory)); 12389new Sfactory(this,"JumpStatement_1",new SCreator(JumpStatement_1_factory));
12030new Sfactory(this,"GlobalDefinitions",new SCreator(GlobalDefinitions_factory)); 12390new Sfactory(this,"GlobalDefinitions",new SCreator(GlobalDefinitions_factory));
12031new Sfactory(this,"ConstantExpression_1",new SCreator(ConstantExpression_1_factory)); 12391new Sfactory(this,"ConstantExpression_1",new SCreator(ConstantExpression_1_factory));
@@ -12033,6 +12393,7 @@ new Sfactory(this,"VoidArgEvent_4",new SCreator(VoidArgEvent_4_factory));
12033new Sfactory(this,"FunctionCall_1",new SCreator(FunctionCall_1_factory)); 12393new Sfactory(this,"FunctionCall_1",new SCreator(FunctionCall_1_factory));
12034new Sfactory(this,"Assignment_2",new SCreator(Assignment_2_factory)); 12394new Sfactory(this,"Assignment_2",new SCreator(Assignment_2_factory));
12035new Sfactory(this,"TypecastExpression_1",new SCreator(TypecastExpression_1_factory)); 12395new Sfactory(this,"TypecastExpression_1",new SCreator(TypecastExpression_1_factory));
12396new Sfactory(this,"SimpleAssignment_21",new SCreator(SimpleAssignment_21_factory));
12036new Sfactory(this,"SimpleAssignment_22",new SCreator(SimpleAssignment_22_factory)); 12397new Sfactory(this,"SimpleAssignment_22",new SCreator(SimpleAssignment_22_factory));
12037new Sfactory(this,"SimpleAssignment_23",new SCreator(SimpleAssignment_23_factory)); 12398new Sfactory(this,"SimpleAssignment_23",new SCreator(SimpleAssignment_23_factory));
12038new Sfactory(this,"TypecastExpression_9",new SCreator(TypecastExpression_9_factory)); 12399new Sfactory(this,"TypecastExpression_9",new SCreator(TypecastExpression_9_factory));
@@ -12047,12 +12408,10 @@ new Sfactory(this,"GlobalVariableDeclaration",new SCreator(GlobalVariableDeclara
12047new Sfactory(this,"IntArgumentDeclarationList_1",new SCreator(IntArgumentDeclarationList_1_factory)); 12408new Sfactory(this,"IntArgumentDeclarationList_1",new SCreator(IntArgumentDeclarationList_1_factory));
12048new Sfactory(this,"IntDeclaration_1",new SCreator(IntDeclaration_1_factory)); 12409new Sfactory(this,"IntDeclaration_1",new SCreator(IntDeclaration_1_factory));
12049new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory)); 12410new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory));
12050new Sfactory(this,"Event_11",new SCreator(Event_11_factory));
12051new Sfactory(this,"VectorArgumentDeclarationList_1",new SCreator(VectorArgumentDeclarationList_1_factory)); 12411new Sfactory(this,"VectorArgumentDeclarationList_1",new SCreator(VectorArgumentDeclarationList_1_factory));
12052new Sfactory(this,"KeyArgumentDeclarationList",new SCreator(KeyArgumentDeclarationList_factory)); 12412new Sfactory(this,"KeyArgumentDeclarationList",new SCreator(KeyArgumentDeclarationList_factory));
12053new Sfactory(this,"TypecastExpression_2",new SCreator(TypecastExpression_2_factory)); 12413new Sfactory(this,"TypecastExpression_2",new SCreator(TypecastExpression_2_factory));
12054new Sfactory(this,"KeyArgStateEvent",new SCreator(KeyArgStateEvent_factory)); 12414new Sfactory(this,"KeyArgStateEvent",new SCreator(KeyArgStateEvent_factory));
12055new Sfactory(this,"TypecastExpression_4",new SCreator(TypecastExpression_4_factory));
12056new Sfactory(this,"TypecastExpression_5",new SCreator(TypecastExpression_5_factory)); 12415new Sfactory(this,"TypecastExpression_5",new SCreator(TypecastExpression_5_factory));
12057new Sfactory(this,"TypecastExpression_8",new SCreator(TypecastExpression_8_factory)); 12416new Sfactory(this,"TypecastExpression_8",new SCreator(TypecastExpression_8_factory));
12058new Sfactory(this,"Constant_1",new SCreator(Constant_1_factory)); 12417new Sfactory(this,"Constant_1",new SCreator(Constant_1_factory));
@@ -12078,6 +12437,7 @@ new Sfactory(this,"ArgumentList_3",new SCreator(ArgumentList_3_factory));
12078new Sfactory(this,"Constant",new SCreator(Constant_factory)); 12437new Sfactory(this,"Constant",new SCreator(Constant_factory));
12079new Sfactory(this,"State",new SCreator(State_factory)); 12438new Sfactory(this,"State",new SCreator(State_factory));
12080new Sfactory(this,"KeyArgStateEvent_1",new SCreator(KeyArgStateEvent_1_factory)); 12439new Sfactory(this,"KeyArgStateEvent_1",new SCreator(KeyArgStateEvent_1_factory));
12440new Sfactory(this,"SimpleAssignment_8",new SCreator(SimpleAssignment_8_factory));
12081new Sfactory(this,"LSLProgramRoot",new SCreator(LSLProgramRoot_factory)); 12441new Sfactory(this,"LSLProgramRoot",new SCreator(LSLProgramRoot_factory));
12082new Sfactory(this,"StateChange",new SCreator(StateChange_factory)); 12442new Sfactory(this,"StateChange",new SCreator(StateChange_factory));
12083new Sfactory(this,"IncrementDecrementExpression_2",new SCreator(IncrementDecrementExpression_2_factory)); 12443new Sfactory(this,"IncrementDecrementExpression_2",new SCreator(IncrementDecrementExpression_2_factory));
@@ -12094,6 +12454,7 @@ new Sfactory(this,"IntArgEvent_10",new SCreator(IntArgEvent_10_factory));
12094new Sfactory(this,"CompoundStatement",new SCreator(CompoundStatement_factory)); 12454new Sfactory(this,"CompoundStatement",new SCreator(CompoundStatement_factory));
12095new Sfactory(this,"TypecastExpression_3",new SCreator(TypecastExpression_3_factory)); 12455new Sfactory(this,"TypecastExpression_3",new SCreator(TypecastExpression_3_factory));
12096new Sfactory(this,"IntArgumentDeclarationList",new SCreator(IntArgumentDeclarationList_factory)); 12456new Sfactory(this,"IntArgumentDeclarationList",new SCreator(IntArgumentDeclarationList_factory));
12457new Sfactory(this,"ArgumentDeclarationList_4",new SCreator(ArgumentDeclarationList_4_factory));
12097new Sfactory(this,"SimpleAssignment_3",new SCreator(SimpleAssignment_3_factory)); 12458new Sfactory(this,"SimpleAssignment_3",new SCreator(SimpleAssignment_3_factory));
12098new Sfactory(this,"SimpleAssignment_4",new SCreator(SimpleAssignment_4_factory)); 12459new Sfactory(this,"SimpleAssignment_4",new SCreator(SimpleAssignment_4_factory));
12099new Sfactory(this,"Statement_1",new SCreator(Statement_1_factory)); 12460new Sfactory(this,"Statement_1",new SCreator(Statement_1_factory));
@@ -12125,19 +12486,21 @@ new Sfactory(this,"Statement_3",new SCreator(Statement_3_factory));
12125new Sfactory(this,"IntArgEvent_7",new SCreator(IntArgEvent_7_factory)); 12486new Sfactory(this,"IntArgEvent_7",new SCreator(IntArgEvent_7_factory));
12126new Sfactory(this,"IntArgEvent_8",new SCreator(IntArgEvent_8_factory)); 12487new Sfactory(this,"IntArgEvent_8",new SCreator(IntArgEvent_8_factory));
12127new Sfactory(this,"SimpleAssignment_10",new SCreator(SimpleAssignment_10_factory)); 12488new Sfactory(this,"SimpleAssignment_10",new SCreator(SimpleAssignment_10_factory));
12128new Sfactory(this,"Statement_7",new SCreator(Statement_7_factory)); 12489new Sfactory(this,"StatementList_2",new SCreator(StatementList_2_factory));
12490new Sfactory(this,"IntRotRotArgStateEvent_1",new SCreator(IntRotRotArgStateEvent_1_factory));
12129new Sfactory(this,"VectorArgEvent_2",new SCreator(VectorArgEvent_2_factory)); 12491new Sfactory(this,"VectorArgEvent_2",new SCreator(VectorArgEvent_2_factory));
12130new Sfactory(this,"Event",new SCreator(Event_factory)); 12492new Sfactory(this,"Event",new SCreator(Event_factory));
12131new Sfactory(this,"SimpleAssignment_14",new SCreator(SimpleAssignment_14_factory)); 12493new Sfactory(this,"SimpleAssignment_14",new SCreator(SimpleAssignment_14_factory));
12132new Sfactory(this,"SimpleAssignment_16",new SCreator(SimpleAssignment_16_factory)); 12494new Sfactory(this,"SimpleAssignment_16",new SCreator(SimpleAssignment_16_factory));
12495new Sfactory(this,"SimpleAssignment_17",new SCreator(SimpleAssignment_17_factory));
12496new Sfactory(this,"SimpleAssignment_18",new SCreator(SimpleAssignment_18_factory));
12133new Sfactory(this,"Statement_10",new SCreator(Statement_10_factory)); 12497new Sfactory(this,"Statement_10",new SCreator(Statement_10_factory));
12134new Sfactory(this,"Statement_11",new SCreator(Statement_11_factory)); 12498new Sfactory(this,"Statement_11",new SCreator(Statement_11_factory));
12135new Sfactory(this,"SimpleAssignment",new SCreator(SimpleAssignment_factory)); 12499new Sfactory(this,"SimpleAssignment",new SCreator(SimpleAssignment_factory));
12136new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory)); 12500new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory));
12137new Sfactory(this,"VectorArgStateEvent_1",new SCreator(VectorArgStateEvent_1_factory));
12138new Sfactory(this,"SimpleAssignment_19",new SCreator(SimpleAssignment_19_factory)); 12501new Sfactory(this,"SimpleAssignment_19",new SCreator(SimpleAssignment_19_factory));
12139new Sfactory(this,"SimpleAssignment_20",new SCreator(SimpleAssignment_20_factory)); 12502new Sfactory(this,"SimpleAssignment_20",new SCreator(SimpleAssignment_20_factory));
12140new Sfactory(this,"SimpleAssignment_21",new SCreator(SimpleAssignment_21_factory)); 12503new Sfactory(this,"Statement_7",new SCreator(Statement_7_factory));
12141new Sfactory(this,"SimpleAssignment_24",new SCreator(SimpleAssignment_24_factory)); 12504new Sfactory(this,"SimpleAssignment_24",new SCreator(SimpleAssignment_24_factory));
12142new Sfactory(this,"SimpleAssignment_1",new SCreator(SimpleAssignment_1_factory)); 12505new Sfactory(this,"SimpleAssignment_1",new SCreator(SimpleAssignment_1_factory));
12143new Sfactory(this,"SimpleAssignment_2",new SCreator(SimpleAssignment_2_factory)); 12506new Sfactory(this,"SimpleAssignment_2",new SCreator(SimpleAssignment_2_factory));
@@ -12163,6 +12526,7 @@ new Sfactory(this,"BinaryExpression_15",new SCreator(BinaryExpression_15_factory
12163new Sfactory(this,"BinaryExpression_16",new SCreator(BinaryExpression_16_factory)); 12526new Sfactory(this,"BinaryExpression_16",new SCreator(BinaryExpression_16_factory));
12164new Sfactory(this,"BinaryExpression_6",new SCreator(BinaryExpression_6_factory)); 12527new Sfactory(this,"BinaryExpression_6",new SCreator(BinaryExpression_6_factory));
12165new Sfactory(this,"BinaryExpression_7",new SCreator(BinaryExpression_7_factory)); 12528new Sfactory(this,"BinaryExpression_7",new SCreator(BinaryExpression_7_factory));
12529new Sfactory(this,"Typename_4",new SCreator(Typename_4_factory));
12166new Sfactory(this,"ArgumentList",new SCreator(ArgumentList_factory)); 12530new Sfactory(this,"ArgumentList",new SCreator(ArgumentList_factory));
12167new Sfactory(this,"VectorDeclaration",new SCreator(VectorDeclaration_factory)); 12531new Sfactory(this,"VectorDeclaration",new SCreator(VectorDeclaration_factory));
12168new Sfactory(this,"Event_10",new SCreator(Event_10_factory)); 12532new Sfactory(this,"Event_10",new SCreator(Event_10_factory));
@@ -12182,7 +12546,7 @@ new Sfactory(this,"VectorConstant",new SCreator(VectorConstant_factory));
12182new Sfactory(this,"VectorArgEvent_1",new SCreator(VectorArgEvent_1_factory)); 12546new Sfactory(this,"VectorArgEvent_1",new SCreator(VectorArgEvent_1_factory));
12183new Sfactory(this,"IntDeclaration",new SCreator(IntDeclaration_factory)); 12547new Sfactory(this,"IntDeclaration",new SCreator(IntDeclaration_factory));
12184new Sfactory(this,"VectorArgEvent_3",new SCreator(VectorArgEvent_3_factory)); 12548new Sfactory(this,"VectorArgEvent_3",new SCreator(VectorArgEvent_3_factory));
12185new Sfactory(this,"IntArgStateEvent",new SCreator(IntArgStateEvent_factory)); 12549new Sfactory(this,"TypecastExpression_4",new SCreator(TypecastExpression_4_factory));
12186new Sfactory(this,"TypecastExpression_6",new SCreator(TypecastExpression_6_factory)); 12550new Sfactory(this,"TypecastExpression_6",new SCreator(TypecastExpression_6_factory));
12187new Sfactory(this,"TypecastExpression_7",new SCreator(TypecastExpression_7_factory)); 12551new Sfactory(this,"TypecastExpression_7",new SCreator(TypecastExpression_7_factory));
12188new Sfactory(this,"FunctionCall",new SCreator(FunctionCall_factory)); 12552new Sfactory(this,"FunctionCall",new SCreator(FunctionCall_factory));
@@ -12201,15 +12565,17 @@ new Sfactory(this,"IfStatement",new SCreator(IfStatement_factory));
12201new Sfactory(this,"ForLoopStatement_1",new SCreator(ForLoopStatement_1_factory)); 12565new Sfactory(this,"ForLoopStatement_1",new SCreator(ForLoopStatement_1_factory));
12202new Sfactory(this,"ForLoopStatement_2",new SCreator(ForLoopStatement_2_factory)); 12566new Sfactory(this,"ForLoopStatement_2",new SCreator(ForLoopStatement_2_factory));
12203new Sfactory(this,"ForLoopStatement_3",new SCreator(ForLoopStatement_3_factory)); 12567new Sfactory(this,"ForLoopStatement_3",new SCreator(ForLoopStatement_3_factory));
12204new Sfactory(this,"ArgumentDeclarationList_4",new SCreator(ArgumentDeclarationList_4_factory)); 12568new Sfactory(this,"IntRotRotArgumentDeclarationList",new SCreator(IntRotRotArgumentDeclarationList_factory));
12205new Sfactory(this,"IntArgEvent_1",new SCreator(IntArgEvent_1_factory)); 12569new Sfactory(this,"IntArgEvent_1",new SCreator(IntArgEvent_1_factory));
12206new Sfactory(this,"IntArgEvent_2",new SCreator(IntArgEvent_2_factory)); 12570new Sfactory(this,"IntArgEvent_2",new SCreator(IntArgEvent_2_factory));
12207new Sfactory(this,"WhileStatement",new SCreator(WhileStatement_factory)); 12571new Sfactory(this,"WhileStatement",new SCreator(WhileStatement_factory));
12208new Sfactory(this,"ForLoop_1",new SCreator(ForLoop_1_factory)); 12572new Sfactory(this,"ForLoop_1",new SCreator(ForLoop_1_factory));
12209new Sfactory(this,"Constant_2",new SCreator(Constant_2_factory)); 12573new Sfactory(this,"Constant_2",new SCreator(Constant_2_factory));
12210new Sfactory(this,"VoidArgEvent",new SCreator(VoidArgEvent_factory)); 12574new Sfactory(this,"VoidArgEvent",new SCreator(VoidArgEvent_factory));
12575new Sfactory(this,"RotDeclaration",new SCreator(RotDeclaration_factory));
12211new Sfactory(this,"WhileStatement_1",new SCreator(WhileStatement_1_factory)); 12576new Sfactory(this,"WhileStatement_1",new SCreator(WhileStatement_1_factory));
12212new Sfactory(this,"WhileStatement_2",new SCreator(WhileStatement_2_factory)); 12577new Sfactory(this,"WhileStatement_2",new SCreator(WhileStatement_2_factory));
12578new Sfactory(this,"VectorArgStateEvent_1",new SCreator(VectorArgStateEvent_1_factory));
12213new Sfactory(this,"IdentExpression_1",new SCreator(IdentExpression_1_factory)); 12579new Sfactory(this,"IdentExpression_1",new SCreator(IdentExpression_1_factory));
12214new Sfactory(this,"VectorArgumentDeclarationList",new SCreator(VectorArgumentDeclarationList_factory)); 12580new Sfactory(this,"VectorArgumentDeclarationList",new SCreator(VectorArgumentDeclarationList_factory));
12215new Sfactory(this,"States",new SCreator(States_factory)); 12581new Sfactory(this,"States",new SCreator(States_factory));
@@ -12217,10 +12583,11 @@ new Sfactory(this,"VoidArgStateEvent",new SCreator(VoidArgStateEvent_factory));
12217} 12583}
12218public static object ExpressionArgument_1_factory(Parser yyp) { return new ExpressionArgument_1(yyp); } 12584public static object ExpressionArgument_1_factory(Parser yyp) { return new ExpressionArgument_1(yyp); }
12219public static object VectorArgStateEvent_factory(Parser yyp) { return new VectorArgStateEvent(yyp); } 12585public static object VectorArgStateEvent_factory(Parser yyp) { return new VectorArgStateEvent(yyp); }
12220public static object SimpleAssignment_8_factory(Parser yyp) { return new SimpleAssignment_8(yyp); } 12586public static object IntArgStateEvent_1_factory(Parser yyp) { return new IntArgStateEvent_1(yyp); }
12221public static object SimpleAssignment_9_factory(Parser yyp) { return new SimpleAssignment_9(yyp); } 12587public static object SimpleAssignment_9_factory(Parser yyp) { return new SimpleAssignment_9(yyp); }
12222public static object StatementList_1_factory(Parser yyp) { return new StatementList_1(yyp); } 12588public static object StatementList_1_factory(Parser yyp) { return new StatementList_1(yyp); }
12223public static object StatementList_2_factory(Parser yyp) { return new StatementList_2(yyp); } 12589public static object RotDeclaration_1_factory(Parser yyp) { return new RotDeclaration_1(yyp); }
12590public static object IntRotRotArgEvent_1_factory(Parser yyp) { return new IntRotRotArgEvent_1(yyp); }
12224public static object StateChange_1_factory(Parser yyp) { return new StateChange_1(yyp); } 12591public static object StateChange_1_factory(Parser yyp) { return new StateChange_1(yyp); }
12225public static object EmptyStatement_factory(Parser yyp) { return new EmptyStatement(yyp); } 12592public static object EmptyStatement_factory(Parser yyp) { return new EmptyStatement(yyp); }
12226public static object Declaration_factory(Parser yyp) { return new Declaration(yyp); } 12593public static object Declaration_factory(Parser yyp) { return new Declaration(yyp); }
@@ -12236,6 +12603,7 @@ public static object BinaryExpression_9_factory(Parser yyp) { return new BinaryE
12236public static object VectorConstant_1_factory(Parser yyp) { return new VectorConstant_1(yyp); } 12603public static object VectorConstant_1_factory(Parser yyp) { return new VectorConstant_1(yyp); }
12237public static object ParenthesisExpression_factory(Parser yyp) { return new ParenthesisExpression(yyp); } 12604public static object ParenthesisExpression_factory(Parser yyp) { return new ParenthesisExpression(yyp); }
12238public static object StatementList_factory(Parser yyp) { return new StatementList(yyp); } 12605public static object StatementList_factory(Parser yyp) { return new StatementList(yyp); }
12606public static object IntRotRotArgEvent_factory(Parser yyp) { return new IntRotRotArgEvent(yyp); }
12239public static object UnaryExpression_factory(Parser yyp) { return new UnaryExpression(yyp); } 12607public static object UnaryExpression_factory(Parser yyp) { return new UnaryExpression(yyp); }
12240public static object IdentDotExpression_1_factory(Parser yyp) { return new IdentDotExpression_1(yyp); } 12608public static object IdentDotExpression_1_factory(Parser yyp) { return new IdentDotExpression_1(yyp); }
12241public static object ArgumentList_4_factory(Parser yyp) { return new ArgumentList_4(yyp); } 12609public static object ArgumentList_4_factory(Parser yyp) { return new ArgumentList_4(yyp); }
@@ -12263,7 +12631,7 @@ public static object SimpleAssignment_5_factory(Parser yyp) { return new SimpleA
12263public static object Typename_1_factory(Parser yyp) { return new Typename_1(yyp); } 12631public static object Typename_1_factory(Parser yyp) { return new Typename_1(yyp); }
12264public static object VoidArgStateEvent_1_factory(Parser yyp) { return new VoidArgStateEvent_1(yyp); } 12632public static object VoidArgStateEvent_1_factory(Parser yyp) { return new VoidArgStateEvent_1(yyp); }
12265public static object Typename_3_factory(Parser yyp) { return new Typename_3(yyp); } 12633public static object Typename_3_factory(Parser yyp) { return new Typename_3(yyp); }
12266public static object Typename_4_factory(Parser yyp) { return new Typename_4(yyp); } 12634public static object IntRotRotArgStateEvent_factory(Parser yyp) { return new IntRotRotArgStateEvent(yyp); }
12267public static object Typename_5_factory(Parser yyp) { return new Typename_5(yyp); } 12635public static object Typename_5_factory(Parser yyp) { return new Typename_5(yyp); }
12268public static object Typename_6_factory(Parser yyp) { return new Typename_6(yyp); } 12636public static object Typename_6_factory(Parser yyp) { return new Typename_6(yyp); }
12269public static object Typename_7_factory(Parser yyp) { return new Typename_7(yyp); } 12637public static object Typename_7_factory(Parser yyp) { return new Typename_7(yyp); }
@@ -12276,8 +12644,9 @@ public static object States_2_factory(Parser yyp) { return new States_2(yyp); }
12276public static object FunctionCallExpression_1_factory(Parser yyp) { return new FunctionCallExpression_1(yyp); } 12644public static object FunctionCallExpression_1_factory(Parser yyp) { return new FunctionCallExpression_1(yyp); }
12277public static object KeyArgEvent_1_factory(Parser yyp) { return new KeyArgEvent_1(yyp); } 12645public static object KeyArgEvent_1_factory(Parser yyp) { return new KeyArgEvent_1(yyp); }
12278public static object ForLoopStatement_factory(Parser yyp) { return new ForLoopStatement(yyp); } 12646public static object ForLoopStatement_factory(Parser yyp) { return new ForLoopStatement(yyp); }
12279public static object IntArgStateEvent_1_factory(Parser yyp) { return new IntArgStateEvent_1(yyp); } 12647public static object IntArgStateEvent_factory(Parser yyp) { return new IntArgStateEvent(yyp); }
12280public static object IntArgEvent_6_factory(Parser yyp) { return new IntArgEvent_6(yyp); } 12648public static object IntArgEvent_6_factory(Parser yyp) { return new IntArgEvent_6(yyp); }
12649public static object IntRotRotArgumentDeclarationList_1_factory(Parser yyp) { return new IntRotRotArgumentDeclarationList_1(yyp); }
12281public static object IntArgEvent_9_factory(Parser yyp) { return new IntArgEvent_9(yyp); } 12650public static object IntArgEvent_9_factory(Parser yyp) { return new IntArgEvent_9(yyp); }
12282public static object DoWhileStatement_1_factory(Parser yyp) { return new DoWhileStatement_1(yyp); } 12651public static object DoWhileStatement_1_factory(Parser yyp) { return new DoWhileStatement_1(yyp); }
12283public static object DoWhileStatement_2_factory(Parser yyp) { return new DoWhileStatement_2(yyp); } 12652public static object DoWhileStatement_2_factory(Parser yyp) { return new DoWhileStatement_2(yyp); }
@@ -12288,8 +12657,8 @@ public static object SimpleAssignment_13_factory(Parser yyp) { return new Simple
12288public static object JumpLabel_factory(Parser yyp) { return new JumpLabel(yyp); } 12657public static object JumpLabel_factory(Parser yyp) { return new JumpLabel(yyp); }
12289public static object SimpleAssignment_15_factory(Parser yyp) { return new SimpleAssignment_15(yyp); } 12658public static object SimpleAssignment_15_factory(Parser yyp) { return new SimpleAssignment_15(yyp); }
12290public static object StateBody_10_factory(Parser yyp) { return new StateBody_10(yyp); } 12659public static object StateBody_10_factory(Parser yyp) { return new StateBody_10(yyp); }
12291public static object SimpleAssignment_17_factory(Parser yyp) { return new SimpleAssignment_17(yyp); } 12660public static object StateBody_11_factory(Parser yyp) { return new StateBody_11(yyp); }
12292public static object SimpleAssignment_18_factory(Parser yyp) { return new SimpleAssignment_18(yyp); } 12661public static object StateBody_12_factory(Parser yyp) { return new StateBody_12(yyp); }
12293public static object JumpStatement_1_factory(Parser yyp) { return new JumpStatement_1(yyp); } 12662public static object JumpStatement_1_factory(Parser yyp) { return new JumpStatement_1(yyp); }
12294public static object GlobalDefinitions_factory(Parser yyp) { return new GlobalDefinitions(yyp); } 12663public static object GlobalDefinitions_factory(Parser yyp) { return new GlobalDefinitions(yyp); }
12295public static object ConstantExpression_1_factory(Parser yyp) { return new ConstantExpression_1(yyp); } 12664public static object ConstantExpression_1_factory(Parser yyp) { return new ConstantExpression_1(yyp); }
@@ -12297,6 +12666,7 @@ public static object VoidArgEvent_4_factory(Parser yyp) { return new VoidArgEven
12297public static object FunctionCall_1_factory(Parser yyp) { return new FunctionCall_1(yyp); } 12666public static object FunctionCall_1_factory(Parser yyp) { return new FunctionCall_1(yyp); }
12298public static object Assignment_2_factory(Parser yyp) { return new Assignment_2(yyp); } 12667public static object Assignment_2_factory(Parser yyp) { return new Assignment_2(yyp); }
12299public static object TypecastExpression_1_factory(Parser yyp) { return new TypecastExpression_1(yyp); } 12668public static object TypecastExpression_1_factory(Parser yyp) { return new TypecastExpression_1(yyp); }
12669public static object SimpleAssignment_21_factory(Parser yyp) { return new SimpleAssignment_21(yyp); }
12300public static object SimpleAssignment_22_factory(Parser yyp) { return new SimpleAssignment_22(yyp); } 12670public static object SimpleAssignment_22_factory(Parser yyp) { return new SimpleAssignment_22(yyp); }
12301public static object SimpleAssignment_23_factory(Parser yyp) { return new SimpleAssignment_23(yyp); } 12671public static object SimpleAssignment_23_factory(Parser yyp) { return new SimpleAssignment_23(yyp); }
12302public static object TypecastExpression_9_factory(Parser yyp) { return new TypecastExpression_9(yyp); } 12672public static object TypecastExpression_9_factory(Parser yyp) { return new TypecastExpression_9(yyp); }
@@ -12311,12 +12681,10 @@ public static object GlobalVariableDeclaration_factory(Parser yyp) { return new
12311public static object IntArgumentDeclarationList_1_factory(Parser yyp) { return new IntArgumentDeclarationList_1(yyp); } 12681public static object IntArgumentDeclarationList_1_factory(Parser yyp) { return new IntArgumentDeclarationList_1(yyp); }
12312public static object IntDeclaration_1_factory(Parser yyp) { return new IntDeclaration_1(yyp); } 12682public static object IntDeclaration_1_factory(Parser yyp) { return new IntDeclaration_1(yyp); }
12313public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); } 12683public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); }
12314public static object Event_11_factory(Parser yyp) { return new Event_11(yyp); }
12315public static object VectorArgumentDeclarationList_1_factory(Parser yyp) { return new VectorArgumentDeclarationList_1(yyp); } 12684public static object VectorArgumentDeclarationList_1_factory(Parser yyp) { return new VectorArgumentDeclarationList_1(yyp); }
12316public static object KeyArgumentDeclarationList_factory(Parser yyp) { return new KeyArgumentDeclarationList(yyp); } 12685public static object KeyArgumentDeclarationList_factory(Parser yyp) { return new KeyArgumentDeclarationList(yyp); }
12317public static object TypecastExpression_2_factory(Parser yyp) { return new TypecastExpression_2(yyp); } 12686public static object TypecastExpression_2_factory(Parser yyp) { return new TypecastExpression_2(yyp); }
12318public static object KeyArgStateEvent_factory(Parser yyp) { return new KeyArgStateEvent(yyp); } 12687public static object KeyArgStateEvent_factory(Parser yyp) { return new KeyArgStateEvent(yyp); }
12319public static object TypecastExpression_4_factory(Parser yyp) { return new TypecastExpression_4(yyp); }
12320public static object TypecastExpression_5_factory(Parser yyp) { return new TypecastExpression_5(yyp); } 12688public static object TypecastExpression_5_factory(Parser yyp) { return new TypecastExpression_5(yyp); }
12321public static object TypecastExpression_8_factory(Parser yyp) { return new TypecastExpression_8(yyp); } 12689public static object TypecastExpression_8_factory(Parser yyp) { return new TypecastExpression_8(yyp); }
12322public static object Constant_1_factory(Parser yyp) { return new Constant_1(yyp); } 12690public static object Constant_1_factory(Parser yyp) { return new Constant_1(yyp); }
@@ -12342,6 +12710,7 @@ public static object ArgumentList_3_factory(Parser yyp) { return new ArgumentLis
12342public static object Constant_factory(Parser yyp) { return new Constant(yyp); } 12710public static object Constant_factory(Parser yyp) { return new Constant(yyp); }
12343public static object State_factory(Parser yyp) { return new State(yyp); } 12711public static object State_factory(Parser yyp) { return new State(yyp); }
12344public static object KeyArgStateEvent_1_factory(Parser yyp) { return new KeyArgStateEvent_1(yyp); } 12712public static object KeyArgStateEvent_1_factory(Parser yyp) { return new KeyArgStateEvent_1(yyp); }
12713public static object SimpleAssignment_8_factory(Parser yyp) { return new SimpleAssignment_8(yyp); }
12345public static object LSLProgramRoot_factory(Parser yyp) { return new LSLProgramRoot(yyp); } 12714public static object LSLProgramRoot_factory(Parser yyp) { return new LSLProgramRoot(yyp); }
12346public static object StateChange_factory(Parser yyp) { return new StateChange(yyp); } 12715public static object StateChange_factory(Parser yyp) { return new StateChange(yyp); }
12347public static object IncrementDecrementExpression_2_factory(Parser yyp) { return new IncrementDecrementExpression_2(yyp); } 12716public static object IncrementDecrementExpression_2_factory(Parser yyp) { return new IncrementDecrementExpression_2(yyp); }
@@ -12358,6 +12727,7 @@ public static object IntArgEvent_10_factory(Parser yyp) { return new IntArgEvent
12358public static object CompoundStatement_factory(Parser yyp) { return new CompoundStatement(yyp); } 12727public static object CompoundStatement_factory(Parser yyp) { return new CompoundStatement(yyp); }
12359public static object TypecastExpression_3_factory(Parser yyp) { return new TypecastExpression_3(yyp); } 12728public static object TypecastExpression_3_factory(Parser yyp) { return new TypecastExpression_3(yyp); }
12360public static object IntArgumentDeclarationList_factory(Parser yyp) { return new IntArgumentDeclarationList(yyp); } 12729public static object IntArgumentDeclarationList_factory(Parser yyp) { return new IntArgumentDeclarationList(yyp); }
12730public static object ArgumentDeclarationList_4_factory(Parser yyp) { return new ArgumentDeclarationList_4(yyp); }
12361public static object SimpleAssignment_3_factory(Parser yyp) { return new SimpleAssignment_3(yyp); } 12731public static object SimpleAssignment_3_factory(Parser yyp) { return new SimpleAssignment_3(yyp); }
12362public static object SimpleAssignment_4_factory(Parser yyp) { return new SimpleAssignment_4(yyp); } 12732public static object SimpleAssignment_4_factory(Parser yyp) { return new SimpleAssignment_4(yyp); }
12363public static object Statement_1_factory(Parser yyp) { return new Statement_1(yyp); } 12733public static object Statement_1_factory(Parser yyp) { return new Statement_1(yyp); }
@@ -12389,19 +12759,21 @@ public static object Statement_3_factory(Parser yyp) { return new Statement_3(yy
12389public static object IntArgEvent_7_factory(Parser yyp) { return new IntArgEvent_7(yyp); } 12759public static object IntArgEvent_7_factory(Parser yyp) { return new IntArgEvent_7(yyp); }
12390public static object IntArgEvent_8_factory(Parser yyp) { return new IntArgEvent_8(yyp); } 12760public static object IntArgEvent_8_factory(Parser yyp) { return new IntArgEvent_8(yyp); }
12391public static object SimpleAssignment_10_factory(Parser yyp) { return new SimpleAssignment_10(yyp); } 12761public static object SimpleAssignment_10_factory(Parser yyp) { return new SimpleAssignment_10(yyp); }
12392public static object Statement_7_factory(Parser yyp) { return new Statement_7(yyp); } 12762public static object StatementList_2_factory(Parser yyp) { return new StatementList_2(yyp); }
12763public static object IntRotRotArgStateEvent_1_factory(Parser yyp) { return new IntRotRotArgStateEvent_1(yyp); }
12393public static object VectorArgEvent_2_factory(Parser yyp) { return new VectorArgEvent_2(yyp); } 12764public static object VectorArgEvent_2_factory(Parser yyp) { return new VectorArgEvent_2(yyp); }
12394public static object Event_factory(Parser yyp) { return new Event(yyp); } 12765public static object Event_factory(Parser yyp) { return new Event(yyp); }
12395public static object SimpleAssignment_14_factory(Parser yyp) { return new SimpleAssignment_14(yyp); } 12766public static object SimpleAssignment_14_factory(Parser yyp) { return new SimpleAssignment_14(yyp); }
12396public static object SimpleAssignment_16_factory(Parser yyp) { return new SimpleAssignment_16(yyp); } 12767public static object SimpleAssignment_16_factory(Parser yyp) { return new SimpleAssignment_16(yyp); }
12768public static object SimpleAssignment_17_factory(Parser yyp) { return new SimpleAssignment_17(yyp); }
12769public static object SimpleAssignment_18_factory(Parser yyp) { return new SimpleAssignment_18(yyp); }
12397public static object Statement_10_factory(Parser yyp) { return new Statement_10(yyp); } 12770public static object Statement_10_factory(Parser yyp) { return new Statement_10(yyp); }
12398public static object Statement_11_factory(Parser yyp) { return new Statement_11(yyp); } 12771public static object Statement_11_factory(Parser yyp) { return new Statement_11(yyp); }
12399public static object SimpleAssignment_factory(Parser yyp) { return new SimpleAssignment(yyp); } 12772public static object SimpleAssignment_factory(Parser yyp) { return new SimpleAssignment(yyp); }
12400public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); } 12773public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); }
12401public static object VectorArgStateEvent_1_factory(Parser yyp) { return new VectorArgStateEvent_1(yyp); }
12402public static object SimpleAssignment_19_factory(Parser yyp) { return new SimpleAssignment_19(yyp); } 12774public static object SimpleAssignment_19_factory(Parser yyp) { return new SimpleAssignment_19(yyp); }
12403public static object SimpleAssignment_20_factory(Parser yyp) { return new SimpleAssignment_20(yyp); } 12775public static object SimpleAssignment_20_factory(Parser yyp) { return new SimpleAssignment_20(yyp); }
12404public static object SimpleAssignment_21_factory(Parser yyp) { return new SimpleAssignment_21(yyp); } 12776public static object Statement_7_factory(Parser yyp) { return new Statement_7(yyp); }
12405public static object SimpleAssignment_24_factory(Parser yyp) { return new SimpleAssignment_24(yyp); } 12777public static object SimpleAssignment_24_factory(Parser yyp) { return new SimpleAssignment_24(yyp); }
12406public static object SimpleAssignment_1_factory(Parser yyp) { return new SimpleAssignment_1(yyp); } 12778public static object SimpleAssignment_1_factory(Parser yyp) { return new SimpleAssignment_1(yyp); }
12407public static object SimpleAssignment_2_factory(Parser yyp) { return new SimpleAssignment_2(yyp); } 12779public static object SimpleAssignment_2_factory(Parser yyp) { return new SimpleAssignment_2(yyp); }
@@ -12427,6 +12799,7 @@ public static object BinaryExpression_15_factory(Parser yyp) { return new Binary
12427public static object BinaryExpression_16_factory(Parser yyp) { return new BinaryExpression_16(yyp); } 12799public static object BinaryExpression_16_factory(Parser yyp) { return new BinaryExpression_16(yyp); }
12428public static object BinaryExpression_6_factory(Parser yyp) { return new BinaryExpression_6(yyp); } 12800public static object BinaryExpression_6_factory(Parser yyp) { return new BinaryExpression_6(yyp); }
12429public static object BinaryExpression_7_factory(Parser yyp) { return new BinaryExpression_7(yyp); } 12801public static object BinaryExpression_7_factory(Parser yyp) { return new BinaryExpression_7(yyp); }
12802public static object Typename_4_factory(Parser yyp) { return new Typename_4(yyp); }
12430public static object ArgumentList_factory(Parser yyp) { return new ArgumentList(yyp); } 12803public static object ArgumentList_factory(Parser yyp) { return new ArgumentList(yyp); }
12431public static object VectorDeclaration_factory(Parser yyp) { return new VectorDeclaration(yyp); } 12804public static object VectorDeclaration_factory(Parser yyp) { return new VectorDeclaration(yyp); }
12432public static object Event_10_factory(Parser yyp) { return new Event_10(yyp); } 12805public static object Event_10_factory(Parser yyp) { return new Event_10(yyp); }
@@ -12446,7 +12819,7 @@ public static object VectorConstant_factory(Parser yyp) { return new VectorConst
12446public static object VectorArgEvent_1_factory(Parser yyp) { return new VectorArgEvent_1(yyp); } 12819public static object VectorArgEvent_1_factory(Parser yyp) { return new VectorArgEvent_1(yyp); }
12447public static object IntDeclaration_factory(Parser yyp) { return new IntDeclaration(yyp); } 12820public static object IntDeclaration_factory(Parser yyp) { return new IntDeclaration(yyp); }
12448public static object VectorArgEvent_3_factory(Parser yyp) { return new VectorArgEvent_3(yyp); } 12821public static object VectorArgEvent_3_factory(Parser yyp) { return new VectorArgEvent_3(yyp); }
12449public static object IntArgStateEvent_factory(Parser yyp) { return new IntArgStateEvent(yyp); } 12822public static object TypecastExpression_4_factory(Parser yyp) { return new TypecastExpression_4(yyp); }
12450public static object TypecastExpression_6_factory(Parser yyp) { return new TypecastExpression_6(yyp); } 12823public static object TypecastExpression_6_factory(Parser yyp) { return new TypecastExpression_6(yyp); }
12451public static object TypecastExpression_7_factory(Parser yyp) { return new TypecastExpression_7(yyp); } 12824public static object TypecastExpression_7_factory(Parser yyp) { return new TypecastExpression_7(yyp); }
12452public static object FunctionCall_factory(Parser yyp) { return new FunctionCall(yyp); } 12825public static object FunctionCall_factory(Parser yyp) { return new FunctionCall(yyp); }
@@ -12465,15 +12838,17 @@ public static object IfStatement_factory(Parser yyp) { return new IfStatement(yy
12465public static object ForLoopStatement_1_factory(Parser yyp) { return new ForLoopStatement_1(yyp); } 12838public static object ForLoopStatement_1_factory(Parser yyp) { return new ForLoopStatement_1(yyp); }
12466public static object ForLoopStatement_2_factory(Parser yyp) { return new ForLoopStatement_2(yyp); } 12839public static object ForLoopStatement_2_factory(Parser yyp) { return new ForLoopStatement_2(yyp); }
12467public static object ForLoopStatement_3_factory(Parser yyp) { return new ForLoopStatement_3(yyp); } 12840public static object ForLoopStatement_3_factory(Parser yyp) { return new ForLoopStatement_3(yyp); }
12468public static object ArgumentDeclarationList_4_factory(Parser yyp) { return new ArgumentDeclarationList_4(yyp); } 12841public static object IntRotRotArgumentDeclarationList_factory(Parser yyp) { return new IntRotRotArgumentDeclarationList(yyp); }
12469public static object IntArgEvent_1_factory(Parser yyp) { return new IntArgEvent_1(yyp); } 12842public static object IntArgEvent_1_factory(Parser yyp) { return new IntArgEvent_1(yyp); }
12470public static object IntArgEvent_2_factory(Parser yyp) { return new IntArgEvent_2(yyp); } 12843public static object IntArgEvent_2_factory(Parser yyp) { return new IntArgEvent_2(yyp); }
12471public static object WhileStatement_factory(Parser yyp) { return new WhileStatement(yyp); } 12844public static object WhileStatement_factory(Parser yyp) { return new WhileStatement(yyp); }
12472public static object ForLoop_1_factory(Parser yyp) { return new ForLoop_1(yyp); } 12845public static object ForLoop_1_factory(Parser yyp) { return new ForLoop_1(yyp); }
12473public static object Constant_2_factory(Parser yyp) { return new Constant_2(yyp); } 12846public static object Constant_2_factory(Parser yyp) { return new Constant_2(yyp); }
12474public static object VoidArgEvent_factory(Parser yyp) { return new VoidArgEvent(yyp); } 12847public static object VoidArgEvent_factory(Parser yyp) { return new VoidArgEvent(yyp); }
12848public static object RotDeclaration_factory(Parser yyp) { return new RotDeclaration(yyp); }
12475public static object WhileStatement_1_factory(Parser yyp) { return new WhileStatement_1(yyp); } 12849public static object WhileStatement_1_factory(Parser yyp) { return new WhileStatement_1(yyp); }
12476public static object WhileStatement_2_factory(Parser yyp) { return new WhileStatement_2(yyp); } 12850public static object WhileStatement_2_factory(Parser yyp) { return new WhileStatement_2(yyp); }
12851public static object VectorArgStateEvent_1_factory(Parser yyp) { return new VectorArgStateEvent_1(yyp); }
12477public static object IdentExpression_1_factory(Parser yyp) { return new IdentExpression_1(yyp); } 12852public static object IdentExpression_1_factory(Parser yyp) { return new IdentExpression_1(yyp); }
12478public static object VectorArgumentDeclarationList_factory(Parser yyp) { return new VectorArgumentDeclarationList(yyp); } 12853public static object VectorArgumentDeclarationList_factory(Parser yyp) { return new VectorArgumentDeclarationList(yyp); }
12479public static object States_factory(Parser yyp) { return new States(yyp); } 12854public static object States_factory(Parser yyp) { return new States(yyp); }