puppet 5.1.0-universal-darwin → 5.2.0-universal-darwin
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- data/lib/puppet.rb +6 -53
- data/lib/puppet/application.rb +14 -7
- data/lib/puppet/application/agent.rb +6 -2
- data/lib/puppet/application/apply.rb +6 -2
- data/lib/puppet/application/cert.rb +6 -2
- data/lib/puppet/application/describe.rb +6 -2
- data/lib/puppet/application/device.rb +40 -29
- data/lib/puppet/application/doc.rb +6 -2
- data/lib/puppet/application/filebucket.rb +6 -2
- data/lib/puppet/application/lookup.rb +6 -2
- data/lib/puppet/application/master.rb +6 -2
- data/lib/puppet/application/resource.rb +6 -2
- data/lib/puppet/face/catalog.rb +1 -1
- data/lib/puppet/face/certificate_request.rb +1 -1
- data/lib/puppet/face/certificate_revocation_list.rb +1 -1
- data/lib/puppet/face/help.rb +17 -13
- data/lib/puppet/file_serving/configuration.rb +3 -0
- data/lib/puppet/file_serving/configuration/parser.rb +2 -0
- data/lib/puppet/file_serving/mount/tasks.rb +21 -0
- data/lib/puppet/functions/epp.rb +3 -0
- data/lib/puppet/functions/lookup.rb +2 -1
- data/lib/puppet/generate/models/type/property.rb +1 -1
- data/lib/puppet/gettext/config.rb +70 -0
- data/lib/puppet/gettext/stubs.rb +11 -0
- data/lib/puppet/indirector/request.rb +4 -4
- data/lib/puppet/info_service.rb +10 -0
- data/lib/puppet/info_service/task_information_service.rb +32 -0
- data/lib/puppet/module.rb +43 -12
- data/lib/puppet/module/task.rb +90 -0
- data/lib/puppet/parser/ast/leaf.rb +1 -1
- data/lib/puppet/parser/functions/dig.rb +11 -2
- data/lib/puppet/parser/functions/epp.rb +3 -0
- data/lib/puppet/parser/functions/new.rb +8 -8
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +1 -1
- data/lib/puppet/pops/evaluator/runtime3_support.rb +1 -0
- data/lib/puppet/pops/issues.rb +11 -5
- data/lib/puppet/pops/loader/static_loader.rb +1 -1
- data/lib/puppet/pops/model/factory.rb +42 -2
- data/lib/puppet/pops/model/model_tree_dumper.rb +1 -1
- data/lib/puppet/pops/parser/egrammar.ra +30 -9
- data/lib/puppet/pops/parser/eparser.rb +1094 -1043
- data/lib/puppet/pops/patterns.rb +1 -1
- data/lib/puppet/pops/serialization/from_data_converter.rb +1 -1
- data/lib/puppet/pops/serialization/json_path.rb +1 -1
- data/lib/puppet/pops/serialization/to_data_converter.rb +12 -3
- data/lib/puppet/pops/types/p_object_type.rb +31 -3
- data/lib/puppet/pops/types/p_sem_ver_range_type.rb +3 -3
- data/lib/puppet/pops/types/p_timespan_type.rb +1 -1
- data/lib/puppet/pops/types/p_timestamp_type.rb +1 -1
- data/lib/puppet/pops/types/string_converter.rb +15 -12
- data/lib/puppet/pops/types/type_calculator.rb +1 -1
- data/lib/puppet/pops/types/type_factory.rb +7 -0
- data/lib/puppet/pops/types/type_formatter.rb +1 -1
- data/lib/puppet/pops/types/type_mismatch_describer.rb +86 -130
- data/lib/puppet/pops/types/type_parser.rb +10 -4
- data/lib/puppet/pops/types/types.rb +81 -22
- data/lib/puppet/provider/package/aix.rb +4 -4
- data/lib/puppet/provider/package/yum.rb +1 -0
- data/lib/puppet/type.rb +1 -1
- data/lib/puppet/type/mount.rb +1 -1
- data/lib/puppet/type/sshkey.rb +9 -1
- data/lib/puppet/util.rb +1 -1
- data/lib/puppet/util/command_line.rb +1 -1
- data/lib/puppet/util/log.rb +15 -10
- data/lib/puppet/util/windows/api_types.rb +9 -5
- data/lib/puppet/util/windows/process.rb +9 -1
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet.rb +1 -3
- data/lib/puppet/version.rb +1 -1
- data/locales/ja/puppet.po +9270 -0
- data/locales/puppet.pot +272 -212
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-plugin-output.txt +36 -0
- data/spec/integration/indirector/file_content/file_server_spec.rb +17 -0
- data/spec/integration/indirector/file_metadata/file_server_spec.rb +10 -0
- data/spec/integration/util/windows/process_spec.rb +45 -0
- data/spec/lib/puppet_spec/modules.rb +10 -0
- data/spec/shared_contexts/types_setup.rb +19 -4
- data/spec/spec_helper.rb +6 -7
- data/spec/unit/face/help_spec.rb +2 -2
- data/spec/unit/file_serving/configuration_spec.rb +14 -4
- data/spec/unit/file_serving/mount/modules_spec.rb +1 -1
- data/spec/unit/file_serving/mount/tasks_spec.rb +72 -0
- data/spec/unit/functions/epp_spec.rb +5 -0
- data/spec/unit/functions/regsubst_spec.rb +1 -1
- data/spec/unit/gettext_config_spec.rb +57 -0
- data/spec/unit/indirector/request_spec.rb +41 -0
- data/spec/unit/info_service_spec.rb +66 -2
- data/spec/unit/module_spec.rb +81 -1
- data/spec/unit/parser/ast/leaf_spec.rb +3 -4
- data/spec/unit/pops/evaluator/access_ops_spec.rb +5 -0
- data/spec/unit/pops/factory_spec.rb +5 -1
- data/spec/unit/pops/parser/parser_spec.rb +138 -0
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +74 -1
- data/spec/unit/pops/types/p_init_type_spec.rb +1 -1
- data/spec/unit/pops/types/p_object_type_spec.rb +217 -33
- data/spec/unit/pops/types/p_timespan_type_spec.rb +7 -0
- data/spec/unit/pops/types/p_timestamp_type_spec.rb +7 -0
- data/spec/unit/pops/types/string_converter_spec.rb +48 -11
- data/spec/unit/pops/types/type_calculator_spec.rb +37 -5
- data/spec/unit/pops/types/type_mismatch_describer_spec.rb +12 -0
- data/spec/unit/pops/types/type_parser_spec.rb +25 -0
- data/spec/unit/pops/validator/validator_spec.rb +2 -2
- data/spec/unit/provider/package/aix_spec.rb +26 -1
- data/spec/unit/provider/package/yum_spec.rb +10 -0
- data/spec/unit/task_spec.rb +102 -0
- data/spec/unit/util/log_spec.rb +32 -3
- data/spec/unit/util/windows/api_types_spec.rb +51 -0
- metadata +3476 -3450
- checksums.yaml +0 -7
@@ -22,6 +22,9 @@ function like this:
|
|
22
22
|
`epp('apache/vhost/_docroot.epp', { 'docroot' => '/var/www/html',
|
23
23
|
'virtual_docroot' => '/var/www/example' })`
|
24
24
|
|
25
|
+
This function can also accept an absolute path, which can load a template file
|
26
|
+
from anywhere on disk.
|
27
|
+
|
25
28
|
Puppet produces a syntax error if you pass more parameters than are declared in
|
26
29
|
the template's parameter tag. When passing parameters to a template that
|
27
30
|
contains a parameter tag, use the same names as the tag's declared parameters.
|
@@ -221,7 +221,7 @@ An exception is raised when no format was able to parse the given string.
|
|
221
221
|
|
222
222
|
```puppet
|
223
223
|
function Timespan.new(
|
224
|
-
String $string, Variant[String[2],Array[String[2]
|
224
|
+
String $string, Variant[String[2],Array[String[2], 1]] $format = <default format>)
|
225
225
|
)
|
226
226
|
```
|
227
227
|
|
@@ -231,7 +231,7 @@ the arguments may also be passed as a `Hash`:
|
|
231
231
|
function Timespan.new(
|
232
232
|
Struct[{
|
233
233
|
string => String[1],
|
234
|
-
Optional[format] => Variant[String[2],Array[String[2]
|
234
|
+
Optional[format] => Variant[String[2],Array[String[2], 1]]
|
235
235
|
}] $hash
|
236
236
|
)
|
237
237
|
```
|
@@ -316,7 +316,7 @@ An exception is raised when no format was able to parse the given string.
|
|
316
316
|
```puppet
|
317
317
|
function Timestamp.new(
|
318
318
|
String $string,
|
319
|
-
Variant[String[2],Array[String[2]
|
319
|
+
Variant[String[2],Array[String[2], 1]] $format = <default format>,
|
320
320
|
String $timezone = default)
|
321
321
|
)
|
322
322
|
```
|
@@ -327,7 +327,7 @@ the arguments may also be passed as a `Hash`:
|
|
327
327
|
function Timestamp.new(
|
328
328
|
Struct[{
|
329
329
|
string => String[1],
|
330
|
-
Optional[format] => Variant[String[2],Array[String[2]
|
330
|
+
Optional[format] => Variant[String[2],Array[String[2], 1]],
|
331
331
|
Optional[timezone] => String[1]
|
332
332
|
}] $hash
|
333
333
|
)
|
@@ -889,8 +889,8 @@ The signatures are:
|
|
889
889
|
```puppet
|
890
890
|
type SemVerRangeString = String[1]
|
891
891
|
type SemVerRangeHash = Struct[{
|
892
|
-
min => Variant[
|
893
|
-
Optional[max] => Variant[
|
892
|
+
min => Variant[Default, SemVer],
|
893
|
+
Optional[max] => Variant[Default, SemVer],
|
894
894
|
Optional[exclude_max] => Boolean
|
895
895
|
}]
|
896
896
|
|
@@ -899,8 +899,8 @@ function SemVerRange.new(
|
|
899
899
|
)
|
900
900
|
|
901
901
|
function SemVerRange.new(
|
902
|
-
Variant[
|
903
|
-
Variant[
|
902
|
+
Variant[Default,SemVer] $min
|
903
|
+
Variant[Default,SemVer] $max
|
904
904
|
Optional[Boolean] $exclude_max = undef
|
905
905
|
)
|
906
906
|
|
@@ -510,6 +510,7 @@ module Runtime3Support
|
|
510
510
|
p[Issues::RT_NO_STORECONFIGS] = Puppet[:storeconfigs] ? :ignore : :warning
|
511
511
|
p[Issues::CLASS_NOT_VIRTUALIZABLE] = Puppet[:strict] == :off ? :warning : Puppet[:strict]
|
512
512
|
p[Issues::NUMERIC_COERCION] = Puppet[:strict] == :off ? :ignore : Puppet[:strict]
|
513
|
+
p[Issues::SERIALIZATION_DEFAULT_CONVERTED_TO_STRING] = Puppet[:strict] == :off ? :warning : Puppet[:strict]
|
513
514
|
p[Issues::SERIALIZATION_UNKNOWN_CONVERTED_TO_STRING] = Puppet[:strict] == :off ? :warning : Puppet[:strict]
|
514
515
|
p[Issues::SERIALIZATION_UNKNOWN_KEY_CONVERTED_TO_STRING] = Puppet[:strict] == :off ? :warning : Puppet[:strict]
|
515
516
|
end
|
data/lib/puppet/pops/issues.rb
CHANGED
@@ -441,8 +441,7 @@ module Issues
|
|
441
441
|
end
|
442
442
|
|
443
443
|
BAD_STRING_SLICE_KEY_TYPE = issue :BAD_STRING_SLICE_KEY_TYPE, :left_value, :actual_type do
|
444
|
-
|
445
|
-
_("A substring operation does not accept %{actual_type_text} as a character index. Expected an Integer") % { actual_type_text: actual_type_text }
|
444
|
+
_("A substring operation does not accept %{label_article} %{actual_type} as a character index. Expected an Integer") % { label_article: label.article(actual_type), actual_type: actual_type }
|
446
445
|
end
|
447
446
|
|
448
447
|
BAD_NOT_UNDEF_SLICE_TYPE = issue :BAD_NOT_UNDEF_SLICE_TYPE, :base_type, :actual do
|
@@ -509,7 +508,7 @@ module Issues
|
|
509
508
|
end
|
510
509
|
|
511
510
|
NUMERIC_COERCION = issue :NUMERIC_COERCION, :before, :after do
|
512
|
-
"The string '
|
511
|
+
_("The string '%{before}' was automatically coerced to the numerical value %{after}") % { before: before, after: after }
|
513
512
|
end
|
514
513
|
|
515
514
|
UNKNOWN_FUNCTION = issue :UNKNOWN_FUNCTION, :name do
|
@@ -751,8 +750,11 @@ module Issues
|
|
751
750
|
end
|
752
751
|
|
753
752
|
NUMERIC_OVERFLOW = hard_issue :NUMERIC_OVERFLOW, :value do
|
754
|
-
|
755
|
-
|
753
|
+
if value > 0
|
754
|
+
_("%{expression} resulted in a value outside of Puppet Integer max range, got '%{value}'") % { expression: label.a_an_uc(semantic), value: ("%#+x" % value) }
|
755
|
+
else
|
756
|
+
_("%{expression} resulted in a value outside of Puppet Integer min range, got '%{value}'") % { expression: label.a_an_uc(semantic), value: ("%#+x" % value) }
|
757
|
+
end
|
756
758
|
end
|
757
759
|
|
758
760
|
HIERA_UNSUPPORTED_VERSION = hard_issue :HIERA_UNSUPPORTED_VERSION, :version do
|
@@ -843,6 +845,10 @@ module Issues
|
|
843
845
|
_('Endless recursion detected when attempting to serialize value of class %{type_name}') % { :type_name => type_name }
|
844
846
|
end
|
845
847
|
|
848
|
+
SERIALIZATION_DEFAULT_CONVERTED_TO_STRING = issue :SERIALIZATION_DEFAULT_CONVERTED_TO_STRING, :path, :klass, :value do
|
849
|
+
_("%{path} contains the special value default. It will be converted to the String 'default'") % { path: path }
|
850
|
+
end
|
851
|
+
|
846
852
|
SERIALIZATION_UNKNOWN_CONVERTED_TO_STRING = issue :SERIALIZATION_UNKNOWN_CONVERTED_TO_STRING, :path, :klass, :value do
|
847
853
|
_("%{path} contains %{klass} value. It will be converted to the String '%{value}'") % { path: path, klass: label.a_an(klass), value: value }
|
848
854
|
end
|
@@ -64,7 +64,7 @@ class StaticLoader < Loader
|
|
64
64
|
BUILTIN_ALIASES = {
|
65
65
|
'Data' => 'Variant[ScalarData,Undef,Hash[String,Data],Array[Data]]',
|
66
66
|
'RichDataKey' => 'Variant[String,Numeric]',
|
67
|
-
'RichData' => 'Variant[Scalar,SemVerRange,Binary,Sensitive,Type,TypeSet,Undef,Hash[RichDataKey,RichData],Array[RichData]]',
|
67
|
+
'RichData' => 'Variant[Scalar,SemVerRange,Binary,Sensitive,Type,TypeSet,Undef,Default,Hash[RichDataKey,RichData],Array[RichData]]',
|
68
68
|
|
69
69
|
# Backward compatible aliases.
|
70
70
|
'Puppet::LookupKey' => 'RichDataKey',
|
@@ -431,6 +431,32 @@ class Factory
|
|
431
431
|
end
|
432
432
|
|
433
433
|
def build_TypeAlias(o, name, type_expr)
|
434
|
+
if type_expr.model_class <= KeyedEntry
|
435
|
+
# KeyedEntry is used for the form:
|
436
|
+
#
|
437
|
+
# type Foo = Bar { ... }
|
438
|
+
#
|
439
|
+
# The entry contains Bar => { ... } and must be transformed into:
|
440
|
+
#
|
441
|
+
# Object[{parent => Bar, ... }]
|
442
|
+
#
|
443
|
+
parent = type_expr['key']
|
444
|
+
hash = type_expr['value']
|
445
|
+
unless parent['cased_value'] == 'Object'
|
446
|
+
hash['entries'] << Factory.KEY_ENTRY(Factory.QNAME('parent'), parent)
|
447
|
+
end
|
448
|
+
type_expr = Factory.QREF('Object').access([hash])
|
449
|
+
elsif type_expr.model_class <= LiteralHash
|
450
|
+
# LiteralHash is used for the form:
|
451
|
+
#
|
452
|
+
# type Foo = { ... }
|
453
|
+
#
|
454
|
+
# The hash must be transformed into:
|
455
|
+
#
|
456
|
+
# Object[{ ... }]
|
457
|
+
#
|
458
|
+
type_expr = Factory.QREF('Object').access([type_expr])
|
459
|
+
end
|
434
460
|
@init_hash['type_expr'] = type_expr
|
435
461
|
@init_hash[KEY_NAME] = name
|
436
462
|
end
|
@@ -845,8 +871,22 @@ class Factory
|
|
845
871
|
end
|
846
872
|
|
847
873
|
# Builds a BlockExpression if args size > 1, else the single expression/value in args
|
848
|
-
def self.block_or_expression(args)
|
849
|
-
args.size > 1
|
874
|
+
def self.block_or_expression(args, left_brace = nil, right_brace = nil)
|
875
|
+
if args.size > 1
|
876
|
+
block_expr = new(BlockExpression, args)
|
877
|
+
|
878
|
+
# If given a left and right brace position, use those
|
879
|
+
# otherwise use the first and last element of the block
|
880
|
+
if !left_brace.nil? && !right_brace.nil?
|
881
|
+
block_expr.record_position(args.first[KEY_LOCATOR], left_brace, right_brace)
|
882
|
+
else
|
883
|
+
block_expr.record_position(args.first[KEY_LOCATOR], args.first, args.last)
|
884
|
+
end
|
885
|
+
|
886
|
+
block_expr
|
887
|
+
else
|
888
|
+
args[0]
|
889
|
+
end
|
850
890
|
end
|
851
891
|
|
852
892
|
def self.HOSTCLASS(name, parameters, parent, body)
|
@@ -344,7 +344,7 @@ if_expression
|
|
344
344
|
# Produces Model::IfExpression
|
345
345
|
if_part
|
346
346
|
: expression LBRACE statements RBRACE else {
|
347
|
-
result = Factory.IF(val[0], Factory.block_or_expression(val[2]), val[4])
|
347
|
+
result = Factory.IF(val[0], Factory.block_or_expression(val[2], val[1], val[3]), val[4])
|
348
348
|
loc(result, val[0], (val[4] ? val[4] : val[3]))
|
349
349
|
}
|
350
350
|
| expression LBRACE RBRACE else {
|
@@ -360,8 +360,7 @@ if_expression
|
|
360
360
|
loc(result, val[0], val[1])
|
361
361
|
}
|
362
362
|
| ELSE LBRACE statements RBRACE {
|
363
|
-
result = Factory.block_or_expression(val[2])
|
364
|
-
loc result, val[0], val[3]
|
363
|
+
result = Factory.block_or_expression(val[2], val[1], val[3])
|
365
364
|
}
|
366
365
|
| ELSE LBRACE RBRACE {
|
367
366
|
result = nil # don't think a nop is needed here either
|
@@ -371,7 +370,7 @@ if_expression
|
|
371
370
|
#
|
372
371
|
unless_expression
|
373
372
|
: UNLESS expression LBRACE statements RBRACE unless_else {
|
374
|
-
result = Factory.UNLESS(val[1], Factory.block_or_expression(val[3]), val[5])
|
373
|
+
result = Factory.UNLESS(val[1], Factory.block_or_expression(val[3], val[2], val[4]), val[5])
|
375
374
|
loc result, val[0], val[4]
|
376
375
|
}
|
377
376
|
| UNLESS expression LBRACE RBRACE unless_else {
|
@@ -385,8 +384,7 @@ unless_expression
|
|
385
384
|
unless_else
|
386
385
|
: # nothing
|
387
386
|
| ELSE LBRACE statements RBRACE {
|
388
|
-
result = Factory.block_or_expression(val[2])
|
389
|
-
loc result, val[0], val[3]
|
387
|
+
result = Factory.block_or_expression(val[2], val[1], val[3])
|
390
388
|
}
|
391
389
|
| ELSE LBRACE RBRACE {
|
392
390
|
result = nil # don't think a nop is needed here either
|
@@ -696,11 +694,34 @@ parameter_type
|
|
696
694
|
|
697
695
|
#--TYPE ALIAS
|
698
696
|
type_alias
|
699
|
-
:
|
700
|
-
definition = Factory.TYPE_ASSIGNMENT(val[
|
697
|
+
: type_alias_lhs EQUALS type hash {
|
698
|
+
definition = Factory.TYPE_ASSIGNMENT(val[0], Factory.KEY_ENTRY(val[2], val[3]))
|
701
699
|
loc(definition, val[0], val[3])
|
702
700
|
result = add_definition(definition)
|
703
701
|
}
|
702
|
+
| type_alias_lhs EQUALS type LBRACK expressions RBRACK {
|
703
|
+
definition = Factory.TYPE_ASSIGNMENT(val[0], val[2].access(val[4]))
|
704
|
+
loc(definition, val[0], val[5])
|
705
|
+
result = add_definition(definition)
|
706
|
+
}
|
707
|
+
| type_alias_lhs EQUALS type {
|
708
|
+
definition = Factory.TYPE_ASSIGNMENT(val[0], val[2])
|
709
|
+
loc(definition, val[0], val[2])
|
710
|
+
result = add_definition(definition)
|
711
|
+
}
|
712
|
+
| type_alias_lhs EQUALS hash {
|
713
|
+
definition = Factory.TYPE_ASSIGNMENT(val[0], val[2])
|
714
|
+
loc(definition, val[0], val[2])
|
715
|
+
result = add_definition(definition)
|
716
|
+
}
|
717
|
+
| type_alias_lhs EQUALS array {
|
718
|
+
definition = Factory.TYPE_ASSIGNMENT(val[0], val[2])
|
719
|
+
loc(definition, val[0], val[4])
|
720
|
+
result = add_definition(definition)
|
721
|
+
}
|
722
|
+
|
723
|
+
type_alias_lhs
|
724
|
+
: TYPE parameter_type { result = val[1] }
|
704
725
|
|
705
726
|
#--TYPE definition
|
706
727
|
# TODO: Uses the optional_statements rule temporarily since the actual body awaits final spec on methods and attributes.
|
@@ -814,7 +835,7 @@ epp_parameters_list
|
|
814
835
|
epp_render_expression
|
815
836
|
: RENDER_STRING { result = Factory.RENDER_STRING(val[0][:value]); loc result, val[0] }
|
816
837
|
| RENDER_EXPR expression epp_end { result = Factory.RENDER_EXPR(val[1]); loc result, val[0], val[2] }
|
817
|
-
| RENDER_EXPR LBRACE statements RBRACE epp_end { result = Factory.RENDER_EXPR(Factory.block_or_expression(val[2])); loc result, val[0], val[4] }
|
838
|
+
| RENDER_EXPR LBRACE statements RBRACE epp_end { result = Factory.RENDER_EXPR(Factory.block_or_expression(val[2], val[1], val[3])); loc result, val[0], val[4] }
|
818
839
|
|
819
840
|
epp_end
|
820
841
|
: EPP_END
|
@@ -20,7 +20,7 @@ module Puppet
|
|
20
20
|
module Parser
|
21
21
|
class Parser < Racc::Parser
|
22
22
|
|
23
|
-
module_eval(<<'...end egrammar.ra/module_eval...', 'egrammar.ra',
|
23
|
+
module_eval(<<'...end egrammar.ra/module_eval...', 'egrammar.ra', 899)
|
24
24
|
|
25
25
|
# Make emacs happy
|
26
26
|
# Local Variables:
|
@@ -30,298 +30,297 @@ module_eval(<<'...end egrammar.ra/module_eval...', 'egrammar.ra', 878)
|
|
30
30
|
##### State transition tables begin ###
|
31
31
|
|
32
32
|
clist = [
|
33
|
-
'63,
|
34
|
-
'
|
35
|
-
'
|
36
|
-
'
|
37
|
-
'
|
38
|
-
'
|
39
|
-
'
|
40
|
-
'
|
41
|
-
'
|
42
|
-
'
|
43
|
-
'
|
44
|
-
'
|
45
|
-
'
|
46
|
-
'
|
47
|
-
'
|
48
|
-
'
|
49
|
-
'
|
50
|
-
'
|
51
|
-
'
|
52
|
-
'
|
53
|
-
'
|
54
|
-
'
|
55
|
-
'
|
56
|
-
'
|
57
|
-
'
|
58
|
-
'
|
59
|
-
'
|
60
|
-
'
|
61
|
-
'
|
62
|
-
'52,
|
63
|
-
'18,,,,
|
64
|
-
'58,63,
|
65
|
-
'52,
|
66
|
-
',,
|
67
|
-
'63,
|
68
|
-
',
|
69
|
-
'53,,,,43,
|
70
|
-
'
|
71
|
-
'
|
72
|
-
'56,,,58,63,
|
73
|
-
'
|
74
|
-
'
|
75
|
-
',,,
|
76
|
-
'
|
77
|
-
'60,49,
|
78
|
-
'
|
79
|
-
'
|
80
|
-
'
|
81
|
-
'10,11,,,62,19,,,46,,,17,18,,,,,,,
|
82
|
-
'
|
83
|
-
'
|
84
|
-
'
|
85
|
-
'
|
86
|
-
'45,10,11,,,62,19,,,46,,,17,18,,,,,,,
|
87
|
-
'
|
88
|
-
'
|
89
|
-
'
|
90
|
-
'
|
91
|
-
'19,,,46,,,17,18,,,,,,,
|
92
|
-
'
|
93
|
-
'44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,
|
94
|
-
'78,,,,60,49,
|
95
|
-
'
|
96
|
-
'
|
97
|
-
'
|
98
|
-
'
|
99
|
-
'56,,,58,63,
|
100
|
-
',59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,
|
101
|
-
',
|
102
|
-
'20,,,,,,52,,55,,
|
103
|
-
',,,,
|
104
|
-
',
|
105
|
-
',,62,19,,,46,,,17,18,,,,,,,
|
106
|
-
'56,,,58,63,
|
107
|
-
',59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,
|
108
|
-
',
|
109
|
-
'20,,,,,,52,,55,,
|
110
|
-
',,,,
|
111
|
-
',
|
112
|
-
',,62,19,,,46,,,17,18,,,,,,,
|
113
|
-
'56,,,58,63,
|
114
|
-
'
|
115
|
-
'
|
116
|
-
'
|
117
|
-
',54,45,,,,,62,19,,,46,,,17,18,,,,,,,
|
118
|
-
'49,
|
119
|
-
'55,,
|
120
|
-
',,,43,
|
121
|
-
',,,,,,,21,20,,,,,,52,,55,,
|
122
|
-
'18,,,,,,,
|
123
|
-
',61,
|
124
|
-
',,,,62,19,,,46,,,17,18,,,,,,,
|
125
|
-
'
|
126
|
-
'
|
127
|
-
',
|
128
|
-
'20,,,,,,52,,55,,
|
129
|
-
',
|
130
|
-
'
|
131
|
-
'19,,,46,,,17,18,,,,,,,
|
132
|
-
',58,63,
|
133
|
-
'44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,
|
134
|
-
',,,60,49,
|
135
|
-
',,52,,55,,
|
136
|
-
',,,53,,,,43,
|
137
|
-
',,,,,,,,,,,,,21,20,,,,,,52,,55,,
|
138
|
-
'46,,,17,18,,,,,,,
|
139
|
-
'
|
140
|
-
',54,45,,,,,62,19,,,46,,,17,18,,,,,,,
|
141
|
-
'49,
|
142
|
-
'55,,
|
143
|
-
',,,43,
|
144
|
-
',,,,,,,21,20,,,,,,52,,55,,
|
145
|
-
'18,,,,,,,
|
146
|
-
',61,
|
147
|
-
',,,,62,19,,,46,,,17,18,,,,,,,
|
148
|
-
'
|
149
|
-
'
|
150
|
-
',
|
151
|
-
'20,,,,,,52,,55,,
|
152
|
-
',
|
153
|
-
'
|
154
|
-
'19,,,46,,,17,18,,,,,,,
|
155
|
-
',58,63,
|
156
|
-
'44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,
|
157
|
-
',,,60,49,
|
158
|
-
',,52,,55,,
|
159
|
-
',,,53,,,
|
160
|
-
',,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,
|
161
|
-
',,46,,,17,18,,,,,,,
|
162
|
-
'63,
|
163
|
-
'47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,
|
164
|
-
',60,49,
|
165
|
-
'52,,55,,
|
166
|
-
',53,,,,43,
|
167
|
-
',,,,,,,,,,,21,20,,,,,,52,,55,,
|
168
|
-
',,17,18,,,,,,,
|
169
|
-
'
|
170
|
-
',54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,
|
171
|
-
',,60,49,
|
172
|
-
',,,,52,,55,,
|
173
|
-
'
|
174
|
-
',,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,
|
175
|
-
'19,,,46,,,17,18,,,,,,,
|
176
|
-
',58,63,
|
177
|
-
',59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,
|
178
|
-
',
|
179
|
-
',,,,,,,,,,,21,20,,,,,,52,,55,,
|
180
|
-
',,17,18,,,,,,,
|
181
|
-
'
|
182
|
-
'45,,,,,62,19,,,46,,,17,18,,,,,,,
|
183
|
-
'
|
184
|
-
',
|
185
|
-
'43,
|
186
|
-
',,,,21,20,,,,,,52,,55,,
|
187
|
-
',,,,,,
|
188
|
-
'
|
189
|
-
',,62,19,,,46,,,17,18,,,,,,,
|
190
|
-
'56,,,58,63,
|
191
|
-
',59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,
|
192
|
-
',
|
193
|
-
'20,,,,,,52,,55,,
|
194
|
-
',
|
195
|
-
'
|
196
|
-
'19,,,46,,,17,18,,,,,,,
|
197
|
-
'
|
198
|
-
'44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,
|
199
|
-
'78,,,,60,49,
|
200
|
-
'20,,,,,,52,,55,,
|
201
|
-
'
|
202
|
-
',69
|
203
|
-
'
|
204
|
-
'
|
205
|
-
'
|
206
|
-
',
|
207
|
-
'20,,,,,,52,,55,,
|
208
|
-
'
|
209
|
-
'
|
210
|
-
',54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,
|
211
|
-
'
|
212
|
-
'21,20,,,,,,52,,55,,
|
213
|
-
',,,,,,
|
214
|
-
'
|
215
|
-
'
|
216
|
-
'
|
217
|
-
',
|
218
|
-
'
|
219
|
-
'
|
220
|
-
'
|
221
|
-
'
|
222
|
-
'
|
223
|
-
'
|
224
|
-
',
|
225
|
-
'
|
226
|
-
'
|
227
|
-
'
|
228
|
-
'
|
229
|
-
'
|
230
|
-
'
|
231
|
-
'
|
232
|
-
'
|
233
|
-
'
|
234
|
-
',,,,,
|
235
|
-
'
|
236
|
-
'
|
237
|
-
'
|
238
|
-
'
|
239
|
-
'
|
240
|
-
'
|
241
|
-
'
|
242
|
-
'
|
243
|
-
'
|
244
|
-
'
|
245
|
-
'
|
246
|
-
'
|
247
|
-
'
|
248
|
-
'
|
249
|
-
'
|
250
|
-
'
|
251
|
-
'
|
252
|
-
'
|
253
|
-
'
|
254
|
-
'
|
255
|
-
'
|
256
|
-
'
|
257
|
-
'
|
258
|
-
'
|
259
|
-
'
|
260
|
-
'
|
261
|
-
'
|
262
|
-
'
|
263
|
-
'
|
264
|
-
'
|
265
|
-
'
|
266
|
-
'
|
267
|
-
'
|
268
|
-
'
|
269
|
-
'
|
270
|
-
'
|
271
|
-
'
|
272
|
-
'
|
273
|
-
'
|
274
|
-
'
|
275
|
-
'
|
276
|
-
'
|
277
|
-
'
|
278
|
-
',116
|
279
|
-
'
|
280
|
-
'
|
281
|
-
'
|
282
|
-
'
|
283
|
-
'
|
284
|
-
'
|
285
|
-
'
|
286
|
-
'
|
287
|
-
'
|
288
|
-
'
|
289
|
-
'
|
290
|
-
'
|
291
|
-
'
|
292
|
-
'105,
|
293
|
-
'
|
294
|
-
',,,
|
295
|
-
'
|
296
|
-
'98,
|
297
|
-
',,,,,,,,,,,,,,
|
298
|
-
'
|
299
|
-
'
|
300
|
-
'
|
301
|
-
'98,
|
302
|
-
',,,,,,,,,,,,,,
|
303
|
-
'
|
304
|
-
'
|
305
|
-
'
|
306
|
-
'
|
307
|
-
',,,,,
|
308
|
-
'
|
309
|
-
'
|
310
|
-
'
|
311
|
-
'
|
312
|
-
',,,
|
313
|
-
'349,,
|
314
|
-
',,,,,,,
|
315
|
-
',
|
316
|
-
',
|
317
|
-
'
|
318
|
-
'
|
319
|
-
'
|
320
|
-
'356,
|
321
|
-
'
|
322
|
-
'
|
323
|
-
|
324
|
-
racc_action_table = arr = ::Array.new(10028, nil)
|
33
|
+
'63,75,291,-140,61,69,388,70,85,86,87,69,112,70,-268,294,315,279,163',
|
34
|
+
'316,291,389,-277,292,21,20,114,338,117,-282,111,52,113,55,81,65,12,284',
|
35
|
+
'59,44,47,292,54,45,10,11,-140,280,62,19,258,164,46,116,294,17,18,-268',
|
36
|
+
'88,90,89,91,127,80,127,-277,124,84,124,53,339,120,-282,43,76,93,78,79',
|
37
|
+
'77,-179,-179,60,49,66,67,56,370,92,58,63,75,68,259,61,69,291,70,68,126',
|
38
|
+
'146,126,112,123,-280,123,291,442,408,294,70,125,441,125,21,20,114,292',
|
39
|
+
'117,294,111,52,113,55,147,65,12,292,59,44,47,82,54,45,10,11,112,155',
|
40
|
+
'62,19,441,328,46,116,168,17,18,-280,190,458,114,192,117,80,111,454,113',
|
41
|
+
'453,127,53,372,195,124,43,76,93,78,79,-267,291,84,60,49,66,67,56,260',
|
42
|
+
'116,58,63,75,68,294,61,69,140,70,454,291,453,292,92,94,95,126,92,127',
|
43
|
+
'140,123,93,124,294,273,21,20,274,125,140,143,292,52,-267,55,275,65,12',
|
44
|
+
'146,59,44,47,143,54,45,10,11,112,278,62,19,282,143,46,126,497,17,18',
|
45
|
+
'123,306,441,114,307,117,80,111,125,113,155,127,53,313,127,124,43,76',
|
46
|
+
'124,78,79,129,130,313,60,49,66,67,56,317,116,58,63,75,68,503,61,69,84',
|
47
|
+
'70,441,-179,-179,129,130,94,95,126,92,127,126,123,93,124,123,92,21,20',
|
48
|
+
'92,125,165,75,125,52,166,55,92,65,12,336,59,44,47,155,54,45,10,11,112',
|
49
|
+
'344,62,19,-180,-180,46,126,362,17,18,123,-181,-181,114,363,117,80,111',
|
50
|
+
'125,113,365,127,53,369,127,124,43,76,124,78,79,-183,-183,374,60,49,66',
|
51
|
+
'67,56,376,116,58,63,75,68,379,61,69,381,70,99,98,271,270,294,94,95,126',
|
52
|
+
'384,127,126,123,93,124,123,385,21,20,291,125,271,270,125,52,397,55,398',
|
53
|
+
'65,132,399,59,44,47,400,54,45,403,100,112,282,62,19,271,270,46,126,409',
|
54
|
+
'17,18,123,271,270,114,411,117,80,111,125,113,384,127,53,-222,127,124',
|
55
|
+
'43,76,124,78,79,319,318,417,60,49,66,67,56,419,116,58,63,75,68,426,61',
|
56
|
+
'69,427,70,99,98,330,331,336,94,95,126,337,127,126,123,93,124,123,430',
|
57
|
+
'21,20,433,125,384,384,125,52,146,55,443,65,132,444,59,44,47,447,54,45',
|
58
|
+
'448,100,451,455,62,19,457,466,46,126,468,17,18,123,470,336,165,75,127',
|
59
|
+
'80,166,125,124,474,476,53,336,479,480,43,76,336,78,79,483,487,457,60',
|
60
|
+
'49,66,67,56,489,490,58,63,75,68,491,61,69,492,70,336,126,498,163,112',
|
61
|
+
'123,160,499,436,500,501,502,511,125,512,513,21,20,114,515,117,516,111',
|
62
|
+
'52,113,55,80,65,132,517,59,44,47,365,54,45,164,76,112,,62,19,,,46,116',
|
63
|
+
',17,18,,,,114,,117,80,111,,113,,,53,,,,43,76,,78,79,,,,60,49,66,67,56',
|
64
|
+
',116,58,63,75,68,,61,69,,70,,,,,112,94,95,,,,,,93,,,,21,20,114,,117',
|
65
|
+
',111,52,113,55,,65,12,,59,44,47,,54,45,10,11,112,,62,19,,,46,116,,17',
|
66
|
+
'18,,,,114,,117,80,111,,113,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,116',
|
67
|
+
'58,63,75,68,,61,69,,70,,,,,112,,,,,,,,,,,,21,20,114,,117,,111,52,113',
|
68
|
+
'55,,65,12,,59,44,47,,54,45,10,11,,,62,19,,,46,116,,17,18,,,,,,,80,,',
|
69
|
+
',,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,',
|
70
|
+
',,,,,,,,,,,,,21,20,139,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62',
|
71
|
+
'19,,,46,,,17,18,,,,165,75,,80,166,,,,,53,,,,43,76,,78,79,,,,60,49,66',
|
72
|
+
'67,56,,,58,63,75,68,,61,69,,70,,,,163,,,160,,,,,,,,,,21,20,,,,,,52,',
|
73
|
+
'55,80,65,132,,59,44,47,,54,45,164,76,,,62,19,,,46,,,17,18,,,,165,75',
|
74
|
+
',80,166,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69',
|
75
|
+
',70,,,,163,,,160,,,,,,,,,,21,20,,,,,,52,,55,80,65,132,,59,44,47,,54',
|
76
|
+
'45,164,76,,,62,19,,,46,,,17,18,,,,165,75,,80,166,,,,,53,,,,43,76,,78',
|
77
|
+
'79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,163,,,160,,,,,,,,,',
|
78
|
+
'21,20,,,,,,52,,55,80,65,132,,59,44,47,,54,45,164,76,,,62,19,,,46,,,17',
|
79
|
+
'18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68',
|
80
|
+
',61,69,174,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12,,59,44,47,,54',
|
81
|
+
'45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,172',
|
82
|
+
'169,66,67,170,179,178,171,63,75,68,,61,69,181,70,,,,,,,,,,,,,,,,,21',
|
83
|
+
'20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,',
|
84
|
+
',,,,80,,,,,,53,,,,43,76,,78,79,,,,172,169,66,67,170,179,178,171,63,75',
|
85
|
+
'68,,61,69,,70,183,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12,,59,44,47',
|
86
|
+
',54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,',
|
87
|
+
',,172,169,66,67,170,179,178,171,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,',
|
88
|
+
'21,20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18',
|
89
|
+
',,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61',
|
90
|
+
'69,,194,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,',
|
91
|
+
',,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67',
|
92
|
+
'56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12',
|
93
|
+
',59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76',
|
94
|
+
',78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21',
|
95
|
+
'20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,',
|
96
|
+
',,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69',
|
97
|
+
',70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11',
|
98
|
+
',,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67',
|
99
|
+
'56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12',
|
100
|
+
',59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76',
|
101
|
+
',78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21',
|
102
|
+
'20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,',
|
103
|
+
',,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69',
|
104
|
+
',70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11',
|
105
|
+
',,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67',
|
106
|
+
'56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12',
|
107
|
+
',59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76',
|
108
|
+
',78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21',
|
109
|
+
'20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,',
|
110
|
+
',,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69',
|
111
|
+
',70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11',
|
112
|
+
',,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67',
|
113
|
+
'56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,212,227,218,228',
|
114
|
+
'65,220,230,222,44,210,,214,208,,,,,62,19,231,226,209,,,17,207,,,,,,',
|
115
|
+
'80,,,,,229,213,,,,43,76,,78,79,,,,223,211,224,225,219,233,232,221,63',
|
116
|
+
'75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47',
|
117
|
+
',54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60',
|
118
|
+
'49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,',
|
119
|
+
'55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53',
|
120
|
+
',,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,',
|
121
|
+
',,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17',
|
122
|
+
'18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68',
|
123
|
+
',61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45',
|
124
|
+
',,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66',
|
125
|
+
'67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65',
|
126
|
+
'132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76',
|
127
|
+
',78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21',
|
128
|
+
'20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,',
|
129
|
+
',80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,',
|
130
|
+
'70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62',
|
131
|
+
'19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,',
|
132
|
+
',58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59',
|
133
|
+
'44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79',
|
134
|
+
',,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,',
|
135
|
+
',,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,',
|
136
|
+
',,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,',
|
137
|
+
',,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,',
|
138
|
+
'46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63',
|
139
|
+
'75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47',
|
140
|
+
',54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60',
|
141
|
+
'49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,',
|
142
|
+
'55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53',
|
143
|
+
',,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,',
|
144
|
+
',,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17',
|
145
|
+
'18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68',
|
146
|
+
',61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45',
|
147
|
+
',,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66',
|
148
|
+
'67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65',
|
149
|
+
'132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76',
|
150
|
+
',78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21',
|
151
|
+
'20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,',
|
152
|
+
',80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,',
|
153
|
+
'70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62',
|
154
|
+
'19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,',
|
155
|
+
',58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59',
|
156
|
+
'44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79',
|
157
|
+
',,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,',
|
158
|
+
',,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,',
|
159
|
+
',,,53,,,255,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70',
|
160
|
+
',,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19',
|
161
|
+
',,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58',
|
162
|
+
'63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44',
|
163
|
+
'47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,',
|
164
|
+
',60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,',
|
165
|
+
'52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,',
|
166
|
+
',53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,',
|
167
|
+
',,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46',
|
168
|
+
',,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75',
|
169
|
+
'68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,296,,,,,52,,55,,65,12,,59,44,47',
|
170
|
+
',54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,',
|
171
|
+
',,60,49,66,67,56,,,58,63,75,68,,61,69,,70,304,,,,,,,,,,,,,,,,21,20,',
|
172
|
+
',,,,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,',
|
173
|
+
'80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70',
|
174
|
+
',,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62',
|
175
|
+
'19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,',
|
176
|
+
',58,63,75,68,,61,69,,70,183,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12',
|
177
|
+
',59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76',
|
178
|
+
',78,79,,,,172,169,66,67,170,179,178,171,63,75,68,,61,69,,70,,,337,,',
|
179
|
+
',,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46',
|
180
|
+
',,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75',
|
181
|
+
'68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54',
|
182
|
+
'45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49',
|
183
|
+
'66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55',
|
184
|
+
',65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,',
|
185
|
+
'43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,',
|
186
|
+
',,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18',
|
187
|
+
',,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61',
|
188
|
+
'69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,',
|
189
|
+
',,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67',
|
190
|
+
'56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12',
|
191
|
+
',59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76',
|
192
|
+
',78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21',
|
193
|
+
'20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,',
|
194
|
+
',80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,',
|
195
|
+
'70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11,',
|
196
|
+
',62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67',
|
197
|
+
'56,,,58,63,75,68,,61,69,,70,391,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65',
|
198
|
+
'12,,59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43',
|
199
|
+
'76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,393,,,,,,,,,,,',
|
200
|
+
',,,,21,20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62,19,,,46,,,17',
|
201
|
+
'18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68',
|
202
|
+
',61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45',
|
203
|
+
',,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66',
|
204
|
+
'67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65',
|
205
|
+
'12,,59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43',
|
206
|
+
'76,,78,79,,,,172,169,66,67,170,179,178,171,63,75,68,,61,69,,70,412,',
|
207
|
+
',,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62,19',
|
208
|
+
',,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,172,169,66,67,170,179',
|
209
|
+
'178,171,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12',
|
210
|
+
',59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76',
|
211
|
+
',78,79,,,,172,169,66,67,170,179,178,171,63,75,68,,61,69,,70,,,,,,,,',
|
212
|
+
',,,,,,,,21,20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62,19,,,46',
|
213
|
+
',,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75',
|
214
|
+
'68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54',
|
215
|
+
'45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49',
|
216
|
+
'66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55',
|
217
|
+
',65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,',
|
218
|
+
'43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,',
|
219
|
+
',,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18',
|
220
|
+
',,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61',
|
221
|
+
'69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,',
|
222
|
+
',,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67',
|
223
|
+
'56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132',
|
224
|
+
',59,44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78',
|
225
|
+
'79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20',
|
226
|
+
',,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80',
|
227
|
+
',,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,446',
|
228
|
+
',,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62',
|
229
|
+
'19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,',
|
230
|
+
',58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59',
|
231
|
+
'44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79',
|
232
|
+
',,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,',
|
233
|
+
',,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80',
|
234
|
+
',,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,459',
|
235
|
+
',,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19',
|
236
|
+
',,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58',
|
237
|
+
'63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12,,59,44',
|
238
|
+
'47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79',
|
239
|
+
',,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,',
|
240
|
+
',,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80',
|
241
|
+
',,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,',
|
242
|
+
',,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19',
|
243
|
+
',,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58',
|
244
|
+
'63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44',
|
245
|
+
'47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,',
|
246
|
+
',60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,',
|
247
|
+
'52,,55,,65,12,,59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,',
|
248
|
+
',,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,',
|
249
|
+
',,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,',
|
250
|
+
',46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58',
|
251
|
+
'63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12,,59,44',
|
252
|
+
'47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79',
|
253
|
+
',,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,',
|
254
|
+
',,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,,46,,,17,18,,,,,,,80,,',
|
255
|
+
',,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,',
|
256
|
+
',,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62,19,,',
|
257
|
+
'46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63',
|
258
|
+
'75,68,,61,69,,70,495,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12,,59,44',
|
259
|
+
'47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79',
|
260
|
+
',,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21,20,,,',
|
261
|
+
',,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80',
|
262
|
+
',,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,505',
|
263
|
+
',,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62',
|
264
|
+
'19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,',
|
265
|
+
',58,63,75,68,,61,69,,70,507,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,12',
|
266
|
+
',59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76',
|
267
|
+
',78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69,,70,,,,,,,,,,,,,,,,,21',
|
268
|
+
'20,,,,,,52,,55,,65,12,,59,44,47,,54,45,10,11,,,62,19,,,46,,,17,18,,',
|
269
|
+
',,,,80,,,,,,53,,,,43,76,,78,79,,,,60,49,66,67,56,,,58,63,75,68,,61,69',
|
270
|
+
',70,,,,,,,,,,,,,,,,,21,20,,,,,,52,,55,,65,132,,59,44,47,,54,45,,,,,62',
|
271
|
+
'19,,,46,,,17,18,,,,,,,80,,,,,,53,,,,43,76,,78,79,,,112,60,49,66,67,56',
|
272
|
+
',,58,,,68,108,103,114,,117,,111,,113,,104,106,105,107,,,,,,,,,,,,,,',
|
273
|
+
',116,,,,110,109,,,96,97,99,98,101,102,,94,95,112,,297,,,93,,,,,,,108',
|
274
|
+
'103,114,,117,,111,,113,,104,106,105,107,,,,,100,,,,,,,,,,,116,,,,110',
|
275
|
+
'109,,,96,97,99,98,101,102,,94,95,112,,298,,,93,,,,,,,108,103,114,,117',
|
276
|
+
',111,,113,,104,106,105,107,,,,,100,,,,,,,,,,,116,,,,110,109,,,96,97',
|
277
|
+
'99,98,101,102,,94,95,112,,299,,,93,,,,,,,108,103,114,,117,,111,,113',
|
278
|
+
',104,106,105,107,,,,,100,,,,,,,,,,,116,,,,110,109,,112,96,97,99,98,101',
|
279
|
+
'102,,94,95,,,108,103,114,93,117,,111,,113,,104,106,105,107,,,,,,,,,',
|
280
|
+
',,,,,100,116,,,,110,109,,,96,97,99,98,101,102,,94,95,,,,,,93,,,,112',
|
281
|
+
',,,,,,330,331,,,,108,103,114,334,117,112,111,,113,100,104,106,105,107',
|
282
|
+
',,,,,114,,117,,111,,113,,,,116,,,,110,109,,,96,97,99,98,101,102,,94',
|
283
|
+
'95,116,,,112,,93,,,96,97,99,98,,,,94,95,114,,117,112,111,93,113,,,,',
|
284
|
+
',,100,,,,114,,117,,111,,113,,,,116,,,100,,,,,96,97,99,98,,,,94,95,116',
|
285
|
+
',,112,,93,,,96,97,99,98,101,102,,94,95,114,,117,112,111,93,113,,,,,',
|
286
|
+
',100,,,103,114,,117,,111,,113,,104,,116,,,100,,,,,96,97,99,98,101,102',
|
287
|
+
',94,95,116,,,,,93,,112,96,97,99,98,101,102,,94,95,,,,103,114,93,117',
|
288
|
+
'112,111,,113,,104,100,,,,,,,103,114,,117,,111,,113,,104,100,116,,,,',
|
289
|
+
',,,96,97,99,98,101,102,,94,95,116,,,,,93,,112,96,97,99,98,101,102,,94',
|
290
|
+
'95,,,,103,114,93,117,,111,,113,,104,100,,,,,,,,,,,,,,,,,100,116,,,,',
|
291
|
+
'112,,,96,97,99,98,101,102,,94,95,108,103,114,,117,93,111,,113,,104,106',
|
292
|
+
'105,107,,,,,,,,,,,,,,,,116,100,,,,112,,,96,97,99,98,101,102,,94,95,108',
|
293
|
+
'103,114,,117,93,111,,113,,104,106,105,107,,,,,,,,,,,,,,,,116,100,,,',
|
294
|
+
'109,,,96,97,99,98,101,102,112,94,95,,,340,,,93,,,,108,103,114,,117,',
|
295
|
+
'111,,113,,104,106,105,107,,,,,,,,100,,,,,,,,116,,,,110,109,,112,96,97',
|
296
|
+
'99,98,101,102,,94,95,,,108,103,114,93,117,,111,,113,,104,106,105,107',
|
297
|
+
',,,,,,,,,,,,,,100,116,,,,110,109,,112,96,97,99,98,101,102,,94,95,,,108',
|
298
|
+
'103,114,93,117,,111,,113,,104,106,105,107,,,,,,,,,,,,,,,100,116,,,,110',
|
299
|
+
'109,,,96,97,99,98,101,102,112,94,95,,,,,,93,,,,108,103,114,366,117,',
|
300
|
+
'111,,113,,104,106,105,107,,,,,,,,100,,,,,,,,116,,,,110,109,,112,96,97',
|
301
|
+
'99,98,101,102,,94,95,,,108,103,114,93,117,,111,,113,,104,106,105,107',
|
302
|
+
',,,,,,,,,,,,,,100,116,,,,110,109,,112,96,97,99,98,101,102,,94,95,,,108',
|
303
|
+
'103,114,93,117,,111,,113,,104,106,105,107,,,,,,,,,,,,,,,100,116,,,,110',
|
304
|
+
'109,,112,96,97,99,98,101,102,,94,95,,,108,103,114,93,117,,111,,113,',
|
305
|
+
'104,106,105,107,,,,,,,,,,,,,,,100,116,,,,110,109,,112,96,97,99,98,101',
|
306
|
+
'102,,94,95,,,108,103,114,93,117,,111,,113,,104,106,105,107,,,,,,,,,',
|
307
|
+
',,,,,100,116,,,,110,109,,112,96,97,99,98,101,102,,94,95,,,108,103,114',
|
308
|
+
'93,117,,111,,113,,104,106,105,107,,,,,,,,,,,,,,,100,116,,,,110,109,',
|
309
|
+
'112,96,97,99,98,101,102,,94,95,,,108,103,114,93,117,,111,,113,,104,106',
|
310
|
+
'105,107,,,,,,,,,,,,,,,100,116,,,,110,109,,,96,97,99,98,101,102,,94,95',
|
311
|
+
',352,227,351,228,93,349,230,353,,346,,348,350,,,,,,,231,226,354,,,,347',
|
312
|
+
',,,100,,,,,,,,229,355,,,,,,,,,,,,358,356,359,357,360,233,232,361,352',
|
313
|
+
'227,351,228,,349,230,353,,346,,348,350,,,,,,,231,226,354,,,,347,,,,',
|
314
|
+
',,,,,,,229,355,,,,,,,,,,,,358,356,359,357,360,233,232,361,352,227,351',
|
315
|
+
'228,,349,230,353,,346,,348,350,,,,,,,231,226,354,,,,347,,,,,,,,,,,,229',
|
316
|
+
'355,,,,,,,,,,,,358,356,359,357,360,233,232,361,352,227,351,228,,349',
|
317
|
+
'230,353,,346,,348,350,,,,,,,231,226,354,,,,347,,,,,,,,,,,,229,355,,',
|
318
|
+
',,,,,,,,,358,356,359,357,360,233,232,361,352,227,351,228,,349,230,353',
|
319
|
+
',346,,348,350,,,,,,,231,226,354,,,,347,,,,,,,,,,,,229,355,,,,,,,,,,',
|
320
|
+
',358,356,359,357,360,233,232,361,352,227,351,228,,349,230,353,,346,',
|
321
|
+
'348,350,,,,,,,231,226,354,,,,347,,,,,,,,,,,,229,355,,,,,,,,,,,,358,356',
|
322
|
+
'359,357,360,233,232,361' ]
|
323
|
+
racc_action_table = arr = ::Array.new(9980, nil)
|
325
324
|
idx = 0
|
326
325
|
clist.each do |str|
|
327
326
|
str.split(',', -1).each do |i|
|
@@ -331,124 +330,122 @@ clist = [
|
|
331
330
|
end
|
332
331
|
|
333
332
|
clist = [
|
334
|
-
'0,0,
|
335
|
-
'
|
336
|
-
'
|
337
|
-
'
|
338
|
-
'
|
339
|
-
'
|
340
|
-
'
|
341
|
-
'
|
342
|
-
'
|
343
|
-
'
|
344
|
-
'
|
345
|
-
'
|
346
|
-
'10,11,11,10,
|
347
|
-
'60,
|
348
|
-
'11,11,
|
349
|
-
'
|
350
|
-
'
|
351
|
-
'
|
352
|
-
'
|
353
|
-
'17,17,
|
354
|
-
'
|
355
|
-
'
|
356
|
-
'
|
357
|
-
'18,18,
|
358
|
-
'18,18,
|
359
|
-
'18,
|
360
|
-
'
|
361
|
-
'
|
362
|
-
',
|
363
|
-
',
|
364
|
-
',
|
365
|
-
'20
|
366
|
-
'20,
|
367
|
-
'21
|
368
|
-
',,,21
|
369
|
-
'
|
370
|
-
'48
|
371
|
-
'48,48,,,48,52,52,48,,52,52,,52
|
372
|
-
'
|
373
|
-
'
|
374
|
-
',
|
375
|
-
'53,
|
376
|
-
'53,53,,,,53,53,53,53,53
|
377
|
-
'
|
378
|
-
'
|
379
|
-
'54,,
|
380
|
-
'
|
381
|
-
',
|
382
|
-
'
|
383
|
-
',
|
384
|
-
'69
|
385
|
-
'
|
386
|
-
'
|
387
|
-
',
|
388
|
-
',,,
|
389
|
-
'
|
390
|
-
'
|
391
|
-
',
|
392
|
-
'
|
393
|
-
'
|
394
|
-
',
|
395
|
-
',,,
|
396
|
-
'
|
397
|
-
'
|
398
|
-
'
|
399
|
-
'
|
400
|
-
'
|
401
|
-
'
|
402
|
-
'
|
403
|
-
'
|
404
|
-
'
|
405
|
-
'
|
406
|
-
',
|
407
|
-
',,
|
408
|
-
',
|
409
|
-
'
|
410
|
-
'
|
411
|
-
'
|
412
|
-
',
|
413
|
-
'
|
414
|
-
'
|
415
|
-
'
|
416
|
-
'
|
417
|
-
',93,93
|
418
|
-
'
|
419
|
-
'
|
420
|
-
'
|
421
|
-
',
|
422
|
-
'
|
423
|
-
'
|
424
|
-
'
|
425
|
-
',,
|
426
|
-
'97,97,
|
427
|
-
'
|
428
|
-
',
|
429
|
-
'
|
430
|
-
'
|
431
|
-
'
|
432
|
-
',
|
433
|
-
'
|
434
|
-
'
|
435
|
-
'
|
436
|
-
'
|
437
|
-
'
|
438
|
-
'
|
439
|
-
'
|
440
|
-
',
|
441
|
-
'
|
442
|
-
'
|
443
|
-
'
|
444
|
-
'104,104
|
445
|
-
'
|
446
|
-
'
|
447
|
-
'105
|
448
|
-
',
|
449
|
-
'
|
450
|
-
',,,,,,,,,,,106,106,,,,,,106,,106,,106,106,,106,106,106,,106,106,,,,',
|
451
|
-
'106,106,,,106,,,106,106,,,,,,,106,,,,,,106,,,,106,106,,106,106,,,,106',
|
333
|
+
'0,0,146,210,0,0,295,0,7,7,7,168,235,168,208,146,182,143,307,182,293',
|
334
|
+
'295,209,146,0,0,235,217,235,224,235,0,235,0,1,0,0,146,0,0,0,293,0,0',
|
335
|
+
'0,0,210,143,0,0,114,307,0,235,168,0,0,208,7,7,7,7,55,0,12,209,55,5,12',
|
336
|
+
'0,217,12,224,0,0,235,0,0,0,210,210,0,0,0,0,0,270,8,0,4,4,0,114,4,4,270',
|
337
|
+
'4,168,55,50,12,236,55,225,12,192,377,309,270,309,55,377,12,4,4,236,270',
|
338
|
+
'236,192,236,4,236,4,51,4,4,192,4,4,4,4,4,4,4,4,239,58,4,4,394,192,4',
|
339
|
+
'236,64,4,4,225,76,394,239,77,239,4,239,391,239,391,220,4,271,81,220',
|
340
|
+
'4,4,236,4,4,220,271,83,4,4,4,4,4,115,239,4,10,10,4,271,10,10,49,10,451',
|
341
|
+
'384,451,271,118,239,239,220,119,56,169,220,239,56,384,135,10,10,136',
|
342
|
+
'220,211,49,384,10,220,10,138,10,10,139,10,10,10,169,10,10,10,10,240',
|
343
|
+
'141,10,10,145,211,10,56,469,10,10,56,156,469,240,158,240,10,240,56,240',
|
344
|
+
'171,60,10,173,128,60,10,10,128,10,10,16,16,180,10,10,10,10,10,185,240',
|
345
|
+
'10,11,11,10,484,11,11,196,11,484,47,47,57,57,240,240,60,201,132,128',
|
346
|
+
'60,240,132,128,202,11,11,203,60,190,190,128,11,190,11,204,11,11,206',
|
347
|
+
'11,11,11,221,11,11,11,11,237,257,11,11,61,61,11,132,262,11,11,132,62',
|
348
|
+
'62,237,264,237,11,237,132,237,265,154,11,268,170,154,11,11,170,11,11',
|
349
|
+
'63,63,272,11,11,11,11,11,276,237,11,17,17,11,280,17,17,281,17,237,237',
|
350
|
+
'121,121,282,237,237,154,285,172,170,154,237,172,170,291,17,17,292,154',
|
351
|
+
'152,152,170,17,300,17,301,17,17,302,17,17,17,303,17,17,305,237,238,308',
|
352
|
+
'17,17,153,153,17,172,312,17,17,172,167,167,238,314,238,17,238,172,238',
|
353
|
+
'327,218,17,332,219,218,17,17,219,17,17,187,187,333,17,17,17,17,17,335',
|
354
|
+
'238,17,18,18,17,341,18,18,343,18,238,238,417,417,345,238,238,218,347',
|
355
|
+
'223,219,218,238,223,219,364,18,18,367,218,371,373,219,18,376,18,378',
|
356
|
+
'18,18,379,18,18,18,382,18,18,383,238,390,392,18,18,393,401,18,223,406',
|
357
|
+
'18,18,223,416,418,59,59,369,18,59,223,369,425,429,18,432,437,438,18',
|
358
|
+
'18,439,18,18,445,454,455,18,18,18,18,18,457,458,18,19,19,18,461,19,19',
|
359
|
+
'464,19,465,369,472,59,131,369,59,473,369,478,481,482,493,369,494,496',
|
360
|
+
'19,19,131,504,131,506,131,19,131,19,59,19,19,508,19,19,19,514,19,19',
|
361
|
+
'59,59,241,,19,19,,,19,131,,19,19,,,,241,,241,19,241,,241,,,19,,,,19',
|
362
|
+
'19,,19,19,,,,19,19,19,19,19,,241,19,20,20,19,,20,20,,20,,,,,133,241',
|
363
|
+
'241,,,,,,241,,,,20,20,133,,133,,133,20,133,20,,20,20,,20,20,20,,20,20',
|
364
|
+
'20,20,134,,20,20,,,20,133,,20,20,,,,134,,134,20,134,,134,,,20,,,,20',
|
365
|
+
'20,,20,20,,,,20,20,20,20,20,,134,20,21,21,20,,21,21,,21,,,,,234,,,,',
|
366
|
+
',,,,,,,21,21,234,,234,,234,21,234,21,,21,21,,21,21,21,,21,21,21,21,',
|
367
|
+
',21,21,,,21,234,,21,21,,,,,,,21,,,,,,21,,,,21,21,,21,21,,,,21,21,21',
|
368
|
+
'21,21,,,21,48,48,21,,48,48,,48,,,,,,,,,,,,,,,,,48,48,48,,,,,48,,48,',
|
369
|
+
'48,48,,48,48,48,,48,48,48,48,,,48,48,,,48,,,48,48,,,,222,222,,48,222',
|
370
|
+
',,,,48,,,,48,48,,48,48,,,,48,48,48,48,48,,,48,52,52,48,,52,52,,52,,',
|
371
|
+
',222,,,222,,,,,,,,,,52,52,,,,,,52,,52,222,52,52,,52,52,52,,52,52,222',
|
372
|
+
'222,,,52,52,,,52,,,52,52,,,,306,306,,52,306,,,,,52,,,,52,52,,52,52,',
|
373
|
+
',,52,52,52,52,52,,,52,53,53,52,,53,53,,53,,,,306,,,306,,,,,,,,,,53,53',
|
374
|
+
',,,,,53,,53,306,53,53,,53,53,53,,53,53,306,306,,,53,53,,,53,,,53,53',
|
375
|
+
',,,403,403,,53,403,,,,,53,,,,53,53,,53,53,,,,53,53,53,53,53,,,53,54',
|
376
|
+
'54,53,,54,54,,54,,,,403,,,403,,,,,,,,,,54,54,,,,,,54,,54,403,54,54,',
|
377
|
+
'54,54,54,,54,54,403,403,,,54,54,,,54,,,54,54,,,,,,,54,,,,,,54,,,,54',
|
378
|
+
'54,,54,54,,,,54,54,54,54,54,,,54,68,68,54,,68,68,68,68,,,,,,,,,,,,,',
|
379
|
+
',,,68,68,,,,,,68,,68,,68,68,,68,68,68,,68,68,68,68,,,68,68,,,68,,,68',
|
380
|
+
'68,,,,,,,68,,,,,,68,,,,68,68,,68,68,,,,68,68,68,68,68,68,68,68,69,69',
|
381
|
+
'68,,69,69,69,69,,,,,,,,,,,,,,,,,69,69,,,,,,69,,69,,69,69,,69,69,69,',
|
382
|
+
'69,69,69,69,,,69,69,,,69,,,69,69,,,,,,,69,,,,,,69,,,,69,69,,69,69,,',
|
383
|
+
',69,69,69,69,69,69,69,69,70,70,69,,70,70,,70,70,,,,,,,,,,,,,,,,70,70',
|
384
|
+
',,,,,70,,70,,70,70,,70,70,70,,70,70,70,70,,,70,70,,,70,,,70,70,,,,,',
|
385
|
+
',70,,,,,,70,,,,70,70,,70,70,,,,70,70,70,70,70,70,70,70,74,74,70,,74',
|
386
|
+
'74,,74,,,,,,,,,,,,,,,,,74,74,,,,,,74,,74,,74,74,,74,74,74,,74,74,74',
|
387
|
+
'74,,,74,74,,,74,,,74,74,,,,,,,74,,,,,,74,,,,74,74,,74,74,,,,74,74,74',
|
388
|
+
'74,74,,,74,79,79,74,,79,79,,79,,,,,,,,,,,,,,,,,79,79,,,,,,79,,79,,79',
|
389
|
+
'79,,79,79,79,,79,79,,,,,79,79,,,79,,,79,79,,,,,,,79,,,,,,79,,,,79,79',
|
390
|
+
',79,79,,,,79,79,79,79,79,,,79,82,82,79,,82,82,,82,,,,,,,,,,,,,,,,,82',
|
391
|
+
'82,,,,,,82,,82,,82,82,,82,82,82,,82,82,82,82,,,82,82,,,82,,,82,82,,',
|
392
|
+
',,,,82,,,,,,82,,,,82,82,,82,82,,,,82,82,82,82,82,,,82,84,84,82,,84,84',
|
393
|
+
',84,,,,,,,,,,,,,,,,,84,84,,,,,,84,,84,,84,84,,84,84,84,,84,84,84,84',
|
394
|
+
',,84,84,,,84,,,84,84,,,,,,,84,,,,,,84,,,,84,84,,84,84,,,,84,84,84,84',
|
395
|
+
'84,,,84,85,85,84,,85,85,,85,,,,,,,,,,,,,,,,,85,85,,,,,,85,,85,,85,85',
|
396
|
+
',85,85,85,,85,85,85,85,,,85,85,,,85,,,85,85,,,,,,,85,,,,,,85,,,,85,85',
|
397
|
+
',85,85,,,,85,85,85,85,85,,,85,86,86,85,,86,86,,86,,,,,,,,,,,,,,,,,86',
|
398
|
+
'86,,,,,,86,,86,,86,86,,86,86,86,,86,86,86,86,,,86,86,,,86,,,86,86,,',
|
399
|
+
',,,,86,,,,,,86,,,,86,86,,86,86,,,,86,86,86,86,86,,,86,87,87,86,,87,87',
|
400
|
+
',87,,,,,,,,,,,,,,,,,87,87,,,,,,87,,87,,87,87,,87,87,87,,87,87,87,87',
|
401
|
+
',,87,87,,,87,,,87,87,,,,,,,87,,,,,,87,,,,87,87,,87,87,,,,87,87,87,87',
|
402
|
+
'87,,,87,88,88,87,,88,88,,88,,,,,,,,,,,,,,,,,88,88,,,,,,88,,88,,88,88',
|
403
|
+
',88,88,88,,88,88,88,88,,,88,88,,,88,,,88,88,,,,,,,88,,,,,,88,,,,88,88',
|
404
|
+
',88,88,,,,88,88,88,88,88,,,88,89,89,88,,89,89,,89,,,,,,,,,,,,,,,,,89',
|
405
|
+
'89,,,,,,89,,89,,89,89,,89,89,89,,89,89,89,89,,,89,89,,,89,,,89,89,,',
|
406
|
+
',,,,89,,,,,,89,,,,89,89,,89,89,,,,89,89,89,89,89,,,89,90,90,89,,90,90',
|
407
|
+
',90,,,,,,,,,,,,,,,,,90,90,,,,,,90,,90,,90,90,,90,90,90,,90,90,90,90',
|
408
|
+
',,90,90,,,90,,,90,90,,,,,,,90,,,,,,90,,,,90,90,,90,90,,,,90,90,90,90',
|
409
|
+
'90,,,90,91,91,90,,91,91,,91,,,,,,,,,,,,,,,,,91,91,,,,,,91,,91,,91,91',
|
410
|
+
',91,91,91,,91,91,91,91,,,91,91,,,91,,,91,91,,,,,,,91,,,,,,91,,,,91,91',
|
411
|
+
',91,91,,,,91,91,91,91,91,,,91,92,92,91,,92,92,,92,,,,,,,,,,,,,,,,,92',
|
412
|
+
'92,,,,,,92,92,92,92,92,92,92,92,92,92,,92,92,,,,,92,92,92,92,92,,,92',
|
413
|
+
'92,,,,,,,92,,,,,92,92,,,,92,92,,92,92,,,,92,92,92,92,92,92,92,92,93',
|
414
|
+
'93,92,,93,93,,93,,,,,,,,,,,,,,,,,93,93,,,,,,93,,93,,93,93,,93,93,93',
|
415
|
+
',93,93,,,,,93,93,,,93,,,93,93,,,,,,,93,,,,,,93,,,,93,93,,93,93,,,,93',
|
416
|
+
'93,93,93,93,,,93,94,94,93,,94,94,,94,,,,,,,,,,,,,,,,,94,94,,,,,,94,',
|
417
|
+
'94,,94,94,,94,94,94,,94,94,,,,,94,94,,,94,,,94,94,,,,,,,94,,,,,,94,',
|
418
|
+
',,94,94,,94,94,,,,94,94,94,94,94,,,94,95,95,94,,95,95,,95,,,,,,,,,,',
|
419
|
+
',,,,,,95,95,,,,,,95,,95,,95,95,,95,95,95,,95,95,,,,,95,95,,,95,,,95',
|
420
|
+
'95,,,,,,,95,,,,,,95,,,,95,95,,95,95,,,,95,95,95,95,95,,,95,96,96,95',
|
421
|
+
',96,96,,96,,,,,,,,,,,,,,,,,96,96,,,,,,96,,96,,96,96,,96,96,96,,96,96',
|
422
|
+
',,,,96,96,,,96,,,96,96,,,,,,,96,,,,,,96,,,,96,96,,96,96,,,,96,96,96',
|
423
|
+
'96,96,,,96,97,97,96,,97,97,,97,,,,,,,,,,,,,,,,,97,97,,,,,,97,,97,,97',
|
424
|
+
'97,,97,97,97,,97,97,,,,,97,97,,,97,,,97,97,,,,,,,97,,,,,,97,,,,97,97',
|
425
|
+
',97,97,,,,97,97,97,97,97,,,97,98,98,97,,98,98,,98,,,,,,,,,,,,,,,,,98',
|
426
|
+
'98,,,,,,98,,98,,98,98,,98,98,98,,98,98,,,,,98,98,,,98,,,98,98,,,,,,',
|
427
|
+
'98,,,,,,98,,,,98,98,,98,98,,,,98,98,98,98,98,,,98,99,99,98,,99,99,,99',
|
428
|
+
',,,,,,,,,,,,,,,,99,99,,,,,,99,,99,,99,99,,99,99,99,,99,99,,,,,99,99',
|
429
|
+
',,99,,,99,99,,,,,,,99,,,,,,99,,,,99,99,,99,99,,,,99,99,99,99,99,,,99',
|
430
|
+
'100,100,99,,100,100,,100,,,,,,,,,,,,,,,,,100,100,,,,,,100,,100,,100',
|
431
|
+
'100,,100,100,100,,100,100,,,,,100,100,,,100,,,100,100,,,,,,,100,,,,',
|
432
|
+
',100,,,,100,100,,100,100,,,,100,100,100,100,100,,,100,101,101,100,,101',
|
433
|
+
'101,,101,,,,,,,,,,,,,,,,,101,101,,,,,,101,,101,,101,101,,101,101,101',
|
434
|
+
',101,101,,,,,101,101,,,101,,,101,101,,,,,,,101,,,,,,101,,,,101,101,',
|
435
|
+
'101,101,,,,101,101,101,101,101,,,101,102,102,101,,102,102,,102,,,,,',
|
436
|
+
',,,,,,,,,,,102,102,,,,,,102,,102,,102,102,,102,102,102,,102,102,,,,',
|
437
|
+
'102,102,,,102,,,102,102,,,,,,,102,,,,,,102,,,,102,102,,102,102,,,,102',
|
438
|
+
'102,102,102,102,,,102,103,103,102,,103,103,,103,,,,,,,,,,,,,,,,,103',
|
439
|
+
'103,,,,,,103,,103,,103,103,,103,103,103,,103,103,,,,,103,103,,,103,',
|
440
|
+
',103,103,,,,,,,103,,,,,,103,,,,103,103,,103,103,,,,103,103,103,103,103',
|
441
|
+
',,103,104,104,103,,104,104,,104,,,,,,,,,,,,,,,,,104,104,,,,,,104,,104',
|
442
|
+
',104,104,,104,104,104,,104,104,,,,,104,104,,,104,,,104,104,,,,,,,104',
|
443
|
+
',,,,,104,,,,104,104,,104,104,,,,104,104,104,104,104,,,104,105,105,104',
|
444
|
+
',105,105,,105,,,,,,,,,,,,,,,,,105,105,,,,,,105,,105,,105,105,,105,105',
|
445
|
+
'105,,105,105,,,,,105,105,,,105,,,105,105,,,,,,,105,,,,,,105,,,,105,105',
|
446
|
+
',105,105,,,,105,105,105,105,105,,,105,106,106,105,,106,106,,106,,,,',
|
447
|
+
',,,,,,,,,,,,106,106,,,,,,106,,106,,106,106,,106,106,106,,106,106,,,',
|
448
|
+
',106,106,,,106,,,106,106,,,,,,,106,,,,,,106,,,,106,106,,106,106,,,,106',
|
452
449
|
'106,106,106,106,,,106,107,107,106,,107,107,,107,,,,,,,,,,,,,,,,,107',
|
453
450
|
'107,,,,,,107,,107,,107,107,,107,107,107,,107,107,,,,,107,107,,,107,',
|
454
451
|
',107,107,,,,,,,107,,,,,,107,,,,107,107,,107,107,,,,107,107,107,107,107',
|
@@ -459,199 +456,200 @@ clist = [
|
|
459
456
|
'109,,109,109,,,,,109,109,,,109,,,109,109,,,,,,,109,,,,,,109,,,,109,109',
|
460
457
|
',109,109,,,,109,109,109,109,109,,,109,110,110,109,,110,110,,110,,,,',
|
461
458
|
',,,,,,,,,,,,110,110,,,,,,110,,110,,110,110,,110,110,110,,110,110,,,',
|
462
|
-
',110,110,,,110,,,110,110,,,,,,,110,,,,,,110
|
463
|
-
'
|
464
|
-
'
|
465
|
-
',111
|
466
|
-
'111
|
467
|
-
',
|
468
|
-
',,,,,,
|
469
|
-
'116,
|
470
|
-
'116
|
471
|
-
'
|
472
|
-
'
|
473
|
-
'
|
474
|
-
'
|
475
|
-
'
|
476
|
-
'
|
477
|
-
'
|
478
|
-
'
|
479
|
-
',
|
480
|
-
'
|
481
|
-
'
|
482
|
-
'
|
483
|
-
'
|
484
|
-
'
|
485
|
-
'
|
486
|
-
'
|
487
|
-
'
|
488
|
-
'
|
489
|
-
'
|
490
|
-
'
|
491
|
-
'
|
492
|
-
'
|
493
|
-
'
|
494
|
-
',
|
495
|
-
'
|
496
|
-
',
|
497
|
-
'
|
498
|
-
'
|
499
|
-
',
|
500
|
-
',,
|
501
|
-
',
|
502
|
-
'
|
503
|
-
'
|
504
|
-
',
|
505
|
-
'
|
506
|
-
',
|
507
|
-
'
|
508
|
-
',,,
|
509
|
-
',,,
|
510
|
-
'
|
511
|
-
'
|
512
|
-
',,,,,
|
513
|
-
',,
|
514
|
-
'
|
515
|
-
'
|
516
|
-
'
|
517
|
-
'
|
518
|
-
',
|
519
|
-
',,,,,
|
520
|
-
',
|
521
|
-
'
|
522
|
-
',
|
523
|
-
'
|
524
|
-
'
|
525
|
-
',
|
526
|
-
'
|
527
|
-
',
|
528
|
-
'
|
529
|
-
',
|
530
|
-
'
|
531
|
-
',
|
532
|
-
',,,,,,,,,,,,
|
533
|
-
',
|
534
|
-
'
|
535
|
-
'
|
536
|
-
',
|
537
|
-
',,
|
538
|
-
',
|
539
|
-
',,,,,
|
540
|
-
',
|
541
|
-
'
|
542
|
-
',
|
543
|
-
',,,,,,,,,,,,
|
544
|
-
',
|
545
|
-
'
|
546
|
-
'
|
547
|
-
',
|
548
|
-
',,
|
549
|
-
',
|
550
|
-
',,,,,,
|
551
|
-
'
|
552
|
-
'
|
553
|
-
',
|
554
|
-
'
|
555
|
-
',
|
556
|
-
'
|
557
|
-
'
|
558
|
-
'
|
559
|
-
',,,
|
560
|
-
',,,
|
561
|
-
'
|
562
|
-
'
|
563
|
-
',,,,,
|
564
|
-
',,
|
565
|
-
'
|
566
|
-
',
|
567
|
-
',,
|
568
|
-
'
|
569
|
-
',
|
570
|
-
',,,
|
571
|
-
',
|
572
|
-
'
|
573
|
-
',
|
574
|
-
',,,,,,,,,,,,
|
575
|
-
'
|
576
|
-
'
|
577
|
-
'
|
578
|
-
'
|
579
|
-
'
|
580
|
-
',
|
581
|
-
',,,,,,
|
582
|
-
'
|
583
|
-
'
|
584
|
-
'
|
585
|
-
'
|
586
|
-
'
|
587
|
-
'
|
588
|
-
',
|
589
|
-
'
|
590
|
-
'
|
591
|
-
',
|
592
|
-
',
|
593
|
-
'
|
594
|
-
'
|
595
|
-
'
|
596
|
-
'
|
597
|
-
'
|
598
|
-
'
|
599
|
-
'
|
600
|
-
'
|
601
|
-
',
|
602
|
-
'
|
603
|
-
'
|
604
|
-
'
|
605
|
-
'150
|
606
|
-
'150,,,
|
607
|
-
'
|
608
|
-
',,,,
|
609
|
-
'
|
610
|
-
'
|
611
|
-
'
|
612
|
-
'
|
613
|
-
',243,
|
614
|
-
'242,,,,,243,243,243,243
|
615
|
-
'244,244,244
|
616
|
-
'246,246,,246,,246,,246,,246
|
617
|
-
'245,245,246,,,,,245,,247,246,246,246,246,246,246,,246
|
618
|
-
'246,247
|
619
|
-
'
|
620
|
-
'
|
621
|
-
'249,
|
622
|
-
'
|
623
|
-
'250
|
624
|
-
',
|
625
|
-
',
|
626
|
-
'
|
627
|
-
'
|
628
|
-
'
|
629
|
-
'
|
630
|
-
'
|
631
|
-
'
|
632
|
-
',
|
633
|
-
'
|
634
|
-
'
|
635
|
-
'
|
636
|
-
'
|
637
|
-
'
|
638
|
-
'
|
639
|
-
'
|
640
|
-
'
|
641
|
-
'
|
642
|
-
'
|
643
|
-
'
|
644
|
-
'
|
645
|
-
'
|
646
|
-
'
|
647
|
-
'
|
648
|
-
',
|
649
|
-
',
|
650
|
-
'
|
651
|
-
'
|
652
|
-
'
|
653
|
-
'
|
654
|
-
|
459
|
+
',110,110,,,110,,,110,110,,,,,,,110,,,,,,110,,,,110,110,,110,110,,,,110',
|
460
|
+
'110,110,110,110,,,110,111,111,110,,111,111,,111,,,,,,,,,,,,,,,,,111',
|
461
|
+
'111,,,,,,111,,111,,111,111,,111,111,111,,111,111,,,,,111,111,,,111,',
|
462
|
+
',111,111,,,,,,,111,,,,,,111,,,111,111,111,,111,111,,,,111,111,111,111',
|
463
|
+
'111,,,111,112,112,111,,112,112,,112,,,,,,,,,,,,,,,,,112,112,,,,,,112',
|
464
|
+
',112,,112,112,,112,112,112,,112,112,,,,,112,112,,,112,,,112,112,,,,',
|
465
|
+
',,112,,,,,,112,,,,112,112,,112,112,,,,112,112,112,112,112,,,112,116',
|
466
|
+
'116,112,,116,116,,116,,,,,,,,,,,,,,,,,116,116,,,,,,116,,116,,116,116',
|
467
|
+
',116,116,116,,116,116,,,,,116,116,,,116,,,116,116,,,,,,,116,,,,,,116',
|
468
|
+
',,,116,116,,116,116,,,,116,116,116,116,116,,,116,117,117,116,,117,117',
|
469
|
+
',117,,,,,,,,,,,,,,,,,117,117,,,,,,117,,117,,117,117,,117,117,117,,117',
|
470
|
+
'117,,,,,117,117,,,117,,,117,117,,,,,,,117,,,,,,117,,,,117,117,,117,117',
|
471
|
+
',,,117,117,117,117,117,,,117,120,120,117,,120,120,,120,,,,,,,,,,,,,',
|
472
|
+
',,,120,120,,,,,,120,,120,,120,120,,120,120,120,,120,120,,,,,120,120',
|
473
|
+
',,120,,,120,120,,,,,,,120,,,,,,120,,,,120,120,,120,120,,,,120,120,120',
|
474
|
+
'120,120,,,120,147,147,120,,147,147,,147,,,,,,,,,,,,,,,,,147,147,147',
|
475
|
+
',,,,147,,147,,147,147,,147,147,147,,147,147,147,147,,,147,147,,,147',
|
476
|
+
',,147,147,,,,,,,147,,,,,,147,,,,147,147,,147,147,,,,147,147,147,147',
|
477
|
+
'147,,,147,155,155,147,,155,155,,155,155,,,,,,,,,,,,,,,,155,155,,,,,',
|
478
|
+
'155,,155,,155,155,,155,155,155,,155,155,155,155,,,155,155,,,155,,,155',
|
479
|
+
'155,,,,,,,155,,,,,,155,,,,155,155,,155,155,,,,155,155,155,155,155,,',
|
480
|
+
'155,191,191,155,,191,191,,191,,,,,,,,,,,,,,,,,191,191,,,,,,191,,191',
|
481
|
+
',191,191,,191,191,191,,191,191,191,191,,,191,191,,,191,,,191,191,,,',
|
482
|
+
',,,191,,,,,,191,,,,191,191,,191,191,,,,191,191,191,191,191,,,191,194',
|
483
|
+
'194,191,,194,194,,194,194,,,,,,,,,,,,,,,,194,194,,,,,,194,,194,,194',
|
484
|
+
'194,,194,194,194,,194,194,194,194,,,194,194,,,194,,,194,194,,,,,,,194',
|
485
|
+
',,,,,194,,,,194,194,,194,194,,,,194,194,194,194,194,194,194,194,207',
|
486
|
+
'207,194,,207,207,,207,,,207,,,,,,,,,,,,,,207,207,,,,,,207,,207,,207',
|
487
|
+
'207,,207,207,207,,207,207,,,,,207,207,,,207,,,207,207,,,,,,,207,,,,',
|
488
|
+
',207,,,,207,207,,207,207,,,,207,207,207,207,207,,,207,212,212,207,,212',
|
489
|
+
'212,,212,,,,,,,,,,,,,,,,,212,212,,,,,,212,,212,,212,212,,212,212,212',
|
490
|
+
',212,212,,,,,212,212,,,212,,,212,212,,,,,,,212,,,,,,212,,,,212,212,',
|
491
|
+
'212,212,,,,212,212,212,212,212,,,212,213,213,212,,213,213,,213,,,,,',
|
492
|
+
',,,,,,,,,,,213,213,,,,,,213,,213,,213,213,,213,213,213,,213,213,,,,',
|
493
|
+
'213,213,,,213,,,213,213,,,,,,,213,,,,,,213,,,,213,213,,213,213,,,,213',
|
494
|
+
'213,213,213,213,,,213,214,214,213,,214,214,,214,,,,,,,,,,,,,,,,,214',
|
495
|
+
'214,,,,,,214,,214,,214,214,,214,214,214,,214,214,,,,,214,214,,,214,',
|
496
|
+
',214,214,,,,,,,214,,,,,,214,,,,214,214,,214,214,,,,214,214,214,214,214',
|
497
|
+
',,214,255,255,214,,255,255,,255,,,,,,,,,,,,,,,,,255,255,,,,,,255,,255',
|
498
|
+
',255,255,,255,255,255,,255,255,,,,,255,255,,,255,,,255,255,,,,,,,255',
|
499
|
+
',,,,,255,,,,255,255,,255,255,,,,255,255,255,255,255,,,255,275,275,255',
|
500
|
+
',275,275,,275,,,,,,,,,,,,,,,,,275,275,,,,,,275,,275,,275,275,,275,275',
|
501
|
+
'275,,275,275,275,275,,,275,275,,,275,,,275,275,,,,,,,275,,,,,,275,,',
|
502
|
+
',275,275,,275,275,,,,275,275,275,275,275,,,275,278,278,275,,278,278',
|
503
|
+
',278,,,,,,,,,,,,,,,,,278,278,,,,,,278,,278,,278,278,,278,278,278,,278',
|
504
|
+
'278,,,,,278,278,,,278,,,278,278,,,,,,,278,,,,,,278,,,,278,278,,278,278',
|
505
|
+
',,,278,278,278,278,278,,,278,279,279,278,,279,279,,279,,,,,,,,,,,,,',
|
506
|
+
',,,279,279,,,,,,279,,279,,279,279,,279,279,279,,279,279,279,279,,,279',
|
507
|
+
'279,,,279,,,279,279,,,,,,,279,,,,,,279,,,,279,279,,279,279,,,,279,279',
|
508
|
+
'279,279,279,,,279,297,297,279,,297,297,,297,297,,,,,,,,,,,,,,,,297,297',
|
509
|
+
',,,,,297,,297,,297,297,,297,297,297,,297,297,297,297,,,297,297,,,297',
|
510
|
+
',,297,297,,,,,,,297,,,,,,297,,,,297,297,,297,297,,,,297,297,297,297',
|
511
|
+
'297,,,297,298,298,297,,298,298,,298,298,,,,,,,,,,,,,,,,298,298,,,,,',
|
512
|
+
'298,,298,,298,298,,298,298,298,,298,298,298,298,,,298,298,,,298,,,298',
|
513
|
+
'298,,,,,,,298,,,,,,298,,,,298,298,,298,298,,,,298,298,298,298,298,,',
|
514
|
+
'298,299,299,298,,299,299,,299,,,,,,,,,,,,,,,,,299,299,,,,,,299,,299',
|
515
|
+
',299,299,,299,299,299,,299,299,,,,,299,299,,,299,,,299,299,,,,,,,299',
|
516
|
+
',,,,,299,,,,299,299,,299,299,,,,299,299,299,299,299,,,299,313,313,299',
|
517
|
+
',313,313,,313,,,,,,,,,,,,,,,,,313,313,,,,,,313,,313,,313,313,,313,313',
|
518
|
+
'313,,313,313,313,313,,,313,313,,,313,,,313,313,,,,,,,313,,,,,,313,,',
|
519
|
+
',313,313,,313,313,,,,313,313,313,313,313,313,313,313,316,316,313,,316',
|
520
|
+
'316,,316,316,,,,,,,,,,,,,,,,316,316,,,,,,316,,316,,316,316,,316,316',
|
521
|
+
'316,,316,316,316,316,,,316,316,,,316,,,316,316,,,,,,,316,,,,,,316,,',
|
522
|
+
',316,316,,316,316,,,,316,316,316,316,316,316,316,316,317,317,316,,317',
|
523
|
+
'317,,317,,,,,,,,,,,,,,,,,317,317,,,,,,317,,317,,317,317,,317,317,317',
|
524
|
+
',317,317,317,317,,,317,317,,,317,,,317,317,,,,,,,317,,,,,,317,,,,317',
|
525
|
+
'317,,317,317,,,,317,317,317,317,317,317,317,317,322,322,317,,322,322',
|
526
|
+
',322,,,,,,,,,,,,,,,,,322,322,,,,,,322,,322,,322,322,,322,322,322,,322',
|
527
|
+
'322,322,322,,,322,322,,,322,,,322,322,,,,,,,322,,,,,,322,,,,322,322',
|
528
|
+
',322,322,,,,322,322,322,322,322,,,322,337,337,322,,337,337,,337,,,,',
|
529
|
+
',,,,,,,,,,,,337,337,,,,,,337,,337,,337,337,,337,337,337,,337,337,,,',
|
530
|
+
',337,337,,,337,,,337,337,,,,,,,337,,,,,,337,,,,337,337,,337,337,,,,337',
|
531
|
+
'337,337,337,337,,,337,338,338,337,,338,338,,338,,,,,,,,,,,,,,,,,338',
|
532
|
+
'338,,,,,,338,,338,,338,338,,338,338,338,,338,338,,,,,338,338,,,338,',
|
533
|
+
',338,338,,,,,,,338,,,,,,338,,,,338,338,,338,338,,,,338,338,338,338,338',
|
534
|
+
',,338,339,339,338,,339,339,,339,,,,,,,,,,,,,,,,,339,339,,,,,,339,,339',
|
535
|
+
',339,339,,339,339,339,,339,339,,,,,339,339,,,339,,,339,339,,,,,,,339',
|
536
|
+
',,,,,339,,,,339,339,,339,339,,,,339,339,339,339,339,,,339,340,340,339',
|
537
|
+
',340,340,,340,,,,,,,,,,,,,,,,,340,340,,,,,,340,,340,,340,340,,340,340',
|
538
|
+
'340,,340,340,,,,,340,340,,,340,,,340,340,,,,,,,340,,,,,,340,,,,340,340',
|
539
|
+
',340,340,,,,340,340,340,340,340,,,340,344,344,340,,344,344,,344,,,,',
|
540
|
+
',,,,,,,,,,,,344,344,,,,,,344,,344,,344,344,,344,344,344,,344,344,,,',
|
541
|
+
',344,344,,,344,,,344,344,,,,,,,344,,,,,,344,,,,344,344,,344,344,,,,344',
|
542
|
+
'344,344,344,344,,,344,365,365,344,,365,365,,365,,,,,,,,,,,,,,,,,365',
|
543
|
+
'365,,,,,,365,,365,,365,365,,365,365,365,,365,365,,,,,365,365,,,365,',
|
544
|
+
',365,365,,,,,,,365,,,,,,365,,,,365,365,,365,365,,,,365,365,365,365,365',
|
545
|
+
',,365,381,381,365,,381,381,,381,381,,,,,,,,,,,,,,,,381,381,,,,,,381',
|
546
|
+
',381,,381,381,,381,381,381,,381,381,381,381,,,381,381,,,381,,,381,381',
|
547
|
+
',,,,,,381,,,,,,381,,,,381,381,,381,381,,,,381,381,381,381,381,,,381',
|
548
|
+
'385,385,381,,385,385,,385,,,,,,,,,,,,,,,,,385,385,,,,,,385,,385,,385',
|
549
|
+
'385,,385,385,385,,385,385,,,,,385,385,,,385,,,385,385,,,,,,,385,,,,',
|
550
|
+
',385,,,,385,385,,385,385,,,,385,385,385,385,385,,,385,388,388,385,,388',
|
551
|
+
'388,,388,,,,,,,,,,,,,,,,,388,388,,,,,,388,,388,,388,388,,388,388,388',
|
552
|
+
',388,388,388,388,,,388,388,,,388,,,388,388,,,,,,,388,,,,,,388,,,,388',
|
553
|
+
'388,,388,388,,,,388,388,388,388,388,,,388,395,395,388,,395,395,,395',
|
554
|
+
'395,,,,,,,,,,,,,,,,395,395,,,,,,395,,395,,395,395,,395,395,395,,395',
|
555
|
+
'395,,,,,395,395,,,395,,,395,395,,,,,,,395,,,,,,395,,,,395,395,,395,395',
|
556
|
+
',,,395,395,395,395,395,,,395,397,397,395,,397,397,,397,,,,,,,,,,,,,',
|
557
|
+
',,,397,397,,,,,,397,,397,,397,397,,397,397,397,,397,397,397,397,,,397',
|
558
|
+
'397,,,397,,,397,397,,,,,,,397,,,,,,397,,,,397,397,,397,397,,,,397,397',
|
559
|
+
'397,397,397,,,397,398,398,397,,398,398,,398,,,,,,,,,,,,,,,,,398,398',
|
560
|
+
',,,,,398,,398,,398,398,,398,398,398,,398,398,398,398,,,398,398,,,398',
|
561
|
+
',,398,398,,,,,,,398,,,,,,398,,,,398,398,,398,398,,,,398,398,398,398',
|
562
|
+
'398,,,398,408,408,398,,408,408,,408,,,,,,,,,,,,,,,,,408,408,,,,,,408',
|
563
|
+
',408,,408,408,,408,408,408,,408,408,,,,,408,408,,,408,,,408,408,,,,',
|
564
|
+
',,408,,,,,,408,,,,408,408,,408,408,,,,408,408,408,408,408,,,408,426',
|
565
|
+
'426,408,,426,426,,426,,,,,,,,,,,,,,,,,426,426,,,,,,426,,426,,426,426',
|
566
|
+
',426,426,426,,426,426,,,,,426,426,,,426,,,426,426,,,,,,,426,,,,,,426',
|
567
|
+
',,,426,426,,426,426,,,,426,426,426,426,426,,,426,433,433,426,,433,433',
|
568
|
+
',433,,,,,,,,,,,,,,,,,433,433,,,,,,433,,433,,433,433,,433,433,433,,433',
|
569
|
+
'433,433,433,,,433,433,,,433,,,433,433,,,,,,,433,,,,,,433,,,,433,433',
|
570
|
+
',433,433,,,,433,433,433,433,433,,,433,441,441,433,,441,441,,441,,,,',
|
571
|
+
',,,,,,,,,,,,441,441,,,,,,441,,441,,441,441,,441,441,441,,441,441,,,',
|
572
|
+
',441,441,,,441,,,441,441,,,,,,,441,,,,,,441,,,,441,441,,441,441,,,,441',
|
573
|
+
'441,441,441,441,,,441,444,444,441,,444,444,,444,,,,,,,,,,,,,,,,,444',
|
574
|
+
'444,,,,,,444,,444,,444,444,,444,444,444,,444,444,444,444,,,444,444,',
|
575
|
+
',444,,,444,444,,,,,,,444,,,,,,444,,,,444,444,,444,444,,,,444,444,444',
|
576
|
+
'444,444,,,444,447,447,444,,447,447,,447,,,,,,,,,,,,,,,,,447,447,,,,',
|
577
|
+
',447,,447,,447,447,,447,447,447,,447,447,,,,,447,447,,,447,,,447,447',
|
578
|
+
',,,,,,447,,,,,,447,,,,447,447,,447,447,,,,447,447,447,447,447,,,447',
|
579
|
+
'453,453,447,,453,453,,453,,,,,,,,,,,,,,,,,453,453,,,,,,453,,453,,453',
|
580
|
+
'453,,453,453,453,,453,453,,,,,453,453,,,453,,,453,453,,,,,,,453,,,,',
|
581
|
+
',453,,,,453,453,,453,453,,,,453,453,453,453,453,,,453,466,466,453,,466',
|
582
|
+
'466,,466,466,,,,,,,,,,,,,,,,466,466,,,,,,466,,466,,466,466,,466,466',
|
583
|
+
'466,,466,466,466,466,,,466,466,,,466,,,466,466,,,,,,,466,,,,,,466,,',
|
584
|
+
',466,466,,466,466,,,,466,466,466,466,466,,,466,468,468,466,,468,468',
|
585
|
+
',468,,,,,,,,,,,,,,,,,468,468,,,,,,468,,468,,468,468,,468,468,468,,468',
|
586
|
+
'468,468,468,,,468,468,,,468,,,468,468,,,,,,,468,,,,,,468,,,,468,468',
|
587
|
+
',468,468,,,,468,468,468,468,468,,,468,487,487,468,,487,487,,487,487',
|
588
|
+
',,,,,,,,,,,,,,,487,487,,,,,,487,,487,,487,487,,487,487,487,,487,487',
|
589
|
+
'487,487,,,487,487,,,487,,,487,487,,,,,,,487,,,,,,487,,,,487,487,,487',
|
590
|
+
'487,,,,487,487,487,487,487,,,487,489,489,487,,489,489,,489,489,,,,,',
|
591
|
+
',,,,,,,,,,489,489,,,,,,489,,489,,489,489,,489,489,489,,489,489,489,489',
|
592
|
+
',,489,489,,,489,,,489,489,,,,,,,489,,,,,,489,,,,489,489,,489,489,,,',
|
593
|
+
'489,489,489,489,489,,,489,490,490,489,,490,490,,490,,,,,,,,,,,,,,,,',
|
594
|
+
'490,490,,,,,,490,,490,,490,490,,490,490,490,,490,490,490,490,,,490,490',
|
595
|
+
',,490,,,490,490,,,,,,,490,,,,,,490,,,,490,490,,490,490,,,,490,490,490',
|
596
|
+
'490,490,,,490,499,499,490,,499,499,,499,,,,,,,,,,,,,,,,,499,499,,,,',
|
597
|
+
',499,,499,,499,499,,499,499,499,,499,499,,,,,499,499,,,499,,,499,499',
|
598
|
+
',,,,,,499,,,,,,499,,,,499,499,,499,499,,,9,499,499,499,499,499,,,499',
|
599
|
+
',,499,9,9,9,,9,,9,,9,,9,9,9,9,,,,,,,,,,,,,,,,9,,,,9,9,,,9,9,9,9,9,9',
|
600
|
+
',9,9,148,,148,,,9,,,,,,,148,148,148,,148,,148,,148,,148,148,148,148',
|
601
|
+
',,,,9,,,,,,,,,,,148,,,,148,148,,,148,148,148,148,148,148,,148,148,150',
|
602
|
+
',150,,,148,,,,,,,150,150,150,,150,,150,,150,,150,150,150,150,,,,,148',
|
603
|
+
',,,,,,,,,,150,,,,150,150,,,150,150,150,150,150,150,,150,150,151,,151',
|
604
|
+
',,150,,,,,,,151,151,151,,151,,151,,151,,151,151,151,151,,,,,150,,,,',
|
605
|
+
',,,,,,151,,,,151,151,,193,151,151,151,151,151,151,,151,151,,,193,193',
|
606
|
+
'193,151,193,,193,,193,,193,193,193,193,,,,,,,,,,,,,,,151,193,,,,193',
|
607
|
+
'193,,,193,193,193,193,193,193,,193,193,,,,,,193,,,,205,,,,,,,193,193',
|
608
|
+
',,,205,205,205,205,205,242,205,,205,193,205,205,205,205,,,,,,242,,242',
|
609
|
+
',242,,242,,,,205,,,,205,205,,,205,205,205,205,205,205,,205,205,242,',
|
610
|
+
',243,,205,,,242,242,242,242,,,,242,242,243,,243,244,243,242,243,,,,',
|
611
|
+
',,205,,,,244,,244,,244,,244,,,,243,,,242,,,,,243,243,243,243,,,,243',
|
612
|
+
'243,244,,,245,,243,,,244,244,244,244,244,244,,244,244,245,,245,246,245',
|
613
|
+
'244,245,,,,,,,243,,,246,246,,246,,246,,246,,246,,245,,,244,,,,,245,245',
|
614
|
+
'245,245,245,245,,245,245,246,,,,,245,,247,246,246,246,246,246,246,,246',
|
615
|
+
'246,,,,247,247,246,247,248,247,,247,,247,245,,,,,,,248,248,,248,,248',
|
616
|
+
',248,,248,246,247,,,,,,,,247,247,247,247,247,247,,247,247,248,,,,,247',
|
617
|
+
',249,248,248,248,248,248,248,,248,248,,,,249,249,248,249,,249,,249,',
|
618
|
+
'249,247,,,,,,,,,,,,,,,,,248,249,,,,,250,,,249,249,249,249,249,249,,249',
|
619
|
+
'249,250,250,250,,250,249,250,,250,,250,250,250,250,,,,,,,,,,,,,,,,250',
|
620
|
+
'249,,,,251,,,250,250,250,250,250,250,,250,250,251,251,251,,251,250,251',
|
621
|
+
',251,,251,251,251,251,,,,,,,,,,,,,,,,251,250,,,,251,,,251,251,251,251',
|
622
|
+
'251,251,252,251,251,,,252,,,251,,,,252,252,252,,252,,252,,252,,252,252',
|
623
|
+
'252,252,,,,,,,,251,,,,,,,,252,,,,252,252,,256,252,252,252,252,252,252',
|
624
|
+
',252,252,,,256,256,256,252,256,,256,,256,,256,256,256,256,,,,,,,,,,',
|
625
|
+
',,,,252,256,,,,256,256,,261,256,256,256,256,256,256,,256,256,,,261,261',
|
626
|
+
'261,256,261,,261,,261,,261,261,261,261,,,,,,,,,,,,,,,256,261,,,,261',
|
627
|
+
'261,,,261,261,261,261,261,261,266,261,261,,,,,,261,,,,266,266,266,266',
|
628
|
+
'266,,266,,266,,266,266,266,266,,,,,,,,261,,,,,,,,266,,,,266,266,,421',
|
629
|
+
'266,266,266,266,266,266,,266,266,,,421,421,421,266,421,,421,,421,,421',
|
630
|
+
'421,421,421,,,,,,,,,,,,,,,266,421,,,,421,421,,422,421,421,421,421,421',
|
631
|
+
'421,,421,421,,,422,422,422,421,422,,422,,422,,422,422,422,422,,,,,,',
|
632
|
+
',,,,,,,,421,422,,,,422,422,,423,422,422,422,422,422,422,,422,422,,,423',
|
633
|
+
'423,423,422,423,,423,,423,,423,423,423,423,,,,,,,,,,,,,,,422,423,,,',
|
634
|
+
'423,423,,424,423,423,423,423,423,423,,423,423,,,424,424,424,423,424',
|
635
|
+
',424,,424,,424,424,424,424,,,,,,,,,,,,,,,423,424,,,,424,424,,428,424',
|
636
|
+
'424,424,424,424,424,,424,424,,,428,428,428,424,428,,428,,428,,428,428',
|
637
|
+
'428,428,,,,,,,,,,,,,,,424,428,,,,428,428,,450,428,428,428,428,428,428',
|
638
|
+
',428,428,,,450,450,450,428,450,,450,,450,,450,450,450,450,,,,,,,,,,',
|
639
|
+
',,,,428,450,,,,450,450,,,450,450,450,450,450,450,,450,450,,260,260,260',
|
640
|
+
'260,450,260,260,260,,260,,260,260,,,,,,,260,260,260,,,,260,,,,450,,',
|
641
|
+
',,,,,260,260,,,,,,,,,,,,260,260,260,260,260,260,260,260,334,334,334',
|
642
|
+
'334,,334,334,334,,334,,334,334,,,,,,,334,334,334,,,,334,,,,,,,,,,,,334',
|
643
|
+
'334,,,,,,,,,,,,334,334,334,334,334,334,334,334,336,336,336,336,,336',
|
644
|
+
'336,336,,336,,336,336,,,,,,,336,336,336,,,,336,,,,,,,,,,,,336,336,,',
|
645
|
+
',,,,,,,,,336,336,336,336,336,336,336,336,366,366,366,366,,366,366,366',
|
646
|
+
',366,,366,366,,,,,,,366,366,366,,,,366,,,,,,,,,,,,366,366,,,,,,,,,,',
|
647
|
+
',366,366,366,366,366,366,366,366,374,374,374,374,,374,374,374,,374,',
|
648
|
+
'374,374,,,,,,,374,374,374,,,,374,,,,,,,,,,,,374,374,,,,,,,,,,,,374,374',
|
649
|
+
'374,374,374,374,374,374,399,399,399,399,,399,399,399,,399,,399,399,',
|
650
|
+
',,,,,399,399,399,,,,399,,,,,,,,,,,,399,399,,,,,,,,,,,,399,399,399,399',
|
651
|
+
'399,399,399,399' ]
|
652
|
+
racc_action_check = arr = ::Array.new(9980, nil)
|
655
653
|
idx = 0
|
656
654
|
clist.each do |str|
|
657
655
|
str.split(',', -1).each do |i|
|
@@ -661,240 +659,242 @@ clist = [
|
|
661
659
|
end
|
662
660
|
|
663
661
|
racc_action_pointer = [
|
664
|
-
-2,
|
665
|
-
176, 265,
|
662
|
+
-2, 34, nil, nil, 87, 54, nil, -8, 78, 8439,
|
663
|
+
176, 265, 62, nil, nil, nil, 168, 354, 443, 532,
|
666
664
|
621, 710, nil, nil, nil, nil, nil, nil, nil, nil,
|
667
665
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
668
|
-
nil, nil, nil, nil, nil, nil, nil,
|
669
|
-
|
670
|
-
244,
|
671
|
-
nil, nil, nil, 1422, nil,
|
672
|
-
|
673
|
-
2312, 2401, 2490, 2579, 2668, 2757, 2846, 2935, 3024,
|
674
|
-
3202, 3291, 3380, 3469, 3558, 3647, 3736, 3825, 3914,
|
675
|
-
4092, 4181, nil,
|
676
|
-
|
677
|
-
539, 282, 628, 662,
|
678
|
-
|
679
|
-
8613,
|
680
|
-
nil, nil, nil, nil, nil, nil,
|
681
|
-
|
682
|
-
6, nil, nil,
|
683
|
-
|
684
|
-
|
685
|
-
4982, 5071, 5160, nil, nil, 15, 422, 425,
|
686
|
-
859, 460, 17,
|
687
|
-
nil, nil, 717, 5, 94, 306, 395, 128,
|
688
|
-
8745, 8789, 8806, 8850, 8867, 8915, 8932, 8980,
|
689
|
-
9127, nil, nil, 5249, 9175,
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
nil, nil, nil,
|
697
|
-
|
698
|
-
|
666
|
+
nil, nil, nil, nil, nil, nil, nil, 188, 799, 157,
|
667
|
+
27, 96, 888, 977, 1066, 60, 193, 190, 127, 503,
|
668
|
+
244, 229, 237, 257, 127, nil, nil, nil, 1155, 1244,
|
669
|
+
1333, nil, nil, nil, 1422, nil, 70, 78, nil, 1511,
|
670
|
+
nil, 160, 1600, 156, 1689, 1778, 1867, 1956, 2045, 2134,
|
671
|
+
2223, 2312, 2401, 2490, 2579, 2668, 2757, 2846, 2935, 3024,
|
672
|
+
3113, 3202, 3291, 3380, 3469, 3558, 3647, 3736, 3825, 3914,
|
673
|
+
4003, 4092, 4181, nil, 8, 166, 4270, 4359, 181, 185,
|
674
|
+
4448, 340, nil, nil, nil, nil, nil, nil, 247, nil,
|
675
|
+
nil, 539, 282, 628, 662, 173, 176, nil, 199, 143,
|
676
|
+
nil, 218, nil, 8, nil, 167, -35, 4537, 8497, nil,
|
677
|
+
8555, 8613, 358, 380, 333, 4626, 223, nil, 218, nil,
|
678
|
+
nil, nil, nil, nil, nil, nil, nil, 388, 4, 169,
|
679
|
+
336, 236, 371, 235, nil, nil, nil, nil, nil, nil,
|
680
|
+
245, nil, 6, nil, nil, 252, nil, 430, nil, nil,
|
681
|
+
293, 4715, 68, 8661, 4804, nil, 260, nil, nil, nil,
|
682
|
+
nil, 274, 281, 284, 292, 8728, 291, 4893, 2, 10,
|
683
|
+
-9, 179, 4982, 5071, 5160, nil, nil, 15, 422, 425,
|
684
|
+
155, 299, 859, 460, 17, 91, nil, nil, nil, nil,
|
685
|
+
nil, nil, nil, nil, 717, 5, 94, 306, 395, 128,
|
686
|
+
217, 573, 8745, 8789, 8806, 8850, 8867, 8915, 8932, 8980,
|
687
|
+
9026, 9072, 9127, nil, nil, 5249, 9175, 301, nil, nil,
|
688
|
+
9599, 9223, 272, nil, 304, 291, 9278, nil, 298, nil,
|
689
|
+
58, 131, 338, nil, nil, 5338, 325, nil, 5427, 5516,
|
690
|
+
309, 353, 318, nil, nil, 359, nil, nil, nil, nil,
|
691
|
+
nil, 363, 345, -17, nil, -7, nil, 5605, 5694, 5783,
|
692
|
+
379, 381, 384, 387, nil, 361, 948, -24, 342, 100,
|
693
|
+
nil, nil, 402, 5872, 409, nil, 5961, 6050, nil, nil,
|
694
|
+
nil, nil, 6139, nil, nil, nil, nil, 410, nil, nil,
|
695
|
+
nil, nil, 414, 426, 9657, 432, 9715, 6228, 6317, 6406,
|
696
|
+
6495, 435, nil, 443, 6584, 444, nil, 449, nil, nil,
|
699
697
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
nil,
|
706
|
-
|
707
|
-
nil, nil,
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
nil, nil,
|
712
|
-
nil,
|
713
|
-
|
714
|
-
nil,
|
715
|
-
nil, nil ]
|
698
|
+
nil, nil, nil, nil, 458, 6673, 9773, 462, nil, 505,
|
699
|
+
nil, 460, nil, 461, 9831, nil, 405, 98, 469, 473,
|
700
|
+
nil, 6762, 479, 417, 150, 6851, nil, nil, 6940, nil,
|
701
|
+
481, 120, 482, 461, 126, 7029, nil, 7118, 7207, 9889,
|
702
|
+
nil, 487, nil, 1037, nil, nil, 490, nil, 7296, nil,
|
703
|
+
nil, nil, nil, nil, nil, nil, 431, 374, 491, nil,
|
704
|
+
nil, 9326, 9374, 9422, 9470, 502, 7385, nil, 9518, 503,
|
705
|
+
nil, nil, 502, 7474, nil, nil, nil, 488, 489, 507,
|
706
|
+
nil, 7563, nil, nil, 7652, 513, nil, 7741, nil, nil,
|
707
|
+
9566, 152, nil, 7830, 515, 491, nil, 522, 523, nil,
|
708
|
+
nil, 527, nil, nil, 530, 529, 7919, nil, 8008, 224,
|
709
|
+
nil, nil, 534, 506, nil, nil, nil, nil, 541, nil,
|
710
|
+
nil, 542, 543, nil, 262, nil, nil, 8097, nil, 8186,
|
711
|
+
8275, nil, nil, 544, 546, nil, 547, nil, nil, 8364,
|
712
|
+
nil, nil, nil, nil, 551, nil, 553, nil, 561, nil,
|
713
|
+
nil, nil, nil, nil, 532, nil, nil, nil, nil ]
|
716
714
|
|
717
715
|
racc_action_default = [
|
718
|
-
-3, -
|
719
|
-
-
|
720
|
-
-
|
716
|
+
-3, -288, -1, -2, -4, -5, -8, -10, -16, -21,
|
717
|
+
-288, -288, -182, -33, -34, -35, -36, -288, -288, -288,
|
718
|
+
-288, -288, -64, -65, -66, -67, -68, -69, -70, -71,
|
721
719
|
-72, -73, -74, -75, -76, -77, -78, -79, -80, -81,
|
722
|
-
-82, -83, -84, -85, -86, -87, -88, -89, -
|
723
|
-
-96, -100, -
|
724
|
-
-
|
725
|
-
-
|
726
|
-
-
|
727
|
-
-
|
728
|
-
-
|
729
|
-
-
|
730
|
-
-
|
731
|
-
-47, -182, -48, -55, -
|
732
|
-
-199, -
|
733
|
-
-
|
734
|
-
-168, -169, -171, -172, -
|
735
|
-
-
|
736
|
-
-
|
737
|
-
-
|
738
|
-
-18, -19, -20, -
|
739
|
-
|
740
|
-
-
|
741
|
-
-
|
742
|
-
-45, -46, -49, -50, -51, -52, -53, -54,
|
743
|
-
-
|
744
|
-
-
|
745
|
-
-
|
746
|
-
-
|
747
|
-
-196, -
|
748
|
-
-
|
749
|
-
-
|
750
|
-
-
|
751
|
-
-
|
752
|
-
-
|
753
|
-
-
|
754
|
-
-283, -
|
755
|
-
-
|
756
|
-
-
|
757
|
-
-
|
758
|
-
-
|
759
|
-
-
|
760
|
-
-
|
761
|
-
|
762
|
-
|
763
|
-
-
|
764
|
-
-
|
765
|
-
-
|
766
|
-
-
|
767
|
-
-
|
768
|
-
-
|
769
|
-
-123, -32 ]
|
720
|
+
-82, -83, -84, -85, -86, -87, -88, -89, -288, -288,
|
721
|
+
-96, -100, -288, -288, -288, -288, -288, -288, -288, -288,
|
722
|
+
-288, -236, -259, -235, -288, -209, -210, -211, -288, -288,
|
723
|
+
-288, -232, -233, -234, -288, -238, -288, -251, -254, -288,
|
724
|
+
-260, -288, -288, -7, -288, -288, -288, -288, -288, -288,
|
725
|
+
-288, -288, -137, -288, -288, -288, -288, -288, -288, -288,
|
726
|
+
-288, -288, -288, -288, -288, -288, -288, -288, -288, -288,
|
727
|
+
-288, -288, -288, -94, -288, -132, -287, -287, -22, -23,
|
728
|
+
-288, -287, -152, -179, -180, -181, -182, -183, -288, -149,
|
729
|
+
-150, -47, -182, -48, -55, -288, -288, -14, -261, -91,
|
730
|
+
-95, -199, -206, -259, -97, -287, -288, -288, -288, -108,
|
731
|
+
-288, -288, -287, -287, -288, -288, -261, -163, -165, -166,
|
732
|
+
-167, -168, -169, -171, -172, -235, -236, -287, -288, -226,
|
733
|
+
-228, -231, -227, -261, -213, -222, -223, -224, -229, -230,
|
734
|
+
-261, -215, -288, -218, -219, -288, -237, -288, -242, -245,
|
735
|
+
-288, -249, -288, -288, -288, 519, -6, -9, -11, -12,
|
736
|
+
-13, -17, -18, -19, -20, -288, -261, -288, -87, -88,
|
737
|
+
-89, -279, -272, -278, -266, -138, -141, -288, -269, -283,
|
738
|
+
-182, -286, -275, -281, -210, -211, -265, -270, -271, -273,
|
739
|
+
-274, -276, -284, -285, -37, -38, -39, -40, -41, -42,
|
740
|
+
-43, -44, -45, -46, -49, -50, -51, -52, -53, -54,
|
741
|
+
-56, -57, -288, -58, -126, -288, -62, -261, -101, -102,
|
742
|
+
-137, -136, -288, -135, -288, -263, -288, -28, -287, -184,
|
743
|
+
-288, -288, -288, -59, -60, -262, -288, -93, -288, -249,
|
744
|
+
-288, -288, -288, -178, -106, -261, -189, -191, -192, -193,
|
745
|
+
-194, -196, -288, -288, -259, -288, -99, -288, -288, -288,
|
746
|
+
-288, -288, -288, -288, -160, -287, -262, -288, -287, -203,
|
747
|
+
-204, -205, -288, -262, -288, -216, -288, -288, -239, -240,
|
748
|
+
-241, -243, -288, -246, -247, -248, -250, -261, -252, -255,
|
749
|
+
-257, -258, -8, -288, -137, -288, -262, -288, -288, -288,
|
750
|
+
-288, -261, -128, -288, -262, -261, -140, -288, -266, -267,
|
751
|
+
-268, -269, -272, -275, -277, -278, -279, -280, -281, -282,
|
752
|
+
-283, -286, -133, -134, -288, -264, -137, -288, -155, -288,
|
753
|
+
-185, -261, -186, -261, -137, -15, -90, -288, -288, -288,
|
754
|
+
-103, -288, -176, -288, -262, -288, -197, -198, -288, -98,
|
755
|
+
-288, -111, -288, -117, -288, -288, -121, -287, -287, -137,
|
756
|
+
-159, -288, -173, -288, -164, -170, -288, -201, -288, -212,
|
757
|
+
-225, -214, -217, -220, -221, -244, -288, -288, -261, -26,
|
758
|
+
-139, -144, -142, -143, -130, -288, -262, -61, -63, -288,
|
759
|
+
-25, -29, -261, -287, -156, -157, -158, -288, -288, -261,
|
760
|
+
-92, -288, -200, -207, -249, -288, -105, -288, -107, -190,
|
761
|
+
-195, -111, -110, -288, -288, -117, -116, -288, -288, -120,
|
762
|
+
-122, -288, -153, -154, -288, -261, -288, -174, -287, -288,
|
763
|
+
-253, -256, -288, -30, -127, -129, -131, -27, -288, -187,
|
764
|
+
-188, -288, -288, -104, -288, -109, -112, -288, -115, -288,
|
765
|
+
-287, -145, -146, -288, -288, -162, -288, -202, -24, -31,
|
766
|
+
-151, -148, -208, -177, -288, -114, -288, -119, -288, -124,
|
767
|
+
-125, -147, -161, -175, -263, -113, -118, -123, -32 ]
|
770
768
|
|
771
769
|
racc_goto_table = [
|
772
|
-
2,
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
nil,
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
nil, nil,
|
794
|
-
nil,
|
795
|
-
nil, nil, nil, nil,
|
796
|
-
|
797
|
-
nil, nil, nil,
|
798
|
-
|
799
|
-
|
800
|
-
nil, nil, nil,
|
801
|
-
|
802
|
-
nil,
|
803
|
-
|
804
|
-
|
805
|
-
nil,
|
806
|
-
|
807
|
-
|
808
|
-
nil,
|
809
|
-
|
810
|
-
|
811
|
-
nil, nil, nil,
|
812
|
-
nil, nil, nil, 475, nil, nil, 250, nil, nil, nil,
|
770
|
+
2, 122, 131, 133, 134, 265, 135, 136, 161, 159,
|
771
|
+
257, 263, 263, 364, 144, 281, 254, 329, 325, 177,
|
772
|
+
177, 141, 186, 285, 142, 310, 138, 206, 396, 404,
|
773
|
+
118, 119, 276, 1, 137, 83, 3, 148, 150, 151,
|
774
|
+
283, 472, 456, 431, 152, 153, 253, 452, 311, 167,
|
775
|
+
305, 262, 264, 380, 175, 175, 175, 173, 180, 486,
|
776
|
+
188, 395, 508, 341, 193, 420, 367, 312, 434, 327,
|
777
|
+
197, 198, 199, 200, 314, 128, 401, 205, 234, 235,
|
778
|
+
236, 237, 238, 239, 240, 241, 242, 243, 244, 245,
|
779
|
+
246, 247, 248, 249, 250, 251, 252, 256, 461, 464,
|
780
|
+
335, 261, 261, 277, 488, 266, 378, 485, 201, 202,
|
781
|
+
203, 204, 405, 196, 449, 387, 154, 272, 141, 386,
|
782
|
+
413, 122, 268, 323, 460, 295, 467, 324, 321, 322,
|
783
|
+
320, 189, 191, 137, 478, nil, nil, nil, nil, nil,
|
784
|
+
309, 141, nil, 302, 142, nil, nil, 371, 373, nil,
|
785
|
+
nil, 343, nil, 300, 301, 303, nil, nil, nil, 153,
|
786
|
+
342, 167, nil, 368, 141, nil, 407, nil, 308, 496,
|
787
|
+
nil, 161, 159, nil, nil, nil, 377, nil, 406, 383,
|
788
|
+
332, nil, nil, 141, nil, nil, 142, nil, nil, nil,
|
789
|
+
nil, 326, 133, nil, 333, 345, nil, 148, 150, 151,
|
790
|
+
402, nil, nil, 283, nil, nil, nil, 152, 153, 122,
|
791
|
+
nil, nil, 167, nil, nil, nil, nil, nil, nil, nil,
|
792
|
+
nil, 416, nil, nil, nil, nil, nil, nil, nil, nil,
|
793
|
+
nil, nil, nil, nil, nil, 425, nil, nil, nil, 429,
|
794
|
+
252, 471, 141, 141, nil, nil, nil, nil, nil, nil,
|
795
|
+
nil, nil, nil, nil, 382, 161, 159, nil, nil, nil,
|
796
|
+
nil, 375, 518, 256, 410, 437, nil, 438, 414, 418,
|
797
|
+
415, 482, nil, nil, nil, nil, nil, nil, nil, 326,
|
798
|
+
nil, nil, nil, nil, 256, nil, nil, nil, nil, nil,
|
799
|
+
nil, nil, 463, 463, nil, nil, nil, 390, 392, 175,
|
800
|
+
nil, 432, 175, 175, nil, nil, 469, nil, 188, 439,
|
801
|
+
nil, nil, 473, nil, nil, nil, nil, nil, nil, nil,
|
802
|
+
nil, nil, 421, 422, 423, 424, 477, nil, 463, 428,
|
803
|
+
nil, 475, nil, 481, 465, nil, nil, nil, nil, nil,
|
804
|
+
440, nil, nil, nil, nil, 484, nil, nil, nil, nil,
|
805
|
+
266, nil, 161, 159, nil, nil, 141, nil, 435, 493,
|
806
|
+
nil, nil, nil, 463, nil, nil, nil, nil, nil, nil,
|
807
|
+
450, nil, nil, nil, 375, nil, nil, nil, nil, nil,
|
808
|
+
256, 445, nil, nil, 514, 509, nil, nil, nil, nil,
|
809
|
+
nil, nil, nil, 256, nil, nil, nil, nil, nil, nil,
|
813
810
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
814
|
-
nil,
|
815
|
-
nil, nil, nil,
|
811
|
+
nil, 252, nil, nil, nil, nil, nil, nil, nil, nil,
|
812
|
+
nil, nil, nil, nil, nil, nil, 428, nil, nil, nil,
|
813
|
+
nil, nil, 256, nil, nil, nil, nil, nil, 148, nil,
|
814
|
+
nil, nil, nil, nil, 326, nil, nil, nil, nil, nil,
|
816
815
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
816
|
+
nil, nil, nil, nil, nil, nil, 494, nil, nil, nil,
|
817
817
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
818
|
-
nil,
|
819
|
-
|
820
|
-
nil, 497, nil, 499, 503 ]
|
818
|
+
nil, nil, nil, nil, 266, nil, nil, 504, nil, 506,
|
819
|
+
510 ]
|
821
820
|
|
822
821
|
racc_goto_check = [
|
823
|
-
2,
|
824
|
-
|
825
|
-
|
826
|
-
9, 9,
|
827
|
-
58,
|
828
|
-
|
829
|
-
|
830
|
-
6, 6, 6,
|
822
|
+
2, 66, 10, 10, 10, 13, 6, 6, 41, 42,
|
823
|
+
22, 58, 58, 14, 45, 49, 59, 102, 85, 89,
|
824
|
+
89, 43, 95, 51, 83, 40, 8, 11, 56, 75,
|
825
|
+
9, 9, 15, 1, 6, 5, 3, 10, 10, 10,
|
826
|
+
58, 12, 54, 16, 66, 66, 21, 53, 39, 66,
|
827
|
+
15, 62, 62, 50, 6, 6, 6, 86, 86, 52,
|
828
|
+
6, 55, 57, 60, 10, 63, 71, 15, 72, 51,
|
829
|
+
6, 6, 6, 6, 15, 69, 74, 10, 10, 10,
|
831
830
|
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
|
832
|
-
10, 10, 10, 10, 10, 10, 10,
|
833
|
-
10, 10,
|
834
|
-
9,
|
835
|
-
|
836
|
-
99, 100, 6,
|
837
|
-
|
838
|
-
nil,
|
839
|
-
|
840
|
-
41, 42, nil,
|
841
|
-
|
842
|
-
10, nil, 2,
|
843
|
-
58, nil, nil, 58, nil, nil, nil,
|
844
|
-
nil, nil, 66,
|
845
|
-
nil, nil, nil, nil,
|
846
|
-
nil, nil, nil, nil,
|
847
|
-
|
848
|
-
nil, nil, nil,
|
849
|
-
|
850
|
-
|
831
|
+
10, 10, 10, 10, 10, 10, 10, 10, 68, 68,
|
832
|
+
15, 10, 10, 45, 54, 10, 85, 53, 9, 9,
|
833
|
+
9, 9, 77, 5, 78, 79, 69, 66, 43, 81,
|
834
|
+
88, 66, 67, 91, 56, 8, 75, 92, 96, 97,
|
835
|
+
99, 100, 101, 6, 68, nil, nil, nil, nil, nil,
|
836
|
+
43, 43, nil, 66, 83, nil, nil, 51, 51, nil,
|
837
|
+
nil, 15, nil, 67, 67, 2, nil, nil, nil, 66,
|
838
|
+
59, 66, nil, 58, 43, nil, 40, nil, 67, 68,
|
839
|
+
nil, 41, 42, nil, nil, nil, 22, nil, 49, 15,
|
840
|
+
6, nil, nil, 43, nil, nil, 83, nil, nil, nil,
|
841
|
+
nil, 2, 10, nil, 2, 11, nil, 10, 10, 10,
|
842
|
+
58, nil, nil, 58, nil, nil, nil, 66, 66, 66,
|
843
|
+
nil, nil, 66, nil, nil, nil, nil, nil, nil, nil,
|
844
|
+
nil, 15, nil, nil, nil, nil, nil, nil, nil, nil,
|
845
|
+
nil, nil, nil, nil, nil, 15, nil, nil, nil, 15,
|
846
|
+
10, 102, 43, 43, nil, nil, nil, nil, nil, nil,
|
847
|
+
nil, nil, nil, nil, 43, 41, 42, nil, nil, nil,
|
848
|
+
nil, 6, 14, 10, 89, 15, nil, 15, 89, 11,
|
849
|
+
95, 85, nil, nil, nil, nil, nil, nil, nil, 2,
|
850
|
+
nil, nil, nil, nil, 10, nil, nil, nil, nil, nil,
|
851
|
+
nil, nil, 58, 58, nil, nil, nil, 2, 2, 6,
|
852
|
+
nil, 11, 6, 6, nil, nil, 22, nil, 6, 11,
|
853
|
+
nil, nil, 15, nil, nil, nil, nil, nil, nil, nil,
|
854
|
+
nil, nil, 10, 10, 10, 10, 15, nil, 58, 10,
|
855
|
+
nil, 59, nil, 15, 11, nil, nil, nil, nil, nil,
|
856
|
+
45, nil, nil, nil, nil, 22, nil, nil, nil, nil,
|
857
|
+
10, nil, 41, 42, nil, nil, 43, nil, 66, 15,
|
858
|
+
nil, nil, nil, 58, nil, nil, nil, nil, nil, nil,
|
859
|
+
10, nil, nil, nil, 6, nil, nil, nil, nil, nil,
|
860
|
+
10, 2, nil, nil, 13, 58, nil, nil, nil, nil,
|
851
861
|
nil, nil, nil, 10, nil, nil, nil, nil, nil, nil,
|
852
|
-
58, 58, 15, nil, nil, 6, 2, 2, 6, 6,
|
853
|
-
nil, nil, nil, 11, 6, nil, 15, nil, nil, nil,
|
854
|
-
15, 11, nil, nil, nil, nil, 59, nil, 10, 10,
|
855
|
-
10, 10, nil, nil, 58, 10, nil, nil, nil, nil,
|
856
|
-
nil, nil, nil, nil, nil, nil, 15, 11, 15, 45,
|
857
|
-
nil, nil, nil, nil, nil, 22, 10, 43, nil, nil,
|
858
|
-
41, 42, nil, nil, nil, nil, nil, nil, nil, 58,
|
859
|
-
nil, 66, nil, nil, nil, nil, nil, 10, nil, nil,
|
860
|
-
nil, 6, nil, nil, 13, nil, nil, 10, 2, nil,
|
861
|
-
58, nil, 15, nil, nil, nil, nil, nil, nil, nil,
|
862
|
-
nil, nil, nil, nil, nil, nil, 15, nil, nil, nil,
|
863
|
-
nil, nil, nil, 15, nil, nil, 10, nil, nil, nil,
|
864
862
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
865
|
-
nil, 10, nil, nil, nil, nil, nil,
|
866
|
-
nil, nil, nil,
|
863
|
+
nil, 10, nil, nil, nil, nil, nil, nil, nil, nil,
|
864
|
+
nil, nil, nil, nil, nil, nil, 10, nil, nil, nil,
|
865
|
+
nil, nil, 10, nil, nil, nil, nil, nil, 10, nil,
|
866
|
+
nil, nil, nil, nil, 2, nil, nil, nil, nil, nil,
|
867
867
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
868
|
+
nil, nil, nil, nil, nil, nil, 2, nil, nil, nil,
|
868
869
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
869
|
-
nil,
|
870
|
-
|
871
|
-
nil, 2, nil, 2, 2 ]
|
870
|
+
nil, nil, nil, nil, 10, nil, nil, 2, nil, 2,
|
871
|
+
2 ]
|
872
872
|
|
873
873
|
racc_goto_pointer = [
|
874
|
-
nil,
|
875
|
-
-15, -
|
876
|
-
nil, -
|
877
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
878
|
-
|
879
|
-
-
|
880
|
-
-
|
881
|
-
nil, -
|
882
|
-
nil, -
|
883
|
-
-
|
884
|
-
55, -
|
874
|
+
nil, 33, 0, 36, nil, 31, -14, nil, -22, 20,
|
875
|
+
-15, -65, -377, -115, -252, -106, -322, nil, nil, nil,
|
876
|
+
nil, -65, -102, nil, nil, nil, nil, nil, nil, nil,
|
877
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, -120,
|
878
|
+
-143, -51, -50, -28, nil, -36, nil, nil, nil, -130,
|
879
|
+
-228, -123, -394, -344, -351, -238, -271, -428, -105, -95,
|
880
|
+
-192, nil, -65, -271, nil, nil, -11, 1, -299, 59,
|
881
|
+
nil, -202, -301, nil, -229, -277, nil, -195, -270, -178,
|
882
|
+
nil, -173, nil, -25, nil, -173, -11, nil, -196, -49,
|
883
|
+
nil, -67, -63, nil, nil, -52, -59, -58, nil, -57,
|
884
|
+
55, 55, -176 ]
|
885
885
|
|
886
886
|
racc_goto_default = [
|
887
|
-
nil, nil,
|
888
|
-
9, nil, nil, nil, nil, nil,
|
889
|
-
16, nil,
|
887
|
+
nil, nil, 462, nil, 4, 5, 6, 7, nil, 8,
|
888
|
+
9, nil, nil, nil, nil, nil, 267, 13, 14, 15,
|
889
|
+
16, nil, 394, 22, 23, 24, 25, 26, 27, 28,
|
890
890
|
29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
|
891
|
-
39, 40, 41, 42, 48, nil, 50, 51,
|
892
|
-
nil, nil,
|
893
|
-
nil,
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
nil, nil ]
|
891
|
+
39, 40, 41, 42, 48, nil, 50, 51, 145, nil,
|
892
|
+
nil, nil, 149, nil, nil, nil, nil, nil, 269, nil,
|
893
|
+
nil, 115, nil, 215, 217, 216, 57, nil, nil, nil,
|
894
|
+
121, nil, nil, 156, nil, 157, 158, 162, 286, 287,
|
895
|
+
288, 289, 290, 293, 64, nil, nil, 182, 184, 185,
|
896
|
+
176, 71, 72, 73, 74, nil, nil, nil, 187, nil,
|
897
|
+
nil, nil, nil ]
|
898
898
|
|
899
899
|
racc_reduce_table = [
|
900
900
|
0, 0, :racc_error,
|
@@ -1099,62 +1099,67 @@ racc_reduce_table = [
|
|
1099
1099
|
1, 179, :_reduce_199,
|
1100
1100
|
4, 179, :_reduce_200,
|
1101
1101
|
4, 132, :_reduce_201,
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
4,
|
1113
|
-
2,
|
1114
|
-
|
1115
|
-
|
1116
|
-
3,
|
1117
|
-
|
1118
|
-
|
1119
|
-
1,
|
1120
|
-
3,
|
1121
|
-
|
1122
|
-
1, 185, :_reduce_none,
|
1123
|
-
1, 185, :_reduce_none,
|
1124
|
-
1, 185, :_reduce_none,
|
1125
|
-
1, 185, :_reduce_none,
|
1102
|
+
6, 132, :_reduce_202,
|
1103
|
+
3, 132, :_reduce_203,
|
1104
|
+
3, 132, :_reduce_204,
|
1105
|
+
3, 132, :_reduce_205,
|
1106
|
+
2, 180, :_reduce_206,
|
1107
|
+
5, 133, :_reduce_207,
|
1108
|
+
7, 133, :_reduce_208,
|
1109
|
+
1, 119, :_reduce_209,
|
1110
|
+
1, 134, :_reduce_210,
|
1111
|
+
1, 134, :_reduce_211,
|
1112
|
+
4, 135, :_reduce_212,
|
1113
|
+
2, 135, :_reduce_213,
|
1114
|
+
4, 135, :_reduce_214,
|
1115
|
+
2, 135, :_reduce_215,
|
1116
|
+
3, 136, :_reduce_216,
|
1117
|
+
4, 136, :_reduce_217,
|
1118
|
+
2, 136, :_reduce_218,
|
1119
|
+
1, 183, :_reduce_219,
|
1120
|
+
3, 183, :_reduce_220,
|
1121
|
+
3, 184, :_reduce_221,
|
1126
1122
|
1, 185, :_reduce_none,
|
1123
|
+
1, 185, :_reduce_223,
|
1124
|
+
1, 182, :_reduce_224,
|
1125
|
+
3, 182, :_reduce_225,
|
1126
|
+
1, 186, :_reduce_none,
|
1127
|
+
1, 186, :_reduce_none,
|
1128
|
+
1, 186, :_reduce_none,
|
1129
|
+
1, 186, :_reduce_none,
|
1130
|
+
1, 186, :_reduce_none,
|
1131
|
+
1, 186, :_reduce_none,
|
1127
1132
|
1, 138, :_reduce_none,
|
1128
1133
|
1, 138, :_reduce_none,
|
1129
1134
|
1, 138, :_reduce_none,
|
1130
|
-
1,
|
1131
|
-
1,
|
1132
|
-
2,
|
1133
|
-
1,
|
1134
|
-
1,
|
1135
|
-
1,
|
1136
|
-
2,
|
1137
|
-
1,
|
1138
|
-
1,
|
1139
|
-
2,
|
1140
|
-
2,
|
1141
|
-
2,
|
1142
|
-
2, 195, :_reduce_242,
|
1143
|
-
3, 99, :_reduce_243,
|
1144
|
-
0, 180, :_reduce_none,
|
1145
|
-
1, 180, :_reduce_none,
|
1146
|
-
0, 196, :_reduce_246,
|
1135
|
+
1, 187, :_reduce_235,
|
1136
|
+
1, 187, :_reduce_236,
|
1137
|
+
2, 188, :_reduce_237,
|
1138
|
+
1, 190, :_reduce_238,
|
1139
|
+
1, 192, :_reduce_239,
|
1140
|
+
1, 193, :_reduce_240,
|
1141
|
+
2, 191, :_reduce_241,
|
1142
|
+
1, 194, :_reduce_242,
|
1143
|
+
1, 195, :_reduce_243,
|
1144
|
+
2, 195, :_reduce_244,
|
1145
|
+
2, 189, :_reduce_245,
|
1146
|
+
2, 196, :_reduce_246,
|
1147
1147
|
2, 196, :_reduce_247,
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
1,
|
1155
|
-
|
1148
|
+
3, 99, :_reduce_248,
|
1149
|
+
0, 181, :_reduce_none,
|
1150
|
+
1, 181, :_reduce_none,
|
1151
|
+
0, 197, :_reduce_251,
|
1152
|
+
2, 197, :_reduce_252,
|
1153
|
+
4, 197, :_reduce_253,
|
1154
|
+
1, 130, :_reduce_254,
|
1155
|
+
3, 130, :_reduce_255,
|
1156
|
+
5, 130, :_reduce_256,
|
1157
|
+
1, 198, :_reduce_none,
|
1158
|
+
1, 198, :_reduce_none,
|
1159
|
+
1, 139, :_reduce_259,
|
1160
|
+
1, 137, :_reduce_260,
|
1156
1161
|
0, 111, :_reduce_none,
|
1157
|
-
1, 111, :
|
1162
|
+
1, 111, :_reduce_262,
|
1158
1163
|
0, 110, :_reduce_none,
|
1159
1164
|
1, 110, :_reduce_none,
|
1160
1165
|
1, 161, :_reduce_none,
|
@@ -1179,11 +1184,11 @@ racc_reduce_table = [
|
|
1179
1184
|
1, 161, :_reduce_none,
|
1180
1185
|
1, 161, :_reduce_none,
|
1181
1186
|
1, 161, :_reduce_none,
|
1182
|
-
0, 154, :
|
1187
|
+
0, 154, :_reduce_287 ]
|
1183
1188
|
|
1184
|
-
racc_reduce_n =
|
1189
|
+
racc_reduce_n = 288
|
1185
1190
|
|
1186
|
-
racc_shift_n =
|
1191
|
+
racc_shift_n = 519
|
1187
1192
|
|
1188
1193
|
racc_token_table = {
|
1189
1194
|
false => 0,
|
@@ -1484,6 +1489,7 @@ Racc_token_to_s_table = [
|
|
1484
1489
|
"regular_parameter",
|
1485
1490
|
"splat_parameter",
|
1486
1491
|
"parameter_type",
|
1492
|
+
"type_alias_lhs",
|
1487
1493
|
"optional_statements",
|
1488
1494
|
"collection_entries",
|
1489
1495
|
"hashpairs",
|
@@ -2183,7 +2189,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 339)
|
|
2183
2189
|
|
2184
2190
|
module_eval(<<'.,.,', 'egrammar.ra', 346)
|
2185
2191
|
def _reduce_109(val, _values, result)
|
2186
|
-
result = Factory.IF(val[0], Factory.block_or_expression(val[2]), val[4])
|
2192
|
+
result = Factory.IF(val[0], Factory.block_or_expression(val[2], val[1], val[3]), val[4])
|
2187
2193
|
loc(result, val[0], (val[4] ? val[4] : val[3]))
|
2188
2194
|
|
2189
2195
|
result
|
@@ -2212,14 +2218,13 @@ module_eval(<<'.,.,', 'egrammar.ra', 358)
|
|
2212
2218
|
|
2213
2219
|
module_eval(<<'.,.,', 'egrammar.ra', 362)
|
2214
2220
|
def _reduce_113(val, _values, result)
|
2215
|
-
result = Factory.block_or_expression(val[2])
|
2216
|
-
loc result, val[0], val[3]
|
2221
|
+
result = Factory.block_or_expression(val[2], val[1], val[3])
|
2217
2222
|
|
2218
2223
|
result
|
2219
2224
|
end
|
2220
2225
|
.,.,
|
2221
2226
|
|
2222
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2227
|
+
module_eval(<<'.,.,', 'egrammar.ra', 365)
|
2223
2228
|
def _reduce_114(val, _values, result)
|
2224
2229
|
result = nil # don't think a nop is needed here either
|
2225
2230
|
|
@@ -2227,16 +2232,16 @@ module_eval(<<'.,.,', 'egrammar.ra', 366)
|
|
2227
2232
|
end
|
2228
2233
|
.,.,
|
2229
2234
|
|
2230
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2235
|
+
module_eval(<<'.,.,', 'egrammar.ra', 372)
|
2231
2236
|
def _reduce_115(val, _values, result)
|
2232
|
-
result = Factory.UNLESS(val[1], Factory.block_or_expression(val[3]), val[5])
|
2237
|
+
result = Factory.UNLESS(val[1], Factory.block_or_expression(val[3], val[2], val[4]), val[5])
|
2233
2238
|
loc result, val[0], val[4]
|
2234
2239
|
|
2235
2240
|
result
|
2236
2241
|
end
|
2237
2242
|
.,.,
|
2238
2243
|
|
2239
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2244
|
+
module_eval(<<'.,.,', 'egrammar.ra', 376)
|
2240
2245
|
def _reduce_116(val, _values, result)
|
2241
2246
|
result = Factory.UNLESS(val[1], nil, val[4])
|
2242
2247
|
loc result, val[0], val[4]
|
@@ -2247,16 +2252,15 @@ module_eval(<<'.,.,', 'egrammar.ra', 377)
|
|
2247
2252
|
|
2248
2253
|
# reduce 117 omitted
|
2249
2254
|
|
2250
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2255
|
+
module_eval(<<'.,.,', 'egrammar.ra', 386)
|
2251
2256
|
def _reduce_118(val, _values, result)
|
2252
|
-
result = Factory.block_or_expression(val[2])
|
2253
|
-
loc result, val[0], val[3]
|
2257
|
+
result = Factory.block_or_expression(val[2], val[1], val[3])
|
2254
2258
|
|
2255
2259
|
result
|
2256
2260
|
end
|
2257
2261
|
.,.,
|
2258
2262
|
|
2259
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2263
|
+
module_eval(<<'.,.,', 'egrammar.ra', 389)
|
2260
2264
|
def _reduce_119(val, _values, result)
|
2261
2265
|
result = nil # don't think a nop is needed here either
|
2262
2266
|
|
@@ -2264,7 +2268,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 391)
|
|
2264
2268
|
end
|
2265
2269
|
.,.,
|
2266
2270
|
|
2267
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2271
|
+
module_eval(<<'.,.,', 'egrammar.ra', 396)
|
2268
2272
|
def _reduce_120(val, _values, result)
|
2269
2273
|
result = Factory.CASE(val[1], *val[3])
|
2270
2274
|
loc result, val[0], val[4]
|
@@ -2273,21 +2277,21 @@ module_eval(<<'.,.,', 'egrammar.ra', 398)
|
|
2273
2277
|
end
|
2274
2278
|
.,.,
|
2275
2279
|
|
2276
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2280
|
+
module_eval(<<'.,.,', 'egrammar.ra', 402)
|
2277
2281
|
def _reduce_121(val, _values, result)
|
2278
2282
|
result = [val[0]]
|
2279
2283
|
result
|
2280
2284
|
end
|
2281
2285
|
.,.,
|
2282
2286
|
|
2283
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2287
|
+
module_eval(<<'.,.,', 'egrammar.ra', 403)
|
2284
2288
|
def _reduce_122(val, _values, result)
|
2285
2289
|
result = val[0].push val[1]
|
2286
2290
|
result
|
2287
2291
|
end
|
2288
2292
|
.,.,
|
2289
2293
|
|
2290
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2294
|
+
module_eval(<<'.,.,', 'egrammar.ra', 408)
|
2291
2295
|
def _reduce_123(val, _values, result)
|
2292
2296
|
result = Factory.WHEN(val[0], val[3]); loc result, val[1], val[4]
|
2293
2297
|
|
@@ -2301,7 +2305,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 410)
|
|
2301
2305
|
|
2302
2306
|
# reduce 126 omitted
|
2303
2307
|
|
2304
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2308
|
+
module_eval(<<'.,.,', 'egrammar.ra', 424)
|
2305
2309
|
def _reduce_127(val, _values, result)
|
2306
2310
|
result = val[1]
|
2307
2311
|
|
@@ -2309,28 +2313,28 @@ module_eval(<<'.,.,', 'egrammar.ra', 426)
|
|
2309
2313
|
end
|
2310
2314
|
.,.,
|
2311
2315
|
|
2312
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2316
|
+
module_eval(<<'.,.,', 'egrammar.ra', 429)
|
2313
2317
|
def _reduce_128(val, _values, result)
|
2314
2318
|
result = [val[0]]
|
2315
2319
|
result
|
2316
2320
|
end
|
2317
2321
|
.,.,
|
2318
2322
|
|
2319
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2323
|
+
module_eval(<<'.,.,', 'egrammar.ra', 430)
|
2320
2324
|
def _reduce_129(val, _values, result)
|
2321
2325
|
result = val[0].push val[2]
|
2322
2326
|
result
|
2323
2327
|
end
|
2324
2328
|
.,.,
|
2325
2329
|
|
2326
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2330
|
+
module_eval(<<'.,.,', 'egrammar.ra', 435)
|
2327
2331
|
def _reduce_130(val, _values, result)
|
2328
2332
|
result = Factory.MAP(val[0], val[2]) ; loc result, val[1]
|
2329
2333
|
result
|
2330
2334
|
end
|
2331
2335
|
.,.,
|
2332
2336
|
|
2333
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2337
|
+
module_eval(<<'.,.,', 'egrammar.ra', 445)
|
2334
2338
|
def _reduce_131(val, _values, result)
|
2335
2339
|
result = Factory.COLLECT(val[0], val[1], val[3])
|
2336
2340
|
loc result, val[0], val[5]
|
@@ -2339,7 +2343,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 447)
|
|
2339
2343
|
end
|
2340
2344
|
.,.,
|
2341
2345
|
|
2342
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2346
|
+
module_eval(<<'.,.,', 'egrammar.ra', 449)
|
2343
2347
|
def _reduce_132(val, _values, result)
|
2344
2348
|
result = Factory.COLLECT(val[0], val[1], [])
|
2345
2349
|
loc result, val[0], val[1]
|
@@ -2348,14 +2352,14 @@ module_eval(<<'.,.,', 'egrammar.ra', 451)
|
|
2348
2352
|
end
|
2349
2353
|
.,.,
|
2350
2354
|
|
2351
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2355
|
+
module_eval(<<'.,.,', 'egrammar.ra', 454)
|
2352
2356
|
def _reduce_133(val, _values, result)
|
2353
2357
|
result = Factory.VIRTUAL_QUERY(val[1]) ; loc result, val[0], val[2]
|
2354
2358
|
result
|
2355
2359
|
end
|
2356
2360
|
.,.,
|
2357
2361
|
|
2358
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2362
|
+
module_eval(<<'.,.,', 'egrammar.ra', 455)
|
2359
2363
|
def _reduce_134(val, _values, result)
|
2360
2364
|
result = Factory.EXPORTED_QUERY(val[1]) ; loc result, val[0], val[2]
|
2361
2365
|
result
|
@@ -2366,21 +2370,21 @@ module_eval(<<'.,.,', 'egrammar.ra', 457)
|
|
2366
2370
|
|
2367
2371
|
# reduce 136 omitted
|
2368
2372
|
|
2369
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2373
|
+
module_eval(<<'.,.,', 'egrammar.ra', 464)
|
2370
2374
|
def _reduce_137(val, _values, result)
|
2371
2375
|
result = []
|
2372
2376
|
result
|
2373
2377
|
end
|
2374
2378
|
.,.,
|
2375
2379
|
|
2376
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2380
|
+
module_eval(<<'.,.,', 'egrammar.ra', 465)
|
2377
2381
|
def _reduce_138(val, _values, result)
|
2378
2382
|
result = [val[0]]
|
2379
2383
|
result
|
2380
2384
|
end
|
2381
2385
|
.,.,
|
2382
2386
|
|
2383
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2387
|
+
module_eval(<<'.,.,', 'egrammar.ra', 466)
|
2384
2388
|
def _reduce_139(val, _values, result)
|
2385
2389
|
result = val[0].push(val[2])
|
2386
2390
|
result
|
@@ -2391,7 +2395,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 468)
|
|
2391
2395
|
|
2392
2396
|
# reduce 141 omitted
|
2393
2397
|
|
2394
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2398
|
+
module_eval(<<'.,.,', 'egrammar.ra', 481)
|
2395
2399
|
def _reduce_142(val, _values, result)
|
2396
2400
|
result = Factory.ATTRIBUTE_OP(val[0][:value], '=>', val[2])
|
2397
2401
|
loc result, val[0], val[2]
|
@@ -2400,7 +2404,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 483)
|
|
2400
2404
|
end
|
2401
2405
|
.,.,
|
2402
2406
|
|
2403
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2407
|
+
module_eval(<<'.,.,', 'egrammar.ra', 485)
|
2404
2408
|
def _reduce_143(val, _values, result)
|
2405
2409
|
result = Factory.ATTRIBUTE_OP(val[0][:value], '+>', val[2])
|
2406
2410
|
loc result, val[0], val[2]
|
@@ -2409,7 +2413,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 487)
|
|
2409
2413
|
end
|
2410
2414
|
.,.,
|
2411
2415
|
|
2412
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2416
|
+
module_eval(<<'.,.,', 'egrammar.ra', 489)
|
2413
2417
|
def _reduce_144(val, _values, result)
|
2414
2418
|
result = Factory.ATTRIBUTES_OP(val[2]) ; loc result, val[0], val[2]
|
2415
2419
|
|
@@ -2417,7 +2421,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 491)
|
|
2417
2421
|
end
|
2418
2422
|
.,.,
|
2419
2423
|
|
2420
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2424
|
+
module_eval(<<'.,.,', 'egrammar.ra', 498)
|
2421
2425
|
def _reduce_145(val, _values, result)
|
2422
2426
|
definition = Factory.DEFINITION(classname(val[1][:value]), val[2], val[4])
|
2423
2427
|
loc(definition, val[0], val[5])
|
@@ -2431,7 +2435,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 500)
|
|
2431
2435
|
end
|
2432
2436
|
.,.,
|
2433
2437
|
|
2434
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2438
|
+
module_eval(<<'.,.,', 'egrammar.ra', 510)
|
2435
2439
|
def _reduce_146(val, _values, result)
|
2436
2440
|
definition = Factory.APPLICATION(classname(val[1][:value]), val[2], val[4])
|
2437
2441
|
loc(definition, val[0], val[5])
|
@@ -2441,7 +2445,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 512)
|
|
2441
2445
|
end
|
2442
2446
|
.,.,
|
2443
2447
|
|
2444
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2448
|
+
module_eval(<<'.,.,', 'egrammar.ra', 517)
|
2445
2449
|
def _reduce_147(val, _values, result)
|
2446
2450
|
result = Factory.CAPABILITY_MAPPING(val[1][:value],
|
2447
2451
|
Factory.QNAME(classname(val[0][:value])),
|
@@ -2453,7 +2457,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 519)
|
|
2453
2457
|
end
|
2454
2458
|
.,.,
|
2455
2459
|
|
2456
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2460
|
+
module_eval(<<'.,.,', 'egrammar.ra', 524)
|
2457
2461
|
def _reduce_148(val, _values, result)
|
2458
2462
|
result = Factory.CAPABILITY_MAPPING(val[1][:value],
|
2459
2463
|
val[0],
|
@@ -2469,7 +2473,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 526)
|
|
2469
2473
|
|
2470
2474
|
# reduce 150 omitted
|
2471
2475
|
|
2472
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2476
|
+
module_eval(<<'.,.,', 'egrammar.ra', 541)
|
2473
2477
|
def _reduce_151(val, _values, result)
|
2474
2478
|
# Remove this class' name from the namestack as all nested classes have been parsed
|
2475
2479
|
namepop
|
@@ -2481,7 +2485,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 543)
|
|
2481
2485
|
end
|
2482
2486
|
.,.,
|
2483
2487
|
|
2484
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2488
|
+
module_eval(<<'.,.,', 'egrammar.ra', 552)
|
2485
2489
|
def _reduce_152(val, _values, result)
|
2486
2490
|
namestack(val[0][:value]) ; result = val[0]
|
2487
2491
|
result
|
@@ -2494,7 +2498,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 554)
|
|
2494
2498
|
|
2495
2499
|
# reduce 155 omitted
|
2496
2500
|
|
2497
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2501
|
+
module_eval(<<'.,.,', 'egrammar.ra', 561)
|
2498
2502
|
def _reduce_156(val, _values, result)
|
2499
2503
|
result = val[1]
|
2500
2504
|
result
|
@@ -2505,7 +2509,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 563)
|
|
2505
2509
|
|
2506
2510
|
# reduce 158 omitted
|
2507
2511
|
|
2508
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2512
|
+
module_eval(<<'.,.,', 'egrammar.ra', 578)
|
2509
2513
|
def _reduce_159(val, _values, result)
|
2510
2514
|
definition = Factory.SITE(val[2])
|
2511
2515
|
loc(definition, val[0], val[3])
|
@@ -2515,7 +2519,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 580)
|
|
2515
2519
|
end
|
2516
2520
|
.,.,
|
2517
2521
|
|
2518
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2522
|
+
module_eval(<<'.,.,', 'egrammar.ra', 583)
|
2519
2523
|
def _reduce_160(val, _values, result)
|
2520
2524
|
definition = Factory.SITE(nil)
|
2521
2525
|
loc(definition, val[0], val[2])
|
@@ -2525,7 +2529,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 585)
|
|
2525
2529
|
end
|
2526
2530
|
.,.,
|
2527
2531
|
|
2528
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2532
|
+
module_eval(<<'.,.,', 'egrammar.ra', 594)
|
2529
2533
|
def _reduce_161(val, _values, result)
|
2530
2534
|
definition = Factory.NODE(val[1], val[3], val[5])
|
2531
2535
|
loc(definition, val[0], val[6])
|
@@ -2535,7 +2539,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 596)
|
|
2535
2539
|
end
|
2536
2540
|
.,.,
|
2537
2541
|
|
2538
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2542
|
+
module_eval(<<'.,.,', 'egrammar.ra', 599)
|
2539
2543
|
def _reduce_162(val, _values, result)
|
2540
2544
|
definition = Factory.NODE(val[1], val[3], nil)
|
2541
2545
|
loc(definition, val[0], val[5])
|
@@ -2545,14 +2549,14 @@ module_eval(<<'.,.,', 'egrammar.ra', 601)
|
|
2545
2549
|
end
|
2546
2550
|
.,.,
|
2547
2551
|
|
2548
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2552
|
+
module_eval(<<'.,.,', 'egrammar.ra', 610)
|
2549
2553
|
def _reduce_163(val, _values, result)
|
2550
2554
|
result = [result]
|
2551
2555
|
result
|
2552
2556
|
end
|
2553
2557
|
.,.,
|
2554
2558
|
|
2555
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2559
|
+
module_eval(<<'.,.,', 'egrammar.ra', 611)
|
2556
2560
|
def _reduce_164(val, _values, result)
|
2557
2561
|
result = val[0].push(val[2])
|
2558
2562
|
result
|
@@ -2563,7 +2567,7 @@ module_eval(<<'.,.,', 'egrammar.ra', 613)
|
|
2563
2567
|
|
2564
2568
|
# reduce 166 omitted
|
2565
2569
|
|
2566
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2570
|
+
module_eval(<<'.,.,', 'egrammar.ra', 618)
|
2567
2571
|
def _reduce_167(val, _values, result)
|
2568
2572
|
result = Factory.literal(:default); loc result, val[0]
|
2569
2573
|
result
|
@@ -2572,14 +2576,14 @@ module_eval(<<'.,.,', 'egrammar.ra', 620)
|
|
2572
2576
|
|
2573
2577
|
# reduce 168 omitted
|
2574
2578
|
|
2575
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2579
|
+
module_eval(<<'.,.,', 'egrammar.ra', 622)
|
2576
2580
|
def _reduce_169(val, _values, result)
|
2577
2581
|
result = Factory.literal(val[0][:value]); loc result, val[0]
|
2578
2582
|
result
|
2579
2583
|
end
|
2580
2584
|
.,.,
|
2581
2585
|
|
2582
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2586
|
+
module_eval(<<'.,.,', 'egrammar.ra', 623)
|
2583
2587
|
def _reduce_170(val, _values, result)
|
2584
2588
|
result = Factory.concat(val[0], '.', val[2][:value]); loc result, val[0], val[2]
|
2585
2589
|
result
|
@@ -2592,14 +2596,14 @@ module_eval(<<'.,.,', 'egrammar.ra', 625)
|
|
2592
2596
|
|
2593
2597
|
# reduce 173 omitted
|
2594
2598
|
|
2595
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2599
|
+
module_eval(<<'.,.,', 'egrammar.ra', 632)
|
2596
2600
|
def _reduce_174(val, _values, result)
|
2597
2601
|
result = val[1]
|
2598
2602
|
result
|
2599
2603
|
end
|
2600
2604
|
.,.,
|
2601
2605
|
|
2602
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2606
|
+
module_eval(<<'.,.,', 'egrammar.ra', 638)
|
2603
2607
|
def _reduce_175(val, _values, result)
|
2604
2608
|
definition = Factory.FUNCTION(val[1][:value], val[2], val[5], val[3])
|
2605
2609
|
loc(definition, val[0], val[6])
|
@@ -2609,14 +2613,14 @@ module_eval(<<'.,.,', 'egrammar.ra', 640)
|
|
2609
2613
|
end
|
2610
2614
|
.,.,
|
2611
2615
|
|
2612
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2616
|
+
module_eval(<<'.,.,', 'egrammar.ra', 644)
|
2613
2617
|
def _reduce_176(val, _values, result)
|
2614
2618
|
result = val[1]
|
2615
2619
|
result
|
2616
2620
|
end
|
2617
2621
|
.,.,
|
2618
2622
|
|
2619
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2623
|
+
module_eval(<<'.,.,', 'egrammar.ra', 645)
|
2620
2624
|
def _reduce_177(val, _values, result)
|
2621
2625
|
result = val[1].access(val[3]) ; loc result, val[1], val[4]
|
2622
2626
|
result
|
@@ -2631,63 +2635,63 @@ module_eval(<<'.,.,', 'egrammar.ra', 647)
|
|
2631
2635
|
|
2632
2636
|
# reduce 181 omitted
|
2633
2637
|
|
2634
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2638
|
+
module_eval(<<'.,.,', 'egrammar.ra', 655)
|
2635
2639
|
def _reduce_182(val, _values, result)
|
2636
2640
|
error val[0], "'class' keyword not allowed at this location"
|
2637
2641
|
result
|
2638
2642
|
end
|
2639
2643
|
.,.,
|
2640
2644
|
|
2641
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2645
|
+
module_eval(<<'.,.,', 'egrammar.ra', 656)
|
2642
2646
|
def _reduce_183(val, _values, result)
|
2643
2647
|
error val[0], "A quoted string is not valid as a name here"
|
2644
2648
|
result
|
2645
2649
|
end
|
2646
2650
|
.,.,
|
2647
2651
|
|
2648
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2652
|
+
module_eval(<<'.,.,', 'egrammar.ra', 660)
|
2649
2653
|
def _reduce_184(val, _values, result)
|
2650
2654
|
result = []
|
2651
2655
|
result
|
2652
2656
|
end
|
2653
2657
|
.,.,
|
2654
2658
|
|
2655
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2659
|
+
module_eval(<<'.,.,', 'egrammar.ra', 661)
|
2656
2660
|
def _reduce_185(val, _values, result)
|
2657
2661
|
result = []
|
2658
2662
|
result
|
2659
2663
|
end
|
2660
2664
|
.,.,
|
2661
2665
|
|
2662
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2666
|
+
module_eval(<<'.,.,', 'egrammar.ra', 662)
|
2663
2667
|
def _reduce_186(val, _values, result)
|
2664
2668
|
result = []
|
2665
2669
|
result
|
2666
2670
|
end
|
2667
2671
|
.,.,
|
2668
2672
|
|
2669
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2673
|
+
module_eval(<<'.,.,', 'egrammar.ra', 663)
|
2670
2674
|
def _reduce_187(val, _values, result)
|
2671
2675
|
result = val[1]
|
2672
2676
|
result
|
2673
2677
|
end
|
2674
2678
|
.,.,
|
2675
2679
|
|
2676
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2680
|
+
module_eval(<<'.,.,', 'egrammar.ra', 664)
|
2677
2681
|
def _reduce_188(val, _values, result)
|
2678
2682
|
result = val[1]
|
2679
2683
|
result
|
2680
2684
|
end
|
2681
2685
|
.,.,
|
2682
2686
|
|
2683
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2687
|
+
module_eval(<<'.,.,', 'egrammar.ra', 668)
|
2684
2688
|
def _reduce_189(val, _values, result)
|
2685
2689
|
result = [val[0]]
|
2686
2690
|
result
|
2687
2691
|
end
|
2688
2692
|
.,.,
|
2689
2693
|
|
2690
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2694
|
+
module_eval(<<'.,.,', 'egrammar.ra', 669)
|
2691
2695
|
def _reduce_190(val, _values, result)
|
2692
2696
|
result = val[0].push(val[2])
|
2693
2697
|
result
|
@@ -2702,51 +2706,51 @@ module_eval(<<'.,.,', 'egrammar.ra', 671)
|
|
2702
2706
|
|
2703
2707
|
# reduce 194 omitted
|
2704
2708
|
|
2705
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2709
|
+
module_eval(<<'.,.,', 'egrammar.ra', 681)
|
2706
2710
|
def _reduce_195(val, _values, result)
|
2707
2711
|
result = Factory.PARAM(val[0][:value], val[2]) ; loc result, val[0]
|
2708
2712
|
result
|
2709
2713
|
end
|
2710
2714
|
.,.,
|
2711
2715
|
|
2712
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2716
|
+
module_eval(<<'.,.,', 'egrammar.ra', 682)
|
2713
2717
|
def _reduce_196(val, _values, result)
|
2714
2718
|
result = Factory.PARAM(val[0][:value]); loc result, val[0]
|
2715
2719
|
result
|
2716
2720
|
end
|
2717
2721
|
.,.,
|
2718
2722
|
|
2719
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2723
|
+
module_eval(<<'.,.,', 'egrammar.ra', 685)
|
2720
2724
|
def _reduce_197(val, _values, result)
|
2721
2725
|
result = val[1]; val[1].captures_rest
|
2722
2726
|
result
|
2723
2727
|
end
|
2724
2728
|
.,.,
|
2725
2729
|
|
2726
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2730
|
+
module_eval(<<'.,.,', 'egrammar.ra', 688)
|
2727
2731
|
def _reduce_198(val, _values, result)
|
2728
2732
|
val[1].type_expr(val[0]) ; result = val[1]
|
2729
2733
|
result
|
2730
2734
|
end
|
2731
2735
|
.,.,
|
2732
2736
|
|
2733
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2737
|
+
module_eval(<<'.,.,', 'egrammar.ra', 691)
|
2734
2738
|
def _reduce_199(val, _values, result)
|
2735
2739
|
result = val[0]
|
2736
2740
|
result
|
2737
2741
|
end
|
2738
2742
|
.,.,
|
2739
2743
|
|
2740
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2744
|
+
module_eval(<<'.,.,', 'egrammar.ra', 692)
|
2741
2745
|
def _reduce_200(val, _values, result)
|
2742
2746
|
result = val[0].access(val[2]) ; loc result, val[0], val[3]
|
2743
2747
|
result
|
2744
2748
|
end
|
2745
2749
|
.,.,
|
2746
2750
|
|
2747
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2751
|
+
module_eval(<<'.,.,', 'egrammar.ra', 697)
|
2748
2752
|
def _reduce_201(val, _values, result)
|
2749
|
-
definition = Factory.TYPE_ASSIGNMENT(val[
|
2753
|
+
definition = Factory.TYPE_ASSIGNMENT(val[0], Factory.KEY_ENTRY(val[2], val[3]))
|
2750
2754
|
loc(definition, val[0], val[3])
|
2751
2755
|
result = add_definition(definition)
|
2752
2756
|
|
@@ -2754,8 +2758,55 @@ module_eval(<<'.,.,', 'egrammar.ra', 699)
|
|
2754
2758
|
end
|
2755
2759
|
.,.,
|
2756
2760
|
|
2757
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2761
|
+
module_eval(<<'.,.,', 'egrammar.ra', 702)
|
2758
2762
|
def _reduce_202(val, _values, result)
|
2763
|
+
definition = Factory.TYPE_ASSIGNMENT(val[0], val[2].access(val[4]))
|
2764
|
+
loc(definition, val[0], val[5])
|
2765
|
+
result = add_definition(definition)
|
2766
|
+
|
2767
|
+
result
|
2768
|
+
end
|
2769
|
+
.,.,
|
2770
|
+
|
2771
|
+
module_eval(<<'.,.,', 'egrammar.ra', 707)
|
2772
|
+
def _reduce_203(val, _values, result)
|
2773
|
+
definition = Factory.TYPE_ASSIGNMENT(val[0], val[2])
|
2774
|
+
loc(definition, val[0], val[2])
|
2775
|
+
result = add_definition(definition)
|
2776
|
+
|
2777
|
+
result
|
2778
|
+
end
|
2779
|
+
.,.,
|
2780
|
+
|
2781
|
+
module_eval(<<'.,.,', 'egrammar.ra', 712)
|
2782
|
+
def _reduce_204(val, _values, result)
|
2783
|
+
definition = Factory.TYPE_ASSIGNMENT(val[0], val[2])
|
2784
|
+
loc(definition, val[0], val[2])
|
2785
|
+
result = add_definition(definition)
|
2786
|
+
|
2787
|
+
result
|
2788
|
+
end
|
2789
|
+
.,.,
|
2790
|
+
|
2791
|
+
module_eval(<<'.,.,', 'egrammar.ra', 717)
|
2792
|
+
def _reduce_205(val, _values, result)
|
2793
|
+
definition = Factory.TYPE_ASSIGNMENT(val[0], val[2])
|
2794
|
+
loc(definition, val[0], val[4])
|
2795
|
+
result = add_definition(definition)
|
2796
|
+
|
2797
|
+
result
|
2798
|
+
end
|
2799
|
+
.,.,
|
2800
|
+
|
2801
|
+
module_eval(<<'.,.,', 'egrammar.ra', 723)
|
2802
|
+
def _reduce_206(val, _values, result)
|
2803
|
+
result = val[1]
|
2804
|
+
result
|
2805
|
+
end
|
2806
|
+
.,.,
|
2807
|
+
|
2808
|
+
module_eval(<<'.,.,', 'egrammar.ra', 729)
|
2809
|
+
def _reduce_207(val, _values, result)
|
2759
2810
|
definition = Factory.TYPE_DEFINITION(val[1][:value], nil, val[3])
|
2760
2811
|
loc(definition, val[0], val[4])
|
2761
2812
|
result = add_definition(definition)
|
@@ -2764,8 +2815,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 708)
|
|
2764
2815
|
end
|
2765
2816
|
.,.,
|
2766
2817
|
|
2767
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2768
|
-
def
|
2818
|
+
module_eval(<<'.,.,', 'egrammar.ra', 734)
|
2819
|
+
def _reduce_208(val, _values, result)
|
2769
2820
|
definition = Factory.TYPE_DEFINITION(val[1][:value], val[3][:value], val[5])
|
2770
2821
|
loc(definition, val[0], val[6])
|
2771
2822
|
result = add_definition(definition)
|
@@ -2774,8 +2825,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 713)
|
|
2774
2825
|
end
|
2775
2826
|
.,.,
|
2776
2827
|
|
2777
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2778
|
-
def
|
2828
|
+
module_eval(<<'.,.,', 'egrammar.ra', 743)
|
2829
|
+
def _reduce_209(val, _values, result)
|
2779
2830
|
fqn = Factory.fqn(val[0][:value])
|
2780
2831
|
loc(fqn, val[0])
|
2781
2832
|
fqn['offset'] += 1
|
@@ -2787,312 +2838,302 @@ module_eval(<<'.,.,', 'egrammar.ra', 722)
|
|
2787
2838
|
end
|
2788
2839
|
.,.,
|
2789
2840
|
|
2790
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2791
|
-
def
|
2841
|
+
module_eval(<<'.,.,', 'egrammar.ra', 754)
|
2842
|
+
def _reduce_210(val, _values, result)
|
2792
2843
|
result = Factory.RESERVED(val[0][:value]) ; loc result, val[0]
|
2793
2844
|
result
|
2794
2845
|
end
|
2795
2846
|
.,.,
|
2796
2847
|
|
2797
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2798
|
-
def
|
2848
|
+
module_eval(<<'.,.,', 'egrammar.ra', 755)
|
2849
|
+
def _reduce_211(val, _values, result)
|
2799
2850
|
result = Factory.RESERVED(val[0][:value]) ; loc result, val[0]
|
2800
2851
|
result
|
2801
2852
|
end
|
2802
2853
|
.,.,
|
2803
2854
|
|
2804
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2805
|
-
def
|
2855
|
+
module_eval(<<'.,.,', 'egrammar.ra', 761)
|
2856
|
+
def _reduce_212(val, _values, result)
|
2806
2857
|
result = Factory.LIST(val[1]); loc result, val[0], val[3]
|
2807
2858
|
result
|
2808
2859
|
end
|
2809
2860
|
.,.,
|
2810
2861
|
|
2811
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2812
|
-
def
|
2862
|
+
module_eval(<<'.,.,', 'egrammar.ra', 762)
|
2863
|
+
def _reduce_213(val, _values, result)
|
2813
2864
|
result = Factory.literal([]) ; loc result, val[0], val[1]
|
2814
2865
|
result
|
2815
2866
|
end
|
2816
2867
|
.,.,
|
2817
2868
|
|
2818
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2819
|
-
def
|
2869
|
+
module_eval(<<'.,.,', 'egrammar.ra', 763)
|
2870
|
+
def _reduce_214(val, _values, result)
|
2820
2871
|
result = Factory.LIST(val[1]); loc result, val[0], val[3]
|
2821
2872
|
result
|
2822
2873
|
end
|
2823
2874
|
.,.,
|
2824
2875
|
|
2825
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2826
|
-
def
|
2876
|
+
module_eval(<<'.,.,', 'egrammar.ra', 764)
|
2877
|
+
def _reduce_215(val, _values, result)
|
2827
2878
|
result = Factory.literal([]) ; loc result, val[0], val[1]
|
2828
2879
|
result
|
2829
2880
|
end
|
2830
2881
|
.,.,
|
2831
2882
|
|
2832
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2833
|
-
def
|
2883
|
+
module_eval(<<'.,.,', 'egrammar.ra', 767)
|
2884
|
+
def _reduce_216(val, _values, result)
|
2834
2885
|
result = Factory.HASH(val[1]); loc result, val[0], val[2]
|
2835
2886
|
result
|
2836
2887
|
end
|
2837
2888
|
.,.,
|
2838
2889
|
|
2839
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2840
|
-
def
|
2890
|
+
module_eval(<<'.,.,', 'egrammar.ra', 768)
|
2891
|
+
def _reduce_217(val, _values, result)
|
2841
2892
|
result = Factory.HASH(val[1]); loc result, val[0], val[3]
|
2842
2893
|
result
|
2843
2894
|
end
|
2844
2895
|
.,.,
|
2845
2896
|
|
2846
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2847
|
-
def
|
2897
|
+
module_eval(<<'.,.,', 'egrammar.ra', 769)
|
2898
|
+
def _reduce_218(val, _values, result)
|
2848
2899
|
result = Factory.literal({}) ; loc result, val[0], val[1]
|
2849
2900
|
result
|
2850
2901
|
end
|
2851
2902
|
.,.,
|
2852
2903
|
|
2853
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2854
|
-
def
|
2904
|
+
module_eval(<<'.,.,', 'egrammar.ra', 772)
|
2905
|
+
def _reduce_219(val, _values, result)
|
2855
2906
|
result = [val[0]]
|
2856
2907
|
result
|
2857
2908
|
end
|
2858
2909
|
.,.,
|
2859
2910
|
|
2860
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2861
|
-
def
|
2911
|
+
module_eval(<<'.,.,', 'egrammar.ra', 773)
|
2912
|
+
def _reduce_220(val, _values, result)
|
2862
2913
|
result = val[0].push val[2]
|
2863
2914
|
result
|
2864
2915
|
end
|
2865
2916
|
.,.,
|
2866
2917
|
|
2867
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2868
|
-
def
|
2918
|
+
module_eval(<<'.,.,', 'egrammar.ra', 776)
|
2919
|
+
def _reduce_221(val, _values, result)
|
2869
2920
|
result = Factory.KEY_ENTRY(val[0], val[2]); loc result, val[1]
|
2870
2921
|
result
|
2871
2922
|
end
|
2872
2923
|
.,.,
|
2873
2924
|
|
2874
|
-
# reduce
|
2925
|
+
# reduce 222 omitted
|
2875
2926
|
|
2876
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2877
|
-
def
|
2927
|
+
module_eval(<<'.,.,', 'egrammar.ra', 780)
|
2928
|
+
def _reduce_223(val, _values, result)
|
2878
2929
|
result = Factory.literal(val[0][:value]) ; loc result, val[0]
|
2879
2930
|
result
|
2880
2931
|
end
|
2881
2932
|
.,.,
|
2882
2933
|
|
2883
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2884
|
-
def
|
2934
|
+
module_eval(<<'.,.,', 'egrammar.ra', 783)
|
2935
|
+
def _reduce_224(val, _values, result)
|
2885
2936
|
result = [val[0]]
|
2886
2937
|
result
|
2887
2938
|
end
|
2888
2939
|
.,.,
|
2889
2940
|
|
2890
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2891
|
-
def
|
2941
|
+
module_eval(<<'.,.,', 'egrammar.ra', 784)
|
2942
|
+
def _reduce_225(val, _values, result)
|
2892
2943
|
result = val[0].push(val[2])
|
2893
2944
|
result
|
2894
2945
|
end
|
2895
2946
|
.,.,
|
2896
2947
|
|
2897
|
-
# reduce
|
2948
|
+
# reduce 226 omitted
|
2898
2949
|
|
2899
|
-
# reduce
|
2950
|
+
# reduce 227 omitted
|
2900
2951
|
|
2901
|
-
# reduce
|
2952
|
+
# reduce 228 omitted
|
2902
2953
|
|
2903
|
-
# reduce
|
2954
|
+
# reduce 229 omitted
|
2904
2955
|
|
2905
|
-
# reduce
|
2956
|
+
# reduce 230 omitted
|
2906
2957
|
|
2907
|
-
# reduce
|
2958
|
+
# reduce 231 omitted
|
2908
2959
|
|
2909
|
-
# reduce
|
2960
|
+
# reduce 232 omitted
|
2910
2961
|
|
2911
|
-
# reduce
|
2962
|
+
# reduce 233 omitted
|
2912
2963
|
|
2913
|
-
# reduce
|
2964
|
+
# reduce 234 omitted
|
2914
2965
|
|
2915
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2916
|
-
def
|
2966
|
+
module_eval(<<'.,.,', 'egrammar.ra', 801)
|
2967
|
+
def _reduce_235(val, _values, result)
|
2917
2968
|
result = Factory.literal(val[0][:value]) ; loc result, val[0]
|
2918
2969
|
result
|
2919
2970
|
end
|
2920
2971
|
.,.,
|
2921
2972
|
|
2922
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2923
|
-
def
|
2973
|
+
module_eval(<<'.,.,', 'egrammar.ra', 802)
|
2974
|
+
def _reduce_236(val, _values, result)
|
2924
2975
|
result = Factory.literal(val[0][:value]) ; loc result, val[0]
|
2925
2976
|
result
|
2926
2977
|
end
|
2927
2978
|
.,.,
|
2928
2979
|
|
2929
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2930
|
-
def
|
2980
|
+
module_eval(<<'.,.,', 'egrammar.ra', 804)
|
2981
|
+
def _reduce_237(val, _values, result)
|
2931
2982
|
result = Factory.STRING(val[0], *val[1]) ; loc result, val[0], val[1][-1]
|
2932
2983
|
result
|
2933
2984
|
end
|
2934
2985
|
.,.,
|
2935
2986
|
|
2936
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2937
|
-
def
|
2987
|
+
module_eval(<<'.,.,', 'egrammar.ra', 805)
|
2988
|
+
def _reduce_238(val, _values, result)
|
2938
2989
|
result = Factory.literal(val[0][:value]); loc result, val[0]
|
2939
2990
|
result
|
2940
2991
|
end
|
2941
2992
|
.,.,
|
2942
2993
|
|
2943
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2944
|
-
def
|
2994
|
+
module_eval(<<'.,.,', 'egrammar.ra', 806)
|
2995
|
+
def _reduce_239(val, _values, result)
|
2945
2996
|
result = Factory.literal(val[0][:value]); loc result, val[0]
|
2946
2997
|
result
|
2947
2998
|
end
|
2948
2999
|
.,.,
|
2949
3000
|
|
2950
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2951
|
-
def
|
3001
|
+
module_eval(<<'.,.,', 'egrammar.ra', 807)
|
3002
|
+
def _reduce_240(val, _values, result)
|
2952
3003
|
result = Factory.literal(val[0][:value]); loc result, val[0]
|
2953
3004
|
result
|
2954
3005
|
end
|
2955
3006
|
.,.,
|
2956
3007
|
|
2957
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2958
|
-
def
|
3008
|
+
module_eval(<<'.,.,', 'egrammar.ra', 808)
|
3009
|
+
def _reduce_241(val, _values, result)
|
2959
3010
|
result = [val[0]] + val[1]
|
2960
3011
|
result
|
2961
3012
|
end
|
2962
3013
|
.,.,
|
2963
3014
|
|
2964
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2965
|
-
def
|
3015
|
+
module_eval(<<'.,.,', 'egrammar.ra', 809)
|
3016
|
+
def _reduce_242(val, _values, result)
|
2966
3017
|
result = Factory.TEXT(val[0])
|
2967
3018
|
result
|
2968
3019
|
end
|
2969
3020
|
.,.,
|
2970
3021
|
|
2971
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2972
|
-
def
|
3022
|
+
module_eval(<<'.,.,', 'egrammar.ra', 812)
|
3023
|
+
def _reduce_243(val, _values, result)
|
2973
3024
|
result = [val[0]]
|
2974
3025
|
result
|
2975
3026
|
end
|
2976
3027
|
.,.,
|
2977
3028
|
|
2978
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2979
|
-
def
|
3029
|
+
module_eval(<<'.,.,', 'egrammar.ra', 813)
|
3030
|
+
def _reduce_244(val, _values, result)
|
2980
3031
|
result = [val[0]] + val[1]
|
2981
3032
|
result
|
2982
3033
|
end
|
2983
3034
|
.,.,
|
2984
3035
|
|
2985
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2986
|
-
def
|
3036
|
+
module_eval(<<'.,.,', 'egrammar.ra', 816)
|
3037
|
+
def _reduce_245(val, _values, result)
|
2987
3038
|
result = Factory.HEREDOC(val[0][:value], val[1]); loc result, val[0]
|
2988
3039
|
result
|
2989
3040
|
end
|
2990
3041
|
.,.,
|
2991
3042
|
|
2992
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2993
|
-
def
|
3043
|
+
module_eval(<<'.,.,', 'egrammar.ra', 819)
|
3044
|
+
def _reduce_246(val, _values, result)
|
2994
3045
|
result = Factory.SUBLOCATE(val[0], val[1]); loc result, val[0]
|
2995
3046
|
result
|
2996
3047
|
end
|
2997
3048
|
.,.,
|
2998
3049
|
|
2999
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3000
|
-
def
|
3050
|
+
module_eval(<<'.,.,', 'egrammar.ra', 820)
|
3051
|
+
def _reduce_247(val, _values, result)
|
3001
3052
|
result = Factory.SUBLOCATE(val[0], val[1]); loc result, val[0]
|
3002
3053
|
result
|
3003
3054
|
end
|
3004
3055
|
.,.,
|
3005
3056
|
|
3006
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3007
|
-
def
|
3057
|
+
module_eval(<<'.,.,', 'egrammar.ra', 823)
|
3058
|
+
def _reduce_248(val, _values, result)
|
3008
3059
|
result = Factory.EPP(val[1], val[2]); loc result, val[0]
|
3009
3060
|
result
|
3010
3061
|
end
|
3011
3062
|
.,.,
|
3012
3063
|
|
3013
|
-
# reduce
|
3064
|
+
# reduce 249 omitted
|
3014
3065
|
|
3015
|
-
# reduce
|
3066
|
+
# reduce 250 omitted
|
3016
3067
|
|
3017
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3018
|
-
def
|
3068
|
+
module_eval(<<'.,.,', 'egrammar.ra', 830)
|
3069
|
+
def _reduce_251(val, _values, result)
|
3019
3070
|
result = nil
|
3020
3071
|
result
|
3021
3072
|
end
|
3022
3073
|
.,.,
|
3023
3074
|
|
3024
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3025
|
-
def
|
3075
|
+
module_eval(<<'.,.,', 'egrammar.ra', 831)
|
3076
|
+
def _reduce_252(val, _values, result)
|
3026
3077
|
result = []
|
3027
3078
|
result
|
3028
3079
|
end
|
3029
3080
|
.,.,
|
3030
3081
|
|
3031
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3032
|
-
def
|
3082
|
+
module_eval(<<'.,.,', 'egrammar.ra', 832)
|
3083
|
+
def _reduce_253(val, _values, result)
|
3033
3084
|
result = val[1]
|
3034
3085
|
result
|
3035
3086
|
end
|
3036
3087
|
.,.,
|
3037
3088
|
|
3038
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3039
|
-
def
|
3089
|
+
module_eval(<<'.,.,', 'egrammar.ra', 835)
|
3090
|
+
def _reduce_254(val, _values, result)
|
3040
3091
|
result = Factory.RENDER_STRING(val[0][:value]); loc result, val[0]
|
3041
3092
|
result
|
3042
3093
|
end
|
3043
3094
|
.,.,
|
3044
3095
|
|
3045
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3046
|
-
def
|
3096
|
+
module_eval(<<'.,.,', 'egrammar.ra', 836)
|
3097
|
+
def _reduce_255(val, _values, result)
|
3047
3098
|
result = Factory.RENDER_EXPR(val[1]); loc result, val[0], val[2]
|
3048
3099
|
result
|
3049
3100
|
end
|
3050
3101
|
.,.,
|
3051
3102
|
|
3052
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3053
|
-
def
|
3054
|
-
result = Factory.RENDER_EXPR(Factory.block_or_expression(val[2])); loc result, val[0], val[4]
|
3103
|
+
module_eval(<<'.,.,', 'egrammar.ra', 837)
|
3104
|
+
def _reduce_256(val, _values, result)
|
3105
|
+
result = Factory.RENDER_EXPR(Factory.block_or_expression(val[2], val[1], val[3])); loc result, val[0], val[4]
|
3055
3106
|
result
|
3056
3107
|
end
|
3057
3108
|
.,.,
|
3058
3109
|
|
3059
|
-
# reduce
|
3110
|
+
# reduce 257 omitted
|
3060
3111
|
|
3061
|
-
# reduce
|
3112
|
+
# reduce 258 omitted
|
3062
3113
|
|
3063
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3064
|
-
def
|
3114
|
+
module_eval(<<'.,.,', 'egrammar.ra', 843)
|
3115
|
+
def _reduce_259(val, _values, result)
|
3065
3116
|
result = Factory.QREF(val[0][:value]) ; loc result, val[0]
|
3066
3117
|
result
|
3067
3118
|
end
|
3068
3119
|
.,.,
|
3069
3120
|
|
3070
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3071
|
-
def
|
3121
|
+
module_eval(<<'.,.,', 'egrammar.ra', 846)
|
3122
|
+
def _reduce_260(val, _values, result)
|
3072
3123
|
result = Factory.literal(val[0][:value]); loc result, val[0]
|
3073
3124
|
result
|
3074
3125
|
end
|
3075
3126
|
.,.,
|
3076
3127
|
|
3077
|
-
# reduce
|
3128
|
+
# reduce 261 omitted
|
3078
3129
|
|
3079
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3080
|
-
def
|
3130
|
+
module_eval(<<'.,.,', 'egrammar.ra', 852)
|
3131
|
+
def _reduce_262(val, _values, result)
|
3081
3132
|
result = nil
|
3082
3133
|
result
|
3083
3134
|
end
|
3084
3135
|
.,.,
|
3085
3136
|
|
3086
|
-
# reduce 258 omitted
|
3087
|
-
|
3088
|
-
# reduce 259 omitted
|
3089
|
-
|
3090
|
-
# reduce 260 omitted
|
3091
|
-
|
3092
|
-
# reduce 261 omitted
|
3093
|
-
|
3094
|
-
# reduce 262 omitted
|
3095
|
-
|
3096
3137
|
# reduce 263 omitted
|
3097
3138
|
|
3098
3139
|
# reduce 264 omitted
|
@@ -3131,8 +3172,18 @@ module_eval(<<'.,.,', 'egrammar.ra', 831)
|
|
3131
3172
|
|
3132
3173
|
# reduce 281 omitted
|
3133
3174
|
|
3134
|
-
|
3135
|
-
|
3175
|
+
# reduce 282 omitted
|
3176
|
+
|
3177
|
+
# reduce 283 omitted
|
3178
|
+
|
3179
|
+
# reduce 284 omitted
|
3180
|
+
|
3181
|
+
# reduce 285 omitted
|
3182
|
+
|
3183
|
+
# reduce 286 omitted
|
3184
|
+
|
3185
|
+
module_eval(<<'.,.,', 'egrammar.ra', 883)
|
3186
|
+
def _reduce_287(val, _values, result)
|
3136
3187
|
result = nil
|
3137
3188
|
result
|
3138
3189
|
end
|