diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs | 11001 |
1 files changed, 0 insertions, 11001 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs deleted file mode 100644 index b09e959..0000000 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs +++ /dev/null | |||
@@ -1,11001 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System;using Tools; | ||
29 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL { | ||
30 | //%+LSLProgramRoot+95 | ||
31 | public class LSLProgramRoot : SYMBOL{ | ||
32 | public LSLProgramRoot (Parser yyp, States s ):base(((LSLSyntax | ||
33 | )yyp)){ while (0< s . kids . Count ) kids . Add ( s . kids . Pop ()); | ||
34 | } | ||
35 | public LSLProgramRoot (Parser yyp, GlobalDefinitions gd , States s ):base(((LSLSyntax | ||
36 | )yyp)){ while (0< gd . kids . Count ) kids . Add ( gd . kids . Pop ()); | ||
37 | while (0< s . kids . Count ) kids . Add ( s . kids . Pop ()); | ||
38 | } | ||
39 | |||
40 | public override string yyname { get { return "LSLProgramRoot"; }} | ||
41 | public override int yynum { get { return 95; }} | ||
42 | public LSLProgramRoot(Parser yyp):base(yyp){}} | ||
43 | //%+GlobalDefinitions+96 | ||
44 | public class GlobalDefinitions : SYMBOL{ | ||
45 | public GlobalDefinitions (Parser yyp, GlobalVariableDeclaration gvd ):base(((LSLSyntax | ||
46 | )yyp)){ kids . Add ( gvd ); | ||
47 | } | ||
48 | public GlobalDefinitions (Parser yyp, GlobalDefinitions gd , GlobalVariableDeclaration gvd ):base(((LSLSyntax | ||
49 | )yyp)){ while (0< gd . kids . Count ) kids . Add ( gd . kids . Pop ()); | ||
50 | kids . Add ( gvd ); | ||
51 | } | ||
52 | public GlobalDefinitions (Parser yyp, GlobalFunctionDefinition gfd ):base(((LSLSyntax | ||
53 | )yyp)){ kids . Add ( gfd ); | ||
54 | } | ||
55 | public GlobalDefinitions (Parser yyp, GlobalDefinitions gd , GlobalFunctionDefinition gfd ):base(((LSLSyntax | ||
56 | )yyp)){ while (0< gd . kids . Count ) kids . Add ( gd . kids . Pop ()); | ||
57 | kids . Add ( gfd ); | ||
58 | } | ||
59 | |||
60 | public override string yyname { get { return "GlobalDefinitions"; }} | ||
61 | public override int yynum { get { return 96; }} | ||
62 | public GlobalDefinitions(Parser yyp):base(yyp){}} | ||
63 | //%+GlobalVariableDeclaration+97 | ||
64 | public class GlobalVariableDeclaration : SYMBOL{ | ||
65 | public GlobalVariableDeclaration (Parser yyp, Declaration d ):base(((LSLSyntax | ||
66 | )yyp)){ kids . Add ( d ); | ||
67 | } | ||
68 | public GlobalVariableDeclaration (Parser yyp, Assignment a ):base(((LSLSyntax | ||
69 | )yyp)){ kids . Add ( a ); | ||
70 | } | ||
71 | |||
72 | public override string yyname { get { return "GlobalVariableDeclaration"; }} | ||
73 | public override int yynum { get { return 97; }} | ||
74 | public GlobalVariableDeclaration(Parser yyp):base(yyp){}} | ||
75 | //%+GlobalFunctionDefinition+98 | ||
76 | public class GlobalFunctionDefinition : SYMBOL{ | ||
77 | private string m_returnType ; | ||
78 | private string m_name ; | ||
79 | public GlobalFunctionDefinition (Parser yyp, string returnType , string name , ArgumentDeclarationList adl , CompoundStatement cs ):base(((LSLSyntax | ||
80 | )yyp)){ m_returnType = returnType ; | ||
81 | m_name = name ; | ||
82 | kids . Add ( adl ); | ||
83 | kids . Add ( cs ); | ||
84 | } | ||
85 | public string ReturnType { get { return m_returnType ; | ||
86 | } | ||
87 | set { m_returnType = value ; | ||
88 | } | ||
89 | } | ||
90 | public string Name { get { return m_name ; | ||
91 | } | ||
92 | } | ||
93 | |||
94 | public override string yyname { get { return "GlobalFunctionDefinition"; }} | ||
95 | public override int yynum { get { return 98; }} | ||
96 | public GlobalFunctionDefinition(Parser yyp):base(yyp){}} | ||
97 | //%+States+99 | ||
98 | public class States : SYMBOL{ | ||
99 | public States (Parser yyp, State ds ):base(((LSLSyntax | ||
100 | )yyp)){ kids . Add ( ds ); | ||
101 | } | ||
102 | public States (Parser yyp, States s , State us ):base(((LSLSyntax | ||
103 | )yyp)){ while (0< s . kids . Count ) kids . Add ( s . kids . Pop ()); | ||
104 | kids . Add ( us ); | ||
105 | } | ||
106 | |||
107 | public override string yyname { get { return "States"; }} | ||
108 | public override int yynum { get { return 99; }} | ||
109 | public States(Parser yyp):base(yyp){}} | ||
110 | //%+State+100 | ||
111 | public class State : SYMBOL{ | ||
112 | private string m_name ; | ||
113 | public State (Parser yyp, string name , StateBody sb ):base(((LSLSyntax | ||
114 | )yyp)){ m_name = name ; | ||
115 | while (0< sb . kids . Count ) kids . Add ( sb . kids . Pop ()); | ||
116 | } | ||
117 | public override string ToString (){ return "STATE<"+ m_name +">"; | ||
118 | } | ||
119 | public string Name { get { return m_name ; | ||
120 | } | ||
121 | } | ||
122 | |||
123 | public override string yyname { get { return "State"; }} | ||
124 | public override int yynum { get { return 100; }} | ||
125 | public State(Parser yyp):base(yyp){}} | ||
126 | //%+StateBody+101 | ||
127 | public class StateBody : SYMBOL{ | ||
128 | public StateBody (Parser yyp, StateBody sb , StateEvent se ):base(((LSLSyntax | ||
129 | )yyp)){ while (0< sb . kids . Count ) kids . Add ( sb . kids . Pop ()); | ||
130 | kids . Add ( se ); | ||
131 | } | ||
132 | public StateBody (Parser yyp, StateEvent se ):base(((LSLSyntax | ||
133 | )yyp)){ kids . Add ( se ); | ||
134 | } | ||
135 | |||
136 | public override string yyname { get { return "StateBody"; }} | ||
137 | public override int yynum { get { return 101; }} | ||
138 | public StateBody(Parser yyp):base(yyp){}} | ||
139 | //%+StateEvent+102 | ||
140 | public class StateEvent : SYMBOL{ | ||
141 | private string m_name ; | ||
142 | public StateEvent (Parser yyp, string name , CompoundStatement cs ):base(((LSLSyntax | ||
143 | )yyp)){ m_name = name ; | ||
144 | kids . Add ( cs ); | ||
145 | } | ||
146 | public StateEvent (Parser yyp, string name , ArgumentDeclarationList dal , CompoundStatement cs ):base(((LSLSyntax | ||
147 | )yyp)){ m_name = name ; | ||
148 | if (0< dal . kids . Count ) kids . Add ( dal ); | ||
149 | kids . Add ( cs ); | ||
150 | } | ||
151 | public override string ToString (){ return "EVENT<"+ m_name +">"; | ||
152 | } | ||
153 | public string Name { get { return m_name ; | ||
154 | } | ||
155 | } | ||
156 | |||
157 | public override string yyname { get { return "StateEvent"; }} | ||
158 | public override int yynum { get { return 102; }} | ||
159 | public StateEvent(Parser yyp):base(yyp){}} | ||
160 | //%+ArgumentDeclarationList+103 | ||
161 | public class ArgumentDeclarationList : SYMBOL{ | ||
162 | public ArgumentDeclarationList (Parser yyp, Declaration d ):base(((LSLSyntax | ||
163 | )yyp)){ kids . Add ( d ); | ||
164 | } | ||
165 | public ArgumentDeclarationList (Parser yyp, ArgumentDeclarationList adl , Declaration d ):base(((LSLSyntax | ||
166 | )yyp)){ while (0< adl . kids . Count ) kids . Add ( adl . kids . Pop ()); | ||
167 | kids . Add ( d ); | ||
168 | } | ||
169 | |||
170 | public override string yyname { get { return "ArgumentDeclarationList"; }} | ||
171 | public override int yynum { get { return 103; }} | ||
172 | public ArgumentDeclarationList(Parser yyp):base(yyp){}} | ||
173 | //%+Declaration+104 | ||
174 | public class Declaration : SYMBOL{ | ||
175 | private string m_datatype ; | ||
176 | private string m_id ; | ||
177 | public Declaration (Parser yyp, string type , string id ):base(((LSLSyntax | ||
178 | )yyp)){ m_datatype = type ; | ||
179 | m_id = id ; | ||
180 | } | ||
181 | public override string ToString (){ return "Declaration<"+ m_datatype +":"+ m_id +">"; | ||
182 | } | ||
183 | public string Datatype { get { return m_datatype ; | ||
184 | } | ||
185 | set { m_datatype = value ; | ||
186 | } | ||
187 | } | ||
188 | public string Id { get { return m_id ; | ||
189 | } | ||
190 | } | ||
191 | |||
192 | public override string yyname { get { return "Declaration"; }} | ||
193 | public override int yynum { get { return 104; }} | ||
194 | public Declaration(Parser yyp):base(yyp){}} | ||
195 | //%+Typename+105 | ||
196 | public class Typename : SYMBOL{ | ||
197 | public string yytext ; | ||
198 | public Typename (Parser yyp, string text ):base(((LSLSyntax | ||
199 | )yyp)){ yytext = text ; | ||
200 | } | ||
201 | |||
202 | public override string yyname { get { return "Typename"; }} | ||
203 | public override int yynum { get { return 105; }} | ||
204 | public Typename(Parser yyp):base(yyp){}} | ||
205 | //%+Event+106 | ||
206 | public class Event : SYMBOL{ | ||
207 | public string yytext ; | ||
208 | public Event (Parser yyp, string text ):base(((LSLSyntax | ||
209 | )yyp)){ yytext = text ; | ||
210 | } | ||
211 | |||
212 | public override string yyname { get { return "Event"; }} | ||
213 | public override int yynum { get { return 106; }} | ||
214 | public Event(Parser yyp):base(yyp){}} | ||
215 | //%+CompoundStatement+107 | ||
216 | public class CompoundStatement : SYMBOL{ | ||
217 | public CompoundStatement (Parser yyp):base(((LSLSyntax | ||
218 | )yyp)){} | ||
219 | public CompoundStatement (Parser yyp, StatementList sl ):base(((LSLSyntax | ||
220 | )yyp)){ while (0< sl . kids . Count ) kids . Add ( sl . kids . Pop ()); | ||
221 | } | ||
222 | |||
223 | public override string yyname { get { return "CompoundStatement"; }} | ||
224 | public override int yynum { get { return 107; }} | ||
225 | } | ||
226 | //%+StatementList+108 | ||
227 | public class StatementList : SYMBOL{ | ||
228 | 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 ()); | ||
229 | else kids . Add ( s ); | ||
230 | } | ||
231 | public StatementList (Parser yyp, Statement s ):base(((LSLSyntax | ||
232 | )yyp)){ AddStatement ( s ); | ||
233 | } | ||
234 | public StatementList (Parser yyp, StatementList sl , Statement s ):base(((LSLSyntax | ||
235 | )yyp)){ while (0< sl . kids . Count ) kids . Add ( sl . kids . Pop ()); | ||
236 | AddStatement ( s ); | ||
237 | } | ||
238 | |||
239 | public override string yyname { get { return "StatementList"; }} | ||
240 | public override int yynum { get { return 108; }} | ||
241 | public StatementList(Parser yyp):base(yyp){}} | ||
242 | //%+Statement+109 | ||
243 | public class Statement : SYMBOL{ | ||
244 | public Statement (Parser yyp, Declaration d ):base(((LSLSyntax | ||
245 | )yyp)){ kids . Add ( d ); | ||
246 | } | ||
247 | public Statement (Parser yyp, CompoundStatement cs ):base(((LSLSyntax | ||
248 | )yyp)){ kids . Add ( cs ); | ||
249 | } | ||
250 | public Statement (Parser yyp, FunctionCall fc ):base(((LSLSyntax | ||
251 | )yyp)){ kids . Add ( fc ); | ||
252 | } | ||
253 | public Statement (Parser yyp, Assignment a ):base(((LSLSyntax | ||
254 | )yyp)){ kids . Add ( a ); | ||
255 | } | ||
256 | public Statement (Parser yyp, Expression e ):base(((LSLSyntax | ||
257 | )yyp)){ kids . Add ( e ); | ||
258 | } | ||
259 | public Statement (Parser yyp, ReturnStatement rs ):base(((LSLSyntax | ||
260 | )yyp)){ kids . Add ( rs ); | ||
261 | } | ||
262 | public Statement (Parser yyp, StateChange sc ):base(((LSLSyntax | ||
263 | )yyp)){ kids . Add ( sc ); | ||
264 | } | ||
265 | public Statement (Parser yyp, IfStatement ifs ):base(((LSLSyntax | ||
266 | )yyp)){ kids . Add ( ifs ); | ||
267 | } | ||
268 | public Statement (Parser yyp, WhileStatement ifs ):base(((LSLSyntax | ||
269 | )yyp)){ kids . Add ( ifs ); | ||
270 | } | ||
271 | public Statement (Parser yyp, DoWhileStatement ifs ):base(((LSLSyntax | ||
272 | )yyp)){ kids . Add ( ifs ); | ||
273 | } | ||
274 | public Statement (Parser yyp, ForLoop fl ):base(((LSLSyntax | ||
275 | )yyp)){ kids . Add ( fl ); | ||
276 | } | ||
277 | public Statement (Parser yyp, JumpLabel jl ):base(((LSLSyntax | ||
278 | )yyp)){ kids . Add ( jl ); | ||
279 | } | ||
280 | public Statement (Parser yyp, JumpStatement js ):base(((LSLSyntax | ||
281 | )yyp)){ kids . Add ( js ); | ||
282 | } | ||
283 | |||
284 | public override string yyname { get { return "Statement"; }} | ||
285 | public override int yynum { get { return 109; }} | ||
286 | public Statement(Parser yyp):base(yyp){}} | ||
287 | //%+Assignment+110 | ||
288 | public class Assignment : SYMBOL{ | ||
289 | protected string m_assignmentType ; | ||
290 | public Assignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax | ||
291 | )yyp)){ m_assignmentType = assignmentType ; | ||
292 | kids . Add ( lhs ); | ||
293 | if ( rhs is ConstantExpression ) while (0< rhs . kids . Count ) kids . Add ( rhs . kids . Pop ()); | ||
294 | else kids . Add ( rhs ); | ||
295 | } | ||
296 | public Assignment (Parser yyp, SimpleAssignment sa ):base(((LSLSyntax | ||
297 | )yyp)){ m_assignmentType = sa . AssignmentType ; | ||
298 | while (0< sa . kids . Count ) kids . Add ( sa . kids . Pop ()); | ||
299 | } | ||
300 | public string AssignmentType { get { return m_assignmentType ; | ||
301 | } | ||
302 | } | ||
303 | public override string ToString (){ return base . ToString ()+"<"+ m_assignmentType +">"; | ||
304 | } | ||
305 | |||
306 | public override string yyname { get { return "Assignment"; }} | ||
307 | public override int yynum { get { return 110; }} | ||
308 | public Assignment(Parser yyp):base(yyp){}} | ||
309 | //%+SimpleAssignment+111 | ||
310 | public class SimpleAssignment : Assignment{ | ||
311 | public SimpleAssignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax | ||
312 | )yyp)){ m_assignmentType = assignmentType ; | ||
313 | kids . Add ( lhs ); | ||
314 | if ( rhs is ConstantExpression ) while (0< rhs . kids . Count ) kids . Add ( rhs . kids . Pop ()); | ||
315 | else kids . Add ( rhs ); | ||
316 | } | ||
317 | |||
318 | public override string yyname { get { return "SimpleAssignment"; }} | ||
319 | public override int yynum { get { return 111; }} | ||
320 | public SimpleAssignment(Parser yyp):base(yyp){}} | ||
321 | //%+ReturnStatement+112 | ||
322 | public class ReturnStatement : SYMBOL{ | ||
323 | public ReturnStatement (Parser yyp):base(((LSLSyntax | ||
324 | )yyp)){} | ||
325 | public ReturnStatement (Parser yyp, Expression e ):base(((LSLSyntax | ||
326 | )yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
327 | else kids . Add ( e ); | ||
328 | } | ||
329 | |||
330 | public override string yyname { get { return "ReturnStatement"; }} | ||
331 | public override int yynum { get { return 112; }} | ||
332 | } | ||
333 | //%+JumpLabel+113 | ||
334 | public class JumpLabel : SYMBOL{ | ||
335 | private string m_labelName ; | ||
336 | public JumpLabel (Parser yyp, string labelName ):base(((LSLSyntax | ||
337 | )yyp)){ m_labelName = labelName ; | ||
338 | } | ||
339 | public string LabelName { get { return m_labelName ; | ||
340 | } | ||
341 | } | ||
342 | public override string ToString (){ return base . ToString ()+"<"+ m_labelName +">"; | ||
343 | } | ||
344 | |||
345 | public override string yyname { get { return "JumpLabel"; }} | ||
346 | public override int yynum { get { return 113; }} | ||
347 | public JumpLabel(Parser yyp):base(yyp){}} | ||
348 | //%+JumpStatement+114 | ||
349 | public class JumpStatement : SYMBOL{ | ||
350 | private string m_targetName ; | ||
351 | public JumpStatement (Parser yyp, string targetName ):base(((LSLSyntax | ||
352 | )yyp)){ m_targetName = targetName ; | ||
353 | } | ||
354 | public string TargetName { get { return m_targetName ; | ||
355 | } | ||
356 | } | ||
357 | public override string ToString (){ return base . ToString ()+"<"+ m_targetName +">"; | ||
358 | } | ||
359 | |||
360 | public override string yyname { get { return "JumpStatement"; }} | ||
361 | public override int yynum { get { return 114; }} | ||
362 | public JumpStatement(Parser yyp):base(yyp){}} | ||
363 | //%+StateChange+115 | ||
364 | public class StateChange : SYMBOL{ | ||
365 | private string m_newState ; | ||
366 | public StateChange (Parser yyp, string newState ):base(((LSLSyntax | ||
367 | )yyp)){ m_newState = newState ; | ||
368 | } | ||
369 | public string NewState { get { return m_newState ; | ||
370 | } | ||
371 | } | ||
372 | |||
373 | public override string yyname { get { return "StateChange"; }} | ||
374 | public override int yynum { get { return 115; }} | ||
375 | public StateChange(Parser yyp):base(yyp){}} | ||
376 | //%+IfStatement+116 | ||
377 | public class IfStatement : SYMBOL{ | ||
378 | private void AddStatement ( Statement s ){ if (0< s . kids . Count && s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
379 | else kids . Add ( s ); | ||
380 | } | ||
381 | public IfStatement (Parser yyp, SYMBOL s , Statement ifs ):base(((LSLSyntax | ||
382 | )yyp)){ kids . Add ( s ); | ||
383 | AddStatement ( ifs ); | ||
384 | } | ||
385 | public IfStatement (Parser yyp, SYMBOL s , Statement ifs , Statement es ):base(((LSLSyntax | ||
386 | )yyp)){ kids . Add ( s ); | ||
387 | AddStatement ( ifs ); | ||
388 | if (0< es . kids . Count && es . kids . Top is IfStatement ) kids . Add ( es . kids . Pop ()); | ||
389 | else AddStatement ( es ); | ||
390 | } | ||
391 | |||
392 | public override string yyname { get { return "IfStatement"; }} | ||
393 | public override int yynum { get { return 116; }} | ||
394 | public IfStatement(Parser yyp):base(yyp){}} | ||
395 | //%+WhileStatement+117 | ||
396 | public class WhileStatement : SYMBOL{ | ||
397 | public WhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax | ||
398 | )yyp)){ kids . Add ( s ); | ||
399 | if (0< st . kids . Count && st . kids . Top is CompoundStatement ) kids . Add ( st . kids . Pop ()); | ||
400 | else kids . Add ( st ); | ||
401 | } | ||
402 | |||
403 | public override string yyname { get { return "WhileStatement"; }} | ||
404 | public override int yynum { get { return 117; }} | ||
405 | public WhileStatement(Parser yyp):base(yyp){}} | ||
406 | //%+DoWhileStatement+118 | ||
407 | public class DoWhileStatement : SYMBOL{ | ||
408 | public DoWhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax | ||
409 | )yyp)){ if (0< st . kids . Count && st . kids . Top is CompoundStatement ) kids . Add ( st . kids . Pop ()); | ||
410 | else kids . Add ( st ); | ||
411 | kids . Add ( s ); | ||
412 | } | ||
413 | |||
414 | public override string yyname { get { return "DoWhileStatement"; }} | ||
415 | public override int yynum { get { return 118; }} | ||
416 | public DoWhileStatement(Parser yyp):base(yyp){}} | ||
417 | //%+ForLoop+119 | ||
418 | public class ForLoop : SYMBOL{ | ||
419 | public ForLoop (Parser yyp, ForLoopStatement flsa , Expression e , ForLoopStatement flsb , Statement s ):base(((LSLSyntax | ||
420 | )yyp)){ kids . Add ( flsa ); | ||
421 | kids . Add ( e ); | ||
422 | kids . Add ( flsb ); | ||
423 | if (0< s . kids . Count && s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
424 | else kids . Add ( s ); | ||
425 | } | ||
426 | |||
427 | public override string yyname { get { return "ForLoop"; }} | ||
428 | public override int yynum { get { return 119; }} | ||
429 | public ForLoop(Parser yyp):base(yyp){}} | ||
430 | //%+ForLoopStatement+120 | ||
431 | public class ForLoopStatement : SYMBOL{ | ||
432 | public ForLoopStatement (Parser yyp, Expression e ):base(((LSLSyntax | ||
433 | )yyp)){ kids . Add ( e ); | ||
434 | } | ||
435 | public ForLoopStatement (Parser yyp, SimpleAssignment sa ):base(((LSLSyntax | ||
436 | )yyp)){ kids . Add ( sa ); | ||
437 | } | ||
438 | public ForLoopStatement (Parser yyp, ForLoopStatement fls , Expression e ):base(((LSLSyntax | ||
439 | )yyp)){ while (0< fls . kids . Count ) kids . Add ( fls . kids . Pop ()); | ||
440 | kids . Add ( e ); | ||
441 | } | ||
442 | public ForLoopStatement (Parser yyp, ForLoopStatement fls , SimpleAssignment sa ):base(((LSLSyntax | ||
443 | )yyp)){ while (0< fls . kids . Count ) kids . Add ( fls . kids . Pop ()); | ||
444 | kids . Add ( sa ); | ||
445 | } | ||
446 | |||
447 | public override string yyname { get { return "ForLoopStatement"; }} | ||
448 | public override int yynum { get { return 120; }} | ||
449 | public ForLoopStatement(Parser yyp):base(yyp){}} | ||
450 | //%+FunctionCall+121 | ||
451 | public class FunctionCall : SYMBOL{ | ||
452 | private string m_id ; | ||
453 | public FunctionCall (Parser yyp, string id , ArgumentList al ):base(((LSLSyntax | ||
454 | )yyp)){ m_id = id ; | ||
455 | kids . Add ( al ); | ||
456 | } | ||
457 | public override string ToString (){ return base . ToString ()+"<"+ m_id +">"; | ||
458 | } | ||
459 | public string Id { get { return m_id ; | ||
460 | } | ||
461 | } | ||
462 | |||
463 | public override string yyname { get { return "FunctionCall"; }} | ||
464 | public override int yynum { get { return 121; }} | ||
465 | public FunctionCall(Parser yyp):base(yyp){}} | ||
466 | //%+ArgumentList+122 | ||
467 | public class ArgumentList : SYMBOL{ | ||
468 | public ArgumentList (Parser yyp, Argument a ):base(((LSLSyntax | ||
469 | )yyp)){ AddArgument ( a ); | ||
470 | } | ||
471 | public ArgumentList (Parser yyp, ArgumentList al , Argument a ):base(((LSLSyntax | ||
472 | )yyp)){ while (0< al . kids . Count ) kids . Add ( al . kids . Pop ()); | ||
473 | AddArgument ( a ); | ||
474 | } | ||
475 | private void AddArgument ( Argument a ){ if ( a is ExpressionArgument ) while (0< a . kids . Count ) kids . Add ( a . kids . Pop ()); | ||
476 | else kids . Add ( a ); | ||
477 | } | ||
478 | |||
479 | public override string yyname { get { return "ArgumentList"; }} | ||
480 | public override int yynum { get { return 122; }} | ||
481 | public ArgumentList(Parser yyp):base(yyp){}} | ||
482 | //%+Argument+123 | ||
483 | public class Argument : SYMBOL{ | ||
484 | public override string yyname { get { return "Argument"; }} | ||
485 | public override int yynum { get { return 123; }} | ||
486 | public Argument(Parser yyp):base(yyp){}} | ||
487 | //%+ExpressionArgument+124 | ||
488 | public class ExpressionArgument : Argument{ | ||
489 | public ExpressionArgument (Parser yyp, Expression e ):base(((LSLSyntax | ||
490 | )yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
491 | else kids . Add ( e ); | ||
492 | } | ||
493 | |||
494 | public override string yyname { get { return "ExpressionArgument"; }} | ||
495 | public override int yynum { get { return 124; }} | ||
496 | public ExpressionArgument(Parser yyp):base(yyp){}} | ||
497 | //%+Constant+125 | ||
498 | public class Constant : SYMBOL{ | ||
499 | private string m_type ; | ||
500 | private string m_val ; | ||
501 | public Constant (Parser yyp, string type , string val ):base(((LSLSyntax | ||
502 | )yyp)){ m_type = type ; | ||
503 | m_val = val ; | ||
504 | } | ||
505 | public override string ToString (){ return base . ToString ()+"<"+ m_type +":"+ m_val +">"; | ||
506 | } | ||
507 | public string Value { get { return m_val ; | ||
508 | } | ||
509 | set { m_val = value ; | ||
510 | } | ||
511 | } | ||
512 | public string Type { get { return m_type ; | ||
513 | } | ||
514 | set { m_type = value ; | ||
515 | } | ||
516 | } | ||
517 | |||
518 | public override string yyname { get { return "Constant"; }} | ||
519 | public override int yynum { get { return 125; }} | ||
520 | public Constant(Parser yyp):base(yyp){}} | ||
521 | //%+VectorConstant+126 | ||
522 | public class VectorConstant : Constant{ | ||
523 | public VectorConstant (Parser yyp, Expression valX , Expression valY , Expression valZ ):base(((LSLSyntax | ||
524 | )yyp),"vector", null ){ kids . Add ( valX ); | ||
525 | kids . Add ( valY ); | ||
526 | kids . Add ( valZ ); | ||
527 | } | ||
528 | |||
529 | public override string yyname { get { return "VectorConstant"; }} | ||
530 | public override int yynum { get { return 126; }} | ||
531 | public VectorConstant(Parser yyp):base(yyp){}} | ||
532 | //%+RotationConstant+127 | ||
533 | public class RotationConstant : Constant{ | ||
534 | public RotationConstant (Parser yyp, Expression valX , Expression valY , Expression valZ , Expression valS ):base(((LSLSyntax | ||
535 | )yyp),"rotation", null ){ kids . Add ( valX ); | ||
536 | kids . Add ( valY ); | ||
537 | kids . Add ( valZ ); | ||
538 | kids . Add ( valS ); | ||
539 | } | ||
540 | |||
541 | public override string yyname { get { return "RotationConstant"; }} | ||
542 | public override int yynum { get { return 127; }} | ||
543 | public RotationConstant(Parser yyp):base(yyp){}} | ||
544 | //%+ListConstant+128 | ||
545 | public class ListConstant : Constant{ | ||
546 | public ListConstant (Parser yyp, ArgumentList al ):base(((LSLSyntax | ||
547 | )yyp),"list", null ){ kids . Add ( al ); | ||
548 | } | ||
549 | |||
550 | public override string yyname { get { return "ListConstant"; }} | ||
551 | public override int yynum { get { return 128; }} | ||
552 | public ListConstant(Parser yyp):base(yyp){}} | ||
553 | //%+Expression+129 | ||
554 | public class Expression : SYMBOL{ | ||
555 | protected void AddExpression ( Expression e ){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
556 | else kids . Add ( e ); | ||
557 | } | ||
558 | |||
559 | public override string yyname { get { return "Expression"; }} | ||
560 | public override int yynum { get { return 129; }} | ||
561 | public Expression(Parser yyp):base(yyp){}} | ||
562 | //%+ConstantExpression+130 | ||
563 | public class ConstantExpression : Expression{ | ||
564 | public ConstantExpression (Parser yyp, Constant c ):base(((LSLSyntax | ||
565 | )yyp)){ kids . Add ( c ); | ||
566 | } | ||
567 | |||
568 | public override string yyname { get { return "ConstantExpression"; }} | ||
569 | public override int yynum { get { return 130; }} | ||
570 | public ConstantExpression(Parser yyp):base(yyp){}} | ||
571 | //%+IdentExpression+131 | ||
572 | public class IdentExpression : Expression{ | ||
573 | protected string m_name ; | ||
574 | public IdentExpression (Parser yyp, string name ):base(((LSLSyntax | ||
575 | )yyp)){ m_name = name ; | ||
576 | } | ||
577 | public override string ToString (){ return base . ToString ()+"<"+ m_name +">"; | ||
578 | } | ||
579 | public string Name { get { return m_name ; | ||
580 | } | ||
581 | } | ||
582 | |||
583 | public override string yyname { get { return "IdentExpression"; }} | ||
584 | public override int yynum { get { return 131; }} | ||
585 | public IdentExpression(Parser yyp):base(yyp){}} | ||
586 | //%+IdentDotExpression+132 | ||
587 | public class IdentDotExpression : IdentExpression{ | ||
588 | private string m_member ; | ||
589 | public IdentDotExpression (Parser yyp, string name , string member ):base(((LSLSyntax | ||
590 | )yyp), name ){ m_member = member ; | ||
591 | } | ||
592 | public override string ToString (){ string baseToString = base . ToString (); | ||
593 | return baseToString . Substring (0, baseToString . Length -1)+"."+ m_member +">"; | ||
594 | } | ||
595 | public string Member { get { return m_member ; | ||
596 | } | ||
597 | } | ||
598 | |||
599 | public override string yyname { get { return "IdentDotExpression"; }} | ||
600 | public override int yynum { get { return 132; }} | ||
601 | public IdentDotExpression(Parser yyp):base(yyp){}} | ||
602 | //%+FunctionCallExpression+133 | ||
603 | public class FunctionCallExpression : Expression{ | ||
604 | public FunctionCallExpression (Parser yyp, FunctionCall fc ):base(((LSLSyntax | ||
605 | )yyp)){ kids . Add ( fc ); | ||
606 | } | ||
607 | |||
608 | public override string yyname { get { return "FunctionCallExpression"; }} | ||
609 | public override int yynum { get { return 133; }} | ||
610 | public FunctionCallExpression(Parser yyp):base(yyp){}} | ||
611 | //%+BinaryExpression+134 | ||
612 | public class BinaryExpression : Expression{ | ||
613 | private string m_expressionSymbol ; | ||
614 | public BinaryExpression (Parser yyp, Expression lhs , Expression rhs , string expressionSymbol ):base(((LSLSyntax | ||
615 | )yyp)){ m_expressionSymbol = expressionSymbol ; | ||
616 | AddExpression ( lhs ); | ||
617 | AddExpression ( rhs ); | ||
618 | } | ||
619 | public string ExpressionSymbol { get { return m_expressionSymbol ; | ||
620 | } | ||
621 | } | ||
622 | public override string ToString (){ return base . ToString ()+"<"+ m_expressionSymbol +">"; | ||
623 | } | ||
624 | |||
625 | public override string yyname { get { return "BinaryExpression"; }} | ||
626 | public override int yynum { get { return 134; }} | ||
627 | public BinaryExpression(Parser yyp):base(yyp){}} | ||
628 | //%+UnaryExpression+135 | ||
629 | public class UnaryExpression : Expression{ | ||
630 | private string m_unarySymbol ; | ||
631 | public UnaryExpression (Parser yyp, string unarySymbol , Expression e ):base(((LSLSyntax | ||
632 | )yyp)){ m_unarySymbol = unarySymbol ; | ||
633 | AddExpression ( e ); | ||
634 | } | ||
635 | public string UnarySymbol { get { return m_unarySymbol ; | ||
636 | } | ||
637 | } | ||
638 | public override string ToString (){ return base . ToString ()+"<"+ m_unarySymbol +">"; | ||
639 | } | ||
640 | |||
641 | public override string yyname { get { return "UnaryExpression"; }} | ||
642 | public override int yynum { get { return 135; }} | ||
643 | public UnaryExpression(Parser yyp):base(yyp){}} | ||
644 | //%+TypecastExpression+136 | ||
645 | public class TypecastExpression : Expression{ | ||
646 | private string m_typecastType ; | ||
647 | public TypecastExpression (Parser yyp, string typecastType , SYMBOL rhs ):base(((LSLSyntax | ||
648 | )yyp)){ m_typecastType = typecastType ; | ||
649 | kids . Add ( rhs ); | ||
650 | } | ||
651 | public string TypecastType { get { return m_typecastType ; | ||
652 | } | ||
653 | set { m_typecastType = value ; | ||
654 | } | ||
655 | } | ||
656 | |||
657 | public override string yyname { get { return "TypecastExpression"; }} | ||
658 | public override int yynum { get { return 136; }} | ||
659 | public TypecastExpression(Parser yyp):base(yyp){}} | ||
660 | //%+ParenthesisExpression+137 | ||
661 | public class ParenthesisExpression : Expression{ | ||
662 | public ParenthesisExpression (Parser yyp, SYMBOL s ):base(((LSLSyntax | ||
663 | )yyp)){ kids . Add ( s ); | ||
664 | } | ||
665 | |||
666 | public override string yyname { get { return "ParenthesisExpression"; }} | ||
667 | public override int yynum { get { return 137; }} | ||
668 | public ParenthesisExpression(Parser yyp):base(yyp){}} | ||
669 | //%+IncrementDecrementExpression+138 | ||
670 | public class IncrementDecrementExpression : Expression{ | ||
671 | private string m_name ; | ||
672 | private string m_operation ; | ||
673 | private bool m_postOperation ; | ||
674 | public IncrementDecrementExpression (Parser yyp, string name , string operation , bool postOperation ):base(((LSLSyntax | ||
675 | )yyp)){ m_name = name ; | ||
676 | m_operation = operation ; | ||
677 | m_postOperation = postOperation ; | ||
678 | } | ||
679 | public IncrementDecrementExpression (Parser yyp, IdentDotExpression ide , string operation , bool postOperation ):base(((LSLSyntax | ||
680 | )yyp)){ m_operation = operation ; | ||
681 | m_postOperation = postOperation ; | ||
682 | kids . Add ( ide ); | ||
683 | } | ||
684 | public override string ToString (){ return base . ToString ()+"<"+( m_postOperation ? m_name + m_operation : m_operation + m_name )+">"; | ||
685 | } | ||
686 | public string Name { get { return m_name ; | ||
687 | } | ||
688 | } | ||
689 | public string Operation { get { return m_operation ; | ||
690 | } | ||
691 | } | ||
692 | public bool PostOperation { get { return m_postOperation ; | ||
693 | } | ||
694 | } | ||
695 | |||
696 | public override string yyname { get { return "IncrementDecrementExpression"; }} | ||
697 | public override int yynum { get { return 138; }} | ||
698 | public IncrementDecrementExpression(Parser yyp):base(yyp){}} | ||
699 | |||
700 | public class LSLProgramRoot_1 : LSLProgramRoot { | ||
701 | public LSLProgramRoot_1(Parser yyq):base(yyq, | ||
702 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
703 | , | ||
704 | ((States)(yyq.StackAt(0).m_value)) | ||
705 | ){}} | ||
706 | |||
707 | public class LSLProgramRoot_2 : LSLProgramRoot { | ||
708 | public LSLProgramRoot_2(Parser yyq):base(yyq, | ||
709 | ((States)(yyq.StackAt(0).m_value)) | ||
710 | ){}} | ||
711 | |||
712 | public class GlobalDefinitions_1 : GlobalDefinitions { | ||
713 | public GlobalDefinitions_1(Parser yyq):base(yyq, | ||
714 | ((GlobalVariableDeclaration)(yyq.StackAt(0).m_value)) | ||
715 | ){}} | ||
716 | |||
717 | public class GlobalDefinitions_2 : GlobalDefinitions { | ||
718 | public GlobalDefinitions_2(Parser yyq):base(yyq, | ||
719 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
720 | , | ||
721 | ((GlobalVariableDeclaration)(yyq.StackAt(0).m_value)) | ||
722 | ){}} | ||
723 | |||
724 | public class GlobalDefinitions_3 : GlobalDefinitions { | ||
725 | public GlobalDefinitions_3(Parser yyq):base(yyq, | ||
726 | ((GlobalFunctionDefinition)(yyq.StackAt(0).m_value)) | ||
727 | ){}} | ||
728 | |||
729 | public class GlobalDefinitions_4 : GlobalDefinitions { | ||
730 | public GlobalDefinitions_4(Parser yyq):base(yyq, | ||
731 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
732 | , | ||
733 | ((GlobalFunctionDefinition)(yyq.StackAt(0).m_value)) | ||
734 | ){}} | ||
735 | |||
736 | public class GlobalVariableDeclaration_1 : GlobalVariableDeclaration { | ||
737 | public GlobalVariableDeclaration_1(Parser yyq):base(yyq, | ||
738 | ((Declaration)(yyq.StackAt(1).m_value)) | ||
739 | ){}} | ||
740 | |||
741 | public class GlobalVariableDeclaration_2 : GlobalVariableDeclaration { | ||
742 | public GlobalVariableDeclaration_2(Parser yyq):base(yyq,new Assignment(((LSLSyntax | ||
743 | )yyq), | ||
744 | ((Declaration)(yyq.StackAt(3).m_value)) | ||
745 | , | ||
746 | ((Expression)(yyq.StackAt(1).m_value)) | ||
747 | , | ||
748 | ((EQUALS)(yyq.StackAt(2).m_value)) | ||
749 | .yytext)){}} | ||
750 | |||
751 | public class GlobalFunctionDefinition_1 : GlobalFunctionDefinition { | ||
752 | public GlobalFunctionDefinition_1(Parser yyq):base(yyq,"void", | ||
753 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
754 | .yytext, | ||
755 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
756 | , | ||
757 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
758 | ){}} | ||
759 | |||
760 | public class GlobalFunctionDefinition_2 : GlobalFunctionDefinition { | ||
761 | public GlobalFunctionDefinition_2(Parser yyq):base(yyq, | ||
762 | ((Typename)(yyq.StackAt(5).m_value)) | ||
763 | .yytext, | ||
764 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
765 | .yytext, | ||
766 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
767 | , | ||
768 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
769 | ){}} | ||
770 | |||
771 | public class States_1 : States { | ||
772 | public States_1(Parser yyq):base(yyq, | ||
773 | ((State)(yyq.StackAt(0).m_value)) | ||
774 | ){}} | ||
775 | |||
776 | public class States_2 : States { | ||
777 | public States_2(Parser yyq):base(yyq, | ||
778 | ((States)(yyq.StackAt(1).m_value)) | ||
779 | , | ||
780 | ((State)(yyq.StackAt(0).m_value)) | ||
781 | ){}} | ||
782 | |||
783 | public class State_1 : State { | ||
784 | public State_1(Parser yyq):base(yyq, | ||
785 | ((DEFAULT_STATE)(yyq.StackAt(3).m_value)) | ||
786 | .yytext, | ||
787 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
788 | ){}} | ||
789 | |||
790 | public class State_2 : State { | ||
791 | public State_2(Parser yyq):base(yyq, | ||
792 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
793 | .yytext, | ||
794 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
795 | ){}} | ||
796 | |||
797 | public class StateBody_1 : StateBody { | ||
798 | public StateBody_1(Parser yyq):base(yyq, | ||
799 | ((StateEvent)(yyq.StackAt(0).m_value)) | ||
800 | ){}} | ||
801 | |||
802 | public class StateBody_2 : StateBody { | ||
803 | public StateBody_2(Parser yyq):base(yyq, | ||
804 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
805 | , | ||
806 | ((StateEvent)(yyq.StackAt(0).m_value)) | ||
807 | ){}} | ||
808 | |||
809 | public class StateEvent_1 : StateEvent { | ||
810 | public StateEvent_1(Parser yyq):base(yyq, | ||
811 | ((Event)(yyq.StackAt(4).m_value)) | ||
812 | .yytext, | ||
813 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
814 | , | ||
815 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
816 | ){}} | ||
817 | |||
818 | public class ArgumentDeclarationList_1 : ArgumentDeclarationList { | ||
819 | public ArgumentDeclarationList_1(Parser yyq):base(yyq, | ||
820 | ((Declaration)(yyq.StackAt(0).m_value)) | ||
821 | ){}} | ||
822 | |||
823 | public class ArgumentDeclarationList_2 : ArgumentDeclarationList { | ||
824 | public ArgumentDeclarationList_2(Parser yyq):base(yyq, | ||
825 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
826 | , | ||
827 | ((Declaration)(yyq.StackAt(0).m_value)) | ||
828 | ){}} | ||
829 | |||
830 | public class Declaration_1 : Declaration { | ||
831 | public Declaration_1(Parser yyq):base(yyq, | ||
832 | ((Typename)(yyq.StackAt(1).m_value)) | ||
833 | .yytext, | ||
834 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
835 | .yytext){}} | ||
836 | |||
837 | public class CompoundStatement_1 : CompoundStatement { | ||
838 | public CompoundStatement_1(Parser yyq):base(yyq){}} | ||
839 | |||
840 | public class CompoundStatement_2 : CompoundStatement { | ||
841 | public CompoundStatement_2(Parser yyq):base(yyq, | ||
842 | ((StatementList)(yyq.StackAt(1).m_value)) | ||
843 | ){}} | ||
844 | |||
845 | public class StatementList_1 : StatementList { | ||
846 | public StatementList_1(Parser yyq):base(yyq, | ||
847 | ((Statement)(yyq.StackAt(0).m_value)) | ||
848 | ){}} | ||
849 | |||
850 | public class StatementList_2 : StatementList { | ||
851 | public StatementList_2(Parser yyq):base(yyq, | ||
852 | ((StatementList)(yyq.StackAt(1).m_value)) | ||
853 | , | ||
854 | ((Statement)(yyq.StackAt(0).m_value)) | ||
855 | ){}} | ||
856 | |||
857 | public class Statement_1 : Statement { | ||
858 | public Statement_1(Parser yyq):base(yyq, | ||
859 | ((Declaration)(yyq.StackAt(1).m_value)) | ||
860 | ){}} | ||
861 | |||
862 | public class Statement_2 : Statement { | ||
863 | public Statement_2(Parser yyq):base(yyq, | ||
864 | ((Assignment)(yyq.StackAt(1).m_value)) | ||
865 | ){}} | ||
866 | |||
867 | public class Statement_3 : Statement { | ||
868 | public Statement_3(Parser yyq):base(yyq, | ||
869 | ((Expression)(yyq.StackAt(1).m_value)) | ||
870 | ){}} | ||
871 | |||
872 | public class Statement_4 : Statement { | ||
873 | public Statement_4(Parser yyq):base(yyq, | ||
874 | ((ReturnStatement)(yyq.StackAt(1).m_value)) | ||
875 | ){}} | ||
876 | |||
877 | public class Statement_5 : Statement { | ||
878 | public Statement_5(Parser yyq):base(yyq, | ||
879 | ((JumpLabel)(yyq.StackAt(1).m_value)) | ||
880 | ){}} | ||
881 | |||
882 | public class Statement_6 : Statement { | ||
883 | public Statement_6(Parser yyq):base(yyq, | ||
884 | ((JumpStatement)(yyq.StackAt(1).m_value)) | ||
885 | ){}} | ||
886 | |||
887 | public class Statement_7 : Statement { | ||
888 | public Statement_7(Parser yyq):base(yyq, | ||
889 | ((StateChange)(yyq.StackAt(1).m_value)) | ||
890 | ){}} | ||
891 | |||
892 | public class Statement_8 : Statement { | ||
893 | public Statement_8(Parser yyq):base(yyq, | ||
894 | ((IfStatement)(yyq.StackAt(0).m_value)) | ||
895 | ){}} | ||
896 | |||
897 | public class Statement_9 : Statement { | ||
898 | public Statement_9(Parser yyq):base(yyq, | ||
899 | ((WhileStatement)(yyq.StackAt(0).m_value)) | ||
900 | ){}} | ||
901 | |||
902 | public class Statement_10 : Statement { | ||
903 | public Statement_10(Parser yyq):base(yyq, | ||
904 | ((DoWhileStatement)(yyq.StackAt(0).m_value)) | ||
905 | ){}} | ||
906 | |||
907 | public class Statement_11 : Statement { | ||
908 | public Statement_11(Parser yyq):base(yyq, | ||
909 | ((ForLoop)(yyq.StackAt(0).m_value)) | ||
910 | ){}} | ||
911 | |||
912 | public class Statement_12 : Statement { | ||
913 | public Statement_12(Parser yyq):base(yyq, | ||
914 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
915 | ){}} | ||
916 | |||
917 | public class JumpLabel_1 : JumpLabel { | ||
918 | public JumpLabel_1(Parser yyq):base(yyq, | ||
919 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
920 | .yytext){}} | ||
921 | |||
922 | public class JumpStatement_1 : JumpStatement { | ||
923 | public JumpStatement_1(Parser yyq):base(yyq, | ||
924 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
925 | .yytext){}} | ||
926 | |||
927 | public class StateChange_1 : StateChange { | ||
928 | public StateChange_1(Parser yyq):base(yyq, | ||
929 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
930 | .yytext){}} | ||
931 | |||
932 | public class StateChange_2 : StateChange { | ||
933 | public StateChange_2(Parser yyq):base(yyq, | ||
934 | ((DEFAULT_STATE)(yyq.StackAt(0).m_value)) | ||
935 | .yytext){}} | ||
936 | |||
937 | public class IfStatement_1 : IfStatement { | ||
938 | public IfStatement_1(Parser yyq):base(yyq, | ||
939 | ((Expression)(yyq.StackAt(2).m_value)) | ||
940 | , | ||
941 | ((Statement)(yyq.StackAt(0).m_value)) | ||
942 | ){}} | ||
943 | |||
944 | public class IfStatement_2 : IfStatement { | ||
945 | public IfStatement_2(Parser yyq):base(yyq, | ||
946 | ((Expression)(yyq.StackAt(4).m_value)) | ||
947 | , | ||
948 | ((Statement)(yyq.StackAt(2).m_value)) | ||
949 | , | ||
950 | ((Statement)(yyq.StackAt(0).m_value)) | ||
951 | ){}} | ||
952 | |||
953 | public class IfStatement_3 : IfStatement { | ||
954 | public IfStatement_3(Parser yyq):base(yyq, | ||
955 | ((SimpleAssignment)(yyq.StackAt(2).m_value)) | ||
956 | , | ||
957 | ((Statement)(yyq.StackAt(0).m_value)) | ||
958 | ){}} | ||
959 | |||
960 | public class IfStatement_4 : IfStatement { | ||
961 | public IfStatement_4(Parser yyq):base(yyq, | ||
962 | ((SimpleAssignment)(yyq.StackAt(4).m_value)) | ||
963 | , | ||
964 | ((Statement)(yyq.StackAt(2).m_value)) | ||
965 | , | ||
966 | ((Statement)(yyq.StackAt(0).m_value)) | ||
967 | ){}} | ||
968 | |||
969 | public class WhileStatement_1 : WhileStatement { | ||
970 | public WhileStatement_1(Parser yyq):base(yyq, | ||
971 | ((Expression)(yyq.StackAt(2).m_value)) | ||
972 | , | ||
973 | ((Statement)(yyq.StackAt(0).m_value)) | ||
974 | ){}} | ||
975 | |||
976 | public class WhileStatement_2 : WhileStatement { | ||
977 | public WhileStatement_2(Parser yyq):base(yyq, | ||
978 | ((SimpleAssignment)(yyq.StackAt(2).m_value)) | ||
979 | , | ||
980 | ((Statement)(yyq.StackAt(0).m_value)) | ||
981 | ){}} | ||
982 | |||
983 | public class DoWhileStatement_1 : DoWhileStatement { | ||
984 | public DoWhileStatement_1(Parser yyq):base(yyq, | ||
985 | ((Expression)(yyq.StackAt(2).m_value)) | ||
986 | , | ||
987 | ((Statement)(yyq.StackAt(5).m_value)) | ||
988 | ){}} | ||
989 | |||
990 | public class DoWhileStatement_2 : DoWhileStatement { | ||
991 | public DoWhileStatement_2(Parser yyq):base(yyq, | ||
992 | ((SimpleAssignment)(yyq.StackAt(2).m_value)) | ||
993 | , | ||
994 | ((Statement)(yyq.StackAt(5).m_value)) | ||
995 | ){}} | ||
996 | |||
997 | public class ForLoop_1 : ForLoop { | ||
998 | public ForLoop_1(Parser yyq):base(yyq, | ||
999 | ((ForLoopStatement)(yyq.StackAt(6).m_value)) | ||
1000 | , | ||
1001 | ((Expression)(yyq.StackAt(4).m_value)) | ||
1002 | , | ||
1003 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
1004 | , | ||
1005 | ((Statement)(yyq.StackAt(0).m_value)) | ||
1006 | ){}} | ||
1007 | |||
1008 | public class ForLoopStatement_1 : ForLoopStatement { | ||
1009 | public ForLoopStatement_1(Parser yyq):base(yyq, | ||
1010 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1011 | ){}} | ||
1012 | |||
1013 | public class ForLoopStatement_2 : ForLoopStatement { | ||
1014 | public ForLoopStatement_2(Parser yyq):base(yyq, | ||
1015 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1016 | ){}} | ||
1017 | |||
1018 | public class ForLoopStatement_3 : ForLoopStatement { | ||
1019 | public ForLoopStatement_3(Parser yyq):base(yyq, | ||
1020 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
1021 | , | ||
1022 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1023 | ){}} | ||
1024 | |||
1025 | public class ForLoopStatement_4 : ForLoopStatement { | ||
1026 | public ForLoopStatement_4(Parser yyq):base(yyq, | ||
1027 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
1028 | , | ||
1029 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1030 | ){}} | ||
1031 | |||
1032 | public class Assignment_1 : Assignment { | ||
1033 | public Assignment_1(Parser yyq):base(yyq, | ||
1034 | ((Declaration)(yyq.StackAt(2).m_value)) | ||
1035 | , | ||
1036 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1037 | , | ||
1038 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
1039 | .yytext){}} | ||
1040 | |||
1041 | public class Assignment_2 : Assignment { | ||
1042 | public Assignment_2(Parser yyq):base(yyq, | ||
1043 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1044 | ){}} | ||
1045 | |||
1046 | public class SimpleAssignment_1 : SimpleAssignment { | ||
1047 | public SimpleAssignment_1(Parser yyq):base(yyq, | ||
1048 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1049 | , | ||
1050 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1051 | , | ||
1052 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
1053 | .yytext){}} | ||
1054 | |||
1055 | public class SimpleAssignment_2 : SimpleAssignment { | ||
1056 | public SimpleAssignment_2(Parser yyq):base(yyq, | ||
1057 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1058 | , | ||
1059 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1060 | , | ||
1061 | ((PLUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1062 | .yytext){}} | ||
1063 | |||
1064 | public class SimpleAssignment_3 : SimpleAssignment { | ||
1065 | public SimpleAssignment_3(Parser yyq):base(yyq, | ||
1066 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1067 | , | ||
1068 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1069 | , | ||
1070 | ((MINUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1071 | .yytext){}} | ||
1072 | |||
1073 | public class SimpleAssignment_4 : SimpleAssignment { | ||
1074 | public SimpleAssignment_4(Parser yyq):base(yyq, | ||
1075 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1076 | , | ||
1077 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1078 | , | ||
1079 | ((STAR_EQUALS)(yyq.StackAt(1).m_value)) | ||
1080 | .yytext){}} | ||
1081 | |||
1082 | public class SimpleAssignment_5 : SimpleAssignment { | ||
1083 | public SimpleAssignment_5(Parser yyq):base(yyq, | ||
1084 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1085 | , | ||
1086 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1087 | , | ||
1088 | ((SLASH_EQUALS)(yyq.StackAt(1).m_value)) | ||
1089 | .yytext){}} | ||
1090 | |||
1091 | public class SimpleAssignment_6 : SimpleAssignment { | ||
1092 | public SimpleAssignment_6(Parser yyq):base(yyq, | ||
1093 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1094 | , | ||
1095 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1096 | , | ||
1097 | ((PERCENT_EQUALS)(yyq.StackAt(1).m_value)) | ||
1098 | .yytext){}} | ||
1099 | |||
1100 | public class SimpleAssignment_7 : SimpleAssignment { | ||
1101 | public SimpleAssignment_7(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1102 | )yyq), | ||
1103 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1104 | .yytext, | ||
1105 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1106 | .yytext), | ||
1107 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1108 | , | ||
1109 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
1110 | .yytext){}} | ||
1111 | |||
1112 | public class SimpleAssignment_8 : SimpleAssignment { | ||
1113 | public SimpleAssignment_8(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1114 | )yyq), | ||
1115 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1116 | .yytext, | ||
1117 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1118 | .yytext), | ||
1119 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1120 | , | ||
1121 | ((PLUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1122 | .yytext){}} | ||
1123 | |||
1124 | public class SimpleAssignment_9 : SimpleAssignment { | ||
1125 | public SimpleAssignment_9(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1126 | )yyq), | ||
1127 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1128 | .yytext, | ||
1129 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1130 | .yytext), | ||
1131 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1132 | , | ||
1133 | ((MINUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1134 | .yytext){}} | ||
1135 | |||
1136 | public class SimpleAssignment_10 : SimpleAssignment { | ||
1137 | public SimpleAssignment_10(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1138 | )yyq), | ||
1139 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1140 | .yytext, | ||
1141 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1142 | .yytext), | ||
1143 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1144 | , | ||
1145 | ((STAR_EQUALS)(yyq.StackAt(1).m_value)) | ||
1146 | .yytext){}} | ||
1147 | |||
1148 | public class SimpleAssignment_11 : SimpleAssignment { | ||
1149 | public SimpleAssignment_11(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1150 | )yyq), | ||
1151 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1152 | .yytext, | ||
1153 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1154 | .yytext), | ||
1155 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1156 | , | ||
1157 | ((SLASH_EQUALS)(yyq.StackAt(1).m_value)) | ||
1158 | .yytext){}} | ||
1159 | |||
1160 | public class SimpleAssignment_12 : SimpleAssignment { | ||
1161 | public SimpleAssignment_12(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1162 | )yyq), | ||
1163 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1164 | .yytext, | ||
1165 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1166 | .yytext), | ||
1167 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1168 | , | ||
1169 | ((PERCENT_EQUALS)(yyq.StackAt(1).m_value)) | ||
1170 | .yytext){}} | ||
1171 | |||
1172 | public class SimpleAssignment_13 : SimpleAssignment { | ||
1173 | public SimpleAssignment_13(Parser yyq):base(yyq, | ||
1174 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1175 | , | ||
1176 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1177 | , | ||
1178 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
1179 | .yytext){}} | ||
1180 | |||
1181 | public class SimpleAssignment_14 : SimpleAssignment { | ||
1182 | public SimpleAssignment_14(Parser yyq):base(yyq, | ||
1183 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1184 | , | ||
1185 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1186 | , | ||
1187 | ((PLUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1188 | .yytext){}} | ||
1189 | |||
1190 | public class SimpleAssignment_15 : SimpleAssignment { | ||
1191 | public SimpleAssignment_15(Parser yyq):base(yyq, | ||
1192 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1193 | , | ||
1194 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1195 | , | ||
1196 | ((MINUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1197 | .yytext){}} | ||
1198 | |||
1199 | public class SimpleAssignment_16 : SimpleAssignment { | ||
1200 | public SimpleAssignment_16(Parser yyq):base(yyq, | ||
1201 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1202 | , | ||
1203 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1204 | , | ||
1205 | ((STAR_EQUALS)(yyq.StackAt(1).m_value)) | ||
1206 | .yytext){}} | ||
1207 | |||
1208 | public class SimpleAssignment_17 : SimpleAssignment { | ||
1209 | public SimpleAssignment_17(Parser yyq):base(yyq, | ||
1210 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1211 | , | ||
1212 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1213 | , | ||
1214 | ((SLASH_EQUALS)(yyq.StackAt(1).m_value)) | ||
1215 | .yytext){}} | ||
1216 | |||
1217 | public class SimpleAssignment_18 : SimpleAssignment { | ||
1218 | public SimpleAssignment_18(Parser yyq):base(yyq, | ||
1219 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1220 | , | ||
1221 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1222 | , | ||
1223 | ((PERCENT_EQUALS)(yyq.StackAt(1).m_value)) | ||
1224 | .yytext){}} | ||
1225 | |||
1226 | public class SimpleAssignment_19 : SimpleAssignment { | ||
1227 | public SimpleAssignment_19(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1228 | )yyq), | ||
1229 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1230 | .yytext, | ||
1231 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1232 | .yytext), | ||
1233 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1234 | , | ||
1235 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
1236 | .yytext){}} | ||
1237 | |||
1238 | public class SimpleAssignment_20 : SimpleAssignment { | ||
1239 | public SimpleAssignment_20(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1240 | )yyq), | ||
1241 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1242 | .yytext, | ||
1243 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1244 | .yytext), | ||
1245 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1246 | , | ||
1247 | ((PLUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1248 | .yytext){}} | ||
1249 | |||
1250 | public class SimpleAssignment_21 : SimpleAssignment { | ||
1251 | public SimpleAssignment_21(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1252 | )yyq), | ||
1253 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1254 | .yytext, | ||
1255 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1256 | .yytext), | ||
1257 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1258 | , | ||
1259 | ((MINUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1260 | .yytext){}} | ||
1261 | |||
1262 | public class SimpleAssignment_22 : SimpleAssignment { | ||
1263 | public SimpleAssignment_22(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1264 | )yyq), | ||
1265 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1266 | .yytext, | ||
1267 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1268 | .yytext), | ||
1269 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1270 | , | ||
1271 | ((STAR_EQUALS)(yyq.StackAt(1).m_value)) | ||
1272 | .yytext){}} | ||
1273 | |||
1274 | public class SimpleAssignment_23 : SimpleAssignment { | ||
1275 | public SimpleAssignment_23(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1276 | )yyq), | ||
1277 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1278 | .yytext, | ||
1279 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1280 | .yytext), | ||
1281 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1282 | , | ||
1283 | ((SLASH_EQUALS)(yyq.StackAt(1).m_value)) | ||
1284 | .yytext){}} | ||
1285 | |||
1286 | public class SimpleAssignment_24 : SimpleAssignment { | ||
1287 | public SimpleAssignment_24(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1288 | )yyq), | ||
1289 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1290 | .yytext, | ||
1291 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1292 | .yytext), | ||
1293 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1294 | , | ||
1295 | ((PERCENT_EQUALS)(yyq.StackAt(1).m_value)) | ||
1296 | .yytext){}} | ||
1297 | |||
1298 | public class ReturnStatement_1 : ReturnStatement { | ||
1299 | public ReturnStatement_1(Parser yyq):base(yyq, | ||
1300 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1301 | ){}} | ||
1302 | |||
1303 | public class ReturnStatement_2 : ReturnStatement { | ||
1304 | public ReturnStatement_2(Parser yyq):base(yyq){}} | ||
1305 | |||
1306 | public class Constant_1 : Constant { | ||
1307 | public Constant_1(Parser yyq):base(yyq,"integer", | ||
1308 | ((INTEGER_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1309 | .yytext){}} | ||
1310 | |||
1311 | public class Constant_2 : Constant { | ||
1312 | public Constant_2(Parser yyq):base(yyq,"integer", | ||
1313 | ((HEX_INTEGER_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1314 | .yytext){}} | ||
1315 | |||
1316 | public class Constant_3 : Constant { | ||
1317 | public Constant_3(Parser yyq):base(yyq,"float", | ||
1318 | ((FLOAT_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1319 | .yytext){}} | ||
1320 | |||
1321 | public class Constant_4 : Constant { | ||
1322 | public Constant_4(Parser yyq):base(yyq,"string", | ||
1323 | ((STRING_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1324 | .yytext){}} | ||
1325 | |||
1326 | public class ListConstant_1 : ListConstant { | ||
1327 | public ListConstant_1(Parser yyq):base(yyq, | ||
1328 | ((ArgumentList)(yyq.StackAt(1).m_value)) | ||
1329 | ){}} | ||
1330 | |||
1331 | public class VectorConstant_1 : VectorConstant { | ||
1332 | public VectorConstant_1(Parser yyq):base(yyq, | ||
1333 | ((Expression)(yyq.StackAt(5).m_value)) | ||
1334 | , | ||
1335 | ((Expression)(yyq.StackAt(3).m_value)) | ||
1336 | , | ||
1337 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1338 | ){}} | ||
1339 | |||
1340 | public class RotationConstant_1 : RotationConstant { | ||
1341 | public RotationConstant_1(Parser yyq):base(yyq, | ||
1342 | ((Expression)(yyq.StackAt(7).m_value)) | ||
1343 | , | ||
1344 | ((Expression)(yyq.StackAt(5).m_value)) | ||
1345 | , | ||
1346 | ((Expression)(yyq.StackAt(3).m_value)) | ||
1347 | , | ||
1348 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1349 | ){}} | ||
1350 | |||
1351 | public class ConstantExpression_1 : ConstantExpression { | ||
1352 | public ConstantExpression_1(Parser yyq):base(yyq, | ||
1353 | ((Constant)(yyq.StackAt(0).m_value)) | ||
1354 | ){}} | ||
1355 | |||
1356 | public class IdentExpression_1 : IdentExpression { | ||
1357 | public IdentExpression_1(Parser yyq):base(yyq, | ||
1358 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1359 | .yytext){}} | ||
1360 | |||
1361 | public class IdentDotExpression_1 : IdentDotExpression { | ||
1362 | public IdentDotExpression_1(Parser yyq):base(yyq, | ||
1363 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1364 | .yytext, | ||
1365 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1366 | .yytext){}} | ||
1367 | |||
1368 | public class IncrementDecrementExpression_1 : IncrementDecrementExpression { | ||
1369 | public IncrementDecrementExpression_1(Parser yyq):base(yyq, | ||
1370 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1371 | .yytext, | ||
1372 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1373 | .yytext, true){}} | ||
1374 | |||
1375 | public class IncrementDecrementExpression_2 : IncrementDecrementExpression { | ||
1376 | public IncrementDecrementExpression_2(Parser yyq):base(yyq, | ||
1377 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1378 | .yytext, | ||
1379 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1380 | .yytext, true){}} | ||
1381 | |||
1382 | public class IncrementDecrementExpression_3 : IncrementDecrementExpression { | ||
1383 | public IncrementDecrementExpression_3(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1384 | )yyq), | ||
1385 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1386 | .yytext, | ||
1387 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1388 | .yytext), | ||
1389 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1390 | .yytext, true){}} | ||
1391 | |||
1392 | public class IncrementDecrementExpression_4 : IncrementDecrementExpression { | ||
1393 | public IncrementDecrementExpression_4(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1394 | )yyq), | ||
1395 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1396 | .yytext, | ||
1397 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1398 | .yytext), | ||
1399 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1400 | .yytext, true){}} | ||
1401 | |||
1402 | public class IncrementDecrementExpression_5 : IncrementDecrementExpression { | ||
1403 | public IncrementDecrementExpression_5(Parser yyq):base(yyq, | ||
1404 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1405 | .yytext, | ||
1406 | ((INCREMENT)(yyq.StackAt(1).m_value)) | ||
1407 | .yytext, false){}} | ||
1408 | |||
1409 | public class IncrementDecrementExpression_6 : IncrementDecrementExpression { | ||
1410 | public IncrementDecrementExpression_6(Parser yyq):base(yyq, | ||
1411 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1412 | .yytext, | ||
1413 | ((DECREMENT)(yyq.StackAt(1).m_value)) | ||
1414 | .yytext, false){}} | ||
1415 | |||
1416 | public class IncrementDecrementExpression_7 : IncrementDecrementExpression { | ||
1417 | public IncrementDecrementExpression_7(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1418 | )yyq), | ||
1419 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1420 | .yytext, | ||
1421 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1422 | .yytext), | ||
1423 | ((INCREMENT)(yyq.StackAt(3).m_value)) | ||
1424 | .yytext, false){}} | ||
1425 | |||
1426 | public class IncrementDecrementExpression_8 : IncrementDecrementExpression { | ||
1427 | public IncrementDecrementExpression_8(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1428 | )yyq), | ||
1429 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1430 | .yytext, | ||
1431 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1432 | .yytext), | ||
1433 | ((DECREMENT)(yyq.StackAt(3).m_value)) | ||
1434 | .yytext, false){}} | ||
1435 | |||
1436 | public class FunctionCallExpression_1 : FunctionCallExpression { | ||
1437 | public FunctionCallExpression_1(Parser yyq):base(yyq, | ||
1438 | ((FunctionCall)(yyq.StackAt(0).m_value)) | ||
1439 | ){}} | ||
1440 | |||
1441 | public class BinaryExpression_1 : BinaryExpression { | ||
1442 | public BinaryExpression_1(Parser yyq):base(yyq, | ||
1443 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1444 | , | ||
1445 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1446 | , | ||
1447 | ((PLUS)(yyq.StackAt(1).m_value)) | ||
1448 | .yytext){}} | ||
1449 | |||
1450 | public class BinaryExpression_2 : BinaryExpression { | ||
1451 | public BinaryExpression_2(Parser yyq):base(yyq, | ||
1452 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1453 | , | ||
1454 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1455 | , | ||
1456 | ((MINUS)(yyq.StackAt(1).m_value)) | ||
1457 | .yytext){}} | ||
1458 | |||
1459 | public class BinaryExpression_3 : BinaryExpression { | ||
1460 | public BinaryExpression_3(Parser yyq):base(yyq, | ||
1461 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1462 | , | ||
1463 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1464 | , | ||
1465 | ((STAR)(yyq.StackAt(1).m_value)) | ||
1466 | .yytext){}} | ||
1467 | |||
1468 | public class BinaryExpression_4 : BinaryExpression { | ||
1469 | public BinaryExpression_4(Parser yyq):base(yyq, | ||
1470 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1471 | , | ||
1472 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1473 | , | ||
1474 | ((SLASH)(yyq.StackAt(1).m_value)) | ||
1475 | .yytext){}} | ||
1476 | |||
1477 | public class BinaryExpression_5 : BinaryExpression { | ||
1478 | public BinaryExpression_5(Parser yyq):base(yyq, | ||
1479 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1480 | , | ||
1481 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1482 | , | ||
1483 | ((PERCENT)(yyq.StackAt(1).m_value)) | ||
1484 | .yytext){}} | ||
1485 | |||
1486 | public class BinaryExpression_6 : BinaryExpression { | ||
1487 | public BinaryExpression_6(Parser yyq):base(yyq, | ||
1488 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1489 | , | ||
1490 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1491 | , | ||
1492 | ((AMP)(yyq.StackAt(1).m_value)) | ||
1493 | .yytext){}} | ||
1494 | |||
1495 | public class BinaryExpression_7 : BinaryExpression { | ||
1496 | public BinaryExpression_7(Parser yyq):base(yyq, | ||
1497 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1498 | , | ||
1499 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1500 | , | ||
1501 | ((STROKE)(yyq.StackAt(1).m_value)) | ||
1502 | .yytext){}} | ||
1503 | |||
1504 | public class BinaryExpression_8 : BinaryExpression { | ||
1505 | public BinaryExpression_8(Parser yyq):base(yyq, | ||
1506 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1507 | , | ||
1508 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1509 | , | ||
1510 | ((CARET)(yyq.StackAt(1).m_value)) | ||
1511 | .yytext){}} | ||
1512 | |||
1513 | public class BinaryExpression_9 : BinaryExpression { | ||
1514 | public BinaryExpression_9(Parser yyq):base(yyq, | ||
1515 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1516 | , | ||
1517 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1518 | , | ||
1519 | ((RIGHT_ANGLE)(yyq.StackAt(1).m_value)) | ||
1520 | .yytext){}} | ||
1521 | |||
1522 | public class BinaryExpression_10 : BinaryExpression { | ||
1523 | public BinaryExpression_10(Parser yyq):base(yyq, | ||
1524 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1525 | , | ||
1526 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1527 | , | ||
1528 | ((LEFT_ANGLE)(yyq.StackAt(1).m_value)) | ||
1529 | .yytext){}} | ||
1530 | |||
1531 | public class BinaryExpression_11 : BinaryExpression { | ||
1532 | public BinaryExpression_11(Parser yyq):base(yyq, | ||
1533 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1534 | , | ||
1535 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1536 | , | ||
1537 | ((EQUALS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1538 | .yytext){}} | ||
1539 | |||
1540 | public class BinaryExpression_12 : BinaryExpression { | ||
1541 | public BinaryExpression_12(Parser yyq):base(yyq, | ||
1542 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1543 | , | ||
1544 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1545 | , | ||
1546 | ((EXCLAMATION_EQUALS)(yyq.StackAt(1).m_value)) | ||
1547 | .yytext){}} | ||
1548 | |||
1549 | public class BinaryExpression_13 : BinaryExpression { | ||
1550 | public BinaryExpression_13(Parser yyq):base(yyq, | ||
1551 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1552 | , | ||
1553 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1554 | , | ||
1555 | ((LESS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1556 | .yytext){}} | ||
1557 | |||
1558 | public class BinaryExpression_14 : BinaryExpression { | ||
1559 | public BinaryExpression_14(Parser yyq):base(yyq, | ||
1560 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1561 | , | ||
1562 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1563 | , | ||
1564 | ((GREATER_EQUALS)(yyq.StackAt(1).m_value)) | ||
1565 | .yytext){}} | ||
1566 | |||
1567 | public class BinaryExpression_15 : BinaryExpression { | ||
1568 | public BinaryExpression_15(Parser yyq):base(yyq, | ||
1569 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1570 | , | ||
1571 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1572 | , | ||
1573 | ((AMP_AMP)(yyq.StackAt(1).m_value)) | ||
1574 | .yytext){}} | ||
1575 | |||
1576 | public class BinaryExpression_16 : BinaryExpression { | ||
1577 | public BinaryExpression_16(Parser yyq):base(yyq, | ||
1578 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1579 | , | ||
1580 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1581 | , | ||
1582 | ((STROKE_STROKE)(yyq.StackAt(1).m_value)) | ||
1583 | .yytext){}} | ||
1584 | |||
1585 | public class BinaryExpression_17 : BinaryExpression { | ||
1586 | public BinaryExpression_17(Parser yyq):base(yyq, | ||
1587 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1588 | , | ||
1589 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1590 | , | ||
1591 | ((LEFT_SHIFT)(yyq.StackAt(1).m_value)) | ||
1592 | .yytext){}} | ||
1593 | |||
1594 | public class BinaryExpression_18 : BinaryExpression { | ||
1595 | public BinaryExpression_18(Parser yyq):base(yyq, | ||
1596 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1597 | , | ||
1598 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1599 | , | ||
1600 | ((RIGHT_SHIFT)(yyq.StackAt(1).m_value)) | ||
1601 | .yytext){}} | ||
1602 | |||
1603 | public class UnaryExpression_1 : UnaryExpression { | ||
1604 | public UnaryExpression_1(Parser yyq):base(yyq, | ||
1605 | ((EXCLAMATION)(yyq.StackAt(1).m_value)) | ||
1606 | .yytext, | ||
1607 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1608 | ){}} | ||
1609 | |||
1610 | public class UnaryExpression_2 : UnaryExpression { | ||
1611 | public UnaryExpression_2(Parser yyq):base(yyq, | ||
1612 | ((MINUS)(yyq.StackAt(1).m_value)) | ||
1613 | .yytext, | ||
1614 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1615 | ){}} | ||
1616 | |||
1617 | public class UnaryExpression_3 : UnaryExpression { | ||
1618 | public UnaryExpression_3(Parser yyq):base(yyq, | ||
1619 | ((TILDE)(yyq.StackAt(1).m_value)) | ||
1620 | .yytext, | ||
1621 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1622 | ){}} | ||
1623 | |||
1624 | public class ParenthesisExpression_1 : ParenthesisExpression { | ||
1625 | public ParenthesisExpression_1(Parser yyq):base(yyq, | ||
1626 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1627 | ){}} | ||
1628 | |||
1629 | public class ParenthesisExpression_2 : ParenthesisExpression { | ||
1630 | public ParenthesisExpression_2(Parser yyq):base(yyq, | ||
1631 | ((SimpleAssignment)(yyq.StackAt(1).m_value)) | ||
1632 | ){}} | ||
1633 | |||
1634 | public class TypecastExpression_1 : TypecastExpression { | ||
1635 | public TypecastExpression_1(Parser yyq):base(yyq, | ||
1636 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1637 | .yytext, | ||
1638 | ((Constant)(yyq.StackAt(0).m_value)) | ||
1639 | ){}} | ||
1640 | |||
1641 | public class TypecastExpression_2 : TypecastExpression { | ||
1642 | public TypecastExpression_2(Parser yyq):base(yyq, | ||
1643 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1644 | .yytext, new IdentExpression(((LSLSyntax | ||
1645 | )yyq), | ||
1646 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1647 | .yytext)){}} | ||
1648 | |||
1649 | public class TypecastExpression_3 : TypecastExpression { | ||
1650 | public TypecastExpression_3(Parser yyq):base(yyq, | ||
1651 | ((Typename)(yyq.StackAt(4).m_value)) | ||
1652 | .yytext, new IdentDotExpression(((LSLSyntax | ||
1653 | )yyq), | ||
1654 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1655 | .yytext, | ||
1656 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1657 | .yytext)){}} | ||
1658 | |||
1659 | public class TypecastExpression_4 : TypecastExpression { | ||
1660 | public TypecastExpression_4(Parser yyq):base(yyq, | ||
1661 | ((Typename)(yyq.StackAt(3).m_value)) | ||
1662 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1663 | )yyq), | ||
1664 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1665 | .yytext, | ||
1666 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1667 | .yytext, true)){}} | ||
1668 | |||
1669 | public class TypecastExpression_5 : TypecastExpression { | ||
1670 | public TypecastExpression_5(Parser yyq):base(yyq, | ||
1671 | ((Typename)(yyq.StackAt(5).m_value)) | ||
1672 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1673 | )yyq), new IdentDotExpression(((LSLSyntax | ||
1674 | )yyq), | ||
1675 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1676 | .yytext, | ||
1677 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1678 | .yytext), | ||
1679 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1680 | .yytext, true)){}} | ||
1681 | |||
1682 | public class TypecastExpression_6 : TypecastExpression { | ||
1683 | public TypecastExpression_6(Parser yyq):base(yyq, | ||
1684 | ((Typename)(yyq.StackAt(3).m_value)) | ||
1685 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1686 | )yyq), | ||
1687 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1688 | .yytext, | ||
1689 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1690 | .yytext, true)){}} | ||
1691 | |||
1692 | public class TypecastExpression_7 : TypecastExpression { | ||
1693 | public TypecastExpression_7(Parser yyq):base(yyq, | ||
1694 | ((Typename)(yyq.StackAt(5).m_value)) | ||
1695 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1696 | )yyq), new IdentDotExpression(((LSLSyntax | ||
1697 | )yyq), | ||
1698 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1699 | .yytext, | ||
1700 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1701 | .yytext), | ||
1702 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1703 | .yytext, true)){}} | ||
1704 | |||
1705 | public class TypecastExpression_8 : TypecastExpression { | ||
1706 | public TypecastExpression_8(Parser yyq):base(yyq, | ||
1707 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1708 | .yytext, | ||
1709 | ((FunctionCall)(yyq.StackAt(0).m_value)) | ||
1710 | ){}} | ||
1711 | |||
1712 | public class TypecastExpression_9 : TypecastExpression { | ||
1713 | public TypecastExpression_9(Parser yyq):base(yyq, | ||
1714 | ((Typename)(yyq.StackAt(4).m_value)) | ||
1715 | .yytext, | ||
1716 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1717 | ){}} | ||
1718 | |||
1719 | public class FunctionCall_1 : FunctionCall { | ||
1720 | public FunctionCall_1(Parser yyq):base(yyq, | ||
1721 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1722 | .yytext, | ||
1723 | ((ArgumentList)(yyq.StackAt(1).m_value)) | ||
1724 | ){}} | ||
1725 | |||
1726 | public class ArgumentList_1 : ArgumentList { | ||
1727 | public ArgumentList_1(Parser yyq):base(yyq, | ||
1728 | ((Argument)(yyq.StackAt(0).m_value)) | ||
1729 | ){}} | ||
1730 | |||
1731 | public class ArgumentList_2 : ArgumentList { | ||
1732 | public ArgumentList_2(Parser yyq):base(yyq, | ||
1733 | ((ArgumentList)(yyq.StackAt(2).m_value)) | ||
1734 | , | ||
1735 | ((Argument)(yyq.StackAt(0).m_value)) | ||
1736 | ){}} | ||
1737 | |||
1738 | public class ExpressionArgument_1 : ExpressionArgument { | ||
1739 | public ExpressionArgument_1(Parser yyq):base(yyq, | ||
1740 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1741 | ){}} | ||
1742 | |||
1743 | public class Typename_1 : Typename { | ||
1744 | public Typename_1(Parser yyq):base(yyq, | ||
1745 | ((INTEGER_TYPE)(yyq.StackAt(0).m_value)) | ||
1746 | .yytext){}} | ||
1747 | |||
1748 | public class Typename_2 : Typename { | ||
1749 | public Typename_2(Parser yyq):base(yyq, | ||
1750 | ((FLOAT_TYPE)(yyq.StackAt(0).m_value)) | ||
1751 | .yytext){}} | ||
1752 | |||
1753 | public class Typename_3 : Typename { | ||
1754 | public Typename_3(Parser yyq):base(yyq, | ||
1755 | ((STRING_TYPE)(yyq.StackAt(0).m_value)) | ||
1756 | .yytext){}} | ||
1757 | |||
1758 | public class Typename_4 : Typename { | ||
1759 | public Typename_4(Parser yyq):base(yyq, | ||
1760 | ((KEY_TYPE)(yyq.StackAt(0).m_value)) | ||
1761 | .yytext){}} | ||
1762 | |||
1763 | public class Typename_5 : Typename { | ||
1764 | public Typename_5(Parser yyq):base(yyq, | ||
1765 | ((VECTOR_TYPE)(yyq.StackAt(0).m_value)) | ||
1766 | .yytext){}} | ||
1767 | |||
1768 | public class Typename_6 : Typename { | ||
1769 | public Typename_6(Parser yyq):base(yyq, | ||
1770 | ((ROTATION_TYPE)(yyq.StackAt(0).m_value)) | ||
1771 | .yytext){}} | ||
1772 | |||
1773 | public class Typename_7 : Typename { | ||
1774 | public Typename_7(Parser yyq):base(yyq, | ||
1775 | ((LIST_TYPE)(yyq.StackAt(0).m_value)) | ||
1776 | .yytext){}} | ||
1777 | |||
1778 | public class Event_1 : Event { | ||
1779 | public Event_1(Parser yyq):base(yyq, | ||
1780 | ((AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1781 | .yytext){}} | ||
1782 | |||
1783 | public class Event_2 : Event { | ||
1784 | public Event_2(Parser yyq):base(yyq, | ||
1785 | ((AT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1786 | .yytext){}} | ||
1787 | |||
1788 | public class Event_3 : Event { | ||
1789 | public Event_3(Parser yyq):base(yyq, | ||
1790 | ((ATTACH_EVENT)(yyq.StackAt(0).m_value)) | ||
1791 | .yytext){}} | ||
1792 | |||
1793 | public class Event_4 : Event { | ||
1794 | public Event_4(Parser yyq):base(yyq, | ||
1795 | ((CHANGED_EVENT)(yyq.StackAt(0).m_value)) | ||
1796 | .yytext){}} | ||
1797 | |||
1798 | public class Event_5 : Event { | ||
1799 | public Event_5(Parser yyq):base(yyq, | ||
1800 | ((COLLISION_EVENT)(yyq.StackAt(0).m_value)) | ||
1801 | .yytext){}} | ||
1802 | |||
1803 | public class Event_6 : Event { | ||
1804 | public Event_6(Parser yyq):base(yyq, | ||
1805 | ((COLLISION_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1806 | .yytext){}} | ||
1807 | |||
1808 | public class Event_7 : Event { | ||
1809 | public Event_7(Parser yyq):base(yyq, | ||
1810 | ((COLLISION_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1811 | .yytext){}} | ||
1812 | |||
1813 | public class Event_8 : Event { | ||
1814 | public Event_8(Parser yyq):base(yyq, | ||
1815 | ((CONTROL_EVENT)(yyq.StackAt(0).m_value)) | ||
1816 | .yytext){}} | ||
1817 | |||
1818 | public class Event_9 : Event { | ||
1819 | public Event_9(Parser yyq):base(yyq, | ||
1820 | ((DATASERVER_EVENT)(yyq.StackAt(0).m_value)) | ||
1821 | .yytext){}} | ||
1822 | |||
1823 | public class Event_10 : Event { | ||
1824 | public Event_10(Parser yyq):base(yyq, | ||
1825 | ((EMAIL_EVENT)(yyq.StackAt(0).m_value)) | ||
1826 | .yytext){}} | ||
1827 | |||
1828 | public class Event_11 : Event { | ||
1829 | public Event_11(Parser yyq):base(yyq, | ||
1830 | ((HTTP_RESPONSE_EVENT)(yyq.StackAt(0).m_value)) | ||
1831 | .yytext){}} | ||
1832 | |||
1833 | public class Event_12 : Event { | ||
1834 | public Event_12(Parser yyq):base(yyq, | ||
1835 | ((LAND_COLLISION_EVENT)(yyq.StackAt(0).m_value)) | ||
1836 | .yytext){}} | ||
1837 | |||
1838 | public class Event_13 : Event { | ||
1839 | public Event_13(Parser yyq):base(yyq, | ||
1840 | ((LAND_COLLISION_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1841 | .yytext){}} | ||
1842 | |||
1843 | public class Event_14 : Event { | ||
1844 | public Event_14(Parser yyq):base(yyq, | ||
1845 | ((LAND_COLLISION_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1846 | .yytext){}} | ||
1847 | |||
1848 | public class Event_15 : Event { | ||
1849 | public Event_15(Parser yyq):base(yyq, | ||
1850 | ((LINK_MESSAGE_EVENT)(yyq.StackAt(0).m_value)) | ||
1851 | .yytext){}} | ||
1852 | |||
1853 | public class Event_16 : Event { | ||
1854 | public Event_16(Parser yyq):base(yyq, | ||
1855 | ((LISTEN_EVENT)(yyq.StackAt(0).m_value)) | ||
1856 | .yytext){}} | ||
1857 | |||
1858 | public class Event_17 : Event { | ||
1859 | public Event_17(Parser yyq):base(yyq, | ||
1860 | ((MONEY_EVENT)(yyq.StackAt(0).m_value)) | ||
1861 | .yytext){}} | ||
1862 | |||
1863 | public class Event_18 : Event { | ||
1864 | public Event_18(Parser yyq):base(yyq, | ||
1865 | ((MOVING_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1866 | .yytext){}} | ||
1867 | |||
1868 | public class Event_19 : Event { | ||
1869 | public Event_19(Parser yyq):base(yyq, | ||
1870 | ((MOVING_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1871 | .yytext){}} | ||
1872 | |||
1873 | public class Event_20 : Event { | ||
1874 | public Event_20(Parser yyq):base(yyq, | ||
1875 | ((NO_SENSOR_EVENT)(yyq.StackAt(0).m_value)) | ||
1876 | .yytext){}} | ||
1877 | |||
1878 | public class Event_21 : Event { | ||
1879 | public Event_21(Parser yyq):base(yyq, | ||
1880 | ((NOT_AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1881 | .yytext){}} | ||
1882 | |||
1883 | public class Event_22 : Event { | ||
1884 | public Event_22(Parser yyq):base(yyq, | ||
1885 | ((NOT_AT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1886 | .yytext){}} | ||
1887 | |||
1888 | public class Event_23 : Event { | ||
1889 | public Event_23(Parser yyq):base(yyq, | ||
1890 | ((OBJECT_REZ_EVENT)(yyq.StackAt(0).m_value)) | ||
1891 | .yytext){}} | ||
1892 | |||
1893 | public class Event_24 : Event { | ||
1894 | public Event_24(Parser yyq):base(yyq, | ||
1895 | ((ON_REZ_EVENT)(yyq.StackAt(0).m_value)) | ||
1896 | .yytext){}} | ||
1897 | |||
1898 | public class Event_25 : Event { | ||
1899 | public Event_25(Parser yyq):base(yyq, | ||
1900 | ((REMOTE_DATA_EVENT)(yyq.StackAt(0).m_value)) | ||
1901 | .yytext){}} | ||
1902 | |||
1903 | public class Event_26 : Event { | ||
1904 | public Event_26(Parser yyq):base(yyq, | ||
1905 | ((RUN_TIME_PERMISSIONS_EVENT)(yyq.StackAt(0).m_value)) | ||
1906 | .yytext){}} | ||
1907 | |||
1908 | public class Event_27 : Event { | ||
1909 | public Event_27(Parser yyq):base(yyq, | ||
1910 | ((SENSOR_EVENT)(yyq.StackAt(0).m_value)) | ||
1911 | .yytext){}} | ||
1912 | |||
1913 | public class Event_28 : Event { | ||
1914 | public Event_28(Parser yyq):base(yyq, | ||
1915 | ((STATE_ENTRY_EVENT)(yyq.StackAt(0).m_value)) | ||
1916 | .yytext){}} | ||
1917 | |||
1918 | public class Event_29 : Event { | ||
1919 | public Event_29(Parser yyq):base(yyq, | ||
1920 | ((STATE_EXIT_EVENT)(yyq.StackAt(0).m_value)) | ||
1921 | .yytext){}} | ||
1922 | |||
1923 | public class Event_30 : Event { | ||
1924 | public Event_30(Parser yyq):base(yyq, | ||
1925 | ((TIMER_EVENT)(yyq.StackAt(0).m_value)) | ||
1926 | .yytext){}} | ||
1927 | |||
1928 | public class Event_31 : Event { | ||
1929 | public Event_31(Parser yyq):base(yyq, | ||
1930 | ((TOUCH_EVENT)(yyq.StackAt(0).m_value)) | ||
1931 | .yytext){}} | ||
1932 | |||
1933 | public class Event_32 : Event { | ||
1934 | public Event_32(Parser yyq):base(yyq, | ||
1935 | ((TOUCH_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1936 | .yytext){}} | ||
1937 | |||
1938 | public class Event_33 : Event { | ||
1939 | public Event_33(Parser yyq):base(yyq, | ||
1940 | ((TOUCH_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1941 | .yytext){}} | ||
1942 | public class yyLSLSyntax | ||
1943 | : YyParser { | ||
1944 | public override object Action(Parser yyq,SYMBOL yysym, int yyact) { | ||
1945 | switch(yyact) { | ||
1946 | case -1: break; //// keep compiler happy | ||
1947 | } return null; } | ||
1948 | |||
1949 | public class ArgumentDeclarationList_3 : ArgumentDeclarationList { | ||
1950 | public ArgumentDeclarationList_3(Parser yyq):base(yyq){}} | ||
1951 | |||
1952 | public class ArgumentList_3 : ArgumentList { | ||
1953 | public ArgumentList_3(Parser yyq):base(yyq){}} | ||
1954 | |||
1955 | public class ArgumentDeclarationList_4 : ArgumentDeclarationList { | ||
1956 | public ArgumentDeclarationList_4(Parser yyq):base(yyq){}} | ||
1957 | |||
1958 | public class ArgumentDeclarationList_5 : ArgumentDeclarationList { | ||
1959 | public ArgumentDeclarationList_5(Parser yyq):base(yyq){}} | ||
1960 | |||
1961 | public class Statement_13 : Statement { | ||
1962 | public Statement_13(Parser yyq):base(yyq){}} | ||
1963 | |||
1964 | public class ArgumentList_4 : ArgumentList { | ||
1965 | public ArgumentList_4(Parser yyq):base(yyq){}} | ||
1966 | public yyLSLSyntax | ||
1967 | ():base() { arr = new int[] { | ||
1968 | 101,4,6,52,0, | ||
1969 | 46,0,53,0,102, | ||
1970 | 20,103,4,28,76, | ||
1971 | 0,83,0,76,0, | ||
1972 | 80,0,114,0,111, | ||
1973 | 0,103,0,114,0, | ||
1974 | 97,0,109,0,82, | ||
1975 | 0,111,0,111,0, | ||
1976 | 116,0,1,95,1, | ||
1977 | 2,104,18,1,2609, | ||
1978 | 102,2,0,105,5, | ||
1979 | 312,1,0,106,18, | ||
1980 | 1,0,0,2,0, | ||
1981 | 1,1,107,18,1, | ||
1982 | 1,108,20,109,4, | ||
1983 | 18,76,0,73,0, | ||
1984 | 83,0,84,0,95, | ||
1985 | 0,84,0,89,0, | ||
1986 | 80,0,69,0,1, | ||
1987 | 57,1,1,2,0, | ||
1988 | 1,2,110,18,1, | ||
1989 | 2,111,20,112,4, | ||
1990 | 26,82,0,79,0, | ||
1991 | 84,0,65,0,84, | ||
1992 | 0,73,0,79,0, | ||
1993 | 78,0,95,0,84, | ||
1994 | 0,89,0,80,0, | ||
1995 | 69,0,1,56,1, | ||
1996 | 1,2,0,1,3, | ||
1997 | 113,18,1,3,114, | ||
1998 | 20,115,4,22,86, | ||
1999 | 0,69,0,67,0, | ||
2000 | 84,0,79,0,82, | ||
2001 | 0,95,0,84,0, | ||
2002 | 89,0,80,0,69, | ||
2003 | 0,1,55,1,1, | ||
2004 | 2,0,1,4,116, | ||
2005 | 18,1,4,117,20, | ||
2006 | 118,4,16,75,0, | ||
2007 | 69,0,89,0,95, | ||
2008 | 0,84,0,89,0, | ||
2009 | 80,0,69,0,1, | ||
2010 | 54,1,1,2,0, | ||
2011 | 1,5,119,18,1, | ||
2012 | 5,120,20,121,4, | ||
2013 | 22,83,0,84,0, | ||
2014 | 82,0,73,0,78, | ||
2015 | 0,71,0,95,0, | ||
2016 | 84,0,89,0,80, | ||
2017 | 0,69,0,1,53, | ||
2018 | 1,1,2,0,1, | ||
2019 | 6,122,18,1,6, | ||
2020 | 123,20,124,4,20, | ||
2021 | 70,0,76,0,79, | ||
2022 | 0,65,0,84,0, | ||
2023 | 95,0,84,0,89, | ||
2024 | 0,80,0,69,0, | ||
2025 | 1,52,1,1,2, | ||
2026 | 0,1,7,125,18, | ||
2027 | 1,7,126,20,127, | ||
2028 | 4,24,73,0,78, | ||
2029 | 0,84,0,69,0, | ||
2030 | 71,0,69,0,82, | ||
2031 | 0,95,0,84,0, | ||
2032 | 89,0,80,0,69, | ||
2033 | 0,1,51,1,1, | ||
2034 | 2,0,1,8,128, | ||
2035 | 18,1,8,129,20, | ||
2036 | 130,4,16,84,0, | ||
2037 | 121,0,112,0,101, | ||
2038 | 0,110,0,97,0, | ||
2039 | 109,0,101,0,1, | ||
2040 | 105,1,2,2,0, | ||
2041 | 1,9,131,18,1, | ||
2042 | 9,132,20,133,4, | ||
2043 | 10,73,0,68,0, | ||
2044 | 69,0,78,0,84, | ||
2045 | 0,1,91,1,1, | ||
2046 | 2,0,1,10,134, | ||
2047 | 18,1,10,135,20, | ||
2048 | 136,4,20,76,0, | ||
2049 | 69,0,70,0,84, | ||
2050 | 0,95,0,80,0, | ||
2051 | 65,0,82,0,69, | ||
2052 | 0,78,0,1,16, | ||
2053 | 1,1,2,0,1, | ||
2054 | 18,137,18,1,18, | ||
2055 | 129,2,0,1,19, | ||
2056 | 138,18,1,19,132, | ||
2057 | 2,0,1,20,139, | ||
2058 | 18,1,20,140,20, | ||
2059 | 141,4,46,65,0, | ||
2060 | 114,0,103,0,117, | ||
2061 | 0,109,0,101,0, | ||
2062 | 110,0,116,0,68, | ||
2063 | 0,101,0,99,0, | ||
2064 | 108,0,97,0,114, | ||
2065 | 0,97,0,116,0, | ||
2066 | 105,0,111,0,110, | ||
2067 | 0,76,0,105,0, | ||
2068 | 115,0,116,0,1, | ||
2069 | 103,1,2,2,0, | ||
2070 | 1,21,142,18,1, | ||
2071 | 21,143,20,144,4, | ||
2072 | 10,67,0,79,0, | ||
2073 | 77,0,77,0,65, | ||
2074 | 0,1,14,1,1, | ||
2075 | 2,0,1,1694,145, | ||
2076 | 18,1,1694,146,20, | ||
2077 | 147,4,32,70,0, | ||
2078 | 111,0,114,0,76, | ||
2079 | 0,111,0,111,0, | ||
2080 | 112,0,83,0,116, | ||
2081 | 0,97,0,116,0, | ||
2082 | 101,0,109,0,101, | ||
2083 | 0,110,0,116,0, | ||
2084 | 1,120,1,2,2, | ||
2085 | 0,1,1695,148,18, | ||
2086 | 1,1695,143,2,0, | ||
2087 | 1,30,149,18,1, | ||
2088 | 30,150,20,151,4, | ||
2089 | 22,68,0,101,0, | ||
2090 | 99,0,108,0,97, | ||
2091 | 0,114,0,97,0, | ||
2092 | 116,0,105,0,111, | ||
2093 | 0,110,0,1,104, | ||
2094 | 1,2,2,0,1, | ||
2095 | 31,152,18,1,31, | ||
2096 | 153,20,154,4,22, | ||
2097 | 82,0,73,0,71, | ||
2098 | 0,72,0,84,0, | ||
2099 | 95,0,80,0,65, | ||
2100 | 0,82,0,69,0, | ||
2101 | 78,0,1,17,1, | ||
2102 | 1,2,0,1,32, | ||
2103 | 155,18,1,32,156, | ||
2104 | 20,157,4,20,76, | ||
2105 | 0,69,0,70,0, | ||
2106 | 84,0,95,0,66, | ||
2107 | 0,82,0,65,0, | ||
2108 | 67,0,69,0,1, | ||
2109 | 12,1,1,2,0, | ||
2110 | 1,1114,158,18,1, | ||
2111 | 1114,132,2,0,1, | ||
2112 | 1152,159,18,1,1152, | ||
2113 | 160,20,161,4,32, | ||
2114 | 83,0,105,0,109, | ||
2115 | 0,112,0,108,0, | ||
2116 | 101,0,65,0,115, | ||
2117 | 0,115,0,105,0, | ||
2118 | 103,0,110,0,109, | ||
2119 | 0,101,0,110,0, | ||
2120 | 116,0,1,111,1, | ||
2121 | 2,2,0,1,1117, | ||
2122 | 162,18,1,1117,163, | ||
2123 | 20,164,4,28,80, | ||
2124 | 0,69,0,82,0, | ||
2125 | 67,0,69,0,78, | ||
2126 | 0,84,0,95,0, | ||
2127 | 69,0,81,0,85, | ||
2128 | 0,65,0,76,0, | ||
2129 | 83,0,1,10,1, | ||
2130 | 1,2,0,1,40, | ||
2131 | 165,18,1,40,132, | ||
2132 | 2,0,1,41,166, | ||
2133 | 18,1,41,135,2, | ||
2134 | 0,1,42,167,18, | ||
2135 | 1,42,168,20,169, | ||
2136 | 4,20,69,0,120, | ||
2137 | 0,112,0,114,0, | ||
2138 | 101,0,115,0,115, | ||
2139 | 0,105,0,111,0, | ||
2140 | 110,0,1,129,1, | ||
2141 | 2,2,0,1,43, | ||
2142 | 170,18,1,43,171, | ||
2143 | 20,172,4,22,82, | ||
2144 | 0,73,0,71,0, | ||
2145 | 72,0,84,0,95, | ||
2146 | 0,83,0,72,0, | ||
2147 | 73,0,70,0,84, | ||
2148 | 0,1,41,1,1, | ||
2149 | 2,0,1,44,173, | ||
2150 | 18,1,44,132,2, | ||
2151 | 0,1,1159,174,18, | ||
2152 | 1,1159,168,2,0, | ||
2153 | 1,46,175,18,1, | ||
2154 | 46,176,20,177,4, | ||
2155 | 12,80,0,69,0, | ||
2156 | 82,0,73,0,79, | ||
2157 | 0,68,0,1,24, | ||
2158 | 1,1,2,0,1, | ||
2159 | 47,178,18,1,47, | ||
2160 | 132,2,0,1,48, | ||
2161 | 179,18,1,48,180, | ||
2162 | 20,181,4,18,68, | ||
2163 | 0,69,0,67,0, | ||
2164 | 82,0,69,0,77, | ||
2165 | 0,69,0,78,0, | ||
2166 | 84,0,1,5,1, | ||
2167 | 1,2,0,1,49, | ||
2168 | 182,18,1,49,183, | ||
2169 | 20,184,4,18,73, | ||
2170 | 0,78,0,67,0, | ||
2171 | 82,0,69,0,77, | ||
2172 | 0,69,0,78,0, | ||
2173 | 84,0,1,4,1, | ||
2174 | 1,2,0,1,50, | ||
2175 | 185,18,1,50,180, | ||
2176 | 2,0,1,51,186, | ||
2177 | 18,1,51,183,2, | ||
2178 | 0,1,52,187,18, | ||
2179 | 1,52,135,2,0, | ||
2180 | 1,1730,188,18,1, | ||
2181 | 1730,160,2,0,1, | ||
2182 | 1731,189,18,1,1731, | ||
2183 | 190,20,191,4,18, | ||
2184 | 83,0,69,0,77, | ||
2185 | 0,73,0,67,0, | ||
2186 | 79,0,76,0,79, | ||
2187 | 0,78,0,1,11, | ||
2188 | 1,1,2,0,1, | ||
2189 | 61,192,18,1,61, | ||
2190 | 129,2,0,1,62, | ||
2191 | 193,18,1,62,153, | ||
2192 | 2,0,1,63,194, | ||
2193 | 18,1,63,132,2, | ||
2194 | 0,1,65,195,18, | ||
2195 | 1,65,176,2,0, | ||
2196 | 1,66,196,18,1, | ||
2197 | 66,132,2,0,1, | ||
2198 | 67,197,18,1,67, | ||
2199 | 180,2,0,1,68, | ||
2200 | 198,18,1,68,183, | ||
2201 | 2,0,1,69,199, | ||
2202 | 18,1,69,180,2, | ||
2203 | 0,1,70,200,18, | ||
2204 | 1,70,183,2,0, | ||
2205 | 1,71,201,18,1, | ||
2206 | 71,135,2,0,1, | ||
2207 | 73,202,18,1,73, | ||
2208 | 168,2,0,1,74, | ||
2209 | 203,18,1,74,153, | ||
2210 | 2,0,1,1189,204, | ||
2211 | 18,1,1189,205,20, | ||
2212 | 206,4,22,83,0, | ||
2213 | 84,0,65,0,82, | ||
2214 | 0,95,0,69,0, | ||
2215 | 81,0,85,0,65, | ||
2216 | 0,76,0,83,0, | ||
2217 | 1,8,1,1,2, | ||
2218 | 0,1,76,207,18, | ||
2219 | 1,76,208,20,209, | ||
2220 | 4,20,76,0,69, | ||
2221 | 0,70,0,84,0, | ||
2222 | 95,0,83,0,72, | ||
2223 | 0,73,0,70,0, | ||
2224 | 84,0,1,40,1, | ||
2225 | 1,2,0,1,1153, | ||
2226 | 210,18,1,1153,211, | ||
2227 | 20,212,4,24,83, | ||
2228 | 0,76,0,65,0, | ||
2229 | 83,0,72,0,95, | ||
2230 | 0,69,0,81,0, | ||
2231 | 85,0,65,0,76, | ||
2232 | 0,83,0,1,9, | ||
2233 | 1,1,2,0,1, | ||
2234 | 79,213,18,1,79, | ||
2235 | 214,20,215,4,10, | ||
2236 | 84,0,73,0,76, | ||
2237 | 0,68,0,69,0, | ||
2238 | 1,36,1,1,2, | ||
2239 | 0,1,1195,216,18, | ||
2240 | 1,1195,168,2,0, | ||
2241 | 1,82,217,18,1, | ||
2242 | 82,168,2,0,1, | ||
2243 | 1123,218,18,1,1123, | ||
2244 | 168,2,0,1,85, | ||
2245 | 219,18,1,85,220, | ||
2246 | 20,221,4,26,83, | ||
2247 | 0,84,0,82,0, | ||
2248 | 79,0,75,0,69, | ||
2249 | 0,95,0,83,0, | ||
2250 | 84,0,82,0,79, | ||
2251 | 0,75,0,69,0, | ||
2252 | 1,39,1,1,2, | ||
2253 | 0,1,2547,222,18, | ||
2254 | 1,2547,223,20,224, | ||
2255 | 4,34,67,0,111, | ||
2256 | 0,109,0,112,0, | ||
2257 | 111,0,117,0,110, | ||
2258 | 0,100,0,83,0, | ||
2259 | 116,0,97,0,116, | ||
2260 | 0,101,0,109,0, | ||
2261 | 101,0,110,0,116, | ||
2262 | 0,1,107,1,2, | ||
2263 | 2,0,1,89,225, | ||
2264 | 18,1,89,226,20, | ||
2265 | 227,4,10,77,0, | ||
2266 | 73,0,78,0,85, | ||
2267 | 0,83,0,1,19, | ||
2268 | 1,1,2,0,1, | ||
2269 | 93,228,18,1,93, | ||
2270 | 168,2,0,1,97, | ||
2271 | 229,18,1,97,230, | ||
2272 | 20,231,4,14,65, | ||
2273 | 0,77,0,80,0, | ||
2274 | 95,0,65,0,77, | ||
2275 | 0,80,0,1,38, | ||
2276 | 1,1,2,0,1, | ||
2277 | 102,232,18,1,102, | ||
2278 | 233,20,234,4,22, | ||
2279 | 69,0,88,0,67, | ||
2280 | 0,76,0,65,0, | ||
2281 | 77,0,65,0,84, | ||
2282 | 0,73,0,79,0, | ||
2283 | 78,0,1,37,1, | ||
2284 | 1,2,0,1,1775, | ||
2285 | 235,18,1,1775,153, | ||
2286 | 2,0,1,107,236, | ||
2287 | 18,1,107,168,2, | ||
2288 | 0,1,2196,237,18, | ||
2289 | 1,2196,160,2,0, | ||
2290 | 1,1224,238,18,1, | ||
2291 | 1224,160,2,0,1, | ||
2292 | 1225,239,18,1,1225, | ||
2293 | 240,20,241,4,24, | ||
2294 | 77,0,73,0,78, | ||
2295 | 0,85,0,83,0, | ||
2296 | 95,0,69,0,81, | ||
2297 | 0,85,0,65,0, | ||
2298 | 76,0,83,0,1, | ||
2299 | 7,1,1,2,0, | ||
2300 | 1,112,242,18,1, | ||
2301 | 112,243,20,244,4, | ||
2302 | 28,71,0,82,0, | ||
2303 | 69,0,65,0,84, | ||
2304 | 0,69,0,82,0, | ||
2305 | 95,0,69,0,81, | ||
2306 | 0,85,0,65,0, | ||
2307 | 76,0,83,0,1, | ||
2308 | 32,1,1,2,0, | ||
2309 | 1,1188,245,18,1, | ||
2310 | 1188,160,2,0,1, | ||
2311 | 1231,246,18,1,1231, | ||
2312 | 168,2,0,1,118, | ||
2313 | 247,18,1,118,168, | ||
2314 | 2,0,1,1737,248, | ||
2315 | 18,1,1737,168,2, | ||
2316 | 0,1,124,249,18, | ||
2317 | 1,124,250,20,251, | ||
2318 | 4,22,76,0,69, | ||
2319 | 0,83,0,83,0, | ||
2320 | 95,0,69,0,81, | ||
2321 | 0,85,0,65,0, | ||
2322 | 76,0,83,0,1, | ||
2323 | 31,1,1,2,0, | ||
2324 | 1,2280,252,18,1, | ||
2325 | 2280,160,2,0,1, | ||
2326 | 2354,253,18,1,2354, | ||
2327 | 254,20,255,4,18, | ||
2328 | 83,0,116,0,97, | ||
2329 | 0,116,0,101,0, | ||
2330 | 109,0,101,0,110, | ||
2331 | 0,116,0,1,109, | ||
2332 | 1,2,2,0,1, | ||
2333 | 2355,256,18,1,2355, | ||
2334 | 257,20,258,4,22, | ||
2335 | 82,0,73,0,71, | ||
2336 | 0,72,0,84,0, | ||
2337 | 95,0,66,0,82, | ||
2338 | 0,65,0,67,0, | ||
2339 | 69,0,1,13,1, | ||
2340 | 1,2,0,1,130, | ||
2341 | 259,18,1,130,168, | ||
2342 | 2,0,1,1802,260, | ||
2343 | 18,1,1802,254,2, | ||
2344 | 0,1,2360,261,18, | ||
2345 | 1,2360,257,2,0, | ||
2346 | 1,1804,262,18,1, | ||
2347 | 1804,263,20,264,4, | ||
2348 | 4,68,0,79,0, | ||
2349 | 1,44,1,1,2, | ||
2350 | 0,1,2362,265,18, | ||
2351 | 1,2362,223,2,0, | ||
2352 | 1,2363,266,18,1, | ||
2353 | 2363,150,2,0,1, | ||
2354 | 2364,267,18,1,2364, | ||
2355 | 268,20,269,4,10, | ||
2356 | 83,0,84,0,65, | ||
2357 | 0,84,0,69,0, | ||
2358 | 1,48,1,1,2, | ||
2359 | 0,1,137,270,18, | ||
2360 | 1,137,271,20,272, | ||
2361 | 4,36,69,0,88, | ||
2362 | 0,67,0,76,0, | ||
2363 | 65,0,77,0,65, | ||
2364 | 0,84,0,73,0, | ||
2365 | 79,0,78,0,95, | ||
2366 | 0,69,0,81,0, | ||
2367 | 85,0,65,0,76, | ||
2368 | 0,83,0,1,30, | ||
2369 | 1,1,2,0,1, | ||
2370 | 2366,273,18,1,2366, | ||
2371 | 156,2,0,1,2367, | ||
2372 | 274,18,1,2367,275, | ||
2373 | 20,276,4,34,84, | ||
2374 | 0,79,0,85,0, | ||
2375 | 67,0,72,0,95, | ||
2376 | 0,83,0,84,0, | ||
2377 | 65,0,82,0,84, | ||
2378 | 0,95,0,69,0, | ||
2379 | 86,0,69,0,78, | ||
2380 | 0,84,0,1,89, | ||
2381 | 1,1,2,0,1, | ||
2382 | 1701,277,18,1,1701, | ||
2383 | 168,2,0,1,1756, | ||
2384 | 278,18,1,1756,190, | ||
2385 | 2,0,1,2370,279, | ||
2386 | 18,1,2370,280,20, | ||
2387 | 281,4,22,84,0, | ||
2388 | 73,0,77,0,69, | ||
2389 | 0,82,0,95,0, | ||
2390 | 69,0,86,0,69, | ||
2391 | 0,78,0,84,0, | ||
2392 | 1,87,1,1,2, | ||
2393 | 0,1,143,282,18, | ||
2394 | 1,143,168,2,0, | ||
2395 | 1,2372,283,18,1, | ||
2396 | 2372,284,20,285,4, | ||
2397 | 34,83,0,84,0, | ||
2398 | 65,0,84,0,69, | ||
2399 | 0,95,0,69,0, | ||
2400 | 78,0,84,0,82, | ||
2401 | 0,89,0,95,0, | ||
2402 | 69,0,86,0,69, | ||
2403 | 0,78,0,84,0, | ||
2404 | 1,85,1,1,2, | ||
2405 | 0,1,2373,286,18, | ||
2406 | 1,2373,287,20,288, | ||
2407 | 4,24,83,0,69, | ||
2408 | 0,78,0,83,0, | ||
2409 | 79,0,82,0,95, | ||
2410 | 0,69,0,86,0, | ||
2411 | 69,0,78,0,84, | ||
2412 | 0,1,84,1,1, | ||
2413 | 2,0,1,1260,289, | ||
2414 | 18,1,1260,160,2, | ||
2415 | 0,1,1261,290,18, | ||
2416 | 1,1261,291,20,292, | ||
2417 | 4,22,80,0,76, | ||
2418 | 0,85,0,83,0, | ||
2419 | 95,0,69,0,81, | ||
2420 | 0,85,0,65,0, | ||
2421 | 76,0,83,0,1, | ||
2422 | 6,1,1,2,0, | ||
2423 | 1,2376,293,18,1, | ||
2424 | 2376,294,20,295,4, | ||
2425 | 24,79,0,78,0, | ||
2426 | 95,0,82,0,69, | ||
2427 | 0,90,0,95,0, | ||
2428 | 69,0,86,0,69, | ||
2429 | 0,78,0,84,0, | ||
2430 | 1,81,1,1,2, | ||
2431 | 0,1,2377,296,18, | ||
2432 | 1,2377,297,20,298, | ||
2433 | 4,32,79,0,66, | ||
2434 | 0,74,0,69,0, | ||
2435 | 67,0,84,0,95, | ||
2436 | 0,82,0,69,0, | ||
2437 | 90,0,95,0,69, | ||
2438 | 0,86,0,69,0, | ||
2439 | 78,0,84,0,1, | ||
2440 | 80,1,1,2,0, | ||
2441 | 1,2378,299,18,1, | ||
2442 | 2378,300,20,301,4, | ||
2443 | 38,78,0,79,0, | ||
2444 | 84,0,95,0,65, | ||
2445 | 0,84,0,95,0, | ||
2446 | 84,0,65,0,82, | ||
2447 | 0,71,0,69,0, | ||
2448 | 84,0,95,0,69, | ||
2449 | 0,86,0,69,0, | ||
2450 | 78,0,84,0,1, | ||
2451 | 79,1,1,2,0, | ||
2452 | 1,151,302,18,1, | ||
2453 | 151,303,20,304,4, | ||
2454 | 26,69,0,81,0, | ||
2455 | 85,0,65,0,76, | ||
2456 | 0,83,0,95,0, | ||
2457 | 69,0,81,0,85, | ||
2458 | 0,65,0,76,0, | ||
2459 | 83,0,1,29,1, | ||
2460 | 1,2,0,1,2380, | ||
2461 | 305,18,1,2380,306, | ||
2462 | 20,307,4,30,78, | ||
2463 | 0,79,0,95,0, | ||
2464 | 83,0,69,0,78, | ||
2465 | 0,83,0,79,0, | ||
2466 | 82,0,95,0,69, | ||
2467 | 0,86,0,69,0, | ||
2468 | 78,0,84,0,1, | ||
2469 | 77,1,1,2,0, | ||
2470 | 1,1267,308,18,1, | ||
2471 | 1267,168,2,0,1, | ||
2472 | 2382,309,18,1,2382, | ||
2473 | 310,20,311,4,32, | ||
2474 | 77,0,79,0,86, | ||
2475 | 0,73,0,78,0, | ||
2476 | 71,0,95,0,69, | ||
2477 | 0,78,0,68,0, | ||
2478 | 95,0,69,0,86, | ||
2479 | 0,69,0,78,0, | ||
2480 | 84,0,1,75,1, | ||
2481 | 1,2,0,1,2309, | ||
2482 | 312,18,1,2309,313, | ||
2483 | 20,314,4,26,83, | ||
2484 | 0,116,0,97,0, | ||
2485 | 116,0,101,0,109, | ||
2486 | 0,101,0,110,0, | ||
2487 | 116,0,76,0,105, | ||
2488 | 0,115,0,116,0, | ||
2489 | 1,108,1,2,2, | ||
2490 | 0,1,2384,315,18, | ||
2491 | 1,2384,316,20,317, | ||
2492 | 4,24,76,0,73, | ||
2493 | 0,83,0,84,0, | ||
2494 | 69,0,78,0,95, | ||
2495 | 0,69,0,86,0, | ||
2496 | 69,0,78,0,84, | ||
2497 | 0,1,73,1,1, | ||
2498 | 2,0,1,157,318, | ||
2499 | 18,1,157,168,2, | ||
2500 | 0,1,2386,319,18, | ||
2501 | 1,2386,320,20,321, | ||
2502 | 4,52,76,0,65, | ||
2503 | 0,78,0,68,0, | ||
2504 | 95,0,67,0,79, | ||
2505 | 0,76,0,76,0, | ||
2506 | 73,0,83,0,73, | ||
2507 | 0,79,0,78,0, | ||
2508 | 95,0,83,0,84, | ||
2509 | 0,65,0,82,0, | ||
2510 | 84,0,95,0,69, | ||
2511 | 0,86,0,69,0, | ||
2512 | 78,0,84,0,1, | ||
2513 | 71,1,1,2,0, | ||
2514 | 1,1773,322,18,1, | ||
2515 | 1773,146,2,0,1, | ||
2516 | 2388,323,18,1,2388, | ||
2517 | 324,20,325,4,40, | ||
2518 | 76,0,65,0,78, | ||
2519 | 0,68,0,95,0, | ||
2520 | 67,0,79,0,76, | ||
2521 | 0,76,0,73,0, | ||
2522 | 83,0,73,0,79, | ||
2523 | 0,78,0,95,0, | ||
2524 | 69,0,86,0,69, | ||
2525 | 0,78,0,84,0, | ||
2526 | 1,69,1,1,2, | ||
2527 | 0,1,1832,326,18, | ||
2528 | 1,1832,254,2,0, | ||
2529 | 1,1833,327,18,1, | ||
2530 | 1833,328,20,329,4, | ||
2531 | 10,87,0,72,0, | ||
2532 | 73,0,76,0,69, | ||
2533 | 0,1,45,1,1, | ||
2534 | 2,0,1,1834,330, | ||
2535 | 18,1,1834,135,2, | ||
2536 | 0,1,2392,331,18, | ||
2537 | 1,2392,332,20,333, | ||
2538 | 4,26,67,0,79, | ||
2539 | 0,78,0,84,0, | ||
2540 | 82,0,79,0,76, | ||
2541 | 0,95,0,69,0, | ||
2542 | 86,0,69,0,78, | ||
2543 | 0,84,0,1,65, | ||
2544 | 1,1,2,0,1, | ||
2545 | 2393,334,18,1,2393, | ||
2546 | 335,20,336,4,42, | ||
2547 | 67,0,79,0,76, | ||
2548 | 0,76,0,73,0, | ||
2549 | 83,0,73,0,79, | ||
2550 | 0,78,0,95,0, | ||
2551 | 83,0,84,0,65, | ||
2552 | 0,82,0,84,0, | ||
2553 | 95,0,69,0,86, | ||
2554 | 0,69,0,78,0, | ||
2555 | 84,0,1,64,1, | ||
2556 | 1,2,0,1,166, | ||
2557 | 337,18,1,166,338, | ||
2558 | 20,339,4,20,76, | ||
2559 | 0,69,0,70,0, | ||
2560 | 84,0,95,0,65, | ||
2561 | 0,78,0,71,0, | ||
2562 | 76,0,69,0,1, | ||
2563 | 25,1,1,2,0, | ||
2564 | 1,2395,340,18,1, | ||
2565 | 2395,341,20,342,4, | ||
2566 | 30,67,0,79,0, | ||
2567 | 76,0,76,0,73, | ||
2568 | 0,83,0,73,0, | ||
2569 | 79,0,78,0,95, | ||
2570 | 0,69,0,86,0, | ||
2571 | 69,0,78,0,84, | ||
2572 | 0,1,62,1,1, | ||
2573 | 2,0,1,2396,343, | ||
2574 | 18,1,2396,344,20, | ||
2575 | 345,4,26,67,0, | ||
2576 | 72,0,65,0,78, | ||
2577 | 0,71,0,69,0, | ||
2578 | 68,0,95,0,69, | ||
2579 | 0,86,0,69,0, | ||
2580 | 78,0,84,0,1, | ||
2581 | 61,1,1,2,0, | ||
2582 | 1,1840,346,18,1, | ||
2583 | 1840,168,2,0,1, | ||
2584 | 2398,347,18,1,2398, | ||
2585 | 348,20,349,4,30, | ||
2586 | 65,0,84,0,95, | ||
2587 | 0,84,0,65,0, | ||
2588 | 82,0,71,0,69, | ||
2589 | 0,84,0,95,0, | ||
2590 | 69,0,86,0,69, | ||
2591 | 0,78,0,84,0, | ||
2592 | 1,59,1,1,2, | ||
2593 | 0,1,2399,350,18, | ||
2594 | 1,2399,351,20,352, | ||
2595 | 4,38,65,0,84, | ||
2596 | 0,95,0,82,0, | ||
2597 | 79,0,84,0,95, | ||
2598 | 0,84,0,65,0, | ||
2599 | 82,0,71,0,69, | ||
2600 | 0,84,0,95,0, | ||
2601 | 69,0,86,0,69, | ||
2602 | 0,78,0,84,0, | ||
2603 | 1,58,1,1,2, | ||
2604 | 0,1,172,353,18, | ||
2605 | 1,172,168,2,0, | ||
2606 | 1,2401,354,18,1, | ||
2607 | 2401,135,2,0,1, | ||
2608 | 2605,355,18,1,2605, | ||
2609 | 356,20,357,4,48, | ||
2610 | 71,0,108,0,111, | ||
2611 | 0,98,0,97,0, | ||
2612 | 108,0,70,0,117, | ||
2613 | 0,110,0,99,0, | ||
2614 | 116,0,105,0,111, | ||
2615 | 0,110,0,68,0, | ||
2616 | 101,0,102,0,105, | ||
2617 | 0,110,0,105,0, | ||
2618 | 116,0,105,0,111, | ||
2619 | 0,110,0,1,98, | ||
2620 | 1,2,2,0,1, | ||
2621 | 1296,358,18,1,1296, | ||
2622 | 160,2,0,1,1297, | ||
2623 | 359,18,1,1297,360, | ||
2624 | 20,361,4,12,69, | ||
2625 | 0,81,0,85,0, | ||
2626 | 65,0,76,0,83, | ||
2627 | 0,1,15,1,1, | ||
2628 | 2,0,1,2412,362, | ||
2629 | 18,1,2412,153,2, | ||
2630 | 0,1,2414,363,18, | ||
2631 | 1,2414,223,2,0, | ||
2632 | 1,1859,364,18,1, | ||
2633 | 1859,153,2,0,1, | ||
2634 | 1860,365,18,1,1860, | ||
2635 | 190,2,0,1,188, | ||
2636 | 366,18,1,188,168, | ||
2637 | 2,0,1,182,367, | ||
2638 | 18,1,182,368,20, | ||
2639 | 369,4,22,82,0, | ||
2640 | 73,0,71,0,72, | ||
2641 | 0,84,0,95,0, | ||
2642 | 65,0,78,0,71, | ||
2643 | 0,76,0,69,0, | ||
2644 | 1,26,1,1,2, | ||
2645 | 0,1,199,370,18, | ||
2646 | 1,199,371,20,372, | ||
2647 | 4,10,67,0,65, | ||
2648 | 0,82,0,69,0, | ||
2649 | 84,0,1,35,1, | ||
2650 | 1,2,0,1,1871, | ||
2651 | 373,18,1,1871,160, | ||
2652 | 2,0,1,1872,374, | ||
2653 | 18,1,1872,153,2, | ||
2654 | 0,1,1873,375,18, | ||
2655 | 1,1873,190,2,0, | ||
2656 | 1,1875,376,18,1, | ||
2657 | 1875,328,2,0,1, | ||
2658 | 205,377,18,1,205, | ||
2659 | 168,2,0,1,1882, | ||
2660 | 378,18,1,1882,168, | ||
2661 | 2,0,1,2365,379, | ||
2662 | 18,1,2365,132,2, | ||
2663 | 0,1,2368,380,18, | ||
2664 | 1,2368,381,20,382, | ||
2665 | 4,30,84,0,79, | ||
2666 | 0,85,0,67,0, | ||
2667 | 72,0,95,0,69, | ||
2668 | 0,78,0,68,0, | ||
2669 | 95,0,69,0,86, | ||
2670 | 0,69,0,78,0, | ||
2671 | 84,0,1,90,1, | ||
2672 | 1,2,0,1,217, | ||
2673 | 383,18,1,217,384, | ||
2674 | 20,385,4,12,83, | ||
2675 | 0,84,0,82,0, | ||
2676 | 79,0,75,0,69, | ||
2677 | 0,1,34,1,1, | ||
2678 | 2,0,1,1332,386, | ||
2679 | 18,1,1332,160,2, | ||
2680 | 0,1,2371,387,18, | ||
2681 | 1,2371,388,20,389, | ||
2682 | 4,32,83,0,84, | ||
2683 | 0,65,0,84,0, | ||
2684 | 69,0,95,0,69, | ||
2685 | 0,88,0,73,0, | ||
2686 | 84,0,95,0,69, | ||
2687 | 0,86,0,69,0, | ||
2688 | 78,0,84,0,1, | ||
2689 | 86,1,1,2,0, | ||
2690 | 1,1335,390,18,1, | ||
2691 | 1335,163,2,0,1, | ||
2692 | 2374,391,18,1,2374, | ||
2693 | 392,20,393,4,52, | ||
2694 | 82,0,85,0,78, | ||
2695 | 0,95,0,84,0, | ||
2696 | 73,0,77,0,69, | ||
2697 | 0,95,0,80,0, | ||
2698 | 69,0,82,0,77, | ||
2699 | 0,73,0,83,0, | ||
2700 | 83,0,73,0,79, | ||
2701 | 0,78,0,83,0, | ||
2702 | 95,0,69,0,86, | ||
2703 | 0,69,0,78,0, | ||
2704 | 84,0,1,83,1, | ||
2705 | 1,2,0,1,223, | ||
2706 | 394,18,1,223,168, | ||
2707 | 2,0,1,2452,395, | ||
2708 | 18,1,2452,257,2, | ||
2709 | 0,1,2453,396,18, | ||
2710 | 1,2453,397,20,398, | ||
2711 | 4,20,83,0,116, | ||
2712 | 0,97,0,116,0, | ||
2713 | 101,0,69,0,118, | ||
2714 | 0,101,0,110,0, | ||
2715 | 116,0,1,102,1, | ||
2716 | 2,2,0,1,2454, | ||
2717 | 399,18,1,2454,400, | ||
2718 | 20,401,4,26,68, | ||
2719 | 0,69,0,70,0, | ||
2720 | 65,0,85,0,76, | ||
2721 | 0,84,0,95,0, | ||
2722 | 83,0,84,0,65, | ||
2723 | 0,84,0,69,0, | ||
2724 | 1,47,1,1,2, | ||
2725 | 0,1,1341,402,18, | ||
2726 | 1,1341,168,2,0, | ||
2727 | 1,2381,403,18,1, | ||
2728 | 2381,404,20,405,4, | ||
2729 | 36,77,0,79,0, | ||
2730 | 86,0,73,0,78, | ||
2731 | 0,71,0,95,0, | ||
2732 | 83,0,84,0,65, | ||
2733 | 0,82,0,84,0, | ||
2734 | 95,0,69,0,86, | ||
2735 | 0,69,0,78,0, | ||
2736 | 84,0,1,76,1, | ||
2737 | 1,2,0,1,1901, | ||
2738 | 406,18,1,1901,153, | ||
2739 | 2,0,1,1303,407, | ||
2740 | 18,1,1303,168,2, | ||
2741 | 0,1,2385,408,18, | ||
2742 | 1,2385,409,20,410, | ||
2743 | 4,36,76,0,73, | ||
2744 | 0,78,0,75,0, | ||
2745 | 95,0,77,0,69, | ||
2746 | 0,83,0,83,0, | ||
2747 | 65,0,71,0,69, | ||
2748 | 0,95,0,69,0, | ||
2749 | 86,0,69,0,78, | ||
2750 | 0,84,0,1,72, | ||
2751 | 1,1,2,0,1, | ||
2752 | 2387,411,18,1,2387, | ||
2753 | 412,20,413,4,48, | ||
2754 | 76,0,65,0,78, | ||
2755 | 0,68,0,95,0, | ||
2756 | 67,0,79,0,76, | ||
2757 | 0,76,0,73,0, | ||
2758 | 83,0,73,0,79, | ||
2759 | 0,78,0,95,0, | ||
2760 | 69,0,78,0,68, | ||
2761 | 0,95,0,69,0, | ||
2762 | 86,0,69,0,78, | ||
2763 | 0,84,0,1,70, | ||
2764 | 1,1,2,0,1, | ||
2765 | 236,414,18,1,236, | ||
2766 | 415,20,416,4,6, | ||
2767 | 65,0,77,0,80, | ||
2768 | 0,1,33,1,1, | ||
2769 | 2,0,1,2389,417, | ||
2770 | 18,1,2389,418,20, | ||
2771 | 419,4,38,72,0, | ||
2772 | 84,0,84,0,80, | ||
2773 | 0,95,0,82,0, | ||
2774 | 69,0,83,0,80, | ||
2775 | 0,79,0,78,0, | ||
2776 | 83,0,69,0,95, | ||
2777 | 0,69,0,86,0, | ||
2778 | 69,0,78,0,84, | ||
2779 | 0,1,68,1,1, | ||
2780 | 2,0,1,2390,420, | ||
2781 | 18,1,2390,421,20, | ||
2782 | 422,4,22,69,0, | ||
2783 | 77,0,65,0,73, | ||
2784 | 0,76,0,95,0, | ||
2785 | 69,0,86,0,69, | ||
2786 | 0,78,0,84,0, | ||
2787 | 1,67,1,1,2, | ||
2788 | 0,1,2391,423,18, | ||
2789 | 1,2391,424,20,425, | ||
2790 | 4,32,68,0,65, | ||
2791 | 0,84,0,65,0, | ||
2792 | 83,0,69,0,82, | ||
2793 | 0,86,0,69,0, | ||
2794 | 82,0,95,0,69, | ||
2795 | 0,86,0,69,0, | ||
2796 | 78,0,84,0,1, | ||
2797 | 66,1,1,2,0, | ||
2798 | 1,242,426,18,1, | ||
2799 | 242,168,2,0,1, | ||
2800 | 2397,427,18,1,2397, | ||
2801 | 428,20,429,4,24, | ||
2802 | 65,0,84,0,84, | ||
2803 | 0,65,0,67,0, | ||
2804 | 72,0,95,0,69, | ||
2805 | 0,86,0,69,0, | ||
2806 | 78,0,84,0,1, | ||
2807 | 60,1,1,2,0, | ||
2808 | 1,2400,430,18,1, | ||
2809 | 2400,431,20,432,4, | ||
2810 | 10,69,0,118,0, | ||
2811 | 101,0,110,0,116, | ||
2812 | 0,1,106,1,2, | ||
2813 | 2,0,1,256,433, | ||
2814 | 18,1,256,434,20, | ||
2815 | 435,4,14,80,0, | ||
2816 | 69,0,82,0,67, | ||
2817 | 0,69,0,78,0, | ||
2818 | 84,0,1,22,1, | ||
2819 | 1,2,0,1,1371, | ||
2820 | 436,18,1,1371,211, | ||
2821 | 2,0,1,2410,437, | ||
2822 | 18,1,2410,140,2, | ||
2823 | 0,1,1931,438,18, | ||
2824 | 1,1931,254,2,0, | ||
2825 | 1,1932,439,18,1, | ||
2826 | 1932,440,20,441,4, | ||
2827 | 4,73,0,70,0, | ||
2828 | 1,42,1,1,2, | ||
2829 | 0,1,262,442,18, | ||
2830 | 1,262,168,2,0, | ||
2831 | 1,1377,443,18,1, | ||
2832 | 1377,168,2,0,1, | ||
2833 | 1876,444,18,1,1876, | ||
2834 | 135,2,0,1,1939, | ||
2835 | 445,18,1,1939,168, | ||
2836 | 2,0,1,827,446, | ||
2837 | 18,1,827,168,2, | ||
2838 | 0,1,277,447,18, | ||
2839 | 1,277,448,20,449, | ||
2840 | 4,10,83,0,76, | ||
2841 | 0,65,0,83,0, | ||
2842 | 72,0,1,21,1, | ||
2843 | 1,2,0,1,2358, | ||
2844 | 450,18,1,2358,254, | ||
2845 | 2,0,1,283,451, | ||
2846 | 18,1,283,168,2, | ||
2847 | 0,1,1958,452,18, | ||
2848 | 1,1958,153,2,0, | ||
2849 | 1,1406,453,18,1, | ||
2850 | 1406,160,2,0,1, | ||
2851 | 1407,454,18,1,1407, | ||
2852 | 205,2,0,1,2526, | ||
2853 | 455,18,1,2526,257, | ||
2854 | 2,0,1,299,456, | ||
2855 | 18,1,299,457,20, | ||
2856 | 458,4,8,83,0, | ||
2857 | 84,0,65,0,82, | ||
2858 | 0,1,20,1,1, | ||
2859 | 2,0,1,1370,459, | ||
2860 | 18,1,1370,160,2, | ||
2861 | 0,1,2451,460,18, | ||
2862 | 1,2451,397,2,0, | ||
2863 | 1,2379,461,18,1, | ||
2864 | 2379,462,20,463,4, | ||
2865 | 46,78,0,79,0, | ||
2866 | 84,0,95,0,65, | ||
2867 | 0,84,0,95,0, | ||
2868 | 82,0,79,0,84, | ||
2869 | 0,95,0,84,0, | ||
2870 | 65,0,82,0,71, | ||
2871 | 0,69,0,84,0, | ||
2872 | 95,0,69,0,86, | ||
2873 | 0,69,0,78,0, | ||
2874 | 84,0,1,78,1, | ||
2875 | 1,2,0,1,2532, | ||
2876 | 464,18,1,2532,465, | ||
2877 | 20,466,4,10,83, | ||
2878 | 0,116,0,97,0, | ||
2879 | 116,0,101,0,1, | ||
2880 | 100,1,2,2,0, | ||
2881 | 1,305,467,18,1, | ||
2882 | 305,168,2,0,1, | ||
2883 | 2534,468,18,1,2534, | ||
2884 | 135,2,0,1,2383, | ||
2885 | 469,18,1,2383,470, | ||
2886 | 20,471,4,22,77, | ||
2887 | 0,79,0,78,0, | ||
2888 | 69,0,89,0,95, | ||
2889 | 0,69,0,86,0, | ||
2890 | 69,0,78,0,84, | ||
2891 | 0,1,74,1,1, | ||
2892 | 2,0,1,2528,472, | ||
2893 | 18,1,2528,473,20, | ||
2894 | 474,4,12,83,0, | ||
2895 | 116,0,97,0,116, | ||
2896 | 0,101,0,115,0, | ||
2897 | 1,99,1,2,2, | ||
2898 | 0,1,2543,475,18, | ||
2899 | 1,2543,140,2,0, | ||
2900 | 1,2545,476,18,1, | ||
2901 | 2545,153,2,0,1, | ||
2902 | 1989,477,18,1,1989, | ||
2903 | 254,2,0,1,1990, | ||
2904 | 478,18,1,1990,479, | ||
2905 | 20,480,4,8,69, | ||
2906 | 0,76,0,83,0, | ||
2907 | 69,0,1,43,1, | ||
2908 | 1,2,0,1,2607, | ||
2909 | 481,18,1,2607,356, | ||
2910 | 2,0,1,2549,482, | ||
2911 | 18,1,2549,150,2, | ||
2912 | 0,1,322,483,18, | ||
2913 | 1,322,226,2,0, | ||
2914 | 1,1933,484,18,1, | ||
2915 | 1933,135,2,0,1, | ||
2916 | 883,485,18,1,883, | ||
2917 | 168,2,0,1,328, | ||
2918 | 486,18,1,328,168, | ||
2919 | 2,0,1,1443,487, | ||
2920 | 18,1,1443,240,2, | ||
2921 | 0,1,1449,488,18, | ||
2922 | 1,1449,168,2,0, | ||
2923 | 1,2490,489,18,1, | ||
2924 | 2490,490,20,491,4, | ||
2925 | 18,83,0,116,0, | ||
2926 | 97,0,116,0,101, | ||
2927 | 0,66,0,111,0, | ||
2928 | 100,0,121,0,1, | ||
2929 | 101,1,2,2,0, | ||
2930 | 1,2416,492,18,1, | ||
2931 | 2416,490,2,0,1, | ||
2932 | 1413,493,18,1,1413, | ||
2933 | 168,2,0,1,346, | ||
2934 | 494,18,1,346,495, | ||
2935 | 20,496,4,8,80, | ||
2936 | 0,76,0,85,0, | ||
2937 | 83,0,1,18,1, | ||
2938 | 1,2,0,1,2575, | ||
2939 | 497,18,1,2575,190, | ||
2940 | 2,0,1,2021,498, | ||
2941 | 18,1,2021,254,2, | ||
2942 | 0,1,2022,499,18, | ||
2943 | 1,2022,268,2,0, | ||
2944 | 1,352,500,18,1, | ||
2945 | 352,168,2,0,1, | ||
2946 | 2024,501,18,1,2024, | ||
2947 | 132,2,0,1,2025, | ||
2948 | 502,18,1,2025,503, | ||
2949 | 20,504,4,8,74, | ||
2950 | 0,85,0,77,0, | ||
2951 | 80,0,1,49,1, | ||
2952 | 1,2,0,1,2026, | ||
2953 | 505,18,1,2026,132, | ||
2954 | 2,0,1,2027,506, | ||
2955 | 18,1,2027,507,20, | ||
2956 | 508,4,4,65,0, | ||
2957 | 84,0,1,23,1, | ||
2958 | 1,2,0,1,2028, | ||
2959 | 509,18,1,2028,132, | ||
2960 | 2,0,1,2029,510, | ||
2961 | 18,1,2029,223,2, | ||
2962 | 0,1,2030,511,18, | ||
2963 | 1,2030,512,20,513, | ||
2964 | 4,14,70,0,111, | ||
2965 | 0,114,0,76,0, | ||
2966 | 111,0,111,0,112, | ||
2967 | 0,1,119,1,2, | ||
2968 | 2,0,1,2031,514, | ||
2969 | 18,1,2031,515,20, | ||
2970 | 516,4,32,68,0, | ||
2971 | 111,0,87,0,104, | ||
2972 | 0,105,0,108,0, | ||
2973 | 101,0,83,0,116, | ||
2974 | 0,97,0,116,0, | ||
2975 | 101,0,109,0,101, | ||
2976 | 0,110,0,116,0, | ||
2977 | 1,118,1,2,2, | ||
2978 | 0,1,2032,517,18, | ||
2979 | 1,2032,518,20,519, | ||
2980 | 4,28,87,0,104, | ||
2981 | 0,105,0,108,0, | ||
2982 | 101,0,83,0,116, | ||
2983 | 0,97,0,116,0, | ||
2984 | 101,0,109,0,101, | ||
2985 | 0,110,0,116,0, | ||
2986 | 1,117,1,2,2, | ||
2987 | 0,1,2033,520,18, | ||
2988 | 1,2033,521,20,522, | ||
2989 | 4,22,73,0,102, | ||
2990 | 0,83,0,116,0, | ||
2991 | 97,0,116,0,101, | ||
2992 | 0,109,0,101,0, | ||
2993 | 110,0,116,0,1, | ||
2994 | 116,1,2,2,0, | ||
2995 | 1,2034,523,18,1, | ||
2996 | 2034,524,20,525,4, | ||
2997 | 22,83,0,116,0, | ||
2998 | 97,0,116,0,101, | ||
2999 | 0,67,0,104,0, | ||
3000 | 97,0,110,0,103, | ||
3001 | 0,101,0,1,115, | ||
3002 | 1,2,2,0,1, | ||
3003 | 1478,526,18,1,1478, | ||
3004 | 160,2,0,1,1479, | ||
3005 | 527,18,1,1479,291, | ||
3006 | 2,0,1,2037,528, | ||
3007 | 18,1,2037,190,2, | ||
3008 | 0,1,2038,529,18, | ||
3009 | 1,2038,530,20,531, | ||
3010 | 4,18,74,0,117, | ||
3011 | 0,109,0,112,0, | ||
3012 | 76,0,97,0,98, | ||
3013 | 0,101,0,108,0, | ||
3014 | 1,113,1,2,2, | ||
3015 | 0,1,2039,532,18, | ||
3016 | 1,2039,190,2,0, | ||
3017 | 1,2040,533,18,1, | ||
3018 | 2040,534,20,535,4, | ||
3019 | 30,82,0,101,0, | ||
3020 | 116,0,117,0,114, | ||
3021 | 0,110,0,83,0, | ||
3022 | 116,0,97,0,116, | ||
3023 | 0,101,0,109,0, | ||
3024 | 101,0,110,0,116, | ||
3025 | 0,1,112,1,2, | ||
3026 | 2,0,1,2041,536, | ||
3027 | 18,1,2041,190,2, | ||
3028 | 0,1,1485,537,18, | ||
3029 | 1,1485,168,2,0, | ||
3030 | 1,372,538,18,1, | ||
3031 | 372,180,2,0,1, | ||
3032 | 373,539,18,1,373, | ||
3033 | 132,2,0,1,374, | ||
3034 | 540,18,1,374,176, | ||
3035 | 2,0,1,375,541, | ||
3036 | 18,1,375,132,2, | ||
3037 | 0,1,376,542,18, | ||
3038 | 1,376,183,2,0, | ||
3039 | 1,377,543,18,1, | ||
3040 | 377,132,2,0,1, | ||
3041 | 378,544,18,1,378, | ||
3042 | 176,2,0,1,379, | ||
3043 | 545,18,1,379,132, | ||
3044 | 2,0,1,380,546, | ||
3045 | 18,1,380,547,20, | ||
3046 | 548,4,16,67,0, | ||
3047 | 111,0,110,0,115, | ||
3048 | 0,116,0,97,0, | ||
3049 | 110,0,116,0,1, | ||
3050 | 125,1,2,2,0, | ||
3051 | 1,381,549,18,1, | ||
3052 | 381,338,2,0,1, | ||
3053 | 2610,550,18,1,2610, | ||
3054 | 551,23,552,4,6, | ||
3055 | 69,0,79,0,70, | ||
3056 | 0,1,2,1,6, | ||
3057 | 2,0,1,2455,553, | ||
3058 | 18,1,2455,156,2, | ||
3059 | 0,1,371,554,18, | ||
3060 | 1,371,555,20,556, | ||
3061 | 4,24,70,0,117, | ||
3062 | 0,110,0,99,0, | ||
3063 | 116,0,105,0,111, | ||
3064 | 0,110,0,67,0, | ||
3065 | 97,0,108,0,108, | ||
3066 | 0,1,121,1,2, | ||
3067 | 2,0,1,942,557, | ||
3068 | 18,1,942,168,2, | ||
3069 | 0,1,2533,558,18, | ||
3070 | 1,2533,132,2,0, | ||
3071 | 1,387,559,18,1, | ||
3072 | 387,168,2,0,1, | ||
3073 | 2394,560,18,1,2394, | ||
3074 | 561,20,562,4,38, | ||
3075 | 67,0,79,0,76, | ||
3076 | 0,76,0,73,0, | ||
3077 | 83,0,73,0,79, | ||
3078 | 0,78,0,95,0, | ||
3079 | 69,0,78,0,68, | ||
3080 | 0,95,0,69,0, | ||
3081 | 86,0,69,0,78, | ||
3082 | 0,84,0,1,63, | ||
3083 | 1,1,2,0,1, | ||
3084 | 1514,563,18,1,1514, | ||
3085 | 160,2,0,1,1515, | ||
3086 | 564,18,1,1515,360, | ||
3087 | 2,0,1,2073,565, | ||
3088 | 18,1,2073,160,2, | ||
3089 | 0,1,2074,566,18, | ||
3090 | 1,2074,153,2,0, | ||
3091 | 1,406,567,18,1, | ||
3092 | 406,143,2,0,1, | ||
3093 | 1521,568,18,1,1521, | ||
3094 | 168,2,0,1,2556, | ||
3095 | 569,18,1,2556,168, | ||
3096 | 2,0,1,412,570, | ||
3097 | 18,1,412,168,2, | ||
3098 | 0,1,2023,571,18, | ||
3099 | 1,2023,400,2,0, | ||
3100 | 1,1442,572,18,1, | ||
3101 | 1442,160,2,0,1, | ||
3102 | 2035,573,18,1,2035, | ||
3103 | 190,2,0,1,2036, | ||
3104 | 574,18,1,2036,575, | ||
3105 | 20,576,4,26,74, | ||
3106 | 0,117,0,109,0, | ||
3107 | 112,0,83,0,116, | ||
3108 | 0,97,0,116,0, | ||
3109 | 101,0,109,0,101, | ||
3110 | 0,110,0,116,0, | ||
3111 | 1,114,1,2,2, | ||
3112 | 0,1,431,577,18, | ||
3113 | 1,431,143,2,0, | ||
3114 | 1,2104,578,18,1, | ||
3115 | 2104,254,2,0,1, | ||
3116 | 2105,579,18,1,2105, | ||
3117 | 479,2,0,1,1550, | ||
3118 | 580,18,1,1550,160, | ||
3119 | 2,0,1,437,581, | ||
3120 | 18,1,437,168,2, | ||
3121 | 0,1,2044,582,18, | ||
3122 | 1,2044,190,2,0, | ||
3123 | 1,2586,583,18,1, | ||
3124 | 2586,190,2,0,1, | ||
3125 | 1555,584,18,1,1555, | ||
3126 | 168,2,0,1,1001, | ||
3127 | 585,18,1,1001,555, | ||
3128 | 2,0,1,1002,586, | ||
3129 | 18,1,1002,547,2, | ||
3130 | 0,1,447,587,18, | ||
3131 | 1,447,368,2,0, | ||
3132 | 1,2375,588,18,1, | ||
3133 | 2375,589,20,590,4, | ||
3134 | 34,82,0,69,0, | ||
3135 | 77,0,79,0,84, | ||
3136 | 0,69,0,95,0, | ||
3137 | 68,0,65,0,84, | ||
3138 | 0,65,0,95,0, | ||
3139 | 69,0,86,0,69, | ||
3140 | 0,78,0,84,0, | ||
3141 | 1,82,1,1,2, | ||
3142 | 0,1,1010,591,18, | ||
3143 | 1,1010,160,2,0, | ||
3144 | 1,1011,592,18,1, | ||
3145 | 1011,153,2,0,1, | ||
3146 | 1012,593,18,1,1012, | ||
3147 | 168,2,0,1,1013, | ||
3148 | 594,18,1,1013,153, | ||
3149 | 2,0,1,459,595, | ||
3150 | 18,1,459,596,20, | ||
3151 | 597,4,24,76,0, | ||
3152 | 69,0,70,0,84, | ||
3153 | 0,95,0,66,0, | ||
3154 | 82,0,65,0,67, | ||
3155 | 0,75,0,69,0, | ||
3156 | 84,0,1,27,1, | ||
3157 | 1,2,0,1,1574, | ||
3158 | 598,18,1,1574,190, | ||
3159 | 2,0,1,461,599, | ||
3160 | 18,1,461,600,20, | ||
3161 | 601,4,24,65,0, | ||
3162 | 114,0,103,0,117, | ||
3163 | 0,109,0,101,0, | ||
3164 | 110,0,116,0,76, | ||
3165 | 0,105,0,115,0, | ||
3166 | 116,0,1,122,1, | ||
3167 | 2,2,0,1,462, | ||
3168 | 602,18,1,462,143, | ||
3169 | 2,0,1,2608,603, | ||
3170 | 18,1,2608,604,20, | ||
3171 | 605,4,50,71,0, | ||
3172 | 108,0,111,0,98, | ||
3173 | 0,97,0,108,0, | ||
3174 | 86,0,97,0,114, | ||
3175 | 0,105,0,97,0, | ||
3176 | 98,0,108,0,101, | ||
3177 | 0,68,0,101,0, | ||
3178 | 99,0,108,0,97, | ||
3179 | 0,114,0,97,0, | ||
3180 | 116,0,105,0,111, | ||
3181 | 0,110,0,1,97, | ||
3182 | 1,2,2,0,1, | ||
3183 | 464,606,18,1,464, | ||
3184 | 607,20,608,4,16, | ||
3185 | 65,0,114,0,103, | ||
3186 | 0,117,0,109,0, | ||
3187 | 101,0,110,0,116, | ||
3188 | 0,1,123,1,2, | ||
3189 | 2,0,1,2531,609, | ||
3190 | 18,1,2531,465,2, | ||
3191 | 0,1,1585,610,18, | ||
3192 | 1,1585,611,20,612, | ||
3193 | 4,12,82,0,69, | ||
3194 | 0,84,0,85,0, | ||
3195 | 82,0,78,0,1, | ||
3196 | 50,1,1,2,0, | ||
3197 | 1,476,613,18,1, | ||
3198 | 476,614,20,615,4, | ||
3199 | 30,83,0,84,0, | ||
3200 | 82,0,73,0,78, | ||
3201 | 0,71,0,95,0, | ||
3202 | 67,0,79,0,78, | ||
3203 | 0,83,0,84,0, | ||
3204 | 65,0,78,0,84, | ||
3205 | 0,1,3,1,1, | ||
3206 | 2,0,1,477,616, | ||
3207 | 18,1,477,617,20, | ||
3208 | 618,4,28,70,0, | ||
3209 | 76,0,79,0,65, | ||
3210 | 0,84,0,95,0, | ||
3211 | 67,0,79,0,78, | ||
3212 | 0,83,0,84,0, | ||
3213 | 65,0,78,0,84, | ||
3214 | 0,1,94,1,1, | ||
3215 | 2,0,1,478,619, | ||
3216 | 18,1,478,620,20, | ||
3217 | 621,4,40,72,0, | ||
3218 | 69,0,88,0,95, | ||
3219 | 0,73,0,78,0, | ||
3220 | 84,0,69,0,71, | ||
3221 | 0,69,0,82,0, | ||
3222 | 95,0,67,0,79, | ||
3223 | 0,78,0,83,0, | ||
3224 | 84,0,65,0,78, | ||
3225 | 0,84,0,1,93, | ||
3226 | 1,1,2,0,1, | ||
3227 | 479,622,18,1,479, | ||
3228 | 623,20,624,4,32, | ||
3229 | 73,0,78,0,84, | ||
3230 | 0,69,0,71,0, | ||
3231 | 69,0,82,0,95, | ||
3232 | 0,67,0,79,0, | ||
3233 | 78,0,83,0,84, | ||
3234 | 0,65,0,78,0, | ||
3235 | 84,0,1,92,1, | ||
3236 | 1,2,0,1,480, | ||
3237 | 625,18,1,480,626, | ||
3238 | 20,627,4,26,82, | ||
3239 | 0,73,0,71,0, | ||
3240 | 72,0,84,0,95, | ||
3241 | 0,66,0,82,0, | ||
3242 | 65,0,67,0,75, | ||
3243 | 0,69,0,84,0, | ||
3244 | 1,28,1,1,2, | ||
3245 | 0,1,481,628,18, | ||
3246 | 1,481,607,2,0, | ||
3247 | 1,2550,629,18,1, | ||
3248 | 2550,360,2,0,1, | ||
3249 | 2606,630,18,1,2606, | ||
3250 | 604,2,0,1,1048, | ||
3251 | 631,18,1,1048,168, | ||
3252 | 2,0,1,2042,632, | ||
3253 | 18,1,2042,633,20, | ||
3254 | 634,4,20,65,0, | ||
3255 | 115,0,115,0,105, | ||
3256 | 0,103,0,110,0, | ||
3257 | 109,0,101,0,110, | ||
3258 | 0,116,0,1,110, | ||
3259 | 1,2,2,0,1, | ||
3260 | 2043,635,18,1,2043, | ||
3261 | 190,2,0,1,1620, | ||
3262 | 636,18,1,1620,160, | ||
3263 | 2,0,1,1621,637, | ||
3264 | 18,1,1621,150,2, | ||
3265 | 0,1,1622,638,18, | ||
3266 | 1,1622,360,2,0, | ||
3267 | 1,509,639,18,1, | ||
3268 | 509,143,2,0,1, | ||
3269 | 1628,640,18,1,1628, | ||
3270 | 168,2,0,1,515, | ||
3271 | 641,18,1,515,168, | ||
3272 | 2,0,1,2369,642, | ||
3273 | 18,1,2369,643,20, | ||
3274 | 644,4,22,84,0, | ||
3275 | 79,0,85,0,67, | ||
3276 | 0,72,0,95,0, | ||
3277 | 69,0,86,0,69, | ||
3278 | 0,78,0,84,0, | ||
3279 | 1,88,1,1,2, | ||
3280 | 0,1,2587,645,18, | ||
3281 | 1,2587,646,20,647, | ||
3282 | 4,34,71,0,108, | ||
3283 | 0,111,0,98,0, | ||
3284 | 97,0,108,0,68, | ||
3285 | 0,101,0,102,0, | ||
3286 | 105,0,110,0,105, | ||
3287 | 0,116,0,105,0, | ||
3288 | 111,0,110,0,115, | ||
3289 | 0,1,96,1,2, | ||
3290 | 2,0,1,525,648, | ||
3291 | 18,1,525,368,2, | ||
3292 | 0,1,2197,649,18, | ||
3293 | 1,2197,153,2,0, | ||
3294 | 1,1591,650,18,1, | ||
3295 | 1591,168,2,0,1, | ||
3296 | 2135,651,18,1,2135, | ||
3297 | 254,2,0,1,2598, | ||
3298 | 652,18,1,2598,473, | ||
3299 | 2,0,1,1094,653, | ||
3300 | 18,1,1094,600,2, | ||
3301 | 0,1,1096,654,18, | ||
3302 | 1,1096,153,2,0, | ||
3303 | 1,1657,655,18,1, | ||
3304 | 1657,190,2,0,1, | ||
3305 | 1658,656,18,1,1658, | ||
3306 | 657,20,658,4,6, | ||
3307 | 70,0,79,0,82, | ||
3308 | 0,1,46,1,1, | ||
3309 | 2,0,1,1659,659, | ||
3310 | 18,1,1659,135,2, | ||
3311 | 0,1,2609,104,1, | ||
3312 | 1665,660,18,1,1665, | ||
3313 | 168,2,0,1,2226, | ||
3314 | 661,18,1,2226,254, | ||
3315 | 2,0,1,1113,662, | ||
3316 | 18,1,1113,176,2, | ||
3317 | 0,663,5,0,664, | ||
3318 | 5,319,1,2,665, | ||
3319 | 19,552,1,2,666, | ||
3320 | 5,6,1,2531,667, | ||
3321 | 17,668,15,669,4, | ||
3322 | 14,37,0,83,0, | ||
3323 | 116,0,97,0,116, | ||
3324 | 0,101,0,115,0, | ||
3325 | 1,-1,1,5,670, | ||
3326 | 20,671,4,16,83, | ||
3327 | 0,116,0,97,0, | ||
3328 | 116,0,101,0,115, | ||
3329 | 0,95,0,50,0, | ||
3330 | 1,151,1,3,1, | ||
3331 | 3,1,2,672,22, | ||
3332 | 1,12,1,2532,673, | ||
3333 | 17,674,15,669,1, | ||
3334 | -1,1,5,675,20, | ||
3335 | 676,4,16,83,0, | ||
3336 | 116,0,97,0,116, | ||
3337 | 0,101,0,115,0, | ||
3338 | 95,0,49,0,1, | ||
3339 | 150,1,3,1,2, | ||
3340 | 1,1,677,22,1, | ||
3341 | 11,1,2598,678,17, | ||
3342 | 679,15,680,4,30, | ||
3343 | 37,0,76,0,83, | ||
3344 | 0,76,0,80,0, | ||
3345 | 114,0,111,0,103, | ||
3346 | 0,114,0,97,0, | ||
3347 | 109,0,82,0,111, | ||
3348 | 0,111,0,116,0, | ||
3349 | 1,-1,1,5,681, | ||
3350 | 20,682,4,32,76, | ||
3351 | 0,83,0,76,0, | ||
3352 | 80,0,114,0,111, | ||
3353 | 0,103,0,114,0, | ||
3354 | 97,0,109,0,82, | ||
3355 | 0,111,0,111,0, | ||
3356 | 116,0,95,0,49, | ||
3357 | 0,1,140,1,3, | ||
3358 | 1,3,1,2,683, | ||
3359 | 22,1,1,1,2526, | ||
3360 | 684,17,685,15,686, | ||
3361 | 4,12,37,0,83, | ||
3362 | 0,116,0,97,0, | ||
3363 | 116,0,101,0,1, | ||
3364 | -1,1,5,687,20, | ||
3365 | 688,4,14,83,0, | ||
3366 | 116,0,97,0,116, | ||
3367 | 0,101,0,95,0, | ||
3368 | 49,0,1,152,1, | ||
3369 | 3,1,5,1,4, | ||
3370 | 689,22,1,13,1, | ||
3371 | 2528,690,17,691,15, | ||
3372 | 680,1,-1,1,5, | ||
3373 | 692,20,693,4,32, | ||
3374 | 76,0,83,0,76, | ||
3375 | 0,80,0,114,0, | ||
3376 | 111,0,103,0,114, | ||
3377 | 0,97,0,109,0, | ||
3378 | 82,0,111,0,111, | ||
3379 | 0,116,0,95,0, | ||
3380 | 50,0,1,141,1, | ||
3381 | 3,1,2,1,1, | ||
3382 | 694,22,1,2,1, | ||
3383 | 2452,695,17,696,15, | ||
3384 | 686,1,-1,1,5, | ||
3385 | 697,20,698,4,14, | ||
3386 | 83,0,116,0,97, | ||
3387 | 0,116,0,101,0, | ||
3388 | 95,0,50,0,1, | ||
3389 | 153,1,3,1,6, | ||
3390 | 1,5,699,22,1, | ||
3391 | 14,1,3,700,19, | ||
3392 | 615,1,3,701,5, | ||
3393 | 91,1,256,702,16, | ||
3394 | 0,613,1,1261,703, | ||
3395 | 16,0,613,1,509, | ||
3396 | 704,16,0,613,1, | ||
3397 | 2197,705,16,0,613, | ||
3398 | 1,1515,706,16,0, | ||
3399 | 613,1,2021,707,17, | ||
3400 | 708,15,709,4,24, | ||
3401 | 37,0,73,0,102, | ||
3402 | 0,83,0,116,0, | ||
3403 | 97,0,116,0,101, | ||
3404 | 0,109,0,101,0, | ||
3405 | 110,0,116,0,1, | ||
3406 | -1,1,5,710,20, | ||
3407 | 711,4,26,73,0, | ||
3408 | 102,0,83,0,116, | ||
3409 | 0,97,0,116,0, | ||
3410 | 101,0,109,0,101, | ||
3411 | 0,110,0,116,0, | ||
3412 | 95,0,50,0,1, | ||
3413 | 181,1,3,1,8, | ||
3414 | 1,7,712,22,1, | ||
3415 | 44,1,1775,713,16, | ||
3416 | 0,613,1,2029,714, | ||
3417 | 17,715,15,716,4, | ||
3418 | 20,37,0,83,0, | ||
3419 | 116,0,97,0,116, | ||
3420 | 0,101,0,109,0, | ||
3421 | 101,0,110,0,116, | ||
3422 | 0,1,-1,1,5, | ||
3423 | 717,20,718,4,24, | ||
3424 | 83,0,116,0,97, | ||
3425 | 0,116,0,101,0, | ||
3426 | 109,0,101,0,110, | ||
3427 | 0,116,0,95,0, | ||
3428 | 49,0,50,0,1, | ||
3429 | 175,1,3,1,2, | ||
3430 | 1,1,719,22,1, | ||
3431 | 38,1,2030,720,17, | ||
3432 | 721,15,716,1,-1, | ||
3433 | 1,5,722,20,723, | ||
3434 | 4,24,83,0,116, | ||
3435 | 0,97,0,116,0, | ||
3436 | 101,0,109,0,101, | ||
3437 | 0,110,0,116,0, | ||
3438 | 95,0,49,0,49, | ||
3439 | 0,1,174,1,3, | ||
3440 | 1,2,1,1,724, | ||
3441 | 22,1,37,1,2031, | ||
3442 | 725,17,726,15,716, | ||
3443 | 1,-1,1,5,727, | ||
3444 | 20,728,4,24,83, | ||
3445 | 0,116,0,97,0, | ||
3446 | 116,0,101,0,109, | ||
3447 | 0,101,0,110,0, | ||
3448 | 116,0,95,0,49, | ||
3449 | 0,48,0,1,173, | ||
3450 | 1,3,1,2,1, | ||
3451 | 1,729,22,1,36, | ||
3452 | 1,2032,730,17,731, | ||
3453 | 15,716,1,-1,1, | ||
3454 | 5,732,20,733,4, | ||
3455 | 22,83,0,116,0, | ||
3456 | 97,0,116,0,101, | ||
3457 | 0,109,0,101,0, | ||
3458 | 110,0,116,0,95, | ||
3459 | 0,57,0,1,172, | ||
3460 | 1,3,1,2,1, | ||
3461 | 1,734,22,1,35, | ||
3462 | 1,2033,735,17,736, | ||
3463 | 15,716,1,-1,1, | ||
3464 | 5,737,20,738,4, | ||
3465 | 22,83,0,116,0, | ||
3466 | 97,0,116,0,101, | ||
3467 | 0,109,0,101,0, | ||
3468 | 110,0,116,0,95, | ||
3469 | 0,56,0,1,171, | ||
3470 | 1,3,1,2,1, | ||
3471 | 1,739,22,1,34, | ||
3472 | 1,277,740,16,0, | ||
3473 | 613,1,2035,741,17, | ||
3474 | 742,15,716,1,-1, | ||
3475 | 1,5,743,20,744, | ||
3476 | 4,22,83,0,116, | ||
3477 | 0,97,0,116,0, | ||
3478 | 101,0,109,0,101, | ||
3479 | 0,110,0,116,0, | ||
3480 | 95,0,55,0,1, | ||
3481 | 170,1,3,1,3, | ||
3482 | 1,2,745,22,1, | ||
3483 | 33,1,2037,746,17, | ||
3484 | 747,15,716,1,-1, | ||
3485 | 1,5,748,20,749, | ||
3486 | 4,22,83,0,116, | ||
3487 | 0,97,0,116,0, | ||
3488 | 101,0,109,0,101, | ||
3489 | 0,110,0,116,0, | ||
3490 | 95,0,54,0,1, | ||
3491 | 169,1,3,1,3, | ||
3492 | 1,2,750,22,1, | ||
3493 | 32,1,2039,751,17, | ||
3494 | 752,15,716,1,-1, | ||
3495 | 1,5,753,20,754, | ||
3496 | 4,22,83,0,116, | ||
3497 | 0,97,0,116,0, | ||
3498 | 101,0,109,0,101, | ||
3499 | 0,110,0,116,0, | ||
3500 | 95,0,53,0,1, | ||
3501 | 168,1,3,1,3, | ||
3502 | 1,2,755,22,1, | ||
3503 | 31,1,32,756,16, | ||
3504 | 0,613,1,2041,757, | ||
3505 | 17,758,15,716,1, | ||
3506 | -1,1,5,759,20, | ||
3507 | 760,4,22,83,0, | ||
3508 | 116,0,97,0,116, | ||
3509 | 0,101,0,109,0, | ||
3510 | 101,0,110,0,116, | ||
3511 | 0,95,0,52,0, | ||
3512 | 1,167,1,3,1, | ||
3513 | 3,1,2,761,22, | ||
3514 | 1,30,1,2043,762, | ||
3515 | 17,763,15,716,1, | ||
3516 | -1,1,5,764,20, | ||
3517 | 765,4,22,83,0, | ||
3518 | 116,0,97,0,116, | ||
3519 | 0,101,0,109,0, | ||
3520 | 101,0,110,0,116, | ||
3521 | 0,95,0,50,0, | ||
3522 | 1,165,1,3,1, | ||
3523 | 3,1,2,766,22, | ||
3524 | 1,28,1,2044,767, | ||
3525 | 17,768,15,716,1, | ||
3526 | -1,1,5,254,1, | ||
3527 | 1,1,1,769,22, | ||
3528 | 1,26,1,2550,770, | ||
3529 | 16,0,613,1,41, | ||
3530 | 771,16,0,613,1, | ||
3531 | 1297,772,16,0,613, | ||
3532 | 1,43,773,16,0, | ||
3533 | 613,1,1802,774,17, | ||
3534 | 775,15,776,4,16, | ||
3535 | 37,0,70,0,111, | ||
3536 | 0,114,0,76,0, | ||
3537 | 111,0,111,0,112, | ||
3538 | 0,1,-1,1,5, | ||
3539 | 777,20,778,4,18, | ||
3540 | 70,0,111,0,114, | ||
3541 | 0,76,0,111,0, | ||
3542 | 111,0,112,0,95, | ||
3543 | 0,49,0,1,188, | ||
3544 | 1,3,1,10,1, | ||
3545 | 9,779,22,1,51, | ||
3546 | 1,1804,780,16,0, | ||
3547 | 613,1,299,781,16, | ||
3548 | 0,613,1,2309,782, | ||
3549 | 16,0,613,1,52, | ||
3550 | 783,16,0,613,1, | ||
3551 | 525,784,16,0,613, | ||
3552 | 1,62,785,16,0, | ||
3553 | 613,1,2074,786,16, | ||
3554 | 0,613,1,1574,787, | ||
3555 | 17,788,15,716,1, | ||
3556 | -1,1,5,789,20, | ||
3557 | 790,4,22,83,0, | ||
3558 | 116,0,97,0,116, | ||
3559 | 0,101,0,109,0, | ||
3560 | 101,0,110,0,116, | ||
3561 | 0,95,0,51,0, | ||
3562 | 1,166,1,3,1, | ||
3563 | 3,1,2,791,22, | ||
3564 | 1,29,1,71,792, | ||
3565 | 16,0,613,1,76, | ||
3566 | 793,16,0,613,1, | ||
3567 | 1834,794,16,0,613, | ||
3568 | 1,1585,795,16,0, | ||
3569 | 613,1,1335,796,16, | ||
3570 | 0,613,1,79,797, | ||
3571 | 16,0,613,1,85, | ||
3572 | 798,16,0,613,1, | ||
3573 | 89,799,16,0,613, | ||
3574 | 1,346,800,16,0, | ||
3575 | 613,1,2104,801,17, | ||
3576 | 802,15,709,1,-1, | ||
3577 | 1,5,803,20,804, | ||
3578 | 4,26,73,0,102, | ||
3579 | 0,83,0,116,0, | ||
3580 | 97,0,116,0,101, | ||
3581 | 0,109,0,101,0, | ||
3582 | 110,0,116,0,95, | ||
3583 | 0,51,0,1,182, | ||
3584 | 1,3,1,6,1, | ||
3585 | 5,805,22,1,45, | ||
3586 | 1,2105,806,16,0, | ||
3587 | 613,1,2358,807,17, | ||
3588 | 808,15,809,4,28, | ||
3589 | 37,0,83,0,116, | ||
3590 | 0,97,0,116,0, | ||
3591 | 101,0,109,0,101, | ||
3592 | 0,110,0,116,0, | ||
3593 | 76,0,105,0,115, | ||
3594 | 0,116,0,1,-1, | ||
3595 | 1,5,810,20,811, | ||
3596 | 4,30,83,0,116, | ||
3597 | 0,97,0,116,0, | ||
3598 | 101,0,109,0,101, | ||
3599 | 0,110,0,116,0, | ||
3600 | 76,0,105,0,115, | ||
3601 | 0,116,0,95,0, | ||
3602 | 49,0,1,162,1, | ||
3603 | 3,1,2,1,1, | ||
3604 | 812,22,1,24,1, | ||
3605 | 2360,813,17,814,15, | ||
3606 | 815,4,36,37,0, | ||
3607 | 67,0,111,0,109, | ||
3608 | 0,112,0,111,0, | ||
3609 | 117,0,110,0,100, | ||
3610 | 0,83,0,116,0, | ||
3611 | 97,0,116,0,101, | ||
3612 | 0,109,0,101,0, | ||
3613 | 110,0,116,0,1, | ||
3614 | -1,1,5,816,20, | ||
3615 | 817,4,38,67,0, | ||
3616 | 111,0,109,0,112, | ||
3617 | 0,111,0,117,0, | ||
3618 | 110,0,100,0,83, | ||
3619 | 0,116,0,97,0, | ||
3620 | 116,0,101,0,109, | ||
3621 | 0,101,0,110,0, | ||
3622 | 116,0,95,0,49, | ||
3623 | 0,1,160,1,3, | ||
3624 | 1,3,1,2,818, | ||
3625 | 22,1,22,1,97, | ||
3626 | 819,16,0,613,1, | ||
3627 | 1860,820,17,821,15, | ||
3628 | 822,4,34,37,0, | ||
3629 | 68,0,111,0,87, | ||
3630 | 0,104,0,105,0, | ||
3631 | 108,0,101,0,83, | ||
3632 | 0,116,0,97,0, | ||
3633 | 116,0,101,0,109, | ||
3634 | 0,101,0,110,0, | ||
3635 | 116,0,1,-1,1, | ||
3636 | 5,823,20,824,4, | ||
3637 | 36,68,0,111,0, | ||
3638 | 87,0,104,0,105, | ||
3639 | 0,108,0,101,0, | ||
3640 | 83,0,116,0,97, | ||
3641 | 0,116,0,101,0, | ||
3642 | 109,0,101,0,110, | ||
3643 | 0,116,0,95,0, | ||
3644 | 49,0,1,186,1, | ||
3645 | 3,1,8,1,7, | ||
3646 | 825,22,1,49,1, | ||
3647 | 102,826,16,0,613, | ||
3648 | 1,112,827,16,0, | ||
3649 | 613,1,1117,828,16, | ||
3650 | 0,613,1,1873,829, | ||
3651 | 17,830,15,822,1, | ||
3652 | -1,1,5,831,20, | ||
3653 | 832,4,36,68,0, | ||
3654 | 111,0,87,0,104, | ||
3655 | 0,105,0,108,0, | ||
3656 | 101,0,83,0,116, | ||
3657 | 0,97,0,116,0, | ||
3658 | 101,0,109,0,101, | ||
3659 | 0,110,0,116,0, | ||
3660 | 95,0,50,0,1, | ||
3661 | 187,1,3,1,8, | ||
3662 | 1,7,833,22,1, | ||
3663 | 50,1,1876,834,16, | ||
3664 | 0,613,1,124,835, | ||
3665 | 16,0,613,1,2135, | ||
3666 | 836,17,837,15,709, | ||
3667 | 1,-1,1,5,838, | ||
3668 | 20,839,4,26,73, | ||
3669 | 0,102,0,83,0, | ||
3670 | 116,0,97,0,116, | ||
3671 | 0,101,0,109,0, | ||
3672 | 101,0,110,0,116, | ||
3673 | 0,95,0,52,0, | ||
3674 | 1,183,1,3,1, | ||
3675 | 8,1,7,840,22, | ||
3676 | 1,46,1,381,841, | ||
3677 | 16,0,613,1,322, | ||
3678 | 842,16,0,613,1, | ||
3679 | 137,843,16,0,613, | ||
3680 | 1,1901,844,16,0, | ||
3681 | 613,1,1153,845,16, | ||
3682 | 0,613,1,151,846, | ||
3683 | 16,0,613,1,1407, | ||
3684 | 847,16,0,613,1, | ||
3685 | 1659,848,16,0,613, | ||
3686 | 1,406,849,16,0, | ||
3687 | 613,1,1371,850,16, | ||
3688 | 0,613,1,166,851, | ||
3689 | 16,0,613,1,1622, | ||
3690 | 852,16,0,613,1, | ||
3691 | 2354,853,17,854,15, | ||
3692 | 809,1,-1,1,5, | ||
3693 | 855,20,856,4,30, | ||
3694 | 83,0,116,0,97, | ||
3695 | 0,116,0,101,0, | ||
3696 | 109,0,101,0,110, | ||
3697 | 0,116,0,76,0, | ||
3698 | 105,0,115,0,116, | ||
3699 | 0,95,0,50,0, | ||
3700 | 1,163,1,3,1, | ||
3701 | 3,1,2,857,22, | ||
3702 | 1,25,1,2355,858, | ||
3703 | 17,859,15,815,1, | ||
3704 | -1,1,5,860,20, | ||
3705 | 861,4,38,67,0, | ||
3706 | 111,0,109,0,112, | ||
3707 | 0,111,0,117,0, | ||
3708 | 110,0,100,0,83, | ||
3709 | 0,116,0,97,0, | ||
3710 | 116,0,101,0,109, | ||
3711 | 0,101,0,110,0, | ||
3712 | 116,0,95,0,50, | ||
3713 | 0,1,161,1,3, | ||
3714 | 1,4,1,3,862, | ||
3715 | 22,1,23,1,1931, | ||
3716 | 863,17,864,15,865, | ||
3717 | 4,30,37,0,87, | ||
3718 | 0,104,0,105,0, | ||
3719 | 108,0,101,0,83, | ||
3720 | 0,116,0,97,0, | ||
3721 | 116,0,101,0,109, | ||
3722 | 0,101,0,110,0, | ||
3723 | 116,0,1,-1,1, | ||
3724 | 5,866,20,867,4, | ||
3725 | 32,87,0,104,0, | ||
3726 | 105,0,108,0,101, | ||
3727 | 0,83,0,116,0, | ||
3728 | 97,0,116,0,101, | ||
3729 | 0,109,0,101,0, | ||
3730 | 110,0,116,0,95, | ||
3731 | 0,49,0,1,184, | ||
3732 | 1,3,1,6,1, | ||
3733 | 5,868,22,1,47, | ||
3734 | 1,1933,869,16,0, | ||
3735 | 613,1,431,870,16, | ||
3736 | 0,613,1,182,871, | ||
3737 | 16,0,613,1,1189, | ||
3738 | 872,16,0,613,1, | ||
3739 | 1443,873,16,0,613, | ||
3740 | 1,1695,874,16,0, | ||
3741 | 613,1,447,875,16, | ||
3742 | 0,613,1,199,876, | ||
3743 | 16,0,613,1,1958, | ||
3744 | 877,16,0,613,1, | ||
3745 | 1657,878,17,879,15, | ||
3746 | 716,1,-1,1,5, | ||
3747 | 880,20,881,4,22, | ||
3748 | 83,0,116,0,97, | ||
3749 | 0,116,0,101,0, | ||
3750 | 109,0,101,0,110, | ||
3751 | 0,116,0,95,0, | ||
3752 | 49,0,1,164,1, | ||
3753 | 3,1,3,1,2, | ||
3754 | 882,22,1,27,1, | ||
3755 | 459,883,16,0,613, | ||
3756 | 1,462,884,16,0, | ||
3757 | 613,1,217,885,16, | ||
3758 | 0,613,1,2226,886, | ||
3759 | 17,887,15,865,1, | ||
3760 | -1,1,5,888,20, | ||
3761 | 889,4,32,87,0, | ||
3762 | 104,0,105,0,108, | ||
3763 | 0,101,0,83,0, | ||
3764 | 116,0,97,0,116, | ||
3765 | 0,101,0,109,0, | ||
3766 | 101,0,110,0,116, | ||
3767 | 0,95,0,50,0, | ||
3768 | 1,185,1,3,1, | ||
3769 | 6,1,5,890,22, | ||
3770 | 1,48,1,1225,891, | ||
3771 | 16,0,613,1,1479, | ||
3772 | 892,16,0,613,1, | ||
3773 | 1731,893,16,0,613, | ||
3774 | 1,1989,894,17,895, | ||
3775 | 15,709,1,-1,1, | ||
3776 | 5,896,20,897,4, | ||
3777 | 26,73,0,102,0, | ||
3778 | 83,0,116,0,97, | ||
3779 | 0,116,0,101,0, | ||
3780 | 109,0,101,0,110, | ||
3781 | 0,116,0,95,0, | ||
3782 | 49,0,1,180,1, | ||
3783 | 3,1,6,1,5, | ||
3784 | 898,22,1,43,1, | ||
3785 | 1990,899,16,0,613, | ||
3786 | 1,236,900,16,0, | ||
3787 | 613,1,1756,901,16, | ||
3788 | 0,613,1,4,902, | ||
3789 | 19,184,1,4,903, | ||
3790 | 5,96,1,256,904, | ||
3791 | 16,0,542,1,1261, | ||
3792 | 905,16,0,542,1, | ||
3793 | 509,906,16,0,542, | ||
3794 | 1,2197,907,16,0, | ||
3795 | 542,1,1515,908,16, | ||
3796 | 0,542,1,2021,707, | ||
3797 | 1,1775,909,16,0, | ||
3798 | 542,1,2029,714,1, | ||
3799 | 2030,720,1,2031,725, | ||
3800 | 1,2032,730,1,2033, | ||
3801 | 735,1,277,910,16, | ||
3802 | 0,542,1,2035,741, | ||
3803 | 1,2037,746,1,2039, | ||
3804 | 751,1,32,911,16, | ||
3805 | 0,542,1,2041,757, | ||
3806 | 1,2043,762,1,2044, | ||
3807 | 767,1,40,912,16, | ||
3808 | 0,186,1,41,913, | ||
3809 | 16,0,542,1,1297, | ||
3810 | 914,16,0,542,1, | ||
3811 | 43,915,16,0,542, | ||
3812 | 1,44,916,16,0, | ||
3813 | 186,1,1802,774,1, | ||
3814 | 1804,917,16,0,542, | ||
3815 | 1,299,918,16,0, | ||
3816 | 542,1,2309,919,16, | ||
3817 | 0,542,1,52,920, | ||
3818 | 16,0,542,1,47, | ||
3819 | 921,16,0,182,1, | ||
3820 | 525,922,16,0,542, | ||
3821 | 1,63,923,16,0, | ||
3822 | 200,1,2074,924,16, | ||
3823 | 0,542,1,1574,787, | ||
3824 | 1,66,925,16,0, | ||
3825 | 198,1,71,926,16, | ||
3826 | 0,542,1,76,927, | ||
3827 | 16,0,542,1,1834, | ||
3828 | 928,16,0,542,1, | ||
3829 | 79,929,16,0,542, | ||
3830 | 1,1335,930,16,0, | ||
3831 | 542,1,322,931,16, | ||
3832 | 0,542,1,85,932, | ||
3833 | 16,0,542,1,89, | ||
3834 | 933,16,0,542,1, | ||
3835 | 346,934,16,0,542, | ||
3836 | 1,2104,801,1,2105, | ||
3837 | 935,16,0,542,1, | ||
3838 | 2358,807,1,2360,813, | ||
3839 | 1,97,936,16,0, | ||
3840 | 542,1,1860,820,1, | ||
3841 | 102,937,16,0,542, | ||
3842 | 1,1114,938,16,0, | ||
3843 | 182,1,112,939,16, | ||
3844 | 0,542,1,1117,940, | ||
3845 | 16,0,542,1,1873, | ||
3846 | 829,1,1876,941,16, | ||
3847 | 0,542,1,2550,942, | ||
3848 | 16,0,542,1,124, | ||
3849 | 943,16,0,542,1, | ||
3850 | 2135,836,1,381,944, | ||
3851 | 16,0,542,1,137, | ||
3852 | 945,16,0,542,1, | ||
3853 | 1901,946,16,0,542, | ||
3854 | 1,1153,947,16,0, | ||
3855 | 542,1,151,948,16, | ||
3856 | 0,542,1,1407,949, | ||
3857 | 16,0,542,1,1659, | ||
3858 | 950,16,0,542,1, | ||
3859 | 406,951,16,0,542, | ||
3860 | 1,1371,952,16,0, | ||
3861 | 542,1,166,953,16, | ||
3862 | 0,542,1,1622,954, | ||
3863 | 16,0,542,1,2354, | ||
3864 | 853,1,2355,858,1, | ||
3865 | 1931,863,1,1933,955, | ||
3866 | 16,0,542,1,431, | ||
3867 | 956,16,0,542,1, | ||
3868 | 1585,957,16,0,542, | ||
3869 | 1,182,958,16,0, | ||
3870 | 542,1,1189,959,16, | ||
3871 | 0,542,1,1443,960, | ||
3872 | 16,0,542,1,1695, | ||
3873 | 961,16,0,542,1, | ||
3874 | 447,962,16,0,542, | ||
3875 | 1,199,963,16,0, | ||
3876 | 542,1,1958,964,16, | ||
3877 | 0,542,1,1657,878, | ||
3878 | 1,459,965,16,0, | ||
3879 | 542,1,462,966,16, | ||
3880 | 0,542,1,217,967, | ||
3881 | 16,0,542,1,2226, | ||
3882 | 886,1,1225,968,16, | ||
3883 | 0,542,1,1479,969, | ||
3884 | 16,0,542,1,1731, | ||
3885 | 970,16,0,542,1, | ||
3886 | 1989,894,1,1990,971, | ||
3887 | 16,0,542,1,236, | ||
3888 | 972,16,0,542,1, | ||
3889 | 1756,973,16,0,542, | ||
3890 | 1,5,974,19,181, | ||
3891 | 1,5,975,5,96, | ||
3892 | 1,256,976,16,0, | ||
3893 | 538,1,1261,977,16, | ||
3894 | 0,538,1,509,978, | ||
3895 | 16,0,538,1,2197, | ||
3896 | 979,16,0,538,1, | ||
3897 | 1515,980,16,0,538, | ||
3898 | 1,2021,707,1,1775, | ||
3899 | 981,16,0,538,1, | ||
3900 | 2029,714,1,2030,720, | ||
3901 | 1,2031,725,1,2032, | ||
3902 | 730,1,2033,735,1, | ||
3903 | 277,982,16,0,538, | ||
3904 | 1,2035,741,1,2037, | ||
3905 | 746,1,2039,751,1, | ||
3906 | 32,983,16,0,538, | ||
3907 | 1,2041,757,1,2043, | ||
3908 | 762,1,2044,767,1, | ||
3909 | 40,984,16,0,185, | ||
3910 | 1,41,985,16,0, | ||
3911 | 538,1,1297,986,16, | ||
3912 | 0,538,1,43,987, | ||
3913 | 16,0,538,1,44, | ||
3914 | 988,16,0,185,1, | ||
3915 | 1802,774,1,1804,989, | ||
3916 | 16,0,538,1,299, | ||
3917 | 990,16,0,538,1, | ||
3918 | 2309,991,16,0,538, | ||
3919 | 1,52,992,16,0, | ||
3920 | 538,1,47,993,16, | ||
3921 | 0,179,1,525,994, | ||
3922 | 16,0,538,1,63, | ||
3923 | 995,16,0,199,1, | ||
3924 | 2074,996,16,0,538, | ||
3925 | 1,1574,787,1,66, | ||
3926 | 997,16,0,197,1, | ||
3927 | 71,998,16,0,538, | ||
3928 | 1,76,999,16,0, | ||
3929 | 538,1,1834,1000,16, | ||
3930 | 0,538,1,79,1001, | ||
3931 | 16,0,538,1,1335, | ||
3932 | 1002,16,0,538,1, | ||
3933 | 322,1003,16,0,538, | ||
3934 | 1,85,1004,16,0, | ||
3935 | 538,1,89,1005,16, | ||
3936 | 0,538,1,346,1006, | ||
3937 | 16,0,538,1,2104, | ||
3938 | 801,1,2105,1007,16, | ||
3939 | 0,538,1,2358,807, | ||
3940 | 1,2360,813,1,97, | ||
3941 | 1008,16,0,538,1, | ||
3942 | 1860,820,1,102,1009, | ||
3943 | 16,0,538,1,1114, | ||
3944 | 1010,16,0,179,1, | ||
3945 | 112,1011,16,0,538, | ||
3946 | 1,1117,1012,16,0, | ||
3947 | 538,1,1873,829,1, | ||
3948 | 1876,1013,16,0,538, | ||
3949 | 1,2550,1014,16,0, | ||
3950 | 538,1,124,1015,16, | ||
3951 | 0,538,1,2135,836, | ||
3952 | 1,381,1016,16,0, | ||
3953 | 538,1,137,1017,16, | ||
3954 | 0,538,1,1901,1018, | ||
3955 | 16,0,538,1,1153, | ||
3956 | 1019,16,0,538,1, | ||
3957 | 151,1020,16,0,538, | ||
3958 | 1,1407,1021,16,0, | ||
3959 | 538,1,1659,1022,16, | ||
3960 | 0,538,1,406,1023, | ||
3961 | 16,0,538,1,1371, | ||
3962 | 1024,16,0,538,1, | ||
3963 | 166,1025,16,0,538, | ||
3964 | 1,1622,1026,16,0, | ||
3965 | 538,1,2354,853,1, | ||
3966 | 2355,858,1,1931,863, | ||
3967 | 1,1933,1027,16,0, | ||
3968 | 538,1,431,1028,16, | ||
3969 | 0,538,1,1585,1029, | ||
3970 | 16,0,538,1,182, | ||
3971 | 1030,16,0,538,1, | ||
3972 | 1189,1031,16,0,538, | ||
3973 | 1,1443,1032,16,0, | ||
3974 | 538,1,1695,1033,16, | ||
3975 | 0,538,1,447,1034, | ||
3976 | 16,0,538,1,199, | ||
3977 | 1035,16,0,538,1, | ||
3978 | 1958,1036,16,0,538, | ||
3979 | 1,1657,878,1,459, | ||
3980 | 1037,16,0,538,1, | ||
3981 | 462,1038,16,0,538, | ||
3982 | 1,217,1039,16,0, | ||
3983 | 538,1,2226,886,1, | ||
3984 | 1225,1040,16,0,538, | ||
3985 | 1,1479,1041,16,0, | ||
3986 | 538,1,1731,1042,16, | ||
3987 | 0,538,1,1989,894, | ||
3988 | 1,1990,1043,16,0, | ||
3989 | 538,1,236,1044,16, | ||
3990 | 0,538,1,1756,1045, | ||
3991 | 16,0,538,1,6, | ||
3992 | 1046,19,292,1,6, | ||
3993 | 1047,5,2,1,1114, | ||
3994 | 1048,16,0,290,1, | ||
3995 | 40,1049,16,0,527, | ||
3996 | 1,7,1050,19,241, | ||
3997 | 1,7,1051,5,2, | ||
3998 | 1,1114,1052,16,0, | ||
3999 | 239,1,40,1053,16, | ||
4000 | 0,487,1,8,1054, | ||
4001 | 19,206,1,8,1055, | ||
4002 | 5,2,1,1114,1056, | ||
4003 | 16,0,204,1,40, | ||
4004 | 1057,16,0,454,1, | ||
4005 | 9,1058,19,212,1, | ||
4006 | 9,1059,5,2,1, | ||
4007 | 1114,1060,16,0,210, | ||
4008 | 1,40,1061,16,0, | ||
4009 | 436,1,10,1062,19, | ||
4010 | 164,1,10,1063,5, | ||
4011 | 2,1,1114,1064,16, | ||
4012 | 0,162,1,40,1065, | ||
4013 | 16,0,390,1,11, | ||
4014 | 1066,19,191,1,11, | ||
4015 | 1067,5,141,1,1260, | ||
4016 | 1068,17,1069,15,1070, | ||
4017 | 4,34,37,0,83, | ||
4018 | 0,105,0,109,0, | ||
4019 | 112,0,108,0,101, | ||
4020 | 0,65,0,115,0, | ||
4021 | 115,0,105,0,103, | ||
4022 | 0,110,0,109,0, | ||
4023 | 101,0,110,0,116, | ||
4024 | 0,1,-1,1,5, | ||
4025 | 1071,20,1072,4,38, | ||
4026 | 83,0,105,0,109, | ||
4027 | 0,112,0,108,0, | ||
4028 | 101,0,65,0,115, | ||
4029 | 0,115,0,105,0, | ||
4030 | 103,0,110,0,109, | ||
4031 | 0,101,0,110,0, | ||
4032 | 116,0,95,0,50, | ||
4033 | 0,49,0,1,215, | ||
4034 | 1,3,1,6,1, | ||
4035 | 5,1073,22,1,78, | ||
4036 | 1,1011,1074,17,1075, | ||
4037 | 15,1076,4,44,37, | ||
4038 | 0,80,0,97,0, | ||
4039 | 114,0,101,0,110, | ||
4040 | 0,116,0,104,0, | ||
4041 | 101,0,115,0,105, | ||
4042 | 0,115,0,69,0, | ||
4043 | 120,0,112,0,114, | ||
4044 | 0,101,0,115,0, | ||
4045 | 115,0,105,0,111, | ||
4046 | 0,110,0,1,-1, | ||
4047 | 1,5,1077,20,1078, | ||
4048 | 4,46,80,0,97, | ||
4049 | 0,114,0,101,0, | ||
4050 | 110,0,116,0,104, | ||
4051 | 0,101,0,115,0, | ||
4052 | 105,0,115,0,69, | ||
4053 | 0,120,0,112,0, | ||
4054 | 114,0,101,0,115, | ||
4055 | 0,115,0,105,0, | ||
4056 | 111,0,110,0,95, | ||
4057 | 0,50,0,1,262, | ||
4058 | 1,3,1,4,1, | ||
4059 | 3,1079,22,1,125, | ||
4060 | 1,1514,1080,17,1081, | ||
4061 | 15,1070,1,-1,1, | ||
4062 | 5,1082,20,1083,4, | ||
4063 | 38,83,0,105,0, | ||
4064 | 109,0,112,0,108, | ||
4065 | 0,101,0,65,0, | ||
4066 | 115,0,115,0,105, | ||
4067 | 0,103,0,110,0, | ||
4068 | 109,0,101,0,110, | ||
4069 | 0,116,0,95,0, | ||
4070 | 49,0,52,0,1, | ||
4071 | 208,1,3,1,4, | ||
4072 | 1,3,1084,22,1, | ||
4073 | 71,1,9,1085,17, | ||
4074 | 1086,15,1087,4,24, | ||
4075 | 37,0,68,0,101, | ||
4076 | 0,99,0,108,0, | ||
4077 | 97,0,114,0,97, | ||
4078 | 0,116,0,105,0, | ||
4079 | 111,0,110,0,1, | ||
4080 | -1,1,5,1088,20, | ||
4081 | 1089,4,26,68,0, | ||
4082 | 101,0,99,0,108, | ||
4083 | 0,97,0,114,0, | ||
4084 | 97,0,116,0,105, | ||
4085 | 0,111,0,110,0, | ||
4086 | 95,0,49,0,1, | ||
4087 | 159,1,3,1,3, | ||
4088 | 1,2,1090,22,1, | ||
4089 | 21,1,262,1091,17, | ||
4090 | 1092,15,1093,4,34, | ||
4091 | 37,0,66,0,105, | ||
4092 | 0,110,0,97,0, | ||
4093 | 114,0,121,0,69, | ||
4094 | 0,120,0,112,0, | ||
4095 | 114,0,101,0,115, | ||
4096 | 0,115,0,105,0, | ||
4097 | 111,0,110,0,1, | ||
4098 | -1,1,5,1094,20, | ||
4099 | 1095,4,36,66,0, | ||
4100 | 105,0,110,0,97, | ||
4101 | 0,114,0,121,0, | ||
4102 | 69,0,120,0,112, | ||
4103 | 0,114,0,101,0, | ||
4104 | 115,0,115,0,105, | ||
4105 | 0,111,0,110,0, | ||
4106 | 95,0,53,0,1, | ||
4107 | 244,1,3,1,4, | ||
4108 | 1,3,1096,22,1, | ||
4109 | 107,1,1267,1097,17, | ||
4110 | 1098,15,1070,1,-1, | ||
4111 | 1,5,1099,20,1100, | ||
4112 | 4,36,83,0,105, | ||
4113 | 0,109,0,112,0, | ||
4114 | 108,0,101,0,65, | ||
4115 | 0,115,0,115,0, | ||
4116 | 105,0,103,0,110, | ||
4117 | 0,109,0,101,0, | ||
4118 | 110,0,116,0,95, | ||
4119 | 0,56,0,1,202, | ||
4120 | 1,3,1,6,1, | ||
4121 | 5,1101,22,1,65, | ||
4122 | 1,2021,707,1,1521, | ||
4123 | 1102,17,1103,15,1070, | ||
4124 | 1,-1,1,5,1104, | ||
4125 | 20,1105,4,36,83, | ||
4126 | 0,105,0,109,0, | ||
4127 | 112,0,108,0,101, | ||
4128 | 0,65,0,115,0, | ||
4129 | 115,0,105,0,103, | ||
4130 | 0,110,0,109,0, | ||
4131 | 101,0,110,0,116, | ||
4132 | 0,95,0,49,0, | ||
4133 | 1,195,1,3,1, | ||
4134 | 4,1,3,1106,22, | ||
4135 | 1,58,1,2024,1107, | ||
4136 | 17,1108,15,1109,4, | ||
4137 | 24,37,0,83,0, | ||
4138 | 116,0,97,0,116, | ||
4139 | 0,101,0,67,0, | ||
4140 | 104,0,97,0,110, | ||
4141 | 0,103,0,101,0, | ||
4142 | 1,-1,1,5,1110, | ||
4143 | 20,1111,4,26,83, | ||
4144 | 0,116,0,97,0, | ||
4145 | 116,0,101,0,67, | ||
4146 | 0,104,0,97,0, | ||
4147 | 110,0,103,0,101, | ||
4148 | 0,95,0,49,0, | ||
4149 | 1,178,1,3,1, | ||
4150 | 3,1,2,1112,22, | ||
4151 | 1,41,1,1775,1113, | ||
4152 | 16,0,582,1,19, | ||
4153 | 1114,17,1086,1,2, | ||
4154 | 1090,1,2028,1115,17, | ||
4155 | 1116,15,1117,4,20, | ||
4156 | 37,0,74,0,117, | ||
4157 | 0,109,0,112,0, | ||
4158 | 76,0,97,0,98, | ||
4159 | 0,101,0,108,0, | ||
4160 | 1,-1,1,5,1118, | ||
4161 | 20,1119,4,22,74, | ||
4162 | 0,117,0,109,0, | ||
4163 | 112,0,76,0,97, | ||
4164 | 0,98,0,101,0, | ||
4165 | 108,0,95,0,49, | ||
4166 | 0,1,176,1,3, | ||
4167 | 1,3,1,2,1120, | ||
4168 | 22,1,39,1,2280, | ||
4169 | 1121,17,1122,15,1123, | ||
4170 | 4,34,37,0,70, | ||
4171 | 0,111,0,114,0, | ||
4172 | 76,0,111,0,111, | ||
4173 | 0,112,0,83,0, | ||
4174 | 116,0,97,0,116, | ||
4175 | 0,101,0,109,0, | ||
4176 | 101,0,110,0,116, | ||
4177 | 0,1,-1,1,5, | ||
4178 | 1124,20,1125,4,36, | ||
4179 | 70,0,111,0,114, | ||
4180 | 0,76,0,111,0, | ||
4181 | 111,0,112,0,83, | ||
4182 | 0,116,0,97,0, | ||
4183 | 116,0,101,0,109, | ||
4184 | 0,101,0,110,0, | ||
4185 | 116,0,95,0,50, | ||
4186 | 0,1,190,1,3, | ||
4187 | 1,2,1,1,1126, | ||
4188 | 22,1,53,1,2030, | ||
4189 | 720,1,2031,725,1, | ||
4190 | 2032,730,1,2033,735, | ||
4191 | 1,2034,1127,16,0, | ||
4192 | 573,1,2035,741,1, | ||
4193 | 2036,1128,16,0,528, | ||
4194 | 1,2037,746,1,2038, | ||
4195 | 1129,16,0,532,1, | ||
4196 | 2039,751,1,32,1130, | ||
4197 | 16,0,582,1,2041, | ||
4198 | 757,1,2042,1131,16, | ||
4199 | 0,635,1,2043,762, | ||
4200 | 1,2044,767,1,2226, | ||
4201 | 886,1,2549,1132,16, | ||
4202 | 0,583,1,40,1133, | ||
4203 | 17,1134,15,1135,4, | ||
4204 | 32,37,0,73,0, | ||
4205 | 100,0,101,0,110, | ||
4206 | 0,116,0,69,0, | ||
4207 | 120,0,112,0,114, | ||
4208 | 0,101,0,115,0, | ||
4209 | 115,0,105,0,111, | ||
4210 | 0,110,0,1,-1, | ||
4211 | 1,5,1136,20,1137, | ||
4212 | 4,34,73,0,100, | ||
4213 | 0,101,0,110,0, | ||
4214 | 116,0,69,0,120, | ||
4215 | 0,112,0,114,0, | ||
4216 | 101,0,115,0,115, | ||
4217 | 0,105,0,111,0, | ||
4218 | 110,0,95,0,49, | ||
4219 | 0,1,229,1,3, | ||
4220 | 1,2,1,1,1138, | ||
4221 | 22,1,92,1,1296, | ||
4222 | 1139,17,1140,15,1070, | ||
4223 | 1,-1,1,5,1141, | ||
4224 | 20,1142,4,38,83, | ||
4225 | 0,105,0,109,0, | ||
4226 | 112,0,108,0,101, | ||
4227 | 0,65,0,115,0, | ||
4228 | 115,0,105,0,103, | ||
4229 | 0,110,0,109,0, | ||
4230 | 101,0,110,0,116, | ||
4231 | 0,95,0,50,0, | ||
4232 | 48,0,1,214,1, | ||
4233 | 3,1,6,1,5, | ||
4234 | 1143,22,1,77,1, | ||
4235 | 283,1144,17,1145,15, | ||
4236 | 1093,1,-1,1,5, | ||
4237 | 1146,20,1147,4,36, | ||
4238 | 66,0,105,0,110, | ||
4239 | 0,97,0,114,0, | ||
4240 | 121,0,69,0,120, | ||
4241 | 0,112,0,114,0, | ||
4242 | 101,0,115,0,115, | ||
4243 | 0,105,0,111,0, | ||
4244 | 110,0,95,0,52, | ||
4245 | 0,1,243,1,3, | ||
4246 | 1,4,1,3,1148, | ||
4247 | 22,1,106,1,44, | ||
4248 | 1149,17,1134,1,1, | ||
4249 | 1138,1,1802,774,1, | ||
4250 | 2556,1150,16,0,497, | ||
4251 | 1,47,1151,17,1152, | ||
4252 | 15,1153,4,38,37, | ||
4253 | 0,73,0,100,0, | ||
4254 | 101,0,110,0,116, | ||
4255 | 0,68,0,111,0, | ||
4256 | 116,0,69,0,120, | ||
4257 | 0,112,0,114,0, | ||
4258 | 101,0,115,0,115, | ||
4259 | 0,105,0,111,0, | ||
4260 | 110,0,1,-1,1, | ||
4261 | 5,1154,20,1155,4, | ||
4262 | 40,73,0,100,0, | ||
4263 | 101,0,110,0,116, | ||
4264 | 0,68,0,111,0, | ||
4265 | 116,0,69,0,120, | ||
4266 | 0,112,0,114,0, | ||
4267 | 101,0,115,0,115, | ||
4268 | 0,105,0,111,0, | ||
4269 | 110,0,95,0,49, | ||
4270 | 0,1,230,1,3, | ||
4271 | 1,4,1,3,1156, | ||
4272 | 22,1,93,1,48, | ||
4273 | 1157,17,1158,15,1159, | ||
4274 | 4,58,37,0,73, | ||
4275 | 0,110,0,99,0, | ||
4276 | 114,0,101,0,109, | ||
4277 | 0,101,0,110,0, | ||
4278 | 116,0,68,0,101, | ||
4279 | 0,99,0,114,0, | ||
4280 | 101,0,109,0,101, | ||
4281 | 0,110,0,116,0, | ||
4282 | 69,0,120,0,112, | ||
4283 | 0,114,0,101,0, | ||
4284 | 115,0,115,0,105, | ||
4285 | 0,111,0,110,0, | ||
4286 | 1,-1,1,5,1160, | ||
4287 | 20,1161,4,60,73, | ||
4288 | 0,110,0,99,0, | ||
4289 | 114,0,101,0,109, | ||
4290 | 0,101,0,110,0, | ||
4291 | 116,0,68,0,101, | ||
4292 | 0,99,0,114,0, | ||
4293 | 101,0,109,0,101, | ||
4294 | 0,110,0,116,0, | ||
4295 | 69,0,120,0,112, | ||
4296 | 0,114,0,101,0, | ||
4297 | 115,0,115,0,105, | ||
4298 | 0,111,0,110,0, | ||
4299 | 95,0,52,0,1, | ||
4300 | 234,1,3,1,5, | ||
4301 | 1,4,1162,22,1, | ||
4302 | 97,1,49,1163,17, | ||
4303 | 1164,15,1159,1,-1, | ||
4304 | 1,5,1165,20,1166, | ||
4305 | 4,60,73,0,110, | ||
4306 | 0,99,0,114,0, | ||
4307 | 101,0,109,0,101, | ||
4308 | 0,110,0,116,0, | ||
4309 | 68,0,101,0,99, | ||
4310 | 0,114,0,101,0, | ||
4311 | 109,0,101,0,110, | ||
4312 | 0,116,0,69,0, | ||
4313 | 120,0,112,0,114, | ||
4314 | 0,101,0,115,0, | ||
4315 | 115,0,105,0,111, | ||
4316 | 0,110,0,95,0, | ||
4317 | 51,0,1,233,1, | ||
4318 | 3,1,5,1,4, | ||
4319 | 1167,22,1,96,1, | ||
4320 | 2309,1168,16,0,582, | ||
4321 | 1,51,1169,17,1170, | ||
4322 | 15,1159,1,-1,1, | ||
4323 | 5,1171,20,1172,4, | ||
4324 | 60,73,0,110,0, | ||
4325 | 99,0,114,0,101, | ||
4326 | 0,109,0,101,0, | ||
4327 | 110,0,116,0,68, | ||
4328 | 0,101,0,99,0, | ||
4329 | 114,0,101,0,109, | ||
4330 | 0,101,0,110,0, | ||
4331 | 116,0,69,0,120, | ||
4332 | 0,112,0,114,0, | ||
4333 | 101,0,115,0,115, | ||
4334 | 0,105,0,111,0, | ||
4335 | 110,0,95,0,49, | ||
4336 | 0,1,231,1,3, | ||
4337 | 1,3,1,2,1173, | ||
4338 | 22,1,94,1,50, | ||
4339 | 1174,17,1175,15,1159, | ||
4340 | 1,-1,1,5,1176, | ||
4341 | 20,1177,4,60,73, | ||
4342 | 0,110,0,99,0, | ||
4343 | 114,0,101,0,109, | ||
4344 | 0,101,0,110,0, | ||
4345 | 116,0,68,0,101, | ||
4346 | 0,99,0,114,0, | ||
4347 | 101,0,109,0,101, | ||
4348 | 0,110,0,116,0, | ||
4349 | 69,0,120,0,112, | ||
4350 | 0,114,0,101,0, | ||
4351 | 115,0,115,0,105, | ||
4352 | 0,111,0,110,0, | ||
4353 | 95,0,50,0,1, | ||
4354 | 232,1,3,1,3, | ||
4355 | 1,2,1178,22,1, | ||
4356 | 95,1,305,1179,17, | ||
4357 | 1180,15,1093,1,-1, | ||
4358 | 1,5,1181,20,1182, | ||
4359 | 4,36,66,0,105, | ||
4360 | 0,110,0,97,0, | ||
4361 | 114,0,121,0,69, | ||
4362 | 0,120,0,112,0, | ||
4363 | 114,0,101,0,115, | ||
4364 | 0,115,0,105,0, | ||
4365 | 111,0,110,0,95, | ||
4366 | 0,51,0,1,242, | ||
4367 | 1,3,1,4,1, | ||
4368 | 3,1183,22,1,105, | ||
4369 | 1,525,1184,17,1185, | ||
4370 | 15,1186,4,34,37, | ||
4371 | 0,82,0,111,0, | ||
4372 | 116,0,97,0,116, | ||
4373 | 0,105,0,111,0, | ||
4374 | 110,0,67,0,111, | ||
4375 | 0,110,0,115,0, | ||
4376 | 116,0,97,0,110, | ||
4377 | 0,116,0,1,-1, | ||
4378 | 1,5,1187,20,1188, | ||
4379 | 4,36,82,0,111, | ||
4380 | 0,116,0,97,0, | ||
4381 | 116,0,105,0,111, | ||
4382 | 0,110,0,67,0, | ||
4383 | 111,0,110,0,115, | ||
4384 | 0,116,0,97,0, | ||
4385 | 110,0,116,0,95, | ||
4386 | 0,49,0,1,227, | ||
4387 | 1,3,1,10,1, | ||
4388 | 9,1189,22,1,90, | ||
4389 | 1,63,1190,17,1191, | ||
4390 | 15,1192,4,38,37, | ||
4391 | 0,84,0,121,0, | ||
4392 | 112,0,101,0,99, | ||
4393 | 0,97,0,115,0, | ||
4394 | 116,0,69,0,120, | ||
4395 | 0,112,0,114,0, | ||
4396 | 101,0,115,0,115, | ||
4397 | 0,105,0,111,0, | ||
4398 | 110,0,1,-1,1, | ||
4399 | 5,1193,20,1194,4, | ||
4400 | 40,84,0,121,0, | ||
4401 | 112,0,101,0,99, | ||
4402 | 0,97,0,115,0, | ||
4403 | 116,0,69,0,120, | ||
4404 | 0,112,0,114,0, | ||
4405 | 101,0,115,0,115, | ||
4406 | 0,105,0,111,0, | ||
4407 | 110,0,95,0,50, | ||
4408 | 0,1,264,1,3, | ||
4409 | 1,5,1,4,1195, | ||
4410 | 22,1,127,1,66, | ||
4411 | 1196,17,1197,15,1192, | ||
4412 | 1,-1,1,5,1198, | ||
4413 | 20,1199,4,40,84, | ||
4414 | 0,121,0,112,0, | ||
4415 | 101,0,99,0,97, | ||
4416 | 0,115,0,116,0, | ||
4417 | 69,0,120,0,112, | ||
4418 | 0,114,0,101,0, | ||
4419 | 115,0,115,0,105, | ||
4420 | 0,111,0,110,0, | ||
4421 | 95,0,51,0,1, | ||
4422 | 265,1,3,1,7, | ||
4423 | 1,6,1200,22,1, | ||
4424 | 128,1,67,1201,17, | ||
4425 | 1202,15,1192,1,-1, | ||
4426 | 1,5,1203,20,1204, | ||
4427 | 4,40,84,0,121, | ||
4428 | 0,112,0,101,0, | ||
4429 | 99,0,97,0,115, | ||
4430 | 0,116,0,69,0, | ||
4431 | 120,0,112,0,114, | ||
4432 | 0,101,0,115,0, | ||
4433 | 115,0,105,0,111, | ||
4434 | 0,110,0,95,0, | ||
4435 | 55,0,1,269,1, | ||
4436 | 3,1,8,1,7, | ||
4437 | 1205,22,1,132,1, | ||
4438 | 68,1206,17,1207,15, | ||
4439 | 1192,1,-1,1,5, | ||
4440 | 1208,20,1209,4,40, | ||
4441 | 84,0,121,0,112, | ||
4442 | 0,101,0,99,0, | ||
4443 | 97,0,115,0,116, | ||
4444 | 0,69,0,120,0, | ||
4445 | 112,0,114,0,101, | ||
4446 | 0,115,0,115,0, | ||
4447 | 105,0,111,0,110, | ||
4448 | 0,95,0,53,0, | ||
4449 | 1,267,1,3,1, | ||
4450 | 8,1,7,1210,22, | ||
4451 | 1,130,1,69,1211, | ||
4452 | 17,1212,15,1192,1, | ||
4453 | -1,1,5,1213,20, | ||
4454 | 1214,4,40,84,0, | ||
4455 | 121,0,112,0,101, | ||
4456 | 0,99,0,97,0, | ||
4457 | 115,0,116,0,69, | ||
4458 | 0,120,0,112,0, | ||
4459 | 114,0,101,0,115, | ||
4460 | 0,115,0,105,0, | ||
4461 | 111,0,110,0,95, | ||
4462 | 0,54,0,1,268, | ||
4463 | 1,3,1,6,1, | ||
4464 | 5,1215,22,1,131, | ||
4465 | 1,70,1216,17,1217, | ||
4466 | 15,1192,1,-1,1, | ||
4467 | 5,1218,20,1219,4, | ||
4468 | 40,84,0,121,0, | ||
4469 | 112,0,101,0,99, | ||
4470 | 0,97,0,115,0, | ||
4471 | 116,0,69,0,120, | ||
4472 | 0,112,0,114,0, | ||
4473 | 101,0,115,0,115, | ||
4474 | 0,105,0,111,0, | ||
4475 | 110,0,95,0,52, | ||
4476 | 0,1,266,1,3, | ||
4477 | 1,6,1,5,1220, | ||
4478 | 22,1,129,1,74, | ||
4479 | 1221,17,1222,15,1192, | ||
4480 | 1,-1,1,5,1223, | ||
4481 | 20,1224,4,40,84, | ||
4482 | 0,121,0,112,0, | ||
4483 | 101,0,99,0,97, | ||
4484 | 0,115,0,116,0, | ||
4485 | 69,0,120,0,112, | ||
4486 | 0,114,0,101,0, | ||
4487 | 115,0,115,0,105, | ||
4488 | 0,111,0,110,0, | ||
4489 | 95,0,57,0,1, | ||
4490 | 271,1,3,1,7, | ||
4491 | 1,6,1225,22,1, | ||
4492 | 134,1,1013,1226,17, | ||
4493 | 1227,15,1076,1,-1, | ||
4494 | 1,5,1228,20,1229, | ||
4495 | 4,46,80,0,97, | ||
4496 | 0,114,0,101,0, | ||
4497 | 110,0,116,0,104, | ||
4498 | 0,101,0,115,0, | ||
4499 | 105,0,115,0,69, | ||
4500 | 0,120,0,112,0, | ||
4501 | 114,0,101,0,115, | ||
4502 | 0,115,0,105,0, | ||
4503 | 111,0,110,0,95, | ||
4504 | 0,49,0,1,261, | ||
4505 | 1,3,1,4,1, | ||
4506 | 3,1230,22,1,124, | ||
4507 | 1,1332,1231,17,1232, | ||
4508 | 15,1070,1,-1,1, | ||
4509 | 5,1233,20,1234,4, | ||
4510 | 38,83,0,105,0, | ||
4511 | 109,0,112,0,108, | ||
4512 | 0,101,0,65,0, | ||
4513 | 115,0,115,0,105, | ||
4514 | 0,103,0,110,0, | ||
4515 | 109,0,101,0,110, | ||
4516 | 0,116,0,95,0, | ||
4517 | 49,0,57,0,1, | ||
4518 | 213,1,3,1,6, | ||
4519 | 1,5,1235,22,1, | ||
4520 | 76,1,1048,1236,17, | ||
4521 | 1237,15,1093,1,-1, | ||
4522 | 1,5,1238,20,1239, | ||
4523 | 4,38,66,0,105, | ||
4524 | 0,110,0,97,0, | ||
4525 | 114,0,121,0,69, | ||
4526 | 0,120,0,112,0, | ||
4527 | 114,0,101,0,115, | ||
4528 | 0,115,0,105,0, | ||
4529 | 111,0,110,0,95, | ||
4530 | 0,49,0,56,0, | ||
4531 | 1,257,1,3,1, | ||
4532 | 4,1,3,1240,22, | ||
4533 | 1,120,1,1585,1241, | ||
4534 | 17,1242,15,1243,4, | ||
4535 | 32,37,0,82,0, | ||
4536 | 101,0,116,0,117, | ||
4537 | 0,114,0,110,0, | ||
4538 | 83,0,116,0,97, | ||
4539 | 0,116,0,101,0, | ||
4540 | 109,0,101,0,110, | ||
4541 | 0,116,0,1,-1, | ||
4542 | 1,5,1244,20,1245, | ||
4543 | 4,34,82,0,101, | ||
4544 | 0,116,0,117,0, | ||
4545 | 114,0,110,0,83, | ||
4546 | 0,116,0,97,0, | ||
4547 | 116,0,101,0,109, | ||
4548 | 0,101,0,110,0, | ||
4549 | 116,0,95,0,50, | ||
4550 | 0,1,220,1,3, | ||
4551 | 1,2,1,1,1246, | ||
4552 | 22,1,83,1,2023, | ||
4553 | 1247,17,1248,15,1109, | ||
4554 | 1,-1,1,5,1249, | ||
4555 | 20,1250,4,26,83, | ||
4556 | 0,116,0,97,0, | ||
4557 | 116,0,101,0,67, | ||
4558 | 0,104,0,97,0, | ||
4559 | 110,0,103,0,101, | ||
4560 | 0,95,0,50,0, | ||
4561 | 1,179,1,3,1, | ||
4562 | 3,1,2,1251,22, | ||
4563 | 1,42,1,82,1252, | ||
4564 | 17,1253,15,1254,4, | ||
4565 | 32,37,0,85,0, | ||
4566 | 110,0,97,0,114, | ||
4567 | 0,121,0,69,0, | ||
4568 | 120,0,112,0,114, | ||
4569 | 0,101,0,115,0, | ||
4570 | 115,0,105,0,111, | ||
4571 | 0,110,0,1,-1, | ||
4572 | 1,5,1255,20,1256, | ||
4573 | 4,34,85,0,110, | ||
4574 | 0,97,0,114,0, | ||
4575 | 121,0,69,0,120, | ||
4576 | 0,112,0,114,0, | ||
4577 | 101,0,115,0,115, | ||
4578 | 0,105,0,111,0, | ||
4579 | 110,0,95,0,51, | ||
4580 | 0,1,260,1,3, | ||
4581 | 1,3,1,2,1257, | ||
4582 | 22,1,123,1,2026, | ||
4583 | 1258,17,1259,15,1260, | ||
4584 | 4,28,37,0,74, | ||
4585 | 0,117,0,109,0, | ||
4586 | 112,0,83,0,116, | ||
4587 | 0,97,0,116,0, | ||
4588 | 101,0,109,0,101, | ||
4589 | 0,110,0,116,0, | ||
4590 | 1,-1,1,5,1261, | ||
4591 | 20,1262,4,30,74, | ||
4592 | 0,117,0,109,0, | ||
4593 | 112,0,83,0,116, | ||
4594 | 0,97,0,116,0, | ||
4595 | 101,0,109,0,101, | ||
4596 | 0,110,0,116,0, | ||
4597 | 95,0,49,0,1, | ||
4598 | 177,1,3,1,3, | ||
4599 | 1,2,1263,22,1, | ||
4600 | 40,1,1591,1264,17, | ||
4601 | 1265,15,1243,1,-1, | ||
4602 | 1,5,1266,20,1267, | ||
4603 | 4,34,82,0,101, | ||
4604 | 0,116,0,117,0, | ||
4605 | 114,0,110,0,83, | ||
4606 | 0,116,0,97,0, | ||
4607 | 116,0,101,0,109, | ||
4608 | 0,101,0,110,0, | ||
4609 | 116,0,95,0,49, | ||
4610 | 0,1,219,1,3, | ||
4611 | 1,3,1,2,1268, | ||
4612 | 22,1,82,1,1341, | ||
4613 | 1269,17,1270,15,1070, | ||
4614 | 1,-1,1,5,1271, | ||
4615 | 20,1272,4,36,83, | ||
4616 | 0,105,0,109,0, | ||
4617 | 112,0,108,0,101, | ||
4618 | 0,65,0,115,0, | ||
4619 | 115,0,105,0,103, | ||
4620 | 0,110,0,109,0, | ||
4621 | 101,0,110,0,116, | ||
4622 | 0,95,0,54,0, | ||
4623 | 1,200,1,3,1, | ||
4624 | 4,1,3,1273,22, | ||
4625 | 1,63,1,328,1274, | ||
4626 | 17,1275,15,1093,1, | ||
4627 | -1,1,5,1276,20, | ||
4628 | 1277,4,36,66,0, | ||
4629 | 105,0,110,0,97, | ||
4630 | 0,114,0,121,0, | ||
4631 | 69,0,120,0,112, | ||
4632 | 0,114,0,101,0, | ||
4633 | 115,0,115,0,105, | ||
4634 | 0,111,0,110,0, | ||
4635 | 95,0,50,0,1, | ||
4636 | 241,1,3,1,4, | ||
4637 | 1,3,1278,22,1, | ||
4638 | 104,1,1303,1279,17, | ||
4639 | 1280,15,1070,1,-1, | ||
4640 | 1,5,1281,20,1282, | ||
4641 | 4,36,83,0,105, | ||
4642 | 0,109,0,112,0, | ||
4643 | 108,0,101,0,65, | ||
4644 | 0,115,0,115,0, | ||
4645 | 105,0,103,0,110, | ||
4646 | 0,109,0,101,0, | ||
4647 | 110,0,116,0,95, | ||
4648 | 0,55,0,1,201, | ||
4649 | 1,3,1,6,1, | ||
4650 | 5,1283,22,1,64, | ||
4651 | 1,1096,1284,17,1285, | ||
4652 | 15,1286,4,26,37, | ||
4653 | 0,70,0,117,0, | ||
4654 | 110,0,99,0,116, | ||
4655 | 0,105,0,111,0, | ||
4656 | 110,0,67,0,97, | ||
4657 | 0,108,0,108,0, | ||
4658 | 1,-1,1,5,1287, | ||
4659 | 20,1288,4,28,70, | ||
4660 | 0,117,0,110,0, | ||
4661 | 99,0,116,0,105, | ||
4662 | 0,111,0,110,0, | ||
4663 | 67,0,97,0,108, | ||
4664 | 0,108,0,95,0, | ||
4665 | 49,0,1,272,1, | ||
4666 | 3,1,5,1,4, | ||
4667 | 1289,22,1,135,1, | ||
4668 | 93,1290,17,1291,15, | ||
4669 | 1254,1,-1,1,5, | ||
4670 | 1292,20,1293,4,34, | ||
4671 | 85,0,110,0,97, | ||
4672 | 0,114,0,121,0, | ||
4673 | 69,0,120,0,112, | ||
4674 | 0,114,0,101,0, | ||
4675 | 115,0,115,0,105, | ||
4676 | 0,111,0,110,0, | ||
4677 | 95,0,50,0,1, | ||
4678 | 259,1,3,1,3, | ||
4679 | 1,2,1294,22,1, | ||
4680 | 122,1,1550,1295,17, | ||
4681 | 1296,15,1070,1,-1, | ||
4682 | 1,5,1297,20,1298, | ||
4683 | 4,38,83,0,105, | ||
4684 | 0,109,0,112,0, | ||
4685 | 108,0,101,0,65, | ||
4686 | 0,115,0,115,0, | ||
4687 | 105,0,103,0,110, | ||
4688 | 0,109,0,101,0, | ||
4689 | 110,0,116,0,95, | ||
4690 | 0,49,0,51,0, | ||
4691 | 1,207,1,3,1, | ||
4692 | 4,1,3,1299,22, | ||
4693 | 1,70,1,2354,853, | ||
4694 | 1,2355,858,1,2040, | ||
4695 | 1300,16,0,536,1, | ||
4696 | 2358,807,1,352,1301, | ||
4697 | 17,1302,15,1093,1, | ||
4698 | -1,1,5,1303,20, | ||
4699 | 1304,4,36,66,0, | ||
4700 | 105,0,110,0,97, | ||
4701 | 0,114,0,121,0, | ||
4702 | 69,0,120,0,112, | ||
4703 | 0,114,0,101,0, | ||
4704 | 115,0,115,0,105, | ||
4705 | 0,111,0,110,0, | ||
4706 | 95,0,49,0,1, | ||
4707 | 240,1,3,1,4, | ||
4708 | 1,3,1305,22,1, | ||
4709 | 103,1,1859,1306,16, | ||
4710 | 0,365,1,1860,820, | ||
4711 | 1,1804,1307,16,0, | ||
4712 | 582,1,107,1308,17, | ||
4713 | 1309,15,1254,1,-1, | ||
4714 | 1,5,1310,20,1311, | ||
4715 | 4,34,85,0,110, | ||
4716 | 0,97,0,114,0, | ||
4717 | 121,0,69,0,120, | ||
4718 | 0,112,0,114,0, | ||
4719 | 101,0,115,0,115, | ||
4720 | 0,105,0,111,0, | ||
4721 | 110,0,95,0,49, | ||
4722 | 0,1,258,1,3, | ||
4723 | 1,3,1,2,1312, | ||
4724 | 22,1,121,1,1114, | ||
4725 | 1313,17,1152,1,3, | ||
4726 | 1156,1,2105,1314,16, | ||
4727 | 0,582,1,1872,1315, | ||
4728 | 16,0,375,1,1873, | ||
4729 | 829,1,118,1316,17, | ||
4730 | 1317,15,1093,1,-1, | ||
4731 | 1,5,1318,20,1319, | ||
4732 | 4,38,66,0,105, | ||
4733 | 0,110,0,97,0, | ||
4734 | 114,0,121,0,69, | ||
4735 | 0,120,0,112,0, | ||
4736 | 114,0,101,0,115, | ||
4737 | 0,115,0,105,0, | ||
4738 | 111,0,110,0,95, | ||
4739 | 0,49,0,52,0, | ||
4740 | 1,253,1,3,1, | ||
4741 | 4,1,3,1320,22, | ||
4742 | 1,116,1,1123,1321, | ||
4743 | 17,1322,15,1070,1, | ||
4744 | -1,1,5,1323,20, | ||
4745 | 1324,4,38,83,0, | ||
4746 | 105,0,109,0,112, | ||
4747 | 0,108,0,101,0, | ||
4748 | 65,0,115,0,115, | ||
4749 | 0,105,0,103,0, | ||
4750 | 110,0,109,0,101, | ||
4751 | 0,110,0,116,0, | ||
4752 | 95,0,49,0,50, | ||
4753 | 0,1,206,1,3, | ||
4754 | 1,6,1,5,1325, | ||
4755 | 22,1,69,1,371, | ||
4756 | 1326,17,1327,15,1328, | ||
4757 | 4,46,37,0,70, | ||
4758 | 0,117,0,110,0, | ||
4759 | 99,0,116,0,105, | ||
4760 | 0,111,0,110,0, | ||
4761 | 67,0,97,0,108, | ||
4762 | 0,108,0,69,0, | ||
4763 | 120,0,112,0,114, | ||
4764 | 0,101,0,115,0, | ||
4765 | 115,0,105,0,111, | ||
4766 | 0,110,0,1,-1, | ||
4767 | 1,5,1329,20,1330, | ||
4768 | 4,48,70,0,117, | ||
4769 | 0,110,0,99,0, | ||
4770 | 116,0,105,0,111, | ||
4771 | 0,110,0,67,0, | ||
4772 | 97,0,108,0,108, | ||
4773 | 0,69,0,120,0, | ||
4774 | 112,0,114,0,101, | ||
4775 | 0,115,0,115,0, | ||
4776 | 105,0,111,0,110, | ||
4777 | 0,95,0,49,0, | ||
4778 | 1,239,1,3,1, | ||
4779 | 2,1,1,1331,22, | ||
4780 | 1,102,1,1377,1332, | ||
4781 | 17,1333,15,1070,1, | ||
4782 | -1,1,5,1334,20, | ||
4783 | 1335,4,36,83,0, | ||
4784 | 105,0,109,0,112, | ||
4785 | 0,108,0,101,0, | ||
4786 | 65,0,115,0,115, | ||
4787 | 0,105,0,103,0, | ||
4788 | 110,0,109,0,101, | ||
4789 | 0,110,0,116,0, | ||
4790 | 95,0,53,0,1, | ||
4791 | 199,1,3,1,4, | ||
4792 | 1,3,1336,22,1, | ||
4793 | 62,1,375,1337,17, | ||
4794 | 1338,15,1159,1,-1, | ||
4795 | 1,5,1339,20,1340, | ||
4796 | 4,60,73,0,110, | ||
4797 | 0,99,0,114,0, | ||
4798 | 101,0,109,0,101, | ||
4799 | 0,110,0,116,0, | ||
4800 | 68,0,101,0,99, | ||
4801 | 0,114,0,101,0, | ||
4802 | 109,0,101,0,110, | ||
4803 | 0,116,0,69,0, | ||
4804 | 120,0,112,0,114, | ||
4805 | 0,101,0,115,0, | ||
4806 | 115,0,105,0,111, | ||
4807 | 0,110,0,95,0, | ||
4808 | 56,0,1,238,1, | ||
4809 | 3,1,5,1,4, | ||
4810 | 1341,22,1,101,1, | ||
4811 | 377,1342,17,1343,15, | ||
4812 | 1159,1,-1,1,5, | ||
4813 | 1344,20,1345,4,60, | ||
4814 | 73,0,110,0,99, | ||
4815 | 0,114,0,101,0, | ||
4816 | 109,0,101,0,110, | ||
4817 | 0,116,0,68,0, | ||
4818 | 101,0,99,0,114, | ||
4819 | 0,101,0,109,0, | ||
4820 | 101,0,110,0,116, | ||
4821 | 0,69,0,120,0, | ||
4822 | 112,0,114,0,101, | ||
4823 | 0,115,0,115,0, | ||
4824 | 105,0,111,0,110, | ||
4825 | 0,95,0,53,0, | ||
4826 | 1,235,1,3,1, | ||
4827 | 3,1,2,1346,22, | ||
4828 | 1,98,1,2135,836, | ||
4829 | 1,827,1347,17,1348, | ||
4830 | 15,1093,1,-1,1, | ||
4831 | 5,1349,20,1350,4, | ||
4832 | 38,66,0,105,0, | ||
4833 | 110,0,97,0,114, | ||
4834 | 0,121,0,69,0, | ||
4835 | 120,0,112,0,114, | ||
4836 | 0,101,0,115,0, | ||
4837 | 115,0,105,0,111, | ||
4838 | 0,110,0,95,0, | ||
4839 | 49,0,53,0,1, | ||
4840 | 254,1,3,1,4, | ||
4841 | 1,3,1351,22,1, | ||
4842 | 117,1,380,1352,17, | ||
4843 | 1353,15,1354,4,38, | ||
4844 | 37,0,67,0,111, | ||
4845 | 0,110,0,115,0, | ||
4846 | 116,0,97,0,110, | ||
4847 | 0,116,0,69,0, | ||
4848 | 120,0,112,0,114, | ||
4849 | 0,101,0,115,0, | ||
4850 | 115,0,105,0,111, | ||
4851 | 0,110,0,1,-1, | ||
4852 | 1,5,1355,20,1356, | ||
4853 | 4,40,67,0,111, | ||
4854 | 0,110,0,115,0, | ||
4855 | 116,0,97,0,110, | ||
4856 | 0,116,0,69,0, | ||
4857 | 120,0,112,0,114, | ||
4858 | 0,101,0,115,0, | ||
4859 | 115,0,105,0,111, | ||
4860 | 0,110,0,95,0, | ||
4861 | 49,0,1,228,1, | ||
4862 | 3,1,2,1,1, | ||
4863 | 1357,22,1,91,1, | ||
4864 | 130,1358,17,1359,15, | ||
4865 | 1093,1,-1,1,5, | ||
4866 | 1360,20,1361,4,38, | ||
4867 | 66,0,105,0,110, | ||
4868 | 0,97,0,114,0, | ||
4869 | 121,0,69,0,120, | ||
4870 | 0,112,0,114,0, | ||
4871 | 101,0,115,0,115, | ||
4872 | 0,105,0,111,0, | ||
4873 | 110,0,95,0,49, | ||
4874 | 0,51,0,1,252, | ||
4875 | 1,3,1,4,1, | ||
4876 | 3,1362,22,1,115, | ||
4877 | 1,1628,1363,17,1364, | ||
4878 | 15,1365,4,22,37, | ||
4879 | 0,65,0,115,0, | ||
4880 | 115,0,105,0,103, | ||
4881 | 0,110,0,109,0, | ||
4882 | 101,0,110,0,116, | ||
4883 | 0,1,-1,1,5, | ||
4884 | 1366,20,1367,4,24, | ||
4885 | 65,0,115,0,115, | ||
4886 | 0,105,0,103,0, | ||
4887 | 110,0,109,0,101, | ||
4888 | 0,110,0,116,0, | ||
4889 | 95,0,49,0,1, | ||
4890 | 193,1,3,1,4, | ||
4891 | 1,3,1368,22,1, | ||
4892 | 56,1,2074,1369,16, | ||
4893 | 0,582,1,373,1370, | ||
4894 | 17,1371,15,1159,1, | ||
4895 | -1,1,5,1372,20, | ||
4896 | 1373,4,60,73,0, | ||
4897 | 110,0,99,0,114, | ||
4898 | 0,101,0,109,0, | ||
4899 | 101,0,110,0,116, | ||
4900 | 0,68,0,101,0, | ||
4901 | 99,0,114,0,101, | ||
4902 | 0,109,0,101,0, | ||
4903 | 110,0,116,0,69, | ||
4904 | 0,120,0,112,0, | ||
4905 | 114,0,101,0,115, | ||
4906 | 0,115,0,105,0, | ||
4907 | 111,0,110,0,95, | ||
4908 | 0,54,0,1,236, | ||
4909 | 1,3,1,3,1, | ||
4910 | 2,1374,22,1,99, | ||
4911 | 1,379,1375,17,1376, | ||
4912 | 15,1159,1,-1,1, | ||
4913 | 5,1377,20,1378,4, | ||
4914 | 60,73,0,110,0, | ||
4915 | 99,0,114,0,101, | ||
4916 | 0,109,0,101,0, | ||
4917 | 110,0,116,0,68, | ||
4918 | 0,101,0,99,0, | ||
4919 | 114,0,101,0,109, | ||
4920 | 0,101,0,110,0, | ||
4921 | 116,0,69,0,120, | ||
4922 | 0,112,0,114,0, | ||
4923 | 101,0,115,0,115, | ||
4924 | 0,105,0,111,0, | ||
4925 | 110,0,95,0,55, | ||
4926 | 0,1,237,1,3, | ||
4927 | 1,5,1,4,1379, | ||
4928 | 22,1,100,1,143, | ||
4929 | 1380,17,1381,15,1093, | ||
4930 | 1,-1,1,5,1382, | ||
4931 | 20,1383,4,38,66, | ||
4932 | 0,105,0,110,0, | ||
4933 | 97,0,114,0,121, | ||
4934 | 0,69,0,120,0, | ||
4935 | 112,0,114,0,101, | ||
4936 | 0,115,0,115,0, | ||
4937 | 105,0,111,0,110, | ||
4938 | 0,95,0,49,0, | ||
4939 | 50,0,1,251,1, | ||
4940 | 3,1,4,1,3, | ||
4941 | 1384,22,1,114,1, | ||
4942 | 1901,1385,16,0,582, | ||
4943 | 1,1152,1386,17,1387, | ||
4944 | 15,1070,1,-1,1, | ||
4945 | 5,1388,20,1389,4, | ||
4946 | 38,83,0,105,0, | ||
4947 | 109,0,112,0,108, | ||
4948 | 0,101,0,65,0, | ||
4949 | 115,0,115,0,105, | ||
4950 | 0,103,0,110,0, | ||
4951 | 109,0,101,0,110, | ||
4952 | 0,116,0,95,0, | ||
4953 | 50,0,52,0,1, | ||
4954 | 218,1,3,1,6, | ||
4955 | 1,5,1390,22,1, | ||
4956 | 81,1,1555,1391,16, | ||
4957 | 0,598,1,1406,1392, | ||
4958 | 17,1393,15,1070,1, | ||
4959 | -1,1,5,1394,20, | ||
4960 | 1395,4,38,83,0, | ||
4961 | 105,0,109,0,112, | ||
4962 | 0,108,0,101,0, | ||
4963 | 65,0,115,0,115, | ||
4964 | 0,105,0,103,0, | ||
4965 | 110,0,109,0,101, | ||
4966 | 0,110,0,116,0, | ||
4967 | 95,0,49,0,55, | ||
4968 | 0,1,211,1,3, | ||
4969 | 1,4,1,3,1396, | ||
4970 | 22,1,74,1,1159, | ||
4971 | 1397,17,1398,15,1070, | ||
4972 | 1,-1,1,5,1399, | ||
4973 | 20,1400,4,38,83, | ||
4974 | 0,105,0,109,0, | ||
4975 | 112,0,108,0,101, | ||
4976 | 0,65,0,115,0, | ||
4977 | 115,0,105,0,103, | ||
4978 | 0,110,0,109,0, | ||
4979 | 101,0,110,0,116, | ||
4980 | 0,95,0,49,0, | ||
4981 | 49,0,1,205,1, | ||
4982 | 3,1,6,1,5, | ||
4983 | 1401,22,1,68,1, | ||
4984 | 157,1402,17,1403,15, | ||
4985 | 1093,1,-1,1,5, | ||
4986 | 1404,20,1405,4,38, | ||
4987 | 66,0,105,0,110, | ||
4988 | 0,97,0,114,0, | ||
4989 | 121,0,69,0,120, | ||
4990 | 0,112,0,114,0, | ||
4991 | 101,0,115,0,115, | ||
4992 | 0,105,0,111,0, | ||
4993 | 110,0,95,0,49, | ||
4994 | 0,49,0,1,250, | ||
4995 | 1,3,1,4,1, | ||
4996 | 3,1406,22,1,113, | ||
4997 | 1,1413,1407,17,1408, | ||
4998 | 15,1070,1,-1,1, | ||
4999 | 5,1409,20,1410,4, | ||
5000 | 36,83,0,105,0, | ||
5001 | 109,0,112,0,108, | ||
5002 | 0,101,0,65,0, | ||
5003 | 115,0,115,0,105, | ||
5004 | 0,103,0,110,0, | ||
5005 | 109,0,101,0,110, | ||
5006 | 0,116,0,95,0, | ||
5007 | 52,0,1,198,1, | ||
5008 | 3,1,4,1,3, | ||
5009 | 1411,22,1,61,1, | ||
5010 | 883,1412,17,1413,15, | ||
5011 | 1093,1,-1,1,5, | ||
5012 | 1414,20,1415,4,38, | ||
5013 | 66,0,105,0,110, | ||
5014 | 0,97,0,114,0, | ||
5015 | 121,0,69,0,120, | ||
5016 | 0,112,0,114,0, | ||
5017 | 101,0,115,0,115, | ||
5018 | 0,105,0,111,0, | ||
5019 | 110,0,95,0,49, | ||
5020 | 0,54,0,1,255, | ||
5021 | 1,3,1,4,1, | ||
5022 | 3,1416,22,1,118, | ||
5023 | 1,2104,801,1,1478, | ||
5024 | 1417,17,1418,15,1070, | ||
5025 | 1,-1,1,5,1419, | ||
5026 | 20,1420,4,38,83, | ||
5027 | 0,105,0,109,0, | ||
5028 | 112,0,108,0,101, | ||
5029 | 0,65,0,115,0, | ||
5030 | 115,0,105,0,103, | ||
5031 | 0,110,0,109,0, | ||
5032 | 101,0,110,0,116, | ||
5033 | 0,95,0,49,0, | ||
5034 | 53,0,1,209,1, | ||
5035 | 3,1,4,1,3, | ||
5036 | 1421,22,1,72,1, | ||
5037 | 1620,1422,17,1423,15, | ||
5038 | 1365,1,-1,1,5, | ||
5039 | 1424,20,1425,4,24, | ||
5040 | 65,0,115,0,115, | ||
5041 | 0,105,0,103,0, | ||
5042 | 110,0,109,0,101, | ||
5043 | 0,110,0,116,0, | ||
5044 | 95,0,50,0,1, | ||
5045 | 194,1,3,1,2, | ||
5046 | 1,1,1426,22,1, | ||
5047 | 57,1,1621,1427,16, | ||
5048 | 0,655,1,1574,787, | ||
5049 | 1,172,1428,17,1429, | ||
5050 | 15,1093,1,-1,1, | ||
5051 | 5,1430,20,1431,4, | ||
5052 | 38,66,0,105,0, | ||
5053 | 110,0,97,0,114, | ||
5054 | 0,121,0,69,0, | ||
5055 | 120,0,112,0,114, | ||
5056 | 0,101,0,115,0, | ||
5057 | 115,0,105,0,111, | ||
5058 | 0,110,0,95,0, | ||
5059 | 49,0,48,0,1, | ||
5060 | 249,1,3,1,4, | ||
5061 | 1,3,1432,22,1, | ||
5062 | 112,1,1931,863,1, | ||
5063 | 2360,813,1,1188,1433, | ||
5064 | 17,1434,15,1070,1, | ||
5065 | -1,1,5,1435,20, | ||
5066 | 1436,4,38,83,0, | ||
5067 | 105,0,109,0,112, | ||
5068 | 0,108,0,101,0, | ||
5069 | 65,0,115,0,115, | ||
5070 | 0,105,0,103,0, | ||
5071 | 110,0,109,0,101, | ||
5072 | 0,110,0,116,0, | ||
5073 | 95,0,50,0,51, | ||
5074 | 0,1,217,1,3, | ||
5075 | 1,6,1,5,1437, | ||
5076 | 22,1,80,1,1442, | ||
5077 | 1438,17,1439,15,1070, | ||
5078 | 1,-1,1,5,1440, | ||
5079 | 20,1441,4,38,83, | ||
5080 | 0,105,0,109,0, | ||
5081 | 112,0,108,0,101, | ||
5082 | 0,65,0,115,0, | ||
5083 | 115,0,105,0,103, | ||
5084 | 0,110,0,109,0, | ||
5085 | 101,0,110,0,116, | ||
5086 | 0,95,0,49,0, | ||
5087 | 54,0,1,210,1, | ||
5088 | 3,1,4,1,3, | ||
5089 | 1442,22,1,73,1, | ||
5090 | 1694,1443,16,0,189, | ||
5091 | 1,942,1444,17,1445, | ||
5092 | 15,1093,1,-1,1, | ||
5093 | 5,1446,20,1447,4, | ||
5094 | 38,66,0,105,0, | ||
5095 | 110,0,97,0,114, | ||
5096 | 0,121,0,69,0, | ||
5097 | 120,0,112,0,114, | ||
5098 | 0,101,0,115,0, | ||
5099 | 115,0,105,0,111, | ||
5100 | 0,110,0,95,0, | ||
5101 | 49,0,55,0,1, | ||
5102 | 256,1,3,1,4, | ||
5103 | 1,3,1448,22,1, | ||
5104 | 119,1,1195,1449,17, | ||
5105 | 1450,15,1070,1,-1, | ||
5106 | 1,5,1451,20,1452, | ||
5107 | 4,38,83,0,105, | ||
5108 | 0,109,0,112,0, | ||
5109 | 108,0,101,0,65, | ||
5110 | 0,115,0,115,0, | ||
5111 | 105,0,103,0,110, | ||
5112 | 0,109,0,101,0, | ||
5113 | 110,0,116,0,95, | ||
5114 | 0,49,0,48,0, | ||
5115 | 1,204,1,3,1, | ||
5116 | 6,1,5,1453,22, | ||
5117 | 1,67,1,1449,1454, | ||
5118 | 17,1455,15,1070,1, | ||
5119 | -1,1,5,1456,20, | ||
5120 | 1457,4,36,83,0, | ||
5121 | 105,0,109,0,112, | ||
5122 | 0,108,0,101,0, | ||
5123 | 65,0,115,0,115, | ||
5124 | 0,105,0,103,0, | ||
5125 | 110,0,109,0,101, | ||
5126 | 0,110,0,116,0, | ||
5127 | 95,0,51,0,1, | ||
5128 | 197,1,3,1,4, | ||
5129 | 1,3,1458,22,1, | ||
5130 | 60,1,1701,1459,17, | ||
5131 | 1460,15,1123,1,-1, | ||
5132 | 1,5,1461,20,1462, | ||
5133 | 4,36,70,0,111, | ||
5134 | 0,114,0,76,0, | ||
5135 | 111,0,111,0,112, | ||
5136 | 0,83,0,116,0, | ||
5137 | 97,0,116,0,101, | ||
5138 | 0,109,0,101,0, | ||
5139 | 110,0,116,0,95, | ||
5140 | 0,51,0,1,191, | ||
5141 | 1,3,1,4,1, | ||
5142 | 3,1463,22,1,54, | ||
5143 | 1,447,1464,17,1465, | ||
5144 | 15,1466,4,30,37, | ||
5145 | 0,86,0,101,0, | ||
5146 | 99,0,116,0,111, | ||
5147 | 0,114,0,67,0, | ||
5148 | 111,0,110,0,115, | ||
5149 | 0,116,0,97,0, | ||
5150 | 110,0,116,0,1, | ||
5151 | -1,1,5,1467,20, | ||
5152 | 1468,4,32,86,0, | ||
5153 | 101,0,99,0,116, | ||
5154 | 0,111,0,114,0, | ||
5155 | 67,0,111,0,110, | ||
5156 | 0,115,0,116,0, | ||
5157 | 97,0,110,0,116, | ||
5158 | 0,95,0,49,0, | ||
5159 | 1,226,1,3,1, | ||
5160 | 8,1,7,1469,22, | ||
5161 | 1,89,1,1958,1470, | ||
5162 | 16,0,582,1,188, | ||
5163 | 1471,17,1472,15,1093, | ||
5164 | 1,-1,1,5,1473, | ||
5165 | 20,1474,4,36,66, | ||
5166 | 0,105,0,110,0, | ||
5167 | 97,0,114,0,121, | ||
5168 | 0,69,0,120,0, | ||
5169 | 112,0,114,0,101, | ||
5170 | 0,115,0,115,0, | ||
5171 | 105,0,111,0,110, | ||
5172 | 0,95,0,57,0, | ||
5173 | 1,248,1,3,1, | ||
5174 | 4,1,3,1475,22, | ||
5175 | 1,111,1,1370,1476, | ||
5176 | 17,1477,15,1070,1, | ||
5177 | -1,1,5,1478,20, | ||
5178 | 1479,4,38,83,0, | ||
5179 | 105,0,109,0,112, | ||
5180 | 0,108,0,101,0, | ||
5181 | 65,0,115,0,115, | ||
5182 | 0,105,0,103,0, | ||
5183 | 110,0,109,0,101, | ||
5184 | 0,110,0,116,0, | ||
5185 | 95,0,49,0,56, | ||
5186 | 0,1,212,1,3, | ||
5187 | 1,4,1,3,1480, | ||
5188 | 22,1,75,1,1657, | ||
5189 | 878,1,205,1481,17, | ||
5190 | 1482,15,1093,1,-1, | ||
5191 | 1,5,1483,20,1484, | ||
5192 | 4,36,66,0,105, | ||
5193 | 0,110,0,97,0, | ||
5194 | 114,0,121,0,69, | ||
5195 | 0,120,0,112,0, | ||
5196 | 114,0,101,0,115, | ||
5197 | 0,115,0,105,0, | ||
5198 | 111,0,110,0,95, | ||
5199 | 0,56,0,1,247, | ||
5200 | 1,3,1,4,1, | ||
5201 | 3,1485,22,1,110, | ||
5202 | 1,1665,1486,17,1487, | ||
5203 | 15,1123,1,-1,1, | ||
5204 | 5,1488,20,1489,4, | ||
5205 | 36,70,0,111,0, | ||
5206 | 114,0,76,0,111, | ||
5207 | 0,111,0,112,0, | ||
5208 | 83,0,116,0,97, | ||
5209 | 0,116,0,101,0, | ||
5210 | 109,0,101,0,110, | ||
5211 | 0,116,0,95,0, | ||
5212 | 49,0,1,189,1, | ||
5213 | 3,1,2,1,1, | ||
5214 | 1490,22,1,52,1, | ||
5215 | 2029,714,1,2197,1491, | ||
5216 | 16,0,582,1,1224, | ||
5217 | 1492,17,1493,15,1070, | ||
5218 | 1,-1,1,5,1494, | ||
5219 | 20,1495,4,38,83, | ||
5220 | 0,105,0,109,0, | ||
5221 | 112,0,108,0,101, | ||
5222 | 0,65,0,115,0, | ||
5223 | 115,0,105,0,103, | ||
5224 | 0,110,0,109,0, | ||
5225 | 101,0,110,0,116, | ||
5226 | 0,95,0,50,0, | ||
5227 | 50,0,1,216,1, | ||
5228 | 3,1,6,1,5, | ||
5229 | 1496,22,1,79,1, | ||
5230 | 223,1497,17,1498,15, | ||
5231 | 1093,1,-1,1,5, | ||
5232 | 1499,20,1500,4,36, | ||
5233 | 66,0,105,0,110, | ||
5234 | 0,97,0,114,0, | ||
5235 | 121,0,69,0,120, | ||
5236 | 0,112,0,114,0, | ||
5237 | 101,0,115,0,115, | ||
5238 | 0,105,0,111,0, | ||
5239 | 110,0,95,0,55, | ||
5240 | 0,1,246,1,3, | ||
5241 | 1,4,1,3,1501, | ||
5242 | 22,1,109,1,1730, | ||
5243 | 1502,17,1503,15,1123, | ||
5244 | 1,-1,1,5,1504, | ||
5245 | 20,1505,4,36,70, | ||
5246 | 0,111,0,114,0, | ||
5247 | 76,0,111,0,111, | ||
5248 | 0,112,0,83,0, | ||
5249 | 116,0,97,0,116, | ||
5250 | 0,101,0,109,0, | ||
5251 | 101,0,110,0,116, | ||
5252 | 0,95,0,52,0, | ||
5253 | 1,192,1,3,1, | ||
5254 | 4,1,3,1506,22, | ||
5255 | 1,55,1,476,1507, | ||
5256 | 17,1508,15,1509,4, | ||
5257 | 18,37,0,67,0, | ||
5258 | 111,0,110,0,115, | ||
5259 | 0,116,0,97,0, | ||
5260 | 110,0,116,0,1, | ||
5261 | -1,1,5,1510,20, | ||
5262 | 1511,4,20,67,0, | ||
5263 | 111,0,110,0,115, | ||
5264 | 0,116,0,97,0, | ||
5265 | 110,0,116,0,95, | ||
5266 | 0,52,0,1,224, | ||
5267 | 1,3,1,2,1, | ||
5268 | 1,1512,22,1,87, | ||
5269 | 1,477,1513,17,1514, | ||
5270 | 15,1509,1,-1,1, | ||
5271 | 5,1515,20,1516,4, | ||
5272 | 20,67,0,111,0, | ||
5273 | 110,0,115,0,116, | ||
5274 | 0,97,0,110,0, | ||
5275 | 116,0,95,0,51, | ||
5276 | 0,1,223,1,3, | ||
5277 | 1,2,1,1,1517, | ||
5278 | 22,1,86,1,1231, | ||
5279 | 1518,17,1519,15,1070, | ||
5280 | 1,-1,1,5,1520, | ||
5281 | 20,1521,4,36,83, | ||
5282 | 0,105,0,109,0, | ||
5283 | 112,0,108,0,101, | ||
5284 | 0,65,0,115,0, | ||
5285 | 115,0,105,0,103, | ||
5286 | 0,110,0,109,0, | ||
5287 | 101,0,110,0,116, | ||
5288 | 0,95,0,57,0, | ||
5289 | 1,203,1,3,1, | ||
5290 | 6,1,5,1522,22, | ||
5291 | 1,66,1,479,1523, | ||
5292 | 17,1524,15,1509,1, | ||
5293 | -1,1,5,1525,20, | ||
5294 | 1526,4,20,67,0, | ||
5295 | 111,0,110,0,115, | ||
5296 | 0,116,0,97,0, | ||
5297 | 110,0,116,0,95, | ||
5298 | 0,49,0,1,221, | ||
5299 | 1,3,1,2,1, | ||
5300 | 1,1527,22,1,84, | ||
5301 | 1,480,1528,17,1529, | ||
5302 | 15,1530,4,26,37, | ||
5303 | 0,76,0,105,0, | ||
5304 | 115,0,116,0,67, | ||
5305 | 0,111,0,110,0, | ||
5306 | 115,0,116,0,97, | ||
5307 | 0,110,0,116,0, | ||
5308 | 1,-1,1,5,1531, | ||
5309 | 20,1532,4,28,76, | ||
5310 | 0,105,0,115,0, | ||
5311 | 116,0,67,0,111, | ||
5312 | 0,110,0,115,0, | ||
5313 | 116,0,97,0,110, | ||
5314 | 0,116,0,95,0, | ||
5315 | 49,0,1,225,1, | ||
5316 | 3,1,4,1,3, | ||
5317 | 1533,22,1,88,1, | ||
5318 | 1485,1534,17,1535,15, | ||
5319 | 1070,1,-1,1,5, | ||
5320 | 1536,20,1537,4,36, | ||
5321 | 83,0,105,0,109, | ||
5322 | 0,112,0,108,0, | ||
5323 | 101,0,65,0,115, | ||
5324 | 0,115,0,105,0, | ||
5325 | 103,0,110,0,109, | ||
5326 | 0,101,0,110,0, | ||
5327 | 116,0,95,0,50, | ||
5328 | 0,1,196,1,3, | ||
5329 | 1,4,1,3,1538, | ||
5330 | 22,1,59,1,1737, | ||
5331 | 1539,16,0,278,1, | ||
5332 | 1989,894,1,1990,1540, | ||
5333 | 16,0,582,1,242, | ||
5334 | 1541,17,1542,15,1093, | ||
5335 | 1,-1,1,5,1543, | ||
5336 | 20,1544,4,36,66, | ||
5337 | 0,105,0,110,0, | ||
5338 | 97,0,114,0,121, | ||
5339 | 0,69,0,120,0, | ||
5340 | 112,0,114,0,101, | ||
5341 | 0,115,0,115,0, | ||
5342 | 105,0,111,0,110, | ||
5343 | 0,95,0,54,0, | ||
5344 | 1,245,1,3,1, | ||
5345 | 4,1,3,1545,22, | ||
5346 | 1,108,1,478,1546, | ||
5347 | 17,1547,15,1509,1, | ||
5348 | -1,1,5,1548,20, | ||
5349 | 1549,4,20,67,0, | ||
5350 | 111,0,110,0,115, | ||
5351 | 0,116,0,97,0, | ||
5352 | 110,0,116,0,95, | ||
5353 | 0,50,0,1,222, | ||
5354 | 1,3,1,2,1, | ||
5355 | 1,1550,22,1,85, | ||
5356 | 1,1001,1551,17,1552, | ||
5357 | 15,1192,1,-1,1, | ||
5358 | 5,1553,20,1554,4, | ||
5359 | 40,84,0,121,0, | ||
5360 | 112,0,101,0,99, | ||
5361 | 0,97,0,115,0, | ||
5362 | 116,0,69,0,120, | ||
5363 | 0,112,0,114,0, | ||
5364 | 101,0,115,0,115, | ||
5365 | 0,105,0,111,0, | ||
5366 | 110,0,95,0,56, | ||
5367 | 0,1,270,1,3, | ||
5368 | 1,5,1,4,1555, | ||
5369 | 22,1,133,1,1002, | ||
5370 | 1556,17,1557,15,1192, | ||
5371 | 1,-1,1,5,1558, | ||
5372 | 20,1559,4,40,84, | ||
5373 | 0,121,0,112,0, | ||
5374 | 101,0,99,0,97, | ||
5375 | 0,115,0,116,0, | ||
5376 | 69,0,120,0,112, | ||
5377 | 0,114,0,101,0, | ||
5378 | 115,0,115,0,105, | ||
5379 | 0,111,0,110,0, | ||
5380 | 95,0,49,0,1, | ||
5381 | 263,1,3,1,5, | ||
5382 | 1,4,1560,22,1, | ||
5383 | 126,1,12,1561,19, | ||
5384 | 157,1,12,1562,5, | ||
5385 | 41,1,2074,1563,16, | ||
5386 | 0,155,1,1860,820, | ||
5387 | 1,2412,1564,16,0, | ||
5388 | 155,1,2197,1565,16, | ||
5389 | 0,155,1,2309,1566, | ||
5390 | 16,0,155,1,1657, | ||
5391 | 878,1,1989,894,1, | ||
5392 | 1990,1567,16,0,155, | ||
5393 | 1,31,1568,16,0, | ||
5394 | 155,1,32,1569,16, | ||
5395 | 0,155,1,2104,801, | ||
5396 | 1,2105,1570,16,0, | ||
5397 | 155,1,2358,807,1, | ||
5398 | 2545,1571,16,0,155, | ||
5399 | 1,2226,886,1,1901, | ||
5400 | 1572,16,0,155,1, | ||
5401 | 2454,1573,16,0,553, | ||
5402 | 1,1802,774,1,2021, | ||
5403 | 707,1,1804,1574,16, | ||
5404 | 0,155,1,2135,836, | ||
5405 | 1,2354,853,1,2355, | ||
5406 | 858,1,2029,714,1, | ||
5407 | 2030,720,1,2031,725, | ||
5408 | 1,2032,730,1,2360, | ||
5409 | 813,1,2035,741,1, | ||
5410 | 2037,746,1,2365,1575, | ||
5411 | 16,0,273,1,2039, | ||
5412 | 751,1,1931,863,1, | ||
5413 | 2041,757,1,1873,829, | ||
5414 | 1,2043,762,1,2044, | ||
5415 | 767,1,1775,1576,16, | ||
5416 | 0,155,1,2033,735, | ||
5417 | 1,1574,787,1,1958, | ||
5418 | 1577,16,0,155,1, | ||
5419 | 13,1578,19,258,1, | ||
5420 | 13,1579,5,33,1, | ||
5421 | 1860,820,1,2414,1580, | ||
5422 | 17,1581,15,1582,4, | ||
5423 | 22,37,0,83,0, | ||
5424 | 116,0,97,0,116, | ||
5425 | 0,101,0,69,0, | ||
5426 | 118,0,101,0,110, | ||
5427 | 0,116,0,1,-1, | ||
5428 | 1,5,1583,20,1584, | ||
5429 | 4,24,83,0,116, | ||
5430 | 0,97,0,116,0, | ||
5431 | 101,0,69,0,118, | ||
5432 | 0,101,0,110,0, | ||
5433 | 116,0,95,0,49, | ||
5434 | 0,1,156,1,3, | ||
5435 | 1,6,1,5,1585, | ||
5436 | 22,1,17,1,2416, | ||
5437 | 1586,16,0,395,1, | ||
5438 | 2309,1587,16,0,256, | ||
5439 | 1,1657,878,1,2031, | ||
5440 | 725,1,1989,894,1, | ||
5441 | 32,1588,16,0,261, | ||
5442 | 1,2104,801,1,2226, | ||
5443 | 886,1,2033,735,1, | ||
5444 | 2451,1589,17,1590,15, | ||
5445 | 1591,4,20,37,0, | ||
5446 | 83,0,116,0,97, | ||
5447 | 0,116,0,101,0, | ||
5448 | 66,0,111,0,100, | ||
5449 | 0,121,0,1,-1, | ||
5450 | 1,5,1592,20,1593, | ||
5451 | 4,22,83,0,116, | ||
5452 | 0,97,0,116,0, | ||
5453 | 101,0,66,0,111, | ||
5454 | 0,100,0,121,0, | ||
5455 | 95,0,50,0,1, | ||
5456 | 155,1,3,1,3, | ||
5457 | 1,2,1594,22,1, | ||
5458 | 16,1,2453,1595,17, | ||
5459 | 1596,15,1591,1,-1, | ||
5460 | 1,5,1597,20,1598, | ||
5461 | 4,22,83,0,116, | ||
5462 | 0,97,0,116,0, | ||
5463 | 101,0,66,0,111, | ||
5464 | 0,100,0,121,0, | ||
5465 | 95,0,49,0,1, | ||
5466 | 154,1,3,1,2, | ||
5467 | 1,1,1599,22,1, | ||
5468 | 15,1,1802,774,1, | ||
5469 | 2021,707,1,2135,836, | ||
5470 | 1,2354,853,1,2355, | ||
5471 | 858,1,2029,714,1, | ||
5472 | 2030,720,1,2358,807, | ||
5473 | 1,2032,730,1,2360, | ||
5474 | 813,1,2035,741,1, | ||
5475 | 2037,746,1,2039,751, | ||
5476 | 1,1931,863,1,2041, | ||
5477 | 757,1,1873,829,1, | ||
5478 | 2043,762,1,2044,767, | ||
5479 | 1,2490,1600,16,0, | ||
5480 | 455,1,1574,787,1, | ||
5481 | 14,1601,19,144,1, | ||
5482 | 14,1602,5,104,1, | ||
5483 | 1260,1068,1,1011,1074, | ||
5484 | 1,1514,1080,1,9, | ||
5485 | 1085,1,10,1603,17, | ||
5486 | 1604,15,1605,4,48, | ||
5487 | 37,0,65,0,114, | ||
5488 | 0,103,0,117,0, | ||
5489 | 109,0,101,0,110, | ||
5490 | 0,116,0,68,0, | ||
5491 | 101,0,99,0,108, | ||
5492 | 0,97,0,114,0, | ||
5493 | 97,0,116,0,105, | ||
5494 | 0,111,0,110,0, | ||
5495 | 76,0,105,0,115, | ||
5496 | 0,116,0,1,-1, | ||
5497 | 1,5,140,1,0, | ||
5498 | 1,0,1606,22,1, | ||
5499 | 18,1,262,1091,1, | ||
5500 | 1267,1097,1,1521,1102, | ||
5501 | 1,1773,1607,16,0, | ||
5502 | 148,1,19,1114,1, | ||
5503 | 20,1608,16,0,142, | ||
5504 | 1,2280,1121,1,525, | ||
5505 | 1184,1,2534,1609,17, | ||
5506 | 1610,15,1605,1,-1, | ||
5507 | 1,5,140,1,0, | ||
5508 | 1,0,1606,1,30, | ||
5509 | 1611,17,1612,15,1605, | ||
5510 | 1,-1,1,5,1613, | ||
5511 | 20,1614,4,50,65, | ||
5512 | 0,114,0,103,0, | ||
5513 | 117,0,109,0,101, | ||
5514 | 0,110,0,116,0, | ||
5515 | 68,0,101,0,99, | ||
5516 | 0,108,0,97,0, | ||
5517 | 114,0,97,0,116, | ||
5518 | 0,105,0,111,0, | ||
5519 | 110,0,76,0,105, | ||
5520 | 0,115,0,116,0, | ||
5521 | 95,0,50,0,1, | ||
5522 | 158,1,3,1,4, | ||
5523 | 1,3,1615,22,1, | ||
5524 | 20,1,283,1144,1, | ||
5525 | 2543,1616,16,0,142, | ||
5526 | 1,40,1133,1,41, | ||
5527 | 1617,17,1618,15,1619, | ||
5528 | 4,26,37,0,65, | ||
5529 | 0,114,0,103,0, | ||
5530 | 117,0,109,0,101, | ||
5531 | 0,110,0,116,0, | ||
5532 | 76,0,105,0,115, | ||
5533 | 0,116,0,1,-1, | ||
5534 | 1,5,600,1,0, | ||
5535 | 1,0,1620,22,1, | ||
5536 | 136,1,42,1621,17, | ||
5537 | 1622,15,1623,4,38, | ||
5538 | 37,0,69,0,120, | ||
5539 | 0,112,0,114,0, | ||
5540 | 101,0,115,0,115, | ||
5541 | 0,105,0,111,0, | ||
5542 | 110,0,65,0,114, | ||
5543 | 0,103,0,117,0, | ||
5544 | 109,0,101,0,110, | ||
5545 | 0,116,0,1,-1, | ||
5546 | 1,5,1624,20,1625, | ||
5547 | 4,40,69,0,120, | ||
5548 | 0,112,0,114,0, | ||
5549 | 101,0,115,0,115, | ||
5550 | 0,105,0,111,0, | ||
5551 | 110,0,65,0,114, | ||
5552 | 0,103,0,117,0, | ||
5553 | 109,0,101,0,110, | ||
5554 | 0,116,0,95,0, | ||
5555 | 49,0,1,275,1, | ||
5556 | 3,1,2,1,1, | ||
5557 | 1626,22,1,139,1, | ||
5558 | 44,1149,1,47,1151, | ||
5559 | 1,48,1157,1,49, | ||
5560 | 1163,1,50,1174,1, | ||
5561 | 51,1169,1,305,1179, | ||
5562 | 1,63,1190,1,66, | ||
5563 | 1196,1,67,1201,1, | ||
5564 | 1478,1417,1,69,1211, | ||
5565 | 1,70,1216,1,68, | ||
5566 | 1206,1,74,1221,1, | ||
5567 | 1013,1226,1,1332,1231, | ||
5568 | 1,1048,1236,1,82, | ||
5569 | 1252,1,1296,1139,1, | ||
5570 | 1341,1269,1,328,1274, | ||
5571 | 1,1303,1279,1,1096, | ||
5572 | 1284,1,93,1290,1, | ||
5573 | 1550,1295,1,352,1301, | ||
5574 | 1,2363,1627,17,1628, | ||
5575 | 15,1605,1,-1,1, | ||
5576 | 5,1629,20,1630,4, | ||
5577 | 50,65,0,114,0, | ||
5578 | 103,0,117,0,109, | ||
5579 | 0,101,0,110,0, | ||
5580 | 116,0,68,0,101, | ||
5581 | 0,99,0,108,0, | ||
5582 | 97,0,114,0,97, | ||
5583 | 0,116,0,105,0, | ||
5584 | 111,0,110,0,76, | ||
5585 | 0,105,0,115,0, | ||
5586 | 116,0,95,0,49, | ||
5587 | 0,1,157,1,3, | ||
5588 | 1,2,1,1,1631, | ||
5589 | 22,1,19,1,107, | ||
5590 | 1308,1,1114,1313,1, | ||
5591 | 1370,1476,1,118,1316, | ||
5592 | 1,1123,1321,1,371, | ||
5593 | 1326,1,1377,1332,1, | ||
5594 | 375,1337,1,377,1342, | ||
5595 | 1,379,1375,1,380, | ||
5596 | 1352,1,883,1412,1, | ||
5597 | 373,1370,1,130,1358, | ||
5598 | 1,2401,1632,17,1633, | ||
5599 | 15,1605,1,-1,1, | ||
5600 | 5,140,1,0,1, | ||
5601 | 0,1606,1,143,1380, | ||
5602 | 1,1152,1386,1,387, | ||
5603 | 1634,16,0,567,1, | ||
5604 | 1406,1392,1,1159,1397, | ||
5605 | 1,157,1402,1,1413, | ||
5606 | 1407,1,1665,1486,1, | ||
5607 | 412,1635,16,0,577, | ||
5608 | 1,1094,1636,16,0, | ||
5609 | 602,1,172,1428,1, | ||
5610 | 827,1347,1,1188,1433, | ||
5611 | 1,437,1637,16,0, | ||
5612 | 639,1,1442,1438,1, | ||
5613 | 1694,1638,16,0,148, | ||
5614 | 1,942,1444,1,1195, | ||
5615 | 1449,1,1449,1454,1, | ||
5616 | 1701,1459,1,447,1464, | ||
5617 | 1,188,1471,1,205, | ||
5618 | 1481,1,459,1639,17, | ||
5619 | 1640,15,1619,1,-1, | ||
5620 | 1,5,600,1,0, | ||
5621 | 1,0,1620,1,461, | ||
5622 | 1641,16,0,602,1, | ||
5623 | 464,1642,17,1643,15, | ||
5624 | 1619,1,-1,1,5, | ||
5625 | 1644,20,1645,4,28, | ||
5626 | 65,0,114,0,103, | ||
5627 | 0,117,0,109,0, | ||
5628 | 101,0,110,0,116, | ||
5629 | 0,76,0,105,0, | ||
5630 | 115,0,116,0,95, | ||
5631 | 0,50,0,1,274, | ||
5632 | 1,3,1,4,1, | ||
5633 | 3,1646,22,1,138, | ||
5634 | 1,1224,1492,1,223, | ||
5635 | 1497,1,1730,1502,1, | ||
5636 | 476,1507,1,477,1513, | ||
5637 | 1,1231,1518,1,2410, | ||
5638 | 1647,16,0,142,1, | ||
5639 | 480,1528,1,1485,1534, | ||
5640 | 1,242,1541,1,478, | ||
5641 | 1546,1,479,1523,1, | ||
5642 | 481,1648,17,1649,15, | ||
5643 | 1619,1,-1,1,5, | ||
5644 | 1650,20,1651,4,28, | ||
5645 | 65,0,114,0,103, | ||
5646 | 0,117,0,109,0, | ||
5647 | 101,0,110,0,116, | ||
5648 | 0,76,0,105,0, | ||
5649 | 115,0,116,0,95, | ||
5650 | 0,49,0,1,273, | ||
5651 | 1,3,1,2,1, | ||
5652 | 1,1652,22,1,137, | ||
5653 | 1,1001,1551,1,1002, | ||
5654 | 1556,1,15,1653,19, | ||
5655 | 361,1,15,1654,5, | ||
5656 | 6,1,1114,1655,16, | ||
5657 | 0,359,1,1621,1656, | ||
5658 | 16,0,638,1,40, | ||
5659 | 1657,16,0,564,1, | ||
5660 | 19,1114,1,9,1085, | ||
5661 | 1,2549,1658,16,0, | ||
5662 | 629,1,16,1659,19, | ||
5663 | 136,1,16,1660,5, | ||
5664 | 134,1,256,1661,16, | ||
5665 | 0,187,1,1261,1662, | ||
5666 | 16,0,187,1,509, | ||
5667 | 1663,16,0,187,1, | ||
5668 | 2197,1664,16,0,187, | ||
5669 | 1,9,1665,16,0, | ||
5670 | 134,1,2021,707,1, | ||
5671 | 2372,1666,17,1667,15, | ||
5672 | 1668,4,12,37,0, | ||
5673 | 69,0,118,0,101, | ||
5674 | 0,110,0,116,0, | ||
5675 | 1,-1,1,5,1669, | ||
5676 | 20,1670,4,16,69, | ||
5677 | 0,118,0,101,0, | ||
5678 | 110,0,116,0,95, | ||
5679 | 0,50,0,56,0, | ||
5680 | 1,310,1,3,1, | ||
5681 | 2,1,1,1671,22, | ||
5682 | 1,174,1,1775,1672, | ||
5683 | 16,0,187,1,2029, | ||
5684 | 714,1,2030,720,1, | ||
5685 | 2031,725,1,2032,730, | ||
5686 | 1,2033,735,1,277, | ||
5687 | 1673,16,0,187,1, | ||
5688 | 2035,741,1,2037,746, | ||
5689 | 1,2039,751,1,32, | ||
5690 | 1674,16,0,187,1, | ||
5691 | 2041,757,1,2043,762, | ||
5692 | 1,2044,767,1,40, | ||
5693 | 1675,16,0,166,1, | ||
5694 | 41,1676,16,0,187, | ||
5695 | 1,1297,1677,16,0, | ||
5696 | 187,1,43,1678,16, | ||
5697 | 0,187,1,44,1679, | ||
5698 | 16,0,166,1,1802, | ||
5699 | 774,1,1804,1680,16, | ||
5700 | 0,187,1,299,1681, | ||
5701 | 16,0,187,1,2309, | ||
5702 | 1682,16,0,187,1, | ||
5703 | 52,1683,16,0,187, | ||
5704 | 1,1515,1684,16,0, | ||
5705 | 187,1,525,1685,16, | ||
5706 | 0,187,1,62,1686, | ||
5707 | 16,0,201,1,63, | ||
5708 | 1687,16,0,166,1, | ||
5709 | 2074,1688,16,0,187, | ||
5710 | 1,1574,787,1,71, | ||
5711 | 1689,16,0,187,1, | ||
5712 | 1833,1690,16,0,330, | ||
5713 | 1,1834,1691,16,0, | ||
5714 | 187,1,79,1692,16, | ||
5715 | 0,187,1,1335,1693, | ||
5716 | 16,0,187,1,322, | ||
5717 | 1694,16,0,187,1, | ||
5718 | 76,1695,16,0,187, | ||
5719 | 1,85,1696,16,0, | ||
5720 | 187,1,89,1697,16, | ||
5721 | 0,187,1,2354,853, | ||
5722 | 1,2355,858,1,97, | ||
5723 | 1698,16,0,187,1, | ||
5724 | 2358,807,1,2360,813, | ||
5725 | 1,102,1699,16,0, | ||
5726 | 187,1,1860,820,1, | ||
5727 | 2533,1700,16,0,468, | ||
5728 | 1,346,1701,16,0, | ||
5729 | 187,1,2367,1702,17, | ||
5730 | 1703,15,1668,1,-1, | ||
5731 | 1,5,1704,20,1705, | ||
5732 | 4,16,69,0,118, | ||
5733 | 0,101,0,110,0, | ||
5734 | 116,0,95,0,51, | ||
5735 | 0,51,0,1,315, | ||
5736 | 1,3,1,2,1, | ||
5737 | 1,1706,22,1,179, | ||
5738 | 1,2368,1707,17,1708, | ||
5739 | 15,1668,1,-1,1, | ||
5740 | 5,1709,20,1710,4, | ||
5741 | 16,69,0,118,0, | ||
5742 | 101,0,110,0,116, | ||
5743 | 0,95,0,51,0, | ||
5744 | 50,0,1,314,1, | ||
5745 | 3,1,2,1,1, | ||
5746 | 1711,22,1,178,1, | ||
5747 | 2369,1712,17,1713,15, | ||
5748 | 1668,1,-1,1,5, | ||
5749 | 1714,20,1715,4,16, | ||
5750 | 69,0,118,0,101, | ||
5751 | 0,110,0,116,0, | ||
5752 | 95,0,51,0,49, | ||
5753 | 0,1,313,1,3, | ||
5754 | 1,2,1,1,1716, | ||
5755 | 22,1,177,1,2370, | ||
5756 | 1717,17,1718,15,1668, | ||
5757 | 1,-1,1,5,1719, | ||
5758 | 20,1720,4,16,69, | ||
5759 | 0,118,0,101,0, | ||
5760 | 110,0,116,0,95, | ||
5761 | 0,51,0,48,0, | ||
5762 | 1,312,1,3,1, | ||
5763 | 2,1,1,1721,22, | ||
5764 | 1,176,1,112,1722, | ||
5765 | 16,0,187,1,1117, | ||
5766 | 1723,16,0,187,1, | ||
5767 | 2373,1724,17,1725,15, | ||
5768 | 1668,1,-1,1,5, | ||
5769 | 1726,20,1727,4,16, | ||
5770 | 69,0,118,0,101, | ||
5771 | 0,110,0,116,0, | ||
5772 | 95,0,50,0,55, | ||
5773 | 0,1,309,1,3, | ||
5774 | 1,2,1,1,1728, | ||
5775 | 22,1,173,1,2374, | ||
5776 | 1729,17,1730,15,1668, | ||
5777 | 1,-1,1,5,1731, | ||
5778 | 20,1732,4,16,69, | ||
5779 | 0,118,0,101,0, | ||
5780 | 110,0,116,0,95, | ||
5781 | 0,50,0,54,0, | ||
5782 | 1,308,1,3,1, | ||
5783 | 2,1,1,1733,22, | ||
5784 | 1,172,1,1873,829, | ||
5785 | 1,2376,1734,17,1735, | ||
5786 | 15,1668,1,-1,1, | ||
5787 | 5,1736,20,1737,4, | ||
5788 | 16,69,0,118,0, | ||
5789 | 101,0,110,0,116, | ||
5790 | 0,95,0,50,0, | ||
5791 | 52,0,1,306,1, | ||
5792 | 3,1,2,1,1, | ||
5793 | 1738,22,1,170,1, | ||
5794 | 1875,1739,16,0,444, | ||
5795 | 1,2378,1740,17,1741, | ||
5796 | 15,1668,1,-1,1, | ||
5797 | 5,1742,20,1743,4, | ||
5798 | 16,69,0,118,0, | ||
5799 | 101,0,110,0,116, | ||
5800 | 0,95,0,50,0, | ||
5801 | 50,0,1,304,1, | ||
5802 | 3,1,2,1,1, | ||
5803 | 1744,22,1,168,1, | ||
5804 | 2379,1745,17,1746,15, | ||
5805 | 1668,1,-1,1,5, | ||
5806 | 1747,20,1748,4,16, | ||
5807 | 69,0,118,0,101, | ||
5808 | 0,110,0,116,0, | ||
5809 | 95,0,50,0,49, | ||
5810 | 0,1,303,1,3, | ||
5811 | 1,2,1,1,1749, | ||
5812 | 22,1,167,1,2380, | ||
5813 | 1750,17,1751,15,1668, | ||
5814 | 1,-1,1,5,1752, | ||
5815 | 20,1753,4,16,69, | ||
5816 | 0,118,0,101,0, | ||
5817 | 110,0,116,0,95, | ||
5818 | 0,50,0,48,0, | ||
5819 | 1,302,1,3,1, | ||
5820 | 2,1,1,1754,22, | ||
5821 | 1,166,1,2381,1755, | ||
5822 | 17,1756,15,1668,1, | ||
5823 | -1,1,5,1757,20, | ||
5824 | 1758,4,16,69,0, | ||
5825 | 118,0,101,0,110, | ||
5826 | 0,116,0,95,0, | ||
5827 | 49,0,57,0,1, | ||
5828 | 301,1,3,1,2, | ||
5829 | 1,1,1759,22,1, | ||
5830 | 165,1,2382,1760,17, | ||
5831 | 1761,15,1668,1,-1, | ||
5832 | 1,5,1762,20,1763, | ||
5833 | 4,16,69,0,118, | ||
5834 | 0,101,0,110,0, | ||
5835 | 116,0,95,0,49, | ||
5836 | 0,56,0,1,300, | ||
5837 | 1,3,1,2,1, | ||
5838 | 1,1764,22,1,164, | ||
5839 | 1,124,1765,16,0, | ||
5840 | 187,1,2384,1766,17, | ||
5841 | 1767,15,1668,1,-1, | ||
5842 | 1,5,1768,20,1769, | ||
5843 | 4,16,69,0,118, | ||
5844 | 0,101,0,110,0, | ||
5845 | 116,0,95,0,49, | ||
5846 | 0,54,0,1,298, | ||
5847 | 1,3,1,2,1, | ||
5848 | 1,1770,22,1,162, | ||
5849 | 1,2385,1771,17,1772, | ||
5850 | 15,1668,1,-1,1, | ||
5851 | 5,1773,20,1774,4, | ||
5852 | 16,69,0,118,0, | ||
5853 | 101,0,110,0,116, | ||
5854 | 0,95,0,49,0, | ||
5855 | 53,0,1,297,1, | ||
5856 | 3,1,2,1,1, | ||
5857 | 1775,22,1,161,1, | ||
5858 | 2386,1776,17,1777,15, | ||
5859 | 1668,1,-1,1,5, | ||
5860 | 1778,20,1779,4,16, | ||
5861 | 69,0,118,0,101, | ||
5862 | 0,110,0,116,0, | ||
5863 | 95,0,49,0,52, | ||
5864 | 0,1,296,1,3, | ||
5865 | 1,2,1,1,1780, | ||
5866 | 22,1,160,1,2387, | ||
5867 | 1781,17,1782,15,1668, | ||
5868 | 1,-1,1,5,1783, | ||
5869 | 20,1784,4,16,69, | ||
5870 | 0,118,0,101,0, | ||
5871 | 110,0,116,0,95, | ||
5872 | 0,49,0,51,0, | ||
5873 | 1,295,1,3,1, | ||
5874 | 2,1,1,1785,22, | ||
5875 | 1,159,1,2388,1786, | ||
5876 | 17,1787,15,1668,1, | ||
5877 | -1,1,5,1788,20, | ||
5878 | 1789,4,16,69,0, | ||
5879 | 118,0,101,0,110, | ||
5880 | 0,116,0,95,0, | ||
5881 | 49,0,50,0,1, | ||
5882 | 294,1,3,1,2, | ||
5883 | 1,1,1790,22,1, | ||
5884 | 158,1,2389,1791,17, | ||
5885 | 1792,15,1668,1,-1, | ||
5886 | 1,5,1793,20,1794, | ||
5887 | 4,16,69,0,118, | ||
5888 | 0,101,0,110,0, | ||
5889 | 116,0,95,0,49, | ||
5890 | 0,49,0,1,293, | ||
5891 | 1,3,1,2,1, | ||
5892 | 1,1795,22,1,157, | ||
5893 | 1,2390,1796,17,1797, | ||
5894 | 15,1668,1,-1,1, | ||
5895 | 5,1798,20,1799,4, | ||
5896 | 16,69,0,118,0, | ||
5897 | 101,0,110,0,116, | ||
5898 | 0,95,0,49,0, | ||
5899 | 48,0,1,292,1, | ||
5900 | 3,1,2,1,1, | ||
5901 | 1800,22,1,156,1, | ||
5902 | 2391,1801,17,1802,15, | ||
5903 | 1668,1,-1,1,5, | ||
5904 | 1803,20,1804,4,14, | ||
5905 | 69,0,118,0,101, | ||
5906 | 0,110,0,116,0, | ||
5907 | 95,0,57,0,1, | ||
5908 | 291,1,3,1,2, | ||
5909 | 1,1,1805,22,1, | ||
5910 | 155,1,2392,1806,17, | ||
5911 | 1807,15,1668,1,-1, | ||
5912 | 1,5,1808,20,1809, | ||
5913 | 4,14,69,0,118, | ||
5914 | 0,101,0,110,0, | ||
5915 | 116,0,95,0,56, | ||
5916 | 0,1,290,1,3, | ||
5917 | 1,2,1,1,1810, | ||
5918 | 22,1,154,1,2393, | ||
5919 | 1811,17,1812,15,1668, | ||
5920 | 1,-1,1,5,1813, | ||
5921 | 20,1814,4,14,69, | ||
5922 | 0,118,0,101,0, | ||
5923 | 110,0,116,0,95, | ||
5924 | 0,55,0,1,289, | ||
5925 | 1,3,1,2,1, | ||
5926 | 1,1815,22,1,153, | ||
5927 | 1,2394,1816,17,1817, | ||
5928 | 15,1668,1,-1,1, | ||
5929 | 5,1818,20,1819,4, | ||
5930 | 14,69,0,118,0, | ||
5931 | 101,0,110,0,116, | ||
5932 | 0,95,0,54,0, | ||
5933 | 1,288,1,3,1, | ||
5934 | 2,1,1,1820,22, | ||
5935 | 1,152,1,2395,1821, | ||
5936 | 17,1822,15,1668,1, | ||
5937 | -1,1,5,1823,20, | ||
5938 | 1824,4,14,69,0, | ||
5939 | 118,0,101,0,110, | ||
5940 | 0,116,0,95,0, | ||
5941 | 53,0,1,287,1, | ||
5942 | 3,1,2,1,1, | ||
5943 | 1825,22,1,151,1, | ||
5944 | 137,1826,16,0,187, | ||
5945 | 1,2397,1827,17,1828, | ||
5946 | 15,1668,1,-1,1, | ||
5947 | 5,1829,20,1830,4, | ||
5948 | 14,69,0,118,0, | ||
5949 | 101,0,110,0,116, | ||
5950 | 0,95,0,51,0, | ||
5951 | 1,285,1,3,1, | ||
5952 | 2,1,1,1831,22, | ||
5953 | 1,149,1,2398,1832, | ||
5954 | 17,1833,15,1668,1, | ||
5955 | -1,1,5,1834,20, | ||
5956 | 1835,4,14,69,0, | ||
5957 | 118,0,101,0,110, | ||
5958 | 0,116,0,95,0, | ||
5959 | 50,0,1,284,1, | ||
5960 | 3,1,2,1,1, | ||
5961 | 1836,22,1,148,1, | ||
5962 | 2399,1837,17,1838,15, | ||
5963 | 1668,1,-1,1,5, | ||
5964 | 1839,20,1840,4,14, | ||
5965 | 69,0,118,0,101, | ||
5966 | 0,110,0,116,0, | ||
5967 | 95,0,49,0,1, | ||
5968 | 283,1,3,1,2, | ||
5969 | 1,1,1841,22,1, | ||
5970 | 147,1,2400,1842,16, | ||
5971 | 0,354,1,381,1843, | ||
5972 | 16,0,187,1,1901, | ||
5973 | 1844,16,0,187,1, | ||
5974 | 1153,1845,16,0,187, | ||
5975 | 1,151,1846,16,0, | ||
5976 | 187,1,1407,1847,16, | ||
5977 | 0,187,1,1659,1848, | ||
5978 | 16,0,187,1,406, | ||
5979 | 1849,16,0,187,1, | ||
5980 | 1371,1850,16,0,187, | ||
5981 | 1,2104,801,1,2105, | ||
5982 | 1851,16,0,187,1, | ||
5983 | 166,1852,16,0,187, | ||
5984 | 1,1622,1853,16,0, | ||
5985 | 187,1,1931,863,1, | ||
5986 | 1932,1854,16,0,484, | ||
5987 | 1,1933,1855,16,0, | ||
5988 | 187,1,1876,1856,16, | ||
5989 | 0,187,1,431,1857, | ||
5990 | 16,0,187,1,1585, | ||
5991 | 1858,16,0,187,1, | ||
5992 | 182,1859,16,0,187, | ||
5993 | 1,1189,1860,16,0, | ||
5994 | 187,1,2371,1861,17, | ||
5995 | 1862,15,1668,1,-1, | ||
5996 | 1,5,1863,20,1864, | ||
5997 | 4,16,69,0,118, | ||
5998 | 0,101,0,110,0, | ||
5999 | 116,0,95,0,50, | ||
6000 | 0,57,0,1,311, | ||
6001 | 1,3,1,2,1, | ||
6002 | 1,1865,22,1,175, | ||
6003 | 1,1695,1866,16,0, | ||
6004 | 187,1,2375,1867,17, | ||
6005 | 1868,15,1668,1,-1, | ||
6006 | 1,5,1869,20,1870, | ||
6007 | 4,16,69,0,118, | ||
6008 | 0,101,0,110,0, | ||
6009 | 116,0,95,0,50, | ||
6010 | 0,53,0,1,307, | ||
6011 | 1,3,1,2,1, | ||
6012 | 1,1871,22,1,171, | ||
6013 | 1,2377,1872,17,1873, | ||
6014 | 15,1668,1,-1,1, | ||
6015 | 5,1874,20,1875,4, | ||
6016 | 16,69,0,118,0, | ||
6017 | 101,0,110,0,116, | ||
6018 | 0,95,0,50,0, | ||
6019 | 51,0,1,305,1, | ||
6020 | 3,1,2,1,1, | ||
6021 | 1876,22,1,169,1, | ||
6022 | 2135,836,1,447,1877, | ||
6023 | 16,0,187,1,199, | ||
6024 | 1878,16,0,187,1, | ||
6025 | 2383,1879,17,1880,15, | ||
6026 | 1668,1,-1,1,5, | ||
6027 | 1881,20,1882,4,16, | ||
6028 | 69,0,118,0,101, | ||
6029 | 0,110,0,116,0, | ||
6030 | 95,0,49,0,55, | ||
6031 | 0,1,299,1,3, | ||
6032 | 1,2,1,1,1883, | ||
6033 | 22,1,163,1,1958, | ||
6034 | 1884,16,0,187,1, | ||
6035 | 2550,1885,16,0,187, | ||
6036 | 1,1657,878,1,1658, | ||
6037 | 1886,16,0,659,1, | ||
6038 | 459,1887,16,0,187, | ||
6039 | 1,462,1888,16,0, | ||
6040 | 187,1,2396,1889,17, | ||
6041 | 1890,15,1668,1,-1, | ||
6042 | 1,5,1891,20,1892, | ||
6043 | 4,14,69,0,118, | ||
6044 | 0,101,0,110,0, | ||
6045 | 116,0,95,0,52, | ||
6046 | 0,1,286,1,3, | ||
6047 | 1,2,1,1,1893, | ||
6048 | 22,1,150,1,217, | ||
6049 | 1894,16,0,187,1, | ||
6050 | 2226,886,1,1225,1895, | ||
6051 | 16,0,187,1,1479, | ||
6052 | 1896,16,0,187,1, | ||
6053 | 1731,1897,16,0,187, | ||
6054 | 1,1989,894,1,1990, | ||
6055 | 1898,16,0,187,1, | ||
6056 | 1443,1899,16,0,187, | ||
6057 | 1,236,1900,16,0, | ||
6058 | 187,1,1756,1901,16, | ||
6059 | 0,187,1,17,1902, | ||
6060 | 19,154,1,17,1903, | ||
6061 | 5,116,1,1,1904, | ||
6062 | 17,1905,15,1906,4, | ||
6063 | 18,37,0,84,0, | ||
6064 | 121,0,112,0,101, | ||
6065 | 0,110,0,97,0, | ||
6066 | 109,0,101,0,1, | ||
6067 | -1,1,5,1907,20, | ||
6068 | 1908,4,20,84,0, | ||
6069 | 121,0,112,0,101, | ||
6070 | 0,110,0,97,0, | ||
6071 | 109,0,101,0,95, | ||
6072 | 0,55,0,1,282, | ||
6073 | 1,3,1,2,1, | ||
6074 | 1,1909,22,1,146, | ||
6075 | 1,2,1910,17,1911, | ||
6076 | 15,1906,1,-1,1, | ||
6077 | 5,1912,20,1913,4, | ||
6078 | 20,84,0,121,0, | ||
6079 | 112,0,101,0,110, | ||
6080 | 0,97,0,109,0, | ||
6081 | 101,0,95,0,54, | ||
6082 | 0,1,281,1,3, | ||
6083 | 1,2,1,1,1914, | ||
6084 | 22,1,145,1,3, | ||
6085 | 1915,17,1916,15,1906, | ||
6086 | 1,-1,1,5,1917, | ||
6087 | 20,1918,4,20,84, | ||
6088 | 0,121,0,112,0, | ||
6089 | 101,0,110,0,97, | ||
6090 | 0,109,0,101,0, | ||
6091 | 95,0,53,0,1, | ||
6092 | 280,1,3,1,2, | ||
6093 | 1,1,1919,22,1, | ||
6094 | 144,1,4,1920,17, | ||
6095 | 1921,15,1906,1,-1, | ||
6096 | 1,5,1922,20,1923, | ||
6097 | 4,20,84,0,121, | ||
6098 | 0,112,0,101,0, | ||
6099 | 110,0,97,0,109, | ||
6100 | 0,101,0,95,0, | ||
6101 | 52,0,1,279,1, | ||
6102 | 3,1,2,1,1, | ||
6103 | 1924,22,1,143,1, | ||
6104 | 5,1925,17,1926,15, | ||
6105 | 1906,1,-1,1,5, | ||
6106 | 1927,20,1928,4,20, | ||
6107 | 84,0,121,0,112, | ||
6108 | 0,101,0,110,0, | ||
6109 | 97,0,109,0,101, | ||
6110 | 0,95,0,51,0, | ||
6111 | 1,278,1,3,1, | ||
6112 | 2,1,1,1929,22, | ||
6113 | 1,142,1,6,1930, | ||
6114 | 17,1931,15,1906,1, | ||
6115 | -1,1,5,1932,20, | ||
6116 | 1933,4,20,84,0, | ||
6117 | 121,0,112,0,101, | ||
6118 | 0,110,0,97,0, | ||
6119 | 109,0,101,0,95, | ||
6120 | 0,50,0,1,277, | ||
6121 | 1,3,1,2,1, | ||
6122 | 1,1934,22,1,141, | ||
6123 | 1,7,1935,17,1936, | ||
6124 | 15,1906,1,-1,1, | ||
6125 | 5,1937,20,1938,4, | ||
6126 | 20,84,0,121,0, | ||
6127 | 112,0,101,0,110, | ||
6128 | 0,97,0,109,0, | ||
6129 | 101,0,95,0,49, | ||
6130 | 0,1,276,1,3, | ||
6131 | 1,2,1,1,1939, | ||
6132 | 22,1,140,1,1514, | ||
6133 | 1080,1,9,1085,1, | ||
6134 | 10,1603,1,262,1091, | ||
6135 | 1,1267,1097,1,1521, | ||
6136 | 1102,1,1773,1940,16, | ||
6137 | 0,235,1,19,1114, | ||
6138 | 1,20,1941,16,0, | ||
6139 | 152,1,2280,1121,1, | ||
6140 | 525,1184,1,2534,1609, | ||
6141 | 1,30,1611,1,283, | ||
6142 | 1144,1,2543,1942,16, | ||
6143 | 0,476,1,1010,1943, | ||
6144 | 16,0,592,1,40, | ||
6145 | 1133,1,41,1617,1, | ||
6146 | 42,1621,1,44,1149, | ||
6147 | 1,1260,1068,1,47, | ||
6148 | 1151,1,1303,1279,1, | ||
6149 | 49,1163,1,50,1174, | ||
6150 | 1,48,1157,1,305, | ||
6151 | 1179,1,51,1169,1, | ||
6152 | 61,1944,16,0,193, | ||
6153 | 1,63,1190,1,2073, | ||
6154 | 1945,16,0,566,1, | ||
6155 | 66,1196,1,67,1201, | ||
6156 | 1,68,1206,1,69, | ||
6157 | 1211,1,70,1216,1, | ||
6158 | 73,1946,16,0,203, | ||
6159 | 1,74,1221,1,1013, | ||
6160 | 1226,1,328,1274,1, | ||
6161 | 1048,1236,1,82,1252, | ||
6162 | 1,1840,1947,16,0, | ||
6163 | 364,1,1341,1269,1, | ||
6164 | 1094,1948,16,0,654, | ||
6165 | 1,1096,1284,1,93, | ||
6166 | 1290,1,1550,1295,1, | ||
6167 | 827,1347,1,2363,1627, | ||
6168 | 1,1011,1074,1,107, | ||
6169 | 1308,1,1114,1313,1, | ||
6170 | 1871,1949,16,0,374, | ||
6171 | 1,1370,1476,1,1478, | ||
6172 | 1417,1,118,1316,1, | ||
6173 | 1123,1321,1,1332,1231, | ||
6174 | 1,1377,1332,1,375, | ||
6175 | 1337,1,1882,1950,16, | ||
6176 | 0,406,1,377,1342, | ||
6177 | 1,352,1301,1,379, | ||
6178 | 1375,1,380,1352,1, | ||
6179 | 130,1358,1,371,1326, | ||
6180 | 1,373,1370,1,1012, | ||
6181 | 1951,16,0,594,1, | ||
6182 | 2401,1632,1,143,1380, | ||
6183 | 1,1152,1386,1,1406, | ||
6184 | 1392,1,1159,1397,1, | ||
6185 | 157,1402,1,1413,1407, | ||
6186 | 1,883,1412,1,1296, | ||
6187 | 1139,1,172,1428,1, | ||
6188 | 1665,1486,1,1939,1952, | ||
6189 | 16,0,452,1,1188, | ||
6190 | 1433,1,1442,1438,1, | ||
6191 | 2196,1953,16,0,649, | ||
6192 | 1,942,1444,1,1195, | ||
6193 | 1449,1,1449,1454,1, | ||
6194 | 1701,1459,1,447,1464, | ||
6195 | 1,188,1471,1,205, | ||
6196 | 1481,1,459,1639,1, | ||
6197 | 464,1642,1,1224,1492, | ||
6198 | 1,223,1497,1,1730, | ||
6199 | 1502,1,476,1507,1, | ||
6200 | 477,1513,1,1231,1518, | ||
6201 | 1,2410,1954,16,0, | ||
6202 | 362,1,480,1528,1, | ||
6203 | 1485,1534,1,242,1541, | ||
6204 | 1,478,1546,1,479, | ||
6205 | 1523,1,481,1648,1, | ||
6206 | 1001,1551,1,1002,1556, | ||
6207 | 1,18,1955,19,496, | ||
6208 | 1,18,1956,5,83, | ||
6209 | 1,1011,1074,1,1012, | ||
6210 | 1957,16,0,494,1, | ||
6211 | 1013,1226,1,262,1091, | ||
6212 | 1,1267,1958,16,0, | ||
6213 | 494,1,515,1959,16, | ||
6214 | 0,494,1,1521,1960, | ||
6215 | 16,0,494,1,525, | ||
6216 | 1184,1,283,1144,1, | ||
6217 | 40,1133,1,42,1961, | ||
6218 | 16,0,494,1,44, | ||
6219 | 1149,1,2556,1962,16, | ||
6220 | 0,494,1,47,1151, | ||
6221 | 1,1303,1963,16,0, | ||
6222 | 494,1,1555,1964,16, | ||
6223 | 0,494,1,50,1174, | ||
6224 | 1,48,1157,1,49, | ||
6225 | 1163,1,51,1169,1, | ||
6226 | 63,1190,1,305,1179, | ||
6227 | 1,66,1196,1,67, | ||
6228 | 1201,1,68,1206,1, | ||
6229 | 69,1211,1,70,1216, | ||
6230 | 1,73,1965,16,0, | ||
6231 | 494,1,74,1221,1, | ||
6232 | 328,1274,1,1048,1966, | ||
6233 | 16,0,494,1,82, | ||
6234 | 1967,16,0,494,1, | ||
6235 | 1840,1968,16,0,494, | ||
6236 | 1,1591,1969,16,0, | ||
6237 | 494,1,1341,1970,16, | ||
6238 | 0,494,1,1096,1284, | ||
6239 | 1,93,1290,1,352, | ||
6240 | 1301,1,107,1971,16, | ||
6241 | 0,494,1,1114,1313, | ||
6242 | 1,118,1972,16,0, | ||
6243 | 494,1,1123,1973,16, | ||
6244 | 0,494,1,371,1326, | ||
6245 | 1,1628,1974,16,0, | ||
6246 | 494,1,375,1337,1, | ||
6247 | 1882,1975,16,0,494, | ||
6248 | 1,377,1342,1,379, | ||
6249 | 1375,1,380,1352,1, | ||
6250 | 883,1976,16,0,494, | ||
6251 | 1,373,1370,1,130, | ||
6252 | 1977,16,0,494,1, | ||
6253 | 143,1978,16,0,494, | ||
6254 | 1,387,1979,16,0, | ||
6255 | 494,1,1159,1980,16, | ||
6256 | 0,494,1,157,1981, | ||
6257 | 16,0,494,1,1413, | ||
6258 | 1982,16,0,494,1, | ||
6259 | 1665,1983,16,0,494, | ||
6260 | 1,412,1984,16,0, | ||
6261 | 494,1,1377,1985,16, | ||
6262 | 0,494,1,172,1986, | ||
6263 | 16,0,494,1,1939, | ||
6264 | 1987,16,0,494,1, | ||
6265 | 437,1988,16,0,494, | ||
6266 | 1,188,1989,16,0, | ||
6267 | 494,1,942,1990,16, | ||
6268 | 0,494,1,1195,1991, | ||
6269 | 16,0,494,1,1449, | ||
6270 | 1992,16,0,494,1, | ||
6271 | 1701,1993,16,0,494, | ||
6272 | 1,447,1464,1,205, | ||
6273 | 1994,16,0,494,1, | ||
6274 | 827,1995,16,0,494, | ||
6275 | 1,223,1996,16,0, | ||
6276 | 494,1,476,1507,1, | ||
6277 | 477,1513,1,1231,1997, | ||
6278 | 16,0,494,1,479, | ||
6279 | 1523,1,480,1528,1, | ||
6280 | 1485,1998,16,0,494, | ||
6281 | 1,1737,1999,16,0, | ||
6282 | 494,1,242,2000,16, | ||
6283 | 0,494,1,478,1546, | ||
6284 | 1,1001,1551,1,1002, | ||
6285 | 1556,1,19,2001,19, | ||
6286 | 227,1,19,2002,5, | ||
6287 | 171,1,256,2003,16, | ||
6288 | 0,225,1,1261,2004, | ||
6289 | 16,0,225,1,1011, | ||
6290 | 1074,1,1012,2005,16, | ||
6291 | 0,483,1,1515,2006, | ||
6292 | 16,0,225,1,262, | ||
6293 | 1091,1,1267,2007,16, | ||
6294 | 0,483,1,2021,707, | ||
6295 | 1,1521,2008,16,0, | ||
6296 | 483,1,1775,2009,16, | ||
6297 | 0,225,1,2029,714, | ||
6298 | 1,2030,720,1,2031, | ||
6299 | 725,1,2032,730,1, | ||
6300 | 2033,735,1,277,2010, | ||
6301 | 16,0,225,1,2035, | ||
6302 | 741,1,2037,746,1, | ||
6303 | 2039,751,1,32,2011, | ||
6304 | 16,0,225,1,2041, | ||
6305 | 757,1,2043,762,1, | ||
6306 | 2044,767,1,40,1133, | ||
6307 | 1,41,2012,16,0, | ||
6308 | 225,1,42,2013,16, | ||
6309 | 0,483,1,43,2014, | ||
6310 | 16,0,225,1,44, | ||
6311 | 1149,1,1802,774,1, | ||
6312 | 2556,2015,16,0,483, | ||
6313 | 1,1804,2016,16,0, | ||
6314 | 225,1,48,1157,1, | ||
6315 | 49,1163,1,2309,2017, | ||
6316 | 16,0,225,1,51, | ||
6317 | 1169,1,52,2018,16, | ||
6318 | 0,225,1,47,1151, | ||
6319 | 1,305,1179,1,50, | ||
6320 | 1174,1,509,2019,16, | ||
6321 | 0,225,1,299,2020, | ||
6322 | 16,0,225,1,283, | ||
6323 | 1144,1,63,1190,1, | ||
6324 | 1002,1556,1,66,1196, | ||
6325 | 1,67,1201,1,68, | ||
6326 | 1206,1,69,1211,1, | ||
6327 | 70,1216,1,71,2021, | ||
6328 | 16,0,225,1,73, | ||
6329 | 2022,16,0,483,1, | ||
6330 | 74,1221,1,1013,1226, | ||
6331 | 1,76,2023,16,0, | ||
6332 | 225,1,1834,2024,16, | ||
6333 | 0,225,1,1048,2025, | ||
6334 | 16,0,483,1,79, | ||
6335 | 2026,16,0,225,1, | ||
6336 | 1335,2027,16,0,225, | ||
6337 | 1,82,2028,16,0, | ||
6338 | 483,1,1840,2029,16, | ||
6339 | 0,483,1,1297,2030, | ||
6340 | 16,0,225,1,85, | ||
6341 | 2031,16,0,225,1, | ||
6342 | 1341,2032,16,0,483, | ||
6343 | 1,89,2033,16,0, | ||
6344 | 225,1,1303,2034,16, | ||
6345 | 0,483,1,1096,1284, | ||
6346 | 1,93,1290,1,2354, | ||
6347 | 853,1,2355,858,1, | ||
6348 | 97,2035,16,0,225, | ||
6349 | 1,2358,807,1,2360, | ||
6350 | 813,1,102,2036,16, | ||
6351 | 0,225,1,1860,820, | ||
6352 | 1,107,2037,16,0, | ||
6353 | 483,1,1114,1313,1, | ||
6354 | 112,2038,16,0,225, | ||
6355 | 1,1117,2039,16,0, | ||
6356 | 225,1,352,1301,1, | ||
6357 | 1873,829,1,118,2040, | ||
6358 | 16,0,483,1,1123, | ||
6359 | 2041,16,0,483,1, | ||
6360 | 371,1326,1,2550,2042, | ||
6361 | 16,0,225,1,1377, | ||
6362 | 2043,16,0,483,1, | ||
6363 | 124,2044,16,0,225, | ||
6364 | 1,1882,2045,16,0, | ||
6365 | 483,1,377,1342,1, | ||
6366 | 2135,836,1,827,2046, | ||
6367 | 16,0,483,1,380, | ||
6368 | 1352,1,130,2047,16, | ||
6369 | 0,483,1,322,2048, | ||
6370 | 16,0,225,1,2074, | ||
6371 | 2049,16,0,225,1, | ||
6372 | 373,1370,1,387,2050, | ||
6373 | 16,0,483,1,137, | ||
6374 | 2051,16,0,225,1, | ||
6375 | 515,2052,16,0,483, | ||
6376 | 1,379,1375,1,143, | ||
6377 | 2053,16,0,483,1, | ||
6378 | 1901,2054,16,0,225, | ||
6379 | 1,2197,2055,16,0, | ||
6380 | 225,1,1153,2056,16, | ||
6381 | 0,225,1,375,1337, | ||
6382 | 1,151,2057,16,0, | ||
6383 | 225,1,1407,2058,16, | ||
6384 | 0,225,1,1659,2059, | ||
6385 | 16,0,225,1,1159, | ||
6386 | 2060,16,0,483,1, | ||
6387 | 381,2061,16,0,225, | ||
6388 | 1,157,2062,16,0, | ||
6389 | 483,1,1413,2063,16, | ||
6390 | 0,483,1,883,2064, | ||
6391 | 16,0,483,1,1371, | ||
6392 | 2065,16,0,225,1, | ||
6393 | 328,1274,1,2104,801, | ||
6394 | 1,2105,2066,16,0, | ||
6395 | 225,1,166,2067,16, | ||
6396 | 0,225,1,346,2068, | ||
6397 | 16,0,225,1,1622, | ||
6398 | 2069,16,0,225,1, | ||
6399 | 406,2070,16,0,225, | ||
6400 | 1,1574,787,1,172, | ||
6401 | 2071,16,0,483,1, | ||
6402 | 1931,863,1,412,2072, | ||
6403 | 16,0,483,1,1933, | ||
6404 | 2073,16,0,225,1, | ||
6405 | 1876,2074,16,0,225, | ||
6406 | 1,431,2075,16,0, | ||
6407 | 225,1,1585,2076,16, | ||
6408 | 0,225,1,182,2077, | ||
6409 | 16,0,225,1,1628, | ||
6410 | 2078,16,0,483,1, | ||
6411 | 1189,2079,16,0,225, | ||
6412 | 1,437,2080,16,0, | ||
6413 | 483,1,1591,2081,16, | ||
6414 | 0,483,1,188,2082, | ||
6415 | 16,0,483,1,1695, | ||
6416 | 2083,16,0,225,1, | ||
6417 | 1195,2084,16,0,483, | ||
6418 | 1,1449,2085,16,0, | ||
6419 | 483,1,1701,2086,16, | ||
6420 | 0,483,1,447,2087, | ||
6421 | 16,0,225,1,199, | ||
6422 | 2088,16,0,225,1, | ||
6423 | 1958,2089,16,0,225, | ||
6424 | 1,525,2090,16,0, | ||
6425 | 225,1,1657,878,1, | ||
6426 | 205,2091,16,0,483, | ||
6427 | 1,459,2092,16,0, | ||
6428 | 225,1,462,2093,16, | ||
6429 | 0,225,1,1665,2094, | ||
6430 | 16,0,483,1,217, | ||
6431 | 2095,16,0,225,1, | ||
6432 | 2226,886,1,942,2096, | ||
6433 | 16,0,483,1,1225, | ||
6434 | 2097,16,0,225,1, | ||
6435 | 223,2098,16,0,483, | ||
6436 | 1,1479,2099,16,0, | ||
6437 | 225,1,1731,2100,16, | ||
6438 | 0,225,1,477,1513, | ||
6439 | 1,1231,2101,16,0, | ||
6440 | 483,1,479,1523,1, | ||
6441 | 480,1528,1,1485,2102, | ||
6442 | 16,0,483,1,1737, | ||
6443 | 2103,16,0,483,1, | ||
6444 | 1989,894,1,1990,2104, | ||
6445 | 16,0,225,1,1443, | ||
6446 | 2105,16,0,225,1, | ||
6447 | 236,2106,16,0,225, | ||
6448 | 1,476,1507,1,242, | ||
6449 | 2107,16,0,483,1, | ||
6450 | 478,1546,1,1939,2108, | ||
6451 | 16,0,483,1,1001, | ||
6452 | 1551,1,1555,2109,16, | ||
6453 | 0,483,1,1756,2110, | ||
6454 | 16,0,225,1,20, | ||
6455 | 2111,19,458,1,20, | ||
6456 | 2112,5,83,1,1011, | ||
6457 | 1074,1,1012,2113,16, | ||
6458 | 0,456,1,1013,1226, | ||
6459 | 1,262,1091,1,1267, | ||
6460 | 2114,16,0,456,1, | ||
6461 | 515,2115,16,0,456, | ||
6462 | 1,1521,2116,16,0, | ||
6463 | 456,1,525,1184,1, | ||
6464 | 283,1144,1,40,1133, | ||
6465 | 1,42,2117,16,0, | ||
6466 | 456,1,44,1149,1, | ||
6467 | 2556,2118,16,0,456, | ||
6468 | 1,47,1151,1,1303, | ||
6469 | 2119,16,0,456,1, | ||
6470 | 1555,2120,16,0,456, | ||
6471 | 1,50,1174,1,48, | ||
6472 | 1157,1,49,1163,1, | ||
6473 | 51,1169,1,63,1190, | ||
6474 | 1,305,1179,1,66, | ||
6475 | 1196,1,67,1201,1, | ||
6476 | 68,1206,1,69,1211, | ||
6477 | 1,70,1216,1,73, | ||
6478 | 2121,16,0,456,1, | ||
6479 | 74,1221,1,328,2122, | ||
6480 | 16,0,456,1,1048, | ||
6481 | 2123,16,0,456,1, | ||
6482 | 82,2124,16,0,456, | ||
6483 | 1,1840,2125,16,0, | ||
6484 | 456,1,1591,2126,16, | ||
6485 | 0,456,1,1341,2127, | ||
6486 | 16,0,456,1,1096, | ||
6487 | 1284,1,93,1290,1, | ||
6488 | 352,2128,16,0,456, | ||
6489 | 1,107,2129,16,0, | ||
6490 | 456,1,1114,1313,1, | ||
6491 | 118,2130,16,0,456, | ||
6492 | 1,1123,2131,16,0, | ||
6493 | 456,1,371,1326,1, | ||
6494 | 1628,2132,16,0,456, | ||
6495 | 1,375,1337,1,1882, | ||
6496 | 2133,16,0,456,1, | ||
6497 | 377,1342,1,379,1375, | ||
6498 | 1,380,1352,1,883, | ||
6499 | 2134,16,0,456,1, | ||
6500 | 373,1370,1,130,2135, | ||
6501 | 16,0,456,1,143, | ||
6502 | 2136,16,0,456,1, | ||
6503 | 387,2137,16,0,456, | ||
6504 | 1,1159,2138,16,0, | ||
6505 | 456,1,157,2139,16, | ||
6506 | 0,456,1,1413,2140, | ||
6507 | 16,0,456,1,1665, | ||
6508 | 2141,16,0,456,1, | ||
6509 | 412,2142,16,0,456, | ||
6510 | 1,1377,2143,16,0, | ||
6511 | 456,1,172,2144,16, | ||
6512 | 0,456,1,1939,2145, | ||
6513 | 16,0,456,1,437, | ||
6514 | 2146,16,0,456,1, | ||
6515 | 188,2147,16,0,456, | ||
6516 | 1,942,2148,16,0, | ||
6517 | 456,1,1195,2149,16, | ||
6518 | 0,456,1,1449,2150, | ||
6519 | 16,0,456,1,1701, | ||
6520 | 2151,16,0,456,1, | ||
6521 | 447,1464,1,205,2152, | ||
6522 | 16,0,456,1,827, | ||
6523 | 2153,16,0,456,1, | ||
6524 | 223,2154,16,0,456, | ||
6525 | 1,476,1507,1,477, | ||
6526 | 1513,1,1231,2155,16, | ||
6527 | 0,456,1,479,1523, | ||
6528 | 1,480,1528,1,1485, | ||
6529 | 2156,16,0,456,1, | ||
6530 | 1737,2157,16,0,456, | ||
6531 | 1,242,2158,16,0, | ||
6532 | 456,1,478,1546,1, | ||
6533 | 1001,1551,1,1002,1556, | ||
6534 | 1,21,2159,19,449, | ||
6535 | 1,21,2160,5,83, | ||
6536 | 1,1011,1074,1,1012, | ||
6537 | 2161,16,0,447,1, | ||
6538 | 1013,1226,1,262,1091, | ||
6539 | 1,1267,2162,16,0, | ||
6540 | 447,1,515,2163,16, | ||
6541 | 0,447,1,1521,2164, | ||
6542 | 16,0,447,1,525, | ||
6543 | 1184,1,283,1144,1, | ||
6544 | 40,1133,1,42,2165, | ||
6545 | 16,0,447,1,44, | ||
6546 | 1149,1,2556,2166,16, | ||
6547 | 0,447,1,47,1151, | ||
6548 | 1,1303,2167,16,0, | ||
6549 | 447,1,1555,2168,16, | ||
6550 | 0,447,1,50,1174, | ||
6551 | 1,48,1157,1,49, | ||
6552 | 1163,1,51,1169,1, | ||
6553 | 63,1190,1,305,1179, | ||
6554 | 1,66,1196,1,67, | ||
6555 | 1201,1,68,1206,1, | ||
6556 | 69,1211,1,70,1216, | ||
6557 | 1,73,2169,16,0, | ||
6558 | 447,1,74,1221,1, | ||
6559 | 328,2170,16,0,447, | ||
6560 | 1,1048,2171,16,0, | ||
6561 | 447,1,82,2172,16, | ||
6562 | 0,447,1,1840,2173, | ||
6563 | 16,0,447,1,1591, | ||
6564 | 2174,16,0,447,1, | ||
6565 | 1341,2175,16,0,447, | ||
6566 | 1,1096,1284,1,93, | ||
6567 | 1290,1,352,2176,16, | ||
6568 | 0,447,1,107,2177, | ||
6569 | 16,0,447,1,1114, | ||
6570 | 1313,1,118,2178,16, | ||
6571 | 0,447,1,1123,2179, | ||
6572 | 16,0,447,1,371, | ||
6573 | 1326,1,1628,2180,16, | ||
6574 | 0,447,1,375,1337, | ||
6575 | 1,1882,2181,16,0, | ||
6576 | 447,1,377,1342,1, | ||
6577 | 379,1375,1,380,1352, | ||
6578 | 1,883,2182,16,0, | ||
6579 | 447,1,373,1370,1, | ||
6580 | 130,2183,16,0,447, | ||
6581 | 1,143,2184,16,0, | ||
6582 | 447,1,387,2185,16, | ||
6583 | 0,447,1,1159,2186, | ||
6584 | 16,0,447,1,157, | ||
6585 | 2187,16,0,447,1, | ||
6586 | 1413,2188,16,0,447, | ||
6587 | 1,1665,2189,16,0, | ||
6588 | 447,1,412,2190,16, | ||
6589 | 0,447,1,1377,2191, | ||
6590 | 16,0,447,1,172, | ||
6591 | 2192,16,0,447,1, | ||
6592 | 1939,2193,16,0,447, | ||
6593 | 1,437,2194,16,0, | ||
6594 | 447,1,188,2195,16, | ||
6595 | 0,447,1,942,2196, | ||
6596 | 16,0,447,1,1195, | ||
6597 | 2197,16,0,447,1, | ||
6598 | 1449,2198,16,0,447, | ||
6599 | 1,1701,2199,16,0, | ||
6600 | 447,1,447,1464,1, | ||
6601 | 205,2200,16,0,447, | ||
6602 | 1,827,2201,16,0, | ||
6603 | 447,1,223,2202,16, | ||
6604 | 0,447,1,476,1507, | ||
6605 | 1,477,1513,1,1231, | ||
6606 | 2203,16,0,447,1, | ||
6607 | 479,1523,1,480,1528, | ||
6608 | 1,1485,2204,16,0, | ||
6609 | 447,1,1737,2205,16, | ||
6610 | 0,447,1,242,2206, | ||
6611 | 16,0,447,1,478, | ||
6612 | 1546,1,1001,1551,1, | ||
6613 | 1002,1556,1,22,2207, | ||
6614 | 19,435,1,22,2208, | ||
6615 | 5,83,1,1011,1074, | ||
6616 | 1,1012,2209,16,0, | ||
6617 | 433,1,1013,1226,1, | ||
6618 | 262,1091,1,1267,2210, | ||
6619 | 16,0,433,1,515, | ||
6620 | 2211,16,0,433,1, | ||
6621 | 1521,2212,16,0,433, | ||
6622 | 1,525,1184,1,283, | ||
6623 | 1144,1,40,1133,1, | ||
6624 | 42,2213,16,0,433, | ||
6625 | 1,44,1149,1,2556, | ||
6626 | 2214,16,0,433,1, | ||
6627 | 47,1151,1,1303,2215, | ||
6628 | 16,0,433,1,1555, | ||
6629 | 2216,16,0,433,1, | ||
6630 | 50,1174,1,48,1157, | ||
6631 | 1,49,1163,1,51, | ||
6632 | 1169,1,63,1190,1, | ||
6633 | 305,1179,1,66,1196, | ||
6634 | 1,67,1201,1,68, | ||
6635 | 1206,1,69,1211,1, | ||
6636 | 70,1216,1,73,2217, | ||
6637 | 16,0,433,1,74, | ||
6638 | 1221,1,328,2218,16, | ||
6639 | 0,433,1,1048,2219, | ||
6640 | 16,0,433,1,82, | ||
6641 | 2220,16,0,433,1, | ||
6642 | 1840,2221,16,0,433, | ||
6643 | 1,1591,2222,16,0, | ||
6644 | 433,1,1341,2223,16, | ||
6645 | 0,433,1,1096,1284, | ||
6646 | 1,93,1290,1,352, | ||
6647 | 2224,16,0,433,1, | ||
6648 | 107,2225,16,0,433, | ||
6649 | 1,1114,1313,1,118, | ||
6650 | 2226,16,0,433,1, | ||
6651 | 1123,2227,16,0,433, | ||
6652 | 1,371,1326,1,1628, | ||
6653 | 2228,16,0,433,1, | ||
6654 | 375,1337,1,1882,2229, | ||
6655 | 16,0,433,1,377, | ||
6656 | 1342,1,379,1375,1, | ||
6657 | 380,1352,1,883,2230, | ||
6658 | 16,0,433,1,373, | ||
6659 | 1370,1,130,2231,16, | ||
6660 | 0,433,1,143,2232, | ||
6661 | 16,0,433,1,387, | ||
6662 | 2233,16,0,433,1, | ||
6663 | 1159,2234,16,0,433, | ||
6664 | 1,157,2235,16,0, | ||
6665 | 433,1,1413,2236,16, | ||
6666 | 0,433,1,1665,2237, | ||
6667 | 16,0,433,1,412, | ||
6668 | 2238,16,0,433,1, | ||
6669 | 1377,2239,16,0,433, | ||
6670 | 1,172,2240,16,0, | ||
6671 | 433,1,1939,2241,16, | ||
6672 | 0,433,1,437,2242, | ||
6673 | 16,0,433,1,188, | ||
6674 | 2243,16,0,433,1, | ||
6675 | 942,2244,16,0,433, | ||
6676 | 1,1195,2245,16,0, | ||
6677 | 433,1,1449,2246,16, | ||
6678 | 0,433,1,1701,2247, | ||
6679 | 16,0,433,1,447, | ||
6680 | 1464,1,205,2248,16, | ||
6681 | 0,433,1,827,2249, | ||
6682 | 16,0,433,1,223, | ||
6683 | 2250,16,0,433,1, | ||
6684 | 476,1507,1,477,1513, | ||
6685 | 1,1231,2251,16,0, | ||
6686 | 433,1,479,1523,1, | ||
6687 | 480,1528,1,1485,2252, | ||
6688 | 16,0,433,1,1737, | ||
6689 | 2253,16,0,433,1, | ||
6690 | 242,2254,16,0,433, | ||
6691 | 1,478,1546,1,1001, | ||
6692 | 1551,1,1002,1556,1, | ||
6693 | 23,2255,19,508,1, | ||
6694 | 23,2256,5,36,1, | ||
6695 | 2074,2257,16,0,506, | ||
6696 | 1,1860,820,1,2197, | ||
6697 | 2258,16,0,506,1, | ||
6698 | 2309,2259,16,0,506, | ||
6699 | 1,1657,878,1,2031, | ||
6700 | 725,1,1989,894,1, | ||
6701 | 1990,2260,16,0,506, | ||
6702 | 1,1775,2261,16,0, | ||
6703 | 506,1,32,2262,16, | ||
6704 | 0,506,1,2104,801, | ||
6705 | 1,2105,2263,16,0, | ||
6706 | 506,1,2226,886,1, | ||
6707 | 1901,2264,16,0,506, | ||
6708 | 1,1802,774,1,2021, | ||
6709 | 707,1,1804,2265,16, | ||
6710 | 0,506,1,2135,836, | ||
6711 | 1,2354,853,1,2355, | ||
6712 | 858,1,2029,714,1, | ||
6713 | 2030,720,1,2358,807, | ||
6714 | 1,2032,730,1,2360, | ||
6715 | 813,1,2035,741,1, | ||
6716 | 2037,746,1,2039,751, | ||
6717 | 1,1931,863,1,2041, | ||
6718 | 757,1,1873,829,1, | ||
6719 | 2043,762,1,2044,767, | ||
6720 | 1,2033,735,1,1574, | ||
6721 | 787,1,1958,2266,16, | ||
6722 | 0,506,1,24,2267, | ||
6723 | 19,177,1,24,2268, | ||
6724 | 5,5,1,44,2269, | ||
6725 | 16,0,175,1,377, | ||
6726 | 2270,16,0,544,1, | ||
6727 | 40,2271,16,0,662, | ||
6728 | 1,63,2272,16,0, | ||
6729 | 195,1,373,2273,16, | ||
6730 | 0,540,1,25,2274, | ||
6731 | 19,339,1,25,2275, | ||
6732 | 5,172,1,256,2276, | ||
6733 | 16,0,549,1,1261, | ||
6734 | 2277,16,0,549,1, | ||
6735 | 1011,1074,1,1012,2278, | ||
6736 | 16,0,337,1,1515, | ||
6737 | 2279,16,0,549,1, | ||
6738 | 262,1091,1,1267,2280, | ||
6739 | 16,0,337,1,2021, | ||
6740 | 707,1,1521,2281,16, | ||
6741 | 0,337,1,1775,2282, | ||
6742 | 16,0,549,1,2029, | ||
6743 | 714,1,2030,720,1, | ||
6744 | 2031,725,1,2032,730, | ||
6745 | 1,2033,735,1,277, | ||
6746 | 2283,16,0,549,1, | ||
6747 | 2035,741,1,2037,746, | ||
6748 | 1,2039,751,1,32, | ||
6749 | 2284,16,0,549,1, | ||
6750 | 2041,757,1,2043,762, | ||
6751 | 1,2044,767,1,40, | ||
6752 | 1133,1,41,2285,16, | ||
6753 | 0,549,1,42,2286, | ||
6754 | 16,0,337,1,43, | ||
6755 | 2287,16,0,549,1, | ||
6756 | 44,1149,1,1802,774, | ||
6757 | 1,2556,2288,16,0, | ||
6758 | 337,1,1804,2289,16, | ||
6759 | 0,549,1,48,1157, | ||
6760 | 1,49,1163,1,2309, | ||
6761 | 2290,16,0,549,1, | ||
6762 | 51,1169,1,52,2291, | ||
6763 | 16,0,549,1,47, | ||
6764 | 1151,1,305,1179,1, | ||
6765 | 50,1174,1,509,2292, | ||
6766 | 16,0,549,1,299, | ||
6767 | 2293,16,0,549,1, | ||
6768 | 62,2294,16,0,549, | ||
6769 | 1,63,1190,1,1002, | ||
6770 | 1556,1,66,1196,1, | ||
6771 | 67,1201,1,68,1206, | ||
6772 | 1,69,1211,1,70, | ||
6773 | 1216,1,71,2295,16, | ||
6774 | 0,549,1,283,1144, | ||
6775 | 1,73,2296,16,0, | ||
6776 | 337,1,74,1221,1, | ||
6777 | 1013,1226,1,76,2297, | ||
6778 | 16,0,549,1,1834, | ||
6779 | 2298,16,0,549,1, | ||
6780 | 1048,1236,1,79,2299, | ||
6781 | 16,0,549,1,1335, | ||
6782 | 2300,16,0,549,1, | ||
6783 | 82,2301,16,0,337, | ||
6784 | 1,1840,2302,16,0, | ||
6785 | 337,1,1297,2303,16, | ||
6786 | 0,549,1,85,2304, | ||
6787 | 16,0,549,1,1341, | ||
6788 | 2305,16,0,337,1, | ||
6789 | 89,2306,16,0,549, | ||
6790 | 1,1303,2307,16,0, | ||
6791 | 337,1,1096,1284,1, | ||
6792 | 93,1290,1,2354,853, | ||
6793 | 1,2355,858,1,97, | ||
6794 | 2308,16,0,549,1, | ||
6795 | 2358,807,1,2360,813, | ||
6796 | 1,102,2309,16,0, | ||
6797 | 549,1,1860,820,1, | ||
6798 | 107,2310,16,0,337, | ||
6799 | 1,1114,1313,1,112, | ||
6800 | 2311,16,0,549,1, | ||
6801 | 1117,2312,16,0,549, | ||
6802 | 1,352,1301,1,1873, | ||
6803 | 829,1,118,1316,1, | ||
6804 | 1123,2313,16,0,337, | ||
6805 | 1,371,1326,1,2550, | ||
6806 | 2314,16,0,549,1, | ||
6807 | 1377,2315,16,0,337, | ||
6808 | 1,124,2316,16,0, | ||
6809 | 549,1,1882,2317,16, | ||
6810 | 0,337,1,377,1342, | ||
6811 | 1,2135,836,1,827, | ||
6812 | 2318,16,0,337,1, | ||
6813 | 380,1352,1,130,1358, | ||
6814 | 1,322,2319,16,0, | ||
6815 | 549,1,2074,2320,16, | ||
6816 | 0,549,1,373,1370, | ||
6817 | 1,387,2321,16,0, | ||
6818 | 337,1,137,2322,16, | ||
6819 | 0,549,1,515,2323, | ||
6820 | 16,0,337,1,379, | ||
6821 | 1375,1,143,2324,16, | ||
6822 | 0,337,1,1901,2325, | ||
6823 | 16,0,549,1,2197, | ||
6824 | 2326,16,0,549,1, | ||
6825 | 1153,2327,16,0,549, | ||
6826 | 1,375,1337,1,151, | ||
6827 | 2328,16,0,549,1, | ||
6828 | 1407,2329,16,0,549, | ||
6829 | 1,1659,2330,16,0, | ||
6830 | 549,1,1159,2331,16, | ||
6831 | 0,337,1,381,2332, | ||
6832 | 16,0,549,1,157, | ||
6833 | 2333,16,0,337,1, | ||
6834 | 1413,2334,16,0,337, | ||
6835 | 1,883,2335,16,0, | ||
6836 | 337,1,1371,2336,16, | ||
6837 | 0,549,1,328,1274, | ||
6838 | 1,2104,801,1,2105, | ||
6839 | 2337,16,0,549,1, | ||
6840 | 166,2338,16,0,549, | ||
6841 | 1,346,2339,16,0, | ||
6842 | 549,1,1622,2340,16, | ||
6843 | 0,549,1,406,2341, | ||
6844 | 16,0,549,1,1574, | ||
6845 | 787,1,172,1428,1, | ||
6846 | 1931,863,1,412,2342, | ||
6847 | 16,0,337,1,1933, | ||
6848 | 2343,16,0,549,1, | ||
6849 | 1876,2344,16,0,549, | ||
6850 | 1,431,2345,16,0, | ||
6851 | 549,1,1585,2346,16, | ||
6852 | 0,549,1,182,2347, | ||
6853 | 16,0,549,1,1628, | ||
6854 | 2348,16,0,337,1, | ||
6855 | 1189,2349,16,0,549, | ||
6856 | 1,437,2350,16,0, | ||
6857 | 337,1,1591,2351,16, | ||
6858 | 0,337,1,188,1471, | ||
6859 | 1,1695,2352,16,0, | ||
6860 | 549,1,1195,2353,16, | ||
6861 | 0,337,1,1449,2354, | ||
6862 | 16,0,337,1,1701, | ||
6863 | 2355,16,0,337,1, | ||
6864 | 447,2356,16,0,549, | ||
6865 | 1,199,2357,16,0, | ||
6866 | 549,1,1958,2358,16, | ||
6867 | 0,549,1,525,2359, | ||
6868 | 16,0,549,1,1657, | ||
6869 | 878,1,205,2360,16, | ||
6870 | 0,337,1,459,2361, | ||
6871 | 16,0,549,1,462, | ||
6872 | 2362,16,0,549,1, | ||
6873 | 1665,2363,16,0,337, | ||
6874 | 1,217,2364,16,0, | ||
6875 | 549,1,2226,886,1, | ||
6876 | 942,1444,1,1225,2365, | ||
6877 | 16,0,549,1,223, | ||
6878 | 2366,16,0,337,1, | ||
6879 | 1479,2367,16,0,549, | ||
6880 | 1,1731,2368,16,0, | ||
6881 | 549,1,477,1513,1, | ||
6882 | 1231,2369,16,0,337, | ||
6883 | 1,479,1523,1,480, | ||
6884 | 1528,1,1485,2370,16, | ||
6885 | 0,337,1,1737,2371, | ||
6886 | 16,0,337,1,1989, | ||
6887 | 894,1,1990,2372,16, | ||
6888 | 0,549,1,1443,2373, | ||
6889 | 16,0,549,1,236, | ||
6890 | 2374,16,0,549,1, | ||
6891 | 476,1507,1,242,2375, | ||
6892 | 16,0,337,1,478, | ||
6893 | 1546,1,1939,2376,16, | ||
6894 | 0,337,1,1001,1551, | ||
6895 | 1,1555,2377,16,0, | ||
6896 | 337,1,1756,2378,16, | ||
6897 | 0,549,1,26,2379, | ||
6898 | 19,369,1,26,2380, | ||
6899 | 5,83,1,1011,1074, | ||
6900 | 1,1012,2381,16,0, | ||
6901 | 367,1,1013,1226,1, | ||
6902 | 262,1091,1,1267,2382, | ||
6903 | 16,0,367,1,515, | ||
6904 | 2383,16,0,648,1, | ||
6905 | 1521,2384,16,0,367, | ||
6906 | 1,525,1184,1,283, | ||
6907 | 1144,1,40,1133,1, | ||
6908 | 42,2385,16,0,367, | ||
6909 | 1,44,1149,1,2556, | ||
6910 | 2386,16,0,367,1, | ||
6911 | 47,1151,1,1303,2387, | ||
6912 | 16,0,367,1,1555, | ||
6913 | 2388,16,0,367,1, | ||
6914 | 50,1174,1,48,1157, | ||
6915 | 1,49,1163,1,51, | ||
6916 | 1169,1,63,1190,1, | ||
6917 | 305,1179,1,66,1196, | ||
6918 | 1,67,1201,1,68, | ||
6919 | 1206,1,69,1211,1, | ||
6920 | 70,1216,1,73,2389, | ||
6921 | 16,0,367,1,74, | ||
6922 | 1221,1,328,1274,1, | ||
6923 | 1048,1236,1,82,2390, | ||
6924 | 16,0,367,1,1840, | ||
6925 | 2391,16,0,367,1, | ||
6926 | 1591,2392,16,0,367, | ||
6927 | 1,1341,2393,16,0, | ||
6928 | 367,1,1096,1284,1, | ||
6929 | 93,1290,1,352,1301, | ||
6930 | 1,107,2394,16,0, | ||
6931 | 367,1,1114,1313,1, | ||
6932 | 118,1316,1,1123,2395, | ||
6933 | 16,0,367,1,371, | ||
6934 | 1326,1,1628,2396,16, | ||
6935 | 0,367,1,375,1337, | ||
6936 | 1,1882,2397,16,0, | ||
6937 | 367,1,377,1342,1, | ||
6938 | 379,1375,1,380,1352, | ||
6939 | 1,883,2398,16,0, | ||
6940 | 367,1,373,1370,1, | ||
6941 | 130,1358,1,143,2399, | ||
6942 | 16,0,367,1,387, | ||
6943 | 2400,16,0,367,1, | ||
6944 | 1159,2401,16,0,367, | ||
6945 | 1,157,2402,16,0, | ||
6946 | 367,1,1413,2403,16, | ||
6947 | 0,367,1,1665,2404, | ||
6948 | 16,0,367,1,412, | ||
6949 | 2405,16,0,367,1, | ||
6950 | 1377,2406,16,0,367, | ||
6951 | 1,172,1428,1,1939, | ||
6952 | 2407,16,0,367,1, | ||
6953 | 437,2408,16,0,587, | ||
6954 | 1,188,1471,1,942, | ||
6955 | 1444,1,1195,2409,16, | ||
6956 | 0,367,1,1449,2410, | ||
6957 | 16,0,367,1,1701, | ||
6958 | 2411,16,0,367,1, | ||
6959 | 447,1464,1,205,2412, | ||
6960 | 16,0,367,1,827, | ||
6961 | 2413,16,0,367,1, | ||
6962 | 223,2414,16,0,367, | ||
6963 | 1,476,1507,1,477, | ||
6964 | 1513,1,1231,2415,16, | ||
6965 | 0,367,1,479,1523, | ||
6966 | 1,480,1528,1,1485, | ||
6967 | 2416,16,0,367,1, | ||
6968 | 1737,2417,16,0,367, | ||
6969 | 1,242,2418,16,0, | ||
6970 | 367,1,478,1546,1, | ||
6971 | 1001,1551,1,1002,1556, | ||
6972 | 1,27,2419,19,597, | ||
6973 | 1,27,2420,5,91, | ||
6974 | 1,256,2421,16,0, | ||
6975 | 595,1,1261,2422,16, | ||
6976 | 0,595,1,509,2423, | ||
6977 | 16,0,595,1,2197, | ||
6978 | 2424,16,0,595,1, | ||
6979 | 1515,2425,16,0,595, | ||
6980 | 1,2021,707,1,1775, | ||
6981 | 2426,16,0,595,1, | ||
6982 | 2029,714,1,2030,720, | ||
6983 | 1,2031,725,1,2032, | ||
6984 | 730,1,2033,735,1, | ||
6985 | 277,2427,16,0,595, | ||
6986 | 1,2035,741,1,2037, | ||
6987 | 746,1,2039,751,1, | ||
6988 | 32,2428,16,0,595, | ||
6989 | 1,2041,757,1,2043, | ||
6990 | 762,1,2044,767,1, | ||
6991 | 2550,2429,16,0,595, | ||
6992 | 1,41,2430,16,0, | ||
6993 | 595,1,1297,2431,16, | ||
6994 | 0,595,1,43,2432, | ||
6995 | 16,0,595,1,1802, | ||
6996 | 774,1,1804,2433,16, | ||
6997 | 0,595,1,299,2434, | ||
6998 | 16,0,595,1,2309, | ||
6999 | 2435,16,0,595,1, | ||
7000 | 52,2436,16,0,595, | ||
7001 | 1,525,2437,16,0, | ||
7002 | 595,1,62,2438,16, | ||
7003 | 0,595,1,2074,2439, | ||
7004 | 16,0,595,1,1574, | ||
7005 | 787,1,71,2440,16, | ||
7006 | 0,595,1,76,2441, | ||
7007 | 16,0,595,1,1834, | ||
7008 | 2442,16,0,595,1, | ||
7009 | 1585,2443,16,0,595, | ||
7010 | 1,1335,2444,16,0, | ||
7011 | 595,1,79,2445,16, | ||
7012 | 0,595,1,85,2446, | ||
7013 | 16,0,595,1,89, | ||
7014 | 2447,16,0,595,1, | ||
7015 | 346,2448,16,0,595, | ||
7016 | 1,2104,801,1,2105, | ||
7017 | 2449,16,0,595,1, | ||
7018 | 2358,807,1,2360,813, | ||
7019 | 1,97,2450,16,0, | ||
7020 | 595,1,1860,820,1, | ||
7021 | 102,2451,16,0,595, | ||
7022 | 1,112,2452,16,0, | ||
7023 | 595,1,1117,2453,16, | ||
7024 | 0,595,1,1873,829, | ||
7025 | 1,1876,2454,16,0, | ||
7026 | 595,1,124,2455,16, | ||
7027 | 0,595,1,2135,836, | ||
7028 | 1,381,2456,16,0, | ||
7029 | 595,1,322,2457,16, | ||
7030 | 0,595,1,137,2458, | ||
7031 | 16,0,595,1,1901, | ||
7032 | 2459,16,0,595,1, | ||
7033 | 1153,2460,16,0,595, | ||
7034 | 1,151,2461,16,0, | ||
7035 | 595,1,1407,2462,16, | ||
7036 | 0,595,1,1659,2463, | ||
7037 | 16,0,595,1,406, | ||
7038 | 2464,16,0,595,1, | ||
7039 | 1371,2465,16,0,595, | ||
7040 | 1,166,2466,16,0, | ||
7041 | 595,1,1622,2467,16, | ||
7042 | 0,595,1,2354,853, | ||
7043 | 1,2355,858,1,1931, | ||
7044 | 863,1,1933,2468,16, | ||
7045 | 0,595,1,431,2469, | ||
7046 | 16,0,595,1,182, | ||
7047 | 2470,16,0,595,1, | ||
7048 | 1189,2471,16,0,595, | ||
7049 | 1,1443,2472,16,0, | ||
7050 | 595,1,1695,2473,16, | ||
7051 | 0,595,1,447,2474, | ||
7052 | 16,0,595,1,199, | ||
7053 | 2475,16,0,595,1, | ||
7054 | 1958,2476,16,0,595, | ||
7055 | 1,1657,878,1,459, | ||
7056 | 2477,16,0,595,1, | ||
7057 | 462,2478,16,0,595, | ||
7058 | 1,217,2479,16,0, | ||
7059 | 595,1,2226,886,1, | ||
7060 | 1225,2480,16,0,595, | ||
7061 | 1,1479,2481,16,0, | ||
7062 | 595,1,1731,2482,16, | ||
7063 | 0,595,1,1989,894, | ||
7064 | 1,1990,2483,16,0, | ||
7065 | 595,1,236,2484,16, | ||
7066 | 0,595,1,1756,2485, | ||
7067 | 16,0,595,1,28, | ||
7068 | 2486,19,627,1,28, | ||
7069 | 2487,5,60,1,328, | ||
7070 | 1274,1,223,1497,1, | ||
7071 | 1096,1284,1,118,1316, | ||
7072 | 1,883,1412,1,525, | ||
7073 | 1184,1,1001,1551,1, | ||
7074 | 130,1358,1,459,1639, | ||
7075 | 1,1114,1313,1,352, | ||
7076 | 1301,1,447,1464,1, | ||
7077 | 464,1642,1,1011,1074, | ||
7078 | 1,1013,1226,1,242, | ||
7079 | 1541,1,143,1380,1, | ||
7080 | 40,1133,1,41,1617, | ||
7081 | 1,42,1621,1,479, | ||
7082 | 1523,1,44,1149,1, | ||
7083 | 481,1648,1,373,1370, | ||
7084 | 1,47,1151,1,157, | ||
7085 | 1402,1,49,1163,1, | ||
7086 | 50,1174,1,48,1157, | ||
7087 | 1,379,1375,1,380, | ||
7088 | 1352,1,51,1169,1, | ||
7089 | 476,1507,1,371,1326, | ||
7090 | 1,478,1546,1,1048, | ||
7091 | 1236,1,375,1337,1, | ||
7092 | 172,1428,1,262,1091, | ||
7093 | 1,283,1144,1,63, | ||
7094 | 1190,1,67,1201,1, | ||
7095 | 68,1206,1,69,1211, | ||
7096 | 1,66,1196,1,461, | ||
7097 | 2488,16,0,625,1, | ||
7098 | 74,1221,1,377,1342, | ||
7099 | 1,1002,1556,1,70, | ||
7100 | 1216,1,188,1471,1, | ||
7101 | 82,1252,1,305,1179, | ||
7102 | 1,477,1513,1,827, | ||
7103 | 1347,1,93,1290,1, | ||
7104 | 480,1528,1,205,1481, | ||
7105 | 1,942,1444,1,107, | ||
7106 | 1308,1,29,2489,19, | ||
7107 | 304,1,29,2490,5, | ||
7108 | 83,1,1011,1074,1, | ||
7109 | 1012,2491,16,0,302, | ||
7110 | 1,1013,1226,1,262, | ||
7111 | 1091,1,1267,2492,16, | ||
7112 | 0,302,1,515,2493, | ||
7113 | 16,0,302,1,1521, | ||
7114 | 2494,16,0,302,1, | ||
7115 | 525,1184,1,283,1144, | ||
7116 | 1,40,1133,1,42, | ||
7117 | 2495,16,0,302,1, | ||
7118 | 44,1149,1,2556,2496, | ||
7119 | 16,0,302,1,47, | ||
7120 | 1151,1,1303,2497,16, | ||
7121 | 0,302,1,1555,2498, | ||
7122 | 16,0,302,1,50, | ||
7123 | 1174,1,48,1157,1, | ||
7124 | 49,1163,1,51,1169, | ||
7125 | 1,63,1190,1,305, | ||
7126 | 1179,1,66,1196,1, | ||
7127 | 67,1201,1,68,1206, | ||
7128 | 1,69,1211,1,70, | ||
7129 | 1216,1,73,2499,16, | ||
7130 | 0,302,1,74,1221, | ||
7131 | 1,328,1274,1,1048, | ||
7132 | 1236,1,82,2500,16, | ||
7133 | 0,302,1,1840,2501, | ||
7134 | 16,0,302,1,1591, | ||
7135 | 2502,16,0,302,1, | ||
7136 | 1341,2503,16,0,302, | ||
7137 | 1,1096,1284,1,93, | ||
7138 | 1290,1,352,1301,1, | ||
7139 | 107,2504,16,0,302, | ||
7140 | 1,1114,1313,1,118, | ||
7141 | 1316,1,1123,2505,16, | ||
7142 | 0,302,1,371,1326, | ||
7143 | 1,1628,2506,16,0, | ||
7144 | 302,1,375,1337,1, | ||
7145 | 1882,2507,16,0,302, | ||
7146 | 1,377,1342,1,379, | ||
7147 | 1375,1,380,1352,1, | ||
7148 | 883,2508,16,0,302, | ||
7149 | 1,373,1370,1,130, | ||
7150 | 1358,1,143,1380,1, | ||
7151 | 387,2509,16,0,302, | ||
7152 | 1,1159,2510,16,0, | ||
7153 | 302,1,157,1402,1, | ||
7154 | 1413,2511,16,0,302, | ||
7155 | 1,1665,2512,16,0, | ||
7156 | 302,1,412,2513,16, | ||
7157 | 0,302,1,1377,2514, | ||
7158 | 16,0,302,1,172, | ||
7159 | 1428,1,1939,2515,16, | ||
7160 | 0,302,1,437,2516, | ||
7161 | 16,0,302,1,188, | ||
7162 | 1471,1,942,1444,1, | ||
7163 | 1195,2517,16,0,302, | ||
7164 | 1,1449,2518,16,0, | ||
7165 | 302,1,1701,2519,16, | ||
7166 | 0,302,1,447,1464, | ||
7167 | 1,205,2520,16,0, | ||
7168 | 302,1,827,2521,16, | ||
7169 | 0,302,1,223,2522, | ||
7170 | 16,0,302,1,476, | ||
7171 | 1507,1,477,1513,1, | ||
7172 | 1231,2523,16,0,302, | ||
7173 | 1,479,1523,1,480, | ||
7174 | 1528,1,1485,2524,16, | ||
7175 | 0,302,1,1737,2525, | ||
7176 | 16,0,302,1,242, | ||
7177 | 2526,16,0,302,1, | ||
7178 | 478,1546,1,1001,1551, | ||
7179 | 1,1002,1556,1,30, | ||
7180 | 2527,19,272,1,30, | ||
7181 | 2528,5,83,1,1011, | ||
7182 | 1074,1,1012,2529,16, | ||
7183 | 0,270,1,1013,1226, | ||
7184 | 1,262,1091,1,1267, | ||
7185 | 2530,16,0,270,1, | ||
7186 | 515,2531,16,0,270, | ||
7187 | 1,1521,2532,16,0, | ||
7188 | 270,1,525,1184,1, | ||
7189 | 283,1144,1,40,1133, | ||
7190 | 1,42,2533,16,0, | ||
7191 | 270,1,44,1149,1, | ||
7192 | 2556,2534,16,0,270, | ||
7193 | 1,47,1151,1,1303, | ||
7194 | 2535,16,0,270,1, | ||
7195 | 1555,2536,16,0,270, | ||
7196 | 1,50,1174,1,48, | ||
7197 | 1157,1,49,1163,1, | ||
7198 | 51,1169,1,63,1190, | ||
7199 | 1,305,1179,1,66, | ||
7200 | 1196,1,67,1201,1, | ||
7201 | 68,1206,1,69,1211, | ||
7202 | 1,70,1216,1,73, | ||
7203 | 2537,16,0,270,1, | ||
7204 | 74,1221,1,328,1274, | ||
7205 | 1,1048,1236,1,82, | ||
7206 | 2538,16,0,270,1, | ||
7207 | 1840,2539,16,0,270, | ||
7208 | 1,1591,2540,16,0, | ||
7209 | 270,1,1341,2541,16, | ||
7210 | 0,270,1,1096,1284, | ||
7211 | 1,93,1290,1,352, | ||
7212 | 1301,1,107,2542,16, | ||
7213 | 0,270,1,1114,1313, | ||
7214 | 1,118,1316,1,1123, | ||
7215 | 2543,16,0,270,1, | ||
7216 | 371,1326,1,1628,2544, | ||
7217 | 16,0,270,1,375, | ||
7218 | 1337,1,1882,2545,16, | ||
7219 | 0,270,1,377,1342, | ||
7220 | 1,379,1375,1,380, | ||
7221 | 1352,1,883,2546,16, | ||
7222 | 0,270,1,373,1370, | ||
7223 | 1,130,1358,1,143, | ||
7224 | 1380,1,387,2547,16, | ||
7225 | 0,270,1,1159,2548, | ||
7226 | 16,0,270,1,157, | ||
7227 | 1402,1,1413,2549,16, | ||
7228 | 0,270,1,1665,2550, | ||
7229 | 16,0,270,1,412, | ||
7230 | 2551,16,0,270,1, | ||
7231 | 1377,2552,16,0,270, | ||
7232 | 1,172,1428,1,1939, | ||
7233 | 2553,16,0,270,1, | ||
7234 | 437,2554,16,0,270, | ||
7235 | 1,188,1471,1,942, | ||
7236 | 1444,1,1195,2555,16, | ||
7237 | 0,270,1,1449,2556, | ||
7238 | 16,0,270,1,1701, | ||
7239 | 2557,16,0,270,1, | ||
7240 | 447,1464,1,205,2558, | ||
7241 | 16,0,270,1,827, | ||
7242 | 2559,16,0,270,1, | ||
7243 | 223,2560,16,0,270, | ||
7244 | 1,476,1507,1,477, | ||
7245 | 1513,1,1231,2561,16, | ||
7246 | 0,270,1,479,1523, | ||
7247 | 1,480,1528,1,1485, | ||
7248 | 2562,16,0,270,1, | ||
7249 | 1737,2563,16,0,270, | ||
7250 | 1,242,2564,16,0, | ||
7251 | 270,1,478,1546,1, | ||
7252 | 1001,1551,1,1002,1556, | ||
7253 | 1,31,2565,19,251, | ||
7254 | 1,31,2566,5,83, | ||
7255 | 1,1011,1074,1,1012, | ||
7256 | 2567,16,0,249,1, | ||
7257 | 1013,1226,1,262,1091, | ||
7258 | 1,1267,2568,16,0, | ||
7259 | 249,1,515,2569,16, | ||
7260 | 0,249,1,1521,2570, | ||
7261 | 16,0,249,1,525, | ||
7262 | 1184,1,283,1144,1, | ||
7263 | 40,1133,1,42,2571, | ||
7264 | 16,0,249,1,44, | ||
7265 | 1149,1,2556,2572,16, | ||
7266 | 0,249,1,47,1151, | ||
7267 | 1,1303,2573,16,0, | ||
7268 | 249,1,1555,2574,16, | ||
7269 | 0,249,1,50,1174, | ||
7270 | 1,48,1157,1,49, | ||
7271 | 1163,1,51,1169,1, | ||
7272 | 63,1190,1,305,1179, | ||
7273 | 1,66,1196,1,67, | ||
7274 | 1201,1,68,1206,1, | ||
7275 | 69,1211,1,70,1216, | ||
7276 | 1,73,2575,16,0, | ||
7277 | 249,1,74,1221,1, | ||
7278 | 328,1274,1,1048,1236, | ||
7279 | 1,82,2576,16,0, | ||
7280 | 249,1,1840,2577,16, | ||
7281 | 0,249,1,1591,2578, | ||
7282 | 16,0,249,1,1341, | ||
7283 | 2579,16,0,249,1, | ||
7284 | 1096,1284,1,93,1290, | ||
7285 | 1,352,1301,1,107, | ||
7286 | 2580,16,0,249,1, | ||
7287 | 1114,1313,1,118,1316, | ||
7288 | 1,1123,2581,16,0, | ||
7289 | 249,1,371,1326,1, | ||
7290 | 1628,2582,16,0,249, | ||
7291 | 1,375,1337,1,1882, | ||
7292 | 2583,16,0,249,1, | ||
7293 | 377,1342,1,379,1375, | ||
7294 | 1,380,1352,1,883, | ||
7295 | 2584,16,0,249,1, | ||
7296 | 373,1370,1,130,1358, | ||
7297 | 1,143,2585,16,0, | ||
7298 | 249,1,387,2586,16, | ||
7299 | 0,249,1,1159,2587, | ||
7300 | 16,0,249,1,157, | ||
7301 | 2588,16,0,249,1, | ||
7302 | 1413,2589,16,0,249, | ||
7303 | 1,1665,2590,16,0, | ||
7304 | 249,1,412,2591,16, | ||
7305 | 0,249,1,1377,2592, | ||
7306 | 16,0,249,1,172, | ||
7307 | 1428,1,1939,2593,16, | ||
7308 | 0,249,1,437,2594, | ||
7309 | 16,0,249,1,188, | ||
7310 | 1471,1,942,1444,1, | ||
7311 | 1195,2595,16,0,249, | ||
7312 | 1,1449,2596,16,0, | ||
7313 | 249,1,1701,2597,16, | ||
7314 | 0,249,1,447,1464, | ||
7315 | 1,205,2598,16,0, | ||
7316 | 249,1,827,2599,16, | ||
7317 | 0,249,1,223,2600, | ||
7318 | 16,0,249,1,476, | ||
7319 | 1507,1,477,1513,1, | ||
7320 | 1231,2601,16,0,249, | ||
7321 | 1,479,1523,1,480, | ||
7322 | 1528,1,1485,2602,16, | ||
7323 | 0,249,1,1737,2603, | ||
7324 | 16,0,249,1,242, | ||
7325 | 2604,16,0,249,1, | ||
7326 | 478,1546,1,1001,1551, | ||
7327 | 1,1002,1556,1,32, | ||
7328 | 2605,19,244,1,32, | ||
7329 | 2606,5,83,1,1011, | ||
7330 | 1074,1,1012,2607,16, | ||
7331 | 0,242,1,1013,1226, | ||
7332 | 1,262,1091,1,1267, | ||
7333 | 2608,16,0,242,1, | ||
7334 | 515,2609,16,0,242, | ||
7335 | 1,1521,2610,16,0, | ||
7336 | 242,1,525,1184,1, | ||
7337 | 283,1144,1,40,1133, | ||
7338 | 1,42,2611,16,0, | ||
7339 | 242,1,44,1149,1, | ||
7340 | 2556,2612,16,0,242, | ||
7341 | 1,47,1151,1,1303, | ||
7342 | 2613,16,0,242,1, | ||
7343 | 1555,2614,16,0,242, | ||
7344 | 1,50,1174,1,48, | ||
7345 | 1157,1,49,1163,1, | ||
7346 | 51,1169,1,63,1190, | ||
7347 | 1,305,1179,1,66, | ||
7348 | 1196,1,67,1201,1, | ||
7349 | 68,1206,1,69,1211, | ||
7350 | 1,70,1216,1,73, | ||
7351 | 2615,16,0,242,1, | ||
7352 | 74,1221,1,328,1274, | ||
7353 | 1,1048,1236,1,82, | ||
7354 | 2616,16,0,242,1, | ||
7355 | 1840,2617,16,0,242, | ||
7356 | 1,1591,2618,16,0, | ||
7357 | 242,1,1341,2619,16, | ||
7358 | 0,242,1,1096,1284, | ||
7359 | 1,93,1290,1,352, | ||
7360 | 1301,1,107,2620,16, | ||
7361 | 0,242,1,1114,1313, | ||
7362 | 1,118,1316,1,1123, | ||
7363 | 2621,16,0,242,1, | ||
7364 | 371,1326,1,1628,2622, | ||
7365 | 16,0,242,1,375, | ||
7366 | 1337,1,1882,2623,16, | ||
7367 | 0,242,1,377,1342, | ||
7368 | 1,379,1375,1,380, | ||
7369 | 1352,1,883,2624,16, | ||
7370 | 0,242,1,373,1370, | ||
7371 | 1,130,1358,1,143, | ||
7372 | 2625,16,0,242,1, | ||
7373 | 387,2626,16,0,242, | ||
7374 | 1,1159,2627,16,0, | ||
7375 | 242,1,157,2628,16, | ||
7376 | 0,242,1,1413,2629, | ||
7377 | 16,0,242,1,1665, | ||
7378 | 2630,16,0,242,1, | ||
7379 | 412,2631,16,0,242, | ||
7380 | 1,1377,2632,16,0, | ||
7381 | 242,1,172,1428,1, | ||
7382 | 1939,2633,16,0,242, | ||
7383 | 1,437,2634,16,0, | ||
7384 | 242,1,188,1471,1, | ||
7385 | 942,1444,1,1195,2635, | ||
7386 | 16,0,242,1,1449, | ||
7387 | 2636,16,0,242,1, | ||
7388 | 1701,2637,16,0,242, | ||
7389 | 1,447,1464,1,205, | ||
7390 | 2638,16,0,242,1, | ||
7391 | 827,2639,16,0,242, | ||
7392 | 1,223,2640,16,0, | ||
7393 | 242,1,476,1507,1, | ||
7394 | 477,1513,1,1231,2641, | ||
7395 | 16,0,242,1,479, | ||
7396 | 1523,1,480,1528,1, | ||
7397 | 1485,2642,16,0,242, | ||
7398 | 1,1737,2643,16,0, | ||
7399 | 242,1,242,2644,16, | ||
7400 | 0,242,1,478,1546, | ||
7401 | 1,1001,1551,1,1002, | ||
7402 | 1556,1,33,2645,19, | ||
7403 | 416,1,33,2646,5, | ||
7404 | 83,1,1011,1074,1, | ||
7405 | 1012,2647,16,0,414, | ||
7406 | 1,1013,1226,1,262, | ||
7407 | 1091,1,1267,2648,16, | ||
7408 | 0,414,1,515,2649, | ||
7409 | 16,0,414,1,1521, | ||
7410 | 2650,16,0,414,1, | ||
7411 | 525,1184,1,283,1144, | ||
7412 | 1,40,1133,1,42, | ||
7413 | 2651,16,0,414,1, | ||
7414 | 44,1149,1,2556,2652, | ||
7415 | 16,0,414,1,47, | ||
7416 | 1151,1,1303,2653,16, | ||
7417 | 0,414,1,1555,2654, | ||
7418 | 16,0,414,1,50, | ||
7419 | 1174,1,48,1157,1, | ||
7420 | 49,1163,1,51,1169, | ||
7421 | 1,63,1190,1,305, | ||
7422 | 1179,1,66,1196,1, | ||
7423 | 67,1201,1,68,1206, | ||
7424 | 1,69,1211,1,70, | ||
7425 | 1216,1,73,2655,16, | ||
7426 | 0,414,1,74,1221, | ||
7427 | 1,328,1274,1,1048, | ||
7428 | 1236,1,82,2656,16, | ||
7429 | 0,414,1,1840,2657, | ||
7430 | 16,0,414,1,1591, | ||
7431 | 2658,16,0,414,1, | ||
7432 | 1341,2659,16,0,414, | ||
7433 | 1,1096,1284,1,93, | ||
7434 | 1290,1,352,1301,1, | ||
7435 | 107,2660,16,0,414, | ||
7436 | 1,1114,1313,1,118, | ||
7437 | 1316,1,1123,2661,16, | ||
7438 | 0,414,1,371,1326, | ||
7439 | 1,1628,2662,16,0, | ||
7440 | 414,1,375,1337,1, | ||
7441 | 1882,2663,16,0,414, | ||
7442 | 1,377,1342,1,379, | ||
7443 | 1375,1,380,1352,1, | ||
7444 | 883,2664,16,0,414, | ||
7445 | 1,373,1370,1,130, | ||
7446 | 1358,1,143,1380,1, | ||
7447 | 387,2665,16,0,414, | ||
7448 | 1,1159,2666,16,0, | ||
7449 | 414,1,157,1402,1, | ||
7450 | 1413,2667,16,0,414, | ||
7451 | 1,1665,2668,16,0, | ||
7452 | 414,1,412,2669,16, | ||
7453 | 0,414,1,1377,2670, | ||
7454 | 16,0,414,1,172, | ||
7455 | 1428,1,1939,2671,16, | ||
7456 | 0,414,1,437,2672, | ||
7457 | 16,0,414,1,188, | ||
7458 | 1471,1,942,1444,1, | ||
7459 | 1195,2673,16,0,414, | ||
7460 | 1,1449,2674,16,0, | ||
7461 | 414,1,1701,2675,16, | ||
7462 | 0,414,1,447,1464, | ||
7463 | 1,205,2676,16,0, | ||
7464 | 414,1,827,2677,16, | ||
7465 | 0,414,1,223,2678, | ||
7466 | 16,0,414,1,476, | ||
7467 | 1507,1,477,1513,1, | ||
7468 | 1231,2679,16,0,414, | ||
7469 | 1,479,1523,1,480, | ||
7470 | 1528,1,1485,2680,16, | ||
7471 | 0,414,1,1737,2681, | ||
7472 | 16,0,414,1,242, | ||
7473 | 1541,1,478,1546,1, | ||
7474 | 1001,1551,1,1002,1556, | ||
7475 | 1,34,2682,19,385, | ||
7476 | 1,34,2683,5,83, | ||
7477 | 1,1011,1074,1,1012, | ||
7478 | 2684,16,0,383,1, | ||
7479 | 1013,1226,1,262,1091, | ||
7480 | 1,1267,2685,16,0, | ||
7481 | 383,1,515,2686,16, | ||
7482 | 0,383,1,1521,2687, | ||
7483 | 16,0,383,1,525, | ||
7484 | 1184,1,283,1144,1, | ||
7485 | 40,1133,1,42,2688, | ||
7486 | 16,0,383,1,44, | ||
7487 | 1149,1,2556,2689,16, | ||
7488 | 0,383,1,47,1151, | ||
7489 | 1,1303,2690,16,0, | ||
7490 | 383,1,1555,2691,16, | ||
7491 | 0,383,1,50,1174, | ||
7492 | 1,48,1157,1,49, | ||
7493 | 1163,1,51,1169,1, | ||
7494 | 63,1190,1,305,1179, | ||
7495 | 1,66,1196,1,67, | ||
7496 | 1201,1,68,1206,1, | ||
7497 | 69,1211,1,70,1216, | ||
7498 | 1,73,2692,16,0, | ||
7499 | 383,1,74,1221,1, | ||
7500 | 328,1274,1,1048,1236, | ||
7501 | 1,82,2693,16,0, | ||
7502 | 383,1,1840,2694,16, | ||
7503 | 0,383,1,1591,2695, | ||
7504 | 16,0,383,1,1341, | ||
7505 | 2696,16,0,383,1, | ||
7506 | 1096,1284,1,93,1290, | ||
7507 | 1,352,1301,1,107, | ||
7508 | 2697,16,0,383,1, | ||
7509 | 1114,1313,1,118,1316, | ||
7510 | 1,1123,2698,16,0, | ||
7511 | 383,1,371,1326,1, | ||
7512 | 1628,2699,16,0,383, | ||
7513 | 1,375,1337,1,1882, | ||
7514 | 2700,16,0,383,1, | ||
7515 | 377,1342,1,379,1375, | ||
7516 | 1,380,1352,1,883, | ||
7517 | 2701,16,0,383,1, | ||
7518 | 373,1370,1,130,1358, | ||
7519 | 1,143,1380,1,387, | ||
7520 | 2702,16,0,383,1, | ||
7521 | 1159,2703,16,0,383, | ||
7522 | 1,157,1402,1,1413, | ||
7523 | 2704,16,0,383,1, | ||
7524 | 1665,2705,16,0,383, | ||
7525 | 1,412,2706,16,0, | ||
7526 | 383,1,1377,2707,16, | ||
7527 | 0,383,1,172,1428, | ||
7528 | 1,1939,2708,16,0, | ||
7529 | 383,1,437,2709,16, | ||
7530 | 0,383,1,188,1471, | ||
7531 | 1,942,1444,1,1195, | ||
7532 | 2710,16,0,383,1, | ||
7533 | 1449,2711,16,0,383, | ||
7534 | 1,1701,2712,16,0, | ||
7535 | 383,1,447,1464,1, | ||
7536 | 205,1481,1,827,2713, | ||
7537 | 16,0,383,1,223, | ||
7538 | 1497,1,476,1507,1, | ||
7539 | 477,1513,1,1231,2714, | ||
7540 | 16,0,383,1,479, | ||
7541 | 1523,1,480,1528,1, | ||
7542 | 1485,2715,16,0,383, | ||
7543 | 1,1737,2716,16,0, | ||
7544 | 383,1,242,1541,1, | ||
7545 | 478,1546,1,1001,1551, | ||
7546 | 1,1002,1556,1,35, | ||
7547 | 2717,19,372,1,35, | ||
7548 | 2718,5,83,1,1011, | ||
7549 | 1074,1,1012,2719,16, | ||
7550 | 0,370,1,1013,1226, | ||
7551 | 1,262,1091,1,1267, | ||
7552 | 2720,16,0,370,1, | ||
7553 | 515,2721,16,0,370, | ||
7554 | 1,1521,2722,16,0, | ||
7555 | 370,1,525,1184,1, | ||
7556 | 283,1144,1,40,1133, | ||
7557 | 1,42,2723,16,0, | ||
7558 | 370,1,44,1149,1, | ||
7559 | 2556,2724,16,0,370, | ||
7560 | 1,47,1151,1,1303, | ||
7561 | 2725,16,0,370,1, | ||
7562 | 1555,2726,16,0,370, | ||
7563 | 1,50,1174,1,48, | ||
7564 | 1157,1,49,1163,1, | ||
7565 | 51,1169,1,63,1190, | ||
7566 | 1,305,1179,1,66, | ||
7567 | 1196,1,67,1201,1, | ||
7568 | 68,1206,1,69,1211, | ||
7569 | 1,70,1216,1,73, | ||
7570 | 2727,16,0,370,1, | ||
7571 | 74,1221,1,328,1274, | ||
7572 | 1,1048,1236,1,82, | ||
7573 | 2728,16,0,370,1, | ||
7574 | 1840,2729,16,0,370, | ||
7575 | 1,1591,2730,16,0, | ||
7576 | 370,1,1341,2731,16, | ||
7577 | 0,370,1,1096,1284, | ||
7578 | 1,93,1290,1,352, | ||
7579 | 1301,1,107,2732,16, | ||
7580 | 0,370,1,1114,1313, | ||
7581 | 1,118,1316,1,1123, | ||
7582 | 2733,16,0,370,1, | ||
7583 | 371,1326,1,1628,2734, | ||
7584 | 16,0,370,1,375, | ||
7585 | 1337,1,1882,2735,16, | ||
7586 | 0,370,1,377,1342, | ||
7587 | 1,379,1375,1,380, | ||
7588 | 1352,1,883,2736,16, | ||
7589 | 0,370,1,373,1370, | ||
7590 | 1,130,1358,1,143, | ||
7591 | 1380,1,387,2737,16, | ||
7592 | 0,370,1,1159,2738, | ||
7593 | 16,0,370,1,157, | ||
7594 | 1402,1,1413,2739,16, | ||
7595 | 0,370,1,1665,2740, | ||
7596 | 16,0,370,1,412, | ||
7597 | 2741,16,0,370,1, | ||
7598 | 1377,2742,16,0,370, | ||
7599 | 1,172,1428,1,1939, | ||
7600 | 2743,16,0,370,1, | ||
7601 | 437,2744,16,0,370, | ||
7602 | 1,188,1471,1,942, | ||
7603 | 1444,1,1195,2745,16, | ||
7604 | 0,370,1,1449,2746, | ||
7605 | 16,0,370,1,1701, | ||
7606 | 2747,16,0,370,1, | ||
7607 | 447,1464,1,205,1481, | ||
7608 | 1,827,2748,16,0, | ||
7609 | 370,1,223,2749,16, | ||
7610 | 0,370,1,476,1507, | ||
7611 | 1,477,1513,1,1231, | ||
7612 | 2750,16,0,370,1, | ||
7613 | 479,1523,1,480,1528, | ||
7614 | 1,1485,2751,16,0, | ||
7615 | 370,1,1737,2752,16, | ||
7616 | 0,370,1,242,1541, | ||
7617 | 1,478,1546,1,1001, | ||
7618 | 1551,1,1002,1556,1, | ||
7619 | 36,2753,19,215,1, | ||
7620 | 36,2754,5,90,1, | ||
7621 | 256,2755,16,0,213, | ||
7622 | 1,1261,2756,16,0, | ||
7623 | 213,1,509,2757,16, | ||
7624 | 0,213,1,2197,2758, | ||
7625 | 16,0,213,1,1515, | ||
7626 | 2759,16,0,213,1, | ||
7627 | 2021,707,1,1775,2760, | ||
7628 | 16,0,213,1,2029, | ||
7629 | 714,1,2030,720,1, | ||
7630 | 2031,725,1,2032,730, | ||
7631 | 1,2033,735,1,277, | ||
7632 | 2761,16,0,213,1, | ||
7633 | 2035,741,1,2037,746, | ||
7634 | 1,2039,751,1,32, | ||
7635 | 2762,16,0,213,1, | ||
7636 | 2041,757,1,2043,762, | ||
7637 | 1,2044,767,1,2550, | ||
7638 | 2763,16,0,213,1, | ||
7639 | 41,2764,16,0,213, | ||
7640 | 1,1297,2765,16,0, | ||
7641 | 213,1,43,2766,16, | ||
7642 | 0,213,1,1802,774, | ||
7643 | 1,1804,2767,16,0, | ||
7644 | 213,1,299,2768,16, | ||
7645 | 0,213,1,2309,2769, | ||
7646 | 16,0,213,1,52, | ||
7647 | 2770,16,0,213,1, | ||
7648 | 525,2771,16,0,213, | ||
7649 | 1,2074,2772,16,0, | ||
7650 | 213,1,1574,787,1, | ||
7651 | 71,2773,16,0,213, | ||
7652 | 1,76,2774,16,0, | ||
7653 | 213,1,1834,2775,16, | ||
7654 | 0,213,1,79,2776, | ||
7655 | 16,0,213,1,1335, | ||
7656 | 2777,16,0,213,1, | ||
7657 | 322,2778,16,0,213, | ||
7658 | 1,85,2779,16,0, | ||
7659 | 213,1,89,2780,16, | ||
7660 | 0,213,1,346,2781, | ||
7661 | 16,0,213,1,2104, | ||
7662 | 801,1,2105,2782,16, | ||
7663 | 0,213,1,2358,807, | ||
7664 | 1,2360,813,1,97, | ||
7665 | 2783,16,0,213,1, | ||
7666 | 1860,820,1,102,2784, | ||
7667 | 16,0,213,1,112, | ||
7668 | 2785,16,0,213,1, | ||
7669 | 1117,2786,16,0,213, | ||
7670 | 1,1873,829,1,1876, | ||
7671 | 2787,16,0,213,1, | ||
7672 | 124,2788,16,0,213, | ||
7673 | 1,2135,836,1,381, | ||
7674 | 2789,16,0,213,1, | ||
7675 | 137,2790,16,0,213, | ||
7676 | 1,1901,2791,16,0, | ||
7677 | 213,1,1153,2792,16, | ||
7678 | 0,213,1,151,2793, | ||
7679 | 16,0,213,1,1407, | ||
7680 | 2794,16,0,213,1, | ||
7681 | 1659,2795,16,0,213, | ||
7682 | 1,406,2796,16,0, | ||
7683 | 213,1,1371,2797,16, | ||
7684 | 0,213,1,166,2798, | ||
7685 | 16,0,213,1,1622, | ||
7686 | 2799,16,0,213,1, | ||
7687 | 2354,853,1,2355,858, | ||
7688 | 1,1931,863,1,1933, | ||
7689 | 2800,16,0,213,1, | ||
7690 | 431,2801,16,0,213, | ||
7691 | 1,1585,2802,16,0, | ||
7692 | 213,1,182,2803,16, | ||
7693 | 0,213,1,1189,2804, | ||
7694 | 16,0,213,1,1443, | ||
7695 | 2805,16,0,213,1, | ||
7696 | 1695,2806,16,0,213, | ||
7697 | 1,447,2807,16,0, | ||
7698 | 213,1,199,2808,16, | ||
7699 | 0,213,1,1958,2809, | ||
7700 | 16,0,213,1,1657, | ||
7701 | 878,1,459,2810,16, | ||
7702 | 0,213,1,462,2811, | ||
7703 | 16,0,213,1,217, | ||
7704 | 2812,16,0,213,1, | ||
7705 | 2226,886,1,1225,2813, | ||
7706 | 16,0,213,1,1479, | ||
7707 | 2814,16,0,213,1, | ||
7708 | 1731,2815,16,0,213, | ||
7709 | 1,1989,894,1,1990, | ||
7710 | 2816,16,0,213,1, | ||
7711 | 236,2817,16,0,213, | ||
7712 | 1,1756,2818,16,0, | ||
7713 | 213,1,37,2819,19, | ||
7714 | 234,1,37,2820,5, | ||
7715 | 90,1,256,2821,16, | ||
7716 | 0,232,1,1261,2822, | ||
7717 | 16,0,232,1,509, | ||
7718 | 2823,16,0,232,1, | ||
7719 | 2197,2824,16,0,232, | ||
7720 | 1,1515,2825,16,0, | ||
7721 | 232,1,2021,707,1, | ||
7722 | 1775,2826,16,0,232, | ||
7723 | 1,2029,714,1,2030, | ||
7724 | 720,1,2031,725,1, | ||
7725 | 2032,730,1,2033,735, | ||
7726 | 1,277,2827,16,0, | ||
7727 | 232,1,2035,741,1, | ||
7728 | 2037,746,1,2039,751, | ||
7729 | 1,32,2828,16,0, | ||
7730 | 232,1,2041,757,1, | ||
7731 | 2043,762,1,2044,767, | ||
7732 | 1,2550,2829,16,0, | ||
7733 | 232,1,41,2830,16, | ||
7734 | 0,232,1,1297,2831, | ||
7735 | 16,0,232,1,43, | ||
7736 | 2832,16,0,232,1, | ||
7737 | 1802,774,1,1804,2833, | ||
7738 | 16,0,232,1,299, | ||
7739 | 2834,16,0,232,1, | ||
7740 | 2309,2835,16,0,232, | ||
7741 | 1,52,2836,16,0, | ||
7742 | 232,1,525,2837,16, | ||
7743 | 0,232,1,2074,2838, | ||
7744 | 16,0,232,1,1574, | ||
7745 | 787,1,71,2839,16, | ||
7746 | 0,232,1,76,2840, | ||
7747 | 16,0,232,1,1834, | ||
7748 | 2841,16,0,232,1, | ||
7749 | 79,2842,16,0,232, | ||
7750 | 1,1335,2843,16,0, | ||
7751 | 232,1,322,2844,16, | ||
7752 | 0,232,1,85,2845, | ||
7753 | 16,0,232,1,89, | ||
7754 | 2846,16,0,232,1, | ||
7755 | 346,2847,16,0,232, | ||
7756 | 1,2104,801,1,2105, | ||
7757 | 2848,16,0,232,1, | ||
7758 | 2358,807,1,2360,813, | ||
7759 | 1,97,2849,16,0, | ||
7760 | 232,1,1860,820,1, | ||
7761 | 102,2850,16,0,232, | ||
7762 | 1,112,2851,16,0, | ||
7763 | 232,1,1117,2852,16, | ||
7764 | 0,232,1,1873,829, | ||
7765 | 1,1876,2853,16,0, | ||
7766 | 232,1,124,2854,16, | ||
7767 | 0,232,1,2135,836, | ||
7768 | 1,381,2855,16,0, | ||
7769 | 232,1,137,2856,16, | ||
7770 | 0,232,1,1901,2857, | ||
7771 | 16,0,232,1,1153, | ||
7772 | 2858,16,0,232,1, | ||
7773 | 151,2859,16,0,232, | ||
7774 | 1,1407,2860,16,0, | ||
7775 | 232,1,1659,2861,16, | ||
7776 | 0,232,1,406,2862, | ||
7777 | 16,0,232,1,1371, | ||
7778 | 2863,16,0,232,1, | ||
7779 | 166,2864,16,0,232, | ||
7780 | 1,1622,2865,16,0, | ||
7781 | 232,1,2354,853,1, | ||
7782 | 2355,858,1,1931,863, | ||
7783 | 1,1933,2866,16,0, | ||
7784 | 232,1,431,2867,16, | ||
7785 | 0,232,1,1585,2868, | ||
7786 | 16,0,232,1,182, | ||
7787 | 2869,16,0,232,1, | ||
7788 | 1189,2870,16,0,232, | ||
7789 | 1,1443,2871,16,0, | ||
7790 | 232,1,1695,2872,16, | ||
7791 | 0,232,1,447,2873, | ||
7792 | 16,0,232,1,199, | ||
7793 | 2874,16,0,232,1, | ||
7794 | 1958,2875,16,0,232, | ||
7795 | 1,1657,878,1,459, | ||
7796 | 2876,16,0,232,1, | ||
7797 | 462,2877,16,0,232, | ||
7798 | 1,217,2878,16,0, | ||
7799 | 232,1,2226,886,1, | ||
7800 | 1225,2879,16,0,232, | ||
7801 | 1,1479,2880,16,0, | ||
7802 | 232,1,1731,2881,16, | ||
7803 | 0,232,1,1989,894, | ||
7804 | 1,1990,2882,16,0, | ||
7805 | 232,1,236,2883,16, | ||
7806 | 0,232,1,1756,2884, | ||
7807 | 16,0,232,1,38, | ||
7808 | 2885,19,231,1,38, | ||
7809 | 2886,5,83,1,1011, | ||
7810 | 1074,1,1012,2887,16, | ||
7811 | 0,229,1,1013,1226, | ||
7812 | 1,262,1091,1,1267, | ||
7813 | 2888,16,0,229,1, | ||
7814 | 515,2889,16,0,229, | ||
7815 | 1,1521,2890,16,0, | ||
7816 | 229,1,525,1184,1, | ||
7817 | 283,1144,1,40,1133, | ||
7818 | 1,42,2891,16,0, | ||
7819 | 229,1,44,1149,1, | ||
7820 | 2556,2892,16,0,229, | ||
7821 | 1,47,1151,1,1303, | ||
7822 | 2893,16,0,229,1, | ||
7823 | 1555,2894,16,0,229, | ||
7824 | 1,50,1174,1,48, | ||
7825 | 1157,1,49,1163,1, | ||
7826 | 51,1169,1,63,1190, | ||
7827 | 1,305,1179,1,66, | ||
7828 | 1196,1,67,1201,1, | ||
7829 | 68,1206,1,69,1211, | ||
7830 | 1,70,1216,1,73, | ||
7831 | 2895,16,0,229,1, | ||
7832 | 74,1221,1,328,1274, | ||
7833 | 1,1048,1236,1,82, | ||
7834 | 2896,16,0,229,1, | ||
7835 | 1840,2897,16,0,229, | ||
7836 | 1,1591,2898,16,0, | ||
7837 | 229,1,1341,2899,16, | ||
7838 | 0,229,1,1096,1284, | ||
7839 | 1,93,1290,1,352, | ||
7840 | 1301,1,107,2900,16, | ||
7841 | 0,229,1,1114,1313, | ||
7842 | 1,118,1316,1,1123, | ||
7843 | 2901,16,0,229,1, | ||
7844 | 371,1326,1,1628,2902, | ||
7845 | 16,0,229,1,375, | ||
7846 | 1337,1,1882,2903,16, | ||
7847 | 0,229,1,377,1342, | ||
7848 | 1,379,1375,1,380, | ||
7849 | 1352,1,883,1412,1, | ||
7850 | 373,1370,1,130,1358, | ||
7851 | 1,143,1380,1,387, | ||
7852 | 2904,16,0,229,1, | ||
7853 | 1159,2905,16,0,229, | ||
7854 | 1,157,1402,1,1413, | ||
7855 | 2906,16,0,229,1, | ||
7856 | 1665,2907,16,0,229, | ||
7857 | 1,412,2908,16,0, | ||
7858 | 229,1,1377,2909,16, | ||
7859 | 0,229,1,172,1428, | ||
7860 | 1,1939,2910,16,0, | ||
7861 | 229,1,437,2911,16, | ||
7862 | 0,229,1,188,1471, | ||
7863 | 1,942,1444,1,1195, | ||
7864 | 2912,16,0,229,1, | ||
7865 | 1449,2913,16,0,229, | ||
7866 | 1,1701,2914,16,0, | ||
7867 | 229,1,447,1464,1, | ||
7868 | 205,1481,1,827,1347, | ||
7869 | 1,223,1497,1,476, | ||
7870 | 1507,1,477,1513,1, | ||
7871 | 1231,2915,16,0,229, | ||
7872 | 1,479,1523,1,480, | ||
7873 | 1528,1,1485,2916,16, | ||
7874 | 0,229,1,1737,2917, | ||
7875 | 16,0,229,1,242, | ||
7876 | 1541,1,478,1546,1, | ||
7877 | 1001,1551,1,1002,1556, | ||
7878 | 1,39,2918,19,221, | ||
7879 | 1,39,2919,5,83, | ||
7880 | 1,1011,1074,1,1012, | ||
7881 | 2920,16,0,219,1, | ||
7882 | 1013,1226,1,262,1091, | ||
7883 | 1,1267,2921,16,0, | ||
7884 | 219,1,515,2922,16, | ||
7885 | 0,219,1,1521,2923, | ||
7886 | 16,0,219,1,525, | ||
7887 | 1184,1,283,1144,1, | ||
7888 | 40,1133,1,42,2924, | ||
7889 | 16,0,219,1,44, | ||
7890 | 1149,1,2556,2925,16, | ||
7891 | 0,219,1,47,1151, | ||
7892 | 1,1303,2926,16,0, | ||
7893 | 219,1,1555,2927,16, | ||
7894 | 0,219,1,50,1174, | ||
7895 | 1,48,1157,1,49, | ||
7896 | 1163,1,51,1169,1, | ||
7897 | 63,1190,1,305,1179, | ||
7898 | 1,66,1196,1,67, | ||
7899 | 1201,1,68,1206,1, | ||
7900 | 69,1211,1,70,1216, | ||
7901 | 1,73,2928,16,0, | ||
7902 | 219,1,74,1221,1, | ||
7903 | 328,1274,1,1048,1236, | ||
7904 | 1,82,2929,16,0, | ||
7905 | 219,1,1840,2930,16, | ||
7906 | 0,219,1,1591,2931, | ||
7907 | 16,0,219,1,1341, | ||
7908 | 2932,16,0,219,1, | ||
7909 | 1096,1284,1,93,1290, | ||
7910 | 1,352,1301,1,107, | ||
7911 | 2933,16,0,219,1, | ||
7912 | 1114,1313,1,118,1316, | ||
7913 | 1,1123,2934,16,0, | ||
7914 | 219,1,371,1326,1, | ||
7915 | 1628,2935,16,0,219, | ||
7916 | 1,375,1337,1,1882, | ||
7917 | 2936,16,0,219,1, | ||
7918 | 377,1342,1,379,1375, | ||
7919 | 1,380,1352,1,883, | ||
7920 | 1412,1,373,1370,1, | ||
7921 | 130,1358,1,143,1380, | ||
7922 | 1,387,2937,16,0, | ||
7923 | 219,1,1159,2938,16, | ||
7924 | 0,219,1,157,1402, | ||
7925 | 1,1413,2939,16,0, | ||
7926 | 219,1,1665,2940,16, | ||
7927 | 0,219,1,412,2941, | ||
7928 | 16,0,219,1,1377, | ||
7929 | 2942,16,0,219,1, | ||
7930 | 172,1428,1,1939,2943, | ||
7931 | 16,0,219,1,437, | ||
7932 | 2944,16,0,219,1, | ||
7933 | 188,1471,1,942,1444, | ||
7934 | 1,1195,2945,16,0, | ||
7935 | 219,1,1449,2946,16, | ||
7936 | 0,219,1,1701,2947, | ||
7937 | 16,0,219,1,447, | ||
7938 | 1464,1,205,1481,1, | ||
7939 | 827,1347,1,223,1497, | ||
7940 | 1,476,1507,1,477, | ||
7941 | 1513,1,1231,2948,16, | ||
7942 | 0,219,1,479,1523, | ||
7943 | 1,480,1528,1,1485, | ||
7944 | 2949,16,0,219,1, | ||
7945 | 1737,2950,16,0,219, | ||
7946 | 1,242,1541,1,478, | ||
7947 | 1546,1,1001,1551,1, | ||
7948 | 1002,1556,1,40,2951, | ||
7949 | 19,209,1,40,2952, | ||
7950 | 5,83,1,1011,1074, | ||
7951 | 1,1012,2953,16,0, | ||
7952 | 207,1,1013,1226,1, | ||
7953 | 262,1091,1,1267,2954, | ||
7954 | 16,0,207,1,515, | ||
7955 | 2955,16,0,207,1, | ||
7956 | 1521,2956,16,0,207, | ||
7957 | 1,525,1184,1,283, | ||
7958 | 1144,1,40,1133,1, | ||
7959 | 42,2957,16,0,207, | ||
7960 | 1,44,1149,1,2556, | ||
7961 | 2958,16,0,207,1, | ||
7962 | 47,1151,1,1303,2959, | ||
7963 | 16,0,207,1,1555, | ||
7964 | 2960,16,0,207,1, | ||
7965 | 50,1174,1,48,1157, | ||
7966 | 1,49,1163,1,51, | ||
7967 | 1169,1,63,1190,1, | ||
7968 | 305,1179,1,66,1196, | ||
7969 | 1,67,1201,1,68, | ||
7970 | 1206,1,69,1211,1, | ||
7971 | 70,1216,1,73,2961, | ||
7972 | 16,0,207,1,74, | ||
7973 | 1221,1,328,1274,1, | ||
7974 | 1048,1236,1,82,2962, | ||
7975 | 16,0,207,1,1840, | ||
7976 | 2963,16,0,207,1, | ||
7977 | 1591,2964,16,0,207, | ||
7978 | 1,1341,2965,16,0, | ||
7979 | 207,1,1096,1284,1, | ||
7980 | 93,1290,1,352,1301, | ||
7981 | 1,107,2966,16,0, | ||
7982 | 207,1,1114,1313,1, | ||
7983 | 118,2967,16,0,207, | ||
7984 | 1,1123,2968,16,0, | ||
7985 | 207,1,371,1326,1, | ||
7986 | 1628,2969,16,0,207, | ||
7987 | 1,375,1337,1,1882, | ||
7988 | 2970,16,0,207,1, | ||
7989 | 377,1342,1,379,1375, | ||
7990 | 1,380,1352,1,883, | ||
7991 | 2971,16,0,207,1, | ||
7992 | 373,1370,1,130,2972, | ||
7993 | 16,0,207,1,143, | ||
7994 | 2973,16,0,207,1, | ||
7995 | 387,2974,16,0,207, | ||
7996 | 1,1159,2975,16,0, | ||
7997 | 207,1,157,2976,16, | ||
7998 | 0,207,1,1413,2977, | ||
7999 | 16,0,207,1,1665, | ||
8000 | 2978,16,0,207,1, | ||
8001 | 412,2979,16,0,207, | ||
8002 | 1,1377,2980,16,0, | ||
8003 | 207,1,172,2981,16, | ||
8004 | 0,207,1,1939,2982, | ||
8005 | 16,0,207,1,437, | ||
8006 | 2983,16,0,207,1, | ||
8007 | 188,2984,16,0,207, | ||
8008 | 1,942,1444,1,1195, | ||
8009 | 2985,16,0,207,1, | ||
8010 | 1449,2986,16,0,207, | ||
8011 | 1,1701,2987,16,0, | ||
8012 | 207,1,447,1464,1, | ||
8013 | 205,2988,16,0,207, | ||
8014 | 1,827,2989,16,0, | ||
8015 | 207,1,223,2990,16, | ||
8016 | 0,207,1,476,1507, | ||
8017 | 1,477,1513,1,1231, | ||
8018 | 2991,16,0,207,1, | ||
8019 | 479,1523,1,480,1528, | ||
8020 | 1,1485,2992,16,0, | ||
8021 | 207,1,1737,2993,16, | ||
8022 | 0,207,1,242,2994, | ||
8023 | 16,0,207,1,478, | ||
8024 | 1546,1,1001,1551,1, | ||
8025 | 1002,1556,1,41,2995, | ||
8026 | 19,172,1,41,2996, | ||
8027 | 5,83,1,1011,1074, | ||
8028 | 1,1012,2997,16,0, | ||
8029 | 170,1,1013,1226,1, | ||
8030 | 262,1091,1,1267,2998, | ||
8031 | 16,0,170,1,515, | ||
8032 | 2999,16,0,170,1, | ||
8033 | 1521,3000,16,0,170, | ||
8034 | 1,525,1184,1,283, | ||
8035 | 1144,1,40,1133,1, | ||
8036 | 42,3001,16,0,170, | ||
8037 | 1,44,1149,1,2556, | ||
8038 | 3002,16,0,170,1, | ||
8039 | 47,1151,1,1303,3003, | ||
8040 | 16,0,170,1,1555, | ||
8041 | 3004,16,0,170,1, | ||
8042 | 50,1174,1,48,1157, | ||
8043 | 1,49,1163,1,51, | ||
8044 | 1169,1,63,1190,1, | ||
8045 | 305,1179,1,66,1196, | ||
8046 | 1,67,1201,1,68, | ||
8047 | 1206,1,69,1211,1, | ||
8048 | 70,1216,1,73,3005, | ||
8049 | 16,0,170,1,74, | ||
8050 | 1221,1,328,1274,1, | ||
8051 | 1048,1236,1,82,3006, | ||
8052 | 16,0,170,1,1840, | ||
8053 | 3007,16,0,170,1, | ||
8054 | 1591,3008,16,0,170, | ||
8055 | 1,1341,3009,16,0, | ||
8056 | 170,1,1096,1284,1, | ||
8057 | 93,1290,1,352,1301, | ||
8058 | 1,107,3010,16,0, | ||
8059 | 170,1,1114,1313,1, | ||
8060 | 118,3011,16,0,170, | ||
8061 | 1,1123,3012,16,0, | ||
8062 | 170,1,371,1326,1, | ||
8063 | 1628,3013,16,0,170, | ||
8064 | 1,375,1337,1,1882, | ||
8065 | 3014,16,0,170,1, | ||
8066 | 377,1342,1,379,1375, | ||
8067 | 1,380,1352,1,883, | ||
8068 | 3015,16,0,170,1, | ||
8069 | 373,1370,1,130,3016, | ||
8070 | 16,0,170,1,143, | ||
8071 | 3017,16,0,170,1, | ||
8072 | 387,3018,16,0,170, | ||
8073 | 1,1159,3019,16,0, | ||
8074 | 170,1,157,3020,16, | ||
8075 | 0,170,1,1413,3021, | ||
8076 | 16,0,170,1,1665, | ||
8077 | 3022,16,0,170,1, | ||
8078 | 412,3023,16,0,170, | ||
8079 | 1,1377,3024,16,0, | ||
8080 | 170,1,172,3025,16, | ||
8081 | 0,170,1,1939,3026, | ||
8082 | 16,0,170,1,437, | ||
8083 | 3027,16,0,170,1, | ||
8084 | 188,3028,16,0,170, | ||
8085 | 1,942,1444,1,1195, | ||
8086 | 3029,16,0,170,1, | ||
8087 | 1449,3030,16,0,170, | ||
8088 | 1,1701,3031,16,0, | ||
8089 | 170,1,447,1464,1, | ||
8090 | 205,3032,16,0,170, | ||
8091 | 1,827,3033,16,0, | ||
8092 | 170,1,223,3034,16, | ||
8093 | 0,170,1,476,1507, | ||
8094 | 1,477,1513,1,1231, | ||
8095 | 3035,16,0,170,1, | ||
8096 | 479,1523,1,480,1528, | ||
8097 | 1,1485,3036,16,0, | ||
8098 | 170,1,1737,3037,16, | ||
8099 | 0,170,1,242,3038, | ||
8100 | 16,0,170,1,478, | ||
8101 | 1546,1,1001,1551,1, | ||
8102 | 1002,1556,1,42,3039, | ||
8103 | 19,441,1,42,3040, | ||
8104 | 5,36,1,2074,3041, | ||
8105 | 16,0,439,1,1860, | ||
8106 | 820,1,2197,3042,16, | ||
8107 | 0,439,1,2309,3043, | ||
8108 | 16,0,439,1,1657, | ||
8109 | 878,1,2031,725,1, | ||
8110 | 1989,894,1,1990,3044, | ||
8111 | 16,0,439,1,1775, | ||
8112 | 3045,16,0,439,1, | ||
8113 | 32,3046,16,0,439, | ||
8114 | 1,2104,801,1,2105, | ||
8115 | 3047,16,0,439,1, | ||
8116 | 2226,886,1,1901,3048, | ||
8117 | 16,0,439,1,1802, | ||
8118 | 774,1,2021,707,1, | ||
8119 | 1804,3049,16,0,439, | ||
8120 | 1,2135,836,1,2354, | ||
8121 | 853,1,2355,858,1, | ||
8122 | 2029,714,1,2030,720, | ||
8123 | 1,2358,807,1,2032, | ||
8124 | 730,1,2360,813,1, | ||
8125 | 2035,741,1,2037,746, | ||
8126 | 1,2039,751,1,1931, | ||
8127 | 863,1,2041,757,1, | ||
8128 | 1873,829,1,2043,762, | ||
8129 | 1,2044,767,1,2033, | ||
8130 | 735,1,1574,787,1, | ||
8131 | 1958,3050,16,0,439, | ||
8132 | 1,43,3051,19,480, | ||
8133 | 1,43,3052,5,24, | ||
8134 | 1,2035,741,1,2037, | ||
8135 | 746,1,1657,878,1, | ||
8136 | 2039,751,1,2041,757, | ||
8137 | 1,1931,863,1,2043, | ||
8138 | 762,1,2044,767,1, | ||
8139 | 1860,820,1,1574,787, | ||
8140 | 1,2021,707,1,2104, | ||
8141 | 3053,16,0,579,1, | ||
8142 | 2135,836,1,1873,829, | ||
8143 | 1,2355,858,1,1802, | ||
8144 | 774,1,2226,886,1, | ||
8145 | 1989,3054,16,0,478, | ||
8146 | 1,2360,813,1,2029, | ||
8147 | 714,1,2030,720,1, | ||
8148 | 2031,725,1,2032,730, | ||
8149 | 1,2033,735,1,44, | ||
8150 | 3055,19,264,1,44, | ||
8151 | 3056,5,36,1,2074, | ||
8152 | 3057,16,0,262,1, | ||
8153 | 1860,820,1,2197,3058, | ||
8154 | 16,0,262,1,2309, | ||
8155 | 3059,16,0,262,1, | ||
8156 | 1657,878,1,2031,725, | ||
8157 | 1,1989,894,1,1990, | ||
8158 | 3060,16,0,262,1, | ||
8159 | 1775,3061,16,0,262, | ||
8160 | 1,32,3062,16,0, | ||
8161 | 262,1,2104,801,1, | ||
8162 | 2105,3063,16,0,262, | ||
8163 | 1,2226,886,1,1901, | ||
8164 | 3064,16,0,262,1, | ||
8165 | 1802,774,1,2021,707, | ||
8166 | 1,1804,3065,16,0, | ||
8167 | 262,1,2135,836,1, | ||
8168 | 2354,853,1,2355,858, | ||
8169 | 1,2029,714,1,2030, | ||
8170 | 720,1,2358,807,1, | ||
8171 | 2032,730,1,2360,813, | ||
8172 | 1,2035,741,1,2037, | ||
8173 | 746,1,2039,751,1, | ||
8174 | 1931,863,1,2041,757, | ||
8175 | 1,1873,829,1,2043, | ||
8176 | 762,1,2044,767,1, | ||
8177 | 2033,735,1,1574,787, | ||
8178 | 1,1958,3066,16,0, | ||
8179 | 262,1,45,3067,19, | ||
8180 | 329,1,45,3068,5, | ||
8181 | 37,1,2074,3069,16, | ||
8182 | 0,376,1,1860,820, | ||
8183 | 1,2197,3070,16,0, | ||
8184 | 376,1,2309,3071,16, | ||
8185 | 0,376,1,1657,878, | ||
8186 | 1,2031,725,1,1989, | ||
8187 | 894,1,1990,3072,16, | ||
8188 | 0,376,1,1775,3073, | ||
8189 | 16,0,376,1,32, | ||
8190 | 3074,16,0,376,1, | ||
8191 | 2104,801,1,2105,3075, | ||
8192 | 16,0,376,1,2226, | ||
8193 | 886,1,1901,3076,16, | ||
8194 | 0,376,1,1802,774, | ||
8195 | 1,2021,707,1,1804, | ||
8196 | 3077,16,0,376,1, | ||
8197 | 2135,836,1,2354,853, | ||
8198 | 1,2355,858,1,2029, | ||
8199 | 714,1,2030,720,1, | ||
8200 | 2358,807,1,2032,730, | ||
8201 | 1,2360,813,1,2035, | ||
8202 | 741,1,2037,746,1, | ||
8203 | 2039,751,1,1931,863, | ||
8204 | 1,2041,757,1,1873, | ||
8205 | 829,1,2043,762,1, | ||
8206 | 2044,767,1,1832,3078, | ||
8207 | 16,0,327,1,2033, | ||
8208 | 735,1,1574,787,1, | ||
8209 | 1958,3079,16,0,376, | ||
8210 | 1,46,3080,19,658, | ||
8211 | 1,46,3081,5,36, | ||
8212 | 1,2074,3082,16,0, | ||
8213 | 656,1,1860,820,1, | ||
8214 | 2197,3083,16,0,656, | ||
8215 | 1,2309,3084,16,0, | ||
8216 | 656,1,1657,878,1, | ||
8217 | 2031,725,1,1989,894, | ||
8218 | 1,1990,3085,16,0, | ||
8219 | 656,1,1775,3086,16, | ||
8220 | 0,656,1,32,3087, | ||
8221 | 16,0,656,1,2104, | ||
8222 | 801,1,2105,3088,16, | ||
8223 | 0,656,1,2226,886, | ||
8224 | 1,1901,3089,16,0, | ||
8225 | 656,1,1802,774,1, | ||
8226 | 2021,707,1,1804,3090, | ||
8227 | 16,0,656,1,2135, | ||
8228 | 836,1,2354,853,1, | ||
8229 | 2355,858,1,2029,714, | ||
8230 | 1,2030,720,1,2358, | ||
8231 | 807,1,2032,730,1, | ||
8232 | 2360,813,1,2035,741, | ||
8233 | 1,2037,746,1,2039, | ||
8234 | 751,1,1931,863,1, | ||
8235 | 2041,757,1,1873,829, | ||
8236 | 1,2043,762,1,2044, | ||
8237 | 767,1,2033,735,1, | ||
8238 | 1574,787,1,1958,3091, | ||
8239 | 16,0,656,1,47, | ||
8240 | 3092,19,401,1,47, | ||
8241 | 3093,5,19,1,0, | ||
8242 | 3094,16,0,399,1, | ||
8243 | 2531,667,1,2587,3095, | ||
8244 | 16,0,399,1,2022, | ||
8245 | 3096,16,0,571,1, | ||
8246 | 2526,684,1,2528,3097, | ||
8247 | 16,0,399,1,2605, | ||
8248 | 3098,17,3099,15,3100, | ||
8249 | 4,36,37,0,71, | ||
8250 | 0,108,0,111,0, | ||
8251 | 98,0,97,0,108, | ||
8252 | 0,68,0,101,0, | ||
8253 | 102,0,105,0,110, | ||
8254 | 0,105,0,116,0, | ||
8255 | 105,0,111,0,110, | ||
8256 | 0,115,0,1,-1, | ||
8257 | 1,5,3101,20,3102, | ||
8258 | 4,38,71,0,108, | ||
8259 | 0,111,0,98,0, | ||
8260 | 97,0,108,0,68, | ||
8261 | 0,101,0,102,0, | ||
8262 | 105,0,110,0,105, | ||
8263 | 0,116,0,105,0, | ||
8264 | 111,0,110,0,115, | ||
8265 | 0,95,0,52,0, | ||
8266 | 1,145,1,3,1, | ||
8267 | 3,1,2,3103,22, | ||
8268 | 1,6,1,2452,695, | ||
8269 | 1,2607,3104,17,3105, | ||
8270 | 15,3100,1,-1,1, | ||
8271 | 5,3106,20,3107,4, | ||
8272 | 38,71,0,108,0, | ||
8273 | 111,0,98,0,97, | ||
8274 | 0,108,0,68,0, | ||
8275 | 101,0,102,0,105, | ||
8276 | 0,110,0,105,0, | ||
8277 | 116,0,105,0,111, | ||
8278 | 0,110,0,115,0, | ||
8279 | 95,0,51,0,1, | ||
8280 | 144,1,3,1,2, | ||
8281 | 1,1,3108,22,1, | ||
8282 | 5,1,2608,3109,17, | ||
8283 | 3110,15,3100,1,-1, | ||
8284 | 1,5,3111,20,3112, | ||
8285 | 4,38,71,0,108, | ||
8286 | 0,111,0,98,0, | ||
8287 | 97,0,108,0,68, | ||
8288 | 0,101,0,102,0, | ||
8289 | 105,0,110,0,105, | ||
8290 | 0,116,0,105,0, | ||
8291 | 111,0,110,0,115, | ||
8292 | 0,95,0,49,0, | ||
8293 | 1,142,1,3,1, | ||
8294 | 2,1,1,3113,22, | ||
8295 | 1,3,1,2598,3114, | ||
8296 | 16,0,399,1,2575, | ||
8297 | 3115,17,3116,15,3117, | ||
8298 | 4,52,37,0,71, | ||
8299 | 0,108,0,111,0, | ||
8300 | 98,0,97,0,108, | ||
8301 | 0,86,0,97,0, | ||
8302 | 114,0,105,0,97, | ||
8303 | 0,98,0,108,0, | ||
8304 | 101,0,68,0,101, | ||
8305 | 0,99,0,108,0, | ||
8306 | 97,0,114,0,97, | ||
8307 | 0,116,0,105,0, | ||
8308 | 111,0,110,0,1, | ||
8309 | -1,1,5,3118,20, | ||
8310 | 3119,4,54,71,0, | ||
8311 | 108,0,111,0,98, | ||
8312 | 0,97,0,108,0, | ||
8313 | 86,0,97,0,114, | ||
8314 | 0,105,0,97,0, | ||
8315 | 98,0,108,0,101, | ||
8316 | 0,68,0,101,0, | ||
8317 | 99,0,108,0,97, | ||
8318 | 0,114,0,97,0, | ||
8319 | 116,0,105,0,111, | ||
8320 | 0,110,0,95,0, | ||
8321 | 50,0,1,147,1, | ||
8322 | 3,1,5,1,4, | ||
8323 | 3120,22,1,8,1, | ||
8324 | 2355,858,1,2532,673, | ||
8325 | 1,2606,3121,17,3122, | ||
8326 | 15,3100,1,-1,1, | ||
8327 | 5,3123,20,3124,4, | ||
8328 | 38,71,0,108,0, | ||
8329 | 111,0,98,0,97, | ||
8330 | 0,108,0,68,0, | ||
8331 | 101,0,102,0,105, | ||
8332 | 0,110,0,105,0, | ||
8333 | 116,0,105,0,111, | ||
8334 | 0,110,0,115,0, | ||
8335 | 95,0,50,0,1, | ||
8336 | 143,1,3,1,3, | ||
8337 | 1,2,3125,22,1, | ||
8338 | 4,1,2360,813,1, | ||
8339 | 2547,3126,17,3127,15, | ||
8340 | 3128,4,50,37,0, | ||
8341 | 71,0,108,0,111, | ||
8342 | 0,98,0,97,0, | ||
8343 | 108,0,70,0,117, | ||
8344 | 0,110,0,99,0, | ||
8345 | 116,0,105,0,111, | ||
8346 | 0,110,0,68,0, | ||
8347 | 101,0,102,0,105, | ||
8348 | 0,110,0,105,0, | ||
8349 | 116,0,105,0,111, | ||
8350 | 0,110,0,1,-1, | ||
8351 | 1,5,3129,20,3130, | ||
8352 | 4,52,71,0,108, | ||
8353 | 0,111,0,98,0, | ||
8354 | 97,0,108,0,70, | ||
8355 | 0,117,0,110,0, | ||
8356 | 99,0,116,0,105, | ||
8357 | 0,111,0,110,0, | ||
8358 | 68,0,101,0,102, | ||
8359 | 0,105,0,110,0, | ||
8360 | 105,0,116,0,105, | ||
8361 | 0,111,0,110,0, | ||
8362 | 95,0,49,0,1, | ||
8363 | 148,1,3,1,6, | ||
8364 | 1,5,3131,22,1, | ||
8365 | 9,1,2586,3132,17, | ||
8366 | 3133,15,3117,1,-1, | ||
8367 | 1,5,3134,20,3135, | ||
8368 | 4,54,71,0,108, | ||
8369 | 0,111,0,98,0, | ||
8370 | 97,0,108,0,86, | ||
8371 | 0,97,0,114,0, | ||
8372 | 105,0,97,0,98, | ||
8373 | 0,108,0,101,0, | ||
8374 | 68,0,101,0,99, | ||
8375 | 0,108,0,97,0, | ||
8376 | 114,0,97,0,116, | ||
8377 | 0,105,0,111,0, | ||
8378 | 110,0,95,0,49, | ||
8379 | 0,1,146,1,3, | ||
8380 | 1,3,1,2,3136, | ||
8381 | 22,1,7,1,2362, | ||
8382 | 3137,17,3138,15,3128, | ||
8383 | 1,-1,1,5,3139, | ||
8384 | 20,3140,4,52,71, | ||
8385 | 0,108,0,111,0, | ||
8386 | 98,0,97,0,108, | ||
8387 | 0,70,0,117,0, | ||
8388 | 110,0,99,0,116, | ||
8389 | 0,105,0,111,0, | ||
8390 | 110,0,68,0,101, | ||
8391 | 0,102,0,105,0, | ||
8392 | 110,0,105,0,116, | ||
8393 | 0,105,0,111,0, | ||
8394 | 110,0,95,0,50, | ||
8395 | 0,1,149,1,3, | ||
8396 | 1,7,1,6,3141, | ||
8397 | 22,1,10,1,48, | ||
8398 | 3142,19,269,1,48, | ||
8399 | 3143,5,52,1,0, | ||
8400 | 3144,16,0,267,1, | ||
8401 | 2074,3145,16,0,499, | ||
8402 | 1,1860,820,1,2197, | ||
8403 | 3146,16,0,499,1, | ||
8404 | 2526,684,1,2309,3147, | ||
8405 | 16,0,499,1,2528, | ||
8406 | 3148,16,0,267,1, | ||
8407 | 1657,878,1,2030,720, | ||
8408 | 1,2532,673,1,1989, | ||
8409 | 894,1,1990,3149,16, | ||
8410 | 0,499,1,2035,741, | ||
8411 | 1,1775,3150,16,0, | ||
8412 | 499,1,32,3151,16, | ||
8413 | 0,499,1,2104,801, | ||
8414 | 1,2105,3152,16,0, | ||
8415 | 499,1,2547,3126,1, | ||
8416 | 2226,886,1,2606,3121, | ||
8417 | 1,1901,3153,16,0, | ||
8418 | 499,1,2531,667,1, | ||
8419 | 2586,3132,1,2587,3154, | ||
8420 | 16,0,267,1,2452, | ||
8421 | 695,1,1802,774,1, | ||
8422 | 2021,707,1,1804,3155, | ||
8423 | 16,0,499,1,2135, | ||
8424 | 836,1,2354,853,1, | ||
8425 | 2355,858,1,2029,714, | ||
8426 | 1,2575,3115,1,2358, | ||
8427 | 807,1,2032,730,1, | ||
8428 | 2360,813,1,2362,3137, | ||
8429 | 1,2037,746,1,2039, | ||
8430 | 751,1,1931,863,1, | ||
8431 | 2041,757,1,1873,829, | ||
8432 | 1,2043,762,1,2044, | ||
8433 | 767,1,2031,725,1, | ||
8434 | 2598,3156,16,0,267, | ||
8435 | 1,2033,735,1,2605, | ||
8436 | 3098,1,1574,787,1, | ||
8437 | 2607,3104,1,2608,3109, | ||
8438 | 1,1958,3157,16,0, | ||
8439 | 499,1,49,3158,19, | ||
8440 | 504,1,49,3159,5, | ||
8441 | 36,1,2074,3160,16, | ||
8442 | 0,502,1,1860,820, | ||
8443 | 1,2197,3161,16,0, | ||
8444 | 502,1,2309,3162,16, | ||
8445 | 0,502,1,1657,878, | ||
8446 | 1,2031,725,1,1989, | ||
8447 | 894,1,1990,3163,16, | ||
8448 | 0,502,1,1775,3164, | ||
8449 | 16,0,502,1,32, | ||
8450 | 3165,16,0,502,1, | ||
8451 | 2104,801,1,2105,3166, | ||
8452 | 16,0,502,1,2226, | ||
8453 | 886,1,1901,3167,16, | ||
8454 | 0,502,1,1802,774, | ||
8455 | 1,2021,707,1,1804, | ||
8456 | 3168,16,0,502,1, | ||
8457 | 2135,836,1,2354,853, | ||
8458 | 1,2355,858,1,2029, | ||
8459 | 714,1,2030,720,1, | ||
8460 | 2358,807,1,2032,730, | ||
8461 | 1,2360,813,1,2035, | ||
8462 | 741,1,2037,746,1, | ||
8463 | 2039,751,1,1931,863, | ||
8464 | 1,2041,757,1,1873, | ||
8465 | 829,1,2043,762,1, | ||
8466 | 2044,767,1,2033,735, | ||
8467 | 1,1574,787,1,1958, | ||
8468 | 3169,16,0,502,1, | ||
8469 | 50,3170,19,612,1, | ||
8470 | 50,3171,5,36,1, | ||
8471 | 2074,3172,16,0,610, | ||
8472 | 1,1860,820,1,2197, | ||
8473 | 3173,16,0,610,1, | ||
8474 | 2309,3174,16,0,610, | ||
8475 | 1,1657,878,1,2031, | ||
8476 | 725,1,1989,894,1, | ||
8477 | 1990,3175,16,0,610, | ||
8478 | 1,1775,3176,16,0, | ||
8479 | 610,1,32,3177,16, | ||
8480 | 0,610,1,2104,801, | ||
8481 | 1,2105,3178,16,0, | ||
8482 | 610,1,2226,886,1, | ||
8483 | 1901,3179,16,0,610, | ||
8484 | 1,1802,774,1,2021, | ||
8485 | 707,1,1804,3180,16, | ||
8486 | 0,610,1,2135,836, | ||
8487 | 1,2354,853,1,2355, | ||
8488 | 858,1,2029,714,1, | ||
8489 | 2030,720,1,2358,807, | ||
8490 | 1,2032,730,1,2360, | ||
8491 | 813,1,2035,741,1, | ||
8492 | 2037,746,1,2039,751, | ||
8493 | 1,1931,863,1,2041, | ||
8494 | 757,1,1873,829,1, | ||
8495 | 2043,762,1,2044,767, | ||
8496 | 1,2033,735,1,1574, | ||
8497 | 787,1,1958,3181,16, | ||
8498 | 0,610,1,51,3182, | ||
8499 | 19,127,1,51,3183, | ||
8500 | 5,51,1,0,3184, | ||
8501 | 16,0,125,1,2401, | ||
8502 | 3185,16,0,125,1, | ||
8503 | 1860,820,1,10,3186, | ||
8504 | 16,0,125,1,2197, | ||
8505 | 3187,16,0,125,1, | ||
8506 | 2309,3188,16,0,125, | ||
8507 | 1,21,3189,16,0, | ||
8508 | 125,1,1657,878,1, | ||
8509 | 2030,720,1,2031,725, | ||
8510 | 1,2074,3190,16,0, | ||
8511 | 125,1,1989,894,1, | ||
8512 | 1990,3191,16,0,125, | ||
8513 | 1,2035,741,1,1775, | ||
8514 | 3192,16,0,125,1, | ||
8515 | 32,3193,16,0,125, | ||
8516 | 1,2104,801,1,2105, | ||
8517 | 3194,16,0,125,1, | ||
8518 | 2547,3126,1,2226,886, | ||
8519 | 1,2606,3121,1,1901, | ||
8520 | 3195,16,0,125,1, | ||
8521 | 52,3196,16,0,125, | ||
8522 | 1,2587,3197,16,0, | ||
8523 | 125,1,1802,774,1, | ||
8524 | 2021,707,1,1804,3198, | ||
8525 | 16,0,125,1,2135, | ||
8526 | 836,1,2354,853,1, | ||
8527 | 2355,858,1,2029,714, | ||
8528 | 1,2575,3115,1,2358, | ||
8529 | 807,1,2032,730,1, | ||
8530 | 2360,813,1,2362,3137, | ||
8531 | 1,2037,746,1,2039, | ||
8532 | 751,1,1931,863,1, | ||
8533 | 2041,757,1,1873,829, | ||
8534 | 1,2043,762,1,2044, | ||
8535 | 767,1,2033,735,1, | ||
8536 | 2605,3098,1,1574,787, | ||
8537 | 1,2607,3104,1,2608, | ||
8538 | 3109,1,1958,3199,16, | ||
8539 | 0,125,1,2586,3132, | ||
8540 | 1,2534,3200,16,0, | ||
8541 | 125,1,52,3201,19, | ||
8542 | 124,1,52,3202,5, | ||
8543 | 51,1,0,3203,16, | ||
8544 | 0,122,1,2401,3204, | ||
8545 | 16,0,122,1,1860, | ||
8546 | 820,1,10,3205,16, | ||
8547 | 0,122,1,2197,3206, | ||
8548 | 16,0,122,1,2309, | ||
8549 | 3207,16,0,122,1, | ||
8550 | 21,3208,16,0,122, | ||
8551 | 1,1657,878,1,2030, | ||
8552 | 720,1,2031,725,1, | ||
8553 | 2074,3209,16,0,122, | ||
8554 | 1,1989,894,1,1990, | ||
8555 | 3210,16,0,122,1, | ||
8556 | 2035,741,1,1775,3211, | ||
8557 | 16,0,122,1,32, | ||
8558 | 3212,16,0,122,1, | ||
8559 | 2104,801,1,2105,3213, | ||
8560 | 16,0,122,1,2547, | ||
8561 | 3126,1,2226,886,1, | ||
8562 | 2606,3121,1,1901,3214, | ||
8563 | 16,0,122,1,52, | ||
8564 | 3215,16,0,122,1, | ||
8565 | 2587,3216,16,0,122, | ||
8566 | 1,1802,774,1,2021, | ||
8567 | 707,1,1804,3217,16, | ||
8568 | 0,122,1,2135,836, | ||
8569 | 1,2354,853,1,2355, | ||
8570 | 858,1,2029,714,1, | ||
8571 | 2575,3115,1,2358,807, | ||
8572 | 1,2032,730,1,2360, | ||
8573 | 813,1,2362,3137,1, | ||
8574 | 2037,746,1,2039,751, | ||
8575 | 1,1931,863,1,2041, | ||
8576 | 757,1,1873,829,1, | ||
8577 | 2043,762,1,2044,767, | ||
8578 | 1,2033,735,1,2605, | ||
8579 | 3098,1,1574,787,1, | ||
8580 | 2607,3104,1,2608,3109, | ||
8581 | 1,1958,3218,16,0, | ||
8582 | 122,1,2586,3132,1, | ||
8583 | 2534,3219,16,0,122, | ||
8584 | 1,53,3220,19,121, | ||
8585 | 1,53,3221,5,51, | ||
8586 | 1,0,3222,16,0, | ||
8587 | 119,1,2401,3223,16, | ||
8588 | 0,119,1,1860,820, | ||
8589 | 1,10,3224,16,0, | ||
8590 | 119,1,2197,3225,16, | ||
8591 | 0,119,1,2309,3226, | ||
8592 | 16,0,119,1,21, | ||
8593 | 3227,16,0,119,1, | ||
8594 | 1657,878,1,2030,720, | ||
8595 | 1,2031,725,1,2074, | ||
8596 | 3228,16,0,119,1, | ||
8597 | 1989,894,1,1990,3229, | ||
8598 | 16,0,119,1,2035, | ||
8599 | 741,1,1775,3230,16, | ||
8600 | 0,119,1,32,3231, | ||
8601 | 16,0,119,1,2104, | ||
8602 | 801,1,2105,3232,16, | ||
8603 | 0,119,1,2547,3126, | ||
8604 | 1,2226,886,1,2606, | ||
8605 | 3121,1,1901,3233,16, | ||
8606 | 0,119,1,52,3234, | ||
8607 | 16,0,119,1,2587, | ||
8608 | 3235,16,0,119,1, | ||
8609 | 1802,774,1,2021,707, | ||
8610 | 1,1804,3236,16,0, | ||
8611 | 119,1,2135,836,1, | ||
8612 | 2354,853,1,2355,858, | ||
8613 | 1,2029,714,1,2575, | ||
8614 | 3115,1,2358,807,1, | ||
8615 | 2032,730,1,2360,813, | ||
8616 | 1,2362,3137,1,2037, | ||
8617 | 746,1,2039,751,1, | ||
8618 | 1931,863,1,2041,757, | ||
8619 | 1,1873,829,1,2043, | ||
8620 | 762,1,2044,767,1, | ||
8621 | 2033,735,1,2605,3098, | ||
8622 | 1,1574,787,1,2607, | ||
8623 | 3104,1,2608,3109,1, | ||
8624 | 1958,3237,16,0,119, | ||
8625 | 1,2586,3132,1,2534, | ||
8626 | 3238,16,0,119,1, | ||
8627 | 54,3239,19,118,1, | ||
8628 | 54,3240,5,51,1, | ||
8629 | 0,3241,16,0,116, | ||
8630 | 1,2401,3242,16,0, | ||
8631 | 116,1,1860,820,1, | ||
8632 | 10,3243,16,0,116, | ||
8633 | 1,2197,3244,16,0, | ||
8634 | 116,1,2309,3245,16, | ||
8635 | 0,116,1,21,3246, | ||
8636 | 16,0,116,1,1657, | ||
8637 | 878,1,2030,720,1, | ||
8638 | 2031,725,1,2074,3247, | ||
8639 | 16,0,116,1,1989, | ||
8640 | 894,1,1990,3248,16, | ||
8641 | 0,116,1,2035,741, | ||
8642 | 1,1775,3249,16,0, | ||
8643 | 116,1,32,3250,16, | ||
8644 | 0,116,1,2104,801, | ||
8645 | 1,2105,3251,16,0, | ||
8646 | 116,1,2547,3126,1, | ||
8647 | 2226,886,1,2606,3121, | ||
8648 | 1,1901,3252,16,0, | ||
8649 | 116,1,52,3253,16, | ||
8650 | 0,116,1,2587,3254, | ||
8651 | 16,0,116,1,1802, | ||
8652 | 774,1,2021,707,1, | ||
8653 | 1804,3255,16,0,116, | ||
8654 | 1,2135,836,1,2354, | ||
8655 | 853,1,2355,858,1, | ||
8656 | 2029,714,1,2575,3115, | ||
8657 | 1,2358,807,1,2032, | ||
8658 | 730,1,2360,813,1, | ||
8659 | 2362,3137,1,2037,746, | ||
8660 | 1,2039,751,1,1931, | ||
8661 | 863,1,2041,757,1, | ||
8662 | 1873,829,1,2043,762, | ||
8663 | 1,2044,767,1,2033, | ||
8664 | 735,1,2605,3098,1, | ||
8665 | 1574,787,1,2607,3104, | ||
8666 | 1,2608,3109,1,1958, | ||
8667 | 3256,16,0,116,1, | ||
8668 | 2586,3132,1,2534,3257, | ||
8669 | 16,0,116,1,55, | ||
8670 | 3258,19,115,1,55, | ||
8671 | 3259,5,51,1,0, | ||
8672 | 3260,16,0,113,1, | ||
8673 | 2401,3261,16,0,113, | ||
8674 | 1,1860,820,1,10, | ||
8675 | 3262,16,0,113,1, | ||
8676 | 2197,3263,16,0,113, | ||
8677 | 1,2309,3264,16,0, | ||
8678 | 113,1,21,3265,16, | ||
8679 | 0,113,1,1657,878, | ||
8680 | 1,2030,720,1,2031, | ||
8681 | 725,1,2074,3266,16, | ||
8682 | 0,113,1,1989,894, | ||
8683 | 1,1990,3267,16,0, | ||
8684 | 113,1,2035,741,1, | ||
8685 | 1775,3268,16,0,113, | ||
8686 | 1,32,3269,16,0, | ||
8687 | 113,1,2104,801,1, | ||
8688 | 2105,3270,16,0,113, | ||
8689 | 1,2547,3126,1,2226, | ||
8690 | 886,1,2606,3121,1, | ||
8691 | 1901,3271,16,0,113, | ||
8692 | 1,52,3272,16,0, | ||
8693 | 113,1,2587,3273,16, | ||
8694 | 0,113,1,1802,774, | ||
8695 | 1,2021,707,1,1804, | ||
8696 | 3274,16,0,113,1, | ||
8697 | 2135,836,1,2354,853, | ||
8698 | 1,2355,858,1,2029, | ||
8699 | 714,1,2575,3115,1, | ||
8700 | 2358,807,1,2032,730, | ||
8701 | 1,2360,813,1,2362, | ||
8702 | 3137,1,2037,746,1, | ||
8703 | 2039,751,1,1931,863, | ||
8704 | 1,2041,757,1,1873, | ||
8705 | 829,1,2043,762,1, | ||
8706 | 2044,767,1,2033,735, | ||
8707 | 1,2605,3098,1,1574, | ||
8708 | 787,1,2607,3104,1, | ||
8709 | 2608,3109,1,1958,3275, | ||
8710 | 16,0,113,1,2586, | ||
8711 | 3132,1,2534,3276,16, | ||
8712 | 0,113,1,56,3277, | ||
8713 | 19,112,1,56,3278, | ||
8714 | 5,51,1,0,3279, | ||
8715 | 16,0,110,1,2401, | ||
8716 | 3280,16,0,110,1, | ||
8717 | 1860,820,1,10,3281, | ||
8718 | 16,0,110,1,2197, | ||
8719 | 3282,16,0,110,1, | ||
8720 | 2309,3283,16,0,110, | ||
8721 | 1,21,3284,16,0, | ||
8722 | 110,1,1657,878,1, | ||
8723 | 2030,720,1,2031,725, | ||
8724 | 1,2074,3285,16,0, | ||
8725 | 110,1,1989,894,1, | ||
8726 | 1990,3286,16,0,110, | ||
8727 | 1,2035,741,1,1775, | ||
8728 | 3287,16,0,110,1, | ||
8729 | 32,3288,16,0,110, | ||
8730 | 1,2104,801,1,2105, | ||
8731 | 3289,16,0,110,1, | ||
8732 | 2547,3126,1,2226,886, | ||
8733 | 1,2606,3121,1,1901, | ||
8734 | 3290,16,0,110,1, | ||
8735 | 52,3291,16,0,110, | ||
8736 | 1,2587,3292,16,0, | ||
8737 | 110,1,1802,774,1, | ||
8738 | 2021,707,1,1804,3293, | ||
8739 | 16,0,110,1,2135, | ||
8740 | 836,1,2354,853,1, | ||
8741 | 2355,858,1,2029,714, | ||
8742 | 1,2575,3115,1,2358, | ||
8743 | 807,1,2032,730,1, | ||
8744 | 2360,813,1,2362,3137, | ||
8745 | 1,2037,746,1,2039, | ||
8746 | 751,1,1931,863,1, | ||
8747 | 2041,757,1,1873,829, | ||
8748 | 1,2043,762,1,2044, | ||
8749 | 767,1,2033,735,1, | ||
8750 | 2605,3098,1,1574,787, | ||
8751 | 1,2607,3104,1,2608, | ||
8752 | 3109,1,1958,3294,16, | ||
8753 | 0,110,1,2586,3132, | ||
8754 | 1,2534,3295,16,0, | ||
8755 | 110,1,57,3296,19, | ||
8756 | 109,1,57,3297,5, | ||
8757 | 51,1,0,3298,16, | ||
8758 | 0,107,1,2401,3299, | ||
8759 | 16,0,107,1,1860, | ||
8760 | 820,1,10,3300,16, | ||
8761 | 0,107,1,2197,3301, | ||
8762 | 16,0,107,1,2309, | ||
8763 | 3302,16,0,107,1, | ||
8764 | 21,3303,16,0,107, | ||
8765 | 1,1657,878,1,2030, | ||
8766 | 720,1,2031,725,1, | ||
8767 | 2074,3304,16,0,107, | ||
8768 | 1,1989,894,1,1990, | ||
8769 | 3305,16,0,107,1, | ||
8770 | 2035,741,1,1775,3306, | ||
8771 | 16,0,107,1,32, | ||
8772 | 3307,16,0,107,1, | ||
8773 | 2104,801,1,2105,3308, | ||
8774 | 16,0,107,1,2547, | ||
8775 | 3126,1,2226,886,1, | ||
8776 | 2606,3121,1,1901,3309, | ||
8777 | 16,0,107,1,52, | ||
8778 | 3310,16,0,107,1, | ||
8779 | 2587,3311,16,0,107, | ||
8780 | 1,1802,774,1,2021, | ||
8781 | 707,1,1804,3312,16, | ||
8782 | 0,107,1,2135,836, | ||
8783 | 1,2354,853,1,2355, | ||
8784 | 858,1,2029,714,1, | ||
8785 | 2575,3115,1,2358,807, | ||
8786 | 1,2032,730,1,2360, | ||
8787 | 813,1,2362,3137,1, | ||
8788 | 2037,746,1,2039,751, | ||
8789 | 1,1931,863,1,2041, | ||
8790 | 757,1,1873,829,1, | ||
8791 | 2043,762,1,2044,767, | ||
8792 | 1,2033,735,1,2605, | ||
8793 | 3098,1,1574,787,1, | ||
8794 | 2607,3104,1,2608,3109, | ||
8795 | 1,1958,3313,16,0, | ||
8796 | 107,1,2586,3132,1, | ||
8797 | 2534,3314,16,0,107, | ||
8798 | 1,58,3315,19,352, | ||
8799 | 1,58,3316,5,9, | ||
8800 | 1,2414,1580,1,2490, | ||
8801 | 3317,16,0,350,1, | ||
8802 | 2455,3318,16,0,350, | ||
8803 | 1,2451,1589,1,2416, | ||
8804 | 3319,16,0,350,1, | ||
8805 | 2453,1595,1,2355,858, | ||
8806 | 1,2360,813,1,2366, | ||
8807 | 3320,16,0,350,1, | ||
8808 | 59,3321,19,349,1, | ||
8809 | 59,3322,5,9,1, | ||
8810 | 2414,1580,1,2490,3323, | ||
8811 | 16,0,347,1,2455, | ||
8812 | 3324,16,0,347,1, | ||
8813 | 2451,1589,1,2416,3325, | ||
8814 | 16,0,347,1,2453, | ||
8815 | 1595,1,2355,858,1, | ||
8816 | 2360,813,1,2366,3326, | ||
8817 | 16,0,347,1,60, | ||
8818 | 3327,19,429,1,60, | ||
8819 | 3328,5,9,1,2414, | ||
8820 | 1580,1,2490,3329,16, | ||
8821 | 0,427,1,2455,3330, | ||
8822 | 16,0,427,1,2451, | ||
8823 | 1589,1,2416,3331,16, | ||
8824 | 0,427,1,2453,1595, | ||
8825 | 1,2355,858,1,2360, | ||
8826 | 813,1,2366,3332,16, | ||
8827 | 0,427,1,61,3333, | ||
8828 | 19,345,1,61,3334, | ||
8829 | 5,9,1,2414,1580, | ||
8830 | 1,2490,3335,16,0, | ||
8831 | 343,1,2455,3336,16, | ||
8832 | 0,343,1,2451,1589, | ||
8833 | 1,2416,3337,16,0, | ||
8834 | 343,1,2453,1595,1, | ||
8835 | 2355,858,1,2360,813, | ||
8836 | 1,2366,3338,16,0, | ||
8837 | 343,1,62,3339,19, | ||
8838 | 342,1,62,3340,5, | ||
8839 | 9,1,2414,1580,1, | ||
8840 | 2490,3341,16,0,340, | ||
8841 | 1,2455,3342,16,0, | ||
8842 | 340,1,2451,1589,1, | ||
8843 | 2416,3343,16,0,340, | ||
8844 | 1,2453,1595,1,2355, | ||
8845 | 858,1,2360,813,1, | ||
8846 | 2366,3344,16,0,340, | ||
8847 | 1,63,3345,19,562, | ||
8848 | 1,63,3346,5,9, | ||
8849 | 1,2414,1580,1,2490, | ||
8850 | 3347,16,0,560,1, | ||
8851 | 2455,3348,16,0,560, | ||
8852 | 1,2451,1589,1,2416, | ||
8853 | 3349,16,0,560,1, | ||
8854 | 2453,1595,1,2355,858, | ||
8855 | 1,2360,813,1,2366, | ||
8856 | 3350,16,0,560,1, | ||
8857 | 64,3351,19,336,1, | ||
8858 | 64,3352,5,9,1, | ||
8859 | 2414,1580,1,2490,3353, | ||
8860 | 16,0,334,1,2455, | ||
8861 | 3354,16,0,334,1, | ||
8862 | 2451,1589,1,2416,3355, | ||
8863 | 16,0,334,1,2453, | ||
8864 | 1595,1,2355,858,1, | ||
8865 | 2360,813,1,2366,3356, | ||
8866 | 16,0,334,1,65, | ||
8867 | 3357,19,333,1,65, | ||
8868 | 3358,5,9,1,2414, | ||
8869 | 1580,1,2490,3359,16, | ||
8870 | 0,331,1,2455,3360, | ||
8871 | 16,0,331,1,2451, | ||
8872 | 1589,1,2416,3361,16, | ||
8873 | 0,331,1,2453,1595, | ||
8874 | 1,2355,858,1,2360, | ||
8875 | 813,1,2366,3362,16, | ||
8876 | 0,331,1,66,3363, | ||
8877 | 19,425,1,66,3364, | ||
8878 | 5,9,1,2414,1580, | ||
8879 | 1,2490,3365,16,0, | ||
8880 | 423,1,2455,3366,16, | ||
8881 | 0,423,1,2451,1589, | ||
8882 | 1,2416,3367,16,0, | ||
8883 | 423,1,2453,1595,1, | ||
8884 | 2355,858,1,2360,813, | ||
8885 | 1,2366,3368,16,0, | ||
8886 | 423,1,67,3369,19, | ||
8887 | 422,1,67,3370,5, | ||
8888 | 9,1,2414,1580,1, | ||
8889 | 2490,3371,16,0,420, | ||
8890 | 1,2455,3372,16,0, | ||
8891 | 420,1,2451,1589,1, | ||
8892 | 2416,3373,16,0,420, | ||
8893 | 1,2453,1595,1,2355, | ||
8894 | 858,1,2360,813,1, | ||
8895 | 2366,3374,16,0,420, | ||
8896 | 1,68,3375,19,419, | ||
8897 | 1,68,3376,5,9, | ||
8898 | 1,2414,1580,1,2490, | ||
8899 | 3377,16,0,417,1, | ||
8900 | 2455,3378,16,0,417, | ||
8901 | 1,2451,1589,1,2416, | ||
8902 | 3379,16,0,417,1, | ||
8903 | 2453,1595,1,2355,858, | ||
8904 | 1,2360,813,1,2366, | ||
8905 | 3380,16,0,417,1, | ||
8906 | 69,3381,19,325,1, | ||
8907 | 69,3382,5,9,1, | ||
8908 | 2414,1580,1,2490,3383, | ||
8909 | 16,0,323,1,2455, | ||
8910 | 3384,16,0,323,1, | ||
8911 | 2451,1589,1,2416,3385, | ||
8912 | 16,0,323,1,2453, | ||
8913 | 1595,1,2355,858,1, | ||
8914 | 2360,813,1,2366,3386, | ||
8915 | 16,0,323,1,70, | ||
8916 | 3387,19,413,1,70, | ||
8917 | 3388,5,9,1,2414, | ||
8918 | 1580,1,2490,3389,16, | ||
8919 | 0,411,1,2455,3390, | ||
8920 | 16,0,411,1,2451, | ||
8921 | 1589,1,2416,3391,16, | ||
8922 | 0,411,1,2453,1595, | ||
8923 | 1,2355,858,1,2360, | ||
8924 | 813,1,2366,3392,16, | ||
8925 | 0,411,1,71,3393, | ||
8926 | 19,321,1,71,3394, | ||
8927 | 5,9,1,2414,1580, | ||
8928 | 1,2490,3395,16,0, | ||
8929 | 319,1,2455,3396,16, | ||
8930 | 0,319,1,2451,1589, | ||
8931 | 1,2416,3397,16,0, | ||
8932 | 319,1,2453,1595,1, | ||
8933 | 2355,858,1,2360,813, | ||
8934 | 1,2366,3398,16,0, | ||
8935 | 319,1,72,3399,19, | ||
8936 | 410,1,72,3400,5, | ||
8937 | 9,1,2414,1580,1, | ||
8938 | 2490,3401,16,0,408, | ||
8939 | 1,2455,3402,16,0, | ||
8940 | 408,1,2451,1589,1, | ||
8941 | 2416,3403,16,0,408, | ||
8942 | 1,2453,1595,1,2355, | ||
8943 | 858,1,2360,813,1, | ||
8944 | 2366,3404,16,0,408, | ||
8945 | 1,73,3405,19,317, | ||
8946 | 1,73,3406,5,9, | ||
8947 | 1,2414,1580,1,2490, | ||
8948 | 3407,16,0,315,1, | ||
8949 | 2455,3408,16,0,315, | ||
8950 | 1,2451,1589,1,2416, | ||
8951 | 3409,16,0,315,1, | ||
8952 | 2453,1595,1,2355,858, | ||
8953 | 1,2360,813,1,2366, | ||
8954 | 3410,16,0,315,1, | ||
8955 | 74,3411,19,471,1, | ||
8956 | 74,3412,5,9,1, | ||
8957 | 2414,1580,1,2490,3413, | ||
8958 | 16,0,469,1,2455, | ||
8959 | 3414,16,0,469,1, | ||
8960 | 2451,1589,1,2416,3415, | ||
8961 | 16,0,469,1,2453, | ||
8962 | 1595,1,2355,858,1, | ||
8963 | 2360,813,1,2366,3416, | ||
8964 | 16,0,469,1,75, | ||
8965 | 3417,19,311,1,75, | ||
8966 | 3418,5,9,1,2414, | ||
8967 | 1580,1,2490,3419,16, | ||
8968 | 0,309,1,2455,3420, | ||
8969 | 16,0,309,1,2451, | ||
8970 | 1589,1,2416,3421,16, | ||
8971 | 0,309,1,2453,1595, | ||
8972 | 1,2355,858,1,2360, | ||
8973 | 813,1,2366,3422,16, | ||
8974 | 0,309,1,76,3423, | ||
8975 | 19,405,1,76,3424, | ||
8976 | 5,9,1,2414,1580, | ||
8977 | 1,2490,3425,16,0, | ||
8978 | 403,1,2455,3426,16, | ||
8979 | 0,403,1,2451,1589, | ||
8980 | 1,2416,3427,16,0, | ||
8981 | 403,1,2453,1595,1, | ||
8982 | 2355,858,1,2360,813, | ||
8983 | 1,2366,3428,16,0, | ||
8984 | 403,1,77,3429,19, | ||
8985 | 307,1,77,3430,5, | ||
8986 | 9,1,2414,1580,1, | ||
8987 | 2490,3431,16,0,305, | ||
8988 | 1,2455,3432,16,0, | ||
8989 | 305,1,2451,1589,1, | ||
8990 | 2416,3433,16,0,305, | ||
8991 | 1,2453,1595,1,2355, | ||
8992 | 858,1,2360,813,1, | ||
8993 | 2366,3434,16,0,305, | ||
8994 | 1,78,3435,19,463, | ||
8995 | 1,78,3436,5,9, | ||
8996 | 1,2414,1580,1,2490, | ||
8997 | 3437,16,0,461,1, | ||
8998 | 2455,3438,16,0,461, | ||
8999 | 1,2451,1589,1,2416, | ||
9000 | 3439,16,0,461,1, | ||
9001 | 2453,1595,1,2355,858, | ||
9002 | 1,2360,813,1,2366, | ||
9003 | 3440,16,0,461,1, | ||
9004 | 79,3441,19,301,1, | ||
9005 | 79,3442,5,9,1, | ||
9006 | 2414,1580,1,2490,3443, | ||
9007 | 16,0,299,1,2455, | ||
9008 | 3444,16,0,299,1, | ||
9009 | 2451,1589,1,2416,3445, | ||
9010 | 16,0,299,1,2453, | ||
9011 | 1595,1,2355,858,1, | ||
9012 | 2360,813,1,2366,3446, | ||
9013 | 16,0,299,1,80, | ||
9014 | 3447,19,298,1,80, | ||
9015 | 3448,5,9,1,2414, | ||
9016 | 1580,1,2490,3449,16, | ||
9017 | 0,296,1,2455,3450, | ||
9018 | 16,0,296,1,2451, | ||
9019 | 1589,1,2416,3451,16, | ||
9020 | 0,296,1,2453,1595, | ||
9021 | 1,2355,858,1,2360, | ||
9022 | 813,1,2366,3452,16, | ||
9023 | 0,296,1,81,3453, | ||
9024 | 19,295,1,81,3454, | ||
9025 | 5,9,1,2414,1580, | ||
9026 | 1,2490,3455,16,0, | ||
9027 | 293,1,2455,3456,16, | ||
9028 | 0,293,1,2451,1589, | ||
9029 | 1,2416,3457,16,0, | ||
9030 | 293,1,2453,1595,1, | ||
9031 | 2355,858,1,2360,813, | ||
9032 | 1,2366,3458,16,0, | ||
9033 | 293,1,82,3459,19, | ||
9034 | 590,1,82,3460,5, | ||
9035 | 9,1,2414,1580,1, | ||
9036 | 2490,3461,16,0,588, | ||
9037 | 1,2455,3462,16,0, | ||
9038 | 588,1,2451,1589,1, | ||
9039 | 2416,3463,16,0,588, | ||
9040 | 1,2453,1595,1,2355, | ||
9041 | 858,1,2360,813,1, | ||
9042 | 2366,3464,16,0,588, | ||
9043 | 1,83,3465,19,393, | ||
9044 | 1,83,3466,5,9, | ||
9045 | 1,2414,1580,1,2490, | ||
9046 | 3467,16,0,391,1, | ||
9047 | 2455,3468,16,0,391, | ||
9048 | 1,2451,1589,1,2416, | ||
9049 | 3469,16,0,391,1, | ||
9050 | 2453,1595,1,2355,858, | ||
9051 | 1,2360,813,1,2366, | ||
9052 | 3470,16,0,391,1, | ||
9053 | 84,3471,19,288,1, | ||
9054 | 84,3472,5,9,1, | ||
9055 | 2414,1580,1,2490,3473, | ||
9056 | 16,0,286,1,2455, | ||
9057 | 3474,16,0,286,1, | ||
9058 | 2451,1589,1,2416,3475, | ||
9059 | 16,0,286,1,2453, | ||
9060 | 1595,1,2355,858,1, | ||
9061 | 2360,813,1,2366,3476, | ||
9062 | 16,0,286,1,85, | ||
9063 | 3477,19,285,1,85, | ||
9064 | 3478,5,9,1,2414, | ||
9065 | 1580,1,2490,3479,16, | ||
9066 | 0,283,1,2455,3480, | ||
9067 | 16,0,283,1,2451, | ||
9068 | 1589,1,2416,3481,16, | ||
9069 | 0,283,1,2453,1595, | ||
9070 | 1,2355,858,1,2360, | ||
9071 | 813,1,2366,3482,16, | ||
9072 | 0,283,1,86,3483, | ||
9073 | 19,389,1,86,3484, | ||
9074 | 5,9,1,2414,1580, | ||
9075 | 1,2490,3485,16,0, | ||
9076 | 387,1,2455,3486,16, | ||
9077 | 0,387,1,2451,1589, | ||
9078 | 1,2416,3487,16,0, | ||
9079 | 387,1,2453,1595,1, | ||
9080 | 2355,858,1,2360,813, | ||
9081 | 1,2366,3488,16,0, | ||
9082 | 387,1,87,3489,19, | ||
9083 | 281,1,87,3490,5, | ||
9084 | 9,1,2414,1580,1, | ||
9085 | 2490,3491,16,0,279, | ||
9086 | 1,2455,3492,16,0, | ||
9087 | 279,1,2451,1589,1, | ||
9088 | 2416,3493,16,0,279, | ||
9089 | 1,2453,1595,1,2355, | ||
9090 | 858,1,2360,813,1, | ||
9091 | 2366,3494,16,0,279, | ||
9092 | 1,88,3495,19,644, | ||
9093 | 1,88,3496,5,9, | ||
9094 | 1,2414,1580,1,2490, | ||
9095 | 3497,16,0,642,1, | ||
9096 | 2455,3498,16,0,642, | ||
9097 | 1,2451,1589,1,2416, | ||
9098 | 3499,16,0,642,1, | ||
9099 | 2453,1595,1,2355,858, | ||
9100 | 1,2360,813,1,2366, | ||
9101 | 3500,16,0,642,1, | ||
9102 | 89,3501,19,276,1, | ||
9103 | 89,3502,5,9,1, | ||
9104 | 2414,1580,1,2490,3503, | ||
9105 | 16,0,274,1,2455, | ||
9106 | 3504,16,0,274,1, | ||
9107 | 2451,1589,1,2416,3505, | ||
9108 | 16,0,274,1,2453, | ||
9109 | 1595,1,2355,858,1, | ||
9110 | 2360,813,1,2366,3506, | ||
9111 | 16,0,274,1,90, | ||
9112 | 3507,19,382,1,90, | ||
9113 | 3508,5,9,1,2414, | ||
9114 | 1580,1,2490,3509,16, | ||
9115 | 0,380,1,2455,3510, | ||
9116 | 16,0,380,1,2451, | ||
9117 | 1589,1,2416,3511,16, | ||
9118 | 0,380,1,2453,1595, | ||
9119 | 1,2355,858,1,2360, | ||
9120 | 813,1,2366,3512,16, | ||
9121 | 0,380,1,91,3513, | ||
9122 | 19,133,1,91,3514, | ||
9123 | 5,121,1,0,3515, | ||
9124 | 16,0,558,1,1, | ||
9125 | 1904,1,2,1910,1, | ||
9126 | 3,1915,1,4,1920, | ||
9127 | 1,5,1925,1,6, | ||
9128 | 1930,1,7,1935,1, | ||
9129 | 8,3516,16,0,131, | ||
9130 | 1,1515,3517,16,0, | ||
9131 | 165,1,2605,3098,1, | ||
9132 | 2135,836,1,2021,707, | ||
9133 | 1,2022,3518,16,0, | ||
9134 | 501,1,256,3519,16, | ||
9135 | 0,173,1,2025,3520, | ||
9136 | 16,0,505,1,18, | ||
9137 | 3521,16,0,138,1, | ||
9138 | 2027,3522,16,0,509, | ||
9139 | 1,2029,714,1,2030, | ||
9140 | 720,1,2031,725,1, | ||
9141 | 2032,730,1,2033,735, | ||
9142 | 1,277,3523,16,0, | ||
9143 | 173,1,2035,741,1, | ||
9144 | 2037,746,1,2039,751, | ||
9145 | 1,32,3524,16,0, | ||
9146 | 165,1,2041,757,1, | ||
9147 | 2043,762,1,2044,767, | ||
9148 | 1,2547,3126,1,2550, | ||
9149 | 3525,16,0,173,1, | ||
9150 | 41,3526,16,0,173, | ||
9151 | 1,1297,3527,16,0, | ||
9152 | 165,1,43,3528,16, | ||
9153 | 0,173,1,1802,774, | ||
9154 | 1,46,3529,16,0, | ||
9155 | 178,1,1804,3530,16, | ||
9156 | 0,165,1,299,3531, | ||
9157 | 16,0,173,1,2309, | ||
9158 | 3532,16,0,165,1, | ||
9159 | 52,3533,16,0,165, | ||
9160 | 1,509,3534,16,0, | ||
9161 | 173,1,525,3535,16, | ||
9162 | 0,173,1,62,3536, | ||
9163 | 16,0,194,1,65, | ||
9164 | 3537,16,0,196,1, | ||
9165 | 2074,3538,16,0,165, | ||
9166 | 1,1574,787,1,71, | ||
9167 | 3539,16,0,173,1, | ||
9168 | 1775,3540,16,0,165, | ||
9169 | 1,76,3541,16,0, | ||
9170 | 173,1,1834,3542,16, | ||
9171 | 0,165,1,2197,3543, | ||
9172 | 16,0,165,1,79, | ||
9173 | 3544,16,0,173,1, | ||
9174 | 1335,3545,16,0,165, | ||
9175 | 1,322,3546,16,0, | ||
9176 | 173,1,85,3547,16, | ||
9177 | 0,173,1,1261,3548, | ||
9178 | 16,0,165,1,89, | ||
9179 | 3549,16,0,173,1, | ||
9180 | 346,3550,16,0,173, | ||
9181 | 1,2355,858,1,97, | ||
9182 | 3551,16,0,173,1, | ||
9183 | 2608,3109,1,2358,807, | ||
9184 | 1,2360,813,1,102, | ||
9185 | 3552,16,0,173,1, | ||
9186 | 1860,820,1,2364,3553, | ||
9187 | 16,0,379,1,1113, | ||
9188 | 3554,16,0,158,1, | ||
9189 | 112,3555,16,0,173, | ||
9190 | 1,1117,3556,16,0, | ||
9191 | 165,1,1873,829,1, | ||
9192 | 1876,3557,16,0,165, | ||
9193 | 1,372,3558,16,0, | ||
9194 | 539,1,374,3559,16, | ||
9195 | 0,541,1,124,3560, | ||
9196 | 16,0,173,1,376, | ||
9197 | 3561,16,0,543,1, | ||
9198 | 378,3562,16,0,545, | ||
9199 | 1,381,3563,16,0, | ||
9200 | 173,1,137,3564,16, | ||
9201 | 0,173,1,1901,3565, | ||
9202 | 16,0,165,1,2575, | ||
9203 | 3115,1,1153,3566,16, | ||
9204 | 0,165,1,151,3567, | ||
9205 | 16,0,173,1,1407, | ||
9206 | 3568,16,0,165,1, | ||
9207 | 1659,3569,16,0,165, | ||
9208 | 1,406,3570,16,0, | ||
9209 | 173,1,2586,3132,1, | ||
9210 | 2587,3571,16,0,558, | ||
9211 | 1,1371,3572,16,0, | ||
9212 | 165,1,2104,801,1, | ||
9213 | 2105,3573,16,0,165, | ||
9214 | 1,166,3574,16,0, | ||
9215 | 173,1,1622,3575,16, | ||
9216 | 0,173,1,2354,853, | ||
9217 | 1,1931,863,1,1933, | ||
9218 | 3576,16,0,165,1, | ||
9219 | 2362,3137,1,2606,3121, | ||
9220 | 1,2607,3104,1,1585, | ||
9221 | 3577,16,0,173,1, | ||
9222 | 182,3578,16,0,173, | ||
9223 | 1,1189,3579,16,0, | ||
9224 | 165,1,1443,3580,16, | ||
9225 | 0,165,1,1695,3581, | ||
9226 | 16,0,165,1,431, | ||
9227 | 3582,16,0,173,1, | ||
9228 | 447,3583,16,0,173, | ||
9229 | 1,199,3584,16,0, | ||
9230 | 173,1,1958,3585,16, | ||
9231 | 0,165,1,1657,878, | ||
9232 | 1,459,3586,16,0, | ||
9233 | 173,1,462,3587,16, | ||
9234 | 0,173,1,217,3588, | ||
9235 | 16,0,173,1,2226, | ||
9236 | 886,1,1225,3589,16, | ||
9237 | 0,165,1,1479,3590, | ||
9238 | 16,0,165,1,1731, | ||
9239 | 3591,16,0,173,1, | ||
9240 | 1989,894,1,1990,3592, | ||
9241 | 16,0,165,1,236, | ||
9242 | 3593,16,0,173,1, | ||
9243 | 1756,3594,16,0,165, | ||
9244 | 1,92,3595,19,624, | ||
9245 | 1,92,3596,5,91, | ||
9246 | 1,256,3597,16,0, | ||
9247 | 622,1,1261,3598,16, | ||
9248 | 0,622,1,509,3599, | ||
9249 | 16,0,622,1,2197, | ||
9250 | 3600,16,0,622,1, | ||
9251 | 1515,3601,16,0,622, | ||
9252 | 1,2021,707,1,1775, | ||
9253 | 3602,16,0,622,1, | ||
9254 | 2029,714,1,2030,720, | ||
9255 | 1,2031,725,1,2032, | ||
9256 | 730,1,2033,735,1, | ||
9257 | 277,3603,16,0,622, | ||
9258 | 1,2035,741,1,2037, | ||
9259 | 746,1,2039,751,1, | ||
9260 | 32,3604,16,0,622, | ||
9261 | 1,2041,757,1,2043, | ||
9262 | 762,1,2044,767,1, | ||
9263 | 2550,3605,16,0,622, | ||
9264 | 1,41,3606,16,0, | ||
9265 | 622,1,1297,3607,16, | ||
9266 | 0,622,1,43,3608, | ||
9267 | 16,0,622,1,1802, | ||
9268 | 774,1,1804,3609,16, | ||
9269 | 0,622,1,299,3610, | ||
9270 | 16,0,622,1,2309, | ||
9271 | 3611,16,0,622,1, | ||
9272 | 52,3612,16,0,622, | ||
9273 | 1,525,3613,16,0, | ||
9274 | 622,1,62,3614,16, | ||
9275 | 0,622,1,2074,3615, | ||
9276 | 16,0,622,1,1574, | ||
9277 | 787,1,71,3616,16, | ||
9278 | 0,622,1,76,3617, | ||
9279 | 16,0,622,1,1834, | ||
9280 | 3618,16,0,622,1, | ||
9281 | 1585,3619,16,0,622, | ||
9282 | 1,1335,3620,16,0, | ||
9283 | 622,1,79,3621,16, | ||
9284 | 0,622,1,85,3622, | ||
9285 | 16,0,622,1,89, | ||
9286 | 3623,16,0,622,1, | ||
9287 | 346,3624,16,0,622, | ||
9288 | 1,2104,801,1,2105, | ||
9289 | 3625,16,0,622,1, | ||
9290 | 2358,807,1,2360,813, | ||
9291 | 1,97,3626,16,0, | ||
9292 | 622,1,1860,820,1, | ||
9293 | 102,3627,16,0,622, | ||
9294 | 1,112,3628,16,0, | ||
9295 | 622,1,1117,3629,16, | ||
9296 | 0,622,1,1873,829, | ||
9297 | 1,1876,3630,16,0, | ||
9298 | 622,1,124,3631,16, | ||
9299 | 0,622,1,2135,836, | ||
9300 | 1,381,3632,16,0, | ||
9301 | 622,1,322,3633,16, | ||
9302 | 0,622,1,137,3634, | ||
9303 | 16,0,622,1,1901, | ||
9304 | 3635,16,0,622,1, | ||
9305 | 1153,3636,16,0,622, | ||
9306 | 1,151,3637,16,0, | ||
9307 | 622,1,1407,3638,16, | ||
9308 | 0,622,1,1659,3639, | ||
9309 | 16,0,622,1,406, | ||
9310 | 3640,16,0,622,1, | ||
9311 | 1371,3641,16,0,622, | ||
9312 | 1,166,3642,16,0, | ||
9313 | 622,1,1622,3643,16, | ||
9314 | 0,622,1,2354,853, | ||
9315 | 1,2355,858,1,1931, | ||
9316 | 863,1,1933,3644,16, | ||
9317 | 0,622,1,431,3645, | ||
9318 | 16,0,622,1,182, | ||
9319 | 3646,16,0,622,1, | ||
9320 | 1189,3647,16,0,622, | ||
9321 | 1,1443,3648,16,0, | ||
9322 | 622,1,1695,3649,16, | ||
9323 | 0,622,1,447,3650, | ||
9324 | 16,0,622,1,199, | ||
9325 | 3651,16,0,622,1, | ||
9326 | 1958,3652,16,0,622, | ||
9327 | 1,1657,878,1,459, | ||
9328 | 3653,16,0,622,1, | ||
9329 | 462,3654,16,0,622, | ||
9330 | 1,217,3655,16,0, | ||
9331 | 622,1,2226,886,1, | ||
9332 | 1225,3656,16,0,622, | ||
9333 | 1,1479,3657,16,0, | ||
9334 | 622,1,1731,3658,16, | ||
9335 | 0,622,1,1989,894, | ||
9336 | 1,1990,3659,16,0, | ||
9337 | 622,1,236,3660,16, | ||
9338 | 0,622,1,1756,3661, | ||
9339 | 16,0,622,1,93, | ||
9340 | 3662,19,621,1,93, | ||
9341 | 3663,5,91,1,256, | ||
9342 | 3664,16,0,619,1, | ||
9343 | 1261,3665,16,0,619, | ||
9344 | 1,509,3666,16,0, | ||
9345 | 619,1,2197,3667,16, | ||
9346 | 0,619,1,1515,3668, | ||
9347 | 16,0,619,1,2021, | ||
9348 | 707,1,1775,3669,16, | ||
9349 | 0,619,1,2029,714, | ||
9350 | 1,2030,720,1,2031, | ||
9351 | 725,1,2032,730,1, | ||
9352 | 2033,735,1,277,3670, | ||
9353 | 16,0,619,1,2035, | ||
9354 | 741,1,2037,746,1, | ||
9355 | 2039,751,1,32,3671, | ||
9356 | 16,0,619,1,2041, | ||
9357 | 757,1,2043,762,1, | ||
9358 | 2044,767,1,2550,3672, | ||
9359 | 16,0,619,1,41, | ||
9360 | 3673,16,0,619,1, | ||
9361 | 1297,3674,16,0,619, | ||
9362 | 1,43,3675,16,0, | ||
9363 | 619,1,1802,774,1, | ||
9364 | 1804,3676,16,0,619, | ||
9365 | 1,299,3677,16,0, | ||
9366 | 619,1,2309,3678,16, | ||
9367 | 0,619,1,52,3679, | ||
9368 | 16,0,619,1,525, | ||
9369 | 3680,16,0,619,1, | ||
9370 | 62,3681,16,0,619, | ||
9371 | 1,2074,3682,16,0, | ||
9372 | 619,1,1574,787,1, | ||
9373 | 71,3683,16,0,619, | ||
9374 | 1,76,3684,16,0, | ||
9375 | 619,1,1834,3685,16, | ||
9376 | 0,619,1,1585,3686, | ||
9377 | 16,0,619,1,1335, | ||
9378 | 3687,16,0,619,1, | ||
9379 | 79,3688,16,0,619, | ||
9380 | 1,85,3689,16,0, | ||
9381 | 619,1,89,3690,16, | ||
9382 | 0,619,1,346,3691, | ||
9383 | 16,0,619,1,2104, | ||
9384 | 801,1,2105,3692,16, | ||
9385 | 0,619,1,2358,807, | ||
9386 | 1,2360,813,1,97, | ||
9387 | 3693,16,0,619,1, | ||
9388 | 1860,820,1,102,3694, | ||
9389 | 16,0,619,1,112, | ||
9390 | 3695,16,0,619,1, | ||
9391 | 1117,3696,16,0,619, | ||
9392 | 1,1873,829,1,1876, | ||
9393 | 3697,16,0,619,1, | ||
9394 | 124,3698,16,0,619, | ||
9395 | 1,2135,836,1,381, | ||
9396 | 3699,16,0,619,1, | ||
9397 | 322,3700,16,0,619, | ||
9398 | 1,137,3701,16,0, | ||
9399 | 619,1,1901,3702,16, | ||
9400 | 0,619,1,1153,3703, | ||
9401 | 16,0,619,1,151, | ||
9402 | 3704,16,0,619,1, | ||
9403 | 1407,3705,16,0,619, | ||
9404 | 1,1659,3706,16,0, | ||
9405 | 619,1,406,3707,16, | ||
9406 | 0,619,1,1371,3708, | ||
9407 | 16,0,619,1,166, | ||
9408 | 3709,16,0,619,1, | ||
9409 | 1622,3710,16,0,619, | ||
9410 | 1,2354,853,1,2355, | ||
9411 | 858,1,1931,863,1, | ||
9412 | 1933,3711,16,0,619, | ||
9413 | 1,431,3712,16,0, | ||
9414 | 619,1,182,3713,16, | ||
9415 | 0,619,1,1189,3714, | ||
9416 | 16,0,619,1,1443, | ||
9417 | 3715,16,0,619,1, | ||
9418 | 1695,3716,16,0,619, | ||
9419 | 1,447,3717,16,0, | ||
9420 | 619,1,199,3718,16, | ||
9421 | 0,619,1,1958,3719, | ||
9422 | 16,0,619,1,1657, | ||
9423 | 878,1,459,3720,16, | ||
9424 | 0,619,1,462,3721, | ||
9425 | 16,0,619,1,217, | ||
9426 | 3722,16,0,619,1, | ||
9427 | 2226,886,1,1225,3723, | ||
9428 | 16,0,619,1,1479, | ||
9429 | 3724,16,0,619,1, | ||
9430 | 1731,3725,16,0,619, | ||
9431 | 1,1989,894,1,1990, | ||
9432 | 3726,16,0,619,1, | ||
9433 | 236,3727,16,0,619, | ||
9434 | 1,1756,3728,16,0, | ||
9435 | 619,1,94,3729,19, | ||
9436 | 618,1,94,3730,5, | ||
9437 | 91,1,256,3731,16, | ||
9438 | 0,616,1,1261,3732, | ||
9439 | 16,0,616,1,509, | ||
9440 | 3733,16,0,616,1, | ||
9441 | 2197,3734,16,0,616, | ||
9442 | 1,1515,3735,16,0, | ||
9443 | 616,1,2021,707,1, | ||
9444 | 1775,3736,16,0,616, | ||
9445 | 1,2029,714,1,2030, | ||
9446 | 720,1,2031,725,1, | ||
9447 | 2032,730,1,2033,735, | ||
9448 | 1,277,3737,16,0, | ||
9449 | 616,1,2035,741,1, | ||
9450 | 2037,746,1,2039,751, | ||
9451 | 1,32,3738,16,0, | ||
9452 | 616,1,2041,757,1, | ||
9453 | 2043,762,1,2044,767, | ||
9454 | 1,2550,3739,16,0, | ||
9455 | 616,1,41,3740,16, | ||
9456 | 0,616,1,1297,3741, | ||
9457 | 16,0,616,1,43, | ||
9458 | 3742,16,0,616,1, | ||
9459 | 1802,774,1,1804,3743, | ||
9460 | 16,0,616,1,299, | ||
9461 | 3744,16,0,616,1, | ||
9462 | 2309,3745,16,0,616, | ||
9463 | 1,52,3746,16,0, | ||
9464 | 616,1,525,3747,16, | ||
9465 | 0,616,1,62,3748, | ||
9466 | 16,0,616,1,2074, | ||
9467 | 3749,16,0,616,1, | ||
9468 | 1574,787,1,71,3750, | ||
9469 | 16,0,616,1,76, | ||
9470 | 3751,16,0,616,1, | ||
9471 | 1834,3752,16,0,616, | ||
9472 | 1,1585,3753,16,0, | ||
9473 | 616,1,1335,3754,16, | ||
9474 | 0,616,1,79,3755, | ||
9475 | 16,0,616,1,85, | ||
9476 | 3756,16,0,616,1, | ||
9477 | 89,3757,16,0,616, | ||
9478 | 1,346,3758,16,0, | ||
9479 | 616,1,2104,801,1, | ||
9480 | 2105,3759,16,0,616, | ||
9481 | 1,2358,807,1,2360, | ||
9482 | 813,1,97,3760,16, | ||
9483 | 0,616,1,1860,820, | ||
9484 | 1,102,3761,16,0, | ||
9485 | 616,1,112,3762,16, | ||
9486 | 0,616,1,1117,3763, | ||
9487 | 16,0,616,1,1873, | ||
9488 | 829,1,1876,3764,16, | ||
9489 | 0,616,1,124,3765, | ||
9490 | 16,0,616,1,2135, | ||
9491 | 836,1,381,3766,16, | ||
9492 | 0,616,1,322,3767, | ||
9493 | 16,0,616,1,137, | ||
9494 | 3768,16,0,616,1, | ||
9495 | 1901,3769,16,0,616, | ||
9496 | 1,1153,3770,16,0, | ||
9497 | 616,1,151,3771,16, | ||
9498 | 0,616,1,1407,3772, | ||
9499 | 16,0,616,1,1659, | ||
9500 | 3773,16,0,616,1, | ||
9501 | 406,3774,16,0,616, | ||
9502 | 1,1371,3775,16,0, | ||
9503 | 616,1,166,3776,16, | ||
9504 | 0,616,1,1622,3777, | ||
9505 | 16,0,616,1,2354, | ||
9506 | 853,1,2355,858,1, | ||
9507 | 1931,863,1,1933,3778, | ||
9508 | 16,0,616,1,431, | ||
9509 | 3779,16,0,616,1, | ||
9510 | 182,3780,16,0,616, | ||
9511 | 1,1189,3781,16,0, | ||
9512 | 616,1,1443,3782,16, | ||
9513 | 0,616,1,1695,3783, | ||
9514 | 16,0,616,1,447, | ||
9515 | 3784,16,0,616,1, | ||
9516 | 199,3785,16,0,616, | ||
9517 | 1,1958,3786,16,0, | ||
9518 | 616,1,1657,878,1, | ||
9519 | 459,3787,16,0,616, | ||
9520 | 1,462,3788,16,0, | ||
9521 | 616,1,217,3789,16, | ||
9522 | 0,616,1,2226,886, | ||
9523 | 1,1225,3790,16,0, | ||
9524 | 616,1,1479,3791,16, | ||
9525 | 0,616,1,1731,3792, | ||
9526 | 16,0,616,1,1989, | ||
9527 | 894,1,1990,3793,16, | ||
9528 | 0,616,1,236,3794, | ||
9529 | 16,0,616,1,1756, | ||
9530 | 3795,16,0,616,1, | ||
9531 | 95,3796,19,103,1, | ||
9532 | 95,3797,5,1,1, | ||
9533 | 0,3798,16,0,104, | ||
9534 | 1,96,3799,19,647, | ||
9535 | 1,96,3800,5,1, | ||
9536 | 1,0,3801,16,0, | ||
9537 | 645,1,97,3802,19, | ||
9538 | 605,1,97,3803,5, | ||
9539 | 2,1,0,3804,16, | ||
9540 | 0,603,1,2587,3805, | ||
9541 | 16,0,630,1,98, | ||
9542 | 3806,19,357,1,98, | ||
9543 | 3807,5,2,1,0, | ||
9544 | 3808,16,0,481,1, | ||
9545 | 2587,3809,16,0,355, | ||
9546 | 1,99,3810,19,474, | ||
9547 | 1,99,3811,5,2, | ||
9548 | 1,0,3812,16,0, | ||
9549 | 472,1,2587,3813,16, | ||
9550 | 0,652,1,100,3814, | ||
9551 | 19,466,1,100,3815, | ||
9552 | 5,4,1,0,3816, | ||
9553 | 16,0,464,1,2587, | ||
9554 | 3817,16,0,464,1, | ||
9555 | 2598,3818,16,0,609, | ||
9556 | 1,2528,3819,16,0, | ||
9557 | 609,1,101,3820,19, | ||
9558 | 491,1,101,3821,5, | ||
9559 | 2,1,2366,3822,16, | ||
9560 | 0,492,1,2455,3823, | ||
9561 | 16,0,489,1,102, | ||
9562 | 3824,19,398,1,102, | ||
9563 | 3825,5,4,1,2366, | ||
9564 | 3826,16,0,396,1, | ||
9565 | 2455,3827,16,0,396, | ||
9566 | 1,2490,3828,16,0, | ||
9567 | 460,1,2416,3829,16, | ||
9568 | 0,460,1,103,3830, | ||
9569 | 19,141,1,103,3831, | ||
9570 | 5,3,1,2401,3832, | ||
9571 | 16,0,437,1,2534, | ||
9572 | 3833,16,0,475,1, | ||
9573 | 10,3834,16,0,139, | ||
9574 | 1,104,3835,19,151, | ||
9575 | 1,104,3836,5,16, | ||
9576 | 1,0,3837,16,0, | ||
9577 | 482,1,2074,3838,16, | ||
9578 | 0,637,1,2587,3839, | ||
9579 | 16,0,482,1,10, | ||
9580 | 3840,16,0,266,1, | ||
9581 | 2197,3841,16,0,637, | ||
9582 | 1,1901,3842,16,0, | ||
9583 | 637,1,2309,3843,16, | ||
9584 | 0,637,1,2534,3844, | ||
9585 | 16,0,266,1,21, | ||
9586 | 3845,16,0,149,1, | ||
9587 | 2105,3846,16,0,637, | ||
9588 | 1,1804,3847,16,0, | ||
9589 | 637,1,1990,3848,16, | ||
9590 | 0,637,1,32,3849, | ||
9591 | 16,0,637,1,2401, | ||
9592 | 3850,16,0,266,1, | ||
9593 | 1958,3851,16,0,637, | ||
9594 | 1,1775,3852,16,0, | ||
9595 | 637,1,105,3853,19, | ||
9596 | 130,1,105,3854,5, | ||
9597 | 17,1,0,3855,16, | ||
9598 | 0,128,1,2074,3856, | ||
9599 | 16,0,137,1,2587, | ||
9600 | 3857,16,0,128,1, | ||
9601 | 2105,3858,16,0,137, | ||
9602 | 1,10,3859,16,0, | ||
9603 | 137,1,2197,3860,16, | ||
9604 | 0,137,1,1901,3861, | ||
9605 | 16,0,137,1,2309, | ||
9606 | 3862,16,0,137,1, | ||
9607 | 52,3863,16,0,192, | ||
9608 | 1,21,3864,16,0, | ||
9609 | 137,1,2534,3865,16, | ||
9610 | 0,137,1,1804,3866, | ||
9611 | 16,0,137,1,1990, | ||
9612 | 3867,16,0,137,1, | ||
9613 | 32,3868,16,0,137, | ||
9614 | 1,2401,3869,16,0, | ||
9615 | 137,1,1958,3870,16, | ||
9616 | 0,137,1,1775,3871, | ||
9617 | 16,0,137,1,106, | ||
9618 | 3872,19,432,1,106, | ||
9619 | 3873,5,4,1,2366, | ||
9620 | 3874,16,0,430,1, | ||
9621 | 2455,3875,16,0,430, | ||
9622 | 1,2490,3876,16,0, | ||
9623 | 430,1,2416,3877,16, | ||
9624 | 0,430,1,107,3878, | ||
9625 | 19,224,1,107,3879, | ||
9626 | 5,13,1,2074,3880, | ||
9627 | 16,0,510,1,2412, | ||
9628 | 3881,16,0,363,1, | ||
9629 | 2197,3882,16,0,510, | ||
9630 | 1,1901,3883,16,0, | ||
9631 | 510,1,2309,3884,16, | ||
9632 | 0,510,1,1990,3885, | ||
9633 | 16,0,510,1,1804, | ||
9634 | 3886,16,0,510,1, | ||
9635 | 2545,3887,16,0,222, | ||
9636 | 1,31,3888,16,0, | ||
9637 | 265,1,32,3889,16, | ||
9638 | 0,510,1,2105,3890, | ||
9639 | 16,0,510,1,1958, | ||
9640 | 3891,16,0,510,1, | ||
9641 | 1775,3892,16,0,510, | ||
9642 | 1,108,3893,19,314, | ||
9643 | 1,108,3894,5,1, | ||
9644 | 1,32,3895,16,0, | ||
9645 | 312,1,109,3896,19, | ||
9646 | 255,1,109,3897,5, | ||
9647 | 10,1,2074,3898,16, | ||
9648 | 0,578,1,2197,3899, | ||
9649 | 16,0,661,1,1901, | ||
9650 | 3900,16,0,438,1, | ||
9651 | 2309,3901,16,0,253, | ||
9652 | 1,1804,3902,16,0, | ||
9653 | 326,1,1990,3903,16, | ||
9654 | 0,498,1,32,3904, | ||
9655 | 16,0,450,1,2105, | ||
9656 | 3905,16,0,651,1, | ||
9657 | 1958,3906,16,0,477, | ||
9658 | 1,1775,3907,16,0, | ||
9659 | 260,1,110,3908,19, | ||
9660 | 634,1,110,3909,5, | ||
9661 | 10,1,2074,3910,16, | ||
9662 | 0,632,1,2197,3911, | ||
9663 | 16,0,632,1,1901, | ||
9664 | 3912,16,0,632,1, | ||
9665 | 2309,3913,16,0,632, | ||
9666 | 1,1804,3914,16,0, | ||
9667 | 632,1,1990,3915,16, | ||
9668 | 0,632,1,32,3916, | ||
9669 | 16,0,632,1,2105, | ||
9670 | 3917,16,0,632,1, | ||
9671 | 1958,3918,16,0,632, | ||
9672 | 1,1775,3919,16,0, | ||
9673 | 632,1,111,3920,19, | ||
9674 | 161,1,111,3921,5, | ||
9675 | 29,1,1479,3922,16, | ||
9676 | 0,563,1,2074,3923, | ||
9677 | 16,0,636,1,1695, | ||
9678 | 3924,16,0,188,1, | ||
9679 | 1756,3925,16,0,252, | ||
9680 | 1,2197,3926,16,0, | ||
9681 | 636,1,2309,3927,16, | ||
9682 | 0,636,1,1876,3928, | ||
9683 | 16,0,237,1,1659, | ||
9684 | 3929,16,0,252,1, | ||
9685 | 1443,3930,16,0,526, | ||
9686 | 1,1117,3931,16,0, | ||
9687 | 159,1,1990,3932,16, | ||
9688 | 0,636,1,1189,3933, | ||
9689 | 16,0,238,1,1775, | ||
9690 | 3934,16,0,636,1, | ||
9691 | 32,3935,16,0,636, | ||
9692 | 1,2105,3936,16,0, | ||
9693 | 636,1,1515,3937,16, | ||
9694 | 0,580,1,1901,3938, | ||
9695 | 16,0,636,1,52, | ||
9696 | 3939,16,0,591,1, | ||
9697 | 1804,3940,16,0,636, | ||
9698 | 1,1261,3941,16,0, | ||
9699 | 358,1,1153,3942,16, | ||
9700 | 0,245,1,1225,3943, | ||
9701 | 16,0,289,1,1335, | ||
9702 | 3944,16,0,459,1, | ||
9703 | 1933,3945,16,0,565, | ||
9704 | 1,1834,3946,16,0, | ||
9705 | 373,1,1297,3947,16, | ||
9706 | 0,386,1,1407,3948, | ||
9707 | 16,0,572,1,1958, | ||
9708 | 3949,16,0,636,1, | ||
9709 | 1371,3950,16,0,453, | ||
9710 | 1,112,3951,19,535, | ||
9711 | 1,112,3952,5,10, | ||
9712 | 1,2074,3953,16,0, | ||
9713 | 533,1,2197,3954,16, | ||
9714 | 0,533,1,1901,3955, | ||
9715 | 16,0,533,1,2309, | ||
9716 | 3956,16,0,533,1, | ||
9717 | 1804,3957,16,0,533, | ||
9718 | 1,1990,3958,16,0, | ||
9719 | 533,1,32,3959,16, | ||
9720 | 0,533,1,2105,3960, | ||
9721 | 16,0,533,1,1958, | ||
9722 | 3961,16,0,533,1, | ||
9723 | 1775,3962,16,0,533, | ||
9724 | 1,113,3963,19,531, | ||
9725 | 1,113,3964,5,10, | ||
9726 | 1,2074,3965,16,0, | ||
9727 | 529,1,2197,3966,16, | ||
9728 | 0,529,1,1901,3967, | ||
9729 | 16,0,529,1,2309, | ||
9730 | 3968,16,0,529,1, | ||
9731 | 1804,3969,16,0,529, | ||
9732 | 1,1990,3970,16,0, | ||
9733 | 529,1,32,3971,16, | ||
9734 | 0,529,1,2105,3972, | ||
9735 | 16,0,529,1,1958, | ||
9736 | 3973,16,0,529,1, | ||
9737 | 1775,3974,16,0,529, | ||
9738 | 1,114,3975,19,576, | ||
9739 | 1,114,3976,5,10, | ||
9740 | 1,2074,3977,16,0, | ||
9741 | 574,1,2197,3978,16, | ||
9742 | 0,574,1,1901,3979, | ||
9743 | 16,0,574,1,2309, | ||
9744 | 3980,16,0,574,1, | ||
9745 | 1804,3981,16,0,574, | ||
9746 | 1,1990,3982,16,0, | ||
9747 | 574,1,32,3983,16, | ||
9748 | 0,574,1,2105,3984, | ||
9749 | 16,0,574,1,1958, | ||
9750 | 3985,16,0,574,1, | ||
9751 | 1775,3986,16,0,574, | ||
9752 | 1,115,3987,19,525, | ||
9753 | 1,115,3988,5,10, | ||
9754 | 1,2074,3989,16,0, | ||
9755 | 523,1,2197,3990,16, | ||
9756 | 0,523,1,1901,3991, | ||
9757 | 16,0,523,1,2309, | ||
9758 | 3992,16,0,523,1, | ||
9759 | 1804,3993,16,0,523, | ||
9760 | 1,1990,3994,16,0, | ||
9761 | 523,1,32,3995,16, | ||
9762 | 0,523,1,2105,3996, | ||
9763 | 16,0,523,1,1958, | ||
9764 | 3997,16,0,523,1, | ||
9765 | 1775,3998,16,0,523, | ||
9766 | 1,116,3999,19,522, | ||
9767 | 1,116,4000,5,10, | ||
9768 | 1,2074,4001,16,0, | ||
9769 | 520,1,2197,4002,16, | ||
9770 | 0,520,1,1901,4003, | ||
9771 | 16,0,520,1,2309, | ||
9772 | 4004,16,0,520,1, | ||
9773 | 1804,4005,16,0,520, | ||
9774 | 1,1990,4006,16,0, | ||
9775 | 520,1,32,4007,16, | ||
9776 | 0,520,1,2105,4008, | ||
9777 | 16,0,520,1,1958, | ||
9778 | 4009,16,0,520,1, | ||
9779 | 1775,4010,16,0,520, | ||
9780 | 1,117,4011,19,519, | ||
9781 | 1,117,4012,5,10, | ||
9782 | 1,2074,4013,16,0, | ||
9783 | 517,1,2197,4014,16, | ||
9784 | 0,517,1,1901,4015, | ||
9785 | 16,0,517,1,2309, | ||
9786 | 4016,16,0,517,1, | ||
9787 | 1804,4017,16,0,517, | ||
9788 | 1,1990,4018,16,0, | ||
9789 | 517,1,32,4019,16, | ||
9790 | 0,517,1,2105,4020, | ||
9791 | 16,0,517,1,1958, | ||
9792 | 4021,16,0,517,1, | ||
9793 | 1775,4022,16,0,517, | ||
9794 | 1,118,4023,19,516, | ||
9795 | 1,118,4024,5,10, | ||
9796 | 1,2074,4025,16,0, | ||
9797 | 514,1,2197,4026,16, | ||
9798 | 0,514,1,1901,4027, | ||
9799 | 16,0,514,1,2309, | ||
9800 | 4028,16,0,514,1, | ||
9801 | 1804,4029,16,0,514, | ||
9802 | 1,1990,4030,16,0, | ||
9803 | 514,1,32,4031,16, | ||
9804 | 0,514,1,2105,4032, | ||
9805 | 16,0,514,1,1958, | ||
9806 | 4033,16,0,514,1, | ||
9807 | 1775,4034,16,0,514, | ||
9808 | 1,119,4035,19,513, | ||
9809 | 1,119,4036,5,10, | ||
9810 | 1,2074,4037,16,0, | ||
9811 | 511,1,2197,4038,16, | ||
9812 | 0,511,1,1901,4039, | ||
9813 | 16,0,511,1,2309, | ||
9814 | 4040,16,0,511,1, | ||
9815 | 1804,4041,16,0,511, | ||
9816 | 1,1990,4042,16,0, | ||
9817 | 511,1,32,4043,16, | ||
9818 | 0,511,1,2105,4044, | ||
9819 | 16,0,511,1,1958, | ||
9820 | 4045,16,0,511,1, | ||
9821 | 1775,4046,16,0,511, | ||
9822 | 1,120,4047,19,147, | ||
9823 | 1,120,4048,5,2, | ||
9824 | 1,1756,4049,16,0, | ||
9825 | 322,1,1659,4050,16, | ||
9826 | 0,145,1,121,4051, | ||
9827 | 19,556,1,121,4052, | ||
9828 | 5,65,1,1479,4053, | ||
9829 | 16,0,554,1,112, | ||
9830 | 4054,16,0,554,1, | ||
9831 | 1804,4055,16,0,554, | ||
9832 | 1,431,4056,16,0, | ||
9833 | 554,1,1443,4057,16, | ||
9834 | 0,554,1,1756,4058, | ||
9835 | 16,0,554,1,124, | ||
9836 | 4059,16,0,554,1, | ||
9837 | 525,4060,16,0,554, | ||
9838 | 1,2197,4061,16,0, | ||
9839 | 554,1,236,4062,16, | ||
9840 | 0,554,1,346,4063, | ||
9841 | 16,0,554,1,2309, | ||
9842 | 4064,16,0,554,1, | ||
9843 | 1876,4065,16,0,554, | ||
9844 | 1,1659,4066,16,0, | ||
9845 | 554,1,1225,4067,16, | ||
9846 | 0,554,1,1117,4068, | ||
9847 | 16,0,554,1,137, | ||
9848 | 4069,16,0,554,1, | ||
9849 | 1775,4070,16,0,554, | ||
9850 | 1,32,4071,16,0, | ||
9851 | 554,1,2105,4072,16, | ||
9852 | 0,554,1,1407,4073, | ||
9853 | 16,0,554,1,256, | ||
9854 | 4074,16,0,554,1, | ||
9855 | 459,4075,16,0,554, | ||
9856 | 1,41,4076,16,0, | ||
9857 | 554,1,151,4077,16, | ||
9858 | 0,554,1,43,4078, | ||
9859 | 16,0,554,1,1901, | ||
9860 | 4079,16,0,554,1, | ||
9861 | 509,4080,16,0,554, | ||
9862 | 1,52,4081,16,0, | ||
9863 | 554,1,381,4082,16, | ||
9864 | 0,554,1,447,4083, | ||
9865 | 16,0,554,1,166, | ||
9866 | 4084,16,0,554,1, | ||
9867 | 462,4085,16,0,554, | ||
9868 | 1,277,4086,16,0, | ||
9869 | 554,1,1695,4087,16, | ||
9870 | 0,554,1,1261,4088, | ||
9871 | 16,0,554,1,1153, | ||
9872 | 4089,16,0,554,1, | ||
9873 | 62,4090,16,0,585, | ||
9874 | 1,2550,4091,16,0, | ||
9875 | 554,1,2074,4092,16, | ||
9876 | 0,554,1,1335,4093, | ||
9877 | 16,0,554,1,71, | ||
9878 | 4094,16,0,554,1, | ||
9879 | 182,4095,16,0,554, | ||
9880 | 1,76,4096,16,0, | ||
9881 | 554,1,79,4097,16, | ||
9882 | 0,554,1,1933,4098, | ||
9883 | 16,0,554,1,299, | ||
9884 | 4099,16,0,554,1, | ||
9885 | 85,4100,16,0,554, | ||
9886 | 1,1515,4101,16,0, | ||
9887 | 554,1,89,4102,16, | ||
9888 | 0,554,1,1834,4103, | ||
9889 | 16,0,554,1,1622, | ||
9890 | 4104,16,0,554,1, | ||
9891 | 1990,4105,16,0,554, | ||
9892 | 1,406,4106,16,0, | ||
9893 | 554,1,1731,4107,16, | ||
9894 | 0,554,1,97,4108, | ||
9895 | 16,0,554,1,1297, | ||
9896 | 4109,16,0,554,1, | ||
9897 | 1189,4110,16,0,554, | ||
9898 | 1,102,4111,16,0, | ||
9899 | 554,1,1585,4112,16, | ||
9900 | 0,554,1,322,4113, | ||
9901 | 16,0,554,1,1958, | ||
9902 | 4114,16,0,554,1, | ||
9903 | 199,4115,16,0,554, | ||
9904 | 1,1371,4116,16,0, | ||
9905 | 554,1,217,4117,16, | ||
9906 | 0,554,1,122,4118, | ||
9907 | 19,601,1,122,4119, | ||
9908 | 5,2,1,459,4120, | ||
9909 | 16,0,599,1,41, | ||
9910 | 4121,16,0,653,1, | ||
9911 | 123,4122,19,608,1, | ||
9912 | 123,4123,5,3,1, | ||
9913 | 462,4124,16,0,606, | ||
9914 | 1,459,4125,16,0, | ||
9915 | 628,1,41,4126,16, | ||
9916 | 0,628,1,124,4127, | ||
9917 | 19,4128,4,36,69, | ||
9918 | 0,120,0,112,0, | ||
9919 | 114,0,101,0,115, | ||
9920 | 0,115,0,105,0, | ||
9921 | 111,0,110,0,65, | ||
9922 | 0,114,0,103,0, | ||
9923 | 117,0,109,0,101, | ||
9924 | 0,110,0,116,0, | ||
9925 | 1,124,4123,1,125, | ||
9926 | 4129,19,548,1,125, | ||
9927 | 4130,5,65,1,1479, | ||
9928 | 4131,16,0,546,1, | ||
9929 | 112,4132,16,0,546, | ||
9930 | 1,1804,4133,16,0, | ||
9931 | 546,1,431,4134,16, | ||
9932 | 0,546,1,1443,4135, | ||
9933 | 16,0,546,1,1756, | ||
9934 | 4136,16,0,546,1, | ||
9935 | 124,4137,16,0,546, | ||
9936 | 1,525,4138,16,0, | ||
9937 | 546,1,2197,4139,16, | ||
9938 | 0,546,1,236,4140, | ||
9939 | 16,0,546,1,346, | ||
9940 | 4141,16,0,546,1, | ||
9941 | 2309,4142,16,0,546, | ||
9942 | 1,1876,4143,16,0, | ||
9943 | 546,1,1659,4144,16, | ||
9944 | 0,546,1,1225,4145, | ||
9945 | 16,0,546,1,1117, | ||
9946 | 4146,16,0,546,1, | ||
9947 | 137,4147,16,0,546, | ||
9948 | 1,1775,4148,16,0, | ||
9949 | 546,1,32,4149,16, | ||
9950 | 0,546,1,2105,4150, | ||
9951 | 16,0,546,1,1407, | ||
9952 | 4151,16,0,546,1, | ||
9953 | 256,4152,16,0,546, | ||
9954 | 1,459,4153,16,0, | ||
9955 | 546,1,41,4154,16, | ||
9956 | 0,546,1,151,4155, | ||
9957 | 16,0,546,1,43, | ||
9958 | 4156,16,0,546,1, | ||
9959 | 1901,4157,16,0,546, | ||
9960 | 1,509,4158,16,0, | ||
9961 | 546,1,52,4159,16, | ||
9962 | 0,546,1,381,4160, | ||
9963 | 16,0,546,1,447, | ||
9964 | 4161,16,0,546,1, | ||
9965 | 166,4162,16,0,546, | ||
9966 | 1,462,4163,16,0, | ||
9967 | 546,1,277,4164,16, | ||
9968 | 0,546,1,1695,4165, | ||
9969 | 16,0,546,1,1261, | ||
9970 | 4166,16,0,546,1, | ||
9971 | 1153,4167,16,0,546, | ||
9972 | 1,62,4168,16,0, | ||
9973 | 586,1,2550,4169,16, | ||
9974 | 0,546,1,2074,4170, | ||
9975 | 16,0,546,1,1335, | ||
9976 | 4171,16,0,546,1, | ||
9977 | 71,4172,16,0,546, | ||
9978 | 1,182,4173,16,0, | ||
9979 | 546,1,76,4174,16, | ||
9980 | 0,546,1,79,4175, | ||
9981 | 16,0,546,1,1933, | ||
9982 | 4176,16,0,546,1, | ||
9983 | 299,4177,16,0,546, | ||
9984 | 1,85,4178,16,0, | ||
9985 | 546,1,1515,4179,16, | ||
9986 | 0,546,1,89,4180, | ||
9987 | 16,0,546,1,1834, | ||
9988 | 4181,16,0,546,1, | ||
9989 | 1622,4182,16,0,546, | ||
9990 | 1,1990,4183,16,0, | ||
9991 | 546,1,406,4184,16, | ||
9992 | 0,546,1,1731,4185, | ||
9993 | 16,0,546,1,97, | ||
9994 | 4186,16,0,546,1, | ||
9995 | 1297,4187,16,0,546, | ||
9996 | 1,1189,4188,16,0, | ||
9997 | 546,1,102,4189,16, | ||
9998 | 0,546,1,1585,4190, | ||
9999 | 16,0,546,1,322, | ||
10000 | 4191,16,0,546,1, | ||
10001 | 1958,4192,16,0,546, | ||
10002 | 1,199,4193,16,0, | ||
10003 | 546,1,1371,4194,16, | ||
10004 | 0,546,1,217,4195, | ||
10005 | 16,0,546,1,126, | ||
10006 | 4196,19,4197,4,28, | ||
10007 | 86,0,101,0,99, | ||
10008 | 0,116,0,111,0, | ||
10009 | 114,0,67,0,111, | ||
10010 | 0,110,0,115,0, | ||
10011 | 116,0,97,0,110, | ||
10012 | 0,116,0,1,126, | ||
10013 | 4130,1,127,4198,19, | ||
10014 | 4199,4,32,82,0, | ||
10015 | 111,0,116,0,97, | ||
10016 | 0,116,0,105,0, | ||
10017 | 111,0,110,0,67, | ||
10018 | 0,111,0,110,0, | ||
10019 | 115,0,116,0,97, | ||
10020 | 0,110,0,116,0, | ||
10021 | 1,127,4130,1,128, | ||
10022 | 4200,19,4201,4,24, | ||
10023 | 76,0,105,0,115, | ||
10024 | 0,116,0,67,0, | ||
10025 | 111,0,110,0,115, | ||
10026 | 0,116,0,97,0, | ||
10027 | 110,0,116,0,1, | ||
10028 | 128,4130,1,129,4202, | ||
10029 | 19,169,1,129,4203, | ||
10030 | 5,64,1,1479,4204, | ||
10031 | 16,0,537,1,112, | ||
10032 | 4205,16,0,247,1, | ||
10033 | 1804,4206,16,0,584, | ||
10034 | 1,431,4207,16,0, | ||
10035 | 581,1,1443,4208,16, | ||
10036 | 0,488,1,1756,4209, | ||
10037 | 16,0,660,1,124, | ||
10038 | 4210,16,0,259,1, | ||
10039 | 525,4211,16,0,366, | ||
10040 | 1,2197,4212,16,0, | ||
10041 | 584,1,236,4213,16, | ||
10042 | 0,426,1,346,4214, | ||
10043 | 16,0,500,1,2309, | ||
10044 | 4215,16,0,584,1, | ||
10045 | 1876,4216,16,0,378, | ||
10046 | 1,1659,4217,16,0, | ||
10047 | 660,1,1225,4218,16, | ||
10048 | 0,246,1,1117,4219, | ||
10049 | 16,0,218,1,137, | ||
10050 | 4220,16,0,282,1, | ||
10051 | 1775,4221,16,0,584, | ||
10052 | 1,32,4222,16,0, | ||
10053 | 584,1,2105,4223,16, | ||
10054 | 0,584,1,1407,4224, | ||
10055 | 16,0,493,1,256, | ||
10056 | 4225,16,0,442,1, | ||
10057 | 459,4226,16,0,167, | ||
10058 | 1,41,4227,16,0, | ||
10059 | 167,1,151,4228,16, | ||
10060 | 0,318,1,43,4229, | ||
10061 | 16,0,631,1,1901, | ||
10062 | 4230,16,0,584,1, | ||
10063 | 509,4231,16,0,641, | ||
10064 | 1,52,4232,16,0, | ||
10065 | 593,1,381,4233,16, | ||
10066 | 0,559,1,447,4234, | ||
10067 | 16,0,366,1,166, | ||
10068 | 4235,16,0,353,1, | ||
10069 | 462,4236,16,0,167, | ||
10070 | 1,277,4237,16,0, | ||
10071 | 451,1,1695,4238,16, | ||
10072 | 0,277,1,1261,4239, | ||
10073 | 16,0,308,1,1153, | ||
10074 | 4240,16,0,174,1, | ||
10075 | 2550,4241,16,0,569, | ||
10076 | 1,2074,4242,16,0, | ||
10077 | 584,1,1335,4243,16, | ||
10078 | 0,402,1,71,4244, | ||
10079 | 16,0,202,1,182, | ||
10080 | 4245,16,0,366,1, | ||
10081 | 76,4246,16,0,557, | ||
10082 | 1,79,4247,16,0, | ||
10083 | 217,1,1933,4248,16, | ||
10084 | 0,445,1,299,4249, | ||
10085 | 16,0,467,1,85, | ||
10086 | 4250,16,0,485,1, | ||
10087 | 1515,4251,16,0,568, | ||
10088 | 1,89,4252,16,0, | ||
10089 | 228,1,1834,4253,16, | ||
10090 | 0,346,1,1622,4254, | ||
10091 | 16,0,640,1,1990, | ||
10092 | 4255,16,0,584,1, | ||
10093 | 406,4256,16,0,570, | ||
10094 | 1,1731,4257,16,0, | ||
10095 | 248,1,97,4258,16, | ||
10096 | 0,446,1,1297,4259, | ||
10097 | 16,0,407,1,1189, | ||
10098 | 4260,16,0,216,1, | ||
10099 | 102,4261,16,0,236, | ||
10100 | 1,1585,4262,16,0, | ||
10101 | 650,1,322,4263,16, | ||
10102 | 0,486,1,1958,4264, | ||
10103 | 16,0,584,1,199, | ||
10104 | 4265,16,0,377,1, | ||
10105 | 1371,4266,16,0,443, | ||
10106 | 1,217,4267,16,0, | ||
10107 | 394,1,130,4268,19, | ||
10108 | 4269,4,36,67,0, | ||
10109 | 111,0,110,0,115, | ||
10110 | 0,116,0,97,0, | ||
10111 | 110,0,116,0,69, | ||
10112 | 0,120,0,112,0, | ||
10113 | 114,0,101,0,115, | ||
10114 | 0,115,0,105,0, | ||
10115 | 111,0,110,0,1, | ||
10116 | 130,4203,1,131,4270, | ||
10117 | 19,4271,4,30,73, | ||
10118 | 0,100,0,101,0, | ||
10119 | 110,0,116,0,69, | ||
10120 | 0,120,0,112,0, | ||
10121 | 114,0,101,0,115, | ||
10122 | 0,115,0,105,0, | ||
10123 | 111,0,110,0,1, | ||
10124 | 131,4203,1,132,4272, | ||
10125 | 19,4273,4,36,73, | ||
10126 | 0,100,0,101,0, | ||
10127 | 110,0,116,0,68, | ||
10128 | 0,111,0,116,0, | ||
10129 | 69,0,120,0,112, | ||
10130 | 0,114,0,101,0, | ||
10131 | 115,0,115,0,105, | ||
10132 | 0,111,0,110,0, | ||
10133 | 1,132,4203,1,133, | ||
10134 | 4274,19,4275,4,44, | ||
10135 | 70,0,117,0,110, | ||
10136 | 0,99,0,116,0, | ||
10137 | 105,0,111,0,110, | ||
10138 | 0,67,0,97,0, | ||
10139 | 108,0,108,0,69, | ||
10140 | 0,120,0,112,0, | ||
10141 | 114,0,101,0,115, | ||
10142 | 0,115,0,105,0, | ||
10143 | 111,0,110,0,1, | ||
10144 | 133,4203,1,134,4276, | ||
10145 | 19,4277,4,32,66, | ||
10146 | 0,105,0,110,0, | ||
10147 | 97,0,114,0,121, | ||
10148 | 0,69,0,120,0, | ||
10149 | 112,0,114,0,101, | ||
10150 | 0,115,0,115,0, | ||
10151 | 105,0,111,0,110, | ||
10152 | 0,1,134,4203,1, | ||
10153 | 135,4278,19,4279,4, | ||
10154 | 30,85,0,110,0, | ||
10155 | 97,0,114,0,121, | ||
10156 | 0,69,0,120,0, | ||
10157 | 112,0,114,0,101, | ||
10158 | 0,115,0,115,0, | ||
10159 | 105,0,111,0,110, | ||
10160 | 0,1,135,4203,1, | ||
10161 | 136,4280,19,4281,4, | ||
10162 | 36,84,0,121,0, | ||
10163 | 112,0,101,0,99, | ||
10164 | 0,97,0,115,0, | ||
10165 | 116,0,69,0,120, | ||
10166 | 0,112,0,114,0, | ||
10167 | 101,0,115,0,115, | ||
10168 | 0,105,0,111,0, | ||
10169 | 110,0,1,136,4203, | ||
10170 | 1,137,4282,19,4283, | ||
10171 | 4,42,80,0,97, | ||
10172 | 0,114,0,101,0, | ||
10173 | 110,0,116,0,104, | ||
10174 | 0,101,0,115,0, | ||
10175 | 105,0,115,0,69, | ||
10176 | 0,120,0,112,0, | ||
10177 | 114,0,101,0,115, | ||
10178 | 0,115,0,105,0, | ||
10179 | 111,0,110,0,1, | ||
10180 | 137,4203,1,138,4284, | ||
10181 | 19,4285,4,56,73, | ||
10182 | 0,110,0,99,0, | ||
10183 | 114,0,101,0,109, | ||
10184 | 0,101,0,110,0, | ||
10185 | 116,0,68,0,101, | ||
10186 | 0,99,0,114,0, | ||
10187 | 101,0,109,0,101, | ||
10188 | 0,110,0,116,0, | ||
10189 | 69,0,120,0,112, | ||
10190 | 0,114,0,101,0, | ||
10191 | 115,0,115,0,105, | ||
10192 | 0,111,0,110,0, | ||
10193 | 1,138,4203,1,140, | ||
10194 | 4286,19,682,1,140, | ||
10195 | 3797,1,141,4287,19, | ||
10196 | 693,1,141,3797,1, | ||
10197 | 142,4288,19,3112,1, | ||
10198 | 142,3800,1,143,4289, | ||
10199 | 19,3124,1,143,3800, | ||
10200 | 1,144,4290,19,3107, | ||
10201 | 1,144,3800,1,145, | ||
10202 | 4291,19,3102,1,145, | ||
10203 | 3800,1,146,4292,19, | ||
10204 | 3135,1,146,3803,1, | ||
10205 | 147,4293,19,3119,1, | ||
10206 | 147,3803,1,148,4294, | ||
10207 | 19,3130,1,148,3807, | ||
10208 | 1,149,4295,19,3140, | ||
10209 | 1,149,3807,1,150, | ||
10210 | 4296,19,676,1,150, | ||
10211 | 3811,1,151,4297,19, | ||
10212 | 671,1,151,3811,1, | ||
10213 | 152,4298,19,688,1, | ||
10214 | 152,3815,1,153,4299, | ||
10215 | 19,698,1,153,3815, | ||
10216 | 1,154,4300,19,1598, | ||
10217 | 1,154,3821,1,155, | ||
10218 | 4301,19,1593,1,155, | ||
10219 | 3821,1,156,4302,19, | ||
10220 | 1584,1,156,3825,1, | ||
10221 | 157,4303,19,1630,1, | ||
10222 | 157,3831,1,158,4304, | ||
10223 | 19,1614,1,158,3831, | ||
10224 | 1,159,4305,19,1089, | ||
10225 | 1,159,3836,1,160, | ||
10226 | 4306,19,817,1,160, | ||
10227 | 3879,1,161,4307,19, | ||
10228 | 861,1,161,3879,1, | ||
10229 | 162,4308,19,811,1, | ||
10230 | 162,3894,1,163,4309, | ||
10231 | 19,856,1,163,3894, | ||
10232 | 1,164,4310,19,881, | ||
10233 | 1,164,3897,1,165, | ||
10234 | 4311,19,765,1,165, | ||
10235 | 3897,1,166,4312,19, | ||
10236 | 790,1,166,3897,1, | ||
10237 | 167,4313,19,760,1, | ||
10238 | 167,3897,1,168,4314, | ||
10239 | 19,754,1,168,3897, | ||
10240 | 1,169,4315,19,749, | ||
10241 | 1,169,3897,1,170, | ||
10242 | 4316,19,744,1,170, | ||
10243 | 3897,1,171,4317,19, | ||
10244 | 738,1,171,3897,1, | ||
10245 | 172,4318,19,733,1, | ||
10246 | 172,3897,1,173,4319, | ||
10247 | 19,728,1,173,3897, | ||
10248 | 1,174,4320,19,723, | ||
10249 | 1,174,3897,1,175, | ||
10250 | 4321,19,718,1,175, | ||
10251 | 3897,1,176,4322,19, | ||
10252 | 1119,1,176,3964,1, | ||
10253 | 177,4323,19,1262,1, | ||
10254 | 177,3976,1,178,4324, | ||
10255 | 19,1111,1,178,3988, | ||
10256 | 1,179,4325,19,1250, | ||
10257 | 1,179,3988,1,180, | ||
10258 | 4326,19,897,1,180, | ||
10259 | 4000,1,181,4327,19, | ||
10260 | 711,1,181,4000,1, | ||
10261 | 182,4328,19,804,1, | ||
10262 | 182,4000,1,183,4329, | ||
10263 | 19,839,1,183,4000, | ||
10264 | 1,184,4330,19,867, | ||
10265 | 1,184,4012,1,185, | ||
10266 | 4331,19,889,1,185, | ||
10267 | 4012,1,186,4332,19, | ||
10268 | 824,1,186,4024,1, | ||
10269 | 187,4333,19,832,1, | ||
10270 | 187,4024,1,188,4334, | ||
10271 | 19,778,1,188,4036, | ||
10272 | 1,189,4335,19,1489, | ||
10273 | 1,189,4048,1,190, | ||
10274 | 4336,19,1125,1,190, | ||
10275 | 4048,1,191,4337,19, | ||
10276 | 1462,1,191,4048,1, | ||
10277 | 192,4338,19,1505,1, | ||
10278 | 192,4048,1,193,4339, | ||
10279 | 19,1367,1,193,3909, | ||
10280 | 1,194,4340,19,1425, | ||
10281 | 1,194,3909,1,195, | ||
10282 | 4341,19,1105,1,195, | ||
10283 | 3921,1,196,4342,19, | ||
10284 | 1537,1,196,3921,1, | ||
10285 | 197,4343,19,1457,1, | ||
10286 | 197,3921,1,198,4344, | ||
10287 | 19,1410,1,198,3921, | ||
10288 | 1,199,4345,19,1335, | ||
10289 | 1,199,3921,1,200, | ||
10290 | 4346,19,1272,1,200, | ||
10291 | 3921,1,201,4347,19, | ||
10292 | 1282,1,201,3921,1, | ||
10293 | 202,4348,19,1100,1, | ||
10294 | 202,3921,1,203,4349, | ||
10295 | 19,1521,1,203,3921, | ||
10296 | 1,204,4350,19,1452, | ||
10297 | 1,204,3921,1,205, | ||
10298 | 4351,19,1400,1,205, | ||
10299 | 3921,1,206,4352,19, | ||
10300 | 1324,1,206,3921,1, | ||
10301 | 207,4353,19,1298,1, | ||
10302 | 207,3921,1,208,4354, | ||
10303 | 19,1083,1,208,3921, | ||
10304 | 1,209,4355,19,1420, | ||
10305 | 1,209,3921,1,210, | ||
10306 | 4356,19,1441,1,210, | ||
10307 | 3921,1,211,4357,19, | ||
10308 | 1395,1,211,3921,1, | ||
10309 | 212,4358,19,1479,1, | ||
10310 | 212,3921,1,213,4359, | ||
10311 | 19,1234,1,213,3921, | ||
10312 | 1,214,4360,19,1142, | ||
10313 | 1,214,3921,1,215, | ||
10314 | 4361,19,1072,1,215, | ||
10315 | 3921,1,216,4362,19, | ||
10316 | 1495,1,216,3921,1, | ||
10317 | 217,4363,19,1436,1, | ||
10318 | 217,3921,1,218,4364, | ||
10319 | 19,1389,1,218,3921, | ||
10320 | 1,219,4365,19,1267, | ||
10321 | 1,219,3952,1,220, | ||
10322 | 4366,19,1245,1,220, | ||
10323 | 3952,1,221,4367,19, | ||
10324 | 1526,1,221,4130,1, | ||
10325 | 222,4368,19,1549,1, | ||
10326 | 222,4130,1,223,4369, | ||
10327 | 19,1516,1,223,4130, | ||
10328 | 1,224,4370,19,1511, | ||
10329 | 1,224,4130,1,225, | ||
10330 | 4371,19,1532,1,225, | ||
10331 | 4130,1,226,4372,19, | ||
10332 | 1468,1,226,4130,1, | ||
10333 | 227,4373,19,1188,1, | ||
10334 | 227,4130,1,228,4374, | ||
10335 | 19,1356,1,228,4203, | ||
10336 | 1,229,4375,19,1137, | ||
10337 | 1,229,4203,1,230, | ||
10338 | 4376,19,1155,1,230, | ||
10339 | 4203,1,231,4377,19, | ||
10340 | 1172,1,231,4203,1, | ||
10341 | 232,4378,19,1177,1, | ||
10342 | 232,4203,1,233,4379, | ||
10343 | 19,1166,1,233,4203, | ||
10344 | 1,234,4380,19,1161, | ||
10345 | 1,234,4203,1,235, | ||
10346 | 4381,19,1345,1,235, | ||
10347 | 4203,1,236,4382,19, | ||
10348 | 1373,1,236,4203,1, | ||
10349 | 237,4383,19,1378,1, | ||
10350 | 237,4203,1,238,4384, | ||
10351 | 19,1340,1,238,4203, | ||
10352 | 1,239,4385,19,1330, | ||
10353 | 1,239,4203,1,240, | ||
10354 | 4386,19,1304,1,240, | ||
10355 | 4203,1,241,4387,19, | ||
10356 | 1277,1,241,4203,1, | ||
10357 | 242,4388,19,1182,1, | ||
10358 | 242,4203,1,243,4389, | ||
10359 | 19,1147,1,243,4203, | ||
10360 | 1,244,4390,19,1095, | ||
10361 | 1,244,4203,1,245, | ||
10362 | 4391,19,1544,1,245, | ||
10363 | 4203,1,246,4392,19, | ||
10364 | 1500,1,246,4203,1, | ||
10365 | 247,4393,19,1484,1, | ||
10366 | 247,4203,1,248,4394, | ||
10367 | 19,1474,1,248,4203, | ||
10368 | 1,249,4395,19,1431, | ||
10369 | 1,249,4203,1,250, | ||
10370 | 4396,19,1405,1,250, | ||
10371 | 4203,1,251,4397,19, | ||
10372 | 1383,1,251,4203,1, | ||
10373 | 252,4398,19,1361,1, | ||
10374 | 252,4203,1,253,4399, | ||
10375 | 19,1319,1,253,4203, | ||
10376 | 1,254,4400,19,1350, | ||
10377 | 1,254,4203,1,255, | ||
10378 | 4401,19,1415,1,255, | ||
10379 | 4203,1,256,4402,19, | ||
10380 | 1447,1,256,4203,1, | ||
10381 | 257,4403,19,1239,1, | ||
10382 | 257,4203,1,258,4404, | ||
10383 | 19,1311,1,258,4203, | ||
10384 | 1,259,4405,19,1293, | ||
10385 | 1,259,4203,1,260, | ||
10386 | 4406,19,1256,1,260, | ||
10387 | 4203,1,261,4407,19, | ||
10388 | 1229,1,261,4203,1, | ||
10389 | 262,4408,19,1078,1, | ||
10390 | 262,4203,1,263,4409, | ||
10391 | 19,1559,1,263,4203, | ||
10392 | 1,264,4410,19,1194, | ||
10393 | 1,264,4203,1,265, | ||
10394 | 4411,19,1199,1,265, | ||
10395 | 4203,1,266,4412,19, | ||
10396 | 1219,1,266,4203,1, | ||
10397 | 267,4413,19,1209,1, | ||
10398 | 267,4203,1,268,4414, | ||
10399 | 19,1214,1,268,4203, | ||
10400 | 1,269,4415,19,1204, | ||
10401 | 1,269,4203,1,270, | ||
10402 | 4416,19,1554,1,270, | ||
10403 | 4203,1,271,4417,19, | ||
10404 | 1224,1,271,4203,1, | ||
10405 | 272,4418,19,1288,1, | ||
10406 | 272,4052,1,273,4419, | ||
10407 | 19,1651,1,273,4119, | ||
10408 | 1,274,4420,19,1645, | ||
10409 | 1,274,4119,1,275, | ||
10410 | 4421,19,1625,1,275, | ||
10411 | 4123,1,276,4422,19, | ||
10412 | 1938,1,276,3854,1, | ||
10413 | 277,4423,19,1933,1, | ||
10414 | 277,3854,1,278,4424, | ||
10415 | 19,1928,1,278,3854, | ||
10416 | 1,279,4425,19,1923, | ||
10417 | 1,279,3854,1,280, | ||
10418 | 4426,19,1918,1,280, | ||
10419 | 3854,1,281,4427,19, | ||
10420 | 1913,1,281,3854,1, | ||
10421 | 282,4428,19,1908,1, | ||
10422 | 282,3854,1,283,4429, | ||
10423 | 19,1840,1,283,3873, | ||
10424 | 1,284,4430,19,1835, | ||
10425 | 1,284,3873,1,285, | ||
10426 | 4431,19,1830,1,285, | ||
10427 | 3873,1,286,4432,19, | ||
10428 | 1892,1,286,3873,1, | ||
10429 | 287,4433,19,1824,1, | ||
10430 | 287,3873,1,288,4434, | ||
10431 | 19,1819,1,288,3873, | ||
10432 | 1,289,4435,19,1814, | ||
10433 | 1,289,3873,1,290, | ||
10434 | 4436,19,1809,1,290, | ||
10435 | 3873,1,291,4437,19, | ||
10436 | 1804,1,291,3873,1, | ||
10437 | 292,4438,19,1799,1, | ||
10438 | 292,3873,1,293,4439, | ||
10439 | 19,1794,1,293,3873, | ||
10440 | 1,294,4440,19,1789, | ||
10441 | 1,294,3873,1,295, | ||
10442 | 4441,19,1784,1,295, | ||
10443 | 3873,1,296,4442,19, | ||
10444 | 1779,1,296,3873,1, | ||
10445 | 297,4443,19,1774,1, | ||
10446 | 297,3873,1,298,4444, | ||
10447 | 19,1769,1,298,3873, | ||
10448 | 1,299,4445,19,1882, | ||
10449 | 1,299,3873,1,300, | ||
10450 | 4446,19,1763,1,300, | ||
10451 | 3873,1,301,4447,19, | ||
10452 | 1758,1,301,3873,1, | ||
10453 | 302,4448,19,1753,1, | ||
10454 | 302,3873,1,303,4449, | ||
10455 | 19,1748,1,303,3873, | ||
10456 | 1,304,4450,19,1743, | ||
10457 | 1,304,3873,1,305, | ||
10458 | 4451,19,1875,1,305, | ||
10459 | 3873,1,306,4452,19, | ||
10460 | 1737,1,306,3873,1, | ||
10461 | 307,4453,19,1870,1, | ||
10462 | 307,3873,1,308,4454, | ||
10463 | 19,1732,1,308,3873, | ||
10464 | 1,309,4455,19,1727, | ||
10465 | 1,309,3873,1,310, | ||
10466 | 4456,19,1670,1,310, | ||
10467 | 3873,1,311,4457,19, | ||
10468 | 1864,1,311,3873,1, | ||
10469 | 312,4458,19,1720,1, | ||
10470 | 312,3873,1,313,4459, | ||
10471 | 19,1715,1,313,3873, | ||
10472 | 1,314,4460,19,1710, | ||
10473 | 1,314,3873,1,315, | ||
10474 | 4461,19,1705,1,315, | ||
10475 | 3873,1,316,4462,19, | ||
10476 | 4463,4,50,65,0, | ||
10477 | 114,0,103,0,117, | ||
10478 | 0,109,0,101,0, | ||
10479 | 110,0,116,0,68, | ||
10480 | 0,101,0,99,0, | ||
10481 | 108,0,97,0,114, | ||
10482 | 0,97,0,116,0, | ||
10483 | 105,0,111,0,110, | ||
10484 | 0,76,0,105,0, | ||
10485 | 115,0,116,0,95, | ||
10486 | 0,51,0,1,316, | ||
10487 | 3831,1,317,4464,19, | ||
10488 | 4465,4,28,65,0, | ||
10489 | 114,0,103,0,117, | ||
10490 | 0,109,0,101,0, | ||
10491 | 110,0,116,0,76, | ||
10492 | 0,105,0,115,0, | ||
10493 | 116,0,95,0,51, | ||
10494 | 0,1,317,4119,1, | ||
10495 | 318,4466,19,4467,4, | ||
10496 | 50,65,0,114,0, | ||
10497 | 103,0,117,0,109, | ||
10498 | 0,101,0,110,0, | ||
10499 | 116,0,68,0,101, | ||
10500 | 0,99,0,108,0, | ||
10501 | 97,0,114,0,97, | ||
10502 | 0,116,0,105,0, | ||
10503 | 111,0,110,0,76, | ||
10504 | 0,105,0,115,0, | ||
10505 | 116,0,95,0,52, | ||
10506 | 0,1,318,3831,1, | ||
10507 | 319,4468,19,4469,4, | ||
10508 | 50,65,0,114,0, | ||
10509 | 103,0,117,0,109, | ||
10510 | 0,101,0,110,0, | ||
10511 | 116,0,68,0,101, | ||
10512 | 0,99,0,108,0, | ||
10513 | 97,0,114,0,97, | ||
10514 | 0,116,0,105,0, | ||
10515 | 111,0,110,0,76, | ||
10516 | 0,105,0,115,0, | ||
10517 | 116,0,95,0,53, | ||
10518 | 0,1,319,3831,1, | ||
10519 | 320,4470,19,4471,4, | ||
10520 | 24,83,0,116,0, | ||
10521 | 97,0,116,0,101, | ||
10522 | 0,109,0,101,0, | ||
10523 | 110,0,116,0,95, | ||
10524 | 0,49,0,51,0, | ||
10525 | 1,320,3897,1,321, | ||
10526 | 4472,19,4473,4,28, | ||
10527 | 65,0,114,0,103, | ||
10528 | 0,117,0,109,0, | ||
10529 | 101,0,110,0,116, | ||
10530 | 0,76,0,105,0, | ||
10531 | 115,0,116,0,95, | ||
10532 | 0,52,0,1,321, | ||
10533 | 4119,2,0,0}; | ||
10534 | new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory)); | ||
10535 | new Sfactory(this,"SimpleAssignment_8",new SCreator(SimpleAssignment_8_factory)); | ||
10536 | new Sfactory(this,"StatementList_1",new SCreator(StatementList_1_factory)); | ||
10537 | new Sfactory(this,"StateChange_1",new SCreator(StateChange_1_factory)); | ||
10538 | new Sfactory(this,"StateChange_2",new SCreator(StateChange_2_factory)); | ||
10539 | new Sfactory(this,"Declaration",new SCreator(Declaration_factory)); | ||
10540 | new Sfactory(this,"IdentExpression",new SCreator(IdentExpression_factory)); | ||
10541 | new Sfactory(this,"error",new SCreator(error_factory)); | ||
10542 | new Sfactory(this,"BinaryExpression_2",new SCreator(BinaryExpression_2_factory)); | ||
10543 | new Sfactory(this,"BinaryExpression_3",new SCreator(BinaryExpression_3_factory)); | ||
10544 | new Sfactory(this,"BinaryExpression_4",new SCreator(BinaryExpression_4_factory)); | ||
10545 | new Sfactory(this,"BinaryExpression_5",new SCreator(BinaryExpression_5_factory)); | ||
10546 | new Sfactory(this,"ReturnStatement_2",new SCreator(ReturnStatement_2_factory)); | ||
10547 | new Sfactory(this,"SimpleAssignment_19",new SCreator(SimpleAssignment_19_factory)); | ||
10548 | new Sfactory(this,"BinaryExpression_9",new SCreator(BinaryExpression_9_factory)); | ||
10549 | new Sfactory(this,"VectorConstant_1",new SCreator(VectorConstant_1_factory)); | ||
10550 | new Sfactory(this,"ParenthesisExpression",new SCreator(ParenthesisExpression_factory)); | ||
10551 | new Sfactory(this,"UnaryExpression",new SCreator(UnaryExpression_factory)); | ||
10552 | new Sfactory(this,"IdentDotExpression_1",new SCreator(IdentDotExpression_1_factory)); | ||
10553 | new Sfactory(this,"ArgumentList_4",new SCreator(ArgumentList_4_factory)); | ||
10554 | new Sfactory(this,"Typename",new SCreator(Typename_factory)); | ||
10555 | new Sfactory(this,"IfStatement_1",new SCreator(IfStatement_1_factory)); | ||
10556 | new Sfactory(this,"Assignment",new SCreator(Assignment_factory)); | ||
10557 | new Sfactory(this,"CompoundStatement_1",new SCreator(CompoundStatement_1_factory)); | ||
10558 | new Sfactory(this,"CompoundStatement_2",new SCreator(CompoundStatement_2_factory)); | ||
10559 | new Sfactory(this,"ReturnStatement_1",new SCreator(ReturnStatement_1_factory)); | ||
10560 | new Sfactory(this,"IdentDotExpression",new SCreator(IdentDotExpression_factory)); | ||
10561 | new Sfactory(this,"Argument",new SCreator(Argument_factory)); | ||
10562 | new Sfactory(this,"State_2",new SCreator(State_2_factory)); | ||
10563 | new Sfactory(this,"WhileStatement_1",new SCreator(WhileStatement_1_factory)); | ||
10564 | new Sfactory(this,"GlobalDefinitions_3",new SCreator(GlobalDefinitions_3_factory)); | ||
10565 | new Sfactory(this,"GlobalDefinitions_4",new SCreator(GlobalDefinitions_4_factory)); | ||
10566 | new Sfactory(this,"Event_1",new SCreator(Event_1_factory)); | ||
10567 | new Sfactory(this,"ListConstant",new SCreator(ListConstant_factory)); | ||
10568 | new Sfactory(this,"Event_3",new SCreator(Event_3_factory)); | ||
10569 | new Sfactory(this,"Event_4",new SCreator(Event_4_factory)); | ||
10570 | new Sfactory(this,"Event_5",new SCreator(Event_5_factory)); | ||
10571 | new Sfactory(this,"SimpleAssignment_5",new SCreator(SimpleAssignment_5_factory)); | ||
10572 | new Sfactory(this,"Typename_1",new SCreator(Typename_1_factory)); | ||
10573 | new Sfactory(this,"Typename_2",new SCreator(Typename_2_factory)); | ||
10574 | new Sfactory(this,"Typename_3",new SCreator(Typename_3_factory)); | ||
10575 | new Sfactory(this,"Typename_4",new SCreator(Typename_4_factory)); | ||
10576 | new Sfactory(this,"Typename_5",new SCreator(Typename_5_factory)); | ||
10577 | new Sfactory(this,"Typename_6",new SCreator(Typename_6_factory)); | ||
10578 | new Sfactory(this,"Typename_7",new SCreator(Typename_7_factory)); | ||
10579 | new Sfactory(this,"ArgumentDeclarationList",new SCreator(ArgumentDeclarationList_factory)); | ||
10580 | new Sfactory(this,"ConstantExpression",new SCreator(ConstantExpression_factory)); | ||
10581 | new Sfactory(this,"LSLProgramRoot_1",new SCreator(LSLProgramRoot_1_factory)); | ||
10582 | new Sfactory(this,"LSLProgramRoot_2",new SCreator(LSLProgramRoot_2_factory)); | ||
10583 | new Sfactory(this,"States_1",new SCreator(States_1_factory)); | ||
10584 | new Sfactory(this,"States_2",new SCreator(States_2_factory)); | ||
10585 | new Sfactory(this,"FunctionCallExpression_1",new SCreator(FunctionCallExpression_1_factory)); | ||
10586 | new Sfactory(this,"ForLoopStatement",new SCreator(ForLoopStatement_factory)); | ||
10587 | new Sfactory(this,"DoWhileStatement_1",new SCreator(DoWhileStatement_1_factory)); | ||
10588 | new Sfactory(this,"DoWhileStatement_2",new SCreator(DoWhileStatement_2_factory)); | ||
10589 | new Sfactory(this,"ForLoopStatement_4",new SCreator(ForLoopStatement_4_factory)); | ||
10590 | new Sfactory(this,"SimpleAssignment_11",new SCreator(SimpleAssignment_11_factory)); | ||
10591 | new Sfactory(this,"SimpleAssignment_12",new SCreator(SimpleAssignment_12_factory)); | ||
10592 | new Sfactory(this,"SimpleAssignment_13",new SCreator(SimpleAssignment_13_factory)); | ||
10593 | new Sfactory(this,"JumpLabel",new SCreator(JumpLabel_factory)); | ||
10594 | new Sfactory(this,"SimpleAssignment_15",new SCreator(SimpleAssignment_15_factory)); | ||
10595 | new Sfactory(this,"SimpleAssignment_17",new SCreator(SimpleAssignment_17_factory)); | ||
10596 | new Sfactory(this,"SimpleAssignment_18",new SCreator(SimpleAssignment_18_factory)); | ||
10597 | new Sfactory(this,"JumpStatement_1",new SCreator(JumpStatement_1_factory)); | ||
10598 | new Sfactory(this,"GlobalDefinitions",new SCreator(GlobalDefinitions_factory)); | ||
10599 | new Sfactory(this,"FunctionCall_1",new SCreator(FunctionCall_1_factory)); | ||
10600 | new Sfactory(this,"ArgumentList_3",new SCreator(ArgumentList_3_factory)); | ||
10601 | new Sfactory(this,"Assignment_2",new SCreator(Assignment_2_factory)); | ||
10602 | new Sfactory(this,"TypecastExpression_1",new SCreator(TypecastExpression_1_factory)); | ||
10603 | new Sfactory(this,"SimpleAssignment_21",new SCreator(SimpleAssignment_21_factory)); | ||
10604 | new Sfactory(this,"SimpleAssignment_22",new SCreator(SimpleAssignment_22_factory)); | ||
10605 | new Sfactory(this,"SimpleAssignment_23",new SCreator(SimpleAssignment_23_factory)); | ||
10606 | new Sfactory(this,"TypecastExpression_9",new SCreator(TypecastExpression_9_factory)); | ||
10607 | new Sfactory(this,"ArgumentDeclarationList_1",new SCreator(ArgumentDeclarationList_1_factory)); | ||
10608 | new Sfactory(this,"ArgumentDeclarationList_2",new SCreator(ArgumentDeclarationList_2_factory)); | ||
10609 | new Sfactory(this,"ArgumentDeclarationList_3",new SCreator(ArgumentDeclarationList_3_factory)); | ||
10610 | new Sfactory(this,"GlobalDefinitions_1",new SCreator(GlobalDefinitions_1_factory)); | ||
10611 | new Sfactory(this,"GlobalDefinitions_2",new SCreator(GlobalDefinitions_2_factory)); | ||
10612 | new Sfactory(this,"IncrementDecrementExpression",new SCreator(IncrementDecrementExpression_factory)); | ||
10613 | new Sfactory(this,"GlobalVariableDeclaration",new SCreator(GlobalVariableDeclaration_factory)); | ||
10614 | new Sfactory(this,"Event_11",new SCreator(Event_11_factory)); | ||
10615 | new Sfactory(this,"TypecastExpression_2",new SCreator(TypecastExpression_2_factory)); | ||
10616 | new Sfactory(this,"TypecastExpression_3",new SCreator(TypecastExpression_3_factory)); | ||
10617 | new Sfactory(this,"TypecastExpression_5",new SCreator(TypecastExpression_5_factory)); | ||
10618 | new Sfactory(this,"TypecastExpression_8",new SCreator(TypecastExpression_8_factory)); | ||
10619 | new Sfactory(this,"Constant_1",new SCreator(Constant_1_factory)); | ||
10620 | new Sfactory(this,"Expression",new SCreator(Expression_factory)); | ||
10621 | new Sfactory(this,"Constant_3",new SCreator(Constant_3_factory)); | ||
10622 | new Sfactory(this,"Constant_4",new SCreator(Constant_4_factory)); | ||
10623 | new Sfactory(this,"BinaryExpression_1",new SCreator(BinaryExpression_1_factory)); | ||
10624 | new Sfactory(this,"IfStatement_2",new SCreator(IfStatement_2_factory)); | ||
10625 | new Sfactory(this,"IfStatement_3",new SCreator(IfStatement_3_factory)); | ||
10626 | new Sfactory(this,"IfStatement_4",new SCreator(IfStatement_4_factory)); | ||
10627 | new Sfactory(this,"ReturnStatement",new SCreator(ReturnStatement_factory)); | ||
10628 | new Sfactory(this,"Event_2",new SCreator(Event_2_factory)); | ||
10629 | new Sfactory(this,"RotationConstant",new SCreator(RotationConstant_factory)); | ||
10630 | new Sfactory(this,"Statement_12",new SCreator(Statement_12_factory)); | ||
10631 | new Sfactory(this,"Statement_13",new SCreator(Statement_13_factory)); | ||
10632 | new Sfactory(this,"UnaryExpression_1",new SCreator(UnaryExpression_1_factory)); | ||
10633 | new Sfactory(this,"UnaryExpression_2",new SCreator(UnaryExpression_2_factory)); | ||
10634 | new Sfactory(this,"UnaryExpression_3",new SCreator(UnaryExpression_3_factory)); | ||
10635 | new Sfactory(this,"ArgumentList_1",new SCreator(ArgumentList_1_factory)); | ||
10636 | new Sfactory(this,"ArgumentList_2",new SCreator(ArgumentList_2_factory)); | ||
10637 | new Sfactory(this,"Constant",new SCreator(Constant_factory)); | ||
10638 | new Sfactory(this,"State",new SCreator(State_factory)); | ||
10639 | new Sfactory(this,"Event_13",new SCreator(Event_13_factory)); | ||
10640 | new Sfactory(this,"LSLProgramRoot",new SCreator(LSLProgramRoot_factory)); | ||
10641 | new Sfactory(this,"StateChange",new SCreator(StateChange_factory)); | ||
10642 | new Sfactory(this,"IncrementDecrementExpression_2",new SCreator(IncrementDecrementExpression_2_factory)); | ||
10643 | new Sfactory(this,"GlobalVariableDeclaration_1",new SCreator(GlobalVariableDeclaration_1_factory)); | ||
10644 | new Sfactory(this,"GlobalVariableDeclaration_2",new SCreator(GlobalVariableDeclaration_2_factory)); | ||
10645 | new Sfactory(this,"IncrementDecrementExpression_5",new SCreator(IncrementDecrementExpression_5_factory)); | ||
10646 | new Sfactory(this,"GlobalFunctionDefinition_2",new SCreator(GlobalFunctionDefinition_2_factory)); | ||
10647 | new Sfactory(this,"IncrementDecrementExpression_7",new SCreator(IncrementDecrementExpression_7_factory)); | ||
10648 | new Sfactory(this,"IncrementDecrementExpression_8",new SCreator(IncrementDecrementExpression_8_factory)); | ||
10649 | new Sfactory(this,"Assignment_1",new SCreator(Assignment_1_factory)); | ||
10650 | new Sfactory(this,"Event_21",new SCreator(Event_21_factory)); | ||
10651 | new Sfactory(this,"Event_22",new SCreator(Event_22_factory)); | ||
10652 | new Sfactory(this,"CompoundStatement",new SCreator(CompoundStatement_factory)); | ||
10653 | new Sfactory(this,"RotationConstant_1",new SCreator(RotationConstant_1_factory)); | ||
10654 | new Sfactory(this,"SimpleAssignment_3",new SCreator(SimpleAssignment_3_factory)); | ||
10655 | new Sfactory(this,"SimpleAssignment_4",new SCreator(SimpleAssignment_4_factory)); | ||
10656 | new Sfactory(this,"Statement_1",new SCreator(Statement_1_factory)); | ||
10657 | new Sfactory(this,"Statement_2",new SCreator(Statement_2_factory)); | ||
10658 | new Sfactory(this,"Statement_3",new SCreator(Statement_3_factory)); | ||
10659 | new Sfactory(this,"Statement_4",new SCreator(Statement_4_factory)); | ||
10660 | new Sfactory(this,"Statement_5",new SCreator(Statement_5_factory)); | ||
10661 | new Sfactory(this,"Statement_6",new SCreator(Statement_6_factory)); | ||
10662 | new Sfactory(this,"Statement_7",new SCreator(Statement_7_factory)); | ||
10663 | new Sfactory(this,"Statement_8",new SCreator(Statement_8_factory)); | ||
10664 | new Sfactory(this,"Statement_9",new SCreator(Statement_9_factory)); | ||
10665 | new Sfactory(this,"ExpressionArgument",new SCreator(ExpressionArgument_factory)); | ||
10666 | new Sfactory(this,"GlobalFunctionDefinition",new SCreator(GlobalFunctionDefinition_factory)); | ||
10667 | new Sfactory(this,"State_1",new SCreator(State_1_factory)); | ||
10668 | new Sfactory(this,"DoWhileStatement",new SCreator(DoWhileStatement_factory)); | ||
10669 | new Sfactory(this,"ParenthesisExpression_1",new SCreator(ParenthesisExpression_1_factory)); | ||
10670 | new Sfactory(this,"ParenthesisExpression_2",new SCreator(ParenthesisExpression_2_factory)); | ||
10671 | new Sfactory(this,"StateBody",new SCreator(StateBody_factory)); | ||
10672 | new Sfactory(this,"Event_7",new SCreator(Event_7_factory)); | ||
10673 | new Sfactory(this,"Event_8",new SCreator(Event_8_factory)); | ||
10674 | new Sfactory(this,"IncrementDecrementExpression_1",new SCreator(IncrementDecrementExpression_1_factory)); | ||
10675 | new Sfactory(this,"IncrementDecrementExpression_3",new SCreator(IncrementDecrementExpression_3_factory)); | ||
10676 | new Sfactory(this,"IncrementDecrementExpression_4",new SCreator(IncrementDecrementExpression_4_factory)); | ||
10677 | new Sfactory(this,"IncrementDecrementExpression_6",new SCreator(IncrementDecrementExpression_6_factory)); | ||
10678 | new Sfactory(this,"StateEvent",new SCreator(StateEvent_factory)); | ||
10679 | new Sfactory(this,"Event_20",new SCreator(Event_20_factory)); | ||
10680 | new Sfactory(this,"Event_23",new SCreator(Event_23_factory)); | ||
10681 | new Sfactory(this,"Event_24",new SCreator(Event_24_factory)); | ||
10682 | new Sfactory(this,"Event_26",new SCreator(Event_26_factory)); | ||
10683 | new Sfactory(this,"SimpleAssignment_10",new SCreator(SimpleAssignment_10_factory)); | ||
10684 | new Sfactory(this,"Event",new SCreator(Event_factory)); | ||
10685 | new Sfactory(this,"SimpleAssignment_14",new SCreator(SimpleAssignment_14_factory)); | ||
10686 | new Sfactory(this,"SimpleAssignment_16",new SCreator(SimpleAssignment_16_factory)); | ||
10687 | new Sfactory(this,"Statement_10",new SCreator(Statement_10_factory)); | ||
10688 | new Sfactory(this,"Statement_11",new SCreator(Statement_11_factory)); | ||
10689 | new Sfactory(this,"SimpleAssignment",new SCreator(SimpleAssignment_factory)); | ||
10690 | new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory)); | ||
10691 | new Sfactory(this,"Event_15",new SCreator(Event_15_factory)); | ||
10692 | new Sfactory(this,"Event_16",new SCreator(Event_16_factory)); | ||
10693 | new Sfactory(this,"Event_32",new SCreator(Event_32_factory)); | ||
10694 | new Sfactory(this,"SimpleAssignment_20",new SCreator(SimpleAssignment_20_factory)); | ||
10695 | new Sfactory(this,"SimpleAssignment_24",new SCreator(SimpleAssignment_24_factory)); | ||
10696 | new Sfactory(this,"SimpleAssignment_1",new SCreator(SimpleAssignment_1_factory)); | ||
10697 | new Sfactory(this,"SimpleAssignment_2",new SCreator(SimpleAssignment_2_factory)); | ||
10698 | new Sfactory(this,"BinaryExpression",new SCreator(BinaryExpression_factory)); | ||
10699 | new Sfactory(this,"FunctionCallExpression",new SCreator(FunctionCallExpression_factory)); | ||
10700 | new Sfactory(this,"SimpleAssignment_6",new SCreator(SimpleAssignment_6_factory)); | ||
10701 | new Sfactory(this,"StateBody_1",new SCreator(StateBody_1_factory)); | ||
10702 | new Sfactory(this,"StatementList_2",new SCreator(StatementList_2_factory)); | ||
10703 | new Sfactory(this,"SimpleAssignment_9",new SCreator(SimpleAssignment_9_factory)); | ||
10704 | new Sfactory(this,"BinaryExpression_15",new SCreator(BinaryExpression_15_factory)); | ||
10705 | new Sfactory(this,"BinaryExpression_16",new SCreator(BinaryExpression_16_factory)); | ||
10706 | new Sfactory(this,"BinaryExpression_17",new SCreator(BinaryExpression_17_factory)); | ||
10707 | new Sfactory(this,"BinaryExpression_18",new SCreator(BinaryExpression_18_factory)); | ||
10708 | new Sfactory(this,"Event_25",new SCreator(Event_25_factory)); | ||
10709 | new Sfactory(this,"Event_9",new SCreator(Event_9_factory)); | ||
10710 | new Sfactory(this,"Statement",new SCreator(Statement_factory)); | ||
10711 | new Sfactory(this,"JumpStatement",new SCreator(JumpStatement_factory)); | ||
10712 | new Sfactory(this,"BinaryExpression_11",new SCreator(BinaryExpression_11_factory)); | ||
10713 | new Sfactory(this,"BinaryExpression_12",new SCreator(BinaryExpression_12_factory)); | ||
10714 | new Sfactory(this,"BinaryExpression_13",new SCreator(BinaryExpression_13_factory)); | ||
10715 | new Sfactory(this,"BinaryExpression_14",new SCreator(BinaryExpression_14_factory)); | ||
10716 | new Sfactory(this,"BinaryExpression_6",new SCreator(BinaryExpression_6_factory)); | ||
10717 | new Sfactory(this,"BinaryExpression_7",new SCreator(BinaryExpression_7_factory)); | ||
10718 | new Sfactory(this,"BinaryExpression_8",new SCreator(BinaryExpression_8_factory)); | ||
10719 | new Sfactory(this,"ArgumentList",new SCreator(ArgumentList_factory)); | ||
10720 | new Sfactory(this,"Event_10",new SCreator(Event_10_factory)); | ||
10721 | new Sfactory(this,"ConstantExpression_1",new SCreator(ConstantExpression_1_factory)); | ||
10722 | new Sfactory(this,"Event_12",new SCreator(Event_12_factory)); | ||
10723 | new Sfactory(this,"Event_14",new SCreator(Event_14_factory)); | ||
10724 | new Sfactory(this,"Event_17",new SCreator(Event_17_factory)); | ||
10725 | new Sfactory(this,"Event_18",new SCreator(Event_18_factory)); | ||
10726 | new Sfactory(this,"Event_19",new SCreator(Event_19_factory)); | ||
10727 | new Sfactory(this,"BinaryExpression_10",new SCreator(BinaryExpression_10_factory)); | ||
10728 | new Sfactory(this,"StateEvent_1",new SCreator(StateEvent_1_factory)); | ||
10729 | new Sfactory(this,"VectorConstant",new SCreator(VectorConstant_factory)); | ||
10730 | new Sfactory(this,"TypecastExpression_4",new SCreator(TypecastExpression_4_factory)); | ||
10731 | new Sfactory(this,"TypecastExpression_6",new SCreator(TypecastExpression_6_factory)); | ||
10732 | new Sfactory(this,"TypecastExpression_7",new SCreator(TypecastExpression_7_factory)); | ||
10733 | new Sfactory(this,"FunctionCall",new SCreator(FunctionCall_factory)); | ||
10734 | new Sfactory(this,"Event_27",new SCreator(Event_27_factory)); | ||
10735 | new Sfactory(this,"Event_28",new SCreator(Event_28_factory)); | ||
10736 | new Sfactory(this,"Event_29",new SCreator(Event_29_factory)); | ||
10737 | new Sfactory(this,"ListConstant_1",new SCreator(ListConstant_1_factory)); | ||
10738 | new Sfactory(this,"Event_6",new SCreator(Event_6_factory)); | ||
10739 | new Sfactory(this,"Declaration_1",new SCreator(Declaration_1_factory)); | ||
10740 | new Sfactory(this,"SimpleAssignment_7",new SCreator(SimpleAssignment_7_factory)); | ||
10741 | new Sfactory(this,"ForLoop",new SCreator(ForLoop_factory)); | ||
10742 | new Sfactory(this,"Event_30",new SCreator(Event_30_factory)); | ||
10743 | new Sfactory(this,"Event_31",new SCreator(Event_31_factory)); | ||
10744 | new Sfactory(this,"Event_33",new SCreator(Event_33_factory)); | ||
10745 | new Sfactory(this,"GlobalFunctionDefinition_1",new SCreator(GlobalFunctionDefinition_1_factory)); | ||
10746 | new Sfactory(this,"JumpLabel_1",new SCreator(JumpLabel_1_factory)); | ||
10747 | new Sfactory(this,"IfStatement",new SCreator(IfStatement_factory)); | ||
10748 | new Sfactory(this,"ForLoopStatement_1",new SCreator(ForLoopStatement_1_factory)); | ||
10749 | new Sfactory(this,"ForLoopStatement_2",new SCreator(ForLoopStatement_2_factory)); | ||
10750 | new Sfactory(this,"ForLoopStatement_3",new SCreator(ForLoopStatement_3_factory)); | ||
10751 | new Sfactory(this,"ArgumentDeclarationList_4",new SCreator(ArgumentDeclarationList_4_factory)); | ||
10752 | new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory)); | ||
10753 | new Sfactory(this,"WhileStatement",new SCreator(WhileStatement_factory)); | ||
10754 | new Sfactory(this,"ForLoop_1",new SCreator(ForLoop_1_factory)); | ||
10755 | new Sfactory(this,"Constant_2",new SCreator(Constant_2_factory)); | ||
10756 | new Sfactory(this,"StatementList",new SCreator(StatementList_factory)); | ||
10757 | new Sfactory(this,"StateBody_2",new SCreator(StateBody_2_factory)); | ||
10758 | new Sfactory(this,"WhileStatement_2",new SCreator(WhileStatement_2_factory)); | ||
10759 | new Sfactory(this,"IdentExpression_1",new SCreator(IdentExpression_1_factory)); | ||
10760 | new Sfactory(this,"States",new SCreator(States_factory)); | ||
10761 | } | ||
10762 | public static object ExpressionArgument_1_factory(Parser yyp) { return new ExpressionArgument_1(yyp); } | ||
10763 | public static object SimpleAssignment_8_factory(Parser yyp) { return new SimpleAssignment_8(yyp); } | ||
10764 | public static object StatementList_1_factory(Parser yyp) { return new StatementList_1(yyp); } | ||
10765 | public static object StateChange_1_factory(Parser yyp) { return new StateChange_1(yyp); } | ||
10766 | public static object StateChange_2_factory(Parser yyp) { return new StateChange_2(yyp); } | ||
10767 | public static object Declaration_factory(Parser yyp) { return new Declaration(yyp); } | ||
10768 | public static object IdentExpression_factory(Parser yyp) { return new IdentExpression(yyp); } | ||
10769 | public static object error_factory(Parser yyp) { return new error(yyp); } | ||
10770 | public static object BinaryExpression_2_factory(Parser yyp) { return new BinaryExpression_2(yyp); } | ||
10771 | public static object BinaryExpression_3_factory(Parser yyp) { return new BinaryExpression_3(yyp); } | ||
10772 | public static object BinaryExpression_4_factory(Parser yyp) { return new BinaryExpression_4(yyp); } | ||
10773 | public static object BinaryExpression_5_factory(Parser yyp) { return new BinaryExpression_5(yyp); } | ||
10774 | public static object ReturnStatement_2_factory(Parser yyp) { return new ReturnStatement_2(yyp); } | ||
10775 | public static object SimpleAssignment_19_factory(Parser yyp) { return new SimpleAssignment_19(yyp); } | ||
10776 | public static object BinaryExpression_9_factory(Parser yyp) { return new BinaryExpression_9(yyp); } | ||
10777 | public static object VectorConstant_1_factory(Parser yyp) { return new VectorConstant_1(yyp); } | ||
10778 | public static object ParenthesisExpression_factory(Parser yyp) { return new ParenthesisExpression(yyp); } | ||
10779 | public static object UnaryExpression_factory(Parser yyp) { return new UnaryExpression(yyp); } | ||
10780 | public static object IdentDotExpression_1_factory(Parser yyp) { return new IdentDotExpression_1(yyp); } | ||
10781 | public static object ArgumentList_4_factory(Parser yyp) { return new ArgumentList_4(yyp); } | ||
10782 | public static object Typename_factory(Parser yyp) { return new Typename(yyp); } | ||
10783 | public static object IfStatement_1_factory(Parser yyp) { return new IfStatement_1(yyp); } | ||
10784 | public static object Assignment_factory(Parser yyp) { return new Assignment(yyp); } | ||
10785 | public static object CompoundStatement_1_factory(Parser yyp) { return new CompoundStatement_1(yyp); } | ||
10786 | public static object CompoundStatement_2_factory(Parser yyp) { return new CompoundStatement_2(yyp); } | ||
10787 | public static object ReturnStatement_1_factory(Parser yyp) { return new ReturnStatement_1(yyp); } | ||
10788 | public static object IdentDotExpression_factory(Parser yyp) { return new IdentDotExpression(yyp); } | ||
10789 | public static object Argument_factory(Parser yyp) { return new Argument(yyp); } | ||
10790 | public static object State_2_factory(Parser yyp) { return new State_2(yyp); } | ||
10791 | public static object WhileStatement_1_factory(Parser yyp) { return new WhileStatement_1(yyp); } | ||
10792 | public static object GlobalDefinitions_3_factory(Parser yyp) { return new GlobalDefinitions_3(yyp); } | ||
10793 | public static object GlobalDefinitions_4_factory(Parser yyp) { return new GlobalDefinitions_4(yyp); } | ||
10794 | public static object Event_1_factory(Parser yyp) { return new Event_1(yyp); } | ||
10795 | public static object ListConstant_factory(Parser yyp) { return new ListConstant(yyp); } | ||
10796 | public static object Event_3_factory(Parser yyp) { return new Event_3(yyp); } | ||
10797 | public static object Event_4_factory(Parser yyp) { return new Event_4(yyp); } | ||
10798 | public static object Event_5_factory(Parser yyp) { return new Event_5(yyp); } | ||
10799 | public static object SimpleAssignment_5_factory(Parser yyp) { return new SimpleAssignment_5(yyp); } | ||
10800 | public static object Typename_1_factory(Parser yyp) { return new Typename_1(yyp); } | ||
10801 | public static object Typename_2_factory(Parser yyp) { return new Typename_2(yyp); } | ||
10802 | public static object Typename_3_factory(Parser yyp) { return new Typename_3(yyp); } | ||
10803 | public static object Typename_4_factory(Parser yyp) { return new Typename_4(yyp); } | ||
10804 | public static object Typename_5_factory(Parser yyp) { return new Typename_5(yyp); } | ||
10805 | public static object Typename_6_factory(Parser yyp) { return new Typename_6(yyp); } | ||
10806 | public static object Typename_7_factory(Parser yyp) { return new Typename_7(yyp); } | ||
10807 | public static object ArgumentDeclarationList_factory(Parser yyp) { return new ArgumentDeclarationList(yyp); } | ||
10808 | public static object ConstantExpression_factory(Parser yyp) { return new ConstantExpression(yyp); } | ||
10809 | public static object LSLProgramRoot_1_factory(Parser yyp) { return new LSLProgramRoot_1(yyp); } | ||
10810 | public static object LSLProgramRoot_2_factory(Parser yyp) { return new LSLProgramRoot_2(yyp); } | ||
10811 | public static object States_1_factory(Parser yyp) { return new States_1(yyp); } | ||
10812 | public static object States_2_factory(Parser yyp) { return new States_2(yyp); } | ||
10813 | public static object FunctionCallExpression_1_factory(Parser yyp) { return new FunctionCallExpression_1(yyp); } | ||
10814 | public static object ForLoopStatement_factory(Parser yyp) { return new ForLoopStatement(yyp); } | ||
10815 | public static object DoWhileStatement_1_factory(Parser yyp) { return new DoWhileStatement_1(yyp); } | ||
10816 | public static object DoWhileStatement_2_factory(Parser yyp) { return new DoWhileStatement_2(yyp); } | ||
10817 | public static object ForLoopStatement_4_factory(Parser yyp) { return new ForLoopStatement_4(yyp); } | ||
10818 | public static object SimpleAssignment_11_factory(Parser yyp) { return new SimpleAssignment_11(yyp); } | ||
10819 | public static object SimpleAssignment_12_factory(Parser yyp) { return new SimpleAssignment_12(yyp); } | ||
10820 | public static object SimpleAssignment_13_factory(Parser yyp) { return new SimpleAssignment_13(yyp); } | ||
10821 | public static object JumpLabel_factory(Parser yyp) { return new JumpLabel(yyp); } | ||
10822 | public static object SimpleAssignment_15_factory(Parser yyp) { return new SimpleAssignment_15(yyp); } | ||
10823 | public static object SimpleAssignment_17_factory(Parser yyp) { return new SimpleAssignment_17(yyp); } | ||
10824 | public static object SimpleAssignment_18_factory(Parser yyp) { return new SimpleAssignment_18(yyp); } | ||
10825 | public static object JumpStatement_1_factory(Parser yyp) { return new JumpStatement_1(yyp); } | ||
10826 | public static object GlobalDefinitions_factory(Parser yyp) { return new GlobalDefinitions(yyp); } | ||
10827 | public static object FunctionCall_1_factory(Parser yyp) { return new FunctionCall_1(yyp); } | ||
10828 | public static object ArgumentList_3_factory(Parser yyp) { return new ArgumentList_3(yyp); } | ||
10829 | public static object Assignment_2_factory(Parser yyp) { return new Assignment_2(yyp); } | ||
10830 | public static object TypecastExpression_1_factory(Parser yyp) { return new TypecastExpression_1(yyp); } | ||
10831 | public static object SimpleAssignment_21_factory(Parser yyp) { return new SimpleAssignment_21(yyp); } | ||
10832 | public static object SimpleAssignment_22_factory(Parser yyp) { return new SimpleAssignment_22(yyp); } | ||
10833 | public static object SimpleAssignment_23_factory(Parser yyp) { return new SimpleAssignment_23(yyp); } | ||
10834 | public static object TypecastExpression_9_factory(Parser yyp) { return new TypecastExpression_9(yyp); } | ||
10835 | public static object ArgumentDeclarationList_1_factory(Parser yyp) { return new ArgumentDeclarationList_1(yyp); } | ||
10836 | public static object ArgumentDeclarationList_2_factory(Parser yyp) { return new ArgumentDeclarationList_2(yyp); } | ||
10837 | public static object ArgumentDeclarationList_3_factory(Parser yyp) { return new ArgumentDeclarationList_3(yyp); } | ||
10838 | public static object GlobalDefinitions_1_factory(Parser yyp) { return new GlobalDefinitions_1(yyp); } | ||
10839 | public static object GlobalDefinitions_2_factory(Parser yyp) { return new GlobalDefinitions_2(yyp); } | ||
10840 | public static object IncrementDecrementExpression_factory(Parser yyp) { return new IncrementDecrementExpression(yyp); } | ||
10841 | public static object GlobalVariableDeclaration_factory(Parser yyp) { return new GlobalVariableDeclaration(yyp); } | ||
10842 | public static object Event_11_factory(Parser yyp) { return new Event_11(yyp); } | ||
10843 | public static object TypecastExpression_2_factory(Parser yyp) { return new TypecastExpression_2(yyp); } | ||
10844 | public static object TypecastExpression_3_factory(Parser yyp) { return new TypecastExpression_3(yyp); } | ||
10845 | public static object TypecastExpression_5_factory(Parser yyp) { return new TypecastExpression_5(yyp); } | ||
10846 | public static object TypecastExpression_8_factory(Parser yyp) { return new TypecastExpression_8(yyp); } | ||
10847 | public static object Constant_1_factory(Parser yyp) { return new Constant_1(yyp); } | ||
10848 | public static object Expression_factory(Parser yyp) { return new Expression(yyp); } | ||
10849 | public static object Constant_3_factory(Parser yyp) { return new Constant_3(yyp); } | ||
10850 | public static object Constant_4_factory(Parser yyp) { return new Constant_4(yyp); } | ||
10851 | public static object BinaryExpression_1_factory(Parser yyp) { return new BinaryExpression_1(yyp); } | ||
10852 | public static object IfStatement_2_factory(Parser yyp) { return new IfStatement_2(yyp); } | ||
10853 | public static object IfStatement_3_factory(Parser yyp) { return new IfStatement_3(yyp); } | ||
10854 | public static object IfStatement_4_factory(Parser yyp) { return new IfStatement_4(yyp); } | ||
10855 | public static object ReturnStatement_factory(Parser yyp) { return new ReturnStatement(yyp); } | ||
10856 | public static object Event_2_factory(Parser yyp) { return new Event_2(yyp); } | ||
10857 | public static object RotationConstant_factory(Parser yyp) { return new RotationConstant(yyp); } | ||
10858 | public static object Statement_12_factory(Parser yyp) { return new Statement_12(yyp); } | ||
10859 | public static object Statement_13_factory(Parser yyp) { return new Statement_13(yyp); } | ||
10860 | public static object UnaryExpression_1_factory(Parser yyp) { return new UnaryExpression_1(yyp); } | ||
10861 | public static object UnaryExpression_2_factory(Parser yyp) { return new UnaryExpression_2(yyp); } | ||
10862 | public static object UnaryExpression_3_factory(Parser yyp) { return new UnaryExpression_3(yyp); } | ||
10863 | public static object ArgumentList_1_factory(Parser yyp) { return new ArgumentList_1(yyp); } | ||
10864 | public static object ArgumentList_2_factory(Parser yyp) { return new ArgumentList_2(yyp); } | ||
10865 | public static object Constant_factory(Parser yyp) { return new Constant(yyp); } | ||
10866 | public static object State_factory(Parser yyp) { return new State(yyp); } | ||
10867 | public static object Event_13_factory(Parser yyp) { return new Event_13(yyp); } | ||
10868 | public static object LSLProgramRoot_factory(Parser yyp) { return new LSLProgramRoot(yyp); } | ||
10869 | public static object StateChange_factory(Parser yyp) { return new StateChange(yyp); } | ||
10870 | public static object IncrementDecrementExpression_2_factory(Parser yyp) { return new IncrementDecrementExpression_2(yyp); } | ||
10871 | public static object GlobalVariableDeclaration_1_factory(Parser yyp) { return new GlobalVariableDeclaration_1(yyp); } | ||
10872 | public static object GlobalVariableDeclaration_2_factory(Parser yyp) { return new GlobalVariableDeclaration_2(yyp); } | ||
10873 | public static object IncrementDecrementExpression_5_factory(Parser yyp) { return new IncrementDecrementExpression_5(yyp); } | ||
10874 | public static object GlobalFunctionDefinition_2_factory(Parser yyp) { return new GlobalFunctionDefinition_2(yyp); } | ||
10875 | public static object IncrementDecrementExpression_7_factory(Parser yyp) { return new IncrementDecrementExpression_7(yyp); } | ||
10876 | public static object IncrementDecrementExpression_8_factory(Parser yyp) { return new IncrementDecrementExpression_8(yyp); } | ||
10877 | public static object Assignment_1_factory(Parser yyp) { return new Assignment_1(yyp); } | ||
10878 | public static object Event_21_factory(Parser yyp) { return new Event_21(yyp); } | ||
10879 | public static object Event_22_factory(Parser yyp) { return new Event_22(yyp); } | ||
10880 | public static object CompoundStatement_factory(Parser yyp) { return new CompoundStatement(yyp); } | ||
10881 | public static object RotationConstant_1_factory(Parser yyp) { return new RotationConstant_1(yyp); } | ||
10882 | public static object SimpleAssignment_3_factory(Parser yyp) { return new SimpleAssignment_3(yyp); } | ||
10883 | public static object SimpleAssignment_4_factory(Parser yyp) { return new SimpleAssignment_4(yyp); } | ||
10884 | public static object Statement_1_factory(Parser yyp) { return new Statement_1(yyp); } | ||
10885 | public static object Statement_2_factory(Parser yyp) { return new Statement_2(yyp); } | ||
10886 | public static object Statement_3_factory(Parser yyp) { return new Statement_3(yyp); } | ||
10887 | public static object Statement_4_factory(Parser yyp) { return new Statement_4(yyp); } | ||
10888 | public static object Statement_5_factory(Parser yyp) { return new Statement_5(yyp); } | ||
10889 | public static object Statement_6_factory(Parser yyp) { return new Statement_6(yyp); } | ||
10890 | public static object Statement_7_factory(Parser yyp) { return new Statement_7(yyp); } | ||
10891 | public static object Statement_8_factory(Parser yyp) { return new Statement_8(yyp); } | ||
10892 | public static object Statement_9_factory(Parser yyp) { return new Statement_9(yyp); } | ||
10893 | public static object ExpressionArgument_factory(Parser yyp) { return new ExpressionArgument(yyp); } | ||
10894 | public static object GlobalFunctionDefinition_factory(Parser yyp) { return new GlobalFunctionDefinition(yyp); } | ||
10895 | public static object State_1_factory(Parser yyp) { return new State_1(yyp); } | ||
10896 | public static object DoWhileStatement_factory(Parser yyp) { return new DoWhileStatement(yyp); } | ||
10897 | public static object ParenthesisExpression_1_factory(Parser yyp) { return new ParenthesisExpression_1(yyp); } | ||
10898 | public static object ParenthesisExpression_2_factory(Parser yyp) { return new ParenthesisExpression_2(yyp); } | ||
10899 | public static object StateBody_factory(Parser yyp) { return new StateBody(yyp); } | ||
10900 | public static object Event_7_factory(Parser yyp) { return new Event_7(yyp); } | ||
10901 | public static object Event_8_factory(Parser yyp) { return new Event_8(yyp); } | ||
10902 | public static object IncrementDecrementExpression_1_factory(Parser yyp) { return new IncrementDecrementExpression_1(yyp); } | ||
10903 | public static object IncrementDecrementExpression_3_factory(Parser yyp) { return new IncrementDecrementExpression_3(yyp); } | ||
10904 | public static object IncrementDecrementExpression_4_factory(Parser yyp) { return new IncrementDecrementExpression_4(yyp); } | ||
10905 | public static object IncrementDecrementExpression_6_factory(Parser yyp) { return new IncrementDecrementExpression_6(yyp); } | ||
10906 | public static object StateEvent_factory(Parser yyp) { return new StateEvent(yyp); } | ||
10907 | public static object Event_20_factory(Parser yyp) { return new Event_20(yyp); } | ||
10908 | public static object Event_23_factory(Parser yyp) { return new Event_23(yyp); } | ||
10909 | public static object Event_24_factory(Parser yyp) { return new Event_24(yyp); } | ||
10910 | public static object Event_26_factory(Parser yyp) { return new Event_26(yyp); } | ||
10911 | public static object SimpleAssignment_10_factory(Parser yyp) { return new SimpleAssignment_10(yyp); } | ||
10912 | public static object Event_factory(Parser yyp) { return new Event(yyp); } | ||
10913 | public static object SimpleAssignment_14_factory(Parser yyp) { return new SimpleAssignment_14(yyp); } | ||
10914 | public static object SimpleAssignment_16_factory(Parser yyp) { return new SimpleAssignment_16(yyp); } | ||
10915 | public static object Statement_10_factory(Parser yyp) { return new Statement_10(yyp); } | ||
10916 | public static object Statement_11_factory(Parser yyp) { return new Statement_11(yyp); } | ||
10917 | public static object SimpleAssignment_factory(Parser yyp) { return new SimpleAssignment(yyp); } | ||
10918 | public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); } | ||
10919 | public static object Event_15_factory(Parser yyp) { return new Event_15(yyp); } | ||
10920 | public static object Event_16_factory(Parser yyp) { return new Event_16(yyp); } | ||
10921 | public static object Event_32_factory(Parser yyp) { return new Event_32(yyp); } | ||
10922 | public static object SimpleAssignment_20_factory(Parser yyp) { return new SimpleAssignment_20(yyp); } | ||
10923 | public static object SimpleAssignment_24_factory(Parser yyp) { return new SimpleAssignment_24(yyp); } | ||
10924 | public static object SimpleAssignment_1_factory(Parser yyp) { return new SimpleAssignment_1(yyp); } | ||
10925 | public static object SimpleAssignment_2_factory(Parser yyp) { return new SimpleAssignment_2(yyp); } | ||
10926 | public static object BinaryExpression_factory(Parser yyp) { return new BinaryExpression(yyp); } | ||
10927 | public static object FunctionCallExpression_factory(Parser yyp) { return new FunctionCallExpression(yyp); } | ||
10928 | public static object SimpleAssignment_6_factory(Parser yyp) { return new SimpleAssignment_6(yyp); } | ||
10929 | public static object StateBody_1_factory(Parser yyp) { return new StateBody_1(yyp); } | ||
10930 | public static object StatementList_2_factory(Parser yyp) { return new StatementList_2(yyp); } | ||
10931 | public static object SimpleAssignment_9_factory(Parser yyp) { return new SimpleAssignment_9(yyp); } | ||
10932 | public static object BinaryExpression_15_factory(Parser yyp) { return new BinaryExpression_15(yyp); } | ||
10933 | public static object BinaryExpression_16_factory(Parser yyp) { return new BinaryExpression_16(yyp); } | ||
10934 | public static object BinaryExpression_17_factory(Parser yyp) { return new BinaryExpression_17(yyp); } | ||
10935 | public static object BinaryExpression_18_factory(Parser yyp) { return new BinaryExpression_18(yyp); } | ||
10936 | public static object Event_25_factory(Parser yyp) { return new Event_25(yyp); } | ||
10937 | public static object Event_9_factory(Parser yyp) { return new Event_9(yyp); } | ||
10938 | public static object Statement_factory(Parser yyp) { return new Statement(yyp); } | ||
10939 | public static object JumpStatement_factory(Parser yyp) { return new JumpStatement(yyp); } | ||
10940 | public static object BinaryExpression_11_factory(Parser yyp) { return new BinaryExpression_11(yyp); } | ||
10941 | public static object BinaryExpression_12_factory(Parser yyp) { return new BinaryExpression_12(yyp); } | ||
10942 | public static object BinaryExpression_13_factory(Parser yyp) { return new BinaryExpression_13(yyp); } | ||
10943 | public static object BinaryExpression_14_factory(Parser yyp) { return new BinaryExpression_14(yyp); } | ||
10944 | public static object BinaryExpression_6_factory(Parser yyp) { return new BinaryExpression_6(yyp); } | ||
10945 | public static object BinaryExpression_7_factory(Parser yyp) { return new BinaryExpression_7(yyp); } | ||
10946 | public static object BinaryExpression_8_factory(Parser yyp) { return new BinaryExpression_8(yyp); } | ||
10947 | public static object ArgumentList_factory(Parser yyp) { return new ArgumentList(yyp); } | ||
10948 | public static object Event_10_factory(Parser yyp) { return new Event_10(yyp); } | ||
10949 | public static object ConstantExpression_1_factory(Parser yyp) { return new ConstantExpression_1(yyp); } | ||
10950 | public static object Event_12_factory(Parser yyp) { return new Event_12(yyp); } | ||
10951 | public static object Event_14_factory(Parser yyp) { return new Event_14(yyp); } | ||
10952 | public static object Event_17_factory(Parser yyp) { return new Event_17(yyp); } | ||
10953 | public static object Event_18_factory(Parser yyp) { return new Event_18(yyp); } | ||
10954 | public static object Event_19_factory(Parser yyp) { return new Event_19(yyp); } | ||
10955 | public static object BinaryExpression_10_factory(Parser yyp) { return new BinaryExpression_10(yyp); } | ||
10956 | public static object StateEvent_1_factory(Parser yyp) { return new StateEvent_1(yyp); } | ||
10957 | public static object VectorConstant_factory(Parser yyp) { return new VectorConstant(yyp); } | ||
10958 | public static object TypecastExpression_4_factory(Parser yyp) { return new TypecastExpression_4(yyp); } | ||
10959 | public static object TypecastExpression_6_factory(Parser yyp) { return new TypecastExpression_6(yyp); } | ||
10960 | public static object TypecastExpression_7_factory(Parser yyp) { return new TypecastExpression_7(yyp); } | ||
10961 | public static object FunctionCall_factory(Parser yyp) { return new FunctionCall(yyp); } | ||
10962 | public static object Event_27_factory(Parser yyp) { return new Event_27(yyp); } | ||
10963 | public static object Event_28_factory(Parser yyp) { return new Event_28(yyp); } | ||
10964 | public static object Event_29_factory(Parser yyp) { return new Event_29(yyp); } | ||
10965 | public static object ListConstant_1_factory(Parser yyp) { return new ListConstant_1(yyp); } | ||
10966 | public static object Event_6_factory(Parser yyp) { return new Event_6(yyp); } | ||
10967 | public static object Declaration_1_factory(Parser yyp) { return new Declaration_1(yyp); } | ||
10968 | public static object SimpleAssignment_7_factory(Parser yyp) { return new SimpleAssignment_7(yyp); } | ||
10969 | public static object ForLoop_factory(Parser yyp) { return new ForLoop(yyp); } | ||
10970 | public static object Event_30_factory(Parser yyp) { return new Event_30(yyp); } | ||
10971 | public static object Event_31_factory(Parser yyp) { return new Event_31(yyp); } | ||
10972 | public static object Event_33_factory(Parser yyp) { return new Event_33(yyp); } | ||
10973 | public static object GlobalFunctionDefinition_1_factory(Parser yyp) { return new GlobalFunctionDefinition_1(yyp); } | ||
10974 | public static object JumpLabel_1_factory(Parser yyp) { return new JumpLabel_1(yyp); } | ||
10975 | public static object IfStatement_factory(Parser yyp) { return new IfStatement(yyp); } | ||
10976 | public static object ForLoopStatement_1_factory(Parser yyp) { return new ForLoopStatement_1(yyp); } | ||
10977 | public static object ForLoopStatement_2_factory(Parser yyp) { return new ForLoopStatement_2(yyp); } | ||
10978 | public static object ForLoopStatement_3_factory(Parser yyp) { return new ForLoopStatement_3(yyp); } | ||
10979 | public static object ArgumentDeclarationList_4_factory(Parser yyp) { return new ArgumentDeclarationList_4(yyp); } | ||
10980 | public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); } | ||
10981 | public static object WhileStatement_factory(Parser yyp) { return new WhileStatement(yyp); } | ||
10982 | public static object ForLoop_1_factory(Parser yyp) { return new ForLoop_1(yyp); } | ||
10983 | public static object Constant_2_factory(Parser yyp) { return new Constant_2(yyp); } | ||
10984 | public static object StatementList_factory(Parser yyp) { return new StatementList(yyp); } | ||
10985 | public static object StateBody_2_factory(Parser yyp) { return new StateBody_2(yyp); } | ||
10986 | public static object WhileStatement_2_factory(Parser yyp) { return new WhileStatement_2(yyp); } | ||
10987 | public static object IdentExpression_1_factory(Parser yyp) { return new IdentExpression_1(yyp); } | ||
10988 | public static object States_factory(Parser yyp) { return new States(yyp); } | ||
10989 | } | ||
10990 | public class LSLSyntax | ||
10991 | : Parser { | ||
10992 | public LSLSyntax | ||
10993 | ():base(new yyLSLSyntax | ||
10994 | (),new LSLTokens()) {} | ||
10995 | public LSLSyntax | ||
10996 | (YyParser syms):base(syms,new LSLTokens()) {} | ||
10997 | public LSLSyntax | ||
10998 | (YyParser syms,ErrorHandler erh):base(syms,new LSLTokens(erh)) {} | ||
10999 | |||
11000 | } | ||
11001 | } | ||