diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2019-10-11 17:30:39 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2019-10-11 17:30:39 (GMT) |
commit | 95c5c86858e0457957dc5ec7ea8e05b923893122 (patch) | |
tree | 08265b0dcc45e94b812441719f6d71c1efcd1ac0 | |
parent | 54bcabe6518c97ba76f40c18c04229a96b2b6216 (diff) | |
download | blt-95c5c86858e0457957dc5ec7ea8e05b923893122.zip blt-95c5c86858e0457957dc5ec7ea8e05b923893122.tar.gz blt-95c5c86858e0457957dc5ec7ea8e05b923893122.tar.bz2 |
support higher fits dims
-rw-r--r-- | ds9/library/coord.tcl | 22 | ||||
-rw-r--r-- | ds9/library/crop.tcl | 4 | ||||
-rw-r--r-- | ds9/library/cube.tcl | 51 | ||||
-rw-r--r-- | ds9/library/menu.tcl | 103 | ||||
-rw-r--r-- | ds9/parsers/cubelex.fcl | 1 | ||||
-rw-r--r-- | ds9/parsers/cubelex.tcl | 158 | ||||
-rw-r--r-- | ds9/parsers/cubeparser.tac | 4 | ||||
-rw-r--r-- | ds9/parsers/cubeparser.tcl | 2180 | ||||
-rw-r--r-- | ds9/parsers/cubesendlex.fcl | 1 | ||||
-rw-r--r-- | ds9/parsers/cubesendlex.tcl | 99 | ||||
-rw-r--r-- | ds9/parsers/cubesendparser.tab.tcl | 19 | ||||
-rw-r--r-- | ds9/parsers/cubesendparser.tac | 5 | ||||
-rw-r--r-- | ds9/parsers/cubesendparser.tcl | 1024 | ||||
-rw-r--r-- | tksao/frame/base.h | 2 | ||||
-rw-r--r-- | tksao/frame/basecommand.C | 6 | ||||
-rw-r--r-- | tksao/frame/parser.C | 3066 | ||||
-rw-r--r-- | tksao/frame/parser.Y | 3 |
17 files changed, 2767 insertions, 3981 deletions
diff --git a/ds9/library/coord.tcl b/ds9/library/coord.tcl index 27a2374..3df58d7 100644 --- a/ds9/library/coord.tcl +++ b/ds9/library/coord.tcl @@ -81,23 +81,23 @@ proc AdjustCoordSystem3d {varname system} { global $varname global current + if {$current(frame) == {}} { + return + } + switch -- $var($system) { image {} wcs { - if {$current(frame) != {}} { - if {![$current(frame) has wcs 3d $var($system)]} { - set ${varname}($system) image - } + if {![$current(frame) has wcs 3d $var($system)]} { + set ${varname}($system) image } } default { - if {$current(frame) != {}} { - if {![$current(frame) has wcs 3d $var($system)]} { - if {[$current(frame) has wcs wcs]} { - set ${varname}($system) wcs - } else { - set ${varname}($system) image - } + if {![$current(frame) has wcs 3d $var($system)]} { + if {[$current(frame) has wcs wcs]} { + set ${varname}($system) wcs + } else { + set ${varname}($system) image } } } diff --git a/ds9/library/crop.tcl b/ds9/library/crop.tcl index 3fd9277..1af394e 100644 --- a/ds9/library/crop.tcl +++ b/ds9/library/crop.tcl @@ -222,7 +222,7 @@ proc UpdateCropDialog {} { DistMenuButtonCmd crop dcoord dformat {} AdjustCoordSystem3d crop rcoord - CoordMenuEnable3d $dcrop(rb).menu crop rcoord {} {} + CoordMenuEnable3d $dcrop(rb).menu crop rcoord CoordMenuButtonCmd crop rcoord {} {} set rr [$current(frame) get crop center \ @@ -255,7 +255,7 @@ proc UpdateCropDialog {} { CoordMenuReset $dcrop(cb).menu crop system 1 sky skyformat DistMenuReset $dcrop(db).menu crop dcoord 1 dformat - CoordMenuReset3d $dcrop(rb).menu crop rcoord {} {} + CoordMenuReset3d $dcrop(rb).menu crop rcoord set dcrop(x) {} set dcrop(y) {} diff --git a/ds9/library/cube.tcl b/ds9/library/cube.tcl index 6094c87..d5bab15 100644 --- a/ds9/library/cube.tcl +++ b/ds9/library/cube.tcl @@ -36,11 +36,11 @@ proc MatchCube {which sys} { # only matches on axis 2 set ss [$which get fits slice] - set wss [$which get fits slice from image $sys fk5] + set wss [$which get fits slice from image $sys] foreach ff $ds9(frames) { if {$ff != $which} { - RGBEvalLock rgb(lock,slice) $ff "$ff update fits slice $wss $sys fk5" + RGBEvalLock rgb(lock,slice) $ff "$ff update fits slice $wss $sys" } } } @@ -72,11 +72,7 @@ proc CubeSlice {ii ss} { RGBEvalLockCurrent rgb(lock,slice) "$current(frame) update fits slice $ii $ss" set dcube(image,$ii) $ss - if {$ii == 2} { - set dcube(wcs,$ii) [format $dcube(format) [$current(frame) get fits slice from image $cube(system)]] - } else { - set dcube(wcs,$ii) $ss - } + set dcube(wcs,$ii) [format $dcube(format) [$current(frame) get fits slice from image $cube(system)]] UpdateCube } @@ -293,11 +289,7 @@ proc CubeApply {ii} { RGBEvalLockCurrent rgb(lock,slice) "$current(frame) update fits slice $ii $ss" set dcube(image,$ii) $ss - if {$ii == 2} { - set dcube(wcs,$ii) [format $dcube(format) [$current(frame) get fits slice from image $cube(system)]] - } else { - set dcube(wcs,$ii) $ss - } + set dcube(wcs,$ii) [format $dcube(format) [$current(frame) get fits slice from image $cube(system)]] UpdateCube } @@ -522,6 +514,9 @@ proc UpdateCubeDialog {} { grid forget $dcube(chk,$ii) $dcube(slider,$ii) $dcube(wcsentry,$ii) } + # for menus + set cube(frame) $current(frame) + # special case, no frame if {$current(frame) == {}} { UpdateCubeDialogNoImage @@ -558,7 +553,7 @@ proc UpdateCubeDialogNoImage {} { set mb $icube(mb) # reset coord menu - CoordMenuReset3d $mb.coord cube system {} {} + CoordMenuReset3d $mb.coord cube system # disable Axes Reorder $mb entryconfig [msgcat::mc {Axes Order}] -state disabled @@ -596,7 +591,7 @@ proc UpdateCubeDialog2Axes {} { # now make sure we have the coord systems AdjustCoordSystem3d cube system - CoordMenuEnable3d $mb.coord cube system sky {} + CoordMenuEnable3d $mb.coord cube system # enable/disable Axes Reorder $mb entryconfig [msgcat::mc {Axes Order}] -state disabled @@ -629,8 +624,9 @@ proc UpdateCubeDialog2Axes {} { switch $cube(system) { image {} default { - set w [string range $cube(system) 3 3] - set key "CTYPE3$w" + set ww [string range $cube(system) 3 3] + set ii [expr $cube(axis)+1] + set key "CTYPE$ii$ww" set tt [string trim [$current(frame) get fits header keyword \{$key\}]] if {$tt != {}} { set dcube(vcoord) $tt @@ -655,7 +651,7 @@ proc UpdateCubeDialogAxes {axes} { # now make sure we have the coord systems AdjustCoordSystem3d cube system - CoordMenuEnable3d $mb.coord cube system sky {} + CoordMenuEnable3d $mb.coord cube system # enable/disable Axes Reorder $mb entryconfig [msgcat::mc {Axes Order}] -state normal @@ -733,8 +729,9 @@ proc UpdateCubeDialogAxes {axes} { switch $cube(system) { image {} default { - set w [string range $cube(system) 3 3] - set key "CTYPE3$w" + set ww [string range $cube(system) 3 3] + set ii [expr $cube(axis)+1] + set key "CTYPE$ii$ww" set tt [string trim [$current(frame) get fits header keyword \{$key\}]] if {$tt != {}} { set dcube(vcoord) $tt @@ -913,16 +910,12 @@ proc CubeCmd {ss} { RGBEvalLockCurrent rgb(lock,slice) "$current(frame) update fits slice $cube(axis) $ss" set dcube(image,$cube(axis)) $ss - if {$cube(axis) == 2} { - set dcube(wcs,$cube(axis)) [format $dcube(format) [$current(frame) get fits slice from image $cube(system)]] - } else { - set dcube(wcs,$cube(axis)) $ss - } + set dcube(wcs,$cube(axis)) [format $dcube(format) [$current(frame) get fits slice from image $cube(system)]] UpdateCube } -proc CubeCmdCoord {ss sys sky} { +proc CubeCmdCoord {ss sys} { global dcube global cube global current @@ -940,7 +933,7 @@ proc CubeCmdCoord {ss sys sky} { if {$cube(axis) > 2} { set ss [$current(frame) get fits slice $cube(axis)] } else { - set ss [$current(frame) get fits slice to image $ss $sys $sky] + set ss [$current(frame) get fits slice to image $ss $sys] } if {$ss<1} { set ss 1 @@ -949,11 +942,7 @@ proc CubeCmdCoord {ss sys sky} { RGBEvalLockCurrent rgb(lock,slice) "$current(frame) update fits slice $ss" set dcube(image,2) $ss - if {$cube(axis) == 2} { - set dcube(wcs,$cube(axis)) [format $dcube(format) [$current(frame) get fits slice from image $cube(system)]] - } else { - set dcube(wcs,$cube(axis)) $ss - } + set dcube(wcs,$cube(axis)) [format $dcube(format) [$current(frame) get fits slice from image $cube(system)]] UpdateCube } diff --git a/ds9/library/menu.tcl b/ds9/library/menu.tcl index 122ee06..42ecf6d 100644 --- a/ds9/library/menu.tcl +++ b/ds9/library/menu.tcl @@ -214,63 +214,6 @@ proc CoordMenuEnable {w varname system image sky skyformat} { } } -proc CoordMenuEnable3d {w varname system sky skyformat} { - upvar #0 $varname var - global $varname - - if {![info exists var(frame)]} { - return - } - - if {$var(frame) == {}} { - return - } - - if {[$var(frame) has wcs 3d wcs]} { - $w entryconfig [msgcat::mc {WCS}] -state normal - } else { - $w entryconfig [msgcat::mc {WCS}] -state disabled - } - - $w entryconfig [msgcat::mc {Multiple WCS}] -state normal - - foreach ll {a b c d e f g h i j k l m n o p q r s t u v w x y z} { - if {[$var(frame) has wcs 3d "wcs${ll}"]} { - $w.wcs entryconfig "[msgcat::mc {WCS}] $ll" -state normal - } else { - $w.wcs entryconfig "[msgcat::mc {WCS}] $ll" -state disabled - } - } - - $w entryconfig [msgcat::mc {Image}] -state normal - - if {$sky != {}} { - if {[$var(frame) has wcs equatorial $var($system)]} { - $w entryconfig [msgcat::mc {FK4}] -state normal - $w entryconfig [msgcat::mc {FK5}] -state normal - $w entryconfig [msgcat::mc {ICRS}] -state normal - $w entryconfig [msgcat::mc {Galactic}] -state normal - $w entryconfig [msgcat::mc {Ecliptic}] -state normal - } else { - $w entryconfig [msgcat::mc {FK4}] -state disabled - $w entryconfig [msgcat::mc {FK5}] -state disabled - $w entryconfig [msgcat::mc {ICRS}] -state disabled - $w entryconfig [msgcat::mc {Galactic}] -state disabled - $w entryconfig [msgcat::mc {Ecliptic}] -state disabled - } - } - - if {$skyformat != {}} { - if {[$var(frame) has wcs celestial $var($system)]} { - $w entryconfig [msgcat::mc {Degrees}] -state normal - $w entryconfig {Sexagesimal} -state normal - } else { - $w entryconfig [msgcat::mc {Degrees}] -state disabled - $w entryconfig {Sexagesimal} -state disabled - } - } -} - proc CoordMenuReset {w varname system image sky skyformat} { upvar #0 $varname var global $varname @@ -303,31 +246,49 @@ proc CoordMenuReset {w varname system image sky skyformat} { } } -proc CoordMenuReset3d {w varname system sky skyformat} { +proc CoordMenuEnable3d {w varname system} { upvar #0 $varname var global $varname - $w entryconfig [msgcat::mc {WCS}] -state normal + if {![info exists var(frame)]} { + return + } + + if {$var(frame) == {}} { + return + } + + if {[$var(frame) has wcs 3d wcs]} { + $w entryconfig [msgcat::mc {WCS}] -state normal + } else { + $w entryconfig [msgcat::mc {WCS}] -state disabled + } + $w entryconfig [msgcat::mc {Multiple WCS}] -state normal - foreach l {a b c d e f g h i j k l m n o p q r s t u v w x y z} { - $w.wcs entryconfig "[msgcat::mc {WCS}] $l" -state normal + foreach ll {a b c d e f g h i j k l m n o p q r s t u v w x y z} { + if {[$var(frame) has wcs 3d "wcs${ll}"]} { + $w.wcs entryconfig "[msgcat::mc {WCS}] $ll" -state normal + } else { + $w.wcs entryconfig "[msgcat::mc {WCS}] $ll" -state disabled + } } $w entryconfig [msgcat::mc {Image}] -state normal +} - if {$sky != {}} { - $w entryconfig [msgcat::mc {FK4}] -state normal - $w entryconfig [msgcat::mc {FK5}] -state normal - $w entryconfig [msgcat::mc {ICRS}] -state normal - $w entryconfig [msgcat::mc {Galactic}] -state normal - $w entryconfig [msgcat::mc {Ecliptic}] -state normal - } +proc CoordMenuReset3d {w varname system} { + upvar #0 $varname var + global $varname - if {$skyformat != {}} { - $w entryconfig [msgcat::mc {Degrees}] -state normal - $w entryconfig {Sexagesimal} -state normal + $w entryconfig [msgcat::mc {WCS}] -state normal + $w entryconfig [msgcat::mc {Multiple WCS}] -state normal + + foreach l {a b c d e f g h i j k l m n o p q r s t u v w x y z} { + $w.wcs entryconfig "[msgcat::mc {WCS}] $l" -state normal } + + $w entryconfig [msgcat::mc {Image}] -state normal } # DistMenu diff --git a/ds9/parsers/cubelex.fcl b/ds9/parsers/cubelex.fcl index b0bbcd7..cff9436 100644 --- a/ds9/parsers/cubelex.fcl +++ b/ds9/parsers/cubelex.fcl @@ -32,7 +32,6 @@ stop {return $STOP_} 321 {return $321_} #include wcssys.fin -#include skyframe.fin #include yesno.fin #include numeric.fin #include string.fin diff --git a/ds9/parsers/cubelex.tcl b/ds9/parsers/cubelex.tcl index 86b5e76..1ae32c2 100644 --- a/ds9/parsers/cubelex.tcl +++ b/ds9/parsers/cubelex.tcl @@ -608,159 +608,110 @@ set 321_ 321 set yyleng [string length $yytext] set matched_rule 48 } - # rule 49: fk4 - if {[regexp -start $index_ -indices -line -nocase -- {\A(fk4)} $yy_current_buffer match] > 0 && \ - [lindex $match 1] - $index_ + 1 > $yyleng} { - set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] - set yyleng [string length $yytext] - set matched_rule 49 - } - # rule 50: b1950 - if {[regexp -start $index_ -indices -line -nocase -- {\A(b1950)} $yy_current_buffer match] > 0 && \ - [lindex $match 1] - $index_ + 1 > $yyleng} { - set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] - set yyleng [string length $yytext] - set matched_rule 50 - } - # rule 51: fk5 - if {[regexp -start $index_ -indices -line -nocase -- {\A(fk5)} $yy_current_buffer match] > 0 && \ - [lindex $match 1] - $index_ + 1 > $yyleng} { - set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] - set yyleng [string length $yytext] - set matched_rule 51 - } - # rule 52: j2000 - if {[regexp -start $index_ -indices -line -nocase -- {\A(j2000)} $yy_current_buffer match] > 0 && \ - [lindex $match 1] - $index_ + 1 > $yyleng} { - set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] - set yyleng [string length $yytext] - set matched_rule 52 - } - # rule 53: icrs - if {[regexp -start $index_ -indices -line -nocase -- {\A(icrs)} $yy_current_buffer match] > 0 && \ - [lindex $match 1] - $index_ + 1 > $yyleng} { - set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] - set yyleng [string length $yytext] - set matched_rule 53 - } - # rule 54: galactic - if {[regexp -start $index_ -indices -line -nocase -- {\A(galactic)} $yy_current_buffer match] > 0 && \ - [lindex $match 1] - $index_ + 1 > $yyleng} { - set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] - set yyleng [string length $yytext] - set matched_rule 54 - } - # rule 55: ecliptic - if {[regexp -start $index_ -indices -line -nocase -- {\A(ecliptic)} $yy_current_buffer match] > 0 && \ - [lindex $match 1] - $index_ + 1 > $yyleng} { - set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] - set yyleng [string length $yytext] - set matched_rule 55 - } - # rule 56: yes + # rule 49: yes if {[regexp -start $index_ -indices -line -nocase -- {\A(yes)} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 56 + set matched_rule 49 } - # rule 57: no + # rule 50: no if {[regexp -start $index_ -indices -line -nocase -- {\A(no)} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 57 + set matched_rule 50 } - # rule 58: on + # rule 51: on if {[regexp -start $index_ -indices -line -nocase -- {\A(on)} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 58 + set matched_rule 51 } - # rule 59: off + # rule 52: off if {[regexp -start $index_ -indices -line -nocase -- {\A(off)} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 59 + set matched_rule 52 } - # rule 60: true + # rule 53: true if {[regexp -start $index_ -indices -line -nocase -- {\A(true)} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 60 + set matched_rule 53 } - # rule 61: false + # rule 54: false if {[regexp -start $index_ -indices -line -nocase -- {\A(false)} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 61 + set matched_rule 54 } - # rule 62: [+-]?{D}+ + # rule 55: [+-]?{D}+ if {[regexp -start $index_ -indices -line -nocase -- {\A([+-]?([0-9])+)} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 62 + set matched_rule 55 } - # rule 63: [+-]?{D}+\.?({E})? + # rule 56: [+-]?{D}+\.?({E})? if {[regexp -start $index_ -indices -line -nocase -- {\A([+-]?([0-9])+\.?(([Ee][+-]?([0-9])+))?)} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 63 + set matched_rule 56 } - # rule 64: [+-]?{D}*\.{D}+({E})? + # rule 57: [+-]?{D}*\.{D}+({E})? if {[regexp -start $index_ -indices -line -nocase -- {\A([+-]?([0-9])*\.([0-9])+(([Ee][+-]?([0-9])+))?)} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 64 + set matched_rule 57 } - # rule 65: \"[^\"]*\" + # rule 58: \"[^\"]*\" if {[regexp -start $index_ -indices -line -nocase -- {\A(\"[^\"]*\")} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 65 + set matched_rule 58 } - # rule 66: \'[^\']*\' + # rule 59: \'[^\']*\' if {[regexp -start $index_ -indices -line -nocase -- {\A(\'[^\']*\')} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 66 + set matched_rule 59 } - # rule 67: \{[^\}]*\} + # rule 60: \{[^\}]*\} if {[regexp -start $index_ -indices -line -nocase -- {\A(\{[^\}]*\})} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 67 + set matched_rule 60 } - # rule 68: \S+\S+ + # rule 61: \S+\S+ if {[regexp -start $index_ -indices -line -nocase -- {\A(\S+\S+)} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 68 + set matched_rule 61 } - # rule 69: \s + # rule 62: \s if {[regexp -start $index_ -indices -line -nocase -- {\A(\s)} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 69 + set matched_rule 62 } - # rule 70: . + # rule 63: . if {[regexp -start $index_ -indices -line -nocase -- {\A(.)} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 70 + set matched_rule 63 } if {$matched_rule == -1} { set yytext [string index $yy_current_buffer $index_] @@ -922,67 +873,46 @@ return $WCSY_ return $WCSZ_ } 49 { -return $FK4_ - } - 50 { -return $FK4_ - } - 51 { -return $FK5_ - } - 52 { -return $FK5_ - } - 53 { -return $ICRS_ - } - 54 { -return $GALACTIC_ - } - 55 { -return $ECLIPTIC_ - } - 56 { return $YES_ } - 57 { + 50 { return $NO_ } - 58 { + 51 { return $ON_ } - 59 { + 52 { return $OFF_ } - 60 { + 53 { return $TRUE_ } - 61 { + 54 { return $FALSE_ } - 62 { + 55 { set yylval $yytext; return $INT_ } - 63 - - 64 { + 56 - + 57 { set yylval $yytext; return $REAL_ } - 65 { + 58 { set yylval [string range $yytext 1 end-1]; return $STRING_ } - 66 { + 59 { set yylval [string range $yytext 1 end-1]; return $STRING_ } - 67 { + 60 { set yylval [string range $yytext 1 end-1]; return $STRING_ } - 68 { + 61 { set yylval $yytext; return $STRING_ } - 69 { + 62 { # ignore whitespace } - 70 { + 63 { set yylval $yytext; return $yylval } default diff --git a/ds9/parsers/cubeparser.tac b/ds9/parsers/cubeparser.tac index 2a42d20..a7b2e5e 100644 --- a/ds9/parsers/cubeparser.tac +++ b/ds9/parsers/cubeparser.tac @@ -37,7 +37,6 @@ %% #include wcssys.trl -#include skyframe.trl #include yesno.trl #include numeric.trl @@ -60,8 +59,7 @@ cube : OPEN_ | ORDER_ order | INT_ {CubeCmd $1} | INT_ IMAGE_ {CubeCmd $1} - | numeric wcssys {CubeCmdCoord $1 $2 fk5} - | numeric wcssys skyframe {CubeCmdCoord $1 $2 $3} + | numeric wcssys {CubeCmdCoord $1 $2} | AXIS_ INT_ {CubeCmdAxis $2} ; diff --git a/ds9/parsers/cubeparser.tcl b/ds9/parsers/cubeparser.tcl index e933a57..ee7c54f 100644 --- a/ds9/parsers/cubeparser.tcl +++ b/ds9/parsers/cubeparser.tcl @@ -61,1256 +61,814 @@ proc cube::unsetupvalues {numsyms} { } array set cube::table { - 61:299,target 76 - 9:283 shift - 46:288,target 14 - 17:266,target 42 - 51:299 reduce - 48:0 reduce - 21:299 reduce - 9:305 shift - 41:287,target 9 - 1:258,target 42 - 64:0,target 77 - 9:299 reduce - 9:310 shift - 53:290,target 21 - 53:289,target 21 - 68:284,target 77 - 33:0,target 1 - 35:286,target 3 - 4:320,target 27 - 4:319,target 26 - 9:268,target 44 - 16:299,target 52 - 62:299,target 75 - 9:322 goto - 17:283,target 59 - 47:288,target 15 - 56:284 reduce - 56:285 reduce - 13:317,target 24 - 56:286 reduce - 21:0 reduce - 56:287 reduce - 56:288 reduce - 56:290 reduce - 56:289 reduce - 0:302,target 5 - 9:331 goto - 63:0 reduce - 1:275,target 42 - 42:287,target 10 - 2:258,target 43 - 56:299 reduce - 54:290,target 22 - 54:289,target 22 - 10:273,target 49 - 26:299 reduce - 36:286,target 4 - 63:299,target 50 - 48:288,target 16 - 61:0,target 76 - 29:0,target 58 - 30:0,target 66 - 35:0 reduce - 17:257,target 33 - 2:275,target 43 - 43:287,target 11 - 77:0 reduce - 55:290,target 23 - 55:289,target 23 - 9:0 reduce - 22:292,target 71 - 37:286,target 5 - 64:299,target 77 - 50:288,target 18 - 49:288,target 17 - 62:299 reduce - 9:259,target 35 - 9:260,target 36 - 17:274,target 50 - 32:299 reduce - 44:287,target 12 - 50:0 reduce - 49:0 reduce - 57:0,target 25 - 56:290,target 24 - 56:289,target 24 - 1:266,target 42 - 26:0,target 70 - 38:286,target 6 - 10:264,target 40 - 19:299,target 45 - 20:299,target 61 - 65:299,target 78 - 51:288,target 19 - 9:276,target 52 - 33:285,target 1 - 37:284 reduce - 37:285 reduce - 37:286 reduce - 37:287 reduce - 22:0 reduce - 37:288 reduce - 37:289 reduce - 37:290 reduce - 45:287,target 13 - 0:309,target 11 - 67:299 reduce - 1:283,target 42 - 64:0 reduce - 57:290,target 25 - 57:289,target 25 - 2:266,target 43 - 37:299 reduce - 10:281,target 57 - 39:286,target 7 - 40:286,target 8 - 85:0,target 46 - 21:299,target 64 - 66:299,target 49 - 54:0,target 22 - 52:288,target 20 - 2:257 reduce - 23:0,target 67 - 2:258 reduce - 34:285,target 2 - 2:260 reduce - 2:259 reduce - 2:261 reduce - 2:262 reduce - 2:263 reduce - 2:264 reduce - 0:326,target 18 - 46:287,target 14 - 2:265 reduce - 2:266 reduce - 1:299,target 60 - 17:265,target 41 - 2:267 reduce - 36:0 reduce - 2:283,target 43 - 2:268 reduce - 58:290,target 26 - 58:289,target 26 - 2:270 reduce - 2:269 reduce - 2:271 reduce - 2:272 reduce - 43:284 reduce - 2:273 reduce - 43:285 reduce - 78:0 reduce - 2:274 reduce - 43:286 reduce - 2:275 reduce - 41:286,target 9 - 43:287 reduce - 2:276 reduce - 43:288 reduce - 2:277 reduce - 1:257,target 42 - 43:289 reduce - 43:290 reduce - 2:278 reduce - 22:299,target 35 - 67:299,target 59 - 2:280 reduce - 2:279 reduce - 53:288,target 21 - 2:281 reduce - 73:299 reduce - 2:282 reduce - 2:283 reduce - 35:285,target 3 - 4:318,target 25 - 8:0,target 56 - 9:267,target 43 - 43:299 reduce - 82:0,target 33 - 13:307 shift - 17:282,target 58 - 47:287,target 15 - 51:0,target 19 - 2:299,target 43 - 13:316,target 23 - 59:290,target 27 - 59:289,target 27 - 19:0,target 44 - 20:0,target 61 - 51:0 reduce - 2:299 reduce - 13:316 shift - 0:301,target 4 - 13:317 shift - 13:318 shift - 1:274,target 42 - 13:319 shift - 13:320 shift - 42:286,target 10 - 13:321 shift - 2:257,target 43 - 23:299,target 67 - 68:299,target 62 - 54:288,target 22 - 10:272,target 48 - 13:329 goto - 13:330 goto - 48:284 reduce - 36:285,target 4 - 48:285 reduce - 48:286 reduce - 48:287 reduce - 48:288 reduce - 48:290 reduce - 48:289 reduce - 48:287,target 16 - 78:299 reduce - 23:0 reduce - 48:299 reduce - 5:0,target 48 - 78:0,target 29 - 2:274,target 43 - 43:286,target 11 - 65:0 reduce - 24:299,target 68 - 70:299,target 36 - 69:299,target 85 - 47:0,target 15 - 55:288,target 23 - 7:297 shift - 7:298 shift - 16:0,target 52 - 22:291,target 70 - 37:285,target 5 - 50:287,target 18 - 49:287,target 17 - 9:258,target 34 - 54:284 reduce - 17:273,target 49 - 54:285 reduce - 54:286 reduce - 7:325 goto - 13:307,target 22 - 54:287 reduce - 37:0 reduce - 54:288 reduce - 44:286,target 12 - 54:290 reduce - 54:289 reduce - 25:299,target 69 - 71:299,target 39 - 84:299 reduce - 80:0 reduce - 79:0 reduce - 56:288,target 24 - 1:265,target 42 - 54:299 reduce - 2:0,target 43 - 38:285,target 6 - 75:0,target 41 - 10:263,target 39 - 51:287,target 19 - 9:275,target 51 - 24:299 reduce - 44:0,target 12 - 5:299,target 48 - 33:284,target 1 - 10:332,target 66 - 45:286,target 13 - 0:308,target 10 - 0:298,target 2 - 52:0 reduce - 26:299,target 70 - 72:299,target 37 - 1:282,target 42 - 57:288,target 25 - 2:265,target 43 - 59:284 reduce - 59:285 reduce - 59:286 reduce - 10:279,target 55 - 10:280,target 56 - 39:285,target 7 - 40:285,target 8 - 59:287 reduce - 59:288 reduce - 59:290 reduce - 59:289 reduce - 52:287,target 20 - 6:299,target 55 - 34:284,target 2 - 60:299 reduce - 59:299 reduce - 72:0,target 37 - 0:325,target 17 - 46:286,target 14 - 24:0 reduce - 17:264,target 40 - 29:299 reduce - 30:299 reduce - 27:299,target 71 - 41:0,target 9 - 73:299,target 40 - 2:282,target 43 - 58:288,target 26 - 66:0 reduce - 41:285,target 9 - 53:287,target 21 - 35:284,target 3 - 4:317,target 24 - 9:266,target 42 - 17:281,target 57 - 35:284 reduce - 47:286,target 15 - 35:285 reduce - 35:286 reduce - 28:299,target 72 - 35:287 reduce - 74:299,target 38 - 35:288 reduce - 59:288,target 27 - 35:289 reduce - 35:290 reduce - 38:0 reduce - 0:300,target 3 - 65:299 reduce - 1:273,target 42 - 42:285,target 10 - 81:0 reduce - 68:0,target 62 - 35:299 reduce - 54:287,target 22 - 37:0,target 5 - 10:271,target 47 - 8:299,target 56 - 9:283,target 59 - 36:284,target 4 - 48:286,target 16 - 11:0 reduce - 29:299,target 58 - 30:299,target 66 - 75:299,target 41 - 53:0 reduce - 2:273,target 43 - 43:285,target 11 - 41:284 reduce - 41:285 reduce - 41:286 reduce - 55:287,target 23 - 41:287 reduce - 41:288 reduce - 9:299,target 73 - 9:310,target 61 - 41:289 reduce - 41:290 reduce - 37:284,target 5 - 71:299 reduce - 65:0,target 78 - 50:286,target 18 - 49:286,target 17 - 41:299 reduce - 9:257,target 33 - 34:0,target 2 - 0:300 shift - 31:299,target 42 - 76:299,target 65 - 0:301 shift - 0:302 shift - 0:303 shift - 11:299 reduce - 17:272,target 48 - 0:304 shift - 25:0 reduce - 0:306 shift - 0:307 shift - 0:297 shift - 44:285,target 12 - 0:308 shift - 0:298 shift - 0:309 shift - 67:0 reduce - 0:311 shift - 0:312 shift - 56:287,target 24 - 0:313 shift - 1:264,target 42 - 0:314 shift - 0:315 shift - 68:290,target 83 - 68:289,target 82 - 38:284,target 6 - 10:262,target 38 - 46:284 reduce - 51:286,target 19 - 9:274,target 50 - 46:285 reduce - 0:325 goto - 46:286 reduce - 0:326 goto - 46:287 reduce - 32:299,target 57 - 46:288 reduce - 77:299,target 28 - 0:328 goto - 46:289 reduce - 46:290 reduce - 76:299 reduce - 62:0,target 75 - 45:285,target 13 - 39:0 reduce - 40:0 reduce - 0:307,target 9 - 0:297,target 1 - 46:299 reduce - 1:281,target 42 - 31:0,target 42 - 57:287,target 25 - 2:264,target 43 - 82:0 reduce - 16:299 reduce - 10:278,target 54 - 39:284,target 7 - 40:284,target 8 - 5:299 reduce - 52:286,target 20 - 33:299,target 1 - 78:299,target 29 - 12:0 reduce - 46:285,target 14 - 52:284 reduce - 52:285 reduce - 17:263,target 39 - 52:286 reduce - 52:287 reduce - 2:281,target 43 - 58:287,target 26 - 54:0 reduce - 52:288 reduce - 52:290 reduce - 52:289 reduce - 10:305,target 64 - 82:299 reduce - 41:284,target 9 - 58:0,target 26 - 22:291 shift - 22:292 shift - 22:293 shift - 53:286,target 21 - 52:299 reduce - 22:294 shift - 22:295 shift - 27:0,target 71 - 7:298,target 2 - 22:296 shift - 34:299,target 2 - 80:299,target 31 - 79:299,target 30 - 22:299 reduce - 4:316,target 23 - 9:265,target 41 - 17:279,target 55 - 17:280,target 56 - 47:285,target 15 - 26:0 reduce - 59:287,target 27 - 10:322,target 65 - 22:324 goto - 68:0 reduce - 1:272,target 42 - 42:284,target 10 - 22:324,target 76 - 1:0 reduce - 57:284 reduce - 57:285 reduce - 57:286 reduce - 54:286,target 22 - 7:325,target 32 - 57:287 reduce - 10:269,target 45 - 10:270,target 46 - 57:288 reduce - 57:290 reduce - 57:289 reduce - 35:299,target 3 - 81:299,target 32 - 9:282,target 58 - 55:0,target 23 - 48:285,target 16 - 57:299 reduce - 3:297,target 21 - 24:0,target 68 - 0:315,target 16 - 27:299 reduce - 41:0 reduce - 2:272,target 43 - 43:284,target 11 - 83:0 reduce - 55:286,target 23 - 36:299,target 4 - 82:299,target 33 - 50:285,target 18 - 49:285,target 17 - 4:307,target 22 - 9:0,target 73 - 33:284 reduce - 17:271,target 47 - 33:285 reduce - 83:0,target 34 - 33:286 reduce - 33:287 reduce - 33:288 reduce - 33:289 reduce - 33:290 reduce - 44:284,target 12 - 55:0 reduce - 52:0,target 20 - 63:299 reduce - 56:286,target 24 - 21:0,target 64 - 1:263,target 42 - 37:299,target 5 - 83:299,target 34 - 33:299 reduce - 68:288,target 81 - 10:261,target 37 - 51:285,target 19 - 9:273,target 49 - 27:0 reduce - 45:284,target 13 - 68:284 shift - 0:306,target 8 - 68:285 shift - 68:286 shift - 1:280,target 42 - 1:279,target 42 - 70:0 reduce - 68:287 shift - 57:286,target 25 - 68:288 shift - 2:263,target 43 - 68:290 shift - 68:289 shift - 6:0,target 55 - 38:284 reduce - 2:0 reduce - 38:285 reduce - 38:299,target 6 - 84:299,target 63 - 80:0,target 31 - 79:0,target 30 - 38:286 reduce - 10:277,target 53 - 38:287 reduce - 38:288 reduce - 38:289 reduce - 38:290 reduce - 48:0,target 16 - 52:285,target 20 - 68:299 reduce - 38:299 reduce - 46:284,target 14 - 17:262,target 38 - 68:323 goto - 42:0 reduce - 2:280,target 43 - 2:279,target 43 - 58:286,target 26 - 39:299,target 7 - 40:299,target 8 - 84:0 reduce - 22:296,target 75 - 53:285,target 21 - 7:297,target 31 - 44:284 reduce - 44:285 reduce - 76:0,target 65 - 9:264,target 40 - 44:286 reduce - 44:287 reduce - 44:288 reduce - 44:289 reduce - 44:290 reduce - 17:278,target 54 - 45:0,target 13 - 47:284,target 15 - 14:0 reduce - 74:299 reduce - 14:0,target 51 - 59:286,target 27 - 56:0 reduce - 41:299,target 9 - 44:299 reduce - 1:271,target 42 - 14:299 reduce - 54:285,target 22 - 10:268,target 44 - 3:297 shift - 9:281,target 57 - 33:289,target 1 - 33:290,target 1 - 13:329,target 67 - 13:330,target 30 - 48:284,target 16 - 28:0 reduce - 50:284 reduce - 49:284 reduce - 0:314,target 15 - 50:285 reduce - 49:285 reduce - 73:0,target 40 - 50:286 reduce - 49:286 reduce - 42:299,target 10 - 50:287 reduce - 49:287 reduce - 50:288 reduce - 49:288 reduce - 2:271,target 43 - 71:0 reduce - 50:290 reduce - 50:289 reduce - 49:290 reduce - 49:289 reduce - 68:323,target 84 - 42:0,target 10 - 80:299 reduce - 79:299 reduce - 55:285,target 23 - 11:0,target 53 - 50:299 reduce - 49:299 reduce - 17:322,target 68 - 34:289,target 2 - 34:290,target 2 - 50:284,target 18 - 49:284,target 17 - 19:299 reduce - 20:299 reduce - 8:299 reduce - 17:269,target 45 - 17:270,target 46 - 43:299,target 11 - 43:0 reduce - 85:0 reduce - 56:285,target 24 - 1:262,target 42 - 19:327 goto - 55:284 reduce - 55:285 reduce - 70:0,target 36 - 68:287,target 80 - 55:286 reduce - 55:287 reduce - 55:288 reduce - 10:259,target 35 - 10:260,target 36 - 55:290 reduce - 55:289 reduce - 35:289,target 3 - 35:290,target 3 - 38:0,target 6 - 51:284,target 19 - 9:272,target 48 - 13:321,target 28 - 55:299 reduce - 15:0 reduce - 44:299,target 12 - 25:299 reduce - 57:0 reduce - 1:278,target 42 - 57:285,target 25 - 2:262,target 43 - 10:276,target 52 - 36:289,target 4 - 36:290,target 4 - 52:284,target 20 - 66:0,target 49 - 45:299,target 13 - 29:0 reduce - 30:0 reduce - 35:0,target 3 - 1:305,target 20 - 17:261,target 37 - 2:278,target 43 - 58:285,target 26 - 72:0 reduce - 61:299 reduce - 22:295,target 74 - 31:299 reduce - 37:289,target 5 - 37:290,target 5 - 53:284,target 21 - 9:263,target 39 - 46:299,target 14 - 17:277,target 53 - 59:285,target 27 - 44:0 reduce - 63:0,target 50 - 1:270,target 42 - 1:269,target 42 - 36:284 reduce - 32:0,target 57 - 36:285 reduce - 36:286 reduce - 38:289,target 6 - 38:290,target 6 - 54:284,target 22 - 36:287 reduce - 10:267,target 43 - 36:288 reduce - 36:289 reduce - 36:290 reduce - 9:279,target 55 - 9:280,target 56 - 66:299 reduce - 47:299,target 15 - 33:288,target 1 - 36:299 reduce - 16:0 reduce - 0:313,target 14 - 58:0 reduce - 2:270,target 43 - 2:269,target 43 - 1:257 reduce - 1:258 reduce - 1:260 reduce - 1:259 reduce - 1:261 reduce - 39:289,target 7 - 39:290,target 7 - 40:289,target 8 - 40:290,target 8 - 55:284,target 23 - 1:262 reduce - 1:263 reduce - 1:264 reduce - 1:265 reduce - 1:266 reduce - 1:267 reduce - 60:0,target 74 - 59:0,target 27 - 1:268 reduce - 1:270 reduce - 1:269 reduce - 48:299,target 16 - 1:271 reduce - 1:272 reduce - 34:288,target 2 - 42:284 reduce - 1:273 reduce - 28:0,target 72 - 42:285 reduce - 1:274 reduce - 42:286 reduce - 1:275 reduce - 42:287 reduce - 1:276 reduce - 42:288 reduce - 1:277 reduce - 42:289 reduce - 42:290 reduce - 1:278 reduce - 1:280 reduce - 1:279 reduce - 17:268,target 44 - 1:281 reduce - 31:0 reduce - 72:299 reduce - 1:282 reduce - 1:283 reduce - 73:0 reduce - 42:299 reduce - 41:289,target 9 - 41:290,target 9 - 56:284,target 24 - 5:0 reduce - 1:261,target 42 + 61:299,target 68 17:257 shift - 12:299 reduce + 10:280,target 56 + 10:279,target 55 + 9:283 shift 17:258 shift - 17:259 shift + 12:299 reduce + 0:327,target 19 17:260 shift - 68:286,target 79 - 1:305 shift + 17:259 shift + 27:0 reduce + 17:266,target 42 17:261 shift + 1:305 shift + 51:299 reduce 17:262 shift - 10:258,target 34 17:263 shift + 10:258,target 34 50:299,target 18 49:299,target 17 + 48:0 reduce 17:264 shift - 1:299 reduce + 0:306,target 8 17:265 shift - 35:288,target 3 - 9:271,target 47 + 1:299 reduce + 6:299,target 48 17:266 shift + 9:271,target 47 + 1:279,target 35 + 1:280,target 35 + 70:0 reduce + 21:299 reduce 17:267 shift 17:268 shift - 17:269 shift + 2:263,target 36 17:270 shift + 17:269 shift + 9:305 shift + 6:0,target 48 + 60:299 reduce + 59:299 reduce + 38:299,target 6 17:271 shift + 2:0 reduce 17:272 shift - 13:319,target 26 - 13:320,target 27 + 1:258,target 35 + 72:0,target 30 17:273 shift + 13:320,target 27 + 13:319,target 26 + 10:277,target 53 + 64:0,target 69 17:274 shift + 9:310 shift + 9:299 reduce + 0:325,target 18 56:0,target 24 + 24:0 reduce 17:275 shift + 48:0,target 16 + 30:299 reduce + 29:299 reduce 17:276 shift + 17:264,target 40 + 41:0,target 9 + 27:299,target 63 17:277 shift - 17:278 shift + 73:299,target 33 45:0 reduce - 47:284 reduce - 0:304,target 7 - 17:279 shift + 33:0,target 1 + 17:278 shift + 2:282,target 36 + 68:299 reduce + 25:0,target 61 17:280 shift - 25:0,target 69 - 47:285 reduce + 17:279 shift + 0:304,target 7 17:281 shift - 47:286 reduce - 1:277,target 42 + 66:0 reduce 17:282 shift - 42:289,target 10 - 42:290,target 10 - 47:287 reduce - 57:284,target 25 + 9:268,target 44 + 1:277,target 35 + 4:319,target 26 + 4:320,target 27 17:283 shift - 47:288 reduce - 2:261,target 43 - 47:289 reduce - 47:290 reduce - 77:299 reduce + 16:299,target 45 + 2:261,target 36 + 62:299,target 67 + 38:299 reduce + 17:283,target 59 + 9:322 goto + 13:317,target 24 10:275,target 51 + 21:0 reduce 51:299,target 19 - 36:288,target 4 + 17:262,target 38 + 42:0 reduce 47:299 reduce + 9:330 goto + 2:279,target 36 + 2:280,target 36 + 0:302,target 5 + 63:0 reduce + 9:266,target 42 + 1:275,target 35 + 4:317,target 24 + 40:299,target 8 + 39:299,target 7 + 2:258,target 36 + 17:281,target 57 + 56:299 reduce + 22:296,target 75 + 10:273,target 49 + 28:299,target 64 + 74:299,target 31 6:299 reduce - 17:259,target 35 + 38:0 reduce 17:260,target 36 - 2:277,target 43 - 43:289,target 11 - 43:290,target 11 + 17:259,target 35 + 26:299 reduce + 7:297,target 31 + 2:277,target 36 60:0 reduce 59:0 reduce - 58:284,target 26 - 84:0,target 63 + 0:300,target 3 + 65:299 reduce 17:322 goto + 76:0,target 57 + 63:299,target 43 + 9:264,target 40 + 1:273,target 35 + 68:0,target 55 + 61:0,target 68 53:0,target 21 - 53:284 reduce + 45:0,target 13 + 35:299 reduce + 17:278,target 54 + 37:0,target 5 + 14:0 reduce 52:299,target 20 + 30:0,target 58 + 29:0,target 51 22:294,target 73 - 53:285 reduce - 22:0,target 35 - 37:288,target 5 - 53:286 reduce - 53:287 reduce - 53:288 reduce - 53:290 reduce - 53:289 reduce + 10:271,target 47 + 74:299 reduce + 22:0,target 28 + 8:299,target 49 + 35:0 reduce + 14:0,target 44 + 17:257,target 33 + 9:283,target 59 + 56:0 reduce + 2:275,target 36 + 44:299 reduce + 41:299,target 9 + 77:0 reduce 9:262,target 38 - 83:299 reduce + 1:271,target 35 + 22:323,target 76 + 14:299 reduce + 9:0 reduce + 30:299,target 58 + 29:299,target 51 17:276,target 52 + 11:0 reduce + 75:299,target 34 + 7:324,target 32 53:299 reduce + 22:292,target 71 + 10:268,target 44 32:0 reduce - 44:289,target 12 - 44:290,target 12 - 59:284,target 27 + 3:297 shift + 9:281,target 57 + 53:0 reduce + 64:299,target 69 23:299 reduce + 2:273,target 36 74:0 reduce - 9:331,target 63 - 1:268,target 42 + 62:299 reduce + 9:260,target 36 + 9:259,target 35 + 1:268,target 35 + 13:329,target 30 6:0 reduce 53:299,target 21 - 38:288,target 6 + 17:274,target 50 + 9:310,target 61 + 9:299,target 65 + 32:299 reduce + 28:0 reduce 10:266,target 42 - 81:0,target 32 - 4:330,target 30 - 4:329,target 29 + 0:314,target 15 + 71:299 reduce + 73:0,target 33 + 50:0 reduce + 49:0 reduce + 42:299,target 10 9:278,target 54 + 4:329,target 30 + 65:0,target 70 + 57:0,target 25 + 2:271,target 36 + 71:0 reduce 50:0,target 18 49:0,target 17 - 33:287,target 1 - 58:284 reduce - 58:285 reduce + 42:0,target 10 + 41:299 reduce + 34:0,target 2 + 9:257,target 33 + 1:266,target 35 + 31:299,target 35 + 26:0,target 62 + 0:300 shift + 76:299,target 57 18:0,target 0 - 58:286 reduce - 58:287 reduce - 58:288 reduce - 45:289,target 13 - 45:290,target 13 - 58:290 reduce - 58:289 reduce + 0:301 shift + 11:0,target 46 + 0:302 shift + 17:272,target 48 + 11:299 reduce + 0:303 shift + 25:0 reduce + 0:304 shift + 10:264,target 40 + 50:299 reduce + 49:299 reduce + 20:299,target 54 + 19:299,target 38 0:312,target 13 + 0:306 shift + 65:299,target 70 46:0 reduce - 2:268,target 43 + 17:322,target 68 + 0:297 shift + 0:307 shift + 9:276,target 52 + 0:298 shift + 0:308 shift + 0:309 shift + 67:0 reduce + 0:311 shift + 2:268,target 36 + 20:299 reduce + 19:299 reduce + 0:312 shift + 0:313 shift 54:299,target 22 + 0:314 shift + 1:264,target 35 58:299 reduce 10:283,target 59 - 39:288,target 7 - 40:288,target 8 + 0:315 shift + 22:0 reduce + 17:270,target 46 + 17:269,target 45 9:305,target 60 + 8:299 reduce + 43:299,target 11 28:299 reduce - 34:287,target 2 - 0:328,target 19 - 46:289,target 14 - 46:290,target 14 - 77:0,target 28 + 10:262,target 38 + 43:0 reduce + 0:309,target 11 + 67:299 reduce + 9:274,target 50 + 0:324 goto + 1:283,target 35 + 64:0 reduce + 0:325 goto + 2:266,target 36 + 32:299,target 50 + 0:327 goto + 19:326 goto + 37:299 reduce + 1:262,target 35 + 10:281,target 57 + 19:326,target 69 + 77:0,target 39 + 76:299 reduce 18:0 accept + 70:0,target 29 + 21:299,target 56 17:267,target 43 + 66:299,target 42 + 62:0,target 67 + 10:331,target 66 + 54:0,target 22 + 40:0 reduce + 39:0 reduce + 10:260,target 36 + 10:259,target 35 46:0,target 14 + 0:297,target 1 + 0:307,target 9 + 46:299 reduce + 38:0,target 6 61:0 reduce + 31:0,target 35 + 9:272,target 48 + 1:281,target 35 + 23:0,target 59 + 2:257 reduce 55:299,target 23 - 15:0,target 54 - 41:288,target 9 + 15:0,target 47 + 2:258 reduce + 2:264,target 36 + 2:259 reduce + 2:260 reduce + 16:299 reduce 9:322,target 62 - 1:260,target 42 - 1:259,target 42 - 34:284 reduce - 34:285 reduce - 34:286 reduce - 68:285,target 78 - 34:287 reduce - 34:288 reduce + 2:261 reduce + 1:259,target 35 + 1:260,target 35 + 2:262 reduce + 13:321,target 28 + 10:278,target 54 + 2:263 reduce + 55:299 reduce + 15:0 reduce + 2:264 reduce + 44:299,target 12 + 2:265 reduce + 17:265,target 41 + 1:299,target 53 + 2:266 reduce + 36:0 reduce + 2:267 reduce + 5:299 reduce 10:257,target 33 - 34:289 reduce - 34:290 reduce - 35:287,target 3 - 4:321,target 28 - 9:269,target 45 + 2:268 reduce + 2:283,target 36 + 25:299 reduce + 2:269 reduce + 2:270 reduce + 57:0 reduce + 2:271 reduce + 33:299,target 1 9:270,target 46 + 9:269,target 45 + 1:278,target 35 + 2:272 reduce + 4:321,target 28 64:299 reduce - 47:289,target 15 - 47:290,target 15 - 13:318,target 25 + 2:273 reduce + 2:262,target 36 + 2:274 reduce + 2:275 reduce + 2:276 reduce + 1:257,target 35 + 2:277 reduce 34:299 reduce + 22:299,target 28 + 13:318,target 25 + 12:0 reduce + 10:276,target 52 + 2:278 reduce + 67:299,target 52 + 0:324,target 17 + 2:279 reduce + 2:280 reduce + 2:281 reduce + 73:299 reduce 33:0 reduce + 17:263,target 39 + 2:282 reduce 10:257 shift + 2:283 reduce 10:258 shift - 0:303,target 6 - 10:259 shift + 2:281,target 36 + 54:0 reduce + 11:299,target 46 10:260 shift - 11:299,target 53 + 10:259 shift + 0:303,target 6 56:299,target 24 10:261 shift - 1:276,target 42 + 43:299 reduce 10:262 shift - 42:288,target 10 + 9:267,target 43 + 8:0,target 49 + 1:276,target 35 + 4:318,target 25 75:0 reduce - 1:0,target 60 10:263 shift - 2:260,target 43 - 2:259,target 43 + 10:305,target 64 + 1:0,target 53 10:264 shift - 74:0,target 38 + 2:259,target 36 + 2:260,target 36 + 74:0,target 31 + 13:307 shift 10:265 shift + 66:0,target 42 + 17:282,target 58 10:266 shift + 58:0,target 26 + 45:299,target 13 + 22:291 shift 10:267 shift - 10:268 shift + 51:0,target 19 + 22:292 shift + 13:316,target 23 10:274,target 50 - 10:269 shift - 10:270 shift + 10:268 shift + 2:299,target 36 43:0,target 11 + 22:293 shift + 10:270 shift + 10:269 shift + 52:299 reduce + 35:0,target 3 + 30:0 reduce + 29:0 reduce + 22:294 shift 10:271 shift + 27:0,target 63 + 22:295 shift + 17:261,target 37 10:272 shift + 1:305,target 20 + 22:296 shift + 20:0,target 54 + 19:0,target 37 10:273 shift - 36:287,target 4 + 7:298,target 2 + 51:0 reduce + 34:299,target 2 + 13:316 shift + 12:0,target 40 10:274 shift - 12:0,target 47 + 2:278,target 36 + 2:299 reduce + 13:317 shift 10:275 shift + 0:301,target 4 + 22:299 reduce + 13:318 shift 10:276 shift + 72:0 reduce + 13:320 shift + 13:319 shift 10:277 shift - 48:290,target 16 - 48:289,target 16 + 9:265,target 41 + 1:274,target 35 + 4:316,target 23 + 13:321 shift 10:278 shift - 39:284 reduce - 40:284 reduce - 10:279 shift + 61:299 reduce 10:280 shift - 39:285 reduce - 40:285 reduce + 10:279 shift + 2:257,target 36 + 23:299,target 59 10:281 shift - 39:286 reduce - 40:286 reduce + 68:299,target 55 + 17:280,target 56 + 17:279,target 55 10:282 shift - 39:287 reduce - 40:287 reduce 10:283 shift - 39:288 reduce - 40:288 reduce - 39:289 reduce - 39:290 reduce - 40:289 reduce - 40:290 reduce - 12:299,target 47 + 22:295,target 74 + 10:272,target 48 + 31:299 reduce + 26:0 reduce + 13:328 goto 17:258,target 34 + 13:329 goto + 12:299,target 40 70:299 reduce 69:299 shift 57:299,target 25 47:0 reduce - 2:276,target 43 - 43:288,target 11 - 39:299 reduce + 10:322,target 65 + 22:323 goto + 2:276,target 36 + 68:0 reduce + 9:263,target 39 + 1:272,target 35 40:299 reduce + 39:299 reduce + 46:299,target 14 10:305 shift + 1:0 reduce + 17:277,target 53 + 23:0 reduce 22:293,target 72 - 37:287,target 5 - 71:0,target 39 - 50:290,target 18 - 50:289,target 18 - 49:290,target 17 - 49:289,target 17 + 10:270,target 46 + 10:269,target 45 + 35:299,target 3 + 48:299 reduce + 44:0 reduce + 9:282,target 58 + 5:0,target 41 + 2:274,target 36 + 71:0,target 32 + 65:0 reduce + 63:0,target 43 + 55:0,target 23 + 24:299,target 60 9:261,target 37 - 39:0,target 7 + 1:269,target 35 + 1:270,target 35 + 70:299,target 29 + 69:299,target 77 + 47:0,target 15 40:0,target 8 + 39:0,target 7 + 57:299 reduce + 32:0,target 50 10:322 goto + 3:297,target 21 + 24:0,target 60 17:275,target 51 - 19:0 reduce + 7:297 shift 20:0 reduce + 19:0 reduce + 16:0,target 45 + 7:298 shift + 22:291,target 70 + 10:267,target 43 58:299,target 26 - 44:288,target 12 - 45:284 reduce + 0:315,target 16 + 41:0 reduce + 27:299 reduce + 9:280,target 56 + 9:279,target 55 + 66:299 reduce 62:0 reduce - 45:285 reduce - 10:332 goto - 45:286 reduce - 45:287 reduce - 1:267,target 42 - 45:288 reduce - 45:289 reduce - 45:290 reduce - 38:287,target 6 + 10:331 goto + 2:272,target 36 + 47:299,target 15 + 9:330,target 63 + 9:258,target 34 + 1:267,target 35 + 13:328,target 67 + 36:299 reduce + 17:273,target 49 + 16:0 reduce 75:299 reduce + 36:299,target 4 + 7:324 goto + 13:307,target 22 10:265,target 41 - 51:290,target 19 - 51:289,target 19 + 37:0 reduce + 0:313,target 14 9:277,target 53 + 4:328,target 29 + 58:0 reduce 45:299 reduce - 33:286,target 1 + 25:299,target 61 + 2:269,target 36 + 2:270,target 36 + 71:299,target 32 + 1:257 reduce + 1:258 reduce + 1:259 reduce + 1:260 reduce + 1:265,target 35 + 4:307,target 22 15:299 reduce - 14:299,target 51 - 60:299,target 74 + 1:261 reduce + 1:262 reduce + 14:299,target 44 + 9:0,target 65 + 1:263 reduce + 60:299,target 66 59:299,target 27 + 54:299 reduce + 17:271,target 47 + 1:264 reduce + 2:0,target 36 + 1:265 reduce 4:307 shift - 45:288,target 13 - 9:257 shift + 75:0,target 34 34:0 reduce - 67:0,target 59 - 0:311,target 12 + 10:263,target 39 + 9:257 shift + 1:266 reduce + 67:0,target 52 9:258 shift - 9:259 shift + 0:311,target 12 + 1:267 reduce + 60:0,target 66 + 59:0,target 27 9:260 shift + 9:259 shift + 1:268 reduce + 55:0 reduce + 52:0,target 20 + 24:299 reduce + 9:275,target 51 9:261 shift + 1:269 reduce + 1:270 reduce + 48:299,target 16 + 44:0,target 12 9:262 shift - 2:267,target 43 - 9:263 shift + 1:271 reduce 36:0,target 4 + 9:263 shift + 1:272 reduce + 2:267,target 36 + 5:299,target 41 76:0 reduce + 63:299 reduce + 28:0,target 64 9:264 shift - 4:316 shift + 1:273 reduce + 21:0,target 56 9:265 shift - 4:317 shift + 1:274 reduce + 4:316 shift 9:266 shift - 8:0 reduce - 4:318 shift - 9:267 shift + 1:263,target 35 + 1:275 reduce + 4:317 shift 10:282,target 58 - 39:287,target 7 - 40:287,target 8 - 4:320 shift - 4:319 shift + 9:267 shift + 1:276 reduce + 4:318 shift + 8:0 reduce + 37:299,target 5 9:268 shift - 19:327,target 69 - 4:321 shift - 9:269 shift + 1:277 reduce + 4:319 shift + 4:320 shift + 33:299 reduce 9:270 shift + 9:269 shift + 1:278 reduce + 4:321 shift + 17:268,target 44 9:271 shift - 51:284 reduce + 1:279 reduce + 1:280 reduce + 31:0 reduce 9:272 shift - 52:290,target 20 - 52:289,target 20 - 51:285 reduce + 1:281 reduce + 72:299 reduce + 10:261,target 37 9:273 shift - 51:286 reduce + 1:282 reduce 9:274 shift - 51:287 reduce + 0:298,target 2 + 0:308,target 10 + 1:283 reduce + 52:0 reduce + 26:299,target 62 9:275 shift - 51:288 reduce + 72:299,target 30 9:276 shift - 51:290 reduce - 51:289 reduce + 9:273,target 49 + 1:282,target 35 9:277 shift - 4:330 goto - 4:329 goto + 4:328 goto + 73:0 reduce + 42:299 reduce 9:278 shift - 34:286,target 2 - 9:279 shift + 2:265,target 36 + 4:329 goto 9:280 shift + 9:279 shift 9:281 shift - 81:299 reduce + 15:299,target 47 9:282 shift - 15:299,target 54 + 1:261,target 35 + 5:0 reduce } array set cube::rules { 9,l 322 11,l 322 32,l 323 - 53,l 328 - 74,l 331 + 53,l 327 6,l 322 28,l 323 - 50,l 328 - 49,l 328 - 71,l 330 + 50,l 327 + 49,l 327 3,l 322 25,l 322 - 46,l 326 + 46,l 327 67,l 330 - 0,l 333 + 0,l 332 22,l 322 - 43,l 325 - 64,l 328 + 43,l 327 + 64,l 329 18,l 322 - 40,l 324 - 39,l 324 - 61,l 328 + 40,l 327 + 39,l 325 + 61,l 329 15,l 322 36,l 324 57,l 328 - 78,l 332 12,l 322 33,l 323 - 54,l 328 - 75,l 331 + 54,l 327 7,l 322 29,l 323 30,l 323 - 51,l 328 - 72,l 330 + 51,l 327 4,l 322 26,l 322 - 47,l 328 + 47,l 327 68,l 330 1,l 322 23,l 322 - 44,l 326 - 65,l 329 + 44,l 327 + 65,l 330 19,l 322 20,l 322 - 41,l 324 - 62,l 328 + 41,l 327 + 62,l 329 16,l 322 - 37,l 324 + 37,l 325 58,l 328 13,l 322 34,l 323 - 55,l 328 - 76,l 331 + 55,l 327 8,l 322 10,l 322 31,l 323 - 52,l 328 - 73,l 331 + 52,l 327 5,l 322 27,l 322 - 48,l 328 - 70,l 330 - 69,l 330 + 48,l 327 + 70,l 331 + 69,l 331 2,l 322 24,l 322 45,l 327 - 66,l 329 + 66,l 330 21,l 322 - 42,l 325 - 63,l 328 + 42,l 327 + 63,l 329 17,l 322 - 38,l 324 - 60,l 328 - 59,l 328 + 38,l 326 + 60,l 329 + 59,l 329 14,l 322 35,l 324 - 56,l 328 - 77,l 332 + 56,l 327 } array set cube::rules { - 63,dc 3 + 63,dc 1 12,dc 1 - 77,dc 1 26,dc 1 3,dc 1 41,dc 1 - 55,dc 1 + 55,dc 2 70,dc 1 69,dc 1 18,dc 1 33,dc 1 9,dc 1 47,dc 1 - 62,dc 2 + 62,dc 1 11,dc 1 - 76,dc 1 25,dc 1 2,dc 1 40,dc 1 - 39,dc 1 - 54,dc 1 + 39,dc 3 + 54,dc 2 68,dc 1 17,dc 1 32,dc 1 8,dc 1 - 46,dc 3 - 61,dc 2 + 46,dc 1 + 61,dc 1 10,dc 1 - 75,dc 1 24,dc 1 1,dc 1 - 38,dc 1 + 38,dc 0 53,dc 1 67,dc 1 16,dc 1 31,dc 1 7,dc 1 - 45,dc 0 + 45,dc 1 60,dc 1 - 59,dc 2 - 74,dc 1 + 59,dc 1 23,dc 1 0,dc 1 37,dc 1 - 52,dc 1 + 52,dc 2 66,dc 1 15,dc 1 29,dc 1 30,dc 1 6,dc 1 44,dc 1 - 58,dc 2 - 73,dc 0 + 58,dc 1 22,dc 1 36,dc 1 - 51,dc 1 - 65,dc 2 + 51,dc 2 + 65,dc 0 14,dc 1 - 28,dc 1 + 28,dc 0 5,dc 1 - 43,dc 1 + 43,dc 2 57,dc 2 - 72,dc 1 21,dc 1 - 35,dc 0 + 35,dc 1 50,dc 2 - 49,dc 2 - 64,dc 2 + 49,dc 1 + 64,dc 1 13,dc 1 - 78,dc 1 27,dc 1 4,dc 1 - 42,dc 1 - 56,dc 1 - 71,dc 1 + 42,dc 2 + 56,dc 2 19,dc 1 20,dc 1 34,dc 1 @@ -1318,316 +876,238 @@ array set cube::rules { } array set cube::rules { - 41,line 173 - 7,line 137 - 37,line 169 - 4,line 134 - 34,line 165 - 1,line 131 - 31,line 162 - 27,line 157 - 24,line 154 - 21,line 151 - 76,line 218 - 17,line 147 - 73,line 215 - 14,line 144 - 70,line 210 - 69,line 209 - 11,line 141 - 66,line 204 - 63,line 199 - 60,line 196 - 59,line 195 - 56,line 192 - 53,line 189 - 50,line 186 - 49,line 185 - 46,line 180 - 43,line 176 - 9,line 139 - 40,line 172 - 39,line 171 - 6,line 136 - 36,line 168 - 3,line 133 - 33,line 164 - 29,line 160 - 30,line 161 - 26,line 156 - 23,line 153 - 78,line 222 - 19,line 149 - 20,line 150 - 75,line 217 - 16,line 146 - 72,line 212 - 13,line 143 - 68,line 208 - 10,line 140 - 65,line 203 - 62,line 198 - 58,line 194 - 55,line 191 - 52,line 188 - 48,line 184 - 45,line 179 - 42,line 175 - 8,line 138 - 38,line 170 - 5,line 135 - 35,line 167 - 2,line 132 - 32,line 163 - 28,line 159 - 25,line 155 - 22,line 152 - 77,line 221 - 45,e 1 - 18,line 148 - 74,line 216 - 15,line 145 - 71,line 211 - 12,line 142 - 67,line 207 - 64,line 200 - 61,line 197 - 57,line 193 - 54,line 190 - 51,line 187 - 47,line 183 - 44,line 179 + 41,line 168 + 7,line 129 + 37,line 163 + 4,line 126 + 34,line 157 + 1,line 123 + 31,line 154 + 27,line 149 + 24,line 146 + 21,line 143 + 17,line 139 + 14,line 136 + 70,line 205 + 69,line 204 + 11,line 133 + 66,line 199 + 63,line 194 + 60,line 191 + 59,line 190 + 56,line 183 + 53,line 180 + 50,line 177 + 49,line 176 + 46,line 173 + 43,line 170 + 9,line 131 + 40,line 167 + 39,line 164 + 6,line 128 + 36,line 160 + 3,line 125 + 33,line 156 + 29,line 152 + 30,line 153 + 26,line 148 + 23,line 145 + 19,line 141 + 20,line 142 + 16,line 138 + 13,line 135 + 68,line 201 + 10,line 132 + 65,line 198 + 62,line 193 + 58,line 187 + 55,line 182 + 52,line 179 + 48,line 175 + 45,line 172 + 42,line 169 + 8,line 130 + 38,line 163 + 5,line 127 + 35,line 159 + 2,line 124 + 32,line 155 + 28,line 151 + 25,line 147 + 22,line 144 + 18,line 140 + 15,line 137 + 12,line 134 + 67,line 200 + 64,line 195 + 61,line 192 + 38,e 1 + 57,line 186 + 54,line 181 + 51,line 178 + 47,line 174 + 44,line 171 } array set cube::lr1_table { - 35 {{2 {0 299} 1}} 66,trans {} + 35 {{2 {0 299} 1}} + 14,trans {} 36 {{3 {0 299} 1}} - 85,trans {} + 33,trans {} 37 {{4 {0 299} 1}} + 52,trans {} 38 {{5 {0 299} 1}} - 39 {{6 {0 299} 1}} + 71,trans {} 40 {{7 {0 299} 1}} + 39 {{6 {0 299} 1}} + 18,trans {} 41 {{8 {0 299} 1}} + 1,trans {{305 20}} + 37,trans {} 42 {{9 {0 299} 1}} + 56,trans {} 43 {{10 {0 299} 1}} + 75,trans {} 44 {{11 {0 299} 1}} + 23,trans {} 45 {{12 {0 299} 1}} + 5,trans {} + 42,trans {} 46 {{13 {0 299} 1}} + 61,trans {} 47 {{14 {0 299} 1}} 48 {{15 {0 299} 1}} - 49 {{16 {0 299} 1}} - 50 {{17 {0 299} 1}} 27,trans {} - 51 {{18 {0 299} 1}} + 9,trans {{257 34} {258 35} {259 36} {260 37} {261 38} {262 39} {263 40} {264 41} {265 42} {266 43} {267 44} {268 45} {269 46} {270 47} {271 48} {272 49} {273 50} {274 51} {275 52} {276 53} {277 54} {278 55} {279 56} {280 57} {281 58} {282 59} {283 60} {305 61} {310 62} {322 63} {330 64}} + 50 {{17 {0 299} 1}} + 49 {{16 {0 299} 1}} 46,trans {} - 52 {{19 {0 299} 1}} + 51 {{18 {0 299} 1}} 65,trans {} + 52 {{19 {0 299} 1}} + 13,trans {{307 22} {316 23} {317 24} {318 25} {319 26} {320 27} {321 28} {328 68} {329 30}} 53 {{20 {0 299} 1}} - 84,trans {} + 32,trans {} 54 {{21 {0 299} 1}} + 51,trans {} 55 {{22 {0 299} 1}} + 70,trans {{299 78}} + 69,trans {} 56 {{23 {0 299} 1}} + 17,trans {{257 34} {258 35} {259 36} {260 37} {261 38} {262 39} {263 40} {264 41} {265 42} {266 43} {267 44} {268 45} {269 46} {270 47} {271 48} {272 49} {273 50} {274 51} {275 52} {276 53} {277 54} {278 55} {279 56} {280 57} {281 58} {282 59} {283 60} {322 69}} 57 {{24 {0 299} 1}} + 0,trans {{297 1} {298 2} {300 3} {301 4} {302 5} {303 6} {304 7} {306 8} {307 9} {308 10} {309 11} {311 12} {312 13} {313 14} {314 15} {315 16} {324 17} {325 18} {327 19}} + 36,trans {} 58 {{25 {0 299} 1}} - 59 {{26 {0 299} 1}} + 55,trans {} 60 {{27 {0 299} 1}} - 61 {{74 {0 299} 1}} - 62 {{76 {0 299} 1}} - 63 {{75 {0 299} 1}} - 64 {{50 {0 299} 2}} - 65 {{77 {0 299} 1}} - 66 {{78 {0 299} 1}} - 26,trans {} - 67 {{49 {0 299} 2}} - 45,trans {} - 68 {{59 {0 299} 2}} - 64,trans {} - 69 {{1 {0 284 285 286 287 288 289 290 299} 1}} - 70 {{2 {0 284 285 286 287 288 289 290 299} 1}} - 83,trans {} - 71 {{3 {0 284 285 286 287 288 289 290 299} 1}} - 72 {{4 {0 284 285 286 287 288 289 290 299} 1}} - 73 {{5 {0 284 285 286 287 288 289 290 299} 1}} - 74 {{6 {0 284 285 286 287 288 289 290 299} 1}} - 75 {{7 {0 284 285 286 287 288 289 290 299} 1}} - 76 {{8 {0 284 285 286 287 288 289 290 299} 1}} - 77 {{9 {0 284 285 286 287 288 289 290 299} 1}} - 78 {{10 {0 284 285 286 287 288 289 290 299} 1}} - 79 {{11 {0 284 285 286 287 288 289 290 299} 1}} - 80 {{12 {0 284 285 286 287 288 289 290 299} 1}} - 81 {{13 {0 284 285 286 287 288 289 290 299} 1}} - 82 {{14 {0 284 285 286 287 288 289 290 299} 1}} - 83 {{15 {0 284 285 286 287 288 289 290 299} 1}} - 25,trans {} - 84 {{16 {0 284 285 286 287 288 289 290 299} 1}} - 44,trans {} - 85 {{17 {0 284 285 286 287 288 289 290 299} 1}} - 63,trans {} - 86 {{18 {0 284 285 286 287 288 289 290 299} 1}} - 82,trans {} - 87 {{19 {0 284 285 286 287 288 289 290 299} 1}} - 0 {{0 0 0} {44 0 0} {46 0 0} {47 {0 299} 0} {48 {0 299} 0} {49 {0 299} 0} {50 {0 299} 0} {51 {0 299} 0} {52 {0 299} 0} {53 {0 299} 0} {54 {0 299} 0} {55 {0 299} 0} {56 {0 299} 0} {57 {0 299} 0} {58 {0 299} 0} {59 {0 299} 0} {60 {0 299} 0} {61 {0 299} 0} {62 {0 299} 0} {63 {0 299} 0} {64 {0 299} 0} {42 {257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283} 0} {43 {257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283} 0}} - 88 {{20 {0 284 285 286 287 288 289 290 299} 1}} - 1 {{60 {0 299} 1} {61 {0 299} 1} {42 {257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283} 1}} - 89 {{21 {0 284 285 286 287 288 289 290 299} 1}} - 90 {{22 {0 284 285 286 287 288 289 290 299} 1}} - 2 {{43 {257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283} 1}} - 91 {{23 {0 284 285 286 287 288 289 290 299} 1}} - 3 {{64 {0 299} 1}} - 92 {{24 {0 284 285 286 287 288 289 290 299} 1}} - 4 {{58 {0 299} 1} {65 {0 299} 0} {66 {0 299} 0} {67 {0 299} 0} {68 {0 299} 0} {69 {0 299} 0} {70 {0 299} 0} {71 {0 299} 0} {72 {0 299} 0}} - 93 {{25 {0 284 285 286 287 288 289 290 299} 1}} - 5 {{48 {0 299} 1}} - 94 {{26 {0 284 285 286 287 288 289 290 299} 1}} - 6 {{55 {0 299} 1}} - 95 {{27 {0 284 285 286 287 288 289 290 299} 1}} - 7 {{57 {0 299} 1} {42 {0 299} 0} {43 {0 299} 0}} - 96 {{62 {0 299} 2} {63 {0 299} 2} {28 {0 299} 0} {29 {0 299} 0} {30 {0 299} 0} {31 {0 299} 0} {32 {0 299} 0} {33 {0 299} 0} {34 {0 299} 0}} - 8 {{56 {0 299} 1}} - 97 {{46 0 2}} - 9 {{50 {0 299} 1} {73 {0 299} 0} {74 {0 299} 0} {75 {0 299} 0} {76 {0 299} 0} {1 {0 299} 0} {2 {0 299} 0} {3 {0 299} 0} {4 {0 299} 0} {5 {0 299} 0} {6 {0 299} 0} {7 {0 299} 0} {8 {0 299} 0} {9 {0 299} 0} {10 {0 299} 0} {11 {0 299} 0} {12 {0 299} 0} {13 {0 299} 0} {14 {0 299} 0} {15 {0 299} 0} {16 {0 299} 0} {17 {0 299} 0} {18 {0 299} 0} {19 {0 299} 0} {20 {0 299} 0} {21 {0 299} 0} {22 {0 299} 0} {23 {0 299} 0} {24 {0 299} 0} {25 {0 299} 0} {26 {0 299} 0} {27 {0 299} 0}} - 98 {{36 {0 299} 1}} - 99 {{39 {0 299} 1}} - 24,trans {} - 43,trans {} - 62,trans {} - 81,trans {} - 99,trans {} - 113,trans {} - 23,trans {} - 42,trans {} - 61,trans {} - 79,trans {} - 80,trans {} - 98,trans {} - 9,trans {{257 34} {258 35} {259 36} {260 37} {261 38} {262 39} {263 40} {264 41} {265 42} {266 43} {267 44} {268 45} {269 46} {270 47} {271 48} {272 49} {273 50} {274 51} {275 52} {276 53} {277 54} {278 55} {279 56} {280 57} {281 58} {282 59} {283 60} {305 61} {310 62} {322 63} {331 64}} - 112,trans {} - 22,trans {{291 98} {292 99} {293 100} {294 101} {295 102} {296 103} {324 104}} + 59 {{26 {0 299} 1}} + 74,trans {} + 61 {{66 {0 299} 1}} + 22,trans {{291 71} {292 72} {293 73} {294 74} {295 75} {296 76} {323 77}} + 62 {{68 {0 299} 1}} + 4,trans {{307 22} {316 23} {317 24} {318 25} {319 26} {320 27} {321 28} {328 29} {329 30}} 41,trans {} - 59,trans {} + 63 {{67 {0 299} 1}} 60,trans {} + 59,trans {} + 64 {{43 {0 299} 2}} 78,trans {} - 97,trans {{299 113}} + 65 {{69 {0 299} 1}} + 26,trans {} + 66 {{70 {0 299} 1}} 8,trans {} - 111,trans {} - 100 {{37 {0 299} 1}} - 101 {{40 {0 299} 1}} - 102 {{38 {0 299} 1}} - 103 {{41 {0 299} 1}} - 104 {{65 {0 299} 2}} - 105 {{28 {0 299} 1}} - 106 {{29 {0 299} 1}} - 21,trans {} - 107 {{30 {0 299} 1}} - 39,trans {} - 40,trans {} - 108 {{31 {0 299} 1}} - 58,trans {} - 110 {{33 {0 299} 1}} - 109 {{32 {0 299} 1}} - 77,trans {} - 96,trans {{284 105} {285 106} {286 107} {287 108} {288 109} {289 110} {290 111} {323 112}} - 111 {{34 {0 299} 1}} - 7,trans {{297 31} {298 32} {325 33}} - 112 {{63 {0 299} 3}} - 113 {{46 0 3}} - 110,trans {} - 109,trans {} - 19,trans {{327 97}} - 20,trans {} - 38,trans {} - 57,trans {} - 76,trans {} - 95,trans {} - 6,trans {} - 108,trans {} - 18,trans {} - 37,trans {} - 56,trans {} - 75,trans {} - 94,trans {} - 5,trans {} - 107,trans {} - 17,trans {{257 69} {258 70} {259 71} {260 72} {261 73} {262 74} {263 75} {264 76} {265 77} {266 78} {267 79} {268 80} {269 81} {270 82} {271 83} {272 84} {273 85} {274 86} {275 87} {276 88} {277 89} {278 90} {279 91} {280 92} {281 93} {282 94} {283 95} {322 96}} - 36,trans {} - 55,trans {} - 74,trans {} - 93,trans {} - 4,trans {{307 22} {316 23} {317 24} {318 25} {319 26} {320 27} {321 28} {329 29} {330 30}} - 106,trans {} + 45,trans {} + 67 {{42 {0 299} 2}} + 64,trans {} + 68 {{52 {0 299} 2}} + 70 {{39 0 2}} + 69 {{55 {0 299} 2}} + 12,trans {} + 31,trans {} + 71 {{29 {0 299} 1}} + 50,trans {} + 49,trans {} + 72 {{32 {0 299} 1}} + 68,trans {} + 73 {{30 {0 299} 1}} + 74 {{33 {0 299} 1}} 16,trans {} 35,trans {} + 75 {{31 {0 299} 1}} 54,trans {} + 76 {{34 {0 299} 1}} 73,trans {} - 92,trans {} + 77 {{57 {0 299} 2}} + 78 {{39 0 3}} + 21,trans {} 3,trans {{297 21}} - 105,trans {} + 40,trans {} + 39,trans {} + 58,trans {} + 10 {{42 {0 299} 1} {69 {0 299} 0} {70 {0 299} 0} {1 {0 299} 0} {2 {0 299} 0} {3 {0 299} 0} {4 {0 299} 0} {5 {0 299} 0} {6 {0 299} 0} {7 {0 299} 0} {8 {0 299} 0} {9 {0 299} 0} {10 {0 299} 0} {11 {0 299} 0} {12 {0 299} 0} {13 {0 299} 0} {14 {0 299} 0} {15 {0 299} 0} {16 {0 299} 0} {17 {0 299} 0} {18 {0 299} 0} {19 {0 299} 0} {20 {0 299} 0} {21 {0 299} 0} {22 {0 299} 0} {23 {0 299} 0} {24 {0 299} 0} {25 {0 299} 0} {26 {0 299} 0} {27 {0 299} 0}} + 77,trans {} + 11 {{46 {0 299} 1}} + 25,trans {} + 12 {{40 {0 299} 1}} + 7,trans {{297 31} {298 32} {324 33}} + 44,trans {} + 13 {{52 {0 299} 1} {57 {0 299} 0} {58 {0 299} 0} {59 {0 299} 0} {60 {0 299} 0} {61 {0 299} 0} {62 {0 299} 0} {63 {0 299} 0} {64 {0 299} 0}} + 63,trans {} + 14 {{44 {0 299} 1}} + 11,trans {} + 15 {{47 {0 299} 1}} + 30,trans {} + 29,trans {} + 16 {{45 {0 299} 1}} + 48,trans {} + 0 {{0 0 0} {37 0 0} {39 0 0} {40 {0 299} 0} {41 {0 299} 0} {42 {0 299} 0} {43 {0 299} 0} {44 {0 299} 0} {45 {0 299} 0} {46 {0 299} 0} {47 {0 299} 0} {48 {0 299} 0} {49 {0 299} 0} {50 {0 299} 0} {51 {0 299} 0} {52 {0 299} 0} {53 {0 299} 0} {54 {0 299} 0} {55 {0 299} 0} {56 {0 299} 0} {35 {257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283} 0} {36 {257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283} 0}} + 17 {{55 {0 299} 1} {1 {0 299} 0} {2 {0 299} 0} {3 {0 299} 0} {4 {0 299} 0} {5 {0 299} 0} {6 {0 299} 0} {7 {0 299} 0} {8 {0 299} 0} {9 {0 299} 0} {10 {0 299} 0} {11 {0 299} 0} {12 {0 299} 0} {13 {0 299} 0} {14 {0 299} 0} {15 {0 299} 0} {16 {0 299} 0} {17 {0 299} 0} {18 {0 299} 0} {19 {0 299} 0} {20 {0 299} 0} {21 {0 299} 0} {22 {0 299} 0} {23 {0 299} 0} {24 {0 299} 0} {25 {0 299} 0} {26 {0 299} 0} {27 {0 299} 0}} + 67,trans {} + 1 {{53 {0 299} 1} {54 {0 299} 1} {35 {257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283} 1}} + 18 {{0 0 1}} 15,trans {} + 2 {{36 {257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283} 1}} + 19 {{37 0 1} {39 0 1} {38 299 0}} + 20 {{54 {0 299} 2}} 34,trans {} + 3 {{56 {0 299} 1}} + 21 {{56 {0 299} 2}} 53,trans {} + 4 {{51 {0 299} 1} {57 {0 299} 0} {58 {0 299} 0} {59 {0 299} 0} {60 {0 299} 0} {61 {0 299} 0} {62 {0 299} 0} {63 {0 299} 0} {64 {0 299} 0}} + 22 {{57 {0 299} 1} {28 {0 299} 0} {29 {0 299} 0} {30 {0 299} 0} {31 {0 299} 0} {32 {0 299} 0} {33 {0 299} 0} {34 {0 299} 0}} 72,trans {} - 91,trans {} + 5 {{41 {0 299} 1}} + 23 {{59 {0 299} 1}} + 20,trans {} + 19,trans {{326 70}} + 6 {{48 {0 299} 1}} 2,trans {} - 104,trans {} - 14,trans {} - 33,trans {} - 52,trans {} - 71,trans {} - 90,trans {} - 89,trans {} - 1,trans {{305 20}} - 103,trans {} - 13,trans {{307 22} {316 23} {317 24} {318 25} {319 26} {320 27} {321 28} {329 68} {330 30}} - 32,trans {} - 51,trans {} - 69,trans {} - 70,trans {} - 88,trans {} - 0,trans {{297 1} {298 2} {300 3} {301 4} {302 5} {303 6} {304 7} {306 8} {307 9} {308 10} {309 11} {311 12} {312 13} {313 14} {314 15} {315 16} {325 17} {326 18} {328 19}} - 102,trans {} - 12,trans {} - 31,trans {} - 49,trans {} - 50,trans {} - 68,trans {} - 87,trans {} - 101,trans {} - 10 {{49 {0 299} 1} {77 {0 299} 0} {78 {0 299} 0} {1 {0 299} 0} {2 {0 299} 0} {3 {0 299} 0} {4 {0 299} 0} {5 {0 299} 0} {6 {0 299} 0} {7 {0 299} 0} {8 {0 299} 0} {9 {0 299} 0} {10 {0 299} 0} {11 {0 299} 0} {12 {0 299} 0} {13 {0 299} 0} {14 {0 299} 0} {15 {0 299} 0} {16 {0 299} 0} {17 {0 299} 0} {18 {0 299} 0} {19 {0 299} 0} {20 {0 299} 0} {21 {0 299} 0} {22 {0 299} 0} {23 {0 299} 0} {24 {0 299} 0} {25 {0 299} 0} {26 {0 299} 0} {27 {0 299} 0}} - 11 {{53 {0 299} 1}} - 12 {{47 {0 299} 1}} - 13 {{59 {0 299} 1} {65 {0 299} 0} {66 {0 299} 0} {67 {0 299} 0} {68 {0 299} 0} {69 {0 299} 0} {70 {0 299} 0} {71 {0 299} 0} {72 {0 299} 0}} - 14 {{51 {0 299} 1}} - 15 {{54 {0 299} 1}} - 11,trans {} - 16 {{52 {0 299} 1}} - 29,trans {} - 30,trans {} - 17 {{62 {0 299} 1} {63 {0 299} 1} {1 {0 284 285 286 287 288 289 290 299} 0} {2 {0 284 285 286 287 288 289 290 299} 0} {3 {0 284 285 286 287 288 289 290 299} 0} {4 {0 284 285 286 287 288 289 290 299} 0} {5 {0 284 285 286 287 288 289 290 299} 0} {6 {0 284 285 286 287 288 289 290 299} 0} {7 {0 284 285 286 287 288 289 290 299} 0} {8 {0 284 285 286 287 288 289 290 299} 0} {9 {0 284 285 286 287 288 289 290 299} 0} {10 {0 284 285 286 287 288 289 290 299} 0} {11 {0 284 285 286 287 288 289 290 299} 0} {12 {0 284 285 286 287 288 289 290 299} 0} {13 {0 284 285 286 287 288 289 290 299} 0} {14 {0 284 285 286 287 288 289 290 299} 0} {15 {0 284 285 286 287 288 289 290 299} 0} {16 {0 284 285 286 287 288 289 290 299} 0} {17 {0 284 285 286 287 288 289 290 299} 0} {18 {0 284 285 286 287 288 289 290 299} 0} {19 {0 284 285 286 287 288 289 290 299} 0} {20 {0 284 285 286 287 288 289 290 299} 0} {21 {0 284 285 286 287 288 289 290 299} 0} {22 {0 284 285 286 287 288 289 290 299} 0} {23 {0 284 285 286 287 288 289 290 299} 0} {24 {0 284 285 286 287 288 289 290 299} 0} {25 {0 284 285 286 287 288 289 290 299} 0} {26 {0 284 285 286 287 288 289 290 299} 0} {27 {0 284 285 286 287 288 289 290 299} 0}} - 48,trans {} - 18 {{0 0 1}} - 67,trans {} - 20 {{61 {0 299} 2}} - 19 {{44 0 1} {46 0 1} {45 299 0}} - 86,trans {} - 21 {{64 {0 299} 2}} - 22 {{65 {0 299} 1} {35 {0 299} 0} {36 {0 299} 0} {37 {0 299} 0} {38 {0 299} 0} {39 {0 299} 0} {40 {0 299} 0} {41 {0 299} 0}} - 100,trans {} - 23 {{67 {0 299} 1}} - 24 {{68 {0 299} 1}} - 25 {{69 {0 299} 1}} - 26 {{70 {0 299} 1}} - 27 {{71 {0 299} 1}} - 28 {{72 {0 299} 1}} - 30 {{66 {0 299} 1}} - 29 {{58 {0 299} 2}} - 31 {{42 {0 299} 1}} - 32 {{43 {0 299} 1}} - 10,trans {{257 34} {258 35} {259 36} {260 37} {261 38} {262 39} {263 40} {264 41} {265 42} {266 43} {267 44} {268 45} {269 46} {270 47} {271 48} {272 49} {273 50} {274 51} {275 52} {276 53} {277 54} {278 55} {279 56} {280 57} {281 58} {282 59} {283 60} {305 65} {322 66} {332 67}} - 33 {{57 {0 299} 2}} + 24 {{60 {0 299} 1}} + 38,trans {} + 7 {{50 {0 299} 1} {35 {0 299} 0} {36 {0 299} 0}} + 25 {{61 {0 299} 1}} + 57,trans {} + 8 {{49 {0 299} 1}} + 26 {{62 {0 299} 1}} + 76,trans {} + 9 {{43 {0 299} 1} {65 {0 299} 0} {66 {0 299} 0} {67 {0 299} 0} {68 {0 299} 0} {1 {0 299} 0} {2 {0 299} 0} {3 {0 299} 0} {4 {0 299} 0} {5 {0 299} 0} {6 {0 299} 0} {7 {0 299} 0} {8 {0 299} 0} {9 {0 299} 0} {10 {0 299} 0} {11 {0 299} 0} {12 {0 299} 0} {13 {0 299} 0} {14 {0 299} 0} {15 {0 299} 0} {16 {0 299} 0} {17 {0 299} 0} {18 {0 299} 0} {19 {0 299} 0} {20 {0 299} 0} {21 {0 299} 0} {22 {0 299} 0} {23 {0 299} 0} {24 {0 299} 0} {25 {0 299} 0} {26 {0 299} 0} {27 {0 299} 0}} + 27 {{63 {0 299} 1}} + 24,trans {} + 28 {{64 {0 299} 1}} + 6,trans {} + 43,trans {} + 29 {{51 {0 299} 2}} + 30 {{58 {0 299} 1}} + 62,trans {} + 31 {{35 {0 299} 1}} + 10,trans {{257 34} {258 35} {259 36} {260 37} {261 38} {262 39} {263 40} {264 41} {265 42} {266 43} {267 44} {268 45} {269 46} {270 47} {271 48} {272 49} {273 50} {274 51} {275 52} {276 53} {277 54} {278 55} {279 56} {280 57} {281 58} {282 59} {283 60} {305 65} {322 66} {331 67}} + 32 {{36 {0 299} 1}} 28,trans {} - 34 {{1 {0 299} 1}} + 33 {{50 {0 299} 2}} 47,trans {} + 34 {{1 {0 299} 1}} } array set cube::token_id_table { @@ -1685,27 +1165,26 @@ array set cube::token_id_table { 320 312_ 319 231_ 278,line 28 - error,line 129 + error,line 121 321 321_ 322 wcssys 258,t 0 - 323 skyframe - 324 yesno - 325 numeric + 323 yesno + 324 numeric + 325 command 275,line 25 279,t 0 280,t 0 - 326 command - 327 @PSEUDO1 - 328 cube + 326 @PSEUDO1 + 327 cube + 328 order 311,t 0 - 330 orderAxes - 329 order - 331 lockslice + 330 lockslice + 329 orderAxes + 331 matchslice 272,line 22 332,t 1 - 332 matchslice - 333 start' + 332 start' 263,title WCSF 282,title WCSY 311,title OPEN @@ -1716,10 +1195,10 @@ array set cube::token_id_table { 265,line 15 307,t 0 297,t 0 - 331,line 214 + 331,line 203 328,t 1 262,line 12 - 327,line 179 + 327,line 166 0,t 0 0 {$} 262,title WCSE @@ -1731,7 +1210,7 @@ array set cube::token_id_table { 328,title {} 258,line 8 273,t 0 - 324,line 166 + 324,line 158 294,t 0 304,t 0 325,t 1 @@ -1787,7 +1266,6 @@ array set cube::token_id_table { 305,title IMAGE 295,title TRUE 324,title {} - 333,t 1 274,line 24 271,line 21 277,t 0 @@ -1795,24 +1273,23 @@ array set cube::token_id_table { 267,line 17 298,t 0 275,title WCSR - 333,line 223 294,title OFF 304,title INTERVAL 330,t 1 329,t 1 323,title {} 264,line 14 - 330,line 206 - 329,line 202 + 330,line 197 + 329,line 189 261,line 11 274,t 0 - 326,line 178 + 326,line 163 305,t 0 295,t 0 257,line 7 326,t 1 274,title WCSQ - 323,line 158 + 323,line 150 293,title ON 303,title FIRST 322,title {} @@ -1878,20 +1355,20 @@ array set cube::token_id_table { 270,line 20 331,t 1 266,line 16 - 332,line 220 + 332,line 206 268,title WCSK 275,t 0 263,line 13 287,title J2000 316,title 123 - 328,line 182 + 328,line 185 306,t 0 296,t 0 327,t 1 260,line 10 259,line 9 - 325,line 174 - 322,line 130 + 325,line 162 + 322,line 122 272,t 0 267,title WCSJ 257 WCS_ @@ -1929,7 +1406,6 @@ array set cube::token_id_table { 321,t 0 314,title PREV 275 WCSR_ - 333,title {} 308,line 65 276 WCSS_ 298,line 51 @@ -2068,52 +1544,44 @@ proc cube::yyparse {} { 25 { set _ wcsx } 26 { set _ wcsy } 27 { set _ wcsz } - 28 { set _ fk4 } - 29 { set _ fk4 } - 30 { set _ fk5 } - 31 { set _ fk5 } - 32 { set _ icrs } - 33 { set _ galactic } - 34 { set _ ecliptic } - 35 { set _ 1 } - 36 { set _ 1 } - 37 { set _ 1 } - 38 { set _ 1 } - 39 { set _ 0 } - 40 { set _ 0 } - 41 { set _ 0 } - 42 { set _ $1 } - 43 { set _ $1 } - 45 { global ds9; if {!$ds9(init)} {YYERROR} else {yyclearin; YYACCEPT} } - 48 { CubeDestroyDialog } - 49 { MatchCubeCurrent $2 } - 50 { ProcessCmdSet cube lock $2 LockCubeCurrent } - 51 { CubePlay } - 52 { CubeStop } - 53 { CubeNext } - 54 { CubePrev } - 55 { CubeFirst } - 56 { CubeLast } - 57 { ProcessCmdSet cube interval [expr int($2*1000)] } - 60 { CubeCmd $1 } - 61 { CubeCmd $1 } - 62 { CubeCmdCoord $1 $2 fk5 } - 63 { CubeCmdCoord $1 $2 $3 } - 64 { CubeCmdAxis $2 } - 65 { ProcessCmdSet cube lock,axes $2 LockAxesCurrent } - 66 { ProcessCmdSet cube axes $1 } - 67 { set _ 123 } - 68 { set _ 132 } - 69 { set _ 213 } - 70 { set _ 231 } - 71 { set _ 312 } - 72 { set _ 321 } - 73 { set _ image } - 74 { set _ image } - 75 { set _ $1 } - 76 { set _ none } - 77 { set _ image } - 78 { set _ $1 } + 28 { set _ 1 } + 29 { set _ 1 } + 30 { set _ 1 } + 31 { set _ 1 } + 32 { set _ 0 } + 33 { set _ 0 } + 34 { set _ 0 } + 35 { set _ $1 } + 36 { set _ $1 } + 38 { global ds9; if {!$ds9(init)} {YYERROR} else {yyclearin; YYACCEPT} } + 41 { CubeDestroyDialog } + 42 { MatchCubeCurrent $2 } + 43 { ProcessCmdSet cube lock $2 LockCubeCurrent } + 44 { CubePlay } + 45 { CubeStop } + 46 { CubeNext } + 47 { CubePrev } + 48 { CubeFirst } + 49 { CubeLast } + 50 { ProcessCmdSet cube interval [expr int($2*1000)] } + 53 { CubeCmd $1 } + 54 { CubeCmd $1 } + 55 { CubeCmdCoord $1 $2 } + 56 { CubeCmdAxis $2 } + 57 { ProcessCmdSet cube lock,axes $2 LockAxesCurrent } + 58 { ProcessCmdSet cube axes $1 } + 59 { set _ 123 } + 60 { set _ 132 } + 61 { set _ 213 } + 62 { set _ 231 } + 63 { set _ 312 } + 64 { set _ 321 } + 65 { set _ image } + 66 { set _ image } + 67 { set _ $1 } + 68 { set _ none } + 69 { set _ image } + 70 { set _ $1 } } unsetupvalues $dc # pop off tokens from the stack if normal rule diff --git a/ds9/parsers/cubesendlex.fcl b/ds9/parsers/cubesendlex.fcl index e13875b..aee05b3 100644 --- a/ds9/parsers/cubesendlex.fcl +++ b/ds9/parsers/cubesendlex.fcl @@ -15,7 +15,6 @@ lock {return $LOCK_} order {return $ORDER_} #include wcssys.fin -#include skyframe.fin #include ws.fin %% diff --git a/ds9/parsers/cubesendlex.tcl b/ds9/parsers/cubesendlex.tcl index 3387db1..7f721c7 100644 --- a/ds9/parsers/cubesendlex.tcl +++ b/ds9/parsers/cubesendlex.tcl @@ -206,19 +206,12 @@ set WCSW_ 280 set WCSX_ 281 set WCSY_ 282 set WCSZ_ 283 -set FK4_ 284 -set B1950_ 285 -set FK5_ 286 -set J2000_ 287 -set ICRS_ 288 -set GALACTIC_ 289 -set ECLIPTIC_ 290 -set AXIS_ 291 -set AXES_ 292 -set INTERVAL_ 293 -set IMAGE_ 294 -set LOCK_ 295 -set ORDER_ 296 +set AXIS_ 284 +set AXES_ 285 +set INTERVAL_ 286 +set IMAGE_ 287 +set LOCK_ 288 +set ORDER_ 289 while {1} { if {[string length $yy_current_buffer] - $index_ < 1024} { @@ -471,68 +464,19 @@ set ORDER_ 296 set yyleng [string length $yytext] set matched_rule 32 } - # rule 33: fk4 - if {[regexp -start $index_ -indices -line -nocase -- {\A(fk4)} $yy_current_buffer match] > 0 && \ - [lindex $match 1] - $index_ + 1 > $yyleng} { - set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] - set yyleng [string length $yytext] - set matched_rule 33 - } - # rule 34: b1950 - if {[regexp -start $index_ -indices -line -nocase -- {\A(b1950)} $yy_current_buffer match] > 0 && \ - [lindex $match 1] - $index_ + 1 > $yyleng} { - set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] - set yyleng [string length $yytext] - set matched_rule 34 - } - # rule 35: fk5 - if {[regexp -start $index_ -indices -line -nocase -- {\A(fk5)} $yy_current_buffer match] > 0 && \ - [lindex $match 1] - $index_ + 1 > $yyleng} { - set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] - set yyleng [string length $yytext] - set matched_rule 35 - } - # rule 36: j2000 - if {[regexp -start $index_ -indices -line -nocase -- {\A(j2000)} $yy_current_buffer match] > 0 && \ - [lindex $match 1] - $index_ + 1 > $yyleng} { - set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] - set yyleng [string length $yytext] - set matched_rule 36 - } - # rule 37: icrs - if {[regexp -start $index_ -indices -line -nocase -- {\A(icrs)} $yy_current_buffer match] > 0 && \ - [lindex $match 1] - $index_ + 1 > $yyleng} { - set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] - set yyleng [string length $yytext] - set matched_rule 37 - } - # rule 38: galactic - if {[regexp -start $index_ -indices -line -nocase -- {\A(galactic)} $yy_current_buffer match] > 0 && \ - [lindex $match 1] - $index_ + 1 > $yyleng} { - set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] - set yyleng [string length $yytext] - set matched_rule 38 - } - # rule 39: ecliptic - if {[regexp -start $index_ -indices -line -nocase -- {\A(ecliptic)} $yy_current_buffer match] > 0 && \ - [lindex $match 1] - $index_ + 1 > $yyleng} { - set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] - set yyleng [string length $yytext] - set matched_rule 39 - } - # rule 40: \s + # rule 33: \s if {[regexp -start $index_ -indices -line -nocase -- {\A(\s)} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 40 + set matched_rule 33 } - # rule 41: . + # rule 34: . if {[regexp -start $index_ -indices -line -nocase -- {\A(.)} $yy_current_buffer match] > 0 && \ [lindex $match 1] - $index_ + 1 > $yyleng} { set yytext [string range $yy_current_buffer $index_ [lindex $match 1]] set yyleng [string length $yytext] - set matched_rule 41 + set matched_rule 34 } if {$matched_rule == -1} { set yytext [string index $yy_current_buffer $index_] @@ -646,30 +590,9 @@ return $WCSY_ return $WCSZ_ } 33 { -return $FK4_ - } - 34 { -return $FK4_ - } - 35 { -return $FK5_ - } - 36 { -return $FK5_ - } - 37 { -return $ICRS_ - } - 38 { -return $GALACTIC_ - } - 39 { -return $ECLIPTIC_ - } - 40 { # ignore whitespace } - 41 { + 34 { set yylval $yytext; return $yylval } default diff --git a/ds9/parsers/cubesendparser.tab.tcl b/ds9/parsers/cubesendparser.tab.tcl index a70af11..06b6933 100644 --- a/ds9/parsers/cubesendparser.tab.tcl +++ b/ds9/parsers/cubesendparser.tab.tcl @@ -25,16 +25,9 @@ set WCSW_ 280 set WCSX_ 281 set WCSY_ 282 set WCSZ_ 283 -set FK4_ 284 -set B1950_ 285 -set FK5_ 286 -set J2000_ 287 -set ICRS_ 288 -set GALACTIC_ 289 -set ECLIPTIC_ 290 -set AXIS_ 291 -set AXES_ 292 -set INTERVAL_ 293 -set IMAGE_ 294 -set LOCK_ 295 -set ORDER_ 296 +set AXIS_ 284 +set AXES_ 285 +set INTERVAL_ 286 +set IMAGE_ 287 +set LOCK_ 288 +set ORDER_ 289 diff --git a/ds9/parsers/cubesendparser.tac b/ds9/parsers/cubesendparser.tac index b0d97ae..699aaa0 100644 --- a/ds9/parsers/cubesendparser.tac +++ b/ds9/parsers/cubesendparser.tac @@ -3,7 +3,6 @@ #include def.tin #include wcssys.tin -#include skyframe.tin %start cubesend @@ -17,12 +16,10 @@ %% #include wcssys.trl -#include skyframe.trl cubesend : {ProcessSendCmdCurrent "get fits slice"} | IMAGE_ {ProcessSendCmdCurrent "get fits slice"} - | wcssys {ProcessSendCmdCurrent "get fits slice from image $1 FK5"} - | wcssys skyframe {ProcessSendCmdCurrent "get fits slice from image $1 $2"} + | wcssys {ProcessSendCmdCurrent "get fits slice from image $1"} | LOCK_ {ProcessSendCmdGet cube lock} | INTERVAL_ {BlinkSendCmdInterval} | AXES_ order diff --git a/ds9/parsers/cubesendparser.tcl b/ds9/parsers/cubesendparser.tcl index ae3cc9c..7474afd 100644 --- a/ds9/parsers/cubesendparser.tcl +++ b/ds9/parsers/cubesendparser.tcl @@ -61,647 +61,224 @@ proc cubesend::unsetupvalues {numsyms} { } array set cubesend::table { - 21:290 reduce - 21:289 reduce - 9:284 reduce - 23:286,target 23 - 9:285 reduce - 3:288,target 3 - 29:300,target 37 - 27:0 reduce - 9:286 reduce - 9:287 reduce - 9:288 reduce - 2:284,target 2 - 9:290 reduce - 9:289 reduce - 8:287,target 8 - 0:296,target 33 - 29:300 goto - 12:286,target 12 - 18:290,target 18 - 18:289,target 18 - 34:284,target 39 - 0:275,target 19 - 6:0,target 6 - 17:285,target 17 - 2:0 reduce - 29:295 shift - 24:288,target 24 - 24:0 reduce - 23:284,target 23 - 3:286,target 3 - 9:290,target 9 - 9:289,target 9 - 41:0,target 30 - 45:0 reduce - 33:0,target 44 - 13:288,target 13 - 25:0,target 25 - 0:294,target 31 - 8:285,target 8 - 17:0,target 17 - 12:284,target 12 - 10:0,target 10 - 18:287,target 18 - 17:284 reduce - 17:285 reduce - 0:273,target 17 - 17:286 reduce - 24:286,target 24 - 17:287 reduce - 4:288,target 4 - 17:288 reduce - 21:0 reduce - 17:290 reduce - 17:289 reduce - 3:284,target 3 - 6:284 reduce - 9:287,target 9 - 6:285 reduce - 42:0 reduce - 26:284 reduce - 6:286 reduce - 26:285 reduce - 13:286,target 13 - 6:287 reduce - 26:286 reduce - 20:290,target 20 - 20:289,target 20 - 19:290,target 19 - 19:289,target 19 - 0:292,target 29 - 6:288 reduce - 26:287 reduce - 6:289 reduce - 6:290 reduce - 26:288 reduce - 26:290 reduce - 26:289 reduce - 18:285,target 18 - 25:288,target 25 - 0:271,target 15 - 24:284,target 24 - 4:286,target 4 - 17:0 reduce - 14:288,target 14 - 38:0 reduce - 9:285,target 9 - 34:298,target 46 - 13:284,target 13 - 20:287,target 20 - 19:287,target 19 - 3:0,target 3 - 25:286,target 25 - 5:288,target 5 - 14:284 reduce - 0:268,target 12 - 45:0,target 34 - 14:285 reduce - 37:0,target 41 - 14:286 reduce - 14:0 reduce - 4:284,target 4 - 30:0,target 40 - 29:0,target 44 - 14:287 reduce - 22:0,target 22 - 14:288 reduce - 35:0 accept - 14:290 reduce - 14:289 reduce - 14:286,target 14 - 14:0,target 14 - 21:290,target 21 - 21:289,target 21 - 3:284 reduce - 3:285 reduce - 23:284 reduce - 3:286 reduce - 23:285 reduce - 20:285,target 20 - 19:285,target 19 - 3:287 reduce - 26:288,target 26 - 23:286 reduce - 3:288 reduce - 23:287 reduce + 38:0,target 34 + 33:292,target 38 0:257 shift - 3:289 reduce - 3:290 reduce - 23:288 reduce - 10:290,target 10 - 10:289,target 10 + 31:0,target 29 0:258 shift - 25:284,target 25 - 23:290 reduce - 23:289 reduce - 0:260 shift + 23:0,target 23 + 5:0,target 5 0:259 shift - 5:286,target 5 + 0:260 shift + 27:0 reduce + 15:0,target 15 9:0 reduce - 0:266,target 10 0:261 shift + 0:266,target 10 11:0 reduce + 0:276,target 20 0:262 shift - 15:288,target 15 + 0:286,target 30 0:263 shift 0:264 shift 32:0 reduce + 29:288 shift 0:265 shift - 14:284,target 14 + 15:0 reduce 0:266 shift - 21:287,target 21 0:267 shift - 1:289,target 1 - 1:290,target 1 + 32:0,target 31 + 29:288,target 36 + 29:292 goto + 0:265,target 9 0:268 shift - 0:270 shift + 36:0 reduce + 24:0,target 24 + 6:0,target 6 + 0:275,target 19 0:269 shift + 0:270 shift + 20:0 reduce + 19:0 reduce + 16:0,target 16 + 2:0 reduce + 0:285,target 29 0:271 shift - 26:286,target 26 0:272 shift - 6:288,target 6 - 33:300,target 38 0:273 shift - 10:287,target 10 0:274 shift - 0:275 shift - 5:284,target 5 + 24:0 reduce 6:0 reduce - 0:264,target 8 + 0:275 shift 0:276 shift - 11:284 reduce + 0:264,target 8 0:277 shift - 15:286,target 15 - 11:285 reduce + 0:274,target 18 + 33:0,target 36 0:278 shift + 0:284,target 28 28:0 reduce - 22:290,target 22 - 22:289,target 22 - 11:286 reduce - 0:279 shift - 0:280 shift + 25:0,target 25 7:0,target 7 - 11:287 reduce - 0:0,target 35 + 0:280 shift + 0:279 shift + 33:288,target 36 + 17:0,target 17 + 12:0 reduce 0:281 shift - 11:288 reduce + 0:0,target 28 + 10:0,target 10 0:282 shift - 21:285,target 21 - 11:290 reduce - 11:289 reduce 0:283 shift - 1:287,target 1 - 27:288,target 27 - 20:284 reduce - 19:284 reduce - 11:290,target 11 - 11:289,target 11 + 33:0 reduce + 0:284 shift + 0:263,target 7 + 16:0 reduce + 0:273,target 17 + 0:285 shift 0:283,target 27 - 42:0,target 31 - 26:284,target 26 - 20:285 reduce - 19:285 reduce - 6:286,target 6 - 34:0,target 37 - 20:286 reduce - 19:286 reduce + 0:286 shift + 0:287 shift + 37:0 reduce + 34:0,target 30 + 0:288 shift 26:0,target 26 - 20:287 reduce - 19:287 reduce - 10:285,target 10 + 21:0 reduce + 8:0,target 8 3:0 reduce - 20:288 reduce - 19:288 reduce + 0:290 goto + 0:289 shift 18:0,target 18 - 16:288,target 16 - 0:291 shift - 20:290 reduce - 20:289 reduce - 19:290 reduce - 19:289 reduce + 1:0,target 1 + 0:291 goto 11:0,target 11 0:262,target 6 - 0:292 shift - 29:295,target 36 - 0:293 shift - 8:284 reduce - 25:0 reduce - 15:284,target 15 - 0:294 shift - 8:285 reduce - 22:287,target 22 - 0:295 shift - 2:289,target 2 - 2:290,target 2 - 8:286 reduce - 8:287 reduce - 0:296 shift - 46:0 reduce - 8:288 reduce - 0:297 goto - 8:290 reduce - 8:289 reduce - 1:285,target 1 - 27:286,target 27 - 0:299 goto - 7:288,target 7 - 34:290,target 45 - 34:289,target 44 - 11:287,target 11 - 0:281,target 25 - 6:284,target 6 - 0:0 reduce - 16:286,target 16 - 23:290,target 23 - 23:289,target 23 - 0:260,target 4 - 0:259,target 3 - 22:0 reduce - 22:285,target 22 - 2:287,target 2 - 43:0 reduce - 0:299,target 35 - 12:290,target 12 - 12:289,target 12 - 27:284,target 27 - 7:286,target 7 - 34:287,target 42 - 11:285,target 11 - 0:278,target 22 - 17:288,target 17 - 16:284 reduce - 16:285 reduce - 16:286 reduce - 4:0,target 4 - 16:287 reduce - 16:284,target 16 - 23:287,target 23 - 18:0 reduce - 16:288 reduce - 0:257,target 1 - 3:289,target 3 - 3:290,target 3 - 16:290 reduce - 16:289 reduce - 5:284 reduce - 40:0 reduce - 39:0 reduce - 2:285,target 2 - 5:285 reduce - 46:0,target 38 - 25:284 reduce - 8:288,target 8 - 0:297,target 34 - 5:286 reduce - 38:0,target 42 - 25:285 reduce - 5:287 reduce - 31:0,target 36 - 25:286 reduce - 12:287,target 12 - 5:288 reduce - 25:287 reduce - 23:0,target 23 - 5:289 reduce - 5:290 reduce - 7:284,target 7 - 34:285,target 40 - 25:288 reduce - 15:0,target 15 - 25:290 reduce - 25:289 reduce - 0:276,target 20 - 17:286,target 17 - 24:290,target 24 - 24:289,target 24 - 34:284 shift - 34:285 shift - 15:0 reduce - 34:286 shift - 23:285,target 23 - 3:287,target 3 - 34:287 shift - 36:0 reduce - 34:288 shift - 34:290 shift - 34:289 shift - 13:290,target 13 - 13:289,target 13 - 8:286,target 8 - 0:295,target 32 - 12:285,target 12 - 18:288,target 18 - 0:274,target 18 - 17:284,target 17 - 34:298 goto - 24:287,target 24 - 13:284 reduce - 4:289,target 4 - 4:290,target 4 - 13:285 reduce - 12:0 reduce - 13:286 reduce - 13:287 reduce - 3:285,target 3 - 33:0 reduce - 13:288 reduce - 9:288,target 9 - 13:290 reduce - 13:289 reduce - 13:287,target 13 - 2:284 reduce - 0:293,target 30 - 2:285 reduce - 8:284,target 8 - 22:284 reduce - 2:286 reduce - 22:285 reduce - 2:287 reduce - 8:0,target 8 - 22:286 reduce - 18:286,target 18 - 1:0,target 1 - 2:288 reduce - 25:290,target 25 - 25:289,target 25 - 22:287 reduce - 2:289 reduce - 2:290 reduce - 22:288 reduce 0:272,target 16 - 22:290 reduce - 22:289 reduce + 25:0 reduce 7:0 reduce - 24:285,target 24 - 4:287,target 4 - 43:0,target 32 + 0:282,target 26 35:0,target 0 30:0 reduce 29:0 reduce - 14:290,target 14 - 14:289,target 14 27:0,target 27 - 9:286,target 9 - 20:0,target 20 - 19:0,target 19 - 13:285,target 13 - 12:0,target 12 - 20:288,target 20 - 19:288,target 19 - 0:291,target 28 - 33:295,target 36 - 18:284,target 18 - 25:287,target 25 - 5:289,target 5 - 5:290,target 5 - 0:270,target 14 - 0:269,target 13 - 4:0 reduce - 4:285,target 4 - 10:284 reduce - 26:0 reduce - 10:285 reduce - 14:287,target 14 - 10:286 reduce - 10:287 reduce - 9:284,target 9 - 10:288 reduce - 10:290 reduce - 10:289 reduce - 20:286,target 20 - 19:286,target 19 - 26:290,target 26 - 26:289,target 26 - 18:284 reduce - 18:285 reduce - 25:285,target 25 - 18:286 reduce - 1:0 reduce - 5:287,target 5 - 18:287 reduce - 0:267,target 11 - 18:288 reduce - 18:290 reduce - 18:289 reduce - 15:290,target 15 - 15:289,target 15 - 23:0 reduce - 7:284 reduce - 7:285 reduce - 27:284 reduce - 14:285,target 14 - 7:286 reduce - 44:0 reduce - 27:285 reduce - 21:288,target 21 - 5:0,target 5 - 7:287 reduce - 27:286 reduce - 7:288 reduce - 27:287 reduce - 7:289 reduce - 7:290 reduce - 27:288 reduce - 20:284,target 20 - 19:284,target 19 - 27:290 reduce - 27:289 reduce - 26:287,target 26 - 6:289,target 6 - 6:290,target 6 - 10:288,target 10 - 40:0,target 29 - 39:0,target 28 - 5:285,target 5 - 32:0,target 39 - 0:265,target 9 - 24:0,target 24 - 20:0 reduce - 19:0 reduce - 16:0,target 16 - 15:287,target 15 - 41:0 reduce - 21:286,target 21 - 1:288,target 1 - 27:290,target 27 - 27:289,target 27 - 26:285,target 26 - 6:287,target 6 - 15:284 reduce - 10:286,target 10 - 16:290,target 16 - 16:289,target 16 - 15:285 reduce - 15:286 reduce - 0:263,target 7 - 16:0 reduce - 15:287 reduce - 15:288 reduce - 15:285,target 15 - 22:288,target 22 - 15:290 reduce - 15:289 reduce - 37:0 reduce - 4:284 reduce - 4:285 reduce - 24:284 reduce - 21:284,target 21 - 1:286,target 1 - 4:286 reduce - 27:287,target 27 - 24:285 reduce - 4:287 reduce - 7:289,target 7 - 7:290,target 7 - 24:286 reduce - 4:288 reduce - 24:287 reduce - 11:288,target 11 - 0:282,target 26 - 4:289 reduce - 4:290 reduce - 24:288 reduce - 6:285,target 6 - 24:290 reduce - 24:289 reduce - 10:284,target 10 - 16:287,target 16 13:0 reduce 9:0,target 9 0:261,target 5 + 20:0,target 20 + 19:0,target 19 2:0,target 2 + 0:271,target 15 + 12:0,target 12 + 0:281,target 25 34:0 reduce - 22:286,target 22 - 2:288,target 2 - 33:300 goto - 1:284,target 1 - 44:0,target 33 - 27:285,target 27 - 7:287,target 7 - 36:0,target 45 - 34:288,target 43 - 28:0,target 43 - 11:286,target 11 - 0:279,target 23 + 0:291,target 35 + 33:288 shift + 17:0 reduce + 0:0 reduce + 38:0 reduce + 33:292 goto + 0:259,target 3 + 0:260,target 4 + 36:0,target 37 + 22:0 reduce + 4:0 reduce + 0:269,target 13 + 0:270,target 14 + 28:0,target 35 0:280,target 24 - 33:295 shift + 0:279,target 23 21:0,target 21 - 17:290,target 17 - 17:289,target 17 + 3:0,target 3 + 0:290,target 34 + 0:289,target 33 13:0,target 13 + 26:0 reduce 8:0 reduce - 16:285,target 16 - 12:284 reduce 10:0 reduce - 23:288,target 23 - 12:285 reduce 0:258,target 2 - 12:286 reduce + 29:292,target 37 + 0:268,target 12 31:0 reduce - 12:287 reduce - 22:284,target 22 - 12:288 reduce - 2:286,target 2 - 12:290 reduce - 12:289 reduce - 8:290,target 8 - 8:289,target 8 - 1:284 reduce - 12:288,target 12 - 1:285 reduce - 21:284 reduce - 1:286 reduce - 7:285,target 7 - 34:286,target 41 - 21:285 reduce - 1:287 reduce - 21:286 reduce - 11:284,target 11 + 0:278,target 22 + 37:0,target 33 + 14:0 reduce + 0:288,target 32 + 30:0,target 32 + 29:0,target 36 + 22:0,target 22 + 4:0,target 4 + 35:0 accept + 14:0,target 14 + 18:0 reduce + 1:0 reduce + 0:257,target 1 + 0:267,target 11 0:277,target 21 - 1:288 reduce - 21:287 reduce - 17:287,target 17 - 1:289 reduce - 1:290 reduce - 21:288 reduce + 0:287,target 31 + 23:0 reduce 5:0 reduce } array set cubesend::rules { - 9,l 297 - 11,l 297 - 32,l 298 - 6,l 297 - 28,l 298 - 3,l 297 - 25,l 297 - 0,l 301 - 22,l 297 - 43,l 299 - 18,l 297 - 40,l 299 - 39,l 299 - 15,l 297 - 36,l 299 - 12,l 297 - 33,l 298 - 7,l 297 - 29,l 298 - 30,l 298 - 4,l 297 - 26,l 297 - 1,l 297 - 23,l 297 - 44,l 300 - 19,l 297 - 20,l 297 - 41,l 299 - 16,l 297 - 37,l 299 - 13,l 297 - 34,l 298 - 8,l 297 - 10,l 297 - 31,l 298 - 5,l 297 - 27,l 297 - 2,l 297 - 24,l 297 - 45,l 300 - 21,l 297 - 42,l 299 - 17,l 297 - 38,l 299 - 14,l 297 - 35,l 299 + 9,l 290 + 11,l 290 + 32,l 291 + 6,l 290 + 28,l 291 + 3,l 290 + 25,l 290 + 0,l 293 + 22,l 290 + 18,l 290 + 15,l 290 + 36,l 292 + 12,l 290 + 33,l 291 + 7,l 290 + 29,l 291 + 30,l 291 + 4,l 290 + 26,l 290 + 1,l 290 + 23,l 290 + 19,l 290 + 20,l 290 + 16,l 290 + 37,l 292 + 13,l 290 + 34,l 291 + 8,l 290 + 10,l 290 + 31,l 291 + 5,l 290 + 27,l 290 + 2,l 290 + 24,l 290 + 21,l 290 + 17,l 290 + 14,l 290 + 35,l 291 } array set cubesend::rules { 12,dc 1 26,dc 1 3,dc 1 - 41,dc 2 18,dc 1 - 33,dc 1 + 33,dc 2 9,dc 1 11,dc 1 25,dc 1 2,dc 1 - 40,dc 1 - 39,dc 1 17,dc 1 32,dc 1 8,dc 1 10,dc 1 24,dc 1 1,dc 1 - 38,dc 2 16,dc 1 31,dc 1 7,dc 1 - 45,dc 1 23,dc 1 0,dc 1 37,dc 1 @@ -709,270 +286,223 @@ array set cubesend::rules { 29,dc 1 30,dc 1 6,dc 1 - 44,dc 0 22,dc 1 - 36,dc 1 + 36,dc 0 14,dc 1 - 28,dc 1 + 28,dc 0 5,dc 1 - 43,dc 1 21,dc 1 - 35,dc 0 + 35,dc 1 13,dc 1 27,dc 1 4,dc 1 - 42,dc 2 19,dc 1 20,dc 1 - 34,dc 1 + 34,dc 2 } array set cubesend::rules { - 41,line 134 - 7,line 97 - 37,line 130 - 4,line 94 - 34,line 125 - 1,line 91 - 31,line 122 - 27,line 117 - 24,line 114 - 21,line 111 - 17,line 107 - 14,line 104 - 11,line 101 - 43,line 136 - 9,line 99 - 40,line 133 - 39,line 132 - 6,line 96 - 36,line 129 - 3,line 93 - 33,line 124 - 29,line 120 - 30,line 121 - 26,line 116 - 23,line 113 - 19,line 109 - 20,line 110 - 16,line 106 - 13,line 103 - 10,line 100 - 45,line 140 - 42,line 135 - 8,line 98 - 38,line 131 - 5,line 95 - 35,line 128 - 2,line 92 - 32,line 123 - 28,line 119 - 25,line 115 - 22,line 112 - 18,line 108 - 15,line 105 - 12,line 102 - 44,line 139 + 7,line 81 + 37,line 115 + 4,line 78 + 34,line 110 + 1,line 75 + 31,line 107 + 27,line 101 + 24,line 98 + 21,line 95 + 17,line 91 + 14,line 88 + 11,line 85 + 9,line 83 + 6,line 80 + 36,line 114 + 3,line 77 + 33,line 109 + 29,line 105 + 30,line 106 + 26,line 100 + 23,line 97 + 19,line 93 + 20,line 94 + 16,line 90 + 13,line 87 + 10,line 84 + 8,line 82 + 5,line 79 + 35,line 111 + 2,line 76 + 32,line 108 + 28,line 104 + 25,line 99 + 22,line 96 + 18,line 92 + 15,line 89 + 12,line 86 } array set cubesend::lr1_table { 35 {{0 0 1}} - 36 {{45 0 1}} + 36 {{37 0 1}} 14,trans {} - 33,trans {{295 36} {300 38}} - 37 {{41 0 2}} - 38 {{42 0 2}} - 40 {{29 0 1}} - 39 {{28 0 1}} - 41 {{30 0 1}} + 33,trans {{288 36} {292 38}} + 37 {{33 0 2}} + 38 {{34 0 2}} 18,trans {} 1,trans {} 37,trans {} - 42 {{31 0 1}} - 43 {{32 0 1}} - 44 {{33 0 1}} - 45 {{34 0 1}} 23,trans {} 5,trans {} - 42,trans {} - 46 {{38 0 2}} 27,trans {} 9,trans {} - 46,trans {} 13,trans {} 32,trans {} 17,trans {} - 0,trans {{257 1} {258 2} {259 3} {260 4} {261 5} {262 6} {263 7} {264 8} {265 9} {266 10} {267 11} {268 12} {269 13} {270 14} {271 15} {272 16} {273 17} {274 18} {275 19} {276 20} {277 21} {278 22} {279 23} {280 24} {281 25} {282 26} {283 27} {291 28} {292 29} {293 30} {294 31} {295 32} {296 33} {297 34} {299 35}} + 0,trans {{257 1} {258 2} {259 3} {260 4} {261 5} {262 6} {263 7} {264 8} {265 9} {266 10} {267 11} {268 12} {269 13} {270 14} {271 15} {272 16} {273 17} {274 18} {275 19} {276 20} {277 21} {278 22} {279 23} {280 24} {281 25} {282 26} {283 27} {284 28} {285 29} {286 30} {287 31} {288 32} {289 33} {290 34} {291 35}} 36,trans {} 22,trans {} 4,trans {} - 41,trans {} 26,trans {} 8,trans {} - 45,trans {} 12,trans {} 31,trans {} 16,trans {} 35,trans {} 21,trans {} 3,trans {} - 40,trans {} - 39,trans {} - 10 {{10 {0 284 285 286 287 288 289 290} 1}} - 11 {{11 {0 284 285 286 287 288 289 290} 1}} + 10 {{10 0 1}} + 11 {{11 0 1}} 25,trans {} - 12 {{12 {0 284 285 286 287 288 289 290} 1}} + 12 {{12 0 1}} 7,trans {} - 44,trans {} - 13 {{13 {0 284 285 286 287 288 289 290} 1}} - 14 {{14 {0 284 285 286 287 288 289 290} 1}} - 15 {{15 {0 284 285 286 287 288 289 290} 1}} + 13 {{13 0 1}} + 14 {{14 0 1}} + 15 {{15 0 1}} 11,trans {} 30,trans {} - 29,trans {{295 36} {300 37}} - 16 {{16 {0 284 285 286 287 288 289 290} 1}} - 0 {{0 0 0} {35 0 0} {36 0 0} {37 0 0} {38 0 0} {39 0 0} {40 0 0} {41 0 0} {42 0 0} {43 0 0} {1 {0 284 285 286 287 288 289 290} 0} {2 {0 284 285 286 287 288 289 290} 0} {3 {0 284 285 286 287 288 289 290} 0} {4 {0 284 285 286 287 288 289 290} 0} {5 {0 284 285 286 287 288 289 290} 0} {6 {0 284 285 286 287 288 289 290} 0} {7 {0 284 285 286 287 288 289 290} 0} {8 {0 284 285 286 287 288 289 290} 0} {9 {0 284 285 286 287 288 289 290} 0} {10 {0 284 285 286 287 288 289 290} 0} {11 {0 284 285 286 287 288 289 290} 0} {12 {0 284 285 286 287 288 289 290} 0} {13 {0 284 285 286 287 288 289 290} 0} {14 {0 284 285 286 287 288 289 290} 0} {15 {0 284 285 286 287 288 289 290} 0} {16 {0 284 285 286 287 288 289 290} 0} {17 {0 284 285 286 287 288 289 290} 0} {18 {0 284 285 286 287 288 289 290} 0} {19 {0 284 285 286 287 288 289 290} 0} {20 {0 284 285 286 287 288 289 290} 0} {21 {0 284 285 286 287 288 289 290} 0} {22 {0 284 285 286 287 288 289 290} 0} {23 {0 284 285 286 287 288 289 290} 0} {24 {0 284 285 286 287 288 289 290} 0} {25 {0 284 285 286 287 288 289 290} 0} {26 {0 284 285 286 287 288 289 290} 0} {27 {0 284 285 286 287 288 289 290} 0}} - 17 {{17 {0 284 285 286 287 288 289 290} 1}} - 1 {{1 {0 284 285 286 287 288 289 290} 1}} - 18 {{18 {0 284 285 286 287 288 289 290} 1}} + 29,trans {{288 36} {292 37}} + 16 {{16 0 1}} + 0 {{0 0 0} {28 0 0} {29 0 0} {30 0 0} {31 0 0} {32 0 0} {33 0 0} {34 0 0} {35 0 0} {1 0 0} {2 0 0} {3 0 0} {4 0 0} {5 0 0} {6 0 0} {7 0 0} {8 0 0} {9 0 0} {10 0 0} {11 0 0} {12 0 0} {13 0 0} {14 0 0} {15 0 0} {16 0 0} {17 0 0} {18 0 0} {19 0 0} {20 0 0} {21 0 0} {22 0 0} {23 0 0} {24 0 0} {25 0 0} {26 0 0} {27 0 0}} + 17 {{17 0 1}} + 1 {{1 0 1}} + 18 {{18 0 1}} 15,trans {} - 2 {{2 {0 284 285 286 287 288 289 290} 1}} - 19 {{19 {0 284 285 286 287 288 289 290} 1}} - 20 {{20 {0 284 285 286 287 288 289 290} 1}} - 34,trans {{284 39} {285 40} {286 41} {287 42} {288 43} {289 44} {290 45} {298 46}} - 3 {{3 {0 284 285 286 287 288 289 290} 1}} - 21 {{21 {0 284 285 286 287 288 289 290} 1}} - 4 {{4 {0 284 285 286 287 288 289 290} 1}} - 22 {{22 {0 284 285 286 287 288 289 290} 1}} - 5 {{5 {0 284 285 286 287 288 289 290} 1}} - 23 {{23 {0 284 285 286 287 288 289 290} 1}} + 2 {{2 0 1}} + 19 {{19 0 1}} + 20 {{20 0 1}} + 34,trans {} + 3 {{3 0 1}} + 21 {{21 0 1}} + 4 {{4 0 1}} + 22 {{22 0 1}} + 5 {{5 0 1}} + 23 {{23 0 1}} 20,trans {} 19,trans {} - 6 {{6 {0 284 285 286 287 288 289 290} 1}} - 24 {{24 {0 284 285 286 287 288 289 290} 1}} + 6 {{6 0 1}} + 24 {{24 0 1}} 2,trans {} 38,trans {} - 7 {{7 {0 284 285 286 287 288 289 290} 1}} - 25 {{25 {0 284 285 286 287 288 289 290} 1}} - 8 {{8 {0 284 285 286 287 288 289 290} 1}} - 26 {{26 {0 284 285 286 287 288 289 290} 1}} - 9 {{9 {0 284 285 286 287 288 289 290} 1}} - 27 {{27 {0 284 285 286 287 288 289 290} 1}} + 7 {{7 0 1}} + 25 {{25 0 1}} + 8 {{8 0 1}} + 26 {{26 0 1}} + 9 {{9 0 1}} + 27 {{27 0 1}} 24,trans {} - 28 {{43 0 1}} + 28 {{35 0 1}} 6,trans {} - 43,trans {} - 29 {{41 0 1} {44 0 0} {45 0 0}} - 30 {{40 0 1}} - 31 {{36 0 1}} - 32 {{39 0 1}} + 29 {{33 0 1} {36 0 0} {37 0 0}} + 30 {{32 0 1}} + 31 {{29 0 1}} + 32 {{31 0 1}} 10,trans {} 28,trans {} - 33 {{42 0 1} {44 0 0} {45 0 0}} - 34 {{37 0 1} {38 0 1} {28 0 0} {29 0 0} {30 0 0} {31 0 0} {32 0 0} {33 0 0} {34 0 0}} + 33 {{34 0 1} {36 0 0} {37 0 0}} + 34 {{30 0 1}} } array set cubesend::token_id_table { 286,t 0 - 286 FK5_ + 286 INTERVAL_ 280,title WCSW 279,title WCSV 264,line 14 - 298,title {} - 292,line 46 - 287 J2000_ + 292,line 113 + 287 IMAGE_ 270,t 0 269,t 0 - 288 ICRS_ - 300 order - 290 ECLIPTIC_ - 289 GALACTIC_ + 288 LOCK_ + 290 wcssys + 289 ORDER_ 276,line 26 265,title WCSH - 301,t 1 - 301 start' - 291,t 0 - 291 AXIS_ - 284,title FK4 - 292 AXES_ + 291,t 1 + 291 cubesend + 284,title AXIS + 292 order 274,t 0 261,line 11 - 293 INTERVAL_ - 288,line 39 + 293 start' + 288,line 41 257,t 0 - 294 IMAGE_ 270,title WCSM 269,title WCSL - 295,t 0 - 295 LOCK_ - 288,title ICRS + 288,title LOCK 273,line 23 - 296 ORDER_ 278,t 0 - 297 wcssys 257,line 7 262,t 0 - 298 skyframe - 285,line 36 + 285,line 38 274,title WCSQ - 299,t 1 - 299 cubesend - 293,title INTERVAL + 293,title {} 283,t 0 270,line 20 269,line 19 - 297,line 90 259,title WCSB 260,title WCSC 266,t 0 278,title WCSU - 297,title {} 282,line 32 287,t 0 error error 271,t 0 264,title WCSG 266,line 16 - 294,line 48 283,title WCSZ - 292,t 0 + 292,t 1 278,line 28 - error,line 89 + error,line 73 275,t 0 268,title WCSK - 287,title J2000 + 287,title IMAGE 258,t 0 263,line 13 - 301,line 141 + 291,line 103 error,title {} - 291,line 45 - 296,t 0 280,t 0 279,t 0 275,line 25 273,title WCSP - 292,title AXES + 292,title {} 263,t 0 259,line 9 260,line 10 - 287,line 38 + 287,line 40 258,title WCSA 284,t 0 277,title WCST - 296,title ORDER 272,line 22 267,t 0 - 299,line 127 263,title WCSF 288,t 0 - 284,line 35 + 284,line 37 282,title WCSY 272,t 0 268,line 18 - 296,line 50 267,title WCSJ - 293,t 0 - 286,title FK5 + 293,t 1 + 286,title INTERVAL 257 WCS_ 281,line 31 276,t 0 @@ -984,10 +514,8 @@ array set cubesend::token_id_table { 272,title WCSO 261 WCSD_ 265,line 15 - 301,title {} - 297,t 1 - 293,line 47 - 291,title AXIS + 293,line 116 + 291,title {} 262 WCSE_ 281,t 0 263 WCSF_ @@ -997,12 +525,10 @@ array set cubesend::token_id_table { 264,t 0 276,title WCSS 265 WCSH_ - 295,title LOCK 262,line 12 266 WCSI_ - 300,line 138 - 290,line 41 - 289,line 40 + 290,line 74 + 289,line 42 285,t 0 267 WCSJ_ 0,t 0 @@ -1014,50 +540,42 @@ array set cubesend::token_id_table { 274,line 24 270 WCSM_ 269 WCSL_ - 299,title {} error,t 0 271 WCSN_ - 300,t 1 - 290,t 0 + 290,t 1 289,t 0 272 WCSO_ 258,line 8 - 286,line 37 + 286,line 39 273,t 0 273 WCSP_ 266,title WCSI - 285,title B1950 + 285,title AXES 274 WCSQ_ 275 WCSR_ 271,line 21 - 298,line 118 - 294,t 0 276 WCSS_ 277,t 0 277 WCST_ 271,title WCSN - 300,title {} - 290,title ECLIPTIC - 289,title GALACTIC + 290,title {} + 289,title ORDER 283,line 33 278 WCSU_ 261,t 0 280 WCSW_ 279 WCSV_ - 298,t 1 281 WCSX_ 267,line 17 - 295,line 49 282,t 0 282 WCSY_ 275,title WCSR - 294,title IMAGE 283 WCSZ_ 265,t 0 - 284 FK4_ + 284 AXIS_ 280,line 30 279,line 29 - 285 B1950_ + 285 AXES_ 261,title WCSD } @@ -1182,22 +700,14 @@ proc cubesend::yyparse {} { 25 { set _ wcsx } 26 { set _ wcsy } 27 { set _ wcsz } - 28 { set _ fk4 } - 29 { set _ fk4 } - 30 { set _ fk5 } - 31 { set _ fk5 } - 32 { set _ icrs } - 33 { set _ galactic } - 34 { set _ ecliptic } - 35 { ProcessSendCmdCurrent "get fits slice" } - 36 { ProcessSendCmdCurrent "get fits slice" } - 37 { ProcessSendCmdCurrent "get fits slice from image $1 FK5" } - 38 { ProcessSendCmdCurrent "get fits slice from image $1 $2" } - 39 { ProcessSendCmdGet cube lock } - 40 { BlinkSendCmdInterval } - 43 { CubeSendCmdAxis } - 44 { ProcessSendCmdGet cube axes } - 45 { ProcessSendCmdYesNo cube lock,axes } + 28 { ProcessSendCmdCurrent "get fits slice" } + 29 { ProcessSendCmdCurrent "get fits slice" } + 30 { ProcessSendCmdCurrent "get fits slice from image $1" } + 31 { ProcessSendCmdGet cube lock } + 32 { BlinkSendCmdInterval } + 35 { CubeSendCmdAxis } + 36 { ProcessSendCmdGet cube axes } + 37 { ProcessSendCmdYesNo cube lock,axes } } unsetupvalues $dc # pop off tokens from the stack if normal rule diff --git a/tksao/frame/base.h b/tksao/frame/base.h index b1c38c2..50933c3 100644 --- a/tksao/frame/base.h +++ b/tksao/frame/base.h @@ -960,7 +960,7 @@ public: void saveENVIFileCmd(const char*, const char*, FitsFile::ArchType); void sliceCmd(int, int); - void sliceCmd(double, Coord::CoordSystem, Coord::SkyFrame); + void sliceCmd(double, Coord::CoordSystem); void updateFitsCmd(int); void updateFitsCmd(int, BBox, int); diff --git a/tksao/frame/basecommand.C b/tksao/frame/basecommand.C index a5905b9..7bd75f9 100644 --- a/tksao/frame/basecommand.C +++ b/tksao/frame/basecommand.C @@ -2799,15 +2799,15 @@ void Base::sliceCmd(int ii, int ss) updateMagnifier(); } -void Base::sliceCmd(double dd, Coord::CoordSystem sys, Coord::SkyFrame sky) +void Base::sliceCmd(double dd, Coord::CoordSystem sys) { if (!currentContext->fits) return; FitsImage* ptr = currentContext->fits; Vector3d cc = Vector3d(ptr->center(),1) * Translate3d(-.5, -.5, -.5); - Vector3d wcc = ptr->mapFromRef(cc,sys,sky); - Vector3d oo = ptr->mapToRef(Vector3d(wcc[0],wcc[1],dd),sys,sky); + Vector3d wcc = ptr->mapFromRef(cc,sys,Coord::FK5); + Vector3d oo = ptr->mapToRef(Vector3d(wcc[0],wcc[1],dd),sys,Coord::FK5); Vector3d out = oo * Translate3d(.5, .5, .5); // IMAGE (ranges 1-n) diff --git a/tksao/frame/parser.C b/tksao/frame/parser.C index 6467e66..d59039d 100644 --- a/tksao/frame/parser.C +++ b/tksao/frame/parser.C @@ -1075,7 +1075,7 @@ union yyalloc /* YYFINAL -- State number of the termination state. */ #define YYFINAL 355 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 5568 +#define YYLAST 5663 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 352 @@ -1084,7 +1084,7 @@ union yyalloc /* YYNRULES -- Number of rules. */ #define YYNRULES 1259 /* YYNRULES -- Number of states. */ -#define YYNSTATES 2784 +#define YYNSTATES 2783 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 @@ -1287,9 +1287,9 @@ static const yytype_uint16 yyprhs[] = 4448, 4452, 4455, 4458, 4461, 4464, 4467, 4470, 4473, 4476, 4479, 4482, 4485, 4488, 4492, 4496, 4500, 4505, 4512, 4515, 4517, 4519, 4521, 4523, 4525, 4526, 4532, 4534, 4541, 4545, - 4547, 4550, 4554, 4557, 4561, 4565, 4568, 4571, 4574, 4577, - 4580, 4583, 4587, 4590, 4593, 4597, 4599, 4603, 4608, 4610, - 4613, 4619, 4626, 4633, 4636, 4638, 4641, 4644, 4650, 4657 + 4547, 4550, 4553, 4556, 4560, 4564, 4567, 4570, 4573, 4576, + 4579, 4582, 4586, 4589, 4592, 4596, 4598, 4602, 4607, 4609, + 4612, 4618, 4625, 4632, 4635, 4637, 4640, 4643, 4649, 4656 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ @@ -1750,18 +1750,18 @@ static const yytype_int16 yyrhs[] = -1, 136, -1, 108, -1, -1, 4, 354, 354, 354, 354, -1, 205, -1, 205, 4, 354, 354, 354, 354, -1, 124, 269, 560, -1, 4, -1, 4, 4, -1, - 354, 364, 370, -1, 354, 354, -1, 291, 354, 354, - -1, 365, 370, 371, -1, 16, 565, -1, 243, 4, - -1, 241, 564, -1, 23, 563, -1, 4, 4, -1, - 4, 5, -1, 285, 4, 5, -1, 4, 4, -1, - 4, 5, -1, 285, 4, 5, -1, 4, -1, 4, - 365, 370, -1, 4, 6, 365, 370, -1, 230, -1, + 354, 364, -1, 354, 354, -1, 291, 354, 354, -1, + 365, 370, 371, -1, 16, 565, -1, 243, 4, -1, + 241, 564, -1, 23, 563, -1, 4, 4, -1, 4, + 5, -1, 285, 4, 5, -1, 4, 4, -1, 4, + 5, -1, 285, 4, 5, -1, 4, -1, 4, 365, + 370, -1, 4, 6, 365, 370, -1, 230, -1, 354, + 354, -1, 354, 354, 12, 354, 354, -1, 354, 354, + 12, 366, 354, 354, -1, 354, 354, 12, 364, 370, + 363, -1, 291, 568, -1, 123, -1, 123, 354, -1, 354, 354, -1, 354, 354, 12, 354, 354, -1, 354, 354, 12, 366, 354, 354, -1, 354, 354, 12, 364, - 370, 363, -1, 291, 568, -1, 123, -1, 123, 354, - -1, 354, 354, -1, 354, 354, 12, 354, 354, -1, - 354, 354, 12, 366, 354, 354, -1, 354, 354, 12, - 364, 370, 363, -1 + 370, 363, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ @@ -1890,9 +1890,9 @@ static const yytype_uint16 yyrline[] = 2746, 2749, 2750, 2751, 2754, 2755, 2756, 2759, 2760, 2761, 2764, 2765, 2766, 2769, 2771, 2773, 2777, 2781, 2783, 2788, 2791, 2792, 2793, 2794, 2797, 2798, 2800, 2801, 2803, 2806, - 2807, 2808, 2812, 2813, 2816, 2818, 2819, 2820, 2821, 2824, - 2825, 2826, 2829, 2830, 2831, 2834, 2835, 2840, 2844, 2851, - 2852, 2854, 2859, 2861, 2864, 2865, 2866, 2867, 2869, 2874 + 2807, 2808, 2811, 2812, 2815, 2817, 2818, 2819, 2820, 2823, + 2824, 2825, 2828, 2829, 2830, 2833, 2834, 2839, 2843, 2850, + 2851, 2853, 2858, 2860, 2863, 2864, 2865, 2866, 2868, 2873 }; #endif @@ -2304,7 +2304,7 @@ static const yytype_uint8 yyr2[] = 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 4, 6, 2, 1, 1, 1, 1, 1, 0, 5, 1, 6, 3, 1, - 2, 3, 2, 3, 3, 2, 2, 2, 2, 2, + 2, 2, 2, 3, 3, 2, 2, 2, 2, 2, 2, 3, 2, 2, 3, 1, 3, 4, 1, 2, 5, 6, 6, 2, 1, 2, 2, 5, 6, 6 }; @@ -2474,7 +2474,7 @@ static const yytype_uint16 yydefact[] = 0, 0, 1180, 0, 0, 0, 0, 0, 1197, 0, 1211, 1210, 1212, 0, 0, 0, 1183, 0, 0, 0, 1182, 1192, 1191, 1193, 1189, 1188, 1190, 1214, 1213, 1215, - 0, 0, 0, 1230, 149, 0, 149, 1246, 1241, 1244, + 0, 0, 0, 1230, 1231, 0, 149, 1246, 1241, 1244, 0, 0, 149, 0, 0, 0, 227, 0, 0, 0, 0, 0, 0, 0, 0, 298, 297, 0, 0, 289, 300, 302, 0, 312, 314, 313, 311, 149, 319, 0, @@ -2513,98 +2513,98 @@ static const yytype_uint16 yydefact[] = 0, 0, 834, 0, 149, 1084, 1086, 857, 0, 1140, 1141, 1144, 1145, 192, 192, 192, 1216, 1195, 1194, 1196, 1199, 1198, 1202, 1201, 1203, 1200, 1208, 1207, 1209, 1205, - 1204, 1206, 0, 0, 1225, 1231, 0, 1247, 0, 149, - 0, 1250, 0, 0, 231, 0, 228, 0, 0, 0, - 267, 0, 0, 0, 0, 149, 0, 304, 137, 0, - 397, 0, 418, 157, 160, 0, 0, 431, 0, 469, - 470, 0, 435, 0, 0, 0, 0, 0, 149, 951, - 160, 160, 160, 149, 957, 160, 157, 160, 160, 149, - 970, 160, 160, 160, 149, 977, 160, 160, 149, 0, - 160, 149, 160, 160, 149, 160, 149, 1011, 1012, 0, - 0, 513, 555, 0, 574, 579, 580, 581, 0, 585, - 586, 587, 593, 170, 167, 599, 616, 617, 618, 619, - 620, 0, 622, 623, 167, 0, 0, 0, 167, 167, - 164, 0, 0, 0, 0, 0, 0, 167, 167, 164, + 1204, 1206, 0, 0, 1225, 0, 1247, 0, 149, 0, + 1250, 0, 0, 231, 0, 228, 0, 0, 0, 267, + 0, 0, 0, 0, 149, 0, 304, 137, 0, 397, + 0, 418, 157, 160, 0, 0, 431, 0, 469, 470, + 0, 435, 0, 0, 0, 0, 0, 149, 951, 160, + 160, 160, 149, 957, 160, 157, 160, 160, 149, 970, + 160, 160, 160, 149, 977, 160, 160, 149, 0, 160, + 149, 160, 160, 149, 160, 149, 1011, 1012, 0, 0, + 513, 555, 0, 574, 579, 580, 581, 0, 585, 586, + 587, 593, 170, 167, 599, 616, 617, 618, 619, 620, + 0, 622, 623, 167, 0, 0, 0, 167, 167, 164, 0, 0, 0, 0, 0, 0, 167, 167, 164, 0, - 0, 0, 167, 170, 170, 170, 170, 170, 0, 170, - 170, 0, 167, 167, 170, 170, 170, 170, 170, 0, - 170, 170, 0, 167, 167, 679, 680, 681, 682, 684, - 0, 687, 688, 0, 167, 690, 691, 692, 693, 694, - 0, 696, 697, 167, 609, 167, 0, 615, 0, 0, - 702, 0, 739, 160, 0, 0, 160, 0, 0, 0, - 750, 160, 754, 755, 160, 757, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 779, - 782, 783, 0, 160, 0, 0, 0, 799, 0, 0, + 0, 0, 0, 0, 0, 167, 167, 164, 0, 0, + 0, 167, 170, 170, 170, 170, 170, 0, 170, 170, + 0, 167, 167, 170, 170, 170, 170, 170, 0, 170, + 170, 0, 167, 167, 679, 680, 681, 682, 684, 0, + 687, 688, 0, 167, 690, 691, 692, 693, 694, 0, + 696, 697, 167, 609, 167, 0, 615, 0, 0, 702, + 0, 739, 160, 0, 0, 160, 0, 0, 0, 750, + 160, 754, 755, 160, 757, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 779, 782, + 783, 0, 160, 0, 0, 0, 799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1079, 1058, 0, 1065, 1066, 0, + 0, 0, 0, 1079, 1058, 0, 1065, 1066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 149, 0, 0, 83, 0, 0, 926, 927, 157, - 0, 0, 0, 1048, 1046, 1056, 833, 835, 157, 1133, - 1174, 1173, 1175, 1217, 0, 1227, 1257, 0, 0, 1252, - 1251, 232, 0, 0, 0, 272, 0, 0, 0, 290, - 160, 398, 402, 419, 421, 0, 429, 464, 0, 0, - 0, 0, 0, 0, 947, 952, 955, 954, 958, 959, - 960, 962, 966, 971, 972, 974, 975, 978, 979, 983, - 157, 160, 990, 157, 991, 995, 157, 1005, 157, 0, - 0, 512, 0, 584, 595, 170, 167, 624, 170, 170, - 170, 170, 170, 0, 170, 170, 167, 170, 170, 170, + 149, 0, 0, 83, 0, 0, 926, 927, 157, 0, + 0, 0, 1048, 1046, 1056, 833, 835, 157, 1133, 1174, + 1173, 1175, 1217, 0, 1227, 1257, 0, 0, 1252, 1251, + 232, 0, 0, 0, 272, 0, 0, 0, 290, 160, + 398, 402, 419, 421, 0, 429, 464, 0, 0, 0, + 0, 0, 0, 947, 952, 955, 954, 958, 959, 960, + 962, 966, 971, 972, 974, 975, 978, 979, 983, 157, + 160, 990, 157, 991, 995, 157, 1005, 157, 0, 0, + 512, 0, 584, 595, 170, 167, 624, 170, 170, 170, 170, 170, 0, 170, 170, 167, 170, 170, 170, 170, - 170, 0, 170, 170, 167, 170, 639, 640, 641, 642, - 644, 167, 647, 648, 0, 170, 170, 668, 669, 670, - 671, 673, 167, 676, 677, 0, 170, 683, 167, 0, - 689, 167, 698, 611, 167, 707, 708, 149, 741, 0, - 160, 744, 0, 149, 0, 752, 756, 149, 0, 763, - 764, 765, 766, 770, 771, 767, 768, 769, 0, 0, - 160, 791, 0, 149, 0, 0, 804, 160, 0, 0, - 160, 160, 0, 851, 0, 181, 181, 0, 0, 181, - 0, 181, 1037, 0, 0, 0, 0, 0, 0, 0, - 0, 1057, 0, 0, 181, 181, 0, 0, 0, 0, - 0, 0, 0, 0, 921, 0, 0, 0, 1037, 84, - 0, 181, 0, 1081, 925, 0, 0, 0, 214, 1259, - 1258, 0, 0, 236, 0, 0, 0, 0, 305, 430, - 324, 0, 943, 0, 149, 0, 984, 985, 989, 996, - 1006, 356, 324, 0, 596, 621, 630, 631, 632, 633, - 634, 167, 636, 637, 170, 659, 660, 661, 662, 663, - 167, 665, 666, 170, 650, 651, 652, 653, 654, 167, - 656, 657, 170, 643, 170, 167, 649, 672, 170, 167, - 678, 685, 167, 695, 612, 0, 160, 745, 0, 0, - 0, 0, 0, 772, 773, 789, 0, 0, 0, 800, - 805, 0, 814, 815, 806, 160, 0, 182, 1037, 1037, - 83, 0, 1037, 0, 1037, 895, 149, 0, 1060, 0, - 1063, 1097, 1064, 1062, 1059, 0, 1037, 1037, 83, 0, - 0, 1037, 1037, 0, 0, 1037, 924, 922, 923, 902, - 1037, 1037, 1081, 1092, 0, 1049, 837, 0, 0, 0, - 238, 0, 0, 0, 325, 326, 346, 0, 0, 189, - 946, 364, 0, 170, 638, 170, 667, 170, 658, 645, - 170, 674, 170, 686, 0, 740, 160, 160, 0, 160, - 0, 160, 160, 0, 160, 0, 1037, 908, 904, 1037, - 0, 909, 0, 903, 1037, 0, 1061, 0, 906, 905, - 1037, 0, 0, 900, 898, 1037, 149, 899, 901, 907, - 1092, 1043, 0, 0, 1082, 1090, 1132, 0, 0, 0, - 268, 291, 294, 292, 0, 0, 942, 149, 190, 191, - 945, 557, 635, 664, 655, 646, 675, 160, 743, 749, - 0, 762, 759, 790, 795, 0, 810, 0, 913, 897, - 83, 0, 911, 1098, 0, 896, 83, 0, 912, 0, - 1044, 1094, 1096, 0, 1089, 0, 0, 273, 0, 0, - 0, 0, 189, 0, 746, 149, 760, 792, 824, 1037, - 0, 0, 1037, 0, 160, 1095, 1091, 237, 0, 0, - 0, 0, 0, 944, 718, 149, 747, 761, 149, 793, - 915, 0, 1037, 914, 0, 0, 239, 284, 0, 283, - 0, 748, 794, 83, 916, 83, 1037, 282, 281, 1037, - 1037, 910, 918, 917 + 170, 0, 170, 170, 167, 170, 170, 170, 170, 170, + 0, 170, 170, 167, 170, 639, 640, 641, 642, 644, + 167, 647, 648, 0, 170, 170, 668, 669, 670, 671, + 673, 167, 676, 677, 0, 170, 683, 167, 0, 689, + 167, 698, 611, 167, 707, 708, 149, 741, 0, 160, + 744, 0, 149, 0, 752, 756, 149, 0, 763, 764, + 765, 766, 770, 771, 767, 768, 769, 0, 0, 160, + 791, 0, 149, 0, 0, 804, 160, 0, 0, 160, + 160, 0, 851, 0, 181, 181, 0, 0, 181, 0, + 181, 1037, 0, 0, 0, 0, 0, 0, 0, 0, + 1057, 0, 0, 181, 181, 0, 0, 0, 0, 0, + 0, 0, 0, 921, 0, 0, 0, 1037, 84, 0, + 181, 0, 1081, 925, 0, 0, 0, 214, 1259, 1258, + 0, 0, 236, 0, 0, 0, 0, 305, 430, 324, + 0, 943, 0, 149, 0, 984, 985, 989, 996, 1006, + 356, 324, 0, 596, 621, 630, 631, 632, 633, 634, + 167, 636, 637, 170, 659, 660, 661, 662, 663, 167, + 665, 666, 170, 650, 651, 652, 653, 654, 167, 656, + 657, 170, 643, 170, 167, 649, 672, 170, 167, 678, + 685, 167, 695, 612, 0, 160, 745, 0, 0, 0, + 0, 0, 772, 773, 789, 0, 0, 0, 800, 805, + 0, 814, 815, 806, 160, 0, 182, 1037, 1037, 83, + 0, 1037, 0, 1037, 895, 149, 0, 1060, 0, 1063, + 1097, 1064, 1062, 1059, 0, 1037, 1037, 83, 0, 0, + 1037, 1037, 0, 0, 1037, 924, 922, 923, 902, 1037, + 1037, 1081, 1092, 0, 1049, 837, 0, 0, 0, 238, + 0, 0, 0, 325, 326, 346, 0, 0, 189, 946, + 364, 0, 170, 638, 170, 667, 170, 658, 645, 170, + 674, 170, 686, 0, 740, 160, 160, 0, 160, 0, + 160, 160, 0, 160, 0, 1037, 908, 904, 1037, 0, + 909, 0, 903, 1037, 0, 1061, 0, 906, 905, 1037, + 0, 0, 900, 898, 1037, 149, 899, 901, 907, 1092, + 1043, 0, 0, 1082, 1090, 1132, 0, 0, 0, 268, + 291, 294, 292, 0, 0, 942, 149, 190, 191, 945, + 557, 635, 664, 655, 646, 675, 160, 743, 749, 0, + 762, 759, 790, 795, 0, 810, 0, 913, 897, 83, + 0, 911, 1098, 0, 896, 83, 0, 912, 0, 1044, + 1094, 1096, 0, 1089, 0, 0, 273, 0, 0, 0, + 0, 189, 0, 746, 149, 760, 792, 824, 1037, 0, + 0, 1037, 0, 160, 1095, 1091, 237, 0, 0, 0, + 0, 0, 944, 718, 149, 747, 761, 149, 793, 915, + 0, 1037, 914, 0, 0, 239, 284, 0, 283, 0, + 748, 794, 83, 916, 83, 1037, 282, 281, 1037, 1037, + 910, 918, 917 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { - -1, 53, 1394, 172, 152, 1241, 2468, 2469, 423, 424, + -1, 53, 1394, 172, 152, 1241, 2467, 2468, 423, 424, 425, 426, 153, 154, 155, 679, 91, 798, 446, 1191, - 1658, 1331, 1344, 1327, 1901, 2568, 1391, 2690, 1561, 336, + 1658, 1331, 1344, 1327, 1901, 2567, 1391, 2689, 1561, 336, 751, 754, 757, 765, 63, 360, 366, 370, 373, 68, 376, 75, 391, 387, 381, 398, 82, 403, 92, 98, 408, 410, 412, 480, 852, 1627, 414, 417, 105, 433, - 156, 158, 2616, 174, 214, 469, 841, 471, 481, 844, + 156, 158, 2615, 174, 214, 469, 841, 471, 481, 844, 849, 483, 485, 855, 488, 857, 499, 860, 862, 502, 506, 510, 512, 515, 519, 546, 542, 1254, 533, 880, 885, 877, 1242, 891, 536, 555, 558, 563, 568, 576, @@ -2612,10 +2612,10 @@ static const yytype_int16 yydefgoto[] = 585, 587, 591, 596, 604, 244, 1320, 607, 252, 616, 1336, 618, 624, 975, 1352, 970, 1769, 1358, 1356, 1771, 971, 1361, 1363, 630, 633, 628, 254, 262, 264, 671, - 1052, 1418, 1041, 1516, 1945, 2262, 1057, 1050, 915, 1295, - 1299, 1307, 1309, 1929, 269, 1066, 1069, 1077, 2234, 2235, - 2236, 1930, 2603, 2604, 1100, 1103, 2674, 2675, 2671, 2672, - 2721, 2237, 2238, 276, 282, 290, 693, 688, 295, 300, + 1052, 1418, 1041, 1516, 1945, 2261, 1057, 1050, 915, 1295, + 1299, 1307, 1309, 1929, 269, 1066, 1069, 1077, 2233, 2234, + 2235, 1930, 2602, 2603, 1100, 1103, 2673, 2674, 2670, 2671, + 2720, 2236, 2237, 276, 282, 290, 693, 688, 295, 300, 302, 703, 710, 1129, 1134, 760, 748, 308, 312, 717, 318, 724, 1566, 737, 738, 1165, 1160, 1572, 1150, 1578, 1590, 1586, 1154, 742, 726, 324, 325, 340, 1178, 343, @@ -2624,315 +2624,315 @@ static const yytype_int16 yydefgoto[] = /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ -#define YYPACT_NINF -2537 +#define YYPACT_NINF -2549 static const yytype_int16 yypact[] = { - 4964, 88, 492, 44, -2537, -2537, 1353, -146, 539, 1011, - 1010, 102, 657, 135, 186, 1587, 38, 5192, 403, 2042, - -2537, 186, 655, 199, 1223, 215, 110, 445, 337, 460, - 455, 420, 3597, 136, 751, 553, 462, 337, -2537, -17, - 69, 1077, -2537, 440, 582, 435, -2537, 469, -2537, 50, - 3346, 369, 62, 601, 126, 584, 363, 640, 647, 73, - 663, 11, 998, -2537, -2537, -2537, 1101, 489, -2537, 256, - 57, 186, -4, 734, 247, -2537, 665, 489, -2537, -2537, - 106, 489, -2537, -2537, -2537, -2537, 489, -2537, -2537, -2537, - -2537, -2537, -2537, 33, 642, 691, 696, 580, -2537, 489, - 1262, 489, 489, 919, 489, -2537, -2537, -2537, 527, -2537, - -2537, -2537, -2537, 4578, -2537, -2537, -2537, -2537, -2537, -2537, - 489, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, 1250, -2537, 489, -2537, 765, -2537, -2537, - 186, 186, 186, 186, 186, 186, -2537, -2537, 186, 186, - 186, 186, -2537, 671, -2537, 708, 1769, 686, 47, 528, - 649, 413, 4052, 121, 4629, 4545, 787, 4578, 3133, -2537, - 436, -104, 831, 754, 96, 864, 836, 337, 817, -2537, - 791, -2537, 631, 586, 84, -2537, 174, -2537, 463, -2537, - -24, 796, 63, -2537, -2537, 1241, -2537, -2537, -2537, 832, - 879, -2537, -2537, -2537, -2537, 85, -2537, -2537, -2537, -2537, - 868, -2537, -2537, 1241, 4022, -2537, -2537, 208, -2537, 890, - 911, 86, -2537, 489, -2537, 917, 40, 923, 83, 46, - 932, 25, -2537, -2537, -2537, 942, 949, 186, 186, 489, - 489, -2537, -2537, 959, -2537, -2537, -2537, -2537, -2537, 3139, - -2537, 1008, -2, 489, 1241, 489, -2537, 1013, -2537, -2537, - -2537, -2537, -2537, 489, 1012, 186, 1431, 489, 1250, 489, - -2537, 946, -2537, 4751, -2537, -2537, 500, 999, 1016, 489, - -2537, 1019, -2537, -2537, -38, 1020, 1241, 1029, -2537, 1066, - 489, 941, -2537, 426, 924, 1714, 505, 1052, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, 1058, -2537, 457, 89, 117, - 158, 29, -2537, 489, 489, 146, -2537, 489, 811, 1088, - -2537, 489, 489, -2537, 1090, 16, 24, 1095, 1250, -2537, - -2537, -2537, 1159, 489, -2537, -2537, -2537, -2537, -2537, 489, - -2537, 1104, 1108, -2537, 489, 1170, -2537, -2537, -2537, -2537, - -2537, -2537, 489, -2537, -2537, 489, -2537, -2537, 453, 453, - 1121, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, 989, 489, 489, 1184, 1186, 1209, -2537, -2537, - 489, 489, 489, -2537, 489, -2537, 1212, -2537, -2537, -2537, - -2537, 828, -2537, 1213, -2537, 1241, 1214, -2537, 489, -2537, - -2537, -2537, 489, 1217, 1222, 1222, 1241, 489, 489, 489, - 489, 489, 489, -2537, 489, 4578, 1262, 489, 489, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, 1262, 489, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, 1229, - -2537, 960, 48, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -44, -2537, -2537, -2537, 1080, -2537, 378, 336, - 336, -2537, -2537, -2537, 1249, -2537, 1254, -2537, -2537, -45, - -2537, 1078, -2537, -2537, -2537, 1100, -2537, -2537, 1250, -2537, - 489, 489, -2537, 1241, 1241, 1250, -2537, -2537, 1250, -2537, - -2537, -2537, -2537, 1250, -2537, -2537, 1241, 1250, 489, -2537, - -2537, 1241, -2537, 1270, 261, 1081, 23, -2537, -2537, 1082, - 1241, 22, -2537, -2537, -2537, -2537, -2537, 1276, 1283, 1287, - -2537, 1115, -2537, -2537, -2537, 489, -2537, -2537, 1126, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -24, - -2537, -2537, -2537, -2537, -2537, -2537, 1127, 1134, -2537, -2537, - 1260, 1265, 1266, -2537, -2537, 1110, -2537, 489, 1336, 1123, - 4751, -2537, 1250, -2537, 1344, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, 1241, - 1241, 1241, 1241, -2537, -2537, 1346, 186, -2537, -2537, 1347, - 1351, 1181, 489, -2537, 407, 1295, -2537, 1381, -2537, 20, - 1300, 5193, 17, 1383, -2537, 1385, -2537, 1386, -2537, 227, - -2537, 1389, 1393, -2537, 1395, -2537, -2537, -2537, 489, -2537, - 4751, 4392, 1586, 473, 1396, 277, 1303, -2537, -2537, -2537, - 1387, 49, 1402, 1406, 52, 489, 496, 65, 82, 1241, - 186, 1882, 638, 28, 113, 170, 4, -2537, 1397, 1398, - 1408, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - 489, -2537, -2537, -2537, 489, 489, 489, 489, -2537, -2537, - 489, 1250, 489, -2537, 489, 1262, 489, 1414, 1250, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, 1415, 454, 493, - -2537, -2537, -2537, 1416, -2537, -2537, -2537, -2537, 1325, -2537, - 1420, 1422, 1313, 1424, -2537, 1425, -2537, 1426, 1345, 1428, - 509, 508, 517, 71, 519, 1435, 614, -2537, -2537, 1436, - 1438, 1444, -2537, -2537, 1445, -2537, -2537, -2537, -2537, 1446, - -2537, -2537, 1448, -2537, -2537, 1449, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, 489, 489, -2537, 489, 993, 489, 489, - -2537, 823, -2537, 1043, 1452, -2537, 1060, 1460, -2537, -2537, - -15, 489, 489, -2537, 1457, -2537, -2537, 1465, 1208, 489, - 1463, 612, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, 1468, 1473, 489, 489, - 489, 1475, 186, 1477, 1478, 1250, 1241, -2537, -2537, -2537, - -2537, -2537, 1250, -2537, -2537, 489, 489, 489, 1241, 489, - 1262, 489, -2537, 489, -2537, -2537, -2537, -2537, -2537, 1479, - 1481, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, 121, -2537, 489, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, 1241, 489, 1250, 1250, -15, - -15, -15, 1250, 1262, 489, 1250, -2537, -2537, -2537, 489, - -2537, 2, 1332, 1485, 1495, -2537, -2537, 1250, -2537, 1356, - 1362, -2537, 1496, 1508, 1515, 1114, 489, 4461, 778, 700, - -2537, -2537, -2537, 489, 140, 940, -2537, 1269, -2537, 1882, - 1274, 264, 1237, 446, -2537, -2537, 489, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, 489, 1518, -2537, - -2537, -2537, -15, -2537, -2537, -2537, -2537, -2537, 4667, -2537, - -2537, 1523, 1530, 489, 1531, 1532, 1535, -18, -18, -77, - 1537, 1538, 1539, 1543, 1273, 1309, 1577, 1578, 1580, 45, - 45, -77, 1582, 1584, -77, 1585, 1589, 5230, 1590, 1591, - -2537, -2537, 1595, 1596, 737, -2537, 1588, 1601, 1608, 1611, - -18, -77, 1602, 1613, -2537, 1614, -2537, -2537, 1250, 1085, - 1365, 1390, 411, 1392, 1484, 409, 434, 1620, 41, 1453, - 1527, 793, 608, 1598, 474, 1401, 1540, 1630, 1429, 30, - 87, -82, 245, 1241, 1882, 1604, -46, 1404, 1437, 1631, - 107, -2537, -2537, 139, 1645, 1650, -2537, -2537, -2537, 1651, - 1447, 91, 1882, 1450, -2537, -2537, -2537, 186, 1653, 1656, - 489, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - 7, -2537, 2246, -2537, 489, -2537, 489, -2537, -2537, -2537, - -2537, 489, 489, 489, 277, 1241, -2537, 1657, 1176, -2537, - -2537, 489, -2537, -2537, 489, 1241, 489, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, 186, 489, -2537, 489, 277, 1659, -2537, 489, 489, - -2537, 186, -2537, -2537, -2537, 589, 1660, 1662, -2537, -2537, - -2537, -2537, -2537, 489, 489, -2537, -2537, 1262, 489, 489, - -2537, -2537, -2537, -2537, 1664, 489, -2537, 489, 1559, -2537, - 489, -2537, 489, 1561, -2537, 1669, -2537, 1045, 1045, 639, - 1045, 1671, -2537, 653, -2537, -2537, 1672, 1673, 667, 1670, - -2537, 1674, 1675, 1677, -2537, 764, 774, 1678, 1679, 1682, - -2537, -2537, 1683, 1684, 1686, -2537, 1045, 1045, 1045, 489, - -2537, -2537, -2537, 489, -2537, 489, 740, 1241, -2537, 489, - -2537, 4751, 1250, -2537, -2537, 1687, -2537, -2537, 1688, -2537, - -2537, -2537, -2537, 1685, 1431, -2537, 489, 1689, 489, 489, - 489, 1031, -2537, 1676, 1690, 489, 489, -10, 1691, 186, - 186, -2537, 1250, 489, 1694, 1696, 1698, 1250, 1241, -2537, - 489, -2537, -2537, -2537, 489, 489, 489, 1250, 1241, -15, - -2537, -2537, -2537, -2537, 1262, 489, 1699, -15, 489, 1649, - 1666, 567, -2537, 1700, -2537, -2537, 516, 3779, 489, -2537, - 489, 1702, 1707, 489, -2537, 1703, 1093, 4578, 1471, 487, - 1472, 138, 1241, 515, -2537, 105, 1553, 171, 603, 1474, - 175, -2537, -2537, 548, 1544, 255, 1592, 876, 1882, 438, - -2537, 1710, 1469, -2537, 590, -2537, -2537, -2537, -2537, 1882, - 1512, -2537, -2537, -2537, -2537, -2537, 489, -2537, 489, -2537, - -2537, 489, 489, -2537, 489, -2537, 489, -2537, -2537, -2537, - -2537, 1525, 489, -2537, 489, 35, -2537, -2537, 1720, 1721, - -2537, 489, -18, -18, -18, -2537, -2537, -2537, -2537, -2537, - -2537, 1722, -18, -18, -18, 537, -2537, -2537, 45, -18, - -18, -18, -2537, -2537, -18, -18, 1726, -18, -18, 1728, - 45, 546, -2537, 1729, 1732, 1733, -2537, 1017, -2537, 1040, - 1067, -2537, 1164, -2537, 1470, 1734, 1764, 1765, 45, 45, - -77, 1767, 1768, -77, 1771, 1770, 1773, -18, -18, -2537, - 1775, -18, -18, -2537, 1776, -2537, -2537, -2537, -2537, -2537, - -2537, 186, -2537, -2537, -2537, 4578, 1071, 186, 489, 1301, - 1320, 711, -2537, -2537, -2537, 830, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, 1777, 186, - 489, -2537, 186, 1778, 489, 1241, 186, 1357, 1546, 1547, - 176, 201, 1550, 204, 1466, 1488, 1788, 1795, 1796, 409, - 1798, 1800, 1803, 1501, 1502, 1204, 1807, 186, 489, 1333, - 1619, -2537, -2537, 186, 1241, -2537, -2537, 1241, 489, 119, - 1808, 186, 489, 1250, 186, -2537, 1809, 1241, 1241, 489, - -2537, -2537, -2537, 186, 186, 1241, -2537, -2537, -2537, -2537, - -2537, -2537, 1241, 489, 186, -2537, -2537, -2537, 489, -2537, - -2537, 1810, 489, 1593, 160, 489, 1594, 489, 243, 489, - -2537, 489, 1597, 1599, 489, 489, 489, 489, 489, 489, - 489, 489, 18, 489, 489, 1600, -2537, 489, 489, 489, - 489, -2537, 1241, 1250, 1811, 1241, 1241, 489, 489, 1250, - -2537, 489, 489, 489, 1241, -2537, 489, 489, -2537, -2537, - -2537, 1815, -2537, -2537, -2537, -2537, -2537, -2537, 1821, 489, - 489, -2537, 489, 489, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, 1822, 1823, 1825, -2537, -2537, 1045, 1828, - 1831, 1826, -2537, 1834, 1839, 1840, 1841, 1843, -2537, 1844, - -2537, -2537, -2537, 1845, 1846, 1848, -2537, 1849, 1851, 1863, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - 489, 489, 489, -2537, 1250, 489, 1250, -2537, -2537, -2537, - 1431, 489, 1250, 489, 489, 489, -2537, 489, 489, 1866, - 489, 1864, 1820, 489, 489, -2537, -2537, 1868, 1241, -2537, - -2537, -2537, 489, -2537, -2537, -2537, -2537, 1250, -2537, 1091, - 489, 1091, -15, 1250, 1241, 489, 489, 1869, -2537, -2537, - -2537, -2537, -2537, 489, -2537, -2537, -2537, -2537, -2537, 1241, - -2537, 1241, 489, 1870, -2537, -2537, 1871, 1872, 1873, 1874, - 1875, 1241, 1250, -2537, 1241, -2537, 1241, 1241, 4578, 1241, - 1250, -2537, 1241, -2537, -2537, 1241, -2537, -2537, 4578, 1241, - -2537, 1241, 1241, 4578, 1241, -2537, 1241, 1241, 489, -2537, - -2537, -2537, 1241, 1241, 1241, -2537, -2537, 1241, 1241, -2537, - -2537, -2537, -2537, 1241, 1241, -2537, -2537, -2537, -2537, -2537, - 489, 489, -2537, -2537, 1877, 489, -2537, -2537, 1881, 1884, - -2537, 489, -2537, -2537, -2537, -18, -2537, -2537, -2537, 1885, - 1887, 1888, -2537, -2537, -77, 1890, 1891, 1893, -18, -2537, - -2537, -2537, -2537, -2537, 45, -2537, -2537, 1892, -18, 1894, - 1895, 1899, 45, 45, -77, 1902, 1904, 1905, 1185, -2537, - 1190, -2537, 1331, 1579, 1906, 1907, 1908, 45, 45, -77, - 1910, 1911, -77, 1921, 1583, 1922, 1935, 1941, 45, 45, - -77, 1944, 1945, -77, 1946, 1639, 1947, 1948, 1949, 45, - 45, -77, 1951, 1956, -77, 1957, 1958, 1959, 1960, 45, - 45, -77, 1962, 1963, 1964, 45, -2537, -2537, -2537, -2537, - -2537, 1966, -2537, -2537, 1967, 45, 1968, 1970, -2537, -2537, - -18, -2537, -2537, 1971, -2537, 1250, -2537, 1241, 489, -2537, - 489, 1241, 489, 1972, 1365, -2537, -2537, -2537, -2537, -2537, - -2537, 1973, -2537, 1241, 186, 1974, 1241, 1250, -2537, 1975, - 1365, 489, 489, 489, 489, 489, 489, 489, 489, 489, - 1978, 1984, -2537, -2537, -2537, 1987, -2537, -2537, -2537, 1985, - 1990, -2537, -2537, -2537, -2537, 489, 1241, 489, 1993, 1365, - 186, 1250, 1250, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, 489, 1262, -2537, -2537, 1250, 1250, - 489, -2537, -2537, 1250, 1250, -2537, -2537, -2537, -2537, 489, - 489, 489, 489, 489, 489, 489, 489, 489, 489, 2280, - -2537, 489, 489, 489, 489, 489, 489, 489, 489, 489, - 489, 489, 2683, 1996, 489, -2537, 489, 489, 489, 2000, - 2001, -2537, -2537, 1250, -15, 2002, 1250, 1250, -2537, -2537, - 1262, 489, -2537, 2007, 1250, -2537, -2537, -2537, 2008, -2537, - -2537, -2537, -2537, 1045, 1045, 1045, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, 1365, 489, -2537, -2537, 489, -2537, 489, 1250, - 489, -2537, 1262, 489, -2537, 489, -2537, 1801, 2009, 2010, - -2537, 2015, 489, 489, 2016, 1250, 1241, -2537, -2537, 489, - -2537, 489, -2537, -15, 516, 489, 2019, -2537, 489, -2537, - -2537, -24, -2537, 2021, 2022, 2023, 2025, 2027, 1250, -2537, - 516, 516, 516, 1250, -2537, 516, -15, 516, 516, 1250, - -2537, 516, 516, 516, 1250, -2537, 516, 516, 1250, 1241, - 516, 1250, 516, 516, 1250, 516, 1250, -2537, -2537, 2017, - -24, 2028, -2537, 489, -2537, -2537, -2537, -2537, 2030, -2537, - -2537, -2537, -2537, -18, 45, -2537, -2537, -2537, -2537, -2537, - -2537, 2031, -2537, -2537, 45, 2032, 2033, 2035, 45, 45, - -77, 2037, 2038, 2039, 2040, 2041, 2043, 45, 45, -77, - 2045, 2046, 2047, 2048, 2050, 2051, 45, 45, -77, 2053, - 2055, 2057, 45, -18, -18, -18, -18, -18, 2056, -18, - -18, 2059, 45, 45, -18, -18, -18, -18, -18, 2060, - -18, -18, 2061, 45, 45, -2537, -2537, -2537, -2537, -2537, - 2062, -2537, -2537, 2063, 45, -2537, -2537, -2537, -2537, -2537, - 2064, -2537, -2537, 45, -2537, 45, 2065, -2537, 2067, 2068, - -2537, 4751, -2537, 516, 2069, 1241, 516, 489, 1241, 2071, - -2537, 516, -2537, -2537, 516, -2537, 1241, 2073, 489, 489, - 489, 489, 489, 489, 489, 489, 489, 489, 489, -2537, - -2537, -2537, 1241, 516, 489, 1241, 2074, -2537, 1262, 1262, - 1241, 1262, 1262, 1241, 1241, 1262, 1262, 489, 489, 489, - 489, 489, 489, 1365, 489, 489, 489, 1610, 1617, 1624, - 1730, 1731, 1736, 1737, 2280, -2537, 1738, -2537, -2537, 1365, - 489, 489, 489, 489, 1365, 489, 489, 489, 489, 489, - 489, 1250, 489, 1647, 1365, 489, 489, -2537, -2537, -15, - 186, 2076, 2079, -2537, -2537, -2537, -2537, -2537, -15, 2086, - -2537, -2537, -2537, -2537, 489, -2537, -2537, 1262, 489, -2537, - -2537, -2537, 1038, 2087, 2089, -2537, 489, 2091, 1091, -2537, - 516, -2537, -2537, -2537, -2537, 2092, -2537, -2537, 2094, 2095, - 2097, 2098, 1241, 2099, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -15, 516, -2537, -15, -2537, -2537, -15, -2537, -15, 2102, - 2105, -2537, 489, -2537, -2537, -18, 45, -2537, -18, -18, - -18, -18, -18, 2106, -18, -18, 45, -18, -18, -18, - -18, -18, 2107, -18, -18, 45, -18, -18, -18, -18, - -18, 2108, -18, -18, 45, -18, -2537, -2537, -2537, -2537, - -2537, 45, -2537, -2537, 2110, -18, -18, -2537, -2537, -2537, - -2537, -2537, 45, -2537, -2537, 2113, -18, -2537, 45, 2114, - -2537, 45, -2537, -2537, 45, -2537, -2537, 1250, -2537, 1241, - 516, -2537, 2116, 1250, 489, -2537, -2537, 1250, 489, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, 489, 489, - 516, -2537, 2119, 1250, 489, 1262, -2537, 516, 489, 1262, - 516, 516, 1241, -2537, 489, 2120, 2120, 489, 489, 2120, - 1365, 2120, -2537, 1241, 409, 2122, 2121, 2123, 2125, 2126, - 2128, -2537, 186, 1365, 2120, 2120, 489, 489, 1365, 489, - 489, 489, 489, 489, -2537, 1262, 489, 2129, -2537, -2537, - 489, 2120, 186, 31, -2537, 2130, 186, 2134, -2537, -2537, - -2537, 2136, 489, -2537, 2137, 2135, 1883, 489, -2537, -2537, - 75, 1241, -2537, 2139, 1250, 1241, -2537, -2537, -2537, -2537, - -2537, -2537, 75, 489, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, 45, -2537, -2537, -18, -2537, -2537, -2537, -2537, -2537, - 45, -2537, -2537, -18, -2537, -2537, -2537, -2537, -2537, 45, - -2537, -2537, -18, -2537, -18, 45, -2537, -2537, -18, 45, - -2537, -2537, 45, -2537, -2537, 489, 516, -2537, 1241, 1241, - 489, 1241, 489, -2537, -2537, -2537, 1241, 1241, 489, -2537, - -2537, 1241, -2537, -2537, -2537, 516, 2141, -2537, -2537, -2537, - 1365, 489, -2537, 2142, -2537, -2537, 1250, 2143, -2537, 2146, - -2537, -2537, -2537, -2537, -2537, 2147, -2537, -2537, 1365, 489, - 2148, -2537, -2537, 489, 1241, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, 31, 1753, 1882, -2537, -2537, 2149, 2150, 2152, - -2537, 2085, 2154, 116, -2537, -2537, -2537, 2155, 1241, 94, - -2537, -2537, 2158, -18, -2537, -18, -2537, -18, -2537, -2537, - -18, -2537, -18, -2537, 4751, -2537, 516, 516, 489, 516, - 2159, 516, 516, 489, 516, 489, -2537, -2537, -2537, -2537, - 2160, -2537, 489, -2537, -2537, 2162, -2537, 489, -2537, -2537, - -2537, 2165, 489, -2537, -2537, -2537, 1250, -2537, -2537, -2537, - 1753, -2537, 1816, 1751, 1882, -2537, -2537, 2166, 2167, 2169, - -2537, -2537, -2537, -2537, 945, 945, -2537, 1250, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, 516, -2537, -2537, - 2171, -2537, 4578, -2537, -2537, 2172, -2537, 1365, -2537, -2537, - 1365, 489, -2537, -2537, 489, -2537, 1365, 489, -2537, 1241, - -2537, 1816, -2537, 186, -2537, 2173, 2174, -2537, 489, 489, - 489, 489, 94, 2176, 4578, 1250, -2537, 4578, -2537, -2537, - 489, 2178, -2537, 489, 516, -2537, -2537, -2537, 2179, 2191, - 489, 2194, 489, -2537, -2537, 1250, -2537, -2537, 1250, -2537, - -2537, 2196, -2537, -2537, 2198, 2202, -2537, -2537, 2215, -2537, - 2220, -2537, -2537, 1365, -2537, 1365, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537 + 5059, 91, 410, 31, -2549, -2549, 1060, -117, 545, 639, + 1106, 464, 2655, 135, 186, 1348, 59, 5287, 413, 398, + -2549, 186, 780, 163, 1055, 32, 110, 176, -25, 677, + 439, 502, 3643, 136, 14, 197, 388, -25, -2549, -17, + 23, 813, -2549, 61, 565, 631, -2549, 468, -2549, 50, + 3850, 295, 69, 605, 111, 1098, 309, 623, 604, 73, + 635, 15, 1132, -2549, -2549, -2549, 1165, 548, -2549, 53, + 39, 186, 35, 638, 523, -2549, 640, 548, -2549, -2549, + 125, 548, -2549, -2549, -2549, -2549, 548, -2549, -2549, -2549, + -2549, -2549, -2549, 74, 595, 643, 649, 120, -2549, 548, + 1394, 548, 548, 656, 548, -2549, -2549, -2549, 479, -2549, + -2549, -2549, -2549, 4642, -2549, -2549, -2549, -2549, -2549, -2549, + 548, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, 1517, -2549, 548, -2549, 708, -2549, -2549, + 186, 186, 186, 186, 186, 186, -2549, -2549, 186, 186, + 186, 186, -2549, 612, -2549, 665, 1585, 666, 47, 504, + 609, -15, 4056, 499, 4693, 4204, 771, 4642, 3112, -2549, + 67, -92, 808, 746, 974, 538, 824, -25, 752, -2549, + 788, -2549, 644, 596, -13, -2549, 87, -2549, 521, -2549, + 484, 791, 42, -2549, -2549, 4762, -2549, -2549, -2549, 831, + 898, -2549, -2549, -2549, -2549, 921, -2549, -2549, -2549, -2549, + 948, -2549, -2549, 4762, 4293, -2549, -2549, 90, -2549, 939, + 942, 494, -2549, 548, -2549, 945, 40, 958, 292, 866, + 961, 82, -2549, -2549, -2549, 964, 971, 186, 186, 548, + 548, -2549, -2549, 978, -2549, -2549, -2549, -2549, -2549, 2950, + -2549, 981, 3, 548, 4762, 548, -2549, 993, -2549, -2549, + -2549, -2549, -2549, 548, 1408, 186, 1019, 548, 1517, 548, + -2549, 996, -2549, 4846, -2549, -2549, 973, 1001, 1006, 548, + -2549, 1013, -2549, -2549, -4, 1029, 4762, 1020, -2549, 1410, + 548, 881, -2549, 353, 920, 892, 128, 1040, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, 1063, -2549, 21, 89, 117, + 158, 75, -2549, 548, 548, 139, -2549, 548, 796, 1070, + -2549, 548, 548, -2549, 1078, 24, 27, 1088, 1517, -2549, + -2549, -2549, 1278, 548, -2549, -2549, -2549, -2549, -2549, 548, + -2549, 1102, 1118, -2549, 548, 935, -2549, -2549, -2549, -2549, + -2549, -2549, 548, -2549, -2549, 548, -2549, -2549, 694, 694, + 1122, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, 932, 548, 548, 1129, 1137, 1156, -2549, -2549, + 548, 548, 548, -2549, 548, -2549, 1174, -2549, -2549, -2549, + -2549, 883, -2549, 1177, -2549, 4762, 1179, -2549, 548, -2549, + -2549, -2549, 548, 1178, 1181, 1181, 4762, 548, 548, 548, + 548, 548, 548, -2549, 548, 4642, 1394, 548, 548, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, 1394, 548, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, 1196, + -2549, 936, 55, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -58, -2549, -2549, -2549, 1043, -2549, 844, 94, + 94, -2549, -2549, -2549, 1212, -2549, 1229, -2549, -2549, -54, + -2549, 1065, -2549, -2549, -2549, 1068, -2549, -2549, 1517, -2549, + 548, 548, -2549, 4762, 4762, 1517, -2549, -2549, 1517, -2549, + -2549, -2549, -2549, 1517, -2549, -2549, 4762, 1517, 548, -2549, + -2549, 4762, -2549, 1244, 541, 1062, 5, -2549, -2549, 1077, + 4762, 13, -2549, -2549, -2549, -2549, -2549, 1270, 1282, 1285, + -2549, 1099, -2549, -2549, -2549, 548, -2549, -2549, 490, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, 484, + -2549, -2549, -2549, -2549, -2549, -2549, 1103, 1109, -2549, -2549, + 1236, 1249, 1253, -2549, -2549, 1086, -2549, 548, 1317, 1166, + 4846, -2549, 1517, -2549, 1319, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, 4762, + 4762, 4762, 4762, -2549, -2549, 1323, 186, -2549, -2549, 1324, + 1358, 1207, 548, -2549, 71, 1312, -2549, 1403, -2549, 104, + 1328, 5288, 682, 1418, -2549, 1422, -2549, 1424, -2549, 328, + -2549, 1426, 1431, -2549, 1425, -2549, -2549, -2549, 548, -2549, + 4846, 4611, 1433, 516, 1432, 648, 1340, -2549, -2549, -2549, + 1434, 26, 1438, 1442, 63, 548, 467, 586, 575, 4762, + 186, 1490, 577, 8, 177, 170, 28, -2549, 1435, 1441, + 1439, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + 548, -2549, -2549, -2549, 548, 548, 548, 548, -2549, -2549, + 548, 1517, 548, -2549, 548, 1394, 548, 1445, 1517, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, 1458, 25, 380, + -2549, -2549, -2549, 1459, -2549, -2549, -2549, -2549, 1367, -2549, + 1460, 1462, 1382, 1466, -2549, 1467, -2549, 1470, 1390, 1474, + 321, 29, 428, 730, 509, 1477, 610, -2549, -2549, 1479, + 1481, 1478, -2549, -2549, 1489, -2549, -2549, -2549, -2549, 1495, + -2549, -2549, 1513, -2549, -2549, 1515, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, 548, 548, -2549, 548, 953, 548, 548, + -2549, 3254, -2549, 1095, 1519, -2549, 1134, 1523, -2549, -2549, + 350, 548, 548, -2549, 1528, -2549, -2549, 1526, 1147, 548, + 1530, 174, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, 1531, 1539, 548, 548, + 548, 1540, 186, 1541, 1544, 1517, 4762, -2549, -2549, -2549, + -2549, -2549, 1517, -2549, -2549, 548, 548, 548, 4762, 548, + 1394, 548, -2549, 548, -2549, -2549, -2549, -2549, -2549, 1546, + 1549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, 499, -2549, 548, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, 4762, 548, 1517, 1517, 350, + 350, 350, 1517, 1394, 548, 1517, -2549, -2549, -2549, 548, + -2549, 487, 1391, 1550, 1555, -2549, -2549, 1517, -2549, 1405, + 1407, -2549, 1561, 1563, 1565, 1141, 548, 2776, 493, 426, + -2549, -2549, -2549, 548, 243, 1259, -2549, 1318, -2549, 1490, + 1321, 603, 1295, 129, -2549, -2549, 548, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, 548, 1578, -2549, + -2549, -2549, 350, -2549, -2549, -2549, -2549, -2549, 4722, -2549, + -2549, 1588, 1591, 548, 1595, 1598, 1599, -6, -6, -60, + 1601, 1602, 1604, 1613, 1349, 1352, 1619, 1620, 1621, 492, + 492, -60, 1624, 1629, -60, 1631, 1635, 5325, 1636, 1641, + -2549, -2549, 1643, 1646, 472, -2549, 1650, 1651, 1658, 1666, + -6, -60, 1670, 1671, -2549, 1672, -2549, -2549, 1517, 1005, + 1657, 1437, -29, 1440, 1557, 915, -18, 1674, 207, 1543, + 1577, 1204, 994, 1647, 33, 1448, 1584, 1678, 1482, 489, + 103, -56, -26, 4762, 1490, 1648, 451, 1447, 1483, 1691, + 77, -2549, -2549, 511, 1693, 1694, -2549, -2549, -2549, 1695, + 1491, 127, 1490, 1494, -2549, -2549, -2549, 186, 1697, 1700, + 548, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + 20, -2549, 514, -2549, 548, -2549, 548, -2549, -2549, -2549, + -2549, 548, 548, 548, 648, 4762, -2549, 1701, 1203, -2549, + -2549, 548, -2549, -2549, 548, 4762, 548, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, 186, 548, -2549, 548, 648, 1703, -2549, 548, 548, + -2549, 186, -2549, -2549, -2549, 154, 1704, 1705, -2549, -2549, + -2549, -2549, -2549, 548, 548, -2549, -2549, 1394, 548, 548, + -2549, -2549, -2549, -2549, 1707, 548, -2549, 548, 1603, -2549, + 548, -2549, 548, 1605, -2549, 1708, -2549, 908, 908, 619, + 908, 1710, -2549, 637, -2549, -2549, 1715, 1719, 759, 1721, + -2549, 1724, 1729, 1722, -2549, 812, 816, 1730, 1733, 1735, + -2549, -2549, 1736, 1737, 1739, -2549, 908, 908, 908, 548, + -2549, -2549, -2549, 548, -2549, 548, 1117, 4762, -2549, 548, + -2549, 4846, 1517, -2549, -2549, 1740, -2549, -2549, 1741, -2549, + -2549, -2549, -2549, 1728, 1019, -2549, 548, 1732, 548, 548, + 548, 1262, -2549, 1743, 1746, 548, 548, -5, 1742, 186, + 186, -2549, 1517, 548, 1747, 1748, 1749, 1517, 4762, -2549, + 548, -2549, -2549, -2549, 548, 548, 548, 1517, 4762, 350, + -2549, -2549, -2549, -2549, 1394, 548, 1750, 350, 548, 1717, + 1718, 659, -2549, 1752, -2549, -2549, 1061, 1493, 548, -2549, + 548, 1755, 1760, 548, -2549, 1756, 1048, 4642, 1524, 349, + 1527, 41, 4762, 436, -2549, 283, 1628, 70, 621, 1529, + 114, -2549, -2549, 787, 1607, 587, 1654, 323, 1490, 874, + -2549, 1764, 1522, -2549, 830, -2549, -2549, -2549, -2549, 1490, + 1564, -2549, -2549, -2549, -2549, -2549, 548, -2549, 548, -2549, + -2549, 548, 548, -2549, 548, -2549, 548, -2549, -2549, -2549, + -2549, 1581, 548, -2549, 548, 16, -2549, -2549, 1768, 1773, + -2549, 548, -6, -6, -6, -2549, -2549, -2549, -2549, -2549, + -2549, 1775, -6, -6, -6, 447, -2549, -2549, 492, -6, + -6, -6, -2549, -2549, -6, -6, 1776, -6, -6, 1777, + 492, 569, -2549, 1778, 1779, 1782, -2549, 722, -2549, 1264, + 1395, -2549, 846, -2549, 1520, 1786, 1789, 1790, 492, 492, + -60, 1792, 1793, -60, 1794, 1796, 1797, -6, -6, -2549, + 1798, -6, -6, -2549, 1826, -2549, -2549, -2549, -2549, -2549, + -2549, 186, -2549, -2549, -2549, 4642, 1303, 186, 548, 1415, + 1569, 419, -2549, -2549, -2549, 727, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, 1827, 186, + 548, -2549, 186, 1828, 548, 4762, 186, 1583, 1560, 1596, + 167, 201, 1600, 344, 1533, 1536, 1832, 1840, 1841, 915, + 1842, 1844, 1845, 1545, 1548, 1220, 1846, 186, 548, 1430, + 1627, -2549, -2549, 186, 4762, -2549, -2549, 4762, 548, 62, + 1847, 186, 548, 1517, 186, -2549, 1848, 4762, 4762, 548, + -2549, -2549, -2549, 186, 186, 4762, -2549, -2549, -2549, -2549, + -2549, -2549, 4762, 548, 186, -2549, -2549, -2549, 548, -2549, + -2549, 1851, 548, 1633, 189, 548, 1644, 548, 192, 548, + -2549, 548, 1645, 1649, 548, 548, 548, 548, 548, 548, + 548, 548, 18, 548, 548, 1652, -2549, 548, 548, 548, + 548, -2549, 4762, 1517, 1862, 4762, 4762, 548, 548, 1517, + -2549, 548, 548, 548, 4762, -2549, 548, 548, -2549, -2549, + -2549, 1865, -2549, -2549, -2549, -2549, -2549, -2549, 1867, 548, + 548, -2549, 548, 548, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, 1869, 1870, 1868, -2549, -2549, 908, 1872, + 1873, 1875, -2549, 1876, 1879, 1880, 1881, 1883, -2549, 1884, + -2549, -2549, -2549, 1885, 1886, 1888, -2549, 1889, 1890, 1892, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + 548, 548, 548, -2549, -2549, 548, 1517, -2549, -2549, -2549, + 1019, 548, 1517, 548, 548, 548, -2549, 548, 548, 1893, + 548, 1895, 1887, 548, 548, -2549, -2549, 1896, 4762, -2549, + -2549, -2549, 548, -2549, -2549, -2549, -2549, 1517, -2549, 754, + 548, 754, 350, 1517, 4762, 548, 548, 1899, -2549, -2549, + -2549, -2549, -2549, 548, -2549, -2549, -2549, -2549, -2549, 4762, + -2549, 4762, 548, 1900, -2549, -2549, 1901, 1903, 1904, 1905, + 1906, 4762, 1517, -2549, 4762, -2549, 4762, 4762, 4642, 4762, + 1517, -2549, 4762, -2549, -2549, 4762, -2549, -2549, 4642, 4762, + -2549, 4762, 4762, 4642, 4762, -2549, 4762, 4762, 548, -2549, + -2549, -2549, 4762, 4762, 4762, -2549, -2549, 4762, 4762, -2549, + -2549, -2549, -2549, 4762, 4762, -2549, -2549, -2549, -2549, -2549, + 548, 548, -2549, -2549, 1908, 548, -2549, -2549, 1909, 1911, + -2549, 548, -2549, -2549, -2549, -6, -2549, -2549, -2549, 1921, + 1922, 1935, -2549, -2549, -60, 1938, 1943, 1944, -6, -2549, + -2549, -2549, -2549, -2549, 492, -2549, -2549, 1946, -6, 1947, + 1948, 1949, 492, 492, -60, 1951, 1955, 1956, 880, -2549, + 957, -2549, 1298, 1681, 1959, 1960, 1961, 492, 492, -60, + 1963, 1964, -60, 1965, 1690, 1966, 1967, 1968, 492, 492, + -60, 1970, 1972, -60, 1973, 1699, 1974, 1975, 1976, 492, + 492, -60, 1978, 1979, -60, 1980, 1981, 1982, 1983, 492, + 492, -60, 1985, 1987, 1988, 492, -2549, -2549, -2549, -2549, + -2549, 1991, -2549, -2549, 1993, 492, 1996, 1999, -2549, -2549, + -6, -2549, -2549, 2000, -2549, 1517, -2549, 4762, 548, -2549, + 548, 4762, 548, 2002, 1657, -2549, -2549, -2549, -2549, -2549, + -2549, 2005, -2549, 4762, 186, 2006, 4762, 1517, -2549, 2007, + 1657, 548, 548, 548, 548, 548, 548, 548, 548, 548, + 2009, 2010, -2549, -2549, -2549, 2013, -2549, -2549, -2549, 2015, + 2016, -2549, -2549, -2549, -2549, 548, 4762, 548, 2017, 1657, + 186, 1517, 1517, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, 548, 1394, -2549, -2549, 1517, 1517, + 548, -2549, -2549, 1517, 1517, -2549, -2549, -2549, -2549, 548, + 548, 548, 548, 548, 548, 548, 548, 548, 548, 2242, + -2549, 548, 548, 548, 548, 548, 548, 548, 548, 548, + 548, 548, 1053, 2020, 548, -2549, 548, 548, 548, 2022, + 2023, -2549, -2549, 1517, 350, 2024, 1517, 1517, -2549, -2549, + 1394, 548, -2549, 2026, 1517, -2549, -2549, -2549, 2028, -2549, + -2549, -2549, -2549, 908, 908, 908, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, 1657, 548, -2549, 548, -2549, 548, 1517, 548, + -2549, 1394, 548, -2549, 548, -2549, 1877, 2030, 2033, -2549, + 2035, 548, 548, 2036, 1517, 4762, -2549, -2549, 548, -2549, + 548, -2549, 350, 1061, 548, 2038, -2549, 548, -2549, -2549, + 484, -2549, 2039, 2040, 2041, 2042, 2043, 1517, -2549, 1061, + 1061, 1061, 1517, -2549, 1061, 350, 1061, 1061, 1517, -2549, + 1061, 1061, 1061, 1517, -2549, 1061, 1061, 1517, 4762, 1061, + 1517, 1061, 1061, 1517, 1061, 1517, -2549, -2549, 2037, 484, + 2044, -2549, 548, -2549, -2549, -2549, -2549, 2046, -2549, -2549, + -2549, -2549, -6, 492, -2549, -2549, -2549, -2549, -2549, -2549, + 2048, -2549, -2549, 492, 2050, 2051, 2052, 492, 492, -60, + 2049, 2055, 2056, 2057, 2058, 2060, 492, 492, -60, 2062, + 2063, 2065, 2066, 2067, 2069, 492, 492, -60, 2064, 2071, + 2072, 492, -6, -6, -6, -6, -6, 2074, -6, -6, + 2077, 492, 492, -6, -6, -6, -6, -6, 2080, -6, + -6, 2082, 492, 492, -2549, -2549, -2549, -2549, -2549, 2084, + -2549, -2549, 2085, 492, -2549, -2549, -2549, -2549, -2549, 2086, + -2549, -2549, 492, -2549, 492, 2087, -2549, 2088, 2090, -2549, + 4846, -2549, 1061, 2091, 4762, 1061, 548, 4762, 2093, -2549, + 1061, -2549, -2549, 1061, -2549, 4762, 2094, 548, 548, 548, + 548, 548, 548, 548, 548, 548, 548, 548, -2549, -2549, + -2549, 4762, 1061, 548, 4762, 2095, -2549, 1394, 1394, 4762, + 1394, 1394, 4762, 4762, 1394, 1394, 548, 548, 548, 548, + 548, 548, 1657, 548, 548, 548, 1554, 1562, 1597, 1626, + 1653, 1709, 1725, 2242, -2549, 1751, -2549, -2549, 1657, 548, + 548, 548, 548, 1657, 548, 548, 548, 548, 548, 548, + 1517, 548, 1594, 1657, 548, 548, -2549, -2549, 350, 186, + 2096, 2097, -2549, -2549, -2549, -2549, -2549, 350, 2099, -2549, + -2549, -2549, -2549, 548, -2549, -2549, 1394, 548, -2549, -2549, + -2549, 1301, 2102, 2103, -2549, 548, 2100, 754, -2549, 1061, + -2549, -2549, -2549, -2549, 2104, -2549, -2549, 2106, 2108, 2107, + 2109, 4762, 2110, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, 350, + 1061, -2549, 350, -2549, -2549, 350, -2549, 350, 2112, 2114, + -2549, 548, -2549, -2549, -6, 492, -2549, -6, -6, -6, + -6, -6, 2115, -6, -6, 492, -6, -6, -6, -6, + -6, 2116, -6, -6, 492, -6, -6, -6, -6, -6, + 2118, -6, -6, 492, -6, -2549, -2549, -2549, -2549, -2549, + 492, -2549, -2549, 2120, -6, -6, -2549, -2549, -2549, -2549, + -2549, 492, -2549, -2549, 2121, -6, -2549, 492, 2122, -2549, + 492, -2549, -2549, 492, -2549, -2549, 1517, -2549, 4762, 1061, + -2549, 2123, 1517, 548, -2549, -2549, 1517, 548, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, 548, 548, 1061, + -2549, 2124, 1517, 548, 1394, -2549, 1061, 548, 1394, 1061, + 1061, 4762, -2549, 548, 2125, 2125, 548, 548, 2125, 1657, + 2125, -2549, 4762, 915, 2126, 2130, 2131, 2133, 2134, 2137, + -2549, 186, 1657, 2125, 2125, 548, 548, 1657, 548, 548, + 548, 548, 548, -2549, 1394, 548, 2138, -2549, -2549, 548, + 2125, 186, 30, -2549, 2139, 186, 2141, -2549, -2549, -2549, + 2142, 548, -2549, 2143, 2145, 1969, 548, -2549, -2549, 36, + 4762, -2549, 2146, 1517, 4762, -2549, -2549, -2549, -2549, -2549, + -2549, 36, 548, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + 492, -2549, -2549, -6, -2549, -2549, -2549, -2549, -2549, 492, + -2549, -2549, -6, -2549, -2549, -2549, -2549, -2549, 492, -2549, + -2549, -6, -2549, -6, 492, -2549, -2549, -6, 492, -2549, + -2549, 492, -2549, -2549, 548, 1061, -2549, 4762, 4762, 548, + 4762, 548, -2549, -2549, -2549, 4762, 4762, 548, -2549, -2549, + 4762, -2549, -2549, -2549, 1061, 2149, -2549, -2549, -2549, 1657, + 548, -2549, 2150, -2549, -2549, 1517, 2151, -2549, 2153, -2549, + -2549, -2549, -2549, -2549, 2154, -2549, -2549, 1657, 548, 2155, + -2549, -2549, 548, 4762, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, 30, 1859, 1490, -2549, -2549, 2156, 2157, 2158, -2549, + 2140, 2160, 57, -2549, -2549, -2549, 2161, 4762, 37, -2549, + -2549, 2162, -6, -2549, -6, -2549, -6, -2549, -2549, -6, + -2549, -6, -2549, 4846, -2549, 1061, 1061, 548, 1061, 2163, + 1061, 1061, 548, 1061, 548, -2549, -2549, -2549, -2549, 2164, + -2549, 548, -2549, -2549, 2165, -2549, 548, -2549, -2549, -2549, + 2167, 548, -2549, -2549, -2549, 1517, -2549, -2549, -2549, 1859, + -2549, 1878, 1799, 1490, -2549, -2549, 2169, 2170, 2168, -2549, + -2549, -2549, -2549, 1182, 1182, -2549, 1517, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, 1061, -2549, -2549, 2172, + -2549, 4642, -2549, -2549, 2173, -2549, 1657, -2549, -2549, 1657, + 548, -2549, -2549, 548, -2549, 1657, 548, -2549, 4762, -2549, + 1878, -2549, 186, -2549, 2174, 2175, -2549, 548, 548, 548, + 548, 37, 2176, 4642, 1517, -2549, 4642, -2549, -2549, 548, + 2178, -2549, 548, 1061, -2549, -2549, -2549, 2190, 2191, 548, + 2192, 548, -2549, -2549, 1517, -2549, -2549, 1517, -2549, -2549, + 2179, -2549, -2549, 2194, 2196, -2549, -2549, 2197, -2549, 2198, + -2549, -2549, 1657, -2549, 1657, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { - -2537, -2537, -3, -2537, 632, -2537, -1689, -980, 1724, -2537, - 744, -422, 2117, -49, 43, -2537, -1634, 1634, 1293, -852, - 866, -848, 1025, 1497, -2537, -1031, -2537, -685, -1127, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -492, -474, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -369, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -1436, -2537, -2537, -2537, -2537, -2537, -641, -2537, -2537, - -2537, -2537, -2537, -2537, 21, -2537, -2537, -2537, -2537, -80, - -657, -1713, -432, -2537, -2537, -2537, -2537, -497, -467, -2537, - -2537, -2536, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, 1498, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, -2537, - -2537, -2537, -2537, -2537, -2537, -2537, -2537 + -2549, -2549, -3, -2549, 632, -2549, -1584, -979, 1783, -2549, + 843, -422, 1849, -49, 43, -2549, -1636, 1820, 1265, -851, + 263, -859, 1971, 1279, -2549, -1013, -2549, -747, -1128, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -482, -474, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -332, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -1437, -2549, -2549, -2549, -2549, -2549, -641, -2549, -2549, + -2549, -2549, -2549, -2549, 437, -2549, -2549, -2549, -2549, -55, + -657, -1598, -382, -2549, -2549, -2549, -2549, -450, -445, -2549, + -2549, -2548, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, 1496, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, -2549, + -2549, -2549, -2549, -2549, -2549, -2549, -2549 }; /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If @@ -2942,1124 +2942,1144 @@ static const yytype_int16 yypgoto[] = #define YYTABLE_NINF -1230 static const yytype_int16 yytable[] = { - 67, 348, 673, 1875, 1091, 2019, 853, 2021, 104, 1104, - 1395, 1562, 1490, 1567, 832, 1065, 1068, 1231, 1232, 1233, - 773, 64, 65, 1942, 835, 955, 888, 882, 776, 287, - 631, -1080, 109, 1095, 956, 957, 1625, 311, 406, 1597, - 1598, 1599, 758, 368, 305, 614, 342, 64, 65, 353, - 64, 65, 359, 64, 65, 1726, 365, 1453, 304, 372, - 64, 65, 1342, 375, 377, 64, 65, 386, 1422, 1060, - 393, 397, 64, 65, 400, 289, 64, 65, 404, 579, - 1315, 958, 1189, 405, 1466, 64, 65, 1329, 619, 1054, - 64, 65, 610, 106, 64, 65, 418, 422, 427, 428, - 432, 434, 539, 1105, 972, 64, 65, 2614, 534, 1106, - 401, 708, 1472, 1346, 106, 255, 1349, 438, 1070, 64, - 65, 106, 1071, 1455, 64, 65, 2688, 1480, 1043, 588, - 1097, 356, 1683, 1380, 389, 1239, 2722, 76, 1325, 625, - 106, 291, 99, 64, 65, 560, 1894, 858, 842, 64, - 65, 839, 447, 889, 54, 749, 437, 626, 1155, 1678, - 1055, 100, 106, 64, 65, 1326, 1474, 1895, 157, 1044, - 1896, 390, 589, 973, 106, 479, 256, 109, 1467, 1459, - 500, 1897, 173, 752, 540, 2745, 1460, 1330, 883, 1067, - 106, 117, 1688, 1072, 674, 564, 1693, 1863, 257, 535, - 620, 675, 676, 1343, 1898, 843, 611, 1423, 111, 959, - 960, 859, 605, 101, 1073, 245, 541, 759, 548, 1456, - 709, 1899, 1865, 1481, 755, 1868, 501, 1156, 509, 111, - 514, 518, 627, 472, 840, 1468, 111, 677, 545, 473, - 612, 978, 1056, 382, 698, 1190, 64, 65, 1240, 258, - 64, 65, 1303, 577, 1454, 111, 638, 639, 580, 407, - 378, 1626, 309, 1061, 306, 878, 357, 64, 65, 1727, - 680, 1684, 682, 1120, 621, 1074, 590, 111, 474, 1424, - 684, 687, 961, 690, 694, 615, 696, 307, 979, 111, - 114, 369, 962, 963, 632, 102, 706, 964, 115, 116, - 1045, 774, 2681, 475, 1107, 111, 716, 718, 565, 777, - 1491, 114, 1096, 890, -1080, 1046, 1047, 109, 114, 115, - 116, 1943, 1425, 965, 1098, 394, 115, 116, 622, 692, - 761, 762, 764, 884, 766, 66, 117, 114, 769, 770, - 1043, 341, 678, 1685, 1062, 115, 116, 1297, 476, 782, - 784, 402, 623, 352, 1473, 2615, 785, 1464, 383, 114, - 310, 788, 790, 1475, 364, 561, 1461, 115, 116, 791, - 763, 114, 792, 1075, 2689, 1484, 1679, 1644, 1457, 115, - 116, 1044, 1482, 119, 1921, 1648, 1686, 114, 562, 103, - 802, 803, 477, 478, 265, 115, 116, 807, 808, 809, - 606, 810, 384, 385, 119, 1099, 1048, 1049, 1219, 1689, - 259, 119, 566, 1694, 1864, 817, 980, 2682, 395, 818, - 1844, 944, 945, 1522, 823, 824, 825, 826, 827, 828, + 67, 348, 1875, 2018, 1091, 2020, 853, 673, 104, 882, + 1562, 1395, 1567, 1095, 832, 1065, 1068, 888, 1231, 1232, + 1233, 64, 65, 1942, 835, 1490, 64, 65, 773, 287, + -1080, 776, 265, 1104, 64, 65, 1726, 311, 1597, 1598, + 1599, 1625, 64, 65, 305, 614, 342, 368, 560, 353, + 64, 65, 359, 64, 65, 745, 365, 378, 579, 372, + 64, 65, 1678, 375, 377, 1125, 1054, 386, 2613, 2687, + 393, 397, 64, 65, 400, 289, 64, 65, 404, 406, + 1060, 1315, 1472, 405, 296, 944, 945, 631, 758, 1894, + 1146, 1688, 1397, 106, 605, 1461, 418, 422, 427, 428, + 432, 434, 1346, 1419, 1329, 1349, 64, 65, 564, 955, + 1895, 319, 520, 1896, 106, 255, 356, 438, 956, 957, + 534, 106, 1380, 2721, 1897, 415, 521, 1105, 746, 401, + 64, 65, 946, 1106, 842, 1693, 1126, 1055, 858, 1455, + 106, 291, 64, 65, 889, 708, 1310, 1898, 522, 1147, + 1325, 416, 447, 486, 1447, 749, 437, 54, 839, 1539, + 320, 487, 106, 1480, 1899, 958, 76, 523, 157, 321, + 883, 1540, 2744, 389, 106, 479, 256, 1326, 1200, 245, + 500, 263, 297, 752, 524, 1148, 1201, 525, 1863, 739, + 106, 843, 64, 65, 1097, 64, 65, 322, 257, 674, + 266, 301, 859, 173, 1330, 1459, 675, 676, 111, 1398, + 390, 535, 1460, 526, 527, 267, 309, 1462, 1127, 1056, + 1420, 565, 1865, 747, 755, 382, 501, 1311, 509, 111, + 514, 518, 850, 472, 1422, 1456, 111, 580, 545, 473, + 612, 840, 677, 2680, 698, 379, 64, 65, 740, 258, + 1727, 357, 1303, 577, 709, 111, 638, 639, 298, 1481, + 947, 948, 253, 759, 306, 528, 1626, 299, 561, 851, + 680, 1448, 682, 1120, 1061, 529, 268, 111, 474, 1679, + 684, 687, 606, 690, 694, 615, 696, 307, 1128, 111, + 114, 562, 1096, 959, 960, 369, 706, 619, 115, 116, + 407, 1149, 380, 475, 890, 111, 716, 718, 1689, 774, + 1683, 114, 777, -1080, 310, 884, 2614, 2688, 114, 115, + 116, 1943, 66, 1491, 1473, 566, 115, 116, 1107, 692, + 761, 762, 764, 949, 766, 530, 531, 114, 769, 770, + 383, 341, 978, 950, 951, 115, 116, 678, 476, 782, + 784, 632, 1694, 567, 323, 1062, 785, 1464, 2681, 114, + 352, 788, 790, 763, 364, 1868, 961, 115, 116, 791, + 402, 114, 792, 1423, 952, 1484, 962, 963, 1644, 115, + 116, 964, 727, 119, 384, 385, 1648, 114, 1098, 979, + 802, 803, 477, 478, 1457, 115, 116, 807, 808, 809, + 741, 810, 477, 2682, 119, 1864, 532, 965, 1219, 620, + 259, 119, 1900, 1921, 720, 817, 1926, 218, 1482, 818, + 1130, 1844, 55, 1522, 823, 824, 825, 826, 827, 828, 119, 829, 149, 422, 833, 834, 292, 150, 151, 1866, - 567, 1976, 1869, 422, 836, 253, 293, 1860, 379, 1401, - 263, 1235, 119, 149, 1534, 1101, 846, 260, 150, 151, - 149, 477, 2683, 1310, 119, 150, 151, 1926, 946, 1900, - 1889, 1305, 327, 337, 850, 1402, 117, 1036, 831, 149, - 119, 520, 328, 793, 150, 151, 215, 720, 1462, 981, - 319, 745, 64, 65, 1125, 521, 396, 865, 866, 982, - 569, 149, 216, 1037, 55, 380, 150, 151, 1403, 329, - 570, 851, 1045, 149, 1404, 874, 1699, 522, 150, 151, - 1405, 277, 1821, 1700, 270, 1824, 271, 1046, 1047, 149, - 983, 931, 1397, 1130, 150, 151, 523, 571, 1406, 320, - 1655, 1656, 896, 77, 1311, 56, 721, 794, 321, 847, - 303, 1739, 1740, 524, 699, 1419, 525, 301, 1407, 1043, - 1759, 1760, 266, 57, 746, 1126, 739, 879, 1706, 1146, - 727, 1652, 969, 1408, 927, 1695, 322, 267, 1151, 78, - 1157, 486, 526, 527, 330, 415, 326, 64, 65, 487, - 700, 988, 58, 338, 1539, 1447, 947, 948, 1741, 350, - 1044, 355, 916, 1409, 1131, 1707, 1540, 1761, 1675, 943, - 59, 416, 572, 1657, 60, 795, 1200, 1712, 1048, 1049, - 331, 1705, 278, 109, 1201, 740, 61, 848, 1147, 729, - 1436, 361, 1715, 1038, 528, 987, 1681, 1152, 268, 1158, - 701, 272, 1410, 358, 529, 362, 159, 1127, 573, 1398, - 79, 363, 1063, 236, 2487, 1076, 1411, 1437, 261, 747, - 1438, 106, 1708, 1439, 1148, 294, 332, 1412, 367, 949, - 399, 722, 1420, 409, 339, 1162, 107, 1111, 1092, 950, - 951, 1112, 1113, 1114, 1115, 1039, 1132, 1116, 333, 1118, - 1440, 1119, 422, 1121, 1413, 1545, 411, 108, 723, 273, - 1563, 413, 796, 388, 530, 531, 1414, 797, 1415, 1416, - 952, 1040, 1448, 109, 1569, 1696, 574, 1128, 1441, 1709, - 435, 1442, 1182, 334, 1690, 1676, 1742, 1743, 1575, 2575, - 1291, 1045, 80, 323, 1163, 1762, 1763, 64, 65, 335, - -1229, 274, 1364, 237, 1603, 702, 1046, 1047, 1417, 1093, - 275, 1365, 1366, 1682, 1064, 2599, 1133, 1713, 110, 1564, - 1173, 1174, 279, 1175, 1177, 1179, 1180, 575, 280, 448, - 281, 238, 1697, 1570, 460, 532, 111, 741, 1192, 1193, - 1149, 735, 117, 62, 81, 1197, 1198, 1576, 459, 1153, - 2022, 1159, 449, 450, 451, 452, 453, 454, 1367, 1744, - 455, 456, 457, 458, 470, 1204, 1205, 1206, 1764, 1745, - 1746, 482, 1645, 112, 1714, 1428, 1845, 484, 1765, 1766, - 511, 296, 1214, 1215, 1216, 1583, 1218, 422, 1220, 1181, - 1221, 1094, 812, 813, 1443, 1587, 537, 1048, 1049, 239, - 1747, 1691, 1429, 538, 1286, 1430, 2270, 2271, 2272, 1767, - 113, 1224, 547, 1226, 240, 2647, 2648, 556, 114, 2651, - 1292, 2653, 557, 1228, 2179, 1444, 115, 116, 559, 543, - 422, 1236, 117, 2658, 2659, 1431, 1238, 118, 2663, 2664, - 2187, 2649, 2667, 549, 1584, 578, 1164, 2668, 2669, 636, - 637, 1445, 1253, 1255, 1588, 608, 2078, 1225, 550, 2660, - 1296, 1298, 1301, 1432, 584, 1846, 1433, 1287, 1306, 2206, - 586, 1565, 1293, 1312, 241, 609, 2091, 689, 1355, 297, - 109, 613, 64, 65, 1313, 1571, 1368, 1369, 617, 544, - 392, 2128, 1288, 2708, 2131, 1848, 2709, 629, 1294, 1577, - 1321, 2712, 2139, 64, 65, 2142, 634, 2715, 64, 65, - 697, 119, 2718, 2150, 635, 242, 2153, 1300, 1847, 429, - 750, 753, 756, 2160, 640, 243, 120, 121, 122, 123, - 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, - 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 298, 64, 1176, 551, 1370, - 149, 64, 65, 704, 299, 150, 151, 1458, 2577, 1371, - 1372, 1289, 2273, 672, 1373, 64, 65, 592, 683, 1434, - 705, 2739, 1773, 707, 1849, 711, 2760, 2742, 1483, 2763, - 430, 1774, 1775, 713, 64, 65, 1585, 1489, 719, 83, - 1374, 64, 65, 1702, 725, 1784, 1589, 1183, 1184, 2774, - 1435, 1517, 685, 1518, 1785, 1786, 552, 743, 1519, 1520, - 1521, 1290, 744, 2781, 1186, 1187, 2782, 2783, 1527, 64, - 65, 1528, 1795, 1530, 64, 65, 1837, 1850, 1776, 117, - 767, 1796, 1797, 850, 2779, 593, 2780, 1556, 1557, 1532, - 1619, 1533, 768, 93, 771, 1536, 1537, 2481, 553, 779, - 1703, 1787, 2260, 313, 64, 65, 714, 554, 786, 94, - 1543, 1544, 431, 787, 422, 1546, 1547, 64, 1252, 83, - 851, 371, 1549, 686, 1550, 800, 594, 1552, 1798, 1553, - 897, 898, 1606, 121, 122, 123, 124, 125, 126, 127, + 1976, 729, 219, 422, 836, 1424, 293, 1189, 1860, 1684, + 1297, 1235, 119, 149, 1534, 1101, 1291, 260, 150, 151, + 149, 1739, 1740, 56, 119, 150, 151, 64, 65, 1099, + 1675, 1889, 337, 721, 304, 220, 303, 1364, 831, 149, + 119, 57, 221, 621, 150, 151, 1365, 1366, 1425, 1151, + 1702, 1131, 222, 223, 897, 898, 215, 865, 866, 224, + 610, 149, 64, 65, 99, 277, 150, 151, 1741, 1342, + 58, 1821, 216, 149, 1824, 874, 1453, 980, 150, 151, + 1036, 1685, 225, 100, 1845, 350, 64, 65, 59, 149, + 1043, 931, 60, 1367, 150, 151, 1492, 622, 1474, 226, + 109, 1493, 896, 543, 61, 878, 1037, 1703, 1152, 77, + 899, 64, 65, 227, 228, 109, 900, 1681, 569, 1286, + 229, 623, 1494, 1495, 1686, 1496, 1497, 879, 570, 326, + 1157, 1044, 969, 1132, 927, 101, 1498, 361, 64, 65, + 230, 1466, 1869, 1759, 1760, 78, 1292, 1676, 1499, 1500, + 981, 988, 338, 735, 109, 571, 1501, 109, 722, 1502, + 982, 394, 916, 544, 901, 355, 64, 65, 363, 943, + 1190, 1070, 1704, 1846, 611, 1071, 1503, 1092, 231, 902, + 1239, 1705, 1287, 1504, 1505, 723, 409, 1506, 362, 1158, + 1761, 983, 1715, 903, 548, 987, 1742, 1743, 1293, 904, + 367, 64, 65, 1133, 905, 399, 159, 1288, 411, 1043, + 1343, 2486, 1063, 236, 413, 1076, 79, 102, 261, 64, + 65, 1368, 1369, 1652, 1294, 294, 1847, 83, 327, 232, + 572, 1162, 435, 339, 1682, 1467, 1038, 1111, 328, 233, + 1563, 1112, 1113, 1114, 1115, 1507, 1072, 1116, 1093, 1118, + 1044, 1119, 422, 1121, 395, 1545, 429, 906, 1569, 117, + 1153, 62, 1045, 388, 278, 329, 573, 1073, 234, 1744, + 1067, 1043, 448, 1454, 117, 109, 907, 1046, 1047, 1745, + 1746, 908, 1182, 909, 793, 1064, 1289, 1773, 1039, 459, + 1163, 460, 1468, 1240, 1370, 1475, 1774, 1775, 80, 1564, + 1508, 270, 1690, 271, 1371, 1372, 1509, 910, 911, 1373, + 1747, 103, 1044, 117, 1040, 912, 117, 1570, 1762, 1763, + 1173, 1174, 1510, 1175, 1177, 1179, 1180, 430, 1074, 972, + 1094, 1511, 396, 913, 574, 1374, 1290, 484, 1192, 1193, + 330, 1159, 83, 1776, 470, 1197, 1198, 482, 794, 84, + 81, 2021, 449, 450, 451, 452, 453, 454, 1512, 1513, + 455, 456, 457, 458, 511, 1204, 1205, 1206, 1048, 1049, + 1305, 85, 1645, 537, 1695, 86, 331, 1155, 549, 1514, + 1575, 1045, 1214, 1215, 1216, 575, 1218, 422, 1220, 914, + 1221, 1764, 1848, 550, 392, 538, 1046, 1047, 973, 313, + 547, 1765, 1766, 2574, 279, 2269, 2270, 2271, 1699, 431, + 280, 1224, 281, 1226, 556, 1700, 795, 1712, 272, 1691, + 1806, 1807, 332, 1228, 1515, 2178, 1075, 87, 237, 2598, + 422, 1236, 1767, 1583, 117, 557, 1238, 1587, 559, 1576, + 578, 2186, 1164, 1045, 333, 2077, 1156, 812, 813, 636, + 637, 1565, 1253, 1255, 2094, 2095, 238, 1225, 1046, 1047, + 1296, 1298, 1301, 584, 84, 2090, 88, 1808, 1306, 1571, + 2205, 1777, 1778, 1312, 89, 90, 273, 689, 1355, 334, + 2127, 1849, 846, 2130, 1313, 314, 85, 1048, 1049, 586, + 2017, 2138, 1584, 551, 2141, 335, 1588, 315, 64, 65, + 1321, 2096, 2149, 796, 608, 2152, 609, 789, 797, 613, + 1556, 1557, 2159, 727, 1696, 1401, 64, 1176, 274, 625, + 750, 753, 756, 617, 239, 588, 629, 275, 634, 2646, + 2647, 2103, 2104, 2650, 1850, 2652, 635, 626, 719, 240, + 539, 1402, 87, 640, 1779, 2648, 672, 2657, 2658, 1048, + 1049, 552, 2662, 2663, 1780, 1781, 2666, 1713, 683, 1782, + 697, 2667, 2668, 2659, 1706, 704, 2576, 1458, 589, 728, + 705, 1697, 729, 2272, 1403, 847, 1436, 707, 2105, 316, + 1404, 88, 64, 65, 713, 1783, 1405, 699, 1483, 89, + 90, 1577, 317, 553, 711, 1809, 1810, 1489, 107, 241, + 725, 1707, 554, 1437, 1406, 743, 1438, 2707, 730, 1439, + 2708, 1517, 627, 1518, 1714, 2711, 64, 65, 1519, 1520, + 1521, 2714, 540, 700, 1407, 767, 2717, 744, 1527, 2097, + 2098, 1528, 107, 1530, 768, 109, 1440, 1558, 1559, 1408, + 242, 246, 771, 731, 1585, 1655, 1656, 1385, 1589, 1532, + 243, 1533, 779, 848, 541, 1536, 1537, 592, 1708, 1183, + 1184, 64, 65, 2259, 1441, 1560, 786, 1442, 1811, 1409, + 1543, 1544, 590, 701, 422, 1546, 1547, -1229, 1812, 1813, + 110, 1603, 1549, 787, 1550, 2738, 800, 1552, 801, 1553, + 1666, 2741, 1606, 804, 732, 64, 65, 733, 1186, 1187, + 2759, 805, 2099, 2762, 64, 1252, 2106, 2107, 1410, 1814, + 64, 65, 2100, 2101, 110, 1709, 1386, 358, 1657, 1196, + 806, 734, 1411, 2773, 735, 593, 1600, 247, 64, 65, + 1601, 2292, 1602, 1412, 736, 112, 1605, 2780, 811, 248, + 2781, 2782, 814, 2102, 816, 64, 65, 419, 2778, 93, + 2779, 1611, 421, 1614, 2309, 1616, 1617, 1618, 1620, 1667, + 1413, 837, 1623, 1624, 838, 94, 594, 1525, 1526, 112, + 1632, 845, 1414, 249, 1415, 1416, 854, 1638, 702, 2108, + 1443, 1639, 1640, 1641, 1881, 1882, 1428, 1387, 1388, 2109, + 2110, 422, 1646, 856, 117, 1649, 863, 1613, 939, 118, + 2342, 861, 1389, 2439, 595, 1661, 69, 1662, 876, 2351, + 1664, 1444, 70, 1429, 1417, 371, 1430, 881, 2360, 2452, + 2111, 250, 64, 65, 2457, 64, 65, 820, 821, 1784, + 1668, 1669, 886, 118, 251, 892, 1300, 1445, 1785, 1786, + 95, 64, 65, 1390, 1653, 1670, 1431, 893, 374, 894, + 917, 71, 1079, 1717, 895, 1718, 918, 1102, 1719, 1720, + 1673, 1721, 919, 1722, 64, 65, 64, 65, 1837, 1724, + 925, 1725, 2112, 2113, 1432, 921, 72, 1433, 1731, 923, + 850, 1619, 928, 96, 933, 1787, 1671, 938, 940, 121, + 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 851, 97, 2114, + 2480, 73, 941, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 84, 64, 65, 595, 1704, 1600, 1385, 820, 821, - 1601, 2293, 1602, 64, 65, 1666, 1605, 715, 1806, 1807, - 1525, 1526, 789, 85, 95, 801, 899, 86, 804, 314, - 805, 1611, 900, 1614, 2310, 1616, 1617, 1618, 1620, 2095, - 2096, 315, 1623, 1624, 2104, 2105, 1777, 1778, 1881, 1882, - 1632, 64, 65, 806, 1558, 1559, 811, 1638, 814, 816, - 1196, 1639, 1640, 1641, 374, 1808, 419, 96, 838, 1788, - 1789, 422, 1646, 421, 837, 1649, 1386, 1613, 939, 87, - 901, 84, 1560, 2440, 1667, 1661, 2097, 1662, 845, 246, - 1664, 2106, 2343, 854, 861, 902, 1799, 1800, 856, 2453, - 107, 2352, 97, 85, 2458, 64, 65, 2018, 863, 903, - 2361, 419, 420, 421, 876, 904, 881, 886, 88, 1779, - 905, 892, 781, 316, 1653, 439, 89, 90, 893, 1780, - 1781, 894, 1079, 1717, 1782, 1718, 317, 1102, 1719, 1720, - 1673, 1721, 1790, 1722, 64, 65, 1841, 1387, 1388, 1724, - 895, 1725, 1791, 1792, 917, 1668, 1669, 1793, 1731, 87, - 1783, 918, 1389, 64, 65, 1843, 919, 1392, 1393, 1801, - 1670, 921, 923, 906, 925, 247, 64, 65, 1886, 1802, - 1803, 928, 110, 1794, 1804, 2113, 2114, 248, 929, 933, - 938, 940, 907, 1809, 1810, 941, 440, 908, 88, 909, - 64, 65, 1859, 1390, 1392, 1393, 89, 90, 64, 65, - 1805, 1671, 1392, 1393, 2098, 2099, 942, 441, 442, 2107, - 2108, 249, 953, 910, 911, 443, 954, 966, 974, 976, - 977, 912, 2115, 1838, 984, 1840, 1842, 112, 985, 986, - 1139, 1042, 1051, 444, 1053, 2569, 1058, 2472, 2572, 913, - 2574, 1059, 1110, 445, 1108, 1109, 2476, 1853, 1122, 1124, - 1135, 1856, 1136, 2586, 2587, 1137, 1811, 1138, 1140, 250, - 1141, 1142, 1143, 1144, 64, 65, 1812, 1813, 1836, 1161, - 2601, 1166, 251, 1167, 1208, 1885, 1887, 2100, 1168, 1169, - 107, 1170, 2109, 1171, 1172, 1893, 1185, 2101, 2102, 1904, - 2573, 118, 2110, 2111, 1188, 914, 1910, 1814, 2496, 1194, - 1195, 2498, 1202, 2585, 2499, 1199, 2500, 1203, 2590, 1207, - 1915, 1209, 1210, 2211, 1222, 1917, 1223, 109, 2103, 1919, - 1244, 1922, 1923, 2112, 1925, 1927, 1928, 1243, 1931, 1245, - 1249, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1944, - 1946, 1947, 1247, 1250, 1949, 1950, 1951, 1952, 1248, 1251, - 2116, 2117, 1308, 1314, 1958, 1959, 1302, 1318, 1961, 1962, - 1963, 1304, 110, 1965, 1966, 1319, 1322, 1323, 2265, 69, - 1324, 1332, 1333, 1337, 1334, 70, 1969, 1970, 1335, 1971, - 1972, 121, 122, 123, 124, 125, 126, 127, 128, 129, - 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 1338, - 2279, 695, 1339, 1340, 71, 1341, 1347, 112, 1348, 1400, - 1350, 1426, 1375, 2118, 1351, 1357, 1359, 1992, 1993, 1994, - 1360, 1362, 1996, 2119, 2120, 1376, 1381, 1998, 2001, 72, - 2003, 2004, 2005, 1377, 2006, 2007, 1378, 2009, 1382, 1383, - 2012, 2013, 64, 65, 1888, 1421, 1392, 1393, 1396, 2016, - 1399, 160, 1427, 161, 2121, 1451, 1471, 2020, 1446, 1449, - 1452, 780, 2025, 2026, 1465, 1450, 117, 1469, 1470, 1476, - 2028, 118, 1025, 2000, 73, 1477, 1478, 1487, 1479, 2031, - 1488, 1485, 1524, 162, 1535, 1541, 1026, 1542, 1548, 1486, - 1551, 163, 1554, 1555, 1579, 1027, 1568, 1573, 1574, 1580, - 1581, 1582, 1621, 1591, 1592, 1028, 1593, 1650, 1594, 1595, - 1596, 1687, 1608, 1609, 1622, 2059, 1628, 1610, 1633, 74, - 1634, 1615, 1635, 1647, 1651, 1654, 1663, -439, 1665, 1674, - 1677, 1698, 1692, 1701, 1710, 1029, 1711, 2067, 2068, 1716, - 1723, 2044, 2070, 1531, 1729, 1730, 1735, 2738, 2073, 164, - 1754, 2050, 1757, 1538, 1768, 1030, 2055, 1770, 1772, 1816, - 1815, 121, 122, 123, 124, 125, 126, 127, 128, 129, - 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 1817, - 1818, 1822, 1823, 1870, 1826, 727, 1825, 1827, 165, 1830, - 1031, 1833, 1851, 1855, 1861, 1862, 2425, 2426, 1867, 2428, - 2429, 864, 1872, 2432, 2433, 1871, 166, 167, 869, 1873, - 1874, 870, 1876, 168, 1877, 169, 871, 1878, 1879, 1880, - 873, 1883, 1902, 2282, 1907, 1918, 1955, 1920, 1924, 1032, - 1967, 1932, 461, 1933, 1948, 1968, 2011, 1973, 1974, 1975, - 1979, 728, 170, 1977, 729, 2174, 1978, 2175, 1980, 2177, - 462, 1629, 1630, 1981, 1033, 1982, 1983, 1984, 1985, 2122, - 1986, 1987, 1988, 2133, 1989, 2479, 1990, 463, 2188, 2189, - 2190, 2191, 2192, 2193, 2194, 2195, 2196, 1991, 2010, 464, - 730, 2008, 2014, 2027, 2032, 932, 2033, 2034, 2035, 2036, - 2037, 2069, 2202, 1034, 2204, 1035, 2071, 465, 2072, 2612, - 2075, 466, 2076, 2077, 2079, 2080, 2084, 171, 2081, 2086, - 2087, 2210, 422, 467, 2088, 731, 2092, 2214, 2093, 2144, - 2094, 2123, 2124, 2125, 2129, 2130, 2217, 2218, 2219, 2220, - 2221, 2222, 2223, 2224, 2225, 2226, 2132, 2134, 2239, 2240, - 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2250, - 2135, 2253, 468, 2254, 2255, 2256, 2136, 2673, 2140, 2141, - 2467, 2143, 2145, 2146, 2147, 2151, 732, 422, 2266, 733, - 2152, 2444, 2154, 2155, 2156, 2157, 2161, 2162, 2445, 2163, - 2165, 2166, 2168, 1080, 2169, 2446, 2171, 2178, 2180, 2183, - 2186, 1081, 2197, 734, 1117, 1345, 735, 1082, 2198, 2200, - 2274, 1123, 2199, 2275, 2201, 2276, 736, 2278, 2205, 422, - 2280, 2252, 2281, 2559, 2257, 2258, 2261, 2562, 1083, 2286, - 2287, 2267, 2269, 799, 2283, 2284, 2291, 2673, 2292, 2285, - 2288, 2329, 2295, 1834, 2296, 2297, 2299, 2300, 2301, 1839, - 2302, 1084, 2303, 2331, 2333, 2336, -1093, 2338, 2339, 1085, - 2340, 2344, 2345, 2596, 2346, 2347, 2348, 2753, 2349, 2353, - 2354, 1852, 2355, 2356, 1854, 2357, 2358, 2362, 1858, 2363, - 2371, 218, 2364, 2374, 2382, 2385, 2388, 2389, 2391, 2394, - 2332, 2395, 2396, 2399, 2298, 2404, 1086, 2408, 2424, 1884, - 2474, 2447, 2448, 2475, 1087, 1890, 219, 2449, 2450, 2452, - 2477, 2679, 2483, 1903, 2484, 2486, 1906, 2489, 2490, 2231, - 2491, 2492, 2723, 2493, 2495, 1911, 1912, 2501, 1211, 2502, - 2511, 2520, 2529, 2330, 2535, 1213, 1916, 2539, 2542, 220, - 2548, 2685, 2397, 2556, 2567, 2579, 221, 2578, 2580, 1088, - 2581, 2582, 2583, 2621, 2598, 2605, 222, 223, 2607, 2611, - 1089, 2608, 2610, 224, 2618, 2646, 2652, 819, 2655, 288, - 2656, 2657, 2662, 2676, 2451, 2677, 1090, 2678, 2680, 2686, - 1229, 1230, 2691, 2702, 2710, 1234, 225, 2713, 1237, 2716, - 2670, 2725, 2726, 2727, 2402, 2734, 2737, 2724, 2747, 2748, - 1246, 2754, 2762, 226, 2766, 2409, 2410, 2411, 2412, 2413, - 2414, 2415, 2416, 2417, 2418, 2419, 2767, 227, 228, 2769, - 2773, 2422, 2775, 2720, 229, 422, 422, 2776, 422, 422, - 2729, 2731, 422, 422, 2434, 2435, 2436, 2437, 2438, 2439, - 2777, 2441, 2442, 2443, 230, 2778, 0, 0, 1145, 0, - 436, 0, 0, 0, 0, 0, 0, 2454, 2455, 2456, - 2457, 0, 2459, 2460, 2461, 2462, 2463, 2464, 0, 2466, - 0, 0, 2470, 2471, 0, 0, 0, 0, 0, 0, - 0, 0, 231, 0, 0, 0, 0, 0, 1492, 0, - 0, 2478, 0, 1493, 422, 2480, 0, 0, 0, 2482, - 0, 1384, 0, 2485, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1494, 1495, 0, 1496, 1497, 498, - 0, 505, 508, 0, 513, 517, 0, 0, 1498, 0, - 0, 0, 0, 232, 0, 0, 0, 0, 0, 0, - 1499, 1500, 0, 233, 0, 0, 0, 0, 1501, 2503, - 0, 1502, 582, 0, 0, 2227, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2228, 0, 1503, 0, - 597, 603, 234, 0, 0, 1504, 1505, 0, 0, 1506, - 0, 0, 0, 1748, 0, 0, 0, 0, 0, 0, - 0, 1080, 2229, 0, 0, 1758, 0, 0, 0, 1081, - 0, 0, 0, 0, 0, 1082, 0, 0, 0, 0, - 0, 681, 0, 1819, 1820, 0, 0, 0, 0, 0, - 0, 2550, 0, 691, 0, 2552, 1083, 0, 0, 2230, - 0, 0, 0, 0, 0, 2553, 2554, 1507, 0, 0, - 0, 2558, 422, 712, 0, 2561, 422, 0, 0, 1084, - 0, 2566, 0, 0, 2570, 2571, 0, 1085, 0, 0, - 0, 0, 0, 0, 0, 1328, 0, 0, 0, 0, - 0, 0, 0, 2588, 2589, 0, 2591, 2592, 2593, 2594, - 2595, 0, 422, 2597, 0, 0, 0, 2600, 0, 0, - 0, 0, 1508, 0, 1086, 1607, 0, 1379, 1509, 2609, - 0, 0, 1087, 0, 2613, 0, 2182, 0, 0, 0, - 0, 0, 0, 0, 1510, 0, 0, 0, 0, 0, - 2622, 0, 0, 1511, 0, 1631, 0, 0, 0, 0, - 1636, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1642, 0, 2207, 0, 0, 0, 0, 1088, 0, 0, - 1512, 1513, 815, 0, 0, 0, 0, 0, 1089, 0, - 0, 0, 2634, 822, 0, 0, 0, 2638, 0, 2640, - 0, 1514, 830, 0, 1090, 2643, 0, 0, 0, 0, - 0, 0, 0, 2231, 0, 2232, 0, 0, 2650, 0, + 148, 929, 160, 1838, 161, 1840, 1842, 64, 65, 953, + 1795, 781, 942, 419, 420, 421, 74, 2471, 954, 1796, + 1797, 64, 65, 64, 65, 966, 2475, 1853, 64, 65, + 1841, 1856, 2568, 974, 162, 2571, 976, 2573, 977, 986, + 1434, 984, 163, 64, 65, 1886, 985, 1042, 1836, 1051, + 2585, 2586, 1058, 1110, 1208, 1885, 1887, 1059, 685, 1122, + 714, 1053, 1108, 1788, 1789, 1893, 1798, 2600, 1109, 1904, + 2572, 1435, 1124, 1135, 1136, 1137, 1910, 1138, 2495, 1139, + 1140, 2497, 1141, 2584, 2498, 1142, 2499, 1143, 2589, 1144, + 1915, 1161, 1168, 2210, 1166, 1917, 1167, 2115, 2116, 1919, + 164, 1922, 1923, 1169, 1925, 1927, 1928, 1659, 1931, 1025, + 1170, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1944, + 1946, 1947, 107, 1026, 1949, 1950, 1951, 1952, 1171, 686, + 1172, 715, 1027, 1185, 1958, 1959, 1790, 1188, 1961, 1962, + 1963, 1195, 1028, 1965, 1966, 1202, 1791, 1792, 2264, 165, + 1194, 1793, 1199, 1203, 1207, 1209, 1969, 1970, 1210, 1971, + 1972, 1222, 439, 695, 1223, 1244, 1243, 166, 167, 1245, + 2117, 1247, 1029, 1248, 168, 1249, 169, 1794, 1250, 1251, + 2118, 2119, 64, 65, 1843, 1302, 1392, 1393, 1304, 2278, + 1308, 1080, 1030, 1314, 1799, 1800, 64, 65, 1859, 1081, + 1392, 1393, 1318, 170, 110, 1082, 1319, 1992, 1993, 1994, + 1322, 2120, 1995, 1323, 1324, 1332, 1333, 1997, 2000, 1334, + 2002, 2003, 2004, 780, 2005, 2006, 1083, 2008, 1335, 1337, + 2011, 2012, 1338, 440, 1339, 1340, 1341, 1031, 1347, 2015, + 64, 65, 1888, 1348, 1392, 1393, 1350, 2019, 461, 1084, + 1351, 1357, 2024, 2025, 441, 442, 1359, 1085, 1360, 112, + 2027, 1362, 443, 1999, 1375, 1376, 462, 1801, 171, 2030, + 64, 65, 1400, 1377, 1392, 1393, 1032, 1802, 1803, 1486, + 444, 1378, 1804, 463, 1381, 1396, 1382, 1383, 1399, 1421, + 445, 1426, 1427, 1451, 1086, 464, 1449, 1446, 1465, 1450, + 1469, 1033, 1087, 1452, 1470, 2058, 1471, 1476, 1805, 1477, + 1478, 1487, 1479, 465, 1488, 1485, 1524, 466, 1535, 1541, + 1542, 1548, 1555, 118, 1551, 1568, 1554, 2066, 2067, 467, + 1573, 2043, 2069, 1531, 1574, 1579, 1582, 2737, 2072, 1580, + 1034, 2049, 1035, 1538, 1581, 1591, 2054, 1088, 1592, 1593, + 1610, 1594, 1595, 1596, 1615, 1608, 1609, 1628, 1089, 1621, + 1622, 1633, 1634, 1635, 1647, 1650, 1651, 1654, 468, 1663, + -439, 1665, 1674, 864, 1090, 1677, 1687, 1692, 1710, 1711, + 869, 1716, 1729, 870, 1698, 1701, 1723, 1730, 871, 1735, + 1754, 1757, 873, 1768, 1770, 2424, 2425, 1772, 2427, 2428, + 1815, 1816, 2431, 2432, 1817, 1818, 1822, 1823, 1861, 1825, + 1826, 1827, 1830, 121, 122, 123, 124, 125, 126, 127, + 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, + 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, + 148, 1833, 1851, 1855, 1862, 2173, 1872, 2174, 1867, 2176, + 1870, 1629, 1630, 1871, 1873, 1874, 1876, 932, 1877, 1878, + 1883, 1902, 1879, 1907, 2478, 1880, 1918, 1920, 2187, 2188, + 2189, 2190, 2191, 2192, 2193, 2194, 2195, 1955, 1924, 1932, + 1967, 1968, 1975, 1933, 1973, 1974, 1948, 1977, 1978, 1979, + 1980, 288, 2201, 1981, 2203, 1982, 1983, 1984, 1985, 2281, + 1986, 1987, 1988, 2010, 1989, 1990, 1991, 2466, 2007, 2009, + 2013, 2209, 422, 2026, 2031, 2443, 2032, 2213, 2033, 2034, + 2035, 2036, 2068, 2444, 2070, 2071, 2216, 2217, 2218, 2219, + 2220, 2221, 2222, 2223, 2224, 2225, 2074, 2075, 2238, 2239, + 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, + 2076, 2252, 2078, 2253, 2254, 2255, 2672, 2079, 2445, 2080, + 2083, 2121, 2085, 2086, 2087, 2091, 1117, 422, 2265, 2092, + 2132, 2093, 436, 1123, 2122, 2123, 2124, 2128, 2129, 2143, + 2131, 2133, 2134, 2135, 2139, 2611, 2140, 2446, 2142, 2144, + 2145, 2146, 2150, 2151, 2752, 2153, 2154, 2155, 2156, 2160, + 2273, 2161, 2274, 2162, 2275, 2164, 2277, 2165, 422, 2279, + 2167, 2280, 2558, 2168, 2447, 2170, 2561, 2177, 2285, 2286, + 2179, 2182, 2185, 2196, 2197, 2290, 2672, 2291, 2198, 2199, + 2200, 2294, 2204, 1834, 2296, 2251, 2256, 2257, 2260, 1839, + 2266, 498, 2268, 505, 508, 2282, 513, 517, 2283, 2284, + 2287, 2328, 2595, 2295, 2298, 2299, 2300, 2301, 2302, 2330, + 2332, 1852, 2335, 2343, 1854, 2337, 2338, 2339, 1858, 2344, + 2448, 2345, 2346, 2347, 582, 2348, 2352, 2353, 2361, 2331, + 2354, 2355, 2356, 2297, 2357, 2362, 2449, 2363, 2370, 1884, + 1211, 2373, 597, 603, 2381, 1890, 2384, 1213, 2387, 2388, + 2390, 2393, 2394, 1903, 2395, 2398, 1906, 2403, 2407, 2423, + 2473, 2474, 2451, 2476, 2485, 1911, 1912, 2482, 2483, 2488, + 2489, 2491, 2329, 2490, 2492, 2494, 1916, 2500, 2501, 2510, + 2519, 2396, 2528, 681, 2534, 2538, 2541, 2547, 2555, 2566, + 2684, 2577, 1229, 1230, 2578, 691, 2579, 1234, 2580, 2581, + 1237, 2582, -1093, 2597, 2604, 2606, 2678, 2607, 2609, 2610, + 2722, 2617, 1246, 2645, 2651, 712, 2654, 2655, 2656, 2661, + 2675, 2230, 2676, 2677, 2679, 2685, 2690, 2701, 2709, 2620, + 2712, 2715, 2726, 2401, 2724, 2725, 2733, 2736, 2450, 2746, + 2747, 2753, 2761, 2772, 2408, 2409, 2410, 2411, 2412, 2413, + 2414, 2415, 2416, 2417, 2418, 2765, 2766, 2768, 2774, 799, + 2421, 2775, 2776, 2777, 422, 422, 819, 422, 422, 2728, + 2730, 422, 422, 2433, 2434, 2435, 2436, 2437, 2438, 2669, + 2440, 2441, 2442, 2723, 2719, 0, 1145, 1328, 0, 0, + 0, 0, 0, 0, 0, 0, 2453, 2454, 2455, 2456, + 0, 2458, 2459, 2460, 2461, 2462, 2463, 0, 2465, 0, + 0, 2469, 2470, 1384, 0, 0, 0, 0, 0, 1379, + 0, 0, 0, 0, 815, 0, 0, 0, 0, 0, + 2477, 0, 0, 422, 2479, 822, 0, 0, 2481, 0, + 0, 0, 2484, 0, 830, 0, 2293, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2226, 0, 0, + 0, 0, 2304, 2305, 2306, 0, 0, 2308, 2227, 2310, + 2311, 0, 0, 2313, 2314, 2315, 0, 0, 2317, 2318, + 0, 0, 2321, 0, 2323, 2324, 0, 2326, 2502, 0, + 0, 0, 0, 1080, 2228, 0, 0, 0, 0, 0, + 0, 1081, 0, 0, 0, 0, 0, 1082, 0, 0, + 0, 0, 867, 868, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 872, 0, 0, 1083, 0, + 875, 2229, 0, 0, 0, 0, 0, 0, 0, 887, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1084, 0, 0, 0, 0, 0, 0, 0, 1085, + 2549, 0, 0, 0, 2551, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2552, 2553, 0, 0, 0, 0, + 2557, 422, 0, 0, 2560, 422, 0, 0, 0, 0, + 2565, 0, 0, 2569, 2570, 2397, 1086, 0, 2400, 0, + 0, 0, 0, 2404, 1087, 0, 2405, 1607, 934, 935, + 936, 937, 2587, 2588, 0, 2590, 2591, 2592, 2593, 2594, + 0, 422, 2596, 0, 0, 2420, 2599, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1631, 2608, 0, + 0, 0, 1636, 2612, 0, 0, 2181, 0, 0, 1088, + 0, 0, 1642, 0, 0, 0, 0, 0, 0, 2621, + 1089, 0, 0, 0, 0, 0, 0, 0, 1078, 0, + 0, 0, 0, 0, 0, 0, 1090, 0, 0, 0, + 0, 0, 2206, 0, 0, 2230, 0, 2231, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2633, 0, 0, 0, 0, 2637, 0, 2639, 0, + 0, 0, 2487, 0, 2642, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2649, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2232, 0, 2496, 2696, 2660, 0, 0, 0, 2664, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1732, 1733, 1734, 0, 0, 0, 0, 0, 2683, + 0, 1736, 1737, 1738, 0, 0, 0, 0, 1749, 1750, + 1751, 0, 0, 1752, 1753, 0, 1755, 1756, 0, 0, + 0, 0, 0, 0, 2699, 0, 0, 0, 0, 2704, + 0, 2706, 0, 0, 0, 0, 0, 0, 2710, 0, + 0, 0, 0, 2713, 0, 0, 1828, 1829, 2716, 106, + 1831, 1832, 2546, 0, 0, 1212, 0, 0, 0, 0, + 0, 0, 0, 0, 107, 0, 0, 1217, 0, 0, + 2727, 2729, 2554, 0, 0, 0, 0, 0, 0, 2559, + 0, 0, 2562, 2563, 0, 108, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2739, 0, 0, + 2740, 109, 0, 2742, 1227, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2748, 2749, 2750, 2751, 1905, 0, + 0, 0, 0, 0, 0, 0, 2760, 0, 0, 2763, + 0, 0, 0, 0, 2735, 0, 2767, 0, 2769, 0, + 0, 0, 0, 0, 0, 0, 110, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 111, 0, 2755, 0, 0, 2758, + 0, 0, 0, 0, 0, 0, 0, 1317, 1954, 0, + 0, 0, 0, 0, 1960, 0, 1256, 1257, 1258, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2634, 0, + 0, 112, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1259, 1260, 0, 2644, 1261, 0, + 0, 0, 0, 0, 0, 1262, 0, 0, 1263, 0, + 0, 0, 1264, 0, 0, 0, 0, 0, 113, 0, + 1265, 1266, 0, 0, 0, 0, 114, 0, 1267, 0, + 0, 0, 1463, 0, 115, 116, 0, 0, 0, 0, + 117, 1996, 0, 0, 0, 118, 0, 2001, 0, 0, + 0, 0, 0, 0, 0, 1268, 1269, 0, 0, 1270, + 0, 2472, 0, 0, 0, 0, 0, 0, 2697, 2698, + 0, 2700, 2016, 2702, 2703, 1271, 2705, 0, 2022, 0, + 0, 0, 0, 0, 1523, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1529, 1272, 0, 0, 0, 0, + 0, 1345, 0, 0, 0, 0, 0, 2038, 0, 0, + 0, 0, 0, 0, 0, 2045, 0, 1273, 0, 119, + 0, 0, 0, 0, 641, 642, 1274, 0, 0, 2732, + 0, 0, 0, 0, 120, 121, 122, 123, 124, 125, + 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, + 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 0, 0, 0, 0, 0, 149, 0, + 1275, 0, 1276, 150, 151, 0, 2764, 0, 1277, 1278, + 643, 0, 0, 0, 2073, 0, 644, 0, 0, 0, + 0, 0, 0, 645, 1279, 646, 1604, 2081, 0, 0, + 647, 0, 0, 648, 1280, 0, 0, 2084, 0, 649, + 0, 0, 0, 1612, 0, 0, 0, 0, 0, 650, + 0, 0, 0, 0, 0, 651, 0, 0, 0, 1281, + 0, 1282, 0, 0, 652, 0, 0, 1637, 0, 0, + 0, 1283, 0, 0, 0, 0, 0, 1643, 0, 653, + 0, 1284, 0, 2583, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1660, 0, 0, 654, + 2171, 0, 0, 2601, 0, 0, 1672, 2605, 0, 2169, + 0, 1680, 0, 0, 655, 1285, 516, 0, 0, 0, + 0, 0, 2184, 656, 657, 0, 0, 0, 0, 0, + 0, 107, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 658, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2207, 2208, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 659, 109, 0, + 0, 0, 0, 2211, 2212, 0, 0, 0, 2214, 2215, + 0, 660, 0, 661, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 662, 0, 0, + 0, 0, 663, 0, 0, 0, 0, 0, 664, 0, + 0, 0, 0, 110, 0, 665, 0, 0, 2258, 0, + 0, 2262, 2263, 0, 0, 0, 0, 0, 0, 2267, + 0, 0, 0, 666, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1835, 0, 667, 668, 0, 669, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1181, 0, 0, 2276, 0, 0, 0, 0, 112, 0, + 0, 0, 0, 0, 1857, 0, 0, 0, 0, 2288, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 2697, 2661, 0, 0, 0, - 2665, 0, 0, 0, 0, 0, 1515, 0, 0, 0, + 0, 0, 2303, 1891, 0, 0, 1892, 2307, 0, 1748, + 0, 0, 0, 2312, 0, 0, 1908, 1909, 2316, 0, + 0, 1758, 2319, 0, 1913, 2322, 0, 117, 2325, 0, + 2327, 1914, 118, 0, 0, 0, 0, 0, 0, 1819, + 1820, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2745, 0, 0, 0, 0, 0, + 0, 2333, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1953, 0, 0, 1956, 1957, 0, 0, 0, 0, + 0, 0, 0, 1964, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2365, 2366, 2367, 2368, 2369, 0, 2371, 2372, 0, + 0, 0, 2376, 2377, 2378, 2379, 2380, 0, 2382, 2383, + 0, 0, 121, 122, 123, 124, 125, 126, 127, 128, + 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2684, 0, 0, 0, 0, 0, 0, 0, 0, 2233, - 867, 868, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 872, 0, 2700, 0, 0, 875, 0, - 2705, 0, 2707, 0, 0, 0, 0, 887, 0, 2711, - 0, 0, 0, 0, 2714, 0, 0, 0, 0, 2717, + 0, 0, 0, 0, 0, 0, 0, 2014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2023, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2028, 0, + 2029, 0, 0, 0, 0, 2464, 0, 0, 0, 0, + 2037, 0, 0, 2039, 0, 2040, 2041, 2042, 2044, 0, + 0, 2046, 0, 0, 2047, 0, 0, 2048, 2050, 0, + 2051, 2052, 2053, 2055, 0, 2056, 2057, 0, 0, 0, + 0, 2059, 2060, 2061, 0, 0, 2062, 2063, 0, 0, + 0, 0, 2064, 2065, 121, 122, 123, 124, 125, 126, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 2728, 2730, 0, 0, 0, 64, 65, 0, 0, + 0, 0, 0, 2503, 0, 0, 2505, 2506, 2507, 2508, + 2509, 0, 2511, 2512, 0, 2514, 2515, 2516, 2517, 2518, + 0, 2520, 2521, 0, 2523, 2524, 2525, 2526, 2527, 0, + 2529, 2530, 0, 2532, 0, 0, 64, 65, 0, 0, + 0, 0, 0, 2535, 2536, 0, 0, 0, 0, 0, + 0, 2544, 107, 0, 2539, 0, 0, 2548, 0, 0, + 0, 2550, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 283, 0, 0, 0, 2172, 2556, 0, 0, + 2175, 0, 0, 0, 0, 0, 0, 0, 0, 109, + 0, 0, 2180, 0, 0, 2183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 107, 0, 0, 0, 0, 0, 2740, 0, - 0, 2741, 0, 0, 2743, 0, 934, 935, 936, 937, - 0, 0, 0, 0, 0, 2749, 2750, 2751, 2752, 0, - 0, 0, 0, 0, 0, 0, 0, 2761, 0, 0, - 2764, 0, 0, 0, 0, 2736, 0, 2768, 0, 2770, - 0, 0, 0, 0, 0, 0, 1905, 0, 0, 0, + 0, 0, 0, 0, 0, 2082, 0, 0, 0, 0, + 0, 0, 0, 2088, 2089, 2202, 0, 0, 0, 0, + 0, 0, 0, 0, 110, 0, 0, 0, 2125, 2126, + 0, 0, 0, 0, 0, 0, 0, 0, 2618, 2136, + 2137, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2147, 2148, 0, 0, 0, 0, 0, 0, 0, 0, + 2157, 2158, 0, 0, 0, 0, 2163, 0, 0, 0, + 0, 2250, 2623, 0, 0, 0, 2166, 0, 0, 112, + 0, 2625, 0, 0, 0, 0, 0, 0, 0, 0, + 2627, 0, 2628, 0, 0, 0, 2630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1078, 2756, 0, 2083, - 2759, 0, 0, 0, 110, 0, 0, 2089, 2090, 0, + 0, 0, 0, 0, 0, 0, 284, 0, 0, 0, + 2653, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 117, 0, + 0, 0, 0, 118, 2289, 0, 344, 0, 0, 0, + 0, 0, 0, 345, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 2126, 2127, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 2137, 2138, 0, 1954, 0, 0, 1732, - 1733, 1734, 1960, 0, 2148, 2149, 0, 0, 0, 1736, - 1737, 1738, 0, 0, 2158, 2159, 1749, 1750, 1751, 112, - 2164, 1752, 1753, 0, 1755, 1756, 0, 0, 0, 0, - 2167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1828, 1829, 0, 0, 1831, 1832, + 0, 2691, 0, 2692, 0, 2693, 0, 2320, 2694, 0, + 2695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2294, 0, 2473, 0, 0, 0, 0, 1995, 0, 1997, - 0, 0, 0, 118, 0, 2002, 2305, 2306, 2307, 0, - 0, 2309, 0, 2311, 2312, 0, 0, 2314, 2315, 2316, - 0, 0, 2318, 2319, 0, 0, 2322, 0, 2324, 2325, - 2017, 2327, 0, 1212, 0, 0, 2023, 0, 0, 0, - 0, 0, 0, 0, 0, 1217, 0, 0, 0, 0, + 2718, 0, 0, 0, 286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 2039, 0, 0, 0, 0, - 0, 0, 0, 2046, 0, 0, 0, 0, 0, 0, - 0, 0, 1227, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 121, 122, 123, 124, 125, 126, 127, + 0, 2731, 0, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 2398, - 0, 0, 2401, 0, 0, 0, 0, 2405, 0, 0, - 2406, 0, 0, 0, 0, 1317, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 2421, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 2756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2584, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 2770, + 0, 0, 2771, 2399, 0, 0, 2402, 0, 0, 0, + 0, 0, 0, 0, 2406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2602, 0, 0, 0, 2606, 2335, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 2337, - 0, 0, 0, 2341, 2342, 0, 0, 0, 2172, 0, - 1463, 0, 2350, 2351, 0, 0, 0, 516, 0, 0, - 0, 2359, 2360, 641, 642, 0, 0, 2365, 0, 0, - 2185, 0, 107, 0, 0, 0, 2488, 2375, 2376, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2386, 2387, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 2390, - 0, 0, 1523, 0, 2208, 2209, 0, 2497, 2392, 109, - 2393, 0, 1529, 0, 0, 0, 0, 0, 0, 643, - 0, 2212, 2213, 0, 0, 644, 2215, 2216, 0, 0, - 0, 0, 645, 0, 646, 0, 0, 0, 0, 647, - 0, 0, 648, 0, 0, 0, 0, 0, 649, 0, - 0, 0, 2074, 0, 110, 0, 0, 0, 650, 0, - 0, 0, 0, 0, 651, 2082, 2259, 0, 0, 2263, - 2264, 0, 0, 652, 0, 2085, 0, 2268, 0, 0, - 0, 0, 0, 0, 0, 0, 2547, 0, 653, 0, + 2419, 0, 0, 2422, 2334, 0, 0, 0, 2426, 0, + 0, 2429, 2430, 0, 2336, 0, 0, 0, 2340, 2341, + 0, 0, 0, 0, 0, 107, 0, 2349, 2350, 0, + 0, 0, 0, 0, 0, 0, 2358, 2359, 0, 0, + 0, 346, 2364, 347, 0, 0, 0, 0, 0, 0, + 0, 0, 2374, 2375, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2385, 2386, 0, 0, 0, 0, 0, + 0, 489, 490, 0, 2389, 491, 0, 0, 0, 0, + 0, 0, 0, 2391, 0, 2392, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 492, 0, 0, + 2493, 0, 0, 0, 0, 0, 0, 110, 0, 0, + 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2555, 0, 654, 112, - 0, 0, 2277, 2560, 1604, 0, 2563, 2564, 0, 0, - 0, 0, 0, 655, 0, 0, 0, 0, 2289, 0, - 0, 1612, 656, 657, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 2170, 0, 0, - 0, 2304, 0, 658, 0, 1637, 2308, 0, 0, 0, - 0, 0, 2313, 0, 0, 1643, 0, 2317, 117, 0, - 0, 2320, 0, 118, 2323, 2746, 659, 2326, 0, 2328, - 0, 2505, 344, 0, 1660, 0, 0, 0, 0, 345, - 660, 2514, 661, 0, 1672, 0, 0, 0, 0, 1680, - 2523, 0, 0, 0, 0, 0, 662, 0, 0, 2532, - 0, 663, 0, 0, 0, 0, 2534, 664, 0, 0, - 0, 0, 0, 0, 665, 0, 0, 2538, 0, 0, - 0, 0, 2635, 2541, 0, 0, 2543, 0, 0, 2544, - 0, 0, 666, 0, 0, 0, 0, 0, 0, 0, - 0, 2645, 0, 0, 0, 667, 668, 0, 669, 0, - 0, 0, 0, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 0, 0, 0, 0, 0, 0, 0, 670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 112, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 107, 493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 2698, 2699, 0, 2701, 0, 2703, 2704, 0, - 2706, 0, 1835, 0, 0, 0, 0, 0, 0, 0, + 0, 494, 0, 0, 0, 0, 0, 2545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2623, 0, 0, 0, - 0, 0, 1857, 0, 2465, 2625, 0, 0, 0, 0, - 0, 0, 0, 0, 2627, 0, 0, 0, 0, 0, - 2630, 0, 0, 2733, 2632, 0, 0, 2633, 0, 0, - 0, 1891, 0, 0, 1892, 0, 0, 0, 0, 0, - 2334, 0, 0, 0, 1908, 1909, 0, 346, 0, 347, - 0, 0, 1913, 0, 0, 0, 0, 0, 0, 1914, - 64, 65, 0, 0, 0, 0, 0, 0, 0, 0, - 2765, 0, 0, 0, 0, 0, 107, 0, 0, 0, - 2366, 2367, 2368, 2369, 2370, 0, 2372, 2373, 0, 0, - 0, 2377, 2378, 2379, 2380, 2381, 283, 2383, 2384, 1953, - 0, 0, 1956, 1957, 0, 0, 0, 0, 0, 0, - 0, 1964, 0, 109, 0, 0, 121, 122, 123, 124, + 109, 0, 0, 495, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 118, 0, 0, 0, + 2564, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2575, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 110, 2504, 0, 0, 0, + 0, 598, 107, 0, 0, 0, 2513, 0, 0, 0, + 0, 0, 0, 0, 0, 2522, 0, 496, 0, 0, + 0, 0, 0, 0, 2531, 0, 0, 0, 0, 2616, + 0, 2533, 0, 2619, 0, 0, 0, 0, 0, 0, + 0, 599, 2537, 0, 0, 0, 0, 0, 2540, 0, + 112, 2542, 0, 0, 2543, 0, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 0, 0, 0, 0, 0, 0, - 2545, 0, 0, 0, 0, 0, 2549, 0, 110, 0, - 2551, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2557, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1999, 0, 0, + 145, 146, 147, 148, 110, 497, 2635, 2636, 0, 2638, + 0, 0, 0, 0, 2640, 2641, 0, 0, 600, 2643, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, + 0, 0, 0, 0, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 2015, 0, 0, 0, 0, - 0, 0, 0, 112, 0, 0, 0, 0, 0, 0, - 0, 2024, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2029, 0, 2030, 0, - 0, 0, 0, 1659, 0, 0, 0, 2619, 2038, 0, - 284, 2040, 0, 2041, 2042, 2043, 2045, 0, 107, 2047, - 0, 0, 2048, 0, 0, 2049, 2051, 0, 2052, 2053, - 2054, 2056, 117, 2057, 2058, 0, 0, 118, 0, 2060, - 2061, 2062, 0, 0, 2063, 2064, 0, 0, 285, 0, - 2065, 2066, 2504, 0, 0, 2506, 2507, 2508, 2509, 2510, - 0, 2512, 2513, 0, 2515, 2516, 2517, 2518, 2519, 0, - 2521, 2522, 0, 2524, 2525, 2526, 2527, 2528, 0, 2530, - 2531, 0, 2533, 0, 0, 0, 0, 0, 0, 2654, - 0, 0, 2536, 2537, 0, 0, 0, 0, 0, 0, - 110, 0, 0, 2540, 0, 0, 0, 0, 286, 0, + 0, 0, 2665, 0, 0, 0, 0, 0, 0, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 121, 122, 123, - 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, - 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 112, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 601, 2686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2173, 0, 0, 0, 2176, 2719, + 0, 2622, 0, 507, 0, 0, 0, 0, 0, 0, + 2624, 0, 0, 0, 0, 0, 0, 0, 0, 2626, + 0, 0, 0, 0, 0, 2629, 0, 0, 0, 2631, + 0, 0, 2632, 118, 121, 122, 123, 124, 125, 126, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 0, 0, 0, 0, 0, 0, 0, 0, + 2734, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2181, 0, 0, 2184, 0, 0, 0, 0, 0, 0, - 2732, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 118, - 0, 0, 0, 2203, 0, 0, 0, 0, 0, 0, - 0, 2624, 0, 0, 0, 0, 0, 0, 0, 0, - 2626, 0, 0, 0, 0, 0, 0, 0, 2757, 2628, - 0, 2629, 0, 0, 0, 2631, 0, 0, 0, 0, - 598, 107, 0, 0, 0, 0, 0, 0, 2771, 0, - 0, 2772, 0, 0, 0, 0, 0, 0, 0, 2251, + 602, 0, 2754, 0, 0, 2757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 107, 0, 0, 0, 0, 0, 0, 0, 0, - 599, 0, 0, 0, 0, 0, 0, 0, 0, 121, - 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, - 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 489, 490, 0, - 2692, 491, 2693, 110, 2694, 0, 0, 2695, 0, 2696, - 0, 0, 0, 2290, 0, 0, 0, 600, 0, 0, - 0, 0, 0, 492, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 121, 122, 123, 124, 125, 126, 127, + 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, + 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, + 148, 989, 990, 991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2321, 0, 112, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 992, + 993, 107, 0, 994, 0, 0, 995, 0, 0, 0, + 0, 0, 0, 996, 0, 0, 0, 997, 0, 0, + 0, 0, 0, 0, 0, 998, 999, 0, 0, 0, + 0, 0, 0, 1000, 1001, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 601, 0, 0, 0, 0, 0, + 1002, 0, 107, 0, 0, 0, 1003, 0, 0, 0, + 1004, 1005, 0, 0, 1006, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1007, 107, 0, 110, 0, 0, 0, 0, 0, 0, + 0, 0, 503, 0, 0, 0, 0, 0, 0, 0, + 1008, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1316, 0, + 0, 107, 1009, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 110, 0, 0, 0, 112, 0, + 0, 0, 0, 0, 0, 1010, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1011, 0, 1012, 0, 0, + 0, 0, 0, 1013, 1014, 0, 0, 0, 0, 112, + 0, 0, 0, 0, 0, 0, 0, 117, 1015, 1016, + 0, 0, 118, 110, 0, 0, 0, 0, 1017, 1018, 0, 0, 0, 0, 0, 0, 0, 0, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 493, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 494, 0, 0, - 0, 0, 118, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 495, + 0, 0, 0, 0, 1019, 0, 1020, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1021, 0, + 1022, 0, 0, 118, 0, 0, 1023, 0, 112, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 118, 0, 0, 0, 0, 0, 0, 0, + 1024, 0, 121, 122, 123, 124, 125, 126, 127, 128, + 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 504, 0, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 2400, 0, 0, 2403, 0, 0, 0, 0, - 0, 0, 0, 2407, 0, 0, 0, 0, 0, 602, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 2420, - 0, 0, 2423, 496, 0, 0, 0, 2427, 0, 0, - 2430, 2431, 121, 122, 123, 124, 125, 126, 127, 128, + 0, 0, 0, 121, 122, 123, 124, 125, 126, 127, + 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, + 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, + 148, 0, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 0, 497, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 989, 990, 991, 0, 0, 0, 0, 2494, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 992, 993, 0, 0, 994, 0, 0, 995, 0, 0, - 0, 0, 0, 0, 996, 0, 0, 0, 997, 0, - 0, 0, 0, 0, 0, 0, 998, 999, 0, 0, - 0, 0, 0, 0, 1000, 1001, 0, 0, 0, 0, - 0, 1256, 1257, 1258, 0, 0, 0, 0, 0, 0, - 0, 1002, 0, 0, 0, 0, 0, 1003, 0, 0, - 0, 1004, 1005, 0, 0, 1006, 0, 0, 0, 1259, - 1260, 0, 0, 1261, 0, 0, 2546, 0, 0, 0, - 1262, 1007, 0, 1263, 0, 0, 0, 1264, 0, 0, - 0, 0, 0, 0, 0, 1265, 1266, 0, 0, 0, - 0, 1008, 0, 1267, 0, 0, 0, 0, 0, 2565, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2576, 0, 0, 1009, 107, 0, 0, 0, 0, 0, - 1268, 1269, 0, 0, 1270, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1010, 0, 0, 0, - 1271, 0, 0, 0, 0, 0, 0, 107, 0, 0, - 0, 109, 0, 0, 0, 0, 0, 0, 2617, 0, - 1272, 0, 2620, 0, 0, 0, 1011, 0, 1012, 0, - 0, 0, 0, 0, 1013, 1014, 0, 0, 0, 0, - 0, 0, 1273, 0, 109, 0, 0, 0, 0, 1015, - 1016, 1274, 0, 0, 0, 0, 110, 0, 107, 1017, - 1018, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 2636, 2637, 0, 2639, 0, - 0, 0, 0, 2641, 2642, 1019, 0, 1020, 2644, 110, - 0, 0, 0, 0, 0, 1275, 107, 1276, 503, 1021, - 0, 1022, 0, 1277, 1278, 0, 0, 1023, 0, 0, - 0, 112, 0, 0, 0, 0, 0, 0, 0, 1279, - 0, 2666, 0, 0, 0, 0, 0, 0, 0, 1280, - 0, 0, 0, 1316, 0, 0, 0, 0, 0, 0, - 110, 1024, 0, 0, 112, 2687, 0, 0, 0, 0, - 0, 0, 0, 0, 1281, 0, 1282, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1283, 0, 0, 0, - 117, 0, 0, 0, 0, 118, 1284, 0, 110, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 112, 0, 0, 0, 0, - 0, 0, 0, 117, 0, 0, 0, 0, 118, 0, - 1285, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 2735, - 0, 0, 0, 112, 507, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2744, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 118, - 0, 2755, 0, 0, 2758, 121, 122, 123, 124, 125, - 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 0, 0, 0, 0, 118, 121, 122, - 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 504, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 121, - 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, - 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 121, 122, 123, - 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, - 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 1, 0, 0, 2, 0, - 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 4, 0, 0, 0, 0, 5, 6, - 0, 7, 8, 9, 0, 0, 0, 0, 0, 0, - 0, 10, 0, 0, 0, 0, 0, 0, 11, 0, - 12, 13, 0, 0, 0, 0, 0, 0, 0, 14, - 15, 121, 122, 123, 124, 125, 126, 127, 128, 129, - 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 16, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 17, 0, 0, 0, 18, 0, 0, 19, 0, - 0, 0, 20, 21, 0, 0, 0, 0, 0, 22, - 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, - 0, 25, 26, 27, 0, 0, 28, 29, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 31, 32, 33, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 34, 0, 35, 0, 0, 0, 0, 0, 0, - 36, 0, 0, 0, 37, 0, 0, 38, 0, 39, - 0, 40, 0, 0, 0, 0, 41, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, - 0, 0, 0, 175, 0, 43, 176, 0, 177, 0, + 1, 0, 0, 2, 0, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, + 0, 0, 0, 5, 6, 0, 7, 8, 9, 0, + 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, + 0, 0, 0, 11, 0, 12, 13, 0, 0, 0, + 0, 0, 0, 0, 14, 15, 121, 122, 123, 124, + 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, + 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 16, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 18, 0, 0, 19, 0, 0, 0, 20, 21, 0, + 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, + 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 24, 0, 0, 25, 26, 27, 0, + 0, 28, 29, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 44, 45, 0, 0, 0, 0, 0, 178, 0, 179, - 180, 181, 46, 0, 47, 0, 0, 0, 0, 182, - 48, 183, 0, 49, 50, 0, 184, 0, 185, 186, - 187, 0, 0, 0, 0, 188, 0, 189, 0, 0, + 0, 0, 31, 32, 33, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, + 0, 0, 0, 0, 0, 36, 0, 0, 0, 37, + 0, 0, 38, 0, 39, 0, 40, 0, 0, 0, + 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 42, 0, 0, 0, 175, 0, + 43, 176, 0, 177, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 44, 45, 0, 0, 0, + 0, 0, 178, 0, 179, 180, 181, 46, 0, 47, + 0, 0, 0, 0, 182, 48, 183, 0, 49, 50, + 0, 184, 0, 185, 186, 187, 0, 0, 0, 0, + 188, 0, 189, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 51, + 0, 0, 0, 0, 0, 0, 52, 0, 0, 0, + 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 191, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 192, 193, + 0, 0, 194, 0, 967, 0, 195, 0, 196, 968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 51, 0, 0, 0, 0, 0, - 0, 52, 0, 0, 0, 0, 190, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 197, + 198, 0, 0, 199, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 200, 0, 0, 1353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 192, 193, 0, 0, 194, 0, 967, - 0, 195, 0, 196, 968, 0, 0, 0, 0, 0, + 201, 202, 0, 0, 0, 0, 0, 0, 203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 0, 0, 199, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 200, 0, - 0, 1353, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 201, 202, 0, 0, 0, - 0, 0, 0, 203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 204, 0, 205, + 0, 0, 204, 0, 205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 206, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 207, 208, - 0, 0, 0, 0, 0, 0, 0, 209, 0, 0, - 0, 0, 0, 0, 210, 0, 0, 0, 0, 0, - 211, 0, 212, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 0, 0, 0, 0, 0, 0, 0, 0, 213, - 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 1354 + 0, 0, 0, 207, 208, 0, 0, 0, 0, 0, + 0, 0, 209, 0, 0, 0, 0, 0, 0, 210, + 0, 0, 0, 0, 0, 211, 0, 212, 121, 122, + 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, + 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 148, 0, 0, 0, 0, + 0, 0, 0, 0, 213, 121, 122, 123, 124, 125, + 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, + 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 1354 }; static const yytype_int16 yycheck[] = { - 3, 50, 4, 1439, 661, 1639, 480, 1641, 11, 5, - 990, 1138, 5, 1140, 436, 656, 657, 869, 870, 871, - 4, 3, 4, 5, 446, 5, 4, 4, 4, 32, - 5, 0, 56, 5, 14, 15, 46, 40, 5, 1166, - 1167, 1168, 13, 32, 61, 5, 49, 3, 4, 52, - 3, 4, 55, 3, 4, 20, 59, 27, 37, 62, - 3, 4, 17, 66, 67, 3, 4, 70, 27, 17, - 73, 74, 3, 4, 77, 32, 3, 4, 81, 16, - 932, 61, 97, 86, 130, 3, 4, 164, 5, 40, - 3, 4, 6, 4, 3, 4, 99, 100, 101, 102, - 103, 104, 6, 99, 87, 3, 4, 32, 212, 105, - 4, 149, 5, 961, 4, 5, 964, 120, 36, 3, - 4, 4, 40, 36, 3, 4, 32, 36, 63, 44, - 17, 5, 27, 981, 138, 133, 2672, 283, 156, 93, - 4, 5, 40, 3, 4, 61, 27, 192, 192, 3, - 4, 103, 155, 131, 66, 66, 113, 111, 87, 21, - 111, 59, 4, 3, 4, 183, 27, 48, 33, 104, - 51, 175, 87, 156, 4, 178, 66, 56, 224, 261, - 183, 62, 144, 66, 88, 2721, 268, 264, 165, 124, - 4, 215, 21, 111, 196, 21, 21, 21, 88, 303, - 117, 203, 204, 158, 85, 249, 120, 166, 119, 189, - 190, 256, 4, 111, 132, 16, 120, 188, 197, 132, - 258, 102, 21, 132, 66, 21, 183, 156, 185, 119, - 187, 188, 186, 186, 186, 281, 119, 239, 195, 192, - 243, 14, 193, 186, 293, 260, 3, 4, 246, 139, - 3, 4, 909, 210, 224, 119, 259, 260, 195, 226, - 4, 271, 193, 211, 281, 4, 140, 3, 4, 234, - 273, 166, 275, 695, 191, 193, 191, 119, 231, 238, - 283, 284, 262, 286, 287, 245, 289, 304, 61, 119, - 201, 280, 272, 273, 269, 193, 299, 277, 209, 210, - 235, 285, 186, 256, 300, 119, 309, 310, 134, 285, - 303, 201, 284, 291, 283, 250, 251, 56, 201, 209, - 210, 303, 281, 303, 211, 78, 209, 210, 245, 286, - 333, 334, 335, 310, 337, 291, 215, 201, 341, 342, - 63, 291, 344, 238, 292, 209, 210, 207, 301, 352, - 353, 245, 269, 291, 247, 280, 359, 1014, 301, 201, - 291, 364, 365, 224, 291, 281, 121, 209, 210, 372, - 224, 201, 375, 291, 280, 1032, 238, 1229, 291, 209, - 210, 104, 291, 294, 224, 1237, 281, 201, 304, 287, - 393, 394, 345, 346, 57, 209, 210, 400, 401, 402, - 192, 404, 345, 346, 294, 292, 341, 342, 830, 238, - 300, 294, 238, 238, 238, 418, 189, 301, 171, 422, - 1400, 14, 15, 1064, 427, 428, 429, 430, 431, 432, + 3, 50, 1439, 1639, 661, 1641, 480, 4, 11, 4, + 1138, 990, 1140, 5, 436, 656, 657, 4, 869, 870, + 871, 3, 4, 5, 446, 5, 3, 4, 4, 32, + 0, 4, 57, 5, 3, 4, 20, 40, 1166, 1167, + 1168, 46, 3, 4, 61, 5, 49, 32, 61, 52, + 3, 4, 55, 3, 4, 34, 59, 4, 16, 62, + 3, 4, 21, 66, 67, 40, 40, 70, 32, 32, + 73, 74, 3, 4, 77, 32, 3, 4, 81, 5, + 17, 932, 5, 86, 70, 14, 15, 5, 13, 27, + 61, 21, 121, 4, 4, 121, 99, 100, 101, 102, + 103, 104, 961, 121, 164, 964, 3, 4, 21, 5, + 48, 50, 45, 51, 4, 5, 5, 120, 14, 15, + 212, 4, 981, 2671, 62, 5, 59, 99, 107, 4, + 3, 4, 61, 105, 192, 21, 111, 111, 192, 36, + 4, 5, 3, 4, 131, 149, 17, 85, 81, 120, + 156, 31, 155, 168, 121, 66, 113, 66, 103, 5, + 99, 176, 4, 36, 102, 61, 283, 100, 33, 108, + 165, 17, 2720, 138, 4, 178, 66, 183, 4, 16, + 183, 5, 168, 66, 117, 156, 12, 120, 21, 61, + 4, 249, 3, 4, 17, 3, 4, 136, 88, 196, + 225, 4, 256, 144, 264, 261, 203, 204, 119, 238, + 175, 303, 268, 146, 147, 240, 193, 243, 193, 193, + 238, 134, 21, 202, 66, 186, 183, 98, 185, 119, + 187, 188, 138, 186, 27, 132, 119, 195, 195, 192, + 243, 186, 239, 186, 293, 192, 3, 4, 120, 139, + 234, 140, 909, 210, 258, 119, 259, 260, 244, 132, + 189, 190, 230, 188, 281, 198, 271, 253, 281, 175, + 273, 238, 275, 695, 211, 208, 301, 119, 231, 238, + 283, 284, 192, 286, 287, 245, 289, 304, 263, 119, + 201, 304, 284, 189, 190, 280, 299, 5, 209, 210, + 226, 272, 249, 256, 291, 119, 309, 310, 238, 285, + 27, 201, 285, 283, 291, 310, 280, 280, 201, 209, + 210, 303, 291, 303, 247, 238, 209, 210, 300, 286, + 333, 334, 335, 262, 337, 268, 269, 201, 341, 342, + 301, 291, 14, 272, 273, 209, 210, 344, 301, 352, + 353, 269, 238, 266, 293, 292, 359, 1014, 301, 201, + 291, 364, 365, 224, 291, 21, 262, 209, 210, 372, + 245, 201, 375, 166, 303, 1032, 272, 273, 1229, 209, + 210, 277, 61, 294, 345, 346, 1237, 201, 211, 61, + 393, 394, 345, 346, 291, 209, 210, 400, 401, 402, + 272, 404, 345, 346, 294, 238, 339, 303, 830, 117, + 300, 294, 350, 224, 61, 418, 224, 19, 291, 422, + 40, 1400, 12, 1064, 427, 428, 429, 430, 431, 432, 294, 434, 343, 436, 437, 438, 300, 348, 349, 238, - 266, 1568, 238, 446, 447, 230, 310, 1427, 192, 40, - 5, 873, 294, 343, 1095, 285, 78, 347, 348, 349, - 343, 345, 346, 17, 294, 348, 349, 224, 61, 350, - 1450, 207, 37, 4, 138, 66, 215, 4, 435, 343, - 294, 45, 47, 30, 348, 349, 83, 61, 243, 262, - 50, 34, 3, 4, 40, 59, 249, 500, 501, 272, - 37, 343, 99, 30, 12, 249, 348, 349, 99, 74, - 47, 175, 235, 343, 105, 518, 261, 81, 348, 349, - 111, 66, 1370, 268, 64, 1373, 66, 250, 251, 343, - 303, 580, 121, 40, 348, 349, 100, 74, 129, 99, - 24, 25, 545, 4, 98, 53, 120, 94, 108, 171, - 88, 14, 15, 117, 54, 121, 120, 4, 149, 63, - 14, 15, 225, 71, 107, 111, 61, 524, 130, 61, - 61, 4, 621, 164, 577, 27, 136, 240, 61, 40, - 61, 168, 146, 147, 149, 5, 4, 3, 4, 176, - 90, 640, 100, 124, 5, 121, 189, 190, 61, 230, - 104, 0, 559, 194, 111, 167, 17, 61, 121, 612, - 118, 31, 149, 97, 122, 162, 4, 27, 341, 342, - 185, 1278, 202, 56, 12, 120, 134, 249, 120, 120, - 22, 268, 1289, 160, 198, 638, 121, 120, 301, 120, - 140, 181, 233, 59, 208, 5, 14, 193, 185, 238, - 111, 4, 655, 21, 2288, 658, 247, 49, 26, 202, - 52, 4, 224, 55, 156, 33, 231, 258, 5, 262, - 5, 245, 238, 31, 205, 61, 19, 680, 40, 272, - 273, 684, 685, 686, 687, 212, 193, 690, 253, 692, - 82, 694, 695, 696, 285, 1117, 5, 40, 272, 239, - 61, 5, 249, 71, 268, 269, 297, 254, 299, 300, - 303, 238, 238, 56, 61, 167, 253, 263, 110, 281, - 193, 113, 771, 288, 121, 238, 189, 190, 61, 2442, - 30, 235, 193, 293, 120, 189, 190, 3, 4, 304, - 0, 281, 5, 88, 4, 245, 250, 251, 339, 111, - 290, 14, 15, 238, 258, 2468, 263, 167, 101, 120, - 763, 764, 342, 766, 767, 768, 769, 304, 348, 4, - 350, 116, 224, 120, 66, 339, 119, 272, 781, 782, - 272, 272, 215, 291, 245, 788, 789, 120, 117, 272, - 1642, 272, 160, 161, 162, 163, 164, 165, 61, 262, - 168, 169, 170, 171, 118, 808, 809, 810, 262, 272, - 273, 283, 1234, 156, 224, 22, 105, 168, 272, 273, - 33, 70, 825, 826, 827, 61, 829, 830, 831, 6, - 833, 193, 4, 5, 226, 61, 5, 341, 342, 184, - 303, 238, 49, 89, 66, 52, 1973, 1974, 1975, 303, - 193, 854, 16, 856, 199, 2568, 2569, 66, 201, 2572, - 160, 2574, 231, 866, 1844, 257, 209, 210, 282, 5, - 873, 874, 215, 2586, 2587, 82, 879, 220, 2591, 2592, - 1860, 2570, 2595, 66, 120, 89, 272, 2600, 2601, 257, - 258, 283, 895, 896, 120, 5, 1744, 854, 81, 2588, - 903, 904, 905, 110, 72, 194, 113, 129, 911, 1889, - 31, 272, 212, 916, 259, 4, 1764, 285, 967, 168, - 56, 4, 3, 4, 927, 272, 189, 190, 5, 65, - 196, 1779, 154, 2646, 1782, 105, 2649, 5, 238, 272, - 943, 2654, 1790, 3, 4, 1793, 4, 2660, 3, 4, - 4, 294, 2665, 1801, 5, 300, 1804, 17, 247, 40, - 328, 329, 330, 1811, 5, 310, 309, 310, 311, 312, - 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, - 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, - 333, 334, 335, 336, 337, 244, 3, 4, 181, 262, - 343, 3, 4, 4, 253, 348, 349, 1010, 2444, 272, - 273, 233, 1992, 5, 277, 3, 4, 149, 5, 226, - 4, 2710, 5, 4, 194, 5, 2739, 2716, 1031, 2742, - 111, 14, 15, 4, 3, 4, 272, 1040, 97, 28, - 303, 3, 4, 167, 120, 5, 272, 4, 5, 2762, - 257, 1054, 40, 1056, 14, 15, 239, 5, 1061, 1062, - 1063, 283, 4, 2776, 4, 5, 2779, 2780, 1071, 3, - 4, 1074, 5, 1076, 3, 4, 5, 247, 61, 215, - 269, 14, 15, 138, 2773, 217, 2775, 42, 43, 1092, - 59, 1094, 4, 83, 4, 1098, 1099, 59, 281, 4, - 224, 61, 1954, 26, 3, 4, 40, 290, 4, 99, - 1113, 1114, 193, 5, 1117, 1118, 1119, 3, 4, 28, - 175, 123, 1125, 111, 1127, 4, 258, 1130, 61, 1132, - 4, 5, 1181, 310, 311, 312, 313, 314, 315, 316, + 1568, 120, 44, 446, 447, 238, 310, 97, 1427, 166, + 207, 873, 294, 343, 1095, 285, 30, 347, 348, 349, + 343, 14, 15, 53, 294, 348, 349, 3, 4, 292, + 121, 1450, 4, 120, 37, 77, 88, 5, 435, 343, + 294, 71, 84, 191, 348, 349, 14, 15, 281, 61, + 167, 111, 94, 95, 4, 5, 83, 500, 501, 101, + 6, 343, 3, 4, 40, 66, 348, 349, 61, 17, + 100, 1370, 99, 343, 1373, 518, 27, 189, 348, 349, + 4, 238, 124, 59, 105, 230, 3, 4, 118, 343, + 63, 580, 122, 61, 348, 349, 22, 245, 27, 141, + 56, 27, 545, 5, 134, 4, 30, 224, 120, 4, + 60, 3, 4, 155, 156, 56, 66, 121, 37, 66, + 162, 269, 48, 49, 281, 51, 52, 524, 47, 4, + 61, 104, 621, 193, 577, 111, 62, 268, 3, 4, + 182, 130, 238, 14, 15, 40, 160, 238, 74, 75, + 262, 640, 124, 272, 56, 74, 82, 56, 245, 85, + 272, 78, 559, 65, 114, 0, 3, 4, 4, 612, + 260, 36, 289, 194, 120, 40, 102, 40, 220, 129, + 133, 1278, 129, 109, 110, 272, 31, 113, 5, 120, + 61, 303, 1289, 143, 197, 638, 189, 190, 212, 149, + 5, 3, 4, 263, 154, 5, 14, 154, 5, 63, + 158, 2287, 655, 21, 5, 658, 111, 193, 26, 3, + 4, 189, 190, 4, 238, 33, 247, 28, 37, 271, + 149, 61, 193, 205, 238, 224, 160, 680, 47, 281, + 61, 684, 685, 686, 687, 171, 111, 690, 111, 692, + 104, 694, 695, 696, 171, 1117, 40, 207, 61, 215, + 272, 291, 235, 71, 202, 74, 185, 132, 310, 262, + 124, 63, 4, 224, 215, 56, 226, 250, 251, 272, + 273, 231, 771, 233, 30, 258, 233, 5, 212, 117, + 120, 66, 281, 246, 262, 224, 14, 15, 193, 120, + 226, 64, 121, 66, 272, 273, 232, 257, 258, 277, + 303, 287, 104, 215, 238, 265, 215, 120, 189, 190, + 763, 764, 248, 766, 767, 768, 769, 111, 193, 87, + 193, 257, 249, 283, 253, 303, 283, 168, 781, 782, + 149, 272, 28, 61, 118, 788, 789, 283, 94, 150, + 245, 1642, 160, 161, 162, 163, 164, 165, 284, 285, + 168, 169, 170, 171, 33, 808, 809, 810, 341, 342, + 207, 172, 1234, 5, 27, 176, 185, 87, 66, 305, + 61, 235, 825, 826, 827, 304, 829, 830, 831, 339, + 833, 262, 105, 81, 196, 89, 250, 251, 156, 26, + 16, 272, 273, 2441, 342, 1973, 1974, 1975, 261, 193, + 348, 854, 350, 856, 66, 268, 162, 27, 181, 238, + 14, 15, 231, 866, 350, 1844, 291, 228, 88, 2467, + 873, 874, 303, 61, 215, 231, 879, 61, 282, 120, + 89, 1860, 272, 235, 253, 1744, 156, 4, 5, 257, + 258, 272, 895, 896, 14, 15, 116, 854, 250, 251, + 903, 904, 905, 72, 150, 1764, 267, 61, 911, 272, + 1889, 189, 190, 916, 275, 276, 239, 285, 967, 288, + 1779, 194, 78, 1782, 927, 112, 172, 341, 342, 31, + 176, 1790, 120, 181, 1793, 304, 120, 124, 3, 4, + 943, 61, 1801, 249, 5, 1804, 4, 12, 254, 4, + 42, 43, 1811, 61, 167, 40, 3, 4, 281, 93, + 328, 329, 330, 5, 184, 44, 5, 290, 4, 2567, + 2568, 14, 15, 2571, 247, 2573, 5, 111, 97, 199, + 6, 66, 228, 5, 262, 2569, 5, 2585, 2586, 341, + 342, 239, 2590, 2591, 272, 273, 2594, 167, 5, 277, + 4, 2599, 2600, 2587, 130, 4, 2443, 1010, 87, 117, + 4, 224, 120, 1992, 99, 171, 22, 4, 61, 206, + 105, 267, 3, 4, 4, 303, 111, 54, 1031, 275, + 276, 272, 219, 281, 5, 189, 190, 1040, 19, 259, + 120, 167, 290, 49, 129, 5, 52, 2645, 156, 55, + 2648, 1054, 186, 1056, 224, 2653, 3, 4, 1061, 1062, + 1063, 2659, 88, 90, 149, 269, 2664, 4, 1071, 189, + 190, 1074, 19, 1076, 4, 56, 82, 169, 170, 164, + 300, 26, 4, 191, 272, 24, 25, 82, 272, 1092, + 310, 1094, 4, 249, 120, 1098, 1099, 149, 224, 4, + 5, 3, 4, 1954, 110, 197, 4, 113, 262, 194, + 1113, 1114, 191, 140, 1117, 1118, 1119, 0, 272, 273, + 101, 4, 1125, 5, 1127, 2709, 4, 1130, 196, 1132, + 82, 2715, 1181, 4, 242, 3, 4, 245, 4, 5, + 2738, 4, 262, 2741, 3, 4, 189, 190, 233, 303, + 3, 4, 272, 273, 101, 281, 151, 59, 97, 12, + 4, 269, 247, 2761, 272, 217, 1169, 112, 3, 4, + 1173, 2022, 1175, 258, 282, 156, 1179, 2775, 4, 124, + 2778, 2779, 5, 303, 5, 3, 4, 9, 2772, 83, + 2774, 1194, 11, 1196, 2045, 1198, 1199, 1200, 1201, 151, + 285, 5, 1205, 1206, 268, 99, 258, 4, 5, 156, + 1213, 168, 297, 158, 299, 300, 4, 1220, 245, 262, + 226, 1224, 1225, 1226, 4, 5, 22, 222, 223, 272, + 273, 1234, 1235, 4, 215, 1238, 168, 1194, 606, 220, + 2099, 176, 237, 2222, 296, 1248, 186, 1250, 4, 2108, + 1253, 257, 192, 49, 339, 123, 52, 195, 2117, 2238, + 303, 206, 3, 4, 2243, 3, 4, 424, 425, 5, + 222, 223, 195, 220, 219, 5, 17, 283, 14, 15, + 174, 3, 4, 278, 1241, 237, 82, 5, 123, 4, + 187, 231, 660, 1296, 195, 1298, 187, 665, 1301, 1302, + 1257, 1304, 66, 1306, 3, 4, 3, 4, 5, 1312, + 224, 1314, 14, 15, 110, 66, 256, 113, 1321, 66, + 138, 59, 5, 217, 5, 61, 278, 4, 4, 310, + 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, + 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, + 331, 332, 333, 334, 335, 336, 337, 175, 252, 61, + 59, 301, 4, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, - 337, 150, 3, 4, 296, 289, 1169, 82, 424, 425, - 1173, 2023, 1175, 3, 4, 82, 1179, 111, 14, 15, - 4, 5, 12, 172, 174, 196, 60, 176, 4, 112, - 4, 1194, 66, 1196, 2046, 1198, 1199, 1200, 1201, 14, - 15, 124, 1205, 1206, 14, 15, 189, 190, 4, 5, - 1213, 3, 4, 4, 169, 170, 4, 1220, 5, 5, - 12, 1224, 1225, 1226, 123, 61, 9, 217, 268, 189, - 190, 1234, 1235, 11, 5, 1238, 151, 1194, 606, 228, - 114, 150, 197, 2223, 151, 1248, 61, 1250, 168, 26, - 1253, 61, 2100, 4, 176, 129, 189, 190, 4, 2239, - 19, 2109, 252, 172, 2244, 3, 4, 176, 168, 143, - 2118, 9, 10, 11, 4, 149, 195, 195, 267, 262, - 154, 5, 123, 206, 1241, 35, 275, 276, 5, 272, - 273, 4, 660, 1296, 277, 1298, 219, 665, 1301, 1302, - 1257, 1304, 262, 1306, 3, 4, 5, 222, 223, 1312, - 195, 1314, 272, 273, 187, 222, 223, 277, 1321, 228, - 303, 187, 237, 3, 4, 5, 66, 7, 8, 262, - 237, 66, 66, 207, 224, 112, 3, 4, 5, 272, - 273, 5, 101, 303, 277, 14, 15, 124, 225, 5, - 4, 4, 226, 189, 190, 4, 106, 231, 267, 233, - 3, 4, 5, 278, 7, 8, 275, 276, 3, 4, - 303, 278, 7, 8, 189, 190, 195, 127, 128, 189, - 190, 158, 87, 257, 258, 135, 5, 87, 5, 4, - 4, 265, 61, 1396, 5, 1398, 1399, 156, 5, 4, - 87, 5, 99, 153, 17, 2436, 4, 2259, 2439, 283, - 2441, 5, 4, 163, 17, 17, 2268, 1420, 4, 4, - 4, 1424, 97, 2454, 2455, 5, 262, 5, 4, 206, - 5, 5, 87, 5, 3, 4, 272, 273, 1395, 4, - 2471, 5, 219, 5, 812, 1448, 1449, 262, 4, 4, - 19, 5, 262, 5, 5, 1458, 4, 272, 273, 1462, - 2440, 220, 272, 273, 4, 339, 1469, 303, 2320, 12, - 5, 2323, 4, 2453, 2326, 12, 2328, 4, 2458, 4, - 1483, 4, 4, 1905, 5, 1488, 5, 56, 303, 1492, - 5, 1494, 1495, 303, 1497, 1498, 1499, 165, 1501, 4, - 4, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, - 1513, 1514, 156, 5, 1517, 1518, 1519, 1520, 156, 4, - 189, 190, 285, 5, 1527, 1528, 257, 4, 1531, 1532, - 1533, 257, 101, 1536, 1537, 5, 5, 5, 1960, 186, - 5, 4, 4, 270, 5, 192, 1549, 1550, 5, 1552, - 1553, 310, 311, 312, 313, 314, 315, 316, 317, 318, - 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, - 329, 330, 331, 332, 333, 334, 335, 336, 337, 270, - 2002, 288, 5, 5, 231, 5, 4, 156, 4, 105, - 5, 138, 4, 262, 5, 5, 5, 1600, 1601, 1602, - 5, 5, 1605, 272, 273, 4, 4, 1610, 1611, 256, - 1613, 1614, 1615, 5, 1617, 1618, 5, 1620, 5, 5, - 1623, 1624, 3, 4, 5, 5, 7, 8, 238, 1632, - 238, 44, 105, 46, 303, 5, 5, 1640, 40, 238, - 211, 348, 1645, 1646, 40, 105, 215, 243, 211, 4, - 1653, 220, 66, 1610, 301, 5, 5, 4, 211, 1662, - 4, 211, 5, 76, 5, 5, 80, 5, 4, 1037, - 111, 84, 111, 4, 4, 89, 5, 5, 5, 5, - 5, 4, 6, 5, 5, 99, 4, 38, 5, 5, - 4, 138, 5, 5, 4, 1698, 5, 12, 4, 346, - 4, 12, 4, 4, 38, 5, 4, 0, 5, 238, - 238, 167, 238, 121, 4, 129, 247, 1720, 1721, 207, - 195, 1678, 1725, 1091, 4, 4, 4, 2707, 1731, 142, - 4, 1688, 4, 1101, 5, 149, 1693, 5, 5, 5, - 270, 310, 311, 312, 313, 314, 315, 316, 317, 318, - 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, - 329, 330, 331, 332, 333, 334, 335, 336, 337, 5, - 5, 4, 4, 307, 4, 61, 5, 4, 191, 4, - 194, 5, 5, 5, 238, 238, 2208, 2209, 238, 2211, - 2212, 498, 4, 2215, 2216, 307, 209, 210, 505, 4, - 4, 508, 4, 216, 4, 218, 513, 4, 307, 307, - 517, 4, 4, 12, 5, 5, 5, 224, 224, 233, - 5, 224, 53, 224, 224, 4, 6, 5, 5, 4, - 4, 117, 245, 5, 120, 1838, 5, 1840, 4, 1842, - 71, 1209, 1210, 4, 258, 5, 5, 4, 4, 270, - 5, 5, 4, 270, 5, 2277, 5, 88, 1861, 1862, - 1863, 1864, 1865, 1866, 1867, 1868, 1869, 4, 4, 100, - 156, 5, 4, 4, 4, 582, 5, 5, 5, 5, - 5, 4, 1885, 297, 1887, 299, 5, 118, 4, 6, - 5, 122, 5, 5, 4, 4, 4, 310, 5, 5, - 5, 1904, 1905, 134, 5, 191, 4, 1910, 4, 270, - 5, 5, 5, 5, 4, 4, 1919, 1920, 1921, 1922, + 337, 225, 44, 1396, 46, 1398, 1399, 3, 4, 87, + 5, 123, 195, 9, 10, 11, 346, 2258, 5, 14, + 15, 3, 4, 3, 4, 87, 2267, 1420, 3, 4, + 5, 1424, 2435, 5, 76, 2438, 4, 2440, 4, 4, + 226, 5, 84, 3, 4, 5, 5, 5, 1395, 99, + 2453, 2454, 4, 4, 812, 1448, 1449, 5, 40, 4, + 40, 17, 17, 189, 190, 1458, 61, 2470, 17, 1462, + 2439, 257, 4, 4, 97, 5, 1469, 5, 2319, 87, + 4, 2322, 5, 2452, 2325, 5, 2327, 87, 2457, 5, + 1483, 4, 4, 1905, 5, 1488, 5, 189, 190, 1492, + 142, 1494, 1495, 4, 1497, 1498, 1499, 4, 1501, 66, + 5, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, + 1513, 1514, 19, 80, 1517, 1518, 1519, 1520, 5, 111, + 5, 111, 89, 4, 1527, 1528, 262, 4, 1531, 1532, + 1533, 5, 99, 1536, 1537, 4, 272, 273, 1960, 191, + 12, 277, 12, 4, 4, 4, 1549, 1550, 4, 1552, + 1553, 5, 35, 288, 5, 5, 165, 209, 210, 4, + 262, 156, 129, 156, 216, 4, 218, 303, 5, 4, + 272, 273, 3, 4, 5, 257, 7, 8, 257, 2001, + 285, 91, 149, 5, 189, 190, 3, 4, 5, 99, + 7, 8, 4, 245, 101, 105, 5, 1600, 1601, 1602, + 5, 303, 1605, 5, 5, 4, 4, 1610, 1611, 5, + 1613, 1614, 1615, 348, 1617, 1618, 126, 1620, 5, 270, + 1623, 1624, 270, 106, 5, 5, 5, 194, 4, 1632, + 3, 4, 5, 4, 7, 8, 5, 1640, 53, 149, + 5, 5, 1645, 1646, 127, 128, 5, 157, 5, 156, + 1653, 5, 135, 1610, 4, 4, 71, 262, 310, 1662, + 3, 4, 105, 5, 7, 8, 233, 272, 273, 1037, + 153, 5, 277, 88, 4, 238, 5, 5, 238, 5, + 163, 138, 105, 5, 194, 100, 238, 40, 40, 105, + 243, 258, 202, 211, 211, 1698, 5, 4, 303, 5, + 5, 4, 211, 118, 4, 211, 5, 122, 5, 5, + 5, 4, 4, 220, 111, 5, 111, 1720, 1721, 134, + 5, 1678, 1725, 1091, 5, 4, 4, 2706, 1731, 5, + 297, 1688, 299, 1101, 5, 5, 1693, 247, 5, 4, + 12, 5, 5, 4, 12, 5, 5, 5, 258, 6, + 4, 4, 4, 4, 4, 38, 38, 5, 173, 4, + 0, 5, 238, 498, 274, 238, 138, 238, 4, 247, + 505, 207, 4, 508, 167, 121, 195, 4, 513, 4, + 4, 4, 517, 5, 5, 2207, 2208, 5, 2210, 2211, + 270, 5, 2214, 2215, 5, 5, 4, 4, 238, 5, + 4, 4, 4, 310, 311, 312, 313, 314, 315, 316, + 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, + 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, + 337, 5, 5, 5, 238, 1838, 4, 1840, 238, 1842, + 307, 1209, 1210, 307, 4, 4, 4, 582, 4, 4, + 4, 4, 307, 5, 2276, 307, 5, 224, 1861, 1862, + 1863, 1864, 1865, 1866, 1867, 1868, 1869, 5, 224, 224, + 5, 4, 4, 224, 5, 5, 224, 5, 5, 4, + 4, 32, 1885, 4, 1887, 5, 5, 4, 4, 12, + 5, 5, 4, 6, 5, 5, 4, 303, 5, 4, + 4, 1904, 1905, 4, 4, 351, 5, 1910, 5, 5, + 5, 5, 4, 351, 5, 4, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 5, 5, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, - 5, 1944, 173, 1946, 1947, 1948, 5, 2604, 4, 4, - 303, 5, 5, 5, 5, 4, 242, 1960, 1961, 245, - 4, 351, 5, 5, 5, 5, 4, 4, 351, 5, - 4, 4, 4, 91, 4, 351, 5, 5, 5, 5, - 5, 99, 4, 269, 691, 960, 272, 105, 4, 4, - 1993, 698, 5, 1996, 4, 1998, 282, 2000, 5, 2002, - 2003, 5, 2005, 2425, 4, 4, 4, 2429, 126, 2012, - 2013, 4, 4, 379, 5, 5, 2019, 2674, 2021, 4, - 4, 4, 2025, 1391, 5, 2028, 5, 5, 5, 1397, - 5, 149, 5, 5, 4, 4, 283, 5, 5, 157, - 5, 4, 4, 2465, 5, 5, 5, 2732, 5, 4, - 4, 1419, 5, 5, 1422, 5, 5, 4, 1426, 4, - 4, 19, 5, 4, 4, 4, 4, 4, 4, 4, - 2073, 4, 4, 4, 2031, 4, 194, 4, 4, 1447, - 4, 351, 351, 4, 202, 1453, 44, 351, 351, 351, - 4, 6, 5, 1461, 5, 4, 1464, 5, 4, 283, - 5, 4, 351, 5, 5, 1473, 1474, 5, 815, 4, - 4, 4, 4, 2070, 4, 822, 1484, 4, 4, 77, - 4, 2613, 2171, 4, 4, 4, 84, 5, 5, 247, - 5, 5, 4, 2502, 5, 5, 94, 95, 4, 4, - 258, 5, 5, 101, 5, 4, 4, 423, 5, 32, - 4, 4, 4, 4, 2234, 5, 274, 5, 4, 4, - 867, 868, 4, 4, 4, 872, 124, 5, 875, 4, - 2602, 5, 5, 4, 2177, 4, 4, 2674, 5, 5, - 887, 5, 4, 141, 5, 2188, 2189, 2190, 2191, 2192, - 2193, 2194, 2195, 2196, 2197, 2198, 5, 155, 156, 5, - 4, 2204, 4, 2670, 162, 2208, 2209, 5, 2211, 2212, - 2684, 2685, 2215, 2216, 2217, 2218, 2219, 2220, 2221, 2222, - 5, 2224, 2225, 2226, 182, 5, -1, -1, 730, -1, - 113, -1, -1, -1, -1, -1, -1, 2240, 2241, 2242, - 2243, -1, 2245, 2246, 2247, 2248, 2249, 2250, -1, 2252, - -1, -1, 2255, 2256, -1, -1, -1, -1, -1, -1, - -1, -1, 220, -1, -1, -1, -1, -1, 22, -1, - -1, 2274, -1, 27, 2277, 2278, -1, -1, -1, 2282, - -1, 988, -1, 2286, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 48, 49, -1, 51, 52, 182, - -1, 184, 185, -1, 187, 188, -1, -1, 62, -1, - -1, -1, -1, 271, -1, -1, -1, -1, -1, -1, - 74, 75, -1, 281, -1, -1, -1, -1, 82, 2332, - -1, 85, 215, -1, -1, 55, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 66, -1, 102, -1, - 233, 234, 310, -1, -1, 109, 110, -1, -1, 113, - -1, -1, -1, 1338, -1, -1, -1, -1, -1, -1, - -1, 91, 92, -1, -1, 1350, -1, -1, -1, 99, - -1, -1, -1, -1, -1, 105, -1, -1, -1, -1, - -1, 274, -1, 1368, 1369, -1, -1, -1, -1, -1, - -1, 2404, -1, 286, -1, 2408, 126, -1, -1, 129, - -1, -1, -1, -1, -1, 2418, 2419, 171, -1, -1, - -1, 2424, 2425, 306, -1, 2428, 2429, -1, -1, 149, - -1, 2434, -1, -1, 2437, 2438, -1, 157, -1, -1, - -1, -1, -1, -1, -1, 948, -1, -1, -1, -1, - -1, -1, -1, 2456, 2457, -1, 2459, 2460, 2461, 2462, - 2463, -1, 2465, 2466, -1, -1, -1, 2470, -1, -1, - -1, -1, 226, -1, 194, 1182, -1, 980, 232, 2482, - -1, -1, 202, -1, 2487, -1, 1854, -1, -1, -1, - -1, -1, -1, -1, 248, -1, -1, -1, -1, -1, - 2503, -1, -1, 257, -1, 1212, -1, -1, -1, -1, - 1217, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 1227, -1, 1890, -1, -1, -1, -1, 247, -1, -1, - 284, 285, 415, -1, -1, -1, -1, -1, 258, -1, - -1, -1, 2545, 426, -1, -1, -1, 2550, -1, 2552, - -1, 305, 435, -1, 274, 2558, -1, -1, -1, -1, - -1, -1, -1, 283, -1, 285, -1, -1, 2571, -1, + 5, 1944, 4, 1946, 1947, 1948, 2603, 4, 351, 5, + 4, 270, 5, 5, 5, 4, 691, 1960, 1961, 4, + 270, 5, 113, 698, 5, 5, 5, 4, 4, 270, + 5, 5, 5, 5, 4, 6, 4, 351, 5, 5, + 5, 5, 4, 4, 2731, 5, 5, 5, 5, 4, + 1993, 4, 1995, 5, 1997, 4, 1999, 4, 2001, 2002, + 4, 2004, 2424, 4, 351, 5, 2428, 5, 2011, 2012, + 5, 5, 5, 4, 4, 2018, 2673, 2020, 5, 4, + 4, 2024, 5, 1391, 2027, 5, 4, 4, 4, 1397, + 4, 182, 4, 184, 185, 5, 187, 188, 5, 4, + 4, 4, 2464, 5, 5, 5, 5, 5, 5, 5, + 4, 1419, 4, 4, 1422, 5, 5, 5, 1426, 4, + 351, 5, 5, 5, 215, 5, 4, 4, 4, 2072, + 5, 5, 5, 2030, 5, 4, 351, 5, 4, 1447, + 815, 4, 233, 234, 4, 1453, 4, 822, 4, 4, + 4, 4, 4, 1461, 4, 4, 1464, 4, 4, 4, + 4, 4, 351, 4, 4, 1473, 1474, 5, 5, 5, + 4, 4, 2069, 5, 5, 5, 1484, 5, 4, 4, + 4, 2170, 4, 274, 4, 4, 4, 4, 4, 4, + 2612, 5, 867, 868, 4, 286, 5, 872, 5, 5, + 875, 4, 283, 5, 5, 4, 6, 5, 5, 4, + 351, 5, 887, 4, 4, 306, 5, 4, 4, 4, + 4, 283, 5, 5, 4, 4, 4, 4, 4, 2501, + 5, 4, 4, 2176, 5, 5, 4, 4, 2233, 5, + 5, 5, 4, 4, 2187, 2188, 2189, 2190, 2191, 2192, + 2193, 2194, 2195, 2196, 2197, 5, 5, 5, 4, 379, + 2203, 5, 5, 5, 2207, 2208, 423, 2210, 2211, 2683, + 2684, 2214, 2215, 2216, 2217, 2218, 2219, 2220, 2221, 2601, + 2223, 2224, 2225, 2673, 2669, -1, 730, 948, -1, -1, + -1, -1, -1, -1, -1, -1, 2239, 2240, 2241, 2242, + -1, 2244, 2245, 2246, 2247, 2248, 2249, -1, 2251, -1, + -1, 2254, 2255, 988, -1, -1, -1, -1, -1, 980, + -1, -1, -1, -1, 415, -1, -1, -1, -1, -1, + 2273, -1, -1, 2276, 2277, 426, -1, -1, 2281, -1, + -1, -1, 2285, -1, 435, -1, 2023, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 55, -1, -1, + -1, -1, 2039, 2040, 2041, -1, -1, 2044, 66, 2046, + 2047, -1, -1, 2050, 2051, 2052, -1, -1, 2055, 2056, + -1, -1, 2059, -1, 2061, 2062, -1, 2064, 2331, -1, + -1, -1, -1, 91, 92, -1, -1, -1, -1, -1, + -1, 99, -1, -1, -1, -1, -1, 105, -1, -1, + -1, -1, 503, 504, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 516, -1, -1, 126, -1, + 521, 129, -1, -1, -1, -1, -1, -1, -1, 530, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 149, -1, -1, -1, -1, -1, -1, -1, 157, + 2403, -1, -1, -1, 2407, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 2417, 2418, -1, -1, -1, -1, + 2423, 2424, -1, -1, 2427, 2428, -1, -1, -1, -1, + 2433, -1, -1, 2436, 2437, 2172, 194, -1, 2175, -1, + -1, -1, -1, 2180, 202, -1, 2183, 1182, 599, 600, + 601, 602, 2455, 2456, -1, 2458, 2459, 2460, 2461, 2462, + -1, 2464, 2465, -1, -1, 2202, 2469, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 1212, 2481, -1, + -1, -1, 1217, 2486, -1, -1, 1854, -1, -1, 247, + -1, -1, 1227, -1, -1, -1, -1, -1, -1, 2502, + 258, -1, -1, -1, -1, -1, -1, -1, 659, -1, + -1, -1, -1, -1, -1, -1, 274, -1, -1, -1, + -1, -1, 1890, -1, -1, 283, -1, 285, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 2544, -1, -1, -1, -1, 2549, -1, 2551, -1, + -1, -1, 2289, -1, 2557, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 2570, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 339, -1, 2320, 2633, 2588, -1, -1, -1, 2592, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 1322, 1323, 1324, -1, -1, -1, -1, -1, 2612, + -1, 1332, 1333, 1334, -1, -1, -1, -1, 1339, 1340, + 1341, -1, -1, 1344, 1345, -1, 1347, 1348, -1, -1, + -1, -1, -1, -1, 2637, -1, -1, -1, -1, 2642, + -1, 2644, -1, -1, -1, -1, -1, -1, 2651, -1, + -1, -1, -1, 2656, -1, -1, 1377, 1378, 2661, 4, + 1381, 1382, 2399, -1, -1, 816, -1, -1, -1, -1, + -1, -1, -1, -1, 19, -1, -1, 828, -1, -1, + 2683, 2684, 2419, -1, -1, -1, -1, -1, -1, 2426, + -1, -1, 2429, 2430, -1, 40, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 2710, -1, -1, + 2713, 56, -1, 2716, 865, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 2727, 2728, 2729, 2730, 1463, -1, + -1, -1, -1, -1, -1, -1, 2739, -1, -1, 2742, + -1, -1, -1, -1, 2701, -1, 2749, -1, 2751, -1, + -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 119, -1, 2733, -1, -1, 2736, + -1, -1, -1, -1, -1, -1, -1, 938, 1523, -1, + -1, -1, -1, -1, 1529, -1, 20, 21, 22, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 2545, -1, + -1, 156, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 48, 49, -1, 2564, 52, -1, + -1, -1, -1, -1, -1, 59, -1, -1, 62, -1, + -1, -1, 66, -1, -1, -1, -1, -1, 193, -1, + 74, 75, -1, -1, -1, -1, 201, -1, 82, -1, + -1, -1, 1013, -1, 209, 210, -1, -1, -1, -1, + 215, 1606, -1, -1, -1, 220, -1, 1612, -1, -1, + -1, -1, -1, -1, -1, 109, 110, -1, -1, 113, + -1, 2259, -1, -1, -1, -1, -1, -1, 2635, 2636, + -1, 2638, 1637, 2640, 2641, 129, 2643, -1, 1643, -1, + -1, -1, -1, -1, 1065, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 1075, 149, -1, -1, -1, -1, + -1, 960, -1, -1, -1, -1, -1, 1672, -1, -1, + -1, -1, -1, -1, -1, 1680, -1, 171, -1, 294, + -1, -1, -1, -1, 4, 5, 180, -1, -1, 2696, + -1, -1, -1, -1, 309, 310, 311, 312, 313, 314, + 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, + 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, + 335, 336, 337, -1, -1, -1, -1, -1, 343, -1, + 224, -1, 226, 348, 349, -1, 2743, -1, 232, 233, + 60, -1, -1, -1, 1735, -1, 66, -1, -1, -1, + -1, -1, -1, 73, 248, 75, 1177, 1748, -1, -1, + 80, -1, -1, 83, 258, -1, -1, 1758, -1, 89, + -1, -1, -1, 1194, -1, -1, -1, -1, -1, 99, + -1, -1, -1, -1, -1, 105, -1, -1, -1, 283, + -1, 285, -1, -1, 114, -1, -1, 1218, -1, -1, + -1, 295, -1, -1, -1, -1, -1, 1228, -1, 129, + -1, 305, -1, 2451, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 1247, -1, -1, 149, + 1835, -1, -1, 2471, -1, -1, 1257, 2475, -1, 1830, + -1, 1262, -1, -1, 164, 339, 4, -1, -1, -1, + -1, -1, 1857, 173, 174, -1, -1, -1, -1, -1, + -1, 19, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 194, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 1891, 1892, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 217, 56, -1, + -1, -1, -1, 1908, 1909, -1, -1, -1, 1913, 1914, + -1, 231, -1, 233, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 247, -1, -1, + -1, -1, 252, -1, -1, -1, -1, -1, 258, -1, + -1, -1, -1, 101, -1, 265, -1, -1, 1953, -1, + -1, 1956, 1957, -1, -1, -1, -1, -1, -1, 1964, + -1, -1, -1, 283, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 1395, -1, 296, 297, -1, 299, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 6, -1, -1, 1998, -1, -1, -1, -1, 156, -1, + -1, -1, -1, -1, 1425, -1, -1, -1, -1, 2014, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 2634, 2589, -1, -1, -1, - 2593, -1, -1, -1, -1, -1, 350, -1, -1, -1, + -1, -1, 2037, 1454, -1, -1, 1457, 2042, -1, 1338, + -1, -1, -1, 2048, -1, -1, 1467, 1468, 2053, -1, + -1, 1350, 2057, -1, 1475, 2060, -1, 215, 2063, -1, + 2065, 1482, 220, -1, -1, -1, -1, -1, -1, 1368, + 1369, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 2722, -1, -1, -1, -1, -1, + -1, 2082, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 1522, -1, -1, 1525, 1526, -1, -1, -1, -1, + -1, -1, -1, 1534, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 2122, 2123, 2124, 2125, 2126, -1, 2128, 2129, -1, + -1, -1, 2133, 2134, 2135, 2136, 2137, -1, 2139, 2140, + -1, -1, 310, 311, 312, 313, 314, 315, 316, 317, + 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, + 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 1610, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 2613, -1, -1, -1, -1, -1, -1, -1, -1, 339, - 503, 504, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 516, -1, 2638, -1, -1, 521, -1, - 2643, -1, 2645, -1, -1, -1, -1, 530, -1, 2652, - -1, -1, -1, -1, 2657, -1, -1, -1, -1, 2662, + -1, -1, -1, -1, -1, -1, -1, 1628, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 1644, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 1659, -1, + 1661, -1, -1, -1, -1, 2250, -1, -1, -1, -1, + 1671, -1, -1, 1674, -1, 1676, 1677, 1678, 1679, -1, + -1, 1682, -1, -1, 1685, -1, -1, 1688, 1689, -1, + 1691, 1692, 1693, 1694, -1, 1696, 1697, -1, -1, -1, + -1, 1702, 1703, 1704, -1, -1, 1707, 1708, -1, -1, + -1, -1, 1713, 1714, 310, 311, 312, 313, 314, 315, + 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, + 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, + 336, 337, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 2684, 2685, -1, -1, -1, 3, 4, -1, -1, + -1, -1, -1, 2334, -1, -1, 2337, 2338, 2339, 2340, + 2341, -1, 2343, 2344, -1, 2346, 2347, 2348, 2349, 2350, + -1, 2352, 2353, -1, 2355, 2356, 2357, 2358, 2359, -1, + 2361, 2362, -1, 2364, -1, -1, 3, 4, -1, -1, + -1, -1, -1, 2374, 2375, -1, -1, -1, -1, -1, + -1, 2396, 19, -1, 2385, -1, -1, 2402, -1, -1, + -1, 2406, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 39, -1, -1, -1, 1837, 2422, -1, -1, + 1841, -1, -1, -1, -1, -1, -1, -1, -1, 56, + -1, -1, 1853, -1, -1, 1856, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 19, -1, -1, -1, -1, -1, 2711, -1, - -1, 2714, -1, -1, 2717, -1, 599, 600, 601, 602, - -1, -1, -1, -1, -1, 2728, 2729, 2730, 2731, -1, - -1, -1, -1, -1, -1, -1, -1, 2740, -1, -1, - 2743, -1, -1, -1, -1, 2702, -1, 2750, -1, 2752, - -1, -1, -1, -1, -1, -1, 1463, -1, -1, -1, + -1, -1, -1, -1, -1, 1754, -1, -1, -1, -1, + -1, -1, -1, 1762, 1763, 1886, -1, -1, -1, -1, + -1, -1, -1, -1, 101, -1, -1, -1, 1777, 1778, + -1, -1, -1, -1, -1, -1, -1, -1, 2493, 1788, + 1789, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 1799, 1800, -1, -1, -1, -1, -1, -1, -1, -1, + 1809, 1810, -1, -1, -1, -1, 1815, -1, -1, -1, + -1, 1942, 2513, -1, -1, -1, 1825, -1, -1, 156, + -1, 2522, -1, -1, -1, -1, -1, -1, -1, -1, + 2531, -1, 2533, -1, -1, -1, 2537, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 659, 2734, -1, 1754, - 2737, -1, -1, -1, 101, -1, -1, 1762, 1763, -1, + -1, -1, -1, -1, -1, -1, 193, -1, -1, -1, + 2575, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 215, -1, + -1, -1, -1, 220, 2015, -1, 16, -1, -1, -1, + -1, -1, -1, 23, 231, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 1777, 1778, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 1788, 1789, -1, 1523, -1, -1, 1322, - 1323, 1324, 1529, -1, 1799, 1800, -1, -1, -1, 1332, - 1333, 1334, -1, -1, 1809, 1810, 1339, 1340, 1341, 156, - 1815, 1344, 1345, -1, 1347, 1348, -1, -1, -1, -1, - 1825, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 1377, 1378, -1, -1, 1381, 1382, + -1, 2622, -1, 2624, -1, 2626, -1, 2058, 2629, -1, + 2631, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 2024, -1, 2260, -1, -1, -1, -1, 1604, -1, 1606, - -1, -1, -1, 220, -1, 1612, 2040, 2041, 2042, -1, - -1, 2045, -1, 2047, 2048, -1, -1, 2051, 2052, 2053, - -1, -1, 2056, 2057, -1, -1, 2060, -1, 2062, 2063, - 1637, 2065, -1, 816, -1, -1, 1643, -1, -1, -1, - -1, -1, -1, -1, -1, 828, -1, -1, -1, -1, + 2665, -1, -1, -1, 291, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 1672, -1, -1, -1, -1, - -1, -1, -1, 1680, -1, -1, -1, -1, -1, -1, - -1, -1, 865, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 310, 311, 312, 313, 314, 315, 316, + -1, 2686, -1, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 2173, - -1, -1, 2176, -1, -1, -1, -1, 2181, -1, -1, - 2184, -1, -1, -1, -1, 938, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 2203, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 2734, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 2452, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 2754, + -1, -1, 2757, 2174, -1, -1, 2177, -1, -1, -1, + -1, -1, -1, -1, 2185, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 2472, -1, -1, -1, 2476, 2084, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 2094, - -1, -1, -1, 2098, 2099, -1, -1, -1, 1835, -1, - 1013, -1, 2107, 2108, -1, -1, -1, 4, -1, -1, - -1, 2116, 2117, 4, 5, -1, -1, 2122, -1, -1, - 1857, -1, 19, -1, -1, -1, 2290, 2132, 2133, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 2143, 2144, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 2154, - -1, -1, 1065, -1, 1891, 1892, -1, 2321, 2163, 56, - 2165, -1, 1075, -1, -1, -1, -1, -1, -1, 60, - -1, 1908, 1909, -1, -1, 66, 1913, 1914, -1, -1, - -1, -1, 73, -1, 75, -1, -1, -1, -1, 80, - -1, -1, 83, -1, -1, -1, -1, -1, 89, -1, - -1, -1, 1735, -1, 101, -1, -1, -1, 99, -1, - -1, -1, -1, -1, 105, 1748, 1953, -1, -1, 1956, - 1957, -1, -1, 114, -1, 1758, -1, 1964, -1, -1, - -1, -1, -1, -1, -1, -1, 2400, -1, 129, -1, + 2201, -1, -1, 2204, 2083, -1, -1, -1, 2209, -1, + -1, 2212, 2213, -1, 2093, -1, -1, -1, 2097, 2098, + -1, -1, -1, -1, -1, 19, -1, 2106, 2107, -1, + -1, -1, -1, -1, -1, -1, 2115, 2116, -1, -1, + -1, 241, 2121, 243, -1, -1, -1, -1, -1, -1, + -1, -1, 2131, 2132, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 2142, 2143, -1, -1, -1, -1, -1, + -1, 65, 66, -1, 2153, 69, -1, -1, -1, -1, + -1, -1, -1, 2162, -1, 2164, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 91, -1, -1, + 2301, -1, -1, -1, -1, -1, -1, 101, -1, -1, + 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, + 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, + 330, 331, 332, 333, 334, 335, 336, 337, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 2420, -1, 149, 156, - -1, -1, 1999, 2427, 1177, -1, 2430, 2431, -1, -1, - -1, -1, -1, 164, -1, -1, -1, -1, 2015, -1, - -1, 1194, 173, 174, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 1830, -1, -1, - -1, 2038, -1, 194, -1, 1218, 2043, -1, -1, -1, - -1, -1, 2049, -1, -1, 1228, -1, 2054, 215, -1, - -1, 2058, -1, 220, 2061, 2723, 217, 2064, -1, 2066, - -1, 2336, 16, -1, 1247, -1, -1, -1, -1, 23, - 231, 2346, 233, -1, 1257, -1, -1, -1, -1, 1262, - 2355, -1, -1, -1, -1, -1, 247, -1, -1, 2364, - -1, 252, -1, -1, -1, -1, 2371, 258, -1, -1, - -1, -1, -1, -1, 265, -1, -1, 2382, -1, -1, - -1, -1, 2546, 2388, -1, -1, 2391, -1, -1, 2394, - -1, -1, 283, -1, -1, -1, -1, -1, -1, -1, - -1, 2565, -1, -1, -1, 296, 297, -1, 299, -1, - -1, -1, -1, 310, 311, 312, 313, 314, 315, 316, - 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, - 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, - 337, -1, -1, -1, -1, -1, -1, -1, 339, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 156, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 19, 168, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 2636, 2637, -1, 2639, -1, 2641, 2642, -1, - 2644, -1, 1395, -1, -1, -1, -1, -1, -1, -1, + -1, 185, -1, -1, -1, -1, -1, 2398, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 2511, -1, -1, -1, - -1, -1, 1425, -1, 2251, 2520, -1, -1, -1, -1, - -1, -1, -1, -1, 2529, -1, -1, -1, -1, -1, - 2535, -1, -1, 2697, 2539, -1, -1, 2542, -1, -1, - -1, 1454, -1, -1, 1457, -1, -1, -1, -1, -1, - 2083, -1, -1, -1, 1467, 1468, -1, 241, -1, 243, - -1, -1, 1475, -1, -1, -1, -1, -1, -1, 1482, - 3, 4, -1, -1, -1, -1, -1, -1, -1, -1, - 2744, -1, -1, -1, -1, -1, 19, -1, -1, -1, - 2123, 2124, 2125, 2126, 2127, -1, 2129, 2130, -1, -1, - -1, 2134, 2135, 2136, 2137, 2138, 39, 2140, 2141, 1522, - -1, -1, 1525, 1526, -1, -1, -1, -1, -1, -1, - -1, 1534, -1, 56, -1, -1, 310, 311, 312, 313, + 56, -1, -1, 207, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 220, -1, -1, -1, + 2431, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 2442, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 101, 2335, -1, -1, -1, + -1, 18, 19, -1, -1, -1, 2345, -1, -1, -1, + -1, -1, -1, -1, -1, 2354, -1, 271, -1, -1, + -1, -1, -1, -1, 2363, -1, -1, -1, -1, 2490, + -1, 2370, -1, 2494, -1, -1, -1, -1, -1, -1, + -1, 58, 2381, -1, -1, -1, -1, -1, 2387, -1, + 156, 2390, -1, -1, 2393, -1, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, - 334, 335, 336, 337, -1, -1, -1, -1, -1, -1, - 2397, -1, -1, -1, -1, -1, 2403, -1, 101, -1, - 2407, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 2423, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 1610, -1, -1, + 334, 335, 336, 337, 101, 339, 2547, 2548, -1, 2550, + -1, -1, -1, -1, 2555, 2556, -1, -1, 115, 2560, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 215, + -1, -1, -1, -1, 220, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 1628, -1, -1, -1, -1, - -1, -1, -1, 156, -1, -1, -1, -1, -1, -1, - -1, 1644, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 1659, -1, 1661, -1, - -1, -1, -1, 4, -1, -1, -1, 2494, 1671, -1, - 193, 1674, -1, 1676, 1677, 1678, 1679, -1, 19, 1682, - -1, -1, 1685, -1, -1, 1688, 1689, -1, 1691, 1692, - 1693, 1694, 215, 1696, 1697, -1, -1, 220, -1, 1702, - 1703, 1704, -1, -1, 1707, 1708, -1, -1, 231, -1, - 1713, 1714, 2335, -1, -1, 2338, 2339, 2340, 2341, 2342, - -1, 2344, 2345, -1, 2347, 2348, 2349, 2350, 2351, -1, - 2353, 2354, -1, 2356, 2357, 2358, 2359, 2360, -1, 2362, - 2363, -1, 2365, -1, -1, -1, -1, -1, -1, 2576, - -1, -1, 2375, 2376, -1, -1, -1, -1, -1, -1, - 101, -1, -1, 2386, -1, -1, -1, -1, 291, -1, + -1, -1, 2593, -1, -1, -1, -1, -1, -1, 156, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 310, 311, 312, - 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, - 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, - 333, 334, 335, 336, 337, 156, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 172, 2617, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 1837, -1, -1, -1, 1841, 2666, + -1, 2510, -1, 279, -1, -1, -1, -1, -1, -1, + 2519, -1, -1, -1, -1, -1, -1, -1, -1, 2528, + -1, -1, -1, -1, -1, 2534, -1, -1, -1, 2538, + -1, -1, 2541, 220, 310, 311, 312, 313, 314, 315, + 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, + 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, + 336, 337, -1, -1, -1, -1, -1, -1, -1, -1, + 2701, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 2718, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 1853, -1, -1, 1856, -1, -1, -1, -1, -1, -1, - 2687, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 220, - -1, -1, -1, 1886, -1, -1, -1, -1, -1, -1, - -1, 2514, -1, -1, -1, -1, -1, -1, -1, -1, - 2523, -1, -1, -1, -1, -1, -1, -1, 2735, 2532, - -1, 2534, -1, -1, -1, 2538, -1, -1, -1, -1, - 18, 19, -1, -1, -1, -1, -1, -1, 2755, -1, - -1, 2758, -1, -1, -1, -1, -1, -1, -1, 1942, + 287, -1, 2733, -1, -1, 2736, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 19, -1, -1, -1, -1, -1, -1, -1, -1, - 58, -1, -1, -1, -1, -1, -1, -1, -1, 310, - 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, - 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, - 331, 332, 333, 334, 335, 336, 337, 65, 66, -1, - 2623, 69, 2625, 101, 2627, -1, -1, 2630, -1, 2632, - -1, -1, -1, 2016, -1, -1, -1, 115, -1, -1, - -1, -1, -1, 91, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 310, 311, 312, 313, 314, 315, 316, + 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, + 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, + 337, 20, 21, 22, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 2059, -1, 156, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 48, + 49, 19, -1, 52, -1, -1, 55, -1, -1, -1, + -1, -1, -1, 62, -1, -1, -1, 66, -1, -1, + -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, + -1, -1, -1, 82, 83, -1, -1, -1, 56, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 99, -1, 19, -1, -1, -1, 105, -1, -1, -1, + 109, 110, -1, -1, 113, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 172, -1, -1, -1, -1, -1, + 129, 19, -1, 101, -1, -1, -1, -1, -1, -1, + -1, -1, 59, -1, -1, -1, -1, -1, -1, -1, + 149, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 56, -1, + -1, 19, 171, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 101, -1, -1, -1, 156, -1, + -1, -1, -1, -1, -1, 194, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 224, -1, 226, -1, -1, + -1, -1, -1, 232, 233, -1, -1, -1, -1, 156, + -1, -1, -1, -1, -1, -1, -1, 215, 247, 248, + -1, -1, 220, 101, -1, -1, -1, -1, 257, 258, -1, -1, -1, -1, -1, -1, -1, -1, 156, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 168, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 185, -1, -1, - -1, -1, 220, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 207, + -1, -1, -1, -1, 283, -1, 285, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 297, -1, + 299, -1, -1, 220, -1, -1, 305, -1, 156, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 220, -1, -1, -1, -1, -1, -1, -1, + 339, -1, 310, 311, 312, 313, 314, 315, 316, 317, + 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, + 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, + 287, -1, 220, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 2175, -1, -1, 2178, -1, -1, -1, -1, - -1, -1, -1, 2186, -1, -1, -1, -1, -1, 287, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 2202, - -1, -1, 2205, 271, -1, -1, -1, 2210, -1, -1, - 2213, 2214, 310, 311, 312, 313, 314, 315, 316, 317, + -1, -1, -1, 310, 311, 312, 313, 314, 315, 316, + 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, + 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, + 337, -1, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, - -1, 339, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 20, 21, 22, -1, -1, -1, -1, 2302, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 48, 49, -1, -1, 52, -1, -1, 55, -1, -1, - -1, -1, -1, -1, 62, -1, -1, -1, 66, -1, - -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, - -1, -1, -1, -1, 82, 83, -1, -1, -1, -1, - -1, 20, 21, 22, -1, -1, -1, -1, -1, -1, - -1, 99, -1, -1, -1, -1, -1, 105, -1, -1, - -1, 109, 110, -1, -1, 113, -1, -1, -1, 48, - 49, -1, -1, 52, -1, -1, 2399, -1, -1, -1, - 59, 129, -1, 62, -1, -1, -1, 66, -1, -1, - -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, - -1, 149, -1, 82, -1, -1, -1, -1, -1, 2432, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 2443, -1, -1, 171, 19, -1, -1, -1, -1, -1, - 109, 110, -1, -1, 113, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 194, -1, -1, -1, - 129, -1, -1, -1, -1, -1, -1, 19, -1, -1, - -1, 56, -1, -1, -1, -1, -1, -1, 2491, -1, - 149, -1, 2495, -1, -1, -1, 224, -1, 226, -1, - -1, -1, -1, -1, 232, 233, -1, -1, -1, -1, - -1, -1, 171, -1, 56, -1, -1, -1, -1, 247, - 248, 180, -1, -1, -1, -1, 101, -1, 19, 257, - 258, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 2548, 2549, -1, 2551, -1, - -1, -1, -1, 2556, 2557, 283, -1, 285, 2561, 101, - -1, -1, -1, -1, -1, 224, 19, 226, 59, 297, - -1, 299, -1, 232, 233, -1, -1, 305, -1, -1, - -1, 156, -1, -1, -1, -1, -1, -1, -1, 248, - -1, 2594, -1, -1, -1, -1, -1, -1, -1, 258, - -1, -1, -1, 56, -1, -1, -1, -1, -1, -1, - 101, 339, -1, -1, 156, 2618, -1, -1, -1, -1, - -1, -1, -1, -1, 283, -1, 285, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, - 215, -1, -1, -1, -1, 220, 305, -1, 101, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 156, -1, -1, -1, -1, - -1, -1, -1, 215, -1, -1, -1, -1, 220, -1, - 339, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 2702, - -1, -1, -1, 156, 279, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 2719, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 220, - -1, 2734, -1, -1, 2737, 310, 311, 312, 313, 314, - 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, - 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, - 335, 336, 337, -1, -1, -1, -1, 220, 310, 311, - 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, - 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, - 332, 333, 334, 335, 336, 337, 287, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 310, - 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, - 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, - 331, 332, 333, 334, 335, 336, 337, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 310, 311, 312, - 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, - 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, - 333, 334, 335, 336, 337, 41, -1, -1, 44, -1, - 46, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 59, -1, -1, -1, -1, 64, 65, - -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, - -1, 77, -1, -1, -1, -1, -1, -1, 84, -1, - 86, 87, -1, -1, -1, -1, -1, -1, -1, 95, - 96, 310, 311, 312, 313, 314, 315, 316, 317, 318, - 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, - 329, 330, 331, 332, 333, 334, 335, 336, 337, 125, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 137, -1, -1, -1, 141, -1, -1, 144, -1, - -1, -1, 148, 149, -1, -1, -1, -1, -1, 155, - -1, -1, -1, -1, -1, 161, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 174, -1, - -1, 177, 178, 179, -1, -1, 182, 183, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 196, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 213, 214, 215, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 227, -1, 229, -1, -1, -1, -1, -1, -1, - 236, -1, -1, -1, 240, -1, -1, 243, -1, 245, - -1, 247, -1, -1, -1, -1, 252, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 265, - -1, -1, -1, 41, -1, 271, 44, -1, 46, -1, + 41, -1, -1, 44, -1, 46, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 59, -1, + -1, -1, -1, 64, 65, -1, 67, 68, 69, -1, + -1, -1, -1, -1, -1, -1, 77, -1, -1, -1, + -1, -1, -1, 84, -1, 86, 87, -1, -1, -1, + -1, -1, -1, -1, 95, 96, 310, 311, 312, 313, + 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, + 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, + 334, 335, 336, 337, 125, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 137, -1, -1, -1, + 141, -1, -1, 144, -1, -1, -1, 148, 149, -1, + -1, -1, -1, -1, 155, -1, -1, -1, -1, -1, + 161, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 174, -1, -1, 177, 178, 179, -1, + -1, 182, 183, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 196, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 286, 287, -1, -1, -1, -1, -1, 65, -1, 67, - 68, 69, 298, -1, 300, -1, -1, -1, -1, 77, - 306, 79, -1, 309, 310, -1, 84, -1, 86, 87, - 88, -1, -1, -1, -1, 93, -1, 95, -1, -1, + -1, -1, 213, 214, 215, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 227, -1, 229, -1, + -1, -1, -1, -1, -1, 236, -1, -1, -1, 240, + -1, -1, 243, -1, 245, -1, 247, -1, -1, -1, + -1, 252, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 265, -1, -1, -1, 41, -1, + 271, 44, -1, 46, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 286, 287, -1, -1, -1, + -1, -1, 65, -1, 67, 68, 69, 298, -1, 300, + -1, -1, -1, -1, 77, 306, 79, -1, 309, 310, + -1, 84, -1, 86, 87, 88, -1, -1, -1, -1, + 93, -1, 95, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 340, + -1, -1, -1, -1, -1, -1, 347, -1, -1, -1, + -1, 124, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 141, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 151, 152, + -1, -1, 155, -1, 156, -1, 159, -1, 161, 161, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 340, -1, -1, -1, -1, -1, - -1, 347, -1, -1, -1, -1, 124, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 182, + 183, -1, -1, 186, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 196, -1, -1, 161, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 141, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 151, 152, -1, -1, 155, -1, 156, - -1, 159, -1, 161, 161, -1, -1, -1, -1, -1, + 213, 214, -1, -1, -1, -1, -1, -1, 221, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 182, 183, -1, -1, 186, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 196, -1, - -1, 161, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 213, 214, -1, -1, -1, - -1, -1, -1, 221, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 245, -1, 247, + -1, -1, 245, -1, 247, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 271, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 271, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 286, 287, - -1, -1, -1, -1, -1, -1, -1, 295, -1, -1, - -1, -1, -1, -1, 302, -1, -1, -1, -1, -1, - 308, -1, 310, 310, 311, 312, 313, 314, 315, 316, - 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, - 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, - 337, -1, -1, -1, -1, -1, -1, -1, -1, 347, - 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, - 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, - 330, 331, 332, 333, 334, 335, 336, 337, 338 + -1, -1, -1, 286, 287, -1, -1, -1, -1, -1, + -1, -1, 295, -1, -1, -1, -1, -1, -1, 302, + -1, -1, -1, -1, -1, 308, -1, 310, 310, 311, + 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, + 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, + 332, 333, 334, 335, 336, 337, -1, -1, -1, -1, + -1, -1, -1, -1, 347, 310, 311, 312, 313, 314, + 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, + 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, + 335, 336, 337, 338 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing @@ -4265,86 +4285,86 @@ static const yytype_uint16 yystos[] = 370, 354, 354, 354, 364, 354, 354, 5, 4, 354, 354, 354, 354, 5, 5, 4, 380, 5, 5, 4, 4, 4, 5, 5, 4, 4, 5, 5, 4, 5, - 5, 4, 354, 354, 354, 370, 354, 370, 354, 364, - 366, 354, 370, 354, 354, 354, 354, 354, 5, 354, - 4, 6, 354, 354, 4, 364, 354, 370, 176, 368, - 354, 368, 371, 370, 364, 354, 354, 4, 354, 364, - 364, 354, 4, 5, 5, 5, 5, 5, 364, 370, - 364, 364, 364, 364, 366, 364, 370, 364, 364, 364, - 366, 364, 364, 364, 364, 366, 364, 364, 364, 354, - 364, 364, 364, 364, 364, 364, 364, 354, 354, 4, - 354, 5, 4, 354, 375, 5, 5, 5, 373, 4, - 4, 5, 375, 374, 4, 375, 5, 5, 5, 374, - 374, 373, 4, 4, 5, 14, 15, 61, 189, 190, - 262, 272, 273, 303, 14, 15, 61, 189, 190, 262, + 5, 4, 354, 354, 354, 354, 370, 354, 364, 366, + 354, 370, 354, 354, 354, 354, 354, 5, 354, 4, + 6, 354, 354, 4, 364, 354, 370, 176, 368, 354, + 368, 371, 370, 364, 354, 354, 4, 354, 364, 364, + 354, 4, 5, 5, 5, 5, 5, 364, 370, 364, + 364, 364, 364, 366, 364, 370, 364, 364, 364, 366, + 364, 364, 364, 364, 366, 364, 364, 364, 354, 364, + 364, 364, 364, 364, 364, 364, 354, 354, 4, 354, + 5, 4, 354, 375, 5, 5, 5, 373, 4, 4, + 5, 375, 374, 4, 375, 5, 5, 5, 374, 374, + 373, 4, 4, 5, 14, 15, 61, 189, 190, 262, 272, 273, 303, 14, 15, 61, 189, 190, 262, 272, - 273, 303, 270, 5, 5, 5, 374, 374, 373, 4, + 273, 303, 14, 15, 61, 189, 190, 262, 272, 273, + 303, 270, 5, 5, 5, 374, 374, 373, 4, 4, + 373, 5, 270, 5, 5, 5, 374, 374, 373, 4, 4, 373, 5, 270, 5, 5, 5, 374, 374, 373, - 4, 4, 373, 5, 270, 5, 5, 5, 374, 374, - 373, 4, 4, 373, 5, 5, 5, 5, 374, 374, - 373, 4, 4, 5, 374, 4, 4, 374, 4, 4, - 375, 5, 370, 364, 354, 354, 364, 354, 5, 359, - 5, 364, 356, 5, 364, 370, 5, 359, 354, 354, - 354, 354, 354, 354, 354, 354, 354, 4, 4, 5, - 4, 4, 354, 364, 354, 5, 359, 356, 370, 370, - 354, 363, 370, 370, 354, 370, 370, 354, 354, 354, - 354, 354, 354, 354, 354, 354, 354, 55, 66, 92, - 129, 283, 285, 339, 510, 511, 512, 523, 524, 354, + 4, 4, 373, 5, 5, 5, 5, 374, 374, 373, + 4, 4, 5, 374, 4, 4, 374, 4, 4, 375, + 5, 370, 364, 354, 354, 364, 354, 5, 359, 5, + 364, 356, 5, 364, 370, 5, 359, 354, 354, 354, + 354, 354, 354, 354, 354, 354, 4, 4, 5, 4, + 4, 354, 364, 354, 5, 359, 356, 370, 370, 354, + 363, 370, 370, 354, 370, 370, 354, 354, 354, 354, + 354, 354, 354, 354, 354, 354, 55, 66, 92, 129, + 283, 285, 339, 510, 511, 512, 523, 524, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, - 354, 364, 5, 354, 354, 354, 354, 4, 4, 370, - 371, 4, 497, 370, 370, 363, 354, 4, 370, 4, - 380, 380, 380, 359, 354, 354, 354, 370, 354, 363, - 354, 354, 12, 5, 5, 4, 354, 354, 4, 370, - 364, 354, 354, 371, 372, 354, 5, 354, 366, 5, - 5, 5, 5, 5, 370, 372, 372, 372, 370, 372, - 371, 372, 372, 370, 372, 372, 372, 370, 372, 372, - 370, 364, 372, 370, 372, 372, 370, 372, 370, 4, - 366, 5, 354, 4, 375, 374, 4, 374, 5, 5, - 5, 374, 374, 373, 4, 4, 5, 5, 5, 5, + 364, 5, 354, 354, 354, 354, 4, 4, 370, 371, + 4, 497, 370, 370, 363, 354, 4, 370, 4, 380, + 380, 380, 359, 354, 354, 354, 370, 354, 363, 354, + 354, 12, 5, 5, 4, 354, 354, 4, 370, 364, + 354, 354, 371, 372, 354, 5, 354, 366, 5, 5, + 5, 5, 5, 370, 372, 372, 372, 370, 372, 371, + 372, 372, 370, 372, 372, 372, 370, 372, 372, 370, + 364, 372, 370, 372, 372, 370, 372, 370, 4, 366, + 5, 354, 4, 375, 374, 4, 374, 5, 5, 5, 374, 374, 373, 4, 4, 5, 5, 5, 5, 374, - 374, 373, 4, 4, 5, 374, 375, 375, 375, 375, - 375, 4, 375, 375, 4, 374, 374, 375, 375, 375, - 375, 375, 4, 375, 375, 4, 374, 374, 4, 4, - 374, 4, 374, 374, 4, 4, 4, 365, 372, 4, - 364, 372, 354, 364, 4, 372, 372, 364, 4, 354, - 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, - 364, 372, 354, 364, 4, 363, 363, 364, 363, 363, - 364, 364, 363, 363, 354, 354, 354, 354, 354, 354, - 359, 354, 354, 354, 351, 351, 351, 351, 351, 351, - 351, 511, 351, 359, 354, 354, 354, 354, 359, 354, - 354, 354, 354, 354, 354, 370, 354, 303, 358, 359, - 354, 354, 371, 356, 4, 4, 371, 4, 354, 363, - 354, 59, 354, 5, 5, 354, 4, 368, 372, 5, - 4, 5, 4, 5, 364, 5, 371, 372, 371, 371, - 371, 5, 4, 354, 375, 374, 375, 375, 375, 375, - 375, 4, 375, 375, 374, 375, 375, 375, 375, 375, + 374, 373, 4, 4, 5, 5, 5, 5, 374, 374, + 373, 4, 4, 5, 374, 375, 375, 375, 375, 375, + 4, 375, 375, 4, 374, 374, 375, 375, 375, 375, + 375, 4, 375, 375, 4, 374, 374, 4, 4, 374, + 4, 374, 374, 4, 4, 4, 365, 372, 4, 364, + 372, 354, 364, 4, 372, 372, 364, 4, 354, 354, + 354, 354, 354, 354, 354, 354, 354, 354, 354, 364, + 372, 354, 364, 4, 363, 363, 364, 363, 363, 364, + 364, 363, 363, 354, 354, 354, 354, 354, 354, 359, + 354, 354, 354, 351, 351, 351, 351, 351, 351, 351, + 511, 351, 359, 354, 354, 354, 354, 359, 354, 354, + 354, 354, 354, 354, 370, 354, 303, 358, 359, 354, + 354, 371, 356, 4, 4, 371, 4, 354, 363, 354, + 59, 354, 5, 5, 354, 4, 368, 372, 5, 4, + 5, 4, 5, 364, 5, 371, 372, 371, 371, 371, + 5, 4, 354, 375, 374, 375, 375, 375, 375, 375, 4, 375, 375, 374, 375, 375, 375, 375, 375, 4, - 375, 375, 374, 375, 374, 4, 375, 375, 374, 4, - 375, 374, 4, 374, 374, 370, 364, 372, 4, 370, - 354, 370, 354, 354, 354, 372, 4, 370, 354, 363, - 372, 354, 363, 372, 372, 364, 354, 4, 377, 377, - 354, 354, 377, 359, 377, 513, 364, 493, 5, 4, - 5, 5, 5, 4, 356, 359, 377, 377, 354, 354, - 359, 354, 354, 354, 354, 354, 363, 354, 5, 513, - 354, 377, 356, 514, 515, 5, 356, 4, 5, 354, - 5, 4, 6, 354, 32, 280, 414, 364, 5, 370, - 364, 414, 354, 374, 375, 374, 375, 374, 375, 375, - 374, 375, 374, 374, 354, 372, 364, 364, 354, 364, - 354, 364, 364, 354, 364, 372, 4, 513, 513, 358, - 354, 513, 4, 513, 370, 5, 4, 4, 513, 513, - 358, 354, 4, 513, 513, 354, 364, 513, 513, 513, - 514, 520, 521, 512, 518, 519, 4, 5, 5, 6, - 4, 186, 301, 346, 354, 405, 4, 364, 32, 280, - 379, 4, 375, 375, 375, 375, 375, 365, 372, 372, - 354, 372, 4, 372, 372, 354, 372, 354, 513, 513, - 4, 354, 513, 5, 354, 513, 4, 354, 513, 370, - 520, 522, 523, 351, 519, 5, 5, 4, 354, 406, - 354, 406, 370, 372, 4, 364, 366, 4, 359, 358, - 354, 354, 358, 354, 364, 523, 356, 5, 5, 354, - 354, 354, 354, 379, 5, 364, 366, 370, 364, 366, - 513, 354, 4, 513, 354, 372, 5, 5, 354, 5, - 354, 370, 370, 4, 513, 4, 5, 5, 5, 358, - 358, 513, 513, 513 + 375, 375, 374, 375, 375, 375, 375, 375, 4, 375, + 375, 374, 375, 374, 4, 375, 375, 374, 4, 375, + 374, 4, 374, 374, 370, 364, 372, 4, 370, 354, + 370, 354, 354, 354, 372, 4, 370, 354, 363, 372, + 354, 363, 372, 372, 364, 354, 4, 377, 377, 354, + 354, 377, 359, 377, 513, 364, 493, 5, 4, 5, + 5, 5, 4, 356, 359, 377, 377, 354, 354, 359, + 354, 354, 354, 354, 354, 363, 354, 5, 513, 354, + 377, 356, 514, 515, 5, 356, 4, 5, 354, 5, + 4, 6, 354, 32, 280, 414, 364, 5, 370, 364, + 414, 354, 374, 375, 374, 375, 374, 375, 375, 374, + 375, 374, 374, 354, 372, 364, 364, 354, 364, 354, + 364, 364, 354, 364, 372, 4, 513, 513, 358, 354, + 513, 4, 513, 370, 5, 4, 4, 513, 513, 358, + 354, 4, 513, 513, 354, 364, 513, 513, 513, 514, + 520, 521, 512, 518, 519, 4, 5, 5, 6, 4, + 186, 301, 346, 354, 405, 4, 364, 32, 280, 379, + 4, 375, 375, 375, 375, 375, 365, 372, 372, 354, + 372, 4, 372, 372, 354, 372, 354, 513, 513, 4, + 354, 513, 5, 354, 513, 4, 354, 513, 370, 520, + 522, 523, 351, 519, 5, 5, 4, 354, 406, 354, + 406, 370, 372, 4, 364, 366, 4, 359, 358, 354, + 354, 358, 354, 364, 523, 356, 5, 5, 354, 354, + 354, 354, 379, 5, 364, 366, 370, 364, 366, 513, + 354, 4, 513, 354, 372, 5, 5, 354, 5, 354, + 370, 370, 4, 513, 4, 5, 5, 5, 358, 358, + 513, 513, 513 }; #define yyerrok (yyerrstatus = 0) @@ -10758,67 +10778,67 @@ yyreduce: break; case 1231: -#line 2809 "frame/parser.Y" - {fr->sliceCmd((yyvsp[(1) - (3)].real), (Coord::CoordSystem)(yyvsp[(2) - (3)].integer), (Coord::SkyFrame (yyvsp[(3) - (3)].integer)));;} +#line 2808 "frame/parser.Y" + {fr->sliceCmd((yyvsp[(1) - (2)].real), (Coord::CoordSystem)(yyvsp[(2) - (2)].integer));;} break; case 1232: -#line 2812 "frame/parser.Y" +#line 2811 "frame/parser.Y" {fr->warpCmd(Vector((yyvsp[(1) - (2)].real),(yyvsp[(2) - (2)].real)));;} break; case 1233: -#line 2813 "frame/parser.Y" +#line 2812 "frame/parser.Y" {fr->warpToCmd(Vector((yyvsp[(2) - (3)].real),(yyvsp[(3) - (3)].real)));;} break; case 1234: -#line 2817 "frame/parser.Y" +#line 2816 "frame/parser.Y" {fr->wcsCmd((Coord::CoordSystem)(yyvsp[(1) - (3)].integer), (Coord::SkyFrame)(yyvsp[(2) - (3)].integer), (Coord::SkyFormat)(yyvsp[(3) - (3)].integer));;} break; case 1236: -#line 2819 "frame/parser.Y" +#line 2818 "frame/parser.Y" {fr->wcsResetCmd((yyvsp[(2) - (2)].integer));;} break; case 1239: -#line 2824 "frame/parser.Y" +#line 2823 "frame/parser.Y" {fr->wcsAppendCmd((yyvsp[(1) - (2)].integer),(yyvsp[(2) - (2)].integer));;} break; case 1240: -#line 2825 "frame/parser.Y" +#line 2824 "frame/parser.Y" {fr->wcsAppendCmd((yyvsp[(1) - (2)].integer),(yyvsp[(2) - (2)].str));;} break; case 1241: -#line 2826 "frame/parser.Y" +#line 2825 "frame/parser.Y" {fr->wcsAppendTxtCmd((yyvsp[(2) - (3)].integer),(yyvsp[(3) - (3)].str));;} break; case 1242: -#line 2829 "frame/parser.Y" +#line 2828 "frame/parser.Y" {fr->wcsReplaceCmd((yyvsp[(1) - (2)].integer),(yyvsp[(2) - (2)].integer));;} break; case 1243: -#line 2830 "frame/parser.Y" +#line 2829 "frame/parser.Y" {fr->wcsReplaceCmd((yyvsp[(1) - (2)].integer),(yyvsp[(2) - (2)].str));;} break; case 1244: -#line 2831 "frame/parser.Y" +#line 2830 "frame/parser.Y" {fr->wcsReplaceTxtCmd((yyvsp[(2) - (3)].integer),(yyvsp[(3) - (3)].str));;} break; case 1245: -#line 2834 "frame/parser.Y" +#line 2833 "frame/parser.Y" {fr->wcsAlignCmd((yyvsp[(1) - (1)].integer));;} break; case 1246: -#line 2836 "frame/parser.Y" +#line 2835 "frame/parser.Y" { // used by backup fr->wcsAlignCmd((yyvsp[(1) - (3)].integer), (Coord::CoordSystem)(yyvsp[(2) - (3)].integer), (Coord::SkyFrame)(yyvsp[(3) - (3)].integer)); @@ -10826,12 +10846,12 @@ yyreduce: break; case 1247: -#line 2841 "frame/parser.Y" +#line 2840 "frame/parser.Y" {fr->wcsAlignCmd((yyvsp[(1) - (4)].integer), (FitsImage*)(yyvsp[(2) - (4)].ptr), (Coord::CoordSystem)(yyvsp[(3) - (4)].integer), (Coord::SkyFrame)(yyvsp[(4) - (4)].integer));;} break; case 1248: -#line 2844 "frame/parser.Y" +#line 2843 "frame/parser.Y" { #ifdef __WIN32 fr->win32PrintCmd(); @@ -10840,17 +10860,17 @@ yyreduce: break; case 1249: -#line 2851 "frame/parser.Y" +#line 2850 "frame/parser.Y" {fr->zoomCmd(Vector((yyvsp[(1) - (2)].real),(yyvsp[(2) - (2)].real)));;} break; case 1250: -#line 2853 "frame/parser.Y" +#line 2852 "frame/parser.Y" {fr->zoomAboutCmd(Vector((yyvsp[(1) - (5)].real),(yyvsp[(2) - (5)].real)),Vector((yyvsp[(4) - (5)].real),(yyvsp[(5) - (5)].real)));;} break; case 1251: -#line 2855 "frame/parser.Y" +#line 2854 "frame/parser.Y" { // backward compatibility fr->zoomAboutCmd(Vector((yyvsp[(1) - (6)].real),(yyvsp[(2) - (6)].real)),Vector((yyvsp[(5) - (6)].real),(yyvsp[(6) - (6)].real))); @@ -10858,32 +10878,32 @@ yyreduce: break; case 1252: -#line 2860 "frame/parser.Y" +#line 2859 "frame/parser.Y" {fr->zoomAboutCmd(Vector((yyvsp[(1) - (6)].real),(yyvsp[(2) - (6)].real)),Vector((yyvsp[(6) - (6)].vector)), (Coord::CoordSystem)(yyvsp[(4) - (6)].integer),(Coord::SkyFrame)(yyvsp[(5) - (6)].integer));;} break; case 1254: -#line 2864 "frame/parser.Y" +#line 2863 "frame/parser.Y" {fr->zoomToFitCmd(1);;} break; case 1255: -#line 2865 "frame/parser.Y" +#line 2864 "frame/parser.Y" {fr->zoomToFitCmd((yyvsp[(2) - (2)].real));;} break; case 1256: -#line 2866 "frame/parser.Y" +#line 2865 "frame/parser.Y" {fr->zoomToCmd(Vector((yyvsp[(1) - (2)].real),(yyvsp[(2) - (2)].real)));;} break; case 1257: -#line 2868 "frame/parser.Y" +#line 2867 "frame/parser.Y" {fr->zoomToAboutCmd(Vector((yyvsp[(1) - (5)].real),(yyvsp[(2) - (5)].real)),Vector((yyvsp[(4) - (5)].real),(yyvsp[(5) - (5)].real)));;} break; case 1258: -#line 2870 "frame/parser.Y" +#line 2869 "frame/parser.Y" { // backward compatibility fr->zoomToAboutCmd(Vector((yyvsp[(1) - (6)].real),(yyvsp[(2) - (6)].real)),Vector((yyvsp[(5) - (6)].real),(yyvsp[(6) - (6)].real))); @@ -10891,14 +10911,14 @@ yyreduce: break; case 1259: -#line 2875 "frame/parser.Y" +#line 2874 "frame/parser.Y" {fr->zoomToAboutCmd(Vector((yyvsp[(1) - (6)].real),(yyvsp[(2) - (6)].real)), Vector((yyvsp[(6) - (6)].vector)), (Coord::CoordSystem)(yyvsp[(4) - (6)].integer), (Coord::SkyFrame)(yyvsp[(5) - (6)].integer));;} break; /* Line 1267 of yacc.c. */ -#line 10902 "frame/parser.C" +#line 10922 "frame/parser.C" default: break; } YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); @@ -11112,7 +11132,7 @@ yyreturn: } -#line 2879 "frame/parser.Y" +#line 2878 "frame/parser.Y" static void setProps(unsigned short* props, unsigned short prop, int value) diff --git a/tksao/frame/parser.Y b/tksao/frame/parser.Y index cc5c7a5..a3a28ee 100644 --- a/tksao/frame/parser.Y +++ b/tksao/frame/parser.Y @@ -2805,8 +2805,7 @@ update : /* empty */ {fr->updateFitsCmd(0);} updateFitsSlice : INT {fr->sliceCmd(2,$1);} | INT INT {fr->sliceCmd($1,$2);} - | numeric coordSystem skyFrame - {fr->sliceCmd($1, (Coord::CoordSystem)$2, (Coord::SkyFrame $3));} + | numeric coordSystem {fr->sliceCmd($1, (Coord::CoordSystem)$2);} ; warp : numeric numeric {fr->warpCmd(Vector($1,$2));} |