PreviousUpNext

15.4.557  src/lib/compiler/front/parser/lex/mythryl.lex.pkg

generic package mythryl_lex_g(package tokens : Mythryl_Tokens;){
   
# Compiled by:
#     src/lib/compiler/front/parser/parser.sublib

    package user_declarations {
      
# mythryl.lex



###            "Certain programming errors cannot always
###             be detected [by a compiler], and must be
###             cheaply detectable at run time; in no case
###             can they be allowed to give rise to machine-
###             or implementation-dependent effects, which
###             are inexplicable in terms of the language
###             itself.  This is a criterion to which I
###             give the name 'security'."
###
###                          -- C.A.R. Hoare, 1973



include error_message;

package mythryl_token_table
    =
    mythryl_token_table_g( tokens );    # Defined in ROOT/src/lib/compiler/front/parser/lex/mythryl-token-table-g.pkg

Semantic_Value  =  tokens::Semantic_Value;
Source_Position =  Int;
Lex_Result      =  tokens::Token( Semantic_Value, Source_Position );

Lex_Arg = { comment_nesting_depth : Ref Int, 
            line_number_db        : line_number_db::Sourcemap,
            stringlist            : Ref List String,
            #
            stringtype            : Ref Bool,
            stringstart           : Ref Int,            #  Start of current string or comment
            brack_stack           : Ref List Ref Int,   #  For frags 

            err : (Source_Position, Source_Position) -> error_message::Plaint_Sink
          };

Arg = Lex_Arg;

Token (X, Y)
     =
     tokens::Token (X, Y);

fun eof ( { comment_nesting_depth, err, stringlist, stringstart, line_number_db, ... } : Lex_Arg)
    =
    {   pos = int::max (   *stringstart + 2,
                           line_number_db::last_change line_number_db
                       );

        if (*comment_nesting_depth > 0)
            #
            err (*stringstart,pos) ERROR "unclosed comment" null_error_body;
            #
        elif (*stringlist != [])
            #
            err
                (*stringstart, pos)
                ERROR
                "unclosed string, character, or quotation"
                null_error_body;
        fi;

        tokens::eof(pos,pos);
    };


fun add_string (stringlist, s: String)
    =
    stringlist := s ! *stringlist;


fun add_char (stringlist, c: Char)
    =
    add_string (stringlist, string::from_char c);


fun make_string stringlist
    =
    cat (reverse *stringlist)
    before
        stringlist := NIL;

                                                        # hash_string           is from   src/lib/src/hash-string.pkg
hash_string
    =
    hash_string::hash_string;

                                                        # number_string         is from   src/lib/std/src/number-string.pkg
                                                        # integer               is from   src/lib/std/multiword-int.pkg
                                                        # substring             is from   src/lib/std/substring.pkg
stipulate

    fun convert radix (s, i)
        =
        #1 (the (multiword_int::scan radix substring::getc (substring::drop_first i (substring::from_string s))));
herein
    # At some point we should support underbars in integer constants.
    # Just doing a s/_//g at this point should do, at least as a first cut.  XXX BUGGO FIXME
    #
    atoi   =   convert  number_string::DECIMAL;
    otoi   =   convert  number_string::OCTAL;
    xtoi   =   convert  number_string::HEX;
end;

fun my_synch (src, pos, parts)
    =
    {   fun digit d
            =
            char::to_int d - char::to_int '0';

        fun convert digits
            =
            fold_left
                (fn (d, n) =  10*n + digit d)
                0
                (explode digits);

        r =   line_number_db::resynch src;

        case parts

            [col, line]
                 => 
                 r (   pos,
                       {   file_name => NULL,
                           line      => convert line,
                           column    => THE (convert col)
                       }
                   );

            [file, col, line]
                 => 
                 r (   pos,
                       {   file_name => THE file,
                           line      => convert line,
                           column    => THE (convert col)
                       }
                   );

            _    =>
                 impossible "text in /*#line...*/";

        esac;
    };

fun has_quote s
    =
    {   fun loop i
            =
            (    (string::get(s,i) == '`')
                 or
                 loop (i+1)
            )
            except _ =   FALSE;

        loop 0;
    };

fun inc (ri as REF i)   =   (ri := i + 1);
fun dec (ri as REF i)   =   (ri := i - 1);


# initial vs postfix states:
#
# We want to use '-' as both a binary infix operator (subtraction)
# and a unary prefix operator (negation).  Similarly, we want to
# use '*' for both multiplication (a*b) and dereferencing (*ptr),
# and we want to use '.' for both (a.b) and (.a b).
#
# We choose to make the distinction based on whitespace:
#          a-b      binary case    (Recognized in postfix state.)
#         a - b     binary case    (Recognized in initial state.)
#         a -b      unary case.    (Recognized in initial state.)
#
# To do this, we need to keep track of whether we "just saw
# some whitespace".  We use the distinction between the initial
# and postfix states to track this information:  When we are
# in initial state then "We just saw whitespace" (i.e. a unary
# prefix operator is a possibility next), otherwise we are in
# postfix state.  Note that if we just saw a '(', for example,
# then we also say that we "just saw whitespace", since a unary op
# here would make sense but a binary op would not.
#   Hence our two states are essentially:
#   postfix: Just saw something like an identifier, so only postfix and infix operators are possible.
#   initial: Just saw something like whitespace,    so only  prefix and infix operators are possible.

# XXX BUGGO FIXME stuff like
#     <initial>"(*_)"           => (tokens::pre_star(yypos+2,yypos+3));
#   where the token start/end values are bogus results in
#   bogus values propagating all through the system to where
#   they can eventually (e.g.) foul up do-edits and such.
#
#   It would be much better to give correct values here,
#   and then to adjust the symbol itself to exclude the
#   backquotes much later, in an action in the grammar.



# NB: Unlike SML/NJ, we recognize paths like a::b::c here in
#     the lexer, as single tokens, rather than waiting to
#     resolve them in the parser via rules.  The point of
#     this is that it effectively extends the parser's
#     lookahead in critical cases where we need it:
#         foo::bar::Zot
#         foo::bar::zot
#         foo::var::ZOT
#     can be distinguished and different reductions done
#     if they are single tokens resolved in the lexer, but
#     if they are sequences of tokens resolved in the parser,
#     then they all look like just "foo" for lookahead
#     purposes, which is to say, identical, and various rules
#     that now work become shift/reduce errors.

# NB:   I found that
#           <initial>"#PRE"{uppercase_id}{ws}   => (yybegin pre_compile_code;  continue());
#       compiled ok but that when I did
#           <initial>"#PRE_COMPILE_CODE"{ws}    => (yybegin pre_compile_code;  continue());
#       and did "make compiler" I get a linktime segfault:
#                ...
#                load-compiledfiles.c:   Reading   file          COMPILED_FILES_TO_LOAD
#                /mythryl7/mythryl7.110.58/mythryl7.110.58/bin/mythryl-runtime-intel32: Fatal error:  Bogus fault not in Mythryl: sig = 11, code = 0x805879b, pc = 0x805879b)
#                sh/make-compiler-executable:   Compiler link failed, no mythryld executable
#       It appears that we may have hit some sort of 64K type limit here;
#       attempting to add
#           <initial>"#PRE_{uppercase_id}{ws}   => (yybegin postcompile_code;  continue());
#           <initial>"#POST"{uppercase_id}{ws}  => (yybegin postcompile_code;  continue());
#       also produced a segfault. :-(   XXX BUGGO FIXME -- 2011-09-11 CrT
#       2012-02-22 CrT: The above was probably the Great Heisenbug, which is now fixed.
#                       It would be worth trying this again.
#       In the meantime, I switched to just #DO for #PRE_COMPILE_CODE and dropped #POSTCOMPILE_CODE entirely.



}; #  end of user routines 
exception LEX_ERROR; # Raised if illegal leaf action tried.
package internal {
         

Yyfinstate = NN Int;
Statedata = { fin:  List( Yyfinstate ), trans: vector::Vector( Int ) };
#  transition & final state table 
tab = {
fun decode s k =
  {   k' = k + k;
      hi = char::to_int (string::get (s, k'));
      lo = char::to_int (string::get (s, k' + 1));

      hi * 256 + lo;
  };
    s = [ 
 (0, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (1, 129, 
"\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\001\123\001\126\000\046\001\123\001\125\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\001\123\001\119\001\118\001\105\001\101\001\097\001\093\001\092\
\\000\236\000\235\000\230\000\222\000\221\000\199\000\181\000\168\
\\000\160\000\150\000\150\000\150\000\150\000\150\000\150\000\150\
\\000\150\000\150\000\134\000\133\000\129\000\128\000\124\000\120\
\\000\116\000\108\000\108\000\108\000\108\000\108\000\108\000\108\
\\000\108\000\108\000\108\000\108\000\108\000\108\000\108\000\108\
\\000\108\000\108\000\108\000\108\000\108\000\108\000\108\000\108\
\\000\108\000\108\000\108\000\107\000\103\000\102\000\098\000\092\
\\000\091\000\061\000\061\000\061\000\061\000\061\000\061\000\061\
\\000\061\000\061\000\061\000\061\000\061\000\061\000\061\000\061\
\\000\061\000\061\000\061\000\061\000\061\000\061\000\061\000\061\
\\000\061\000\061\000\061\000\057\000\053\000\052\000\047\000\046\
\\000\045"
),
 (3, 129, 
"\001\127\001\127\001\127\001\127\001\127\001\127\001\127\001\127\
\\001\127\001\127\001\133\001\127\001\127\001\132\001\127\001\127\
\\001\127\001\127\001\127\001\127\001\127\001\127\001\127\001\127\
\\001\127\001\127\001\127\001\127\001\127\001\127\001\127\001\127\
\\001\127\001\127\001\127\001\127\001\127\001\127\001\127\001\127\
\\001\127\001\127\001\130\001\127\001\127\001\127\001\127\001\128\
\\001\127\001\127\001\127\001\127\001\127\001\127\001\127\001\127\
\\001\127\001\127\001\127\001\127\001\127\001\127\001\127\001\127\
\\001\127\001\127\001\127\001\127\001\127\001\127\001\127\001\127\
\\001\127\001\127\001\127\001\127\001\127\001\127\001\127\001\127\
\\001\127\001\127\001\127\001\127\001\127\001\127\001\127\001\127\
\\001\127\001\127\001\127\001\127\001\127\001\127\001\127\001\127\
\\001\127\001\127\001\127\001\127\001\127\001\127\001\127\001\127\
\\001\127\001\127\001\127\001\127\001\127\001\127\001\127\001\127\
\\001\127\001\127\001\127\001\127\001\127\001\127\001\127\001\127\
\\001\127\001\127\001\127\001\127\001\127\001\127\001\127\001\127\
\\001\127"
),
 (5, 129, 
"\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\136\001\134\001\134\001\135\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134"
),
 (7, 129, 
"\001\159\001\159\001\159\001\159\001\159\001\159\001\159\001\159\
\\001\159\001\159\001\162\001\159\001\159\001\160\001\159\001\159\
\\001\159\001\159\001\159\001\159\001\159\001\159\001\159\001\159\
\\001\159\001\159\001\159\001\159\001\159\001\159\001\159\001\159\
\\001\137\001\138\001\158\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\139\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\137\
\\001\137"
),
 (9, 129, 
"\001\185\001\185\001\185\001\185\001\185\001\185\001\185\001\185\
\\001\185\001\185\001\188\001\185\001\185\001\186\001\185\001\185\
\\001\185\001\185\001\185\001\185\001\185\001\185\001\185\001\185\
\\001\185\001\185\001\185\001\185\001\185\001\185\001\185\001\185\
\\001\163\001\164\001\163\001\164\001\164\001\164\001\164\001\184\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\165\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\163\
\\001\163"
),
 (11, 129, 
"\001\189\001\189\001\189\001\189\001\189\001\189\001\189\001\189\
\\001\189\001\191\001\194\001\189\001\191\001\193\001\189\001\189\
\\001\189\001\189\001\189\001\189\001\189\001\189\001\189\001\189\
\\001\189\001\189\001\189\001\189\001\189\001\189\001\189\001\189\
\\001\191\001\189\001\189\001\189\001\189\001\189\001\189\001\189\
\\001\189\001\189\001\189\001\189\001\189\001\189\001\189\001\189\
\\001\189\001\189\001\189\001\189\001\189\001\189\001\189\001\189\
\\001\189\001\189\001\189\001\189\001\189\001\189\001\189\001\189\
\\001\189\001\189\001\189\001\189\001\189\001\189\001\189\001\189\
\\001\189\001\189\001\189\001\189\001\189\001\189\001\189\001\189\
\\001\189\001\189\001\189\001\189\001\189\001\189\001\189\001\189\
\\001\189\001\189\001\189\001\189\001\190\001\189\001\189\001\189\
\\001\189\001\189\001\189\001\189\001\189\001\189\001\189\001\189\
\\001\189\001\189\001\189\001\189\001\189\001\189\001\189\001\189\
\\001\189\001\189\001\189\001\189\001\189\001\189\001\189\001\189\
\\001\189\001\189\001\189\001\189\001\189\001\189\001\189\001\189\
\\001\189"
),
 (13, 129, 
"\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\203\001\196\001\196\001\203\001\204\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\203\001\196\001\195\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\199\001\196\001\196\001\196\
\\001\198\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\195\
\\001\195"
),
 (15, 129, 
"\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\209\001\205\001\205\001\209\001\210\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\209\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\207\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\000\000\
\\000\000"
),
 (17, 129, 
"\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\215\001\211\001\211\001\215\001\216\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\215\001\211\001\213\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\000\000\
\\000\000"
),
 (19, 129, 
"\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\221\001\217\001\217\001\221\001\222\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\221\001\217\001\217\001\217\001\217\001\217\001\217\001\219\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\000\000\
\\000\000"
),
 (21, 129, 
"\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\227\001\223\001\223\001\227\001\228\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\227\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\225\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\000\000\
\\000\000"
),
 (23, 129, 
"\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\233\001\229\001\229\001\233\001\234\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\233\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\231\001\229\001\229\000\000\
\\000\000"
),
 (25, 129, 
"\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\239\001\235\001\235\001\239\001\240\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\239\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\237\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\000\000\
\\000\000"
),
 (27, 129, 
"\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\245\001\241\001\241\001\245\001\246\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\245\001\241\001\241\001\243\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\000\000\
\\000\000"
),
 (29, 129, 
"\001\247\001\247\001\247\001\247\001\247\001\247\001\247\001\247\
\\001\247\001\247\001\252\001\247\001\247\001\251\001\247\001\247\
\\001\247\001\247\001\247\001\247\001\247\001\247\001\247\001\247\
\\001\247\001\247\001\247\001\247\001\247\001\247\001\247\001\247\
\\001\247\001\247\001\247\001\247\001\247\001\247\001\247\001\247\
\\001\247\001\247\001\247\001\247\001\247\001\247\001\247\001\247\
\\001\247\001\247\001\247\001\247\001\247\001\247\001\247\001\247\
\\001\247\001\247\001\247\001\247\001\247\001\247\001\247\001\247\
\\001\247\001\247\001\247\001\247\001\247\001\247\001\247\001\247\
\\001\247\001\247\001\247\001\247\001\247\001\247\001\247\001\247\
\\001\247\001\247\001\247\001\247\001\247\001\247\001\247\001\247\
\\001\247\001\247\001\247\001\247\001\247\001\247\001\249\001\247\
\\001\248\001\247\001\247\001\247\001\247\001\247\001\247\001\247\
\\001\247\001\247\001\247\001\247\001\247\001\247\001\247\001\247\
\\001\247\001\247\001\247\001\247\001\247\001\247\001\247\001\247\
\\001\247\001\247\001\247\001\247\001\247\001\247\001\247\001\247\
\\001\247"
),
 (31, 129, 
"\001\253\001\253\001\253\001\253\001\253\001\253\001\253\001\253\
\\001\253\002\005\002\008\001\253\002\005\002\007\001\253\001\253\
\\001\253\001\253\001\253\001\253\001\253\001\253\001\253\001\253\
\\001\253\001\253\001\253\001\253\001\253\001\253\001\253\001\253\
\\002\005\001\254\001\253\001\253\001\254\001\254\001\254\001\253\
\\002\004\001\253\001\254\001\254\001\253\001\254\001\253\001\254\
\\001\253\001\253\001\253\001\253\001\253\001\253\001\253\001\253\
\\001\253\001\253\001\254\001\253\001\254\001\254\001\254\001\254\
\\001\254\002\000\002\000\002\000\002\000\002\000\002\000\002\000\
\\002\000\002\000\002\000\002\000\002\000\002\000\002\000\002\000\
\\002\000\002\000\002\000\002\000\002\000\002\000\002\000\002\000\
\\002\000\002\000\002\000\001\253\001\254\001\253\001\254\001\253\
\\001\253\002\000\002\000\002\000\002\000\002\000\002\000\002\000\
\\002\000\002\000\002\000\002\000\002\000\002\000\002\000\002\000\
\\002\000\002\000\002\000\002\000\002\000\002\000\002\000\002\000\
\\002\000\002\000\002\000\001\253\001\254\001\253\001\254\001\253\
\\001\253"
),
 (33, 129, 
"\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\000\000\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\012\002\009\002\009\002\009\002\009\002\009\
\\002\010\002\010\002\010\002\010\002\010\002\010\002\010\002\010\
\\002\010\002\010\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009"
),
 (35, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\002\016\000\000\
\\002\015\002\014\002\014\002\014\002\014\002\014\002\014\002\014\
\\002\014\002\014\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (37, 129, 
"\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\020\000\000\002\009\002\020\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\020\002\009\002\019\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\017\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009\002\009\002\009\002\009\002\009\002\009\002\009\002\009\
\\002\009"
),
 (39, 129, 
"\002\023\002\023\002\023\002\023\002\023\002\023\002\023\002\023\
\\002\023\002\023\002\024\002\023\002\023\002\023\002\023\002\023\
\\002\023\002\023\002\023\002\023\002\023\002\023\002\023\002\023\
\\002\023\002\023\002\023\002\023\002\023\002\023\002\023\002\023\
\\002\023\002\023\002\027\002\023\002\023\002\023\002\023\002\023\
\\002\023\002\023\002\025\002\023\002\023\002\023\002\023\002\023\
\\002\023\002\023\002\023\002\023\002\023\002\023\002\023\002\023\
\\002\023\002\023\002\023\002\023\002\023\002\023\002\023\002\023\
\\002\023\002\023\002\023\002\023\002\023\002\023\002\023\002\023\
\\002\023\002\023\002\023\002\023\002\023\002\023\002\023\002\023\
\\002\023\002\023\002\023\002\023\002\023\002\023\002\023\002\023\
\\002\023\002\023\002\023\002\023\002\023\002\023\002\023\002\023\
\\002\023\002\023\002\023\002\023\002\023\002\023\002\023\002\023\
\\002\023\002\023\002\023\002\023\002\023\002\023\002\023\002\023\
\\002\023\002\023\002\023\002\023\002\023\002\023\002\023\002\023\
\\002\023\002\023\002\023\002\023\002\023\002\023\002\023\002\023\
\\002\023"
),
 (41, 129, 
"\002\031\002\031\002\031\002\031\002\031\002\031\002\031\002\031\
\\002\031\003\049\003\052\002\031\003\049\003\051\002\031\002\031\
\\002\031\002\031\002\031\002\031\002\031\002\031\002\031\002\031\
\\002\031\002\031\002\031\002\031\002\031\002\031\002\031\002\031\
\\003\049\003\047\003\046\003\037\003\035\003\033\003\031\003\030\
\\002\174\002\173\002\170\002\166\002\165\002\156\002\144\002\133\
\\002\125\002\115\002\115\002\115\002\115\002\115\002\115\002\115\
\\002\115\002\115\002\099\002\098\002\097\002\096\002\094\002\092\
\\002\090\002\082\002\082\002\082\002\082\002\082\002\082\002\082\
\\002\082\002\082\002\082\002\082\002\082\002\082\002\082\002\082\
\\002\082\002\082\002\082\002\082\002\082\002\082\002\082\002\082\
\\002\082\002\082\002\082\002\081\002\079\002\078\002\076\002\070\
\\002\069\002\039\002\039\002\039\002\039\002\039\002\039\002\039\
\\002\039\002\039\002\039\002\039\002\039\002\039\002\039\002\039\
\\002\039\002\039\002\039\002\039\002\039\002\039\002\039\002\039\
\\002\039\002\039\002\039\002\038\002\036\002\034\002\032\002\031\
\\002\030"
),
 (47, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\049\000\051\000\000\000\049\000\050\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\049\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (48, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (49, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\049\000\000\000\000\000\049\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\049\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (50, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\051\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (53, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\054\000\056\000\000\000\054\000\055\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\054\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (54, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\054\000\000\000\000\000\054\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\054\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (55, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\056\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (57, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\058\000\060\000\000\000\058\000\059\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\058\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (58, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\058\000\000\000\000\000\058\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\058\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (59, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\060\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (61, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\062\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\062\000\062\000\062\000\062\000\062\000\062\000\062\000\062\
\\000\062\000\062\000\063\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\062\
\\000\000\000\062\000\062\000\062\000\062\000\062\000\062\000\062\
\\000\062\000\062\000\062\000\062\000\062\000\062\000\062\000\062\
\\000\062\000\062\000\062\000\062\000\062\000\062\000\062\000\062\
\\000\062\000\062\000\062\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (63, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\064\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (64, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\070\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\067\000\067\000\067\000\067\000\067\000\067\000\067\
\\000\067\000\067\000\067\000\067\000\067\000\067\000\067\000\067\
\\000\067\000\067\000\067\000\067\000\067\000\067\000\067\000\067\
\\000\067\000\067\000\067\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\065\000\065\000\065\000\065\000\065\000\065\000\065\
\\000\065\000\065\000\065\000\065\000\065\000\065\000\065\000\065\
\\000\065\000\065\000\065\000\065\000\065\000\065\000\065\000\065\
\\000\065\000\065\000\065\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (65, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\065\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\065\000\065\000\065\000\065\000\065\000\065\000\065\000\065\
\\000\065\000\065\000\066\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\065\
\\000\000\000\065\000\065\000\065\000\065\000\065\000\065\000\065\
\\000\065\000\065\000\065\000\065\000\065\000\065\000\065\000\065\
\\000\065\000\065\000\065\000\065\000\065\000\065\000\065\000\065\
\\000\065\000\065\000\065\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (67, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\067\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\067\000\067\000\067\000\067\000\067\000\067\000\067\000\067\
\\000\067\000\067\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\069\000\069\000\069\000\069\000\069\000\069\000\069\
\\000\069\000\069\000\069\000\069\000\069\000\069\000\069\000\069\
\\000\069\000\069\000\069\000\069\000\069\000\069\000\069\000\069\
\\000\069\000\069\000\069\000\000\000\000\000\000\000\000\000\067\
\\000\000\000\068\000\068\000\068\000\068\000\068\000\068\000\068\
\\000\068\000\068\000\068\000\068\000\068\000\068\000\068\000\068\
\\000\068\000\068\000\068\000\068\000\068\000\068\000\068\000\068\
\\000\068\000\068\000\068\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (68, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\068\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\068\000\068\000\068\000\068\000\068\000\068\000\068\000\068\
\\000\068\000\068\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\068\000\068\000\068\000\068\000\068\000\068\000\068\
\\000\068\000\068\000\068\000\068\000\068\000\068\000\068\000\068\
\\000\068\000\068\000\068\000\068\000\068\000\068\000\068\000\068\
\\000\068\000\068\000\068\000\000\000\000\000\000\000\000\000\068\
\\000\000\000\068\000\068\000\068\000\068\000\068\000\068\000\068\
\\000\068\000\068\000\068\000\068\000\068\000\068\000\068\000\068\
\\000\068\000\068\000\068\000\068\000\068\000\068\000\068\000\068\
\\000\068\000\068\000\068\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (69, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\069\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\069\000\069\000\069\000\069\000\069\000\069\000\069\000\069\
\\000\069\000\069\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\069\000\069\000\069\000\069\000\069\000\069\000\069\
\\000\069\000\069\000\069\000\069\000\069\000\069\000\069\000\069\
\\000\069\000\069\000\069\000\069\000\069\000\069\000\069\000\069\
\\000\069\000\069\000\069\000\000\000\000\000\000\000\000\000\069\
\\000\000\000\068\000\068\000\068\000\068\000\068\000\068\000\068\
\\000\068\000\068\000\068\000\068\000\068\000\068\000\068\000\068\
\\000\068\000\068\000\068\000\068\000\068\000\068\000\068\000\068\
\\000\068\000\068\000\068\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (70, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\071\000\000\000\000\000\071\000\071\000\071\000\000\
\\000\000\000\000\000\071\000\071\000\000\000\071\000\000\000\088\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\071\000\000\000\085\000\071\000\071\000\071\
\\000\071\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\071\000\000\000\071\000\080\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\077\000\074\000\000\000\071\000\000\
\\000\000"
),
 (71, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\071\000\000\000\000\000\071\000\071\000\071\000\000\
\\000\000\000\073\000\071\000\071\000\000\000\071\000\000\000\071\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\071\000\000\000\071\000\071\000\071\000\071\
\\000\071\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\071\000\000\000\071\000\072\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\071\000\000\000\071\000\000\
\\000\000"
),
 (72, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\073\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (74, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\071\000\000\000\000\000\071\000\071\000\071\000\000\
\\000\000\000\073\000\071\000\071\000\000\000\071\000\000\000\071\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\071\000\000\000\071\000\071\000\071\000\071\
\\000\071\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\071\000\000\000\071\000\075\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\071\000\000\000\071\000\000\
\\000\000"
),
 (75, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\073\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\076\000\000\000\000\000\000\
\\000\000"
),
 (77, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\078\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (78, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\079\000\000\000\000\
\\000\000"
),
 (80, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\071\000\000\000\000\000\071\000\071\000\071\000\000\
\\000\000\000\000\000\071\000\071\000\000\000\071\000\000\000\071\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\071\000\000\000\071\000\071\000\071\000\071\
\\000\071\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\081\000\071\000\000\000\071\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\071\000\000\000\071\000\000\
\\000\000"
),
 (81, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\082\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (82, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\073\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\083\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (83, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\084\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (85, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\071\000\000\000\000\000\071\000\071\000\071\000\000\
\\000\000\000\073\000\071\000\071\000\000\000\071\000\000\000\071\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\071\000\000\000\071\000\071\000\071\000\071\
\\000\071\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\071\000\000\000\071\000\086\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\071\000\000\000\071\000\000\
\\000\000"
),
 (86, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\073\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\087\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (88, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\071\000\000\000\000\000\071\000\071\000\071\000\000\
\\000\000\000\073\000\071\000\071\000\000\000\071\000\000\000\071\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\071\000\000\000\071\000\071\000\071\000\071\
\\000\071\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\071\000\000\000\071\000\089\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\071\000\000\000\071\000\000\
\\000\000"
),
 (89, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\073\000\000\000\000\000\000\000\000\000\000\000\090\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (92, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\093\000\093\000\093\000\093\000\093\000\093\000\093\
\\000\093\000\093\000\093\000\093\000\093\000\093\000\093\000\093\
\\000\093\000\093\000\093\000\093\000\093\000\093\000\093\000\093\
\\000\093\000\093\000\093\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (93, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\097\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\096\000\096\000\096\000\096\000\096\000\096\000\096\000\096\
\\000\096\000\096\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\094\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (94, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\095\000\095\000\095\000\095\000\095\000\095\000\095\
\\000\095\000\095\000\095\000\095\000\095\000\095\000\095\000\095\
\\000\095\000\095\000\095\000\095\000\095\000\095\000\095\000\095\
\\000\095\000\095\000\095\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (95, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\095\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\095\000\095\000\095\000\095\000\095\000\095\000\095\000\095\
\\000\095\000\095\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\095\
\\000\000\000\095\000\095\000\095\000\095\000\095\000\095\000\095\
\\000\095\000\095\000\095\000\095\000\095\000\095\000\095\000\095\
\\000\095\000\095\000\095\000\095\000\095\000\095\000\095\000\095\
\\000\095\000\095\000\095\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (96, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\097\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\096\000\096\000\096\000\096\000\096\000\096\000\096\000\096\
\\000\096\000\096\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (97, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\097\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (98, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\099\000\101\000\000\000\099\000\100\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\099\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (99, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\099\000\000\000\000\000\099\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\099\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (100, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\101\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (103, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\104\000\106\000\000\000\104\000\105\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\104\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (104, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\104\000\000\000\000\000\104\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\104\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (105, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\106\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (108, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\115\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\114\000\114\000\114\000\114\000\114\000\114\000\114\000\114\
\\000\114\000\114\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\000\000\000\000\000\000\000\000\110\
\\000\000\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (109, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\109\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\000\000\000\000\000\000\000\000\109\
\\000\000\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (110, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\112\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\112\000\112\000\112\000\112\000\112\000\112\000\112\000\112\
\\000\112\000\112\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\000\000\000\000\000\000\000\000\112\
\\000\000\000\111\000\111\000\111\000\111\000\111\000\111\000\111\
\\000\111\000\111\000\111\000\111\000\111\000\111\000\111\000\111\
\\000\111\000\111\000\111\000\111\000\111\000\111\000\111\000\111\
\\000\111\000\111\000\111\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (111, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\111\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\111\000\111\000\111\000\111\000\111\000\111\000\111\000\111\
\\000\111\000\111\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\000\000\000\000\000\000\000\000\111\
\\000\000\000\111\000\111\000\111\000\111\000\111\000\111\000\111\
\\000\111\000\111\000\111\000\111\000\111\000\111\000\111\000\111\
\\000\111\000\111\000\111\000\111\000\111\000\111\000\111\000\111\
\\000\111\000\111\000\111\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (112, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\112\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\112\000\112\000\112\000\112\000\112\000\112\000\112\000\112\
\\000\112\000\112\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\000\000\000\000\000\000\000\000\112\
\\000\000\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (113, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\113\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\113\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\000\000\000\000\000\000\000\000\113\
\\000\000\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (114, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\115\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\114\000\114\000\114\000\114\000\114\000\114\000\114\000\114\
\\000\114\000\114\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\000\000\000\000\000\000\000\000\112\
\\000\000\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (115, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\115\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\112\000\112\000\112\000\112\000\112\000\112\000\112\000\112\
\\000\112\000\112\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\113\000\113\000\113\000\113\000\113\
\\000\113\000\113\000\113\000\000\000\000\000\000\000\000\000\112\
\\000\000\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\109\000\109\000\109\000\109\000\109\
\\000\109\000\109\000\109\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (116, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\117\000\119\000\000\000\117\000\118\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\117\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (117, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\117\000\000\000\000\000\117\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\117\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (118, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\119\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (120, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\121\000\123\000\000\000\121\000\122\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\121\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (121, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\121\000\000\000\000\000\121\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\121\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (122, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\123\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (124, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\125\000\127\000\000\000\125\000\126\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\125\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (125, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\125\000\000\000\000\000\125\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\125\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (126, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\127\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (129, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\130\000\132\000\000\000\130\000\131\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\130\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (130, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\130\000\000\000\000\000\130\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\130\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (131, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\132\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (134, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\135\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (135, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\136\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (136, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\142\000\000\000\000\000\000\000\000\000\000\000\000\000\137\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (137, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\138\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (138, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\139\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (139, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\140\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (140, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\141\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (142, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\143\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (143, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\144\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (144, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\145\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (145, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\146\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (146, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\147\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (147, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\148\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (148, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\149\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (150, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\155\000\000\
\\000\154\000\154\000\154\000\154\000\154\000\154\000\154\000\154\
\\000\154\000\154\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\151\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\151\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (151, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\153\000\000\000\000\
\\000\152\000\152\000\152\000\152\000\152\000\152\000\152\000\152\
\\000\152\000\152\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (152, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\152\000\152\000\152\000\152\000\152\000\152\000\152\000\152\
\\000\152\000\152\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (155, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\156\000\156\000\156\000\156\000\156\000\156\000\156\000\156\
\\000\156\000\156\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (156, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\156\000\156\000\156\000\156\000\156\000\156\000\156\000\156\
\\000\156\000\156\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\157\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\157\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (157, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\159\000\000\000\000\
\\000\158\000\158\000\158\000\158\000\158\000\158\000\158\000\158\
\\000\158\000\158\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (158, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\158\000\158\000\158\000\158\000\158\000\158\000\158\000\158\
\\000\158\000\158\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (160, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\155\000\000\
\\000\167\000\167\000\167\000\167\000\167\000\167\000\167\000\167\
\\000\167\000\167\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\151\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\151\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\163\000\000\000\000\
\\000\161\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (161, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\162\000\162\000\162\000\162\000\162\000\162\000\162\000\162\
\\000\162\000\162\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\162\000\162\000\162\000\162\000\162\000\162\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\162\000\162\000\162\000\162\000\162\000\162\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (163, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\
\\000\166\000\166\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\164\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (164, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\165\000\165\000\165\000\165\000\165\000\165\000\165\000\165\
\\000\165\000\165\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\165\000\165\000\165\000\165\000\165\000\165\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\165\000\165\000\165\000\165\000\165\000\165\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (166, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\
\\000\166\000\166\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (167, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\155\000\000\
\\000\167\000\167\000\167\000\167\000\167\000\167\000\167\000\167\
\\000\167\000\167\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\151\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\151\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (168, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\178\000\180\000\000\000\178\000\179\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\178\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\169\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (169, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\048\000\000\000\172\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\170\000\048\000\000\000\170\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\170\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (170, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\048\000\000\000\171\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\170\000\048\000\000\000\170\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\170\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (171, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\171\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\171\000\000\000\000\000\171\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\171\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (172, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\171\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\171\000\000\000\000\000\171\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\171\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\173\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (173, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\174\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (174, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\175\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (175, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\176\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (176, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\177\000\000\000\000\000\177\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\177\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (178, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\178\000\000\000\000\000\178\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\178\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (179, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\180\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (181, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\196\000\198\000\000\000\196\000\197\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\196\000\000\000\195\000\194\000\000\000\000\000\000\000\193\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\188\000\187\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\186\000\185\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\184\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\183\000\182\000\000\000\000\000\000\
\\000\000"
),
 (188, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\190\000\192\000\000\000\190\000\191\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\190\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\189\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (190, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\190\000\000\000\000\000\190\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\190\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (191, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\192\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (196, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\196\000\000\000\000\000\196\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\196\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (197, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\198\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (199, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\218\000\220\000\000\000\218\000\219\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\218\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\214\000\000\000\048\
\\000\211\000\210\000\210\000\210\000\210\000\210\000\210\000\210\
\\000\210\000\210\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\209\000\208\000\207\000\000\000\206\000\000\
\\000\000\000\000\000\000\000\000\000\205\000\000\000\000\000\000\
\\000\204\000\000\000\203\000\202\000\000\000\000\000\000\000\201\
\\000\200\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (210, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\155\000\000\
\\000\210\000\210\000\210\000\210\000\210\000\210\000\210\000\210\
\\000\210\000\210\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\151\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\151\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (211, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\155\000\000\
\\000\210\000\210\000\210\000\210\000\210\000\210\000\210\000\210\
\\000\210\000\210\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\151\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\151\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\212\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (212, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\213\000\213\000\213\000\213\000\213\000\213\000\213\000\213\
\\000\213\000\213\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\213\000\213\000\213\000\213\000\213\000\213\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\213\000\213\000\213\000\213\000\213\000\213\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (214, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\215\000\217\000\000\000\215\000\216\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\215\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (215, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\215\000\000\000\000\000\215\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\215\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (216, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\217\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (218, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\218\000\000\000\000\000\218\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\218\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (219, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\220\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (222, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\227\000\229\000\000\000\227\000\228\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\227\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\223\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (223, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\224\000\226\000\000\000\224\000\225\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\224\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (224, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\224\000\000\000\000\000\224\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\224\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (225, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\226\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (227, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\227\000\000\000\000\000\227\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\227\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (228, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\229\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (230, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\232\000\234\000\000\000\232\000\233\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\232\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\231\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (232, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\232\000\000\000\000\000\232\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\232\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (233, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\234\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (236, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\088\001\084\000\000\000\000\001\080\001\076\001\072\000\000\
\\000\000\000\000\001\068\001\064\000\000\001\060\000\000\001\054\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\001\049\000\238\001\047\001\043\
\\001\039\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\035\000\000\001\031\000\254\
\\000\000\000\252\000\252\000\252\000\252\000\252\000\252\000\252\
\\000\252\000\252\000\252\000\252\000\252\000\252\000\252\000\252\
\\000\252\000\252\000\252\000\252\000\252\000\252\000\252\000\252\
\\000\252\000\252\000\252\000\248\000\243\000\000\000\237\000\000\
\\000\000"
),
 (237, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\000\242\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\240\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (238, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\000\239\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (240, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\241\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (243, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\000\247\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\244\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (244, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\245\000\000\000\000\000\000\
\\000\000"
),
 (245, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\246\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (248, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\249\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (249, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\250\000\000\000\000\
\\000\000"
),
 (250, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\251\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (252, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\252\
\\000\000\000\253\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\252\000\252\000\252\000\252\000\252\000\252\000\252\000\252\
\\000\252\000\252\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\252\
\\000\000\000\252\000\252\000\252\000\252\000\252\000\252\000\252\
\\000\252\000\252\000\252\000\252\000\252\000\252\000\252\000\252\
\\000\252\000\252\000\252\000\252\000\252\000\252\000\252\000\252\
\\000\252\000\252\000\252\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (254, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\029\000\000\000\000\001\027\001\025\001\023\000\000\
\\000\000\000\000\001\021\001\019\000\000\001\017\000\000\001\015\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\013\
\\001\011\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\005\001\003\000\000\001\001\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\255\000\000\
\\000\000"
),
 (255, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (257, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\002\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (259, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\004\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (261, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\001\006\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (262, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\010\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\007\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (263, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\001\008\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (264, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\009\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (267, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\012\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (269, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\014\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (271, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\016\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (273, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\018\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (275, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\020\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (277, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\022\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (279, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\024\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (281, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\026\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (283, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\028\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (285, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\030\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (287, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\001\034\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\001\032\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (288, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\033\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (291, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\001\038\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\001\036\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (292, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\037\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (295, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\001\042\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\001\040\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (296, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\041\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (299, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\001\046\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\001\044\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (300, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\045\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (303, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\001\048\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (305, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\001\053\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\001\050\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (306, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\051\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (307, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\052\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (310, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\001\059\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\001\055\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (311, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\058\000\000\000\000\000\000\000\000\000\000\001\056\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (312, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\057\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (316, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\001\063\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\001\061\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (317, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\062\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (320, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\001\067\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\001\065\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (321, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\066\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (324, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\001\071\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\001\069\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (325, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\070\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (328, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\001\075\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\001\073\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (329, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\074\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (332, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\001\079\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\001\077\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (333, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\078\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (336, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\001\083\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\001\081\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (337, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\082\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (340, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\238\000\000\000\000\000\238\000\238\000\238\000\000\
\\000\000\001\087\000\238\000\238\000\000\000\238\000\000\000\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\238\000\000\000\238\000\238\000\238\000\238\
\\000\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\001\085\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\238\000\000\000\238\000\000\
\\000\000"
),
 (341, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\086\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (344, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\089\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (345, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\090\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (346, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\091\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (349, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\094\001\096\000\000\001\094\001\095\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\094\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (350, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\094\000\000\000\000\001\094\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\094\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (351, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\096\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (353, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\098\001\100\000\000\001\098\001\099\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\098\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (354, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\098\000\000\000\000\001\098\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\098\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (355, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\100\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (357, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\102\001\104\000\000\001\102\001\103\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\102\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (358, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\102\000\000\000\000\001\102\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\102\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (359, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\104\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (361, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\117\001\116\000\000\000\000\001\115\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\114\001\113\000\000\001\112\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\108\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\107\000\000\000\000\000\000\000\000\
\\000\000\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (362, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\106\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\106\
\\000\000\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (364, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\109\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (365, 129, 
"\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\111\000\000\001\110\001\111\000\000\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\111\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\000\000\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110"
),
 (366, 129, 
"\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\000\000\001\110\001\110\000\000\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\000\000\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110"
),
 (371, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\116\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (375, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\120\001\122\000\000\001\120\001\121\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\120\000\048\000\000\000\000\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000"
),
 (376, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\120\000\000\000\000\001\120\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\120\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (377, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\122\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (379, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\124\000\000\000\000\001\124\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\124\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (381, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\126\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (384, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\129\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (385, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\129\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\129\000\000\000\000\001\129\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\001\129\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (386, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\131\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (388, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\133\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (391, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\136\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (394, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\138\000\000\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\000\000\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\001\138\
\\001\138\001\138\001\138\001\138\001\138\001\138\001\138\000\000\
\\000\000"
),
 (395, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\155\001\157\000\000\001\155\001\156\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\155\000\000\001\154\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\151\001\151\001\151\001\151\001\151\001\151\001\151\001\151\
\\001\151\001\151\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\150\000\000\001\147\000\000\
\\000\000\001\146\001\145\000\000\000\000\000\000\001\144\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\143\000\000\
\\000\000\000\000\001\142\000\000\001\141\000\000\001\140\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (403, 129, 
"\001\148\001\148\001\148\001\148\001\148\001\148\001\148\001\148\
\\001\148\001\148\000\000\001\148\001\148\001\148\001\148\001\148\
\\001\148\001\148\001\148\001\148\001\148\001\148\001\148\001\148\
\\001\148\001\148\001\148\001\148\001\148\001\148\001\148\001\148\
\\001\148\001\148\001\148\001\148\001\148\001\148\001\148\001\148\
\\001\148\001\148\001\148\001\148\001\148\001\148\001\148\001\148\
\\001\148\001\148\001\148\001\148\001\148\001\148\001\148\001\148\
\\001\148\001\148\001\148\001\148\001\148\001\148\001\148\001\148\
\\001\149\001\149\001\149\001\149\001\149\001\149\001\149\001\149\
\\001\149\001\149\001\149\001\149\001\149\001\149\001\149\001\149\
\\001\149\001\149\001\149\001\149\001\149\001\149\001\149\001\149\
\\001\149\001\149\001\149\001\149\001\149\001\149\001\149\001\149\
\\001\148\001\148\001\148\001\148\001\148\001\148\001\148\001\148\
\\001\148\001\148\001\148\001\148\001\148\001\148\001\148\001\148\
\\001\148\001\148\001\148\001\148\001\148\001\148\001\148\001\148\
\\001\148\001\148\001\148\001\148\001\148\001\148\001\148\001\148\
\\001\148"
),
 (407, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\152\001\152\001\152\001\152\001\152\001\152\001\152\001\152\
\\001\152\001\152\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (408, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\153\001\153\001\153\001\153\001\153\001\153\001\153\001\153\
\\001\153\001\153\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (411, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\155\000\000\000\000\001\155\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\155\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (412, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\157\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (416, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\161\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (420, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\164\000\000\001\164\001\164\001\164\001\164\000\000\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\000\000\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\001\164\
\\001\164\001\164\001\164\001\164\001\164\001\164\001\164\000\000\
\\000\000"
),
 (421, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\181\001\183\000\000\001\181\001\182\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\181\000\000\000\000\000\000\000\000\000\000\000\000\001\180\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\177\001\177\001\177\001\177\001\177\001\177\001\177\001\177\
\\001\177\001\177\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\176\000\000\001\173\000\000\
\\000\000\001\172\001\171\000\000\000\000\000\000\001\170\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\169\000\000\
\\000\000\000\000\001\168\000\000\001\167\000\000\001\166\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (429, 129, 
"\001\174\001\174\001\174\001\174\001\174\001\174\001\174\001\174\
\\001\174\001\174\000\000\001\174\001\174\001\174\001\174\001\174\
\\001\174\001\174\001\174\001\174\001\174\001\174\001\174\001\174\
\\001\174\001\174\001\174\001\174\001\174\001\174\001\174\001\174\
\\001\174\001\174\001\174\001\174\001\174\001\174\001\174\001\174\
\\001\174\001\174\001\174\001\174\001\174\001\174\001\174\001\174\
\\001\174\001\174\001\174\001\174\001\174\001\174\001\174\001\174\
\\001\174\001\174\001\174\001\174\001\174\001\174\001\174\001\174\
\\001\175\001\175\001\175\001\175\001\175\001\175\001\175\001\175\
\\001\175\001\175\001\175\001\175\001\175\001\175\001\175\001\175\
\\001\175\001\175\001\175\001\175\001\175\001\175\001\175\001\175\
\\001\175\001\175\001\175\001\175\001\175\001\175\001\175\001\175\
\\001\174\001\174\001\174\001\174\001\174\001\174\001\174\001\174\
\\001\174\001\174\001\174\001\174\001\174\001\174\001\174\001\174\
\\001\174\001\174\001\174\001\174\001\174\001\174\001\174\001\174\
\\001\174\001\174\001\174\001\174\001\174\001\174\001\174\001\174\
\\001\174"
),
 (433, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\178\001\178\001\178\001\178\001\178\001\178\001\178\001\178\
\\001\178\001\178\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (434, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\179\001\179\001\179\001\179\001\179\001\179\001\179\001\179\
\\001\179\001\179\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (437, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\181\000\000\000\000\001\181\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\181\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (438, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\183\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (442, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\187\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (447, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\192\000\000\000\000\001\192\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\192\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (449, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\194\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (452, 129, 
"\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\197\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\000\000\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\000\000\001\196\001\196\001\196\
\\000\000\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\000\000\
\\000\000"
),
 (455, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\200\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (456, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\202\000\000\000\000\000\000\
\\001\201\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (459, 129, 
"\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\203\001\196\001\196\001\203\001\197\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\203\001\196\000\000\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\000\000\001\196\001\196\001\196\
\\000\000\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\001\196\
\\001\196\001\196\001\196\001\196\001\196\001\196\001\196\000\000\
\\000\000"
),
 (461, 129, 
"\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\206\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\000\000\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\000\000\
\\000\000"
),
 (463, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\208\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (465, 129, 
"\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\209\001\205\001\205\001\209\001\206\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\209\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\000\000\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\001\205\
\\001\205\001\205\001\205\001\205\001\205\001\205\001\205\000\000\
\\000\000"
),
 (467, 129, 
"\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\212\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\000\000\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\000\000\
\\000\000"
),
 (469, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\214\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (471, 129, 
"\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\215\001\211\001\211\001\215\001\212\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\215\001\211\000\000\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\001\211\
\\001\211\001\211\001\211\001\211\001\211\001\211\001\211\000\000\
\\000\000"
),
 (473, 129, 
"\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\218\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\000\000\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\000\000\
\\000\000"
),
 (475, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\220\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (477, 129, 
"\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\221\001\217\001\217\001\221\001\218\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\221\001\217\001\217\001\217\001\217\001\217\001\217\000\000\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\001\217\
\\001\217\001\217\001\217\001\217\001\217\001\217\001\217\000\000\
\\000\000"
),
 (479, 129, 
"\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\224\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\000\000\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\000\000\
\\000\000"
),
 (481, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\226\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (483, 129, 
"\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\227\001\223\001\223\001\227\001\224\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\227\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\000\000\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\001\223\
\\001\223\001\223\001\223\001\223\001\223\001\223\001\223\000\000\
\\000\000"
),
 (485, 129, 
"\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\230\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\000\000\001\229\001\229\000\000\
\\000\000"
),
 (487, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\232\000\000\000\000\000\000\
\\000\000"
),
 (489, 129, 
"\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\233\001\229\001\229\001\233\001\230\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\233\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\001\229\001\229\001\229\001\229\
\\001\229\001\229\001\229\001\229\000\000\001\229\001\229\000\000\
\\000\000"
),
 (491, 129, 
"\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\236\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\000\000\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\000\000\
\\000\000"
),
 (493, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (495, 129, 
"\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\239\001\235\001\235\001\239\001\236\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\239\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\000\000\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\001\235\
\\001\235\001\235\001\235\001\235\001\235\001\235\001\235\000\000\
\\000\000"
),
 (497, 129, 
"\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\242\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\000\000\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\000\000\
\\000\000"
),
 (499, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\244\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (501, 129, 
"\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\245\001\241\001\241\001\245\001\242\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\245\001\241\001\241\000\000\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\001\241\
\\001\241\001\241\001\241\001\241\001\241\001\241\001\241\000\000\
\\000\000"
),
 (505, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\250\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (507, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\252\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (510, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\255\000\000\000\000\001\255\001\255\001\255\000\000\
\\000\000\000\000\001\255\001\255\000\000\001\255\000\000\001\255\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\255\000\000\001\255\001\255\001\255\001\255\
\\001\255\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\255\000\000\001\255\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\255\000\000\001\255\000\000\
\\000\000"
),
 (512, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\002\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\001\002\001\002\001\002\001\002\001\002\001\002\001\002\001\
\\002\001\002\001\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\001\002\001\002\001\002\001\002\001\002\001\002\001\
\\002\001\002\001\002\001\002\001\002\001\002\001\002\001\002\001\
\\002\001\002\001\002\001\002\001\002\001\002\001\002\001\002\001\
\\002\001\002\001\002\001\000\000\000\000\000\000\000\000\002\001\
\\000\000\002\001\002\001\002\001\002\001\002\001\002\001\002\001\
\\002\001\002\001\002\001\002\001\002\001\002\001\002\001\002\001\
\\002\001\002\001\002\001\002\001\002\001\002\001\002\001\002\001\
\\002\001\002\001\002\001\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (514, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\003\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\001\002\001\002\001\002\001\002\001\002\001\002\001\002\001\
\\002\001\002\001\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\001\002\001\002\001\002\001\002\001\002\001\002\001\
\\002\001\002\001\002\001\002\001\002\001\002\001\002\001\002\001\
\\002\001\002\001\002\001\002\001\002\001\002\001\002\001\002\001\
\\002\001\002\001\002\001\000\000\000\000\000\000\000\000\002\001\
\\000\000\002\001\002\001\002\001\002\001\002\001\002\001\002\001\
\\002\001\002\001\002\001\002\001\002\001\002\001\002\001\002\001\
\\002\001\002\001\002\001\002\001\002\001\002\001\002\001\002\001\
\\002\001\002\001\002\001\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (515, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\003\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (517, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\006\000\000\000\000\002\006\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\006\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (519, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\008\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (522, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\011\002\011\002\011\002\011\002\011\002\011\002\011\002\011\
\\002\011\002\011\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (524, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\013\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (526, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\014\002\014\002\014\002\014\002\014\002\014\002\014\002\014\
\\002\014\002\014\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (527, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\015\002\014\002\014\002\014\002\014\002\014\002\014\002\014\
\\002\014\002\014\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (529, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\018\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (532, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\022\000\000\000\000\002\022\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\022\000\000\002\021\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (535, 129, 
"\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\000\000\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024"
),
 (537, 129, 
"\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\000\000\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\026\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024\002\024\002\024\002\024\002\024\002\024\002\024\002\024\
\\002\024"
),
 (539, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\028\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (540, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\029\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (544, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (546, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\035\000\000\000\000\002\035\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\035\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (548, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\037\000\000\000\000\002\037\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\037\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (549, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\037\000\000\000\000\002\037\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\037\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (551, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\040\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\040\002\040\002\040\002\040\002\040\002\040\002\040\002\040\
\\002\040\002\040\002\041\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\040\
\\000\000\002\040\002\040\002\040\002\040\002\040\002\040\002\040\
\\002\040\002\040\002\040\002\040\002\040\002\040\002\040\002\040\
\\002\040\002\040\002\040\002\040\002\040\002\040\002\040\002\040\
\\002\040\002\040\002\040\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (553, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\042\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (554, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\045\002\045\002\045\002\045\002\045\002\045\002\045\
\\002\045\002\045\002\045\002\045\002\045\002\045\002\045\002\045\
\\002\045\002\045\002\045\002\045\002\045\002\045\002\045\002\045\
\\002\045\002\045\002\045\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\043\002\043\002\043\002\043\002\043\002\043\002\043\
\\002\043\002\043\002\043\002\043\002\043\002\043\002\043\002\043\
\\002\043\002\043\002\043\002\043\002\043\002\043\002\043\002\043\
\\002\043\002\043\002\043\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (555, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\043\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\043\002\043\002\043\002\043\002\043\002\043\002\043\002\043\
\\002\043\002\043\002\044\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\043\
\\000\000\002\043\002\043\002\043\002\043\002\043\002\043\002\043\
\\002\043\002\043\002\043\002\043\002\043\002\043\002\043\002\043\
\\002\043\002\043\002\043\002\043\002\043\002\043\002\043\002\043\
\\002\043\002\043\002\043\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (557, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\045\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\045\002\045\002\045\002\045\002\045\002\045\002\045\002\045\
\\002\045\002\045\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\047\002\047\002\047\002\047\002\047\002\047\002\047\
\\002\047\002\047\002\047\002\047\002\047\002\047\002\047\002\047\
\\002\047\002\047\002\047\002\047\002\047\002\047\002\047\002\047\
\\002\047\002\047\002\047\000\000\000\000\000\000\000\000\002\045\
\\000\000\002\046\002\046\002\046\002\046\002\046\002\046\002\046\
\\002\046\002\046\002\046\002\046\002\046\002\046\002\046\002\046\
\\002\046\002\046\002\046\002\046\002\046\002\046\002\046\002\046\
\\002\046\002\046\002\046\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (558, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\046\002\046\002\046\002\046\002\046\002\046\002\046\002\046\
\\002\046\002\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\046\002\046\002\046\002\046\002\046\002\046\002\046\
\\002\046\002\046\002\046\002\046\002\046\002\046\002\046\002\046\
\\002\046\002\046\002\046\002\046\002\046\002\046\002\046\002\046\
\\002\046\002\046\002\046\000\000\000\000\000\000\000\000\002\046\
\\000\000\002\046\002\046\002\046\002\046\002\046\002\046\002\046\
\\002\046\002\046\002\046\002\046\002\046\002\046\002\046\002\046\
\\002\046\002\046\002\046\002\046\002\046\002\046\002\046\002\046\
\\002\046\002\046\002\046\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (559, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\047\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\047\002\047\002\047\002\047\002\047\002\047\002\047\002\047\
\\002\047\002\047\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\047\002\047\002\047\002\047\002\047\002\047\002\047\
\\002\047\002\047\002\047\002\047\002\047\002\047\002\047\002\047\
\\002\047\002\047\002\047\002\047\002\047\002\047\002\047\002\047\
\\002\047\002\047\002\047\000\000\000\000\000\000\000\000\002\047\
\\000\000\002\046\002\046\002\046\002\046\002\046\002\046\002\046\
\\002\046\002\046\002\046\002\046\002\046\002\046\002\046\002\046\
\\002\046\002\046\002\046\002\046\002\046\002\046\002\046\002\046\
\\002\046\002\046\002\046\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (560, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\049\000\000\000\000\002\049\002\049\002\049\000\000\
\\000\000\000\000\002\049\002\049\000\000\002\049\000\000\002\066\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\049\000\000\002\063\002\049\002\049\002\049\
\\002\049\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\049\000\000\002\049\002\058\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\002\055\002\052\000\000\002\049\000\000\
\\000\000"
),
 (561, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\049\000\000\000\000\002\049\002\049\002\049\000\000\
\\000\000\002\051\002\049\002\049\000\000\002\049\000\000\002\049\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\049\000\000\002\049\002\049\002\049\002\049\
\\002\049\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\049\000\000\002\049\002\050\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\049\000\000\002\049\000\000\
\\000\000"
),
 (562, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\051\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (564, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\049\000\000\000\000\002\049\002\049\002\049\000\000\
\\000\000\002\051\002\049\002\049\000\000\002\049\000\000\002\049\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\049\000\000\002\049\002\049\002\049\002\049\
\\002\049\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\049\000\000\002\049\002\053\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\049\000\000\002\049\000\000\
\\000\000"
),
 (565, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\051\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\054\000\000\000\000\000\000\
\\000\000"
),
 (567, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\056\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (568, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\057\000\000\000\000\
\\000\000"
),
 (570, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\049\000\000\000\000\002\049\002\049\002\049\000\000\
\\000\000\000\000\002\049\002\049\000\000\002\049\000\000\002\049\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\049\000\000\002\049\002\049\002\049\002\049\
\\002\049\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\002\059\002\049\000\000\002\049\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\049\000\000\002\049\000\000\
\\000\000"
),
 (571, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\060\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (572, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\051\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\061\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (573, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\062\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (575, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\049\000\000\000\000\002\049\002\049\002\049\000\000\
\\000\000\002\051\002\049\002\049\000\000\002\049\000\000\002\049\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\049\000\000\002\049\002\049\002\049\002\049\
\\002\049\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\049\000\000\002\049\002\064\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\049\000\000\002\049\000\000\
\\000\000"
),
 (576, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\051\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\002\065\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (578, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\049\000\000\000\000\002\049\002\049\002\049\000\000\
\\000\000\002\051\002\049\002\049\000\000\002\049\000\000\002\049\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\049\000\000\002\049\002\049\002\049\002\049\
\\002\049\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\049\000\000\002\049\002\067\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\049\000\000\002\049\000\000\
\\000\000"
),
 (579, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\051\000\000\000\000\000\000\000\000\000\000\002\068\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (582, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\071\002\071\002\071\002\071\002\071\002\071\002\071\
\\002\071\002\071\002\071\002\071\002\071\002\071\002\071\002\071\
\\002\071\002\071\002\071\002\071\002\071\002\071\002\071\002\071\
\\002\071\002\071\002\071\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (583, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\075\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\074\002\074\002\074\002\074\002\074\002\074\002\074\002\074\
\\002\074\002\074\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\072\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (584, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\073\002\073\002\073\002\073\002\073\002\073\002\073\
\\002\073\002\073\002\073\002\073\002\073\002\073\002\073\002\073\
\\002\073\002\073\002\073\002\073\002\073\002\073\002\073\002\073\
\\002\073\002\073\002\073\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (585, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\073\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\073\002\073\002\073\002\073\002\073\002\073\002\073\002\073\
\\002\073\002\073\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\073\
\\000\000\002\073\002\073\002\073\002\073\002\073\002\073\002\073\
\\002\073\002\073\002\073\002\073\002\073\002\073\002\073\002\073\
\\002\073\002\073\002\073\002\073\002\073\002\073\002\073\002\073\
\\002\073\002\073\002\073\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (586, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\075\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\074\002\074\002\074\002\074\002\074\002\074\002\074\002\074\
\\002\074\002\074\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (587, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\075\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (588, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\077\000\000\000\000\002\077\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\077\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (589, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\077\000\000\000\000\002\077\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\077\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (591, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\080\000\000\000\000\002\080\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\080\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (592, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\080\000\000\000\000\002\080\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\080\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (594, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\089\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\088\002\088\002\088\002\088\002\088\002\088\002\088\002\088\
\\002\088\002\088\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\000\000\000\000\000\000\000\000\002\084\
\\000\000\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (595, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\083\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\000\000\000\000\000\000\000\000\002\083\
\\000\000\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (596, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\086\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\086\002\086\002\086\002\086\002\086\002\086\002\086\002\086\
\\002\086\002\086\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\000\000\000\000\000\000\000\000\002\086\
\\000\000\002\085\002\085\002\085\002\085\002\085\002\085\002\085\
\\002\085\002\085\002\085\002\085\002\085\002\085\002\085\002\085\
\\002\085\002\085\002\085\002\085\002\085\002\085\002\085\002\085\
\\002\085\002\085\002\085\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (597, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\085\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\085\002\085\002\085\002\085\002\085\002\085\002\085\002\085\
\\002\085\002\085\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\000\000\000\000\000\000\000\000\002\085\
\\000\000\002\085\002\085\002\085\002\085\002\085\002\085\002\085\
\\002\085\002\085\002\085\002\085\002\085\002\085\002\085\002\085\
\\002\085\002\085\002\085\002\085\002\085\002\085\002\085\002\085\
\\002\085\002\085\002\085\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (598, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\086\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\086\002\086\002\086\002\086\002\086\002\086\002\086\002\086\
\\002\086\002\086\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\000\000\000\000\000\000\000\000\002\086\
\\000\000\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (599, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\087\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\087\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\000\000\000\000\000\000\000\000\002\087\
\\000\000\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (600, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\089\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\088\002\088\002\088\002\088\002\088\002\088\002\088\002\088\
\\002\088\002\088\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\000\000\000\000\000\000\000\000\002\086\
\\000\000\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (601, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\089\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\086\002\086\002\086\002\086\002\086\002\086\002\086\002\086\
\\002\086\002\086\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\002\087\002\087\002\087\002\087\002\087\
\\002\087\002\087\002\087\000\000\000\000\000\000\000\000\002\086\
\\000\000\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\002\083\002\083\002\083\002\083\002\083\
\\002\083\002\083\002\083\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (602, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\091\000\000\000\000\002\091\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\091\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (603, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\091\000\000\000\000\002\091\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\091\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (604, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\093\000\000\000\000\002\093\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\093\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (605, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\093\000\000\000\000\002\093\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\093\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (606, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\095\000\000\000\000\002\095\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\095\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (607, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\095\000\000\000\000\002\095\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\095\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (611, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\100\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (612, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\101\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (613, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\107\000\000\000\000\000\000\000\000\000\000\000\000\002\102\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (614, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\103\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (615, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\104\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (616, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\002\105\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (617, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\106\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (619, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\108\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (620, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\109\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (621, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\110\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (622, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\111\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (623, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\112\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (624, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\113\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (625, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\114\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (627, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\002\120\000\000\
\\002\119\002\119\002\119\002\119\002\119\002\119\002\119\002\119\
\\002\119\002\119\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\116\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\116\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (628, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\118\000\000\000\000\
\\002\117\002\117\002\117\002\117\002\117\002\117\002\117\002\117\
\\002\117\002\117\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (629, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\117\002\117\002\117\002\117\002\117\002\117\002\117\002\117\
\\002\117\002\117\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (632, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\121\002\121\002\121\002\121\002\121\002\121\002\121\002\121\
\\002\121\002\121\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (633, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\121\002\121\002\121\002\121\002\121\002\121\002\121\002\121\
\\002\121\002\121\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\122\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\122\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (634, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\124\000\000\000\000\
\\002\123\002\123\002\123\002\123\002\123\002\123\002\123\002\123\
\\002\123\002\123\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (635, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\123\002\123\002\123\002\123\002\123\002\123\002\123\002\123\
\\002\123\002\123\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (637, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\002\120\000\000\
\\002\132\002\132\002\132\002\132\002\132\002\132\002\132\002\132\
\\002\132\002\132\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\116\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\116\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\128\000\000\000\000\
\\002\126\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (638, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\127\002\127\002\127\002\127\002\127\002\127\002\127\002\127\
\\002\127\002\127\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\127\002\127\002\127\002\127\002\127\002\127\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\127\002\127\002\127\002\127\002\127\002\127\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (640, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\131\002\131\002\131\002\131\002\131\002\131\002\131\002\131\
\\002\131\002\131\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\129\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (641, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\130\002\130\002\130\002\130\002\130\002\130\002\130\002\130\
\\002\130\002\130\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\130\002\130\002\130\002\130\002\130\002\130\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\130\002\130\002\130\002\130\002\130\002\130\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (643, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\131\002\131\002\131\002\131\002\131\002\131\002\131\002\131\
\\002\131\002\131\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (644, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\002\120\000\000\
\\002\132\002\132\002\132\002\132\002\132\002\132\002\132\002\132\
\\002\132\002\132\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\116\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\116\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (645, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\143\000\000\000\000\002\143\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\143\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\134\002\033\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (646, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\033\000\000\002\137\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\135\002\033\000\000\002\135\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\135\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (647, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\033\000\000\002\136\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\135\002\033\000\000\002\135\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\135\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (648, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\002\136\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\136\000\000\000\000\002\136\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\136\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (649, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\002\136\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\136\000\000\000\000\002\136\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\136\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\138\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (650, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\139\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (651, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\002\140\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (652, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\141\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (653, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\142\000\000\000\000\002\142\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\142\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (655, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\143\000\000\000\000\002\143\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\143\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (656, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\155\000\000\000\000\000\000\000\000\002\154\
\\000\000\000\000\000\000\000\000\000\000\000\000\002\151\002\150\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\149\002\148\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\147\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\002\146\002\145\000\000\000\000\000\000\
\\000\000"
),
 (663, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\153\000\000\000\000\002\153\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\153\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\002\152\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (665, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\153\000\000\000\000\002\153\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\153\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (668, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\164\000\000\000\000\002\164\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\164\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\162\000\000\002\033\
\\002\159\002\158\002\158\002\158\002\158\002\158\002\158\002\158\
\\002\158\002\158\002\033\000\000\002\033\002\033\002\157\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (670, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\002\120\000\000\
\\002\158\002\158\002\158\002\158\002\158\002\158\002\158\002\158\
\\002\158\002\158\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\116\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\116\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (671, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\002\120\000\000\
\\002\158\002\158\002\158\002\158\002\158\002\158\002\158\002\158\
\\002\158\002\158\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\116\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\116\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\160\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (672, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\161\002\161\002\161\002\161\002\161\002\161\002\161\002\161\
\\002\161\002\161\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\161\002\161\002\161\002\161\002\161\002\161\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\161\002\161\002\161\002\161\002\161\002\161\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (674, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\163\000\000\000\000\002\163\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\163\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (675, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\163\000\000\000\000\002\163\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\163\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (676, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\164\000\000\000\000\002\164\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\164\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (678, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\169\000\000\000\000\002\169\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\169\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\167\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (679, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\168\000\000\000\000\002\168\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\168\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (680, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\168\000\000\000\000\002\168\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\168\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (681, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\169\000\000\000\000\002\169\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\169\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (682, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\172\000\000\000\000\002\172\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\172\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\033\000\000\002\171\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (684, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\172\000\000\000\000\002\172\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\172\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (686, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\003\026\003\022\000\000\000\000\003\018\003\014\003\010\000\000\
\\000\000\000\000\003\006\003\002\000\000\002\254\000\000\002\248\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\243\002\176\002\241\002\237\
\\002\233\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\229\000\000\002\225\002\192\
\\000\000\002\190\002\190\002\190\002\190\002\190\002\190\002\190\
\\002\190\002\190\002\190\002\190\002\190\002\190\002\190\002\190\
\\002\190\002\190\002\190\002\190\002\190\002\190\002\190\002\190\
\\002\190\002\190\002\190\002\186\002\181\000\000\002\175\000\000\
\\000\000"
),
 (687, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\002\180\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\002\178\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (688, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\002\177\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (690, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\179\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (693, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\002\185\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\002\182\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (694, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\183\000\000\000\000\000\000\
\\000\000"
),
 (695, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\184\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (698, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\187\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (699, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\188\000\000\000\000\
\\000\000"
),
 (700, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\189\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (702, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\190\
\\000\000\002\191\000\000\000\000\000\000\000\000\000\000\000\000\
\\002\190\002\190\002\190\002\190\002\190\002\190\002\190\002\190\
\\002\190\002\190\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\190\
\\000\000\002\190\002\190\002\190\002\190\002\190\002\190\002\190\
\\002\190\002\190\002\190\002\190\002\190\002\190\002\190\002\190\
\\002\190\002\190\002\190\002\190\002\190\002\190\002\190\002\190\
\\002\190\002\190\002\190\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (704, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\223\000\000\000\000\002\221\002\219\002\217\000\000\
\\000\000\000\000\002\215\002\213\000\000\002\211\000\000\002\209\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002\207\
\\002\205\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\002\199\002\197\000\000\002\195\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\002\193\000\000\
\\000\000"
),
 (705, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\194\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (707, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\196\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (709, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\198\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (711, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\200\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (712, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\204\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\201\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (713, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\002\202\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (714, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\203\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (717, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\206\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (719, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\208\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (721, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\210\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (723, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\212\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (725, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\214\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (727, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\216\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (729, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\218\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (731, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\220\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (733, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\222\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (735, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\224\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (737, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\002\228\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\002\226\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (738, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\227\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (741, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\002\232\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\002\230\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (742, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\231\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (745, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\002\236\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\002\234\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (746, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\235\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (749, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\002\240\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\002\238\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (750, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\239\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (753, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\002\242\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (755, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\002\247\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\002\244\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (756, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\002\245\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (757, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\246\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (760, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\002\253\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\002\249\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (761, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\252\000\000\000\000\000\000\000\000\000\000\002\250\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (762, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\251\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (766, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\003\001\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\002\255\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (767, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (770, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\003\005\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\003\003\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (771, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\004\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (774, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\003\009\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\003\007\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (775, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\008\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (778, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\003\013\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\003\011\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (779, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\012\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (782, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\003\017\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\003\015\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (783, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\016\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (786, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\003\021\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\003\019\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (787, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\020\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (790, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\002\176\000\000\000\000\002\176\002\176\002\176\000\000\
\\000\000\003\025\002\176\002\176\000\000\002\176\000\000\002\176\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\176\000\000\002\176\002\176\002\176\002\176\
\\002\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\003\023\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\176\000\000\002\176\000\000\
\\000\000"
),
 (791, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\024\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (794, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\003\027\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (795, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\003\028\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (796, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\029\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (799, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\032\000\000\000\000\003\032\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\003\032\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (800, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\032\000\000\000\000\003\032\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\003\032\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (801, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\034\000\000\000\000\003\034\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\003\034\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (802, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\034\000\000\000\000\003\034\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\003\034\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (803, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\036\000\000\000\000\003\036\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\003\036\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (804, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\036\000\000\000\000\003\036\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\003\036\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (805, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\045\003\044\000\000\000\000\003\043\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\003\042\003\041\000\000\003\040\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\003\039\000\000\000\000\000\000\000\000\
\\000\000\003\038\003\038\003\038\003\038\003\038\003\038\003\038\
\\003\038\003\038\003\038\003\038\003\038\003\038\003\038\003\038\
\\003\038\003\038\003\038\003\038\003\038\003\038\003\038\003\038\
\\003\038\003\038\003\038\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (806, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\003\038\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\003\038\003\038\003\038\003\038\003\038\003\038\003\038\003\038\
\\003\038\003\038\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\003\038\
\\000\000\003\038\003\038\003\038\003\038\003\038\003\038\003\038\
\\003\038\003\038\003\038\003\038\003\038\003\038\003\038\003\038\
\\003\038\003\038\003\038\003\038\003\038\003\038\003\038\003\038\
\\003\038\003\038\003\038\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (811, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\003\044\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (815, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\048\000\000\000\000\003\048\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\003\048\002\033\000\000\000\000\002\033\002\033\002\033\000\000\
\\000\000\000\000\002\033\002\033\000\000\002\033\000\000\002\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\002\033\000\000\002\033\002\033\002\033\002\033\
\\002\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\002\033\000\000\002\033\000\000\
\\000\000"
),
 (816, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\048\000\000\000\000\003\048\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\003\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (817, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\003\050\000\000\000\000\003\050\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\003\050\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
 (819, 129, 
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\003\052\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000"
),
    (0, 0, "")];
    fun f (n, i, x) = (n, vector::tabulate (i, decode x));
    s = map f (reverse (tail (reverse s)));
    exception LEX_HACKING_ERROR;
    fun get ((j, x) ! r, i: Int)
            =>
            if (i == j)  x;   else get (r, i); fi;

        get ([], i)
            =>
            raise exception LEX_HACKING_ERROR;
    end;
fun g {   fin => x,   trans => i   }
    =
    {   fin => x,   trans => get (s, i)   };
 vector::from_list (map g 
[{ fin => [], trans => 0},
{ fin => [(NN 2)], trans => 1},
{ fin => [(NN 2)], trans => 1},
{ fin => [], trans => 3},
{ fin => [], trans => 3},
{ fin => [], trans => 5},
{ fin => [], trans => 5},
{ fin => [], trans => 7},
{ fin => [], trans => 7},
{ fin => [], trans => 9},
{ fin => [], trans => 9},
{ fin => [(NN 2264)], trans => 11},
{ fin => [(NN 2264)], trans => 11},
{ fin => [(NN 1867)], trans => 13},
{ fin => [(NN 1867)], trans => 13},
{ fin => [(NN 1904)], trans => 15},
{ fin => [(NN 1904)], trans => 15},
{ fin => [(NN 1948)], trans => 17},
{ fin => [(NN 1948)], trans => 17},
{ fin => [(NN 1992)], trans => 19},
{ fin => [(NN 1992)], trans => 19},
{ fin => [(NN 2036)], trans => 21},
{ fin => [(NN 2036)], trans => 21},
{ fin => [(NN 2080)], trans => 23},
{ fin => [(NN 2080)], trans => 23},
{ fin => [(NN 2124)], trans => 25},
{ fin => [(NN 2124)], trans => 25},
{ fin => [(NN 2166)], trans => 27},
{ fin => [(NN 2166)], trans => 27},
{ fin => [], trans => 29},
{ fin => [], trans => 29},
{ fin => [(NN 2292)], trans => 31},
{ fin => [(NN 2292)], trans => 31},
{ fin => [], trans => 33},
{ fin => [], trans => 33},
{ fin => [(NN 1703)], trans => 35},
{ fin => [(NN 1703)], trans => 35},
{ fin => [], trans => 37},
{ fin => [], trans => 37},
{ fin => [(NN 1712)], trans => 39},
{ fin => [(NN 1712)], trans => 39},
{ fin => [], trans => 41},
{ fin => [], trans => 41},
{ fin => [], trans => 0},
{ fin => [], trans => 0},
{ fin => [(NN 925), (NN 927)], trans => 0},
{ fin => [(NN 927)], trans => 0},
{ fin => [(NN 584), (NN 791), (NN 802), (NN 927)], trans => 47},
{ fin => [(NN 791), (NN 802)], trans => 48},
{ fin => [(NN 142)], trans => 49},
{ fin => [(NN 271)], trans => 50},
{ fin => [(NN 271)], trans => 0},
{ fin => [(NN 16), (NN 927)], trans => 0},
{ fin => [(NN 543), (NN 791), (NN 802), (NN 927)], trans => 53},
{ fin => [(NN 70)], trans => 54},
{ fin => [(NN 199)], trans => 55},
{ fin => [(NN 199)], trans => 0},
{ fin => [(NN 547), (NN 927)], trans => 57},
{ fin => [(NN 94)], trans => 58},
{ fin => [(NN 223)], trans => 59},
{ fin => [(NN 223)], trans => 0},
{ fin => [(NN 673), (NN 927)], trans => 61},
{ fin => [(NN 673)], trans => 61},
{ fin => [], trans => 63},
{ fin => [], trans => 64},
{ fin => [(NN 782)], trans => 65},
{ fin => [], trans => 63},
{ fin => [], trans => 67},
{ fin => [(NN 768)], trans => 68},
{ fin => [(NN 753)], trans => 69},
{ fin => [], trans => 70},
{ fin => [], trans => 71},
{ fin => [], trans => 72},
{ fin => [(NN 738)], trans => 0},
{ fin => [], trans => 74},
{ fin => [], trans => 75},
{ fin => [], trans => 72},
{ fin => [], trans => 77},
{ fin => [], trans => 78},
{ fin => [], trans => 72},
{ fin => [], trans => 80},
{ fin => [], trans => 81},
{ fin => [], trans => 82},
{ fin => [], trans => 83},
{ fin => [], trans => 72},
{ fin => [], trans => 85},
{ fin => [], trans => 86},
{ fin => [], trans => 72},
{ fin => [], trans => 88},
{ fin => [], trans => 89},
{ fin => [], trans => 72},
{ fin => [(NN 804), (NN 927)], trans => 0},
{ fin => [(NN 9), (NN 927)], trans => 92},
{ fin => [(NN 621)], trans => 93},
{ fin => [], trans => 94},
{ fin => [(NN 628)], trans => 95},
{ fin => [(NN 621)], trans => 96},
{ fin => [(NN 621)], trans => 97},
{ fin => [(NN 574), (NN 791), (NN 802), (NN 927)], trans => 98},
{ fin => [(NN 82)], trans => 99},
{ fin => [(NN 211)], trans => 100},
{ fin => [(NN 211)], trans => 0},
{ fin => [(NN 23), (NN 927)], trans => 0},
{ fin => [(NN 566), (NN 791), (NN 802), (NN 927)], trans => 103},
{ fin => [(NN 58)], trans => 104},
{ fin => [(NN 187)], trans => 105},
{ fin => [(NN 187)], trans => 0},
{ fin => [(NN 18), (NN 927)], trans => 0},
{ fin => [(NN 621), (NN 927)], trans => 108},
{ fin => [(NN 678)], trans => 109},
{ fin => [], trans => 110},
{ fin => [(NN 628), (NN 678)], trans => 111},
{ fin => [], trans => 112},
{ fin => [(NN 683)], trans => 113},
{ fin => [(NN 621)], trans => 114},
{ fin => [(NN 621)], trans => 115},
{ fin => [(NN 570), (NN 791), (NN 802), (NN 927)], trans => 116},
{ fin => [(NN 52)], trans => 117},
{ fin => [(NN 181)], trans => 118},
{ fin => [(NN 181)], trans => 0},
{ fin => [(NN 580), (NN 791), (NN 802), (NN 927)], trans => 120},
{ fin => [(NN 124)], trans => 121},
{ fin => [(NN 253)], trans => 122},
{ fin => [(NN 253)], trans => 0},
{ fin => [(NN 791), (NN 802), (NN 927)], trans => 124},
{ fin => [(NN 106)], trans => 125},
{ fin => [(NN 235)], trans => 126},
{ fin => [(NN 235)], trans => 0},
{ fin => [(NN 791), (NN 802), (NN 927)], trans => 48},
{ fin => [(NN 545), (NN 791), (NN 802), (NN 927)], trans => 129},
{ fin => [(NN 100)], trans => 130},
{ fin => [(NN 229)], trans => 131},
{ fin => [(NN 229)], trans => 0},
{ fin => [(NN 25), (NN 927)], trans => 0},
{ fin => [(NN 791), (NN 802), (NN 927)], trans => 134},
{ fin => [], trans => 135},
{ fin => [], trans => 136},
{ fin => [], trans => 137},
{ fin => [], trans => 138},
{ fin => [], trans => 139},
{ fin => [], trans => 140},
{ fin => [(NN 597)], trans => 0},
{ fin => [], trans => 142},
{ fin => [], trans => 143},
{ fin => [], trans => 144},
{ fin => [], trans => 145},
{ fin => [], trans => 146},
{ fin => [], trans => 147},
{ fin => [], trans => 148},
{ fin => [(NN 609)], trans => 0},
{ fin => [(NN 848), (NN 855), (NN 927)], trans => 150},
{ fin => [], trans => 151},
{ fin => [(NN 845)], trans => 152},
{ fin => [], trans => 152},
{ fin => [(NN 848), (NN 855)], trans => 150},
{ fin => [], trans => 155},
{ fin => [(NN 845)], trans => 156},
{ fin => [], trans => 157},
{ fin => [(NN 845)], trans => 158},
{ fin => [], trans => 158},
{ fin => [(NN 855), (NN 927)], trans => 160},
{ fin => [], trans => 161},
{ fin => [(NN 864)], trans => 161},
{ fin => [], trans => 163},
{ fin => [], trans => 164},
{ fin => [(NN 881)], trans => 164},
{ fin => [(NN 875)], trans => 166},
{ fin => [(NN 852), (NN 855)], trans => 167},
{ fin => [(NN 549), (NN 582), (NN 791), (NN 802), (NN 927)], trans => 168},
{ fin => [(NN 613), (NN 791), (NN 802)], trans => 169},
{ fin => [(NN 613), (NN 791), (NN 802)], trans => 170},
{ fin => [(NN 613)], trans => 171},
{ fin => [(NN 613)], trans => 172},
{ fin => [], trans => 173},
{ fin => [], trans => 174},
{ fin => [], trans => 175},
{ fin => [], trans => 176},
{ fin => [(NN 897)], trans => 176},
{ fin => [(NN 130)], trans => 178},
{ fin => [(NN 259)], trans => 179},
{ fin => [(NN 259)], trans => 0},
{ fin => [(NN 538), (NN 927)], trans => 181},
{ fin => [(NN 819)], trans => 0},
{ fin => [(NN 14)], trans => 0},
{ fin => [(NN 807)], trans => 0},
{ fin => [(NN 541)], trans => 0},
{ fin => [(NN 816)], trans => 0},
{ fin => [(NN 822)], trans => 0},
{ fin => [(NN 558)], trans => 188},
{ fin => [(NN 588)], trans => 0},
{ fin => [(NN 163)], trans => 190},
{ fin => [(NN 298)], trans => 191},
{ fin => [(NN 298)], trans => 0},
{ fin => [(NN 813)], trans => 0},
{ fin => [(NN 825)], trans => 0},
{ fin => [(NN 810)], trans => 0},
{ fin => [(NN 169)], trans => 196},
{ fin => [(NN 277)], trans => 197},
{ fin => [(NN 277)], trans => 0},
{ fin => [(NN 564), (NN 791), (NN 802), (NN 927)], trans => 199},
{ fin => [(NN 663)], trans => 0},
{ fin => [(NN 660)], trans => 0},
{ fin => [(NN 654), (NN 1440)], trans => 0},
{ fin => [(NN 657)], trans => 0},
{ fin => [(NN 642), (NN 1428)], trans => 0},
{ fin => [(NN 645), (NN 1431)], trans => 0},
{ fin => [(NN 636), (NN 1422)], trans => 0},
{ fin => [(NN 639), (NN 1425)], trans => 0},
{ fin => [(NN 648), (NN 1434)], trans => 0},
{ fin => [(NN 651), (NN 1437)], trans => 0},
{ fin => [(NN 859)], trans => 210},
{ fin => [(NN 859)], trans => 211},
{ fin => [], trans => 212},
{ fin => [(NN 870)], trans => 212},
{ fin => [(NN 555), (NN 791), (NN 802)], trans => 214},
{ fin => [(NN 156)], trans => 215},
{ fin => [(NN 291)], trans => 216},
{ fin => [(NN 291)], trans => 0},
{ fin => [(NN 88)], trans => 218},
{ fin => [(NN 217)], trans => 219},
{ fin => [(NN 217)], trans => 0},
{ fin => [(NN 11), (NN 927)], trans => 0},
{ fin => [(NN 578), (NN 791), (NN 802), (NN 927)], trans => 222},
{ fin => [(NN 552), (NN 791), (NN 802)], trans => 223},
{ fin => [(NN 149)], trans => 224},
{ fin => [(NN 284)], trans => 225},
{ fin => [(NN 284)], trans => 0},
{ fin => [(NN 118)], trans => 227},
{ fin => [(NN 247)], trans => 228},
{ fin => [(NN 247)], trans => 0},
{ fin => [(NN 562), (NN 791), (NN 802), (NN 927)], trans => 230},
{ fin => [(NN 616), (NN 791), (NN 802)], trans => 48},
{ fin => [(NN 136)], trans => 232},
{ fin => [(NN 265)], trans => 233},
{ fin => [(NN 265)], trans => 0},
{ fin => [(NN 40), (NN 927)], trans => 0},
{ fin => [(NN 38), (NN 927)], trans => 236},
{ fin => [], trans => 237},
{ fin => [], trans => 238},
{ fin => [(NN 36)], trans => 0},
{ fin => [], trans => 240},
{ fin => [(NN 363)], trans => 0},
{ fin => [(NN 36), (NN 427)], trans => 0},
{ fin => [], trans => 243},
{ fin => [], trans => 244},
{ fin => [], trans => 245},
{ fin => [(NN 504)], trans => 0},
{ fin => [(NN 36), (NN 383)], trans => 0},
{ fin => [], trans => 248},
{ fin => [], trans => 249},
{ fin => [], trans => 250},
{ fin => [(NN 522)], trans => 0},
{ fin => [], trans => 252},
{ fin => [(NN 669)], trans => 0},
{ fin => [], trans => 254},
{ fin => [], trans => 255},
{ fin => [(NN 498)], trans => 0},
{ fin => [], trans => 257},
{ fin => [(NN 463)], trans => 0},
{ fin => [], trans => 259},
{ fin => [(NN 448)], trans => 0},
{ fin => [], trans => 261},
{ fin => [], trans => 262},
{ fin => [], trans => 263},
{ fin => [], trans => 264},
{ fin => [(NN 536)], trans => 0},
{ fin => [(NN 528)], trans => 0},
{ fin => [], trans => 267},
{ fin => [(NN 443)], trans => 0},
{ fin => [], trans => 269},
{ fin => [(NN 483)], trans => 0},
{ fin => [], trans => 271},
{ fin => [(NN 488)], trans => 0},
{ fin => [], trans => 273},
{ fin => [(NN 468)], trans => 0},
{ fin => [], trans => 275},
{ fin => [(NN 478)], trans => 0},
{ fin => [], trans => 277},
{ fin => [(NN 493)], trans => 0},
{ fin => [], trans => 279},
{ fin => [(NN 438)], trans => 0},
{ fin => [], trans => 281},
{ fin => [(NN 473)], trans => 0},
{ fin => [], trans => 283},
{ fin => [(NN 458)], trans => 0},
{ fin => [], trans => 285},
{ fin => [(NN 453)], trans => 0},
{ fin => [], trans => 287},
{ fin => [], trans => 288},
{ fin => [(NN 328)], trans => 0},
{ fin => [(NN 36), (NN 391)], trans => 0},
{ fin => [], trans => 291},
{ fin => [], trans => 292},
{ fin => [(NN 313)], trans => 0},
{ fin => [(NN 36), (NN 375)], trans => 0},
{ fin => [], trans => 295},
{ fin => [], trans => 296},
{ fin => [(NN 308)], trans => 0},
{ fin => [(NN 36), (NN 371)], trans => 0},
{ fin => [], trans => 299},
{ fin => [], trans => 300},
{ fin => [(NN 348)], trans => 0},
{ fin => [(NN 36), (NN 415)], trans => 0},
{ fin => [], trans => 303},
{ fin => [(NN 36), (NN 407)], trans => 0},
{ fin => [], trans => 305},
{ fin => [], trans => 306},
{ fin => [], trans => 307},
{ fin => [(NN 510)], trans => 0},
{ fin => [(NN 36), (NN 403)], trans => 0},
{ fin => [], trans => 310},
{ fin => [], trans => 311},
{ fin => [], trans => 312},
{ fin => [(NN 516)], trans => 0},
{ fin => [(NN 353)], trans => 0},
{ fin => [(NN 36), (NN 419)], trans => 0},
{ fin => [], trans => 316},
{ fin => [], trans => 317},
{ fin => [(NN 333)], trans => 0},
{ fin => [(NN 36), (NN 395)], trans => 0},
{ fin => [], trans => 320},
{ fin => [], trans => 321},
{ fin => [(NN 343)], trans => 0},
{ fin => [(NN 36), (NN 411)], trans => 0},
{ fin => [], trans => 324},
{ fin => [], trans => 325},
{ fin => [(NN 358)], trans => 0},
{ fin => [(NN 36), (NN 423)], trans => 0},
{ fin => [], trans => 328},
{ fin => [], trans => 329},
{ fin => [(NN 303)], trans => 0},
{ fin => [(NN 36), (NN 367)], trans => 0},
{ fin => [], trans => 332},
{ fin => [], trans => 333},
{ fin => [(NN 338)], trans => 0},
{ fin => [(NN 36), (NN 399)], trans => 0},
{ fin => [], trans => 336},
{ fin => [], trans => 337},
{ fin => [(NN 323)], trans => 0},
{ fin => [(NN 36), (NN 387)], trans => 0},
{ fin => [], trans => 340},
{ fin => [], trans => 341},
{ fin => [(NN 318)], trans => 0},
{ fin => [(NN 36), (NN 379)], trans => 0},
{ fin => [], trans => 344},
{ fin => [], trans => 345},
{ fin => [], trans => 346},
{ fin => [(NN 433)], trans => 0},
{ fin => [(NN 885), (NN 927)], trans => 0},
{ fin => [(NN 568), (NN 791), (NN 802), (NN 927)], trans => 349},
{ fin => [(NN 46)], trans => 350},
{ fin => [(NN 175)], trans => 351},
{ fin => [(NN 175)], trans => 0},
{ fin => [(NN 576), (NN 791), (NN 802), (NN 927)], trans => 353},
{ fin => [(NN 112)], trans => 354},
{ fin => [(NN 241)], trans => 355},
{ fin => [(NN 241)], trans => 0},
{ fin => [(NN 572), (NN 791), (NN 802), (NN 927)], trans => 357},
{ fin => [(NN 76)], trans => 358},
{ fin => [(NN 205)], trans => 359},
{ fin => [(NN 205)], trans => 0},
{ fin => [(NN 793), (NN 927)], trans => 361},
{ fin => [(NN 633)], trans => 362},
{ fin => [(NN 21)], trans => 0},
{ fin => [], trans => 364},
{ fin => [], trans => 365},
{ fin => [(NN 923)], trans => 366},
{ fin => [(NN 923)], trans => 365},
{ fin => [(NN 915)], trans => 0},
{ fin => [(NN 912)], trans => 0},
{ fin => [(NN 906)], trans => 0},
{ fin => [(NN 903)], trans => 371},
{ fin => [(NN 903)], trans => 0},
{ fin => [(NN 909)], trans => 0},
{ fin => [(NN 883), (NN 927)], trans => 0},
{ fin => [(NN 560), (NN 791), (NN 802), (NN 927)], trans => 375},
{ fin => [(NN 64)], trans => 376},
{ fin => [(NN 193)], trans => 377},
{ fin => [(NN 193)], trans => 0},
{ fin => [(NN 2), (NN 927)], trans => 379},
{ fin => [(NN 2)], trans => 379},
{ fin => [(NN 7), (NN 927)], trans => 381},
{ fin => [(NN 7)], trans => 0},
{ fin => [(NN 1742)], trans => 0},
{ fin => [(NN 1742)], trans => 384},
{ fin => [(NN 1732)], trans => 385},
{ fin => [(NN 1742)], trans => 386},
{ fin => [(NN 1740)], trans => 0},
{ fin => [(NN 1737), (NN 1742)], trans => 388},
{ fin => [(NN 1737)], trans => 0},
{ fin => [(NN 1728)], trans => 0},
{ fin => [(NN 1726), (NN 1728)], trans => 391},
{ fin => [(NN 1726)], trans => 0},
{ fin => [(NN 1827)], trans => 0},
{ fin => [(NN 1827)], trans => 394},
{ fin => [(NN 1759), (NN 1801), (NN 1827)], trans => 395},
{ fin => [(NN 1780)], trans => 0},
{ fin => [(NN 1777)], trans => 0},
{ fin => [(NN 1774)], trans => 0},
{ fin => [(NN 1771)], trans => 0},
{ fin => [(NN 1768)], trans => 0},
{ fin => [(NN 1765)], trans => 0},
{ fin => [(NN 1762)], trans => 0},
{ fin => [], trans => 403},
{ fin => [(NN 1794)], trans => 0},
{ fin => [(NN 1790), (NN 1794)], trans => 0},
{ fin => [(NN 1783)], trans => 0},
{ fin => [], trans => 407},
{ fin => [], trans => 408},
{ fin => [(NN 1799)], trans => 0},
{ fin => [(NN 1786)], trans => 0},
{ fin => [(NN 1759)], trans => 411},
{ fin => [(NN 1755)], trans => 412},
{ fin => [(NN 1755)], trans => 0},
{ fin => [(NN 1744), (NN 1827)], trans => 0},
{ fin => [(NN 1803), (NN 1827)], trans => 0},
{ fin => [(NN 1749), (NN 1803), (NN 1827)], trans => 416},
{ fin => [(NN 1749)], trans => 0},
{ fin => [(NN 1749), (NN 1803)], trans => 0},
{ fin => [(NN 2256)], trans => 0},
{ fin => [(NN 2256)], trans => 420},
{ fin => [(NN 2188), (NN 2230), (NN 2256)], trans => 421},
{ fin => [(NN 2209)], trans => 0},
{ fin => [(NN 2206)], trans => 0},
{ fin => [(NN 2203)], trans => 0},
{ fin => [(NN 2200)], trans => 0},
{ fin => [(NN 2197)], trans => 0},
{ fin => [(NN 2194)], trans => 0},
{ fin => [(NN 2191)], trans => 0},
{ fin => [], trans => 429},
{ fin => [(NN 2223)], trans => 0},
{ fin => [(NN 2219), (NN 2223)], trans => 0},
{ fin => [(NN 2212)], trans => 0},
{ fin => [], trans => 433},
{ fin => [], trans => 434},
{ fin => [(NN 2228)], trans => 0},
{ fin => [(NN 2215)], trans => 0},
{ fin => [(NN 2188)], trans => 437},
{ fin => [(NN 2184)], trans => 438},
{ fin => [(NN 2184)], trans => 0},
{ fin => [(NN 2173), (NN 2256)], trans => 0},
{ fin => [(NN 2232), (NN 2256)], trans => 0},
{ fin => [(NN 2178), (NN 2232), (NN 2256)], trans => 442},
{ fin => [(NN 2178)], trans => 0},
{ fin => [(NN 2178), (NN 2232)], trans => 0},
{ fin => [(NN 2268)], trans => 0},
{ fin => [(NN 2266), (NN 2268)], trans => 0},
{ fin => [(NN 2264), (NN 2268)], trans => 447},
{ fin => [(NN 2264)], trans => 447},
{ fin => [(NN 2261), (NN 2268)], trans => 449},
{ fin => [(NN 2261)], trans => 0},
{ fin => [(NN 1867)], trans => 0},
{ fin => [(NN 1867)], trans => 452},
{ fin => [(NN 1867)], trans => 452},
{ fin => [(NN 1831), (NN 1867)], trans => 0},
{ fin => [(NN 1867)], trans => 455},
{ fin => [], trans => 456},
{ fin => [(NN 1831)], trans => 0},
{ fin => [], trans => 455},
{ fin => [(NN 1867)], trans => 459},
{ fin => [(NN 1867)], trans => 452},
{ fin => [(NN 1904)], trans => 461},
{ fin => [(NN 1904)], trans => 461},
{ fin => [(NN 1909)], trans => 463},
{ fin => [(NN 1907)], trans => 0},
{ fin => [(NN 1904)], trans => 465},
{ fin => [(NN 1904)], trans => 461},
{ fin => [(NN 1948)], trans => 467},
{ fin => [(NN 1948)], trans => 467},
{ fin => [(NN 1953)], trans => 469},
{ fin => [(NN 1951)], trans => 0},
{ fin => [(NN 1948)], trans => 471},
{ fin => [(NN 1948)], trans => 467},
{ fin => [(NN 1992)], trans => 473},
{ fin => [(NN 1992)], trans => 473},
{ fin => [(NN 1997)], trans => 475},
{ fin => [(NN 1995)], trans => 0},
{ fin => [(NN 1992)], trans => 477},
{ fin => [(NN 1992)], trans => 473},
{ fin => [(NN 2036)], trans => 479},
{ fin => [(NN 2036)], trans => 479},
{ fin => [(NN 2041)], trans => 481},
{ fin => [(NN 2039)], trans => 0},
{ fin => [(NN 2036)], trans => 483},
{ fin => [(NN 2036)], trans => 479},
{ fin => [(NN 2080)], trans => 485},
{ fin => [(NN 2080)], trans => 485},
{ fin => [(NN 2085)], trans => 487},
{ fin => [(NN 2083)], trans => 0},
{ fin => [(NN 2080)], trans => 489},
{ fin => [(NN 2080)], trans => 485},
{ fin => [(NN 2124)], trans => 491},
{ fin => [(NN 2124)], trans => 491},
{ fin => [(NN 2129)], trans => 493},
{ fin => [(NN 2127)], trans => 0},
{ fin => [(NN 2124)], trans => 495},
{ fin => [(NN 2124)], trans => 491},
{ fin => [(NN 2166)], trans => 497},
{ fin => [(NN 2166)], trans => 497},
{ fin => [(NN 2171)], trans => 499},
{ fin => [(NN 2169)], trans => 0},
{ fin => [(NN 2166)], trans => 501},
{ fin => [(NN 2166)], trans => 497},
{ fin => [(NN 2284)], trans => 0},
{ fin => [(NN 2277), (NN 2284)], trans => 0},
{ fin => [(NN 2270), (NN 2275), (NN 2284)], trans => 505},
{ fin => [(NN 2273)], trans => 0},
{ fin => [(NN 2282), (NN 2284)], trans => 507},
{ fin => [(NN 2282)], trans => 0},
{ fin => [(NN 2310)], trans => 0},
{ fin => [(NN 2306), (NN 2310)], trans => 510},
{ fin => [(NN 2306)], trans => 510},
{ fin => [(NN 2297), (NN 2310)], trans => 512},
{ fin => [(NN 2297)], trans => 512},
{ fin => [(NN 2297)], trans => 514},
{ fin => [(NN 2297)], trans => 515},
{ fin => [(NN 2308), (NN 2310)], trans => 0},
{ fin => [(NN 2292), (NN 2310)], trans => 517},
{ fin => [(NN 2292)], trans => 517},
{ fin => [(NN 2289), (NN 2310)], trans => 519},
{ fin => [(NN 2289)], trans => 0},
{ fin => [(NN 1721)], trans => 0},
{ fin => [(NN 1696), (NN 1721)], trans => 522},
{ fin => [(NN 1696)], trans => 522},
{ fin => [(NN 1721)], trans => 524},
{ fin => [(NN 1719)], trans => 0},
{ fin => [(NN 1701)], trans => 526},
{ fin => [(NN 1701), (NN 1703)], trans => 527},
{ fin => [(NN 1698)], trans => 0},
{ fin => [(NN 1721)], trans => 529},
{ fin => [(NN 1706), (NN 1719)], trans => 0},
{ fin => [(NN 1710), (NN 1721)], trans => 0},
{ fin => [(NN 1721)], trans => 532},
{ fin => [(NN 1710)], trans => 0},
{ fin => [], trans => 532},
{ fin => [(NN 1712), (NN 1721)], trans => 535},
{ fin => [(NN 1712)], trans => 535},
{ fin => [(NN 1712), (NN 1721)], trans => 537},
{ fin => [(NN 1712), (NN 1719)], trans => 535},
{ fin => [(NN 1721)], trans => 539},
{ fin => [], trans => 540},
{ fin => [(NN 1716)], trans => 0},
{ fin => [(NN 1691), (NN 1693)], trans => 0},
{ fin => [(NN 1693)], trans => 0},
{ fin => [(NN 1115), (NN 1568), (NN 1579), (NN 1693)], trans => 544},
{ fin => [(NN 1568), (NN 1579)], trans => 544},
{ fin => [(NN 1103), (NN 1693)], trans => 546},
{ fin => [(NN 1060)], trans => 546},
{ fin => [(NN 1091), (NN 1568), (NN 1579), (NN 1693)], trans => 548},
{ fin => [(NN 1048)], trans => 549},
{ fin => [(NN 946), (NN 1693)], trans => 0},
{ fin => [(NN 1450), (NN 1693)], trans => 551},
{ fin => [(NN 1450)], trans => 551},
{ fin => [], trans => 553},
{ fin => [], trans => 554},
{ fin => [(NN 1559)], trans => 555},
{ fin => [], trans => 553},
{ fin => [], trans => 557},
{ fin => [(NN 1545)], trans => 558},
{ fin => [(NN 1530)], trans => 559},
{ fin => [], trans => 560},
{ fin => [], trans => 561},
{ fin => [], trans => 562},
{ fin => [(NN 1515)], trans => 0},
{ fin => [], trans => 564},
{ fin => [], trans => 565},
{ fin => [], trans => 562},
{ fin => [], trans => 567},
{ fin => [], trans => 568},
{ fin => [], trans => 562},
{ fin => [], trans => 570},
{ fin => [], trans => 571},
{ fin => [], trans => 572},
{ fin => [], trans => 573},
{ fin => [], trans => 562},
{ fin => [], trans => 575},
{ fin => [], trans => 576},
{ fin => [], trans => 562},
{ fin => [], trans => 578},
{ fin => [], trans => 579},
{ fin => [], trans => 562},
{ fin => [(NN 1581), (NN 1693)], trans => 0},
{ fin => [(NN 939), (NN 1693)], trans => 582},
{ fin => [(NN 1407)], trans => 583},
{ fin => [], trans => 584},
{ fin => [(NN 1414)], trans => 585},
{ fin => [(NN 1407)], trans => 586},
{ fin => [(NN 1407)], trans => 587},
{ fin => [(NN 1095), (NN 1568), (NN 1579), (NN 1693)], trans => 588},
{ fin => [(NN 1006)], trans => 589},
{ fin => [(NN 953), (NN 1693)], trans => 0},
{ fin => [(NN 1087), (NN 1568), (NN 1579), (NN 1693)], trans => 591},
{ fin => [(NN 1000)], trans => 592},
{ fin => [(NN 948), (NN 1693)], trans => 0},
{ fin => [(NN 1407), (NN 1693)], trans => 594},
{ fin => [(NN 1455)], trans => 595},
{ fin => [], trans => 596},
{ fin => [(NN 1414), (NN 1455)], trans => 597},
{ fin => [], trans => 598},
{ fin => [(NN 1460)], trans => 599},
{ fin => [(NN 1407)], trans => 600},
{ fin => [(NN 1407)], trans => 601},
{ fin => [(NN 1085), (NN 1568), (NN 1579), (NN 1693)], trans => 602},
{ fin => [(NN 988)], trans => 603},
{ fin => [(NN 1109), (NN 1568), (NN 1579), (NN 1693)], trans => 604},
{ fin => [(NN 1030)], trans => 605},
{ fin => [(NN 1101), (NN 1568), (NN 1579), (NN 1693)], trans => 606},
{ fin => [(NN 1054)], trans => 607},
{ fin => [(NN 1568), (NN 1579), (NN 1693)], trans => 544},
{ fin => [(NN 1099), (NN 1568), (NN 1579), (NN 1693)], trans => 544},
{ fin => [(NN 955), (NN 1693)], trans => 0},
{ fin => [(NN 1568), (NN 1579), (NN 1693)], trans => 611},
{ fin => [], trans => 612},
{ fin => [], trans => 613},
{ fin => [], trans => 614},
{ fin => [], trans => 615},
{ fin => [], trans => 616},
{ fin => [], trans => 617},
{ fin => [(NN 1383)], trans => 0},
{ fin => [], trans => 619},
{ fin => [], trans => 620},
{ fin => [], trans => 621},
{ fin => [], trans => 622},
{ fin => [], trans => 623},
{ fin => [], trans => 624},
{ fin => [], trans => 625},
{ fin => [(NN 1395)], trans => 0},
{ fin => [(NN 1622), (NN 1629), (NN 1693)], trans => 627},
{ fin => [], trans => 628},
{ fin => [(NN 1619)], trans => 629},
{ fin => [], trans => 629},
{ fin => [(NN 1622), (NN 1629)], trans => 627},
{ fin => [], trans => 632},
{ fin => [(NN 1619)], trans => 633},
{ fin => [], trans => 634},
{ fin => [(NN 1619)], trans => 635},
{ fin => [], trans => 635},
{ fin => [(NN 1629), (NN 1693)], trans => 637},
{ fin => [], trans => 638},
{ fin => [(NN 1638)], trans => 638},
{ fin => [], trans => 640},
{ fin => [], trans => 641},
{ fin => [(NN 1655)], trans => 641},
{ fin => [(NN 1649)], trans => 643},
{ fin => [(NN 1626), (NN 1629)], trans => 644},
{ fin => [(NN 1111), (NN 1568), (NN 1579), (NN 1693)], trans => 645},
{ fin => [(NN 1399), (NN 1568), (NN 1579)], trans => 646},
{ fin => [(NN 1399), (NN 1568), (NN 1579)], trans => 647},
{ fin => [(NN 1399)], trans => 648},
{ fin => [(NN 1399)], trans => 649},
{ fin => [], trans => 650},
{ fin => [], trans => 651},
{ fin => [], trans => 652},
{ fin => [], trans => 653},
{ fin => [(NN 1671)], trans => 653},
{ fin => [(NN 1042)], trans => 655},
{ fin => [(NN 1367), (NN 1693)], trans => 656},
{ fin => [(NN 1596)], trans => 0},
{ fin => [(NN 944)], trans => 0},
{ fin => [(NN 1584)], trans => 0},
{ fin => [(NN 1362)], trans => 0},
{ fin => [(NN 1593)], trans => 0},
{ fin => [(NN 1599)], trans => 0},
{ fin => [(NN 1370)], trans => 663},
{ fin => [(NN 1374)], trans => 0},
{ fin => [(NN 1081)], trans => 665},
{ fin => [(NN 1590)], trans => 0},
{ fin => [(NN 1587)], trans => 0},
{ fin => [(NN 1097), (NN 1568), (NN 1579), (NN 1693)], trans => 668},
{ fin => [(NN 1365), (NN 1568), (NN 1579)], trans => 544},
{ fin => [(NN 1633)], trans => 670},
{ fin => [(NN 1633)], trans => 671},
{ fin => [], trans => 672},
{ fin => [(NN 1644)], trans => 672},
{ fin => [(NN 1121), (NN 1568), (NN 1579)], trans => 674},
{ fin => [(NN 1074)], trans => 675},
{ fin => [(NN 1012)], trans => 676},
{ fin => [(NN 941), (NN 1693)], trans => 0},
{ fin => [(NN 1107), (NN 1568), (NN 1579), (NN 1693)], trans => 678},
{ fin => [(NN 1118), (NN 1568), (NN 1579)], trans => 679},
{ fin => [(NN 1067)], trans => 680},
{ fin => [(NN 1024)], trans => 681},
{ fin => [(NN 1113), (NN 1568), (NN 1579), (NN 1693)], trans => 682},
{ fin => [(NN 1402), (NN 1568), (NN 1579)], trans => 544},
{ fin => [(NN 1036)], trans => 684},
{ fin => [(NN 970), (NN 1693)], trans => 0},
{ fin => [(NN 968), (NN 1693)], trans => 686},
{ fin => [], trans => 687},
{ fin => [], trans => 688},
{ fin => [(NN 966)], trans => 0},
{ fin => [], trans => 690},
{ fin => [(NN 1186)], trans => 0},
{ fin => [(NN 966), (NN 1256)], trans => 0},
{ fin => [], trans => 693},
{ fin => [], trans => 694},
{ fin => [], trans => 695},
{ fin => [(NN 1327)], trans => 0},
{ fin => [(NN 966), (NN 1206)], trans => 0},
{ fin => [], trans => 698},
{ fin => [], trans => 699},
{ fin => [], trans => 700},
{ fin => [(NN 1345)], trans => 0},
{ fin => [], trans => 702},
{ fin => [(NN 1446)], trans => 0},
{ fin => [], trans => 704},
{ fin => [], trans => 705},
{ fin => [(NN 1321)], trans => 0},
{ fin => [], trans => 707},
{ fin => [(NN 1286)], trans => 0},
{ fin => [], trans => 709},
{ fin => [(NN 1271)], trans => 0},
{ fin => [], trans => 711},
{ fin => [], trans => 712},
{ fin => [], trans => 713},
{ fin => [], trans => 714},
{ fin => [(NN 1359)], trans => 0},
{ fin => [(NN 1351)], trans => 0},
{ fin => [], trans => 717},
{ fin => [(NN 1266)], trans => 0},
{ fin => [], trans => 719},
{ fin => [(NN 1306)], trans => 0},
{ fin => [], trans => 721},
{ fin => [(NN 1311)], trans => 0},
{ fin => [], trans => 723},
{ fin => [(NN 1291)], trans => 0},
{ fin => [], trans => 725},
{ fin => [(NN 1301)], trans => 0},
{ fin => [], trans => 727},
{ fin => [(NN 1316)], trans => 0},
{ fin => [], trans => 729},
{ fin => [(NN 1261)], trans => 0},
{ fin => [], trans => 731},
{ fin => [(NN 1296)], trans => 0},
{ fin => [], trans => 733},
{ fin => [(NN 1281)], trans => 0},
{ fin => [], trans => 735},
{ fin => [(NN 1276)], trans => 0},
{ fin => [], trans => 737},
{ fin => [], trans => 738},
{ fin => [(NN 1151)], trans => 0},
{ fin => [(NN 966), (NN 1214)], trans => 0},
{ fin => [], trans => 741},
{ fin => [], trans => 742},
{ fin => [(NN 1136)], trans => 0},
{ fin => [(NN 966), (NN 1198)], trans => 0},
{ fin => [], trans => 745},
{ fin => [], trans => 746},
{ fin => [(NN 1131)], trans => 0},
{ fin => [(NN 966), (NN 1194)], trans => 0},
{ fin => [], trans => 749},
{ fin => [], trans => 750},
{ fin => [(NN 1171)], trans => 0},
{ fin => [(NN 966), (NN 1244)], trans => 0},
{ fin => [], trans => 753},
{ fin => [(NN 966), (NN 1232)], trans => 0},
{ fin => [], trans => 755},
{ fin => [], trans => 756},
{ fin => [], trans => 757},
{ fin => [(NN 1333)], trans => 0},
{ fin => [(NN 966), (NN 1228)], trans => 0},
{ fin => [], trans => 760},
{ fin => [], trans => 761},
{ fin => [], trans => 762},
{ fin => [(NN 1339)], trans => 0},
{ fin => [(NN 1176)], trans => 0},
{ fin => [(NN 966), (NN 1248)], trans => 0},
{ fin => [], trans => 766},
{ fin => [], trans => 767},
{ fin => [(NN 1156)], trans => 0},
{ fin => [(NN 966), (NN 1218)], trans => 0},
{ fin => [], trans => 770},
{ fin => [], trans => 771},
{ fin => [(NN 1166)], trans => 0},
{ fin => [(NN 966), (NN 1240)], trans => 0},
{ fin => [], trans => 774},
{ fin => [], trans => 775},
{ fin => [(NN 1181)], trans => 0},
{ fin => [(NN 966), (NN 1252)], trans => 0},
{ fin => [], trans => 778},
{ fin => [], trans => 779},
{ fin => [(NN 1126)], trans => 0},
{ fin => [(NN 966), (NN 1190)], trans => 0},
{ fin => [], trans => 782},
{ fin => [], trans => 783},
{ fin => [(NN 1161)], trans => 0},
{ fin => [(NN 966), (NN 1236)], trans => 0},
{ fin => [], trans => 786},
{ fin => [], trans => 787},
{ fin => [(NN 1146)], trans => 0},
{ fin => [(NN 966), (NN 1210)], trans => 0},
{ fin => [], trans => 790},
{ fin => [], trans => 791},
{ fin => [(NN 1141)], trans => 0},
{ fin => [(NN 966), (NN 1202)], trans => 0},
{ fin => [], trans => 794},
{ fin => [], trans => 795},
{ fin => [], trans => 796},
{ fin => [(NN 1224)], trans => 0},
{ fin => [(NN 1659), (NN 1693)], trans => 0},
{ fin => [(NN 1083), (NN 1568), (NN 1579), (NN 1693)], trans => 799},
{ fin => [(NN 976)], trans => 800},
{ fin => [(NN 1105), (NN 1568), (NN 1579), (NN 1693)], trans => 801},
{ fin => [(NN 1018)], trans => 802},
{ fin => [(NN 1093), (NN 1568), (NN 1579), (NN 1693)], trans => 803},
{ fin => [(NN 994)], trans => 804},
{ fin => [(NN 1570), (NN 1693)], trans => 805},
{ fin => [(NN 1419)], trans => 806},
{ fin => [(NN 951)], trans => 0},
{ fin => [(NN 1689)], trans => 0},
{ fin => [(NN 1686)], trans => 0},
{ fin => [(NN 1680)], trans => 0},
{ fin => [(NN 1677)], trans => 811},
{ fin => [(NN 1677)], trans => 0},
{ fin => [(NN 1683)], trans => 0},
{ fin => [(NN 1657), (NN 1693)], trans => 0},
{ fin => [(NN 1089), (NN 1568), (NN 1579), (NN 1693)], trans => 815},
{ fin => [(NN 982)], trans => 816},
{ fin => [(NN 932), (NN 1693)], trans => 817},
{ fin => [(NN 932)], trans => 817},
{ fin => [(NN 937), (NN 1693)], trans => 819},
{ fin => [(NN 937)], trans => 0}]);
};
package start_states {
         
         Yystartstate = STARTSTATE Int;

#  start state definitions 

my aaa = STARTSTATE 3;
my aq = STARTSTATE 31;
my backticks = STARTSTATE 13;
my char = STARTSTATE 9;
my comment = STARTSTATE 5;
my dot_backticks = STARTSTATE 15;
my dot_barets = STARTSTATE 23;
my dot_brokets = STARTSTATE 21;
my dot_hashets = STARTSTATE 27;
my dot_qquotes = STARTSTATE 17;
my dot_quotes = STARTSTATE 19;
my dot_slashets = STARTSTATE 25;
my initial = STARTSTATE 1;
my ll = STARTSTATE 35;
my llc = STARTSTATE 37;
my llcq = STARTSTATE 39;
my lll = STARTSTATE 33;
my postfix = STARTSTATE 41;
my pre_compile_code = STARTSTATE 43;
my qqq = STARTSTATE 29;
my string = STARTSTATE 7;
my stringgap = STARTSTATE 11;

 };
Result = user_declarations::Lex_Result;
         exception LEXER_ERROR; # Raised if illegal leaf action tried */
};

fun make_lexer yyinput =
{        my yygone0=1;
         yyb = REF "\n";                #  Buffer 
         yybl = REF 1;          # Buffer length 
         yybufpos = REF 1;              #  location of next character to use 
         yygone = REF yygone0;  #  position in file of beginning of buffer 
         yydone = REF FALSE;            #  eof found yet? 
         yybegin_i = REF 1;             # Current 'start state' for lexer 

         yybegin = fn (internal::start_states::STARTSTATE x) =
                 yybegin_i := x;

fun lex (yyarg as ( {
  comment_nesting_depth,
  line_number_db,
  err,
  stringlist,
  stringstart,
  stringtype,
  brack_stack})) =
 { fun continue () : internal::Result = 
  { fun scan (s, accepting_leaves:  List( List( internal::Yyfinstate ) ), l, i0) =
         { fun action (i, NIL) => raise exception LEX_ERROR;
         action (i, NIL ! l)     => action (i - 1, l);
         action (i, (node ! acts) ! l) => 
                 case node
                 
                    internal::NN yyk => 
                         ( { fun yymktext () = substring(*yyb, i0, i-i0);
                             yypos = i0 + *yygone;
                         fun REJECT() = action (i, acts ! l);
                         include user_declarations;
                         include internal::start_states;
  {   yybufpos := i;
      case yyk
 

                        #  Application actions 

  100 => { tokens::langle(yypos,yypos+1); };
  1000 => { yybegin initial; tokens::postfix_op_id (fast_symbol::raw_symbol ((hash_string "_\\"),"_\\"), yypos, yypos+1); };
  1006 => { yybegin initial; tokens::postfix_op_id (fast_symbol::raw_symbol ((hash_string "_^"),"_^"), yypos, yypos+1); };
  1012 => { yybegin initial; tokens::postfix_op_id (fast_symbol::raw_symbol ((hash_string "_-"),"_-"), yypos, yypos+1); };
  1018 => { yybegin initial; tokens::postfix_op_id (fast_symbol::raw_symbol ((hash_string "_%"),"_%"), yypos, yypos+1); };
  1024 => { yybegin initial; tokens::postfix_op_id (fast_symbol::raw_symbol ((hash_string "_+"),"_+"), yypos, yypos+1); };
  1030 => { yybegin initial; tokens::postfix_op_id (fast_symbol::raw_symbol ((hash_string "_?"),"_?"), yypos, yypos+1); };
  1036 => { yybegin initial; tokens::postfix_op_id (fast_symbol::raw_symbol ((hash_string "_*"),"_*"), yypos, yypos+1); };
  1042 => { yybegin initial; tokens::post_slash(yypos, yypos+1); };
  1048 => { yybegin initial; tokens::post_bar(yypos, yypos+1); };
  1054 => { yybegin initial; tokens::post_rangle(yypos, yypos+1); };
  106 => { tokens::rangle(yypos,yypos+1); };
  1060 => { yybegin initial; tokens::post_rbrace(yypos, yypos+1); };
  1067 => { yybegin initial; tokens::post_plusplus(yypos, yypos+2); };
  1074 => { yybegin initial; tokens::post_dashdash(yypos, yypos+2); };
  1081 => { yybegin initial; tokens::post_dotdot(yypos, yypos+2); };
  1083 => { tokens::amper(yypos,yypos+1); };
  1085 => { tokens::atsign(yypos,yypos+1); };
  1087 => { tokens::back(yypos,yypos+1); };
  1089 => { tokens::bang(yypos,yypos+1); };
  1091 => { tokens::bar(yypos,yypos+1); };
  1093 => { tokens::buck(yypos,yypos+1); };
  1095 => { tokens::caret(yypos,yypos+1); };
  1097 => { tokens::dash(yypos,yypos+1); };
  1099 => { tokens::langle(yypos,yypos+1); };
  11 => { tokens::comma(yypos,yypos+1); };
  1101 => { tokens::rangle(yypos,yypos+1); };
  1103 => { tokens::rbrace(yypos,yypos+1); };
  1105 => { tokens::percnt(yypos,yypos+1); };
  1107 => { tokens::plus(yypos,yypos+1); };
  1109 => { tokens::qmark(yypos,yypos+1); };
  1111 => { tokens::slash(yypos,yypos+1); };
  1113 => { tokens::star(yypos,yypos+1); };
  1115 => { tokens::tilda(yypos,yypos+1); };
  1118 => { tokens::plus_plus(yypos,yypos+2); };
  112 => { tokens::percnt(yypos,yypos+1); };
  1121 => { tokens::dash_dash(yypos,yypos+2); };
  1126 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "&_"), "&_"), yypos+1, yypos+3) ; };
  1131 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "@_"), "@_"), yypos+1, yypos+3) ; };
  1136 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "\\_"),"\\_"),yypos+1, yypos+3) ; };
  1141 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "!_"), "!_"), yypos+1, yypos+3) ; };
  1146 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "$_"), "$_"), yypos+1, yypos+3) ; };
  1151 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "^_"), "^_"), yypos+1, yypos+3) ; };
  1156 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "-_"), "-_"), yypos+1, yypos+3) ; };
  1161 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "%_"), "%_"), yypos+1, yypos+3) ; };
  1166 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "+_"), "+_"), yypos+1, yypos+3) ; };
  1171 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "?_"), "?_"), yypos+1, yypos+3) ; };
  1176 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "/_"), "/_"), yypos+1, yypos+3) ; };
  118 => { tokens::plus(yypos,yypos+1); };
  1181 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "*_"), "*_"), yypos+1, yypos+3) ; };
  1186 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "~_"), "~_"), yypos+1, yypos+3) ; };
  1190 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "&"), "&"), yypos+1, yypos+2) ; };
  1194 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "@"), "@"), yypos+1, yypos+2) ; };
  1198 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "\\"),"\\"),yypos+1, yypos+2) ; };
  1202 => { tokens::uppercase_id (fast_symbol::raw_symbol ((hash_string "!"), "!"), yypos+1, yypos+2) ; };
  1206 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "|"), "|"), yypos+1, yypos+2) ; };
  1210 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "$"), "$"), yypos+1, yypos+2) ; };
  1214 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "^"), "^"), yypos+1, yypos+2) ; };
  1218 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "-"), "-"), yypos+1, yypos+2) ; };
  1224 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string " . "), " . "), yypos, yypos+1); };
  1228 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "<"), "<"), yypos+1, yypos+2) ; };
  1232 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string ">"), ">"), yypos+1, yypos+2) ; };
  1236 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "%"), "%"), yypos+1, yypos+2) ; };
  124 => { tokens::qmark(yypos,yypos+1); };
  1240 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "+"), "+"), yypos+1, yypos+2) ; };
  1244 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "?"), "?"), yypos+1, yypos+2) ; };
  1248 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "/"), "/"), yypos+1, yypos+2) ; };
  1252 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "*"), "*"), yypos+1, yypos+2) ; };
  1256 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "~"), "~"), yypos+1, yypos+2) ; };
  1261 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_&"), "_&"), yypos+1, yypos+3) ; };
  1266 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_@"), "_@"), yypos+1, yypos+3) ; };
  1271 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_\\"),"_\\"),yypos+1, yypos+3) ; };
  1276 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_!"), "_!"), yypos+1, yypos+3) ; };
  1281 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_$"), "_$"), yypos+1, yypos+3) ; };
  1286 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_^"), "_^"), yypos+1, yypos+3) ; };
  1291 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_-"), "_-"), yypos+1, yypos+3) ; };
  1296 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_%"), "_%"), yypos+1, yypos+3) ; };
  130 => { tokens::slash(yypos,yypos+1); };
  1301 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_+"), "_+"), yypos+1, yypos+3) ; };
  1306 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_?"), "_?"), yypos+1, yypos+3) ; };
  1311 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_/"), "_/"), yypos+1, yypos+3) ; };
  1316 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_*"), "_*"), yypos+1, yypos+3) ; };
  1321 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_~"), "_~"), yypos+1, yypos+3) ; };
  1327 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "|_|"), "|_|"), yypos+1, yypos+4) ; };
  1333 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "<_>"), "<_>"), yypos+1, yypos+4) ; };
  1339 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "/_/"), "/_/"), yypos+1, yypos+4) ; };
  1345 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "{_}"), "{_}"), yypos+1, yypos+4) ; };
  1351 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_[]"), "_[]"), yypos+1, yypos+5) ; };
  1359 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_[]:="), "_[]:="), yypos+1, yypos+7) ; };
  136 => { tokens::star(yypos,yypos+1); };
  1362 => { tokens::dot_eq(yypos,yypos+2); };
  1365 => { tokens::postfix_arrow(yypos,yypos+2); };
  1367 => { tokens::dot(yypos,yypos+1); };
  1370 => { tokens::dotdot(yypos,yypos+2); };
  1374 => { tokens::dotdotdot(yypos,yypos+3); };
  1383 => { tokens::weak_package_cast(yypos,yypos+8); };
  1395 => { tokens::partial_package_cast(yypos,yypos+11); };
  1399 => { yybegin aaa; stringstart := yypos; comment_nesting_depth := 1; continue(); };
  14 => { tokens::dot_lbrace(yypos,yypos+2); };
  1402 => { err (yypos,yypos+1) ERROR "unmatched close comment"
                        null_error_body;
                    continue(); };
  1407 => {   yytext=yymktext();
mythryl_token_table::new_check_type_var(yytext,yypos); };
  1414 => {   yytext=yymktext();
mythryl_token_table::new_check_type_var(yytext,yypos); };
  1419 => {   yytext=yymktext();
mythryl_token_table::check_implicit_thunk_parameter(yytext,yypos); };
  142 => { tokens::tilda(yypos,yypos+1); };
  1422 => { mythryl_token_table::check_id("is_file",      yypos); };
  1425 => { mythryl_token_table::check_id("is_dir",       yypos); };
  1428 => { mythryl_token_table::check_id("is_pipe",      yypos); };
  1431 => { mythryl_token_table::check_id("is_symlink",   yypos); };
  1434 => { mythryl_token_table::check_id("is_char_dev",  yypos); };
  1437 => { mythryl_token_table::check_id("is_block_dev", yypos); };
  1440 => { mythryl_token_table::check_id("is_socket",    yypos); };
  1446 => {   yytext=yymktext();
mythryl_token_table::check_passive_id(yytext, yypos); };
  1450 => {   yytext=yymktext();
mythryl_token_table::check_id(yytext, yypos); };
  1455 => {   yytext=yymktext();
tokens::mixedcase_id (fast_symbol::raw_symbol ((hash_string yytext), yytext), yypos, yypos+size (yytext)); };
  1460 => {   yytext=yymktext();
tokens::uppercase_id (fast_symbol::raw_symbol ((hash_string yytext), yytext), yypos, yypos+size (yytext)); };
  149 => { tokens::plus_plus(yypos,yypos+2); };
  1515 => {   yytext=yymktext();
tokens::operators_path (fast_symbol::raw_symbol ((hash_string yytext), yytext), yypos, yypos + size(yytext)); };
  1530 => {   yytext=yymktext();
tokens::uppercase_path (fast_symbol::raw_symbol ((hash_string yytext), yytext), yypos, yypos + size(yytext)); };
  1545 => {   yytext=yymktext();
tokens::mixedcase_path (fast_symbol::raw_symbol ((hash_string yytext), yytext), yypos, yypos + size(yytext)); };
  1559 => {   yytext=yymktext();
tokens::lowercase_path (fast_symbol::raw_symbol ((hash_string yytext), yytext), yypos, yypos + size(yytext)); };
  156 => { tokens::dash_dash(yypos,yypos+2); };
  1568 => {   yytext=yymktext();
if (*mythryl_parser::support_smlnj_antiquotes)
                                 if (has_quote yytext)
                                      REJECT();
                                 else mythryl_token_table::check_symbol_id(yytext,yypos);
                                 fi;
                            else mythryl_token_table::check_symbol_id(yytext,yypos);
                            fi
                           ; };
  1570 => {   yytext=yymktext();
mythryl_token_table::check_symbol_id(yytext,yypos); };
  1579 => {   yytext=yymktext();
mythryl_token_table::check_symbol_id(yytext,yypos); };
  1581 => {        yybegin backticks;
                                   stringlist := [];
                                   stringstart := yypos;
                                   continue()
                              /* if *mythryl_parser::support_smlnj_antiquotes
                                  yybegin qqq;
                                  stringlist := [];
                                  tokens::beginq(yypos,yypos+1);
                            
                                else err(yypos, yypos+1)
                                     ERROR "smlnj_antiquotes implementation error"
                                     null_error_body;
                                  tokens::beginq(yypos,yypos+1);  */
                            ; };
  1584 => {     yybegin dot_backticks;
                                   stringlist := [];
                                   stringstart := yypos;
                                   continue()
                             ; };
  1587 => {     yybegin dot_qquotes;
                                   stringlist := [];
                                   stringstart := yypos;
                                   continue()
                             ; };
  1590 => {     yybegin dot_quotes;
                                   stringlist := [];
                                   stringstart := yypos;
                                   continue()
                             ; };
  1593 => {     yybegin dot_brokets;
                                   stringlist := [];
                                   stringstart := yypos;
                                   continue()
                             ; };
  1596 => {     yybegin dot_barets;
                                   stringlist := [];
                                   stringstart := yypos;
                                   continue()
                             ; };
  1599 => {     yybegin dot_hashets;
                                   stringlist := [];
                                   stringstart := yypos;
                                   continue()
                             ; };
  16 => { yybegin postfix; tokens::rbrace(yypos,yypos+1); };
  1619 => {   yytext=yymktext();
tokens::float(yytext,yypos,yypos+size yytext); };
  1622 => {   yytext=yymktext();
tokens::int(atoi(yytext, 0),yypos,yypos+size yytext); };
  1626 => {   yytext=yymktext();
tokens::int0(otoi(yytext, 1),yypos,yypos+size yytext); };
  1629 => {   yytext=yymktext();
tokens::int0(atoi(yytext, 0),yypos,yypos+size yytext); };
  163 => { tokens::dotdot(yypos,yypos+2); };
  1633 => {   yytext=yymktext();
tokens::int0(atoi(yytext, 0),yypos,yypos+size yytext); };
  1638 => {   yytext=yymktext();
tokens::int0(xtoi(yytext, 2),yypos,yypos+size yytext); };
  1644 => {   yytext=yymktext();
tokens::int0(multiword_int::(-_)(xtoi(yytext, 3)),yypos,yypos+size yytext); };
  1649 => {   yytext=yymktext();
tokens::unt(atoi(yytext, 2),yypos,yypos+size yytext); };
  1655 => {   yytext=yymktext();
tokens::unt(xtoi(yytext, 3),yypos,yypos+size yytext); };
  1657 => { stringlist := [""]; stringstart := yypos;
                    stringtype := TRUE; yybegin string; continue(); };
  1659 => { stringlist := [""]; stringstart := yypos;
                    stringtype := FALSE; yybegin char; continue(); };
  1671 => { yybegin lll; stringstart := yypos; comment_nesting_depth := 1; continue(); };
  1677 => { line_number_db::newline line_number_db yypos; yybegin initial; continue(); };
  1680 => { yybegin comment;  continue(); };
  1683 => { yybegin comment;  continue(); };
  1686 => { yybegin comment;  continue(); };
  1689 => { yybegin comment;  continue(); };
  169 => { tokens::operators_id (fast_symbol::raw_symbol ((hash_string " . "), " . "), yypos, yypos+1); };
  1691 => { err (yypos,yypos) ERROR "non-Ascii character"
                        null_error_body;
                    continue(); };
  1693 => { err (yypos,yypos) ERROR "illegal token" null_error_body;
                    continue(); };
  1696 => {   yytext=yymktext();
yybegin ll; stringlist := [yytext]; continue(); };
  1698 => { /* cheat: take n > 0 dots */ continue(); };
  1701 => {   yytext=yymktext();
yybegin llc; add_string(stringlist, yytext); continue(); };
  1703 => { yybegin llc; add_string(stringlist, "1");    continue()
                /* note hack, since mythryl-lex chokes on the empty string for 0* */; };
  1706 => { yybegin initial; my_synch(line_number_db, yypos+2, *stringlist); 
                              comment_nesting_depth := 0; stringlist := []; continue(); };
  1710 => { yybegin llcq; continue(); };
  1712 => {   yytext=yymktext();
add_string(stringlist, yytext); continue(); };
  1716 => { yybegin initial; my_synch(line_number_db, yypos+3, *stringlist); 
                              comment_nesting_depth := 0; stringlist := []; continue(); };
  1719 => { err (*stringstart, yypos+1) WARNING 
                       "ill-formed /*#line...*/ taken as comment" null_error_body;
                     yybegin initial; comment_nesting_depth := 0; stringlist := []; continue(); };
  1721 => { err (*stringstart, yypos+1) WARNING 
                       "ill-formed /*#line...*/ taken as comment" null_error_body;
                     yybegin aaa; continue(); };
  1726 => { line_number_db::newline line_number_db yypos; yybegin initial; continue(); };
  1728 => { continue(); };
  1732 => { inc comment_nesting_depth; continue(); };
  1737 => { line_number_db::newline line_number_db yypos; continue(); };
  1740 => { dec comment_nesting_depth; if (*comment_nesting_depth==0 ) yybegin initial; fi; continue(); };
  1742 => { continue(); };
  1744 => {  { s = make_string stringlist;
                         s = if (size s != 1 and not *stringtype)
                                       err (*stringstart,yypos) ERROR
                                            "character constant not length 1"
                                            null_error_body;
                                        substring(s + "x",0,1);
                                      
                                 else s;
                                 fi;
                        t = (s,*stringstart,yypos+1);
                     yybegin initial;
                       if *stringtype  tokens::string t; else tokens::char t; fi;
                    }; };
  1749 => { err (*stringstart,yypos) ERROR "unclosed string"
                        null_error_body;
                    line_number_db::newline line_number_db yypos;
                    yybegin initial; tokens::string(make_string stringlist,*stringstart,yypos); };
  175 => { line_number_db::newline line_number_db yypos; tokens::amper(yypos,yypos+1); };
  1755 => { line_number_db::newline line_number_db (yypos+1);
                    yybegin stringgap; continue(); };
  1759 => { yybegin stringgap; continue(); };
  1762 => { add_string(stringlist, "\007"); continue(); };
  1765 => { add_string(stringlist, "\008"); continue(); };
  1768 => { add_string(stringlist, "\012"); continue(); };
  1771 => { add_string(stringlist, "\010"); continue(); };
  1774 => { add_string(stringlist, "\013"); continue(); };
  1777 => { add_string(stringlist, "\009"); continue(); };
  1780 => { add_string(stringlist, "\011"); continue(); };
  1783 => { add_string(stringlist, "\\"); continue(); };
  1786 => { add_string(stringlist, "\""); continue(); };
  1790 => {   yytext=yymktext();
add_char(stringlist,
                        char::from_int(char::to_int(string::get(yytext,2))-char::to_int '@'));
                    continue(); };
  1794 => { err(yypos,yypos+2) ERROR "illegal control escape; must be one of \
          \@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_" null_error_body;
         continue(); };
  1799 => {   yytext=yymktext();
 {  x = char::to_int(string::get(yytext,1))*100
             + char::to_int(string::get(yytext,2))*10
             + char::to_int(string::get(yytext,3))
             - ((char::to_int '0')*111);
   {  if   (x > 255)
           err (yypos,yypos+4) ERROR "illegal ascii escape" null_error_body;
      else add_char(stringlist, char::from_int x);
      fi;
      continue();
   };
  }; };
  18 => { tokens::lbracket(yypos,yypos+1); };
  1801 => { err (yypos,yypos+1) ERROR "illegal string escape"
                        null_error_body; 
                    continue(); };
  1803 => { err (yypos,yypos+1) ERROR "illegal non-printing character in string" null_error_body;
                    continue(); };
  181 => { line_number_db::newline line_number_db yypos; tokens::atsign(yypos,yypos+1); };
  1827 => {   yytext=yymktext();
add_string(stringlist,yytext); continue(); };
  1831 => {   yytext=yymktext();
 {   s = make_string stringlist;
                                t = (s,*stringstart,yypos + size yytext);
                                yybegin initial;
                                tokens::backticks t;
                            }
                          ; };
  1867 => {   yytext=yymktext();
add_string(stringlist,yytext); continue(); };
  187 => { line_number_db::newline line_number_db yypos; tokens::back(yypos,yypos+1); };
  1904 => {   yytext=yymktext();
add_string(stringlist,yytext); continue(); };
  1907 => { add_string(stringlist,"`"); continue(); };
  1909 => {   yytext=yymktext();
 { s = make_string stringlist;
        t = (s,*stringstart,yypos + size yytext);
        yybegin initial;
        tokens::dot_backticks t;
      }
    ; };
  193 => { line_number_db::newline line_number_db yypos; (tokens::uppercase_id (fast_symbol::raw_symbol ((hash_string "!"), "!"), yypos, yypos+1)); };
  1948 => {   yytext=yymktext();
add_string(stringlist,yytext); continue(); };
  1951 => { add_string(stringlist,"\""); continue(); };
  1953 => {   yytext=yymktext();
 { s = make_string stringlist;
        t = (s,*stringstart,yypos + size yytext);
        yybegin initial;
        tokens::dot_qquotes t;
      }
    ; };
  199 => { line_number_db::newline line_number_db yypos; tokens::bar(yypos,yypos+1); };
  1992 => {   yytext=yymktext();
add_string(stringlist,yytext); continue(); };
  1995 => { add_string(stringlist,"'"); continue(); };
  1997 => {   yytext=yymktext();
 { s = make_string stringlist;
        t = (s,*stringstart,yypos + size yytext);
        yybegin initial;
        tokens::dot_quotes t;
      }
    ; };
  2 => { continue(); };
  2036 => {   yytext=yymktext();
add_string(stringlist,yytext); continue(); };
  2039 => { add_string(stringlist,">"); continue(); };
  2041 => {   yytext=yymktext();
 { s = make_string stringlist;
        t = (s,*stringstart,yypos + size yytext);
        yybegin initial;
        tokens::dot_brokets t;
      }
    ; };
  205 => { line_number_db::newline line_number_db yypos; tokens::buck(yypos,yypos+1); };
  2080 => {   yytext=yymktext();
 { add_string(stringlist,yytext);
        continue();
      }
    ; };
  2083 => {  { add_string(stringlist,"|");
        continue();
      }
    ; };
  2085 => {   yytext=yymktext();
 { s = make_string stringlist;
        t = (s,*stringstart,yypos + size yytext);
        yybegin initial;
        tokens::dot_barets t;
      }
    ; };
  21 => { tokens::vectorstart(yypos,yypos+1); };
  211 => { line_number_db::newline line_number_db yypos; tokens::caret(yypos,yypos+1); };
  2124 => {   yytext=yymktext();
 { add_string(stringlist,yytext);
        continue();
      }
    ; };
  2127 => {  { add_string(stringlist,"/");
        continue();
      }
    ; };
  2129 => {   yytext=yymktext();
 { s = make_string stringlist;
        t = (s,*stringstart,yypos + size yytext);
        yybegin initial;
        tokens::dot_slashets t;
      }
    ; };
  2166 => {   yytext=yymktext();
 { add_string(stringlist,yytext);
        continue();
      }
    ; };
  2169 => {  { add_string(stringlist,"#");
        continue();
      }
    ; };
  217 => { line_number_db::newline line_number_db yypos; tokens::dash(yypos,yypos+1); };
  2171 => {   yytext=yymktext();
 { s = make_string stringlist;
        t = (s,*stringstart,yypos + size yytext);
        yybegin initial;
        tokens::dot_hashets t;
      }
    ; };
  2173 => {  {  s = make_string stringlist;
                        s = if (size s != 1 and not *stringtype)
                                       err (*stringstart,yypos) ERROR
                                            "character constant not length 1"
                                            null_error_body;
                                        substring(s + "x",0,1);
                                      
                                 else s;
                                 fi;
                        t = (s,*stringstart,yypos+1);
                     yybegin initial;
                       if *stringtype  tokens::string t; else tokens::char t; fi;
                    }; };
  2178 => { err (*stringstart,yypos) ERROR "unclosed string"
                        null_error_body;
                    line_number_db::newline line_number_db yypos;
                    yybegin initial; tokens::string(make_string stringlist,*stringstart,yypos); };
  2184 => { line_number_db::newline line_number_db (yypos+1);
                    yybegin stringgap; continue(); };
  2188 => { yybegin stringgap; continue(); };
  2191 => { add_string(stringlist, "\007"); continue(); };
  2194 => { add_string(stringlist, "\008"); continue(); };
  2197 => { add_string(stringlist, "\012"); continue(); };
  2200 => { add_string(stringlist, "\010"); continue(); };
  2203 => { add_string(stringlist, "\013"); continue(); };
  2206 => { add_string(stringlist, "\009"); continue(); };
  2209 => { add_string(stringlist, "\011"); continue(); };
  2212 => { add_string(stringlist, "\\"); continue(); };
  2215 => { add_string(stringlist,  "'"); continue(); };
  2219 => {   yytext=yymktext();
add_char(stringlist,
                        char::from_int(char::to_int(string::get(yytext,2))-char::to_int '@'));
                    continue(); };
  2223 => { err(yypos,yypos+2) ERROR "illegal control escape; must be one of \
          \@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_" null_error_body;
         continue(); };
  2228 => {   yytext=yymktext();
 {  x = char::to_int(string::get(yytext,1))*100
             + char::to_int(string::get(yytext,2))*10
             + char::to_int(string::get(yytext,3))
             - ((char::to_int '0')*111);
   {  if (x>255)
           err (yypos,yypos+4) ERROR "illegal ascii escape" null_error_body;
      else add_char(stringlist, char::from_int x);
      fi;
      continue();
   };
  }; };
  223 => { line_number_db::newline line_number_db yypos; tokens::lbrace(yypos,yypos+1); };
  2230 => { err (yypos,yypos+1) ERROR "illegal string escape"
                        null_error_body; 
                    continue(); };
  2232 => { err (yypos,yypos+1) ERROR "illegal non-printing character in string" null_error_body;
                    continue(); };
  2256 => {   yytext=yymktext();
add_string(stringlist,yytext); continue(); };
  2261 => { line_number_db::newline line_number_db yypos; continue(); };
  2264 => { continue(); };
  2266 => { yybegin string; stringstart := yypos; continue(); };
  2268 => { err (*stringstart,yypos) ERROR "unclosed string"
                        null_error_body; 
                    yybegin initial; tokens::string(make_string stringlist,*stringstart,yypos+1); };
  2270 => { add_string(stringlist, "`"); continue(); };
  2273 => { add_string(stringlist, "^"); continue(); };
  2275 => { yybegin aq;
                    {  x = make_string stringlist;

                    tokens::chunkl(x,yypos,yypos+(size x));
                    }; };
  2277 => { /*  a closing backtick */
                    yybegin initial;
                    {  x = make_string stringlist;
                    tokens::endq(x,yypos,yypos+(size x));
                    }; };
  2282 => { line_number_db::newline line_number_db yypos; add_string(stringlist,"\n"); continue(); };
  2284 => {   yytext=yymktext();
add_string(stringlist,yytext); continue(); };
  2289 => { line_number_db::newline line_number_db yypos; continue(); };
  229 => { line_number_db::newline line_number_db yypos; tokens::langle(yypos,yypos+1); };
  2292 => { continue(); };
  2297 => {   yytext=yymktext();
yybegin qqq; 
                    { hash = hash_string yytext;

                    tokens::antiquote_id(fast_symbol::raw_symbol(hash,yytext),
                                yypos,yypos+(size yytext));
                    }; };
  23 => { yybegin postfix; tokens::rbracket(yypos,yypos+1); };
  2306 => {   yytext=yymktext();
yybegin qqq; 
                    { hash = hash_string yytext;

                    tokens::antiquote_id(fast_symbol::raw_symbol(hash,yytext),
                                yypos,yypos+(size yytext));
                    }; };
  2308 => { yybegin initial;
                    brack_stack := ((REF 1) ! *brack_stack);
                    tokens::lparen(yypos,yypos+1); };
  2310 => {   yytext=yymktext();
err (yypos,yypos+1) ERROR
                       ("ml lexer: bad character after antiquote " + yytext)
                       null_error_body;
                    tokens::antiquote_id(fast_symbol::raw_symbol(0u0,""),yypos,yypos); };
  235 => { line_number_db::newline line_number_db yypos; tokens::rangle(yypos,yypos+1); };
  241 => { line_number_db::newline line_number_db yypos; tokens::percnt(yypos,yypos+1); };
  247 => { line_number_db::newline line_number_db yypos; tokens::plus(yypos,yypos+1); };
  25 => { tokens::semi(yypos,yypos+1); };
  253 => { line_number_db::newline line_number_db yypos; tokens::qmark(yypos,yypos+1); };
  259 => { line_number_db::newline line_number_db yypos; tokens::slash(yypos,yypos+1); };
  265 => { line_number_db::newline line_number_db yypos; tokens::star(yypos,yypos+1); };
  271 => { line_number_db::newline line_number_db yypos; tokens::tilda(yypos,yypos+1); };
  277 => { line_number_db::newline line_number_db yypos; (tokens::operators_id (fast_symbol::raw_symbol ((hash_string " . "), " . "), yypos, yypos+1)); };
  284 => { line_number_db::newline line_number_db yypos; tokens::plus_plus(yypos,yypos+2); };
  291 => { line_number_db::newline line_number_db yypos; tokens::dash_dash(yypos,yypos+2); };
  298 => { line_number_db::newline line_number_db yypos; tokens::dotdot(yypos,yypos+2); };
  303 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "&_"), "&_"), yypos+1, yypos+3) ; };
  308 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "@_"), "@_"), yypos+1, yypos+3) ; };
  313 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "\\_"),"\\_"),yypos+1, yypos+3) ; };
  318 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "!_"), "!_"), yypos+1, yypos+3) ; };
  323 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "$_"), "$_"), yypos+1, yypos+3) ; };
  328 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "^_"), "^_"), yypos+1, yypos+3) ; };
  333 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "-_"), "-_"), yypos+1, yypos+3) ; };
  338 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "%_"), "%_"), yypos+1, yypos+3) ; };
  343 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "+_"), "+_"), yypos+1, yypos+3) ; };
  348 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "?_"), "?_"), yypos+1, yypos+3) ; };
  353 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "/_"), "/_"), yypos+1, yypos+3) ; };
  358 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "*_"), "*_"), yypos+1, yypos+3) ; };
  36 => {   yytext=yymktext();
mythryl_token_table::check_passive_symbol_id(yytext,yypos); };
  363 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "~_"), "~_"), yypos+1, yypos+3) ; };
  367 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "&"), "&"), yypos+1, yypos+2) ; };
  371 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "@"), "@"), yypos+1, yypos+2) ; };
  375 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "\\"),"\\"),yypos+1, yypos+2) ; };
  379 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "!"), "!"), yypos+1, yypos+2) ; };
  38 => { if ((null *brack_stack))
                         ();
                    else inc (head *brack_stack); fi;
                    tokens::lparen(yypos,yypos+1); };
  383 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "|"), "|"), yypos+1, yypos+2) ; };
  387 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "$"), "$"), yypos+1, yypos+2) ; };
  391 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "^"), "^"), yypos+1, yypos+2) ; };
  395 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "-"), "-"), yypos+1, yypos+2) ; };
  399 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "%"), "%"), yypos+1, yypos+2) ; };
  40 => { yybegin postfix;
                    if (null *brack_stack)
                         ();
                    else if  (*(head *brack_stack) == 1)
                               brack_stack := tail *brack_stack;
                               stringlist := [];
                               yybegin qqq;
                         else
                               dec (head *brack_stack);
                         fi;
                    fi;
                    tokens::rparen(yypos,yypos+1); };
  403 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "<"), "<"), yypos+1, yypos+2) ; };
  407 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string ">"), ">"), yypos+1, yypos+2) ; };
  411 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "+"), "+"), yypos+1, yypos+2) ; };
  415 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "?"), "?"), yypos+1, yypos+2) ; };
  419 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "/"), "/"), yypos+1, yypos+2) ; };
  423 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "*"), "*"), yypos+1, yypos+2) ; };
  427 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "~"), "~"), yypos+1, yypos+2) ; };
  433 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string " . "), " . "), yypos, yypos+1); };
  438 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_&"), "_&"), yypos+1, yypos+3) ; };
  443 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_@"), "_@"), yypos+1, yypos+3) ; };
  448 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_\\"),"_\\"),yypos+1, yypos+3) ; };
  453 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_!"), "_!"), yypos+1, yypos+3) ; };
  458 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_$"), "_$"), yypos+1, yypos+3) ; };
  46 => { tokens::amper(yypos,yypos+1); };
  463 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_^"), "_^"), yypos+1, yypos+3) ; };
  468 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_-"), "_-"), yypos+1, yypos+3) ; };
  473 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_%"), "_%"), yypos+1, yypos+3) ; };
  478 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_+"), "_+"), yypos+1, yypos+3) ; };
  483 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_?"), "_?"), yypos+1, yypos+3) ; };
  488 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_/"), "_/"), yypos+1, yypos+3) ; };
  493 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_*"), "_*"), yypos+1, yypos+3) ; };
  498 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "_~"), "_~"), yypos+1, yypos+3) ; };
  504 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "|_|"),"|_|"),yypos+1, yypos+4) ; };
  510 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "<_>"),"<_>"),yypos+1, yypos+4) ; };
  516 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "/_/"),"/_/"),yypos+1, yypos+4) ; };
  52 => { tokens::atsign(yypos,yypos+1); };
  522 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string "{_}"),"{_}"),yypos+1, yypos+4) ; };
  528 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string"_[]"),"_[]"),yypos+1, yypos+5) ; };
  536 => { tokens::passiveop_id (fast_symbol::raw_symbol ((hash_string"_[]:="),"_[]:="),yypos+1, yypos+7) ; };
  538 => { tokens::pre_dot(yypos,yypos+1); };
  541 => { tokens::dot_eq(yypos,yypos+2); };
  543 => { tokens::pre_bar(yypos, yypos+1); };
  545 => { tokens::pre_langle(yypos, yypos+1); };
  547 => { tokens::pre_lbrace(yypos, yypos+1); };
  549 => { tokens::pre_slash(yypos, yypos+1); };
  552 => { tokens::pre_plusplus(yypos, yypos+2); };
  555 => { tokens::pre_dashdash(yypos, yypos+2); };
  558 => { tokens::pre_dotdot(yypos, yypos+2); };
  560 => { tokens::prefix_op_id (fast_symbol::raw_symbol ((hash_string "!_"),"!_"), yypos, yypos+1); };
  562 => { tokens::prefix_op_id (fast_symbol::raw_symbol ((hash_string "*_"),"*_"), yypos, yypos+1); };
  564 => { tokens::prefix_op_id (fast_symbol::raw_symbol ((hash_string "-_"),"-_"), yypos, yypos+1); };
  566 => { tokens::prefix_op_id (fast_symbol::raw_symbol ((hash_string "\\_"),"\\_"), yypos, yypos+1); };
  568 => { tokens::prefix_op_id (fast_symbol::raw_symbol ((hash_string "&_"), "&_"), yypos, yypos+1); };
  570 => { tokens::prefix_op_id (fast_symbol::raw_symbol ((hash_string "@_"), "@_"), yypos, yypos+1); };
  572 => { tokens::prefix_op_id (fast_symbol::raw_symbol ((hash_string "$_"), "$_"), yypos, yypos+1); };
  574 => { tokens::prefix_op_id (fast_symbol::raw_symbol ((hash_string "^_"), "^_"), yypos, yypos+1); };
  576 => { tokens::prefix_op_id (fast_symbol::raw_symbol ((hash_string "%_"), "%_"), yypos, yypos+1); };
  578 => { tokens::prefix_op_id (fast_symbol::raw_symbol ((hash_string "+_"), "+_"), yypos, yypos+1); };
  58 => { tokens::back(yypos,yypos+1); };
  580 => { tokens::prefix_op_id (fast_symbol::raw_symbol ((hash_string "?_"), "?_"), yypos, yypos+1); };
  582 => { tokens::prefix_op_id (fast_symbol::raw_symbol ((hash_string "/_"), "/_"), yypos, yypos+1); };
  584 => { tokens::prefix_op_id (fast_symbol::raw_symbol ((hash_string "~_"), "~_"), yypos, yypos+1); };
  588 => { tokens::dotdotdot(yypos,yypos+3); };
  597 => { tokens::weak_package_cast(yypos,yypos+8); };
  609 => { tokens::partial_package_cast(yypos,yypos+11); };
  613 => { yybegin aaa; stringstart := yypos; comment_nesting_depth := 1; continue(); };
  616 => { err (yypos,yypos+1) ERROR "unmatched close comment"
                        null_error_body;
                    continue(); };
  621 => {   yytext=yymktext();
mythryl_token_table::new_check_type_var(yytext,yypos); };
  628 => {   yytext=yymktext();
mythryl_token_table::new_check_type_var(yytext,yypos); };
  633 => {   yytext=yymktext();
yybegin postfix; mythryl_token_table::check_implicit_thunk_parameter(yytext,yypos); };
  636 => { yybegin postfix; tokens::lowercase_path (fast_symbol::raw_symbol ((hash_string "scripting_globals::mayexecute"), "scripting_globals::isfile"),     yypos, yypos+2); };
  639 => { yybegin postfix; tokens::lowercase_path (fast_symbol::raw_symbol ((hash_string "scripting_globals::mayexecute"), "scripting_globals::isdir"),      yypos, yypos+2); };
  64 => { tokens::uppercase_id (fast_symbol::raw_symbol ((hash_string "!"), "!"), yypos, yypos+1); };
  642 => { yybegin postfix; tokens::lowercase_path (fast_symbol::raw_symbol ((hash_string "scripting_globals::mayexecute"), "scripting_globals::ispipe"),     yypos, yypos+2); };
  645 => { yybegin postfix; tokens::lowercase_path (fast_symbol::raw_symbol ((hash_string "scripting_globals::mayexecute"), "scripting_globals::issymlink"),  yypos, yypos+2); };
  648 => { yybegin postfix; tokens::lowercase_path (fast_symbol::raw_symbol ((hash_string "scripting_globals::mayexecute"), "scripting_globals::ischardev"),  yypos, yypos+2); };
  651 => { yybegin postfix; tokens::lowercase_path (fast_symbol::raw_symbol ((hash_string "scripting_globals::mayexecute"), "scripting_globals::isblockdev"), yypos, yypos+2); };
  654 => { yybegin postfix; tokens::lowercase_path (fast_symbol::raw_symbol ((hash_string "scripting_globals::mayexecute"), "scripting_globals::issocket"),   yypos, yypos+2); };
  657 => { yybegin postfix; tokens::lowercase_path (fast_symbol::raw_symbol ((hash_string "scripting_globals::mayexecute"), "scripting_globals::mayread"),    yypos, yypos+2); };
  660 => { yybegin postfix; tokens::lowercase_path (fast_symbol::raw_symbol ((hash_string "scripting_globals::mayexecute"), "scripting_globals::maywrite"),   yypos, yypos+2); };
  663 => { yybegin postfix; tokens::lowercase_path (fast_symbol::raw_symbol ((hash_string "scripting_globals::mayexecute"), "scripting_globals::mayexecute"), yypos, yypos+2); };
  669 => {   yytext=yymktext();
yybegin postfix; mythryl_token_table::check_passive_id(yytext, yypos); };
  673 => {   yytext=yymktext();
yybegin postfix; mythryl_token_table::check_id(yytext, yypos); };
  678 => {   yytext=yymktext();
yybegin postfix; tokens::mixedcase_id (fast_symbol::raw_symbol ((hash_string yytext), yytext), yypos, yypos+size (yytext)); };
  683 => {   yytext=yymktext();
yybegin postfix; tokens::uppercase_id (fast_symbol::raw_symbol ((hash_string yytext), yytext), yypos, yypos+size (yytext)); };
  7 => { line_number_db::newline line_number_db yypos; continue(); };
  70 => { tokens::bar(yypos,yypos+1); };
  738 => {   yytext=yymktext();
yybegin postfix; tokens::operators_path (fast_symbol::raw_symbol ((hash_string yytext), yytext), yypos, yypos+size (yytext)); };
  753 => {   yytext=yymktext();
yybegin postfix; tokens::uppercase_path (fast_symbol::raw_symbol ((hash_string yytext), yytext), yypos, yypos+size (yytext)); };
  76 => { tokens::buck(yypos,yypos+1); };
  768 => {   yytext=yymktext();
yybegin postfix; tokens::mixedcase_path (fast_symbol::raw_symbol ((hash_string yytext), yytext), yypos, yypos+size (yytext)); };
  782 => {   yytext=yymktext();
yybegin postfix; tokens::lowercase_path (fast_symbol::raw_symbol ((hash_string yytext), yytext), yypos, yypos+size (yytext)); };
  791 => {   yytext=yymktext();
if (*mythryl_parser::support_smlnj_antiquotes)
                                 if (has_quote yytext)
                                      REJECT();
                                 else mythryl_token_table::check_symbol_id(yytext,yypos);
                                 fi;
                            else mythryl_token_table::check_symbol_id(yytext,yypos);
                            fi
                           ; };
  793 => {   yytext=yymktext();
mythryl_token_table::check_symbol_id(yytext,yypos); };
  802 => {   yytext=yymktext();
mythryl_token_table::check_symbol_id(yytext,yypos); };
  804 => {     yybegin backticks;
                                   stringlist := [];
                                   stringstart := yypos;
                                   continue()
                            /* if (*mythryl_parser::support_smlnj_antiquotes)
                                  yybegin qqq;
                                   stringlist := [];
                                   tokens::beginq(yypos,yypos+1);
                            else  err(yypos, yypos+1)
                                     ERROR "smlnj_antiquotes implementation error"
                                     null_error_body;
                                  tokens::backticks(yypos,yypos+1); */
                             ; };
  807 => {     yybegin dot_backticks;
                                   stringlist := [];
                                   stringstart := yypos;
                                   continue()
                             ; };
  810 => {     yybegin dot_qquotes;
                                   stringlist := [];
                                   stringstart := yypos;
                                   continue()
                             ; };
  813 => {     yybegin dot_quotes;
                                   stringlist := [];
                                   stringstart := yypos;
                                   continue()
                             ; };
  816 => {     yybegin dot_brokets;
                                   stringlist := [];
                                   stringstart := yypos;
                                   continue()
                             ; };
  819 => {     yybegin dot_barets;
                                   stringlist := [];
                                   stringstart := yypos;
                                   continue()
                             ; };
  82 => { tokens::caret(yypos,yypos+1); };
  822 => {     yybegin dot_slashets;
                                   stringlist := [];
                                   stringstart := yypos;
                                   continue()
                             ; };
  825 => {     yybegin dot_hashets;
                                   stringlist := [];
                                   stringstart := yypos;
                                   continue()
                             ; };
  845 => {   yytext=yymktext();
yybegin postfix; tokens::float(yytext, yypos, yypos + size yytext); };
  848 => {   yytext=yymktext();
yybegin postfix; tokens::int(atoi(yytext, 0),yypos,yypos+size yytext); };
  852 => {   yytext=yymktext();
yybegin postfix; tokens::int0(otoi(yytext, 1),yypos,yypos+size yytext); };
  855 => {   yytext=yymktext();
yybegin postfix; tokens::int0(atoi(yytext, 0),yypos,yypos+size yytext); };
  859 => {   yytext=yymktext();
yybegin postfix; tokens::int0(atoi(yytext, 0),yypos,yypos+size yytext); };
  864 => {   yytext=yymktext();
yybegin postfix; tokens::int0(xtoi(yytext, 2),yypos,yypos+size yytext); };
  870 => {   yytext=yymktext();
yybegin postfix; tokens::int0(multiword_int::(-_)(xtoi(yytext, 3)),yypos,yypos+size yytext); };
  875 => {   yytext=yymktext();
yybegin postfix; tokens::unt(atoi(yytext, 2),yypos,yypos+size yytext); };
  88 => { tokens::dash(yypos,yypos+1); };
  881 => {   yytext=yymktext();
yybegin postfix; tokens::unt(xtoi(yytext, 3),yypos,yypos+size yytext); };
  883 => { stringlist := [""]; stringstart := yypos;
                    stringtype := TRUE; yybegin string; continue(); };
  885 => { stringlist := [""]; stringstart := yypos;
                    stringtype := FALSE; yybegin char; continue(); };
  897 => { yybegin lll; stringstart := yypos; comment_nesting_depth := 1; continue(); };
  9 => { tokens::wild(yypos,yypos+1); };
  903 => { line_number_db::newline line_number_db yypos; continue(); };
  906 => { yybegin comment;  continue(); };
  909 => { yybegin comment;  continue(); };
  912 => { yybegin comment;  continue(); };
  915 => { yybegin comment;  continue(); };
  923 => {   yytext=yymktext();
tokens::pre_compile_code ((substring::to_string (substring::drop_first 4 (substring::from_string yytext))), yypos+4, yypos + size yytext); };
  925 => { err (yypos,yypos) ERROR "non-Ascii character"
                        null_error_body;
                    continue(); };
  927 => { err (yypos,yypos) ERROR "illegal token" null_error_body;
                    continue(); };
  932 => { yybegin initial; continue(); };
  937 => { line_number_db::newline line_number_db yypos; yybegin initial; continue(); };
  939 => { tokens::wild(yypos,yypos+1); };
  94 => { tokens::lbrace(yypos,yypos+1); };
  941 => { yybegin initial; tokens::comma(yypos,yypos+1); };
  944 => { yybegin initial; tokens::dot_lbrace(yypos,yypos+2); };
  946 => { yybegin initial; tokens::lbrace(yypos,yypos+1); };
  948 => { yybegin initial; tokens::post_lbracket(yypos,yypos+1); };
  951 => { yybegin initial; tokens::vectorstart(yypos,yypos+1); };
  953 => { tokens::rbracket(yypos,yypos+1); };
  955 => { yybegin initial; tokens::semi(yypos,yypos+1); };
  966 => {   yytext=yymktext();
mythryl_token_table::check_passive_symbol_id(yytext,yypos); };
  968 => { if (null *brack_stack)
                         ();
                    else inc (head *brack_stack);
                    fi;
                    yybegin initial; 
                    tokens::lparen(yypos,yypos+1); };
  970 => { if (null *brack_stack)
                         ();
                    else if (*(head *brack_stack) == 1)
                               brack_stack := tail *brack_stack;
                                stringlist := [];
                                yybegin qqq;
                              
                         else dec (head *brack_stack);
                         fi;
                    fi;  
                    tokens::rparen(yypos,yypos+1); };
  976 => { yybegin initial; tokens::postfix_op_id (fast_symbol::raw_symbol ((hash_string "_&"),"_&"), yypos, yypos+1); };
  982 => { yybegin initial; tokens::postfix_op_id (fast_symbol::raw_symbol ((hash_string "_!"),"_!"), yypos, yypos+1); };
  988 => { yybegin initial; tokens::postfix_op_id (fast_symbol::raw_symbol ((hash_string "_@"),"_@"), yypos, yypos+1); };
  994 => { yybegin initial; tokens::postfix_op_id (fast_symbol::raw_symbol ((hash_string "_$"),"_$"), yypos, yypos+1); };
  _ => raise exception internal::LEXER_ERROR;

                 esac; }; } ); esac; end;    # fun action

         my { fin, trans } = unsafe::vector::get (internal::tab, s);
         new_accepting_leaves = fin ! accepting_leaves;
         if (l == *yybl)
             if (trans == .trans (vector::get (internal::tab, 0)))
               action (l, new_accepting_leaves);
         else        newchars= if *yydone ""; else yyinput 1024; fi;
             if ((size newchars) == 0)
                        yydone := TRUE;
                        if (l == i0)  user_declarations::eof yyarg;
                                  else action (l, new_accepting_leaves); fi;
                  else if (l == i0)  yyb := newchars;
                             else yyb := substring(*yyb, i0, l-i0) + newchars; fi;
                       yygone := *yygone+i0;
                       yybl := size *yyb;
                       scan (s, accepting_leaves, l-i0, 0);
             fi;   # (size newchars) == 0
             fi;   # trans == $trans ...
          else new_char = char::to_int (unsafe::vector_of_chars::get(*yyb, l));
                 new_char = if (new_char < 128) new_char; else 128; fi;
                 new_state = unsafe::vector::get (trans, new_char);
                 if (new_state == 0) action (l, new_accepting_leaves);
                 else scan (new_state, new_accepting_leaves, l+1, i0); fi;
         fi;
  };    # fun scan
/*
         start= if (substring(*yyb,*yybufpos - 1, 1)=="\n") *yybegin_i+1; else *yybegin_i; fi;
*/
         scan(*yybegin_i /* start */ , NIL, *yybufpos, *yybufpos);   # fun continue
    };   # fun continue
 continue; };    # fun lex
  lex; 
  };   # fun make_lexer
};


Comments and suggestions to: bugs@mythryl.org

PreviousUpNext